diff --git a/.gitea/workflows/build-nightlly.yml b/.gitea/workflows/build-nightlly.yml new file mode 100644 index 0000000..1245cc9 --- /dev/null +++ b/.gitea/workflows/build-nightlly.yml @@ -0,0 +1,129 @@ +name: Nightly Build - AppImage, Arch, Fedora + +on: + workflow_dispatch: + +env: + PKGDEST: "/tmp/portprotonqt" + PACKAGE: "portprotonqt" + +jobs: + build-appimage: + name: Build AppImage + runs-on: ubuntu-22.04 + steps: + - uses: https://gitea.com/actions/checkout@v4 + + - name: Install required dependencies + run: sudo apt install -y binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-dev python3-setuptools squashfs-tools strace util-linux zsync + + - name: Install tools + run: pip3 install appimage-builder uv + + - name: Build AppImage + run: | + cd build-aux + sed -i '/app_info:/,/- exec:/ s/^\(\s*version:\s*\).*/\1"0"/' AppImageBuilder.yml + appimage-builder + + - name: Upload AppImage + uses: https://gitea.com/actions/gitea-upload-artifact@v3 + with: + name: PortProtonQt-AppImage + path: build-aux/PortProtonQt*.AppImage + + build-fedora: + name: Build Fedora RPM + runs-on: ubuntu-latest + + strategy: + matrix: + fedora_version: [40, 41, 42, rawhide] + + container: + image: fedora:${{ matrix.fedora_version }} + options: --privileged + + steps: + - name: Install build dependencies + run: | + dnf install -y git rpmdevtools python3-devel python3-wheel python3-pip \ + python3-build pyproject-rpm-macros python3-setuptools \ + redhat-rpm-config nodejs npm + + - name: Setup rpmbuild environment + run: | + useradd rpmbuild -u 5002 -g users || true + mkdir -p /home/rpmbuild/{BUILD,RPMS,SPECS,SRPMS,SOURCES} + chown -R rpmbuild:users /home/rpmbuild + echo '%_topdir /home/rpmbuild' > /home/rpmbuild/.rpmmacros + + - name: Checkout repo + uses: https://gitea.com/actions/checkout@v4 + + - name: Copy fedora.spec + run: | + cp build-aux/fedora-git.spec /home/rpmbuild/SPECS/${{ env.PACKAGE }}.spec + chown -R rpmbuild:users /home/rpmbuild + + - name: Build RPM + run: | + su rpmbuild -c "rpmbuild -ba /home/rpmbuild/SPECS/${{ env.PACKAGE }}.spec" + + - name: Upload RPM package + uses: https://gitea.com/actions/gitea-upload-artifact@v3 + with: + name: PortProtonQt-RPM-Fedora-${{ matrix.fedora_version }} + path: /home/rpmbuild/RPMS/**/*.rpm + + build-arch: + name: Build Arch Package + runs-on: ubuntu-22.04 + container: + image: archlinux:base-devel + volumes: + - /usr:/usr-host + - /opt:/opt-host + options: --privileged + + steps: + - name: Prepare container + run: | + pacman -Sy --noconfirm --disable-download-timeout --needed git wget gnupg nodejs npm + sed -i 's/#MAKEFLAGS="-j2"/MAKEFLAGS="-j$(nproc) -l$(nproc)"/g' /etc/makepkg.conf + sed -i 's/OPTIONS=(.*)/OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge lto)/g' /etc/makepkg.conf + yes | pacman -Scc + pacman-key --init + pacman -S --noconfirm archlinux-keyring + mkdir -p /__w/portproton-repo + pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com + pacman-key --lsign-key 3056513887B78AEB + pacman -U --noconfirm 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' + pacman -U --noconfirm 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' + cat << EOM >> /etc/pacman.conf + + [chaotic-aur] + Include = /etc/pacman.d/chaotic-mirrorlist + EOM + pacman -Syy + useradd -m user -G wheel && echo "user ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers + echo "PACKAGER=\"Boris Yumankulov \"" >> /etc/makepkg.conf + chown user -R /tmp + chown user -R .. + + - name: Build + run: | + cd /__w/portproton-repo + git clone https://github.com/Boria138/PortProtonQt.git + cd /__w/portproton-repo/PortProtonQt/build-aux + chown user -R .. + su user -c "yes '' | makepkg --noconfirm -s -p PKGBUILD-git" + + - name: Checkout + uses: https://gitea.com/actions/checkout@v4 + + - name: Upload Arch package + uses: https://gitea.com/actions/gitea-upload-artifact@v3 + with: + name: PortProtonQt-Arch + path: ${{ env.PKGDEST }}/* diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..208d6d4 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,132 @@ +name: Build AppImage, Arch and Fedora Packages + +on: + workflow_dispatch: + +env: + # Common version, will be used for tagging the release + VERSION: 0.1.1 + PKGDEST: "/tmp/portprotonqt" + PACKAGE: "portprotonqt" + +jobs: + build-appimage: + name: Build AppImage + runs-on: ubuntu-22.04 + steps: + - uses: https://gitea.com/actions/checkout@v4 + + - name: Install required dependencies + run: | + sudo apt update + sudo apt install -y binutils coreutils desktop-file-utils fakeroot fuse libgdk-pixbuf2.0-dev patchelf python3-pip python3-dev python3-setuptools squashfs-tools strace util-linux zsync + + - name: Install tools + run: pip3 install appimage-builder uv + + - name: Build AppImage + run: | + cd build-aux + appimage-builder + + - name: Upload AppImage + uses: https://gitea.com/actions/gitea-upload-artifact@v3 + with: + name: PortProtonQt-AppImage + path: build-aux/PortProtonQt*.AppImage* + + build-arch: + name: Build Arch Package + runs-on: ubuntu-22.04 + container: + image: archlinux:base-devel + volumes: + - /usr:/usr-host + - /opt:/opt-host + options: --privileged + + steps: + - name: Prepare container + run: | + pacman -Sy --noconfirm --disable-download-timeout --needed git wget gnupg nodejs npm + sed -i 's/#MAKEFLAGS="-j2"/MAKEFLAGS="-j$(nproc) -l$(nproc)"/g' /etc/makepkg.conf + sed -i 's/OPTIONS=(.*)/OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge lto)/g' /etc/makepkg.conf + yes | pacman -Scc + pacman-key --init + pacman -S --noconfirm archlinux-keyring + mkdir -p /__w/portproton-repo + pacman-key --recv-key 3056513887B78AEB --keyserver keyserver.ubuntu.com + pacman-key --lsign-key 3056513887B78AEB + pacman -U --noconfirm 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-keyring.pkg.tar.zst' + pacman -U --noconfirm 'https://cdn-mirror.chaotic.cx/chaotic-aur/chaotic-mirrorlist.pkg.tar.zst' + cat << EOM >> /etc/pacman.conf + + [chaotic-aur] + Include = /etc/pacman.d/chaotic-mirrorlist + EOM + pacman -Syy + useradd -m user -G wheel && echo "user ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers + echo "PACKAGER=\"Boris Yumankulov \"" >> /etc/makepkg.conf + chown user -R /tmp + chown user -R .. + + - name: Build + run: | + cd /__w/portproton-repo + git clone https://github.com/Boria138/PortProtonQt.git + cd /__w/portproton-repo/PortProtonQt/build-aux + chown user -R .. + su user -c "yes '' | makepkg --noconfirm -s" + + - name: Checkout + uses: https://gitea.com/actions/checkout@v4 + + - name: Upload Arch package + uses: https://gitea.com/actions/gitea-upload-artifact@v3 + with: + name: PortProtonQt-Arch + path: ${{ env.PKGDEST }}/* + + build-fedora: + name: Build Fedora RPM + runs-on: ubuntu-latest + + strategy: + matrix: + fedora_version: [40, 41, 42, rawhide] + + container: + image: fedora:${{ matrix.fedora_version }} + options: --privileged + + steps: + - name: Install build dependencies + run: | + dnf install -y git rpmdevtools python3-devel python3-wheel python3-pip \ + python3-build pyproject-rpm-macros python3-setuptools \ + redhat-rpm-config nodejs npm + + - name: Setup rpmbuild environment + run: | + useradd rpmbuild -u 5002 -g users || true + mkdir -p /home/rpmbuild/{BUILD,RPMS,SPECS,SRPMS,SOURCES} + chown -R rpmbuild:users /home/rpmbuild + echo '%_topdir /home/rpmbuild' > /home/rpmbuild/.rpmmacros + + - name: Checkout repo + uses: https://gitea.com/actions/checkout@v4 + + - name: Copy fedora.spec + run: | + cp build-aux/fedora.spec /home/rpmbuild/SPECS/${{ env.PACKAGE }}.spec + chown -R rpmbuild:users /home/rpmbuild + + - name: Build RPM + run: | + su rpmbuild -c "rpmbuild -ba /home/rpmbuild/SPECS/${{ env.PACKAGE }}.spec" + + - name: Upload RPM package + uses: https://gitea.com/actions/gitea-upload-artifact@v3 + with: + name: PortProtonQt-RPM-Fedora-${{ matrix.fedora_version }} + path: /home/rpmbuild/RPMS/**/*.rpm diff --git a/.gitea/workflows/check-spell.yml b/.gitea/workflows/check-spell.yml new file mode 100644 index 0000000..9f5e610 --- /dev/null +++ b/.gitea/workflows/check-spell.yml @@ -0,0 +1,29 @@ +name: Check Translations +run-name: Check spelling in translation files +on: + push: + branches: [main] + paths: + - 'portprotonqt/locales/**' + pull_request: + paths: + - 'portprotonqt/locales/**' + workflow_dispatch: + +jobs: + check-translations: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: https://gitea.com/actions/checkout@v4 + + - name: Set up Python + uses: https://gitea.com/actions/setup-python@v5 + with: + python-version-file: "pyproject.toml" + + - name: Install Python dependencies + run: pip install pyaspeller babel + + - name: Run spell check + run: python dev-scripts/l10n.py --spellcheck diff --git a/.gitea/workflows/code-check.yml b/.gitea/workflows/code-check.yml new file mode 100644 index 0000000..d851a42 --- /dev/null +++ b/.gitea/workflows/code-check.yml @@ -0,0 +1,54 @@ +name: Code and build check + +on: + pull_request: + branches: [main] + paths-ignore: + - "data/**" + - "*.md" + - "dev-scripts/**" + push: + branches: [main] + paths-ignore: + - "data/**" + - "*.md" + - "dev-scripts/**" + workflow_dispatch: + +jobs: + pre-commit: + name: Check code + runs-on: ubuntu-latest + steps: + - uses: https://gitea.com/actions/checkout@v4 + + - name: Install uv + uses: https://github.com/astral-sh/setup-uv@v6 + with: + enable-cache: true + + - name: Sync dependencies into venv + run: uv sync --all-extras --dev + + - name: Activate .venv & run pre-commit + shell: bash + run: | + source .venv/bin/activate + pre-commit run --show-diff-on-failure --color=always --all-files + + build-uv: + name: Build with uv + runs-on: ubuntu-latest + steps: + - uses: https://gitea.com/actions/checkout@v4 + + - name: Install uv + uses: https://github.com/astral-sh/setup-uv@v6 + with: + enable-cache: true + + - name: Sync dependencies + run: uv sync + + - name: Build project + run: uv build diff --git a/.gitea/workflows/generate-appid.yml b/.gitea/workflows/generate-appid.yml new file mode 100644 index 0000000..7007b8f --- /dev/null +++ b/.gitea/workflows/generate-appid.yml @@ -0,0 +1,77 @@ +name: Fetch Data +run-name: Fetch and Write steam apps list +on: + workflow_dispatch: + schedule: + - cron: '0 0 1 * *' + +jobs: + build: + if: gitea.repository == 'Boria138/PortProtonQt' + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: https://gitea.com/actions/checkout@v4 + + - name: Set up Python + uses: https://gitea.com/actions/setup-python@v5 + with: + python-version-file: "pyproject.toml" + + - name: Install system dependencies + run: | + sudo apt-get update + sudo apt-get install -y xz-utils + + - name: Set up dependency + run: pip install aiohttp asyncio + + - name: Run get_id.py + run: python dev-scripts/get_id.py + env: + STEAM_KEY: ${{ secrets.STEAM_KEY }} + + - name: Commit and push changes + env: + GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} + GITEA_ACTOR: ${{ gitea.actor }} + GITEA_SERVER: "git.linux-gaming.ru" + GITEA_REPOSITORY: ${{ gitea.repository }} + run: | + # Create the push script + cat << 'EOF' > push-to-gitea.sh + #!/bin/sh + set -e + + timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ") + + AUTHOR_EMAIL=${INPUT_AUTHOR_EMAIL:-'gitea-actions@users.noreply.gitea.com'} + AUTHOR_NAME=${INPUT_AUTHOR_NAME:-'Gitea Actions'} + MESSAGE=${INPUT_MESSAGE:-"chore: update steam apps list ${timestamp}"} + BRANCH=main + + INPUT_DIRECTORY=${INPUT_DIRECTORY:-'.'} + + echo "Push to branch $INPUT_BRANCH" + [ -z "${GITEA_TOKEN}" ] && { + echo 'Missing input "gitea_token: ${{ secrets.GITEA_TOKEN }}".' + exit 1 + } + + cd "${INPUT_DIRECTORY}" + + remote_repo="https://${GITEA_ACTOR}:${GITEA_TOKEN}@${GITEA_SERVER}/${GITEA_REPOSITORY}.git" + + git config http.sslVerify false + git config --local user.email "${AUTHOR_EMAIL}" + git config --local user.name "${AUTHOR_NAME}" + + git add -A + git commit -m "${MESSAGE}" || exit 0 + + git push "${remote_repo}" HEAD:"${BRANCH}" + EOF + + # Make the script executable and run it + chmod +x push-to-gitea.sh + ./push-to-gitea.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..95a5de0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv +venv +pyvenv.cfg + +# Ruff +.ruff_cache + +# MyPy +.mypy_cache + +# MacOS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Editors files +*-swp +.gigaide +.idea +.vscode +.ropeproject +.zed diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..f77a17d --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,41 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +exclude: '(data/|documentation/|portprotonqt/locales/|dev-scripts/|\.venv/|venv/|.*\.svg$)' +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v5.0.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-toml + - id: check-yaml + + - repo: https://github.com/astral-sh/uv-pre-commit + rev: 0.6.14 + hooks: + - id: uv-lock + + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.11.5 + hooks: + - id: ruff + args: [--fix] + + - repo: local + hooks: + - id: pyright + name: pyright + entry: pyright + language: system + 'types_or': [python, pyi] + require_serial: true + + - repo: local + hooks: + - id: check-qss-properties + name: Check theme for invalid QSS properties + entry: ./dev-scripts/check_qss_properties.py + language: system + types: [file] + files: \.py$ + pass_filenames: false diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..c8cfe39 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.10 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..733b205 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,68 @@ +# Changelog + +Все заметные изменения в этом проекте фиксируются в этом файле. +Формат основан на [Keep a Changelog](https://keepachangelog.com/) и придерживается принципов [Semantic Versioning](https://semver.org/). + +## [Unreleased] + +### Added +- Кнопки сброса настроек и очистки кэша +- Начальная интеграция с EGS с помощью [Legendary](https://github.com/derrod/legendary) +- Зависимость на `xdg-utils` +- Установка ширины бейджа в две трети ширины карточки +- Интеграция статуса WeAntiCheatYet в карточку +- Стили в AddGameDialog +- Переключение полноэкранного режима через F11 +- Выбор QCheckBox через Enter или кнопку A геймпада +- Закрытие окна приложения по комбинации клавиш Ctrl+Q +- Сохранение и восстановление размера при рестарте +- Переключатель полноэкранного режима приложения +- Пункт в контекстное меню “Открыть папку игры” +- Пункт в контекстное меню “Добавить в Steam” +- Пункт в контекстное меню "Удалить из Steam” +- Метод сортировки сначала избранное +- Авто сборки для тестирования +- Благодарности контрибьюторам в README + +### Changed +- Обновлены все иконки +- Переименован `_get_steam_home` → `get_steam_home` +- Догика контекстного меню вынесена в `ContextMenuManager` +- Бейдж Steam теперь открывает Steam Community +- Изменена лицензия с MIT на GPL-3.0 для совместимости с кодом от legendary +- Оптимизирована генерация карточек для предотвращения лагов при поиске и изменения размера окна + +### Fixed +- Обработка несуществующей темы с возвратом к “standart” +- Открытие контекстного меню +- Запуск при отсутствии exiftool +- Переводы пунктов настроек +- Бесконечное обращение к get_portproton_location +- Ссылки на документацию в README +- traceback при загрузке placeholder при отсутствии обложек +- Утечки памяти при загрузке обложек + +--- + +## [0.1.1] – 2025-05-17 + +### Added +- Алфавитная сортировка библиотеки +- Проверка переводов через yaspeller +- Сборка Fedora-пакета +- Сборка AppImage + +### Changed +- Удалён жёстко заданный ресайз окна +- Использован icoextract как python модуль + +### Fixed +- Скрытие статус-бара +- Чтение списка Steam-игр +- Подвисание GUI +- Краш при повреждённом Steam + +--- + + +> См. подробности по каждому коммиту в истории репозитория. diff --git a/README.md b/README.md index 045d473..c19cda4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,108 @@ -# PortProtonQt +
+ +

PortProtonQt

+

Проект нацеленный на переписывание PortProton(PortWINE) на PySide

+
-Is a project aimed at , providing a modern, user-friendly GUI for managing and launching games from multiple platforms, including PortProton, Steam, Epic Games Store (EGS) and more \ No newline at end of file +## В планах + +- [X] Адаптировать структуру проекта для поддержки инструментов сборки +- [ ] Добавить возможность управление с геймпада +- [ ] Добавить возможность управление с тачскрина +- [X] Добавить возможность управление с мыши и клавиатуры +- [X] Добавить систему тем [Документация](documentation/theme_guide) +- [X] Вынести все константы такие как уровень закругления карточек в темы (Частично вынесено) +- [X] Добавить метадату для тем (скришоты, описание, домащняя страница и автор) +- [ ] Продумать систему вкладок вместо той что есть сейчас +- [ ] Добавить Gamescope сессию на подобие той что есть в SteamOS +- [ ] Написать адаптивный дизайн (За эталон берём SteamDeck с разрешением 1280х800) +- [X] Брать описание и названия игр с базы данных Steam +- [X] Брать обложки для игр со SteamGridDB или CDN Steam +- [X] Оптимизировать работу со SteamApi что бы ускорить время запуска +- [X] Улучшить функцию поиска SteamApi что бы исправить некорректное определение ID (Graven определается как ENGRAVEN или GRAVENFALL, Spore определается как SporeBound или Spore Valley) +- [ ] Убрать логи со SteamApi в релизной версии потому что логи замедляют код +- [X] Что-то придумать с ограничением SteamApi в 50 тысяч игр за один запрос (иногда туда не попадают нужные игры и остаются без обложки) +- [X] Избавится от любого вызова yad +- [X] Написать свою реализацию запрета ухода в сон, а не использовать ту что в PortProton (Оставим это [PortProton 2.0](https://github.com/Castro-Fidel/PortProton_2.0)) +- [X] Написать свою реализацию трея, а не использовать ту что в PortProton +- [X] Добавить в поиск экранную клавиатуру (Реализовавывать собственную клавиатуру слишком затратно, лучше положится на встроенную в DE клавиатуру malit в KDE, gjs-osk в GNOME,Squeekboard в phosh, стимовская в SteamOS и так далее) +- [X] Добавить сортировку карточек по различным критериям (сейчас есть: недавние, кол-во наиграного времени, избранное или по алфавиту) +- [X] Добавить индикацию запуска приложения +- [X] Достичь паритета функционала с Ingame (кроме поддержки нативных игр) +- [ ] Достичь паритета функционала с PortProton +- [X] Добавить возможность изменения названия, описания и обложки через файлы .local/share/PortProtonQT/custom_data/exe_name/{desc,name,cover} +- [X] Добавить встроенное переопределение имени, описания и обложки, например по пути portprotonqt/custom_data [Документация](documentation/metadata_override/) +- [X] Добавить в карточку игры сведения о поддержке геймадов +- [X] Добавить в карточки данные с ProtonDB +- [X] Добавить в карточки данные с Are We Anti-Cheat Yet? +- [ ] Продублировать бейджы с карточки на страницу с деталями игрыы +- [X] Добавить парсинг ярлыков со Steam +- [X] Добавить парсинг ярлыков с EGS +- [ ] Избавится от бинарника legendary +- [ ] Добавить запуск и скачивание игр с EGS +- [ ] Добавить авторизацию в EGS через WebView, а не вручную +- [X] Брать описания для игр с EGS из их [api](https://store-content.ak.epicgames.com/api) +- [ ] Брать slug через Graphql [запрос](https://launcher.store.epicgames.com/graphql) +- [X] Добавить на карточку бейдж того что игра со стима +- [X] Добавить поддержку Flatpak и Snap версии Steam +- [X] Выводить данные о самом недавнем пользователе Steam, а не первом попавшемся +- [X] Исправить склонения в детальном выводе времени, например не 3 часов назад, а 3 часа назад +- [X] Добавить перевод через gettext [Документация](documentation/localization_guide) +- [X] Писать описание игр и прочие данные на языке системы +- [X] Добавить недокументированные параметры конфигурации в GUI (time detail_level, games sort_method, games display_filter) +- [X] Добавить систему избранного к карточкам +- [X] Заменить все print на logging +- [ ] Привести все логи к одному языку +- [X] Стилизовать все элементы без стилей(QMessageBox, QSlider, QDialog) +- [X] Убрать жёсткую привязку путей на стрелочки QComboBox в styles.py +- [X] Исправить частичное применение тем на лету +- [X] Исправить наложение подписей скриншотов при первом перелистывание в полноэкранном режиме + +### Установка (debug) + +```sh +uv python install 3.10 +uv sync +source .venv/bin/activate +``` + +Запуск производится по команде portprotonqt + +### Разработка + +В проект встроен линтер (ruff), статический анализатор (pyright) и проверка lock файла, если эти проверки не пройдут PR не будет принят, поэтому перед коммитом введите такую команду + +```sh +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +pre-commit install +``` + +pre-commit сам запустится при коммите, если вы хотите запустить его вручную введите команду + +```sh +pre-commit run --all-files +``` + +## Авторы + +* [Boria138](https://github.com/Boria138) - Программист +* [BlackSnaker](https://github.com/BlackSnaker) - Дизайнер - программист +* [Mikhail Tergoev(Castro-Fidel)](https://github.com/Castro-Fidel) - Автор оригинального проекта PortProton + +## Помощники (Контрибьюторы) + +Спасибо всем, кто помогает в развитии проекта: + + + + + + +> [!WARNING] +> Проект находится на стадии WIP (work in progress) корректная работоспособность не гарантирована + + +> [!WARNING] +> **Будьте осторожны!** Если вы берёте тему не из официального репозитория или надёжного источника, убедитесь, что в её файле `styles.py` нет вредоносного или нежелательного кода. Поскольку `styles.py` — это обычный Python-файл, он может содержать любые инструкции. Всегда проверяйте содержимое чужих тем перед использованием. diff --git a/build-aux/AppImageBuilder.yml b/build-aux/AppImageBuilder.yml new file mode 100644 index 0000000..7fa280b --- /dev/null +++ b/build-aux/AppImageBuilder.yml @@ -0,0 +1,58 @@ +version: 1 + +script: + # 1) чистим старый AppDir + - rm -rf AppDir || true + # 2) создаём структуру каталога + - mkdir -p AppDir/usr/local/lib/python3.10/dist-packages + # 3) UV: создаём виртуальное окружение и устанавливаем зависимости из pyproject.toml + - uv venv + - uv pip install --no-cache-dir ../ + # 4) копируем всё из .venv в AppDir + - cp -r .venv/lib/python3.10/site-packages/* AppDir/usr/local/lib/python3.10/dist-packages + - cp -r share AppDir/usr + # 5) чистим от ненужных модулей и бинарников + - rm -rf AppDir/usr/local/lib/python3.10/dist-packages/PySide6/Qt/qml/ + - rm -f AppDir/usr/local/lib/python3.10/dist-packages/PySide6/{assistant,designer,linguist,lrelease,lupdate} + - rm -f AppDir/usr/local/lib/python3.10/dist-packages/PySide6/{Qt3D*,QtBluetooth*,QtCharts*,QtConcurrent*,QtDataVisualization*,QtDesigner*,QtHelp*,QtMultimedia*,QtNetwork*,QtOpenGL*,QtPositioning*,QtPrintSupport*,QtQml*,QtQuick*,QtRemoteObjects*,QtScxml*,QtSensors*,QtSerialPort*,QtSql*,QtStateMachine*,QtTest*,QtWeb*,QtXml*} + - shopt -s extglob + - rm -rf AppDir/usr/local/lib/python3.10/dist-packages/PySide6/Qt/lib/!(libQt6Core*|libQt6Gui*|libQt6Widgets*|libQt6OpenGL*|libQt6XcbQpa*|libQt6Wayland*|libQt6Egl*|libicudata*|libicuuc*|libicui18n*|libQt6DBus*|libQt6Svg*|libQt6Qml*|libQt6Network*) + +AppDir: + path: ./AppDir + + app_info: + id: ru.linux_gaming.PortProtonQt + name: PortProtonQt + icon: ru.linux_gaming.PortProtonQt + version: 0.1.1 + exec: usr/bin/python3 + exec_args: "-m portprotonqt.app $@" + + apt: + arch: amd64 + sources: + - sourceline: 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ jammy main restricted universe multiverse' + key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x871920d1991bc93c' + + include: + - python3 + - python3-pkg-resources + - libopengl0 + - libk5crypto3 + - libkrb5-3 + - libgssapi-krb5-2 + - libxcb-cursor0 + - libimage-exiftool-perl + - xdg-utils + exclude: [] + + runtime: + env: + PYTHONHOME: '${APPDIR}/usr' + PYTHONPATH: '${APPDIR}/usr/local/lib/python3.10/dist-packages' + +AppImage: + update-information: gh-releases-zsync|Boria138|PortProtonQt|latest|PortProtonQt-*x86_64.AppImage.zsync + sign-key: None + arch: x86_64 diff --git a/build-aux/PKGBUILD b/build-aux/PKGBUILD new file mode 100644 index 0000000..d41adfa --- /dev/null +++ b/build-aux/PKGBUILD @@ -0,0 +1,23 @@ +pkgname=portprotonqt +pkgver=0.1.1 +pkgrel=1 +pkgdesc="A modern GUI for PortProton project." +arch=('any') +url="https://github.com/Boria138/PortProtonQt" +license=('MIT') +depends=('python-numpy' 'python-requests' 'python-babel' 'python-evdev' 'python-pyudev' 'python-orjson' + 'python-psutil' 'python-tqdm' 'python-vdf' 'pyside6' 'icoextract' 'python-pillow' 'perl-image-exiftool' 'xdg-utils') +makedepends=('python-'{'build','installer','setuptools','wheel'}) +source=("git+https://github.com/Boria138/PortProtonQt.git#tag=$pkgver") +sha256sums=('SKIP') + +build() { + cd "$srcdir/PortProtonQt" + python -m build --wheel --no-isolation +} + +package() { + cd "$srcdir/PortProtonQt" + python -m installer --destdir="$pkgdir" dist/*.whl + cp -r build-aux/share "$pkgdir/usr/" +} diff --git a/build-aux/PKGBUILD-git b/build-aux/PKGBUILD-git new file mode 100644 index 0000000..c7155f9 --- /dev/null +++ b/build-aux/PKGBUILD-git @@ -0,0 +1,28 @@ +pkgname=portprotonqt-git +pkgver=. +pkgrel=1 +pkgdesc="A modern GUI for PortProton project.(developerment build)" +arch=('any') +url="https://github.com/Boria138/PortProtonQt" +license=('MIT') +depends=('python-numpy' 'python-requests' 'python-babel' 'python-evdev' 'python-pyudev' 'python-orjson' + 'python-psutil' 'python-tqdm' 'python-vdf' 'pyside6' 'icoextract' 'python-pillow' 'perl-image-exiftool' 'xdg-utils') +makedepends=('python-'{'build','installer','setuptools','wheel'}) +source=("git+https://github.com/Boria138/PortProtonQt") +sha256sums=('SKIP') + +pkgver() { + cd "$srcdir/PortProtonQt" + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +build() { + cd "$srcdir/PortProtonQt" + python -m build --wheel --no-isolation +} + +package() { + cd "$srcdir/PortProtonQt" + python -m installer --destdir="$pkgdir" dist/*.whl + cp -r build-aux/share "$pkgdir/usr/" +} diff --git a/build-aux/fedora-git.spec b/build-aux/fedora-git.spec new file mode 100644 index 0000000..8ed3f50 --- /dev/null +++ b/build-aux/fedora-git.spec @@ -0,0 +1,68 @@ +%global pypi_name portprotonqt +%global pypi_version 0.1.1 +%global oname PortProtonQt +%global build_timestamp %(date +"%Y%m%d") + +%global rel_build 1.git.%{build_timestamp}%{?dist} + +Name: python-%{pypi_name}-git +Version: %{pypi_version} +Release: %{rel_build} +Summary: A modern GUI for PortProton project (devel build) + +License: MIT +URL: https://github.com/Boria138/PortProtonQt +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3-wheel +BuildRequires: python3-pip +BuildRequires: python3-build +BuildRequires: pyproject-rpm-macros +BuildRequires: python3dist(setuptools) +BuildRequires: git + +%description +%{summary} + +%package -n python3-%{pypi_name}-git +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} +Requires: python3dist(babel) +Requires: python3dist(evdev) +Requires: python3dist(icoextract) +Requires: python3dist(numpy) +Requires: python3dist(orjson) +Requires: python3dist(psutil) +Requires: python3dist(pyside6) +Requires: python3dist(pyudev) +Requires: python3dist(requests) +Requires: python3dist(tqdm) +Requires: python3dist(vdf) +Requires: python3dist(pefile) +Requires: python3dist(pillow) +Requires: perl-Image-ExifTool +Requires: xdg-utils + +%description -n python3-%{pypi_name}-git +PortProtonQt is a modern graphical user interface for the PortProton project, +designed to simplify the management and launching of games using Wine and Proton. + +%prep +git clone https://github.com/Boria138/PortProtonQt + +%build +cd %{oname} +%pyproject_wheel + +%install +cd %{oname} +%pyproject_install +%pyproject_save_files %{pypi_name} +cp -r build-aux/share %{buildroot}/usr/ + +%files -n python3-%{pypi_name}-git -f %{pyproject_files} +%{_bindir}/%{pypi_name} +%{_datadir}/* + +%changelog diff --git a/build-aux/fedora.spec b/build-aux/fedora.spec new file mode 100644 index 0000000..4f91b5b --- /dev/null +++ b/build-aux/fedora.spec @@ -0,0 +1,67 @@ +%global pypi_name portprotonqt +%global pypi_version 0.1.1 +%global oname PortProtonQt + +Name: python-%{pypi_name} +Version: %{pypi_version} +Release: 1%{?dist} +Summary: A modern GUI for PortProton project + +License: MIT +URL: https://github.com/Boria138/PortProtonQt +BuildArch: noarch + +BuildRequires: python3-devel +BuildRequires: python3-wheel +BuildRequires: python3-pip +BuildRequires: python3-build +BuildRequires: pyproject-rpm-macros +BuildRequires: python3dist(setuptools) +BuildRequires: git + +%description +%{summary} + +%package -n python3-%{pypi_name} +Summary: %{summary} +%{?python_provide:%python_provide python3-%{pypi_name}} +Requires: python3dist(babel) +Requires: python3dist(evdev) +Requires: python3dist(icoextract) +Requires: python3dist(numpy) +Requires: python3dist(orjson) +Requires: python3dist(psutil) +Requires: python3dist(pyside6) +Requires: python3dist(pyudev) +Requires: python3dist(requests) +Requires: python3dist(tqdm) +Requires: python3dist(vdf) +Requires: python3dist(pefile) +Requires: python3dist(pillow) +Requires: perl-Image-ExifTool +Requires: xdg-utils + +%description -n python3-%{pypi_name} +PortProtonQt is a modern graphical user interface for the PortProton project, +designed to simplify the management and launching of games using Wine and Proton. + +%prep +git clone https://github.com/Boria138/PortProtonQt +cd %{oname} +git checkout %{pypi_version} + +%build +cd %{oname} +%pyproject_wheel + +%install +cd %{oname} +%pyproject_install +%pyproject_save_files %{pypi_name} +cp -r build-aux/share %{buildroot}/usr/ + +%files -n python3-%{pypi_name} -f %{pyproject_files} +%{_bindir}/%{pypi_name} +%{_datadir}/* + +%changelog diff --git a/build-aux/share/applications/ru.linux_gaming.PortProtonQt.desktop b/build-aux/share/applications/ru.linux_gaming.PortProtonQt.desktop new file mode 100644 index 0000000..640430c --- /dev/null +++ b/build-aux/share/applications/ru.linux_gaming.PortProtonQt.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=PortProtonQt +Exec=portprotonqt +Type=Application +Comment=A modern GUI for PortProton project +Terminal=false +Icon=ru.linux_gaming.PortProtonQt +StartupWMClass=ru.linux_gaming.PortProtonQt +Categories=Game;Utility; diff --git a/build-aux/share/icons/hicolor/scalable/apps/ru.linux_gaming.PortProtonQt.svg b/build-aux/share/icons/hicolor/scalable/apps/ru.linux_gaming.PortProtonQt.svg new file mode 100644 index 0000000..59d9dc3 --- /dev/null +++ b/build-aux/share/icons/hicolor/scalable/apps/ru.linux_gaming.PortProtonQt.svg @@ -0,0 +1 @@ + diff --git a/data/anticheat_games.json b/data/anticheat_games.json new file mode 100644 index 0000000..2461751 --- /dev/null +++ b/data/anticheat_games.json @@ -0,0 +1,4398 @@ +[ + { + "normalized_name": "halo the master chief collection", + "status": "Supported" + }, + { + "normalized_name": "fortnite", + "status": "Denied" + }, + { + "normalized_name": "battlefield 2042", + "status": "Denied" + }, + { + "normalized_name": "apex legends", + "status": "Denied" + }, + { + "normalized_name": "valorant", + "status": "Denied" + }, + { + "normalized_name": "halo infinite", + "status": "Supported" + }, + { + "normalized_name": "back 4 blood", + "status": "Supported" + }, + { + "normalized_name": "paladins", + "status": "Running" + }, + { + "normalized_name": "pubg battlegrounds", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's rainbow six siege", + "status": "Denied" + }, + { + "normalized_name": "smite", + "status": "Supported" + }, + { + "normalized_name": "black desert online", + "status": "Running" + }, + { + "normalized_name": "fall guys knockout", + "status": "Running" + }, + { + "normalized_name": "ark survival evolved", + "status": "Supported" + }, + { + "normalized_name": "dayz", + "status": "Supported" + }, + { + "normalized_name": "dead by daylight", + "status": "Supported" + }, + { + "normalized_name": "destiny 2", + "status": "Denied" + }, + { + "normalized_name": "hunt showdown 1896", + "status": "Supported" + }, + { + "normalized_name": "rust", + "status": "Denied" + }, + { + "normalized_name": "war thunder", + "status": "Supported" + }, + { + "normalized_name": "7 days to die", + "status": "Supported" + }, + { + "normalized_name": "squad", + "status": "Supported" + }, + { + "normalized_name": "new world", + "status": "Supported" + }, + { + "normalized_name": "warhammer vermintide 2", + "status": "Running" + }, + { + "normalized_name": "escape from tarkov", + "status": "Planned" + }, + { + "normalized_name": "insurgency sandstorm", + "status": "Supported" + }, + { + "normalized_name": "arma 3", + "status": "Supported" + }, + { + "normalized_name": "rogue company", + "status": "Supported" + }, + { + "normalized_name": "realm royale", + "status": "Broken" + }, + { + "normalized_name": "phantasy star online 2 (na)", + "status": "Supported" + }, + { + "normalized_name": "phantasy star online 2 (jp)", + "status": "Broken" + }, + { + "normalized_name": "unturned", + "status": "Supported" + }, + { + "normalized_name": "planetside 2", + "status": "Supported" + }, + { + "normalized_name": "for honor", + "status": "Supported" + }, + { + "normalized_name": "naraka bladepoint", + "status": "Supported" + }, + { + "normalized_name": "genshin impact", + "status": "Running" + }, + { + "normalized_name": "djmax respect v", + "status": "Supported" + }, + { + "normalized_name": "plants vs. zombies battle for neighborville", + "status": "Denied" + }, + { + "normalized_name": "hell let loose", + "status": "Supported" + }, + { + "normalized_name": "bless unleashed", + "status": "Supported" + }, + { + "normalized_name": "rising storm 2 vietnam", + "status": "Running" + }, + { + "normalized_name": "pandemic express zombie escape", + "status": "Broken" + }, + { + "normalized_name": "scum", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's the division 2", + "status": "Supported" + }, + { + "normalized_name": "jump force", + "status": "Broken" + }, + { + "normalized_name": "knockout city", + "status": "Supported" + }, + { + "normalized_name": "dragon ball fighterz", + "status": "Broken" + }, + { + "normalized_name": "enlisted", + "status": "Broken" + }, + { + "normalized_name": "due process", + "status": "Planned" + }, + { + "normalized_name": "rec room", + "status": "Broken" + }, + { + "normalized_name": "world war 3", + "status": "Running" + }, + { + "normalized_name": "iracing", + "status": "Broken" + }, + { + "normalized_name": "dragon ball xenoverse 2", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's ghost recon wildlands", + "status": "Broken" + }, + { + "normalized_name": "watch_dogs 2", + "status": "Broken" + }, + { + "normalized_name": "zero hour", + "status": "Broken" + }, + { + "normalized_name": "ironsight", + "status": "Supported" + }, + { + "normalized_name": "the crew 2", + "status": "Broken" + }, + { + "normalized_name": "crsed f.o.a.d.", + "status": "Supported" + }, + { + "normalized_name": "star wars squadrons", + "status": "Supported" + }, + { + "normalized_name": "diabotical", + "status": "Running" + }, + { + "normalized_name": "totally accurate battlegrounds", + "status": "Supported" + }, + { + "normalized_name": "splitgate", + "status": "Supported" + }, + { + "normalized_name": "counter strike global offensive", + "status": "Supported" + }, + { + "normalized_name": "counter strike global offensive (faceit)", + "status": "Denied" + }, + { + "normalized_name": "counter strike global offensive (esea)", + "status": "Denied" + }, + { + "normalized_name": "team fortress 2", + "status": "Supported" + }, + { + "normalized_name": "dota 2", + "status": "Supported" + }, + { + "normalized_name": "call of duty black ops iii", + "status": "Supported" + }, + { + "normalized_name": "garry's mod", + "status": "Supported" + }, + { + "normalized_name": "dying light", + "status": "Supported" + }, + { + "normalized_name": "soulworker", + "status": "Running" + }, + { + "normalized_name": "tom clancy's ghost recon breakpoint", + "status": "Supported" + }, + { + "normalized_name": "digimon masters online", + "status": "Running" + }, + { + "normalized_name": "post scriptum", + "status": "Denied" + }, + { + "normalized_name": "sector's edge", + "status": "Running" + }, + { + "normalized_name": "worms rumble", + "status": "Broken" + }, + { + "normalized_name": "dirty bomb", + "status": "Broken" + }, + { + "normalized_name": "empyrion galactic survival", + "status": "Broken" + }, + { + "normalized_name": "call of duty modern warfare (2019)", + "status": "Broken" + }, + { + "normalized_name": "call of duty warzone", + "status": "Broken" + }, + { + "normalized_name": "brawlhalla", + "status": "Supported" + }, + { + "normalized_name": "combat arms reloaded", + "status": "Broken" + }, + { + "normalized_name": "polygon", + "status": "Supported" + }, + { + "normalized_name": "call of duty black ops cold war", + "status": "Broken" + }, + { + "normalized_name": "albion online", + "status": "Supported" + }, + { + "normalized_name": "counter strike source", + "status": "Supported" + }, + { + "normalized_name": "outriders", + "status": "Supported" + }, + { + "normalized_name": "crossout", + "status": "Supported" + }, + { + "normalized_name": "spellbreak", + "status": "Broken" + }, + { + "normalized_name": "battlefield 4", + "status": "Supported" + }, + { + "normalized_name": "conan exiles", + "status": "Broken" + }, + { + "normalized_name": "mount & blade ii bannerlord", + "status": "Supported" + }, + { + "normalized_name": "vampire the masquerade bloodhunt", + "status": "Denied" + }, + { + "normalized_name": "maplestory", + "status": "Broken" + }, + { + "normalized_name": "heroes & generals", + "status": "Broken" + }, + { + "normalized_name": "deadside", + "status": "Broken" + }, + { + "normalized_name": "intruder", + "status": "Running" + }, + { + "normalized_name": "warface", + "status": "Broken" + }, + { + "normalized_name": "call of duty", + "status": "Supported" + }, + { + "normalized_name": "half life 2 deathmatch", + "status": "Supported" + }, + { + "normalized_name": "atlas", + "status": "Broken" + }, + { + "normalized_name": "the mean greens plastic warfare", + "status": "Supported" + }, + { + "normalized_name": "mordhau", + "status": "Supported" + }, + { + "normalized_name": "arma 2", + "status": "Broken" + }, + { + "normalized_name": "quake iii arena", + "status": "Supported" + }, + { + "normalized_name": "call of duty 2", + "status": "Supported" + }, + { + "normalized_name": "battlefield 1", + "status": "Denied" + }, + { + "normalized_name": "nuclear dawn", + "status": "Supported" + }, + { + "normalized_name": "pirates vikings and knights ii", + "status": "Supported" + }, + { + "normalized_name": "battlefield 1942", + "status": "Broken" + }, + { + "normalized_name": "team fortress classic", + "status": "Supported" + }, + { + "normalized_name": "ark survival of the fittest", + "status": "Supported" + }, + { + "normalized_name": "crysis", + "status": "Broken" + }, + { + "normalized_name": "the isle", + "status": "Running" + }, + { + "normalized_name": "call of duty black ops", + "status": "Supported" + }, + { + "normalized_name": "call of duty 4 modern warfare", + "status": "Supported" + }, + { + "normalized_name": "day of defeat", + "status": "Supported" + }, + { + "normalized_name": "chivalry medieval warfare", + "status": "Supported" + }, + { + "normalized_name": "pang online", + "status": "Broken" + }, + { + "normalized_name": "the ship murder party", + "status": "Supported" + }, + { + "normalized_name": "insurgency", + "status": "Supported" + }, + { + "normalized_name": "call of duty black ops ii", + "status": "Supported" + }, + { + "normalized_name": "monstrum 2", + "status": "Broken" + }, + { + "normalized_name": "no more room in hell", + "status": "Supported" + }, + { + "normalized_name": "depth", + "status": "Supported" + }, + { + "normalized_name": "quake 4", + "status": "Supported" + }, + { + "normalized_name": "deathmatch classic", + "status": "Supported" + }, + { + "normalized_name": "battlefield 2", + "status": "Supported" + }, + { + "normalized_name": "sword art online alicization lycoris", + "status": "Broken" + }, + { + "normalized_name": "foxhole", + "status": "Supported" + }, + { + "normalized_name": "block n load", + "status": "Broken" + }, + { + "normalized_name": "titanfall", + "status": "Supported" + }, + { + "normalized_name": "kartrider", + "status": "Broken" + }, + { + "normalized_name": "battlefield 3", + "status": "Running" + }, + { + "normalized_name": "kovaak", + "status": "Running" + }, + { + "normalized_name": "day of defeat source", + "status": "Supported" + }, + { + "normalized_name": "star wars battlefront (2015)", + "status": "Supported" + }, + { + "normalized_name": "tower wars", + "status": "Supported" + }, + { + "normalized_name": "hurtworld", + "status": "Supported" + }, + { + "normalized_name": "call of duty ghosts", + "status": "Supported" + }, + { + "normalized_name": "sword art online fatal bullet", + "status": "Broken" + }, + { + "normalized_name": "killing floor", + "status": "Supported" + }, + { + "normalized_name": "battlefield bad company 2", + "status": "Supported" + }, + { + "normalized_name": "trials rising", + "status": "Broken" + }, + { + "normalized_name": "cry of fear", + "status": "Supported" + }, + { + "normalized_name": "far cry 5", + "status": "Supported" + }, + { + "normalized_name": "call of duty modern warfare 2", + "status": "Supported" + }, + { + "normalized_name": "kritika reboot", + "status": "Broken" + }, + { + "normalized_name": "half life deathmatch source", + "status": "Supported" + }, + { + "normalized_name": "beyond the wire", + "status": "Broken" + }, + { + "normalized_name": "lost planet extreme condition", + "status": "Supported" + }, + { + "normalized_name": "tom clancy's the division", + "status": "Supported" + }, + { + "normalized_name": "rocket arena", + "status": "Broken" + }, + { + "normalized_name": "call of duty modern warfare 3", + "status": "Supported" + }, + { + "normalized_name": "left 4 dead 2", + "status": "Supported" + }, + { + "normalized_name": "tower unite", + "status": "Supported" + }, + { + "normalized_name": "day of infamy", + "status": "Supported" + }, + { + "normalized_name": "black squad", + "status": "Supported" + }, + { + "normalized_name": "star wars battlefront ii (2017)", + "status": "Supported" + }, + { + "normalized_name": "primal carnage", + "status": "Running" + }, + { + "normalized_name": "honkai impact 3rd", + "status": "Broken" + }, + { + "normalized_name": "honkai star rail", + "status": "Broken" + }, + { + "normalized_name": "dungeon defenders", + "status": "Supported" + }, + { + "normalized_name": "apb reloaded", + "status": "Broken" + }, + { + "normalized_name": "battlefield hardline", + "status": "Running" + }, + { + "normalized_name": "gears 5", + "status": "Running" + }, + { + "normalized_name": "call of duty world at war", + "status": "Supported" + }, + { + "normalized_name": "quake live", + "status": "Supported" + }, + { + "normalized_name": "pixark", + "status": "Broken" + }, + { + "normalized_name": "captain tsubasa rise of new champions", + "status": "Broken" + }, + { + "normalized_name": "toxikk", + "status": "Supported" + }, + { + "normalized_name": "arma 2 operation arrowhead", + "status": "Broken" + }, + { + "normalized_name": "latale", + "status": "Broken" + }, + { + "normalized_name": "crysis warhead", + "status": "Broken" + }, + { + "normalized_name": "predator hunting grounds", + "status": "Running" + }, + { + "normalized_name": "call of duty wwii", + "status": "Supported" + }, + { + "normalized_name": "nostale", + "status": "Supported" + }, + { + "normalized_name": "battlefield v", + "status": "Denied" + }, + { + "normalized_name": "chivalry 2", + "status": "Running" + }, + { + "normalized_name": "homefront", + "status": "Supported" + }, + { + "normalized_name": "call of duty infinite warfare", + "status": "Supported" + }, + { + "normalized_name": "pangya", + "status": "Broken" + }, + { + "normalized_name": "quantum league", + "status": "Broken" + }, + { + "normalized_name": "blazing sails", + "status": "Running" + }, + { + "normalized_name": "titanfall 2", + "status": "Supported" + }, + { + "normalized_name": "lemnis gate", + "status": "Broken" + }, + { + "normalized_name": "grandchase", + "status": "Supported" + }, + { + "normalized_name": "killing floor 2", + "status": "Supported" + }, + { + "normalized_name": "black clover quartet knights", + "status": "Broken" + }, + { + "normalized_name": "nine to five", + "status": "Broken" + }, + { + "normalized_name": "lost ark", + "status": "Broken" + }, + { + "normalized_name": "archeage unchained", + "status": "Broken" + }, + { + "normalized_name": "hired ops", + "status": "Supported" + }, + { + "normalized_name": "watch dogs legion", + "status": "Supported" + }, + { + "normalized_name": "call of duty vanguard", + "status": "Broken" + }, + { + "normalized_name": "star citizen", + "status": "Running" + }, + { + "normalized_name": "quake champions", + "status": "Supported" + }, + { + "normalized_name": "pavlov vr", + "status": "Running" + }, + { + "normalized_name": "dauntless", + "status": "Running" + }, + { + "normalized_name": "naruto to boruto shinobi striker", + "status": "Broken" + }, + { + "normalized_name": "myth of empires", + "status": "Broken" + }, + { + "normalized_name": "league of legends", + "status": "Denied" + }, + { + "normalized_name": "gunfire reborn", + "status": "Supported" + }, + { + "normalized_name": "elden ring", + "status": "Supported" + }, + { + "normalized_name": "tibia", + "status": "Supported" + }, + { + "normalized_name": "will to live online", + "status": "Running" + }, + { + "normalized_name": "battlefleet gothic armada 2", + "status": "Broken" + }, + { + "normalized_name": "super people", + "status": "Broken" + }, + { + "normalized_name": "darwin project", + "status": "Broken" + }, + { + "normalized_name": "call of duty black ops iiii", + "status": "Supported" + }, + { + "normalized_name": "battlebit", + "status": "Running" + }, + { + "normalized_name": "vindictus", + "status": "Running" + }, + { + "normalized_name": "deceit", + "status": "Supported" + }, + { + "normalized_name": "absolver", + "status": "Broken" + }, + { + "normalized_name": "ez2on reboot r", + "status": "Supported" + }, + { + "normalized_name": "closers", + "status": "Broken" + }, + { + "normalized_name": "allods online", + "status": "Broken" + }, + { + "normalized_name": "warframe", + "status": "Supported" + }, + { + "normalized_name": "fiesta online", + "status": "Running" + }, + { + "normalized_name": "friday the 13th the game", + "status": "Running" + }, + { + "normalized_name": "grand theft auto v", + "status": "Denied" + }, + { + "normalized_name": "super animal royale", + "status": "Supported" + }, + { + "normalized_name": "fallout 76", + "status": "Running" + }, + { + "normalized_name": "another eden", + "status": "Broken" + }, + { + "normalized_name": "overwatch 2", + "status": "Supported" + }, + { + "normalized_name": "century age of ashes", + "status": "Broken" + }, + { + "normalized_name": "path of titans", + "status": "Supported" + }, + { + "normalized_name": "awesomenauts the 2d moba", + "status": "Supported" + }, + { + "normalized_name": "dungeon fighter online", + "status": "Running" + }, + { + "normalized_name": "evil dead the game", + "status": "Supported" + }, + { + "normalized_name": "scp secret laboratory", + "status": "Running" + }, + { + "normalized_name": "midnight ghost hunt", + "status": "Running" + }, + { + "normalized_name": "rumble fighter unleashed", + "status": "Broken" + }, + { + "normalized_name": "hood outlaws & legends", + "status": "Broken" + }, + { + "normalized_name": "multiversus", + "status": "Supported" + }, + { + "normalized_name": "vrchat", + "status": "Supported" + }, + { + "normalized_name": "knight online", + "status": "Broken" + }, + { + "normalized_name": "dragon ball the breakers", + "status": "Broken" + }, + { + "normalized_name": "battalion legacy", + "status": "Supported" + }, + { + "normalized_name": "tower of fantasy", + "status": "Running" + }, + { + "normalized_name": "lost light", + "status": "Broken" + }, + { + "normalized_name": "shatterline", + "status": "Supported" + }, + { + "normalized_name": "gundam evolution", + "status": "Running" + }, + { + "normalized_name": "arma reforger", + "status": "Supported" + }, + { + "normalized_name": "ea sports fifa 23", + "status": "Denied" + }, + { + "normalized_name": "call of duty modern warfare ii (2022)", + "status": "Broken" + }, + { + "normalized_name": "marauders", + "status": "Broken" + }, + { + "normalized_name": "predecessor", + "status": "Supported" + }, + { + "normalized_name": "final fantasy xiv", + "status": "Running" + }, + { + "normalized_name": "xdefiant", + "status": "Supported" + }, + { + "normalized_name": "roblox", + "status": "Denied" + }, + { + "normalized_name": "boundary", + "status": "Broken" + }, + { + "normalized_name": "the finals", + "status": "Supported" + }, + { + "normalized_name": "project playtime", + "status": "Running" + }, + { + "normalized_name": "farlight 84", + "status": "Supported" + }, + { + "normalized_name": "riders republic", + "status": "Supported" + }, + { + "normalized_name": "nikke goddess of victory", + "status": "Broken" + }, + { + "normalized_name": "tom clancy’s rainbow six extraction", + "status": "Running" + }, + { + "normalized_name": "the first descendant", + "status": "Running" + }, + { + "normalized_name": "counter strike 2", + "status": "Supported" + }, + { + "normalized_name": "a.v.a global", + "status": "Broken" + }, + { + "normalized_name": "call of duty modern warfare iii (2023)", + "status": "Broken" + }, + { + "normalized_name": "starsiege deadzone", + "status": "Supported" + }, + { + "normalized_name": "eternal return", + "status": "Supported" + }, + { + "normalized_name": "armored core vi fires of rubicon", + "status": "Supported" + }, + { + "normalized_name": "deceive inc.", + "status": "Running" + }, + { + "normalized_name": "alien arena warriors of mars", + "status": "Broken" + }, + { + "normalized_name": "goose goose duck", + "status": "Running" + }, + { + "normalized_name": "realm royale reforged", + "status": "Broken" + }, + { + "normalized_name": "hot wheels unleashed 2 turbocharged", + "status": "Running" + }, + { + "normalized_name": "my hero ultra rumble", + "status": "Supported" + }, + { + "normalized_name": "microvolts recharged", + "status": "Supported" + }, + { + "normalized_name": "arc raiders", + "status": "Running" + }, + { + "normalized_name": "lords of the fallen (2023)", + "status": "Supported" + }, + { + "normalized_name": "deceit 2", + "status": "Broken" + }, + { + "normalized_name": "block n load 2", + "status": "Broken" + }, + { + "normalized_name": "hypesquad", + "status": "Broken" + }, + { + "normalized_name": "ea sports madden nfl 23", + "status": "Supported" + }, + { + "normalized_name": "f.e.a.r.", + "status": "Broken" + }, + { + "normalized_name": "zombie panic! source", + "status": "Supported" + }, + { + "normalized_name": "ea sports madden nfl 24", + "status": "Denied" + }, + { + "normalized_name": "suicide squad kill the justice league", + "status": "Supported" + }, + { + "normalized_name": "helldivers 2", + "status": "Running" + }, + { + "normalized_name": "dungeonborne", + "status": "Broken" + }, + { + "normalized_name": "warface clutch", + "status": "Broken" + }, + { + "normalized_name": "dark messiah of might & magic", + "status": "Supported" + }, + { + "normalized_name": "the ship", + "status": "Running" + }, + { + "normalized_name": "synced", + "status": "Broken" + }, + { + "normalized_name": "kurtzpel", + "status": "Supported" + }, + { + "normalized_name": "hoard", + "status": "Supported" + }, + { + "normalized_name": "veiled experts", + "status": "Running" + }, + { + "normalized_name": "enlisted reinforced", + "status": "Supported" + }, + { + "normalized_name": "ea sports fc 24", + "status": "Denied" + }, + { + "normalized_name": "tree of savior", + "status": "Supported" + }, + { + "normalized_name": "wargame european escalation", + "status": "Supported" + }, + { + "normalized_name": "mini royale", + "status": "Supported" + }, + { + "normalized_name": "fivem", + "status": "Denied" + }, + { + "normalized_name": "hawked", + "status": "Broken" + }, + { + "normalized_name": "out of reach", + "status": "Supported" + }, + { + "normalized_name": "tribes 3 rivals", + "status": "Supported" + }, + { + "normalized_name": "frontlines fuel of war", + "status": "Broken" + }, + { + "normalized_name": "paragon the overprime", + "status": "Running" + }, + { + "normalized_name": "ark survival ascended", + "status": "Supported" + }, + { + "normalized_name": "midair", + "status": "Supported" + }, + { + "normalized_name": "ヘブンバーンズレッド (heaven burns red)", + "status": "Broken" + }, + { + "normalized_name": "microworks", + "status": "Supported" + }, + { + "normalized_name": "teamfight tactics", + "status": "Denied" + }, + { + "normalized_name": "smite 2", + "status": "Supported" + }, + { + "normalized_name": "elsword", + "status": "Broken" + }, + { + "normalized_name": "counter strike 2 (faceit)", + "status": "Denied" + }, + { + "normalized_name": "battle teams 2", + "status": "Broken" + }, + { + "normalized_name": "smash legends", + "status": "Running" + }, + { + "normalized_name": "total war shogun 2", + "status": "Supported" + }, + { + "normalized_name": "aura kingdom", + "status": "Broken" + }, + { + "normalized_name": "ea sports fc 25", + "status": "Denied" + }, + { + "normalized_name": "magicka wizard wars", + "status": "Broken" + }, + { + "normalized_name": "world of tanks blitz", + "status": "Running" + }, + { + "normalized_name": "mir4", + "status": "Broken" + }, + { + "normalized_name": "f.e.a.r. perseus mandate", + "status": "Broken" + }, + { + "normalized_name": "the bornless", + "status": "Broken" + }, + { + "normalized_name": "sky noon", + "status": "Running" + }, + { + "normalized_name": "combat arms the classic", + "status": "Running" + }, + { + "normalized_name": "soldier front 2", + "status": "Broken" + }, + { + "normalized_name": "once human (row/intl)", + "status": "Running" + }, + { + "normalized_name": "kartrider drift", + "status": "Supported" + }, + { + "normalized_name": "mecha break", + "status": "Broken" + }, + { + "normalized_name": "ark 2", + "status": "Broken" + }, + { + "normalized_name": "zenless zone zero", + "status": "Running" + }, + { + "normalized_name": "ea sports madden nfl 25", + "status": "Denied" + }, + { + "normalized_name": "gray zone warfare", + "status": "Running" + }, + { + "normalized_name": "alara prime", + "status": "Broken" + }, + { + "normalized_name": "sea of thieves", + "status": "Supported" + }, + { + "normalized_name": "plants vs zombies garden warfare 2", + "status": "Denied" + }, + { + "normalized_name": "gigantic rampage", + "status": "Running" + }, + { + "normalized_name": "counter strike global offensive (esl)", + "status": "Broken" + }, + { + "normalized_name": "midair 2", + "status": "Broken" + }, + { + "normalized_name": "2xko", + "status": "Denied" + }, + { + "normalized_name": "counter strike 2 (esea)", + "status": "Denied" + }, + { + "normalized_name": "synduality echo of ada", + "status": "Broken" + }, + { + "normalized_name": "world of tanks", + "status": "Running" + }, + { + "normalized_name": "level zero extraction", + "status": "Supported" + }, + { + "normalized_name": "counter strike 2 (esl)", + "status": "Denied" + }, + { + "normalized_name": "arena breakout infinite", + "status": "Broken" + }, + { + "normalized_name": "pixel gun 3d pc", + "status": "Supported" + }, + { + "normalized_name": "marvel rivals", + "status": "Running" + }, + { + "normalized_name": "caliber", + "status": "Supported" + }, + { + "normalized_name": "return alive", + "status": "Broken" + }, + { + "normalized_name": "world of warcraft", + "status": "Running" + }, + { + "normalized_name": "dungeon stalkers", + "status": "Running" + }, + { + "normalized_name": "megaton musashi w wired", + "status": "Supported" + }, + { + "normalized_name": "wuthering waves", + "status": "Broken" + }, + { + "normalized_name": "dota underlords", + "status": "Supported" + }, + { + "normalized_name": "battle crush", + "status": "Broken" + }, + { + "normalized_name": "call of duty warzone 2.0", + "status": "Broken" + }, + { + "normalized_name": "beautiful light", + "status": "Broken" + }, + { + "normalized_name": "starcraft ii", + "status": "Running" + }, + { + "normalized_name": "wakerunners", + "status": "Broken" + }, + { + "normalized_name": "street fighter v (esl)", + "status": "Broken" + }, + { + "normalized_name": "blue protocol", + "status": "Broken" + }, + { + "normalized_name": "dark and darker", + "status": "Running" + }, + { + "normalized_name": "mortal kombat x (esl)", + "status": "Broken" + }, + { + "normalized_name": "dota 2 (faceit)", + "status": "Broken" + }, + { + "normalized_name": "perfect world m", + "status": "Broken" + }, + { + "normalized_name": "killer klowns from outer space the game", + "status": "Supported" + }, + { + "normalized_name": "world of tanks (esl)", + "status": "Denied" + }, + { + "normalized_name": "ea sports fifa 23 (faceit)", + "status": "Broken" + }, + { + "normalized_name": "call of duty black ops 6", + "status": "Broken" + }, + { + "normalized_name": "diabotical rogue", + "status": "Supported" + }, + { + "normalized_name": "mortal kombat 11 (esl)", + "status": "Broken" + }, + { + "normalized_name": "league of legends (faceit)", + "status": "Broken" + }, + { + "normalized_name": "counter strike global offensive (esportal)", + "status": "Broken" + }, + { + "normalized_name": "fragpunk", + "status": "Running" + }, + { + "normalized_name": "battlecore arena", + "status": "Supported" + }, + { + "normalized_name": "guilty gear strive (esl)", + "status": "Broken" + }, + { + "normalized_name": "rainbow six siege (faceit)", + "status": "Broken" + }, + { + "normalized_name": "dota 2 (esportal)", + "status": "Broken" + }, + { + "normalized_name": "project l33t", + "status": "Running" + }, + { + "normalized_name": "mabinogi", + "status": "Broken" + }, + { + "normalized_name": "tekken 7 (esl)", + "status": "Broken" + }, + { + "normalized_name": "rocket league (faceit)", + "status": "Broken" + }, + { + "normalized_name": "counter strike 2 (esportal)", + "status": "Broken" + }, + { + "normalized_name": "strinova", + "status": "Broken" + }, + { + "normalized_name": "black mesa", + "status": "Supported" + }, + { + "normalized_name": "fifa 23 (esl)", + "status": "Broken" + }, + { + "normalized_name": "overwatch 2 (faceit)", + "status": "Broken" + }, + { + "normalized_name": "momentum mod", + "status": "Supported" + }, + { + "normalized_name": "warcraft iii", + "status": "Running" + }, + { + "normalized_name": "street fighter 6 (esl)", + "status": "Broken" + }, + { + "normalized_name": "valorant (faceit)", + "status": "Broken" + }, + { + "normalized_name": "s&box", + "status": "Supported" + }, + { + "normalized_name": "heroes of the storm", + "status": "Running" + }, + { + "normalized_name": "nba 2k24 (esl)", + "status": "Broken" + }, + { + "normalized_name": "dune awakening", + "status": "Broken" + }, + { + "normalized_name": "warcraft iii reforged", + "status": "Running" + }, + { + "normalized_name": "madden 23 (esl)", + "status": "Broken" + }, + { + "normalized_name": "throne and liberty", + "status": "Running" + }, + { + "normalized_name": "the texas chain saw massacre", + "status": "Running" + }, + { + "normalized_name": "nba 2k23 (esl)", + "status": "Broken" + }, + { + "normalized_name": "concord", + "status": "Denied" + }, + { + "normalized_name": "bleeding edge", + "status": "Broken" + }, + { + "normalized_name": "madden 24 (esl)", + "status": "Broken" + }, + { + "normalized_name": "half life", + "status": "Supported" + }, + { + "normalized_name": "resident evil revelations", + "status": "Running" + }, + { + "normalized_name": "red orchestra ostfront 41 45", + "status": "Supported" + }, + { + "normalized_name": "delta force hawk ops", + "status": "Broken" + }, + { + "normalized_name": "lightning", + "status": "Broken" + }, + { + "normalized_name": "natural selection 2", + "status": "Running" + }, + { + "normalized_name": "brawlhalla (esl)", + "status": "Broken" + }, + { + "normalized_name": "n age", + "status": "Broken" + }, + { + "normalized_name": "red faction armageddon", + "status": "Supported" + }, + { + "normalized_name": "ea sports wrc 24", + "status": "Denied" + }, + { + "normalized_name": "100% orange juice", + "status": "Supported" + }, + { + "normalized_name": "snowbreak containment zone (row/intl)", + "status": "Running" + }, + { + "normalized_name": "snowbreak containment zone (cn)", + "status": "Broken" + }, + { + "normalized_name": "decimated", + "status": "Broken" + }, + { + "normalized_name": "contract wars client", + "status": "Running" + }, + { + "normalized_name": "ricochet", + "status": "Supported" + }, + { + "normalized_name": "armello", + "status": "Supported" + }, + { + "normalized_name": "witch it", + "status": "Running" + }, + { + "normalized_name": "sonic & all stars racing transformed collection", + "status": "Running" + }, + { + "normalized_name": "exos heroes", + "status": "Broken" + }, + { + "normalized_name": "perfect new world", + "status": "Broken" + }, + { + "normalized_name": "warhammer 40 000 speed freeks", + "status": "Running" + }, + { + "normalized_name": "dino d day", + "status": "Running" + }, + { + "normalized_name": "icarus online", + "status": "Broken" + }, + { + "normalized_name": "helldivers", + "status": "Running" + }, + { + "normalized_name": "avorion", + "status": "Running" + }, + { + "normalized_name": "half life opposing force", + "status": "Supported" + }, + { + "normalized_name": "blade & soul", + "status": "Broken" + }, + { + "normalized_name": "spectre divide", + "status": "Denied" + }, + { + "normalized_name": "stormgate", + "status": "Running" + }, + { + "normalized_name": "red orchestra 2 heroes of stalingrad", + "status": "Running" + }, + { + "normalized_name": "r2beat (アールツービート)", + "status": "Broken" + }, + { + "normalized_name": "the four kings casino and slots", + "status": "Running" + }, + { + "normalized_name": "sniper elite nazi zombie army", + "status": "Running" + }, + { + "normalized_name": "miscreated", + "status": "Broken" + }, + { + "normalized_name": "red stone online", + "status": "Broken" + }, + { + "normalized_name": "ashfall", + "status": "Broken" + }, + { + "normalized_name": "metal slug awakening", + "status": "Broken" + }, + { + "normalized_name": "gas guzzlers extreme", + "status": "Running" + }, + { + "normalized_name": "magicka", + "status": "Running" + }, + { + "normalized_name": "grey goo", + "status": "Running" + }, + { + "normalized_name": "rappelz", + "status": "Broken" + }, + { + "normalized_name": "supervive", + "status": "Denied" + }, + { + "normalized_name": "splitgate 2", + "status": "Planned" + }, + { + "normalized_name": "xera survival", + "status": "Running" + }, + { + "normalized_name": "monday night combat", + "status": "Running" + }, + { + "normalized_name": "tallowmere 2 curse of the kittens", + "status": "Supported" + }, + { + "normalized_name": "orion prelude", + "status": "Running" + }, + { + "normalized_name": "undecember", + "status": "Running" + }, + { + "normalized_name": "diablo ii", + "status": "Running" + }, + { + "normalized_name": "harry potter quidditch champions", + "status": "Supported" + }, + { + "normalized_name": "aion", + "status": "Running" + }, + { + "normalized_name": "aion (eu)", + "status": "Running" + }, + { + "normalized_name": "serious sam 3", + "status": "Supported" + }, + { + "normalized_name": "call of duty advanced warfare", + "status": "Running" + }, + { + "normalized_name": "swords and soldiers hd", + "status": "Running" + }, + { + "normalized_name": "royal crown", + "status": "Broken" + }, + { + "normalized_name": "starcraft", + "status": "Running" + }, + { + "normalized_name": "deadlock", + "status": "Supported" + }, + { + "normalized_name": "skull and bones", + "status": "Running" + }, + { + "normalized_name": "critter crunch", + "status": "Running" + }, + { + "normalized_name": "inversion", + "status": "Running" + }, + { + "normalized_name": "neotokyo", + "status": "Broken" + }, + { + "normalized_name": "warlords awakening", + "status": "Broken" + }, + { + "normalized_name": "infestation survivor stories classic", + "status": "Broken" + }, + { + "normalized_name": "diablo iii", + "status": "Running" + }, + { + "normalized_name": "solider one", + "status": "Broken" + }, + { + "normalized_name": "3on3 freestyle", + "status": "Broken" + }, + { + "normalized_name": "one punch man a hero nobody knows", + "status": "Broken" + }, + { + "normalized_name": "counter strike global offensive (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "blackshot mercenary warfare fps", + "status": "Broken" + }, + { + "normalized_name": "ring of elysium", + "status": "Broken" + }, + { + "normalized_name": "test drive unlimited solar crown", + "status": "Planned" + }, + { + "normalized_name": "resident evil resistance", + "status": "Running" + }, + { + "normalized_name": "synergy", + "status": "Supported" + }, + { + "normalized_name": "revelations 2012", + "status": "Running" + }, + { + "normalized_name": "shot online", + "status": "Broken" + }, + { + "normalized_name": "medal of honor airborne", + "status": "Running" + }, + { + "normalized_name": "starcraft", + "status": "Running" + }, + { + "normalized_name": "magic to master", + "status": "Broken" + }, + { + "normalized_name": "3on3 freestyle rebound", + "status": "Broken" + }, + { + "normalized_name": "dual universe", + "status": "Broken" + }, + { + "normalized_name": "counter strike 2 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "blacklight retribution", + "status": "Broken" + }, + { + "normalized_name": "astra knights of veda", + "status": "Broken" + }, + { + "normalized_name": "infestation world", + "status": "Broken" + }, + { + "normalized_name": "war rock", + "status": "Broken" + }, + { + "normalized_name": "metro conflict", + "status": "Broken" + }, + { + "normalized_name": "faaast penguin", + "status": "Running" + }, + { + "normalized_name": "umbrella corps", + "status": "Broken" + }, + { + "normalized_name": "sven co op", + "status": "Supported" + }, + { + "normalized_name": "uncharted waters online", + "status": "Running" + }, + { + "normalized_name": "assassin's creed iii", + "status": "Running" + }, + { + "normalized_name": "diablo ii resurrected", + "status": "Running" + }, + { + "normalized_name": "ragnarok online prime", + "status": "Broken" + }, + { + "normalized_name": "bless online", + "status": "Broken" + }, + { + "normalized_name": "last oasis", + "status": "Broken" + }, + { + "normalized_name": "counter strike global offensive (gamersclub)", + "status": "Broken" + }, + { + "normalized_name": "dead cide club", + "status": "Broken" + }, + { + "normalized_name": "league of legends (chn)", + "status": "Broken" + }, + { + "normalized_name": "infestation the new z", + "status": "Broken" + }, + { + "normalized_name": "ragnarok online 2", + "status": "Broken" + }, + { + "normalized_name": "gunz the duel", + "status": "Broken" + }, + { + "normalized_name": "duckside", + "status": "Broken" + }, + { + "normalized_name": "flippin misfits", + "status": "Broken" + }, + { + "normalized_name": "roller coaster rampage", + "status": "Broken" + }, + { + "normalized_name": "rakion chaos force", + "status": "Broken" + }, + { + "normalized_name": "medal of honor warfighter", + "status": "Running" + }, + { + "normalized_name": "diablo iv", + "status": "Running" + }, + { + "normalized_name": "silkroad online", + "status": "Broken" + }, + { + "normalized_name": "twin saga", + "status": "Broken" + }, + { + "normalized_name": "aew fight forever", + "status": "Broken" + }, + { + "normalized_name": "counter strike 2 (gamersclub)", + "status": "Broken" + }, + { + "normalized_name": "just survive", + "status": "Broken" + }, + { + "normalized_name": "metin2", + "status": "Running" + }, + { + "normalized_name": "metin2 (kor)", + "status": "Broken" + }, + { + "normalized_name": "infestation survivor stories revival", + "status": "Broken" + }, + { + "normalized_name": "arctic combat", + "status": "Broken" + }, + { + "normalized_name": "granado espada", + "status": "Running" + }, + { + "normalized_name": "granado espada (kor)", + "status": "Broken" + }, + { + "normalized_name": "granado espada japan", + "status": "Broken" + }, + { + "normalized_name": "tarisland", + "status": "Broken" + }, + { + "normalized_name": "breachers", + "status": "Running" + }, + { + "normalized_name": "line of sight", + "status": "Running" + }, + { + "normalized_name": "dying light bad blood", + "status": "Broken" + }, + { + "normalized_name": "granado espada (eur)", + "status": "Broken" + }, + { + "normalized_name": "twelvesky 2 classic", + "status": "Broken" + }, + { + "normalized_name": "fault elder orb", + "status": "Broken" + }, + { + "normalized_name": "doom 3", + "status": "Running" + }, + { + "normalized_name": "united 1944", + "status": "Broken" + }, + { + "normalized_name": "point blank", + "status": "Broken" + }, + { + "normalized_name": "me_ion", + "status": "Broken" + }, + { + "normalized_name": "shadow arena", + "status": "Broken" + }, + { + "normalized_name": "m.a.r.s.", + "status": "Broken" + }, + { + "normalized_name": "counter strike global offensive (esgplay)", + "status": "Broken" + }, + { + "normalized_name": "the culling 2", + "status": "Broken" + }, + { + "normalized_name": "ghosts of tabor", + "status": "Broken" + }, + { + "normalized_name": "undawn", + "status": "Broken" + }, + { + "normalized_name": "infestation survivor stories 2020", + "status": "Broken" + }, + { + "normalized_name": "florensia", + "status": "Broken" + }, + { + "normalized_name": "hero plus", + "status": "Broken" + }, + { + "normalized_name": "nakwon last paradise", + "status": "Running" + }, + { + "normalized_name": "seal online", + "status": "Broken" + }, + { + "normalized_name": "half life vr mod", + "status": "Broken" + }, + { + "normalized_name": "atlantica global", + "status": "Broken" + }, + { + "normalized_name": "atlantica europe", + "status": "Broken" + }, + { + "normalized_name": "far cry 3", + "status": "Running" + }, + { + "normalized_name": "lineage ii", + "status": "Broken" + }, + { + "normalized_name": "audition online", + "status": "Broken" + }, + { + "normalized_name": "summum aeterna", + "status": "Broken" + }, + { + "normalized_name": "wild card football", + "status": "Broken" + }, + { + "normalized_name": "scavengers", + "status": "Broken" + }, + { + "normalized_name": "cardlife creative survival", + "status": "Running" + }, + { + "normalized_name": "video horror society", + "status": "Running" + }, + { + "normalized_name": "next day survival", + "status": "Broken" + }, + { + "normalized_name": "team fortress 2 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "spirit detective", + "status": "Broken" + }, + { + "normalized_name": "chimeraland", + "status": "Broken" + }, + { + "normalized_name": "infestation battle royale", + "status": "Broken" + }, + { + "normalized_name": "dragonica", + "status": "Supported" + }, + { + "normalized_name": "tales runner", + "status": "Broken" + }, + { + "normalized_name": "finalcypher", + "status": "Broken" + }, + { + "normalized_name": "f1 24", + "status": "Denied" + }, + { + "normalized_name": "insurgency modern infantry combat", + "status": "Broken" + }, + { + "normalized_name": "sentry:obelisk of dawn", + "status": "Broken" + }, + { + "normalized_name": "joint operations escalation", + "status": "Broken" + }, + { + "normalized_name": "aion classic", + "status": "Broken" + }, + { + "normalized_name": "dragomon hunter", + "status": "Broken" + }, + { + "normalized_name": "friends vs friends", + "status": "Running" + }, + { + "normalized_name": "the culling", + "status": "Supported" + }, + { + "normalized_name": "frozen flame", + "status": "Broken" + }, + { + "normalized_name": "rockshot", + "status": "Broken" + }, + { + "normalized_name": "wayfinder", + "status": "Broken" + }, + { + "normalized_name": "kingshunt", + "status": "Broken" + }, + { + "normalized_name": "league of legends (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "super people 2", + "status": "Broken" + }, + { + "normalized_name": "project n", + "status": "Broken" + }, + { + "normalized_name": "nether the untold chapter", + "status": "Broken" + }, + { + "normalized_name": "arcane saga online", + "status": "Broken" + }, + { + "normalized_name": "gunz 2 the second duel", + "status": "Broken" + }, + { + "normalized_name": "ea sports fc 24 (faceit)", + "status": "Broken" + }, + { + "normalized_name": "metal revolution", + "status": "Broken" + }, + { + "normalized_name": "punishing gray raven", + "status": "Broken" + }, + { + "normalized_name": "brainbread 2", + "status": "Supported" + }, + { + "normalized_name": "guardian chronicle", + "status": "Broken" + }, + { + "normalized_name": "prey", + "status": "Running" + }, + { + "normalized_name": "ragnarok online", + "status": "Broken" + }, + { + "normalized_name": "zyconix", + "status": "Broken" + }, + { + "normalized_name": "smelogs playground", + "status": "Broken" + }, + { + "normalized_name": "a twisted path to renown", + "status": "Broken" + }, + { + "normalized_name": "traha global", + "status": "Running" + }, + { + "normalized_name": "life is feudal mmo", + "status": "Broken" + }, + { + "normalized_name": "babylon's fall", + "status": "Broken" + }, + { + "normalized_name": "ashes of creation apocalypse", + "status": "Broken" + }, + { + "normalized_name": "dota 2 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "z1 battle royale", + "status": "Running" + }, + { + "normalized_name": "仙侠世界 (the mythical realm)", + "status": "Broken" + }, + { + "normalized_name": "romero's aftermath", + "status": "Broken" + }, + { + "normalized_name": "district 187", + "status": "Broken" + }, + { + "normalized_name": "crossfire", + "status": "Broken" + }, + { + "normalized_name": "ea sports fc 25 (faceit)", + "status": "Broken" + }, + { + "normalized_name": "neverness to everness", + "status": "Broken" + }, + { + "normalized_name": "warhammer 40 000 space marine 2", + "status": "Broken" + }, + { + "normalized_name": "half life escape 2.0", + "status": "Running" + }, + { + "normalized_name": "9dragons", + "status": "Broken" + }, + { + "normalized_name": "medal of honor", + "status": "Running" + }, + { + "normalized_name": "lineage ii essence", + "status": "Broken" + }, + { + "normalized_name": "eternal kingdom battle peak", + "status": "Broken" + }, + { + "normalized_name": "motogp24", + "status": "Running" + }, + { + "normalized_name": "argentum online", + "status": "Broken" + }, + { + "normalized_name": "starship troopers extermination", + "status": "Broken" + }, + { + "normalized_name": "alvo vr", + "status": "Broken" + }, + { + "normalized_name": "cyberless online", + "status": "Supported" + }, + { + "normalized_name": "anarchy wolf's law", + "status": "Broken" + }, + { + "normalized_name": "rocket league (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "argo", + "status": "Broken" + }, + { + "normalized_name": "the front", + "status": "Running" + }, + { + "normalized_name": "12tails", + "status": "Broken" + }, + { + "normalized_name": "crimecraft", + "status": "Broken" + }, + { + "normalized_name": "lastchaos", + "status": "Broken" + }, + { + "normalized_name": "king arthur legends rise", + "status": "Broken" + }, + { + "normalized_name": "once human (chn)", + "status": "Broken" + }, + { + "normalized_name": "dread hunger", + "status": "Running" + }, + { + "normalized_name": "record of lodoss war online", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's rainbow six vegas 2", + "status": "Running" + }, + { + "normalized_name": "ragnarok landverse", + "status": "Broken" + }, + { + "normalized_name": "sword art online integral factor", + "status": "Broken" + }, + { + "normalized_name": "project sparrow", + "status": "Running" + }, + { + "normalized_name": "super dragon ball heroes world mission", + "status": "Running" + }, + { + "normalized_name": "robocraft", + "status": "Supported" + }, + { + "normalized_name": "shoot on sight", + "status": "Broken" + }, + { + "normalized_name": "hell is others", + "status": "Running" + }, + { + "normalized_name": "sniper ghost warrior contracts", + "status": "Running" + }, + { + "normalized_name": "call of duty black ops 3 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "fear the night", + "status": "Broken" + }, + { + "normalized_name": "全民街篮 (national street basketball)", + "status": "Broken" + }, + { + "normalized_name": "combat arms", + "status": "Broken" + }, + { + "normalized_name": "tower alliance online", + "status": "Broken" + }, + { + "normalized_name": "revenblade", + "status": "Broken" + }, + { + "normalized_name": "war robots frontiers", + "status": "Running" + }, + { + "normalized_name": "ballistic overkill", + "status": "Supported" + }, + { + "normalized_name": "legend of ares", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's ghost recon future soldier", + "status": "Running" + }, + { + "normalized_name": "hide or die", + "status": "Broken" + }, + { + "normalized_name": "kingdom under fire 2", + "status": "Broken" + }, + { + "normalized_name": "ride 5", + "status": "Broken" + }, + { + "normalized_name": "guilty gear strive (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "phantomers", + "status": "Broken" + }, + { + "normalized_name": "honkai impact 3rd (chn)", + "status": "Broken" + }, + { + "normalized_name": "para pa", + "status": "Broken" + }, + { + "normalized_name": "fate trigger:the novita", + "status": "Broken" + }, + { + "normalized_name": "conqueror's blade", + "status": "Running" + }, + { + "normalized_name": "battlefleet gothic armada", + "status": "Running" + }, + { + "normalized_name": "navyfield", + "status": "Broken" + }, + { + "normalized_name": "america's army proving grounds", + "status": "Running" + }, + { + "normalized_name": "轮回之沙 (sands of reincarnation)", + "status": "Broken" + }, + { + "normalized_name": "alchemia story", + "status": "Running" + }, + { + "normalized_name": "dreadnought", + "status": "Broken" + }, + { + "normalized_name": "wolfteam turkey", + "status": "Broken" + }, + { + "normalized_name": "days of war", + "status": "Running" + }, + { + "normalized_name": "yulgang th", + "status": "Broken" + }, + { + "normalized_name": "rise of agon", + "status": "Broken" + }, + { + "normalized_name": "counter strike 2 (esgplay)", + "status": "Broken" + }, + { + "normalized_name": "blackshot revolution", + "status": "Broken" + }, + { + "normalized_name": "cabal online", + "status": "Broken" + }, + { + "normalized_name": "anarchy legends online", + "status": "Broken" + }, + { + "normalized_name": "the crew motorfest", + "status": "Broken" + }, + { + "normalized_name": "sniper elite 4", + "status": "Running" + }, + { + "normalized_name": "legend of edda pegasus", + "status": "Broken" + }, + { + "normalized_name": "enemy territory quake wars", + "status": "Broken" + }, + { + "normalized_name": "metro conflict the origin", + "status": "Broken" + }, + { + "normalized_name": "space junkies", + "status": "Broken" + }, + { + "normalized_name": "kritika online sea", + "status": "Broken" + }, + { + "normalized_name": "last year", + "status": "Broken" + }, + { + "normalized_name": "rend", + "status": "Broken" + }, + { + "normalized_name": "legends of aria", + "status": "Running" + }, + { + "normalized_name": "apex legends (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "outlaws of the old west", + "status": "Running" + }, + { + "normalized_name": "江湖客栈 单人模式 (journeyman's inn)", + "status": "Broken" + }, + { + "normalized_name": "princess connect! re dive", + "status": "Broken" + }, + { + "normalized_name": "priston tale", + "status": "Broken" + }, + { + "normalized_name": "ea sports fc 26", + "status": "Denied" + }, + { + "normalized_name": "dominance", + "status": "Broken" + }, + { + "normalized_name": "project zero", + "status": "Broken" + }, + { + "normalized_name": "dirt rally 2.0", + "status": "Running" + }, + { + "normalized_name": "summoners war", + "status": "Broken" + }, + { + "normalized_name": "joint operations combined arms gold", + "status": "Broken" + }, + { + "normalized_name": "marvel end time arena", + "status": "Broken" + }, + { + "normalized_name": "overstep", + "status": "Running" + }, + { + "normalized_name": "teamfight tactics (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "zula global", + "status": "Broken" + }, + { + "normalized_name": "仙侠世界2 (the mythical realm 2)", + "status": "Broken" + }, + { + "normalized_name": "rusty hearts", + "status": "Broken" + }, + { + "normalized_name": "dragon ball project multi", + "status": "Running" + }, + { + "normalized_name": "contractors showdown", + "status": "Broken" + }, + { + "normalized_name": "il 2 sturmovik cliffs of dover", + "status": "Broken" + }, + { + "normalized_name": "tempest tower of probatio", + "status": "Broken" + }, + { + "normalized_name": "bullet run", + "status": "Broken" + }, + { + "normalized_name": "toram online", + "status": "Running" + }, + { + "normalized_name": "project f", + "status": "Running" + }, + { + "normalized_name": "ea sports fc 24 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "hyper scape", + "status": "Broken" + }, + { + "normalized_name": "his (heroes in the sky)", + "status": "Broken" + }, + { + "normalized_name": "flea madness", + "status": "Broken" + }, + { + "normalized_name": "trimurti online", + "status": "Running" + }, + { + "normalized_name": "nether resurrected", + "status": "Broken" + }, + { + "normalized_name": "lunia z revival", + "status": "Broken" + }, + { + "normalized_name": "joint operations typhoon rising", + "status": "Broken" + }, + { + "normalized_name": "cronous", + "status": "Broken" + }, + { + "normalized_name": "sweet time", + "status": "Broken" + }, + { + "normalized_name": "warcraft iii (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "grand theft auto vi", + "status": "Denied" + }, + { + "normalized_name": "monster jam showdown", + "status": "Running" + }, + { + "normalized_name": "summoners war chronicles", + "status": "Broken" + }, + { + "normalized_name": "america's army 3", + "status": "Broken" + }, + { + "normalized_name": "eternal magic", + "status": "Broken" + }, + { + "normalized_name": "wolfteam", + "status": "Broken" + }, + { + "normalized_name": "smite (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "x beat", + "status": "Broken" + }, + { + "normalized_name": "f1 25", + "status": "Denied" + }, + { + "normalized_name": "midnight guns", + "status": "Broken" + }, + { + "normalized_name": "gemini binary conflict", + "status": "Supported" + }, + { + "normalized_name": "o2jam online", + "status": "Broken" + }, + { + "normalized_name": "battlefield heroes", + "status": "Broken" + }, + { + "normalized_name": "milkchoco", + "status": "Broken" + }, + { + "normalized_name": "light⚡️nite", + "status": "Supported" + }, + { + "normalized_name": "krunker (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "war rock 2", + "status": "Broken" + }, + { + "normalized_name": "uncharted waters origin", + "status": "Running" + }, + { + "normalized_name": "legend of mir2", + "status": "Broken" + }, + { + "normalized_name": "mu", + "status": "Broken" + }, + { + "normalized_name": "gunbound", + "status": "Broken" + }, + { + "normalized_name": "assassin's creed iv black flag", + "status": "Running" + }, + { + "normalized_name": "tom clancy's rainbow six 3 raven shield", + "status": "Running" + }, + { + "normalized_name": "ragnarok the lost memories", + "status": "Broken" + }, + { + "normalized_name": "elyon", + "status": "Broken" + }, + { + "normalized_name": "zone4", + "status": "Broken" + }, + { + "normalized_name": "ragnarok re start", + "status": "Broken" + }, + { + "normalized_name": "decksplash", + "status": "Broken" + }, + { + "normalized_name": "robocraft royale", + "status": "Broken" + }, + { + "normalized_name": "warface turkey", + "status": "Broken" + }, + { + "normalized_name": "leap", + "status": "Running" + }, + { + "normalized_name": "warhammer 40 000 eternal crusade", + "status": "Broken" + }, + { + "normalized_name": "continent of the ninth seal", + "status": "Broken" + }, + { + "normalized_name": "archeage", + "status": "Broken" + }, + { + "normalized_name": "dekaron online th", + "status": "Broken" + }, + { + "normalized_name": "worlds adrift", + "status": "Broken" + }, + { + "normalized_name": "the riflemen", + "status": "Broken" + }, + { + "normalized_name": "mu online ph", + "status": "Broken" + }, + { + "normalized_name": "code of ashes", + "status": "Broken" + }, + { + "normalized_name": "farlight 84 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "ace online", + "status": "Broken" + }, + { + "normalized_name": "ea sports madden nfl 26", + "status": "Denied" + }, + { + "normalized_name": "exoborne", + "status": "Broken" + }, + { + "normalized_name": "jojo's bizarre adventure all star battle r", + "status": "Running" + }, + { + "normalized_name": "mu legend", + "status": "Broken" + }, + { + "normalized_name": "phantasy star online blue burst", + "status": "Broken" + }, + { + "normalized_name": "dekaron", + "status": "Broken" + }, + { + "normalized_name": "legend of mir3", + "status": "Broken" + }, + { + "normalized_name": "soldier of fortune ii double helix", + "status": "Broken" + }, + { + "normalized_name": "kingdom the blood", + "status": "Broken" + }, + { + "normalized_name": "ghost in the shell stand alone complex first assault online", + "status": "Broken" + }, + { + "normalized_name": "ea sports fc 25 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "soul dossier", + "status": "Broken" + }, + { + "normalized_name": "brick force", + "status": "Broken" + }, + { + "normalized_name": "tree of savior (japanese ver.)", + "status": "Running" + }, + { + "normalized_name": "ragnarok begins", + "status": "Broken" + }, + { + "normalized_name": "dragon ball sparking! zero", + "status": "Running" + }, + { + "normalized_name": "dirt 4", + "status": "Supported" + }, + { + "normalized_name": "dance! online", + "status": "Broken" + }, + { + "normalized_name": "digimonrpg", + "status": "Broken" + }, + { + "normalized_name": "ez fighter", + "status": "Broken" + }, + { + "normalized_name": "gersang", + "status": "Broken" + }, + { + "normalized_name": "return to castle wolfenstein", + "status": "Running" + }, + { + "normalized_name": "war robots", + "status": "Running" + }, + { + "normalized_name": "run and fire", + "status": "Broken" + }, + { + "normalized_name": "avabel online", + "status": "Running" + }, + { + "normalized_name": "crowz", + "status": "Broken" + }, + { + "normalized_name": "s4 league", + "status": "Broken" + }, + { + "normalized_name": "mu legend ph", + "status": "Broken" + }, + { + "normalized_name": "stay out", + "status": "Broken" + }, + { + "normalized_name": "mortal online 2", + "status": "Running" + }, + { + "normalized_name": "crucible", + "status": "Running" + }, + { + "normalized_name": "last chaos th", + "status": "Broken" + }, + { + "normalized_name": "overwatch 2 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "propnight", + "status": "Broken" + }, + { + "normalized_name": "lost ark (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "ava dog tag", + "status": "Broken" + }, + { + "normalized_name": "grand mar", + "status": "Broken" + }, + { + "normalized_name": "ragnarok v returns", + "status": "Broken" + }, + { + "normalized_name": "kritika zero", + "status": "Broken" + }, + { + "normalized_name": "need for speed prostreet", + "status": "Broken" + }, + { + "normalized_name": "call of duty mobile", + "status": "Broken" + }, + { + "normalized_name": "microvolts", + "status": "Broken" + }, + { + "normalized_name": "wild assault", + "status": "Running" + }, + { + "normalized_name": "sword art online fractured daydream", + "status": "Running" + }, + { + "normalized_name": "loadout", + "status": "Broken" + }, + { + "normalized_name": "riders of icarus", + "status": "Broken" + }, + { + "normalized_name": "golf king", + "status": "Broken" + }, + { + "normalized_name": "qplay", + "status": "Broken" + }, + { + "normalized_name": "ran online", + "status": "Broken" + }, + { + "normalized_name": "yogurting", + "status": "Broken" + }, + { + "normalized_name": "battlefield play4free", + "status": "Broken" + }, + { + "normalized_name": "freestyle 2 street basketball", + "status": "Broken" + }, + { + "normalized_name": "the king of fighters all star", + "status": "Broken" + }, + { + "normalized_name": "ashes of creation", + "status": "Broken" + }, + { + "normalized_name": "citybattle | virtual_earth", + "status": "Broken" + }, + { + "normalized_name": "fear the wolves", + "status": "Broken" + }, + { + "normalized_name": "sunset world online", + "status": "Supported" + }, + { + "normalized_name": "dreadlands", + "status": "Broken" + }, + { + "normalized_name": "legends of kailrate", + "status": "Broken" + }, + { + "normalized_name": "diabotical (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "survarium", + "status": "Broken" + }, + { + "normalized_name": "need for speed mobile", + "status": "Broken" + }, + { + "normalized_name": "zmr", + "status": "Broken" + }, + { + "normalized_name": "motogp25", + "status": "Broken" + }, + { + "normalized_name": "total lockdown", + "status": "Broken" + }, + { + "normalized_name": "left 4 dead", + "status": "Running" + }, + { + "normalized_name": "dark eden", + "status": "Broken" + }, + { + "normalized_name": "gunster", + "status": "Broken" + }, + { + "normalized_name": "kop", + "status": "Broken" + }, + { + "normalized_name": "mission花札", + "status": "Broken" + }, + { + "normalized_name": "battlefield 2142", + "status": "Broken" + }, + { + "normalized_name": "freestylefootball", + "status": "Broken" + }, + { + "normalized_name": "dragon nest", + "status": "Running" + }, + { + "normalized_name": "vegas infinite by pokerstars", + "status": "Broken" + }, + { + "normalized_name": "beasts of bermuda", + "status": "Broken" + }, + { + "normalized_name": "project cumberland", + "status": "Broken" + }, + { + "normalized_name": "ascendant.com", + "status": "Running" + }, + { + "normalized_name": "ghost online th", + "status": "Broken" + }, + { + "normalized_name": "sabotaj tr", + "status": "Broken" + }, + { + "normalized_name": "quake 3 arena (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "sos", + "status": "Broken" + }, + { + "normalized_name": "call of duty online", + "status": "Broken" + }, + { + "normalized_name": "sd gundam online", + "status": "Broken" + }, + { + "normalized_name": "byte breakers", + "status": "Running" + }, + { + "normalized_name": "vigor", + "status": "Running" + }, + { + "normalized_name": "magicka vietnam", + "status": "Running" + }, + { + "normalized_name": "atrix", + "status": "Broken" + }, + { + "normalized_name": "zzanggu springs", + "status": "Broken" + }, + { + "normalized_name": "newbaseball", + "status": "Broken" + }, + { + "normalized_name": "uncharted waters online (jpn)", + "status": "Running" + }, + { + "normalized_name": "trickster", + "status": "Broken" + }, + { + "normalized_name": "battlefield vietnam", + "status": "Broken" + }, + { + "normalized_name": "s.k.i.l.l. special force 2", + "status": "Broken" + }, + { + "normalized_name": "microvolts surge", + "status": "Broken" + }, + { + "normalized_name": "audition next level", + "status": "Broken" + }, + { + "normalized_name": "memories of mars", + "status": "Running" + }, + { + "normalized_name": "p53 monarch", + "status": "Broken" + }, + { + "normalized_name": "mobile suit gundam battle operation 2", + "status": "Broken" + }, + { + "normalized_name": "onward", + "status": "Running" + }, + { + "normalized_name": "naraka bladepoint (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "islands of nyne battle royale", + "status": "Broken" + }, + { + "normalized_name": "hazard ops", + "status": "Broken" + }, + { + "normalized_name": "maplestory 2", + "status": "Broken" + }, + { + "normalized_name": "contenders arena", + "status": "Broken" + }, + { + "normalized_name": "squad 44", + "status": "Running" + }, + { + "normalized_name": "wickland", + "status": "Running" + }, + { + "normalized_name": "istorm", + "status": "Broken" + }, + { + "normalized_name": "dragon sky", + "status": "Broken" + }, + { + "normalized_name": "ernis&fricky", + "status": "Broken" + }, + { + "normalized_name": "call of duty united offensive", + "status": "Running" + }, + { + "normalized_name": "elsword (jpn)", + "status": "Broken" + }, + { + "normalized_name": "crsed cuisine royale", + "status": "Supported" + }, + { + "normalized_name": "project nebula", + "status": "Broken" + }, + { + "normalized_name": "reign of kings", + "status": "Broken" + }, + { + "normalized_name": "special force 2 playpark ph", + "status": "Broken" + }, + { + "normalized_name": "mechabellum (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "mirror war", + "status": "Broken" + }, + { + "normalized_name": "killing floor 3", + "status": "Running" + }, + { + "normalized_name": "sniper elite 5", + "status": "Running" + }, + { + "normalized_name": "resident evil 6", + "status": "Running" + }, + { + "normalized_name": "dark eden origin", + "status": "Broken" + }, + { + "normalized_name": "yaburi", + "status": "Broken" + }, + { + "normalized_name": "新天上碑", + "status": "Broken" + }, + { + "normalized_name": "assassin's creed brotherhood", + "status": "Running" + }, + { + "normalized_name": "freestylefootball r", + "status": "Running" + }, + { + "normalized_name": "night of the dead", + "status": "Running" + }, + { + "normalized_name": "dysterra", + "status": "Broken" + }, + { + "normalized_name": "heat", + "status": "Broken" + }, + { + "normalized_name": "pubg battlegrounds (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "the cycle frontier", + "status": "Running" + }, + { + "normalized_name": "club audition", + "status": "Broken" + }, + { + "normalized_name": "space gears", + "status": "Broken" + }, + { + "normalized_name": "hero siege", + "status": "Supported" + }, + { + "normalized_name": "moonbase alpha", + "status": "Broken" + }, + { + "normalized_name": "大海战 navy field iv", + "status": "Broken" + }, + { + "normalized_name": "onair online", + "status": "Broken" + }, + { + "normalized_name": "stylia", + "status": "Broken" + }, + { + "normalized_name": "doom 3 resurrection of evil", + "status": "Running" + }, + { + "normalized_name": "karos", + "status": "Broken" + }, + { + "normalized_name": "blasterbeat", + "status": "Running" + }, + { + "normalized_name": "warcos", + "status": "Broken" + }, + { + "normalized_name": "code2040", + "status": "Broken" + }, + { + "normalized_name": "forts (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "dragona", + "status": "Broken" + }, + { + "normalized_name": "raise your tribe", + "status": "Broken" + }, + { + "normalized_name": "tasty shame in silver soul!", + "status": "Broken" + }, + { + "normalized_name": "citybattle | virtual earth (eu)", + "status": "Broken" + }, + { + "normalized_name": "rf online", + "status": "Broken" + }, + { + "normalized_name": "crasher", + "status": "Broken" + }, + { + "normalized_name": "raiderz", + "status": "Broken" + }, + { + "normalized_name": "rose online", + "status": "Running" + }, + { + "normalized_name": "fanta tennis", + "status": "Broken" + }, + { + "normalized_name": "far cry", + "status": "Running" + }, + { + "normalized_name": "astellia", + "status": "Broken" + }, + { + "normalized_name": "blockade", + "status": "Broken" + }, + { + "normalized_name": "hearthstone (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "deathgarden bloodharvest", + "status": "Broken" + }, + { + "normalized_name": "twelvesky 2", + "status": "Broken" + }, + { + "normalized_name": "island games", + "status": "Broken" + }, + { + "normalized_name": "robocraft 2", + "status": "Broken" + }, + { + "normalized_name": "dystopia", + "status": "Supported" + }, + { + "normalized_name": "dark blood online", + "status": "Broken" + }, + { + "normalized_name": "生死狙击:战火重燃(国际版)", + "status": "Broken" + }, + { + "normalized_name": "sangokushi online", + "status": "Broken" + }, + { + "normalized_name": "far cry 2", + "status": "Running" + }, + { + "normalized_name": "tree of life", + "status": "Broken" + }, + { + "normalized_name": "longvinter", + "status": "Broken" + }, + { + "normalized_name": "new gundam breaker", + "status": "Running" + }, + { + "normalized_name": "reign of dwarf", + "status": "Broken" + }, + { + "normalized_name": "the finals (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "escape from tarkov arena", + "status": "Broken" + }, + { + "normalized_name": "mixmaster", + "status": "Broken" + }, + { + "normalized_name": "shaiya", + "status": "Broken" + }, + { + "normalized_name": "maplestory worlds", + "status": "Broken" + }, + { + "normalized_name": "evolve stage 2", + "status": "Running" + }, + { + "normalized_name": "trinium wars", + "status": "Broken" + }, + { + "normalized_name": "extreme soccer", + "status": "Broken" + }, + { + "normalized_name": "r2beat 音速觉醒", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's rainbow six lockdown", + "status": "Broken" + }, + { + "normalized_name": "soulsaveronline", + "status": "Broken" + }, + { + "normalized_name": "pax dei", + "status": "Running" + }, + { + "normalized_name": "shaiya ph", + "status": "Broken" + }, + { + "normalized_name": "smite 2 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "zula türkiye", + "status": "Broken" + }, + { + "normalized_name": "kal online", + "status": "Broken" + }, + { + "normalized_name": "tree of savior (korean ver.)", + "status": "Broken" + }, + { + "normalized_name": "project ethos", + "status": "Broken" + }, + { + "normalized_name": "global strike", + "status": "Running" + }, + { + "normalized_name": "dead island", + "status": "Supported" + }, + { + "normalized_name": "comeonbaby", + "status": "Broken" + }, + { + "normalized_name": "assassin's creed revelations", + "status": "Broken" + }, + { + "normalized_name": "wolfteam classic", + "status": "Broken" + }, + { + "normalized_name": "fractured lands", + "status": "Broken" + }, + { + "normalized_name": "lost light (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "luna online", + "status": "Broken" + }, + { + "normalized_name": "marathon", + "status": "Denied" + }, + { + "normalized_name": "phantasy star online 2 new genesis", + "status": "Broken" + }, + { + "normalized_name": "fortress forever", + "status": "Broken" + }, + { + "normalized_name": "crazy arcade", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's rainbow six vegas", + "status": "Running" + }, + { + "normalized_name": "eos ragnarok", + "status": "Broken" + }, + { + "normalized_name": "war of the vikings", + "status": "Broken" + }, + { + "normalized_name": "iracing (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "battalion 1944", + "status": "Broken" + }, + { + "normalized_name": "audition 2", + "status": "Broken" + }, + { + "normalized_name": "sparkball", + "status": "Broken" + }, + { + "normalized_name": "jabroni brawl episode 3", + "status": "Supported" + }, + { + "normalized_name": "grid 2", + "status": "Running" + }, + { + "normalized_name": "ctracer online", + "status": "Broken" + }, + { + "normalized_name": "space nations battlearena", + "status": "Broken" + }, + { + "normalized_name": "moonbreaker (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "zula europe", + "status": "Broken" + }, + { + "normalized_name": "audition 3 wia", + "status": "Broken" + }, + { + "normalized_name": "sand", + "status": "Running" + }, + { + "normalized_name": "exoprimal", + "status": "Running" + }, + { + "normalized_name": "war of the roses", + "status": "Broken" + }, + { + "normalized_name": "bots", + "status": "Broken" + }, + { + "normalized_name": "need for speed undercover", + "status": "Running" + }, + { + "normalized_name": "wolfteam reboot", + "status": "Broken" + }, + { + "normalized_name": "sabotaj", + "status": "Broken" + }, + { + "normalized_name": "warhammer age of sigmar realms of ruin (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "死寂(deathly stillness)", + "status": "Running" + }, + { + "normalized_name": "rhythmnjoy", + "status": "Broken" + }, + { + "normalized_name": "lawbreakers", + "status": "Broken" + }, + { + "normalized_name": "arma 4", + "status": "Running" + }, + { + "normalized_name": "new world aeternum", + "status": "Running" + }, + { + "normalized_name": "rising storm", + "status": "Broken" + }, + { + "normalized_name": "eternalcity the acceleration", + "status": "Broken" + }, + { + "normalized_name": "crysis wars", + "status": "Broken" + }, + { + "normalized_name": "project xandata", + "status": "Running" + }, + { + "normalized_name": "warcraft iii reforged (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "talesweaver", + "status": "Broken" + }, + { + "normalized_name": "counter strike nexon", + "status": "Broken" + }, + { + "normalized_name": "outpost infinity siege", + "status": "Running" + }, + { + "normalized_name": "avatar frontiers of pandora", + "status": "Broken" + }, + { + "normalized_name": "v rising", + "status": "Running" + }, + { + "normalized_name": "navy field 2 conqueror of the ocean", + "status": "Broken" + }, + { + "normalized_name": "quake iii team arena", + "status": "Running" + }, + { + "normalized_name": "scions of fate", + "status": "Broken" + }, + { + "normalized_name": "intershelter", + "status": "Broken" + }, + { + "normalized_name": "fangs (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "mumu player", + "status": "Broken" + }, + { + "normalized_name": "killsquad", + "status": "Running" + }, + { + "normalized_name": "efootball 2025", + "status": "Running" + }, + { + "normalized_name": "pubg lite", + "status": "Broken" + }, + { + "normalized_name": "legends of runeterra", + "status": "Broken" + }, + { + "normalized_name": "phasmophobia", + "status": "Running" + }, + { + "normalized_name": "counter strike online", + "status": "Broken" + }, + { + "normalized_name": "undefeated online", + "status": "Broken" + }, + { + "normalized_name": "aimlabs", + "status": "Running" + }, + { + "normalized_name": "kogama", + "status": "Broken" + }, + { + "normalized_name": "lunia z global", + "status": "Broken" + }, + { + "normalized_name": "warhammer 40 000 darktide", + "status": "Running" + }, + { + "normalized_name": "senran kagura peach beach splash", + "status": "Running" + }, + { + "normalized_name": "phantasy star universe", + "status": "Broken" + }, + { + "normalized_name": "world war ii combat road to berlin", + "status": "Broken" + }, + { + "normalized_name": "a.v.a. alliance of valiant arms", + "status": "Broken" + }, + { + "normalized_name": "lost region", + "status": "Broken" + }, + { + "normalized_name": "lifeless", + "status": "Broken" + }, + { + "normalized_name": "infinity wars classic (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "romance of the three kingdoms the legend of caocao", + "status": "Broken" + }, + { + "normalized_name": "aika online global", + "status": "Broken" + }, + { + "normalized_name": "legacy steel & sorcery", + "status": "Supported" + }, + { + "normalized_name": "bloodstrike", + "status": "Running" + }, + { + "normalized_name": "counter strike", + "status": "Supported" + }, + { + "normalized_name": "vicious circle", + "status": "Broken" + }, + { + "normalized_name": "kritika global", + "status": "Broken" + }, + { + "normalized_name": "stoneage", + "status": "Broken" + }, + { + "normalized_name": "wolfenstein enemy territory", + "status": "Running" + }, + { + "normalized_name": "unreal tournament 2004 (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "woori ongame", + "status": "Broken" + }, + { + "normalized_name": "cabbageball", + "status": "Broken" + }, + { + "normalized_name": "blankos block party", + "status": "Broken" + }, + { + "normalized_name": "r.u.s.e.", + "status": "Broken" + }, + { + "normalized_name": "offensive combat redux!", + "status": "Broken" + }, + { + "normalized_name": "continent of the ninth golden", + "status": "Broken" + }, + { + "normalized_name": "mechwarrior living legends", + "status": "Broken" + }, + { + "normalized_name": "hyperrelay", + "status": "Broken" + }, + { + "normalized_name": "war thunder (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "dizzel", + "status": "Broken" + }, + { + "normalized_name": "mu legend evo", + "status": "Broken" + }, + { + "normalized_name": "inazuma eleven victory road", + "status": "Broken" + }, + { + "normalized_name": "counter strike condition zero", + "status": "Supported" + }, + { + "normalized_name": "out of reach treasure royale", + "status": "Running" + }, + { + "normalized_name": "eden eternal", + "status": "Broken" + }, + { + "normalized_name": "tom clancy's splinter cell pandora tomorrow", + "status": "Broken" + }, + { + "normalized_name": "neo steam", + "status": "Broken" + }, + { + "normalized_name": "counter strike (pdxplay)", + "status": "Broken" + }, + { + "normalized_name": "velev", + "status": "Broken" + }, + { + "normalized_name": "divine knockout (dko)", + "status": "Running" + }, + { + "normalized_name": "clickr", + "status": "Broken" + }, + { + "normalized_name": "lost saga", + "status": "Broken" + }, + { + "normalized_name": "tera", + "status": "Broken" + }, + { + "normalized_name": "大海战3 navy field iii", + "status": "Broken" + }, + { + "normalized_name": "sudden attack", + "status": "Broken" + }, + { + "normalized_name": "archeage chronicles", + "status": "Broken" + }, + { + "normalized_name": "qanga", + "status": "Running" + }, + { + "normalized_name": "khan absolute power", + "status": "Broken" + }, + { + "normalized_name": "flyff", + "status": "Broken" + }, + { + "normalized_name": "travia", + "status": "Broken" + }, + { + "normalized_name": "astellia royal", + "status": "Broken" + }, + { + "normalized_name": "world war ii combat iwo jima", + "status": "Broken" + }, + { + "normalized_name": "operation7", + "status": "Broken" + }, + { + "normalized_name": "wbtr welcome back to reality", + "status": "Broken" + }, + { + "normalized_name": "wolfenstein (2009)", + "status": "Broken" + }, + { + "normalized_name": "phantasy star universe ambition of the illuminus", + "status": "Broken" + }, + { + "normalized_name": "radikal fighters", + "status": "Broken" + }, + { + "normalized_name": "f.e.a.r. online", + "status": "Broken" + }, + { + "normalized_name": "world of warcraft (challengermode)", + "status": "Broken" + }, + { + "normalized_name": "voids adrift", + "status": "Broken" + }, + { + "normalized_name": "off the grid", + "status": "Running" + }, + { + "normalized_name": "breach", + "status": "Broken" + }, + { + "normalized_name": "hyper universe", + "status": "Broken" + }, + { + "normalized_name": "wonderking", + "status": "Broken" + }, + { + "normalized_name": "p.a.s.", + "status": "Broken" + }, + { + "normalized_name": "stormdivers", + "status": "Broken" + }, + { + "normalized_name": "project cars 2", + "status": "Running" + }, + { + "normalized_name": "might & magic clash of heroes", + "status": "Running" + }, + { + "normalized_name": "uncharted waters online age of revolution", + "status": "Broken" + }, + { + "normalized_name": "fiesta online na", + "status": "Running" + }, + { + "normalized_name": "rumbleverse", + "status": "Broken" + }, + { + "normalized_name": "archon 24", + "status": "Broken" + }, + { + "normalized_name": "archon og", + "status": "Broken" + }, + { + "normalized_name": "meet your maker", + "status": "Running" + }, + { + "normalized_name": "shattered horizon", + "status": "Broken" + }, + { + "normalized_name": "grasen", + "status": "Broken" + }, + { + "normalized_name": "solo leveling arise", + "status": "Running" + }, + { + "normalized_name": "luna online reborn", + "status": "Running" + }, + { + "normalized_name": "tree of life 2", + "status": "Broken" + }, + { + "normalized_name": "blindfire", + "status": "Broken" + }, + { + "normalized_name": "h hour world's elite", + "status": "Running" + }, + { + "normalized_name": "america's army", + "status": "Broken" + }, + { + "normalized_name": "dragon saga", + "status": "Broken" + }, + { + "normalized_name": "rohan", + "status": "Broken" + }, + { + "normalized_name": "rf online next", + "status": "Broken" + }, + { + "normalized_name": "sword art online last recollection", + "status": "Running" + }, + { + "normalized_name": "gotham city imposters", + "status": "Running" + }, + { + "normalized_name": "element quest online 2d mmorpg", + "status": "Supported" + }, + { + "normalized_name": "heatproject", + "status": "Broken" + }, + { + "normalized_name": "warhaven", + "status": "Running" + }, + { + "normalized_name": "wtf waifu tactical force", + "status": "Broken" + }, + { + "normalized_name": "dust ii | the infinite zero point", + "status": "Broken" + }, + { + "normalized_name": "grid autosport", + "status": "Supported" + }, + { + "normalized_name": "riders of icarus sea", + "status": "Broken" + }, + { + "normalized_name": "infinity nikki", + "status": "Broken" + } +] \ No newline at end of file diff --git a/data/anticheat_games.tar.xz b/data/anticheat_games.tar.xz new file mode 100644 index 0000000..01d58c9 Binary files /dev/null and b/data/anticheat_games.tar.xz differ diff --git a/data/games_appid.json b/data/games_appid.json new file mode 100644 index 0000000..a257ed2 --- /dev/null +++ b/data/games_appid.json @@ -0,0 +1,527494 @@ +[ + { + "appid": 10, + "normalized_name": "counter strike" + }, + { + "appid": 20, + "normalized_name": "team fortress classic" + }, + { + "appid": 30, + "normalized_name": "day of defeat" + }, + { + "appid": 40, + "normalized_name": "deathmatch classic" + }, + { + "appid": 50, + "normalized_name": "half life opposing force" + }, + { + "appid": 60, + "normalized_name": "ricochet" + }, + { + "appid": 70, + "normalized_name": "half life" + }, + { + "appid": 80, + "normalized_name": "counter strike condition zero" + }, + { + "appid": 130, + "normalized_name": "half life blue shift" + }, + { + "appid": 220, + "normalized_name": "half life 2" + }, + { + "appid": 240, + "normalized_name": "counter strike source" + }, + { + "appid": 300, + "normalized_name": "day of defeat source" + }, + { + "appid": 360, + "normalized_name": "half life deathmatch source" + }, + { + "appid": 400, + "normalized_name": "portal" + }, + { + "appid": 440, + "normalized_name": "team fortress 2" + }, + { + "appid": 500, + "normalized_name": "left 4 dead" + }, + { + "appid": 550, + "normalized_name": "left 4 dead 2" + }, + { + "appid": 570, + "normalized_name": "dota 2" + }, + { + "appid": 620, + "normalized_name": "portal 2" + }, + { + "appid": 630, + "normalized_name": "alien swarm" + }, + { + "appid": 730, + "normalized_name": "counter strike 2" + }, + { + "appid": 1002, + "normalized_name": "rag doll kung fu" + }, + { + "appid": 1200, + "normalized_name": "red orchestra ostfront 41 45" + }, + { + "appid": 1250, + "normalized_name": "killing floor" + }, + { + "appid": 1300, + "normalized_name": "sin episodes emergence" + }, + { + "appid": 1313, + "normalized_name": "sin gold" + }, + { + "appid": 1500, + "normalized_name": "darwinia" + }, + { + "appid": 1510, + "normalized_name": "uplink" + }, + { + "appid": 1520, + "normalized_name": "defcon" + }, + { + "appid": 1530, + "normalized_name": "multiwinia" + }, + { + "appid": 1600, + "normalized_name": "dangerous waters" + }, + { + "appid": 1610, + "normalized_name": "space empires iv deluxe" + }, + { + "appid": 1620, + "normalized_name": "jagged alliance 2 gold" + }, + { + "appid": 1630, + "normalized_name": "disciples ii rise of the elves" + }, + { + "appid": 1640, + "normalized_name": "disciples ii gallean's return" + }, + { + "appid": 1670, + "normalized_name": "iron warriors t 72 tank command" + }, + { + "appid": 1690, + "normalized_name": "space empires v" + }, + { + "appid": 1700, + "normalized_name": "arx fatalis" + }, + { + "appid": 1900, + "normalized_name": "earth 2160" + }, + { + "appid": 1930, + "normalized_name": "two worlds epic" + }, + { + "appid": 2100, + "normalized_name": "dark messiah of might & magic" + }, + { + "appid": 2200, + "normalized_name": "quake iii arena" + }, + { + "appid": 2210, + "normalized_name": "quake 4" + }, + { + "appid": 2270, + "normalized_name": "wolfenstein 3d" + }, + { + "appid": 2280, + "normalized_name": "doom + doom ii" + }, + { + "appid": 2310, + "normalized_name": "quake" + }, + { + "appid": 2320, + "normalized_name": "quake ii" + }, + { + "appid": 2360, + "normalized_name": "hexen beyond heretic" + }, + { + "appid": 2370, + "normalized_name": "hexen deathkings of the dark citadel" + }, + { + "appid": 2390, + "normalized_name": "heretic shadow of the serpent riders" + }, + { + "appid": 2400, + "normalized_name": "the ship murder party" + }, + { + "appid": 2420, + "normalized_name": "the ship single player" + }, + { + "appid": 2450, + "normalized_name": "bloody good time" + }, + { + "appid": 2500, + "normalized_name": "shadowgrounds" + }, + { + "appid": 2520, + "normalized_name": "gumboy crazy adventures" + }, + { + "appid": 2540, + "normalized_name": "rip trilogy" + }, + { + "appid": 2590, + "normalized_name": "alpha prime" + }, + { + "appid": 2600, + "normalized_name": "vampire the masquerade bloodlines" + }, + { + "appid": 2610, + "normalized_name": "gun" + }, + { + "appid": 2620, + "normalized_name": "call of duty (2003)" + }, + { + "appid": 2630, + "normalized_name": "call of duty 2" + }, + { + "appid": 2640, + "normalized_name": "call of duty united offensive" + }, + { + "appid": 2700, + "normalized_name": "rollercoaster tycoon 3 platinum" + }, + { + "appid": 2710, + "normalized_name": "act of war direct action" + }, + { + "appid": 2720, + "normalized_name": "threadspace hyperbol" + }, + { + "appid": 2800, + "normalized_name": "x2 the threat" + }, + { + "appid": 2810, + "normalized_name": "x3 reunion" + }, + { + "appid": 2820, + "normalized_name": "x3 terran conflict" + }, + { + "appid": 2840, + "normalized_name": "x beyond the frontier" + }, + { + "appid": 2850, + "normalized_name": "x tension" + }, + { + "appid": 2870, + "normalized_name": "x rebirth" + }, + { + "appid": 2900, + "normalized_name": "688(i) hunter/killer" + }, + { + "appid": 2910, + "normalized_name": "fleet command" + }, + { + "appid": 2920, + "normalized_name": "sub command" + }, + { + "appid": 2990, + "normalized_name": "flatout 2" + }, + { + "appid": 3010, + "normalized_name": "xpand rally" + }, + { + "appid": 3020, + "normalized_name": "call of juarez" + }, + { + "appid": 3050, + "normalized_name": "xpand rally xtreme" + }, + { + "appid": 3130, + "normalized_name": "men of war red tide" + }, + { + "appid": 3170, + "normalized_name": "king's bounty armored princess" + }, + { + "appid": 3230, + "normalized_name": "genesis rising" + }, + { + "appid": 3260, + "normalized_name": "safecracker the puzzle adventure" + }, + { + "appid": 3270, + "normalized_name": "painkiller overdose" + }, + { + "appid": 3300, + "normalized_name": "bejeweled 2 deluxe" + }, + { + "appid": 3310, + "normalized_name": "chuzzle deluxe" + }, + { + "appid": 3320, + "normalized_name": "insaniquarium deluxe" + }, + { + "appid": 3330, + "normalized_name": "zuma deluxe" + }, + { + "appid": 3340, + "normalized_name": "astropop deluxe" + }, + { + "appid": 3350, + "normalized_name": "bejeweled deluxe" + }, + { + "appid": 3360, + "normalized_name": "big money! deluxe" + }, + { + "appid": 3380, + "normalized_name": "dynomite deluxe" + }, + { + "appid": 3390, + "normalized_name": "feeding frenzy 2 deluxe" + }, + { + "appid": 3400, + "normalized_name": "hammer heads deluxe" + }, + { + "appid": 3410, + "normalized_name": "heavy weapon deluxe" + }, + { + "appid": 3420, + "normalized_name": "iggle pop deluxe" + }, + { + "appid": 3430, + "normalized_name": "pizza frenzy deluxe" + }, + { + "appid": 3450, + "normalized_name": "typer shark! deluxe" + }, + { + "appid": 3460, + "normalized_name": "talismania deluxe" + }, + { + "appid": 3480, + "normalized_name": "peggle deluxe" + }, + { + "appid": 3483, + "normalized_name": "peggle extreme" + }, + { + "appid": 3490, + "normalized_name": "venice deluxe" + }, + { + "appid": 3500, + "normalized_name": "mystery p.i. the lottery ticket" + }, + { + "appid": 3510, + "normalized_name": "amazing adventures the lost tomb" + }, + { + "appid": 3520, + "normalized_name": "mystery p.i. the vegas heist" + }, + { + "appid": 3530, + "normalized_name": "amazing adventures around the world" + }, + { + "appid": 3540, + "normalized_name": "peggle nights" + }, + { + "appid": 3560, + "normalized_name": "bejeweled twist" + }, + { + "appid": 3570, + "normalized_name": "mystery p.i. the new york fortune" + }, + { + "appid": 3580, + "normalized_name": "the wizard's pen" + }, + { + "appid": 3590, + "normalized_name": "plants vs. zombies goty" + }, + { + "appid": 3600, + "normalized_name": "escape rosecliff island" + }, + { + "appid": 3610, + "normalized_name": "mystery p.i. lost in los angeles" + }, + { + "appid": 3620, + "normalized_name": "zuma's revenge!" + }, + { + "appid": 3700, + "normalized_name": "sniper elite" + }, + { + "appid": 3710, + "normalized_name": "judge dredd dredd vs. death" + }, + { + "appid": 3720, + "normalized_name": "evil genius" + }, + { + "appid": 3730, + "normalized_name": "aliens versus predator classic 2000" + }, + { + "appid": 3800, + "normalized_name": "advent rising" + }, + { + "appid": 3810, + "normalized_name": "bloodrayne (legacy)" + }, + { + "appid": 3820, + "normalized_name": "bloodrayne 2 (legacy)" + }, + { + "appid": 3830, + "normalized_name": "psychonauts" + }, + { + "appid": 3900, + "normalized_name": "sid meier's civilization iv" + }, + { + "appid": 3910, + "normalized_name": "sid meier's civilization iii" + }, + { + "appid": 3920, + "normalized_name": "sid meier's pirates!" + }, + { + "appid": 3960, + "normalized_name": "shattered union" + }, + { + "appid": 3980, + "normalized_name": "civcity rome" + }, + { + "appid": 3990, + "normalized_name": "civilization iv warlords" + }, + { + "appid": 4000, + "normalized_name": "garry's mod" + }, + { + "appid": 4100, + "normalized_name": "poker superstars ii" + }, + { + "appid": 4230, + "normalized_name": "race the wtcc game" + }, + { + "appid": 4290, + "normalized_name": "race caterham expansion" + }, + { + "appid": 4300, + "normalized_name": "roboblitz" + }, + { + "appid": 4420, + "normalized_name": "silverfall" + }, + { + "appid": 4460, + "normalized_name": "city life 2008" + }, + { + "appid": 4470, + "normalized_name": "silverfall earth awakening" + }, + { + "appid": 4520, + "normalized_name": "full spectrum warrior" + }, + { + "appid": 4530, + "normalized_name": "full spectrum warrior ten hammers" + }, + { + "appid": 4560, + "normalized_name": "company of heroes legacy" + }, + { + "appid": 4570, + "normalized_name": "warhammer 40 000 dawn of war anniversary" + }, + { + "appid": 4700, + "normalized_name": "total war medieval ii –" + }, + { + "appid": 4720, + "normalized_name": "condemned criminal origins" + }, + { + "appid": 4770, + "normalized_name": "rome total war alexander" + }, + { + "appid": 4780, + "normalized_name": "medieval ii total war kingdoms" + }, + { + "appid": 4800, + "normalized_name": "heroes of annihilated empires" + }, + { + "appid": 4850, + "normalized_name": "cossacks back to war" + }, + { + "appid": 4870, + "normalized_name": "cossacks art of war" + }, + { + "appid": 4880, + "normalized_name": "cossacks european wars" + }, + { + "appid": 4890, + "normalized_name": "cossacks ii battle for europe" + }, + { + "appid": 4900, + "normalized_name": "zen of sudoku" + }, + { + "appid": 4920, + "normalized_name": "natural selection 2" + }, + { + "appid": 6000, + "normalized_name": "star wars republic commando" + }, + { + "appid": 6010, + "normalized_name": "indiana jones and the fate of atlantis" + }, + { + "appid": 6020, + "normalized_name": "star wars jedi knight jedi academy" + }, + { + "appid": 6030, + "normalized_name": "star wars jedi knight ii jedi outcast" + }, + { + "appid": 6040, + "normalized_name": "the dig" + }, + { + "appid": 6060, + "normalized_name": "star wars battlefront ii (classic 2005)" + }, + { + "appid": 6080, + "normalized_name": "thrillville off the rails" + }, + { + "appid": 6090, + "normalized_name": "armed and dangerous" + }, + { + "appid": 6120, + "normalized_name": "shank" + }, + { + "appid": 6200, + "normalized_name": "ghost master" + }, + { + "appid": 6210, + "normalized_name": "vegas make it big" + }, + { + "appid": 6220, + "normalized_name": "flatout" + }, + { + "appid": 6250, + "normalized_name": "making history the calm & the storm" + }, + { + "appid": 6270, + "normalized_name": "ducati world championship" + }, + { + "appid": 6300, + "normalized_name": "dreamfall the longest journey" + }, + { + "appid": 6310, + "normalized_name": "the longest journey" + }, + { + "appid": 6370, + "normalized_name": "bloodline champions" + }, + { + "appid": 6400, + "normalized_name": "joint task force" + }, + { + "appid": 6420, + "normalized_name": "nexus the jupiter incident" + }, + { + "appid": 6510, + "normalized_name": "lost planet extreme condition" + }, + { + "appid": 6600, + "normalized_name": "bullet candy" + }, + { + "appid": 6800, + "normalized_name": "commandos behind enemy lines" + }, + { + "appid": 6810, + "normalized_name": "commandos beyond the call of duty" + }, + { + "appid": 6830, + "normalized_name": "commandos 2 men of courage" + }, + { + "appid": 6840, + "normalized_name": "commandos 3 destination berlin" + }, + { + "appid": 6850, + "normalized_name": "hitman 2 silent assassin" + }, + { + "appid": 6860, + "normalized_name": "hitman blood money" + }, + { + "appid": 6870, + "normalized_name": "battlestations midway" + }, + { + "appid": 6880, + "normalized_name": "just cause" + }, + { + "appid": 6900, + "normalized_name": "hitman codename 47" + }, + { + "appid": 6910, + "normalized_name": "deus ex game of the year" + }, + { + "appid": 6920, + "normalized_name": "deus ex invisible war" + }, + { + "appid": 6980, + "normalized_name": "thief deadly shadows" + }, + { + "appid": 7000, + "normalized_name": "tomb raider legend" + }, + { + "appid": 7010, + "normalized_name": "project snowblind" + }, + { + "appid": 7020, + "normalized_name": "rogue trooper" + }, + { + "appid": 7110, + "normalized_name": "jade empire special" + }, + { + "appid": 7200, + "normalized_name": "trackmania united forever" + }, + { + "appid": 7210, + "normalized_name": "runaway a road adventure" + }, + { + "appid": 7220, + "normalized_name": "runaway the dream of the turtle" + }, + { + "appid": 7260, + "normalized_name": "loki" + }, + { + "appid": 7340, + "normalized_name": "azada" + }, + { + "appid": 7510, + "normalized_name": "x blades" + }, + { + "appid": 7520, + "normalized_name": "two worlds ii hd" + }, + { + "appid": 7530, + "normalized_name": "two worlds ii castle defense" + }, + { + "appid": 7600, + "normalized_name": "sid meier's railroads!" + }, + { + "appid": 7610, + "normalized_name": "railroad tycoon 3" + }, + { + "appid": 7620, + "normalized_name": "railroad tycoon ii platinum" + }, + { + "appid": 7650, + "normalized_name": "x com terror from the deep" + }, + { + "appid": 7660, + "normalized_name": "x com apocalypse" + }, + { + "appid": 7670, + "normalized_name": "bioshock" + }, + { + "appid": 7730, + "normalized_name": "x com interceptor" + }, + { + "appid": 7760, + "normalized_name": "x com ufo defense" + }, + { + "appid": 7770, + "normalized_name": "x com enforcer" + }, + { + "appid": 7800, + "normalized_name": "stubbs the zombie in rebel without a pulse" + }, + { + "appid": 7830, + "normalized_name": "men of war" + }, + { + "appid": 7840, + "normalized_name": "death track resurrection" + }, + { + "appid": 7860, + "normalized_name": "necrovision" + }, + { + "appid": 7940, + "normalized_name": "call of duty 4 modern warfare (2007)" + }, + { + "appid": 8000, + "normalized_name": "tomb raider anniversary" + }, + { + "appid": 8040, + "normalized_name": "championship manager 2007" + }, + { + "appid": 8060, + "normalized_name": "championship manager 2008" + }, + { + "appid": 8080, + "normalized_name": "kane and lynch dead men" + }, + { + "appid": 8100, + "normalized_name": "conflict denied ops" + }, + { + "appid": 8140, + "normalized_name": "tomb raider underworld" + }, + { + "appid": 8170, + "normalized_name": "battlestations pacific" + }, + { + "appid": 8190, + "normalized_name": "just cause 2" + }, + { + "appid": 8330, + "normalized_name": "telltale texas hold ‘em" + }, + { + "appid": 8400, + "normalized_name": "geometry wars retro evolved" + }, + { + "appid": 8500, + "normalized_name": "eve online" + }, + { + "appid": 8600, + "normalized_name": "race 07" + }, + { + "appid": 8780, + "normalized_name": "race on" + }, + { + "appid": 8790, + "normalized_name": "gtr 2 fia gt racing game" + }, + { + "appid": 8800, + "normalized_name": "civilization iv beyond the sword" + }, + { + "appid": 8850, + "normalized_name": "bioshock 2" + }, + { + "appid": 8870, + "normalized_name": "bioshock infinite" + }, + { + "appid": 8880, + "normalized_name": "freedom force" + }, + { + "appid": 8890, + "normalized_name": "freedom force vs. the third reich" + }, + { + "appid": 8930, + "normalized_name": "sid meier's civilization v" + }, + { + "appid": 8970, + "normalized_name": "axel & pixel" + }, + { + "appid": 9010, + "normalized_name": "return to castle wolfenstein" + }, + { + "appid": 9060, + "normalized_name": "hexen ii" + }, + { + "appid": 9180, + "normalized_name": "commander keen" + }, + { + "appid": 9200, + "normalized_name": "rage" + }, + { + "appid": 9340, + "normalized_name": "company of heroes opposing fronts" + }, + { + "appid": 9350, + "normalized_name": "supreme commander" + }, + { + "appid": 9420, + "normalized_name": "supreme commander forged alliance" + }, + { + "appid": 9460, + "normalized_name": "frontlines fuel of war" + }, + { + "appid": 9480, + "normalized_name": "saints row 2" + }, + { + "appid": 9500, + "normalized_name": "gish" + }, + { + "appid": 9710, + "normalized_name": "desperados 2 cooper's revenge" + }, + { + "appid": 9730, + "normalized_name": "tycoon city new york" + }, + { + "appid": 9760, + "normalized_name": "act of war high treason" + }, + { + "appid": 9800, + "normalized_name": "death to spies" + }, + { + "appid": 9850, + "normalized_name": "codename panzers cold war" + }, + { + "appid": 9880, + "normalized_name": "champions online" + }, + { + "appid": 9900, + "normalized_name": "star trek online" + }, + { + "appid": 9940, + "normalized_name": "blade kitten" + }, + { + "appid": 9960, + "normalized_name": "haunted house (2010)" + }, + { + "appid": 9970, + "normalized_name": "star raiders" + }, + { + "appid": 9980, + "normalized_name": "the undergarden" + }, + { + "appid": 10090, + "normalized_name": "call of duty world at war" + }, + { + "appid": 10100, + "normalized_name": "king's quest collection" + }, + { + "appid": 10110, + "normalized_name": "space quest collection" + }, + { + "appid": 10120, + "normalized_name": "aces of the galaxy" + }, + { + "appid": 10130, + "normalized_name": "timeshift" + }, + { + "appid": 10140, + "normalized_name": "3d ultra minigolf adventures" + }, + { + "appid": 10150, + "normalized_name": "prototype" + }, + { + "appid": 10180, + "normalized_name": "call of duty modern warfare 2 (2009)" + }, + { + "appid": 10220, + "normalized_name": "postal iii" + }, + { + "appid": 10230, + "normalized_name": "dead mountaineer's hotel" + }, + { + "appid": 10240, + "normalized_name": "a stroke of fate operation valkyrie" + }, + { + "appid": 10250, + "normalized_name": "pt boats knights of the sea" + }, + { + "appid": 10260, + "normalized_name": "pt boats south gambit" + }, + { + "appid": 10270, + "normalized_name": "disciples iii reincarnation" + }, + { + "appid": 10460, + "normalized_name": "the club" + }, + { + "appid": 10500, + "normalized_name": "total war empire –" + }, + { + "appid": 10520, + "normalized_name": "beijing 2008 the official video game of the olympic games" + }, + { + "appid": 10680, + "normalized_name": "aliens vs. predator" + }, + { + "appid": 11020, + "normalized_name": "trackmania nations forever" + }, + { + "appid": 11040, + "normalized_name": "sherlock holmes nemesis" + }, + { + "appid": 11050, + "normalized_name": "dracula origin" + }, + { + "appid": 11130, + "normalized_name": "sherlock holmes the mystery of the mummy" + }, + { + "appid": 11140, + "normalized_name": "sherlock holmes the awakened (2008)" + }, + { + "appid": 11150, + "normalized_name": "sherlock holmes the silver earring" + }, + { + "appid": 11180, + "normalized_name": "sherlock holmes the mystery of the persian carpet" + }, + { + "appid": 11190, + "normalized_name": "sherlock holmes versus jack the ripper" + }, + { + "appid": 11200, + "normalized_name": "shadowgrounds survivor" + }, + { + "appid": 11230, + "normalized_name": "gumboy tournament" + }, + { + "appid": 11240, + "normalized_name": "space trader merchant marine" + }, + { + "appid": 11250, + "normalized_name": "pacific storm" + }, + { + "appid": 11260, + "normalized_name": "pacific storm allies" + }, + { + "appid": 11280, + "normalized_name": "penguins arena sedna's world" + }, + { + "appid": 11340, + "normalized_name": "larva mortus" + }, + { + "appid": 11370, + "normalized_name": "nikopol secrets of the immortals" + }, + { + "appid": 11390, + "normalized_name": "crash time 2" + }, + { + "appid": 11450, + "normalized_name": "overlord" + }, + { + "appid": 11480, + "normalized_name": "soldiers heroes of world war ii enhanced" + }, + { + "appid": 11550, + "normalized_name": "second sight" + }, + { + "appid": 11610, + "normalized_name": "dragon nest" + }, + { + "appid": 12130, + "normalized_name": "manhunt" + }, + { + "appid": 12140, + "normalized_name": "max payne" + }, + { + "appid": 12150, + "normalized_name": "max payne 2 the fall of max payne" + }, + { + "appid": 12180, + "normalized_name": "grand theft auto 2" + }, + { + "appid": 12200, + "normalized_name": "bully scholarship" + }, + { + "appid": 12210, + "normalized_name": "grand theft auto iv the" + }, + { + "appid": 12220, + "normalized_name": "grand theft auto episodes from liberty city" + }, + { + "appid": 12310, + "normalized_name": "culpa innata" + }, + { + "appid": 12320, + "normalized_name": "sacred gold" + }, + { + "appid": 12330, + "normalized_name": "darkstar one" + }, + { + "appid": 12360, + "normalized_name": "flatout carnage collector's" + }, + { + "appid": 12390, + "normalized_name": "exodus from the earth" + }, + { + "appid": 12420, + "normalized_name": "perimeter 2 new earth" + }, + { + "appid": 12430, + "normalized_name": "slamit pinball big score" + }, + { + "appid": 12440, + "normalized_name": "ankh 2 heart of osiris" + }, + { + "appid": 12450, + "normalized_name": "ankh 3 battle of the gods" + }, + { + "appid": 12460, + "normalized_name": "bc kings" + }, + { + "appid": 12470, + "normalized_name": "port royale 2" + }, + { + "appid": 12480, + "normalized_name": "9th company roots of terror" + }, + { + "appid": 12500, + "normalized_name": "puzzlequest challenge of the warlords" + }, + { + "appid": 12510, + "normalized_name": "prison tycoon 3 lockdown" + }, + { + "appid": 12520, + "normalized_name": "18 wheels of steel american long haul" + }, + { + "appid": 12530, + "normalized_name": "hunting unlimited 2008" + }, + { + "appid": 12540, + "normalized_name": "mahjongg investigations under suspicion" + }, + { + "appid": 12560, + "normalized_name": "ride! carnival tycoon" + }, + { + "appid": 12570, + "normalized_name": "hot dish" + }, + { + "appid": 12580, + "normalized_name": "dr. daisy pet vet" + }, + { + "appid": 12590, + "normalized_name": "sprint cars road to knoxville" + }, + { + "appid": 12600, + "normalized_name": "midnight outlaw 6 hours to sunup" + }, + { + "appid": 12640, + "normalized_name": "drakensang" + }, + { + "appid": 12650, + "normalized_name": "fetch it again" + }, + { + "appid": 12660, + "normalized_name": "miss popularity" + }, + { + "appid": 12670, + "normalized_name": "mission runway" + }, + { + "appid": 12690, + "normalized_name": "hunting unlimited 2010" + }, + { + "appid": 12710, + "normalized_name": "overlord raising hell" + }, + { + "appid": 12810, + "normalized_name": "overlord ii" + }, + { + "appid": 12900, + "normalized_name": "audiosurf" + }, + { + "appid": 13000, + "normalized_name": "ninja reflex steamworks" + }, + { + "appid": 13500, + "normalized_name": "prince of persia warrior within" + }, + { + "appid": 13520, + "normalized_name": "far cry" + }, + { + "appid": 13530, + "normalized_name": "prince of persia the two thrones" + }, + { + "appid": 13540, + "normalized_name": "tom clancy's rainbow six vegas" + }, + { + "appid": 13560, + "normalized_name": "tom clancy's splinter cell" + }, + { + "appid": 13570, + "normalized_name": "tom clancy's splinter cell chaos theory" + }, + { + "appid": 13580, + "normalized_name": "tom clancy's splinter cell double agent" + }, + { + "appid": 13600, + "normalized_name": "prince of persia the sands of time" + }, + { + "appid": 13620, + "normalized_name": "tom clancy's ghost recon desert siege" + }, + { + "appid": 13630, + "normalized_name": "tom clancy's ghost recon island thunder" + }, + { + "appid": 15000, + "normalized_name": "tom clancy's rainbow six lockdown" + }, + { + "appid": 15080, + "normalized_name": "rayman raving rabbids" + }, + { + "appid": 15100, + "normalized_name": "assassin's creed director's cut" + }, + { + "appid": 15120, + "normalized_name": "tom clancy's rainbow six vegas 2" + }, + { + "appid": 15160, + "normalized_name": "petz horsez 2" + }, + { + "appid": 15170, + "normalized_name": "heroes of might & magic v" + }, + { + "appid": 15190, + "normalized_name": "brothers in arms road to hill 30" + }, + { + "appid": 15200, + "normalized_name": "silent hunter wolves of the pacific" + }, + { + "appid": 15210, + "normalized_name": "silent hunter iii" + }, + { + "appid": 15240, + "normalized_name": "silent hunter wolves of the pacific u boat missions" + }, + { + "appid": 15270, + "normalized_name": "cold fear" + }, + { + "appid": 15300, + "normalized_name": "tom clancy's ghost recon" + }, + { + "appid": 15320, + "normalized_name": "il 2 sturmovik 1946" + }, + { + "appid": 15350, + "normalized_name": "brain spa" + }, + { + "appid": 15370, + "normalized_name": "heroes of might & magic v tribes of the east" + }, + { + "appid": 15380, + "normalized_name": "heroes of might & magic v hammers of fate" + }, + { + "appid": 15390, + "normalized_name": "brothers in arms hell's highway" + }, + { + "appid": 15400, + "normalized_name": "harvest massive encounter" + }, + { + "appid": 15500, + "normalized_name": "the wonderful end of the world" + }, + { + "appid": 15520, + "normalized_name": "aaaaaa!!! a reckless disregard for gravity" + }, + { + "appid": 15560, + "normalized_name": "aaaaaaaaaaaaaaaaaaaaaaaaa!!! for the awesome" + }, + { + "appid": 15620, + "normalized_name": "warhammer 40 000 dawn of war ii anniversary" + }, + { + "appid": 15700, + "normalized_name": "oddworld abe's oddysee" + }, + { + "appid": 15710, + "normalized_name": "oddworld abe's exoddus" + }, + { + "appid": 15740, + "normalized_name": "oddworld munch's oddysee" + }, + { + "appid": 15750, + "normalized_name": "oddworld stranger's wrath hd" + }, + { + "appid": 15800, + "normalized_name": "planet busters" + }, + { + "appid": 15900, + "normalized_name": "7 wonders ii" + }, + { + "appid": 15910, + "normalized_name": "luxor amun rising" + }, + { + "appid": 15920, + "normalized_name": "luxor 2" + }, + { + "appid": 15930, + "normalized_name": "luxor 3" + }, + { + "appid": 15960, + "normalized_name": "little farm" + }, + { + "appid": 15970, + "normalized_name": "luxor" + }, + { + "appid": 16000, + "normalized_name": "discovery! a seek and find adventure" + }, + { + "appid": 16020, + "normalized_name": "samantha swift and the hidden roses of athena" + }, + { + "appid": 16030, + "normalized_name": "7 wonders treasures of seven" + }, + { + "appid": 16040, + "normalized_name": "luxor quest for the afterlife" + }, + { + "appid": 16060, + "normalized_name": "samantha swift and the golden touch" + }, + { + "appid": 16100, + "normalized_name": "virtual villagers a new home" + }, + { + "appid": 16110, + "normalized_name": "virtual villagers the lost children" + }, + { + "appid": 16120, + "normalized_name": "plant tycoon" + }, + { + "appid": 16130, + "normalized_name": "fish tycoon" + }, + { + "appid": 16180, + "normalized_name": "virtual villagers the secret city" + }, + { + "appid": 16200, + "normalized_name": "virtual families" + }, + { + "appid": 16300, + "normalized_name": "everyday shooter" + }, + { + "appid": 16450, + "normalized_name": "f.e.a.r. 2 project origin" + }, + { + "appid": 16500, + "normalized_name": "chaos theory" + }, + { + "appid": 16600, + "normalized_name": "trials 2 second" + }, + { + "appid": 16620, + "normalized_name": "monster trucks nitro" + }, + { + "appid": 16710, + "normalized_name": "insecticide part 1" + }, + { + "appid": 16720, + "normalized_name": "velvet assassin" + }, + { + "appid": 16730, + "normalized_name": "legendary" + }, + { + "appid": 16810, + "normalized_name": "sid meier's civilization iv colonization" + }, + { + "appid": 16900, + "normalized_name": "ground branch" + }, + { + "appid": 17100, + "normalized_name": "children of the nile enhanced" + }, + { + "appid": 17120, + "normalized_name": "children of the nile alexandria" + }, + { + "appid": 17140, + "normalized_name": "hinterland" + }, + { + "appid": 17180, + "normalized_name": "mosby's confederacy" + }, + { + "appid": 17330, + "normalized_name": "crysis warhead" + }, + { + "appid": 17390, + "normalized_name": "spore" + }, + { + "appid": 17410, + "normalized_name": "mirror's edge" + }, + { + "appid": 17440, + "normalized_name": "spore creepy & cute parts pack" + }, + { + "appid": 17460, + "normalized_name": "mass effect (2007)" + }, + { + "appid": 17470, + "normalized_name": "dead space (2008)" + }, + { + "appid": 17480, + "normalized_name": "command & conquer red alert 3" + }, + { + "appid": 17500, + "normalized_name": "zombie panic! source" + }, + { + "appid": 17570, + "normalized_name": "pirates vikings and knights ii" + }, + { + "appid": 17580, + "normalized_name": "dystopia" + }, + { + "appid": 17710, + "normalized_name": "nuclear dawn" + }, + { + "appid": 17740, + "normalized_name": "empires mod" + }, + { + "appid": 18000, + "normalized_name": "precipice of darkness episode one" + }, + { + "appid": 18020, + "normalized_name": "precipice of darkness episode two" + }, + { + "appid": 18040, + "normalized_name": "deathspank" + }, + { + "appid": 18050, + "normalized_name": "deathspank thongs of virtue" + }, + { + "appid": 18070, + "normalized_name": "the baconing" + }, + { + "appid": 18120, + "normalized_name": "unstoppable gorg" + }, + { + "appid": 18300, + "normalized_name": "spectraball" + }, + { + "appid": 18400, + "normalized_name": "crazy machines 2" + }, + { + "appid": 18420, + "normalized_name": "crazy machines" + }, + { + "appid": 18430, + "normalized_name": "crazy machines 1.5" + }, + { + "appid": 18470, + "normalized_name": "helldorado" + }, + { + "appid": 18480, + "normalized_name": "mata hari" + }, + { + "appid": 18500, + "normalized_name": "defense grid the awakening" + }, + { + "appid": 18600, + "normalized_name": "mayhem intergalactic" + }, + { + "appid": 18700, + "normalized_name": "and yet it moves" + }, + { + "appid": 18820, + "normalized_name": "zero gear" + }, + { + "appid": 19000, + "normalized_name": "silent hill homecoming" + }, + { + "appid": 19020, + "normalized_name": "puzzle chronicles" + }, + { + "appid": 19030, + "normalized_name": "rocket knight" + }, + { + "appid": 19080, + "normalized_name": "biozone" + }, + { + "appid": 19200, + "normalized_name": "tank universal" + }, + { + "appid": 19320, + "normalized_name": "space ark" + }, + { + "appid": 19500, + "normalized_name": "eternity's child" + }, + { + "appid": 19680, + "normalized_name": "alice madness returns" + }, + { + "appid": 19800, + "normalized_name": "brothers in arms earned in blood" + }, + { + "appid": 19810, + "normalized_name": "the sum of all fears" + }, + { + "appid": 19830, + "normalized_name": "tom clancy's rainbow six 3 gold" + }, + { + "appid": 19900, + "normalized_name": "far cry 2" + }, + { + "appid": 19980, + "normalized_name": "prince of persia" + }, + { + "appid": 20200, + "normalized_name": "galactic bowling" + }, + { + "appid": 20500, + "normalized_name": "red faction guerrilla steam" + }, + { + "appid": 20530, + "normalized_name": "red faction" + }, + { + "appid": 20540, + "normalized_name": "company of heroes tales of valor" + }, + { + "appid": 20550, + "normalized_name": "red faction ii" + }, + { + "appid": 20700, + "normalized_name": "starscape" + }, + { + "appid": 20710, + "normalized_name": "mr. robot" + }, + { + "appid": 20820, + "normalized_name": "shatter" + }, + { + "appid": 20900, + "normalized_name": "the witcher enhanced director's cut" + }, + { + "appid": 20920, + "normalized_name": "the witcher 2 assassins of kings enhanced" + }, + { + "appid": 21000, + "normalized_name": "lego batman the videogame" + }, + { + "appid": 21010, + "normalized_name": "watchmen the end is nigh" + }, + { + "appid": 21030, + "normalized_name": "watchmen the end is nigh part 2" + }, + { + "appid": 21090, + "normalized_name": "f.e.a.r." + }, + { + "appid": 21100, + "normalized_name": "f.e.a.r. 3" + }, + { + "appid": 21130, + "normalized_name": "lego harry potter years 1 4" + }, + { + "appid": 21300, + "normalized_name": "gravitron 2" + }, + { + "appid": 21500, + "normalized_name": "pyroblazer" + }, + { + "appid": 21660, + "normalized_name": "street fighter iv" + }, + { + "appid": 21670, + "normalized_name": "bionic commando" + }, + { + "appid": 21680, + "normalized_name": "bionic commando rearmed" + }, + { + "appid": 21690, + "normalized_name": "resident evil 5" + }, + { + "appid": 21780, + "normalized_name": "driver parallel lines" + }, + { + "appid": 21800, + "normalized_name": "tom clancy's endwar" + }, + { + "appid": 21980, + "normalized_name": "call of juarez bound in blood" + }, + { + "appid": 22000, + "normalized_name": "world of goo" + }, + { + "appid": 22100, + "normalized_name": "mount & blade" + }, + { + "appid": 22120, + "normalized_name": "penumbra black plague gold" + }, + { + "appid": 22130, + "normalized_name": "hearts of iron 2" + }, + { + "appid": 22140, + "normalized_name": "penumbra requiem" + }, + { + "appid": 22180, + "normalized_name": "penumbra overture" + }, + { + "appid": 22200, + "normalized_name": "zeno clash" + }, + { + "appid": 22230, + "normalized_name": "rock of ages" + }, + { + "appid": 22300, + "normalized_name": "fallout 3" + }, + { + "appid": 22310, + "normalized_name": "rogue warrior" + }, + { + "appid": 22320, + "normalized_name": "the elder scrolls iii morrowind game of the year" + }, + { + "appid": 22330, + "normalized_name": "the elder scrolls iv oblivion game of the year (2009)" + }, + { + "appid": 22340, + "normalized_name": "call of cthulhu dark corners of the earth" + }, + { + "appid": 22350, + "normalized_name": "brink" + }, + { + "appid": 22370, + "normalized_name": "fallout 3 game of the year" + }, + { + "appid": 22380, + "normalized_name": "fallout new vegas" + }, + { + "appid": 22450, + "normalized_name": "hunted the demon’s forge" + }, + { + "appid": 22490, + "normalized_name": "fallout new vegas" + }, + { + "appid": 22500, + "normalized_name": "spectromancer" + }, + { + "appid": 22600, + "normalized_name": "worms reloaded" + }, + { + "appid": 22610, + "normalized_name": "alien breed impact" + }, + { + "appid": 22650, + "normalized_name": "alien breed 2 assault" + }, + { + "appid": 22670, + "normalized_name": "alien breed 3 descent" + }, + { + "appid": 23150, + "normalized_name": "fluttabyes" + }, + { + "appid": 23300, + "normalized_name": "yosumin!" + }, + { + "appid": 23380, + "normalized_name": "gyromancer" + }, + { + "appid": 23400, + "normalized_name": "imperium romanum gold" + }, + { + "appid": 23420, + "normalized_name": "europa universalis rome gold" + }, + { + "appid": 23450, + "normalized_name": "grand ages rome" + }, + { + "appid": 23455, + "normalized_name": "grand ages rome reign of augustus" + }, + { + "appid": 23460, + "normalized_name": "ceville" + }, + { + "appid": 23490, + "normalized_name": "tropico 3" + }, + { + "appid": 23500, + "normalized_name": "puzzle quest galactrix" + }, + { + "appid": 23530, + "normalized_name": "earth defense force insect armageddon" + }, + { + "appid": 23600, + "normalized_name": "depths of peril" + }, + { + "appid": 23700, + "normalized_name": "puzzle kingdoms" + }, + { + "appid": 24010, + "normalized_name": "train simulator classic 2024" + }, + { + "appid": 24200, + "normalized_name": "dc universe online" + }, + { + "appid": 24240, + "normalized_name": "payday the heist" + }, + { + "appid": 24400, + "normalized_name": "king arthur the role playing wargame" + }, + { + "appid": 24410, + "normalized_name": "crusaders thy kingdom come" + }, + { + "appid": 24420, + "normalized_name": "aquaria" + }, + { + "appid": 24460, + "normalized_name": "king arthur fallen champions" + }, + { + "appid": 24480, + "normalized_name": "king arthur ii the role playing wargame" + }, + { + "appid": 24640, + "normalized_name": "trainz classic cabon city" + }, + { + "appid": 24650, + "normalized_name": "trainz settle and carlisle" + }, + { + "appid": 24660, + "normalized_name": "trainz murchison 2" + }, + { + "appid": 24670, + "normalized_name": "trainz simulator 12" + }, + { + "appid": 24720, + "normalized_name": "spore galactic adventures" + }, + { + "appid": 24780, + "normalized_name": "simcity 4 deluxe" + }, + { + "appid": 24790, + "normalized_name": "command & conquer 3 tiberium wars" + }, + { + "appid": 24800, + "normalized_name": "command & conquer red alert 3 uprising" + }, + { + "appid": 24810, + "normalized_name": "command & conquer 3 kane’s wrath" + }, + { + "appid": 24870, + "normalized_name": "need for speed shift" + }, + { + "appid": 24880, + "normalized_name": "the saboteur" + }, + { + "appid": 25000, + "normalized_name": "overgrowth" + }, + { + "appid": 25010, + "normalized_name": "lugaru hd" + }, + { + "appid": 25500, + "normalized_name": "cricket revolution" + }, + { + "appid": 25600, + "normalized_name": "eschalon book i" + }, + { + "appid": 25620, + "normalized_name": "eschalon book ii" + }, + { + "appid": 25700, + "normalized_name": "madballs in babo invasion" + }, + { + "appid": 25800, + "normalized_name": "europa universalis iii" + }, + { + "appid": 25808, + "normalized_name": "europa universalis iii divine wind" + }, + { + "appid": 25830, + "normalized_name": "knights of honor" + }, + { + "appid": 25850, + "normalized_name": "elven legacy" + }, + { + "appid": 25890, + "normalized_name": "hearts of iron iii" + }, + { + "appid": 25900, + "normalized_name": "king's bounty the legend" + }, + { + "appid": 25910, + "normalized_name": "supreme ruler 2020 gold" + }, + { + "appid": 25930, + "normalized_name": "east india company" + }, + { + "appid": 25980, + "normalized_name": "majesty 2" + }, + { + "appid": 25990, + "normalized_name": "majesty gold hd" + }, + { + "appid": 26000, + "normalized_name": "the maw" + }, + { + "appid": 26300, + "normalized_name": "drug wars" + }, + { + "appid": 26500, + "normalized_name": "cogs" + }, + { + "appid": 26800, + "normalized_name": "braid" + }, + { + "appid": 26900, + "normalized_name": "crayon physics deluxe" + }, + { + "appid": 27000, + "normalized_name": "the path" + }, + { + "appid": 27020, + "normalized_name": "the graveyard" + }, + { + "appid": 27050, + "normalized_name": "fatale" + }, + { + "appid": 27200, + "normalized_name": "summer athletics" + }, + { + "appid": 27400, + "normalized_name": "dangerous high school girls in trouble!" + }, + { + "appid": 27800, + "normalized_name": "space giraffe" + }, + { + "appid": 27810, + "normalized_name": "gridrunner revolution" + }, + { + "appid": 27900, + "normalized_name": "twin sector" + }, + { + "appid": 27920, + "normalized_name": "booster trooper" + }, + { + "appid": 27940, + "normalized_name": "dead horde" + }, + { + "appid": 28000, + "normalized_name": "kane & lynch 2 dog days" + }, + { + "appid": 29120, + "normalized_name": "yumsters 2 around the world" + }, + { + "appid": 29130, + "normalized_name": "musaic box" + }, + { + "appid": 29160, + "normalized_name": "blueberry garden" + }, + { + "appid": 29180, + "normalized_name": "osmos" + }, + { + "appid": 29540, + "normalized_name": "guild wars game of the year" + }, + { + "appid": 29560, + "normalized_name": "guild wars factions" + }, + { + "appid": 29570, + "normalized_name": "guild wars trilogy" + }, + { + "appid": 29580, + "normalized_name": "guild wars nightfall" + }, + { + "appid": 29600, + "normalized_name": "guild wars game of the year" + }, + { + "appid": 29610, + "normalized_name": "guild wars factions" + }, + { + "appid": 29620, + "normalized_name": "guild wars trilogy" + }, + { + "appid": 29630, + "normalized_name": "guild wars nightfall" + }, + { + "appid": 29700, + "normalized_name": "guild wars eye of the north" + }, + { + "appid": 29800, + "normalized_name": "caster" + }, + { + "appid": 29900, + "normalized_name": "dark sector" + }, + { + "appid": 31100, + "normalized_name": "wallace & gromit’s grand adventures" + }, + { + "appid": 31170, + "normalized_name": "tales of monkey island season" + }, + { + "appid": 31270, + "normalized_name": "puzzle agent" + }, + { + "appid": 31300, + "normalized_name": "tunnel rats" + }, + { + "appid": 31700, + "normalized_name": "iron grip warlord" + }, + { + "appid": 31800, + "normalized_name": "nancy drew danger by design" + }, + { + "appid": 31810, + "normalized_name": "nancy drew last train to blue moon canyon" + }, + { + "appid": 31820, + "normalized_name": "nancy drew the haunted carousel" + }, + { + "appid": 31830, + "normalized_name": "nancy drew curse of blackmoor manor" + }, + { + "appid": 31840, + "normalized_name": "nancy drew danger on deception island" + }, + { + "appid": 31850, + "normalized_name": "nancy drew ghost dogs of moon lake" + }, + { + "appid": 31860, + "normalized_name": "nancy drew legend of the crystal skull" + }, + { + "appid": 31870, + "normalized_name": "nancy drew dossier lights camera curses!" + }, + { + "appid": 31880, + "normalized_name": "nancy drew secret of the old clock" + }, + { + "appid": 31890, + "normalized_name": "nancy drew secret of the scarlet hand" + }, + { + "appid": 31900, + "normalized_name": "nancy drew the creature of kapu cave" + }, + { + "appid": 31910, + "normalized_name": "nancy drew the haunting of castle malloy" + }, + { + "appid": 31920, + "normalized_name": "nancy drew the phantom of venice" + }, + { + "appid": 31930, + "normalized_name": "nancy drew the white wolf of icicle creek" + }, + { + "appid": 32000, + "normalized_name": "raycatcher" + }, + { + "appid": 32110, + "normalized_name": "luxor mah jong" + }, + { + "appid": 32120, + "normalized_name": "chainz 2 relinked" + }, + { + "appid": 32140, + "normalized_name": "midnight mysteries" + }, + { + "appid": 32150, + "normalized_name": "everyday genius squarelogic" + }, + { + "appid": 32160, + "normalized_name": "zombie bowl o rama" + }, + { + "appid": 32200, + "normalized_name": "metal drift" + }, + { + "appid": 32310, + "normalized_name": "indiana jones and the last crusade" + }, + { + "appid": 32330, + "normalized_name": "lego indiana jones the original adventures" + }, + { + "appid": 32340, + "normalized_name": "loom" + }, + { + "appid": 32350, + "normalized_name": "star wars starfighter" + }, + { + "appid": 32360, + "normalized_name": "the secret of monkey island special" + }, + { + "appid": 32370, + "normalized_name": "star wars knights of the old republic" + }, + { + "appid": 32380, + "normalized_name": "star wars jedi knight dark forces ii" + }, + { + "appid": 32390, + "normalized_name": "star wars jedi knight mysteries of the sith" + }, + { + "appid": 32400, + "normalized_name": "star wars dark forces (classic 1995)" + }, + { + "appid": 32410, + "normalized_name": "lucidity" + }, + { + "appid": 32430, + "normalized_name": "star wars the force unleashed sith" + }, + { + "appid": 32440, + "normalized_name": "lego star wars the saga" + }, + { + "appid": 32450, + "normalized_name": "lego indiana jones 2 the adventure continues" + }, + { + "appid": 32460, + "normalized_name": "monkey island 2 special lechuck’s revenge" + }, + { + "appid": 32470, + "normalized_name": "star wars empire at war gold pack" + }, + { + "appid": 32500, + "normalized_name": "star wars the force unleashed ii" + }, + { + "appid": 32510, + "normalized_name": "lego star wars iii the clone wars" + }, + { + "appid": 32610, + "normalized_name": "delta force xtreme 2" + }, + { + "appid": 32620, + "normalized_name": "delta force 1" + }, + { + "appid": 32630, + "normalized_name": "delta force 2" + }, + { + "appid": 32640, + "normalized_name": "delta force land warrior" + }, + { + "appid": 32650, + "normalized_name": "delta force task force dagger" + }, + { + "appid": 32660, + "normalized_name": "delta force xtreme" + }, + { + "appid": 32680, + "normalized_name": "delta force — black hawk down team sabre" + }, + { + "appid": 32710, + "normalized_name": "armored fist 3" + }, + { + "appid": 32720, + "normalized_name": "f 16 multirole fighter" + }, + { + "appid": 32730, + "normalized_name": "f 22 lightning 3" + }, + { + "appid": 32740, + "normalized_name": "mig 29 fulcrum" + }, + { + "appid": 32750, + "normalized_name": "comanche 4" + }, + { + "appid": 32760, + "normalized_name": "tachyon the fringe" + }, + { + "appid": 32770, + "normalized_name": "joint operations combined arms gold" + }, + { + "appid": 32900, + "normalized_name": "restaurant empire ii" + }, + { + "appid": 33100, + "normalized_name": "alien shooter" + }, + { + "appid": 33110, + "normalized_name": "alien shooter revisited" + }, + { + "appid": 33120, + "normalized_name": "alien shooter 2 reloaded" + }, + { + "appid": 33130, + "normalized_name": "zombie shooter" + }, + { + "appid": 33180, + "normalized_name": "zombie shooter 2" + }, + { + "appid": 33220, + "normalized_name": "tom clancy's splinter cell conviction" + }, + { + "appid": 33230, + "normalized_name": "assassin's creed 2" + }, + { + "appid": 33320, + "normalized_name": "prince of persia the forgotten sands" + }, + { + "appid": 33390, + "normalized_name": "zeit²" + }, + { + "appid": 33460, + "normalized_name": "from dust" + }, + { + "appid": 33520, + "normalized_name": "tropico reloaded" + }, + { + "appid": 33540, + "normalized_name": "dawn of magic 2" + }, + { + "appid": 33550, + "normalized_name": "time of shadows" + }, + { + "appid": 33570, + "normalized_name": "patrician iii" + }, + { + "appid": 33580, + "normalized_name": "the great art race" + }, + { + "appid": 33600, + "normalized_name": "broken sword 2 the smoking mirror (2010)" + }, + { + "appid": 33610, + "normalized_name": "broken sword 3 the sleeping dragon (2003)" + }, + { + "appid": 33620, + "normalized_name": "crash time 3" + }, + { + "appid": 33650, + "normalized_name": "puzzler world" + }, + { + "appid": 33660, + "normalized_name": "ziro" + }, + { + "appid": 33670, + "normalized_name": "disciples iii renaissance steam special" + }, + { + "appid": 33680, + "normalized_name": "eversion" + }, + { + "appid": 33700, + "normalized_name": "paws and claws pampered pets" + }, + { + "appid": 33710, + "normalized_name": "paws and claws pet school" + }, + { + "appid": 33720, + "normalized_name": "paws and claws pet vet" + }, + { + "appid": 33730, + "normalized_name": "18 wheels of steel extreme trucker" + }, + { + "appid": 33750, + "normalized_name": "prison tycoon 4 supermax" + }, + { + "appid": 33760, + "normalized_name": "the search for amelia earhart" + }, + { + "appid": 33770, + "normalized_name": "drakensang the river of time" + }, + { + "appid": 33790, + "normalized_name": "elizabeth find m.d. diagnosis mystery season 2" + }, + { + "appid": 33900, + "normalized_name": "arma 2" + }, + { + "appid": 33930, + "normalized_name": "arma 2 operation arrowhead" + }, + { + "appid": 33950, + "normalized_name": "fish fillets 2" + }, + { + "appid": 33980, + "normalized_name": "pound of ground" + }, + { + "appid": 33990, + "normalized_name": "alternativa" + }, + { + "appid": 34010, + "normalized_name": "alpha protocol" + }, + { + "appid": 34030, + "normalized_name": "total war napoleon –" + }, + { + "appid": 34190, + "normalized_name": "sonic & sega all stars racing" + }, + { + "appid": 34410, + "normalized_name": "death to spies moment of truth" + }, + { + "appid": 34420, + "normalized_name": "xiii century – gold" + }, + { + "appid": 34500, + "normalized_name": "light of altair" + }, + { + "appid": 34600, + "normalized_name": "order of war" + }, + { + "appid": 34630, + "normalized_name": "massive assault" + }, + { + "appid": 34640, + "normalized_name": "massive assault phantom renaissance" + }, + { + "appid": 34800, + "normalized_name": "chronicles of mystery the scorpio ritual" + }, + { + "appid": 34810, + "normalized_name": "project freedom" + }, + { + "appid": 34820, + "normalized_name": "combat wings battle of britain" + }, + { + "appid": 34830, + "normalized_name": "sniper ghost warrior" + }, + { + "appid": 34870, + "normalized_name": "sniper ghost warrior 2" + }, + { + "appid": 34900, + "normalized_name": "bad rats the rats' revenge" + }, + { + "appid": 34920, + "normalized_name": "razor2 hidden skies" + }, + { + "appid": 35000, + "normalized_name": "mini ninjas" + }, + { + "appid": 35030, + "normalized_name": "championship manager 2010" + }, + { + "appid": 35070, + "normalized_name": "flora's fruit farm" + }, + { + "appid": 35130, + "normalized_name": "lara croft and the guardian of light" + }, + { + "appid": 35140, + "normalized_name": "batman arkham asylum game of the year" + }, + { + "appid": 35300, + "normalized_name": "warfare" + }, + { + "appid": 35310, + "normalized_name": "clutch" + }, + { + "appid": 35320, + "normalized_name": "insane 2" + }, + { + "appid": 35450, + "normalized_name": "red orchestra 2 heroes of stalingrad with rising storm" + }, + { + "appid": 35460, + "normalized_name": "the ball" + }, + { + "appid": 35480, + "normalized_name": "dwarfs!?" + }, + { + "appid": 35600, + "normalized_name": "big brain wolf" + }, + { + "appid": 35700, + "normalized_name": "trine enchanted" + }, + { + "appid": 35720, + "normalized_name": "trine 2 story" + }, + { + "appid": 35800, + "normalized_name": "brainpipe a plunge to unhumanity" + }, + { + "appid": 36000, + "normalized_name": "foreign legion buckets of blood" + }, + { + "appid": 36130, + "normalized_name": "tradewinds caravans + odyssey pack" + }, + { + "appid": 36150, + "normalized_name": "westward collection" + }, + { + "appid": 36900, + "normalized_name": "angle of attack" + }, + { + "appid": 36910, + "normalized_name": "all aspect warfare" + }, + { + "appid": 37000, + "normalized_name": "the void" + }, + { + "appid": 37210, + "normalized_name": "chocolatier decadence by design" + }, + { + "appid": 37220, + "normalized_name": "cooking dash" + }, + { + "appid": 37230, + "normalized_name": "diaper dash" + }, + { + "appid": 37240, + "normalized_name": "diner dash hometown hero" + }, + { + "appid": 37260, + "normalized_name": "emerald city confidential" + }, + { + "appid": 37280, + "normalized_name": "wedding dash 2 rings around the world" + }, + { + "appid": 37290, + "normalized_name": "zenerchi" + }, + { + "appid": 37300, + "normalized_name": "dinertown tycoon" + }, + { + "appid": 37310, + "normalized_name": "dinertown detective agency" + }, + { + "appid": 37320, + "normalized_name": "the nightshift code" + }, + { + "appid": 37330, + "normalized_name": "nightshift legacy the jaguar's eye" + }, + { + "appid": 37340, + "normalized_name": "fitness dash" + }, + { + "appid": 37360, + "normalized_name": "mahjong roadshow" + }, + { + "appid": 37370, + "normalized_name": "trijinx a kristine kross mystery" + }, + { + "appid": 37380, + "normalized_name": "valerie porter and the scarlet scandal" + }, + { + "appid": 37390, + "normalized_name": "gemini lost" + }, + { + "appid": 37400, + "normalized_name": "time gentlemen please! and ben there dan that! special double pack" + }, + { + "appid": 37500, + "normalized_name": "magnetis" + }, + { + "appid": 37600, + "normalized_name": "windosill" + }, + { + "appid": 37800, + "normalized_name": "quantz" + }, + { + "appid": 37960, + "normalized_name": "jewel quest pack" + }, + { + "appid": 38000, + "normalized_name": "mahjong quest collection" + }, + { + "appid": 38070, + "normalized_name": "coconut queen" + }, + { + "appid": 38080, + "normalized_name": "build a lot" + }, + { + "appid": 38090, + "normalized_name": "build a lot 2 town of the year" + }, + { + "appid": 38100, + "normalized_name": "build a lot 3 passport to europe" + }, + { + "appid": 38110, + "normalized_name": "build a lot 4 power source" + }, + { + "appid": 38120, + "normalized_name": "farm frenzy" + }, + { + "appid": 38130, + "normalized_name": "farm frenzy 2" + }, + { + "appid": 38140, + "normalized_name": "farm frenzy pizza party" + }, + { + "appid": 38150, + "normalized_name": "farm frenzy 3" + }, + { + "appid": 38160, + "normalized_name": "farm frenzy 3 american pie" + }, + { + "appid": 38170, + "normalized_name": "cradle of rome" + }, + { + "appid": 38180, + "normalized_name": "cradle of persia" + }, + { + "appid": 38190, + "normalized_name": "romance of rome" + }, + { + "appid": 38210, + "normalized_name": "roogoo" + }, + { + "appid": 38230, + "normalized_name": "hotel giant 2" + }, + { + "appid": 38400, + "normalized_name": "fallout a post nuclear role playing game" + }, + { + "appid": 38410, + "normalized_name": "fallout 2 a post nuclear role playing game" + }, + { + "appid": 38420, + "normalized_name": "fallout tactics brotherhood of steel" + }, + { + "appid": 38430, + "normalized_name": "kingpin — life of crime" + }, + { + "appid": 38440, + "normalized_name": "sacrifice" + }, + { + "appid": 38450, + "normalized_name": "mdk" + }, + { + "appid": 38460, + "normalized_name": "mdk 2" + }, + { + "appid": 38480, + "normalized_name": "earthworm jim" + }, + { + "appid": 38490, + "normalized_name": "earthworm jim 2" + }, + { + "appid": 38600, + "normalized_name": "faerie solitaire" + }, + { + "appid": 38700, + "normalized_name": "toki tori" + }, + { + "appid": 38720, + "normalized_name": "rush" + }, + { + "appid": 38740, + "normalized_name": "edge" + }, + { + "appid": 39000, + "normalized_name": "moonbase alpha" + }, + { + "appid": 39110, + "normalized_name": "season of mystery the cherry blossom murders" + }, + { + "appid": 39120, + "normalized_name": "rift" + }, + { + "appid": 39140, + "normalized_name": "final fantasy vii" + }, + { + "appid": 39150, + "normalized_name": "final fantasy viii" + }, + { + "appid": 39160, + "normalized_name": "dungeon siege iii" + }, + { + "appid": 39190, + "normalized_name": "dungeon siege" + }, + { + "appid": 39200, + "normalized_name": "dungeon siege ii" + }, + { + "appid": 39210, + "normalized_name": "final fantasy xiv online" + }, + { + "appid": 39391, + "normalized_name": "freeze tag fun pack #1" + }, + { + "appid": 39392, + "normalized_name": "freeze tag fun pack #2" + }, + { + "appid": 39500, + "normalized_name": "gothic 3" + }, + { + "appid": 39510, + "normalized_name": "gothic ii gold" + }, + { + "appid": 39520, + "normalized_name": "the guild gold" + }, + { + "appid": 39530, + "normalized_name": "painkiller black" + }, + { + "appid": 39540, + "normalized_name": "spellforce platinum" + }, + { + "appid": 39550, + "normalized_name": "spellforce 2 anniversary" + }, + { + "appid": 39560, + "normalized_name": "painkiller resurrection" + }, + { + "appid": 39630, + "normalized_name": "aquanox" + }, + { + "appid": 39640, + "normalized_name": "aquanox 2 revelation" + }, + { + "appid": 39650, + "normalized_name": "the guild ii" + }, + { + "appid": 39660, + "normalized_name": "the guild ii pirates of the european seas" + }, + { + "appid": 39670, + "normalized_name": "chaser" + }, + { + "appid": 39680, + "normalized_name": "the guild ii renaissance" + }, + { + "appid": 39690, + "normalized_name": "arcania" + }, + { + "appid": 39800, + "normalized_name": "nation red" + }, + { + "appid": 39900, + "normalized_name": "coniclysm" + }, + { + "appid": 40100, + "normalized_name": "supreme commander 2" + }, + { + "appid": 40200, + "normalized_name": "itzabitza" + }, + { + "appid": 40210, + "normalized_name": "itzazoo" + }, + { + "appid": 40300, + "normalized_name": "risen" + }, + { + "appid": 40320, + "normalized_name": "rush for berlin gold" + }, + { + "appid": 40330, + "normalized_name": "secret files tunguska" + }, + { + "appid": 40340, + "normalized_name": "secret files 2 puritas cordis" + }, + { + "appid": 40350, + "normalized_name": "lost horizon" + }, + { + "appid": 40380, + "normalized_name": "nail'd" + }, + { + "appid": 40390, + "normalized_name": "risen 2 dark waters" + }, + { + "appid": 40400, + "normalized_name": "ai war fleet command" + }, + { + "appid": 40420, + "normalized_name": "tidalis" + }, + { + "appid": 40500, + "normalized_name": "sacraboar" + }, + { + "appid": 40700, + "normalized_name": "machinarium" + }, + { + "appid": 40720, + "normalized_name": "samorost 2" + }, + { + "appid": 40800, + "normalized_name": "super meat boy" + }, + { + "appid": 40930, + "normalized_name": "the misadventures of p.b. winterbottom" + }, + { + "appid": 40950, + "normalized_name": "stronghold hd (2012)" + }, + { + "appid": 40960, + "normalized_name": "stronghold 2 steam" + }, + { + "appid": 40970, + "normalized_name": "stronghold crusader hd (2012)" + }, + { + "appid": 40980, + "normalized_name": "stronghold legends steam" + }, + { + "appid": 40990, + "normalized_name": "mafia" + }, + { + "appid": 41000, + "normalized_name": "serious sam hd the first encounter" + }, + { + "appid": 41014, + "normalized_name": "serious sam hd the second encounter" + }, + { + "appid": 41050, + "normalized_name": "serious sam classic the first encounter" + }, + { + "appid": 41060, + "normalized_name": "serious sam classic the second encounter" + }, + { + "appid": 41070, + "normalized_name": "serious sam 3 bfe" + }, + { + "appid": 41100, + "normalized_name": "hammerfight" + }, + { + "appid": 41300, + "normalized_name": "altitude" + }, + { + "appid": 41400, + "normalized_name": "doom rails" + }, + { + "appid": 41500, + "normalized_name": "torchlight" + }, + { + "appid": 41600, + "normalized_name": "earthworm jim 3d" + }, + { + "appid": 41660, + "normalized_name": "tommy tronic" + }, + { + "appid": 41680, + "normalized_name": "death and the fly" + }, + { + "appid": 41730, + "normalized_name": "ion assault" + }, + { + "appid": 41740, + "normalized_name": "cargo! the quest for gravity" + }, + { + "appid": 41800, + "normalized_name": "gratuitous space battles" + }, + { + "appid": 41900, + "normalized_name": "the bard's tale arpg and resnarkled" + }, + { + "appid": 42000, + "normalized_name": "trino" + }, + { + "appid": 42120, + "normalized_name": "lead and gold gangs of the wild west" + }, + { + "appid": 42140, + "normalized_name": "hamilton's great adventure" + }, + { + "appid": 42147, + "normalized_name": "hamilton's great adventure retro fever dlc" + }, + { + "appid": 42170, + "normalized_name": "krater" + }, + { + "appid": 42200, + "normalized_name": "nancy drew dossier resorting to danger!" + }, + { + "appid": 42210, + "normalized_name": "nancy drew secrets can kill" + }, + { + "appid": 42220, + "normalized_name": "nancy drew the captive curse" + }, + { + "appid": 42230, + "normalized_name": "nancy drew trail of the twister" + }, + { + "appid": 42500, + "normalized_name": "dogfighter" + }, + { + "appid": 42670, + "normalized_name": "singularity" + }, + { + "appid": 42700, + "normalized_name": "call of duty black ops" + }, + { + "appid": 42810, + "normalized_name": "for the glory a europa universalis game" + }, + { + "appid": 42850, + "normalized_name": "arsenal of democracy a hearts of iron game" + }, + { + "appid": 42890, + "normalized_name": "sword of the stars collection" + }, + { + "appid": 42900, + "normalized_name": "hearts of iron iii semper fi" + }, + { + "appid": 42910, + "normalized_name": "magicka" + }, + { + "appid": 42920, + "normalized_name": "the kings' crusade" + }, + { + "appid": 42930, + "normalized_name": "elven legacy magic" + }, + { + "appid": 42940, + "normalized_name": "elven legacy siege" + }, + { + "appid": 42950, + "normalized_name": "elven legacy ranger" + }, + { + "appid": 42960, + "normalized_name": "victoria ii" + }, + { + "appid": 42980, + "normalized_name": "victoria i" + }, + { + "appid": 42990, + "normalized_name": "sword of the stars ii enhanced" + }, + { + "appid": 43000, + "normalized_name": "front mission evolved" + }, + { + "appid": 43100, + "normalized_name": "world of zoo" + }, + { + "appid": 43190, + "normalized_name": "the haunted hells reach" + }, + { + "appid": 43500, + "normalized_name": "m.u.d. tv" + }, + { + "appid": 43600, + "normalized_name": "nancy drew warnings at waverly academy" + }, + { + "appid": 44100, + "normalized_name": "super laser racer" + }, + { + "appid": 44600, + "normalized_name": "gtr fia gt racing game" + }, + { + "appid": 44680, + "normalized_name": "race injection" + }, + { + "appid": 44690, + "normalized_name": "gt legends" + }, + { + "appid": 45100, + "normalized_name": "secret of the magic crystals" + }, + { + "appid": 45200, + "normalized_name": "defense of the oasis" + }, + { + "appid": 45300, + "normalized_name": "wings of prey" + }, + { + "appid": 45400, + "normalized_name": "fortix" + }, + { + "appid": 45410, + "normalized_name": "ignite" + }, + { + "appid": 45420, + "normalized_name": "land it!" + }, + { + "appid": 45450, + "normalized_name": "fortix 2" + }, + { + "appid": 45720, + "normalized_name": "lost planet extreme condition colonies" + }, + { + "appid": 45740, + "normalized_name": "dead rising 2" + }, + { + "appid": 45750, + "normalized_name": "lost planet 2" + }, + { + "appid": 45760, + "normalized_name": "ultra street fighter iv" + }, + { + "appid": 45770, + "normalized_name": "dead rising 2 off the record" + }, + { + "appid": 46000, + "normalized_name": "bob came in pieces" + }, + { + "appid": 46200, + "normalized_name": "a.i.m. racing" + }, + { + "appid": 46250, + "normalized_name": "necrovision lost company" + }, + { + "appid": 46260, + "normalized_name": "star wolves 3 civil war" + }, + { + "appid": 46270, + "normalized_name": "star wolves" + }, + { + "appid": 46280, + "normalized_name": "star wolves 2" + }, + { + "appid": 46290, + "normalized_name": "theatre of war" + }, + { + "appid": 46340, + "normalized_name": "theatre of war 2 africa 1943" + }, + { + "appid": 46350, + "normalized_name": "real warfare 1242" + }, + { + "appid": 46360, + "normalized_name": "theatre of war 2 kursk 1943" + }, + { + "appid": 46370, + "normalized_name": "rig n roll" + }, + { + "appid": 46380, + "normalized_name": "reign conflict of nations" + }, + { + "appid": 46400, + "normalized_name": "greed black border" + }, + { + "appid": 46410, + "normalized_name": "avencast rise of the mage" + }, + { + "appid": 46440, + "normalized_name": "future wars" + }, + { + "appid": 46450, + "normalized_name": "grotesque tactics evil heroes" + }, + { + "appid": 46460, + "normalized_name": "scratches director's cut" + }, + { + "appid": 46480, + "normalized_name": "still life" + }, + { + "appid": 46490, + "normalized_name": "still life 2" + }, + { + "appid": 46500, + "normalized_name": "syberia" + }, + { + "appid": 46510, + "normalized_name": "syberia ii" + }, + { + "appid": 46520, + "normalized_name": "wasteland angel" + }, + { + "appid": 46540, + "normalized_name": "trapped dead" + }, + { + "appid": 46550, + "normalized_name": "post mortem" + }, + { + "appid": 46560, + "normalized_name": "robin hood the legend of sherwood" + }, + { + "appid": 46570, + "normalized_name": "grotesque tactics 2 – dungeons and donuts" + }, + { + "appid": 46600, + "normalized_name": "swarm arena" + }, + { + "appid": 46700, + "normalized_name": "ironclads american civil war" + }, + { + "appid": 46710, + "normalized_name": "ironclads high seas" + }, + { + "appid": 46720, + "normalized_name": "dimensity" + }, + { + "appid": 46730, + "normalized_name": "hazen the dark whispers" + }, + { + "appid": 46740, + "normalized_name": "world basketball manager 2010" + }, + { + "appid": 46750, + "normalized_name": "dark fall lost souls" + }, + { + "appid": 46760, + "normalized_name": "ironclads schleswig war 1864" + }, + { + "appid": 46770, + "normalized_name": "making history ii the war of the world" + }, + { + "appid": 46790, + "normalized_name": "armada 2526" + }, + { + "appid": 46830, + "normalized_name": "ironclads anglo russian war 1866" + }, + { + "appid": 46840, + "normalized_name": "ironclads chincha islands war 1866" + }, + { + "appid": 46850, + "normalized_name": "zombie pirates" + }, + { + "appid": 47110, + "normalized_name": "escape from paradise" + }, + { + "appid": 47120, + "normalized_name": "escape from paradise 2" + }, + { + "appid": 47130, + "normalized_name": "book of legends" + }, + { + "appid": 47400, + "normalized_name": "stronghold 3 gold" + }, + { + "appid": 47410, + "normalized_name": "stronghold kingdoms" + }, + { + "appid": 47700, + "normalized_name": "command & conquer 4 tiberian twilight" + }, + { + "appid": 47780, + "normalized_name": "dead space 2" + }, + { + "appid": 47790, + "normalized_name": "medal of honor" + }, + { + "appid": 47810, + "normalized_name": "dragon age origins" + }, + { + "appid": 47890, + "normalized_name": "the sims 3" + }, + { + "appid": 47920, + "normalized_name": "shift 2 unleashed" + }, + { + "appid": 48000, + "normalized_name": "limbo" + }, + { + "appid": 48110, + "normalized_name": "silent hunter 5 battle of the atlantic" + }, + { + "appid": 48150, + "normalized_name": "voodoo dice" + }, + { + "appid": 48190, + "normalized_name": "assassin’s creed brotherhood" + }, + { + "appid": 48220, + "normalized_name": "might & magic heroes vi" + }, + { + "appid": 48240, + "normalized_name": "anno 2070" + }, + { + "appid": 48700, + "normalized_name": "mount & blade warband" + }, + { + "appid": 48720, + "normalized_name": "mount & blade with fire & sword" + }, + { + "appid": 48800, + "normalized_name": "ship simulator extremes" + }, + { + "appid": 48900, + "normalized_name": "saira" + }, + { + "appid": 48950, + "normalized_name": "greed corp" + }, + { + "appid": 49000, + "normalized_name": "hotel dash suite success" + }, + { + "appid": 49300, + "normalized_name": "commander conquest of the americas" + }, + { + "appid": 49320, + "normalized_name": "woody two legs attack of the zombie pirates" + }, + { + "appid": 49330, + "normalized_name": "pirates of black cove" + }, + { + "appid": 49520, + "normalized_name": "borderlands 2" + }, + { + "appid": 49540, + "normalized_name": "aliens colonial marines collection" + }, + { + "appid": 49600, + "normalized_name": "beat hazard" + }, + { + "appid": 49800, + "normalized_name": "flight of the icarus" + }, + { + "appid": 49810, + "normalized_name": "creavures" + }, + { + "appid": 49900, + "normalized_name": "plain sight" + }, + { + "appid": 50000, + "normalized_name": "nimbus" + }, + { + "appid": 50130, + "normalized_name": "mafia ii (classic)" + }, + { + "appid": 50510, + "normalized_name": "burn zombie burn!" + }, + { + "appid": 50620, + "normalized_name": "darksiders" + }, + { + "appid": 50910, + "normalized_name": "professor fizzwizzle and the molten mystery" + }, + { + "appid": 50920, + "normalized_name": "hidden expedition amazon" + }, + { + "appid": 50930, + "normalized_name": "hidden expedition everest" + }, + { + "appid": 50940, + "normalized_name": "hidden expedition titanic" + }, + { + "appid": 50960, + "normalized_name": "mystery case files huntsville" + }, + { + "appid": 50970, + "normalized_name": "mystery case files madame fate" + }, + { + "appid": 50980, + "normalized_name": "mystery case files prime suspects" + }, + { + "appid": 50990, + "normalized_name": "mystery case files ravenhearst" + }, + { + "appid": 51000, + "normalized_name": "mystery case files return to ravenhearst" + }, + { + "appid": 51010, + "normalized_name": "my tribe" + }, + { + "appid": 51020, + "normalized_name": "unwell mel" + }, + { + "appid": 51030, + "normalized_name": "atlantis sky patrol" + }, + { + "appid": 51060, + "normalized_name": "drawn the painted tower" + }, + { + "appid": 55000, + "normalized_name": "flotilla" + }, + { + "appid": 55020, + "normalized_name": "air forte" + }, + { + "appid": 55040, + "normalized_name": "atom zombie smasher" + }, + { + "appid": 55100, + "normalized_name": "homefront" + }, + { + "appid": 55110, + "normalized_name": "red faction armageddon" + }, + { + "appid": 55140, + "normalized_name": "mx vs. atv reflex" + }, + { + "appid": 55150, + "normalized_name": "warhammer 40 000 space marine anniversary" + }, + { + "appid": 55230, + "normalized_name": "saints row the third" + }, + { + "appid": 57000, + "normalized_name": "nyxquest kindred spirits" + }, + { + "appid": 57200, + "normalized_name": "puzzle dimension" + }, + { + "appid": 57300, + "normalized_name": "amnesia the dark descent" + }, + { + "appid": 57620, + "normalized_name": "patrician iv" + }, + { + "appid": 57650, + "normalized_name": "dungeons" + }, + { + "appid": 57680, + "normalized_name": "the first templar steam special" + }, + { + "appid": 57690, + "normalized_name": "tropico 4" + }, + { + "appid": 57700, + "normalized_name": "who's that flying?!" + }, + { + "appid": 57740, + "normalized_name": "jagged alliance back in action" + }, + { + "appid": 57800, + "normalized_name": "doc clock the toasted sandwich of time" + }, + { + "appid": 57900, + "normalized_name": "duke nukem forever" + }, + { + "appid": 58200, + "normalized_name": "jolly rover" + }, + { + "appid": 58230, + "normalized_name": "macguffin's curse" + }, + { + "appid": 58400, + "normalized_name": "turba" + }, + { + "appid": 58520, + "normalized_name": "blood bowl legendary" + }, + { + "appid": 58550, + "normalized_name": "a game of thrones genesis" + }, + { + "appid": 58560, + "normalized_name": "runaway a twist of fate" + }, + { + "appid": 58570, + "normalized_name": "the next big thing" + }, + { + "appid": 58610, + "normalized_name": "wargame european escalation" + }, + { + "appid": 60340, + "normalized_name": "luxor 5th passage" + }, + { + "appid": 60350, + "normalized_name": "glowfish" + }, + { + "appid": 60600, + "normalized_name": "protogalaxy" + }, + { + "appid": 60700, + "normalized_name": "power of defense" + }, + { + "appid": 60800, + "normalized_name": "numen contest of heroes" + }, + { + "appid": 61100, + "normalized_name": "lucid" + }, + { + "appid": 61310, + "normalized_name": "fractal make blooms not war" + }, + { + "appid": 61500, + "normalized_name": "age of wonders" + }, + { + "appid": 61510, + "normalized_name": "age of wonders ii the wizard's throne" + }, + { + "appid": 61520, + "normalized_name": "age of wonders shadow magic" + }, + { + "appid": 61600, + "normalized_name": "zen bound 2" + }, + { + "appid": 61730, + "normalized_name": "critter crunch" + }, + { + "appid": 62000, + "normalized_name": "flight control hd" + }, + { + "appid": 62100, + "normalized_name": "chime" + }, + { + "appid": 63000, + "normalized_name": "hoard" + }, + { + "appid": 63110, + "normalized_name": "alter ego" + }, + { + "appid": 63200, + "normalized_name": "monday night combat" + }, + { + "appid": 63380, + "normalized_name": "sniper elite v2" + }, + { + "appid": 63500, + "normalized_name": "swords and soldiers hd" + }, + { + "appid": 63610, + "normalized_name": "riven (1997)" + }, + { + "appid": 63620, + "normalized_name": "cosmic osmo and the worlds beyond the mackerel" + }, + { + "appid": 63630, + "normalized_name": "the manhole masterpiece" + }, + { + "appid": 63640, + "normalized_name": "spelunx and the caves of mr. seudo" + }, + { + "appid": 63650, + "normalized_name": "uru chronicles" + }, + { + "appid": 63660, + "normalized_name": "myst masterpiece" + }, + { + "appid": 63700, + "normalized_name": "bit.trip beat" + }, + { + "appid": 63710, + "normalized_name": "bit.trip runner" + }, + { + "appid": 63800, + "normalized_name": "delve deeper" + }, + { + "appid": 63900, + "normalized_name": "fantasy wars" + }, + { + "appid": 63910, + "normalized_name": "king's bounty crossworlds" + }, + { + "appid": 63940, + "normalized_name": "men of war vietnam" + }, + { + "appid": 63950, + "normalized_name": "il 2 sturmovik cliffs of dover" + }, + { + "appid": 63960, + "normalized_name": "theatre of war 3 korea" + }, + { + "appid": 63970, + "normalized_name": "il 2 sturmovik cliffs of dover" + }, + { + "appid": 64000, + "normalized_name": "men of war assault squad" + }, + { + "appid": 65070, + "normalized_name": "ride 'em low" + }, + { + "appid": 65080, + "normalized_name": "kaptain brawe a brawe new world" + }, + { + "appid": 65200, + "normalized_name": "dive to the titanic" + }, + { + "appid": 65270, + "normalized_name": "demolition company gold" + }, + { + "appid": 65300, + "normalized_name": "dustforce dx" + }, + { + "appid": 65400, + "normalized_name": "archon classic" + }, + { + "appid": 65500, + "normalized_name": "aura fate of the ages" + }, + { + "appid": 65530, + "normalized_name": "spellforce 2 faith in destiny" + }, + { + "appid": 65540, + "normalized_name": "gothic 1" + }, + { + "appid": 65560, + "normalized_name": "painkiller redemption" + }, + { + "appid": 65600, + "normalized_name": "gothic 3 forsaken gods enhanced" + }, + { + "appid": 65610, + "normalized_name": "arcania fall of setarrif" + }, + { + "appid": 65730, + "normalized_name": "take on helicopters" + }, + { + "appid": 65740, + "normalized_name": "carrier command gaea mission" + }, + { + "appid": 65780, + "normalized_name": "arma gold" + }, + { + "appid": 65790, + "normalized_name": "arma cold war assault" + }, + { + "appid": 65800, + "normalized_name": "dungeon defenders" + }, + { + "appid": 65930, + "normalized_name": "the bureau xcom declassified" + }, + { + "appid": 65980, + "normalized_name": "sid meier's civilization beyond earth" + }, + { + "appid": 67000, + "normalized_name": "the polynomial space of the music" + }, + { + "appid": 67370, + "normalized_name": "the darkness ii" + }, + { + "appid": 70000, + "normalized_name": "dino d day" + }, + { + "appid": 70100, + "normalized_name": "hacker evolution" + }, + { + "appid": 70110, + "normalized_name": "hacker evolution untold" + }, + { + "appid": 70120, + "normalized_name": "hacker evolution duality" + }, + { + "appid": 70300, + "normalized_name": "vvvvvv" + }, + { + "appid": 70400, + "normalized_name": "recettear an item shop's tale" + }, + { + "appid": 70420, + "normalized_name": "chantelise a tale of two sisters" + }, + { + "appid": 70500, + "normalized_name": "diamond dan" + }, + { + "appid": 70600, + "normalized_name": "worms mayhem" + }, + { + "appid": 70620, + "normalized_name": "worms crazy golf" + }, + { + "appid": 70640, + "normalized_name": "worms" + }, + { + "appid": 70650, + "normalized_name": "worms blast" + }, + { + "appid": 70660, + "normalized_name": "worms pinball" + }, + { + "appid": 70900, + "normalized_name": "star ruler" + }, + { + "appid": 71000, + "normalized_name": "evochron mercenary" + }, + { + "appid": 71250, + "normalized_name": "sonic adventure dx" + }, + { + "appid": 71340, + "normalized_name": "sonic generations collection" + }, + { + "appid": 72000, + "normalized_name": "closure" + }, + { + "appid": 72400, + "normalized_name": "clones" + }, + { + "appid": 72900, + "normalized_name": "winter voices" + }, + { + "appid": 73010, + "normalized_name": "cities in motion" + }, + { + "appid": 73020, + "normalized_name": "majesty 2 collection" + }, + { + "appid": 73170, + "normalized_name": "darkest hour a hearts of iron game" + }, + { + "appid": 73190, + "normalized_name": "pride of nations" + }, + { + "appid": 73210, + "normalized_name": "sengoku" + }, + { + "appid": 78000, + "normalized_name": "bejeweled 3" + }, + { + "appid": 80000, + "normalized_name": "apox" + }, + { + "appid": 80200, + "normalized_name": "fate of the world" + }, + { + "appid": 80300, + "normalized_name": "puzzle bots" + }, + { + "appid": 80310, + "normalized_name": "gemini rue" + }, + { + "appid": 80330, + "normalized_name": "the blackwell legacy" + }, + { + "appid": 80340, + "normalized_name": "blackwell unbound" + }, + { + "appid": 80350, + "normalized_name": "blackwell convergence" + }, + { + "appid": 80360, + "normalized_name": "blackwell deception" + }, + { + "appid": 90200, + "normalized_name": "farming simulator 2011" + }, + { + "appid": 90400, + "normalized_name": "blue toad murder files the mysteries of little riddle" + }, + { + "appid": 91100, + "normalized_name": "skydrift" + }, + { + "appid": 91200, + "normalized_name": "anomaly warzone earth" + }, + { + "appid": 91330, + "normalized_name": "iron front digital war" + }, + { + "appid": 91600, + "normalized_name": "sanctum" + }, + { + "appid": 91700, + "normalized_name": "e.y.e divine cybermancy" + }, + { + "appid": 91800, + "normalized_name": "cloning clyde" + }, + { + "appid": 91810, + "normalized_name": "ancients of ooga" + }, + { + "appid": 91900, + "normalized_name": "post apocalyptic mayhem" + }, + { + "appid": 92000, + "normalized_name": "hydrophobia prophecy" + }, + { + "appid": 92100, + "normalized_name": "detour" + }, + { + "appid": 92300, + "normalized_name": "a.r.e.s. extinction agenda" + }, + { + "appid": 92400, + "normalized_name": "b.u.t.t.o.n. (brutally unfair tactics totally ok now)" + }, + { + "appid": 92600, + "normalized_name": "xotic" + }, + { + "appid": 92700, + "normalized_name": "shadow harvest phantom ops" + }, + { + "appid": 92800, + "normalized_name": "spacechem" + }, + { + "appid": 92900, + "normalized_name": "agricultural simulator 2011 extended" + }, + { + "appid": 93200, + "normalized_name": "revenge of the titans" + }, + { + "appid": 94000, + "normalized_name": "dinner date" + }, + { + "appid": 94200, + "normalized_name": "jamestown" + }, + { + "appid": 94300, + "normalized_name": "the dream machine chapter 1 & 2" + }, + { + "appid": 94400, + "normalized_name": "nidhogg" + }, + { + "appid": 94590, + "normalized_name": "puzzle agent 2" + }, + { + "appid": 94600, + "normalized_name": "hector episode 1" + }, + { + "appid": 94610, + "normalized_name": "hector episode 2" + }, + { + "appid": 94620, + "normalized_name": "hector badge of carnage full series" + }, + { + "appid": 95300, + "normalized_name": "capsized" + }, + { + "appid": 95400, + "normalized_name": "ibb & obb" + }, + { + "appid": 95700, + "normalized_name": "the cat and the coup" + }, + { + "appid": 95900, + "normalized_name": "air conflicts secret wars" + }, + { + "appid": 96000, + "normalized_name": "the tiny bang story" + }, + { + "appid": 96100, + "normalized_name": "defy gravity extended" + }, + { + "appid": 96200, + "normalized_name": "steel storm burning retribution" + }, + { + "appid": 96800, + "normalized_name": "nexuiz" + }, + { + "appid": 96900, + "normalized_name": "slam bolt scrappers" + }, + { + "appid": 97000, + "normalized_name": "solar 2" + }, + { + "appid": 97110, + "normalized_name": "kohan immortal sovereigns" + }, + { + "appid": 97120, + "normalized_name": "kohan ahriman's gift" + }, + { + "appid": 97130, + "normalized_name": "kohan ii kings of war" + }, + { + "appid": 98100, + "normalized_name": "trauma" + }, + { + "appid": 98200, + "normalized_name": "frozen synapse" + }, + { + "appid": 98300, + "normalized_name": "toy soldiers" + }, + { + "appid": 98400, + "normalized_name": "hard reset extended" + }, + { + "appid": 98500, + "normalized_name": "naval warfare" + }, + { + "appid": 98600, + "normalized_name": "demolition inc." + }, + { + "appid": 98800, + "normalized_name": "dungeons of dredmor" + }, + { + "appid": 98900, + "normalized_name": "alien hallway" + }, + { + "appid": 99100, + "normalized_name": "dungeons and dragons daggerdale" + }, + { + "appid": 99120, + "normalized_name": "yar's revenge" + }, + { + "appid": 99300, + "normalized_name": "renegade ops" + }, + { + "appid": 99400, + "normalized_name": "garshasp the monster slayer" + }, + { + "appid": 99410, + "normalized_name": "garshasp temple of the dragon" + }, + { + "appid": 99700, + "normalized_name": "nightsky" + }, + { + "appid": 99900, + "normalized_name": "spiral knights" + }, + { + "appid": 99910, + "normalized_name": "puzzle pirates" + }, + { + "appid": 102200, + "normalized_name": "runespell overture" + }, + { + "appid": 102400, + "normalized_name": "vertex dispenser" + }, + { + "appid": 102500, + "normalized_name": "kingdoms of amalur reckoning" + }, + { + "appid": 102600, + "normalized_name": "orcs must die!" + }, + { + "appid": 102810, + "normalized_name": "gatling gears" + }, + { + "appid": 102840, + "normalized_name": "shank 2" + }, + { + "appid": 102850, + "normalized_name": "warp" + }, + { + "appid": 104000, + "normalized_name": "ibomber defense" + }, + { + "appid": 104020, + "normalized_name": "storm in a teacup" + }, + { + "appid": 104100, + "normalized_name": "inside a star filled sky" + }, + { + "appid": 104200, + "normalized_name": "beep" + }, + { + "appid": 104600, + "normalized_name": "portal 2 the final hours" + }, + { + "appid": 104900, + "normalized_name": "orion prelude" + }, + { + "appid": 105000, + "normalized_name": "a new beginning final cut" + }, + { + "appid": 105100, + "normalized_name": "lume" + }, + { + "appid": 105300, + "normalized_name": "critical mass" + }, + { + "appid": 105420, + "normalized_name": "ms. splosion man" + }, + { + "appid": 105600, + "normalized_name": "terraria" + }, + { + "appid": 105700, + "normalized_name": "tobe's vertical adventure" + }, + { + "appid": 105800, + "normalized_name": "pixeljunk eden" + }, + { + "appid": 106000, + "normalized_name": "the cursed crusade" + }, + { + "appid": 107100, + "normalized_name": "bastion" + }, + { + "appid": 107200, + "normalized_name": "space pirates and zombies" + }, + { + "appid": 107300, + "normalized_name": "breath of death vii" + }, + { + "appid": 107310, + "normalized_name": "cthulhu saves the world" + }, + { + "appid": 107410, + "normalized_name": "arma 3" + }, + { + "appid": 107600, + "normalized_name": "waves" + }, + { + "appid": 108110, + "normalized_name": "starpoint gemini" + }, + { + "appid": 108500, + "normalized_name": "vessel" + }, + { + "appid": 108600, + "normalized_name": "project zomboid" + }, + { + "appid": 108700, + "normalized_name": "death rally" + }, + { + "appid": 108710, + "normalized_name": "alan wake" + }, + { + "appid": 108800, + "normalized_name": "crysis 2 maximum" + }, + { + "appid": 109200, + "normalized_name": "legend of fae" + }, + { + "appid": 109500, + "normalized_name": "fowl space" + }, + { + "appid": 109600, + "normalized_name": "neverwinter" + }, + { + "appid": 109700, + "normalized_name": "achron" + }, + { + "appid": 110400, + "normalized_name": "inmomentum" + }, + { + "appid": 110500, + "normalized_name": "data jammers fastforward" + }, + { + "appid": 110600, + "normalized_name": "astro tripper" + }, + { + "appid": 110610, + "normalized_name": "alien zombie megadeath" + }, + { + "appid": 110630, + "normalized_name": "mutant storm reloaded" + }, + { + "appid": 110800, + "normalized_name": "l.a. noire" + }, + { + "appid": 111000, + "normalized_name": "the clockwork man" + }, + { + "appid": 111010, + "normalized_name": "the clockwork man the hidden world" + }, + { + "appid": 111100, + "normalized_name": "snuggle truck" + }, + { + "appid": 111300, + "normalized_name": "smash cars" + }, + { + "appid": 111400, + "normalized_name": "bunch of heroes" + }, + { + "appid": 111600, + "normalized_name": "serious sam double d xxl" + }, + { + "appid": 111800, + "normalized_name": "blocks that matter" + }, + { + "appid": 112100, + "normalized_name": "avadon the black fortress" + }, + { + "appid": 113020, + "normalized_name": "monaco what's yours is mine" + }, + { + "appid": 113200, + "normalized_name": "the binding of isaac" + }, + { + "appid": 113400, + "normalized_name": "apb reloaded" + }, + { + "appid": 113420, + "normalized_name": "fallen earth classic" + }, + { + "appid": 115100, + "normalized_name": "costume quest" + }, + { + "appid": 115110, + "normalized_name": "stacking" + }, + { + "appid": 115120, + "normalized_name": "iron brigade" + }, + { + "appid": 115200, + "normalized_name": "cossacks ii napoleonic wars" + }, + { + "appid": 115210, + "normalized_name": "american conquest" + }, + { + "appid": 115220, + "normalized_name": "american conquest fight back" + }, + { + "appid": 115300, + "normalized_name": "call of duty modern warfare 3 (2011)" + }, + { + "appid": 115320, + "normalized_name": "prototype 2" + }, + { + "appid": 115800, + "normalized_name": "owlboy" + }, + { + "appid": 116100, + "normalized_name": "super toy cars" + }, + { + "appid": 116120, + "normalized_name": "lightfish" + }, + { + "appid": 200010, + "normalized_name": "quantum conundrum" + }, + { + "appid": 200020, + "normalized_name": "global ops commando libya" + }, + { + "appid": 200080, + "normalized_name": "nancy drew shadow at the water's edge" + }, + { + "appid": 200130, + "normalized_name": "puzzler world 2" + }, + { + "appid": 200150, + "normalized_name": "battle chess game of kings" + }, + { + "appid": 200170, + "normalized_name": "worms revolution" + }, + { + "appid": 200190, + "normalized_name": "sideway new york" + }, + { + "appid": 200210, + "normalized_name": "realm of the mad god exalt" + }, + { + "appid": 200230, + "normalized_name": "off road drive" + }, + { + "appid": 200260, + "normalized_name": "batman arkham city game of the year" + }, + { + "appid": 200370, + "normalized_name": "a game of dwarves" + }, + { + "appid": 200390, + "normalized_name": "oil rush" + }, + { + "appid": 200410, + "normalized_name": "sol exodus" + }, + { + "appid": 200490, + "normalized_name": "memento mori" + }, + { + "appid": 200510, + "normalized_name": "xcom enemy unknown" + }, + { + "appid": 200550, + "normalized_name": "dungeons the dark lord" + }, + { + "appid": 200670, + "normalized_name": "disciples iii resurrection" + }, + { + "appid": 200710, + "normalized_name": "torchlight ii" + }, + { + "appid": 200900, + "normalized_name": "cave story+" + }, + { + "appid": 200910, + "normalized_name": "before the echo" + }, + { + "appid": 200960, + "normalized_name": "geneforge 1" + }, + { + "appid": 200980, + "normalized_name": "geneforge 2" + }, + { + "appid": 200990, + "normalized_name": "geneforge 3" + }, + { + "appid": 201000, + "normalized_name": "geneforge 4 rebellion" + }, + { + "appid": 201010, + "normalized_name": "geneforge 5 overthrow" + }, + { + "appid": 201070, + "normalized_name": "revelations 2012" + }, + { + "appid": 201210, + "normalized_name": "pox nora" + }, + { + "appid": 201230, + "normalized_name": "everquest ii" + }, + { + "appid": 201270, + "normalized_name": "total war shogun 2" + }, + { + "appid": 201271, + "normalized_name": "a total war saga fall of the samurai" + }, + { + "appid": 201290, + "normalized_name": "sins of a solar empire trinity" + }, + { + "appid": 201330, + "normalized_name": "max payne" + }, + { + "appid": 201420, + "normalized_name": "toki tori 2+" + }, + { + "appid": 201480, + "normalized_name": "serious sam the random encounter" + }, + { + "appid": 201490, + "normalized_name": "airline tycoon 2" + }, + { + "appid": 201510, + "normalized_name": "flatout 3 chaos & destruction" + }, + { + "appid": 201570, + "normalized_name": "really big sky" + }, + { + "appid": 201790, + "normalized_name": "orcs must die! 2" + }, + { + "appid": 201810, + "normalized_name": "wolfenstein the new order" + }, + { + "appid": 201870, + "normalized_name": "assassin's creed revelations" + }, + { + "appid": 202130, + "normalized_name": "impire" + }, + { + "appid": 202170, + "normalized_name": "sleeping dogs" + }, + { + "appid": 202200, + "normalized_name": "galactic civilizations ii" + }, + { + "appid": 202310, + "normalized_name": "ridge racer unbounded" + }, + { + "appid": 202370, + "normalized_name": "scary girl" + }, + { + "appid": 202410, + "normalized_name": "scoregasm" + }, + { + "appid": 202530, + "normalized_name": "sonic the hedgehog 4 episode i" + }, + { + "appid": 202570, + "normalized_name": "max payne" + }, + { + "appid": 202670, + "normalized_name": "nancy drew alibi in ashes" + }, + { + "appid": 202690, + "normalized_name": "hegemony gold wars of ancient greece" + }, + { + "appid": 202710, + "normalized_name": "demigod" + }, + { + "appid": 202730, + "normalized_name": "dynamite jack" + }, + { + "appid": 202750, + "normalized_name": "alan wake's american nightmare" + }, + { + "appid": 202860, + "normalized_name": "real warfare 2 northern crusades" + }, + { + "appid": 202970, + "normalized_name": "call of duty black ops ii" + }, + { + "appid": 203140, + "normalized_name": "hitman absolution" + }, + { + "appid": 203160, + "normalized_name": "tomb raider" + }, + { + "appid": 203210, + "normalized_name": "titan attacks!" + }, + { + "appid": 203290, + "normalized_name": "america's army proving grounds" + }, + { + "appid": 203350, + "normalized_name": "king's bounty warriors of the north" + }, + { + "appid": 203510, + "normalized_name": "fortune summoners" + }, + { + "appid": 203560, + "normalized_name": "containment the zombie puzzler" + }, + { + "appid": 203630, + "normalized_name": "warlock master of the arcane" + }, + { + "appid": 203650, + "normalized_name": "sonic the hedgehog 4 episode ii" + }, + { + "appid": 203750, + "normalized_name": "binary domain" + }, + { + "appid": 203770, + "normalized_name": "crusader kings ii" + }, + { + "appid": 203830, + "normalized_name": "the dark eye chains of satinav" + }, + { + "appid": 203990, + "normalized_name": "satazius" + }, + { + "appid": 204030, + "normalized_name": "fable the lost chapters" + }, + { + "appid": 204060, + "normalized_name": "superbrothers sword & sworcery ep" + }, + { + "appid": 204100, + "normalized_name": "max payne 3" + }, + { + "appid": 204120, + "normalized_name": "lego harry potter years 5 7" + }, + { + "appid": 204180, + "normalized_name": "waveform" + }, + { + "appid": 204220, + "normalized_name": "snapshot" + }, + { + "appid": 204240, + "normalized_name": "the bridge" + }, + { + "appid": 204300, + "normalized_name": "awesomenauts the 2d moba" + }, + { + "appid": 204340, + "normalized_name": "serious sam 2" + }, + { + "appid": 204360, + "normalized_name": "castle crashers" + }, + { + "appid": 204390, + "normalized_name": "pineapple smash crew" + }, + { + "appid": 204440, + "normalized_name": "pickers" + }, + { + "appid": 204450, + "normalized_name": "call of juarez gunslinger" + }, + { + "appid": 204530, + "normalized_name": "infested planet" + }, + { + "appid": 204560, + "normalized_name": "confrontation" + }, + { + "appid": 204580, + "normalized_name": "rotastic" + }, + { + "appid": 204630, + "normalized_name": "retro city rampage dx" + }, + { + "appid": 204860, + "normalized_name": "men of war condemned heroes" + }, + { + "appid": 204880, + "normalized_name": "sins of a solar empire rebellion" + }, + { + "appid": 204940, + "normalized_name": "crusader kings" + }, + { + "appid": 205020, + "normalized_name": "lumino city" + }, + { + "appid": 205060, + "normalized_name": "bit.trip core" + }, + { + "appid": 205070, + "normalized_name": "bit.trip void" + }, + { + "appid": 205080, + "normalized_name": "bit.trip fate" + }, + { + "appid": 205100, + "normalized_name": "dishonored" + }, + { + "appid": 205230, + "normalized_name": "hell yeah! wrath of the dead rabbit" + }, + { + "appid": 205530, + "normalized_name": "gratuitous tank battles" + }, + { + "appid": 205550, + "normalized_name": "foreign legion multi massacre" + }, + { + "appid": 205610, + "normalized_name": "port royale 3" + }, + { + "appid": 205650, + "normalized_name": "the testament of sherlock holmes" + }, + { + "appid": 205690, + "normalized_name": "1000 amps" + }, + { + "appid": 205710, + "normalized_name": "everquest" + }, + { + "appid": 205730, + "normalized_name": "insanely twisted shadow planet" + }, + { + "appid": 205810, + "normalized_name": "jagged alliance crossfire" + }, + { + "appid": 205830, + "normalized_name": "luxor evolved" + }, + { + "appid": 205840, + "normalized_name": "yesterday" + }, + { + "appid": 205870, + "normalized_name": "auditorium" + }, + { + "appid": 205910, + "normalized_name": "tiny and big grandpa's leftovers" + }, + { + "appid": 205990, + "normalized_name": "warlock 2 the exiled" + }, + { + "appid": 206020, + "normalized_name": "avernum 4" + }, + { + "appid": 206040, + "normalized_name": "avernum 5" + }, + { + "appid": 206060, + "normalized_name": "avernum 6" + }, + { + "appid": 206190, + "normalized_name": "gunpoint" + }, + { + "appid": 206230, + "normalized_name": "clan of champions" + }, + { + "appid": 206250, + "normalized_name": "cladun x2" + }, + { + "appid": 206370, + "normalized_name": "tales from space mutant blobs attack" + }, + { + "appid": 206410, + "normalized_name": "crazy machines elements" + }, + { + "appid": 206420, + "normalized_name": "saints row iv re elected" + }, + { + "appid": 206440, + "normalized_name": "to the moon" + }, + { + "appid": 206480, + "normalized_name": "dungeons & dragons online" + }, + { + "appid": 206500, + "normalized_name": "airmech" + }, + { + "appid": 206610, + "normalized_name": "3switched" + }, + { + "appid": 206690, + "normalized_name": "ibomber defense pacific" + }, + { + "appid": 206760, + "normalized_name": "painkiller recurring evil" + }, + { + "appid": 207000, + "normalized_name": "alien spidy" + }, + { + "appid": 207020, + "normalized_name": "bang bang racing" + }, + { + "appid": 207040, + "normalized_name": "sine mora" + }, + { + "appid": 207080, + "normalized_name": "indie game the movie" + }, + { + "appid": 207140, + "normalized_name": "speedrunners" + }, + { + "appid": 207170, + "normalized_name": "legend of grimrock" + }, + { + "appid": 207190, + "normalized_name": "fireburst" + }, + { + "appid": 207230, + "normalized_name": "archeblade" + }, + { + "appid": 207250, + "normalized_name": "cubemen" + }, + { + "appid": 207320, + "normalized_name": "ys the oath in felghana" + }, + { + "appid": 207350, + "normalized_name": "ys origin" + }, + { + "appid": 207420, + "normalized_name": "wizorb" + }, + { + "appid": 207430, + "normalized_name": "hack slash loot" + }, + { + "appid": 207490, + "normalized_name": "rayman origins" + }, + { + "appid": 207530, + "normalized_name": "noitu love 2 devolution" + }, + { + "appid": 207570, + "normalized_name": "english country tune" + }, + { + "appid": 207610, + "normalized_name": "the walking dead" + }, + { + "appid": 207650, + "normalized_name": "a virus named tom" + }, + { + "appid": 207670, + "normalized_name": "avseq" + }, + { + "appid": 207690, + "normalized_name": "botanicula" + }, + { + "appid": 207710, + "normalized_name": "bumbledore" + }, + { + "appid": 207730, + "normalized_name": "arena wars 2" + }, + { + "appid": 207750, + "normalized_name": "symphony" + }, + { + "appid": 207790, + "normalized_name": "jane's advanced strike fighters" + }, + { + "appid": 207930, + "normalized_name": "sacred citadel" + }, + { + "appid": 208110, + "normalized_name": "myst v end of ages" + }, + { + "appid": 208140, + "normalized_name": "endless space" + }, + { + "appid": 208200, + "normalized_name": "doom 3" + }, + { + "appid": 208400, + "normalized_name": "avernum escape from the pit" + }, + { + "appid": 208460, + "normalized_name": "tryst" + }, + { + "appid": 208520, + "normalized_name": "omerta city of gangsters" + }, + { + "appid": 208580, + "normalized_name": "star wars knights of the old republic ii the sith lords" + }, + { + "appid": 208600, + "normalized_name": "lunar flight" + }, + { + "appid": 208620, + "normalized_name": "midnight mysteries salem witch trials" + }, + { + "appid": 208630, + "normalized_name": "midnight mysteries 3 devil on the mississippi" + }, + { + "appid": 208640, + "normalized_name": "midnight mysteries 4 haunted houdini" + }, + { + "appid": 208650, + "normalized_name": "batman arkham knight" + }, + { + "appid": 208670, + "normalized_name": "blades of time" + }, + { + "appid": 208710, + "normalized_name": "colour bind" + }, + { + "appid": 208730, + "normalized_name": "game of thrones" + }, + { + "appid": 208750, + "normalized_name": "apotheon" + }, + { + "appid": 209000, + "normalized_name": "batman arkham origins" + }, + { + "appid": 209060, + "normalized_name": "drunken robot pornography" + }, + { + "appid": 209080, + "normalized_name": "guns of icarus online" + }, + { + "appid": 209120, + "normalized_name": "street fighter x tekken" + }, + { + "appid": 209160, + "normalized_name": "call of duty ghosts" + }, + { + "appid": 209190, + "normalized_name": "stealth bastard deluxe" + }, + { + "appid": 209230, + "normalized_name": "sherlock holmes and the hound of the baskervilles" + }, + { + "appid": 209330, + "normalized_name": "a valley without wind" + }, + { + "appid": 209360, + "normalized_name": "all zombies must die! scorepocalypse" + }, + { + "appid": 209370, + "normalized_name": "analogue a hate story" + }, + { + "appid": 209540, + "normalized_name": "strike suit zero" + }, + { + "appid": 209610, + "normalized_name": "roller coaster rampage" + }, + { + "appid": 209630, + "normalized_name": "magrunner dark pulse" + }, + { + "appid": 209650, + "normalized_name": "call of duty advanced warfare gold" + }, + { + "appid": 209670, + "normalized_name": "cortex command" + }, + { + "appid": 209690, + "normalized_name": "fieldrunners" + }, + { + "appid": 209730, + "normalized_name": "r.a.w. realms of ancient war" + }, + { + "appid": 209750, + "normalized_name": "cannon fodder 3" + }, + { + "appid": 209790, + "normalized_name": "splice" + }, + { + "appid": 209830, + "normalized_name": "lone survivor the director's cut" + }, + { + "appid": 209850, + "normalized_name": "highborn" + }, + { + "appid": 209950, + "normalized_name": "triple town" + }, + { + "appid": 210170, + "normalized_name": "spirits" + }, + { + "appid": 210230, + "normalized_name": "nancy drew tomb of the lost queen" + }, + { + "appid": 210770, + "normalized_name": "sanctum 2" + }, + { + "appid": 210950, + "normalized_name": "rune classic" + }, + { + "appid": 210970, + "normalized_name": "the witness" + }, + { + "appid": 211010, + "normalized_name": "alien shooter 2 conscription" + }, + { + "appid": 211050, + "normalized_name": "battle vs chess" + }, + { + "appid": 211070, + "normalized_name": "check vs mate" + }, + { + "appid": 211160, + "normalized_name": "viking battle for asgard" + }, + { + "appid": 211180, + "normalized_name": "unmechanical" + }, + { + "appid": 211260, + "normalized_name": "they bleed pixels" + }, + { + "appid": 211280, + "normalized_name": "primal fears" + }, + { + "appid": 211340, + "normalized_name": "magical diary horse hall" + }, + { + "appid": 211360, + "normalized_name": "offspring fling!" + }, + { + "appid": 211400, + "normalized_name": "deadlight" + }, + { + "appid": 211440, + "normalized_name": "adventures of shuggy" + }, + { + "appid": 211500, + "normalized_name": "raceroom racing experience" + }, + { + "appid": 211580, + "normalized_name": "wanderlust rebirth" + }, + { + "appid": 211600, + "normalized_name": "thief gold" + }, + { + "appid": 211740, + "normalized_name": "thief ii the metal age" + }, + { + "appid": 211780, + "normalized_name": "conflict desert storm" + }, + { + "appid": 211800, + "normalized_name": "dead hungry diner" + }, + { + "appid": 211820, + "normalized_name": "starbound" + }, + { + "appid": 211900, + "normalized_name": "conquest of elysium 3" + }, + { + "appid": 211970, + "normalized_name": "test drive ferrari racing legends" + }, + { + "appid": 212010, + "normalized_name": "galaxy on fire 2 full hd" + }, + { + "appid": 212030, + "normalized_name": "kung fu strike the warrior's rise" + }, + { + "appid": 212050, + "normalized_name": "resonance" + }, + { + "appid": 212070, + "normalized_name": "star conflict" + }, + { + "appid": 212110, + "normalized_name": "sugar cube bittersweet factory" + }, + { + "appid": 212160, + "normalized_name": "vindictus" + }, + { + "appid": 212200, + "normalized_name": "mabinogi" + }, + { + "appid": 212390, + "normalized_name": "continent of the ninth seal" + }, + { + "appid": 212410, + "normalized_name": "inversion" + }, + { + "appid": 212480, + "normalized_name": "sonic & all stars racing transformed collection" + }, + { + "appid": 212500, + "normalized_name": "the lord of the rings online" + }, + { + "appid": 212630, + "normalized_name": "tom clancy's ghost recon future soldier" + }, + { + "appid": 212680, + "normalized_name": "ftl faster than light" + }, + { + "appid": 212700, + "normalized_name": "party of sin" + }, + { + "appid": 212780, + "normalized_name": "new star soccer 5" + }, + { + "appid": 212800, + "normalized_name": "super crate box" + }, + { + "appid": 213030, + "normalized_name": "penny arcade's on the rain slick precipice of darkness 3" + }, + { + "appid": 213330, + "normalized_name": "lego batman 2 dc super heroes" + }, + { + "appid": 213350, + "normalized_name": "mdk2 hd" + }, + { + "appid": 213390, + "normalized_name": "atooms to moolecules demo" + }, + { + "appid": 213610, + "normalized_name": "sonic adventure 2" + }, + { + "appid": 213650, + "normalized_name": "dwarfs f2p" + }, + { + "appid": 213670, + "normalized_name": "south park the stick of truth" + }, + { + "appid": 214100, + "normalized_name": "rigonauts" + }, + { + "appid": 214150, + "normalized_name": "galactic civilizations i" + }, + { + "appid": 214170, + "normalized_name": "divine divinity" + }, + { + "appid": 214250, + "normalized_name": "i am alive" + }, + { + "appid": 214340, + "normalized_name": "deponia" + }, + { + "appid": 214360, + "normalized_name": "tower wars" + }, + { + "appid": 214420, + "normalized_name": "gear up" + }, + { + "appid": 214490, + "normalized_name": "alien isolation" + }, + { + "appid": 214510, + "normalized_name": "lego the lord of the rings" + }, + { + "appid": 214550, + "normalized_name": "eets munchies" + }, + { + "appid": 214560, + "normalized_name": "mark of the ninja" + }, + { + "appid": 214570, + "normalized_name": "ether vapor remaster" + }, + { + "appid": 214590, + "normalized_name": "fairy bloom freesia" + }, + { + "appid": 214700, + "normalized_name": "thirty flights of loving" + }, + { + "appid": 214730, + "normalized_name": "space rangers hd a war apart" + }, + { + "appid": 214770, + "normalized_name": "guacamelee! gold" + }, + { + "appid": 214790, + "normalized_name": "the basement collection" + }, + { + "appid": 214830, + "normalized_name": "half minute hero super mega neo climax boy" + }, + { + "appid": 214870, + "normalized_name": "painkiller hell & damnation" + }, + { + "appid": 214910, + "normalized_name": "air conflicts pacific carriers" + }, + { + "appid": 214950, + "normalized_name": "total war rome ii emperor" + }, + { + "appid": 214970, + "normalized_name": "intrusion 2" + }, + { + "appid": 215080, + "normalized_name": "wakfu" + }, + { + "appid": 215100, + "normalized_name": "ragnarok online" + }, + { + "appid": 215160, + "normalized_name": "the book of unwritten tales" + }, + { + "appid": 215280, + "normalized_name": "secret world legends" + }, + { + "appid": 215390, + "normalized_name": "damage inc. pacific squadron wwii" + }, + { + "appid": 215450, + "normalized_name": "transcripted" + }, + { + "appid": 215470, + "normalized_name": "primal carnage" + }, + { + "appid": 215510, + "normalized_name": "rocketbirds hardboiled chicken" + }, + { + "appid": 215530, + "normalized_name": "the incredible adventures of van helsing" + }, + { + "appid": 215550, + "normalized_name": "zombie playground" + }, + { + "appid": 215630, + "normalized_name": "demonicon" + }, + { + "appid": 215670, + "normalized_name": "home" + }, + { + "appid": 215690, + "normalized_name": "zeno clash 2" + }, + { + "appid": 215710, + "normalized_name": "fieldrunners 2" + }, + { + "appid": 215770, + "normalized_name": "shad'o" + }, + { + "appid": 215790, + "normalized_name": "dream pinball 3d" + }, + { + "appid": 215830, + "normalized_name": "closers" + }, + { + "appid": 215870, + "normalized_name": "dungeon party" + }, + { + "appid": 215930, + "normalized_name": "jagged alliance 2 wildfire" + }, + { + "appid": 216090, + "normalized_name": "go home dinosaurs!" + }, + { + "appid": 216130, + "normalized_name": "gemini wars" + }, + { + "appid": 216150, + "normalized_name": "maplestory" + }, + { + "appid": 216210, + "normalized_name": "secret files 3" + }, + { + "appid": 216260, + "normalized_name": "don bradman cricket 14" + }, + { + "appid": 216290, + "normalized_name": "gateways" + }, + { + "appid": 216330, + "normalized_name": "sleeping dogs ghost pig" + }, + { + "appid": 216670, + "normalized_name": "great big war game" + }, + { + "appid": 216890, + "normalized_name": "blood bowl chaos" + }, + { + "appid": 216910, + "normalized_name": "of orcs and men" + }, + { + "appid": 216930, + "normalized_name": "luxor amun rising hd" + }, + { + "appid": 217100, + "normalized_name": "dementium ii hd" + }, + { + "appid": 217120, + "normalized_name": "waves 2 notorious" + }, + { + "appid": 217140, + "normalized_name": "rise of the triad" + }, + { + "appid": 217200, + "normalized_name": "worms armageddon" + }, + { + "appid": 217270, + "normalized_name": "karateka" + }, + { + "appid": 217290, + "normalized_name": "din's curse" + }, + { + "appid": 217690, + "normalized_name": "anna extended" + }, + { + "appid": 217750, + "normalized_name": "age of conan unchained" + }, + { + "appid": 217790, + "normalized_name": "dogfight 1942" + }, + { + "appid": 217920, + "normalized_name": "alien rage unlimited" + }, + { + "appid": 217980, + "normalized_name": "dishonored" + }, + { + "appid": 218020, + "normalized_name": "nethergate resurrection" + }, + { + "appid": 218040, + "normalized_name": "democracy 2" + }, + { + "appid": 218060, + "normalized_name": "bit.trip presents... runner2 future legend of rhythm alien" + }, + { + "appid": 218090, + "normalized_name": "unity of command stalingrad campaign" + }, + { + "appid": 218230, + "normalized_name": "planetside 2" + }, + { + "appid": 218410, + "normalized_name": "defender's quest valley of the forgotten (dx edition)" + }, + { + "appid": 218510, + "normalized_name": "planets under attack" + }, + { + "appid": 218620, + "normalized_name": "payday 2" + }, + { + "appid": 218640, + "normalized_name": "lucius" + }, + { + "appid": 218660, + "normalized_name": "ibomber attack" + }, + { + "appid": 218680, + "normalized_name": "scribblenauts unlimited" + }, + { + "appid": 218700, + "normalized_name": "angelica weaver catch me when you can" + }, + { + "appid": 218740, + "normalized_name": "pid" + }, + { + "appid": 218820, + "normalized_name": "mercenary kings reloaded" + }, + { + "appid": 219070, + "normalized_name": "miner wars arena" + }, + { + "appid": 219150, + "normalized_name": "hotline miami" + }, + { + "appid": 219190, + "normalized_name": "ultratron" + }, + { + "appid": 219200, + "normalized_name": "droid assault" + }, + { + "appid": 219640, + "normalized_name": "chivalry medieval warfare" + }, + { + "appid": 219680, + "normalized_name": "proteus" + }, + { + "appid": 219700, + "normalized_name": "dogs of war online" + }, + { + "appid": 219740, + "normalized_name": "don't starve" + }, + { + "appid": 219760, + "normalized_name": "beyond divinity" + }, + { + "appid": 219780, + "normalized_name": "divinity ii developer's cut" + }, + { + "appid": 219830, + "normalized_name": "king arthur's gold" + }, + { + "appid": 219890, + "normalized_name": "antichamber" + }, + { + "appid": 219910, + "normalized_name": "edna & harvey harvey's new eyes" + }, + { + "appid": 219990, + "normalized_name": "grim dawn" + }, + { + "appid": 220090, + "normalized_name": "the journey down chapter one" + }, + { + "appid": 220160, + "normalized_name": "trials evolution gold" + }, + { + "appid": 220200, + "normalized_name": "kerbal space program" + }, + { + "appid": 220240, + "normalized_name": "far cry 3" + }, + { + "appid": 220260, + "normalized_name": "farming simulator 2013 titanium" + }, + { + "appid": 220420, + "normalized_name": "nancy drew the deadly device" + }, + { + "appid": 220440, + "normalized_name": "dmc devil may cry" + }, + { + "appid": 220460, + "normalized_name": "cargo commander" + }, + { + "appid": 220660, + "normalized_name": "stardrive" + }, + { + "appid": 220740, + "normalized_name": "chaos on deponia" + }, + { + "appid": 220780, + "normalized_name": "thomas was alone" + }, + { + "appid": 220820, + "normalized_name": "zombie driver hd" + }, + { + "appid": 220860, + "normalized_name": "mcpixel" + }, + { + "appid": 220900, + "normalized_name": "jack lumber" + }, + { + "appid": 221020, + "normalized_name": "towns" + }, + { + "appid": 221040, + "normalized_name": "resident evil 6" + }, + { + "appid": 221100, + "normalized_name": "dayz" + }, + { + "appid": 221180, + "normalized_name": "eufloria hd" + }, + { + "appid": 221260, + "normalized_name": "little inferno" + }, + { + "appid": 221380, + "normalized_name": "age of empires ii (retired)" + }, + { + "appid": 221540, + "normalized_name": "dg2 defense grid 2" + }, + { + "appid": 221640, + "normalized_name": "super hexagon" + }, + { + "appid": 221680, + "normalized_name": "rocksmith 2014 learn & play" + }, + { + "appid": 221810, + "normalized_name": "the cave" + }, + { + "appid": 221830, + "normalized_name": "the book of unwritten tales the critter chronicles" + }, + { + "appid": 221910, + "normalized_name": "the stanley parable" + }, + { + "appid": 222140, + "normalized_name": "puddle" + }, + { + "appid": 222160, + "normalized_name": "hamlet or the last game without mmorpg features shaders and product placement" + }, + { + "appid": 222180, + "normalized_name": "mushroom men truffle trouble" + }, + { + "appid": 222420, + "normalized_name": "the king of fighters '98 match final" + }, + { + "appid": 222440, + "normalized_name": "the king of fighters 2002 unlimited match" + }, + { + "appid": 222480, + "normalized_name": "resident evil revelations" + }, + { + "appid": 222500, + "normalized_name": "rail adventures vr tech demo" + }, + { + "appid": 222520, + "normalized_name": "champions of regnum" + }, + { + "appid": 222606, + "normalized_name": "train simulator pacific surfliner la san diego route" + }, + { + "appid": 222615, + "normalized_name": "train simulator west somerset railway route add on" + }, + { + "appid": 222618, + "normalized_name": "train simulator east coast main line london peterborough route add on" + }, + { + "appid": 222640, + "normalized_name": "aarklash legacy" + }, + { + "appid": 222660, + "normalized_name": "retro/grade" + }, + { + "appid": 222730, + "normalized_name": "reus" + }, + { + "appid": 222750, + "normalized_name": "wargame airland battle" + }, + { + "appid": 222880, + "normalized_name": "insurgency" + }, + { + "appid": 222980, + "normalized_name": "dead pixels" + }, + { + "appid": 223000, + "normalized_name": "7 wonders ancient alien makeover" + }, + { + "appid": 223100, + "normalized_name": "homefront the revolution" + }, + { + "appid": 223220, + "normalized_name": "giana sisters twisted dreams" + }, + { + "appid": 223330, + "normalized_name": "sea dogs to each his own" + }, + { + "appid": 223410, + "normalized_name": "perpetuum" + }, + { + "appid": 223430, + "normalized_name": "miner wars 2081" + }, + { + "appid": 223450, + "normalized_name": "dyad" + }, + { + "appid": 223470, + "normalized_name": "postal 2" + }, + { + "appid": 223490, + "normalized_name": "blockscape" + }, + { + "appid": 223510, + "normalized_name": "miasmata" + }, + { + "appid": 223630, + "normalized_name": "airbuccaneers" + }, + { + "appid": 223710, + "normalized_name": "cry of fear" + }, + { + "appid": 223730, + "normalized_name": "fly'n" + }, + { + "appid": 223750, + "normalized_name": "dcs world steam" + }, + { + "appid": 223810, + "normalized_name": "ys i & ii chronicles+" + }, + { + "appid": 223830, + "normalized_name": "xenonauts" + }, + { + "appid": 224000, + "normalized_name": "project eagle a 3d interactive mars base" + }, + { + "appid": 224040, + "normalized_name": "lococycle" + }, + { + "appid": 224260, + "normalized_name": "no more room in hell" + }, + { + "appid": 224300, + "normalized_name": "legacy of kain defiance" + }, + { + "appid": 224460, + "normalized_name": "contrast" + }, + { + "appid": 224480, + "normalized_name": "octodad dadliest catch" + }, + { + "appid": 224500, + "normalized_name": "gnomoria" + }, + { + "appid": 224760, + "normalized_name": "fez" + }, + { + "appid": 224820, + "normalized_name": "super house of dead ninjas" + }, + { + "appid": 224860, + "normalized_name": "arma tactics" + }, + { + "appid": 224880, + "normalized_name": "equate game" + }, + { + "appid": 224900, + "normalized_name": "iron sky invasion" + }, + { + "appid": 224940, + "normalized_name": "legacy of kain soul reaver 2 (2001)" + }, + { + "appid": 224960, + "normalized_name": "tomb raider i (1996)" + }, + { + "appid": 224980, + "normalized_name": "tomb raider iv the last revelation (1999)" + }, + { + "appid": 225000, + "normalized_name": "tomb raider v chronicles (2000)" + }, + { + "appid": 225020, + "normalized_name": "tomb raider vi the angel of darkness (2003)" + }, + { + "appid": 225080, + "normalized_name": "brothers a tale of two sons" + }, + { + "appid": 225160, + "normalized_name": "shadow warrior classic redux" + }, + { + "appid": 225260, + "normalized_name": "brutal legend" + }, + { + "appid": 225280, + "normalized_name": "full mojo rampage" + }, + { + "appid": 225300, + "normalized_name": "tomb raider ii (1997)" + }, + { + "appid": 225320, + "normalized_name": "tomb raider iii (1998)" + }, + { + "appid": 225360, + "normalized_name": "dark" + }, + { + "appid": 225420, + "normalized_name": "cities in motion 2" + }, + { + "appid": 225540, + "normalized_name": "just cause 3" + }, + { + "appid": 225600, + "normalized_name": "blade symphony" + }, + { + "appid": 225640, + "normalized_name": "sacred 2 gold" + }, + { + "appid": 225840, + "normalized_name": "sven co op" + }, + { + "appid": 226100, + "normalized_name": "pixeljunk nom nom galaxy" + }, + { + "appid": 226120, + "normalized_name": "weird worlds return to infinite space" + }, + { + "appid": 226280, + "normalized_name": "warp frontier" + }, + { + "appid": 226560, + "normalized_name": "escape dead island" + }, + { + "appid": 226620, + "normalized_name": "desktop dungeons" + }, + { + "appid": 226700, + "normalized_name": "infestation the new beginning" + }, + { + "appid": 226720, + "normalized_name": "lost planet 3" + }, + { + "appid": 226740, + "normalized_name": "monster loves you!" + }, + { + "appid": 226780, + "normalized_name": "mud fim motocross world championship" + }, + { + "appid": 226820, + "normalized_name": "nancy drew ghost of thornton hall" + }, + { + "appid": 226840, + "normalized_name": "age of wonders iii" + }, + { + "appid": 226860, + "normalized_name": "galactic civilizations iii" + }, + { + "appid": 226960, + "normalized_name": "ironclad tactics" + }, + { + "appid": 227000, + "normalized_name": "primordia" + }, + { + "appid": 227020, + "normalized_name": "rise of venice" + }, + { + "appid": 227060, + "normalized_name": "hegemony rome the rise of caesar" + }, + { + "appid": 227080, + "normalized_name": "papo & yo" + }, + { + "appid": 227100, + "normalized_name": "sniper elite nazi zombie army" + }, + { + "appid": 227160, + "normalized_name": "kinetic void" + }, + { + "appid": 227180, + "normalized_name": "kingdom wars" + }, + { + "appid": 227200, + "normalized_name": "waking mars" + }, + { + "appid": 227220, + "normalized_name": "sang froid tales of werewolves" + }, + { + "appid": 227300, + "normalized_name": "euro truck simulator 2" + }, + { + "appid": 227380, + "normalized_name": "dragon's lair" + }, + { + "appid": 227560, + "normalized_name": "scourge outbreak" + }, + { + "appid": 227580, + "normalized_name": "10 000 000" + }, + { + "appid": 227600, + "normalized_name": "castle of illusion" + }, + { + "appid": 227760, + "normalized_name": "march of the eagles" + }, + { + "appid": 227780, + "normalized_name": "serious sam classics revolution" + }, + { + "appid": 227860, + "normalized_name": "castle story" + }, + { + "appid": 228200, + "normalized_name": "company of heroes" + }, + { + "appid": 228260, + "normalized_name": "fallen enchantress legendary heroes" + }, + { + "appid": 228280, + "normalized_name": "baldur's gate enhanced" + }, + { + "appid": 228300, + "normalized_name": "remember me" + }, + { + "appid": 228320, + "normalized_name": "a valley without wind 2" + }, + { + "appid": 228360, + "normalized_name": "full throttle" + }, + { + "appid": 228380, + "normalized_name": "wreckfest" + }, + { + "appid": 228440, + "normalized_name": "cubemen 2" + }, + { + "appid": 228760, + "normalized_name": "trackmania² canyon" + }, + { + "appid": 228960, + "normalized_name": "skulls of the shogun" + }, + { + "appid": 229480, + "normalized_name": "dungeons & dragons chronicles of mystara" + }, + { + "appid": 229520, + "normalized_name": "dungeon hearts" + }, + { + "appid": 229560, + "normalized_name": "hacker evolution immersion" + }, + { + "appid": 229580, + "normalized_name": "dream" + }, + { + "appid": 229600, + "normalized_name": "bientôt l'été" + }, + { + "appid": 229810, + "normalized_name": "a fistful of gun" + }, + { + "appid": 229870, + "normalized_name": "shootmania storm" + }, + { + "appid": 229890, + "normalized_name": "joe danger" + }, + { + "appid": 229970, + "normalized_name": "armada 2526 gold" + }, + { + "appid": 230050, + "normalized_name": "dlc quest" + }, + { + "appid": 230070, + "normalized_name": "the age of decadence" + }, + { + "appid": 230150, + "normalized_name": "incredipede" + }, + { + "appid": 230190, + "normalized_name": "war for the overworld" + }, + { + "appid": 230210, + "normalized_name": "asylum" + }, + { + "appid": 230230, + "normalized_name": "divinity original sin (classic)" + }, + { + "appid": 230270, + "normalized_name": "n++ (nplusplus)" + }, + { + "appid": 230290, + "normalized_name": "universe sandbox" + }, + { + "appid": 230330, + "normalized_name": "final fantasy xi collection seekers" + }, + { + "appid": 230350, + "normalized_name": "final fantasy xi collection seekers" + }, + { + "appid": 230410, + "normalized_name": "warframe" + }, + { + "appid": 230650, + "normalized_name": "lords of football" + }, + { + "appid": 230700, + "normalized_name": "la mulana" + }, + { + "appid": 230760, + "normalized_name": "divo" + }, + { + "appid": 230820, + "normalized_name": "the night of the rabbit" + }, + { + "appid": 230840, + "normalized_name": "daylight" + }, + { + "appid": 230860, + "normalized_name": "cannon brawl" + }, + { + "appid": 230980, + "normalized_name": "starseed pilgrim" + }, + { + "appid": 231020, + "normalized_name": "storm" + }, + { + "appid": 231040, + "normalized_name": "beatbuddy tale of the guardians" + }, + { + "appid": 231060, + "normalized_name": "ragnarok online 2" + }, + { + "appid": 231140, + "normalized_name": "cities xl platinum" + }, + { + "appid": 231160, + "normalized_name": "the swapper" + }, + { + "appid": 231200, + "normalized_name": "kentucky route zero pc" + }, + { + "appid": 231310, + "normalized_name": "mirrormoon ep" + }, + { + "appid": 231330, + "normalized_name": "deadfall adventures" + }, + { + "appid": 231390, + "normalized_name": "biohazard 6 benchmark tool" + }, + { + "appid": 231430, + "normalized_name": "company of heroes 2" + }, + { + "appid": 231720, + "normalized_name": "bad hotel" + }, + { + "appid": 231740, + "normalized_name": "knights of pen and paper +1" + }, + { + "appid": 232010, + "normalized_name": "euro truck simulator" + }, + { + "appid": 232050, + "normalized_name": "eador. masters of the broken world" + }, + { + "appid": 232090, + "normalized_name": "killing floor 2" + }, + { + "appid": 232430, + "normalized_name": "gone home" + }, + { + "appid": 232750, + "normalized_name": "mars war logs" + }, + { + "appid": 232770, + "normalized_name": "postal" + }, + { + "appid": 232790, + "normalized_name": "broken age" + }, + { + "appid": 232890, + "normalized_name": "stronghold crusader 2" + }, + { + "appid": 232910, + "normalized_name": "trackmania² stadium" + }, + { + "appid": 232950, + "normalized_name": "bridge project" + }, + { + "appid": 232970, + "normalized_name": "thunder wolves" + }, + { + "appid": 233110, + "normalized_name": "defense technica" + }, + { + "appid": 233130, + "normalized_name": "shadow warrior" + }, + { + "appid": 233150, + "normalized_name": "luftrausers" + }, + { + "appid": 233190, + "normalized_name": "final exam" + }, + { + "appid": 233210, + "normalized_name": "air conflicts vietnam" + }, + { + "appid": 233230, + "normalized_name": "kairo" + }, + { + "appid": 233270, + "normalized_name": "far cry 3 blood dragon" + }, + { + "appid": 233290, + "normalized_name": "murdered soul suspect" + }, + { + "appid": 233310, + "normalized_name": "avadon 2 the corruption" + }, + { + "appid": 233350, + "normalized_name": "sudeki" + }, + { + "appid": 233370, + "normalized_name": "the raven legacy of a master thief" + }, + { + "appid": 233410, + "normalized_name": "tomb raider the final hours digital book" + }, + { + "appid": 233450, + "normalized_name": "prison architect" + }, + { + "appid": 233470, + "normalized_name": "evoland" + }, + { + "appid": 233510, + "normalized_name": "lunnye devitsy" + }, + { + "appid": 233530, + "normalized_name": "wake" + }, + { + "appid": 233550, + "normalized_name": "another world – 20th anniversary" + }, + { + "appid": 233610, + "normalized_name": "distance" + }, + { + "appid": 233700, + "normalized_name": "sword of the stars the pit" + }, + { + "appid": 233720, + "normalized_name": "surgeon simulator" + }, + { + "appid": 233740, + "normalized_name": "organ trail director's cut" + }, + { + "appid": 233800, + "normalized_name": "arma 3 tools" + }, + { + "appid": 233840, + "normalized_name": "worms clan wars" + }, + { + "appid": 233860, + "normalized_name": "kenshi" + }, + { + "appid": 233980, + "normalized_name": "unepic" + }, + { + "appid": 234080, + "normalized_name": "castlevania lords of shadow –" + }, + { + "appid": 234140, + "normalized_name": "mad max" + }, + { + "appid": 234160, + "normalized_name": "strike suit infinity" + }, + { + "appid": 234190, + "normalized_name": "receiver" + }, + { + "appid": 234270, + "normalized_name": "ken follett's the pillars of the earth" + }, + { + "appid": 234290, + "normalized_name": "zack zero" + }, + { + "appid": 234330, + "normalized_name": "marvel puzzle quest" + }, + { + "appid": 234350, + "normalized_name": "luxor 2 hd" + }, + { + "appid": 234370, + "normalized_name": "shattered haven" + }, + { + "appid": 234390, + "normalized_name": "teleglitch die more" + }, + { + "appid": 234490, + "normalized_name": "rush bros." + }, + { + "appid": 234510, + "normalized_name": "rising storm game of the year" + }, + { + "appid": 234650, + "normalized_name": "shadowrun returns" + }, + { + "appid": 234670, + "normalized_name": "naruto shippuden ninja storm 3 full burst hd" + }, + { + "appid": 234900, + "normalized_name": "anodyne" + }, + { + "appid": 234920, + "normalized_name": "dyscourse" + }, + { + "appid": 234940, + "normalized_name": "the 39 steps" + }, + { + "appid": 235070, + "normalized_name": "bad bots" + }, + { + "appid": 235210, + "normalized_name": "strider / ストライダー飛竜" + }, + { + "appid": 235250, + "normalized_name": "super sanctum td" + }, + { + "appid": 235320, + "normalized_name": "original war" + }, + { + "appid": 235360, + "normalized_name": "prime world defenders" + }, + { + "appid": 235380, + "normalized_name": "blitzkrieg 3" + }, + { + "appid": 235460, + "normalized_name": "metal gear rising revengeance" + }, + { + "appid": 235520, + "normalized_name": "the white laboratory" + }, + { + "appid": 235540, + "normalized_name": "warhammer end times vermintide" + }, + { + "appid": 235600, + "normalized_name": "tom clancy’s splinter cell blacklist" + }, + { + "appid": 235620, + "normalized_name": "small world" + }, + { + "appid": 235660, + "normalized_name": "eador genesis" + }, + { + "appid": 235700, + "normalized_name": "sniper elite zombie army" + }, + { + "appid": 235720, + "normalized_name": "cubetractor" + }, + { + "appid": 235800, + "normalized_name": "audiosurf 2" + }, + { + "appid": 235820, + "normalized_name": "element4l" + }, + { + "appid": 235980, + "normalized_name": "tetrobot and co." + }, + { + "appid": 236010, + "normalized_name": "bloxitivity" + }, + { + "appid": 236090, + "normalized_name": "dust an elysian tail" + }, + { + "appid": 236110, + "normalized_name": "dungeon defenders ii" + }, + { + "appid": 236130, + "normalized_name": "horizon" + }, + { + "appid": 236150, + "normalized_name": "starpoint gemini 2" + }, + { + "appid": 236290, + "normalized_name": "cranky cat" + }, + { + "appid": 236370, + "normalized_name": "interstellar marines" + }, + { + "appid": 236390, + "normalized_name": "war thunder" + }, + { + "appid": 236430, + "normalized_name": "dark souls ii" + }, + { + "appid": 236450, + "normalized_name": "pac man championship dx+" + }, + { + "appid": 236490, + "normalized_name": "hexodius" + }, + { + "appid": 236510, + "normalized_name": "takedown red sabre" + }, + { + "appid": 236690, + "normalized_name": "blood bowl 2" + }, + { + "appid": 236730, + "normalized_name": "anomaly 2" + }, + { + "appid": 236790, + "normalized_name": "agricultural simulator 2013 steam" + }, + { + "appid": 236850, + "normalized_name": "europa universalis iv" + }, + { + "appid": 236930, + "normalized_name": "blackwell epiphany" + }, + { + "appid": 236970, + "normalized_name": "jack keane 2 the fire within" + }, + { + "appid": 237310, + "normalized_name": "elsword" + }, + { + "appid": 237350, + "normalized_name": "frozen cortex" + }, + { + "appid": 237430, + "normalized_name": "expeditions conquistador" + }, + { + "appid": 237470, + "normalized_name": "battle worlds kronos" + }, + { + "appid": 237550, + "normalized_name": "realms of arkania blade of destiny" + }, + { + "appid": 237570, + "normalized_name": "penny arcade's on the rain slick precipice of darkness 4" + }, + { + "appid": 237630, + "normalized_name": "ducktales" + }, + { + "appid": 237740, + "normalized_name": "angry video game nerd adventures" + }, + { + "appid": 237760, + "normalized_name": "intake" + }, + { + "appid": 237850, + "normalized_name": "dreamfall chapters" + }, + { + "appid": 237870, + "normalized_name": "planet explorers" + }, + { + "appid": 237890, + "normalized_name": "agarest generations of war" + }, + { + "appid": 237930, + "normalized_name": "transistor" + }, + { + "appid": 237950, + "normalized_name": "ufo afterlight" + }, + { + "appid": 237970, + "normalized_name": "memento mori 2" + }, + { + "appid": 237990, + "normalized_name": "the banner saga" + }, + { + "appid": 238010, + "normalized_name": "deus ex human revolution director's cut" + }, + { + "appid": 238050, + "normalized_name": "the apogee throwback pack" + }, + { + "appid": 238070, + "normalized_name": "shadow warrior classic (1997)" + }, + { + "appid": 238090, + "normalized_name": "sniper elite 3" + }, + { + "appid": 238210, + "normalized_name": "system shock 2 (classic)" + }, + { + "appid": 238240, + "normalized_name": "edge of space" + }, + { + "appid": 238260, + "normalized_name": "pinball arcade" + }, + { + "appid": 238280, + "normalized_name": "legend of dungeon" + }, + { + "appid": 238320, + "normalized_name": "outlast" + }, + { + "appid": 238370, + "normalized_name": "magicka 2" + }, + { + "appid": 238430, + "normalized_name": "contagion" + }, + { + "appid": 238460, + "normalized_name": "battleblock theater" + }, + { + "appid": 238530, + "normalized_name": "super puzzle platformer deluxe" + }, + { + "appid": 238630, + "normalized_name": "fist puncher" + }, + { + "appid": 238750, + "normalized_name": "might & magic x legacy" + }, + { + "appid": 238870, + "normalized_name": "citadels" + }, + { + "appid": 238890, + "normalized_name": "skyward collapse" + }, + { + "appid": 238910, + "normalized_name": "bionic dues" + }, + { + "appid": 238930, + "normalized_name": "7 grand steps what ancients begat" + }, + { + "appid": 238960, + "normalized_name": "path of exile" + }, + { + "appid": 239030, + "normalized_name": "papers please" + }, + { + "appid": 239070, + "normalized_name": "hammerwatch" + }, + { + "appid": 239090, + "normalized_name": "samurai gunn" + }, + { + "appid": 239120, + "normalized_name": "final fantasy iii (3d remake)" + }, + { + "appid": 239140, + "normalized_name": "dying light" + }, + { + "appid": 239160, + "normalized_name": "thief" + }, + { + "appid": 239200, + "normalized_name": "amnesia a machine for pigs" + }, + { + "appid": 239250, + "normalized_name": "castlevania lords of shadow 2" + }, + { + "appid": 239350, + "normalized_name": "spelunky" + }, + { + "appid": 239430, + "normalized_name": "q.u.b.e director's cut" + }, + { + "appid": 239700, + "normalized_name": "hate plus" + }, + { + "appid": 239800, + "normalized_name": "bleed" + }, + { + "appid": 239820, + "normalized_name": "game dev tycoon" + }, + { + "appid": 239840, + "normalized_name": "dead state reanimated" + }, + { + "appid": 240320, + "normalized_name": "panzar" + }, + { + "appid": 240340, + "normalized_name": "space ace" + }, + { + "appid": 240360, + "normalized_name": "dragon's lair 2 time warp" + }, + { + "appid": 240440, + "normalized_name": "quadrilateral cowboy" + }, + { + "appid": 240600, + "normalized_name": "motogp13" + }, + { + "appid": 240620, + "normalized_name": "wanderlust adventures" + }, + { + "appid": 240660, + "normalized_name": "rain blood chronicles mirage" + }, + { + "appid": 240720, + "normalized_name": "getting over it with bennett foddy" + }, + { + "appid": 240760, + "normalized_name": "wasteland 2 director's cut" + }, + { + "appid": 240970, + "normalized_name": "half minute hero the second coming" + }, + { + "appid": 241000, + "normalized_name": "jon shafer's at the gates" + }, + { + "appid": 241240, + "normalized_name": "contraption maker" + }, + { + "appid": 241260, + "normalized_name": "sherlock holmes crimes and punishments" + }, + { + "appid": 241300, + "normalized_name": "card city nights 2" + }, + { + "appid": 241320, + "normalized_name": "ittle dew" + }, + { + "appid": 241410, + "normalized_name": "castlestorm" + }, + { + "appid": 241540, + "normalized_name": "state of decay" + }, + { + "appid": 241600, + "normalized_name": "rogue legacy" + }, + { + "appid": 241620, + "normalized_name": "inquisitor" + }, + { + "appid": 241720, + "normalized_name": "guncraft" + }, + { + "appid": 241760, + "normalized_name": "kill to collect" + }, + { + "appid": 241910, + "normalized_name": "goodbye deponia" + }, + { + "appid": 241930, + "normalized_name": "middle earth shadow of mordor" + }, + { + "appid": 242050, + "normalized_name": "assassin’s creed iv black flag" + }, + { + "appid": 242110, + "normalized_name": "joe danger 2 the movie" + }, + { + "appid": 242130, + "normalized_name": "vector thrust" + }, + { + "appid": 242530, + "normalized_name": "the chaos engine" + }, + { + "appid": 242550, + "normalized_name": "rayman legends" + }, + { + "appid": 242640, + "normalized_name": "styx master of shadows" + }, + { + "appid": 242680, + "normalized_name": "nuclear throne" + }, + { + "appid": 242700, + "normalized_name": "injustice gods among us" + }, + { + "appid": 242720, + "normalized_name": "gunz 2 the second duel" + }, + { + "appid": 242760, + "normalized_name": "the forest" + }, + { + "appid": 242780, + "normalized_name": "cognition an erica reed thriller" + }, + { + "appid": 242820, + "normalized_name": "140" + }, + { + "appid": 242840, + "normalized_name": "in verbis virtus" + }, + { + "appid": 242860, + "normalized_name": "verdun" + }, + { + "appid": 242880, + "normalized_name": "sir you are being hunted" + }, + { + "appid": 242920, + "normalized_name": "banished" + }, + { + "appid": 242940, + "normalized_name": "anachronox" + }, + { + "appid": 242960, + "normalized_name": "blood omen 2 legacy of kain" + }, + { + "appid": 242980, + "normalized_name": "daikatana" + }, + { + "appid": 243000, + "normalized_name": "omikron the nomad soul" + }, + { + "appid": 243020, + "normalized_name": "pandemonium" + }, + { + "appid": 243040, + "normalized_name": "startopia" + }, + { + "appid": 243060, + "normalized_name": "urban chaos" + }, + { + "appid": 243160, + "normalized_name": "mushroom 11" + }, + { + "appid": 243200, + "normalized_name": "the dark eye memoria" + }, + { + "appid": 243220, + "normalized_name": "fract osc" + }, + { + "appid": 243240, + "normalized_name": "faceless" + }, + { + "appid": 243280, + "normalized_name": "poöf" + }, + { + "appid": 243360, + "normalized_name": "trackmania² valley" + }, + { + "appid": 243450, + "normalized_name": "urban trial freestyle" + }, + { + "appid": 243470, + "normalized_name": "watch_dogs" + }, + { + "appid": 243780, + "normalized_name": "pixeljunk monsters" + }, + { + "appid": 243800, + "normalized_name": "gas guzzlers extreme" + }, + { + "appid": 243930, + "normalized_name": "bound by flame" + }, + { + "appid": 243950, + "normalized_name": "divinity dragon commander" + }, + { + "appid": 243970, + "normalized_name": "invisible inc." + }, + { + "appid": 244030, + "normalized_name": "take on mars" + }, + { + "appid": 244050, + "normalized_name": "rise of flight united" + }, + { + "appid": 244070, + "normalized_name": "sid meier’s ace patrol" + }, + { + "appid": 244090, + "normalized_name": "sid meier’s ace patrol pacific skies" + }, + { + "appid": 244160, + "normalized_name": "homeworld collection" + }, + { + "appid": 244210, + "normalized_name": "assetto corsa" + }, + { + "appid": 244410, + "normalized_name": "supreme ruler 1936" + }, + { + "appid": 244430, + "normalized_name": "realmyst masterpiece" + }, + { + "appid": 244450, + "normalized_name": "men of war assault squad 2" + }, + { + "appid": 244590, + "normalized_name": "epigenesis" + }, + { + "appid": 244690, + "normalized_name": "face noir" + }, + { + "appid": 244710, + "normalized_name": "shelter" + }, + { + "appid": 244730, + "normalized_name": "divekick" + }, + { + "appid": 244750, + "normalized_name": "aztez" + }, + { + "appid": 244770, + "normalized_name": "starmade" + }, + { + "appid": 244810, + "normalized_name": "foul play" + }, + { + "appid": 244850, + "normalized_name": "space engineers" + }, + { + "appid": 244870, + "normalized_name": "electronic super joy" + }, + { + "appid": 244890, + "normalized_name": "velocityultra" + }, + { + "appid": 244910, + "normalized_name": "homesick" + }, + { + "appid": 244950, + "normalized_name": "where is my heart?" + }, + { + "appid": 245010, + "normalized_name": "deathtrap dungeon" + }, + { + "appid": 245050, + "normalized_name": "spellforce 2 demons of the past" + }, + { + "appid": 245150, + "normalized_name": "the novelist" + }, + { + "appid": 245170, + "normalized_name": "skullgirls 2nd encore" + }, + { + "appid": 245280, + "normalized_name": "enslaved odyssey to the west premium" + }, + { + "appid": 245300, + "normalized_name": "disney epic mickey 2 the power of two" + }, + { + "appid": 245370, + "normalized_name": "etherium" + }, + { + "appid": 245390, + "normalized_name": "i have no mouth and i must scream" + }, + { + "appid": 245410, + "normalized_name": "wizardry 6 bane of the cosmic forge" + }, + { + "appid": 245430, + "normalized_name": "wizardry 7 crusaders of the dark savant" + }, + { + "appid": 245450, + "normalized_name": "wizardry 8" + }, + { + "appid": 245470, + "normalized_name": "democracy 3" + }, + { + "appid": 245490, + "normalized_name": "trials fusion" + }, + { + "appid": 245620, + "normalized_name": "tropico 5" + }, + { + "appid": 245730, + "normalized_name": "flashback" + }, + { + "appid": 246070, + "normalized_name": "hack 'n' slash" + }, + { + "appid": 246090, + "normalized_name": "spacebase df 9" + }, + { + "appid": 246110, + "normalized_name": "massive chalice" + }, + { + "appid": 246300, + "normalized_name": "paranormal" + }, + { + "appid": 246360, + "normalized_name": "perfection." + }, + { + "appid": 246420, + "normalized_name": "kingdom rush tower defense" + }, + { + "appid": 246580, + "normalized_name": "the typing of the dead overkill" + }, + { + "appid": 246620, + "normalized_name": "plague inc evolved" + }, + { + "appid": 246680, + "normalized_name": "secrets of rætikon" + }, + { + "appid": 246720, + "normalized_name": "wayward manor" + }, + { + "appid": 246740, + "normalized_name": "huntsman the orphanage (halloween edition)" + }, + { + "appid": 246760, + "normalized_name": "legends of eisenwald" + }, + { + "appid": 246800, + "normalized_name": "beatblasters iii" + }, + { + "appid": 246820, + "normalized_name": "jeklynn heights" + }, + { + "appid": 246840, + "normalized_name": "fate" + }, + { + "appid": 246880, + "normalized_name": "recruits" + }, + { + "appid": 246900, + "normalized_name": "viscera cleanup detail" + }, + { + "appid": 246920, + "normalized_name": "bombernauts" + }, + { + "appid": 246940, + "normalized_name": "lords of the black sun" + }, + { + "appid": 246960, + "normalized_name": "giana sisters twisted dreams rise of the owlverlord" + }, + { + "appid": 246980, + "normalized_name": "influx" + }, + { + "appid": 247020, + "normalized_name": "cook serve delicious!" + }, + { + "appid": 247080, + "normalized_name": "crypt of the necrodancer" + }, + { + "appid": 247140, + "normalized_name": "soundodger+" + }, + { + "appid": 247240, + "normalized_name": "volgarr the viking" + }, + { + "appid": 247310, + "normalized_name": "gravi" + }, + { + "appid": 247350, + "normalized_name": "artemis spaceship bridge simulator" + }, + { + "appid": 247370, + "normalized_name": "mutant mudds deluxe" + }, + { + "appid": 247430, + "normalized_name": "hitman contracts" + }, + { + "appid": 247660, + "normalized_name": "deadly premonition the director's cut" + }, + { + "appid": 247710, + "normalized_name": "battledroid" + }, + { + "appid": 247870, + "normalized_name": "redshirt" + }, + { + "appid": 247910, + "normalized_name": "sniper elite nazi zombie army 2" + }, + { + "appid": 247930, + "normalized_name": "sniper elite zombie army 2" + }, + { + "appid": 247950, + "normalized_name": "sacred 3" + }, + { + "appid": 248190, + "normalized_name": "knytt underground" + }, + { + "appid": 248290, + "normalized_name": "reach for the sun" + }, + { + "appid": 248310, + "normalized_name": "freedom planet" + }, + { + "appid": 248330, + "normalized_name": "dino run dx" + }, + { + "appid": 248350, + "normalized_name": "omegalodon" + }, + { + "appid": 248370, + "normalized_name": "bridge it +" + }, + { + "appid": 248390, + "normalized_name": "craft the world" + }, + { + "appid": 248450, + "normalized_name": "salvation prophecy" + }, + { + "appid": 248470, + "normalized_name": "doorways prelude" + }, + { + "appid": 248490, + "normalized_name": "1953 kgb unleashed" + }, + { + "appid": 248510, + "normalized_name": "dominions 3 the awakening" + }, + { + "appid": 248530, + "normalized_name": "depth hunter 2 deep dive" + }, + { + "appid": 248550, + "normalized_name": "megabyte punch" + }, + { + "appid": 248570, + "normalized_name": "toribash" + }, + { + "appid": 248610, + "normalized_name": "door kickers" + }, + { + "appid": 248650, + "normalized_name": "draw a stickman epic" + }, + { + "appid": 248710, + "normalized_name": "iesabel" + }, + { + "appid": 248730, + "normalized_name": "a walk in the dark" + }, + { + "appid": 248800, + "normalized_name": "dysfunctional systems learning to manage chaos" + }, + { + "appid": 248820, + "normalized_name": "risk of rain (2013)" + }, + { + "appid": 248860, + "normalized_name": "neo scavenger" + }, + { + "appid": 248970, + "normalized_name": "vector" + }, + { + "appid": 249050, + "normalized_name": "dungeon of the endless" + }, + { + "appid": 249130, + "normalized_name": "lego marvel super heroes" + }, + { + "appid": 249190, + "normalized_name": "ancient space" + }, + { + "appid": 249230, + "normalized_name": "risen 3 titan lords" + }, + { + "appid": 249330, + "normalized_name": "unholy heights" + }, + { + "appid": 249360, + "normalized_name": "zafehouse diaries" + }, + { + "appid": 249550, + "normalized_name": "nestalgia" + }, + { + "appid": 249570, + "normalized_name": "the castle doctrine" + }, + { + "appid": 249590, + "normalized_name": "teslagrad" + }, + { + "appid": 249610, + "normalized_name": "galactic arms race" + }, + { + "appid": 249630, + "normalized_name": "delver" + }, + { + "appid": 249650, + "normalized_name": "blackguards" + }, + { + "appid": 249680, + "normalized_name": "marlow briggs and the mask of death" + }, + { + "appid": 249870, + "normalized_name": "scribblenauts unmasked a dc comics adventure" + }, + { + "appid": 249930, + "normalized_name": "a train 8" + }, + { + "appid": 249950, + "normalized_name": "forge quest" + }, + { + "appid": 249990, + "normalized_name": "forced slightly better" + }, + { + "appid": 250030, + "normalized_name": "lilly looking through" + }, + { + "appid": 250050, + "normalized_name": "life goes on done to death" + }, + { + "appid": 250070, + "normalized_name": "torquel" + }, + { + "appid": 250110, + "normalized_name": "assault android cactus+" + }, + { + "appid": 250180, + "normalized_name": "metal slug 3" + }, + { + "appid": 250260, + "normalized_name": "jazzpunk director's cut" + }, + { + "appid": 250320, + "normalized_name": "the wolf among us" + }, + { + "appid": 250340, + "normalized_name": "blockland" + }, + { + "appid": 250380, + "normalized_name": "knock knock" + }, + { + "appid": 250400, + "normalized_name": "how to survive" + }, + { + "appid": 250420, + "normalized_name": "8bitmmo" + }, + { + "appid": 250440, + "normalized_name": "tetrapulse" + }, + { + "appid": 250460, + "normalized_name": "bridge constructor" + }, + { + "appid": 250500, + "normalized_name": "super amazing wagon adventure" + }, + { + "appid": 250520, + "normalized_name": "underrail" + }, + { + "appid": 250540, + "normalized_name": "c wars" + }, + { + "appid": 250560, + "normalized_name": "fight the dragon" + }, + { + "appid": 250580, + "normalized_name": "paranautical activity deluxe atonement" + }, + { + "appid": 250600, + "normalized_name": "the plan" + }, + { + "appid": 250620, + "normalized_name": "among the sleep enhanced" + }, + { + "appid": 250680, + "normalized_name": "below" + }, + { + "appid": 250700, + "normalized_name": "super time force ultra" + }, + { + "appid": 250720, + "normalized_name": "starlight inception" + }, + { + "appid": 250760, + "normalized_name": "shovel knight treasure trove" + }, + { + "appid": 250820, + "normalized_name": "steamvr" + }, + { + "appid": 250900, + "normalized_name": "the binding of isaac rebirth" + }, + { + "appid": 251020, + "normalized_name": "railroad x" + }, + { + "appid": 251060, + "normalized_name": "wargame red dragon" + }, + { + "appid": 251110, + "normalized_name": "infra" + }, + { + "appid": 251130, + "normalized_name": "chroma squad" + }, + { + "appid": 251150, + "normalized_name": "the legend of heroes trails in the sky" + }, + { + "appid": 251170, + "normalized_name": "damned" + }, + { + "appid": 251210, + "normalized_name": "hive" + }, + { + "appid": 251230, + "normalized_name": "livelock" + }, + { + "appid": 251270, + "normalized_name": "corpse party" + }, + { + "appid": 251290, + "normalized_name": "the legend of heroes trails in the sky sc" + }, + { + "appid": 251310, + "normalized_name": "eleusis" + }, + { + "appid": 251370, + "normalized_name": "escape goat" + }, + { + "appid": 251410, + "normalized_name": "dark matter" + }, + { + "appid": 251430, + "normalized_name": "the inner world" + }, + { + "appid": 251450, + "normalized_name": "heroes of havoc idle adventures" + }, + { + "appid": 251470, + "normalized_name": "towerfall ascension" + }, + { + "appid": 251490, + "normalized_name": "gravity ghost" + }, + { + "appid": 251510, + "normalized_name": "constant c" + }, + { + "appid": 251530, + "normalized_name": "anomaly korea" + }, + { + "appid": 251570, + "normalized_name": "7 days to die" + }, + { + "appid": 251590, + "normalized_name": "soul saga" + }, + { + "appid": 251630, + "normalized_name": "the impossible game" + }, + { + "appid": 251650, + "normalized_name": "ray's the dead" + }, + { + "appid": 251670, + "normalized_name": "battle nations" + }, + { + "appid": 251690, + "normalized_name": "speedball 2 hd" + }, + { + "appid": 251730, + "normalized_name": "legend of grimrock 2" + }, + { + "appid": 251830, + "normalized_name": "stick it to the man!" + }, + { + "appid": 251850, + "normalized_name": "master reboot" + }, + { + "appid": 251870, + "normalized_name": "go! go! nippon! ~my first trip to japan~" + }, + { + "appid": 251910, + "normalized_name": "solar flux" + }, + { + "appid": 251950, + "normalized_name": "wwii online" + }, + { + "appid": 251990, + "normalized_name": "long live the queen" + }, + { + "appid": 252010, + "normalized_name": "oniken unstoppable" + }, + { + "appid": 252030, + "normalized_name": "valdis story abyssal city" + }, + { + "appid": 252050, + "normalized_name": "construction machines 2014" + }, + { + "appid": 252070, + "normalized_name": "gimbal" + }, + { + "appid": 252090, + "normalized_name": "lacuna passage" + }, + { + "appid": 252110, + "normalized_name": "lovers in a dangerous spacetime" + }, + { + "appid": 252130, + "normalized_name": "divide by sheep" + }, + { + "appid": 252170, + "normalized_name": "anomaly warzone earth mobile campaign" + }, + { + "appid": 252190, + "normalized_name": "defender's quest 2 mists of ruin" + }, + { + "appid": 252230, + "normalized_name": "yaiba ninja gaiden z" + }, + { + "appid": 252250, + "normalized_name": "maia" + }, + { + "appid": 252270, + "normalized_name": "zombie tycoon 2 brainhov's revenge" + }, + { + "appid": 252310, + "normalized_name": "syder arcade" + }, + { + "appid": 252330, + "normalized_name": "slender the arrival" + }, + { + "appid": 252350, + "normalized_name": "double dragon neon" + }, + { + "appid": 252370, + "normalized_name": "the shivah" + }, + { + "appid": 252390, + "normalized_name": "dwarfcorp" + }, + { + "appid": 252410, + "normalized_name": "steamworld dig" + }, + { + "appid": 252430, + "normalized_name": "dusty revenge co op" + }, + { + "appid": 252450, + "normalized_name": "stardrive 2" + }, + { + "appid": 252470, + "normalized_name": "space pirates and zombies 2" + }, + { + "appid": 252490, + "normalized_name": "rust" + }, + { + "appid": 252530, + "normalized_name": "omsi 2 steam" + }, + { + "appid": 252550, + "normalized_name": "qbeh 1 the atlas cube" + }, + { + "appid": 252570, + "normalized_name": "depths of fear knossos" + }, + { + "appid": 252610, + "normalized_name": "death road to canada" + }, + { + "appid": 252630, + "normalized_name": "eldritch" + }, + { + "appid": 252670, + "normalized_name": "nihilumbra" + }, + { + "appid": 252710, + "normalized_name": "the last express gold" + }, + { + "appid": 252730, + "normalized_name": "you don't know jack vol. 1 xl" + }, + { + "appid": 252750, + "normalized_name": "mousecraft" + }, + { + "appid": 252830, + "normalized_name": "claire" + }, + { + "appid": 252870, + "normalized_name": "pulsar lost colony" + }, + { + "appid": 252890, + "normalized_name": "dracula love kills" + }, + { + "appid": 252910, + "normalized_name": "skyscraper simulator" + }, + { + "appid": 252970, + "normalized_name": "mcdroid" + }, + { + "appid": 253030, + "normalized_name": "race the sun" + }, + { + "appid": 253110, + "normalized_name": "the cat lady" + }, + { + "appid": 253150, + "normalized_name": "halfway" + }, + { + "appid": 253230, + "normalized_name": "a hat in time" + }, + { + "appid": 253250, + "normalized_name": "stonehearth" + }, + { + "appid": 253290, + "normalized_name": "fotonica" + }, + { + "appid": 253310, + "normalized_name": "fester mudd curse of the gold episode 1" + }, + { + "appid": 253330, + "normalized_name": "neverending nightmares" + }, + { + "appid": 253350, + "normalized_name": "tiny barbarian dx" + }, + { + "appid": 253390, + "normalized_name": "hot tin roof the cat that wore a fedora" + }, + { + "appid": 253410, + "normalized_name": "ravensword shadowlands" + }, + { + "appid": 253430, + "normalized_name": "castleminer z" + }, + { + "appid": 253510, + "normalized_name": "warmachine tactics" + }, + { + "appid": 253570, + "normalized_name": "gentlemen!" + }, + { + "appid": 253610, + "normalized_name": "wrack" + }, + { + "appid": 253630, + "normalized_name": "steam marines" + }, + { + "appid": 253650, + "normalized_name": "sparkle 2 evo" + }, + { + "appid": 253690, + "normalized_name": "tiny brains" + }, + { + "appid": 253710, + "normalized_name": "thehunter classic" + }, + { + "appid": 253750, + "normalized_name": "ikaruga" + }, + { + "appid": 253770, + "normalized_name": "bus simulator 2012" + }, + { + "appid": 253790, + "normalized_name": "rymdkapsel" + }, + { + "appid": 253840, + "normalized_name": "shantae half genie hero" + }, + { + "appid": 253860, + "normalized_name": "earth 2140" + }, + { + "appid": 253880, + "normalized_name": "earth 2150 trilogy" + }, + { + "appid": 253900, + "normalized_name": "knights and merchants" + }, + { + "appid": 253920, + "normalized_name": "gorky 17" + }, + { + "appid": 253940, + "normalized_name": "septerra core" + }, + { + "appid": 253960, + "normalized_name": "jack orlando director's cut" + }, + { + "appid": 253980, + "normalized_name": "enclave" + }, + { + "appid": 254060, + "normalized_name": "knightshift" + }, + { + "appid": 254080, + "normalized_name": "world war iii black gold" + }, + { + "appid": 254100, + "normalized_name": "world war ii panzer claws" + }, + { + "appid": 254200, + "normalized_name": "fortresscraft evolved!" + }, + { + "appid": 254320, + "normalized_name": "duskers" + }, + { + "appid": 254370, + "normalized_name": "aquanox deep descent" + }, + { + "appid": 254440, + "normalized_name": "pool nation" + }, + { + "appid": 254460, + "normalized_name": "obscure" + }, + { + "appid": 254480, + "normalized_name": "obscure ii (obscure the aftermath)" + }, + { + "appid": 254590, + "normalized_name": "theme park studio" + }, + { + "appid": 254700, + "normalized_name": "resident evil 4 (2005)" + }, + { + "appid": 254820, + "normalized_name": "ground control anthology" + }, + { + "appid": 254840, + "normalized_name": "ground control ii operation exodus" + }, + { + "appid": 254860, + "normalized_name": "lords of the realm iii" + }, + { + "appid": 254880, + "normalized_name": "moonbase commander" + }, + { + "appid": 254900, + "normalized_name": "gunlok" + }, + { + "appid": 254920, + "normalized_name": "lords of the realm" + }, + { + "appid": 254940, + "normalized_name": "free running" + }, + { + "appid": 254960, + "normalized_name": "silent storm gold" + }, + { + "appid": 255070, + "normalized_name": "abyss odyssey" + }, + { + "appid": 255163, + "normalized_name": "call of duty ghosts digital hardened" + }, + { + "appid": 255260, + "normalized_name": "pro cycling manager 2014" + }, + { + "appid": 255280, + "normalized_name": "1954 alcatraz" + }, + { + "appid": 255300, + "normalized_name": "journey of a roach" + }, + { + "appid": 255320, + "normalized_name": "edna & harvey the breakout" + }, + { + "appid": 255340, + "normalized_name": "escape goat 2" + }, + { + "appid": 255370, + "normalized_name": "kickbeat steam" + }, + { + "appid": 255390, + "normalized_name": "max the curse of brotherhood" + }, + { + "appid": 255520, + "normalized_name": "viscera cleanup detail shadow warrior" + }, + { + "appid": 255710, + "normalized_name": "cities skylines" + }, + { + "appid": 255870, + "normalized_name": "pixeljunk shooter" + }, + { + "appid": 255940, + "normalized_name": "the 11th hour" + }, + { + "appid": 255960, + "normalized_name": "bad mojo redux" + }, + { + "appid": 256010, + "normalized_name": "jagged alliance flashback" + }, + { + "appid": 256030, + "normalized_name": "shadows heretic kingdoms" + }, + { + "appid": 256070, + "normalized_name": "truck racer" + }, + { + "appid": 256190, + "normalized_name": "enemy front" + }, + { + "appid": 256290, + "normalized_name": "child of light" + }, + { + "appid": 256330, + "normalized_name": "wrc 4 fia world rally championship" + }, + { + "appid": 256370, + "normalized_name": "mxgp the official motocross videogame" + }, + { + "appid": 256390, + "normalized_name": "motogp14" + }, + { + "appid": 256460, + "normalized_name": "cosmic star heroine" + }, + { + "appid": 256576, + "normalized_name": "csx es44ac add on livery" + }, + { + "appid": 256611, + "normalized_name": "csx sd70mac add on livery" + }, + { + "appid": 257030, + "normalized_name": "project nimbus" + }, + { + "appid": 257050, + "normalized_name": "darkout" + }, + { + "appid": 257120, + "normalized_name": "not the robots" + }, + { + "appid": 257170, + "normalized_name": "rebuild 3 gangs of deadsville" + }, + { + "appid": 257220, + "normalized_name": "secret files sam peters" + }, + { + "appid": 257260, + "normalized_name": "inherit the earth quest for the orb" + }, + { + "appid": 257350, + "normalized_name": "baldur's gate ii enhanced" + }, + { + "appid": 257420, + "normalized_name": "serious sam 4" + }, + { + "appid": 257510, + "normalized_name": "the talos principle" + }, + { + "appid": 257670, + "normalized_name": "elder sign omens" + }, + { + "appid": 257690, + "normalized_name": "j.u.l.i.a. among the stars" + }, + { + "appid": 257710, + "normalized_name": "max gentlemen" + }, + { + "appid": 257730, + "normalized_name": "infinity wars animated trading card game" + }, + { + "appid": 257750, + "normalized_name": "bloody trapland" + }, + { + "appid": 257770, + "normalized_name": "signal ops" + }, + { + "appid": 257790, + "normalized_name": "riptide gp2" + }, + { + "appid": 257830, + "normalized_name": "violett" + }, + { + "appid": 257850, + "normalized_name": "hyper light drifter" + }, + { + "appid": 257870, + "normalized_name": "eschalon book iii" + }, + { + "appid": 257970, + "normalized_name": "loren the amazon princess" + }, + { + "appid": 257990, + "normalized_name": "oozi earth adventure" + }, + { + "appid": 258010, + "normalized_name": "ring runner flight of the sages" + }, + { + "appid": 258050, + "normalized_name": "survivor squad" + }, + { + "appid": 258070, + "normalized_name": "probability 0" + }, + { + "appid": 258090, + "normalized_name": "99 spirits" + }, + { + "appid": 258180, + "normalized_name": "deus ex the fall" + }, + { + "appid": 258220, + "normalized_name": "blood knights" + }, + { + "appid": 258520, + "normalized_name": "the vanishing of ethan carter" + }, + { + "appid": 258643, + "normalized_name": "train simulator nec new york new haven route add on" + }, + { + "appid": 258760, + "normalized_name": "scania truck driving simulator" + }, + { + "appid": 258880, + "normalized_name": "professional farmer 2014" + }, + { + "appid": 258890, + "normalized_name": "type rider" + }, + { + "appid": 258950, + "normalized_name": "montague's mount" + }, + { + "appid": 258970, + "normalized_name": "gauntlet slayer" + }, + { + "appid": 259000, + "normalized_name": "dead pixels ii" + }, + { + "appid": 259060, + "normalized_name": "dominions 4 thrones of ascension" + }, + { + "appid": 259080, + "normalized_name": "just cause 2 multiplayer mod" + }, + { + "appid": 259130, + "normalized_name": "wasteland 1 the original classic" + }, + { + "appid": 259170, + "normalized_name": "alone in the dark (2008)" + }, + { + "appid": 259190, + "normalized_name": "alone in the dark the new nightmare" + }, + { + "appid": 259320, + "normalized_name": "heli heroes" + }, + { + "appid": 259340, + "normalized_name": "chicken shoot gold" + }, + { + "appid": 259390, + "normalized_name": "ballpoint universe infinite" + }, + { + "appid": 259410, + "normalized_name": "sneaky sneaky" + }, + { + "appid": 259450, + "normalized_name": "drifter" + }, + { + "appid": 259470, + "normalized_name": "particulars" + }, + { + "appid": 259510, + "normalized_name": "shufflepuck cantina deluxe" + }, + { + "appid": 259530, + "normalized_name": "savant ascent" + }, + { + "appid": 259550, + "normalized_name": "hero of the kingdom" + }, + { + "appid": 259600, + "normalized_name": "finding teddy" + }, + { + "appid": 259620, + "normalized_name": "3079 block action rpg" + }, + { + "appid": 259640, + "normalized_name": "guise of the wolf" + }, + { + "appid": 259660, + "normalized_name": "void destroyer" + }, + { + "appid": 259680, + "normalized_name": "tales of maj'eyal" + }, + { + "appid": 259700, + "normalized_name": "dead sky" + }, + { + "appid": 259720, + "normalized_name": "fading hearts" + }, + { + "appid": 259760, + "normalized_name": "two brothers" + }, + { + "appid": 259780, + "normalized_name": "nimble quest" + }, + { + "appid": 259810, + "normalized_name": "home sheep home farmageddon party" + }, + { + "appid": 259830, + "normalized_name": "wooden sen'sey" + }, + { + "appid": 259870, + "normalized_name": "omg zombies!" + }, + { + "appid": 259890, + "normalized_name": "agricultural simulator historical farming" + }, + { + "appid": 259940, + "normalized_name": "you don't know jack vol. 2" + }, + { + "appid": 259960, + "normalized_name": "you don't know jack vol. 3" + }, + { + "appid": 259980, + "normalized_name": "you don't know jack vol. 4 the ride" + }, + { + "appid": 260000, + "normalized_name": "you don't know jack movies" + }, + { + "appid": 260020, + "normalized_name": "you don't know jack sports" + }, + { + "appid": 260040, + "normalized_name": "you don't know jack television" + }, + { + "appid": 260060, + "normalized_name": "you don't know jack headrush" + }, + { + "appid": 260080, + "normalized_name": "you don't know jack vol. 6 the lost gold" + }, + { + "appid": 260130, + "normalized_name": "agarest generations of war zero" + }, + { + "appid": 260160, + "normalized_name": "the last tinker city of colors" + }, + { + "appid": 260190, + "normalized_name": "marc eckō's getting up contents under pressure" + }, + { + "appid": 260210, + "normalized_name": "assassin’s creed liberation hd" + }, + { + "appid": 260230, + "normalized_name": "valiant hearts the great war / soldats inconnus mémoires de la grande guerre" + }, + { + "appid": 260250, + "normalized_name": "blood of the werewolf" + }, + { + "appid": 260309, + "normalized_name": "company of heroes 2 the western front armies" + }, + { + "appid": 260330, + "normalized_name": "flockers" + }, + { + "appid": 260380, + "normalized_name": "ninja cats vs samurai dogs" + }, + { + "appid": 260410, + "normalized_name": "get off my lawn!" + }, + { + "appid": 260430, + "normalized_name": "the four kings casino and slots" + }, + { + "appid": 260510, + "normalized_name": "world basketball tycoon" + }, + { + "appid": 260530, + "normalized_name": "so many me" + }, + { + "appid": 260550, + "normalized_name": "haunted" + }, + { + "appid": 260570, + "normalized_name": "gray matter" + }, + { + "appid": 260650, + "normalized_name": "cold war" + }, + { + "appid": 260690, + "normalized_name": "dark fall the journal" + }, + { + "appid": 260710, + "normalized_name": "dark fall 2 lights out" + }, + { + "appid": 260730, + "normalized_name": "desperados wanted dead or alive" + }, + { + "appid": 260750, + "normalized_name": "neighbours from hell compilation" + }, + { + "appid": 260790, + "normalized_name": "1001 spikes" + }, + { + "appid": 260930, + "normalized_name": "emergency 2014" + }, + { + "appid": 261030, + "normalized_name": "the walking dead season two" + }, + { + "appid": 261110, + "normalized_name": "killer is dead nightmare" + }, + { + "appid": 261180, + "normalized_name": "lethal league" + }, + { + "appid": 261430, + "normalized_name": "aion mmo" + }, + { + "appid": 261470, + "normalized_name": "distant worlds universe" + }, + { + "appid": 261510, + "normalized_name": "tesla effect a tex murphy adventure" + }, + { + "appid": 261530, + "normalized_name": "lifeless planet premier" + }, + { + "appid": 261550, + "normalized_name": "mount & blade ii bannerlord" + }, + { + "appid": 261570, + "normalized_name": "ori and the blind forest" + }, + { + "appid": 261640, + "normalized_name": "borderlands the pre sequel" + }, + { + "appid": 261680, + "normalized_name": "journal" + }, + { + "appid": 261700, + "normalized_name": "eryi's action" + }, + { + "appid": 261720, + "normalized_name": "holy avatar vs. maidens of the dead" + }, + { + "appid": 261740, + "normalized_name": "humans must answer" + }, + { + "appid": 261760, + "normalized_name": "lichdom battlemage" + }, + { + "appid": 261900, + "normalized_name": "the real texas" + }, + { + "appid": 261940, + "normalized_name": "the mysterious cities of gold" + }, + { + "appid": 261960, + "normalized_name": "cube & star an arbitrary love" + }, + { + "appid": 262000, + "normalized_name": "gabriel knight sins of the fathers 20th anniversary" + }, + { + "appid": 262060, + "normalized_name": "darkest dungeon" + }, + { + "appid": 262080, + "normalized_name": "iron soul" + }, + { + "appid": 262100, + "normalized_name": "trench run" + }, + { + "appid": 262120, + "normalized_name": "toy soldiers" + }, + { + "appid": 262150, + "normalized_name": "vanguard princess" + }, + { + "appid": 262190, + "normalized_name": "zombeer" + }, + { + "appid": 262210, + "normalized_name": "last knight rogue rider" + }, + { + "appid": 262240, + "normalized_name": "suguri" + }, + { + "appid": 262260, + "normalized_name": "jets'n'guns gold" + }, + { + "appid": 262280, + "normalized_name": "dungeons 2" + }, + { + "appid": 262300, + "normalized_name": "tsukumogami" + }, + { + "appid": 262370, + "normalized_name": "a.n.n.e" + }, + { + "appid": 262390, + "normalized_name": "cloudbuilt" + }, + { + "appid": 262410, + "normalized_name": "world of guns gun disassembly" + }, + { + "appid": 262450, + "normalized_name": "dead man's draw" + }, + { + "appid": 262470, + "normalized_name": "rollers of the realm" + }, + { + "appid": 262510, + "normalized_name": "crimson room decade" + }, + { + "appid": 262550, + "normalized_name": "gunman clive" + }, + { + "appid": 262590, + "normalized_name": "chuck's challenge 3d 2020" + }, + { + "appid": 262630, + "normalized_name": "tom vs. the armies of hell" + }, + { + "appid": 262690, + "normalized_name": "little racers street" + }, + { + "appid": 262750, + "normalized_name": "god factory wingmen" + }, + { + "appid": 262770, + "normalized_name": "freedom fall" + }, + { + "appid": 262790, + "normalized_name": "our darker purpose" + }, + { + "appid": 262810, + "normalized_name": "super turbo demon busters!" + }, + { + "appid": 262830, + "normalized_name": "crimsonland" + }, + { + "appid": 262850, + "normalized_name": "the journey down chapter two" + }, + { + "appid": 262870, + "normalized_name": "recovery search & rescue simulation" + }, + { + "appid": 262900, + "normalized_name": "smooth operators" + }, + { + "appid": 262920, + "normalized_name": "super chain crusher horizon" + }, + { + "appid": 262940, + "normalized_name": "broken sword 5 the serpent's curse" + }, + { + "appid": 262960, + "normalized_name": "castle in the darkness" + }, + { + "appid": 262980, + "normalized_name": "c rush" + }, + { + "appid": 263020, + "normalized_name": "starwhal" + }, + { + "appid": 263040, + "normalized_name": "bot colony" + }, + { + "appid": 263060, + "normalized_name": "blockstorm" + }, + { + "appid": 263100, + "normalized_name": "9.03m" + }, + { + "appid": 263120, + "normalized_name": "ludwig" + }, + { + "appid": 263140, + "normalized_name": "postmortem one must die (extended cut)" + }, + { + "appid": 263180, + "normalized_name": "squirt's adventure" + }, + { + "appid": 263200, + "normalized_name": "signs of life" + }, + { + "appid": 263300, + "normalized_name": "blazblue calamity trigger" + }, + { + "appid": 263320, + "normalized_name": "saturday morning rpg" + }, + { + "appid": 263340, + "normalized_name": "continue?9876543210" + }, + { + "appid": 263360, + "normalized_name": "3089 futuristic action rpg" + }, + { + "appid": 263380, + "normalized_name": "driftmoon" + }, + { + "appid": 263400, + "normalized_name": "war of the human tanks" + }, + { + "appid": 263420, + "normalized_name": "probably archery" + }, + { + "appid": 263460, + "normalized_name": "girls like robots" + }, + { + "appid": 263480, + "normalized_name": "final rush" + }, + { + "appid": 263520, + "normalized_name": "enola" + }, + { + "appid": 263540, + "normalized_name": "villagers and heroes" + }, + { + "appid": 263560, + "normalized_name": "paper sorcerer" + }, + { + "appid": 263620, + "normalized_name": "mitsurugi kamui hikae" + }, + { + "appid": 263640, + "normalized_name": "cdf ghostship" + }, + { + "appid": 263680, + "normalized_name": "unearthed trail of ibn battuta episode 1 gold" + }, + { + "appid": 263700, + "normalized_name": "muffin knight" + }, + { + "appid": 263720, + "normalized_name": "brawlout" + }, + { + "appid": 263740, + "normalized_name": "footlol epic soccer league" + }, + { + "appid": 263760, + "normalized_name": "turbo dismount" + }, + { + "appid": 263800, + "normalized_name": "spaceforce constellations" + }, + { + "appid": 263820, + "normalized_name": "evilquest" + }, + { + "appid": 263860, + "normalized_name": "spacecom" + }, + { + "appid": 263880, + "normalized_name": "aqua kitty milk mine defender" + }, + { + "appid": 263920, + "normalized_name": "zombie grinder" + }, + { + "appid": 263940, + "normalized_name": "red baron pack" + }, + { + "appid": 263960, + "normalized_name": "wyv and keep the temple of the lost idol" + }, + { + "appid": 263980, + "normalized_name": "out there somewhere" + }, + { + "appid": 264000, + "normalized_name": "son of nor" + }, + { + "appid": 264060, + "normalized_name": "full bore" + }, + { + "appid": 264080, + "normalized_name": "vangers" + }, + { + "appid": 264140, + "normalized_name": "pixel piracy" + }, + { + "appid": 264160, + "normalized_name": "wazhack" + }, + { + "appid": 264200, + "normalized_name": "one finger death punch" + }, + { + "appid": 264220, + "normalized_name": "mr. bree+" + }, + { + "appid": 264280, + "normalized_name": "99 levels to hell" + }, + { + "appid": 264300, + "normalized_name": "guns n zombies" + }, + { + "appid": 264320, + "normalized_name": "captain morgane and the golden turtle" + }, + { + "appid": 264340, + "normalized_name": "major mayhem" + }, + { + "appid": 264380, + "normalized_name": "narcissu 1st & 2nd" + }, + { + "appid": 264400, + "normalized_name": "jacob jones and the bigfoot mystery episode 1" + }, + { + "appid": 264440, + "normalized_name": "children of liberty" + }, + { + "appid": 264460, + "normalized_name": "a men" + }, + { + "appid": 264520, + "normalized_name": "moebius empire rising" + }, + { + "appid": 264540, + "normalized_name": "platformines" + }, + { + "appid": 264560, + "normalized_name": "quest for infamy" + }, + { + "appid": 264580, + "normalized_name": "lost civilization" + }, + { + "appid": 264690, + "normalized_name": "coin crypt" + }, + { + "appid": 264710, + "normalized_name": "subnautica" + }, + { + "appid": 264730, + "normalized_name": "deadly 30" + }, + { + "appid": 265000, + "normalized_name": "forced showdown" + }, + { + "appid": 265120, + "normalized_name": "meridian new world" + }, + { + "appid": 265170, + "normalized_name": "acceleration of suguri x hd" + }, + { + "appid": 265210, + "normalized_name": "viscera cleanup detail santa's rampage" + }, + { + "appid": 265240, + "normalized_name": "crazy machines golden gears" + }, + { + "appid": 265300, + "normalized_name": "lords of the fallen 2014" + }, + { + "appid": 265330, + "normalized_name": "gomo" + }, + { + "appid": 265380, + "normalized_name": "grimind" + }, + { + "appid": 265470, + "normalized_name": "even the ocean" + }, + { + "appid": 265550, + "normalized_name": "dead rising 3 apocalypse" + }, + { + "appid": 265590, + "normalized_name": "the red solstice" + }, + { + "appid": 265610, + "normalized_name": "epic battle fantasy 4" + }, + { + "appid": 265630, + "normalized_name": "fistful of frags" + }, + { + "appid": 265690, + "normalized_name": "naissancee" + }, + { + "appid": 265730, + "normalized_name": "frane dragons' odyssey" + }, + { + "appid": 265750, + "normalized_name": "secret ponchos" + }, + { + "appid": 265770, + "normalized_name": "cannons lasers rockets" + }, + { + "appid": 265790, + "normalized_name": "residue final cut" + }, + { + "appid": 265810, + "normalized_name": "the sandbox" + }, + { + "appid": 265830, + "normalized_name": "monochroma" + }, + { + "appid": 265870, + "normalized_name": "alpha kimori 1" + }, + { + "appid": 265890, + "normalized_name": "hexcells" + }, + { + "appid": 265930, + "normalized_name": "goat simulator" + }, + { + "appid": 265950, + "normalized_name": "ether one" + }, + { + "appid": 265970, + "normalized_name": "worlds of magic" + }, + { + "appid": 265990, + "normalized_name": "rogue's tale" + }, + { + "appid": 266010, + "normalized_name": "lyne" + }, + { + "appid": 266030, + "normalized_name": "drakerz confrontation" + }, + { + "appid": 266050, + "normalized_name": "into the dark trash" + }, + { + "appid": 266090, + "normalized_name": "starlite astronaut rescue developed in collaboration with nasa" + }, + { + "appid": 266110, + "normalized_name": "tower of guns" + }, + { + "appid": 266130, + "normalized_name": "breach & clear" + }, + { + "appid": 266170, + "normalized_name": "windforge" + }, + { + "appid": 266190, + "normalized_name": "astral terra" + }, + { + "appid": 266210, + "normalized_name": "one way heroics" + }, + { + "appid": 266230, + "normalized_name": "last dream" + }, + { + "appid": 266250, + "normalized_name": "procyon" + }, + { + "appid": 266270, + "normalized_name": "gridiron solitaire" + }, + { + "appid": 266290, + "normalized_name": "helicopter simulator 2014 search and rescue" + }, + { + "appid": 266330, + "normalized_name": "ethan meteor hunter" + }, + { + "appid": 266370, + "normalized_name": "calibre 10 racing" + }, + { + "appid": 266390, + "normalized_name": "farm for your life" + }, + { + "appid": 266410, + "normalized_name": "iracing" + }, + { + "appid": 266430, + "normalized_name": "anarchy arcade" + }, + { + "appid": 266490, + "normalized_name": "lili child of geos" + }, + { + "appid": 266510, + "normalized_name": "hand of fate" + }, + { + "appid": 266840, + "normalized_name": "age of mythology extended" + }, + { + "appid": 266980, + "normalized_name": "the labyrinth of time" + }, + { + "appid": 267060, + "normalized_name": "gravity badgers" + }, + { + "appid": 267220, + "normalized_name": "line of defense tactics tactical advantage" + }, + { + "appid": 267340, + "normalized_name": "beware planet earth" + }, + { + "appid": 267360, + "normalized_name": "muri" + }, + { + "appid": 267490, + "normalized_name": "batman arkham origins blackgate deluxe" + }, + { + "appid": 267530, + "normalized_name": "the lego movie videogame" + }, + { + "appid": 267600, + "normalized_name": "airport simulator 2014" + }, + { + "appid": 267610, + "normalized_name": "woodcutter simulator 2013" + }, + { + "appid": 267670, + "normalized_name": "realms of arkania 1 blade of destiny classic" + }, + { + "appid": 267730, + "normalized_name": "ground pounders" + }, + { + "appid": 267900, + "normalized_name": "guilty gear isuka" + }, + { + "appid": 267920, + "normalized_name": "gun metal" + }, + { + "appid": 267940, + "normalized_name": "glacier 3 the meltdown" + }, + { + "appid": 267960, + "normalized_name": "hyper fighters" + }, + { + "appid": 267980, + "normalized_name": "hostile waters antaeus rising" + }, + { + "appid": 268050, + "normalized_name": "the evil within" + }, + { + "appid": 268130, + "normalized_name": "heat signature" + }, + { + "appid": 268200, + "normalized_name": "antisquad" + }, + { + "appid": 268220, + "normalized_name": "meltdown" + }, + { + "appid": 268240, + "normalized_name": "mechanic escape" + }, + { + "appid": 268320, + "normalized_name": "grapple" + }, + { + "appid": 268340, + "normalized_name": "high strangeness" + }, + { + "appid": 268360, + "normalized_name": "krautscape" + }, + { + "appid": 268400, + "normalized_name": "panzer corps gold" + }, + { + "appid": 268500, + "normalized_name": "xcom 2" + }, + { + "appid": 268520, + "normalized_name": "orc attack flatulent rebellion" + }, + { + "appid": 268540, + "normalized_name": "the whispered world special" + }, + { + "appid": 268650, + "normalized_name": "from the depths" + }, + { + "appid": 268670, + "normalized_name": "the memory of eldurim" + }, + { + "appid": 268750, + "normalized_name": "magicite" + }, + { + "appid": 268770, + "normalized_name": "treasure adventure world" + }, + { + "appid": 268870, + "normalized_name": "satellite reign" + }, + { + "appid": 268890, + "normalized_name": "masters of the world geopolitical simulator 3" + }, + { + "appid": 268910, + "normalized_name": "cuphead" + }, + { + "appid": 268970, + "normalized_name": "you are not the hero" + }, + { + "appid": 268990, + "normalized_name": "the dishwasher vampire smile" + }, + { + "appid": 269010, + "normalized_name": "science girls" + }, + { + "appid": 269030, + "normalized_name": "the yawhg" + }, + { + "appid": 269050, + "normalized_name": "year walk" + }, + { + "appid": 269110, + "normalized_name": "super motherload" + }, + { + "appid": 269150, + "normalized_name": "luxuria superbia" + }, + { + "appid": 269170, + "normalized_name": "sports bar vr" + }, + { + "appid": 269190, + "normalized_name": "edge of eternity" + }, + { + "appid": 269210, + "normalized_name": "hero siege" + }, + { + "appid": 269230, + "normalized_name": "aces wild manic brawling action!" + }, + { + "appid": 269250, + "normalized_name": "world end economica episode.01" + }, + { + "appid": 269270, + "normalized_name": "love" + }, + { + "appid": 269310, + "normalized_name": "infectonator survivors" + }, + { + "appid": 269330, + "normalized_name": "chronology" + }, + { + "appid": 269350, + "normalized_name": "montas" + }, + { + "appid": 269370, + "normalized_name": "reaper tale of a pale swordsman" + }, + { + "appid": 269430, + "normalized_name": "burning cars" + }, + { + "appid": 269490, + "normalized_name": "bardbarian" + }, + { + "appid": 269530, + "normalized_name": "voice of pripyat" + }, + { + "appid": 269590, + "normalized_name": "claustrophobia the downward struggle" + }, + { + "appid": 269610, + "normalized_name": "arcane worlds" + }, + { + "appid": 269630, + "normalized_name": "a mass of dead" + }, + { + "appid": 269650, + "normalized_name": "dex" + }, + { + "appid": 269670, + "normalized_name": "badland game of the year" + }, + { + "appid": 269690, + "normalized_name": "rymdresa" + }, + { + "appid": 269710, + "normalized_name": "tumblestone" + }, + { + "appid": 269770, + "normalized_name": "secrets of grindea" + }, + { + "appid": 269790, + "normalized_name": "dreadout" + }, + { + "appid": 269850, + "normalized_name": "get packed fully loaded" + }, + { + "appid": 269890, + "normalized_name": "ar k" + }, + { + "appid": 269950, + "normalized_name": "x plane 11" + }, + { + "appid": 269990, + "normalized_name": "infinite space iii sea of stars" + }, + { + "appid": 270010, + "normalized_name": "time rifters" + }, + { + "appid": 270050, + "normalized_name": "quest of dungeons" + }, + { + "appid": 270070, + "normalized_name": "the girl and the robot" + }, + { + "appid": 270090, + "normalized_name": "//n.p.p.d. rush// the milk of ultraviolet" + }, + { + "appid": 270110, + "normalized_name": "block story" + }, + { + "appid": 270130, + "normalized_name": "the gallery episode 1 call of the starseed" + }, + { + "appid": 270150, + "normalized_name": "running with rifles" + }, + { + "appid": 270170, + "normalized_name": "depression quest" + }, + { + "appid": 270190, + "normalized_name": "1heart" + }, + { + "appid": 270210, + "normalized_name": "melody's escape" + }, + { + "appid": 270230, + "normalized_name": "prominence" + }, + { + "appid": 270270, + "normalized_name": "frozen state" + }, + { + "appid": 270310, + "normalized_name": "dominique pamplemousse" + }, + { + "appid": 270330, + "normalized_name": "ku shroud of the morrigan" + }, + { + "appid": 270430, + "normalized_name": "cypress inheritance the beginning" + }, + { + "appid": 270450, + "normalized_name": "robot roller derby disco dodgeball" + }, + { + "appid": 270490, + "normalized_name": "the forest of doom (standalone)" + }, + { + "appid": 270510, + "normalized_name": "epoch" + }, + { + "appid": 270550, + "normalized_name": "yet another zombie defense" + }, + { + "appid": 270570, + "normalized_name": "reversion the escape (1st chapter)" + }, + { + "appid": 270590, + "normalized_name": "long night" + }, + { + "appid": 270610, + "normalized_name": "mage's initiation reign of the elements" + }, + { + "appid": 270630, + "normalized_name": "haunt the house terrortown" + }, + { + "appid": 270750, + "normalized_name": "realms of arkania 2 star trail classic" + }, + { + "appid": 270760, + "normalized_name": "realms of arkania 3 shadows over riva classic" + }, + { + "appid": 270770, + "normalized_name": "etherlords" + }, + { + "appid": 270790, + "normalized_name": "etherlords ii" + }, + { + "appid": 270810, + "normalized_name": "jones on fire" + }, + { + "appid": 270830, + "normalized_name": "global atc simulator" + }, + { + "appid": 270850, + "normalized_name": "car mechanic simulator 2014" + }, + { + "appid": 270880, + "normalized_name": "american truck simulator" + }, + { + "appid": 270910, + "normalized_name": "worms world party" + }, + { + "appid": 270950, + "normalized_name": "ski region simulator gold" + }, + { + "appid": 271240, + "normalized_name": "offworld trading company" + }, + { + "appid": 271260, + "normalized_name": "star control origins" + }, + { + "appid": 271360, + "normalized_name": "industry giant 2" + }, + { + "appid": 271370, + "normalized_name": "transport giant" + }, + { + "appid": 271500, + "normalized_name": "sniper art of victory" + }, + { + "appid": 271550, + "normalized_name": "tribloos 2" + }, + { + "appid": 271570, + "normalized_name": "space farmers" + }, + { + "appid": 271640, + "normalized_name": "humanity asset" + }, + { + "appid": 271670, + "normalized_name": "10 second ninja" + }, + { + "appid": 271760, + "normalized_name": "dungeon lords steam" + }, + { + "appid": 271820, + "normalized_name": "card city nights" + }, + { + "appid": 271860, + "normalized_name": "super killer hornet resurrection" + }, + { + "appid": 271900, + "normalized_name": "hexcells plus" + }, + { + "appid": 271920, + "normalized_name": "worlds adrift island creator" + }, + { + "appid": 271970, + "normalized_name": "hero and daughter+" + }, + { + "appid": 271990, + "normalized_name": "dreamscape" + }, + { + "appid": 272010, + "normalized_name": "aveyond 3 1 lord of twilight" + }, + { + "appid": 272040, + "normalized_name": "kami" + }, + { + "appid": 272060, + "normalized_name": "serena" + }, + { + "appid": 272230, + "normalized_name": "sub rosa" + }, + { + "appid": 272270, + "normalized_name": "torment tides of numenera" + }, + { + "appid": 272330, + "normalized_name": "shadow blade reload" + }, + { + "appid": 272470, + "normalized_name": "the incredible adventures of van helsing ii" + }, + { + "appid": 272510, + "normalized_name": "naruto shippuden ninja storm revolution" + }, + { + "appid": 272600, + "normalized_name": "detective grimoire" + }, + { + "appid": 272620, + "normalized_name": "serious sam's bogus detour" + }, + { + "appid": 272890, + "normalized_name": "vertiginous golf" + }, + { + "appid": 272920, + "normalized_name": "rail adventures" + }, + { + "appid": 272990, + "normalized_name": "gauge" + }, + { + "appid": 273030, + "normalized_name": "pro rugby manager 2015" + }, + { + "appid": 273070, + "normalized_name": "the last federation" + }, + { + "appid": 273110, + "normalized_name": "counter strike nexon" + }, + { + "appid": 273500, + "normalized_name": "over 9000 zombies!" + }, + { + "appid": 273570, + "normalized_name": "descent" + }, + { + "appid": 273580, + "normalized_name": "descent 2" + }, + { + "appid": 273590, + "normalized_name": "descent 3" + }, + { + "appid": 273600, + "normalized_name": "descent freespace – the great war" + }, + { + "appid": 273620, + "normalized_name": "freespace 2" + }, + { + "appid": 273730, + "normalized_name": "driving school simulator" + }, + { + "appid": 273740, + "normalized_name": "extreme roads usa" + }, + { + "appid": 273750, + "normalized_name": "formula truck 2013" + }, + { + "appid": 273760, + "normalized_name": "towtruck simulator 2015" + }, + { + "appid": 273770, + "normalized_name": "game tycoon 1.5" + }, + { + "appid": 273790, + "normalized_name": "agricultural simulator 2012 deluxe" + }, + { + "appid": 273800, + "normalized_name": "forestry 2017 the simulation" + }, + { + "appid": 273820, + "normalized_name": "mining & tunneling simulator" + }, + { + "appid": 273830, + "normalized_name": "aviator bush pilot" + }, + { + "appid": 273840, + "normalized_name": "stock car extreme" + }, + { + "appid": 273850, + "normalized_name": "ski world simulator" + }, + { + "appid": 273860, + "normalized_name": "snowcat simulator" + }, + { + "appid": 273890, + "normalized_name": "arctic trucker simulator" + }, + { + "appid": 273940, + "normalized_name": "warehouse and logistics simulator" + }, + { + "appid": 273960, + "normalized_name": "mechs & mercs black talons" + }, + { + "appid": 274010, + "normalized_name": "ship simulator maritime search and rescue" + }, + { + "appid": 274170, + "normalized_name": "hotline miami 2 wrong number" + }, + { + "appid": 274190, + "normalized_name": "broforce" + }, + { + "appid": 274230, + "normalized_name": "ronin" + }, + { + "appid": 274250, + "normalized_name": "olliolli" + }, + { + "appid": 274270, + "normalized_name": "not a hero" + }, + { + "appid": 274290, + "normalized_name": "gods will be watching" + }, + { + "appid": 274310, + "normalized_name": "always sometimes monsters" + }, + { + "appid": 274350, + "normalized_name": "dropsy" + }, + { + "appid": 274480, + "normalized_name": "drox operative" + }, + { + "appid": 274500, + "normalized_name": "brigador up armored" + }, + { + "appid": 274520, + "normalized_name": "darkwood" + }, + { + "appid": 274560, + "normalized_name": "revolution ace" + }, + { + "appid": 274580, + "normalized_name": "canyon capers" + }, + { + "appid": 274700, + "normalized_name": "868 hack" + }, + { + "appid": 274880, + "normalized_name": "jet car stunts" + }, + { + "appid": 274900, + "normalized_name": "murder miners" + }, + { + "appid": 274940, + "normalized_name": "depth" + }, + { + "appid": 274960, + "normalized_name": "tech executive tycoon" + }, + { + "appid": 274980, + "normalized_name": "influent language learning game" + }, + { + "appid": 275060, + "normalized_name": "alone in the dark illumination" + }, + { + "appid": 275080, + "normalized_name": "post master" + }, + { + "appid": 275100, + "normalized_name": "shelter 2" + }, + { + "appid": 275180, + "normalized_name": "costume quest 2" + }, + { + "appid": 275200, + "normalized_name": "westerado double barreled" + }, + { + "appid": 275270, + "normalized_name": "patriot democratization" + }, + { + "appid": 275290, + "normalized_name": "graviteam tactics operation star" + }, + { + "appid": 275310, + "normalized_name": "victorian admirals" + }, + { + "appid": 275330, + "normalized_name": "anmynor puzzles" + }, + { + "appid": 275350, + "normalized_name": "sentinel 3 homeworld" + }, + { + "appid": 275390, + "normalized_name": "guacamelee! super turbo championship" + }, + { + "appid": 275470, + "normalized_name": "chip" + }, + { + "appid": 275490, + "normalized_name": "canyon capers" + }, + { + "appid": 275510, + "normalized_name": "z steel soldiers" + }, + { + "appid": 275530, + "normalized_name": "z" + }, + { + "appid": 275570, + "normalized_name": "summoner" + }, + { + "appid": 275670, + "normalized_name": "space run" + }, + { + "appid": 275810, + "normalized_name": "7 wonders of the ancient world" + }, + { + "appid": 275830, + "normalized_name": "7 wonders magical mystery tour" + }, + { + "appid": 275850, + "normalized_name": "no man's sky" + }, + { + "appid": 276220, + "normalized_name": "my best friends cats & dogs" + }, + { + "appid": 276240, + "normalized_name": "my vet practice in the country" + }, + { + "appid": 276300, + "normalized_name": "my riding stables your horse world" + }, + { + "appid": 276340, + "normalized_name": "my riding stables life with horses" + }, + { + "appid": 276360, + "normalized_name": "riding star horse championship!" + }, + { + "appid": 276380, + "normalized_name": "my pet hotel" + }, + { + "appid": 276430, + "normalized_name": "my pet hotel 2" + }, + { + "appid": 276440, + "normalized_name": "kingdom tales" + }, + { + "appid": 276460, + "normalized_name": "dragon tales 2 the lair" + }, + { + "appid": 276730, + "normalized_name": "tango fiesta" + }, + { + "appid": 276750, + "normalized_name": "fritz chess 14" + }, + { + "appid": 276810, + "normalized_name": "mordheim city of the damned" + }, + { + "appid": 276870, + "normalized_name": "dwelvers" + }, + { + "appid": 276890, + "normalized_name": "fate undiscovered realms" + }, + { + "appid": 277110, + "normalized_name": "return to mysterious island" + }, + { + "appid": 277270, + "normalized_name": "return to mysterious island 2" + }, + { + "appid": 277390, + "normalized_name": "videoball" + }, + { + "appid": 277430, + "normalized_name": "halo spartan assault" + }, + { + "appid": 277450, + "normalized_name": "imperial glory" + }, + { + "appid": 277460, + "normalized_name": "praetorians" + }, + { + "appid": 277470, + "normalized_name": "the book of legends" + }, + { + "appid": 277490, + "normalized_name": "battle group 2" + }, + { + "appid": 277500, + "normalized_name": "farming world" + }, + { + "appid": 277510, + "normalized_name": "shiny the firefly" + }, + { + "appid": 277520, + "normalized_name": "albedo eyes from outer space" + }, + { + "appid": 277540, + "normalized_name": "tales from the dragon mountain the strix" + }, + { + "appid": 277560, + "normalized_name": "where angels cry" + }, + { + "appid": 277590, + "normalized_name": "assassin's creed freedom cry" + }, + { + "appid": 277630, + "normalized_name": "panzer tactics hd" + }, + { + "appid": 277650, + "normalized_name": "kult heretic kingdoms" + }, + { + "appid": 277680, + "normalized_name": "about love hate and the other ones" + }, + { + "appid": 277700, + "normalized_name": "on rusty trails" + }, + { + "appid": 277751, + "normalized_name": "the count of monster disco" + }, + { + "appid": 277850, + "normalized_name": "sportsfriends" + }, + { + "appid": 277870, + "normalized_name": "diehard dungeon" + }, + { + "appid": 277890, + "normalized_name": "shantae risky's revenge director's cut" + }, + { + "appid": 277910, + "normalized_name": "mars colony challenger" + }, + { + "appid": 278080, + "normalized_name": "dynasty warriors 8 xtreme legends" + }, + { + "appid": 278100, + "normalized_name": "rive wreck hack die retry!" + }, + { + "appid": 278360, + "normalized_name": "a story about my uncle" + }, + { + "appid": 278420, + "normalized_name": "spider rite of the shrouded moon" + }, + { + "appid": 278440, + "normalized_name": "0rbitalis" + }, + { + "appid": 278460, + "normalized_name": "skyborn" + }, + { + "appid": 278490, + "normalized_name": "aveyond 3 2 gates of night" + }, + { + "appid": 278510, + "normalized_name": "judgement silversword resurrection" + }, + { + "appid": 278530, + "normalized_name": "3 stars of destiny" + }, + { + "appid": 278570, + "normalized_name": "labyrinthine dreams" + }, + { + "appid": 278590, + "normalized_name": "heroes of legionwood" + }, + { + "appid": 278620, + "normalized_name": "tinykeep" + }, + { + "appid": 278640, + "normalized_name": "terrian saga kr 17" + }, + { + "appid": 278810, + "normalized_name": "la cops" + }, + { + "appid": 278850, + "normalized_name": "spaceforce homeworld" + }, + { + "appid": 278890, + "normalized_name": "angvik" + }, + { + "appid": 278930, + "normalized_name": "gigantic army" + }, + { + "appid": 278970, + "normalized_name": "digger online" + }, + { + "appid": 279070, + "normalized_name": "9th dawn ii" + }, + { + "appid": 279140, + "normalized_name": "making history the great war" + }, + { + "appid": 279160, + "normalized_name": "ultionus a tale of petty revenge" + }, + { + "appid": 279260, + "normalized_name": "richard & alice" + }, + { + "appid": 279420, + "normalized_name": "gardens inc. – from rakes to riches" + }, + { + "appid": 279440, + "normalized_name": "joe dever's lone wolf hd" + }, + { + "appid": 279460, + "normalized_name": "ihf handball challenge 14" + }, + { + "appid": 279480, + "normalized_name": "abalone" + }, + { + "appid": 279500, + "normalized_name": "nicolas eymerich the inquisitor book 1 the plague" + }, + { + "appid": 279520, + "normalized_name": "rage runner" + }, + { + "appid": 279540, + "normalized_name": "pretentious game" + }, + { + "appid": 279560, + "normalized_name": "dracula 4 and 5 special steam" + }, + { + "appid": 279580, + "normalized_name": "devil's dare 悪魔の挑戦" + }, + { + "appid": 279640, + "normalized_name": "the troma project" + }, + { + "appid": 279720, + "normalized_name": "the i of the dragon" + }, + { + "appid": 279800, + "normalized_name": "grim legends 2 song of the dark swan" + }, + { + "appid": 279900, + "normalized_name": "soul axiom" + }, + { + "appid": 279920, + "normalized_name": "infinity runner" + }, + { + "appid": 279940, + "normalized_name": "the book of unwritten tales 2" + }, + { + "appid": 279990, + "normalized_name": "bridge constructor playground" + }, + { + "appid": 280010, + "normalized_name": "gunjitsu" + }, + { + "appid": 280040, + "normalized_name": "a wizard's lizard" + }, + { + "appid": 280140, + "normalized_name": "millennium a new hope" + }, + { + "appid": 280160, + "normalized_name": "aragami" + }, + { + "appid": 280180, + "normalized_name": "hover" + }, + { + "appid": 280220, + "normalized_name": "creeper world 3 arc eternal" + }, + { + "appid": 280320, + "normalized_name": "adventurer manager" + }, + { + "appid": 280360, + "normalized_name": "interstellaria" + }, + { + "appid": 280380, + "normalized_name": "uprising44 the silent shadows" + }, + { + "appid": 280500, + "normalized_name": "krunch" + }, + { + "appid": 280520, + "normalized_name": "crea" + }, + { + "appid": 280540, + "normalized_name": "ghostcontrol inc." + }, + { + "appid": 280560, + "normalized_name": "danmaku unlimited 2" + }, + { + "appid": 280600, + "normalized_name": "bloodlust shadowhunter" + }, + { + "appid": 280620, + "normalized_name": "fiesta online" + }, + { + "appid": 280640, + "normalized_name": "dark shadows army of evil" + }, + { + "appid": 280720, + "normalized_name": "imagine earth" + }, + { + "appid": 280790, + "normalized_name": "creativerse" + }, + { + "appid": 280830, + "normalized_name": "foosball street" + }, + { + "appid": 280850, + "normalized_name": "dollhouse" + }, + { + "appid": 280890, + "normalized_name": "ghostship aftermath" + }, + { + "appid": 280930, + "normalized_name": "battlepillars gold" + }, + { + "appid": 281060, + "normalized_name": "reversion the meeting (2nd chapter)" + }, + { + "appid": 281080, + "normalized_name": "reversion the return (last chapter)" + }, + { + "appid": 281200, + "normalized_name": "a boy and his blob" + }, + { + "appid": 281220, + "normalized_name": "bloodrayne betrayal (legacy)" + }, + { + "appid": 281240, + "normalized_name": "adventure chronicles the search for lost treasure" + }, + { + "appid": 281260, + "normalized_name": "desert gunner" + }, + { + "appid": 281280, + "normalized_name": "mashed" + }, + { + "appid": 281350, + "normalized_name": "us and them" + }, + { + "appid": 281370, + "normalized_name": "real horror stories" + }, + { + "appid": 281390, + "normalized_name": "orb" + }, + { + "appid": 281410, + "normalized_name": "ubersoldier ii" + }, + { + "appid": 281430, + "normalized_name": "clans" + }, + { + "appid": 281450, + "normalized_name": "disciples sacred lands gold" + }, + { + "appid": 281520, + "normalized_name": "ascension to the throne valkyrie" + }, + { + "appid": 281560, + "normalized_name": "d.w.a.r.f.s." + }, + { + "appid": 281580, + "normalized_name": "wings over europe" + }, + { + "appid": 281610, + "normalized_name": "homeworld deserts of kharak" + }, + { + "appid": 281640, + "normalized_name": "the banner saga 2" + }, + { + "appid": 281750, + "normalized_name": "munin" + }, + { + "appid": 281820, + "normalized_name": "explodemon" + }, + { + "appid": 281840, + "normalized_name": "4pm" + }, + { + "appid": 281860, + "normalized_name": "reflex" + }, + { + "appid": 281920, + "normalized_name": "splatter zombiecalypse now" + }, + { + "appid": 281940, + "normalized_name": "woolfe the red hood diaries" + }, + { + "appid": 281990, + "normalized_name": "stellaris" + }, + { + "appid": 282010, + "normalized_name": "carmageddon max pack" + }, + { + "appid": 282030, + "normalized_name": "carmageddon 2 carpocalypse now" + }, + { + "appid": 282050, + "normalized_name": "mx vs. atv supercross encore" + }, + { + "appid": 282070, + "normalized_name": "this war of mine" + }, + { + "appid": 282100, + "normalized_name": "fearless fantasy" + }, + { + "appid": 282140, + "normalized_name": "soma" + }, + { + "appid": 282210, + "normalized_name": "sid meier's starships" + }, + { + "appid": 282370, + "normalized_name": "future perfect" + }, + { + "appid": 282400, + "normalized_name": "superpower 2 steam" + }, + { + "appid": 282440, + "normalized_name": "quake live" + }, + { + "appid": 282530, + "normalized_name": "castlevania lords of shadow – mirror of fate hd" + }, + { + "appid": 282560, + "normalized_name": "rollercoaster tycoon world" + }, + { + "appid": 282590, + "normalized_name": "star ruler 2" + }, + { + "appid": 282620, + "normalized_name": "the battle of sol" + }, + { + "appid": 282640, + "normalized_name": "lost orbit" + }, + { + "appid": 282680, + "normalized_name": "warring states" + }, + { + "appid": 282760, + "normalized_name": "circuits" + }, + { + "appid": 282780, + "normalized_name": "stick 'em up 2 paper adventures" + }, + { + "appid": 282800, + "normalized_name": "100% orange juice" + }, + { + "appid": 282860, + "normalized_name": "masterspace" + }, + { + "appid": 282880, + "normalized_name": "faeverse alchemy" + }, + { + "appid": 282900, + "normalized_name": "hyperdimension neptunia re;birth1" + }, + { + "appid": 283000, + "normalized_name": "strategic war in europe" + }, + { + "appid": 283020, + "normalized_name": "the campaign series fall weiss" + }, + { + "appid": 283040, + "normalized_name": "paper dungeons" + }, + { + "appid": 283060, + "normalized_name": "lucent heart" + }, + { + "appid": 283080, + "normalized_name": "super chibi knight" + }, + { + "appid": 283160, + "normalized_name": "house of the dying sun" + }, + { + "appid": 283180, + "normalized_name": "the samaritan paradox" + }, + { + "appid": 283230, + "normalized_name": "spoiler alert" + }, + { + "appid": 283270, + "normalized_name": "jagged alliance 1 gold" + }, + { + "appid": 283290, + "normalized_name": "nosferatu the wrath of malachi" + }, + { + "appid": 283310, + "normalized_name": "soulbringer" + }, + { + "appid": 283330, + "normalized_name": "desert thunder" + }, + { + "appid": 283350, + "normalized_name": "eurofighter typhoon" + }, + { + "appid": 283370, + "normalized_name": "marine sharpshooter ii jungle warfare" + }, + { + "appid": 283390, + "normalized_name": "incoming forces" + }, + { + "appid": 283410, + "normalized_name": "ct special forces fire for effect" + }, + { + "appid": 283430, + "normalized_name": "litil divil" + }, + { + "appid": 283470, + "normalized_name": "the secret of hildegards" + }, + { + "appid": 283490, + "normalized_name": "ihf handball challenge 12" + }, + { + "appid": 283560, + "normalized_name": "munich bus simulator" + }, + { + "appid": 283580, + "normalized_name": "new york bus simulator" + }, + { + "appid": 283600, + "normalized_name": "world of subways 2 – berlin line 7" + }, + { + "appid": 283640, + "normalized_name": "salt and sanctuary" + }, + { + "appid": 283660, + "normalized_name": "rabbit hole 3d steam" + }, + { + "appid": 283680, + "normalized_name": "astebreed" + }, + { + "appid": 283820, + "normalized_name": "kamui" + }, + { + "appid": 283840, + "normalized_name": "alltynex second" + }, + { + "appid": 283880, + "normalized_name": "heroine's quest the herald of ragnarok" + }, + { + "appid": 283920, + "normalized_name": "putt putt joins the parade" + }, + { + "appid": 283940, + "normalized_name": "freddi fish and the case of the missing kelp seeds" + }, + { + "appid": 283960, + "normalized_name": "pajama sam no need to hide when it's dark outside" + }, + { + "appid": 283980, + "normalized_name": "spy fox in \"dry cereal\"" + }, + { + "appid": 284000, + "normalized_name": "putt putt and pep's balloon o rama" + }, + { + "appid": 284020, + "normalized_name": "freddi fish and luther's maze madness" + }, + { + "appid": 284050, + "normalized_name": "sanitarium" + }, + { + "appid": 284080, + "normalized_name": "lost squad" + }, + { + "appid": 284100, + "normalized_name": "unclaimed world" + }, + { + "appid": 284140, + "normalized_name": "majestic nights" + }, + { + "appid": 284160, + "normalized_name": "beamng.drive" + }, + { + "appid": 284180, + "normalized_name": "magicians & looters" + }, + { + "appid": 284200, + "normalized_name": "robot rescue revolution" + }, + { + "appid": 284220, + "normalized_name": "diadra empty" + }, + { + "appid": 284240, + "normalized_name": "maize" + }, + { + "appid": 284260, + "normalized_name": "panoramical" + }, + { + "appid": 284390, + "normalized_name": "the last door collector's" + }, + { + "appid": 284410, + "normalized_name": "cornerstone the song of tyrim" + }, + { + "appid": 284460, + "normalized_name": "deadcore" + }, + { + "appid": 284710, + "normalized_name": "abyss the wraiths of eden" + }, + { + "appid": 284730, + "normalized_name": "dark arcana the carnival" + }, + { + "appid": 284750, + "normalized_name": "enigmatis the ghosts of maple creek" + }, + { + "appid": 284770, + "normalized_name": "enigmatis 2 the mists of ravenwood" + }, + { + "appid": 284830, + "normalized_name": "clockwork tales of glass and ink" + }, + { + "appid": 284850, + "normalized_name": "grim legends the forsaken bride" + }, + { + "appid": 284870, + "normalized_name": "9 clues the secret of serpent creek" + }, + { + "appid": 284890, + "normalized_name": "left in the dark no one on board" + }, + { + "appid": 284910, + "normalized_name": "purgatory war of the damned" + }, + { + "appid": 284930, + "normalized_name": "speed kills" + }, + { + "appid": 284950, + "normalized_name": "pixel puzzles japan" + }, + { + "appid": 284970, + "normalized_name": "project root" + }, + { + "appid": 284990, + "normalized_name": "solarix" + }, + { + "appid": 285010, + "normalized_name": "pixel puzzles undeadz" + }, + { + "appid": 285070, + "normalized_name": "between me and the night" + }, + { + "appid": 285090, + "normalized_name": "robowars" + }, + { + "appid": 285110, + "normalized_name": "gearcity" + }, + { + "appid": 285130, + "normalized_name": "battleplan american civil war" + }, + { + "appid": 285160, + "normalized_name": "lego the hobbit" + }, + { + "appid": 285190, + "normalized_name": "warhammer 40 000 dawn of war iii" + }, + { + "appid": 285310, + "normalized_name": "rollercoaster tycoon deluxe" + }, + { + "appid": 285330, + "normalized_name": "rollercoaster tycoon 2 triple thrill pack" + }, + { + "appid": 285350, + "normalized_name": "kingdom elemental" + }, + { + "appid": 285380, + "normalized_name": "on the road the truck simulator" + }, + { + "appid": 285420, + "normalized_name": "deadly sin 2" + }, + { + "appid": 285480, + "normalized_name": "the entente gold" + }, + { + "appid": 285500, + "normalized_name": "hard truck apocalypse / ex machina" + }, + { + "appid": 285520, + "normalized_name": "sledgehammer / gear grinder" + }, + { + "appid": 285670, + "normalized_name": "galactic command echo squad se" + }, + { + "appid": 285740, + "normalized_name": "kitty powers' matchmaker" + }, + { + "appid": 285800, + "normalized_name": "braveland" + }, + { + "appid": 285820, + "normalized_name": "action henk" + }, + { + "appid": 285840, + "normalized_name": "enemy mind" + }, + { + "appid": 285900, + "normalized_name": "gang beasts" + }, + { + "appid": 285920, + "normalized_name": "terratech" + }, + { + "appid": 285980, + "normalized_name": "kromaia" + }, + { + "appid": 286000, + "normalized_name": "tooth and tail" + }, + { + "appid": 286040, + "normalized_name": "dead effect" + }, + { + "appid": 286100, + "normalized_name": "you have to win the game" + }, + { + "appid": 286120, + "normalized_name": "questrun" + }, + { + "appid": 286140, + "normalized_name": "eidolon" + }, + { + "appid": 286160, + "normalized_name": "tabletop simulator" + }, + { + "appid": 286200, + "normalized_name": "reignmaker" + }, + { + "appid": 286220, + "normalized_name": "pier solar and the great architects" + }, + { + "appid": 286240, + "normalized_name": "dog sled saga" + }, + { + "appid": 286260, + "normalized_name": "fault milestone one" + }, + { + "appid": 286280, + "normalized_name": "steel armor blaze of war" + }, + { + "appid": 286300, + "normalized_name": "algo bot" + }, + { + "appid": 286320, + "normalized_name": "oknytt" + }, + { + "appid": 286360, + "normalized_name": "shadows on the vatican act i greed" + }, + { + "appid": 286380, + "normalized_name": "strata" + }, + { + "appid": 286460, + "normalized_name": "black mirror ii" + }, + { + "appid": 286480, + "normalized_name": "black mirror iii" + }, + { + "appid": 286520, + "normalized_name": "viking brothers" + }, + { + "appid": 286540, + "normalized_name": "nearwood collector's" + }, + { + "appid": 286660, + "normalized_name": "avoid sensory overload" + }, + { + "appid": 286690, + "normalized_name": "metro 2033 redux" + }, + { + "appid": 286750, + "normalized_name": "zoo empire" + }, + { + "appid": 286770, + "normalized_name": "shadow ops red mercury" + }, + { + "appid": 286790, + "normalized_name": "falcon a.t." + }, + { + "appid": 286810, + "normalized_name": "hard truck apocalypse rise of clans / ex machina meridian 113" + }, + { + "appid": 286830, + "normalized_name": "hard truck apocalypse arcade / ex machina arcade" + }, + { + "appid": 286880, + "normalized_name": "disney planes" + }, + { + "appid": 286930, + "normalized_name": "crouching pony hidden dragon" + }, + { + "appid": 287020, + "normalized_name": "harvester" + }, + { + "appid": 287070, + "normalized_name": "battle academy" + }, + { + "appid": 287100, + "normalized_name": "chaos domain" + }, + { + "appid": 287120, + "normalized_name": "ionball 2 ionstorm" + }, + { + "appid": 287200, + "normalized_name": "wildlife park 3" + }, + { + "appid": 287220, + "normalized_name": "autocraft" + }, + { + "appid": 287290, + "normalized_name": "resident evil revelations 2" + }, + { + "appid": 287310, + "normalized_name": "re volt" + }, + { + "appid": 287370, + "normalized_name": "coh 2 the western front armies us forces" + }, + { + "appid": 287371, + "normalized_name": "coh 2 the western front armies oberkommando west" + }, + { + "appid": 287390, + "normalized_name": "metro last light redux" + }, + { + "appid": 287450, + "normalized_name": "rise of nations extended" + }, + { + "appid": 287580, + "normalized_name": "pandora first contact" + }, + { + "appid": 287600, + "normalized_name": "sunset" + }, + { + "appid": 287630, + "normalized_name": "the council" + }, + { + "appid": 287700, + "normalized_name": "metal gear solid v the phantom pain" + }, + { + "appid": 287720, + "normalized_name": "nostradamus the last prophecy" + }, + { + "appid": 287740, + "normalized_name": "the witch's yarn" + }, + { + "appid": 287780, + "normalized_name": "derrick the deathfin" + }, + { + "appid": 287840, + "normalized_name": "ty the tasmanian tiger 4" + }, + { + "appid": 287900, + "normalized_name": "pro pinball ultra" + }, + { + "appid": 287920, + "normalized_name": "mortal online" + }, + { + "appid": 287960, + "normalized_name": "yomi" + }, + { + "appid": 287980, + "normalized_name": "mini metro" + }, + { + "appid": 288000, + "normalized_name": "oncoming death steam" + }, + { + "appid": 288020, + "normalized_name": "rex rocket" + }, + { + "appid": 288040, + "normalized_name": "actual sunlight" + }, + { + "appid": 288060, + "normalized_name": "whispering willows" + }, + { + "appid": 288080, + "normalized_name": "bonetown the second coming" + }, + { + "appid": 288100, + "normalized_name": "mechrunner" + }, + { + "appid": 288120, + "normalized_name": "dungeonmans" + }, + { + "appid": 288140, + "normalized_name": "perfect golf" + }, + { + "appid": 288160, + "normalized_name": "the room" + }, + { + "appid": 288220, + "normalized_name": "backstage pass" + }, + { + "appid": 288260, + "normalized_name": "conflicks revolutionary space battles" + }, + { + "appid": 288370, + "normalized_name": "strike suit zero director's cut" + }, + { + "appid": 288390, + "normalized_name": "nobunaga's ambition souzou with power up kit" + }, + { + "appid": 288470, + "normalized_name": "fable anniversary" + }, + { + "appid": 288500, + "normalized_name": "black rainbow mystery" + }, + { + "appid": 288570, + "normalized_name": "wolfenstein the new order" + }, + { + "appid": 288610, + "normalized_name": "kingdom tales 2" + }, + { + "appid": 288630, + "normalized_name": "sharpe investigations death on the seine" + }, + { + "appid": 288650, + "normalized_name": "htr+ slot car simulation" + }, + { + "appid": 288670, + "normalized_name": "myths of orion light from the north" + }, + { + "appid": 288690, + "normalized_name": "sudokuball detective" + }, + { + "appid": 288710, + "normalized_name": "demolition master 3d" + }, + { + "appid": 288730, + "normalized_name": "redneck racers" + }, + { + "appid": 288750, + "normalized_name": "hotel collector's (brightstone mysteries paranormal hotel)" + }, + { + "appid": 288790, + "normalized_name": "white haven mysteries" + }, + { + "appid": 288830, + "normalized_name": "voodoo whisperer curse of a legend" + }, + { + "appid": 288840, + "normalized_name": "haunted past realm of ghosts" + }, + { + "appid": 288860, + "normalized_name": "realms of arkania star trail" + }, + { + "appid": 288880, + "normalized_name": "pineview drive" + }, + { + "appid": 288930, + "normalized_name": "the charnel house trilogy" + }, + { + "appid": 288970, + "normalized_name": "dark lore mysteries the hunt for truth" + }, + { + "appid": 289050, + "normalized_name": "shannon tweed's attack of the groupies" + }, + { + "appid": 289060, + "normalized_name": "the emerald tablet" + }, + { + "appid": 289070, + "normalized_name": "sid meier’s civilization vi" + }, + { + "appid": 289090, + "normalized_name": "ampu tea" + }, + { + "appid": 289130, + "normalized_name": "endless legend" + }, + { + "appid": 289180, + "normalized_name": "a.i.m.2 clan wars" + }, + { + "appid": 289200, + "normalized_name": "ascension to the throne" + }, + { + "appid": 289220, + "normalized_name": "borderzone" + }, + { + "appid": 289240, + "normalized_name": "perimeter emperor's testament" + }, + { + "appid": 289260, + "normalized_name": "dreamscapes the sandman premium" + }, + { + "appid": 289280, + "normalized_name": "el matador" + }, + { + "appid": 289300, + "normalized_name": "faces of war" + }, + { + "appid": 289320, + "normalized_name": "fairy tale about father frost ivan and nastya" + }, + { + "appid": 289340, + "normalized_name": "freight tycoon inc." + }, + { + "appid": 289360, + "normalized_name": "konung 2" + }, + { + "appid": 289380, + "normalized_name": "konung 3 ties of the dynasty" + }, + { + "appid": 289400, + "normalized_name": "parkan 2" + }, + { + "appid": 289420, + "normalized_name": "planet alcatraz" + }, + { + "appid": 289440, + "normalized_name": "perimeter" + }, + { + "appid": 289460, + "normalized_name": "rc cars" + }, + { + "appid": 289480, + "normalized_name": "the tomorrow war" + }, + { + "appid": 289500, + "normalized_name": "ufo aftershock" + }, + { + "appid": 289520, + "normalized_name": "king's bounty dark side" + }, + { + "appid": 289580, + "normalized_name": "aggression europe under fire" + }, + { + "appid": 289600, + "normalized_name": "marauder" + }, + { + "appid": 289620, + "normalized_name": "collapse" + }, + { + "appid": 289650, + "normalized_name": "assassin's creed unity" + }, + { + "appid": 289690, + "normalized_name": "lara croft and the temple of osiris" + }, + { + "appid": 289760, + "normalized_name": "rocketsrocketsrockets" + }, + { + "appid": 289780, + "normalized_name": "requiem desiderium mortis" + }, + { + "appid": 289800, + "normalized_name": "dracula the resurrection" + }, + { + "appid": 289820, + "normalized_name": "dracula 2 the last sanctuary" + }, + { + "appid": 289840, + "normalized_name": "dracula 3 the path of the dragon" + }, + { + "appid": 289890, + "normalized_name": "7 62 high calibre" + }, + { + "appid": 289930, + "normalized_name": "transocean the shipping company" + }, + { + "appid": 289950, + "normalized_name": "construction simulator 2015" + }, + { + "appid": 289980, + "normalized_name": "split signal" + }, + { + "appid": 290000, + "normalized_name": "dubwars" + }, + { + "appid": 290020, + "normalized_name": "logicbots" + }, + { + "appid": 290040, + "normalized_name": "retro game crunch" + }, + { + "appid": 290060, + "normalized_name": "glitchspace" + }, + { + "appid": 290080, + "normalized_name": "life is feudal your own" + }, + { + "appid": 290100, + "normalized_name": "bulwark evolution falconeer chronicles" + }, + { + "appid": 290180, + "normalized_name": "gnomancer" + }, + { + "appid": 290260, + "normalized_name": "sokobond" + }, + { + "appid": 290280, + "normalized_name": "volt" + }, + { + "appid": 290300, + "normalized_name": "rebel galaxy" + }, + { + "appid": 290320, + "normalized_name": "project temporality" + }, + { + "appid": 290340, + "normalized_name": "armello" + }, + { + "appid": 290380, + "normalized_name": "micron" + }, + { + "appid": 290440, + "normalized_name": "qualia 3 multi agent" + }, + { + "appid": 290460, + "normalized_name": "legionwood 2 rise of the eternal's realm director's cut" + }, + { + "appid": 290470, + "normalized_name": "onigiri" + }, + { + "appid": 290490, + "normalized_name": "the flock" + }, + { + "appid": 290510, + "normalized_name": "gnog" + }, + { + "appid": 290530, + "normalized_name": "clandestine" + }, + { + "appid": 290650, + "normalized_name": "time ramesside (a new reckoning)" + }, + { + "appid": 290690, + "normalized_name": "tonight we riot" + }, + { + "appid": 290730, + "normalized_name": "my lands black gem hunting" + }, + { + "appid": 290770, + "normalized_name": "the fall" + }, + { + "appid": 290790, + "normalized_name": "grey goo" + }, + { + "appid": 290810, + "normalized_name": "colossal kaiju combat kaijuland battles" + }, + { + "appid": 290850, + "normalized_name": "x team" + }, + { + "appid": 290870, + "normalized_name": "steam squad" + }, + { + "appid": 290890, + "normalized_name": "you must build a boat" + }, + { + "appid": 290970, + "normalized_name": "1849" + }, + { + "appid": 290990, + "normalized_name": "flower shop summer in fairbrook" + }, + { + "appid": 291010, + "normalized_name": "the hat man shadow ward" + }, + { + "appid": 291030, + "normalized_name": "always remember me" + }, + { + "appid": 291050, + "normalized_name": "planet stronghold" + }, + { + "appid": 291070, + "normalized_name": "slip" + }, + { + "appid": 291130, + "normalized_name": "akane the kunoichi" + }, + { + "appid": 291170, + "normalized_name": "royal defense" + }, + { + "appid": 291190, + "normalized_name": "heroes of steel rpg" + }, + { + "appid": 291250, + "normalized_name": "jumpdrive" + }, + { + "appid": 291270, + "normalized_name": "vitrum" + }, + { + "appid": 291290, + "normalized_name": "motte island" + }, + { + "appid": 291330, + "normalized_name": "final slam 2" + }, + { + "appid": 291370, + "normalized_name": "undead overlord" + }, + { + "appid": 291390, + "normalized_name": "three dead zed" + }, + { + "appid": 291430, + "normalized_name": "lost marbles" + }, + { + "appid": 291480, + "normalized_name": "warface clutch" + }, + { + "appid": 291550, + "normalized_name": "brawlhalla" + }, + { + "appid": 291610, + "normalized_name": "growing pains" + }, + { + "appid": 291630, + "normalized_name": "mirror mysteries" + }, + { + "appid": 291640, + "normalized_name": "mirror mysteries 2" + }, + { + "appid": 291650, + "normalized_name": "pillars of eternity" + }, + { + "appid": 291690, + "normalized_name": "empathy path of whispers" + }, + { + "appid": 291710, + "normalized_name": "the lost crown" + }, + { + "appid": 291750, + "normalized_name": "the last crown blackenrock" + }, + { + "appid": 291770, + "normalized_name": "the last crown midnight horror" + }, + { + "appid": 291840, + "normalized_name": "the feud wild west tactics" + }, + { + "appid": 291860, + "normalized_name": "pit people" + }, + { + "appid": 291910, + "normalized_name": "firefighters 2014" + }, + { + "appid": 291930, + "normalized_name": "industry empire" + }, + { + "appid": 291960, + "normalized_name": "elminage gothic" + }, + { + "appid": 292000, + "normalized_name": "no more room in hell 2" + }, + { + "appid": 292030, + "normalized_name": "the witcher 3 wild hunt" + }, + { + "appid": 292060, + "normalized_name": "titanfall the final hours" + }, + { + "appid": 292090, + "normalized_name": "rube works the official rube goldberg invention game" + }, + { + "appid": 292120, + "normalized_name": "final fantasy xiii" + }, + { + "appid": 292140, + "normalized_name": "final fantasy xiii 2" + }, + { + "appid": 292160, + "normalized_name": "ufo aftermath" + }, + { + "appid": 292180, + "normalized_name": "x plane 10 global 64 bit" + }, + { + "appid": 292200, + "normalized_name": "crazy plant shop" + }, + { + "appid": 292240, + "normalized_name": "spy fox 2 \"some assembly required\"" + }, + { + "appid": 292260, + "normalized_name": "spy fox 3 \"operation ozone\"" + }, + { + "appid": 292280, + "normalized_name": "spy fox in cheese chase" + }, + { + "appid": 292300, + "normalized_name": "spy fox in hold the mustard" + }, + { + "appid": 292330, + "normalized_name": "starship corporation" + }, + { + "appid": 292370, + "normalized_name": "darkend" + }, + { + "appid": 292380, + "normalized_name": "racer 8" + }, + { + "appid": 292390, + "normalized_name": "realms of the haunting" + }, + { + "appid": 292400, + "normalized_name": "unrest" + }, + { + "appid": 292410, + "normalized_name": "street racing syndicate" + }, + { + "appid": 292420, + "normalized_name": "panzer elite action gold" + }, + { + "appid": 292480, + "normalized_name": "magical battle festa" + }, + { + "appid": 292500, + "normalized_name": "kero blaster" + }, + { + "appid": 292570, + "normalized_name": "chompy chomp chomp" + }, + { + "appid": 292600, + "normalized_name": "duet" + }, + { + "appid": 292620, + "normalized_name": "pressured" + }, + { + "appid": 292630, + "normalized_name": "uriel's chasm" + }, + { + "appid": 292660, + "normalized_name": "princess isabella" + }, + { + "appid": 292670, + "normalized_name": "princess isabella return of the curse" + }, + { + "appid": 292730, + "normalized_name": "call of duty infinite warfare" + }, + { + "appid": 292760, + "normalized_name": "rise of prussia gold" + }, + { + "appid": 292780, + "normalized_name": "pajama sam 2 thunder and lightning aren't so frightening" + }, + { + "appid": 292800, + "normalized_name": "pajama sam 3 you are what you eat from your head to your feet" + }, + { + "appid": 292820, + "normalized_name": "pajama sam 4 life is rough when you lose your stuff!" + }, + { + "appid": 292840, + "normalized_name": "pajama sam's sock works" + }, + { + "appid": 292860, + "normalized_name": "pajama sam's lost & found" + }, + { + "appid": 292880, + "normalized_name": "robin's quest" + }, + { + "appid": 292910, + "normalized_name": "deponia the journey" + }, + { + "appid": 292930, + "normalized_name": "black mirror i" + }, + { + "appid": 292990, + "normalized_name": "nobunaga's ambition souzou" + }, + { + "appid": 293160, + "normalized_name": "antharion" + }, + { + "appid": 293180, + "normalized_name": "overcast walden and the werewolf" + }, + { + "appid": 293200, + "normalized_name": "sentinel" + }, + { + "appid": 293240, + "normalized_name": "cosmochoria" + }, + { + "appid": 293260, + "normalized_name": "card hunter" + }, + { + "appid": 293320, + "normalized_name": "coma mortuary" + }, + { + "appid": 293340, + "normalized_name": "the good life" + }, + { + "appid": 293420, + "normalized_name": "heldric the legend of the shoemaker" + }, + { + "appid": 293440, + "normalized_name": "elliot quest" + }, + { + "appid": 293460, + "normalized_name": "i shall remain" + }, + { + "appid": 293480, + "normalized_name": "frontiers" + }, + { + "appid": 293600, + "normalized_name": "arson and plunder unleashed" + }, + { + "appid": 293660, + "normalized_name": "tri of friendship and madness" + }, + { + "appid": 293680, + "normalized_name": "cinders" + }, + { + "appid": 293720, + "normalized_name": "dark raid" + }, + { + "appid": 293740, + "normalized_name": "road not taken" + }, + { + "appid": 293760, + "normalized_name": "automation the car company tycoon game" + }, + { + "appid": 293780, + "normalized_name": "crawl" + }, + { + "appid": 293800, + "normalized_name": "classroom aquatic" + }, + { + "appid": 293840, + "normalized_name": "cult of the wind" + }, + { + "appid": 293860, + "normalized_name": "white noise online" + }, + { + "appid": 293880, + "normalized_name": "dark scavenger" + }, + { + "appid": 293900, + "normalized_name": "pivvot" + }, + { + "appid": 293920, + "normalized_name": "spirited heart deluxe" + }, + { + "appid": 293940, + "normalized_name": "kill the bad guy" + }, + { + "appid": 293960, + "normalized_name": "spice road" + }, + { + "appid": 293980, + "normalized_name": "baron wittard" + }, + { + "appid": 294000, + "normalized_name": "knight squad" + }, + { + "appid": 294020, + "normalized_name": "merchants of kaidan" + }, + { + "appid": 294040, + "normalized_name": "loot hero dx" + }, + { + "appid": 294060, + "normalized_name": "aaru's awakening" + }, + { + "appid": 294100, + "normalized_name": "rimworld" + }, + { + "appid": 294140, + "normalized_name": "they breathe" + }, + { + "appid": 294160, + "normalized_name": "galcon 2 galactic conquest" + }, + { + "appid": 294190, + "normalized_name": "a men 2" + }, + { + "appid": 294230, + "normalized_name": "millie" + }, + { + "appid": 294280, + "normalized_name": "scooby doo! & looney tunes cartoon universe adventure" + }, + { + "appid": 294370, + "normalized_name": "crowntakers" + }, + { + "appid": 294390, + "normalized_name": "escape the lost kingdom the forgotten pharaoh" + }, + { + "appid": 294440, + "normalized_name": "shadowgate" + }, + { + "appid": 294460, + "normalized_name": "fenix rage" + }, + { + "appid": 294530, + "normalized_name": "freddi fish 2 the case of the haunted schoolhouse" + }, + { + "appid": 294540, + "normalized_name": "freddi fish 3 the case of the stolen conch shell" + }, + { + "appid": 294550, + "normalized_name": "freddi fish 4 the case of the hogfish rustlers of briny gulch" + }, + { + "appid": 294570, + "normalized_name": "freddi fish 5 featuring mess hall mania the case of the creature of coral cove" + }, + { + "appid": 294580, + "normalized_name": "freddi fish and luther's water worries" + }, + { + "appid": 294590, + "normalized_name": "wars and warriors joan of arc" + }, + { + "appid": 294650, + "normalized_name": "putt putt goes to the moon" + }, + { + "appid": 294660, + "normalized_name": "putt putt saves the zoo" + }, + { + "appid": 294670, + "normalized_name": "putt putt travels through time" + }, + { + "appid": 294680, + "normalized_name": "putt putt enters the race" + }, + { + "appid": 294690, + "normalized_name": "putt putt joins the circus" + }, + { + "appid": 294700, + "normalized_name": "putt putt pep's birthday surprise" + }, + { + "appid": 294710, + "normalized_name": "putt putt and pep's dog on a stick" + }, + { + "appid": 294720, + "normalized_name": "putt putt and fatty bear's activity pack" + }, + { + "appid": 294730, + "normalized_name": "marine park empire" + }, + { + "appid": 294750, + "normalized_name": "anomaly defenders" + }, + { + "appid": 294770, + "normalized_name": "haegemonia legions of iron" + }, + { + "appid": 294790, + "normalized_name": "haegemonia the solon heritage" + }, + { + "appid": 294810, + "normalized_name": "blazblue continuum shift extend" + }, + { + "appid": 294830, + "normalized_name": "recycle" + }, + { + "appid": 294860, + "normalized_name": "valkyria chronicles" + }, + { + "appid": 295250, + "normalized_name": "stranded" + }, + { + "appid": 295490, + "normalized_name": "schrodinger’s cat and the raiders of the lost quark" + }, + { + "appid": 295590, + "normalized_name": "hero generations" + }, + { + "appid": 295610, + "normalized_name": "inescapable" + }, + { + "appid": 295630, + "normalized_name": "defense zone 2" + }, + { + "appid": 295650, + "normalized_name": "streng check" + }, + { + "appid": 295670, + "normalized_name": "hive jump" + }, + { + "appid": 295690, + "normalized_name": "particle mace" + }, + { + "appid": 295710, + "normalized_name": "darkwind war on wheels" + }, + { + "appid": 295730, + "normalized_name": "sweezy gunner" + }, + { + "appid": 295750, + "normalized_name": "the floor is jelly" + }, + { + "appid": 295770, + "normalized_name": "rogue shooter the fps roguelike" + }, + { + "appid": 295790, + "normalized_name": "never alone (kisima ingitchuna)" + }, + { + "appid": 295870, + "normalized_name": "the dungeoning" + }, + { + "appid": 295910, + "normalized_name": "olympia rising" + }, + { + "appid": 295930, + "normalized_name": "swipecart" + }, + { + "appid": 295990, + "normalized_name": "evopollution" + }, + { + "appid": 296010, + "normalized_name": "neonxsz" + }, + { + "appid": 296030, + "normalized_name": "qasir al wasat international" + }, + { + "appid": 296050, + "normalized_name": "battlepaths" + }, + { + "appid": 296070, + "normalized_name": "mind path to thalamus enhanced" + }, + { + "appid": 296150, + "normalized_name": "g ball" + }, + { + "appid": 296180, + "normalized_name": "iron storm" + }, + { + "appid": 296210, + "normalized_name": "brigade e5 new jagged union" + }, + { + "appid": 296220, + "normalized_name": "farm frenzy 4" + }, + { + "appid": 296240, + "normalized_name": "the promised land" + }, + { + "appid": 296280, + "normalized_name": "towncraft" + }, + { + "appid": 296470, + "normalized_name": "mount your friends" + }, + { + "appid": 296490, + "normalized_name": "gemcraft chasing shadows" + }, + { + "appid": 296510, + "normalized_name": "magnetic by nature" + }, + { + "appid": 296530, + "normalized_name": "coldfire keep" + }, + { + "appid": 296550, + "normalized_name": "niko through the dream" + }, + { + "appid": 296570, + "normalized_name": "lords of xulima" + }, + { + "appid": 296590, + "normalized_name": "draconian wars" + }, + { + "appid": 296630, + "normalized_name": "kraven manor" + }, + { + "appid": 296650, + "normalized_name": "the great jitters pudding panic" + }, + { + "appid": 296710, + "normalized_name": "monstrum" + }, + { + "appid": 296730, + "normalized_name": "viktor" + }, + { + "appid": 296770, + "normalized_name": "real boxing" + }, + { + "appid": 296790, + "normalized_name": "thunderwheels" + }, + { + "appid": 296830, + "normalized_name": "lucius ii" + }, + { + "appid": 296850, + "normalized_name": "al emmo and the lost dutchman's mine" + }, + { + "appid": 296870, + "normalized_name": "dreaming sarah" + }, + { + "appid": 296890, + "normalized_name": "neon shadow" + }, + { + "appid": 296910, + "normalized_name": "8bitboy" + }, + { + "appid": 296930, + "normalized_name": "ascendant" + }, + { + "appid": 296970, + "normalized_name": "renowned explorers international society" + }, + { + "appid": 297000, + "normalized_name": "heroes of might & magic iii hd" + }, + { + "appid": 297020, + "normalized_name": "the culling of the cows" + }, + { + "appid": 297060, + "normalized_name": "freaking meatbags" + }, + { + "appid": 297070, + "normalized_name": "nicolas eymerich the inquisitor book ii the village" + }, + { + "appid": 297080, + "normalized_name": "navpoint" + }, + { + "appid": 297110, + "normalized_name": "cosmic dj" + }, + { + "appid": 297120, + "normalized_name": "heavy bullets" + }, + { + "appid": 297130, + "normalized_name": "titan souls" + }, + { + "appid": 297190, + "normalized_name": "grayland" + }, + { + "appid": 297210, + "normalized_name": "famaze" + }, + { + "appid": 297290, + "normalized_name": "detective case and clown bot in murder in the hotel lisbon" + }, + { + "appid": 297310, + "normalized_name": "pro wrestling x" + }, + { + "appid": 297330, + "normalized_name": "arcadecraft" + }, + { + "appid": 297350, + "normalized_name": "the old city leviathan" + }, + { + "appid": 297370, + "normalized_name": "hero of many" + }, + { + "appid": 297410, + "normalized_name": "trace vector" + }, + { + "appid": 297450, + "normalized_name": "zombies on a plane" + }, + { + "appid": 297470, + "normalized_name": "xsyon prelude" + }, + { + "appid": 297490, + "normalized_name": "spy chameleon rgb agent" + }, + { + "appid": 297570, + "normalized_name": "warrior kings" + }, + { + "appid": 297590, + "normalized_name": "monsters ate my birthday cake" + }, + { + "appid": 297620, + "normalized_name": "rocko's quest" + }, + { + "appid": 297720, + "normalized_name": "corpse of discovery" + }, + { + "appid": 297740, + "normalized_name": "overruled!" + }, + { + "appid": 297750, + "normalized_name": "close combat gateway to caen" + }, + { + "appid": 297760, + "normalized_name": "qvadriga" + }, + { + "appid": 297860, + "normalized_name": "split/second" + }, + { + "appid": 297920, + "normalized_name": "space colony steam" + }, + { + "appid": 298020, + "normalized_name": "escape the museum" + }, + { + "appid": 298030, + "normalized_name": "total annihilation" + }, + { + "appid": 298050, + "normalized_name": "master of orion" + }, + { + "appid": 298110, + "normalized_name": "far cry 4" + }, + { + "appid": 298140, + "normalized_name": "rhiannon curse of the four branches" + }, + { + "appid": 298160, + "normalized_name": "eldevin" + }, + { + "appid": 298180, + "normalized_name": "the desolate hope" + }, + { + "appid": 298220, + "normalized_name": "terraformer expedition to mars" + }, + { + "appid": 298240, + "normalized_name": "war trigger 3" + }, + { + "appid": 298260, + "normalized_name": "only if" + }, + { + "appid": 298280, + "normalized_name": "xenoraptor" + }, + { + "appid": 298340, + "normalized_name": "flashout 2" + }, + { + "appid": 298360, + "normalized_name": "immortal defense" + }, + { + "appid": 298380, + "normalized_name": "reef shot" + }, + { + "appid": 298400, + "normalized_name": "knightmare tower" + }, + { + "appid": 298420, + "normalized_name": "dreii" + }, + { + "appid": 298480, + "normalized_name": "victory at sea" + }, + { + "appid": 298520, + "normalized_name": "orbital gear" + }, + { + "appid": 298560, + "normalized_name": "captain forever remix" + }, + { + "appid": 298600, + "normalized_name": "lovely planet" + }, + { + "appid": 298610, + "normalized_name": "ylands" + }, + { + "appid": 298630, + "normalized_name": "the escapists" + }, + { + "appid": 298790, + "normalized_name": "rock boshers dx directors cut" + }, + { + "appid": 298820, + "normalized_name": "millennium 2 take me higher" + }, + { + "appid": 298830, + "normalized_name": "millennium 3 cry wolf" + }, + { + "appid": 298840, + "normalized_name": "millennium 4 beyond sunset" + }, + { + "appid": 298850, + "normalized_name": "millennium 5 the battle of the millennium" + }, + { + "appid": 298930, + "normalized_name": "darkness within 1 in pursuit of loath nolder" + }, + { + "appid": 298950, + "normalized_name": "darkness within 2 the dark lineage" + }, + { + "appid": 299020, + "normalized_name": "runaway express mystery" + }, + { + "appid": 299050, + "normalized_name": "blood ii the chosen + expansion" + }, + { + "appid": 299070, + "normalized_name": "warrior kings battles" + }, + { + "appid": 299080, + "normalized_name": "the white chamber" + }, + { + "appid": 299090, + "normalized_name": "cosplay maker" + }, + { + "appid": 299100, + "normalized_name": "back to life 2" + }, + { + "appid": 299110, + "normalized_name": "theatre of the absurd" + }, + { + "appid": 299150, + "normalized_name": "empress of the deep" + }, + { + "appid": 299160, + "normalized_name": "empress of the deep 2 song of the blue whale" + }, + { + "appid": 299170, + "normalized_name": "vault cracker" + }, + { + "appid": 299180, + "normalized_name": "millionaire manor" + }, + { + "appid": 299250, + "normalized_name": "european ship simulator" + }, + { + "appid": 299260, + "normalized_name": "commando jack" + }, + { + "appid": 299340, + "normalized_name": "habitat" + }, + { + "appid": 299360, + "normalized_name": "block n load" + }, + { + "appid": 299380, + "normalized_name": "masquerade the baubles of doom" + }, + { + "appid": 299400, + "normalized_name": "xing the land beyond" + }, + { + "appid": 299420, + "normalized_name": "cubegun" + }, + { + "appid": 299440, + "normalized_name": "rooks keep" + }, + { + "appid": 299460, + "normalized_name": "woodle tree adventures" + }, + { + "appid": 299480, + "normalized_name": "rogue stormers" + }, + { + "appid": 299540, + "normalized_name": "heroes rise the prodigy" + }, + { + "appid": 299600, + "normalized_name": "dragon fin soup" + }, + { + "appid": 299660, + "normalized_name": "6180 the moon" + }, + { + "appid": 299680, + "normalized_name": "tengami" + }, + { + "appid": 299720, + "normalized_name": "terrorhedron tower defense" + }, + { + "appid": 299740, + "normalized_name": "miscreated" + }, + { + "appid": 299780, + "normalized_name": "noir syndrome" + }, + { + "appid": 299800, + "normalized_name": "the land of eyas" + }, + { + "appid": 299820, + "normalized_name": "paradigm shift" + }, + { + "appid": 299840, + "normalized_name": "metal planet" + }, + { + "appid": 299910, + "normalized_name": "forgotten myths ccg" + }, + { + "appid": 299950, + "normalized_name": "get even" + }, + { + "appid": 299970, + "normalized_name": "project motor racing" + }, + { + "appid": 300060, + "normalized_name": "adr1ft" + }, + { + "appid": 300160, + "normalized_name": "bridge!" + }, + { + "appid": 300220, + "normalized_name": "victim of xen" + }, + { + "appid": 300260, + "normalized_name": "planetoid pioneers" + }, + { + "appid": 300280, + "normalized_name": "adventurezator when pigs fly" + }, + { + "appid": 300300, + "normalized_name": "ichi" + }, + { + "appid": 300320, + "normalized_name": "the few" + }, + { + "appid": 300340, + "normalized_name": "lemma" + }, + { + "appid": 300360, + "normalized_name": "evil pumpkin the lost halloween" + }, + { + "appid": 300380, + "normalized_name": "road redemption" + }, + { + "appid": 300400, + "normalized_name": "unpossible" + }, + { + "appid": 300510, + "normalized_name": "them the summoning" + }, + { + "appid": 300540, + "normalized_name": "sweet lily dreams" + }, + { + "appid": 300550, + "normalized_name": "shadowrun dragonfall director's cut" + }, + { + "appid": 300570, + "normalized_name": "infinifactory" + }, + { + "appid": 300580, + "normalized_name": "galak z" + }, + { + "appid": 300610, + "normalized_name": "pure pool" + }, + { + "appid": 300620, + "normalized_name": "flyhunter origins" + }, + { + "appid": 300630, + "normalized_name": "pure chess grandmaster" + }, + { + "appid": 300820, + "normalized_name": "disney•pixar toy story 3 the video game" + }, + { + "appid": 300840, + "normalized_name": "juju" + }, + { + "appid": 300900, + "normalized_name": "hippocampal the white sofa" + }, + { + "appid": 300910, + "normalized_name": "monster challenge circus" + }, + { + "appid": 300970, + "normalized_name": "fiesta online na" + }, + { + "appid": 301050, + "normalized_name": "night shift" + }, + { + "appid": 301120, + "normalized_name": "eastside hockey manager" + }, + { + "appid": 301150, + "normalized_name": "the treasures of montezuma 4" + }, + { + "appid": 301190, + "normalized_name": "frederic resurrection of music" + }, + { + "appid": 301200, + "normalized_name": "frederic evil strikes back" + }, + { + "appid": 301220, + "normalized_name": "legends of persia" + }, + { + "appid": 301250, + "normalized_name": "sport1 live duel" + }, + { + "appid": 301260, + "normalized_name": "gardens inc. 2 the road to fame" + }, + { + "appid": 301280, + "normalized_name": "skin deep" + }, + { + "appid": 301300, + "normalized_name": "chicken invaders 4" + }, + { + "appid": 301320, + "normalized_name": "nolimits 2 roller coaster simulation" + }, + { + "appid": 301360, + "normalized_name": "kill fun yeah" + }, + { + "appid": 301380, + "normalized_name": "date warp" + }, + { + "appid": 301420, + "normalized_name": "third eye crime" + }, + { + "appid": 301460, + "normalized_name": "electronic super joy groove city" + }, + { + "appid": 301500, + "normalized_name": "bomb who let the dogfight?" + }, + { + "appid": 301540, + "normalized_name": "rhythm destruction" + }, + { + "appid": 301560, + "normalized_name": "white night" + }, + { + "appid": 301640, + "normalized_name": "zombie army trilogy" + }, + { + "appid": 301650, + "normalized_name": "battlezone 98 redux" + }, + { + "appid": 301670, + "normalized_name": "salammbô battle for carthage" + }, + { + "appid": 301690, + "normalized_name": "cobi treasure deluxe" + }, + { + "appid": 301700, + "normalized_name": "numba deluxe" + }, + { + "appid": 301730, + "normalized_name": "300 dwarves" + }, + { + "appid": 301750, + "normalized_name": "radical roach" + }, + { + "appid": 301760, + "normalized_name": "disney•pixar cars 2 the video game" + }, + { + "appid": 301830, + "normalized_name": "disney•pixar brave the video game" + }, + { + "appid": 301840, + "normalized_name": "city of brass" + }, + { + "appid": 301860, + "normalized_name": "submerged" + }, + { + "appid": 301910, + "normalized_name": "saints row gat out of hell" + }, + { + "appid": 301920, + "normalized_name": "war of the human tanks alter" + }, + { + "appid": 301930, + "normalized_name": "war of the human tanks limited operations" + }, + { + "appid": 301970, + "normalized_name": "screencheat" + }, + { + "appid": 301980, + "normalized_name": "disney pirates of the caribbean at worlds end" + }, + { + "appid": 301990, + "normalized_name": "school bus fun" + }, + { + "appid": 302010, + "normalized_name": "the blue flamingo" + }, + { + "appid": 302060, + "normalized_name": "trucks & trailers" + }, + { + "appid": 302080, + "normalized_name": "bus driver" + }, + { + "appid": 302110, + "normalized_name": "small town terrors pilgrim's hook collector's" + }, + { + "appid": 302130, + "normalized_name": "brink of consciousness dorian gray syndrome collector's" + }, + { + "appid": 302160, + "normalized_name": "the egyptian prophecy the fate of ramses" + }, + { + "appid": 302170, + "normalized_name": "the cameron files the secret at loch ness" + }, + { + "appid": 302180, + "normalized_name": "voyage journey to the moon" + }, + { + "appid": 302190, + "normalized_name": "amerzone the explorer’s legacy (1999)" + }, + { + "appid": 302210, + "normalized_name": "curse the eye of isis" + }, + { + "appid": 302260, + "normalized_name": "truffle saga" + }, + { + "appid": 302290, + "normalized_name": "infinite game works episode 0" + }, + { + "appid": 302310, + "normalized_name": "dungeon of elements" + }, + { + "appid": 302320, + "normalized_name": "storm over the pacific" + }, + { + "appid": 302330, + "normalized_name": "tex murphy mean streets" + }, + { + "appid": 302340, + "normalized_name": "tex murphy martian memorandum" + }, + { + "appid": 302350, + "normalized_name": "tex murphy under a killing moon" + }, + { + "appid": 302360, + "normalized_name": "tex murphy the pandora directive" + }, + { + "appid": 302370, + "normalized_name": "tex murphy overseer" + }, + { + "appid": 302380, + "normalized_name": "floating point" + }, + { + "appid": 302390, + "normalized_name": "necronomicon the dawning of darkness" + }, + { + "appid": 302440, + "normalized_name": "roadside assistance simulator" + }, + { + "appid": 302460, + "normalized_name": "i am vegend zombiegeddon" + }, + { + "appid": 302470, + "normalized_name": "battle mages" + }, + { + "appid": 302490, + "normalized_name": "ballad of solar" + }, + { + "appid": 302510, + "normalized_name": "ryse son of rome" + }, + { + "appid": 302570, + "normalized_name": "dangerous" + }, + { + "appid": 302590, + "normalized_name": "of guards and thieves" + }, + { + "appid": 302610, + "normalized_name": "boson x" + }, + { + "appid": 302650, + "normalized_name": "cyto" + }, + { + "appid": 302670, + "normalized_name": "call to arms" + }, + { + "appid": 302690, + "normalized_name": "metal dead" + }, + { + "appid": 302710, + "normalized_name": "blazerush" + }, + { + "appid": 302730, + "normalized_name": "namariel legends iron lord premium" + }, + { + "appid": 302750, + "normalized_name": "the counting kingdom" + }, + { + "appid": 302790, + "normalized_name": "momodora iii" + }, + { + "appid": 302810, + "normalized_name": "divinia chronicles relics of gan ti" + }, + { + "appid": 302830, + "normalized_name": "blockade 3d" + }, + { + "appid": 302870, + "normalized_name": "stained" + }, + { + "appid": 302910, + "normalized_name": "the house" + }, + { + "appid": 302950, + "normalized_name": "heileen 1 sail away" + }, + { + "appid": 302970, + "normalized_name": "radiant defense" + }, + { + "appid": 303210, + "normalized_name": "the beginner's guide" + }, + { + "appid": 303260, + "normalized_name": "tristoy" + }, + { + "appid": 303290, + "normalized_name": "ozmafia!!" + }, + { + "appid": 303310, + "normalized_name": "the house in fata morgana" + }, + { + "appid": 303340, + "normalized_name": "concursion" + }, + { + "appid": 303390, + "normalized_name": "dead bits" + }, + { + "appid": 303430, + "normalized_name": "roundabout" + }, + { + "appid": 303470, + "normalized_name": "rush for glory" + }, + { + "appid": 303510, + "normalized_name": "dungeons the eye of draconus" + }, + { + "appid": 303550, + "normalized_name": "adventures of pip" + }, + { + "appid": 303590, + "normalized_name": "hidden in plain sight" + }, + { + "appid": 303610, + "normalized_name": "suicide guy" + }, + { + "appid": 303680, + "normalized_name": "fate the traitor soul" + }, + { + "appid": 303690, + "normalized_name": "fate the cursed king" + }, + { + "appid": 303720, + "normalized_name": "#killallzombies" + }, + { + "appid": 303790, + "normalized_name": "faery legends of avalon" + }, + { + "appid": 303800, + "normalized_name": "the witcher adventure game" + }, + { + "appid": 303830, + "normalized_name": "motorcycle club" + }, + { + "appid": 303840, + "normalized_name": "point perfect" + }, + { + "appid": 303860, + "normalized_name": "machines at war 3" + }, + { + "appid": 303870, + "normalized_name": "blinding dark" + }, + { + "appid": 303880, + "normalized_name": "triblaster" + }, + { + "appid": 303910, + "normalized_name": "time of fury" + }, + { + "appid": 303940, + "normalized_name": "capsule" + }, + { + "appid": 304050, + "normalized_name": "trove" + }, + { + "appid": 304150, + "normalized_name": "bloodbath" + }, + { + "appid": 304170, + "normalized_name": "kick ass 2" + }, + { + "appid": 304190, + "normalized_name": "bloonz toonz" + }, + { + "appid": 304240, + "normalized_name": "resident evil" + }, + { + "appid": 304290, + "normalized_name": "heroes rise the hero project" + }, + { + "appid": 304350, + "normalized_name": "wildlife park 2" + }, + { + "appid": 304390, + "normalized_name": "for honor" + }, + { + "appid": 304410, + "normalized_name": "hexcells infinite" + }, + { + "appid": 304430, + "normalized_name": "inside" + }, + { + "appid": 304460, + "normalized_name": "qora" + }, + { + "appid": 304500, + "normalized_name": "rooms the main building" + }, + { + "appid": 304530, + "normalized_name": "agents of mayhem" + }, + { + "appid": 304540, + "normalized_name": "freakout extreme freeride" + }, + { + "appid": 304580, + "normalized_name": "cityconomy service for your city" + }, + { + "appid": 304650, + "normalized_name": "sunless sea" + }, + { + "appid": 304670, + "normalized_name": "aeon command" + }, + { + "appid": 304690, + "normalized_name": "star sonata 2" + }, + { + "appid": 304730, + "normalized_name": "train fever" + }, + { + "appid": 304750, + "normalized_name": "voodoo chronicles the first sign hd director’s cut" + }, + { + "appid": 304770, + "normalized_name": "iah internet war" + }, + { + "appid": 304810, + "normalized_name": "tesseract" + }, + { + "appid": 304850, + "normalized_name": "worlds" + }, + { + "appid": 304870, + "normalized_name": "stones of harlath" + }, + { + "appid": 304910, + "normalized_name": "sky gamblers storm raiders" + }, + { + "appid": 304930, + "normalized_name": "unturned" + }, + { + "appid": 304950, + "normalized_name": "castaway paradise live among the animals" + }, + { + "appid": 305010, + "normalized_name": "toxic bunny hd" + }, + { + "appid": 305030, + "normalized_name": "color" + }, + { + "appid": 305070, + "normalized_name": "fist of awesome" + }, + { + "appid": 305260, + "normalized_name": "battle islands" + }, + { + "appid": 305380, + "normalized_name": "blue estate the game" + }, + { + "appid": 305390, + "normalized_name": "world war 2 time of wrath" + }, + { + "appid": 305480, + "normalized_name": "heileen 2 the hands of fate" + }, + { + "appid": 305490, + "normalized_name": "heileen 3 new horizons" + }, + { + "appid": 305500, + "normalized_name": "trapped dead lockdown" + }, + { + "appid": 305620, + "normalized_name": "the long dark" + }, + { + "appid": 305640, + "normalized_name": "shattered planet" + }, + { + "appid": 305660, + "normalized_name": "infect and destroy" + }, + { + "appid": 305700, + "normalized_name": "infinite scuba" + }, + { + "appid": 305720, + "normalized_name": "heroes of issachar" + }, + { + "appid": 305740, + "normalized_name": "pitiri 1977" + }, + { + "appid": 305760, + "normalized_name": "redirection" + }, + { + "appid": 305780, + "normalized_name": "echo of the wilds" + }, + { + "appid": 305800, + "normalized_name": "pop methodology experiment one" + }, + { + "appid": 305820, + "normalized_name": "cute things dying violently" + }, + { + "appid": 305840, + "normalized_name": "shallow space" + }, + { + "appid": 305880, + "normalized_name": "leona's tricky adventures" + }, + { + "appid": 305900, + "normalized_name": "minigame game" + }, + { + "appid": 305920, + "normalized_name": "another perspective" + }, + { + "appid": 305940, + "normalized_name": "project aura" + }, + { + "appid": 305960, + "normalized_name": "dragon the game" + }, + { + "appid": 305980, + "normalized_name": "heavy fire afghanistan" + }, + { + "appid": 306000, + "normalized_name": "super dungeon bros" + }, + { + "appid": 306020, + "normalized_name": "bloons td 5" + }, + { + "appid": 306040, + "normalized_name": "the howler" + }, + { + "appid": 306130, + "normalized_name": "the elder scrolls online" + }, + { + "appid": 306200, + "normalized_name": "the happy hereafter" + }, + { + "appid": 306260, + "normalized_name": "selknam defense" + }, + { + "appid": 306290, + "normalized_name": "7 62 hard life" + }, + { + "appid": 306350, + "normalized_name": "slipstream 5000" + }, + { + "appid": 306370, + "normalized_name": "world of subways 1 – the path" + }, + { + "appid": 306410, + "normalized_name": "crystals of time" + }, + { + "appid": 306440, + "normalized_name": "oblitus" + }, + { + "appid": 306480, + "normalized_name": "wildlife park 2 crazy zoo" + }, + { + "appid": 306490, + "normalized_name": "railroad pioneer" + }, + { + "appid": 306510, + "normalized_name": "cryengine sample assets" + }, + { + "appid": 306550, + "normalized_name": "runers" + }, + { + "appid": 306620, + "normalized_name": "frontline road to moscow" + }, + { + "appid": 306630, + "normalized_name": "civil war ii" + }, + { + "appid": 306640, + "normalized_name": "battle academy 2 eastern front" + }, + { + "appid": 306660, + "normalized_name": "general gettysburg" + }, + { + "appid": 306670, + "normalized_name": "overlord fellowship of evil" + }, + { + "appid": 306680, + "normalized_name": "lexica" + }, + { + "appid": 306700, + "normalized_name": "iron fisticle" + }, + { + "appid": 306760, + "normalized_name": "obduction" + }, + { + "appid": 306910, + "normalized_name": "vaultbreakers" + }, + { + "appid": 306930, + "normalized_name": "battlespace" + }, + { + "appid": 306950, + "normalized_name": "heroes & legends conquerors of kolhar" + }, + { + "appid": 307010, + "normalized_name": "northmark hour of the wolf" + }, + { + "appid": 307030, + "normalized_name": "fractured soul" + }, + { + "appid": 307050, + "normalized_name": "shan gui (山桂)" + }, + { + "appid": 307070, + "normalized_name": "memories of a vagabond" + }, + { + "appid": 307090, + "normalized_name": "fancy skulls" + }, + { + "appid": 307110, + "normalized_name": "we need to go deeper" + }, + { + "appid": 307130, + "normalized_name": "asteria" + }, + { + "appid": 307150, + "normalized_name": "survival games" + }, + { + "appid": 307170, + "normalized_name": "borealis" + }, + { + "appid": 307190, + "normalized_name": "nicole" + }, + { + "appid": 307210, + "normalized_name": "will fight for food super actual sellout game of the hour" + }, + { + "appid": 307230, + "normalized_name": "i zombie" + }, + { + "appid": 307270, + "normalized_name": "super lemonade factory" + }, + { + "appid": 307290, + "normalized_name": "velvet sundown" + }, + { + "appid": 307340, + "normalized_name": "platypus" + }, + { + "appid": 307350, + "normalized_name": "nux" + }, + { + "appid": 307410, + "normalized_name": "martial arts capoeira" + }, + { + "appid": 307560, + "normalized_name": "run for rum" + }, + { + "appid": 307570, + "normalized_name": "a golden wake" + }, + { + "appid": 307580, + "normalized_name": "technobabylon" + }, + { + "appid": 307590, + "normalized_name": "penarium" + }, + { + "appid": 307620, + "normalized_name": "curses 'n chaos" + }, + { + "appid": 307640, + "normalized_name": "stick rpg 2 director's cut" + }, + { + "appid": 307670, + "normalized_name": "hard west" + }, + { + "appid": 307690, + "normalized_name": "sleeping dogs" + }, + { + "appid": 307760, + "normalized_name": "zoo park" + }, + { + "appid": 307770, + "normalized_name": "wildlife park 2 horses" + }, + { + "appid": 307780, + "normalized_name": "mortal kombat x" + }, + { + "appid": 307880, + "normalized_name": "savage lands" + }, + { + "appid": 307900, + "normalized_name": "wildlife park 2 marine world" + }, + { + "appid": 307920, + "normalized_name": "wildlife park 2 farm world" + }, + { + "appid": 307930, + "normalized_name": "wildlife park 2 dino world" + }, + { + "appid": 307940, + "normalized_name": "radiation island" + }, + { + "appid": 307950, + "normalized_name": "caliber" + }, + { + "appid": 307960, + "normalized_name": "il 2 sturmovik battle of stalingrad" + }, + { + "appid": 307980, + "normalized_name": "cricket captain 2014" + }, + { + "appid": 307990, + "normalized_name": "wildlife park 2 fantasy" + }, + { + "appid": 308000, + "normalized_name": "gold rush! classic" + }, + { + "appid": 308040, + "normalized_name": "back to bed" + }, + { + "appid": 308060, + "normalized_name": "black the fall" + }, + { + "appid": 308080, + "normalized_name": "wing breakers" + }, + { + "appid": 308173, + "normalized_name": "hegemony iii clash of the ancients" + }, + { + "appid": 308180, + "normalized_name": "jacob jones and the bigfoot mystery episode 2" + }, + { + "appid": 308270, + "normalized_name": "buzz aldrin's space program manager" + }, + { + "appid": 308330, + "normalized_name": "lost chronicles of zerzura" + }, + { + "appid": 308360, + "normalized_name": "logigun" + }, + { + "appid": 308380, + "normalized_name": "airship dragoon" + }, + { + "appid": 308400, + "normalized_name": "cube samurai run!" + }, + { + "appid": 308420, + "normalized_name": "ziggurat" + }, + { + "appid": 308440, + "normalized_name": "pushcat" + }, + { + "appid": 308460, + "normalized_name": "war in a box paper tanks" + }, + { + "appid": 308540, + "normalized_name": "sleepover" + }, + { + "appid": 308560, + "normalized_name": "city quest" + }, + { + "appid": 308580, + "normalized_name": "orborun" + }, + { + "appid": 308600, + "normalized_name": "gene shift auto" + }, + { + "appid": 309900, + "normalized_name": "super sky arena" + }, + { + "appid": 310060, + "normalized_name": "knights of pen and paper 2" + }, + { + "appid": 310070, + "normalized_name": "the nightmare cooperative" + }, + { + "appid": 310080, + "normalized_name": "hatoful boyfriend" + }, + { + "appid": 310110, + "normalized_name": "ns2 combat" + }, + { + "appid": 310360, + "normalized_name": "higurashi when they cry hou ch.1 onikakushi" + }, + { + "appid": 310370, + "normalized_name": "the way of life free" + }, + { + "appid": 310390, + "normalized_name": "advanced tactics gold" + }, + { + "appid": 310460, + "normalized_name": "corto maltese secrets of venice" + }, + { + "appid": 310470, + "normalized_name": "grand ages medieval" + }, + { + "appid": 310490, + "normalized_name": "crookz the big heist" + }, + { + "appid": 310510, + "normalized_name": "deathtrap" + }, + { + "appid": 310640, + "normalized_name": "european fishing" + }, + { + "appid": 310700, + "normalized_name": "super win the game" + }, + { + "appid": 310740, + "normalized_name": "neon struct" + }, + { + "appid": 310790, + "normalized_name": "geometry wars 3 dimensions evolved" + }, + { + "appid": 310830, + "normalized_name": "retrobooster" + }, + { + "appid": 310840, + "normalized_name": "perennial" + }, + { + "appid": 310850, + "normalized_name": "onikira demon killer" + }, + { + "appid": 310870, + "normalized_name": "the tower" + }, + { + "appid": 310880, + "normalized_name": "basketball pro management 2015" + }, + { + "appid": 310890, + "normalized_name": "breach & clear deadline rebirth (2016)" + }, + { + "appid": 310950, + "normalized_name": "street fighter v" + }, + { + "appid": 310970, + "normalized_name": "legions of ashworld" + }, + { + "appid": 310990, + "normalized_name": "man in a maze deathmatch" + }, + { + "appid": 311010, + "normalized_name": "the way" + }, + { + "appid": 311040, + "normalized_name": "rulers of nations" + }, + { + "appid": 311060, + "normalized_name": "battle mages sign of darkness" + }, + { + "appid": 311080, + "normalized_name": "echelon" + }, + { + "appid": 311100, + "normalized_name": "echelon wind warriors" + }, + { + "appid": 311120, + "normalized_name": "the stalin subway red veil" + }, + { + "appid": 311140, + "normalized_name": "the stalin subway" + }, + { + "appid": 311170, + "normalized_name": "moonlight minions" + }, + { + "appid": 311190, + "normalized_name": "super panda adventures" + }, + { + "appid": 311210, + "normalized_name": "call of duty black ops iii" + }, + { + "appid": 311240, + "normalized_name": "zero escape zero time dilemma" + }, + { + "appid": 311250, + "normalized_name": "doorways the underworld" + }, + { + "appid": 311260, + "normalized_name": "the guild 3" + }, + { + "appid": 311290, + "normalized_name": "spellforce 3 reforced" + }, + { + "appid": 311310, + "normalized_name": "naval action" + }, + { + "appid": 311340, + "normalized_name": "metal gear solid v ground zeroes" + }, + { + "appid": 311400, + "normalized_name": "ocean city racing" + }, + { + "appid": 311480, + "normalized_name": "vertical drop heroes hd" + }, + { + "appid": 311490, + "normalized_name": "spirit run fire vs. ice" + }, + { + "appid": 311560, + "normalized_name": "assassin’s creed rogue" + }, + { + "appid": 311680, + "normalized_name": "flower shop winter in fairbrook" + }, + { + "appid": 311690, + "normalized_name": "enter the gungeon" + }, + { + "appid": 311720, + "normalized_name": "sproggiwood" + }, + { + "appid": 311730, + "normalized_name": "dead or alive 5 last round core fighters" + }, + { + "appid": 311770, + "normalized_name": "lego pirates of the caribbean the video game" + }, + { + "appid": 311800, + "normalized_name": "black ice" + }, + { + "appid": 311810, + "normalized_name": "operation black mesa" + }, + { + "appid": 311820, + "normalized_name": "rc mini racers" + }, + { + "appid": 311840, + "normalized_name": "wildlife park" + }, + { + "appid": 311850, + "normalized_name": "zombie solitaire" + }, + { + "appid": 311860, + "normalized_name": "data hacker initiation" + }, + { + "appid": 311870, + "normalized_name": "super trench attack!" + }, + { + "appid": 311910, + "normalized_name": "dig it! a digger simulator" + }, + { + "appid": 311930, + "normalized_name": "tinertia" + }, + { + "appid": 311940, + "normalized_name": "p 3 biotic" + }, + { + "appid": 311980, + "normalized_name": "isomer" + }, + { + "appid": 312010, + "normalized_name": "bird assassin" + }, + { + "appid": 312020, + "normalized_name": "bounders and cads" + }, + { + "appid": 312050, + "normalized_name": "red johnson's chronicles 1+2 steam special" + }, + { + "appid": 312150, + "normalized_name": "wild warfare" + }, + { + "appid": 312200, + "normalized_name": "chasm" + }, + { + "appid": 312210, + "normalized_name": "the fifth day" + }, + { + "appid": 312220, + "normalized_name": "tales of adventure 2" + }, + { + "appid": 312230, + "normalized_name": "spirits of xanadu" + }, + { + "appid": 312240, + "normalized_name": "seal team 12" + }, + { + "appid": 312300, + "normalized_name": "heroes rise herofall" + }, + { + "appid": 312310, + "normalized_name": "ensign 1" + }, + { + "appid": 312350, + "normalized_name": "commander the great war" + }, + { + "appid": 312360, + "normalized_name": "to end all wars" + }, + { + "appid": 312400, + "normalized_name": "frontline longest day" + }, + { + "appid": 312410, + "normalized_name": "defense zone" + }, + { + "appid": 312420, + "normalized_name": "hell" + }, + { + "appid": 312440, + "normalized_name": "legions of steel" + }, + { + "appid": 312450, + "normalized_name": "order of battle world war ii" + }, + { + "appid": 312520, + "normalized_name": "rain world" + }, + { + "appid": 312530, + "normalized_name": "duck game" + }, + { + "appid": 312540, + "normalized_name": "ys vi the ark of napishtim" + }, + { + "appid": 312560, + "normalized_name": "xanadu next" + }, + { + "appid": 312600, + "normalized_name": "rime berta" + }, + { + "appid": 312610, + "normalized_name": "metal slug x" + }, + { + "appid": 312630, + "normalized_name": "otttd" + }, + { + "appid": 312640, + "normalized_name": "power up" + }, + { + "appid": 312650, + "normalized_name": "battlezone gold" + }, + { + "appid": 312660, + "normalized_name": "sniper elite 4" + }, + { + "appid": 312670, + "normalized_name": "strange brigade" + }, + { + "appid": 312720, + "normalized_name": "khet 2.0" + }, + { + "appid": 312750, + "normalized_name": "final fantasy iv (3d remake)" + }, + { + "appid": 312780, + "normalized_name": "way of the samurai 4" + }, + { + "appid": 312790, + "normalized_name": "agarest generations of war 2" + }, + { + "appid": 312840, + "normalized_name": "fahrenheit indigo prophecy" + }, + { + "appid": 312860, + "normalized_name": "defense grid 2 a matter of endurance" + }, + { + "appid": 312900, + "normalized_name": "zoo rampage" + }, + { + "appid": 312960, + "normalized_name": "starion tactics" + }, + { + "appid": 312970, + "normalized_name": "my ex boyfriend the space tyrant" + }, + { + "appid": 312980, + "normalized_name": "graviteam tactics mius front" + }, + { + "appid": 312990, + "normalized_name": "the expendabros" + }, + { + "appid": 313010, + "normalized_name": "cities xxl" + }, + { + "appid": 313020, + "normalized_name": "soul gambler" + }, + { + "appid": 313040, + "normalized_name": "pixel hunter" + }, + { + "appid": 313080, + "normalized_name": "the masterplan" + }, + { + "appid": 313120, + "normalized_name": "stranded deep" + }, + { + "appid": 313130, + "normalized_name": "metrocide" + }, + { + "appid": 313140, + "normalized_name": "blackbay asylum" + }, + { + "appid": 313160, + "normalized_name": "farming simulator 15" + }, + { + "appid": 313190, + "normalized_name": "pacific liberation force" + }, + { + "appid": 313200, + "normalized_name": "the abbey" + }, + { + "appid": 313210, + "normalized_name": "alpha zylon" + }, + { + "appid": 313330, + "normalized_name": "4x4 dream race" + }, + { + "appid": 313340, + "normalized_name": "mountain" + }, + { + "appid": 313360, + "normalized_name": "the maker's eden" + }, + { + "appid": 313390, + "normalized_name": "vertical strike endless challenge" + }, + { + "appid": 313400, + "normalized_name": "revolver360 re actor" + }, + { + "appid": 313470, + "normalized_name": "boot hill heroes" + }, + { + "appid": 313480, + "normalized_name": "blitzkrieg anthology" + }, + { + "appid": 313500, + "normalized_name": "blitzkrieg 2 anthology" + }, + { + "appid": 313590, + "normalized_name": "boo bunny plague" + }, + { + "appid": 313620, + "normalized_name": "the terminal 2" + }, + { + "appid": 313630, + "normalized_name": "the solus project" + }, + { + "appid": 313650, + "normalized_name": "time mysteries 2 the ancient spectres" + }, + { + "appid": 313660, + "normalized_name": "alea jacta est" + }, + { + "appid": 313690, + "normalized_name": "lego batman 3 beyond gotham" + }, + { + "appid": 313700, + "normalized_name": "burger patrol" + }, + { + "appid": 313730, + "normalized_name": "sunrider mask of arcadius" + }, + { + "appid": 313740, + "normalized_name": "sakura spirit" + }, + { + "appid": 313780, + "normalized_name": "conarium" + }, + { + "appid": 313810, + "normalized_name": "legend of kay anniversary" + }, + { + "appid": 313830, + "normalized_name": "see no evil" + }, + { + "appid": 313870, + "normalized_name": "a vampyre story" + }, + { + "appid": 313960, + "normalized_name": "exodus" + }, + { + "appid": 313980, + "normalized_name": "proxy blade zero" + }, + { + "appid": 314000, + "normalized_name": "pool nation fx lite" + }, + { + "appid": 314010, + "normalized_name": "boid" + }, + { + "appid": 314020, + "normalized_name": "morphopolis" + }, + { + "appid": 314030, + "normalized_name": "guilty gear x2 #reload" + }, + { + "appid": 314050, + "normalized_name": "spheritis" + }, + { + "appid": 314070, + "normalized_name": "super mega baseball extra innings" + }, + { + "appid": 314120, + "normalized_name": "frayed knights the skull of s'makh daon" + }, + { + "appid": 314150, + "normalized_name": "double dragon trilogy" + }, + { + "appid": 314160, + "normalized_name": "microsoft flight simulator x steam" + }, + { + "appid": 314180, + "normalized_name": "deathsmiles" + }, + { + "appid": 314200, + "normalized_name": "bionic heart" + }, + { + "appid": 314210, + "normalized_name": "tesla breaks the world!" + }, + { + "appid": 314220, + "normalized_name": "bombing bastards" + }, + { + "appid": 314230, + "normalized_name": "rodina" + }, + { + "appid": 314240, + "normalized_name": "rpg tycoon" + }, + { + "appid": 314250, + "normalized_name": "jet gunner" + }, + { + "appid": 314280, + "normalized_name": "the forgotten ones" + }, + { + "appid": 314290, + "normalized_name": "obludia" + }, + { + "appid": 314300, + "normalized_name": "cubez" + }, + { + "appid": 314320, + "normalized_name": "gamersgomakers" + }, + { + "appid": 314330, + "normalized_name": "drod gunthro and the epic blunder" + }, + { + "appid": 314340, + "normalized_name": "chess 2 the sequel" + }, + { + "appid": 314350, + "normalized_name": "abatron" + }, + { + "appid": 314360, + "normalized_name": "aritana and the harpy's feather" + }, + { + "appid": 314370, + "normalized_name": "boxlife" + }, + { + "appid": 314380, + "normalized_name": "lantern forge" + }, + { + "appid": 314410, + "normalized_name": "rampage knights" + }, + { + "appid": 314430, + "normalized_name": "m.a.r.s." + }, + { + "appid": 314450, + "normalized_name": "star saviors" + }, + { + "appid": 314460, + "normalized_name": "jamsouls" + }, + { + "appid": 314470, + "normalized_name": "heroes of a broken land" + }, + { + "appid": 314510, + "normalized_name": "fall of the new age premium" + }, + { + "appid": 314520, + "normalized_name": "euro fishing" + }, + { + "appid": 314540, + "normalized_name": "paper monsters recut" + }, + { + "appid": 314560, + "normalized_name": "kyn" + }, + { + "appid": 314570, + "normalized_name": "the sun at night" + }, + { + "appid": 314590, + "normalized_name": "room13" + }, + { + "appid": 314610, + "normalized_name": "vincere totus astrum" + }, + { + "appid": 314630, + "normalized_name": "the thin silence" + }, + { + "appid": 314650, + "normalized_name": "spaceengine" + }, + { + "appid": 314660, + "normalized_name": "oddworld new 'n' tasty" + }, + { + "appid": 314710, + "normalized_name": "mighty no. 9" + }, + { + "appid": 314760, + "normalized_name": "direct hit missile war" + }, + { + "appid": 314770, + "normalized_name": "pe 2 dive bomber" + }, + { + "appid": 314790, + "normalized_name": "silence" + }, + { + "appid": 314810, + "normalized_name": "randal's monday" + }, + { + "appid": 314830, + "normalized_name": "blackguards 2" + }, + { + "appid": 314950, + "normalized_name": "spectre" + }, + { + "appid": 314970, + "normalized_name": "age of conquest iv" + }, + { + "appid": 314980, + "normalized_name": "supreme ruler" + }, + { + "appid": 315070, + "normalized_name": "blob from space" + }, + { + "appid": 315080, + "normalized_name": "foresight" + }, + { + "appid": 315110, + "normalized_name": "woah dave!" + }, + { + "appid": 315130, + "normalized_name": "co op decrypted" + }, + { + "appid": 315210, + "normalized_name": "suicide squad kill the justice league" + }, + { + "appid": 315260, + "normalized_name": "space hack" + }, + { + "appid": 315320, + "normalized_name": "skilltree saga" + }, + { + "appid": 315330, + "normalized_name": "all guns on deck" + }, + { + "appid": 315340, + "normalized_name": "a.r.e.s. extinction agenda ex" + }, + { + "appid": 315430, + "normalized_name": "polarity" + }, + { + "appid": 315450, + "normalized_name": "bliss" + }, + { + "appid": 315460, + "normalized_name": "dig or die" + }, + { + "appid": 315480, + "normalized_name": "the escapist" + }, + { + "appid": 315540, + "normalized_name": "the joylancer legendary motor knight" + }, + { + "appid": 315550, + "normalized_name": "taxi" + }, + { + "appid": 315610, + "normalized_name": "spud's quest" + }, + { + "appid": 315650, + "normalized_name": "deep under the sky" + }, + { + "appid": 315660, + "normalized_name": "trainz a new era" + }, + { + "appid": 315680, + "normalized_name": "spellcrafter" + }, + { + "appid": 315810, + "normalized_name": "eden*" + }, + { + "appid": 315830, + "normalized_name": "daedalus no escape" + }, + { + "appid": 315840, + "normalized_name": "catacomb kids" + }, + { + "appid": 315850, + "normalized_name": "amazing princess sarah" + }, + { + "appid": 315860, + "normalized_name": "celestian tales old north" + }, + { + "appid": 315920, + "normalized_name": "stonerid" + }, + { + "appid": 315930, + "normalized_name": "bravada" + }, + { + "appid": 315940, + "normalized_name": "top hat" + }, + { + "appid": 316020, + "normalized_name": "hangeki" + }, + { + "appid": 316030, + "normalized_name": "disney alice in wonderland" + }, + { + "appid": 316080, + "normalized_name": "parcel" + }, + { + "appid": 316140, + "normalized_name": "appointment with fear (standalone)" + }, + { + "appid": 316160, + "normalized_name": "broken sword 4 the angel of death (2006)" + }, + { + "appid": 316180, + "normalized_name": "a city sleeps" + }, + { + "appid": 316240, + "normalized_name": "professional lumberjack 2015" + }, + { + "appid": 316260, + "normalized_name": "disney universe" + }, + { + "appid": 316320, + "normalized_name": "disney•pixar cars toon mater's tall tales" + }, + { + "appid": 316370, + "normalized_name": "wave of darkness" + }, + { + "appid": 316430, + "normalized_name": "battle of empires 1914 1918" + }, + { + "appid": 316480, + "normalized_name": "shadow puppeteer" + }, + { + "appid": 316600, + "normalized_name": "qp shooting dangerous!!" + }, + { + "appid": 316610, + "normalized_name": "a good snowman is hard to build" + }, + { + "appid": 316660, + "normalized_name": "toast time" + }, + { + "appid": 316700, + "normalized_name": "front page sports football" + }, + { + "appid": 316740, + "normalized_name": "biglands a game made by kids" + }, + { + "appid": 316790, + "normalized_name": "grim fandango" + }, + { + "appid": 316810, + "normalized_name": "shadowcrypt" + }, + { + "appid": 316840, + "normalized_name": "the sacred tears true" + }, + { + "appid": 316890, + "normalized_name": "calvino noir" + }, + { + "appid": 316930, + "normalized_name": "kings of kung fu" + }, + { + "appid": 316970, + "normalized_name": "the waste land" + }, + { + "appid": 317020, + "normalized_name": "pajama sam games to play on any day" + }, + { + "appid": 317030, + "normalized_name": "fatty bear's birthday surprise" + }, + { + "appid": 317040, + "normalized_name": "strife veteran" + }, + { + "appid": 317080, + "normalized_name": "motorsport revolution" + }, + { + "appid": 317100, + "normalized_name": "republique" + }, + { + "appid": 317250, + "normalized_name": "airscape the fall of gravity" + }, + { + "appid": 317280, + "normalized_name": "solstice" + }, + { + "appid": 317290, + "normalized_name": "bionic heart 2" + }, + { + "appid": 317300, + "normalized_name": "roommates" + }, + { + "appid": 317320, + "normalized_name": "nelly cootalot the fowl fleet" + }, + { + "appid": 317360, + "normalized_name": "double action boogaloo" + }, + { + "appid": 317370, + "normalized_name": "the keep" + }, + { + "appid": 317380, + "normalized_name": "war on folvos" + }, + { + "appid": 317410, + "normalized_name": "color symphony" + }, + { + "appid": 317440, + "normalized_name": "quantum rush champions" + }, + { + "appid": 317470, + "normalized_name": "cubic castles" + }, + { + "appid": 317510, + "normalized_name": "beyond gravity" + }, + { + "appid": 317530, + "normalized_name": "congo" + }, + { + "appid": 317580, + "normalized_name": "disney•pixar toy story mania!" + }, + { + "appid": 317610, + "normalized_name": "prophour23" + }, + { + "appid": 317710, + "normalized_name": "velocibox" + }, + { + "appid": 317720, + "normalized_name": "tiestru" + }, + { + "appid": 317820, + "normalized_name": "guild of dungeoneering" + }, + { + "appid": 317840, + "normalized_name": "dokuro" + }, + { + "appid": 317850, + "normalized_name": "company of heroes 2 ardennes assault" + }, + { + "appid": 317920, + "normalized_name": "hills of glory 3d" + }, + { + "appid": 317940, + "normalized_name": "karmaflow the rock opera videogame act i & act ii" + }, + { + "appid": 317950, + "normalized_name": "kel reaper of entropy" + }, + { + "appid": 317970, + "normalized_name": "dusk 12" + }, + { + "appid": 318020, + "normalized_name": "act of aggression reboot" + }, + { + "appid": 318090, + "normalized_name": "dicetiny the lord of the dice" + }, + { + "appid": 318100, + "normalized_name": "axyos" + }, + { + "appid": 318130, + "normalized_name": "doom & destiny" + }, + { + "appid": 318220, + "normalized_name": "enforcer police crime action" + }, + { + "appid": 318230, + "normalized_name": "convoy" + }, + { + "appid": 318260, + "normalized_name": "supreme pizza empire" + }, + { + "appid": 318300, + "normalized_name": "phineas and ferb new inventions" + }, + { + "appid": 318310, + "normalized_name": "choice of the deathless" + }, + { + "appid": 318330, + "normalized_name": "mecha ace" + }, + { + "appid": 318350, + "normalized_name": "disney fairies tinker bell's adventure" + }, + { + "appid": 318430, + "normalized_name": "squishy the suicidal pig" + }, + { + "appid": 318440, + "normalized_name": "cubesis" + }, + { + "appid": 318480, + "normalized_name": "burnstar" + }, + { + "appid": 318530, + "normalized_name": "wings of vi" + }, + { + "appid": 318560, + "normalized_name": "unlimited escape 2" + }, + { + "appid": 318570, + "normalized_name": "hunters of the dead" + }, + { + "appid": 318600, + "normalized_name": "the flame in the flood" + }, + { + "appid": 318650, + "normalized_name": "sunage battle for elysium" + }, + { + "appid": 318660, + "normalized_name": "moorhuhn / crazy chicken tales" + }, + { + "appid": 318680, + "normalized_name": "history in letters the eternal alchemist" + }, + { + "appid": 318690, + "normalized_name": "cargo 3" + }, + { + "appid": 318740, + "normalized_name": "disney the princess and the frog" + }, + { + "appid": 318840, + "normalized_name": "tempopo" + }, + { + "appid": 318860, + "normalized_name": "malebolgia" + }, + { + "appid": 318950, + "normalized_name": "disney tangled" + }, + { + "appid": 318970, + "normalized_name": "starcrawlers" + }, + { + "appid": 319050, + "normalized_name": "chaos reborn" + }, + { + "appid": 319080, + "normalized_name": "disney princess my fairytale adventure" + }, + { + "appid": 319140, + "normalized_name": "xeodrifter" + }, + { + "appid": 319170, + "normalized_name": "disney g force" + }, + { + "appid": 319180, + "normalized_name": "platypus ii" + }, + { + "appid": 319210, + "normalized_name": "space salvager" + }, + { + "appid": 319230, + "normalized_name": "gold rush! anniversary" + }, + { + "appid": 319250, + "normalized_name": "magicmaker" + }, + { + "appid": 319270, + "normalized_name": "great permutator" + }, + { + "appid": 319280, + "normalized_name": "yatagarasu attack on cataclysm" + }, + { + "appid": 319300, + "normalized_name": "trainz trouble" + }, + { + "appid": 319320, + "normalized_name": "time mysteries 3 the final enigma" + }, + { + "appid": 319400, + "normalized_name": "disney winnie the pooh" + }, + { + "appid": 319430, + "normalized_name": "chaos in the darkness" + }, + { + "appid": 319450, + "normalized_name": "chariot" + }, + { + "appid": 319470, + "normalized_name": "ninja pizza girl" + }, + { + "appid": 319480, + "normalized_name": "odallus the dark call" + }, + { + "appid": 319510, + "normalized_name": "five nights at freddy's" + }, + { + "appid": 319540, + "normalized_name": "a year of rain" + }, + { + "appid": 319560, + "normalized_name": "reprisal universe" + }, + { + "appid": 319570, + "normalized_name": "heroes of soulcraft arcade moba" + }, + { + "appid": 319630, + "normalized_name": "life is strange episode 1" + }, + { + "appid": 319740, + "normalized_name": "there came an echo" + }, + { + "appid": 319760, + "normalized_name": "oh my gore!" + }, + { + "appid": 319780, + "normalized_name": "airport simulator 2015" + }, + { + "appid": 319830, + "normalized_name": "ax el air xenodawn" + }, + { + "appid": 319850, + "normalized_name": "bridge constructor medieval" + }, + { + "appid": 319870, + "normalized_name": "jenny leclue detectivu" + }, + { + "appid": 319910, + "normalized_name": "trine 3 the artifacts of power" + }, + { + "appid": 319970, + "normalized_name": "the detail" + }, + { + "appid": 320040, + "normalized_name": "moon hunters" + }, + { + "appid": 320090, + "normalized_name": "this starry midnight we make" + }, + { + "appid": 320110, + "normalized_name": "train town" + }, + { + "appid": 320120, + "normalized_name": "meadowland" + }, + { + "appid": 320140, + "normalized_name": "absolute drift" + }, + { + "appid": 320150, + "normalized_name": "deadlings rotten" + }, + { + "appid": 320240, + "normalized_name": "we happy few" + }, + { + "appid": 320300, + "normalized_name": "car mechanic simulator 2015" + }, + { + "appid": 320310, + "normalized_name": "world truck racing" + }, + { + "appid": 320320, + "normalized_name": "darkstone" + }, + { + "appid": 320330, + "normalized_name": "earthworms" + }, + { + "appid": 320340, + "normalized_name": "cosmonautica" + }, + { + "appid": 320400, + "normalized_name": "magnifico" + }, + { + "appid": 320410, + "normalized_name": "near impact" + }, + { + "appid": 320430, + "normalized_name": "ascension deckbuilding game" + }, + { + "appid": 320520, + "normalized_name": "oscura lost light" + }, + { + "appid": 320540, + "normalized_name": "coffin dodgers" + }, + { + "appid": 320610, + "normalized_name": "questerium sinister trinity hd collector's" + }, + { + "appid": 320630, + "normalized_name": "season match" + }, + { + "appid": 320650, + "normalized_name": "season match 2" + }, + { + "appid": 320670, + "normalized_name": "season match 3 curse of the witch crow" + }, + { + "appid": 320690, + "normalized_name": "the treasures of montezuma 3" + }, + { + "appid": 320760, + "normalized_name": "tokyo school life" + }, + { + "appid": 320790, + "normalized_name": "fabula mortis" + }, + { + "appid": 320820, + "normalized_name": "toren" + }, + { + "appid": 320970, + "normalized_name": "igt slots paradise garden" + }, + { + "appid": 321030, + "normalized_name": "one day for ched" + }, + { + "appid": 321060, + "normalized_name": "gender bender dna twister extreme" + }, + { + "appid": 321080, + "normalized_name": "pirate hell" + }, + { + "appid": 321150, + "normalized_name": "melissa k. and the heart of gold collector's" + }, + { + "appid": 321160, + "normalized_name": "timber tennis versus" + }, + { + "appid": 321190, + "normalized_name": "cho dengeki stryker all ages version" + }, + { + "appid": 321270, + "normalized_name": "unloved" + }, + { + "appid": 321290, + "normalized_name": "dandelion wishes brought to you" + }, + { + "appid": 321330, + "normalized_name": "enyo arcade" + }, + { + "appid": 321350, + "normalized_name": "fairspace" + }, + { + "appid": 321360, + "normalized_name": "primal carnage extinction" + }, + { + "appid": 321370, + "normalized_name": "sign motion" + }, + { + "appid": 321390, + "normalized_name": "zone 22" + }, + { + "appid": 321400, + "normalized_name": "supraball" + }, + { + "appid": 321450, + "normalized_name": "aquadelic gt" + }, + { + "appid": 321480, + "normalized_name": "sigils of elohim" + }, + { + "appid": 321560, + "normalized_name": "the sun and moon" + }, + { + "appid": 321600, + "normalized_name": "the flying dutchman" + }, + { + "appid": 321610, + "normalized_name": "demonlisher" + }, + { + "appid": 321710, + "normalized_name": "battle of europe" + }, + { + "appid": 321800, + "normalized_name": "icewind dale enhanced" + }, + { + "appid": 321830, + "normalized_name": "cavern kings" + }, + { + "appid": 321840, + "normalized_name": "rising angels reborn" + }, + { + "appid": 321870, + "normalized_name": "silence of the sleep" + }, + { + "appid": 321880, + "normalized_name": "aveyond 3 3 the lost orb" + }, + { + "appid": 321890, + "normalized_name": "aveyond 3 4 the darkthrop prophecy" + }, + { + "appid": 321920, + "normalized_name": "schein" + }, + { + "appid": 321940, + "normalized_name": "moorhuhn tiger and chicken" + }, + { + "appid": 321950, + "normalized_name": "yury" + }, + { + "appid": 321960, + "normalized_name": "might & magic heroes vii" + }, + { + "appid": 321980, + "normalized_name": "hardland" + }, + { + "appid": 322030, + "normalized_name": "unlimited escape" + }, + { + "appid": 322080, + "normalized_name": "disorder" + }, + { + "appid": 322110, + "normalized_name": "20xx" + }, + { + "appid": 322130, + "normalized_name": "disney princess enchanted journey" + }, + { + "appid": 322170, + "normalized_name": "geometry dash" + }, + { + "appid": 322190, + "normalized_name": "steamworld heist" + }, + { + "appid": 322210, + "normalized_name": "guns gore & cannoli" + }, + { + "appid": 322290, + "normalized_name": "gurumin a monstrous adventure" + }, + { + "appid": 322330, + "normalized_name": "don't starve together" + }, + { + "appid": 322430, + "normalized_name": "bubonic outbreak" + }, + { + "appid": 322440, + "normalized_name": "red goddess inner world" + }, + { + "appid": 322450, + "normalized_name": "framed collection" + }, + { + "appid": 322500, + "normalized_name": "superhot" + }, + { + "appid": 322520, + "normalized_name": "dynasty warriors 8 empires" + }, + { + "appid": 322540, + "normalized_name": "galactic inheritors" + }, + { + "appid": 322550, + "normalized_name": "standpoint" + }, + { + "appid": 322580, + "normalized_name": "dungeon lurk ii leona" + }, + { + "appid": 322630, + "normalized_name": "mind zero" + }, + { + "appid": 322680, + "normalized_name": "blackhole" + }, + { + "appid": 322750, + "normalized_name": "drifting lands" + }, + { + "appid": 322770, + "normalized_name": "vanishing realms" + }, + { + "appid": 322850, + "normalized_name": "pro cycling manager 2015" + }, + { + "appid": 322900, + "normalized_name": "war the game" + }, + { + "appid": 322950, + "normalized_name": "pure hold'em" + }, + { + "appid": 322970, + "normalized_name": "subject 13" + }, + { + "appid": 322980, + "normalized_name": "gods vs humans" + }, + { + "appid": 322990, + "normalized_name": "black viper sophia's fate" + }, + { + "appid": 323000, + "normalized_name": "roaming fortress" + }, + { + "appid": 323020, + "normalized_name": "destructamundo" + }, + { + "appid": 323040, + "normalized_name": "laserlife" + }, + { + "appid": 323060, + "normalized_name": "tharsis" + }, + { + "appid": 323190, + "normalized_name": "frostpunk" + }, + { + "appid": 323220, + "normalized_name": "vagante" + }, + { + "appid": 323240, + "normalized_name": "the world ii hunting boss" + }, + { + "appid": 323250, + "normalized_name": "hexus" + }, + { + "appid": 323260, + "normalized_name": "robin's island adventure" + }, + { + "appid": 323270, + "normalized_name": "jane angel templar mystery" + }, + { + "appid": 323280, + "normalized_name": "sea legends phantasmal light collector's" + }, + { + "appid": 323320, + "normalized_name": "grow home" + }, + { + "appid": 323380, + "normalized_name": "the magic circle" + }, + { + "appid": 323450, + "normalized_name": "alphadia genesis" + }, + { + "appid": 323470, + "normalized_name": "dragon ball xenoverse" + }, + { + "appid": 323490, + "normalized_name": "oblivious garden ~carmina burana" + }, + { + "appid": 323580, + "normalized_name": "jotun valhalla" + }, + { + "appid": 323630, + "normalized_name": "ubinota" + }, + { + "appid": 323670, + "normalized_name": "super indie karts" + }, + { + "appid": 323680, + "normalized_name": "caffeine" + }, + { + "appid": 323700, + "normalized_name": "poltergeist a pixelated horror" + }, + { + "appid": 323720, + "normalized_name": "decay the mare" + }, + { + "appid": 323780, + "normalized_name": "fireworks simulator" + }, + { + "appid": 323850, + "normalized_name": "move or die" + }, + { + "appid": 324070, + "normalized_name": "io" + }, + { + "appid": 324080, + "normalized_name": "rising world" + }, + { + "appid": 324090, + "normalized_name": "football club simulator fcs #21" + }, + { + "appid": 324110, + "normalized_name": "moto racer collection" + }, + { + "appid": 324120, + "normalized_name": "verde station" + }, + { + "appid": 324140, + "normalized_name": "kalimba" + }, + { + "appid": 324160, + "normalized_name": "clannad" + }, + { + "appid": 324170, + "normalized_name": "pyrite heart" + }, + { + "appid": 324190, + "normalized_name": "codespells" + }, + { + "appid": 324240, + "normalized_name": "i will escape" + }, + { + "appid": 324260, + "normalized_name": "voidexpanse" + }, + { + "appid": 324270, + "normalized_name": "revenge rhobar's myth" + }, + { + "appid": 324310, + "normalized_name": "bus simulator 16" + }, + { + "appid": 324390, + "normalized_name": "the body changer" + }, + { + "appid": 324400, + "normalized_name": "pocket god vs desert ashes" + }, + { + "appid": 324420, + "normalized_name": "desert ashes" + }, + { + "appid": 324470, + "normalized_name": "sinarun" + }, + { + "appid": 324510, + "normalized_name": "boundless" + }, + { + "appid": 324520, + "normalized_name": "defense zone 3 ultra hd" + }, + { + "appid": 324570, + "normalized_name": "halo spartan strike" + }, + { + "appid": 324610, + "normalized_name": "the shopkeeper" + }, + { + "appid": 324650, + "normalized_name": "gemini heroes reborn" + }, + { + "appid": 324680, + "normalized_name": "impossible creatures steam" + }, + { + "appid": 324710, + "normalized_name": "to be or not to be" + }, + { + "appid": 324730, + "normalized_name": "caverns of the snow witch (standalone)" + }, + { + "appid": 324740, + "normalized_name": "the warlock of firetop mountain" + }, + { + "appid": 324750, + "normalized_name": "stuntmania reloaded" + }, + { + "appid": 324760, + "normalized_name": "monster truck destruction" + }, + { + "appid": 324770, + "normalized_name": "experience 112" + }, + { + "appid": 324800, + "normalized_name": "shadow warrior 2" + }, + { + "appid": 324810, + "normalized_name": "toxikk" + }, + { + "appid": 325060, + "normalized_name": "parallax" + }, + { + "appid": 325090, + "normalized_name": "deep dungeons of doom" + }, + { + "appid": 325110, + "normalized_name": "save the furries" + }, + { + "appid": 325120, + "normalized_name": "notch the innocent luna eclipsed sinners" + }, + { + "appid": 325150, + "normalized_name": "run or die" + }, + { + "appid": 325160, + "normalized_name": "bik a space adventure" + }, + { + "appid": 325210, + "normalized_name": "arctico" + }, + { + "appid": 325260, + "normalized_name": "panzer ball" + }, + { + "appid": 325300, + "normalized_name": "bearzerkers" + }, + { + "appid": 325320, + "normalized_name": "mythos the beginning director's cut" + }, + { + "appid": 325370, + "normalized_name": "nova 111" + }, + { + "appid": 325420, + "normalized_name": "homebrew patent unknown" + }, + { + "appid": 325430, + "normalized_name": "metaverse" + }, + { + "appid": 325470, + "normalized_name": "1953 nato vs warsaw pact" + }, + { + "appid": 325520, + "normalized_name": "fire ungh’s quest" + }, + { + "appid": 325610, + "normalized_name": "total war attila" + }, + { + "appid": 325670, + "normalized_name": "cryengine wwise project dlc" + }, + { + "appid": 325730, + "normalized_name": "the hive" + }, + { + "appid": 325790, + "normalized_name": "fallen a2p protocol" + }, + { + "appid": 325860, + "normalized_name": "fat chicken" + }, + { + "appid": 325870, + "normalized_name": "clash of puppets" + }, + { + "appid": 325880, + "normalized_name": "crystal catacombs" + }, + { + "appid": 325930, + "normalized_name": "viking squad" + }, + { + "appid": 326060, + "normalized_name": "starlight drifter" + }, + { + "appid": 326110, + "normalized_name": "defenders of the last colony" + }, + { + "appid": 326120, + "normalized_name": "horizon shift" + }, + { + "appid": 326130, + "normalized_name": "alcatraz builder" + }, + { + "appid": 326150, + "normalized_name": "death skid marks" + }, + { + "appid": 326160, + "normalized_name": "shroud of the avatar forsaken virtues" + }, + { + "appid": 326180, + "normalized_name": "sinister city" + }, + { + "appid": 326190, + "normalized_name": "alchemy mysteries prague legends" + }, + { + "appid": 326340, + "normalized_name": "river city super sports challenge ~all stars special~" + }, + { + "appid": 326350, + "normalized_name": "maszyny rolnicze 2015" + }, + { + "appid": 326360, + "normalized_name": "warspear online" + }, + { + "appid": 326380, + "normalized_name": "mystery of neuschwanstein" + }, + { + "appid": 326410, + "normalized_name": "windward" + }, + { + "appid": 326420, + "normalized_name": "sam glyph private eye!" + }, + { + "appid": 326460, + "normalized_name": "shellshock live" + }, + { + "appid": 326470, + "normalized_name": "space warp" + }, + { + "appid": 326480, + "normalized_name": "if my heart had wings" + }, + { + "appid": 326520, + "normalized_name": "chime sharp" + }, + { + "appid": 326650, + "normalized_name": "the legend of candlewind nights & candles" + }, + { + "appid": 326720, + "normalized_name": "instant dungeon!" + }, + { + "appid": 326730, + "normalized_name": "whisper of a rose" + }, + { + "appid": 326740, + "normalized_name": "black fire" + }, + { + "appid": 326840, + "normalized_name": "heart&slash" + }, + { + "appid": 326950, + "normalized_name": "sword of asumi" + }, + { + "appid": 326960, + "normalized_name": "killing floor toy master" + }, + { + "appid": 326990, + "normalized_name": "deep eclipse new space odyssey" + }, + { + "appid": 327000, + "normalized_name": "infinite game works episode 1" + }, + { + "appid": 327010, + "normalized_name": "motorama" + }, + { + "appid": 327030, + "normalized_name": "worms w.m.d" + }, + { + "appid": 327060, + "normalized_name": "feist" + }, + { + "appid": 327090, + "normalized_name": "out of reach" + }, + { + "appid": 327150, + "normalized_name": "deadstone" + }, + { + "appid": 327210, + "normalized_name": "cheesecake cool conrad" + }, + { + "appid": 327220, + "normalized_name": "anna's quest" + }, + { + "appid": 327260, + "normalized_name": "super life of pixel" + }, + { + "appid": 327310, + "normalized_name": "the marvellous miss take" + }, + { + "appid": 327370, + "normalized_name": "brink of consciousness the lonely hearts murders" + }, + { + "appid": 327380, + "normalized_name": "sid meier's pirates! gold plus (classic)" + }, + { + "appid": 327390, + "normalized_name": "sid meier's covert action (classic)" + }, + { + "appid": 327400, + "normalized_name": "sid meier's colonization (classic)" + }, + { + "appid": 327410, + "normalized_name": "a bird story" + }, + { + "appid": 327440, + "normalized_name": "hail to the king deathbat" + }, + { + "appid": 327450, + "normalized_name": "ballads of reemus when the bed bites" + }, + { + "appid": 327510, + "normalized_name": "wasted" + }, + { + "appid": 327560, + "normalized_name": "near death" + }, + { + "appid": 327640, + "normalized_name": "caesaria" + }, + { + "appid": 327670, + "normalized_name": "ironcast" + }, + { + "appid": 327740, + "normalized_name": "tron 2.0" + }, + { + "appid": 327760, + "normalized_name": "bacon man an adventure" + }, + { + "appid": 327860, + "normalized_name": "salt" + }, + { + "appid": 327880, + "normalized_name": "sublevel zero redux" + }, + { + "appid": 327890, + "normalized_name": "i am bread" + }, + { + "appid": 327910, + "normalized_name": "7th legion" + }, + { + "appid": 327920, + "normalized_name": "bloodnet" + }, + { + "appid": 327930, + "normalized_name": "darklands" + }, + { + "appid": 327940, + "normalized_name": "dragonsphere" + }, + { + "appid": 327950, + "normalized_name": "sword of the samurai" + }, + { + "appid": 327960, + "normalized_name": "journey of the king" + }, + { + "appid": 327980, + "normalized_name": "dragon fantasy the volumes of westeria" + }, + { + "appid": 328000, + "normalized_name": "dragon fantasy the black tome of ice" + }, + { + "appid": 328060, + "normalized_name": "tales runner" + }, + { + "appid": 328070, + "normalized_name": "reflex arena" + }, + { + "appid": 328080, + "normalized_name": "rise to ruins" + }, + { + "appid": 328100, + "normalized_name": "gunspell steam" + }, + { + "appid": 328220, + "normalized_name": "wild season" + }, + { + "appid": 328270, + "normalized_name": "leviathan the last day of the decade" + }, + { + "appid": 328310, + "normalized_name": "logistics company" + }, + { + "appid": 328430, + "normalized_name": "rex nebular and the cosmic gender bender" + }, + { + "appid": 328440, + "normalized_name": "deadlock planetary conquest" + }, + { + "appid": 328450, + "normalized_name": "deadlock ii shrine wars" + }, + { + "appid": 328460, + "normalized_name": "redline" + }, + { + "appid": 328470, + "normalized_name": "slave zero" + }, + { + "appid": 328500, + "normalized_name": "potatoman seeks the troof" + }, + { + "appid": 328510, + "normalized_name": "monsters and monocles" + }, + { + "appid": 328550, + "normalized_name": "thieves' gambit the curse of the black cat" + }, + { + "appid": 328590, + "normalized_name": "don't knock twice" + }, + { + "appid": 328640, + "normalized_name": "rock zombie" + }, + { + "appid": 328650, + "normalized_name": "knight of the hamsters" + }, + { + "appid": 328670, + "normalized_name": "deer hunt legends" + }, + { + "appid": 328680, + "normalized_name": "crab cakes rescue" + }, + { + "appid": 328710, + "normalized_name": "one last day" + }, + { + "appid": 328730, + "normalized_name": "letter quest grimm's journey" + }, + { + "appid": 328740, + "normalized_name": "bit odyssey" + }, + { + "appid": 328760, + "normalized_name": "sanctuaryrpg black" + }, + { + "appid": 328780, + "normalized_name": "vampires guide them to safety!" + }, + { + "appid": 328830, + "normalized_name": "rugby union team manager 2015" + }, + { + "appid": 328880, + "normalized_name": "space legends at the edge of the universe" + }, + { + "appid": 328890, + "normalized_name": "fritz for fun 13" + }, + { + "appid": 328900, + "normalized_name": "b 17 flying fortress the mighty 8th" + }, + { + "appid": 328920, + "normalized_name": "f 117a nighthawk stealth fighter 2.0" + }, + { + "appid": 328930, + "normalized_name": "fleet defender the f 14 tomcat simulation" + }, + { + "appid": 328940, + "normalized_name": "the deer god" + }, + { + "appid": 328990, + "normalized_name": "koya rift" + }, + { + "appid": 329000, + "normalized_name": "data hacker corruption" + }, + { + "appid": 329040, + "normalized_name": "dungeon kingdom sign of the moon" + }, + { + "appid": 329050, + "normalized_name": "devil may cry 4 special" + }, + { + "appid": 329070, + "normalized_name": "spyparty" + }, + { + "appid": 329110, + "normalized_name": "gems of war puzzle rpg" + }, + { + "appid": 329130, + "normalized_name": "reassembly" + }, + { + "appid": 329190, + "normalized_name": "volo airsport" + }, + { + "appid": 329200, + "normalized_name": "astray" + }, + { + "appid": 329240, + "normalized_name": "the weaponographist" + }, + { + "appid": 329280, + "normalized_name": "avalon lords dawn rises" + }, + { + "appid": 329310, + "normalized_name": "tile miner" + }, + { + "appid": 329320, + "normalized_name": "qbqbqb" + }, + { + "appid": 329340, + "normalized_name": "cloudphobia" + }, + { + "appid": 329380, + "normalized_name": "stealth inc 2 a game of clones" + }, + { + "appid": 329430, + "normalized_name": "state of decay yose" + }, + { + "appid": 329440, + "normalized_name": "sonic lost world" + }, + { + "appid": 329460, + "normalized_name": "jumpjet rex" + }, + { + "appid": 329480, + "normalized_name": "snow light" + }, + { + "appid": 329620, + "normalized_name": "across the rhine" + }, + { + "appid": 329630, + "normalized_name": "command hq" + }, + { + "appid": 329640, + "normalized_name": "eradicator" + }, + { + "appid": 329650, + "normalized_name": "nam" + }, + { + "appid": 329660, + "normalized_name": "silent service" + }, + { + "appid": 329670, + "normalized_name": "silent service 2" + }, + { + "appid": 329680, + "normalized_name": "task force 1942 surface naval action in the south pacific" + }, + { + "appid": 329690, + "normalized_name": "basketbelle" + }, + { + "appid": 329770, + "normalized_name": "4089 ghost within" + }, + { + "appid": 329830, + "normalized_name": "the moon sliver" + }, + { + "appid": 329860, + "normalized_name": "catlateral damage" + }, + { + "appid": 329970, + "normalized_name": "keeperrl" + }, + { + "appid": 329980, + "normalized_name": "asa a space adventure" + }, + { + "appid": 330020, + "normalized_name": "children of morta" + }, + { + "appid": 330100, + "normalized_name": "bossconstructor" + }, + { + "appid": 330180, + "normalized_name": "pix the cat" + }, + { + "appid": 330270, + "normalized_name": "warlocks vs shadows" + }, + { + "appid": 330350, + "normalized_name": "robotex" + }, + { + "appid": 330370, + "normalized_name": "reload" + }, + { + "appid": 330390, + "normalized_name": "grandia ii hd remaster" + }, + { + "appid": 330420, + "normalized_name": "the interactive adventures of dog mendonça & pizzaboy" + }, + { + "appid": 330450, + "normalized_name": "runes of brennos" + }, + { + "appid": 330460, + "normalized_name": "celestial command" + }, + { + "appid": 330470, + "normalized_name": "over the void" + }, + { + "appid": 330500, + "normalized_name": "planktos" + }, + { + "appid": 330520, + "normalized_name": "tail drift" + }, + { + "appid": 330580, + "normalized_name": "shark attack deathmatch 2" + }, + { + "appid": 330590, + "normalized_name": "independence war deluxe" + }, + { + "appid": 330620, + "normalized_name": "it's a wipe!" + }, + { + "appid": 330660, + "normalized_name": "luna's wandering stars" + }, + { + "appid": 330670, + "normalized_name": "discstorm" + }, + { + "appid": 330680, + "normalized_name": "solar struggle" + }, + { + "appid": 330720, + "normalized_name": "flashpoint campaigns red storm player's" + }, + { + "appid": 330770, + "normalized_name": "radial g racing revolved" + }, + { + "appid": 330820, + "normalized_name": "2064 read only memories" + }, + { + "appid": 330830, + "normalized_name": "tales from the borderlands" + }, + { + "appid": 330880, + "normalized_name": "redemption" + }, + { + "appid": 330990, + "normalized_name": "demon hunter chronicles from beyond" + }, + { + "appid": 331120, + "normalized_name": "passing pineview forest" + }, + { + "appid": 331160, + "normalized_name": "disney•pixar cars" + }, + { + "appid": 331190, + "normalized_name": "master spy" + }, + { + "appid": 331200, + "normalized_name": "grass simulator" + }, + { + "appid": 331210, + "normalized_name": "bolt riley a reggae adventure" + }, + { + "appid": 331220, + "normalized_name": "thief town" + }, + { + "appid": 331290, + "normalized_name": "miko gakkou second year" + }, + { + "appid": 331340, + "normalized_name": "tulpa" + }, + { + "appid": 331370, + "normalized_name": "dauntless" + }, + { + "appid": 331390, + "normalized_name": "winged sakura mindy's arc" + }, + { + "appid": 331400, + "normalized_name": "luna shattered hearts episode 1" + }, + { + "appid": 331430, + "normalized_name": "toby's island" + }, + { + "appid": 331440, + "normalized_name": "bit dungeon ii" + }, + { + "appid": 331450, + "normalized_name": "disney•pixar finding nemo" + }, + { + "appid": 331460, + "normalized_name": "rooms the toymaker's mansion" + }, + { + "appid": 331470, + "normalized_name": "everlasting summer" + }, + { + "appid": 331480, + "normalized_name": "pinstripe" + }, + { + "appid": 331500, + "normalized_name": "executive assault" + }, + { + "appid": 331510, + "normalized_name": "amphora" + }, + { + "appid": 331560, + "normalized_name": "mechanik maszyn rolniczych 2015" + }, + { + "appid": 331570, + "normalized_name": "wimp who stole my pants?" + }, + { + "appid": 331580, + "normalized_name": "ultraworld exodus" + }, + { + "appid": 331600, + "normalized_name": "one piece pirate warriors 3" + }, + { + "appid": 331610, + "normalized_name": "movie studio boss the sequel" + }, + { + "appid": 331650, + "normalized_name": "carmageddon tdr 2000" + }, + { + "appid": 331670, + "normalized_name": "the jackbox party pack" + }, + { + "appid": 331690, + "normalized_name": "crossing souls" + }, + { + "appid": 331720, + "normalized_name": "survivor squad gauntlets" + }, + { + "appid": 331750, + "normalized_name": "disney•pixar wall e" + }, + { + "appid": 331760, + "normalized_name": "supreme league of patriots" + }, + { + "appid": 331790, + "normalized_name": "data hacker reboot" + }, + { + "appid": 331870, + "normalized_name": "aer memories of old" + }, + { + "appid": 331880, + "normalized_name": "truck mechanic simulator 2015" + }, + { + "appid": 331920, + "normalized_name": "airline tycoon deluxe" + }, + { + "appid": 331970, + "normalized_name": "disney's treasure planet battle of procyon" + }, + { + "appid": 331980, + "normalized_name": "last inua" + }, + { + "appid": 332150, + "normalized_name": "level up!" + }, + { + "appid": 332200, + "normalized_name": "axiom verge" + }, + { + "appid": 332250, + "normalized_name": "the next penelope" + }, + { + "appid": 332260, + "normalized_name": "disney•pixar cars mater national championship" + }, + { + "appid": 332270, + "normalized_name": "gunmetal arcadia" + }, + { + "appid": 332310, + "normalized_name": "lego worlds" + }, + { + "appid": 332330, + "normalized_name": "pixeljunk shooter" + }, + { + "appid": 332370, + "normalized_name": "miko gakkou monogatari kaede episode" + }, + { + "appid": 332380, + "normalized_name": "asguaard" + }, + { + "appid": 332390, + "normalized_name": "undefeated" + }, + { + "appid": 332400, + "normalized_name": "girlfriend rescue" + }, + { + "appid": 332410, + "normalized_name": "moonchild" + }, + { + "appid": 332480, + "normalized_name": "phoenix force" + }, + { + "appid": 332490, + "normalized_name": "battle fleet 2" + }, + { + "appid": 332500, + "normalized_name": "grav" + }, + { + "appid": 332530, + "normalized_name": "shutshimi" + }, + { + "appid": 332540, + "normalized_name": "we slay monsters" + }, + { + "appid": 332570, + "normalized_name": "amazing frog?" + }, + { + "appid": 332580, + "normalized_name": "mimpi" + }, + { + "appid": 332610, + "normalized_name": "mystik belle" + }, + { + "appid": 332620, + "normalized_name": "poncho" + }, + { + "appid": 332630, + "normalized_name": "the guilt and the shadow" + }, + { + "appid": 332700, + "normalized_name": "mike was сursed" + }, + { + "appid": 332710, + "normalized_name": "1quest" + }, + { + "appid": 332730, + "normalized_name": "barbarian brawl" + }, + { + "appid": 332760, + "normalized_name": "friendship club" + }, + { + "appid": 332790, + "normalized_name": "darkness assault" + }, + { + "appid": 332800, + "normalized_name": "five nights at freddy's 2" + }, + { + "appid": 332810, + "normalized_name": "midnight mysteries witches of abraham collector's" + }, + { + "appid": 332830, + "normalized_name": "prelogate" + }, + { + "appid": 332880, + "normalized_name": "dsy don't shoot yourself" + }, + { + "appid": 332950, + "normalized_name": "dark deception" + }, + { + "appid": 333100, + "normalized_name": "demesne" + }, + { + "appid": 333120, + "normalized_name": "inside the gear" + }, + { + "appid": 333130, + "normalized_name": "do not fall" + }, + { + "appid": 333210, + "normalized_name": "kaiju a gogo" + }, + { + "appid": 333250, + "normalized_name": "forward to the sky" + }, + { + "appid": 333260, + "normalized_name": "marvin's mittens" + }, + { + "appid": 333290, + "normalized_name": "mos speedrun 2" + }, + { + "appid": 333300, + "normalized_name": "adom (ancient domains of mystery)" + }, + { + "appid": 333330, + "normalized_name": "song of the myrne what lies beneath" + }, + { + "appid": 333340, + "normalized_name": "star rangers xe" + }, + { + "appid": 333350, + "normalized_name": "cults and daggers" + }, + { + "appid": 333390, + "normalized_name": "tales of aravorn seasons of the wolf" + }, + { + "appid": 333420, + "normalized_name": "cossacks 3" + }, + { + "appid": 333430, + "normalized_name": "sinking island" + }, + { + "appid": 333490, + "normalized_name": "replay vhs is not dead" + }, + { + "appid": 333510, + "normalized_name": "isbarah" + }, + { + "appid": 333540, + "normalized_name": "neocolonialism" + }, + { + "appid": 333580, + "normalized_name": "slow down bull" + }, + { + "appid": 333600, + "normalized_name": "nekopara vol. 1" + }, + { + "appid": 333640, + "normalized_name": "caves of qud" + }, + { + "appid": 333650, + "normalized_name": "pahelika revelations" + }, + { + "appid": 333660, + "normalized_name": "towers of altrac epic defense battles" + }, + { + "appid": 333690, + "normalized_name": "epanalepsis" + }, + { + "appid": 333730, + "normalized_name": "dark gates" + }, + { + "appid": 333760, + "normalized_name": "vintage year" + }, + { + "appid": 333870, + "normalized_name": "feel a maze" + }, + { + "appid": 333880, + "normalized_name": "braveland wizard" + }, + { + "appid": 333930, + "normalized_name": "dirty bomb" + }, + { + "appid": 333950, + "normalized_name": "medieval engineers" + }, + { + "appid": 333970, + "normalized_name": "a druid's duel" + }, + { + "appid": 333980, + "normalized_name": "akiba's trip undead & undressed" + }, + { + "appid": 333990, + "normalized_name": "conclave" + }, + { + "appid": 334030, + "normalized_name": "epic arena" + }, + { + "appid": 334040, + "normalized_name": "down to one" + }, + { + "appid": 334070, + "normalized_name": "hektor" + }, + { + "appid": 334100, + "normalized_name": "extreme exorcism" + }, + { + "appid": 334120, + "normalized_name": "armikrog" + }, + { + "appid": 334140, + "normalized_name": "roche fusion" + }, + { + "appid": 334190, + "normalized_name": "insanity's blade" + }, + { + "appid": 334210, + "normalized_name": "fortified" + }, + { + "appid": 334230, + "normalized_name": "town of salem" + }, + { + "appid": 334260, + "normalized_name": "icebound" + }, + { + "appid": 334270, + "normalized_name": "star traders 4x empires" + }, + { + "appid": 334280, + "normalized_name": "lost sea" + }, + { + "appid": 334300, + "normalized_name": "fake colours" + }, + { + "appid": 334310, + "normalized_name": "plebby quest the crusades" + }, + { + "appid": 334350, + "normalized_name": "don't move" + }, + { + "appid": 334360, + "normalized_name": "passcode breaker the day before" + }, + { + "appid": 334410, + "normalized_name": "jump" + }, + { + "appid": 334420, + "normalized_name": "out there ω" + }, + { + "appid": 334470, + "normalized_name": "adventures of robinson crusoe" + }, + { + "appid": 334480, + "normalized_name": "robinson crusoe and the cursed pirates" + }, + { + "appid": 334490, + "normalized_name": "the fool" + }, + { + "appid": 334540, + "normalized_name": "vox machinae" + }, + { + "appid": 334560, + "normalized_name": "square heroes" + }, + { + "appid": 334620, + "normalized_name": "soccertron" + }, + { + "appid": 334690, + "normalized_name": "squirreltopia" + }, + { + "appid": 334710, + "normalized_name": "ilamentia" + }, + { + "appid": 334830, + "normalized_name": "entropy rising" + }, + { + "appid": 334840, + "normalized_name": "drive to hell" + }, + { + "appid": 334850, + "normalized_name": "1931 scheherazade at the library of pergamum" + }, + { + "appid": 334920, + "normalized_name": "zero k" + }, + { + "appid": 334940, + "normalized_name": "yoku's island express" + }, + { + "appid": 334960, + "normalized_name": "cell hd emergence" + }, + { + "appid": 334980, + "normalized_name": "into blue valley" + }, + { + "appid": 335000, + "normalized_name": "tormentum dark sorrow" + }, + { + "appid": 335010, + "normalized_name": "steam and metal" + }, + { + "appid": 335050, + "normalized_name": "world of leaders" + }, + { + "appid": 335070, + "normalized_name": "vrc pro" + }, + { + "appid": 335090, + "normalized_name": "goscurry" + }, + { + "appid": 335100, + "normalized_name": "dwarf tower" + }, + { + "appid": 335120, + "normalized_name": "serpent in the staglands" + }, + { + "appid": 335190, + "normalized_name": "200% mixed juice!" + }, + { + "appid": 335200, + "normalized_name": "manacollect" + }, + { + "appid": 335210, + "normalized_name": "rift's cave" + }, + { + "appid": 335220, + "normalized_name": "but to paint a universe" + }, + { + "appid": 335240, + "normalized_name": "transformice" + }, + { + "appid": 335300, + "normalized_name": "dark souls ii scholar of the first sin" + }, + { + "appid": 335310, + "normalized_name": "eisenbahn x" + }, + { + "appid": 335320, + "normalized_name": "bet on soldier" + }, + { + "appid": 335420, + "normalized_name": "ルナティックドーン 前途への道標" + }, + { + "appid": 335430, + "normalized_name": "grimoire manastorm" + }, + { + "appid": 335440, + "normalized_name": "dungeon shooter 2" + }, + { + "appid": 335450, + "normalized_name": "curse of the assassin" + }, + { + "appid": 335460, + "normalized_name": "an assassin in orlandes" + }, + { + "appid": 335560, + "normalized_name": "light bound" + }, + { + "appid": 335570, + "normalized_name": "back to life 3" + }, + { + "appid": 335620, + "normalized_name": "star traders frontiers" + }, + { + "appid": 335660, + "normalized_name": "cafe 0 ~the drowned mermaid~" + }, + { + "appid": 335670, + "normalized_name": "lisa the painful" + }, + { + "appid": 335690, + "normalized_name": "duplicity ~beyond the lies~" + }, + { + "appid": 335700, + "normalized_name": "i am weapon revival" + }, + { + "appid": 335770, + "normalized_name": "tkl online" + }, + { + "appid": 335790, + "normalized_name": "words for evil" + }, + { + "appid": 335820, + "normalized_name": "dream of mirror online" + }, + { + "appid": 335830, + "normalized_name": "distant star revenant fleet" + }, + { + "appid": 335840, + "normalized_name": "goats on a bridge" + }, + { + "appid": 335900, + "normalized_name": "angels of fasaria version 2.0" + }, + { + "appid": 335920, + "normalized_name": "ephemerid a musical adventure" + }, + { + "appid": 336020, + "normalized_name": "pahelika secret legends" + }, + { + "appid": 336030, + "normalized_name": "race.a.bit" + }, + { + "appid": 336060, + "normalized_name": "raptor call of the shadows 2015" + }, + { + "appid": 336080, + "normalized_name": "vietnam ‘65" + }, + { + "appid": 336090, + "normalized_name": "sky mercenaries" + }, + { + "appid": 336110, + "normalized_name": "bloody streets" + }, + { + "appid": 336130, + "normalized_name": "shardlight" + }, + { + "appid": 336140, + "normalized_name": "unavowed" + }, + { + "appid": 336150, + "normalized_name": "virtual pool 4" + }, + { + "appid": 336160, + "normalized_name": "monsters!" + }, + { + "appid": 336200, + "normalized_name": "starlaxis supernova" + }, + { + "appid": 336210, + "normalized_name": "just death" + }, + { + "appid": 336220, + "normalized_name": "orbitor" + }, + { + "appid": 336230, + "normalized_name": "way to go!" + }, + { + "appid": 336240, + "normalized_name": "typoman" + }, + { + "appid": 336300, + "normalized_name": "hearthlands" + }, + { + "appid": 336380, + "normalized_name": "catmouth island" + }, + { + "appid": 336420, + "normalized_name": "bloodsports.tv" + }, + { + "appid": 336440, + "normalized_name": "super cane magic zero legend of the cane cane" + }, + { + "appid": 336610, + "normalized_name": "outcast 1.1" + }, + { + "appid": 336630, + "normalized_name": "crash and burn racing" + }, + { + "appid": 336670, + "normalized_name": "hit" + }, + { + "appid": 336680, + "normalized_name": "trebuchet" + }, + { + "appid": 336700, + "normalized_name": "elastrix" + }, + { + "appid": 336710, + "normalized_name": "supreme league of patriots episode 2 patriot frames" + }, + { + "appid": 336730, + "normalized_name": "supreme league of patriots episode 3 ice cold in ellis" + }, + { + "appid": 336760, + "normalized_name": "pilot brothers" + }, + { + "appid": 336770, + "normalized_name": "pilot brothers 2" + }, + { + "appid": 336780, + "normalized_name": "pilot brothers 3 back side of the earth" + }, + { + "appid": 336840, + "normalized_name": "color guardians" + }, + { + "appid": 336930, + "normalized_name": "redux dark matters" + }, + { + "appid": 336940, + "normalized_name": "basingstoke" + }, + { + "appid": 337000, + "normalized_name": "deus ex mankind divided" + }, + { + "appid": 337040, + "normalized_name": "deadnaut" + }, + { + "appid": 337150, + "normalized_name": "sentinels of the multiverse" + }, + { + "appid": 337210, + "normalized_name": "royal bounty hd" + }, + { + "appid": 337220, + "normalized_name": "guild commander" + }, + { + "appid": 337270, + "normalized_name": "ostrich island" + }, + { + "appid": 337280, + "normalized_name": "planetship" + }, + { + "appid": 337290, + "normalized_name": "still not dead" + }, + { + "appid": 337320, + "normalized_name": "paint the town red" + }, + { + "appid": 337340, + "normalized_name": "finding paradise" + }, + { + "appid": 337350, + "normalized_name": "flywrench" + }, + { + "appid": 337360, + "normalized_name": "dead island retro revenge" + }, + { + "appid": 337410, + "normalized_name": "karos" + }, + { + "appid": 337450, + "normalized_name": "dream tale" + }, + { + "appid": 337460, + "normalized_name": "18 wheels of steel pedal to the metal" + }, + { + "appid": 337480, + "normalized_name": "zombie vikings" + }, + { + "appid": 337490, + "normalized_name": "four sided fantasy" + }, + { + "appid": 337630, + "normalized_name": "bermuda" + }, + { + "appid": 337650, + "normalized_name": "soft body" + }, + { + "appid": 337670, + "normalized_name": "default dan" + }, + { + "appid": 337680, + "normalized_name": "star hammer the vanguard prophecy" + }, + { + "appid": 337700, + "normalized_name": "scs deorbit" + }, + { + "appid": 337720, + "normalized_name": "the sea will claim everything" + }, + { + "appid": 337730, + "normalized_name": "battletank loba" + }, + { + "appid": 337760, + "normalized_name": "decisive campaigns the blitzkrieg from warsaw to paris" + }, + { + "appid": 337820, + "normalized_name": "the mims beginning" + }, + { + "appid": 337850, + "normalized_name": "avernum 2 crystal souls" + }, + { + "appid": 337880, + "normalized_name": "one late night deadline" + }, + { + "appid": 337890, + "normalized_name": "dysfunctional systems orientation" + }, + { + "appid": 337930, + "normalized_name": "nameless ~the one thing you must recall~" + }, + { + "appid": 337940, + "normalized_name": "x note" + }, + { + "appid": 337960, + "normalized_name": "clusterpuck 99" + }, + { + "appid": 337970, + "normalized_name": "wildlife park wild creatures" + }, + { + "appid": 337980, + "normalized_name": "vagrant hearts" + }, + { + "appid": 338000, + "normalized_name": "echoes+" + }, + { + "appid": 338030, + "normalized_name": "mission control nanomech" + }, + { + "appid": 338040, + "normalized_name": "bears can't drift!?" + }, + { + "appid": 338050, + "normalized_name": "anoxemia" + }, + { + "appid": 338060, + "normalized_name": "mahjong pretty girls battle" + }, + { + "appid": 338070, + "normalized_name": "ルナティックドーン レジェンドパック" + }, + { + "appid": 338080, + "normalized_name": "a列車で行こう8" + }, + { + "appid": 338090, + "normalized_name": "atlas レジェンドパック" + }, + { + "appid": 338100, + "normalized_name": "栄冠は君に レジェンドパック" + }, + { + "appid": 338110, + "normalized_name": "khaba" + }, + { + "appid": 338120, + "normalized_name": "marble duel sphere matching tactical fantasy" + }, + { + "appid": 338130, + "normalized_name": "strategy & tactics wargame collection" + }, + { + "appid": 338140, + "normalized_name": "venetica gold" + }, + { + "appid": 338170, + "normalized_name": "ratz instagib" + }, + { + "appid": 338190, + "normalized_name": "just get through" + }, + { + "appid": 338260, + "normalized_name": "usagi yojimbo way of the ronin" + }, + { + "appid": 338290, + "normalized_name": "molecats" + }, + { + "appid": 338300, + "normalized_name": "disney's chicken little ace in action" + }, + { + "appid": 338310, + "normalized_name": "warden melody of the undergrowth" + }, + { + "appid": 338320, + "normalized_name": "pixel heroes byte & magic" + }, + { + "appid": 338330, + "normalized_name": "super treasure arena" + }, + { + "appid": 338350, + "normalized_name": "farm world" + }, + { + "appid": 338390, + "normalized_name": "the technomancer" + }, + { + "appid": 338420, + "normalized_name": "alum" + }, + { + "appid": 338530, + "normalized_name": "trouble in the manor" + }, + { + "appid": 338540, + "normalized_name": "navy field 2 conqueror of the ocean" + }, + { + "appid": 338550, + "normalized_name": "terra lander" + }, + { + "appid": 338590, + "normalized_name": "the race for the white house" + }, + { + "appid": 338630, + "normalized_name": "wildlife camp" + }, + { + "appid": 338640, + "normalized_name": "subsiege" + }, + { + "appid": 338710, + "normalized_name": "urja" + }, + { + "appid": 338760, + "normalized_name": "death ray manta se" + }, + { + "appid": 338800, + "normalized_name": "seven kingdoms 2 hd" + }, + { + "appid": 338810, + "normalized_name": "demise of nations" + }, + { + "appid": 338820, + "normalized_name": "retro commander" + }, + { + "appid": 338830, + "normalized_name": "star nomad" + }, + { + "appid": 338840, + "normalized_name": "hollow's land" + }, + { + "appid": 338890, + "normalized_name": "harold" + }, + { + "appid": 338960, + "normalized_name": "rescue team" + }, + { + "appid": 338980, + "normalized_name": "moai build your dream" + }, + { + "appid": 339000, + "normalized_name": "ukrainian ninja" + }, + { + "appid": 339040, + "normalized_name": "disney's chicken little" + }, + { + "appid": 339090, + "normalized_name": "pig eat ball" + }, + { + "appid": 339110, + "normalized_name": "plith" + }, + { + "appid": 339120, + "normalized_name": "fork parker's holiday profit hike" + }, + { + "appid": 339130, + "normalized_name": "morningstar descent to deadrock" + }, + { + "appid": 339160, + "normalized_name": "tales of the orient the rising sun" + }, + { + "appid": 339190, + "normalized_name": "dead synchronicity tomorrow comes today" + }, + { + "appid": 339200, + "normalized_name": "oceanhorn monster of uncharted seas" + }, + { + "appid": 339210, + "normalized_name": "rescue 2 everyday heroes" + }, + { + "appid": 339230, + "normalized_name": "zombi" + }, + { + "appid": 339240, + "normalized_name": "10 years after" + }, + { + "appid": 339250, + "normalized_name": "winged sakura endless dream" + }, + { + "appid": 339290, + "normalized_name": "castle" + }, + { + "appid": 339320, + "normalized_name": "snake blocks" + }, + { + "appid": 339340, + "normalized_name": "resident evil 0" + }, + { + "appid": 339350, + "normalized_name": "choice of robots" + }, + { + "appid": 339400, + "normalized_name": "runestone keeper" + }, + { + "appid": 339440, + "normalized_name": "critical annihilation" + }, + { + "appid": 339460, + "normalized_name": "a pixel story" + }, + { + "appid": 339470, + "normalized_name": "retention" + }, + { + "appid": 339500, + "normalized_name": "blasted fortress" + }, + { + "appid": 339510, + "normalized_name": "psy high" + }, + { + "appid": 339560, + "normalized_name": "man alive" + }, + { + "appid": 339570, + "normalized_name": "enemy" + }, + { + "appid": 339580, + "normalized_name": "ember" + }, + { + "appid": 339590, + "normalized_name": "crowman & wolfboy" + }, + { + "appid": 339600, + "normalized_name": "vega conflict" + }, + { + "appid": 339610, + "normalized_name": "freestyle 2 street basketball" + }, + { + "appid": 339690, + "normalized_name": "paperbound" + }, + { + "appid": 339700, + "normalized_name": "i gladiator" + }, + { + "appid": 339710, + "normalized_name": "cyber chicken" + }, + { + "appid": 339720, + "normalized_name": "debugger 3.16 hack'n'run" + }, + { + "appid": 339740, + "normalized_name": "suicats" + }, + { + "appid": 339790, + "normalized_name": "rfactor" + }, + { + "appid": 339800, + "normalized_name": "huniepop" + }, + { + "appid": 339820, + "normalized_name": "starwalker" + }, + { + "appid": 339830, + "normalized_name": "the church in the darkness" + }, + { + "appid": 339840, + "normalized_name": "the moment of silence" + }, + { + "appid": 339850, + "normalized_name": "overclocked a history of violence" + }, + { + "appid": 339910, + "normalized_name": "uncraft world" + }, + { + "appid": 340000, + "normalized_name": "headlander" + }, + { + "appid": 340020, + "normalized_name": "nosebound" + }, + { + "appid": 340030, + "normalized_name": "dungeon of gain" + }, + { + "appid": 340050, + "normalized_name": "survivalist" + }, + { + "appid": 340070, + "normalized_name": "battle ranch pigs vs plants" + }, + { + "appid": 340150, + "normalized_name": "basement" + }, + { + "appid": 340170, + "normalized_name": "final fantasy type 0 hd" + }, + { + "appid": 340190, + "normalized_name": "night crisis" + }, + { + "appid": 340200, + "normalized_name": "bloop" + }, + { + "appid": 340210, + "normalized_name": "predestination" + }, + { + "appid": 340220, + "normalized_name": "shadows of war" + }, + { + "appid": 340250, + "normalized_name": "crystal towers 2 xl" + }, + { + "appid": 340270, + "normalized_name": "timeframe" + }, + { + "appid": 340280, + "normalized_name": "cubot" + }, + { + "appid": 340290, + "normalized_name": "dr.green" + }, + { + "appid": 340320, + "normalized_name": "sinless + ost" + }, + { + "appid": 340330, + "normalized_name": "deity quest" + }, + { + "appid": 340340, + "normalized_name": "domestic dog" + }, + { + "appid": 340350, + "normalized_name": "quintet" + }, + { + "appid": 340360, + "normalized_name": "tomb of tyrants" + }, + { + "appid": 340380, + "normalized_name": "pizzarian" + }, + { + "appid": 340400, + "normalized_name": "lucid awakening 2" + }, + { + "appid": 340410, + "normalized_name": "superbike tt" + }, + { + "appid": 340440, + "normalized_name": "grand class melee 2" + }, + { + "appid": 340450, + "normalized_name": "crashed lander" + }, + { + "appid": 340460, + "normalized_name": "spartans vs zombies defense" + }, + { + "appid": 340470, + "normalized_name": "you are not a banana better" + }, + { + "appid": 340480, + "normalized_name": "project green beat" + }, + { + "appid": 340490, + "normalized_name": "subterrain" + }, + { + "appid": 340500, + "normalized_name": "the warriorlock" + }, + { + "appid": 340520, + "normalized_name": "tallowmere" + }, + { + "appid": 340550, + "normalized_name": "crunch time!" + }, + { + "appid": 340560, + "normalized_name": "wanted corp." + }, + { + "appid": 340570, + "normalized_name": "wolfwars" + }, + { + "appid": 340580, + "normalized_name": "armed with wings rearmed" + }, + { + "appid": 340600, + "normalized_name": "the depths of tolagal" + }, + { + "appid": 340630, + "normalized_name": "ninja guy" + }, + { + "appid": 340680, + "normalized_name": "bunny bash" + }, + { + "appid": 340700, + "normalized_name": "aqua panic !" + }, + { + "appid": 340720, + "normalized_name": "the tiny tale 2" + }, + { + "appid": 340730, + "normalized_name": "sunrider academy" + }, + { + "appid": 340750, + "normalized_name": "gunslugs 2" + }, + { + "appid": 340790, + "normalized_name": "the black door" + }, + { + "appid": 340800, + "normalized_name": "unhack" + }, + { + "appid": 340810, + "normalized_name": "deepworld" + }, + { + "appid": 340830, + "normalized_name": "razenroth" + }, + { + "appid": 340840, + "normalized_name": "the corridor on behalf of the dead" + }, + { + "appid": 340860, + "normalized_name": "raiderssphere4th" + }, + { + "appid": 340880, + "normalized_name": "solar war" + }, + { + "appid": 340920, + "normalized_name": "siege of turtle enclave" + }, + { + "appid": 340950, + "normalized_name": "let there be life" + }, + { + "appid": 340960, + "normalized_name": "pulsen" + }, + { + "appid": 340990, + "normalized_name": "disney bolt" + }, + { + "appid": 341000, + "normalized_name": "mad games tycoon" + }, + { + "appid": 341020, + "normalized_name": "chronicles of teddy" + }, + { + "appid": 341030, + "normalized_name": "colonial conquest" + }, + { + "appid": 341040, + "normalized_name": "wars across the world" + }, + { + "appid": 341050, + "normalized_name": "splitmind" + }, + { + "appid": 341060, + "normalized_name": "the lady" + }, + { + "appid": 341070, + "normalized_name": "stay dead evolution" + }, + { + "appid": 341080, + "normalized_name": "nexus one core" + }, + { + "appid": 341090, + "normalized_name": "on a roll 3d" + }, + { + "appid": 341110, + "normalized_name": "unraveled tale of the shipbreaker's daughter" + }, + { + "appid": 341120, + "normalized_name": "glorkian warrior the trials of glork" + }, + { + "appid": 341150, + "normalized_name": "age of fear 2 the chaos lord gold" + }, + { + "appid": 341160, + "normalized_name": "steam heroes" + }, + { + "appid": 341170, + "normalized_name": "adventures of chris" + }, + { + "appid": 341260, + "normalized_name": "isaac the adventurer" + }, + { + "appid": 341270, + "normalized_name": "samphi" + }, + { + "appid": 341290, + "normalized_name": "lazors" + }, + { + "appid": 341310, + "normalized_name": "greyfox rpg" + }, + { + "appid": 341360, + "normalized_name": "paparazzi" + }, + { + "appid": 341380, + "normalized_name": "countless rooms of death" + }, + { + "appid": 341390, + "normalized_name": "vulture for nethack" + }, + { + "appid": 341440, + "normalized_name": "banzai pecan the last hope for the young century" + }, + { + "appid": 341460, + "normalized_name": "fallen temple" + }, + { + "appid": 341470, + "normalized_name": "loot hunter" + }, + { + "appid": 341500, + "normalized_name": "camera obscura" + }, + { + "appid": 341510, + "normalized_name": "crayon chronicles" + }, + { + "appid": 341530, + "normalized_name": "stardust vanguards" + }, + { + "appid": 341540, + "normalized_name": "trip steam" + }, + { + "appid": 341550, + "normalized_name": "super cyborg" + }, + { + "appid": 341570, + "normalized_name": "throbax td" + }, + { + "appid": 341640, + "normalized_name": "relativity wars a science space rts" + }, + { + "appid": 341660, + "normalized_name": "barren roads" + }, + { + "appid": 341680, + "normalized_name": "strato" + }, + { + "appid": 341690, + "normalized_name": "the great fusion" + }, + { + "appid": 341700, + "normalized_name": "cahors sunset" + }, + { + "appid": 341710, + "normalized_name": "crest an indirect god sim" + }, + { + "appid": 341720, + "normalized_name": "among ripples" + }, + { + "appid": 341730, + "normalized_name": "dustoff heli rescue" + }, + { + "appid": 341750, + "normalized_name": "a.v." + }, + { + "appid": 341760, + "normalized_name": "flem" + }, + { + "appid": 341770, + "normalized_name": "geared" + }, + { + "appid": 341800, + "normalized_name": "keep talking and nobody explodes" + }, + { + "appid": 341820, + "normalized_name": "plush" + }, + { + "appid": 341870, + "normalized_name": "tembo the badass elephant" + }, + { + "appid": 341890, + "normalized_name": "hitbox" + }, + { + "appid": 341910, + "normalized_name": "space commando" + }, + { + "appid": 341930, + "normalized_name": "space station alpha" + }, + { + "appid": 341940, + "normalized_name": "hatred" + }, + { + "appid": 341950, + "normalized_name": "lux delux" + }, + { + "appid": 342020, + "normalized_name": "bit evolution" + }, + { + "appid": 342080, + "normalized_name": "rogue invader" + }, + { + "appid": 342090, + "normalized_name": "the clans saga of the twins" + }, + { + "appid": 342100, + "normalized_name": "sym" + }, + { + "appid": 342180, + "normalized_name": "arizona sunshine" + }, + { + "appid": 342190, + "normalized_name": "skyworld" + }, + { + "appid": 342200, + "normalized_name": "mechwarrior online legends" + }, + { + "appid": 342230, + "normalized_name": "air guardians" + }, + { + "appid": 342240, + "normalized_name": "schar blue shield alliance" + }, + { + "appid": 342250, + "normalized_name": "aspectus rinascimento chronicles" + }, + { + "appid": 342260, + "normalized_name": "nevermind" + }, + { + "appid": 342300, + "normalized_name": "zombie kill of the week reborn" + }, + { + "appid": 342310, + "normalized_name": "riot civil unrest" + }, + { + "appid": 342350, + "normalized_name": "into the gloom" + }, + { + "appid": 342360, + "normalized_name": "train of afterlife" + }, + { + "appid": 342380, + "normalized_name": "sakura angels" + }, + { + "appid": 342450, + "normalized_name": "sword daughter" + }, + { + "appid": 342480, + "normalized_name": "gunscape" + }, + { + "appid": 342490, + "normalized_name": "shipwreck" + }, + { + "appid": 342500, + "normalized_name": "human extinction simulator" + }, + { + "appid": 342510, + "normalized_name": "bret airborne" + }, + { + "appid": 342520, + "normalized_name": "boxeswithguns" + }, + { + "appid": 342530, + "normalized_name": "heroes never lose professor puzzler's perplexing ploy" + }, + { + "appid": 342540, + "normalized_name": "terminal hacker into the deep" + }, + { + "appid": 342550, + "normalized_name": "phantasmal survival horror roguelike" + }, + { + "appid": 342560, + "normalized_name": "airships conquer the skies" + }, + { + "appid": 342570, + "normalized_name": "his (heroes in the sky)" + }, + { + "appid": 342580, + "normalized_name": "12 labours of hercules" + }, + { + "appid": 342610, + "normalized_name": "hyperrogue" + }, + { + "appid": 342620, + "normalized_name": "it came from space and ate our brains" + }, + { + "appid": 342630, + "normalized_name": "witch's pranks frog's fortune collector's" + }, + { + "appid": 342640, + "normalized_name": "pixel privateers" + }, + { + "appid": 342650, + "normalized_name": "fermi's path" + }, + { + "appid": 342660, + "normalized_name": "brawlerz arena" + }, + { + "appid": 342730, + "normalized_name": "refactor" + }, + { + "appid": 342860, + "normalized_name": "dark quest" + }, + { + "appid": 342870, + "normalized_name": "corona motorsport" + }, + { + "appid": 342890, + "normalized_name": "synonymy" + }, + { + "appid": 342910, + "normalized_name": "vantage primitive survival game" + }, + { + "appid": 342920, + "normalized_name": "toto temple deluxe" + }, + { + "appid": 342940, + "normalized_name": "project gorgon" + }, + { + "appid": 342970, + "normalized_name": "pixel survivors" + }, + { + "appid": 342980, + "normalized_name": "destination sol" + }, + { + "appid": 342990, + "normalized_name": "15 days" + }, + { + "appid": 343000, + "normalized_name": "the mystery of the druids" + }, + { + "appid": 343020, + "normalized_name": "magnets" + }, + { + "appid": 343070, + "normalized_name": "world of subways 4 – new york line 7" + }, + { + "appid": 343090, + "normalized_name": "simplerockets" + }, + { + "appid": 343100, + "normalized_name": "overture" + }, + { + "appid": 343120, + "normalized_name": "motorbike" + }, + { + "appid": 343140, + "normalized_name": "disney•pixar cars radiator springs adventures" + }, + { + "appid": 343160, + "normalized_name": "reef defense" + }, + { + "appid": 343170, + "normalized_name": "cyberpunk 3776" + }, + { + "appid": 343180, + "normalized_name": "top trumps turbo" + }, + { + "appid": 343250, + "normalized_name": "gene" + }, + { + "appid": 343270, + "normalized_name": "disillusions manga horror" + }, + { + "appid": 343280, + "normalized_name": "zotrix" + }, + { + "appid": 343320, + "normalized_name": "staudsoft's synthetic world beta" + }, + { + "appid": 343340, + "normalized_name": "tiamat x" + }, + { + "appid": 343360, + "normalized_name": "particula" + }, + { + "appid": 343370, + "normalized_name": "slammed!" + }, + { + "appid": 343390, + "normalized_name": "elementary my dear majesty!" + }, + { + "appid": 343410, + "normalized_name": "insynch" + }, + { + "appid": 343430, + "normalized_name": "hypnosis" + }, + { + "appid": 343440, + "normalized_name": "crash drive 2" + }, + { + "appid": 343560, + "normalized_name": "bob was hungry" + }, + { + "appid": 343570, + "normalized_name": "rainbow hero" + }, + { + "appid": 343630, + "normalized_name": "cronix" + }, + { + "appid": 343690, + "normalized_name": "silicone 2" + }, + { + "appid": 343710, + "normalized_name": "kholat" + }, + { + "appid": 343730, + "normalized_name": "irrational exuberance prologue" + }, + { + "appid": 343740, + "normalized_name": "inmind vr" + }, + { + "appid": 343770, + "normalized_name": "rotieer" + }, + { + "appid": 343780, + "normalized_name": "cat goes fishing" + }, + { + "appid": 343800, + "normalized_name": "shadowgate macventure series" + }, + { + "appid": 343810, + "normalized_name": "the uninvited macventure series" + }, + { + "appid": 343820, + "normalized_name": "déjà vu macventure series" + }, + { + "appid": 343830, + "normalized_name": "déjà vu ii macventure series" + }, + { + "appid": 343840, + "normalized_name": "trash tv" + }, + { + "appid": 343860, + "normalized_name": "tacoma" + }, + { + "appid": 343930, + "normalized_name": "fort defense" + }, + { + "appid": 344030, + "normalized_name": "ghost pirates of vooju island" + }, + { + "appid": 344100, + "normalized_name": "never ending night" + }, + { + "appid": 344130, + "normalized_name": "cataegis the white wind" + }, + { + "appid": 344160, + "normalized_name": "world of cinema movie tycoon" + }, + { + "appid": 344190, + "normalized_name": "immortal empire" + }, + { + "appid": 344220, + "normalized_name": "janky tanks" + }, + { + "appid": 344230, + "normalized_name": "pixel puzzles 2 birds" + }, + { + "appid": 344270, + "normalized_name": "innercube" + }, + { + "appid": 344300, + "normalized_name": "heckabomb" + }, + { + "appid": 344340, + "normalized_name": "front office football seven" + }, + { + "appid": 344410, + "normalized_name": "magnetic cage closed" + }, + { + "appid": 344440, + "normalized_name": "sacra terra angelic night" + }, + { + "appid": 344480, + "normalized_name": "quell" + }, + { + "appid": 344500, + "normalized_name": "three fourths home extended" + }, + { + "appid": 344630, + "normalized_name": "princess evangile all ages version" + }, + { + "appid": 344740, + "normalized_name": "cryptark" + }, + { + "appid": 344760, + "normalized_name": "reign of kings" + }, + { + "appid": 344770, + "normalized_name": "fault milestone two side above" + }, + { + "appid": 344800, + "normalized_name": "world of mixed martial arts 3" + }, + { + "appid": 344810, + "normalized_name": "total extreme wrestling 2010" + }, + { + "appid": 344820, + "normalized_name": "forsaken fortress strategy" + }, + { + "appid": 344840, + "normalized_name": "gratuitous space battles 2" + }, + { + "appid": 344850, + "normalized_name": "big pharma" + }, + { + "appid": 344860, + "normalized_name": "crystal story ii" + }, + { + "appid": 344890, + "normalized_name": "a.r.m. planetary prospectors ep1 asteroid resource mining" + }, + { + "appid": 344900, + "normalized_name": "undeadz!" + }, + { + "appid": 344910, + "normalized_name": "sun blast star fighter" + }, + { + "appid": 344960, + "normalized_name": "jaques roque" + }, + { + "appid": 345010, + "normalized_name": "ascent the space game" + }, + { + "appid": 345020, + "normalized_name": "a feeble saga" + }, + { + "appid": 345030, + "normalized_name": "3d engineers" + }, + { + "appid": 345060, + "normalized_name": "stay alight" + }, + { + "appid": 345080, + "normalized_name": "flame over" + }, + { + "appid": 345090, + "normalized_name": "ancient planet tower defense" + }, + { + "appid": 345120, + "normalized_name": "vox populi vox dei 2" + }, + { + "appid": 345130, + "normalized_name": "dark matter" + }, + { + "appid": 345140, + "normalized_name": "crystal rift" + }, + { + "appid": 345180, + "normalized_name": "victor vran arpg" + }, + { + "appid": 345200, + "normalized_name": "tasty blue" + }, + { + "appid": 345220, + "normalized_name": "agent awesome" + }, + { + "appid": 345230, + "normalized_name": "the dark inside me" + }, + { + "appid": 345240, + "normalized_name": "shogun total war collection" + }, + { + "appid": 345260, + "normalized_name": "medieval total war collection" + }, + { + "appid": 345280, + "normalized_name": "lost in a forest" + }, + { + "appid": 345290, + "normalized_name": "the quivering" + }, + { + "appid": 345330, + "normalized_name": "eden rising" + }, + { + "appid": 345340, + "normalized_name": "the grave digger" + }, + { + "appid": 345350, + "normalized_name": "lightning returns final fantasy xiii" + }, + { + "appid": 345390, + "normalized_name": "king's quest" + }, + { + "appid": 345430, + "normalized_name": "the cursed forest" + }, + { + "appid": 345440, + "normalized_name": "vapour" + }, + { + "appid": 345460, + "normalized_name": "war of omens card game" + }, + { + "appid": 345480, + "normalized_name": "lumo" + }, + { + "appid": 345540, + "normalized_name": "inbetween land" + }, + { + "appid": 345580, + "normalized_name": "universal combat ce" + }, + { + "appid": 345610, + "normalized_name": "the fruit of grisaia" + }, + { + "appid": 345620, + "normalized_name": "the labyrinth of grisaia" + }, + { + "appid": 345630, + "normalized_name": "the eden of grisaia" + }, + { + "appid": 345640, + "normalized_name": "block legend dx" + }, + { + "appid": 345650, + "normalized_name": "without within" + }, + { + "appid": 345660, + "normalized_name": "ride" + }, + { + "appid": 345690, + "normalized_name": "crash dummy" + }, + { + "appid": 345700, + "normalized_name": "echo tokyo an intro" + }, + { + "appid": 345710, + "normalized_name": "damned nation reborn" + }, + { + "appid": 345750, + "normalized_name": "idol hands" + }, + { + "appid": 345820, + "normalized_name": "shantae and the pirate's curse" + }, + { + "appid": 345860, + "normalized_name": "super galaxy squadron ex turbo" + }, + { + "appid": 345950, + "normalized_name": "down to one dedicated server" + }, + { + "appid": 345990, + "normalized_name": "abraca imagic games" + }, + { + "appid": 346010, + "normalized_name": "besiege" + }, + { + "appid": 346040, + "normalized_name": "joe's diner" + }, + { + "appid": 346060, + "normalized_name": "disney high school musical 3 senior year dance" + }, + { + "appid": 346080, + "normalized_name": "astro emporia" + }, + { + "appid": 346090, + "normalized_name": "i can't escape darkness" + }, + { + "appid": 346110, + "normalized_name": "ark survival evolved" + }, + { + "appid": 346120, + "normalized_name": "boring man online tactical stickman combat" + }, + { + "appid": 346130, + "normalized_name": "rktcr" + }, + { + "appid": 346140, + "normalized_name": "hidden object bundle 5 in 1" + }, + { + "appid": 346160, + "normalized_name": "barter empire" + }, + { + "appid": 346180, + "normalized_name": "david." + }, + { + "appid": 346200, + "normalized_name": "drew and the floating labyrinth" + }, + { + "appid": 346210, + "normalized_name": "garden rescue" + }, + { + "appid": 346240, + "normalized_name": "ski park tycoon" + }, + { + "appid": 346250, + "normalized_name": "the old tree" + }, + { + "appid": 346330, + "normalized_name": "brainbread 2" + }, + { + "appid": 346340, + "normalized_name": "gran vitreous" + }, + { + "appid": 346390, + "normalized_name": "diamond" + }, + { + "appid": 346420, + "normalized_name": "the spatials" + }, + { + "appid": 346430, + "normalized_name": "spectrum first light" + }, + { + "appid": 346440, + "normalized_name": "musclecar online" + }, + { + "appid": 346450, + "normalized_name": "samurai_jazz" + }, + { + "appid": 346460, + "normalized_name": "vector 36" + }, + { + "appid": 346470, + "normalized_name": "tennis elbow 2013" + }, + { + "appid": 346490, + "normalized_name": "toy wars invasion" + }, + { + "appid": 346500, + "normalized_name": "road scars origins" + }, + { + "appid": 346550, + "normalized_name": "cylne" + }, + { + "appid": 346560, + "normalized_name": "hero of the kingdom ii" + }, + { + "appid": 346630, + "normalized_name": "plazma being" + }, + { + "appid": 346650, + "normalized_name": "break the cube" + }, + { + "appid": 346670, + "normalized_name": "sky battles" + }, + { + "appid": 346730, + "normalized_name": "gocco of war" + }, + { + "appid": 346750, + "normalized_name": "merchant" + }, + { + "appid": 346770, + "normalized_name": "quarries of scred" + }, + { + "appid": 346780, + "normalized_name": "luminosity" + }, + { + "appid": 346810, + "normalized_name": "marble age" + }, + { + "appid": 346820, + "normalized_name": "crash drive 3" + }, + { + "appid": 346830, + "normalized_name": "final fantasy iv the after years" + }, + { + "appid": 346850, + "normalized_name": "chip's challenge 1" + }, + { + "appid": 346900, + "normalized_name": "adventure capitalist" + }, + { + "appid": 346920, + "normalized_name": "undead shadows" + }, + { + "appid": 346940, + "normalized_name": "shadowrun hong kong extended" + }, + { + "appid": 346950, + "normalized_name": "the dark stone from mebara" + }, + { + "appid": 346970, + "normalized_name": "obey" + }, + { + "appid": 347000, + "normalized_name": "innerspace" + }, + { + "appid": 347040, + "normalized_name": "keebles" + }, + { + "appid": 347050, + "normalized_name": "vol'talkes the ai war" + }, + { + "appid": 347060, + "normalized_name": "pro basketball manager 2016" + }, + { + "appid": 347160, + "normalized_name": "steredenn binary stars" + }, + { + "appid": 347170, + "normalized_name": "combat air patrol 2 military flight simulator" + }, + { + "appid": 347230, + "normalized_name": "1942 the pacific air war" + }, + { + "appid": 347240, + "normalized_name": "challenge of the five realms spellbound in the world of nhagardia" + }, + { + "appid": 347250, + "normalized_name": "f 19 stealth fighter" + }, + { + "appid": 347260, + "normalized_name": "hyperspeed" + }, + { + "appid": 347270, + "normalized_name": "knights of the sky" + }, + { + "appid": 347280, + "normalized_name": "a quiver of crows" + }, + { + "appid": 347290, + "normalized_name": "rise & shine" + }, + { + "appid": 347330, + "normalized_name": "heartz co hope puzzles" + }, + { + "appid": 347430, + "normalized_name": "frankenstein master of death" + }, + { + "appid": 347440, + "normalized_name": "pneuma breath of life" + }, + { + "appid": 347460, + "normalized_name": "heart forth alicia" + }, + { + "appid": 347470, + "normalized_name": "mayan death robots" + }, + { + "appid": 347480, + "normalized_name": "super pixalo" + }, + { + "appid": 347520, + "normalized_name": "legends of atlantis exodus" + }, + { + "appid": 347530, + "normalized_name": "kitten super adventure" + }, + { + "appid": 347560, + "normalized_name": "terra incognita chapter one the descendant" + }, + { + "appid": 347580, + "normalized_name": "evolution ii fighting for survival" + }, + { + "appid": 347590, + "normalized_name": "heroes of hellas 3 athens" + }, + { + "appid": 347600, + "normalized_name": "total miner" + }, + { + "appid": 347610, + "normalized_name": "hidden object bundle 4 in 1" + }, + { + "appid": 347620, + "normalized_name": "gaokao.love.100days" + }, + { + "appid": 347660, + "normalized_name": "caromble!" + }, + { + "appid": 347670, + "normalized_name": "karate master 2 knock down blow" + }, + { + "appid": 347690, + "normalized_name": "natural soccer" + }, + { + "appid": 347700, + "normalized_name": "pixel soccer" + }, + { + "appid": 347710, + "normalized_name": "perils of man" + }, + { + "appid": 347720, + "normalized_name": "soda drinker pro" + }, + { + "appid": 347730, + "normalized_name": "wait extended" + }, + { + "appid": 347790, + "normalized_name": "terraform" + }, + { + "appid": 347800, + "normalized_name": "ghost song" + }, + { + "appid": 347820, + "normalized_name": "street arena" + }, + { + "appid": 347830, + "normalized_name": "fairy fencer f" + }, + { + "appid": 347930, + "normalized_name": "hatland adventures" + }, + { + "appid": 347940, + "normalized_name": "forsaken isle" + }, + { + "appid": 347950, + "normalized_name": "palace of cards" + }, + { + "appid": 348000, + "normalized_name": "datswer" + }, + { + "appid": 348160, + "normalized_name": "rump! it's a jump and rump!" + }, + { + "appid": 348180, + "normalized_name": "starship traveller (standalone)" + }, + { + "appid": 348240, + "normalized_name": "gun wings" + }, + { + "appid": 348250, + "normalized_name": "google earth vr" + }, + { + "appid": 348270, + "normalized_name": "social justice warriors" + }, + { + "appid": 348280, + "normalized_name": "orbit" + }, + { + "appid": 348290, + "normalized_name": "hospital manager" + }, + { + "appid": 348300, + "normalized_name": "chip's challenge 2" + }, + { + "appid": 348340, + "normalized_name": "siege wars" + }, + { + "appid": 348360, + "normalized_name": "doodle god" + }, + { + "appid": 348380, + "normalized_name": "the interview" + }, + { + "appid": 348400, + "normalized_name": "battlelore command" + }, + { + "appid": 348430, + "normalized_name": "quell reflect" + }, + { + "appid": 348440, + "normalized_name": "quell memento" + }, + { + "appid": 348450, + "normalized_name": "lex mortis" + }, + { + "appid": 348460, + "normalized_name": "bierzerkers" + }, + { + "appid": 348470, + "normalized_name": "samurai warriors 4 ii" + }, + { + "appid": 348510, + "normalized_name": "autobahn police simulator" + }, + { + "appid": 348540, + "normalized_name": "divine slice of life" + }, + { + "appid": 348550, + "normalized_name": "guilty gear xx accent core plus r" + }, + { + "appid": 348570, + "normalized_name": "monster minis extreme off road" + }, + { + "appid": 348580, + "normalized_name": "sector zero" + }, + { + "appid": 348620, + "normalized_name": "voices from the sea" + }, + { + "appid": 348650, + "normalized_name": "the asskickers steam" + }, + { + "appid": 348700, + "normalized_name": "walkover" + }, + { + "appid": 348730, + "normalized_name": "abyss raiders uncharted" + }, + { + "appid": 348740, + "normalized_name": "abyss cave" + }, + { + "appid": 348790, + "normalized_name": "wooden floor" + }, + { + "appid": 348800, + "normalized_name": "chester one" + }, + { + "appid": 348810, + "normalized_name": "m4 tank brigade" + }, + { + "appid": 348840, + "normalized_name": "ufho2" + }, + { + "appid": 348860, + "normalized_name": "mydream" + }, + { + "appid": 348870, + "normalized_name": "night mysteries the amphora prisoner" + }, + { + "appid": 348910, + "normalized_name": "faerie solitaire harvest" + }, + { + "appid": 348930, + "normalized_name": "lone wolf" + }, + { + "appid": 348950, + "normalized_name": "ame no marginal rain marginal" + }, + { + "appid": 348960, + "normalized_name": "odysseus long way home" + }, + { + "appid": 348980, + "normalized_name": "init." + }, + { + "appid": 349020, + "normalized_name": "hyperspace pinball" + }, + { + "appid": 349040, + "normalized_name": "naruto shippuden ninja storm 4" + }, + { + "appid": 349060, + "normalized_name": "fruits inc. deluxe pack" + }, + { + "appid": 349100, + "normalized_name": "notrium" + }, + { + "appid": 349140, + "normalized_name": "corrosion cold winter waiting [enhanced edition]" + }, + { + "appid": 349150, + "normalized_name": "dead trailz" + }, + { + "appid": 349190, + "normalized_name": "soul locus" + }, + { + "appid": 349220, + "normalized_name": "the black watchmen" + }, + { + "appid": 349240, + "normalized_name": "edolie" + }, + { + "appid": 349250, + "normalized_name": "copy kitty" + }, + { + "appid": 349260, + "normalized_name": "blastzone 2" + }, + { + "appid": 349270, + "normalized_name": "mosaic" + }, + { + "appid": 349300, + "normalized_name": "littlewitch romanesque editio regia" + }, + { + "appid": 349320, + "normalized_name": "the rainy port keelung 雨港基隆" + }, + { + "appid": 349440, + "normalized_name": "the undying plague" + }, + { + "appid": 349450, + "normalized_name": "dark forester" + }, + { + "appid": 349460, + "normalized_name": "lord of the dark castle" + }, + { + "appid": 349470, + "normalized_name": "drift stage" + }, + { + "appid": 349500, + "normalized_name": "cubicle quest" + }, + { + "appid": 349510, + "normalized_name": "hanako honor & blade" + }, + { + "appid": 349520, + "normalized_name": "armillo" + }, + { + "appid": 349530, + "normalized_name": "tabletop cricket" + }, + { + "appid": 349540, + "normalized_name": "periareion" + }, + { + "appid": 349550, + "normalized_name": "mighty dungeons" + }, + { + "appid": 349650, + "normalized_name": "tokyo hosto" + }, + { + "appid": 349670, + "normalized_name": "solar system conflict" + }, + { + "appid": 349680, + "normalized_name": "supercharged robot vulkaiser" + }, + { + "appid": 349690, + "normalized_name": "armed seven" + }, + { + "appid": 349710, + "normalized_name": "shwip" + }, + { + "appid": 349730, + "normalized_name": "popup dungeon" + }, + { + "appid": 349760, + "normalized_name": "snail bob 2 tiny troubles" + }, + { + "appid": 349780, + "normalized_name": "fatty maze's adventures" + }, + { + "appid": 349790, + "normalized_name": "galaxy of pen & paper +1" + }, + { + "appid": 349840, + "normalized_name": "ancestory" + }, + { + "appid": 349950, + "normalized_name": "gunworld" + }, + { + "appid": 349980, + "normalized_name": "gremlin invasion survivor" + }, + { + "appid": 350000, + "normalized_name": "exostorm" + }, + { + "appid": 350010, + "normalized_name": "time mysteries inheritance" + }, + { + "appid": 350070, + "normalized_name": "environmental station alpha" + }, + { + "appid": 350080, + "normalized_name": "wolfenstein the old blood" + }, + { + "appid": 350090, + "normalized_name": "no pineapple left behind" + }, + { + "appid": 350110, + "normalized_name": "transocean 2 rivals" + }, + { + "appid": 350140, + "normalized_name": "majestic 12" + }, + { + "appid": 350200, + "normalized_name": "revolution 60" + }, + { + "appid": 350210, + "normalized_name": "mighty switch force! academy" + }, + { + "appid": 350310, + "normalized_name": "bladestorm nightmare" + }, + { + "appid": 350330, + "normalized_name": "call of the ninja!" + }, + { + "appid": 350380, + "normalized_name": "the martian vr experience" + }, + { + "appid": 350480, + "normalized_name": "tales of cosmos" + }, + { + "appid": 350490, + "normalized_name": "love and order" + }, + { + "appid": 350500, + "normalized_name": "fly in the house" + }, + { + "appid": 350530, + "normalized_name": "airport firefighters the simulation" + }, + { + "appid": 350550, + "normalized_name": "area x" + }, + { + "appid": 350600, + "normalized_name": "bios" + }, + { + "appid": 350610, + "normalized_name": "combat cats" + }, + { + "appid": 350620, + "normalized_name": "sandmason" + }, + { + "appid": 350630, + "normalized_name": "dodge" + }, + { + "appid": 350640, + "normalized_name": "sherlock holmes the devil's daughter" + }, + { + "appid": 350700, + "normalized_name": "red stone online" + }, + { + "appid": 350740, + "normalized_name": "the bug butcher" + }, + { + "appid": 350770, + "normalized_name": "giana sisters 2d" + }, + { + "appid": 350780, + "normalized_name": "manos the hands of fate ~ director's cut" + }, + { + "appid": 350800, + "normalized_name": "cannibal" + }, + { + "appid": 350810, + "normalized_name": "pixel puzzles 2 anime" + }, + { + "appid": 350880, + "normalized_name": "archamon" + }, + { + "appid": 350910, + "normalized_name": "streets of fury ex" + }, + { + "appid": 350970, + "normalized_name": "planet of the eyes" + }, + { + "appid": 350990, + "normalized_name": "bloodwood reload" + }, + { + "appid": 351030, + "normalized_name": "pixel puzzles jigsaw puzzles" + }, + { + "appid": 351050, + "normalized_name": "cricket captain 2015" + }, + { + "appid": 351060, + "normalized_name": "outpost 13" + }, + { + "appid": 351080, + "normalized_name": "the corporate machine" + }, + { + "appid": 351090, + "normalized_name": "regency solitaire" + }, + { + "appid": 351100, + "normalized_name": "niffelheim" + }, + { + "appid": 351140, + "normalized_name": "rustbucket rumble" + }, + { + "appid": 351150, + "normalized_name": "dragon a game about a dragon" + }, + { + "appid": 351160, + "normalized_name": "poop clicker" + }, + { + "appid": 351170, + "normalized_name": "pixel ru²" + }, + { + "appid": 351220, + "normalized_name": "tower of eglathia" + }, + { + "appid": 351230, + "normalized_name": "counter spell" + }, + { + "appid": 351240, + "normalized_name": "venusian vengeance" + }, + { + "appid": 351250, + "normalized_name": "avalanche 2 super avalanche" + }, + { + "appid": 351290, + "normalized_name": "survival postapocalypse now" + }, + { + "appid": 351300, + "normalized_name": "ceres" + }, + { + "appid": 351320, + "normalized_name": "drod the second sky" + }, + { + "appid": 351330, + "normalized_name": "drod rpg tendry's tale" + }, + { + "appid": 351340, + "normalized_name": "belladonna" + }, + { + "appid": 351400, + "normalized_name": "the defenders the second wave" + }, + { + "appid": 351410, + "normalized_name": "clean'em up" + }, + { + "appid": 351420, + "normalized_name": "veteran combat" + }, + { + "appid": 351450, + "normalized_name": "scribble space" + }, + { + "appid": 351470, + "normalized_name": "sometimes success requires sacrifice" + }, + { + "appid": 351480, + "normalized_name": "age of fear the undead king" + }, + { + "appid": 351490, + "normalized_name": "intergalactic bubbles" + }, + { + "appid": 351510, + "normalized_name": "quiplash" + }, + { + "appid": 351630, + "normalized_name": "fire with fire tower attack and defense" + }, + { + "appid": 351640, + "normalized_name": "eternal senia" + }, + { + "appid": 351690, + "normalized_name": "apple jack 1&2" + }, + { + "appid": 351700, + "normalized_name": "unreal world" + }, + { + "appid": 351710, + "normalized_name": "hyperdimension neptunia re;birth2 sisters generation" + }, + { + "appid": 351720, + "normalized_name": "zotrix solar division" + }, + { + "appid": 351730, + "normalized_name": "on my own" + }, + { + "appid": 351790, + "normalized_name": "invisible apartment" + }, + { + "appid": 351800, + "normalized_name": "dev guy" + }, + { + "appid": 351810, + "normalized_name": "madspace to hell and beyond" + }, + { + "appid": 351820, + "normalized_name": "z.a.r." + }, + { + "appid": 351860, + "normalized_name": "cultures northland" + }, + { + "appid": 351870, + "normalized_name": "cultures 8th wonder of the world" + }, + { + "appid": 351910, + "normalized_name": "valhalla hills" + }, + { + "appid": 351920, + "normalized_name": "crazy machines 3" + }, + { + "appid": 351940, + "normalized_name": "the descendant" + }, + { + "appid": 351970, + "normalized_name": "tales of zestiria" + }, + { + "appid": 352010, + "normalized_name": "beach bounce" + }, + { + "appid": 352030, + "normalized_name": "the world named fred" + }, + { + "appid": 352050, + "normalized_name": "chesster" + }, + { + "appid": 352070, + "normalized_name": "fort meow" + }, + { + "appid": 352120, + "normalized_name": "fair strike" + }, + { + "appid": 352130, + "normalized_name": "locoland" + }, + { + "appid": 352140, + "normalized_name": "finders" + }, + { + "appid": 352160, + "normalized_name": "curse of mermos" + }, + { + "appid": 352170, + "normalized_name": "madout" + }, + { + "appid": 352190, + "normalized_name": "spirit of war" + }, + { + "appid": 352210, + "normalized_name": "little cells" + }, + { + "appid": 352220, + "normalized_name": "king of dragon pass" + }, + { + "appid": 352240, + "normalized_name": "the westport independent" + }, + { + "appid": 352360, + "normalized_name": "reflections" + }, + { + "appid": 352370, + "normalized_name": "defect" + }, + { + "appid": 352400, + "normalized_name": "lego jurassic world" + }, + { + "appid": 352430, + "normalized_name": "farlight explorers" + }, + { + "appid": 352440, + "normalized_name": "catacombs of the undercity" + }, + { + "appid": 352450, + "normalized_name": "taro the sneaky ninja" + }, + { + "appid": 352520, + "normalized_name": "the silent age" + }, + { + "appid": 352530, + "normalized_name": "poppy kart" + }, + { + "appid": 352550, + "normalized_name": "urban empire" + }, + { + "appid": 352580, + "normalized_name": "hidden on the trail of the ancients" + }, + { + "appid": 352610, + "normalized_name": "the way we all go (2015)" + }, + { + "appid": 352620, + "normalized_name": "porcunipine" + }, + { + "appid": 352640, + "normalized_name": "the indie mixtape" + }, + { + "appid": 352700, + "normalized_name": "subspace continuum" + }, + { + "appid": 352720, + "normalized_name": "the universim" + }, + { + "appid": 352740, + "normalized_name": "princess battles" + }, + { + "appid": 352750, + "normalized_name": "road works" + }, + { + "appid": 352760, + "normalized_name": "kaiju panic" + }, + { + "appid": 352780, + "normalized_name": "an octave higher" + }, + { + "appid": 352790, + "normalized_name": "futuridium ep deluxe" + }, + { + "appid": 352810, + "normalized_name": "yukie a japanese winter fairy tale" + }, + { + "appid": 352850, + "normalized_name": "dgu death god university" + }, + { + "appid": 352890, + "normalized_name": "caravan" + }, + { + "appid": 352900, + "normalized_name": "giana sisters dream runners" + }, + { + "appid": 352950, + "normalized_name": "better late than dead" + }, + { + "appid": 352960, + "normalized_name": "star horizon" + }, + { + "appid": 353070, + "normalized_name": "ghost encounters deadwood collector's" + }, + { + "appid": 353080, + "normalized_name": "redrum time lies" + }, + { + "appid": 353090, + "normalized_name": "chicken invaders 5" + }, + { + "appid": 353110, + "normalized_name": "dreamscapes nightmare's heir premium" + }, + { + "appid": 353190, + "normalized_name": "bombshell" + }, + { + "appid": 353260, + "normalized_name": "snails" + }, + { + "appid": 353270, + "normalized_name": "hyperdimension neptunia re;birth3 v generation" + }, + { + "appid": 353280, + "normalized_name": "metamorphabet" + }, + { + "appid": 353300, + "normalized_name": "rooftop cop" + }, + { + "appid": 353330, + "normalized_name": "love at first sight" + }, + { + "appid": 353340, + "normalized_name": "dungeon highway" + }, + { + "appid": 353360, + "normalized_name": "how do you do it?" + }, + { + "appid": 353540, + "normalized_name": "stephen's sausage roll" + }, + { + "appid": 353550, + "normalized_name": "house of caravan" + }, + { + "appid": 353560, + "normalized_name": "plug & play" + }, + { + "appid": 353580, + "normalized_name": "rad rodgers world one" + }, + { + "appid": 353600, + "normalized_name": "spellbind" + }, + { + "appid": 353610, + "normalized_name": "deus ex machina 2" + }, + { + "appid": 353630, + "normalized_name": "oil enterprise" + }, + { + "appid": 353640, + "normalized_name": "train valley" + }, + { + "appid": 353700, + "normalized_name": "the deadly tower of monsters" + }, + { + "appid": 353790, + "normalized_name": "spud!" + }, + { + "appid": 353890, + "normalized_name": "casey powell lacrosse 16" + }, + { + "appid": 353940, + "normalized_name": "aces of the luftwaffe" + }, + { + "appid": 353980, + "normalized_name": "ankh anniversary" + }, + { + "appid": 353990, + "normalized_name": "parvaneh legacy of the light's guardians" + }, + { + "appid": 354030, + "normalized_name": "volchaos" + }, + { + "appid": 354040, + "normalized_name": "hypership out of control" + }, + { + "appid": 354050, + "normalized_name": "starlight tactics" + }, + { + "appid": 354130, + "normalized_name": "tetrageddon games" + }, + { + "appid": 354140, + "normalized_name": "five nights at freddy's 3" + }, + { + "appid": 354160, + "normalized_name": "wrc 5 fia world rally championship" + }, + { + "appid": 354180, + "normalized_name": "bunker the underground game" + }, + { + "appid": 354200, + "normalized_name": "aberoth" + }, + { + "appid": 354230, + "normalized_name": "devouring stars" + }, + { + "appid": 354240, + "normalized_name": "please don’t touch anything" + }, + { + "appid": 354280, + "normalized_name": "chaostower" + }, + { + "appid": 354290, + "normalized_name": "lovebeat" + }, + { + "appid": 354310, + "normalized_name": "claws & feathers" + }, + { + "appid": 354380, + "normalized_name": "assassin’s creed chronicles china" + }, + { + "appid": 354400, + "normalized_name": "tadpole treble" + }, + { + "appid": 354430, + "normalized_name": "star wars x wing special" + }, + { + "appid": 354560, + "normalized_name": "we are legion" + }, + { + "appid": 354600, + "normalized_name": "decisive campaigns case blue" + }, + { + "appid": 354620, + "normalized_name": "miner warfare" + }, + { + "appid": 354680, + "normalized_name": "adventures of bertram fiddle 1 a dreadly business" + }, + { + "appid": 354690, + "normalized_name": "the lost city of malathedra" + }, + { + "appid": 354720, + "normalized_name": "static investigator training" + }, + { + "appid": 354730, + "normalized_name": "deadly sin" + }, + { + "appid": 354740, + "normalized_name": "echoes of aetheria" + }, + { + "appid": 354770, + "normalized_name": "trigger saint" + }, + { + "appid": 354780, + "normalized_name": "teknedia" + }, + { + "appid": 354810, + "normalized_name": "coated" + }, + { + "appid": 354820, + "normalized_name": "prison tycoon alcatraz" + }, + { + "appid": 354830, + "normalized_name": "wolfenstein the old blood" + }, + { + "appid": 354860, + "normalized_name": "the adventures of tree" + }, + { + "appid": 354920, + "normalized_name": "pester" + }, + { + "appid": 354930, + "normalized_name": "slinki" + }, + { + "appid": 354950, + "normalized_name": "east tower akio (east tower series vol. 1)" + }, + { + "appid": 354960, + "normalized_name": "an imp? a fiend!" + }, + { + "appid": 354970, + "normalized_name": "shin samurai jazz" + }, + { + "appid": 355010, + "normalized_name": "race arcade" + }, + { + "appid": 355020, + "normalized_name": "bomb the monsters!" + }, + { + "appid": 355050, + "normalized_name": "sky force anniversary" + }, + { + "appid": 355060, + "normalized_name": "sébastien loeb rally evo" + }, + { + "appid": 355070, + "normalized_name": "tdp5 arena 3d" + }, + { + "appid": 355080, + "normalized_name": "crazy steam bros 2" + }, + { + "appid": 355090, + "normalized_name": "second coming tactical training" + }, + { + "appid": 355100, + "normalized_name": "dungeon crawlers hd" + }, + { + "appid": 355130, + "normalized_name": "motogp15" + }, + { + "appid": 355140, + "normalized_name": "traps n' gemstones" + }, + { + "appid": 355150, + "normalized_name": "gravilon" + }, + { + "appid": 355170, + "normalized_name": "sam & max hit the road" + }, + { + "appid": 355180, + "normalized_name": "codename cure" + }, + { + "appid": 355190, + "normalized_name": "geocore" + }, + { + "appid": 355230, + "normalized_name": "faceted flight" + }, + { + "appid": 355240, + "normalized_name": "neo aquarium the king of crustaceans" + }, + { + "appid": 355250, + "normalized_name": "star wars tie fighter special" + }, + { + "appid": 355270, + "normalized_name": "199x" + }, + { + "appid": 355280, + "normalized_name": "brave furries" + }, + { + "appid": 355310, + "normalized_name": "blood alloy reborn" + }, + { + "appid": 355350, + "normalized_name": "reign of bullets" + }, + { + "appid": 355370, + "normalized_name": "vidar" + }, + { + "appid": 355380, + "normalized_name": "perfection of wisdom" + }, + { + "appid": 355400, + "normalized_name": "diesel guns" + }, + { + "appid": 355410, + "normalized_name": "radium" + }, + { + "appid": 355420, + "normalized_name": "flamberge" + }, + { + "appid": 355430, + "normalized_name": "//snowflake tattoo//" + }, + { + "appid": 355460, + "normalized_name": "thunderbird the legend begins" + }, + { + "appid": 355490, + "normalized_name": "stratus battle for the sky" + }, + { + "appid": 355510, + "normalized_name": "crazy belts" + }, + { + "appid": 355520, + "normalized_name": "the albino hunter (original)" + }, + { + "appid": 355530, + "normalized_name": "last word" + }, + { + "appid": 355560, + "normalized_name": "trigger runners" + }, + { + "appid": 355570, + "normalized_name": "enigma an illusion named family" + }, + { + "appid": 355630, + "normalized_name": "leo’s fortune hd" + }, + { + "appid": 355650, + "normalized_name": "pirates vs corsairs davy jones's gold" + }, + { + "appid": 355670, + "normalized_name": "puzzle expedition" + }, + { + "appid": 355680, + "normalized_name": "overland" + }, + { + "appid": 355690, + "normalized_name": "deputy dangle" + }, + { + "appid": 355750, + "normalized_name": "miegakure" + }, + { + "appid": 355760, + "normalized_name": "drizzlepath" + }, + { + "appid": 355790, + "normalized_name": "styx shards of darkness" + }, + { + "appid": 355800, + "normalized_name": "space run galaxy" + }, + { + "appid": 355810, + "normalized_name": "centauri sector" + }, + { + "appid": 355820, + "normalized_name": "futuregrind" + }, + { + "appid": 355860, + "normalized_name": "albino lullaby episode 1" + }, + { + "appid": 355910, + "normalized_name": "piloteer" + }, + { + "appid": 355920, + "normalized_name": "pixel puzzles 2 space" + }, + { + "appid": 355970, + "normalized_name": "home is where one starts..." + }, + { + "appid": 355980, + "normalized_name": "dungeon warfare" + }, + { + "appid": 356000, + "normalized_name": "the hero of kendrickstone" + }, + { + "appid": 356030, + "normalized_name": "the survivor" + }, + { + "appid": 356040, + "normalized_name": "sheltered" + }, + { + "appid": 356070, + "normalized_name": "commander cool 2" + }, + { + "appid": 356090, + "normalized_name": "machineers episode 1 tivoli town" + }, + { + "appid": 356100, + "normalized_name": "fuego!" + }, + { + "appid": 356110, + "normalized_name": "box out!" + }, + { + "appid": 356130, + "normalized_name": "heroes of scene" + }, + { + "appid": 356160, + "normalized_name": "the emptiness deluxe" + }, + { + "appid": 356170, + "normalized_name": "tile rider" + }, + { + "appid": 356180, + "normalized_name": "time machine vr" + }, + { + "appid": 356190, + "normalized_name": "middle earth shadow of war" + }, + { + "appid": 356210, + "normalized_name": "tony tough and the night of roasted moths" + }, + { + "appid": 356250, + "normalized_name": "gathering sky" + }, + { + "appid": 356260, + "normalized_name": "stalingrad" + }, + { + "appid": 356270, + "normalized_name": "cuban missile crisis" + }, + { + "appid": 356280, + "normalized_name": "desert law" + }, + { + "appid": 356290, + "normalized_name": "cuban missile crisis ice crusade" + }, + { + "appid": 356310, + "normalized_name": "metal slug defense" + }, + { + "appid": 356380, + "normalized_name": "orbit hd" + }, + { + "appid": 356390, + "normalized_name": "the slaughter act one" + }, + { + "appid": 356400, + "normalized_name": "thumper" + }, + { + "appid": 356420, + "normalized_name": "interloper" + }, + { + "appid": 356430, + "normalized_name": "chris sawyer's locomotion" + }, + { + "appid": 356450, + "normalized_name": "creature romances kokonoe kokoro" + }, + { + "appid": 356460, + "normalized_name": "drive!drive!drive!" + }, + { + "appid": 356500, + "normalized_name": "star wars galactic battlegrounds saga" + }, + { + "appid": 356510, + "normalized_name": "soccer rage" + }, + { + "appid": 356520, + "normalized_name": "port of call" + }, + { + "appid": 356530, + "normalized_name": "the confines of the crown" + }, + { + "appid": 356540, + "normalized_name": "east tower takashi (east tower series vol. 2)" + }, + { + "appid": 356550, + "normalized_name": "east tower kuon (east tower series vol. 3)" + }, + { + "appid": 356560, + "normalized_name": "east tower kurenai (east tower series vol. 4)" + }, + { + "appid": 356570, + "normalized_name": "party hard" + }, + { + "appid": 356580, + "normalized_name": "aerannis" + }, + { + "appid": 356650, + "normalized_name": "death's gambit afterlife" + }, + { + "appid": 356670, + "normalized_name": "spooky's jump scare mansion" + }, + { + "appid": 356710, + "normalized_name": "band of drones" + }, + { + "appid": 356730, + "normalized_name": "the hole story" + }, + { + "appid": 356770, + "normalized_name": "astronaut simulator" + }, + { + "appid": 356790, + "normalized_name": "galacide" + }, + { + "appid": 356800, + "normalized_name": "choice of the petal throne" + }, + { + "appid": 356820, + "normalized_name": "nemo dungeon" + }, + { + "appid": 356870, + "normalized_name": "devoured time" + }, + { + "appid": 356880, + "normalized_name": "eron" + }, + { + "appid": 356890, + "normalized_name": "one more line" + }, + { + "appid": 356910, + "normalized_name": "battle fantasia revised" + }, + { + "appid": 357030, + "normalized_name": "excubitor" + }, + { + "appid": 357070, + "normalized_name": "ubermosh" + }, + { + "appid": 357120, + "normalized_name": "big action mega fight!" + }, + { + "appid": 357190, + "normalized_name": "marvel vs. capcom 3" + }, + { + "appid": 357200, + "normalized_name": "500 years act 1" + }, + { + "appid": 357280, + "normalized_name": "alter world" + }, + { + "appid": 357290, + "normalized_name": "red lake" + }, + { + "appid": 357300, + "normalized_name": "snakebird" + }, + { + "appid": 357310, + "normalized_name": "oriental empires" + }, + { + "appid": 357320, + "normalized_name": "break_in" + }, + { + "appid": 357330, + "normalized_name": "space beast terror fright" + }, + { + "appid": 357340, + "normalized_name": "cobalt" + }, + { + "appid": 357370, + "normalized_name": "return null episode 1" + }, + { + "appid": 357490, + "normalized_name": "astroloco worst contact" + }, + { + "appid": 357500, + "normalized_name": "rumble fighter unleashed" + }, + { + "appid": 357600, + "normalized_name": "unium" + }, + { + "appid": 357650, + "normalized_name": "project explore" + }, + { + "appid": 357670, + "normalized_name": "home improvisation furniture sandbox" + }, + { + "appid": 357690, + "normalized_name": "apt" + }, + { + "appid": 357720, + "normalized_name": "inside my radio" + }, + { + "appid": 357750, + "normalized_name": "damn virgins" + }, + { + "appid": 357780, + "normalized_name": "defend your life td" + }, + { + "appid": 357830, + "normalized_name": "attack of the labyrinth +" + }, + { + "appid": 357840, + "normalized_name": "zombie camp last survivor" + }, + { + "appid": 357890, + "normalized_name": "vortex attack ボルテックスアタック" + }, + { + "appid": 357900, + "normalized_name": "make it indie!" + }, + { + "appid": 357910, + "normalized_name": "questevent" + }, + { + "appid": 357920, + "normalized_name": "final strike" + }, + { + "appid": 357930, + "normalized_name": "r.o.o.t.s" + }, + { + "appid": 357940, + "normalized_name": "telepath tactics" + }, + { + "appid": 358000, + "normalized_name": "the curse of nordic cove" + }, + { + "appid": 358030, + "normalized_name": "another star" + }, + { + "appid": 358070, + "normalized_name": "earthtongue" + }, + { + "appid": 358080, + "normalized_name": "no turning back the pixel art action adventure roguelike" + }, + { + "appid": 358090, + "normalized_name": "d4 dark dreams don’t die season one" + }, + { + "appid": 358130, + "normalized_name": "curious expedition" + }, + { + "appid": 358190, + "normalized_name": "blake stone aliens of gold" + }, + { + "appid": 358200, + "normalized_name": "math rescue" + }, + { + "appid": 358210, + "normalized_name": "monster bash" + }, + { + "appid": 358220, + "normalized_name": "mystic towers" + }, + { + "appid": 358230, + "normalized_name": "paganitzu" + }, + { + "appid": 358250, + "normalized_name": "cosmo's cosmic adventure" + }, + { + "appid": 358260, + "normalized_name": "crystal caves" + }, + { + "appid": 358270, + "normalized_name": "death rally (classic)" + }, + { + "appid": 358290, + "normalized_name": "hocus pocus" + }, + { + "appid": 358300, + "normalized_name": "major stryker" + }, + { + "appid": 358310, + "normalized_name": "blake stone planet strike" + }, + { + "appid": 358320, + "normalized_name": "realms of chaos" + }, + { + "appid": 358340, + "normalized_name": "word rescue" + }, + { + "appid": 358350, + "normalized_name": "secret agent" + }, + { + "appid": 358360, + "normalized_name": "raptor call of the shadows (1994 classic edition)" + }, + { + "appid": 358380, + "normalized_name": "wacky wheels" + }, + { + "appid": 358390, + "normalized_name": "stargunner" + }, + { + "appid": 358400, + "normalized_name": "shadow warrior (classic)" + }, + { + "appid": 358410, + "normalized_name": "rise of the triad dark war" + }, + { + "appid": 358650, + "normalized_name": "gryphon knight epic" + }, + { + "appid": 358700, + "normalized_name": "3d bridges" + }, + { + "appid": 358750, + "normalized_name": "sunrider liberation day captain's" + }, + { + "appid": 358760, + "normalized_name": "selenon rising" + }, + { + "appid": 358770, + "normalized_name": "the reject demon toko chapter 0 — prelude" + }, + { + "appid": 358810, + "normalized_name": "luckslinger" + }, + { + "appid": 358830, + "normalized_name": "good robot" + }, + { + "appid": 358840, + "normalized_name": "zombierun" + }, + { + "appid": 358920, + "normalized_name": "star control i and ii" + }, + { + "appid": 358930, + "normalized_name": "star control iii" + }, + { + "appid": 358960, + "normalized_name": "canabalt" + }, + { + "appid": 359040, + "normalized_name": "the music machine" + }, + { + "appid": 359050, + "normalized_name": "shower with your dad simulator 2015 do you still shower with your dad" + }, + { + "appid": 359060, + "normalized_name": "switch galaxy ultra" + }, + { + "appid": 359070, + "normalized_name": "hunter gatherer" + }, + { + "appid": 359090, + "normalized_name": "gare sapphire mechs" + }, + { + "appid": 359100, + "normalized_name": "q.u.b.e. 2" + }, + { + "appid": 359140, + "normalized_name": "kick ass commandos" + }, + { + "appid": 359160, + "normalized_name": "taken" + }, + { + "appid": 359190, + "normalized_name": "rituals" + }, + { + "appid": 359220, + "normalized_name": "mx vs. atv unleashed" + }, + { + "appid": 359230, + "normalized_name": "lethis path of progress" + }, + { + "appid": 359250, + "normalized_name": "city of fools" + }, + { + "appid": 359260, + "normalized_name": "green moon" + }, + { + "appid": 359280, + "normalized_name": "heroes of loot" + }, + { + "appid": 359300, + "normalized_name": "death pirate" + }, + { + "appid": 359310, + "normalized_name": "evoland 2" + }, + { + "appid": 359320, + "normalized_name": "elite dangerous" + }, + { + "appid": 359340, + "normalized_name": "pixel puzzles mosaics" + }, + { + "appid": 359350, + "normalized_name": "defunct" + }, + { + "appid": 359370, + "normalized_name": "pirate's life" + }, + { + "appid": 359390, + "normalized_name": "amnesia memories" + }, + { + "appid": 359400, + "normalized_name": "why am i dead at sea" + }, + { + "appid": 359420, + "normalized_name": "the journeyman project 1 pegasus prime" + }, + { + "appid": 359440, + "normalized_name": "artifact adventure" + }, + { + "appid": 359510, + "normalized_name": "tangle tower" + }, + { + "appid": 359550, + "normalized_name": "tom clancy's rainbow six siege" + }, + { + "appid": 359560, + "normalized_name": "shutter" + }, + { + "appid": 359580, + "normalized_name": "uncanny valley" + }, + { + "appid": 359600, + "normalized_name": "assassin’s creed chronicles russia" + }, + { + "appid": 359610, + "normalized_name": "assassin’s creed chronicles india" + }, + { + "appid": 359620, + "normalized_name": "call of cthulhu prisoner of ice" + }, + { + "appid": 359630, + "normalized_name": "independence war 2 edge of chaos" + }, + { + "appid": 359650, + "normalized_name": "star trek 25th anniversary" + }, + { + "appid": 359670, + "normalized_name": "vagrant hearts 2" + }, + { + "appid": 359800, + "normalized_name": "copa petrobras de marcas" + }, + { + "appid": 359810, + "normalized_name": "hare in the hat" + }, + { + "appid": 359840, + "normalized_name": "shift happens" + }, + { + "appid": 359870, + "normalized_name": "final fantasy x/x 2 hd remaster" + }, + { + "appid": 359900, + "normalized_name": "the incredible adventures of van helsing iii" + }, + { + "appid": 359920, + "normalized_name": "highlands" + }, + { + "appid": 359940, + "normalized_name": "shadows peak" + }, + { + "appid": 359960, + "normalized_name": "choice chamber" + }, + { + "appid": 359970, + "normalized_name": "alpha version.0" + }, + { + "appid": 360010, + "normalized_name": "remnants of isolation" + }, + { + "appid": 360030, + "normalized_name": "xlarn" + }, + { + "appid": 360040, + "normalized_name": "our nation's miner" + }, + { + "appid": 360150, + "normalized_name": "how to survive third person standalone" + }, + { + "appid": 360170, + "normalized_name": "how to survive 2" + }, + { + "appid": 360380, + "normalized_name": "tiny bridge ratventure" + }, + { + "appid": 360390, + "normalized_name": "nightside" + }, + { + "appid": 360400, + "normalized_name": "zombie quarantine" + }, + { + "appid": 360430, + "normalized_name": "mafia iii" + }, + { + "appid": 360450, + "normalized_name": "kiai resonance" + }, + { + "appid": 360510, + "normalized_name": "into the stars" + }, + { + "appid": 360520, + "normalized_name": "hypt" + }, + { + "appid": 360530, + "normalized_name": "we are doomed" + }, + { + "appid": 360550, + "normalized_name": "cursed sight" + }, + { + "appid": 360580, + "normalized_name": "abduction action! plus" + }, + { + "appid": 360600, + "normalized_name": "99 waves to die" + }, + { + "appid": 360620, + "normalized_name": "spellsworn" + }, + { + "appid": 360640, + "normalized_name": "12 labours of hercules ii the cretan bull" + }, + { + "appid": 360650, + "normalized_name": "12 labours of hercules iii girl power" + }, + { + "appid": 360680, + "normalized_name": "drone zero gravity" + }, + { + "appid": 360720, + "normalized_name": "soda star" + }, + { + "appid": 360730, + "normalized_name": "cards and castles" + }, + { + "appid": 360740, + "normalized_name": "downwell" + }, + { + "appid": 360830, + "normalized_name": "yooka laylee" + }, + { + "appid": 360840, + "normalized_name": "lumini" + }, + { + "appid": 360870, + "normalized_name": "tic tac toe" + }, + { + "appid": 360880, + "normalized_name": "nightfall escape" + }, + { + "appid": 360890, + "normalized_name": "the lost valley" + }, + { + "appid": 360940, + "normalized_name": "the mean greens plastic warfare" + }, + { + "appid": 360970, + "normalized_name": "heaven forest nights" + }, + { + "appid": 360990, + "normalized_name": "ongaku" + }, + { + "appid": 361020, + "normalized_name": "luxor hd" + }, + { + "appid": 361040, + "normalized_name": "doom & destiny advanced" + }, + { + "appid": 361100, + "normalized_name": "dual souls the last bearer" + }, + { + "appid": 361110, + "normalized_name": "prometheus the fire thief" + }, + { + "appid": 361130, + "normalized_name": "card dungeon" + }, + { + "appid": 361160, + "normalized_name": "steamalot epoch's journey" + }, + { + "appid": 361190, + "normalized_name": "sparkle 3 genesis" + }, + { + "appid": 361200, + "normalized_name": "coast guard" + }, + { + "appid": 361230, + "normalized_name": "super daryl deluxe" + }, + { + "appid": 361250, + "normalized_name": "strange space" + }, + { + "appid": 361280, + "normalized_name": "turmoil" + }, + { + "appid": 361300, + "normalized_name": "mother russia bleeds" + }, + { + "appid": 361320, + "normalized_name": "casino inc." + }, + { + "appid": 361330, + "normalized_name": "shrooms" + }, + { + "appid": 361350, + "normalized_name": "skyhook" + }, + { + "appid": 361360, + "normalized_name": "goosebumps the game" + }, + { + "appid": 361380, + "normalized_name": "world war i" + }, + { + "appid": 361420, + "normalized_name": "astroneer" + }, + { + "appid": 361430, + "normalized_name": "the little crane that could" + }, + { + "appid": 361550, + "normalized_name": "cradle" + }, + { + "appid": 361560, + "normalized_name": "ice cream surfer" + }, + { + "appid": 361600, + "normalized_name": "luna sky" + }, + { + "appid": 361620, + "normalized_name": "true bliss" + }, + { + "appid": 361630, + "normalized_name": "404sight" + }, + { + "appid": 361670, + "normalized_name": "star wars x wing alliance" + }, + { + "appid": 361680, + "normalized_name": "knight & damsel" + }, + { + "appid": 361690, + "normalized_name": "star wars x wing vs tie fighter balance of power campaigns" + }, + { + "appid": 361790, + "normalized_name": "winged sakura mindy's arc 2" + }, + { + "appid": 361830, + "normalized_name": "in space" + }, + { + "appid": 361850, + "normalized_name": "portal of evil stolen runes collector's" + }, + { + "appid": 361890, + "normalized_name": "chronostorm siberian border" + }, + { + "appid": 361930, + "normalized_name": "farm frenzy hurricane season" + }, + { + "appid": 361950, + "normalized_name": "moai 2 path to another world" + }, + { + "appid": 361970, + "normalized_name": "weather lord the successor's path" + }, + { + "appid": 361990, + "normalized_name": "lakeview cabin collection" + }, + { + "appid": 362020, + "normalized_name": "queen at arms" + }, + { + "appid": 362030, + "normalized_name": "mysteries & nightmares morgiana" + }, + { + "appid": 362090, + "normalized_name": "siralim" + }, + { + "appid": 362130, + "normalized_name": "ashes of immortality" + }, + { + "appid": 362140, + "normalized_name": "ashes of immortality ii" + }, + { + "appid": 362150, + "normalized_name": "ashes of immortality ii bad blood" + }, + { + "appid": 362160, + "normalized_name": "sydney's world" + }, + { + "appid": 362290, + "normalized_name": "the living dungeon" + }, + { + "appid": 362310, + "normalized_name": "dungeon league" + }, + { + "appid": 362370, + "normalized_name": "dog fight" + }, + { + "appid": 362380, + "normalized_name": "push me pull you" + }, + { + "appid": 362400, + "normalized_name": "regimental chess" + }, + { + "appid": 362410, + "normalized_name": "adam's venture chronicles" + }, + { + "appid": 362490, + "normalized_name": "exanima" + }, + { + "appid": 362610, + "normalized_name": "high on racing" + }, + { + "appid": 362620, + "normalized_name": "software inc." + }, + { + "appid": 362660, + "normalized_name": "blue rose reprise" + }, + { + "appid": 362670, + "normalized_name": "curse of the deadwood" + }, + { + "appid": 362680, + "normalized_name": "fran bow" + }, + { + "appid": 362740, + "normalized_name": "age of enigma the secret of the sixth ghost" + }, + { + "appid": 362780, + "normalized_name": "18 wheels of steel extreme trucker 2" + }, + { + "appid": 362790, + "normalized_name": "word wonders the tower of babel" + }, + { + "appid": 362800, + "normalized_name": "cadence" + }, + { + "appid": 362810, + "normalized_name": "fighties" + }, + { + "appid": 362830, + "normalized_name": "3d minigolf" + }, + { + "appid": 362860, + "normalized_name": "sylvio" + }, + { + "appid": 362890, + "normalized_name": "black mesa" + }, + { + "appid": 362920, + "normalized_name": "atlantis 2 beyond atlantis" + }, + { + "appid": 362930, + "normalized_name": "garfield kart" + }, + { + "appid": 362940, + "normalized_name": "courier of the crypts" + }, + { + "appid": 362960, + "normalized_name": "tyranny" + }, + { + "appid": 363050, + "normalized_name": "let's explore the airport (junior field trips)" + }, + { + "appid": 363060, + "normalized_name": "let's explore the farm (junior field trips)" + }, + { + "appid": 363070, + "normalized_name": "let's explore the jungle (junior field trips)" + }, + { + "appid": 363090, + "normalized_name": "nobunaga's ambition kakushin with power up kit" + }, + { + "appid": 363110, + "normalized_name": "nobunaga's ambition tendou with power up kit" + }, + { + "appid": 363130, + "normalized_name": "toukiden kiwami" + }, + { + "appid": 363150, + "normalized_name": "romance of the three kingdoms xiii" + }, + { + "appid": 363180, + "normalized_name": "tenshu general" + }, + { + "appid": 363200, + "normalized_name": "virus jigglin' fever" + }, + { + "appid": 363220, + "normalized_name": "ghost in the machine" + }, + { + "appid": 363240, + "normalized_name": "caveman craig" + }, + { + "appid": 363270, + "normalized_name": "o3dx" + }, + { + "appid": 363330, + "normalized_name": "mind snares alice's journey" + }, + { + "appid": 363360, + "normalized_name": "interstellar rift" + }, + { + "appid": 363410, + "normalized_name": "always the same blue sky..." + }, + { + "appid": 363420, + "normalized_name": "leap of fate" + }, + { + "appid": 363430, + "normalized_name": "d series off road driving simulation" + }, + { + "appid": 363440, + "normalized_name": "mega man legacy collection" + }, + { + "appid": 363460, + "normalized_name": "spermination" + }, + { + "appid": 363490, + "normalized_name": "escape machines" + }, + { + "appid": 363500, + "normalized_name": "ossuary" + }, + { + "appid": 363510, + "normalized_name": "star box rpg adventures in space" + }, + { + "appid": 363520, + "normalized_name": "goliath" + }, + { + "appid": 363530, + "normalized_name": "robot arena iii" + }, + { + "appid": 363580, + "normalized_name": "ping 1.5+" + }, + { + "appid": 363600, + "normalized_name": "holy potatoes! a weapon shop?!" + }, + { + "appid": 363610, + "normalized_name": "botology" + }, + { + "appid": 363620, + "normalized_name": "tea party simulator 2015" + }, + { + "appid": 363650, + "normalized_name": "hacker's beat" + }, + { + "appid": 363660, + "normalized_name": "island flight simulator" + }, + { + "appid": 363670, + "normalized_name": "seeders" + }, + { + "appid": 363680, + "normalized_name": "battlefleet gothic armada" + }, + { + "appid": 363840, + "normalized_name": "ancient battle rome" + }, + { + "appid": 363860, + "normalized_name": "mythforce" + }, + { + "appid": 363900, + "normalized_name": "super goo goo" + }, + { + "appid": 363920, + "normalized_name": "selective jump once again with feeling" + }, + { + "appid": 363930, + "normalized_name": "dead age" + }, + { + "appid": 363940, + "normalized_name": "solar shifter ex" + }, + { + "appid": 363950, + "normalized_name": "windscape" + }, + { + "appid": 363960, + "normalized_name": "devils & demons" + }, + { + "appid": 363970, + "normalized_name": "clicker heroes" + }, + { + "appid": 363980, + "normalized_name": "forget me not my organic garden" + }, + { + "appid": 364000, + "normalized_name": "culina hands in the kitchen" + }, + { + "appid": 364050, + "normalized_name": "face it a game to fight inner demons" + }, + { + "appid": 364060, + "normalized_name": "capsule force" + }, + { + "appid": 364100, + "normalized_name": "space robot samurai zombie slayer" + }, + { + "appid": 364130, + "normalized_name": "ride the bullet" + }, + { + "appid": 364190, + "normalized_name": "asdad all stars dungeons and diamonds" + }, + { + "appid": 364200, + "normalized_name": "farabel" + }, + { + "appid": 364210, + "normalized_name": "sierra ops space strategy visual novel" + }, + { + "appid": 364230, + "normalized_name": "lucius demake" + }, + { + "appid": 364250, + "normalized_name": "xiizeal" + }, + { + "appid": 364300, + "normalized_name": "space rogue" + }, + { + "appid": 364350, + "normalized_name": "the apotheosis project" + }, + { + "appid": 364360, + "normalized_name": "total war warhammer" + }, + { + "appid": 364370, + "normalized_name": "the sheltered" + }, + { + "appid": 364380, + "normalized_name": "cineveo vr cinema" + }, + { + "appid": 364390, + "normalized_name": "downfall" + }, + { + "appid": 364420, + "normalized_name": "roguelands" + }, + { + "appid": 364450, + "normalized_name": "freshman year" + }, + { + "appid": 364480, + "normalized_name": "red goblin cursed forest" + }, + { + "appid": 364500, + "normalized_name": "endless dead" + }, + { + "appid": 364510, + "normalized_name": "transcendence" + }, + { + "appid": 364630, + "normalized_name": "airmech command" + }, + { + "appid": 364640, + "normalized_name": "freecell quest" + }, + { + "appid": 364660, + "normalized_name": "luminoso" + }, + { + "appid": 364690, + "normalized_name": "super distro" + }, + { + "appid": 364700, + "normalized_name": "dawn of the plow" + }, + { + "appid": 364710, + "normalized_name": "wonky pigeon!" + }, + { + "appid": 364720, + "normalized_name": "reagan gorbachev" + }, + { + "appid": 364740, + "normalized_name": "magi" + }, + { + "appid": 364750, + "normalized_name": "hacker evolution source code" + }, + { + "appid": 364770, + "normalized_name": "super furball" + }, + { + "appid": 364790, + "normalized_name": "voyage to farland" + }, + { + "appid": 364800, + "normalized_name": "star trek judgment rites" + }, + { + "appid": 364810, + "normalized_name": "star trek starfleet academy" + }, + { + "appid": 364820, + "normalized_name": "star trek starfleet command gold" + }, + { + "appid": 364830, + "normalized_name": "bleak welcome to glimmer" + }, + { + "appid": 364850, + "normalized_name": "startbolita" + }, + { + "appid": 364880, + "normalized_name": "genesis of drones" + }, + { + "appid": 364890, + "normalized_name": "the lost battalion all out warfare" + }, + { + "appid": 364900, + "normalized_name": "red bit ninja" + }, + { + "appid": 364910, + "normalized_name": "redemption saints and sinners" + }, + { + "appid": 364930, + "normalized_name": "koi koi japan [hanafuda playing cards]" + }, + { + "appid": 364940, + "normalized_name": "pony world 3" + }, + { + "appid": 364980, + "normalized_name": "bunker constructor" + }, + { + "appid": 365020, + "normalized_name": "gynophobia" + }, + { + "appid": 365050, + "normalized_name": "escape" + }, + { + "appid": 365060, + "normalized_name": "titanis" + }, + { + "appid": 365070, + "normalized_name": "one manga day" + }, + { + "appid": 365080, + "normalized_name": "unheard screams king leopold ii's rule over the congo" + }, + { + "appid": 365090, + "normalized_name": "super snow fight" + }, + { + "appid": 365110, + "normalized_name": "after all" + }, + { + "appid": 365120, + "normalized_name": "curse of the crescent isle dx" + }, + { + "appid": 365140, + "normalized_name": "dreamflight vr" + }, + { + "appid": 365150, + "normalized_name": "go home rage incoming" + }, + { + "appid": 365160, + "normalized_name": "kona" + }, + { + "appid": 365210, + "normalized_name": "hollywood visionary" + }, + { + "appid": 365240, + "normalized_name": "galaxy union" + }, + { + "appid": 365260, + "normalized_name": "crash dive" + }, + { + "appid": 365270, + "normalized_name": "shadow hunter" + }, + { + "appid": 365280, + "normalized_name": "alexia crow and the cave of heroes" + }, + { + "appid": 365290, + "normalized_name": "house of nightmares b movie" + }, + { + "appid": 365300, + "normalized_name": "transmissions element 120" + }, + { + "appid": 365320, + "normalized_name": "quadrant" + }, + { + "appid": 365330, + "normalized_name": "iaidoka_interlude" + }, + { + "appid": 365340, + "normalized_name": "the way of the pixelated fist" + }, + { + "appid": 365350, + "normalized_name": "how to take off your mask" + }, + { + "appid": 365360, + "normalized_name": "battle brothers" + }, + { + "appid": 365400, + "normalized_name": "spoko and poko" + }, + { + "appid": 365420, + "normalized_name": "apollo4x" + }, + { + "appid": 365430, + "normalized_name": "everything is black and white" + }, + { + "appid": 365450, + "normalized_name": "hacknet" + }, + { + "appid": 365460, + "normalized_name": "chariot wars" + }, + { + "appid": 365480, + "normalized_name": "ravenmark scourge of estellion" + }, + { + "appid": 365500, + "normalized_name": "quadrant" + }, + { + "appid": 365510, + "normalized_name": "flip" + }, + { + "appid": 365560, + "normalized_name": "battle of the bulge" + }, + { + "appid": 365580, + "normalized_name": "beeswing" + }, + { + "appid": 365590, + "normalized_name": "tom clancy’s the division" + }, + { + "appid": 365620, + "normalized_name": "warbirds world war ii combat aviation" + }, + { + "appid": 365660, + "normalized_name": "olliolli2 welcome to olliwood" + }, + { + "appid": 365680, + "normalized_name": "brawl" + }, + { + "appid": 365730, + "normalized_name": "gilbert goodmate and the mushroom of phungoria" + }, + { + "appid": 365760, + "normalized_name": "vektor wars" + }, + { + "appid": 365770, + "normalized_name": "volume" + }, + { + "appid": 365800, + "normalized_name": "advertcity" + }, + { + "appid": 365810, + "normalized_name": "flying tigers shadows over china" + }, + { + "appid": 365820, + "normalized_name": "company of heroes 2 the british forces" + }, + { + "appid": 365850, + "normalized_name": "starchaser priestess of the night sky" + }, + { + "appid": 365860, + "normalized_name": "spaceman sparkles 2" + }, + { + "appid": 365870, + "normalized_name": "below kryll" + }, + { + "appid": 365880, + "normalized_name": "mirrored chapter 1" + }, + { + "appid": 365890, + "normalized_name": "heroes of normandie" + }, + { + "appid": 365900, + "normalized_name": "pixel dungeon" + }, + { + "appid": 365960, + "normalized_name": "rfactor 2" + }, + { + "appid": 366000, + "normalized_name": "rogue system" + }, + { + "appid": 366010, + "normalized_name": "generic space shooter" + }, + { + "appid": 366050, + "normalized_name": "star balls" + }, + { + "appid": 366060, + "normalized_name": "teddy terror" + }, + { + "appid": 366090, + "normalized_name": "colony survival" + }, + { + "appid": 366100, + "normalized_name": "champions of chaos 2" + }, + { + "appid": 366180, + "normalized_name": "disposable heroes" + }, + { + "appid": 366210, + "normalized_name": "sleep attack" + }, + { + "appid": 366220, + "normalized_name": "wurm unlimited" + }, + { + "appid": 366230, + "normalized_name": "baseball stars 2" + }, + { + "appid": 366240, + "normalized_name": "garou mark of the wolves" + }, + { + "appid": 366250, + "normalized_name": "metal slug" + }, + { + "appid": 366260, + "normalized_name": "metal slug 2" + }, + { + "appid": 366270, + "normalized_name": "shock troopers" + }, + { + "appid": 366280, + "normalized_name": "twinkle star sprites" + }, + { + "appid": 366290, + "normalized_name": "carp fishing simulator" + }, + { + "appid": 366320, + "normalized_name": "seasons after fall" + }, + { + "appid": 366350, + "normalized_name": "rogus kingdom of the lost souls" + }, + { + "appid": 366380, + "normalized_name": "myth steam" + }, + { + "appid": 366410, + "normalized_name": "ludoku" + }, + { + "appid": 366510, + "normalized_name": "ruzar the life stone" + }, + { + "appid": 366570, + "normalized_name": "castleabra" + }, + { + "appid": 366590, + "normalized_name": "prompt" + }, + { + "appid": 366610, + "normalized_name": "not without my donuts" + }, + { + "appid": 366620, + "normalized_name": "broken bots" + }, + { + "appid": 366640, + "normalized_name": "shiness the lightning kingdom" + }, + { + "appid": 366670, + "normalized_name": "the travels of marco polo" + }, + { + "appid": 366690, + "normalized_name": "cue club 2 pool & snooker" + }, + { + "appid": 366700, + "normalized_name": "breakout invaders" + }, + { + "appid": 366760, + "normalized_name": "adorables" + }, + { + "appid": 366780, + "normalized_name": "magical eyes red is for anguish" + }, + { + "appid": 366800, + "normalized_name": "mainland" + }, + { + "appid": 366870, + "normalized_name": "narcosis" + }, + { + "appid": 366910, + "normalized_name": "the long journey home" + }, + { + "appid": 366920, + "normalized_name": "ruler by default" + }, + { + "appid": 366960, + "normalized_name": "sector" + }, + { + "appid": 366970, + "normalized_name": "mighty switch force! hyper drive" + }, + { + "appid": 366990, + "normalized_name": "puzzle station 15th anniversary retro release" + }, + { + "appid": 367000, + "normalized_name": "fine sweeper" + }, + { + "appid": 367010, + "normalized_name": "vernon's legacy" + }, + { + "appid": 367030, + "normalized_name": "lootfest" + }, + { + "appid": 367040, + "normalized_name": "insanz retro survival horror" + }, + { + "appid": 367050, + "normalized_name": "vindicator uprising" + }, + { + "appid": 367060, + "normalized_name": "helena the 3rd" + }, + { + "appid": 367080, + "normalized_name": "songbringer" + }, + { + "appid": 367110, + "normalized_name": "dustbowl" + }, + { + "appid": 367120, + "normalized_name": "seduce me the otome" + }, + { + "appid": 367140, + "normalized_name": "wish project" + }, + { + "appid": 367220, + "normalized_name": "egyptian settlement gold" + }, + { + "appid": 367240, + "normalized_name": "avenging angel" + }, + { + "appid": 367260, + "normalized_name": "dwarven brawl bros" + }, + { + "appid": 367270, + "normalized_name": "angels fall first" + }, + { + "appid": 367300, + "normalized_name": "pixel star" + }, + { + "appid": 367340, + "normalized_name": "fleetcomm" + }, + { + "appid": 367350, + "normalized_name": "demon hearts" + }, + { + "appid": 367430, + "normalized_name": "one ship two ship redshift blueshift" + }, + { + "appid": 367450, + "normalized_name": "poly bridge" + }, + { + "appid": 367500, + "normalized_name": "dragon's dogma dark arisen" + }, + { + "appid": 367520, + "normalized_name": "hollow knight" + }, + { + "appid": 367550, + "normalized_name": "rugby league team manager 2015" + }, + { + "appid": 367570, + "normalized_name": "oo" + }, + { + "appid": 367580, + "normalized_name": "hook" + }, + { + "appid": 367660, + "normalized_name": "ufopilot astro creeps elite" + }, + { + "appid": 367700, + "normalized_name": "shofer race driver" + }, + { + "appid": 367710, + "normalized_name": "afterlife empire" + }, + { + "appid": 367780, + "normalized_name": "aero's quest" + }, + { + "appid": 367800, + "normalized_name": "diamond deeps" + }, + { + "appid": 367820, + "normalized_name": "decromancer" + }, + { + "appid": 367990, + "normalized_name": "3d paraglider" + }, + { + "appid": 368000, + "normalized_name": "100ft robot golf" + }, + { + "appid": 368040, + "normalized_name": "exocorps" + }, + { + "appid": 368050, + "normalized_name": "almightree the last dreamer" + }, + { + "appid": 368070, + "normalized_name": "sniper ghost warrior 3" + }, + { + "appid": 368080, + "normalized_name": "aurion legacy of the kori odan" + }, + { + "appid": 368140, + "normalized_name": "tobari and the night of the curious moon" + }, + { + "appid": 368150, + "normalized_name": "rising angels hope" + }, + { + "appid": 368160, + "normalized_name": "world end economica episode.02" + }, + { + "appid": 368180, + "normalized_name": "polyball" + }, + { + "appid": 368220, + "normalized_name": "close combat panthers in the fog" + }, + { + "appid": 368230, + "normalized_name": "kingdom classic" + }, + { + "appid": 368250, + "normalized_name": "valiant resurrection" + }, + { + "appid": 368260, + "normalized_name": "marvel's midnight suns" + }, + { + "appid": 368290, + "normalized_name": "visibility" + }, + { + "appid": 368310, + "normalized_name": "marble muse" + }, + { + "appid": 368340, + "normalized_name": "crosscode" + }, + { + "appid": 368360, + "normalized_name": "60 seconds!" + }, + { + "appid": 368370, + "normalized_name": "her story" + }, + { + "appid": 368390, + "normalized_name": "the darkside detective" + }, + { + "appid": 368430, + "normalized_name": "through the woods" + }, + { + "appid": 368450, + "normalized_name": "rememoried" + }, + { + "appid": 368500, + "normalized_name": "assassin's creed syndicate" + }, + { + "appid": 368570, + "normalized_name": "beat da beat" + }, + { + "appid": 368590, + "normalized_name": "albert and otto" + }, + { + "appid": 368600, + "normalized_name": "terra nova strike force centauri" + }, + { + "appid": 368610, + "normalized_name": "the enchanted cave 2" + }, + { + "appid": 368620, + "normalized_name": "timespinner" + }, + { + "appid": 368640, + "normalized_name": "htol#niq the firefly diary" + }, + { + "appid": 368680, + "normalized_name": "super mutant alien assault" + }, + { + "appid": 368690, + "normalized_name": "chronoclysm" + }, + { + "appid": 368700, + "normalized_name": "mysterious space" + }, + { + "appid": 368710, + "normalized_name": "power of love" + }, + { + "appid": 368730, + "normalized_name": "no time to explain" + }, + { + "appid": 368740, + "normalized_name": "obliteracers" + }, + { + "appid": 368760, + "normalized_name": "playing history vikings" + }, + { + "appid": 368770, + "normalized_name": "president for a day floodings" + }, + { + "appid": 368780, + "normalized_name": "president for a day corruption" + }, + { + "appid": 368830, + "normalized_name": "adventure in the tower of flight" + }, + { + "appid": 368860, + "normalized_name": "garbage day" + }, + { + "appid": 368880, + "normalized_name": "mystery maze of balthasar castle" + }, + { + "appid": 368890, + "normalized_name": "ar k the great escape" + }, + { + "appid": 368950, + "normalized_name": "jigoku kisetsukan sense of the seasons" + }, + { + "appid": 368970, + "normalized_name": "haywire on fuel station zeta" + }, + { + "appid": 368990, + "normalized_name": "despair" + }, + { + "appid": 369000, + "normalized_name": "pongo" + }, + { + "appid": 369030, + "normalized_name": "vinyl" + }, + { + "appid": 369040, + "normalized_name": "yargis space melee" + }, + { + "appid": 369060, + "normalized_name": "amygdala" + }, + { + "appid": 369070, + "normalized_name": "slain back from hell" + }, + { + "appid": 369080, + "normalized_name": "age of survival" + }, + { + "appid": 369100, + "normalized_name": "predator simulator" + }, + { + "appid": 369110, + "normalized_name": "the swindle" + }, + { + "appid": 369120, + "normalized_name": "invisible apartment zero" + }, + { + "appid": 369180, + "normalized_name": "soulcraft" + }, + { + "appid": 369270, + "normalized_name": "megatect" + }, + { + "appid": 369280, + "normalized_name": "hidden mysteries titanic" + }, + { + "appid": 369290, + "normalized_name": "airport madness world" + }, + { + "appid": 369310, + "normalized_name": "monstro battle tactics" + }, + { + "appid": 369360, + "normalized_name": "car washer summer of the ninja" + }, + { + "appid": 369370, + "normalized_name": "crossfire dungeons" + }, + { + "appid": 369420, + "normalized_name": "9 clues 2 the ward" + }, + { + "appid": 369440, + "normalized_name": "immortal unchained" + }, + { + "appid": 369460, + "normalized_name": "professor why the quantum eye" + }, + { + "appid": 369530, + "normalized_name": "void destroyer 2" + }, + { + "appid": 369550, + "normalized_name": "blacksea odyssey" + }, + { + "appid": 369560, + "normalized_name": "the story goes on" + }, + { + "appid": 369570, + "normalized_name": "spectra" + }, + { + "appid": 369640, + "normalized_name": "treeker the lost glasses classic + remake" + }, + { + "appid": 369700, + "normalized_name": "tanzia" + }, + { + "appid": 369830, + "normalized_name": "toonstruck" + }, + { + "appid": 369840, + "normalized_name": "holobunnies the bittersweet adventure" + }, + { + "appid": 369860, + "normalized_name": "brain guzzler the end is nigh" + }, + { + "appid": 369890, + "normalized_name": "riddled corpses" + }, + { + "appid": 369990, + "normalized_name": "gremlins inc." + }, + { + "appid": 370020, + "normalized_name": "templar battleforce" + }, + { + "appid": 370040, + "normalized_name": "lilly and sasha nexus of souls" + }, + { + "appid": 370050, + "normalized_name": "scarab tales" + }, + { + "appid": 370060, + "normalized_name": "coffee shop tycoon" + }, + { + "appid": 370070, + "normalized_name": "wyrmsun" + }, + { + "appid": 370080, + "normalized_name": "breezeblox" + }, + { + "appid": 370090, + "normalized_name": "axis football 2015" + }, + { + "appid": 370120, + "normalized_name": "pirate code" + }, + { + "appid": 370130, + "normalized_name": "lion quest" + }, + { + "appid": 370140, + "normalized_name": "nebulous" + }, + { + "appid": 370150, + "normalized_name": "loop a tranquil puzzle game" + }, + { + "appid": 370170, + "normalized_name": "dale hardshovel hd" + }, + { + "appid": 370190, + "normalized_name": "ruzh delta z" + }, + { + "appid": 370200, + "normalized_name": "two steps back" + }, + { + "appid": 370220, + "normalized_name": "animal gods" + }, + { + "appid": 370270, + "normalized_name": "jim power the lost dimension" + }, + { + "appid": 370280, + "normalized_name": "season of 12 colors" + }, + { + "appid": 370300, + "normalized_name": "8 bit adventures 1 the forgotten journey" + }, + { + "appid": 370310, + "normalized_name": "tompi jones" + }, + { + "appid": 370320, + "normalized_name": "seed of life" + }, + { + "appid": 370330, + "normalized_name": "welcome to the untitled game" + }, + { + "appid": 370350, + "normalized_name": "lotus simulator" + }, + { + "appid": 370360, + "normalized_name": "tis 100" + }, + { + "appid": 370440, + "normalized_name": "no70 eye of basir" + }, + { + "appid": 370460, + "normalized_name": "arcana heart 3 love max!!!!!" + }, + { + "appid": 370480, + "normalized_name": "pixel galaxy" + }, + { + "appid": 370490, + "normalized_name": "ascii attack" + }, + { + "appid": 370510, + "normalized_name": "marble mayhem fragile ball" + }, + { + "appid": 370540, + "normalized_name": "gary grigsby's war in the east" + }, + { + "appid": 370550, + "normalized_name": "sparkle 2" + }, + { + "appid": 370560, + "normalized_name": "geek resort" + }, + { + "appid": 370570, + "normalized_name": "color assembler" + }, + { + "appid": 370590, + "normalized_name": "gem wars attack of the jiblets" + }, + { + "appid": 370600, + "normalized_name": "hello kitty and sanrio friends racing" + }, + { + "appid": 370620, + "normalized_name": "onyx" + }, + { + "appid": 370630, + "normalized_name": "sylia" + }, + { + "appid": 370640, + "normalized_name": "midnight's blessing" + }, + { + "appid": 370660, + "normalized_name": "opaline" + }, + { + "appid": 370670, + "normalized_name": "the tale of a common man" + }, + { + "appid": 370690, + "normalized_name": "elendia ceus" + }, + { + "appid": 370700, + "normalized_name": "black home" + }, + { + "appid": 370710, + "normalized_name": "last heroes" + }, + { + "appid": 370730, + "normalized_name": "nobunaga's ambition tenshouki with power up kit hd version" + }, + { + "appid": 370750, + "normalized_name": "dungeoncraft" + }, + { + "appid": 370770, + "normalized_name": "holodrive" + }, + { + "appid": 370780, + "normalized_name": "fated souls" + }, + { + "appid": 370870, + "normalized_name": "dark future blood red states" + }, + { + "appid": 370910, + "normalized_name": "kathy rain" + }, + { + "appid": 370920, + "normalized_name": "cosmophony" + }, + { + "appid": 370940, + "normalized_name": "demons with shotguns" + }, + { + "appid": 370970, + "normalized_name": "unlimited escape 3 & 4 double pack" + }, + { + "appid": 371000, + "normalized_name": "cave coaster" + }, + { + "appid": 371010, + "normalized_name": "nomad fleet" + }, + { + "appid": 371100, + "normalized_name": "waste walkers" + }, + { + "appid": 371140, + "normalized_name": "aegis defenders" + }, + { + "appid": 371180, + "normalized_name": "super 3 d noah's ark" + }, + { + "appid": 371190, + "normalized_name": "making history the calm and the storm gold" + }, + { + "appid": 371200, + "normalized_name": "halcyon 6 starbase commander" + }, + { + "appid": 371220, + "normalized_name": "verlies ii" + }, + { + "appid": 371280, + "normalized_name": "rolling shapes" + }, + { + "appid": 371300, + "normalized_name": "knee deep" + }, + { + "appid": 371320, + "normalized_name": "samsa and the knights of light" + }, + { + "appid": 371330, + "normalized_name": "two digits" + }, + { + "appid": 371360, + "normalized_name": "orc assault" + }, + { + "appid": 371370, + "normalized_name": "advent" + }, + { + "appid": 371380, + "normalized_name": "dr. spacezoo" + }, + { + "appid": 371390, + "normalized_name": "flix the flea" + }, + { + "appid": 371400, + "normalized_name": "downpour" + }, + { + "appid": 371410, + "normalized_name": "hostile dimension" + }, + { + "appid": 371430, + "normalized_name": "space grunts" + }, + { + "appid": 371450, + "normalized_name": "awe" + }, + { + "appid": 371460, + "normalized_name": "gnumz masters of defense" + }, + { + "appid": 371510, + "normalized_name": "gunnheim" + }, + { + "appid": 371520, + "normalized_name": "bounty train" + }, + { + "appid": 371530, + "normalized_name": "legends of pixelia" + }, + { + "appid": 371550, + "normalized_name": "a bastard's tale" + }, + { + "appid": 371570, + "normalized_name": "tap heroes" + }, + { + "appid": 371620, + "normalized_name": "sbx invasion" + }, + { + "appid": 371650, + "normalized_name": "colina legacy" + }, + { + "appid": 371660, + "normalized_name": "far cry primal" + }, + { + "appid": 371670, + "normalized_name": "rolling sun" + }, + { + "appid": 371700, + "normalized_name": "hypership out of control 2" + }, + { + "appid": 371710, + "normalized_name": "age of castles warlords" + }, + { + "appid": 371790, + "normalized_name": "ramayana" + }, + { + "appid": 371850, + "normalized_name": "football mogul 2014" + }, + { + "appid": 371880, + "normalized_name": "collider" + }, + { + "appid": 371890, + "normalized_name": "gunslugs" + }, + { + "appid": 371900, + "normalized_name": "pillar" + }, + { + "appid": 371950, + "normalized_name": "the adventures of rob 1e" + }, + { + "appid": 371970, + "normalized_name": "barony" + }, + { + "appid": 372000, + "normalized_name": "tree of savior (english ver.)" + }, + { + "appid": 372030, + "normalized_name": "starship rubicon" + }, + { + "appid": 372080, + "normalized_name": "ananias roguelike" + }, + { + "appid": 372150, + "normalized_name": "yasai ninja" + }, + { + "appid": 372160, + "normalized_name": "soviet monsters ekranoplans" + }, + { + "appid": 372190, + "normalized_name": "astro lords oort cloud" + }, + { + "appid": 372210, + "normalized_name": "spooky cats" + }, + { + "appid": 372250, + "normalized_name": "turnover" + }, + { + "appid": 372320, + "normalized_name": "lost orbit terminal velocity" + }, + { + "appid": 372330, + "normalized_name": "beauty bounce" + }, + { + "appid": 372340, + "normalized_name": "snarfquest tales" + }, + { + "appid": 372350, + "normalized_name": "tumbleweed express" + }, + { + "appid": 372360, + "normalized_name": "tales of symphonia" + }, + { + "appid": 372380, + "normalized_name": "warriors & castles" + }, + { + "appid": 372430, + "normalized_name": "world defense a fragmented reality game" + }, + { + "appid": 372480, + "normalized_name": "spaceforce rogue universe hd" + }, + { + "appid": 372490, + "normalized_name": "groovy" + }, + { + "appid": 372540, + "normalized_name": "the lost mythologies" + }, + { + "appid": 372560, + "normalized_name": "tanita a plasticine dream" + }, + { + "appid": 372570, + "normalized_name": "a stroke of fate operation bunker" + }, + { + "appid": 372670, + "normalized_name": "eternal realm" + }, + { + "appid": 372690, + "normalized_name": "chiptune champion" + }, + { + "appid": 372720, + "normalized_name": "the language game" + }, + { + "appid": 372740, + "normalized_name": "second warfare" + }, + { + "appid": 372750, + "normalized_name": "girl amazon survival" + }, + { + "appid": 372770, + "normalized_name": "floors of discomfort" + }, + { + "appid": 372780, + "normalized_name": "pulse" + }, + { + "appid": 372800, + "normalized_name": "rpg mo" + }, + { + "appid": 372820, + "normalized_name": "shot in the dark" + }, + { + "appid": 372830, + "normalized_name": "fitz the fox" + }, + { + "appid": 372890, + "normalized_name": "red crow mysteries legion" + }, + { + "appid": 372930, + "normalized_name": "new york mysteries secrets of the mafia collector's" + }, + { + "appid": 372940, + "normalized_name": "lost lands the four horsemen collector's" + }, + { + "appid": 372950, + "normalized_name": "professor why chemistry 1" + }, + { + "appid": 372960, + "normalized_name": "robbery bob man of steal" + }, + { + "appid": 372970, + "normalized_name": "cash_out" + }, + { + "appid": 373120, + "normalized_name": "bernie needs love" + }, + { + "appid": 373140, + "normalized_name": "grail to the thief" + }, + { + "appid": 373180, + "normalized_name": "kung fury street rage" + }, + { + "appid": 373240, + "normalized_name": "black sails the ghost ship" + }, + { + "appid": 373290, + "normalized_name": "stones of sorrow" + }, + { + "appid": 373330, + "normalized_name": "all is dust" + }, + { + "appid": 373360, + "normalized_name": "cast of the seven godsends redux" + }, + { + "appid": 373390, + "normalized_name": "contradiction spot the liar" + }, + { + "appid": 373420, + "normalized_name": "divinity original sin enhanced" + }, + { + "appid": 373440, + "normalized_name": "stargazer" + }, + { + "appid": 373460, + "normalized_name": "fury of the gods" + }, + { + "appid": 373480, + "normalized_name": "1993 space machine" + }, + { + "appid": 373600, + "normalized_name": "weapon of choice dx" + }, + { + "appid": 373610, + "normalized_name": "shoot 1up dx" + }, + { + "appid": 373620, + "normalized_name": "explosionade dx" + }, + { + "appid": 373630, + "normalized_name": "game type dx" + }, + { + "appid": 373640, + "normalized_name": "splotches" + }, + { + "appid": 373650, + "normalized_name": "the assembly" + }, + { + "appid": 373670, + "normalized_name": "arkhelom 3d" + }, + { + "appid": 373720, + "normalized_name": "ryzom" + }, + { + "appid": 373730, + "normalized_name": "way of gold and steel" + }, + { + "appid": 373750, + "normalized_name": "dinosystem" + }, + { + "appid": 373770, + "normalized_name": "lieat" + }, + { + "appid": 373800, + "normalized_name": "fantastic pinball thrills" + }, + { + "appid": 373810, + "normalized_name": "hot pinball thrills" + }, + { + "appid": 373820, + "normalized_name": "soccer pinball thrills" + }, + { + "appid": 373860, + "normalized_name": "apothecarium the renaissance of evil premium" + }, + { + "appid": 373870, + "normalized_name": "sister’s secrecy arcanum bloodlines premium" + }, + { + "appid": 373880, + "normalized_name": "fleeting ages" + }, + { + "appid": 373930, + "normalized_name": "sudden strike 4" + }, + { + "appid": 373970, + "normalized_name": "letter quest grimm's journey" + }, + { + "appid": 373990, + "normalized_name": "metrico+" + }, + { + "appid": 374010, + "normalized_name": "sherlock holmes consulting detective the case of the mummy's curse" + }, + { + "appid": 374030, + "normalized_name": "virginia" + }, + { + "appid": 374040, + "normalized_name": "portal knights" + }, + { + "appid": 374060, + "normalized_name": "stairs" + }, + { + "appid": 374080, + "normalized_name": "falcon" + }, + { + "appid": 374120, + "normalized_name": "fork truck challenge" + }, + { + "appid": 374150, + "normalized_name": "concealed intent" + }, + { + "appid": 374190, + "normalized_name": "infernax" + }, + { + "appid": 374240, + "normalized_name": "eternal step" + }, + { + "appid": 374280, + "normalized_name": "hired ops" + }, + { + "appid": 374320, + "normalized_name": "dark souls iii" + }, + { + "appid": 374380, + "normalized_name": "revolution under siege gold" + }, + { + "appid": 374410, + "normalized_name": "transplan" + }, + { + "appid": 374420, + "normalized_name": "questria rise of the robot skullfaces" + }, + { + "appid": 374450, + "normalized_name": "cheats 4 hire" + }, + { + "appid": 374460, + "normalized_name": "impossiball" + }, + { + "appid": 374510, + "normalized_name": "the last dogma wilder wein" + }, + { + "appid": 374520, + "normalized_name": "champions of anteria" + }, + { + "appid": 374620, + "normalized_name": "s.o.r.s" + }, + { + "appid": 374630, + "normalized_name": "mactabilis" + }, + { + "appid": 374640, + "normalized_name": "march of industry very capitalist factory simulator entertainments" + }, + { + "appid": 374780, + "normalized_name": "positron" + }, + { + "appid": 374830, + "normalized_name": "defend the highlands" + }, + { + "appid": 374900, + "normalized_name": "agatha christie the abc murders" + }, + { + "appid": 374940, + "normalized_name": "tank battle normandy" + }, + { + "appid": 374950, + "normalized_name": "adventure lib" + }, + { + "appid": 374960, + "normalized_name": "civil war bull run 1861" + }, + { + "appid": 374970, + "normalized_name": "golf masters" + }, + { + "appid": 374990, + "normalized_name": "orc slayer" + }, + { + "appid": 375000, + "normalized_name": "icarus x tides of fire" + }, + { + "appid": 375010, + "normalized_name": "energy balance" + }, + { + "appid": 375020, + "normalized_name": "al emmo's postcards from anozira" + }, + { + "appid": 375030, + "normalized_name": "korwin the game" + }, + { + "appid": 375040, + "normalized_name": "death tractor" + }, + { + "appid": 375120, + "normalized_name": "super star path" + }, + { + "appid": 375130, + "normalized_name": "tin star" + }, + { + "appid": 375170, + "normalized_name": "gunpowder" + }, + { + "appid": 375180, + "normalized_name": "lunch truck tycoon" + }, + { + "appid": 375190, + "normalized_name": "vroom aerie" + }, + { + "appid": 375200, + "normalized_name": "sakura fantasy" + }, + { + "appid": 375210, + "normalized_name": "unveil" + }, + { + "appid": 375220, + "normalized_name": "bitweb" + }, + { + "appid": 375250, + "normalized_name": "pizza express" + }, + { + "appid": 375290, + "normalized_name": "superstatic" + }, + { + "appid": 375310, + "normalized_name": "mighty switch force! hose it down!" + }, + { + "appid": 375320, + "normalized_name": "colortone" + }, + { + "appid": 375330, + "normalized_name": "butsbal" + }, + { + "appid": 375390, + "normalized_name": "anathema" + }, + { + "appid": 375430, + "normalized_name": "the logomancer" + }, + { + "appid": 375440, + "normalized_name": "hero u rogue to redemption" + }, + { + "appid": 375450, + "normalized_name": "nobunaga's ambition sphere of influence ascension" + }, + { + "appid": 375460, + "normalized_name": "16bit trader" + }, + { + "appid": 375480, + "normalized_name": "chronicon" + }, + { + "appid": 375500, + "normalized_name": "the deep paths labyrinth of andokost" + }, + { + "appid": 375510, + "normalized_name": "new kind of adventure" + }, + { + "appid": 375520, + "normalized_name": "taimumari" + }, + { + "appid": 375530, + "normalized_name": "football tactics & glory" + }, + { + "appid": 375550, + "normalized_name": "dungeonrift" + }, + { + "appid": 375570, + "normalized_name": "goblin quest escape!" + }, + { + "appid": 375580, + "normalized_name": "three days" + }, + { + "appid": 375600, + "normalized_name": "air brawl" + }, + { + "appid": 375620, + "normalized_name": "cortexgear angrydroids" + }, + { + "appid": 375680, + "normalized_name": "apartment 666" + }, + { + "appid": 375710, + "normalized_name": "the adventures of mr. bobley" + }, + { + "appid": 375750, + "normalized_name": "invisigun reloaded" + }, + { + "appid": 375770, + "normalized_name": "quantum conscience" + }, + { + "appid": 375790, + "normalized_name": "build 'n bump" + }, + { + "appid": 375810, + "normalized_name": "the forgettable dungeon" + }, + { + "appid": 375820, + "normalized_name": "human resource machine" + }, + { + "appid": 375850, + "normalized_name": "island defense" + }, + { + "appid": 375870, + "normalized_name": "slide platformer" + }, + { + "appid": 375900, + "normalized_name": "trackmania turbo" + }, + { + "appid": 375910, + "normalized_name": "anno 2205" + }, + { + "appid": 375930, + "normalized_name": "trap them" + }, + { + "appid": 375950, + "normalized_name": "viridi" + }, + { + "appid": 376120, + "normalized_name": "assault corps 2" + }, + { + "appid": 376130, + "normalized_name": "illuminascii" + }, + { + "appid": 376140, + "normalized_name": "saga" + }, + { + "appid": 376150, + "normalized_name": "industry transporters" + }, + { + "appid": 376160, + "normalized_name": "dno rasa's journey" + }, + { + "appid": 376210, + "normalized_name": "the isle" + }, + { + "appid": 376240, + "normalized_name": "hadean lands" + }, + { + "appid": 376250, + "normalized_name": "ground breakers" + }, + { + "appid": 376300, + "normalized_name": "guilty gear xrd sign" + }, + { + "appid": 376350, + "normalized_name": "overgravity" + }, + { + "appid": 376410, + "normalized_name": "acaratus" + }, + { + "appid": 376450, + "normalized_name": "last days of old earth" + }, + { + "appid": 376480, + "normalized_name": "ohr אור" + }, + { + "appid": 376490, + "normalized_name": "the great gatsby secret treasure" + }, + { + "appid": 376520, + "normalized_name": "kelvin and the infamous machine" + }, + { + "appid": 376560, + "normalized_name": "big fish legend" + }, + { + "appid": 376620, + "normalized_name": "arkin" + }, + { + "appid": 376680, + "normalized_name": "splendor" + }, + { + "appid": 376730, + "normalized_name": "monument" + }, + { + "appid": 376750, + "normalized_name": "world war ii gi" + }, + { + "appid": 376760, + "normalized_name": "big thinkers kindergarten" + }, + { + "appid": 376770, + "normalized_name": "big thinkers 1st grade" + }, + { + "appid": 376780, + "normalized_name": "sherlock holmes consulting detective the case of the tin soldier" + }, + { + "appid": 376790, + "normalized_name": "sherlock holmes consulting detective the case of the mystified murderess" + }, + { + "appid": 376880, + "normalized_name": "astrokill" + }, + { + "appid": 376920, + "normalized_name": "tiki man" + }, + { + "appid": 377060, + "normalized_name": "on a roll" + }, + { + "appid": 377070, + "normalized_name": "noctropolis" + }, + { + "appid": 377080, + "normalized_name": "hatoful boyfriend holiday star" + }, + { + "appid": 377100, + "normalized_name": "underearth" + }, + { + "appid": 377120, + "normalized_name": "chronicle keepers the dreaming garden" + }, + { + "appid": 377140, + "normalized_name": "hide & hold out h2o" + }, + { + "appid": 377160, + "normalized_name": "fallout 4" + }, + { + "appid": 377190, + "normalized_name": "pale echoes" + }, + { + "appid": 377220, + "normalized_name": "deficis" + }, + { + "appid": 377250, + "normalized_name": "subaeria" + }, + { + "appid": 377260, + "normalized_name": "unearned bounty" + }, + { + "appid": 377290, + "normalized_name": "biodrone battle" + }, + { + "appid": 377300, + "normalized_name": "thunder tier one" + }, + { + "appid": 377310, + "normalized_name": "the tower of elements" + }, + { + "appid": 377320, + "normalized_name": "hexters" + }, + { + "appid": 377330, + "normalized_name": "close your eyes [old version]" + }, + { + "appid": 377360, + "normalized_name": "western press" + }, + { + "appid": 377430, + "normalized_name": "who is mike a visual novel" + }, + { + "appid": 377450, + "normalized_name": "lost lands dark overlord collector's" + }, + { + "appid": 377460, + "normalized_name": "chicken invaders 3" + }, + { + "appid": 377470, + "normalized_name": "enki" + }, + { + "appid": 377480, + "normalized_name": "n.e.r.o. nothing ever remains obscure" + }, + { + "appid": 377500, + "normalized_name": "prismatica" + }, + { + "appid": 377520, + "normalized_name": "pike and shot campaigns" + }, + { + "appid": 377530, + "normalized_name": "侠客风云传(tale of wuxia)" + }, + { + "appid": 377550, + "normalized_name": "unfair jousting fair" + }, + { + "appid": 377570, + "normalized_name": "space drifters 2d" + }, + { + "appid": 377600, + "normalized_name": "tcheco in the castle of lucio" + }, + { + "appid": 377660, + "normalized_name": "blockwick 2" + }, + { + "appid": 377670, + "normalized_name": "g senjou no maou the devil on g string" + }, + { + "appid": 377680, + "normalized_name": "sakura beach" + }, + { + "appid": 377690, + "normalized_name": "starlight vega" + }, + { + "appid": 377710, + "normalized_name": "idol magical girl chiru chiru michiru part 1" + }, + { + "appid": 377720, + "normalized_name": "idol magical girl chiru chiru michiru part 2" + }, + { + "appid": 377760, + "normalized_name": "fox & flock" + }, + { + "appid": 377840, + "normalized_name": "final fantasy ix" + }, + { + "appid": 377860, + "normalized_name": "mushihimesama" + }, + { + "appid": 377870, + "normalized_name": "dariusburst chronicle saviours" + }, + { + "appid": 377880, + "normalized_name": "eternal destiny" + }, + { + "appid": 377900, + "normalized_name": "empire tv tycoon" + }, + { + "appid": 377940, + "normalized_name": "slam" + }, + { + "appid": 377950, + "normalized_name": "jamestown+" + }, + { + "appid": 377980, + "normalized_name": "mortos" + }, + { + "appid": 378030, + "normalized_name": "cardinal quest 2" + }, + { + "appid": 378070, + "normalized_name": "energy hook" + }, + { + "appid": 378080, + "normalized_name": "rack n ruin" + }, + { + "appid": 378090, + "normalized_name": "rebel wings" + }, + { + "appid": 378100, + "normalized_name": "nyctophobia" + }, + { + "appid": 378110, + "normalized_name": "hack run" + }, + { + "appid": 378240, + "normalized_name": "the mors" + }, + { + "appid": 378260, + "normalized_name": "fortify" + }, + { + "appid": 378270, + "normalized_name": "putrefaction" + }, + { + "appid": 378300, + "normalized_name": "the knobbly crook" + }, + { + "appid": 378350, + "normalized_name": "chromadrome 2" + }, + { + "appid": 378360, + "normalized_name": "ymir" + }, + { + "appid": 378370, + "normalized_name": "nomad" + }, + { + "appid": 378390, + "normalized_name": "production inc." + }, + { + "appid": 378410, + "normalized_name": "patchman vs. red circles" + }, + { + "appid": 378420, + "normalized_name": "jurassic island the dinosaur zoo" + }, + { + "appid": 378450, + "normalized_name": "robot tsunami" + }, + { + "appid": 378480, + "normalized_name": "badland bandits" + }, + { + "appid": 378490, + "normalized_name": "sunny hillride" + }, + { + "appid": 378510, + "normalized_name": "witches heroes and magic" + }, + { + "appid": 378530, + "normalized_name": "nature's zombie apocalypse" + }, + { + "appid": 378540, + "normalized_name": "the surge" + }, + { + "appid": 378570, + "normalized_name": "robo miner" + }, + { + "appid": 378580, + "normalized_name": "untamed life of a cougar" + }, + { + "appid": 378590, + "normalized_name": "forest warrior" + }, + { + "appid": 378610, + "normalized_name": "valley" + }, + { + "appid": 378630, + "normalized_name": "shadows on the vatican act ii wrath" + }, + { + "appid": 378660, + "normalized_name": "blues and bullets" + }, + { + "appid": 378690, + "normalized_name": "potions a curious tale" + }, + { + "appid": 378700, + "normalized_name": "neptune flux" + }, + { + "appid": 378720, + "normalized_name": "thea the awakening" + }, + { + "appid": 378750, + "normalized_name": "sayonara umihara kawase" + }, + { + "appid": 378760, + "normalized_name": "pixel starships" + }, + { + "appid": 378770, + "normalized_name": "eschatos" + }, + { + "appid": 378790, + "normalized_name": "kagura douchuuki" + }, + { + "appid": 378800, + "normalized_name": "police tactics imperio" + }, + { + "appid": 378810, + "normalized_name": "steamroll" + }, + { + "appid": 378830, + "normalized_name": "the princess' heart" + }, + { + "appid": 378850, + "normalized_name": "galagan's island reprymian rising" + }, + { + "appid": 379210, + "normalized_name": "wayward" + }, + { + "appid": 379260, + "normalized_name": "atlantic quest solitaire" + }, + { + "appid": 379290, + "normalized_name": "sumo revise" + }, + { + "appid": 379320, + "normalized_name": "clandestinity of elsie" + }, + { + "appid": 379390, + "normalized_name": "superstar dance club" + }, + { + "appid": 379420, + "normalized_name": "polynomial 2 universe of the music" + }, + { + "appid": 379430, + "normalized_name": "kingdom come deliverance" + }, + { + "appid": 379520, + "normalized_name": "deltazeal" + }, + { + "appid": 379530, + "normalized_name": "fate tectonics" + }, + { + "appid": 379600, + "normalized_name": "diner mania" + }, + { + "appid": 379610, + "normalized_name": "animated puzzles" + }, + { + "appid": 379640, + "normalized_name": "bloo kid 2" + }, + { + "appid": 379720, + "normalized_name": "doom" + }, + { + "appid": 379760, + "normalized_name": "gravity error" + }, + { + "appid": 379870, + "normalized_name": "alteil horizons" + }, + { + "appid": 379960, + "normalized_name": "mahjong pretty girls battle school girls" + }, + { + "appid": 379980, + "normalized_name": "panzermadels tank dating simulator" + }, + { + "appid": 379990, + "normalized_name": "hush" + }, + { + "appid": 380000, + "normalized_name": "minione racing" + }, + { + "appid": 380020, + "normalized_name": "three heroes" + }, + { + "appid": 380100, + "normalized_name": "flute master" + }, + { + "appid": 380110, + "normalized_name": "in the black" + }, + { + "appid": 380120, + "normalized_name": "celia's quest" + }, + { + "appid": 380140, + "normalized_name": "the secret of tremendous corporation" + }, + { + "appid": 380150, + "normalized_name": "stasis" + }, + { + "appid": 380210, + "normalized_name": "signal to noise (2015)" + }, + { + "appid": 380220, + "normalized_name": "hover junkers" + }, + { + "appid": 380360, + "normalized_name": "tap tap infinity" + }, + { + "appid": 380540, + "normalized_name": "inevitability" + }, + { + "appid": 380550, + "normalized_name": "incandescent" + }, + { + "appid": 380560, + "normalized_name": "spandex force champion rising" + }, + { + "appid": 380570, + "normalized_name": "axion" + }, + { + "appid": 380580, + "normalized_name": "spacecorn" + }, + { + "appid": 380600, + "normalized_name": "fishing planet" + }, + { + "appid": 380650, + "normalized_name": "hard lander" + }, + { + "appid": 380660, + "normalized_name": "killing time at lightspeed enhanced" + }, + { + "appid": 380670, + "normalized_name": "final approach" + }, + { + "appid": 380680, + "normalized_name": "gwan moon high school the ghost gate" + }, + { + "appid": 380690, + "normalized_name": "don'yoku" + }, + { + "appid": 380750, + "normalized_name": "anima gate of memories" + }, + { + "appid": 380810, + "normalized_name": "herald an interactive period drama book i & ii" + }, + { + "appid": 380840, + "normalized_name": "teeworlds" + }, + { + "appid": 380860, + "normalized_name": "barbara ian" + }, + { + "appid": 380920, + "normalized_name": "boss 101" + }, + { + "appid": 380950, + "normalized_name": "bocce revolution" + }, + { + "appid": 380990, + "normalized_name": "b.a.d battle armor division" + }, + { + "appid": 381000, + "normalized_name": "6 nights" + }, + { + "appid": 381010, + "normalized_name": "orion a sci fi visual novel" + }, + { + "appid": 381020, + "normalized_name": "sky rogue" + }, + { + "appid": 381050, + "normalized_name": "the ritual on weylyn island" + }, + { + "appid": 381100, + "normalized_name": "the men of yoshiwara kikuya" + }, + { + "appid": 381120, + "normalized_name": "shoppe keep" + }, + { + "appid": 381130, + "normalized_name": "karma" + }, + { + "appid": 381140, + "normalized_name": "cruel arena" + }, + { + "appid": 381170, + "normalized_name": "lost in paradise" + }, + { + "appid": 381210, + "normalized_name": "dead by daylight" + }, + { + "appid": 381220, + "normalized_name": "hydraulic empire" + }, + { + "appid": 381250, + "normalized_name": "stardrift nomads" + }, + { + "appid": 381260, + "normalized_name": "orion trail" + }, + { + "appid": 381310, + "normalized_name": "proton pulse" + }, + { + "appid": 381320, + "normalized_name": "bezier" + }, + { + "appid": 381340, + "normalized_name": "mallow drops" + }, + { + "appid": 381550, + "normalized_name": "the arcslinger" + }, + { + "appid": 381560, + "normalized_name": "epic cards battle(tcg)" + }, + { + "appid": 381590, + "normalized_name": "shred!" + }, + { + "appid": 381610, + "normalized_name": "dandy or a brief glimpse into the life of the candy alchemist" + }, + { + "appid": 381640, + "normalized_name": "allods online ru" + }, + { + "appid": 381750, + "normalized_name": "rc simulation 2.0" + }, + { + "appid": 381780, + "normalized_name": "80 days" + }, + { + "appid": 381800, + "normalized_name": "drift 84" + }, + { + "appid": 381850, + "normalized_name": "my paper boat" + }, + { + "appid": 381870, + "normalized_name": "koala kids" + }, + { + "appid": 381880, + "normalized_name": "red rope don't fall behind" + }, + { + "appid": 381890, + "normalized_name": "induction" + }, + { + "appid": 381900, + "normalized_name": "bard's gold" + }, + { + "appid": 381910, + "normalized_name": "xenocide" + }, + { + "appid": 381940, + "normalized_name": "trials on tatooine" + }, + { + "appid": 381990, + "normalized_name": "dragon saga" + }, + { + "appid": 382050, + "normalized_name": "eon altar" + }, + { + "appid": 382070, + "normalized_name": "neoncube" + }, + { + "appid": 382080, + "normalized_name": "action alien" + }, + { + "appid": 382090, + "normalized_name": "dungeon nightmares ii the memory" + }, + { + "appid": 382120, + "normalized_name": "journey to the center of the earth" + }, + { + "appid": 382130, + "normalized_name": "exile's end" + }, + { + "appid": 382140, + "normalized_name": "skyhill" + }, + { + "appid": 382160, + "normalized_name": "dark years" + }, + { + "appid": 382180, + "normalized_name": "devilry" + }, + { + "appid": 382250, + "normalized_name": "lightrise" + }, + { + "appid": 382260, + "normalized_name": "8bit fiesta the drinking game" + }, + { + "appid": 382270, + "normalized_name": "space xonix" + }, + { + "appid": 382300, + "normalized_name": "kidnapped" + }, + { + "appid": 382310, + "normalized_name": "eco" + }, + { + "appid": 382320, + "normalized_name": "heart of ember ch1" + }, + { + "appid": 382330, + "normalized_name": "killers and thieves" + }, + { + "appid": 382350, + "normalized_name": "devil's bluff" + }, + { + "appid": 382380, + "normalized_name": "the amber throne" + }, + { + "appid": 382420, + "normalized_name": "e.t. armies" + }, + { + "appid": 382480, + "normalized_name": "super dungeon run" + }, + { + "appid": 382490, + "normalized_name": "relic hunters zero remix" + }, + { + "appid": 382560, + "normalized_name": "hot lava" + }, + { + "appid": 382880, + "normalized_name": "feudalism" + }, + { + "appid": 382920, + "normalized_name": "retsnom" + }, + { + "appid": 382990, + "normalized_name": "brainbread 2 mod tools" + }, + { + "appid": 383010, + "normalized_name": "jamg" + }, + { + "appid": 383020, + "normalized_name": "a family of grave diggers" + }, + { + "appid": 383080, + "normalized_name": "sakura clicker" + }, + { + "appid": 383100, + "normalized_name": "fragile allegiance" + }, + { + "appid": 383120, + "normalized_name": "empyrion galactic survival" + }, + { + "appid": 383150, + "normalized_name": "dead island" + }, + { + "appid": 383180, + "normalized_name": "dead island riptide" + }, + { + "appid": 383230, + "normalized_name": "dungeon souls" + }, + { + "appid": 383240, + "normalized_name": "angels that kill the final cut" + }, + { + "appid": 383270, + "normalized_name": "hue" + }, + { + "appid": 383330, + "normalized_name": "star chronicles delta quadrant" + }, + { + "appid": 383460, + "normalized_name": "sound of drop fall into poison" + }, + { + "appid": 383530, + "normalized_name": "vortex" + }, + { + "appid": 383540, + "normalized_name": "metro warp" + }, + { + "appid": 383560, + "normalized_name": "squarelands" + }, + { + "appid": 383580, + "normalized_name": "flesh eaters" + }, + { + "appid": 383590, + "normalized_name": "expert rifleman reloaded" + }, + { + "appid": 383620, + "normalized_name": "flight unlimited las vegas" + }, + { + "appid": 383630, + "normalized_name": "seep universe" + }, + { + "appid": 383670, + "normalized_name": "deadlands noir that old time religion" + }, + { + "appid": 383690, + "normalized_name": "mu complex" + }, + { + "appid": 383700, + "normalized_name": "boneless zombie" + }, + { + "appid": 383710, + "normalized_name": "princess kaguya legend of the moon warrior" + }, + { + "appid": 383720, + "normalized_name": "swords & crossbones an epic pirate story" + }, + { + "appid": 383740, + "normalized_name": "marble age" + }, + { + "appid": 383750, + "normalized_name": "funk of titans" + }, + { + "appid": 383780, + "normalized_name": "judgement" + }, + { + "appid": 383790, + "normalized_name": "the ship remasted" + }, + { + "appid": 383800, + "normalized_name": "close order" + }, + { + "appid": 383810, + "normalized_name": "doomed'n damned" + }, + { + "appid": 383840, + "normalized_name": "nimbatus the space drone constructor" + }, + { + "appid": 383850, + "normalized_name": "radio runner" + }, + { + "appid": 383870, + "normalized_name": "firewatch" + }, + { + "appid": 383930, + "normalized_name": "doorways holy mountains of flesh" + }, + { + "appid": 383940, + "normalized_name": "steam marines 2" + }, + { + "appid": 383950, + "normalized_name": "league of mermaids" + }, + { + "appid": 383960, + "normalized_name": "machina of the planet tree planet ruler" + }, + { + "appid": 383980, + "normalized_name": "rivals of aether" + }, + { + "appid": 384000, + "normalized_name": "cross of the dutchman" + }, + { + "appid": 384010, + "normalized_name": "castles" + }, + { + "appid": 384030, + "normalized_name": "florensia" + }, + { + "appid": 384040, + "normalized_name": "impulse revolution" + }, + { + "appid": 384080, + "normalized_name": "industry manager future technologies" + }, + { + "appid": 384090, + "normalized_name": "sketch tales" + }, + { + "appid": 384100, + "normalized_name": "slybots frantic zone" + }, + { + "appid": 384110, + "normalized_name": "pathologic classic hd" + }, + { + "appid": 384120, + "normalized_name": "wondercat adventures" + }, + { + "appid": 384150, + "normalized_name": "terablaster" + }, + { + "appid": 384180, + "normalized_name": "prominence poker" + }, + { + "appid": 384190, + "normalized_name": "abzu" + }, + { + "appid": 384200, + "normalized_name": "raging justice" + }, + { + "appid": 384250, + "normalized_name": "super rude bear resurrection" + }, + { + "appid": 384280, + "normalized_name": "mute crimson+" + }, + { + "appid": 384310, + "normalized_name": "dead in bermuda" + }, + { + "appid": 384360, + "normalized_name": "fingered" + }, + { + "appid": 384480, + "normalized_name": "six sides of the world" + }, + { + "appid": 384490, + "normalized_name": "necropolis brutal" + }, + { + "appid": 384500, + "normalized_name": "zombie party" + }, + { + "appid": 384550, + "normalized_name": "painters guild" + }, + { + "appid": 384570, + "normalized_name": "zanzarah the hidden portal" + }, + { + "appid": 384590, + "normalized_name": "polychromatic" + }, + { + "appid": 384630, + "normalized_name": "aviary attorney" + }, + { + "appid": 384660, + "normalized_name": "red fuse rolling explosive device" + }, + { + "appid": 384680, + "normalized_name": "mechanika" + }, + { + "appid": 384690, + "normalized_name": "umihara kawase" + }, + { + "appid": 384700, + "normalized_name": "umihara kawase shun" + }, + { + "appid": 384740, + "normalized_name": "cat interstellar" + }, + { + "appid": 384750, + "normalized_name": "everest vr" + }, + { + "appid": 384890, + "normalized_name": "hack run zero" + }, + { + "appid": 384900, + "normalized_name": "temporal shift" + }, + { + "appid": 384910, + "normalized_name": "last half of darkness society of the serpent moon" + }, + { + "appid": 384920, + "normalized_name": "abd a beautiful day" + }, + { + "appid": 384940, + "normalized_name": "magical brickout" + }, + { + "appid": 384960, + "normalized_name": "vengeance" + }, + { + "appid": 384980, + "normalized_name": "battle for blood epic battles within 30 seconds!" + }, + { + "appid": 384990, + "normalized_name": "gon' e choo!" + }, + { + "appid": 385030, + "normalized_name": "c. kane" + }, + { + "appid": 385060, + "normalized_name": "the last warlock" + }, + { + "appid": 385070, + "normalized_name": "atonement scourge of time" + }, + { + "appid": 385080, + "normalized_name": "guardians of victoria" + }, + { + "appid": 385100, + "normalized_name": "space the return of the pixxelfrazzer" + }, + { + "appid": 385130, + "normalized_name": "dvdrum drum simulator!" + }, + { + "appid": 385150, + "normalized_name": "stranded in time" + }, + { + "appid": 385190, + "normalized_name": "celestial tear demon's revenge" + }, + { + "appid": 385220, + "normalized_name": "pulut adventure" + }, + { + "appid": 385230, + "normalized_name": "ninjahtic" + }, + { + "appid": 385240, + "normalized_name": "arena" + }, + { + "appid": 385250, + "normalized_name": "paint it back" + }, + { + "appid": 385260, + "normalized_name": "lamia must die" + }, + { + "appid": 385270, + "normalized_name": "jet racing extreme the first encounter" + }, + { + "appid": 385310, + "normalized_name": "the land of lamia" + }, + { + "appid": 385330, + "normalized_name": "stray cat crossing" + }, + { + "appid": 385350, + "normalized_name": "deadweight" + }, + { + "appid": 385360, + "normalized_name": "super trench attack 2" + }, + { + "appid": 385370, + "normalized_name": "radiator 2 anniversary" + }, + { + "appid": 385380, + "normalized_name": "planet centauri" + }, + { + "appid": 385390, + "normalized_name": "hidden mysteries civil war" + }, + { + "appid": 385400, + "normalized_name": "weapons genius" + }, + { + "appid": 385410, + "normalized_name": "the journey bob's story" + }, + { + "appid": 385440, + "normalized_name": "buff knight advanced" + }, + { + "appid": 385530, + "normalized_name": "astro lords" + }, + { + "appid": 385560, + "normalized_name": "shadow complex" + }, + { + "appid": 385580, + "normalized_name": "the empty inn" + }, + { + "appid": 385590, + "normalized_name": "lethal rpg war" + }, + { + "appid": 385600, + "normalized_name": "heavy fire shattered spear" + }, + { + "appid": 385690, + "normalized_name": "wave mechanics" + }, + { + "appid": 385700, + "normalized_name": "battle for the sun" + }, + { + "appid": 385710, + "normalized_name": "ink" + }, + { + "appid": 385740, + "normalized_name": "steelguard" + }, + { + "appid": 385770, + "normalized_name": "time clickers" + }, + { + "appid": 385800, + "normalized_name": "nekopara vol. 0" + }, + { + "appid": 385810, + "normalized_name": "retaliation enemy mine" + }, + { + "appid": 385830, + "normalized_name": "burgers" + }, + { + "appid": 385840, + "normalized_name": "the beard in the mirror" + }, + { + "appid": 385850, + "normalized_name": "life in the dorms" + }, + { + "appid": 385860, + "normalized_name": "tachyon project" + }, + { + "appid": 385900, + "normalized_name": "arevan" + }, + { + "appid": 385940, + "normalized_name": "battles of the ancient world" + }, + { + "appid": 385950, + "normalized_name": "infection humanity's last gasp" + }, + { + "appid": 385960, + "normalized_name": "russian front" + }, + { + "appid": 385980, + "normalized_name": "scott in space" + }, + { + "appid": 386050, + "normalized_name": "proto raider" + }, + { + "appid": 386070, + "normalized_name": "planetary annihilation titans" + }, + { + "appid": 386080, + "normalized_name": "pharaonic" + }, + { + "appid": 386090, + "normalized_name": "nandeyanen!? the 1st sûtra" + }, + { + "appid": 386100, + "normalized_name": "pylon rogue" + }, + { + "appid": 386110, + "normalized_name": "raywin" + }, + { + "appid": 386140, + "normalized_name": "after the end the harvest" + }, + { + "appid": 386160, + "normalized_name": "vampire of the sands" + }, + { + "appid": 386180, + "normalized_name": "crossout" + }, + { + "appid": 386200, + "normalized_name": "stld redux episode 02" + }, + { + "appid": 386260, + "normalized_name": "microcosmum survival of cells" + }, + { + "appid": 386280, + "normalized_name": "vendetta curse of raven's cry" + }, + { + "appid": 386290, + "normalized_name": "kumoon ballistic physics puzzle" + }, + { + "appid": 386330, + "normalized_name": "hod on open seas" + }, + { + "appid": 386340, + "normalized_name": "megasphere" + }, + { + "appid": 386360, + "normalized_name": "smite" + }, + { + "appid": 386420, + "normalized_name": "job the leprechaun" + }, + { + "appid": 386430, + "normalized_name": "crystal flux" + }, + { + "appid": 386460, + "normalized_name": "baxter's venture director's cut" + }, + { + "appid": 386470, + "normalized_name": "sparkour" + }, + { + "appid": 386480, + "normalized_name": "blood code" + }, + { + "appid": 386490, + "normalized_name": "wanda a beautiful apocalypse" + }, + { + "appid": 386510, + "normalized_name": "pyramid raid" + }, + { + "appid": 386520, + "normalized_name": "champion of the gods" + }, + { + "appid": 386540, + "normalized_name": "a.i. invasion" + }, + { + "appid": 386560, + "normalized_name": "psycho starship rampage" + }, + { + "appid": 386590, + "normalized_name": "novus inceptio" + }, + { + "appid": 386600, + "normalized_name": "pixel fodder" + }, + { + "appid": 386620, + "normalized_name": "cook serve delicious! 2!!" + }, + { + "appid": 386630, + "normalized_name": "nirvana the first travel" + }, + { + "appid": 386640, + "normalized_name": "affected zone tactics" + }, + { + "appid": 386650, + "normalized_name": "dungeons and robots" + }, + { + "appid": 386690, + "normalized_name": "fantastic contraption" + }, + { + "appid": 386700, + "normalized_name": "the oil blue steam legacy" + }, + { + "appid": 386710, + "normalized_name": "c \\raft" + }, + { + "appid": 386740, + "normalized_name": "puzzle strike" + }, + { + "appid": 386750, + "normalized_name": "cashtronauts" + }, + { + "appid": 386770, + "normalized_name": "caladrius blaze" + }, + { + "appid": 386840, + "normalized_name": "sentinel 4 dark star" + }, + { + "appid": 386870, + "normalized_name": "playing history 2 slave trade" + }, + { + "appid": 386880, + "normalized_name": "rake" + }, + { + "appid": 386900, + "normalized_name": "the cat machine" + }, + { + "appid": 386930, + "normalized_name": "dragonflight" + }, + { + "appid": 386940, + "normalized_name": "chicken horse" + }, + { + "appid": 386960, + "normalized_name": "order of ataxia initial effects" + }, + { + "appid": 386970, + "normalized_name": "memory's dogma code 01" + }, + { + "appid": 386990, + "normalized_name": "asphyxia" + }, + { + "appid": 387010, + "normalized_name": "five guardians of david" + }, + { + "appid": 387060, + "normalized_name": "earth overclocked" + }, + { + "appid": 387090, + "normalized_name": "revolution virtual playspace" + }, + { + "appid": 387100, + "normalized_name": "walkerman" + }, + { + "appid": 387110, + "normalized_name": "shmup love boom" + }, + { + "appid": 387130, + "normalized_name": "zombie hunter inc." + }, + { + "appid": 387240, + "normalized_name": "steel rain" + }, + { + "appid": 387280, + "normalized_name": "inferno 2" + }, + { + "appid": 387290, + "normalized_name": "ori and the blind forest" + }, + { + "appid": 387340, + "normalized_name": "hyperdimension neptunia u action unleashed" + }, + { + "appid": 387370, + "normalized_name": "sol 0 mars colonization" + }, + { + "appid": 387400, + "normalized_name": "c.r.e.e.p.s" + }, + { + "appid": 387430, + "normalized_name": "the viceroy" + }, + { + "appid": 387450, + "normalized_name": "shadow of kingdoms" + }, + { + "appid": 387820, + "normalized_name": "build a game universe" + }, + { + "appid": 387840, + "normalized_name": "alpha runner" + }, + { + "appid": 387850, + "normalized_name": "airport madness 4" + }, + { + "appid": 387860, + "normalized_name": "the static speaks my name" + }, + { + "appid": 387870, + "normalized_name": "mold on the pizza" + }, + { + "appid": 387880, + "normalized_name": "ninjahtic mind tricks" + }, + { + "appid": 387890, + "normalized_name": "radial impact" + }, + { + "appid": 387930, + "normalized_name": "the tape" + }, + { + "appid": 387970, + "normalized_name": "clown house (palyaço evi)" + }, + { + "appid": 387990, + "normalized_name": "scrap mechanic" + }, + { + "appid": 388000, + "normalized_name": "wellington's victory" + }, + { + "appid": 388010, + "normalized_name": "tick the time based puzzle game" + }, + { + "appid": 388050, + "normalized_name": "snik" + }, + { + "appid": 388060, + "normalized_name": "the escapists the walking dead" + }, + { + "appid": 388090, + "normalized_name": "five nights at freddy's 4" + }, + { + "appid": 388140, + "normalized_name": "strategic command classic wwi" + }, + { + "appid": 388160, + "normalized_name": "project druid 2d labyrinth explorer" + }, + { + "appid": 388210, + "normalized_name": "day of the tentacle" + }, + { + "appid": 388260, + "normalized_name": "super slam dunk touchdown" + }, + { + "appid": 388270, + "normalized_name": "baseball mogul 2015" + }, + { + "appid": 388300, + "normalized_name": "just alone" + }, + { + "appid": 388320, + "normalized_name": "1979 revolution black friday" + }, + { + "appid": 388340, + "normalized_name": "super hipster lumberjack" + }, + { + "appid": 388360, + "normalized_name": "shoppy mart steam" + }, + { + "appid": 388370, + "normalized_name": "nova blitz" + }, + { + "appid": 388390, + "normalized_name": "\"glow ball\" the billiard puzzle game" + }, + { + "appid": 388410, + "normalized_name": "darksiders ii deathinitive" + }, + { + "appid": 388420, + "normalized_name": "in between" + }, + { + "appid": 388430, + "normalized_name": "tankzone battle" + }, + { + "appid": 388440, + "normalized_name": "big journey to home" + }, + { + "appid": 388450, + "normalized_name": "spooky bonus" + }, + { + "appid": 388490, + "normalized_name": "one way to die" + }, + { + "appid": 388500, + "normalized_name": "super space meltdown" + }, + { + "appid": 388540, + "normalized_name": "dr. bulbaceous" + }, + { + "appid": 388550, + "normalized_name": "galactic missile defense" + }, + { + "appid": 388620, + "normalized_name": "dungeonup" + }, + { + "appid": 388660, + "normalized_name": "project tarvotan" + }, + { + "appid": 388680, + "normalized_name": "unfinished an artist's lament" + }, + { + "appid": 388720, + "normalized_name": "link the unleashed nexus" + }, + { + "appid": 388730, + "normalized_name": "brighter day" + }, + { + "appid": 388750, + "normalized_name": "blazblue chronophantasma extend" + }, + { + "appid": 388800, + "normalized_name": "azure striker gunvolt" + }, + { + "appid": 388830, + "normalized_name": "tribequest red killer" + }, + { + "appid": 388840, + "normalized_name": "cats!" + }, + { + "appid": 388860, + "normalized_name": "judas" + }, + { + "appid": 388880, + "normalized_name": "oxenfree" + }, + { + "appid": 388900, + "normalized_name": "fracture the flag" + }, + { + "appid": 388910, + "normalized_name": "sentinels" + }, + { + "appid": 388960, + "normalized_name": "torn tales" + }, + { + "appid": 388970, + "normalized_name": "izbot" + }, + { + "appid": 389010, + "normalized_name": "unnamed fiasco" + }, + { + "appid": 389050, + "normalized_name": "pocket rumble" + }, + { + "appid": 389140, + "normalized_name": "horizon chase turbo" + }, + { + "appid": 389160, + "normalized_name": "shadow ninja apocalypse" + }, + { + "appid": 389170, + "normalized_name": "songs for a hero" + }, + { + "appid": 389190, + "normalized_name": "goblins and grottos" + }, + { + "appid": 389220, + "normalized_name": "maximum override" + }, + { + "appid": 389230, + "normalized_name": "fish or die" + }, + { + "appid": 389250, + "normalized_name": "planet alcatraz 2" + }, + { + "appid": 389260, + "normalized_name": "lucid trips" + }, + { + "appid": 389270, + "normalized_name": "through abandoned the underground city" + }, + { + "appid": 389310, + "normalized_name": "tic toc tower" + }, + { + "appid": 389330, + "normalized_name": "vegas party" + }, + { + "appid": 389400, + "normalized_name": "the chronicles of emerland. solitaire." + }, + { + "appid": 389430, + "normalized_name": "knight online" + }, + { + "appid": 389460, + "normalized_name": "robot vs birds zombies" + }, + { + "appid": 389470, + "normalized_name": "call of cthulhu shadow of the comet" + }, + { + "appid": 389510, + "normalized_name": "wild animal racing" + }, + { + "appid": 389540, + "normalized_name": "rescue me heroes" + }, + { + "appid": 389570, + "normalized_name": "mitos.is the game" + }, + { + "appid": 389650, + "normalized_name": "stardust galaxy warriors stellar climax" + }, + { + "appid": 389670, + "normalized_name": "pacer" + }, + { + "appid": 389680, + "normalized_name": "luxury hotel emporium" + }, + { + "appid": 389690, + "normalized_name": "nightclub emporium" + }, + { + "appid": 389700, + "normalized_name": "my bones" + }, + { + "appid": 389710, + "normalized_name": "catapult king" + }, + { + "appid": 389730, + "normalized_name": "tekken 7" + }, + { + "appid": 389740, + "normalized_name": "d/generation hd" + }, + { + "appid": 389810, + "normalized_name": "rubber and lead" + }, + { + "appid": 389870, + "normalized_name": "mugen souls" + }, + { + "appid": 389900, + "normalized_name": "hogs of war" + }, + { + "appid": 389940, + "normalized_name": "moonstrike" + }, + { + "appid": 389970, + "normalized_name": "blues and bullets digital comic" + }, + { + "appid": 390030, + "normalized_name": "desync" + }, + { + "appid": 390040, + "normalized_name": "small radios big televisions" + }, + { + "appid": 390100, + "normalized_name": "9dragons" + }, + { + "appid": 390200, + "normalized_name": "queen's quest tower of darkness" + }, + { + "appid": 390210, + "normalized_name": "freezeme" + }, + { + "appid": 390220, + "normalized_name": "toilet tycoon" + }, + { + "appid": 390290, + "normalized_name": "bulb boy" + }, + { + "appid": 390310, + "normalized_name": "little king's story" + }, + { + "appid": 390330, + "normalized_name": "mekazoo" + }, + { + "appid": 390340, + "normalized_name": "umbrella corps" + }, + { + "appid": 390460, + "normalized_name": "tyler" + }, + { + "appid": 390500, + "normalized_name": "arma 3 samples" + }, + { + "appid": 390510, + "normalized_name": "sim junta" + }, + { + "appid": 390520, + "normalized_name": "pewdiepie legend of the brofist" + }, + { + "appid": 390560, + "normalized_name": "fantasy strike" + }, + { + "appid": 390570, + "normalized_name": "three digits" + }, + { + "appid": 390610, + "normalized_name": "circa infinity" + }, + { + "appid": 390620, + "normalized_name": "an alien with a magnet" + }, + { + "appid": 390660, + "normalized_name": "call of tomsk 7" + }, + { + "appid": 390680, + "normalized_name": "spacejacked" + }, + { + "appid": 390710, + "normalized_name": "acceleration of suguri 2" + }, + { + "appid": 390720, + "normalized_name": "anarcute" + }, + { + "appid": 390730, + "normalized_name": "sora" + }, + { + "appid": 390870, + "normalized_name": "circuit breakers" + }, + { + "appid": 390880, + "normalized_name": "redemption eternal quest" + }, + { + "appid": 390890, + "normalized_name": "angry arrows" + }, + { + "appid": 390920, + "normalized_name": "army of pixels" + }, + { + "appid": 390930, + "normalized_name": "aipd artificial intelligence police department" + }, + { + "appid": 390940, + "normalized_name": "the musketeers victoria's quest" + }, + { + "appid": 391000, + "normalized_name": "farm frenzy collection" + }, + { + "appid": 391030, + "normalized_name": "hard to be a god" + }, + { + "appid": 391070, + "normalized_name": "stellar 2d" + }, + { + "appid": 391100, + "normalized_name": "frizzy" + }, + { + "appid": 391120, + "normalized_name": "the archetype" + }, + { + "appid": 391140, + "normalized_name": "blast off" + }, + { + "appid": 391150, + "normalized_name": "red tie runner" + }, + { + "appid": 391160, + "normalized_name": "the deletion" + }, + { + "appid": 391170, + "normalized_name": "void invaders" + }, + { + "appid": 391180, + "normalized_name": "ladra" + }, + { + "appid": 391190, + "normalized_name": "dolguth" + }, + { + "appid": 391210, + "normalized_name": "arclight cascade" + }, + { + "appid": 391220, + "normalized_name": "rise of the tomb raider" + }, + { + "appid": 391250, + "normalized_name": "alien robot monsters" + }, + { + "appid": 391260, + "normalized_name": "labyronia rpg" + }, + { + "appid": 391270, + "normalized_name": "fingerbones" + }, + { + "appid": 391280, + "normalized_name": "epic manager create your own adventuring agency!" + }, + { + "appid": 391290, + "normalized_name": "deathcrank" + }, + { + "appid": 391310, + "normalized_name": "alien attack" + }, + { + "appid": 391340, + "normalized_name": "ferrum's secrets where is grandpa?" + }, + { + "appid": 391380, + "normalized_name": "tormented 12" + }, + { + "appid": 391390, + "normalized_name": "mayhem triple" + }, + { + "appid": 391400, + "normalized_name": "game of dragons" + }, + { + "appid": 391410, + "normalized_name": "rock the tree hugger" + }, + { + "appid": 391420, + "normalized_name": "gun rocket" + }, + { + "appid": 391440, + "normalized_name": "xenobloom" + }, + { + "appid": 391460, + "normalized_name": "warmode" + }, + { + "appid": 391480, + "normalized_name": "mutato match" + }, + { + "appid": 391490, + "normalized_name": "braveland pirate" + }, + { + "appid": 391510, + "normalized_name": "rhem iv the golden fragments se" + }, + { + "appid": 391520, + "normalized_name": "labyrinth simulator" + }, + { + "appid": 391540, + "normalized_name": "undertale" + }, + { + "appid": 391550, + "normalized_name": "beyond flesh and blood" + }, + { + "appid": 391580, + "normalized_name": "egyptian senet" + }, + { + "appid": 391590, + "normalized_name": "dream chamber" + }, + { + "appid": 391600, + "normalized_name": "king lucas" + }, + { + "appid": 391640, + "normalized_name": "stage presence" + }, + { + "appid": 391650, + "normalized_name": "escape from biostation" + }, + { + "appid": 391660, + "normalized_name": "incitement 3" + }, + { + "appid": 391720, + "normalized_name": "layers of fear (2016)" + }, + { + "appid": 391730, + "normalized_name": "crashlands" + }, + { + "appid": 391740, + "normalized_name": "blaster shooter gunguy!" + }, + { + "appid": 391780, + "normalized_name": "uebergame" + }, + { + "appid": 391820, + "normalized_name": "evolution" + }, + { + "appid": 391910, + "normalized_name": "all fall down" + }, + { + "appid": 391960, + "normalized_name": "super mega bob" + }, + { + "appid": 392000, + "normalized_name": "tron run/r" + }, + { + "appid": 392020, + "normalized_name": "rflex" + }, + { + "appid": 392030, + "normalized_name": "murasaki" + }, + { + "appid": 392070, + "normalized_name": "pumped bmx +" + }, + { + "appid": 392080, + "normalized_name": "wayward terran frontier zero falls" + }, + { + "appid": 392100, + "normalized_name": "fatal theory" + }, + { + "appid": 392110, + "normalized_name": "endless space 2" + }, + { + "appid": 392120, + "normalized_name": "city z" + }, + { + "appid": 392150, + "normalized_name": "#skijump" + }, + { + "appid": 392160, + "normalized_name": "x4 foundations" + }, + { + "appid": 392190, + "normalized_name": "#selfietennis" + }, + { + "appid": 392260, + "normalized_name": "rogue wizards" + }, + { + "appid": 392280, + "normalized_name": "the franz kafka videogame" + }, + { + "appid": 392290, + "normalized_name": "macroboy y" + }, + { + "appid": 392330, + "normalized_name": "take command 2nd manassas" + }, + { + "appid": 392370, + "normalized_name": "wish tale of the sixteenth night of lunar month" + }, + { + "appid": 392410, + "normalized_name": "toy odyssey the lost and found" + }, + { + "appid": 392450, + "normalized_name": "silver creek falls chapter 1" + }, + { + "appid": 392470, + "normalized_name": "nobunaga's ambition sphere of influence" + }, + { + "appid": 392580, + "normalized_name": "warshift" + }, + { + "appid": 392600, + "normalized_name": "volvox" + }, + { + "appid": 392610, + "normalized_name": "tricone lab" + }, + { + "appid": 392690, + "normalized_name": "erwin's timewarp" + }, + { + "appid": 392720, + "normalized_name": "daily espada" + }, + { + "appid": 392780, + "normalized_name": "mondrian abstraction in beauty" + }, + { + "appid": 392820, + "normalized_name": "wild island quest" + }, + { + "appid": 392890, + "normalized_name": "trucker 2" + }, + { + "appid": 392920, + "normalized_name": "arvale" + }, + { + "appid": 392930, + "normalized_name": "a sirius game" + }, + { + "appid": 392940, + "normalized_name": "epic quest of the 4 crystals" + }, + { + "appid": 392950, + "normalized_name": "lost lands a hidden object adventure" + }, + { + "appid": 392970, + "normalized_name": "new york mysteries high voltage collector's" + }, + { + "appid": 393080, + "normalized_name": "call of duty modern warfare (2017)" + }, + { + "appid": 393150, + "normalized_name": "the dreamatorium of dr. magnus 2" + }, + { + "appid": 393170, + "normalized_name": "bit shifter" + }, + { + "appid": 393190, + "normalized_name": "tsioque" + }, + { + "appid": 393200, + "normalized_name": "bad rats show" + }, + { + "appid": 393220, + "normalized_name": "super man or monster" + }, + { + "appid": 393240, + "normalized_name": "sir! i'd like to report a bug!" + }, + { + "appid": 393280, + "normalized_name": "clash cup turbo" + }, + { + "appid": 393350, + "normalized_name": "shu's garden" + }, + { + "appid": 393380, + "normalized_name": "squad" + }, + { + "appid": 393390, + "normalized_name": "cat simulator" + }, + { + "appid": 393420, + "normalized_name": "hurtworld" + }, + { + "appid": 393430, + "normalized_name": "ice lakes" + }, + { + "appid": 393460, + "normalized_name": "crazy pixel streaker" + }, + { + "appid": 393520, + "normalized_name": "iconoclasts" + }, + { + "appid": 393530, + "normalized_name": "insanity clicker" + }, + { + "appid": 393550, + "normalized_name": "the journey back" + }, + { + "appid": 393600, + "normalized_name": "robot exploration squad" + }, + { + "appid": 393610, + "normalized_name": "root" + }, + { + "appid": 393660, + "normalized_name": "streamline" + }, + { + "appid": 393750, + "normalized_name": "p·o·l·l·e·n" + }, + { + "appid": 393770, + "normalized_name": "benji challenges" + }, + { + "appid": 393790, + "normalized_name": "rogue operatives hide and seek" + }, + { + "appid": 393800, + "normalized_name": "gearstorm armored survival" + }, + { + "appid": 393820, + "normalized_name": "at the mountains of madness" + }, + { + "appid": 393860, + "normalized_name": "smoots world cup tennis" + }, + { + "appid": 393920, + "normalized_name": "auto dealership tycoon" + }, + { + "appid": 393930, + "normalized_name": "roshambo" + }, + { + "appid": 393950, + "normalized_name": "get over here" + }, + { + "appid": 393980, + "normalized_name": "pretty girls mahjong solitaire" + }, + { + "appid": 394010, + "normalized_name": "the contact" + }, + { + "appid": 394030, + "normalized_name": "trigonarium" + }, + { + "appid": 394120, + "normalized_name": "home legacy" + }, + { + "appid": 394140, + "normalized_name": "sound shift" + }, + { + "appid": 394160, + "normalized_name": "arcade game series pac man" + }, + { + "appid": 394220, + "normalized_name": "last horizon" + }, + { + "appid": 394260, + "normalized_name": "dance magic" + }, + { + "appid": 394270, + "normalized_name": "country tales" + }, + { + "appid": 394280, + "normalized_name": "dark heritage guardians of hope" + }, + { + "appid": 394290, + "normalized_name": "tennis in the face" + }, + { + "appid": 394310, + "normalized_name": "punch club" + }, + { + "appid": 394360, + "normalized_name": "hearts of iron iv" + }, + { + "appid": 394390, + "normalized_name": "daydreamer awakened" + }, + { + "appid": 394430, + "normalized_name": "dimension drive" + }, + { + "appid": 394480, + "normalized_name": "ringies" + }, + { + "appid": 394490, + "normalized_name": "buildanauts" + }, + { + "appid": 394510, + "normalized_name": "helldivers dive harder" + }, + { + "appid": 394540, + "normalized_name": "spaceport hope" + }, + { + "appid": 394550, + "normalized_name": "gunman clive 2" + }, + { + "appid": 394600, + "normalized_name": "mighty gunvolt" + }, + { + "appid": 394680, + "normalized_name": "mountain crime requital" + }, + { + "appid": 394690, + "normalized_name": "tower unite" + }, + { + "appid": 394700, + "normalized_name": "karma. incarnation 1" + }, + { + "appid": 394720, + "normalized_name": "the legend of tango" + }, + { + "appid": 394760, + "normalized_name": "dead effect 2" + }, + { + "appid": 394770, + "normalized_name": "owys" + }, + { + "appid": 394840, + "normalized_name": "mars colony frontier" + }, + { + "appid": 394850, + "normalized_name": "square brawl" + }, + { + "appid": 394870, + "normalized_name": "office battle" + }, + { + "appid": 394950, + "normalized_name": "mystery castle" + }, + { + "appid": 394970, + "normalized_name": "deadbolt" + }, + { + "appid": 394990, + "normalized_name": "habitus" + }, + { + "appid": 395100, + "normalized_name": "systematic immunity" + }, + { + "appid": 395140, + "normalized_name": "miracle fly" + }, + { + "appid": 395160, + "normalized_name": "toby the secret mine" + }, + { + "appid": 395170, + "normalized_name": "distraint deluxe" + }, + { + "appid": 395200, + "normalized_name": "ben and ed" + }, + { + "appid": 395250, + "normalized_name": "the adventures of fatman" + }, + { + "appid": 395270, + "normalized_name": "a wolf in autumn" + }, + { + "appid": 395300, + "normalized_name": "voxel blast" + }, + { + "appid": 395350, + "normalized_name": "doors" + }, + { + "appid": 395370, + "normalized_name": "astrobase command" + }, + { + "appid": 395380, + "normalized_name": "anki" + }, + { + "appid": 395400, + "normalized_name": "freedom cry" + }, + { + "appid": 395420, + "normalized_name": "the dwarf run" + }, + { + "appid": 395470, + "normalized_name": "icarus.1" + }, + { + "appid": 395480, + "normalized_name": "the makeshifter" + }, + { + "appid": 395500, + "normalized_name": "rot gut" + }, + { + "appid": 395520, + "normalized_name": "missing translation" + }, + { + "appid": 395550, + "normalized_name": "operation hardcore" + }, + { + "appid": 395560, + "normalized_name": "lost horizon 2" + }, + { + "appid": 395570, + "normalized_name": "we are the dwarves" + }, + { + "appid": 395580, + "normalized_name": "inventioneers" + }, + { + "appid": 395600, + "normalized_name": "armor clash" + }, + { + "appid": 395620, + "normalized_name": "ittle dew 2+" + }, + { + "appid": 395830, + "normalized_name": "low fi" + }, + { + "appid": 395850, + "normalized_name": "bear simulator" + }, + { + "appid": 395860, + "normalized_name": "the last dream developer's" + }, + { + "appid": 395880, + "normalized_name": "sky tower" + }, + { + "appid": 395900, + "normalized_name": "backgammon blitz" + }, + { + "appid": 395910, + "normalized_name": "get rich or die gaming" + }, + { + "appid": 395920, + "normalized_name": "playing history the plague" + }, + { + "appid": 395930, + "normalized_name": "farm frenzy heave ho" + }, + { + "appid": 395940, + "normalized_name": "scribbled arena" + }, + { + "appid": 395960, + "normalized_name": "عالم أريب" + }, + { + "appid": 396010, + "normalized_name": "the rise of chubtan" + }, + { + "appid": 396030, + "normalized_name": "incell vr" + }, + { + "appid": 396060, + "normalized_name": "the rose and i" + }, + { + "appid": 396090, + "normalized_name": "rogue state" + }, + { + "appid": 396160, + "normalized_name": "secret of magia" + }, + { + "appid": 396230, + "normalized_name": "versus the lost ones" + }, + { + "appid": 396260, + "normalized_name": "world's fastest pizza" + }, + { + "appid": 396280, + "normalized_name": "anarchy online" + }, + { + "appid": 396310, + "normalized_name": "masochisia" + }, + { + "appid": 396320, + "normalized_name": "tank battle 1944" + }, + { + "appid": 396350, + "normalized_name": "bleed 2" + }, + { + "appid": 396360, + "normalized_name": "locosoccer classic" + }, + { + "appid": 396420, + "normalized_name": "" + }, + { + "appid": 396480, + "normalized_name": "battlevoid harbinger" + }, + { + "appid": 396530, + "normalized_name": "fireflies" + }, + { + "appid": 396590, + "normalized_name": "cmyw" + }, + { + "appid": 396610, + "normalized_name": "quantum flux" + }, + { + "appid": 396640, + "normalized_name": "towerclimb" + }, + { + "appid": 396650, + "normalized_name": "ace academy" + }, + { + "appid": 396660, + "normalized_name": "tahira echoes of the astral empire" + }, + { + "appid": 396680, + "normalized_name": "sol trader" + }, + { + "appid": 396710, + "normalized_name": "the adventure pals" + }, + { + "appid": 396730, + "normalized_name": "gshift" + }, + { + "appid": 396750, + "normalized_name": "everspace" + }, + { + "appid": 396790, + "normalized_name": "dracula's legacy" + }, + { + "appid": 396800, + "normalized_name": "12 labours of hercules iv mother nature (platinum edition)" + }, + { + "appid": 396820, + "normalized_name": "mass destruction" + }, + { + "appid": 396850, + "normalized_name": "chronicles of the witches and warlocks" + }, + { + "appid": 396860, + "normalized_name": "over the hills and far away" + }, + { + "appid": 396870, + "normalized_name": "catyph the kunci experiment" + }, + { + "appid": 396890, + "normalized_name": "gridworld" + }, + { + "appid": 396900, + "normalized_name": "grip combat racing" + }, + { + "appid": 396930, + "normalized_name": "tidal affair before the storm" + }, + { + "appid": 397020, + "normalized_name": "ironkraft road to hell" + }, + { + "appid": 397040, + "normalized_name": "sphere 3" + }, + { + "appid": 397060, + "normalized_name": "faeria" + }, + { + "appid": 397090, + "normalized_name": "wind child" + }, + { + "appid": 397100, + "normalized_name": "machinecraft" + }, + { + "appid": 397160, + "normalized_name": "aurora dusk steam age" + }, + { + "appid": 397190, + "normalized_name": "sengoku jidai shadow of the shogun" + }, + { + "appid": 397200, + "normalized_name": "deliverance" + }, + { + "appid": 397210, + "normalized_name": "kanji training game" + }, + { + "appid": 397240, + "normalized_name": "troubles land" + }, + { + "appid": 397270, + "normalized_name": "a kiss for the petals remembering how we met" + }, + { + "appid": 397310, + "normalized_name": "looterkings" + }, + { + "appid": 397320, + "normalized_name": "ctu counter terrorism unit" + }, + { + "appid": 397330, + "normalized_name": "twinsen's little big adventure classic" + }, + { + "appid": 397340, + "normalized_name": "simpleplanes" + }, + { + "appid": 397350, + "normalized_name": "lords of the realm ii" + }, + { + "appid": 397390, + "normalized_name": "space food truck" + }, + { + "appid": 397400, + "normalized_name": "huebots" + }, + { + "appid": 397430, + "normalized_name": "zoombinis" + }, + { + "appid": 397440, + "normalized_name": "lost legends the weeping woman collector's" + }, + { + "appid": 397460, + "normalized_name": "the jackbox party pack 2" + }, + { + "appid": 397500, + "normalized_name": "labyronia rpg 2" + }, + { + "appid": 397540, + "normalized_name": "borderlands 3" + }, + { + "appid": 397570, + "normalized_name": "shmadow" + }, + { + "appid": 397580, + "normalized_name": "moonbase 332" + }, + { + "appid": 397600, + "normalized_name": "viral ex" + }, + { + "appid": 397640, + "normalized_name": "nulldrifters" + }, + { + "appid": 397660, + "normalized_name": "behind you" + }, + { + "appid": 397670, + "normalized_name": "run run and die" + }, + { + "appid": 397690, + "normalized_name": "hyperspace invaders ii pixel" + }, + { + "appid": 397720, + "normalized_name": "romance of the three kingdoms maker" + }, + { + "appid": 397730, + "normalized_name": "rescue love revenge" + }, + { + "appid": 397740, + "normalized_name": "hylics" + }, + { + "appid": 397750, + "normalized_name": "guided meditation vr" + }, + { + "appid": 397760, + "normalized_name": "urban war defense" + }, + { + "appid": 397770, + "normalized_name": "age of invention" + }, + { + "appid": 397780, + "normalized_name": "a wise use of time" + }, + { + "appid": 397800, + "normalized_name": "battlequiz" + }, + { + "appid": 397810, + "normalized_name": "super bomb rush!" + }, + { + "appid": 397820, + "normalized_name": "let's sing 2016" + }, + { + "appid": 397830, + "normalized_name": "zxill a legend of time" + }, + { + "appid": 397840, + "normalized_name": "car mechanic manager" + }, + { + "appid": 397850, + "normalized_name": "sonder. episode one" + }, + { + "appid": 397860, + "normalized_name": "carnivore land" + }, + { + "appid": 397870, + "normalized_name": "arcane sorcery" + }, + { + "appid": 397900, + "normalized_name": "business tour board game with online multiplayer" + }, + { + "appid": 397940, + "normalized_name": "no time to live" + }, + { + "appid": 397950, + "normalized_name": "clustertruck" + }, + { + "appid": 397960, + "normalized_name": "mystery expedition prisoners of ice" + }, + { + "appid": 397970, + "normalized_name": "abandoned chestnut lodge asylum" + }, + { + "appid": 397990, + "normalized_name": "woof blaster" + }, + { + "appid": 398000, + "normalized_name": "twinsen's little big adventure 2 classic" + }, + { + "appid": 398030, + "normalized_name": "old school musical" + }, + { + "appid": 398040, + "normalized_name": "postmaster legacy" + }, + { + "appid": 398100, + "normalized_name": "highschool romance" + }, + { + "appid": 398110, + "normalized_name": "reigning cats" + }, + { + "appid": 398120, + "normalized_name": "advanced gaming platform epica" + }, + { + "appid": 398140, + "normalized_name": "ino" + }, + { + "appid": 398150, + "normalized_name": "ace of protectors" + }, + { + "appid": 398170, + "normalized_name": "evochron legacy se" + }, + { + "appid": 398180, + "normalized_name": "euclidean" + }, + { + "appid": 398210, + "normalized_name": "blackshadows" + }, + { + "appid": 398250, + "normalized_name": "moonstrider" + }, + { + "appid": 398260, + "normalized_name": "eyestorm" + }, + { + "appid": 398450, + "normalized_name": "absent" + }, + { + "appid": 398460, + "normalized_name": "mooch" + }, + { + "appid": 398480, + "normalized_name": "louie cooks" + }, + { + "appid": 398530, + "normalized_name": "ghost cleaner" + }, + { + "appid": 398620, + "normalized_name": "living legends the frozen fear collection" + }, + { + "appid": 398640, + "normalized_name": "bowl bound college football" + }, + { + "appid": 398670, + "normalized_name": "shadow heroes vengeance in flames" + }, + { + "appid": 398680, + "normalized_name": "ace of words" + }, + { + "appid": 398710, + "normalized_name": "timberman" + }, + { + "appid": 398840, + "normalized_name": "war of beach" + }, + { + "appid": 398850, + "normalized_name": "epistory typing chronicles" + }, + { + "appid": 398890, + "normalized_name": "zombie gotchi" + }, + { + "appid": 398900, + "normalized_name": "fjall" + }, + { + "appid": 398920, + "normalized_name": "tisnart tiles" + }, + { + "appid": 398930, + "normalized_name": "macguffin" + }, + { + "appid": 398940, + "normalized_name": "respawn man" + }, + { + "appid": 398950, + "normalized_name": "the end of an age provenance" + }, + { + "appid": 398960, + "normalized_name": "hoven the sages spinel" + }, + { + "appid": 398980, + "normalized_name": "without within 2" + }, + { + "appid": 398990, + "normalized_name": "the last taxi" + }, + { + "appid": 399040, + "normalized_name": "legends of solitaire curse of the dragons" + }, + { + "appid": 399070, + "normalized_name": "dragon's wake" + }, + { + "appid": 399090, + "normalized_name": "it's time to get out from the solar system" + }, + { + "appid": 399120, + "normalized_name": "prospekt" + }, + { + "appid": 399130, + "normalized_name": "massive cleavage vs zombies awesome" + }, + { + "appid": 399140, + "normalized_name": "straima" + }, + { + "appid": 399230, + "normalized_name": "kitchen simulator 2015" + }, + { + "appid": 399240, + "normalized_name": "xnemesis" + }, + { + "appid": 399260, + "normalized_name": "alice's mom's rescue" + }, + { + "appid": 399420, + "normalized_name": "the prism" + }, + { + "appid": 399430, + "normalized_name": "tinboy" + }, + { + "appid": 399520, + "normalized_name": "comedy quest" + }, + { + "appid": 399530, + "normalized_name": "hyspherical 2" + }, + { + "appid": 399600, + "normalized_name": "i and me" + }, + { + "appid": 399640, + "normalized_name": "flamebreak" + }, + { + "appid": 399670, + "normalized_name": "game corp dx" + }, + { + "appid": 399720, + "normalized_name": "xo" + }, + { + "appid": 399780, + "normalized_name": "expand" + }, + { + "appid": 399790, + "normalized_name": "destiny warriors rpg" + }, + { + "appid": 399810, + "normalized_name": "call of cthulhu" + }, + { + "appid": 399820, + "normalized_name": "kopanito all stars soccer" + }, + { + "appid": 399880, + "normalized_name": "amos from outer space" + }, + { + "appid": 399890, + "normalized_name": "the secret order 2 masked intent" + }, + { + "appid": 399900, + "normalized_name": "mad snowboarding" + }, + { + "appid": 399910, + "normalized_name": "ookibloks" + }, + { + "appid": 399920, + "normalized_name": "blowy fish" + }, + { + "appid": 400030, + "normalized_name": "cloney" + }, + { + "appid": 400070, + "normalized_name": "soul shards" + }, + { + "appid": 400080, + "normalized_name": "out of space" + }, + { + "appid": 400110, + "normalized_name": "else heart.break()" + }, + { + "appid": 400130, + "normalized_name": "freedom poopie" + }, + { + "appid": 400160, + "normalized_name": "concrete jungle" + }, + { + "appid": 400170, + "normalized_name": "the incredible adventures of van helsing final cut" + }, + { + "appid": 400180, + "normalized_name": "okhlos omega" + }, + { + "appid": 400200, + "normalized_name": "the mystery of a lost planet" + }, + { + "appid": 400220, + "normalized_name": "bass blocks" + }, + { + "appid": 400230, + "normalized_name": "starforce 2193 the hotep controversy" + }, + { + "appid": 400240, + "normalized_name": "the deer" + }, + { + "appid": 400250, + "normalized_name": "heaven island vr mmo" + }, + { + "appid": 400280, + "normalized_name": "lizard" + }, + { + "appid": 400350, + "normalized_name": "battle fleet ground assault" + }, + { + "appid": 400360, + "normalized_name": "adam's venture origins" + }, + { + "appid": 400370, + "normalized_name": "normality" + }, + { + "appid": 400380, + "normalized_name": "tactical soccer the new season" + }, + { + "appid": 400390, + "normalized_name": "delusion" + }, + { + "appid": 400410, + "normalized_name": "oase other age second encounter" + }, + { + "appid": 400450, + "normalized_name": "neurovoider" + }, + { + "appid": 400470, + "normalized_name": "the seven years war (1756 1763)" + }, + { + "appid": 400500, + "normalized_name": "madout ice storm" + }, + { + "appid": 400510, + "normalized_name": "the final take" + }, + { + "appid": 400560, + "normalized_name": "weaponizedchess" + }, + { + "appid": 400570, + "normalized_name": "warpball" + }, + { + "appid": 400580, + "normalized_name": "black closet" + }, + { + "appid": 400630, + "normalized_name": "wuppo" + }, + { + "appid": 400660, + "normalized_name": "reverse crawl" + }, + { + "appid": 400710, + "normalized_name": "bleeding blocks" + }, + { + "appid": 400740, + "normalized_name": "verge lost chapter" + }, + { + "appid": 400750, + "normalized_name": "call to arms gates of hell ostfront" + }, + { + "appid": 400790, + "normalized_name": "the juicer" + }, + { + "appid": 400800, + "normalized_name": "mxgp2 the official motocross videogame" + }, + { + "appid": 400880, + "normalized_name": "rock crawler" + }, + { + "appid": 400910, + "normalized_name": "rabi ribi" + }, + { + "appid": 400940, + "normalized_name": "budget cuts" + }, + { + "appid": 401120, + "normalized_name": "anode" + }, + { + "appid": 401170, + "normalized_name": "birth of shadows" + }, + { + "appid": 401190, + "normalized_name": "dinosaur hunt" + }, + { + "appid": 401200, + "normalized_name": "invisible apartment 2" + }, + { + "appid": 401210, + "normalized_name": "puzzle sages" + }, + { + "appid": 401250, + "normalized_name": "zulu response" + }, + { + "appid": 401280, + "normalized_name": "nubs' adventure" + }, + { + "appid": 401290, + "normalized_name": "nusakana" + }, + { + "appid": 401330, + "normalized_name": "akuatica" + }, + { + "appid": 401360, + "normalized_name": "the aquatic adventure of the last human" + }, + { + "appid": 401420, + "normalized_name": "match 3 revolution" + }, + { + "appid": 401550, + "normalized_name": "legena union tides" + }, + { + "appid": 401680, + "normalized_name": "postal redux" + }, + { + "appid": 401690, + "normalized_name": "life in bunker" + }, + { + "appid": 401710, + "normalized_name": "flinthook" + }, + { + "appid": 401760, + "normalized_name": "drone swarm" + }, + { + "appid": 401800, + "normalized_name": "bitku" + }, + { + "appid": 401810, + "normalized_name": "poi" + }, + { + "appid": 401820, + "normalized_name": "fated the silent oath" + }, + { + "appid": 401840, + "normalized_name": "chargeshot" + }, + { + "appid": 401890, + "normalized_name": "arslan the warriors of legend" + }, + { + "appid": 401910, + "normalized_name": "darknet" + }, + { + "appid": 401970, + "normalized_name": "hypatia" + }, + { + "appid": 402020, + "normalized_name": "the park" + }, + { + "appid": 402030, + "normalized_name": "zenohell" + }, + { + "appid": 402040, + "normalized_name": "the guest" + }, + { + "appid": 402060, + "normalized_name": "californium" + }, + { + "appid": 402080, + "normalized_name": "jumphead battle4fun!" + }, + { + "appid": 402120, + "normalized_name": "deathstate abyssal" + }, + { + "appid": 402130, + "normalized_name": "flatout 4 total insanity" + }, + { + "appid": 402150, + "normalized_name": "string theory" + }, + { + "appid": 402160, + "normalized_name": "star command galaxies" + }, + { + "appid": 402170, + "normalized_name": "puzzle ball" + }, + { + "appid": 402180, + "normalized_name": "sakura swim club" + }, + { + "appid": 402190, + "normalized_name": "gamer simulator" + }, + { + "appid": 402210, + "normalized_name": "airport madness time machine" + }, + { + "appid": 402220, + "normalized_name": "lift it" + }, + { + "appid": 402260, + "normalized_name": "dead secret" + }, + { + "appid": 402300, + "normalized_name": "dungeon manager zv" + }, + { + "appid": 402310, + "normalized_name": "overfall" + }, + { + "appid": 402330, + "normalized_name": "press x to not die" + }, + { + "appid": 402340, + "normalized_name": "blue rider" + }, + { + "appid": 402390, + "normalized_name": "hyperdrive massacre" + }, + { + "appid": 402530, + "normalized_name": "the last door season 2 collector's" + }, + { + "appid": 402560, + "normalized_name": "tabletopia" + }, + { + "appid": 402620, + "normalized_name": "kindred spirits on the roof" + }, + { + "appid": 402670, + "normalized_name": "space thinger" + }, + { + "appid": 402750, + "normalized_name": "giant machines 2017" + }, + { + "appid": 402840, + "normalized_name": "crusaders of the lost idols" + }, + { + "appid": 402850, + "normalized_name": "miner mayhem" + }, + { + "appid": 402880, + "normalized_name": "age of barbarian extended cut" + }, + { + "appid": 402890, + "normalized_name": "nyctophilia" + }, + { + "appid": 402910, + "normalized_name": "undead blackout reanimated" + }, + { + "appid": 402940, + "normalized_name": "dungeons of betrayal" + }, + { + "appid": 402970, + "normalized_name": "fringes of the empire" + }, + { + "appid": 402980, + "normalized_name": "osteya" + }, + { + "appid": 403070, + "normalized_name": "silver creek falls chapter 2" + }, + { + "appid": 403090, + "normalized_name": "rescue team 2" + }, + { + "appid": 403100, + "normalized_name": "rescue team 3" + }, + { + "appid": 403120, + "normalized_name": "the game of life" + }, + { + "appid": 403180, + "normalized_name": "draw a stickman epic 2" + }, + { + "appid": 403190, + "normalized_name": "planetbase" + }, + { + "appid": 403200, + "normalized_name": "legends of dawn reborn" + }, + { + "appid": 403230, + "normalized_name": "zombiezoid zenith" + }, + { + "appid": 403270, + "normalized_name": "cloudrift" + }, + { + "appid": 403290, + "normalized_name": "burly men at sea" + }, + { + "appid": 403300, + "normalized_name": "gravblocks" + }, + { + "appid": 403390, + "normalized_name": "undercover missions operation kursk k 141" + }, + { + "appid": 403400, + "normalized_name": "arcade game series dig dug" + }, + { + "appid": 403410, + "normalized_name": "arcade game series ms. pac man" + }, + { + "appid": 403430, + "normalized_name": "arcade game series galaga" + }, + { + "appid": 403440, + "normalized_name": "evil hazard" + }, + { + "appid": 403460, + "normalized_name": "skyscrappers" + }, + { + "appid": 403510, + "normalized_name": "fairy tale mysteries 2 the beanstalk" + }, + { + "appid": 403560, + "normalized_name": "eaten alive" + }, + { + "appid": 403590, + "normalized_name": "klepto" + }, + { + "appid": 403640, + "normalized_name": "dishonored 2" + }, + { + "appid": 403660, + "normalized_name": "omnipresent" + }, + { + "appid": 403670, + "normalized_name": "lumber island that special place" + }, + { + "appid": 403680, + "normalized_name": "dexterity ball 3d" + }, + { + "appid": 403690, + "normalized_name": "codename rogue fleet" + }, + { + "appid": 403700, + "normalized_name": "zero punctuation hatfall hatters gonna hat" + }, + { + "appid": 403740, + "normalized_name": "gaben the final decision" + }, + { + "appid": 403780, + "normalized_name": "color symphony 2" + }, + { + "appid": 403830, + "normalized_name": "the consuming shadow" + }, + { + "appid": 403850, + "normalized_name": "sky to fly faster than wind" + }, + { + "appid": 403860, + "normalized_name": "alpages the five books" + }, + { + "appid": 403900, + "normalized_name": "clergy splode" + }, + { + "appid": 403940, + "normalized_name": "dungelot shattered lands" + }, + { + "appid": 403950, + "normalized_name": "conquest of elysium 4" + }, + { + "appid": 403970, + "normalized_name": "the dwarves" + }, + { + "appid": 403980, + "normalized_name": "world ship simulator" + }, + { + "appid": 404030, + "normalized_name": "lucky rabbit reflex!" + }, + { + "appid": 404040, + "normalized_name": "lords of magic special" + }, + { + "appid": 404070, + "normalized_name": "lords of new york" + }, + { + "appid": 404080, + "normalized_name": "murder" + }, + { + "appid": 404100, + "normalized_name": "steel strider" + }, + { + "appid": 404170, + "normalized_name": "battle girls" + }, + { + "appid": 404180, + "normalized_name": "club life" + }, + { + "appid": 404200, + "normalized_name": "wartile" + }, + { + "appid": 404270, + "normalized_name": "all my gods" + }, + { + "appid": 404380, + "normalized_name": "to azimuth" + }, + { + "appid": 404390, + "normalized_name": "evil robot traffic jam hd" + }, + { + "appid": 404400, + "normalized_name": "badblood" + }, + { + "appid": 404410, + "normalized_name": "endless sky" + }, + { + "appid": 404420, + "normalized_name": "sun dogs" + }, + { + "appid": 404460, + "normalized_name": "melter man" + }, + { + "appid": 404480, + "normalized_name": "sc2vn the esports visual novel" + }, + { + "appid": 404510, + "normalized_name": "heaven's hope special" + }, + { + "appid": 404530, + "normalized_name": "voxel turf" + }, + { + "appid": 404540, + "normalized_name": "nex machina" + }, + { + "appid": 404580, + "normalized_name": "relive" + }, + { + "appid": 404590, + "normalized_name": "vikings wolves of midgard" + }, + { + "appid": 404630, + "normalized_name": "one hundred ways" + }, + { + "appid": 404640, + "normalized_name": "game tycoon 2" + }, + { + "appid": 404660, + "normalized_name": "vicky saves the big dumb world" + }, + { + "appid": 404680, + "normalized_name": "hob" + }, + { + "appid": 404690, + "normalized_name": "this book is a dungeon" + }, + { + "appid": 404700, + "normalized_name": "curvatron" + }, + { + "appid": 404750, + "normalized_name": "carrotting brain" + }, + { + "appid": 404820, + "normalized_name": "ragdoll runners" + }, + { + "appid": 404850, + "normalized_name": "darthy" + }, + { + "appid": 404860, + "normalized_name": "inside me" + }, + { + "appid": 404870, + "normalized_name": "realms edge" + }, + { + "appid": 404960, + "normalized_name": "the way of life" + }, + { + "appid": 405010, + "normalized_name": "bitardia" + }, + { + "appid": 405050, + "normalized_name": "fill up!" + }, + { + "appid": 405070, + "normalized_name": "the worm" + }, + { + "appid": 405180, + "normalized_name": "123 slaughter me street" + }, + { + "appid": 405190, + "normalized_name": "meg 9 lost echoes" + }, + { + "appid": 405240, + "normalized_name": "hairy little buggers" + }, + { + "appid": 405290, + "normalized_name": "charlie murder" + }, + { + "appid": 405310, + "normalized_name": "lego marvel's avengers" + }, + { + "appid": 405340, + "normalized_name": "siegecraft commander" + }, + { + "appid": 405440, + "normalized_name": "ares omega" + }, + { + "appid": 405480, + "normalized_name": "tomorrow" + }, + { + "appid": 405500, + "normalized_name": "dangerous golf" + }, + { + "appid": 405530, + "normalized_name": "veer" + }, + { + "appid": 405540, + "normalized_name": "ninja senki dx" + }, + { + "appid": 405550, + "normalized_name": "jet set knights" + }, + { + "appid": 405590, + "normalized_name": "stone tales" + }, + { + "appid": 405610, + "normalized_name": "flight of the paladin" + }, + { + "appid": 405640, + "normalized_name": "pony island" + }, + { + "appid": 405650, + "normalized_name": "zero reflex black eye" + }, + { + "appid": 405670, + "normalized_name": "combat core" + }, + { + "appid": 405680, + "normalized_name": "sentou gakuen revival" + }, + { + "appid": 405710, + "normalized_name": "staxel" + }, + { + "appid": 405720, + "normalized_name": "perfect universe play with gravity" + }, + { + "appid": 405760, + "normalized_name": "robot squad simulator 2017" + }, + { + "appid": 405780, + "normalized_name": "alpha polaris a horror adventure game" + }, + { + "appid": 405810, + "normalized_name": "valzar" + }, + { + "appid": 405820, + "normalized_name": "turok" + }, + { + "appid": 405830, + "normalized_name": "turok 2 seeds of evil" + }, + { + "appid": 405860, + "normalized_name": "super ubie island remix" + }, + { + "appid": 405900, + "normalized_name": "disgaea pc" + }, + { + "appid": 405950, + "normalized_name": "lowglow" + }, + { + "appid": 405960, + "normalized_name": "sunken" + }, + { + "appid": 405970, + "normalized_name": "flat kingdom paper's cut" + }, + { + "appid": 406080, + "normalized_name": "ant war domination" + }, + { + "appid": 406090, + "normalized_name": "enigmoon" + }, + { + "appid": 406110, + "normalized_name": "asdivine hearts" + }, + { + "appid": 406120, + "normalized_name": "astral breakers" + }, + { + "appid": 406130, + "normalized_name": "darkmaus" + }, + { + "appid": 406150, + "normalized_name": "refunct" + }, + { + "appid": 406160, + "normalized_name": "dust fleet" + }, + { + "appid": 406170, + "normalized_name": "vortex the gateway" + }, + { + "appid": 406220, + "normalized_name": "gnomes vs. fairies greckel's quest" + }, + { + "appid": 406290, + "normalized_name": "twilight struggle" + }, + { + "appid": 406300, + "normalized_name": "lighthockey" + }, + { + "appid": 406310, + "normalized_name": "stop online battle of words" + }, + { + "appid": 406350, + "normalized_name": "kartkraft" + }, + { + "appid": 406400, + "normalized_name": "axes and arrows" + }, + { + "appid": 406410, + "normalized_name": "minigolf vr" + }, + { + "appid": 406550, + "normalized_name": "umineko when they cry question arcs" + }, + { + "appid": 406650, + "normalized_name": "ratings war" + }, + { + "appid": 406690, + "normalized_name": "roses and gems" + }, + { + "appid": 406710, + "normalized_name": "eclipse edge of light" + }, + { + "appid": 406720, + "normalized_name": "alekhine's gun" + }, + { + "appid": 406730, + "normalized_name": "1 000 heads among the trees" + }, + { + "appid": 406760, + "normalized_name": "fl337 \"fleet\"" + }, + { + "appid": 406780, + "normalized_name": "welcome to boon hill" + }, + { + "appid": 406850, + "normalized_name": "crush your enemies" + }, + { + "appid": 406860, + "normalized_name": "blind" + }, + { + "appid": 406870, + "normalized_name": "eventide slavic fable" + }, + { + "appid": 406890, + "normalized_name": "fruit golf" + }, + { + "appid": 406920, + "normalized_name": "mutant gate" + }, + { + "appid": 406930, + "normalized_name": "epic showdown" + }, + { + "appid": 406940, + "normalized_name": "dub dash" + }, + { + "appid": 406970, + "normalized_name": "the uncertain last quiet day" + }, + { + "appid": 407000, + "normalized_name": "survival is not enough" + }, + { + "appid": 407020, + "normalized_name": "star sky" + }, + { + "appid": 407050, + "normalized_name": "mussoumano ataque dos haters" + }, + { + "appid": 407100, + "normalized_name": "gulf of aden task force somalia" + }, + { + "appid": 407110, + "normalized_name": "swarm universe" + }, + { + "appid": 407130, + "normalized_name": "tank mechanic simulator" + }, + { + "appid": 407150, + "normalized_name": "trap them sniper" + }, + { + "appid": 407190, + "normalized_name": "club manager 2016" + }, + { + "appid": 407230, + "normalized_name": "legend of mysteria rpg" + }, + { + "appid": 407290, + "normalized_name": "there was a caveman" + }, + { + "appid": 407300, + "normalized_name": "the last nightmary a lenda do cabeça de cuia" + }, + { + "appid": 407310, + "normalized_name": "neko nin exheart" + }, + { + "appid": 407320, + "normalized_name": "my little kitties" + }, + { + "appid": 407330, + "normalized_name": "sakura dungeon" + }, + { + "appid": 407340, + "normalized_name": "strawberry vinegar" + }, + { + "appid": 407380, + "normalized_name": "strania the stella machina" + }, + { + "appid": 407420, + "normalized_name": "gabe newell simulator" + }, + { + "appid": 407530, + "normalized_name": "ark the survival of the fittest" + }, + { + "appid": 407560, + "normalized_name": "killing room" + }, + { + "appid": 407600, + "normalized_name": "raiden legacy steam" + }, + { + "appid": 407630, + "normalized_name": "skein" + }, + { + "appid": 407680, + "normalized_name": "last days of spring visual novel" + }, + { + "appid": 407710, + "normalized_name": "the grand canyon vr experience" + }, + { + "appid": 407720, + "normalized_name": "poker pretty girls battle texas hold'em" + }, + { + "appid": 407780, + "normalized_name": "lethe episode one" + }, + { + "appid": 407810, + "normalized_name": "hard reset redux" + }, + { + "appid": 407830, + "normalized_name": "space overlords" + }, + { + "appid": 407840, + "normalized_name": "guardians of orion (phase 2)" + }, + { + "appid": 407880, + "normalized_name": "mad nords probably an epic quest" + }, + { + "appid": 407900, + "normalized_name": "princess remedy in a world of hurt" + }, + { + "appid": 407940, + "normalized_name": "hyper bounce blast" + }, + { + "appid": 407980, + "normalized_name": "sakura beach 2" + }, + { + "appid": 408000, + "normalized_name": "cinderella escape! r12" + }, + { + "appid": 408030, + "normalized_name": "uniball" + }, + { + "appid": 408060, + "normalized_name": "savage the shard of gosen" + }, + { + "appid": 408110, + "normalized_name": "planet r 12" + }, + { + "appid": 408120, + "normalized_name": "cibele" + }, + { + "appid": 408170, + "normalized_name": "networm" + }, + { + "appid": 408240, + "normalized_name": "slime jumper" + }, + { + "appid": 408250, + "normalized_name": "eagle flight" + }, + { + "appid": 408280, + "normalized_name": "message quest" + }, + { + "appid": 408340, + "normalized_name": "gravity lab" + }, + { + "appid": 408400, + "normalized_name": "swords and sorcery underworld" + }, + { + "appid": 408410, + "normalized_name": "x morph defense" + }, + { + "appid": 408440, + "normalized_name": "dream factory" + }, + { + "appid": 408520, + "normalized_name": "form" + }, + { + "appid": 408640, + "normalized_name": "code of princess" + }, + { + "appid": 408650, + "normalized_name": "chromagun" + }, + { + "appid": 408740, + "normalized_name": "pro gamer manager" + }, + { + "appid": 408750, + "normalized_name": "starsphere" + }, + { + "appid": 408760, + "normalized_name": "pro cycling manager 2016" + }, + { + "appid": 408770, + "normalized_name": "highschool possession" + }, + { + "appid": 408900, + "normalized_name": "unfortunate spacemen" + }, + { + "appid": 408920, + "normalized_name": "krai mira post apocalyptic crimea" + }, + { + "appid": 408960, + "normalized_name": "zombasite" + }, + { + "appid": 408990, + "normalized_name": "timber and stone" + }, + { + "appid": 409000, + "normalized_name": "mystery chronicle one way heroics" + }, + { + "appid": 409040, + "normalized_name": "herolike" + }, + { + "appid": 409070, + "normalized_name": "fist slash of fury" + }, + { + "appid": 409090, + "normalized_name": "the big secret of a small town" + }, + { + "appid": 409100, + "normalized_name": "the purring quest" + }, + { + "appid": 409160, + "normalized_name": "dr. langeskov the tiger and the terribly cursed emerald a whirlwind heist" + }, + { + "appid": 409170, + "normalized_name": "contract" + }, + { + "appid": 409280, + "normalized_name": "blue sheep" + }, + { + "appid": 409290, + "normalized_name": "herding dog" + }, + { + "appid": 409320, + "normalized_name": "syndrome" + }, + { + "appid": 409340, + "normalized_name": "perraw fps clone war alpha" + }, + { + "appid": 409360, + "normalized_name": "faron's fate" + }, + { + "appid": 409380, + "normalized_name": "among the heavens" + }, + { + "appid": 409390, + "normalized_name": "marble mountain" + }, + { + "appid": 409420, + "normalized_name": "knight adventure" + }, + { + "appid": 409450, + "normalized_name": "the fall of the dungeon guardians enhanced" + }, + { + "appid": 409460, + "normalized_name": "blackfaun" + }, + { + "appid": 409490, + "normalized_name": "rogue harvest" + }, + { + "appid": 409510, + "normalized_name": "genesis online" + }, + { + "appid": 409520, + "normalized_name": "ginger beyond the crystal" + }, + { + "appid": 409560, + "normalized_name": "run rabbit run" + }, + { + "appid": 409580, + "normalized_name": "no1left" + }, + { + "appid": 409590, + "normalized_name": "kingdoms" + }, + { + "appid": 409600, + "normalized_name": "contract with the devil" + }, + { + "appid": 409610, + "normalized_name": "one final chaos" + }, + { + "appid": 409630, + "normalized_name": "rumble" + }, + { + "appid": 409660, + "normalized_name": "angry video game nerd ii assimilation" + }, + { + "appid": 409670, + "normalized_name": "pink hour" + }, + { + "appid": 409690, + "normalized_name": "pink heaven" + }, + { + "appid": 409710, + "normalized_name": "bioshock" + }, + { + "appid": 409720, + "normalized_name": "bioshock 2" + }, + { + "appid": 409730, + "normalized_name": "death by game show" + }, + { + "appid": 409790, + "normalized_name": "shadow corps" + }, + { + "appid": 409850, + "normalized_name": "criminal girls invite only" + }, + { + "appid": 409870, + "normalized_name": "phantom brave pc" + }, + { + "appid": 409890, + "normalized_name": "stranger of sword city" + }, + { + "appid": 409910, + "normalized_name": "the storm guard darkness is coming" + }, + { + "appid": 409920, + "normalized_name": "brilliant shadows part one of the book of gray magic" + }, + { + "appid": 410000, + "normalized_name": "chalo chalo" + }, + { + "appid": 410040, + "normalized_name": "hope in hell" + }, + { + "appid": 410050, + "normalized_name": "the forgotten forest" + }, + { + "appid": 410110, + "normalized_name": "12 is better than 6" + }, + { + "appid": 410120, + "normalized_name": "agon the mysterious codex (trilogy)" + }, + { + "appid": 410130, + "normalized_name": "agon the lost sword of toledo" + }, + { + "appid": 410150, + "normalized_name": "swapperoo" + }, + { + "appid": 410210, + "normalized_name": "ampersand" + }, + { + "appid": 410320, + "normalized_name": "earth defense force 4.1 the shadow of new despair" + }, + { + "appid": 410330, + "normalized_name": "turretcraft" + }, + { + "appid": 410340, + "normalized_name": "liftoff fpv drone racing" + }, + { + "appid": 410370, + "normalized_name": "huenison" + }, + { + "appid": 410390, + "normalized_name": "warhammer vermintide vr hero trials" + }, + { + "appid": 410430, + "normalized_name": "morphine" + }, + { + "appid": 410440, + "normalized_name": "vertigo void" + }, + { + "appid": 410470, + "normalized_name": "expander" + }, + { + "appid": 410490, + "normalized_name": "elements epic heroes" + }, + { + "appid": 410540, + "normalized_name": "starlord" + }, + { + "appid": 410550, + "normalized_name": "tank m1a1 abrams battle simulation" + }, + { + "appid": 410670, + "normalized_name": "suits a business rpg" + }, + { + "appid": 410710, + "normalized_name": "system shock enhanced" + }, + { + "appid": 410740, + "normalized_name": "flying neko delivery" + }, + { + "appid": 410770, + "normalized_name": "roads of rome" + }, + { + "appid": 410820, + "normalized_name": "starward rogue" + }, + { + "appid": 410830, + "normalized_name": "arena gods" + }, + { + "appid": 410840, + "normalized_name": "rock god tycoon" + }, + { + "appid": 410850, + "normalized_name": "dragon quest heroes slime" + }, + { + "appid": 410890, + "normalized_name": "higurashi when they cry hou ch.2 watanagashi" + }, + { + "appid": 410900, + "normalized_name": "forts" + }, + { + "appid": 410910, + "normalized_name": "deathless the city's thirst" + }, + { + "appid": 410970, + "normalized_name": "master of orion 1" + }, + { + "appid": 410980, + "normalized_name": "master of orion 2" + }, + { + "appid": 410990, + "normalized_name": "master of orion 3" + }, + { + "appid": 411000, + "normalized_name": "sorcery! parts 1 and 2" + }, + { + "appid": 411060, + "normalized_name": "roads of rome 2" + }, + { + "appid": 411070, + "normalized_name": "mass vector" + }, + { + "appid": 411080, + "normalized_name": "showtime 2073" + }, + { + "appid": 411120, + "normalized_name": "galaxy admirals" + }, + { + "appid": 411130, + "normalized_name": "leviathan the cargo — ongoing series" + }, + { + "appid": 411300, + "normalized_name": "elex" + }, + { + "appid": 411310, + "normalized_name": "codename panzers phase one" + }, + { + "appid": 411320, + "normalized_name": "codename panzers phase two" + }, + { + "appid": 411330, + "normalized_name": "men of valor" + }, + { + "appid": 411370, + "normalized_name": "melty blood actress again current code" + }, + { + "appid": 411390, + "normalized_name": "getsuei gakuen kou" + }, + { + "appid": 411480, + "normalized_name": "battlecrew space pirates" + }, + { + "appid": 411520, + "normalized_name": "state of extinction" + }, + { + "appid": 411530, + "normalized_name": "roads of rome 3" + }, + { + "appid": 411550, + "normalized_name": "island tribe" + }, + { + "appid": 411560, + "normalized_name": "reveal the deep" + }, + { + "appid": 411570, + "normalized_name": "zombie exodus" + }, + { + "appid": 411590, + "normalized_name": "the rivers of alice extended version" + }, + { + "appid": 411600, + "normalized_name": "the sentient" + }, + { + "appid": 411610, + "normalized_name": "tick's tales" + }, + { + "appid": 411620, + "normalized_name": "pane in the glass" + }, + { + "appid": 411630, + "normalized_name": "wicked witches" + }, + { + "appid": 411680, + "normalized_name": "loot hound" + }, + { + "appid": 411690, + "normalized_name": "vroom galleon" + }, + { + "appid": 411740, + "normalized_name": "yet another world" + }, + { + "appid": 411750, + "normalized_name": "brick inventions" + }, + { + "appid": 411760, + "normalized_name": "swordbreaker the game" + }, + { + "appid": 411820, + "normalized_name": "the foo show featuring will smith" + }, + { + "appid": 411830, + "normalized_name": "senran kagura shinovi versus" + }, + { + "appid": 411860, + "normalized_name": "save the creatures" + }, + { + "appid": 411870, + "normalized_name": "discovering colors animals" + }, + { + "appid": 411880, + "normalized_name": "once'" + }, + { + "appid": 411960, + "normalized_name": "ty the tasmanian tiger" + }, + { + "appid": 411970, + "normalized_name": "ty the tasmanian tiger 2" + }, + { + "appid": 411980, + "normalized_name": "ty the tasmanian tiger 3" + }, + { + "appid": 412010, + "normalized_name": "crossbow warrior the legend of william tell" + }, + { + "appid": 412020, + "normalized_name": "metro exodus" + }, + { + "appid": 412050, + "normalized_name": "hordez" + }, + { + "appid": 412170, + "normalized_name": "city of chains" + }, + { + "appid": 412210, + "normalized_name": "warfront defenders" + }, + { + "appid": 412220, + "normalized_name": "ddnet" + }, + { + "appid": 412230, + "normalized_name": "infinitrap classic ohio jack and the cup of eternity" + }, + { + "appid": 412250, + "normalized_name": "empires of creation" + }, + { + "appid": 412270, + "normalized_name": "stories of bethem full moon" + }, + { + "appid": 412290, + "normalized_name": "the dreamlord" + }, + { + "appid": 412360, + "normalized_name": "sightlinevr" + }, + { + "appid": 412370, + "normalized_name": "parallels" + }, + { + "appid": 412380, + "normalized_name": "legend (1994)" + }, + { + "appid": 412410, + "normalized_name": "castle chaos" + }, + { + "appid": 412440, + "normalized_name": "jane's realty" + }, + { + "appid": 412460, + "normalized_name": "villagers" + }, + { + "appid": 412470, + "normalized_name": "metal war online retribution" + }, + { + "appid": 412480, + "normalized_name": "turtle odyssey" + }, + { + "appid": 412490, + "normalized_name": "yrminsul" + }, + { + "appid": 412520, + "normalized_name": "evil defenders" + }, + { + "appid": 412530, + "normalized_name": "atlantic quest 2 new adventure" + }, + { + "appid": 412540, + "normalized_name": "the minotaur" + }, + { + "appid": 412560, + "normalized_name": "pro basketball manager 2016 us" + }, + { + "appid": 412600, + "normalized_name": "lup" + }, + { + "appid": 412620, + "normalized_name": "cropduster supreme" + }, + { + "appid": 412640, + "normalized_name": "immerse creator" + }, + { + "appid": 412660, + "normalized_name": "klang" + }, + { + "appid": 412670, + "normalized_name": "bullet heaven 2" + }, + { + "appid": 412730, + "normalized_name": "days under custody" + }, + { + "appid": 412740, + "normalized_name": "audioshield" + }, + { + "appid": 412760, + "normalized_name": "revolve" + }, + { + "appid": 412770, + "normalized_name": "boogeyman" + }, + { + "appid": 412830, + "normalized_name": "steins;gate" + }, + { + "appid": 412880, + "normalized_name": "drift streets japan" + }, + { + "appid": 412930, + "normalized_name": "farm mania hot vacation" + }, + { + "appid": 412970, + "normalized_name": "beatbuddy on tour" + }, + { + "appid": 413030, + "normalized_name": "mytheon" + }, + { + "appid": 413040, + "normalized_name": "eekeemoo splinters of the dark shard" + }, + { + "appid": 413120, + "normalized_name": "tactics forever" + }, + { + "appid": 413150, + "normalized_name": "stardew valley" + }, + { + "appid": 413350, + "normalized_name": "daydream blue" + }, + { + "appid": 413410, + "normalized_name": "danganronpa trigger happy havoc" + }, + { + "appid": 413420, + "normalized_name": "danganronpa 2 goodbye despair" + }, + { + "appid": 413470, + "normalized_name": "where angels cry tears of the fallen collector's" + }, + { + "appid": 413480, + "normalized_name": "101 ways to die" + }, + { + "appid": 413490, + "normalized_name": "rothschild the sheep will wake" + }, + { + "appid": 413500, + "normalized_name": "rocket fist" + }, + { + "appid": 413540, + "normalized_name": "recourse" + }, + { + "appid": 413580, + "normalized_name": "reverse x reverse" + }, + { + "appid": 413620, + "normalized_name": "space needle vr" + }, + { + "appid": 413650, + "normalized_name": "the invasion of area 51" + }, + { + "appid": 413680, + "normalized_name": "statues" + }, + { + "appid": 413700, + "normalized_name": "run turn die" + }, + { + "appid": 413710, + "normalized_name": "blood and gold caribbean!" + }, + { + "appid": 413740, + "normalized_name": "mines of mars" + }, + { + "appid": 413750, + "normalized_name": "turtle vr" + }, + { + "appid": 413760, + "normalized_name": "go to bed survive the night" + }, + { + "appid": 413830, + "normalized_name": "overdosed a trip to hell" + }, + { + "appid": 413870, + "normalized_name": "sickness" + }, + { + "appid": 414060, + "normalized_name": "iso sphere" + }, + { + "appid": 414080, + "normalized_name": "life is hard" + }, + { + "appid": 414090, + "normalized_name": "the warden" + }, + { + "appid": 414120, + "normalized_name": "modbox" + }, + { + "appid": 414140, + "normalized_name": "jewel bits" + }, + { + "appid": 414160, + "normalized_name": "nubarron the adventure of an unlucky gnome" + }, + { + "appid": 414190, + "normalized_name": "junk jack" + }, + { + "appid": 414260, + "normalized_name": "ironclads 2 american civil war" + }, + { + "appid": 414330, + "normalized_name": "we are chicago" + }, + { + "appid": 414340, + "normalized_name": "hellblade senua's sacrifice" + }, + { + "appid": 414370, + "normalized_name": "raining blobs" + }, + { + "appid": 414470, + "normalized_name": "nightmare on azathoth" + }, + { + "appid": 414490, + "normalized_name": "crashnauts" + }, + { + "appid": 414500, + "normalized_name": "caribbean odyssey" + }, + { + "appid": 414510, + "normalized_name": "5089 the action rpg" + }, + { + "appid": 414550, + "normalized_name": "death toll" + }, + { + "appid": 414580, + "normalized_name": "uriel's chasm 2 את" + }, + { + "appid": 414660, + "normalized_name": "vampire legends the true story of kisilova" + }, + { + "appid": 414700, + "normalized_name": "outlast 2" + }, + { + "appid": 414720, + "normalized_name": "astrox hostile space excavation" + }, + { + "appid": 414730, + "normalized_name": "epic clicker journey" + }, + { + "appid": 414740, + "normalized_name": "raid world war ii" + }, + { + "appid": 414760, + "normalized_name": "blue collar astronaut" + }, + { + "appid": 414770, + "normalized_name": "bionite origins" + }, + { + "appid": 414810, + "normalized_name": "observatory a vr variety pack" + }, + { + "appid": 414920, + "normalized_name": "corgi warlock" + }, + { + "appid": 414950, + "normalized_name": "star nomad 2" + }, + { + "appid": 415030, + "normalized_name": "one more dungeon" + }, + { + "appid": 415080, + "normalized_name": "cyber team manager" + }, + { + "appid": 415090, + "normalized_name": "kbyte" + }, + { + "appid": 415150, + "normalized_name": "pang adventures" + }, + { + "appid": 415170, + "normalized_name": "engare" + }, + { + "appid": 415180, + "normalized_name": "fort zombie" + }, + { + "appid": 415200, + "normalized_name": "motorsport manager" + }, + { + "appid": 415240, + "normalized_name": "feesh" + }, + { + "appid": 415270, + "normalized_name": "star crusade ccg" + }, + { + "appid": 415300, + "normalized_name": "monster monpiece" + }, + { + "appid": 415330, + "normalized_name": "when in rome" + }, + { + "appid": 415350, + "normalized_name": "shooting stars!" + }, + { + "appid": 415390, + "normalized_name": "viking saga the cursed ring" + }, + { + "appid": 415400, + "normalized_name": "cross set" + }, + { + "appid": 415420, + "normalized_name": "nyan cat lost in space" + }, + { + "appid": 415480, + "normalized_name": "hyperdevotion noire goddess black heart (neptunia)" + }, + { + "appid": 415530, + "normalized_name": "fly glowfly!" + }, + { + "appid": 415590, + "normalized_name": "earthfall" + }, + { + "appid": 415600, + "normalized_name": "kart racing pro" + }, + { + "appid": 415610, + "normalized_name": "red comrades save the galaxy reloaded" + }, + { + "appid": 415620, + "normalized_name": "rite of life" + }, + { + "appid": 415670, + "normalized_name": "highrise heroes word challenge" + }, + { + "appid": 415740, + "normalized_name": "omnibus" + }, + { + "appid": 415780, + "normalized_name": "bacon rebellion" + }, + { + "appid": 415830, + "normalized_name": "gnomes garden" + }, + { + "appid": 415840, + "normalized_name": "mystic saga" + }, + { + "appid": 415850, + "normalized_name": "bad end" + }, + { + "appid": 415860, + "normalized_name": "tactical craft online" + }, + { + "appid": 415880, + "normalized_name": "disc jam" + }, + { + "appid": 415900, + "normalized_name": "bugspeed collider" + }, + { + "appid": 415910, + "normalized_name": "gigachess" + }, + { + "appid": 415920, + "normalized_name": "voidspire tactics" + }, + { + "appid": 415950, + "normalized_name": "yohjo simulator" + }, + { + "appid": 415960, + "normalized_name": "energy cycle" + }, + { + "appid": 415980, + "normalized_name": "quatro luzes" + }, + { + "appid": 415990, + "normalized_name": "lightbender" + }, + { + "appid": 416000, + "normalized_name": "orange season" + }, + { + "appid": 416030, + "normalized_name": "your quest" + }, + { + "appid": 416040, + "normalized_name": "clash" + }, + { + "appid": 416060, + "normalized_name": "westboro" + }, + { + "appid": 416080, + "normalized_name": "the odyssey winds of athena" + }, + { + "appid": 416110, + "normalized_name": "blitz breaker" + }, + { + "appid": 416120, + "normalized_name": "intersection" + }, + { + "appid": 416160, + "normalized_name": "heresy" + }, + { + "appid": 416180, + "normalized_name": "gun bombers" + }, + { + "appid": 416190, + "normalized_name": "vehicle simulator" + }, + { + "appid": 416200, + "normalized_name": "door to door" + }, + { + "appid": 416210, + "normalized_name": "block'hood" + }, + { + "appid": 416220, + "normalized_name": "the light empire" + }, + { + "appid": 416240, + "normalized_name": "space impossible" + }, + { + "appid": 416250, + "normalized_name": "tales [pc]" + }, + { + "appid": 416290, + "normalized_name": "bleeding border" + }, + { + "appid": 416310, + "normalized_name": "goblin defenders steel‘n’ wood" + }, + { + "appid": 416320, + "normalized_name": "rescue team 5" + }, + { + "appid": 416330, + "normalized_name": "revolt" + }, + { + "appid": 416340, + "normalized_name": "viking saga new world" + }, + { + "appid": 416360, + "normalized_name": "max's big bust a captain nekorai tale" + }, + { + "appid": 416370, + "normalized_name": "showing tonight mindhunters incident" + }, + { + "appid": 416380, + "normalized_name": "the hurricane of the varstray collateral hazard" + }, + { + "appid": 416390, + "normalized_name": "magnetron" + }, + { + "appid": 416430, + "normalized_name": "in the dead of night urszula's revenge" + }, + { + "appid": 416450, + "normalized_name": "emporea realms of war and magic" + }, + { + "appid": 416530, + "normalized_name": "tacopocalypse" + }, + { + "appid": 416550, + "normalized_name": "rubber ducky and the rainbow gun" + }, + { + "appid": 416590, + "normalized_name": "emily wants to play" + }, + { + "appid": 416600, + "normalized_name": "full metal furies" + }, + { + "appid": 416610, + "normalized_name": "the growth journey" + }, + { + "appid": 416630, + "normalized_name": "true lover's knot" + }, + { + "appid": 416640, + "normalized_name": "diabolical" + }, + { + "appid": 416680, + "normalized_name": "zombie night terror" + }, + { + "appid": 416690, + "normalized_name": "oh...sir! prototype" + }, + { + "appid": 416700, + "normalized_name": "5 minutes rage hatred" + }, + { + "appid": 416720, + "normalized_name": "toro" + }, + { + "appid": 416760, + "normalized_name": "pay2win the tricks exposed" + }, + { + "appid": 416770, + "normalized_name": "squarecells" + }, + { + "appid": 416790, + "normalized_name": "the metronomicon slay the dance floor" + }, + { + "appid": 416800, + "normalized_name": "cluck yegger in escape from the planet of the poultroid" + }, + { + "appid": 416830, + "normalized_name": "light fall" + }, + { + "appid": 416840, + "normalized_name": "color by" + }, + { + "appid": 416850, + "normalized_name": "astral gun" + }, + { + "appid": 416870, + "normalized_name": "kitty powers' love life" + }, + { + "appid": 417020, + "normalized_name": "realm walk of soul" + }, + { + "appid": 417060, + "normalized_name": "unsummoning the spectral horde" + }, + { + "appid": 417110, + "normalized_name": "mayjasmine episode01 what is god?" + }, + { + "appid": 417130, + "normalized_name": "era" + }, + { + "appid": 417150, + "normalized_name": "pavilion" + }, + { + "appid": 417200, + "normalized_name": "make sail" + }, + { + "appid": 417290, + "normalized_name": "ghost of a tale" + }, + { + "appid": 417310, + "normalized_name": "hiragana pixel party" + }, + { + "appid": 417350, + "normalized_name": "monkey king saga" + }, + { + "appid": 417360, + "normalized_name": "onlycans thirst date" + }, + { + "appid": 417400, + "normalized_name": "leftway" + }, + { + "appid": 417410, + "normalized_name": "northern tale" + }, + { + "appid": 417430, + "normalized_name": "moto racer 4" + }, + { + "appid": 417480, + "normalized_name": "marcus level" + }, + { + "appid": 417750, + "normalized_name": "left alone" + }, + { + "appid": 417840, + "normalized_name": "mysterious castle" + }, + { + "appid": 417860, + "normalized_name": "emily is away" + }, + { + "appid": 417880, + "normalized_name": "everybody's gone to the rapture" + }, + { + "appid": 417890, + "normalized_name": "apotheon arena" + }, + { + "appid": 417900, + "normalized_name": "upwards lonely robot" + }, + { + "appid": 417910, + "normalized_name": "street warriors online" + }, + { + "appid": 417920, + "normalized_name": "mistfal" + }, + { + "appid": 417980, + "normalized_name": "planet diver" + }, + { + "appid": 418000, + "normalized_name": "demented" + }, + { + "appid": 418030, + "normalized_name": "subsistence" + }, + { + "appid": 418040, + "normalized_name": "hocus" + }, + { + "appid": 418060, + "normalized_name": "battle riders" + }, + { + "appid": 418070, + "normalized_name": "turbo pug" + }, + { + "appid": 418120, + "normalized_name": "cally's caves 3" + }, + { + "appid": 418150, + "normalized_name": "the madness of little emma" + }, + { + "appid": 418160, + "normalized_name": "garden rescue christmas" + }, + { + "appid": 418170, + "normalized_name": "microrc simulation" + }, + { + "appid": 418180, + "normalized_name": "tempest pirate action rpg" + }, + { + "appid": 418190, + "normalized_name": "helen's mysterious castle" + }, + { + "appid": 418240, + "normalized_name": "shadow tactics blades of the shogun" + }, + { + "appid": 418250, + "normalized_name": "polaris sector" + }, + { + "appid": 418260, + "normalized_name": "gumball drift" + }, + { + "appid": 418270, + "normalized_name": "draw slasher" + }, + { + "appid": 418300, + "normalized_name": "wick" + }, + { + "appid": 418340, + "normalized_name": "rwby grimm eclipse" + }, + { + "appid": 418360, + "normalized_name": "gurgamoth" + }, + { + "appid": 418370, + "normalized_name": "resident evil 7 biohazard" + }, + { + "appid": 418430, + "normalized_name": "miolhr lime" + }, + { + "appid": 418440, + "normalized_name": "tick tock isle" + }, + { + "appid": 418460, + "normalized_name": "rising storm 2 vietnam" + }, + { + "appid": 418520, + "normalized_name": "sculptrvr" + }, + { + "appid": 418530, + "normalized_name": "spelunky 2" + }, + { + "appid": 418610, + "normalized_name": "swiftly" + }, + { + "appid": 418620, + "normalized_name": "the takeover" + }, + { + "appid": 418640, + "normalized_name": "iron commando koutetsu no senshi" + }, + { + "appid": 418650, + "normalized_name": "space pirate trainer" + }, + { + "appid": 418670, + "normalized_name": "pankapu" + }, + { + "appid": 418910, + "normalized_name": "idle civilization" + }, + { + "appid": 418940, + "normalized_name": "waba" + }, + { + "appid": 418950, + "normalized_name": "dreadout keepers of the dark" + }, + { + "appid": 418960, + "normalized_name": "catorize" + }, + { + "appid": 419020, + "normalized_name": "wishmere" + }, + { + "appid": 419080, + "normalized_name": "bridge constructor stunts" + }, + { + "appid": 419090, + "normalized_name": "vector strain" + }, + { + "appid": 419130, + "normalized_name": "strength of the sword" + }, + { + "appid": 419460, + "normalized_name": "that dragon cancer" + }, + { + "appid": 419480, + "normalized_name": "starpoint gemini warlords" + }, + { + "appid": 419520, + "normalized_name": "lifeless" + }, + { + "appid": 419700, + "normalized_name": "at sundown shots in the dark" + }, + { + "appid": 419710, + "normalized_name": "rogue singularity" + }, + { + "appid": 419810, + "normalized_name": "house of hell (standalone)" + }, + { + "appid": 419990, + "normalized_name": "ganbare! super strikers" + }, + { + "appid": 420000, + "normalized_name": "home design 3d" + }, + { + "appid": 420020, + "normalized_name": "eye of the owl bosch vr" + }, + { + "appid": 420040, + "normalized_name": "neuroslicers" + }, + { + "appid": 420060, + "normalized_name": "candle" + }, + { + "appid": 420070, + "normalized_name": "kill the plumber" + }, + { + "appid": 420100, + "normalized_name": "clannad side stories" + }, + { + "appid": 420110, + "normalized_name": "nekopara vol. 2" + }, + { + "appid": 420140, + "normalized_name": "stack gun heroes" + }, + { + "appid": 420160, + "normalized_name": "alphabeats master" + }, + { + "appid": 420170, + "normalized_name": "shrug island the meeting" + }, + { + "appid": 420180, + "normalized_name": "chronicle of innsmouth" + }, + { + "appid": 420210, + "normalized_name": "krum edge of darkness" + }, + { + "appid": 420270, + "normalized_name": "into the void" + }, + { + "appid": 420290, + "normalized_name": "blackwake" + }, + { + "appid": 420300, + "normalized_name": "the admin" + }, + { + "appid": 420330, + "normalized_name": "heist" + }, + { + "appid": 420360, + "normalized_name": "spectrum" + }, + { + "appid": 420370, + "normalized_name": "gravity island" + }, + { + "appid": 420440, + "normalized_name": "atlantic fleet" + }, + { + "appid": 420500, + "normalized_name": "rynn's adventure trouble in the enchanted forest" + }, + { + "appid": 420520, + "normalized_name": "lost technology" + }, + { + "appid": 420530, + "normalized_name": "oneshot" + }, + { + "appid": 420550, + "normalized_name": "super arcade football" + }, + { + "appid": 420560, + "normalized_name": "firefighting simulator the squad" + }, + { + "appid": 420570, + "normalized_name": "cubixx hd" + }, + { + "appid": 420660, + "normalized_name": "burnin' rubber 5 hd" + }, + { + "appid": 420670, + "normalized_name": "elite vs. freedom" + }, + { + "appid": 420740, + "normalized_name": "the deed" + }, + { + "appid": 420760, + "normalized_name": "mechaleague" + }, + { + "appid": 420770, + "normalized_name": "the legend of dark witch" + }, + { + "appid": 420790, + "normalized_name": "starbreak" + }, + { + "appid": 420840, + "normalized_name": "blarp!" + }, + { + "appid": 420850, + "normalized_name": "cosmic leap" + }, + { + "appid": 420880, + "normalized_name": "i must kill fresh meat" + }, + { + "appid": 420900, + "normalized_name": "mech anarchy" + }, + { + "appid": 420920, + "normalized_name": "lost labyrinth extended version" + }, + { + "appid": 420930, + "normalized_name": "chkn" + }, + { + "appid": 420950, + "normalized_name": "time tenshi (2015)" + }, + { + "appid": 420970, + "normalized_name": "roborumble" + }, + { + "appid": 420980, + "normalized_name": "army gals" + }, + { + "appid": 421040, + "normalized_name": "plantera" + }, + { + "appid": 421050, + "normalized_name": "deponia doomsday" + }, + { + "appid": 421060, + "normalized_name": "age of steel recharge" + }, + { + "appid": 421120, + "normalized_name": "samorost 3" + }, + { + "appid": 421140, + "normalized_name": "blades of the righteous" + }, + { + "appid": 421170, + "normalized_name": "indivisible" + }, + { + "appid": 421190, + "normalized_name": "larcenauts" + }, + { + "appid": 421260, + "normalized_name": "militia" + }, + { + "appid": 421610, + "normalized_name": "xblaze code embryo" + }, + { + "appid": 421620, + "normalized_name": "dissonance an interactive novelette" + }, + { + "appid": 421630, + "normalized_name": "a study in steampunk choice by gaslight" + }, + { + "appid": 421660, + "normalized_name": "harmonia" + }, + { + "appid": 421670, + "normalized_name": "cupid a free to play visual novel" + }, + { + "appid": 421700, + "normalized_name": "sakura santa" + }, + { + "appid": 421710, + "normalized_name": "space live advent of the net idols" + }, + { + "appid": 421740, + "normalized_name": "goetia" + }, + { + "appid": 421790, + "normalized_name": "the bradwell conspiracy" + }, + { + "appid": 421810, + "normalized_name": "oh! rpg!" + }, + { + "appid": 421870, + "normalized_name": "quatros origins" + }, + { + "appid": 421880, + "normalized_name": "plastiland" + }, + { + "appid": 421890, + "normalized_name": "avaris 2 the return of the empress" + }, + { + "appid": 422010, + "normalized_name": "eczema angel orifice" + }, + { + "appid": 422020, + "normalized_name": "dark days" + }, + { + "appid": 422030, + "normalized_name": "reven xbridge" + }, + { + "appid": 422100, + "normalized_name": "heaven island life" + }, + { + "appid": 422110, + "normalized_name": "wand wars" + }, + { + "appid": 422130, + "normalized_name": "comic book hero the greatest cape" + }, + { + "appid": 422140, + "normalized_name": "wrestling spirit 3" + }, + { + "appid": 422210, + "normalized_name": "rise of keepers" + }, + { + "appid": 422250, + "normalized_name": "shiplord" + }, + { + "appid": 422300, + "normalized_name": "element" + }, + { + "appid": 422500, + "normalized_name": "emmerholt prologue" + }, + { + "appid": 422510, + "normalized_name": "demon's tilt" + }, + { + "appid": 422610, + "normalized_name": "1775 rebellion" + }, + { + "appid": 422630, + "normalized_name": "metaverse construction kit" + }, + { + "appid": 422640, + "normalized_name": "vr karts steamvr" + }, + { + "appid": 422650, + "normalized_name": "megamagic wizards of the neon age" + }, + { + "appid": 422760, + "normalized_name": "ocean rift" + }, + { + "appid": 422810, + "normalized_name": "river city ransom underground" + }, + { + "appid": 422860, + "normalized_name": "holodance" + }, + { + "appid": 422890, + "normalized_name": "22 racing series | rts racing" + }, + { + "appid": 422900, + "normalized_name": "particle fleet emergence" + }, + { + "appid": 422910, + "normalized_name": "creeper world anniversary" + }, + { + "appid": 422920, + "normalized_name": "creeper world 2 anniversary" + }, + { + "appid": 422970, + "normalized_name": "devil daggers" + }, + { + "appid": 422980, + "normalized_name": "super robot jump jump" + }, + { + "appid": 423120, + "normalized_name": "community college hero trial by fire" + }, + { + "appid": 423180, + "normalized_name": "a.i. space corps" + }, + { + "appid": 423220, + "normalized_name": "t kara puzzles" + }, + { + "appid": 423230, + "normalized_name": "furi" + }, + { + "appid": 423270, + "normalized_name": "zheros" + }, + { + "appid": 423320, + "normalized_name": "pendragon rising" + }, + { + "appid": 423440, + "normalized_name": "choice of kung fu" + }, + { + "appid": 423490, + "normalized_name": "air missions hind" + }, + { + "appid": 423550, + "normalized_name": "day d tower rush" + }, + { + "appid": 423580, + "normalized_name": "project highrise" + }, + { + "appid": 423590, + "normalized_name": "the little acre" + }, + { + "appid": 423600, + "normalized_name": "adelantado trilogy. book one" + }, + { + "appid": 423610, + "normalized_name": "where's my mommy?" + }, + { + "appid": 423620, + "normalized_name": "hero defense" + }, + { + "appid": 423640, + "normalized_name": "maid cafe" + }, + { + "appid": 423650, + "normalized_name": "summer fling" + }, + { + "appid": 423700, + "normalized_name": "apocalypse hotel the post apocalyptic hotel simulator!" + }, + { + "appid": 423710, + "normalized_name": "invasion brain craving" + }, + { + "appid": 423720, + "normalized_name": "color chaos" + }, + { + "appid": 423730, + "normalized_name": "hyper gods" + }, + { + "appid": 423740, + "normalized_name": "save your mother" + }, + { + "appid": 423750, + "normalized_name": "gardenarium" + }, + { + "appid": 423760, + "normalized_name": "hit tank pro" + }, + { + "appid": 423770, + "normalized_name": "our love will grow" + }, + { + "appid": 423780, + "normalized_name": "zero gravity" + }, + { + "appid": 423800, + "normalized_name": "automata empire" + }, + { + "appid": 423810, + "normalized_name": "marooners" + }, + { + "appid": 423870, + "normalized_name": "astervoid 2000" + }, + { + "appid": 423880, + "normalized_name": "carpe diem" + }, + { + "appid": 423890, + "normalized_name": "gods and idols" + }, + { + "appid": 423900, + "normalized_name": "dinocide" + }, + { + "appid": 423910, + "normalized_name": "mangavania" + }, + { + "appid": 423950, + "normalized_name": "deadlight director's cut" + }, + { + "appid": 424000, + "normalized_name": "project pulsation" + }, + { + "appid": 424010, + "normalized_name": "crudelis" + }, + { + "appid": 424030, + "normalized_name": "war of rights" + }, + { + "appid": 424040, + "normalized_name": "fragmental" + }, + { + "appid": 424060, + "normalized_name": "the glow" + }, + { + "appid": 424100, + "normalized_name": "celestrion" + }, + { + "appid": 424170, + "normalized_name": "the fall of gods" + }, + { + "appid": 424200, + "normalized_name": "little mouse's encyclopedia" + }, + { + "appid": 424210, + "normalized_name": "sodacity" + }, + { + "appid": 424250, + "normalized_name": "balrum" + }, + { + "appid": 424260, + "normalized_name": "feelings adrift" + }, + { + "appid": 424280, + "normalized_name": "iron snout" + }, + { + "appid": 424320, + "normalized_name": "anomaly 1729" + }, + { + "appid": 424370, + "normalized_name": "wolcen lords of mayhem" + }, + { + "appid": 424590, + "normalized_name": "farm expert 2017" + }, + { + "appid": 424610, + "normalized_name": "peasant knight" + }, + { + "appid": 424640, + "normalized_name": "karaski what goes up..." + }, + { + "appid": 424750, + "normalized_name": "the box" + }, + { + "appid": 424760, + "normalized_name": "bladestar" + }, + { + "appid": 424780, + "normalized_name": "imperia online" + }, + { + "appid": 424830, + "normalized_name": "bell ringer" + }, + { + "appid": 424840, + "normalized_name": "little nightmares" + }, + { + "appid": 424850, + "normalized_name": "galactineers" + }, + { + "appid": 424870, + "normalized_name": "threads of destiny" + }, + { + "appid": 425010, + "normalized_name": "scudbuster" + }, + { + "appid": 425040, + "normalized_name": "comixplay #1 the endless incident" + }, + { + "appid": 425070, + "normalized_name": "asteroids minesweeper" + }, + { + "appid": 425150, + "normalized_name": "assassins vs pirates" + }, + { + "appid": 425160, + "normalized_name": "recursion deluxe" + }, + { + "appid": 425210, + "normalized_name": "shadwen" + }, + { + "appid": 425220, + "normalized_name": "one piece burning blood" + }, + { + "appid": 425230, + "normalized_name": "sword 'n' board" + }, + { + "appid": 425240, + "normalized_name": "pressure overdrive" + }, + { + "appid": 425260, + "normalized_name": "soul harvest" + }, + { + "appid": 425300, + "normalized_name": "super button soccer" + }, + { + "appid": 425340, + "normalized_name": "space moth dx" + }, + { + "appid": 425400, + "normalized_name": "block rocking beats" + }, + { + "appid": 425410, + "normalized_name": "road to ballhalla" + }, + { + "appid": 425450, + "normalized_name": "goatpunks" + }, + { + "appid": 425460, + "normalized_name": "tokyo twilight ghost hunters daybreak special gigs" + }, + { + "appid": 425580, + "normalized_name": "the room two" + }, + { + "appid": 425600, + "normalized_name": "the order of the thorne the king's challenge" + }, + { + "appid": 425650, + "normalized_name": "halloween forever" + }, + { + "appid": 425670, + "normalized_name": "seraph" + }, + { + "appid": 425760, + "normalized_name": "ego protocol" + }, + { + "appid": 425770, + "normalized_name": "answer the question" + }, + { + "appid": 425820, + "normalized_name": "dragonpath" + }, + { + "appid": 425860, + "normalized_name": "vector assault" + }, + { + "appid": 425870, + "normalized_name": "gyrodisc super league" + }, + { + "appid": 425900, + "normalized_name": "adventure lamp" + }, + { + "appid": 425990, + "normalized_name": "space junk patrol" + }, + { + "appid": 426000, + "normalized_name": "huniecam studio" + }, + { + "appid": 426010, + "normalized_name": "womb room" + }, + { + "appid": 426040, + "normalized_name": "goodnight butcher" + }, + { + "appid": 426050, + "normalized_name": "legie" + }, + { + "appid": 426170, + "normalized_name": "defragmented" + }, + { + "appid": 426190, + "normalized_name": "miner meltdown" + }, + { + "appid": 426210, + "normalized_name": "tyran" + }, + { + "appid": 426290, + "normalized_name": "the away team lost exodus" + }, + { + "appid": 426310, + "normalized_name": "perception" + }, + { + "appid": 426330, + "normalized_name": "metahuman inc." + }, + { + "appid": 426560, + "normalized_name": "full tilt poker" + }, + { + "appid": 426590, + "normalized_name": "blood of magic" + }, + { + "appid": 426630, + "normalized_name": "bubsy two fur" + }, + { + "appid": 426690, + "normalized_name": "narcissu 10th anniversary anthology project" + }, + { + "appid": 426790, + "normalized_name": "grow up" + }, + { + "appid": 426870, + "normalized_name": "metal shock game" + }, + { + "appid": 426930, + "normalized_name": "moonshot" + }, + { + "appid": 427030, + "normalized_name": "xuan yuan sword the gate of firmament" + }, + { + "appid": 427050, + "normalized_name": "siege the card game" + }, + { + "appid": 427100, + "normalized_name": "fernbus simulator" + }, + { + "appid": 427190, + "normalized_name": "dead rising" + }, + { + "appid": 427240, + "normalized_name": "cosmic trip" + }, + { + "appid": 427250, + "normalized_name": "8 bit armies" + }, + { + "appid": 427290, + "normalized_name": "vampyr" + }, + { + "appid": 427410, + "normalized_name": "abiotic factor" + }, + { + "appid": 427470, + "normalized_name": "democracy 3 africa" + }, + { + "appid": 427490, + "normalized_name": "shadowhand rpg card game" + }, + { + "appid": 427510, + "normalized_name": "way of the samurai 3" + }, + { + "appid": 427520, + "normalized_name": "factorio" + }, + { + "appid": 427550, + "normalized_name": "tibetan quest beyond the world's end" + }, + { + "appid": 427570, + "normalized_name": "dawn of andromeda" + }, + { + "appid": 427640, + "normalized_name": "the ables freepoint high" + }, + { + "appid": 427660, + "normalized_name": "nightcry" + }, + { + "appid": 427680, + "normalized_name": "zwei the arges adventure" + }, + { + "appid": 427700, + "normalized_name": "zwei the ilvard insurrection" + }, + { + "appid": 427730, + "normalized_name": "who's your daddy?!" + }, + { + "appid": 427760, + "normalized_name": "a chair in a room greenwater" + }, + { + "appid": 427770, + "normalized_name": "pills4skills" + }, + { + "appid": 427780, + "normalized_name": "perfect angle the puzzle game based on optical illusions" + }, + { + "appid": 427810, + "normalized_name": "calendula" + }, + { + "appid": 427820, + "normalized_name": "hitman go" + }, + { + "appid": 427830, + "normalized_name": "hybrid beasts" + }, + { + "appid": 427860, + "normalized_name": "the next world" + }, + { + "appid": 427880, + "normalized_name": "p.a.m.e.l.a." + }, + { + "appid": 427890, + "normalized_name": "felt tip circus" + }, + { + "appid": 427910, + "normalized_name": "zavix tower" + }, + { + "appid": 427930, + "normalized_name": "army of tentacles (not) a cthulhu dating sim" + }, + { + "appid": 427940, + "normalized_name": "industries of titan" + }, + { + "appid": 427950, + "normalized_name": "the withering" + }, + { + "appid": 427970, + "normalized_name": "heathen engineering's terran" + }, + { + "appid": 427980, + "normalized_name": "aozora meikyuu" + }, + { + "appid": 428020, + "normalized_name": "the orpheus ruse" + }, + { + "appid": 428040, + "normalized_name": "sixth grade detective" + }, + { + "appid": 428060, + "normalized_name": "millia the ending" + }, + { + "appid": 428080, + "normalized_name": "racket nx" + }, + { + "appid": 428100, + "normalized_name": "beyond reality" + }, + { + "appid": 428110, + "normalized_name": "save halloween city of witches" + }, + { + "appid": 428130, + "normalized_name": "walk the light" + }, + { + "appid": 428170, + "normalized_name": "little reaper" + }, + { + "appid": 428180, + "normalized_name": "islet online" + }, + { + "appid": 428190, + "normalized_name": "madout open city" + }, + { + "appid": 428200, + "normalized_name": "attack heroes" + }, + { + "appid": 428210, + "normalized_name": "horror in the asylum" + }, + { + "appid": 428220, + "normalized_name": "turnon" + }, + { + "appid": 428230, + "normalized_name": "swift" + }, + { + "appid": 428240, + "normalized_name": "hauntsters" + }, + { + "appid": 428250, + "normalized_name": "mystery castle the mirror's secret" + }, + { + "appid": 428260, + "normalized_name": "the book of desires" + }, + { + "appid": 428270, + "normalized_name": "twilight city love as a cure" + }, + { + "appid": 428280, + "normalized_name": "mystery of unicorn castle the beastmaster" + }, + { + "appid": 428350, + "normalized_name": "fear equation" + }, + { + "appid": 428370, + "normalized_name": "windlands" + }, + { + "appid": 428410, + "normalized_name": "prio" + }, + { + "appid": 428430, + "normalized_name": "endorlight" + }, + { + "appid": 428460, + "normalized_name": "kings of israel" + }, + { + "appid": 428490, + "normalized_name": "germination" + }, + { + "appid": 428510, + "normalized_name": "solitaire christmas. match 2 cards" + }, + { + "appid": 428530, + "normalized_name": "machine gun train run" + }, + { + "appid": 428540, + "normalized_name": "fragments of him" + }, + { + "appid": 428550, + "normalized_name": "momodora reverie under the moonlight" + }, + { + "appid": 428590, + "normalized_name": "unearthing colossal" + }, + { + "appid": 428610, + "normalized_name": "longsword tabletop tactics" + }, + { + "appid": 428630, + "normalized_name": "white mirror" + }, + { + "appid": 428660, + "normalized_name": "deliver us the moon" + }, + { + "appid": 428690, + "normalized_name": "youtubers life" + }, + { + "appid": 428740, + "normalized_name": "nordenfelt" + }, + { + "appid": 428750, + "normalized_name": "neon chrome" + }, + { + "appid": 428830, + "normalized_name": "save the dodos" + }, + { + "appid": 428860, + "normalized_name": "red haze" + }, + { + "appid": 428870, + "normalized_name": "take the dream ix" + }, + { + "appid": 428880, + "normalized_name": "the quest" + }, + { + "appid": 428900, + "normalized_name": "linea the game" + }, + { + "appid": 428910, + "normalized_name": "red fox and the four seasons" + }, + { + "appid": 428920, + "normalized_name": "winkings" + }, + { + "appid": 428930, + "normalized_name": "into the belly of the beast" + }, + { + "appid": 428940, + "normalized_name": "contasion 2" + }, + { + "appid": 428950, + "normalized_name": "kivi toilet and shotgun" + }, + { + "appid": 428980, + "normalized_name": "ethereal legends" + }, + { + "appid": 429040, + "normalized_name": "furfly" + }, + { + "appid": 429050, + "normalized_name": "feed and grow fish" + }, + { + "appid": 429060, + "normalized_name": "zombie wars invasion" + }, + { + "appid": 429120, + "normalized_name": "zamarian" + }, + { + "appid": 429160, + "normalized_name": "cyborg rage" + }, + { + "appid": 429200, + "normalized_name": "super helmets on fire dx ultra plus alpha" + }, + { + "appid": 429220, + "normalized_name": "fullblast" + }, + { + "appid": 429250, + "normalized_name": "beyond dimensions" + }, + { + "appid": 429260, + "normalized_name": "super intergalactic gang" + }, + { + "appid": 429270, + "normalized_name": "didgery" + }, + { + "appid": 429280, + "normalized_name": "gems of the aztecs" + }, + { + "appid": 429300, + "normalized_name": "sepia tears" + }, + { + "appid": 429330, + "normalized_name": "stikbold! a dodgeball adventure" + }, + { + "appid": 429350, + "normalized_name": "satellite rush" + }, + { + "appid": 429360, + "normalized_name": "lupinball" + }, + { + "appid": 429380, + "normalized_name": "space mechanic simulator" + }, + { + "appid": 429390, + "normalized_name": "xenoshyft" + }, + { + "appid": 429430, + "normalized_name": "tyrfing cycle |vanilla|" + }, + { + "appid": 429470, + "normalized_name": "space pilgrim episode i alpha centauri" + }, + { + "appid": 429480, + "normalized_name": "vision runner" + }, + { + "appid": 429490, + "normalized_name": "resilience wave survival" + }, + { + "appid": 429520, + "normalized_name": "falcon gold" + }, + { + "appid": 429530, + "normalized_name": "falcon 4.0" + }, + { + "appid": 429540, + "normalized_name": "prime world defenders 2" + }, + { + "appid": 429570, + "normalized_name": "the walking dead michonne a telltale miniseries" + }, + { + "appid": 429580, + "normalized_name": "a wild catgirl appears!" + }, + { + "appid": 429600, + "normalized_name": "fairy tale mysteries the puppet thief" + }, + { + "appid": 429610, + "normalized_name": "the emerald maiden symphony of dreams" + }, + { + "appid": 429620, + "normalized_name": "dungeon rushers" + }, + { + "appid": 429660, + "normalized_name": "tales of berseria" + }, + { + "appid": 429680, + "normalized_name": "spellweaver" + }, + { + "appid": 429690, + "normalized_name": "astro duel" + }, + { + "appid": 429700, + "normalized_name": "squirbs" + }, + { + "appid": 429720, + "normalized_name": "imscared" + }, + { + "appid": 429780, + "normalized_name": "bunny hop league" + }, + { + "appid": 429790, + "normalized_name": "adventurequest 3d" + }, + { + "appid": 429830, + "normalized_name": "unseen diplomacy" + }, + { + "appid": 429940, + "normalized_name": "the sad story of emmeline burns" + }, + { + "appid": 429950, + "normalized_name": "abo mando" + }, + { + "appid": 430020, + "normalized_name": "dance of death" + }, + { + "appid": 430070, + "normalized_name": "never again" + }, + { + "appid": 430080, + "normalized_name": "elysium blood games" + }, + { + "appid": 430100, + "normalized_name": "darkcase the basement" + }, + { + "appid": 430170, + "normalized_name": "babel choice" + }, + { + "appid": 430190, + "normalized_name": "wondershot" + }, + { + "appid": 430210, + "normalized_name": "megaton rainfall" + }, + { + "appid": 430230, + "normalized_name": "grass max" + }, + { + "appid": 430240, + "normalized_name": "duplexer" + }, + { + "appid": 430280, + "normalized_name": "nature defenders" + }, + { + "appid": 430290, + "normalized_name": "shmups skill test" + }, + { + "appid": 430300, + "normalized_name": "minus zero" + }, + { + "appid": 430410, + "normalized_name": "memoranda" + }, + { + "appid": 430960, + "normalized_name": "lucy the eternity she wished for" + }, + { + "appid": 431120, + "normalized_name": "tethered" + }, + { + "appid": 431170, + "normalized_name": "sorcerer's maze" + }, + { + "appid": 431180, + "normalized_name": "wolfquest classic" + }, + { + "appid": 431200, + "normalized_name": "disastr_blastr" + }, + { + "appid": 431230, + "normalized_name": "tiny guardians" + }, + { + "appid": 431240, + "normalized_name": "golf with your friends" + }, + { + "appid": 431250, + "normalized_name": "mushroom wars" + }, + { + "appid": 431260, + "normalized_name": "cursed" + }, + { + "appid": 431280, + "normalized_name": "tiny & tall gleipnir" + }, + { + "appid": 431290, + "normalized_name": "level 22 gary’s misadventures 2016" + }, + { + "appid": 431300, + "normalized_name": "classic fun collection 5 in 1" + }, + { + "appid": 431330, + "normalized_name": "dungeons are random" + }, + { + "appid": 431370, + "normalized_name": "diorama no.3 the marchland" + }, + { + "appid": 431390, + "normalized_name": "diorama no.1 blocked in" + }, + { + "appid": 431410, + "normalized_name": "mazement" + }, + { + "appid": 431450, + "normalized_name": "alchemist's awakening" + }, + { + "appid": 431460, + "normalized_name": "midnight" + }, + { + "appid": 431470, + "normalized_name": "inside the code" + }, + { + "appid": 431500, + "normalized_name": "clash of the monsters" + }, + { + "appid": 431510, + "normalized_name": "mystic destinies serendipity of aeons" + }, + { + "appid": 431520, + "normalized_name": "age of fear total" + }, + { + "appid": 431540, + "normalized_name": "frosty kiss" + }, + { + "appid": 431590, + "normalized_name": "earn to die 2" + }, + { + "appid": 431600, + "normalized_name": "automobilista" + }, + { + "appid": 431610, + "normalized_name": "hubert's island adventure mouse o' war" + }, + { + "appid": 431630, + "normalized_name": "action legion" + }, + { + "appid": 431640, + "normalized_name": "doodle kingdom" + }, + { + "appid": 431650, + "normalized_name": "phoning home" + }, + { + "appid": 431680, + "normalized_name": "nuts! the battle of the bulge" + }, + { + "appid": 431700, + "normalized_name": "age of fear 3 the legend" + }, + { + "appid": 431710, + "normalized_name": "space pilgrim episode ii epsilon indi" + }, + { + "appid": 431740, + "normalized_name": "chowderchu" + }, + { + "appid": 431750, + "normalized_name": "iron sea defenders" + }, + { + "appid": 431770, + "normalized_name": "rivalry" + }, + { + "appid": 431810, + "normalized_name": "rencounter" + }, + { + "appid": 431830, + "normalized_name": "drift into eternity" + }, + { + "appid": 431840, + "normalized_name": "3drpg" + }, + { + "appid": 431850, + "normalized_name": "projector face" + }, + { + "appid": 431910, + "normalized_name": "psychocat the answer" + }, + { + "appid": 431930, + "normalized_name": "kabounce" + }, + { + "appid": 431940, + "normalized_name": "wildfire" + }, + { + "appid": 431950, + "normalized_name": "age of fear 4 the iron killer" + }, + { + "appid": 432010, + "normalized_name": "world's dawn" + }, + { + "appid": 432100, + "normalized_name": "negligee" + }, + { + "appid": 432110, + "normalized_name": "echo tokyo phoenix" + }, + { + "appid": 432130, + "normalized_name": "break chance memento" + }, + { + "appid": 432170, + "normalized_name": "silver knight" + }, + { + "appid": 432190, + "normalized_name": "chef solitaire usa" + }, + { + "appid": 432210, + "normalized_name": "the revenant prince" + }, + { + "appid": 432230, + "normalized_name": "axe bow & staff" + }, + { + "appid": 432240, + "normalized_name": "underdread" + }, + { + "appid": 432250, + "normalized_name": "soviet city" + }, + { + "appid": 432270, + "normalized_name": "no seat?" + }, + { + "appid": 432310, + "normalized_name": "virtual pool 4 multiplayer" + }, + { + "appid": 432350, + "normalized_name": "epic battle fantasy 5" + }, + { + "appid": 432370, + "normalized_name": "sethian" + }, + { + "appid": 432380, + "normalized_name": "hydra slayer" + }, + { + "appid": 432390, + "normalized_name": "weekend drive" + }, + { + "appid": 432410, + "normalized_name": "the sacred stone" + }, + { + "appid": 432420, + "normalized_name": "ludoria" + }, + { + "appid": 432470, + "normalized_name": "magdalena" + }, + { + "appid": 432480, + "normalized_name": "grenade madness" + }, + { + "appid": 432490, + "normalized_name": "atom grrrl!!" + }, + { + "appid": 432500, + "normalized_name": "evertown" + }, + { + "appid": 432540, + "normalized_name": "devil sealing stone" + }, + { + "appid": 432620, + "normalized_name": "mimic arena" + }, + { + "appid": 432640, + "normalized_name": "buriedtown" + }, + { + "appid": 432720, + "normalized_name": "welkin road" + }, + { + "appid": 432770, + "normalized_name": "small town terrors livingston" + }, + { + "appid": 432780, + "normalized_name": "dream catcher chronicles manitou" + }, + { + "appid": 432850, + "normalized_name": "sisters" + }, + { + "appid": 432870, + "normalized_name": "special tactics" + }, + { + "appid": 432890, + "normalized_name": "quote" + }, + { + "appid": 432940, + "normalized_name": "breakneck" + }, + { + "appid": 432950, + "normalized_name": "orange moon" + }, + { + "appid": 432980, + "normalized_name": "inversus deluxe" + }, + { + "appid": 432990, + "normalized_name": "green game timeswapper" + }, + { + "appid": 433000, + "normalized_name": "lost lands the golden curse collector's" + }, + { + "appid": 433100, + "normalized_name": "the town of light" + }, + { + "appid": 433110, + "normalized_name": "zipple world" + }, + { + "appid": 433120, + "normalized_name": "crash landing" + }, + { + "appid": 433130, + "normalized_name": "warbirds dogfights" + }, + { + "appid": 433170, + "normalized_name": "die young" + }, + { + "appid": 433190, + "normalized_name": "cdf starfighter vr" + }, + { + "appid": 433210, + "normalized_name": "rhino's rage" + }, + { + "appid": 433220, + "normalized_name": "crimsonwood" + }, + { + "appid": 433280, + "normalized_name": "warlords battlecry iii" + }, + { + "appid": 433290, + "normalized_name": "nemesis of the roman empire" + }, + { + "appid": 433340, + "normalized_name": "slime rancher" + }, + { + "appid": 433350, + "normalized_name": "blackshot mercenary warfare fps" + }, + { + "appid": 433360, + "normalized_name": "drawn dark flight" + }, + { + "appid": 433370, + "normalized_name": "freeborn" + }, + { + "appid": 433380, + "normalized_name": "back in 1995" + }, + { + "appid": 433400, + "normalized_name": "kim" + }, + { + "appid": 433450, + "normalized_name": "inferno climber" + }, + { + "appid": 433480, + "normalized_name": "rayon riddles rise of the goblin king" + }, + { + "appid": 433490, + "normalized_name": "super flippin' phones" + }, + { + "appid": 433530, + "normalized_name": "heliborne collection" + }, + { + "appid": 433550, + "normalized_name": "darq" + }, + { + "appid": 433570, + "normalized_name": "side quest" + }, + { + "appid": 433580, + "normalized_name": "timelapse" + }, + { + "appid": 433590, + "normalized_name": "the song of seven overture" + }, + { + "appid": 433600, + "normalized_name": "a legend of luca" + }, + { + "appid": 433630, + "normalized_name": "vramp" + }, + { + "appid": 433650, + "normalized_name": "book of merlin" + }, + { + "appid": 433660, + "normalized_name": "blockpocalypse" + }, + { + "appid": 433670, + "normalized_name": "professional farmer 2017" + }, + { + "appid": 433700, + "normalized_name": "carpe lucem seize the light vr" + }, + { + "appid": 433750, + "normalized_name": "the grandfather" + }, + { + "appid": 433790, + "normalized_name": "wooden floor 2 resurrection" + }, + { + "appid": 433830, + "normalized_name": "rescue from goblin deep" + }, + { + "appid": 433840, + "normalized_name": "trulon the shadow engine" + }, + { + "appid": 433850, + "normalized_name": "z1 battle royale" + }, + { + "appid": 433890, + "normalized_name": "mechoecho" + }, + { + "appid": 433900, + "normalized_name": "helium" + }, + { + "appid": 433910, + "normalized_name": "neon drive" + }, + { + "appid": 433920, + "normalized_name": "aveyond 4 shadow of the mist" + }, + { + "appid": 433950, + "normalized_name": "bit blaster xl" + }, + { + "appid": 434000, + "normalized_name": "paws a shelter 2 game" + }, + { + "appid": 434020, + "normalized_name": "last hope tower defense" + }, + { + "appid": 434030, + "normalized_name": "aerofly fs 2 flight simulator" + }, + { + "appid": 434050, + "normalized_name": "duke nukem 3d 20th anniversary world tour" + }, + { + "appid": 434070, + "normalized_name": "plight of the zombie" + }, + { + "appid": 434090, + "normalized_name": "bridge! 2" + }, + { + "appid": 434130, + "normalized_name": "witch and hero(魔女と勇者)" + }, + { + "appid": 434140, + "normalized_name": "new outbreak" + }, + { + "appid": 434150, + "normalized_name": "dark night" + }, + { + "appid": 434160, + "normalized_name": "a hole new world" + }, + { + "appid": 434170, + "normalized_name": "the jackbox party pack 3" + }, + { + "appid": 434190, + "normalized_name": "follia dear father" + }, + { + "appid": 434210, + "normalized_name": "it's spring again" + }, + { + "appid": 434220, + "normalized_name": "bear haven nights" + }, + { + "appid": 434230, + "normalized_name": "fairies vs. darklings arcane" + }, + { + "appid": 434240, + "normalized_name": "alien blitz" + }, + { + "appid": 434250, + "normalized_name": "masked shooters 2" + }, + { + "appid": 434260, + "normalized_name": "my name is mayo" + }, + { + "appid": 434270, + "normalized_name": "parasite" + }, + { + "appid": 434280, + "normalized_name": "the player rpg" + }, + { + "appid": 434290, + "normalized_name": "typefighters (steam edition)" + }, + { + "appid": 434300, + "normalized_name": "wormhole city" + }, + { + "appid": 434310, + "normalized_name": "imprint x" + }, + { + "appid": 434340, + "normalized_name": "spheria" + }, + { + "appid": 434360, + "normalized_name": "kitten rampage" + }, + { + "appid": 434370, + "normalized_name": "buried an interactive story" + }, + { + "appid": 434390, + "normalized_name": "lost bros" + }, + { + "appid": 434420, + "normalized_name": "the chosen rpg" + }, + { + "appid": 434430, + "normalized_name": "abbot's book demo" + }, + { + "appid": 434460, + "normalized_name": "rock of ages 2 bigger & boulder" + }, + { + "appid": 434470, + "normalized_name": "puzzle party" + }, + { + "appid": 434480, + "normalized_name": "mathoria it all adds up" + }, + { + "appid": 434490, + "normalized_name": "otem's defiance" + }, + { + "appid": 434500, + "normalized_name": "battle pixels" + }, + { + "appid": 434510, + "normalized_name": "formicide" + }, + { + "appid": 434520, + "normalized_name": "simutrans" + }, + { + "appid": 434530, + "normalized_name": "flobe" + }, + { + "appid": 434540, + "normalized_name": "secret of the pendulum" + }, + { + "appid": 434570, + "normalized_name": "blood and bacon" + }, + { + "appid": 434580, + "normalized_name": "attack of the mutant fishcrows" + }, + { + "appid": 434600, + "normalized_name": "blue bird" + }, + { + "appid": 434610, + "normalized_name": "forbidden planet" + }, + { + "appid": 434620, + "normalized_name": "pythagoria" + }, + { + "appid": 434650, + "normalized_name": "lost castle / 失落城堡" + }, + { + "appid": 434660, + "normalized_name": "octahedron transfixed" + }, + { + "appid": 434680, + "normalized_name": "lamia's game room" + }, + { + "appid": 434700, + "normalized_name": "forgotten ball" + }, + { + "appid": 434730, + "normalized_name": "half dead" + }, + { + "appid": 434750, + "normalized_name": "z exemplar" + }, + { + "appid": 434790, + "normalized_name": "planet 1138" + }, + { + "appid": 434800, + "normalized_name": "the great escape" + }, + { + "appid": 434820, + "normalized_name": "brushwood buddies" + }, + { + "appid": 434830, + "normalized_name": "dragonstone" + }, + { + "appid": 434860, + "normalized_name": "wanderjahr" + }, + { + "appid": 434870, + "normalized_name": "megalo polis" + }, + { + "appid": 434880, + "normalized_name": "hieroglyphika" + }, + { + "appid": 434890, + "normalized_name": "eight mini racers" + }, + { + "appid": 434920, + "normalized_name": "last heroes 2" + }, + { + "appid": 434960, + "normalized_name": "rolling gauntlet" + }, + { + "appid": 434970, + "normalized_name": "that dam level redux" + }, + { + "appid": 434980, + "normalized_name": "onion force" + }, + { + "appid": 435000, + "normalized_name": "the whisperer in darkness" + }, + { + "appid": 435010, + "normalized_name": "krinkle krusher" + }, + { + "appid": 435030, + "normalized_name": "lost lands mahjong" + }, + { + "appid": 435040, + "normalized_name": "incredible dracula chasing love collector's" + }, + { + "appid": 435050, + "normalized_name": "glory kingdom" + }, + { + "appid": 435070, + "normalized_name": "elansar" + }, + { + "appid": 435080, + "normalized_name": "philia the sequel to elansar" + }, + { + "appid": 435100, + "normalized_name": "2dark" + }, + { + "appid": 435120, + "normalized_name": "rusty lake hotel" + }, + { + "appid": 435140, + "normalized_name": "rush for gold alaska" + }, + { + "appid": 435150, + "normalized_name": "divinity original sin 2" + }, + { + "appid": 435230, + "normalized_name": "medieval playground" + }, + { + "appid": 435250, + "normalized_name": "deadhunt" + }, + { + "appid": 435260, + "normalized_name": "planet stronghold colonial defense" + }, + { + "appid": 435300, + "normalized_name": "we know the devil" + }, + { + "appid": 435360, + "normalized_name": "campus notes forget me not." + }, + { + "appid": 435380, + "normalized_name": "the wake" + }, + { + "appid": 435400, + "normalized_name": "hidden folks" + }, + { + "appid": 435410, + "normalized_name": "fractal space" + }, + { + "appid": 435420, + "normalized_name": "operation matriarchy" + }, + { + "appid": 435440, + "normalized_name": "galaxy control 3d strategy" + }, + { + "appid": 435480, + "normalized_name": "trials of the blood dragon" + }, + { + "appid": 435490, + "normalized_name": "pierhead arcade" + }, + { + "appid": 435530, + "normalized_name": "the final station" + }, + { + "appid": 435730, + "normalized_name": "apartment a separated place" + }, + { + "appid": 435780, + "normalized_name": "violet space mission" + }, + { + "appid": 435790, + "normalized_name": "10 second ninja x" + }, + { + "appid": 435800, + "normalized_name": "binaries" + }, + { + "appid": 435840, + "normalized_name": "the preposterous awesomeness of everything" + }, + { + "appid": 435970, + "normalized_name": "refrain prism memories" + }, + { + "appid": 436000, + "normalized_name": "lovely planet arcade" + }, + { + "appid": 436110, + "normalized_name": "medusa's labyrinth" + }, + { + "appid": 436140, + "normalized_name": "empire of the gods" + }, + { + "appid": 436150, + "normalized_name": "governor of poker 3" + }, + { + "appid": 436160, + "normalized_name": "the panic room. house of secrets" + }, + { + "appid": 436180, + "normalized_name": "spacelords" + }, + { + "appid": 436230, + "normalized_name": "detached" + }, + { + "appid": 436240, + "normalized_name": "melancholy republic" + }, + { + "appid": 436260, + "normalized_name": "arena fps" + }, + { + "appid": 436270, + "normalized_name": "civil war 1863" + }, + { + "appid": 436280, + "normalized_name": "sudoku quest" + }, + { + "appid": 436290, + "normalized_name": "children of zodiarcs" + }, + { + "appid": 436320, + "normalized_name": "raw data" + }, + { + "appid": 436340, + "normalized_name": "kiya" + }, + { + "appid": 436360, + "normalized_name": "robo's world the zarnok fortress" + }, + { + "appid": 436390, + "normalized_name": "prison run and gun" + }, + { + "appid": 436400, + "normalized_name": "heroes of the seven seas vr" + }, + { + "appid": 436470, + "normalized_name": "gamma bros" + }, + { + "appid": 436480, + "normalized_name": "soup the game" + }, + { + "appid": 436490, + "normalized_name": "firebird la peri" + }, + { + "appid": 436500, + "normalized_name": "diaries of a spaceport janitor" + }, + { + "appid": 436510, + "normalized_name": "worlds of chaos invasion" + }, + { + "appid": 436520, + "normalized_name": "line of sight" + }, + { + "appid": 436530, + "normalized_name": "bullshot" + }, + { + "appid": 436670, + "normalized_name": "the legend of heroes trails in the sky the 3rd" + }, + { + "appid": 436690, + "normalized_name": "tempest citadel" + }, + { + "appid": 436780, + "normalized_name": "tavern keeper 🍻" + }, + { + "appid": 436850, + "normalized_name": "stellar stars" + }, + { + "appid": 436860, + "normalized_name": "arctic alive" + }, + { + "appid": 436870, + "normalized_name": "tank brawl" + }, + { + "appid": 436890, + "normalized_name": "kai ri sei million arthur vr / 乖離性ミリオンアーサー vr" + }, + { + "appid": 436940, + "normalized_name": "quar battle for gate 18" + }, + { + "appid": 436950, + "normalized_name": "mosaic maze" + }, + { + "appid": 437000, + "normalized_name": "guilty gear 2 overture" + }, + { + "appid": 437010, + "normalized_name": "space battle core" + }, + { + "appid": 437020, + "normalized_name": "witch bot meglilo" + }, + { + "appid": 437030, + "normalized_name": "memento" + }, + { + "appid": 437060, + "normalized_name": "moai 3 trade mission collector's" + }, + { + "appid": 437080, + "normalized_name": "space rift episode 1" + }, + { + "appid": 437090, + "normalized_name": "wobbly jungle" + }, + { + "appid": 437100, + "normalized_name": "my night job" + }, + { + "appid": 437160, + "normalized_name": "the lion's song episode 1 silence" + }, + { + "appid": 437180, + "normalized_name": "chill the piro" + }, + { + "appid": 437250, + "normalized_name": "a house of many doors" + }, + { + "appid": 437340, + "normalized_name": "toys of war" + }, + { + "appid": 437350, + "normalized_name": "call of duty black ops iii multiplayer starter pack" + }, + { + "appid": 437380, + "normalized_name": "vanquish the adventures of lady exton" + }, + { + "appid": 437390, + "normalized_name": "hopiko" + }, + { + "appid": 437420, + "normalized_name": "the secret order 3 ancient times" + }, + { + "appid": 437440, + "normalized_name": "lord of rigel" + }, + { + "appid": 437520, + "normalized_name": "zegame" + }, + { + "appid": 437530, + "normalized_name": "a blind legend" + }, + { + "appid": 437550, + "normalized_name": "melon simulator" + }, + { + "appid": 437570, + "normalized_name": "gonner" + }, + { + "appid": 437610, + "normalized_name": "squids from space" + }, + { + "appid": 437630, + "normalized_name": "state of mind" + }, + { + "appid": 437690, + "normalized_name": "venture kid" + }, + { + "appid": 437710, + "normalized_name": "magic flute" + }, + { + "appid": 437720, + "normalized_name": "blossoms bloom brightest" + }, + { + "appid": 437730, + "normalized_name": "roadclub league racing" + }, + { + "appid": 437740, + "normalized_name": "inside before birth" + }, + { + "appid": 437870, + "normalized_name": "earth space colonies" + }, + { + "appid": 437880, + "normalized_name": "project graviton" + }, + { + "appid": 437900, + "normalized_name": "party jousting" + }, + { + "appid": 437920, + "normalized_name": "tricky towers" + }, + { + "appid": 438000, + "normalized_name": "pixelman" + }, + { + "appid": 438010, + "normalized_name": "pulsecharge" + }, + { + "appid": 438020, + "normalized_name": "ai rampage" + }, + { + "appid": 438030, + "normalized_name": "dead6hot" + }, + { + "appid": 438040, + "normalized_name": "shakes and fidget" + }, + { + "appid": 438080, + "normalized_name": "surfingers" + }, + { + "appid": 438090, + "normalized_name": "defend felinearth" + }, + { + "appid": 438100, + "normalized_name": "vrchat" + }, + { + "appid": 438120, + "normalized_name": "ira act 1 pilgrimage" + }, + { + "appid": 438130, + "normalized_name": "root double before crime * after days xtend" + }, + { + "appid": 438140, + "normalized_name": "star realms" + }, + { + "appid": 438180, + "normalized_name": "super mustache" + }, + { + "appid": 438200, + "normalized_name": "chrysalis" + }, + { + "appid": 438210, + "normalized_name": "mule returns" + }, + { + "appid": 438220, + "normalized_name": "castle heist chapter 1" + }, + { + "appid": 438240, + "normalized_name": "corpo tale" + }, + { + "appid": 438260, + "normalized_name": "rewind" + }, + { + "appid": 438270, + "normalized_name": "learn japanese to survive! hiragana battle" + }, + { + "appid": 438300, + "normalized_name": "shepherds of the abyss" + }, + { + "appid": 438310, + "normalized_name": "score" + }, + { + "appid": 438320, + "normalized_name": "rush rover" + }, + { + "appid": 438330, + "normalized_name": "dungeon runner" + }, + { + "appid": 438340, + "normalized_name": "drizzlepath genie" + }, + { + "appid": 438350, + "normalized_name": "dynetzzle extended" + }, + { + "appid": 438360, + "normalized_name": "infinitesimal point" + }, + { + "appid": 438420, + "normalized_name": "zenith" + }, + { + "appid": 438430, + "normalized_name": "valentino rossi the game" + }, + { + "appid": 438440, + "normalized_name": "star rogue" + }, + { + "appid": 438460, + "normalized_name": "arena 3d" + }, + { + "appid": 438480, + "normalized_name": "rock 'n' roll defense" + }, + { + "appid": 438490, + "normalized_name": "god eater 2 rage burst" + }, + { + "appid": 438560, + "normalized_name": "mystery case files escape from ravenhearst" + }, + { + "appid": 438640, + "normalized_name": "lego star wars the force awakens" + }, + { + "appid": 438650, + "normalized_name": "gravity compass" + }, + { + "appid": 438660, + "normalized_name": "jerry rice & nitus' dog football" + }, + { + "appid": 438680, + "normalized_name": "one troll army" + }, + { + "appid": 438720, + "normalized_name": "heroes of shadow guard" + }, + { + "appid": 438730, + "normalized_name": "poly towns" + }, + { + "appid": 438770, + "normalized_name": "street posse showdown" + }, + { + "appid": 438780, + "normalized_name": "terrarium land" + }, + { + "appid": 438790, + "normalized_name": "random access murder" + }, + { + "appid": 438820, + "normalized_name": "hyper box" + }, + { + "appid": 438910, + "normalized_name": "hack slash & backstab" + }, + { + "appid": 438920, + "normalized_name": "legends of callasia" + }, + { + "appid": 438940, + "normalized_name": "xblaze lost memories" + }, + { + "appid": 439190, + "normalized_name": "stories the path of destinies" + }, + { + "appid": 439250, + "normalized_name": "space pilgrim episode iii delta pavonis" + }, + { + "appid": 439260, + "normalized_name": "\"butts the vr experience\"" + }, + { + "appid": 439310, + "normalized_name": "until i have you" + }, + { + "appid": 439340, + "normalized_name": "tavern tycoon dragon's hangover" + }, + { + "appid": 439370, + "normalized_name": "midair" + }, + { + "appid": 439420, + "normalized_name": "steellife" + }, + { + "appid": 439440, + "normalized_name": "of carrots and blood" + }, + { + "appid": 439460, + "normalized_name": "ships 2017" + }, + { + "appid": 439490, + "normalized_name": "blue revolver" + }, + { + "appid": 439530, + "normalized_name": "rock n rogue a boo bunny plague adventure" + }, + { + "appid": 439550, + "normalized_name": "'n verlore verstand" + }, + { + "appid": 439660, + "normalized_name": "tower unite dedicated server" + }, + { + "appid": 439700, + "normalized_name": "z1 battle royale test server" + }, + { + "appid": 439720, + "normalized_name": "unending galaxy" + }, + { + "appid": 439730, + "normalized_name": "xo planets" + }, + { + "appid": 439740, + "normalized_name": "eclipsed" + }, + { + "appid": 439750, + "normalized_name": "the lost heir 2 forging a kingdom" + }, + { + "appid": 439770, + "normalized_name": "the lost heir the fall of daria" + }, + { + "appid": 439800, + "normalized_name": "clouds & sheep 2" + }, + { + "appid": 439880, + "normalized_name": "heroes of loot 2" + }, + { + "appid": 439910, + "normalized_name": "risky rescue" + }, + { + "appid": 439930, + "normalized_name": "control craft 2" + }, + { + "appid": 439940, + "normalized_name": "lucid9 inciting incident" + }, + { + "appid": 439960, + "normalized_name": "falling stars war of empires" + }, + { + "appid": 440310, + "normalized_name": "project arrhythmia" + }, + { + "appid": 440340, + "normalized_name": "banzai escape" + }, + { + "appid": 440380, + "normalized_name": "super kitty boing boing" + }, + { + "appid": 440410, + "normalized_name": "wolfsong" + }, + { + "appid": 440420, + "normalized_name": "true fear forsaken souls part 1" + }, + { + "appid": 440450, + "normalized_name": "escape sierra leone" + }, + { + "appid": 440470, + "normalized_name": "absence" + }, + { + "appid": 440540, + "normalized_name": "ara fell enhanced" + }, + { + "appid": 440550, + "normalized_name": "atomik rungunjumpgun" + }, + { + "appid": 440630, + "normalized_name": "the brookhaven experiment" + }, + { + "appid": 440640, + "normalized_name": "sweet f. cake" + }, + { + "appid": 440650, + "normalized_name": "niche a genetics survival game" + }, + { + "appid": 440660, + "normalized_name": "void vikings" + }, + { + "appid": 440690, + "normalized_name": "mesel" + }, + { + "appid": 440720, + "normalized_name": "pandora`s room" + }, + { + "appid": 440730, + "normalized_name": "survival zombies the inverted evolution" + }, + { + "appid": 440740, + "normalized_name": "epic battles within 5 seconds!" + }, + { + "appid": 440750, + "normalized_name": "story of a cube" + }, + { + "appid": 440760, + "normalized_name": "cube destroyer" + }, + { + "appid": 440770, + "normalized_name": "drawn story" + }, + { + "appid": 440790, + "normalized_name": "spellbind luppe's tale" + }, + { + "appid": 440800, + "normalized_name": "trial by viking" + }, + { + "appid": 440810, + "normalized_name": "1943 megami strike" + }, + { + "appid": 440880, + "normalized_name": "the count lucanor" + }, + { + "appid": 440900, + "normalized_name": "conan exiles" + }, + { + "appid": 440950, + "normalized_name": "story of the survivor" + }, + { + "appid": 441010, + "normalized_name": "mount your friends 3d a hard man is good to climb" + }, + { + "appid": 441050, + "normalized_name": "polandball can into space!" + }, + { + "appid": 441060, + "normalized_name": "silver creek falls chapter 3" + }, + { + "appid": 441230, + "normalized_name": "babel tower to the gods" + }, + { + "appid": 441250, + "normalized_name": "talewind" + }, + { + "appid": 441280, + "normalized_name": "pharaoh rebirth+" + }, + { + "appid": 441350, + "normalized_name": "assault suit leynos" + }, + { + "appid": 441380, + "normalized_name": "pac man championship 2" + }, + { + "appid": 441440, + "normalized_name": "sometimes always monsters" + }, + { + "appid": 441510, + "normalized_name": "the incredible baron" + }, + { + "appid": 441550, + "normalized_name": "star wars rebellion" + }, + { + "appid": 441560, + "normalized_name": "quest of souls" + }, + { + "appid": 441640, + "normalized_name": "valens" + }, + { + "appid": 441670, + "normalized_name": "jelly killer" + }, + { + "appid": 441680, + "normalized_name": "obscuritas" + }, + { + "appid": 441790, + "normalized_name": "fragmented" + }, + { + "appid": 441830, + "normalized_name": "i am setsuna" + }, + { + "appid": 441870, + "normalized_name": "outdrive" + }, + { + "appid": 442000, + "normalized_name": "alone k.w." + }, + { + "appid": 442070, + "normalized_name": "drawful 2" + }, + { + "appid": 442120, + "normalized_name": "pinball fx3" + }, + { + "appid": 442140, + "normalized_name": "dyadic" + }, + { + "appid": 442190, + "normalized_name": "mind dead" + }, + { + "appid": 442210, + "normalized_name": "switchcars" + }, + { + "appid": 442220, + "normalized_name": "iron madness" + }, + { + "appid": 442260, + "normalized_name": "sprinter" + }, + { + "appid": 442290, + "normalized_name": "pointless" + }, + { + "appid": 442500, + "normalized_name": "age of gladiators" + }, + { + "appid": 442660, + "normalized_name": "the soulkeeper vr" + }, + { + "appid": 442710, + "normalized_name": "fantasy tales online" + }, + { + "appid": 442760, + "normalized_name": "endless burst" + }, + { + "appid": 442770, + "normalized_name": "the minims" + }, + { + "appid": 442780, + "normalized_name": "strafe gold" + }, + { + "appid": 442810, + "normalized_name": "ufo online invasion" + }, + { + "appid": 442860, + "normalized_name": "vega tank" + }, + { + "appid": 442890, + "normalized_name": "magic potion explorer" + }, + { + "appid": 443000, + "normalized_name": "dual gear" + }, + { + "appid": 443020, + "normalized_name": "victory and glory napoleon" + }, + { + "appid": 443070, + "normalized_name": "insane insects the inception" + }, + { + "appid": 443110, + "normalized_name": "armored warfare" + }, + { + "appid": 443190, + "normalized_name": "project haven" + }, + { + "appid": 443250, + "normalized_name": "legacy of the elder star" + }, + { + "appid": 443260, + "normalized_name": "hero generations regen" + }, + { + "appid": 443330, + "normalized_name": "malus code" + }, + { + "appid": 443360, + "normalized_name": "red comrades 2 for the great justice. reloaded" + }, + { + "appid": 443370, + "normalized_name": "the treasures of montezuma 5" + }, + { + "appid": 443380, + "normalized_name": "tokyo babel" + }, + { + "appid": 443420, + "normalized_name": "artificial defense" + }, + { + "appid": 443450, + "normalized_name": "lastfight" + }, + { + "appid": 443460, + "normalized_name": "star sky 2" + }, + { + "appid": 443530, + "normalized_name": "adam and eve the game chapter 1" + }, + { + "appid": 443570, + "normalized_name": "dreambreak" + }, + { + "appid": 443580, + "normalized_name": "antenna" + }, + { + "appid": 443590, + "normalized_name": "prism" + }, + { + "appid": 443650, + "normalized_name": "wailing heights" + }, + { + "appid": 443700, + "normalized_name": "the inner sea" + }, + { + "appid": 443790, + "normalized_name": "irrational exuberance" + }, + { + "appid": 443800, + "normalized_name": "ruckus ridge vr party" + }, + { + "appid": 443810, + "normalized_name": "this is the police" + }, + { + "appid": 443830, + "normalized_name": "the daring mermaid expedition" + }, + { + "appid": 443850, + "normalized_name": "tross" + }, + { + "appid": 443860, + "normalized_name": "riptide gp renegade" + }, + { + "appid": 443880, + "normalized_name": "loot rascals" + }, + { + "appid": 443980, + "normalized_name": "burokku girls" + }, + { + "appid": 444000, + "normalized_name": "super night riders" + }, + { + "appid": 444020, + "normalized_name": "coffee pot terrarium" + }, + { + "appid": 444090, + "normalized_name": "paladins" + }, + { + "appid": 444130, + "normalized_name": "auralux constellations" + }, + { + "appid": 444140, + "normalized_name": "sonicomi" + }, + { + "appid": 444160, + "normalized_name": "bonsai" + }, + { + "appid": 444170, + "normalized_name": "unhack 2" + }, + { + "appid": 444180, + "normalized_name": "techwars online" + }, + { + "appid": 444190, + "normalized_name": "princess edge dragonstone" + }, + { + "appid": 444200, + "normalized_name": "world of tanks blitz" + }, + { + "appid": 444210, + "normalized_name": "strike force desert thunder" + }, + { + "appid": 444220, + "normalized_name": "asteroid bounty hunter" + }, + { + "appid": 444250, + "normalized_name": "crown and council" + }, + { + "appid": 444260, + "normalized_name": "mindless running" + }, + { + "appid": 444270, + "normalized_name": "hypersensitive bob" + }, + { + "appid": 444280, + "normalized_name": "alice's patchwork" + }, + { + "appid": 444330, + "normalized_name": "battleships at dawn!" + }, + { + "appid": 444350, + "normalized_name": "hack_it" + }, + { + "appid": 444410, + "normalized_name": "find out" + }, + { + "appid": 444420, + "normalized_name": "24 hours 'til rescue" + }, + { + "appid": 444430, + "normalized_name": "zeus vs monsters math game for kids" + }, + { + "appid": 444440, + "normalized_name": "scapeland" + }, + { + "appid": 444470, + "normalized_name": "moor" + }, + { + "appid": 444480, + "normalized_name": "broken dreams" + }, + { + "appid": 444490, + "normalized_name": "polywar" + }, + { + "appid": 444520, + "normalized_name": "leave me alone a trip to hell" + }, + { + "appid": 444530, + "normalized_name": "light repair team #4" + }, + { + "appid": 444550, + "normalized_name": "void 21" + }, + { + "appid": 444580, + "normalized_name": "alone in space" + }, + { + "appid": 444590, + "normalized_name": "skautfold shrouded in sanity" + }, + { + "appid": 444620, + "normalized_name": "spellknights" + }, + { + "appid": 444640, + "normalized_name": "bloons td battles" + }, + { + "appid": 444670, + "normalized_name": "super impossible road" + }, + { + "appid": 444690, + "normalized_name": "trapped" + }, + { + "appid": 444710, + "normalized_name": "battle crust" + }, + { + "appid": 444720, + "normalized_name": "inexistence" + }, + { + "appid": 444740, + "normalized_name": "cologne" + }, + { + "appid": 444770, + "normalized_name": "mimpi dreams" + }, + { + "appid": 444800, + "normalized_name": "no thing" + }, + { + "appid": 444830, + "normalized_name": "concrete and steel" + }, + { + "appid": 444870, + "normalized_name": "combat racers" + }, + { + "appid": 444880, + "normalized_name": "death stair" + }, + { + "appid": 444930, + "normalized_name": "zaccaria pinball" + }, + { + "appid": 444940, + "normalized_name": "ubermosh black" + }, + { + "appid": 444990, + "normalized_name": "ad exitum" + }, + { + "appid": 445000, + "normalized_name": "nova nukers!" + }, + { + "appid": 445020, + "normalized_name": "frozen synapse 2" + }, + { + "appid": 445040, + "normalized_name": "sorcery! part 3" + }, + { + "appid": 445050, + "normalized_name": "paintey" + }, + { + "appid": 445070, + "normalized_name": "tatsu" + }, + { + "appid": 445110, + "normalized_name": "tasty planet back for seconds" + }, + { + "appid": 445130, + "normalized_name": "the average everyday adventures of samantha browne" + }, + { + "appid": 445140, + "normalized_name": "smell of death" + }, + { + "appid": 445170, + "normalized_name": "the haunting of billy classic" + }, + { + "appid": 445190, + "normalized_name": "expeditions viking" + }, + { + "appid": 445210, + "normalized_name": "tiny knight" + }, + { + "appid": 445220, + "normalized_name": "avorion" + }, + { + "appid": 445230, + "normalized_name": "lost girl`s [diary]" + }, + { + "appid": 445310, + "normalized_name": "might and magic heroes vii – trial by fire" + }, + { + "appid": 445350, + "normalized_name": "atomic space command" + }, + { + "appid": 445420, + "normalized_name": "aselia the eternal the spirit of eternity sword" + }, + { + "appid": 445430, + "normalized_name": "seinarukana the spirit of eternity sword 2" + }, + { + "appid": 445550, + "normalized_name": "watson's watch" + }, + { + "appid": 445600, + "normalized_name": "void raiders" + }, + { + "appid": 445670, + "normalized_name": "the stargazers" + }, + { + "appid": 445720, + "normalized_name": "battle islands commanders" + }, + { + "appid": 445750, + "normalized_name": "settled" + }, + { + "appid": 445770, + "normalized_name": "airport madness 3d" + }, + { + "appid": 445800, + "normalized_name": "love language japanese" + }, + { + "appid": 445870, + "normalized_name": "phantom trigger" + }, + { + "appid": 445950, + "normalized_name": "asher" + }, + { + "appid": 445980, + "normalized_name": "wizard of legend" + }, + { + "appid": 446000, + "normalized_name": "stellar monarch" + }, + { + "appid": 446010, + "normalized_name": "citiescorp concept build everything on your own" + }, + { + "appid": 446020, + "normalized_name": "jalopy" + }, + { + "appid": 446040, + "normalized_name": "blade arcus from shining battle arena" + }, + { + "appid": 446050, + "normalized_name": "operation kreep" + }, + { + "appid": 446070, + "normalized_name": "ecotone" + }, + { + "appid": 446100, + "normalized_name": "mantis burn racing" + }, + { + "appid": 446110, + "normalized_name": "happy critters" + }, + { + "appid": 446120, + "normalized_name": "bunker punks" + }, + { + "appid": 446240, + "normalized_name": "trawl" + }, + { + "appid": 446250, + "normalized_name": "silver bullet prometheus" + }, + { + "appid": 446310, + "normalized_name": "sabres of infinity" + }, + { + "appid": 446330, + "normalized_name": "guns of infinity" + }, + { + "appid": 446380, + "normalized_name": "sophie's curse" + }, + { + "appid": 446390, + "normalized_name": "onechanbara z2 chaos" + }, + { + "appid": 446430, + "normalized_name": "doctor watson treasure island" + }, + { + "appid": 446440, + "normalized_name": "doctor watson the riddle of the catacombs" + }, + { + "appid": 446450, + "normalized_name": "blaster simulator" + }, + { + "appid": 446460, + "normalized_name": "highland warriors" + }, + { + "appid": 446470, + "normalized_name": "new york taxi simulator" + }, + { + "appid": 446480, + "normalized_name": "new york bus simulator" + }, + { + "appid": 446490, + "normalized_name": "rail cargo simulator" + }, + { + "appid": 446510, + "normalized_name": "armed and gelatinous couch" + }, + { + "appid": 446530, + "normalized_name": "one last crane" + }, + { + "appid": 446540, + "normalized_name": "smash up" + }, + { + "appid": 446550, + "normalized_name": "infinite minigolf" + }, + { + "appid": 446600, + "normalized_name": "magi trials" + }, + { + "appid": 446610, + "normalized_name": "bunny bounce" + }, + { + "appid": 446620, + "normalized_name": "zombie training simulator" + }, + { + "appid": 446640, + "normalized_name": "space pilgrim episode iv sol" + }, + { + "appid": 446760, + "normalized_name": "neighborhorde" + }, + { + "appid": 446770, + "normalized_name": "skeet vr target shooting" + }, + { + "appid": 446780, + "normalized_name": "amok" + }, + { + "appid": 446790, + "normalized_name": "diluvion resubmerged" + }, + { + "appid": 446800, + "normalized_name": "transport fever" + }, + { + "appid": 446810, + "normalized_name": "blossom tales the sleeping king" + }, + { + "appid": 446840, + "normalized_name": "splasher" + }, + { + "appid": 446850, + "normalized_name": "mindball play" + }, + { + "appid": 446870, + "normalized_name": "glitchrunners" + }, + { + "appid": 446910, + "normalized_name": "night blights" + }, + { + "appid": 446990, + "normalized_name": "the huntsman winter's curse" + }, + { + "appid": 447000, + "normalized_name": "grimsfield" + }, + { + "appid": 447010, + "normalized_name": "bird of light" + }, + { + "appid": 447020, + "normalized_name": "farming simulator 17" + }, + { + "appid": 447040, + "normalized_name": "watch_dogs 2" + }, + { + "appid": 447100, + "normalized_name": "xlr" + }, + { + "appid": 447120, + "normalized_name": "where the water tastes like wine" + }, + { + "appid": 447150, + "normalized_name": "ape out" + }, + { + "appid": 447170, + "normalized_name": "destiny's princess a war story a love story" + }, + { + "appid": 447180, + "normalized_name": "my secret pets!" + }, + { + "appid": 447190, + "normalized_name": "pub encounter" + }, + { + "appid": 447200, + "normalized_name": "the men of yoshiwara ohgiya" + }, + { + "appid": 447210, + "normalized_name": "blink" + }, + { + "appid": 447240, + "normalized_name": "zasa an ai story" + }, + { + "appid": 447270, + "normalized_name": "ikea vr experience" + }, + { + "appid": 447290, + "normalized_name": "redeemer enhanced" + }, + { + "appid": 447310, + "normalized_name": "paper train traffic" + }, + { + "appid": 447330, + "normalized_name": "sluggy's fruit emporium" + }, + { + "appid": 447530, + "normalized_name": "va 11 hall a cyberpunk bartender action" + }, + { + "appid": 447540, + "normalized_name": "lost cosmonaut" + }, + { + "appid": 447570, + "normalized_name": "regeria hope episode 1" + }, + { + "appid": 447690, + "normalized_name": "dimensional intersection" + }, + { + "appid": 447700, + "normalized_name": "crystal crisis" + }, + { + "appid": 447780, + "normalized_name": "lostwinds" + }, + { + "appid": 447800, + "normalized_name": "lostwinds 2 winter of the melodias" + }, + { + "appid": 447820, + "normalized_name": "day of infamy" + }, + { + "appid": 447850, + "normalized_name": "the next door" + }, + { + "appid": 447860, + "normalized_name": "maria the witch" + }, + { + "appid": 447890, + "normalized_name": "cat on a diet" + }, + { + "appid": 447920, + "normalized_name": "drift (over) drive" + }, + { + "appid": 447930, + "normalized_name": "lydia sweet dreams" + }, + { + "appid": 447940, + "normalized_name": "brine" + }, + { + "appid": 447950, + "normalized_name": "bad caterpillar" + }, + { + "appid": 447960, + "normalized_name": "xcavalypse" + }, + { + "appid": 447980, + "normalized_name": "blast brawl 2" + }, + { + "appid": 447990, + "normalized_name": "spectrubes" + }, + { + "appid": 448000, + "normalized_name": "sparkle zero" + }, + { + "appid": 448010, + "normalized_name": "repete" + }, + { + "appid": 448020, + "normalized_name": "share" + }, + { + "appid": 448050, + "normalized_name": "mr nibbles forever" + }, + { + "appid": 448060, + "normalized_name": "x 17" + }, + { + "appid": 448070, + "normalized_name": "red risk" + }, + { + "appid": 448080, + "normalized_name": "fibbage xl" + }, + { + "appid": 448110, + "normalized_name": "so long earth" + }, + { + "appid": 448140, + "normalized_name": "night light" + }, + { + "appid": 448150, + "normalized_name": "mystica the ninth society" + }, + { + "appid": 448160, + "normalized_name": "wolflame" + }, + { + "appid": 448170, + "normalized_name": "last dream world unknown" + }, + { + "appid": 448230, + "normalized_name": "asteroidshd" + }, + { + "appid": 448240, + "normalized_name": "hybrids arena" + }, + { + "appid": 448280, + "normalized_name": "job simulator" + }, + { + "appid": 448290, + "normalized_name": "nefarious" + }, + { + "appid": 448300, + "normalized_name": "logic missile" + }, + { + "appid": 448310, + "normalized_name": "bitardia cards memes of 2ch" + }, + { + "appid": 448320, + "normalized_name": "gibz" + }, + { + "appid": 448370, + "normalized_name": "is defense" + }, + { + "appid": 448380, + "normalized_name": "escape close call" + }, + { + "appid": 448390, + "normalized_name": "maneki's curse" + }, + { + "appid": 448400, + "normalized_name": "hidden object 6 in 1 bundle" + }, + { + "appid": 448440, + "normalized_name": "bizarre earthquake" + }, + { + "appid": 448470, + "normalized_name": "bacteria" + }, + { + "appid": 448480, + "normalized_name": "caravanserail" + }, + { + "appid": 448500, + "normalized_name": "little walker" + }, + { + "appid": 448510, + "normalized_name": "overcooked" + }, + { + "appid": 448530, + "normalized_name": "square's route" + }, + { + "appid": 448540, + "normalized_name": "terror lab" + }, + { + "appid": 448550, + "normalized_name": "minimal" + }, + { + "appid": 448560, + "normalized_name": "mind games" + }, + { + "appid": 448570, + "normalized_name": "origin of destiny crimson awakening" + }, + { + "appid": 448580, + "normalized_name": "dead end road" + }, + { + "appid": 448610, + "normalized_name": "draw rider" + }, + { + "appid": 448620, + "normalized_name": "rebirth of island" + }, + { + "appid": 448630, + "normalized_name": "rabiez epidemic" + }, + { + "appid": 448650, + "normalized_name": "geo master" + }, + { + "appid": 448670, + "normalized_name": "pinball hd collection" + }, + { + "appid": 448690, + "normalized_name": "lionessy story" + }, + { + "appid": 448710, + "normalized_name": "virzoom arcade" + }, + { + "appid": 448720, + "normalized_name": "puzzle box" + }, + { + "appid": 448730, + "normalized_name": "imhotep pyramid builder" + }, + { + "appid": 448750, + "normalized_name": "infinity saga" + }, + { + "appid": 448780, + "normalized_name": "sixtieth kilometer" + }, + { + "appid": 448790, + "normalized_name": "infinity wings scout & grunt" + }, + { + "appid": 448800, + "normalized_name": "semispheres" + }, + { + "appid": 448810, + "normalized_name": "torgar's quest" + }, + { + "appid": 448820, + "normalized_name": "planet in the shadows" + }, + { + "appid": 448840, + "normalized_name": "ball king jam" + }, + { + "appid": 448850, + "normalized_name": "overload" + }, + { + "appid": 448860, + "normalized_name": "colony 42" + }, + { + "appid": 448880, + "normalized_name": "spells 'n' stuff" + }, + { + "appid": 448910, + "normalized_name": "axes and acres" + }, + { + "appid": 448930, + "normalized_name": "about elise" + }, + { + "appid": 448960, + "normalized_name": "i hope" + }, + { + "appid": 448980, + "normalized_name": "the divergent series allegiant vr" + }, + { + "appid": 448990, + "normalized_name": "phlyndir" + }, + { + "appid": 449000, + "normalized_name": "steno arcade" + }, + { + "appid": 449020, + "normalized_name": "the bottom of the well" + }, + { + "appid": 449040, + "normalized_name": "jesus christ rpg trilogy" + }, + { + "appid": 449050, + "normalized_name": "rock paper scissors champion" + }, + { + "appid": 449060, + "normalized_name": "cellar" + }, + { + "appid": 449070, + "normalized_name": "yearn tyrant's conquest" + }, + { + "appid": 449090, + "normalized_name": "zombie parking" + }, + { + "appid": 449120, + "normalized_name": "nanobots" + }, + { + "appid": 449140, + "normalized_name": "istrolid" + }, + { + "appid": 449150, + "normalized_name": "patanoir" + }, + { + "appid": 449160, + "normalized_name": "land it rocket" + }, + { + "appid": 449170, + "normalized_name": "gnomes garden 2" + }, + { + "appid": 449180, + "normalized_name": "meld" + }, + { + "appid": 449200, + "normalized_name": "calcu late" + }, + { + "appid": 449210, + "normalized_name": "verdict guilty 유죄 평결" + }, + { + "appid": 449220, + "normalized_name": "a grande bagunça espacial the big space mess" + }, + { + "appid": 449240, + "normalized_name": "stormworm+" + }, + { + "appid": 449250, + "normalized_name": "a little lily princess" + }, + { + "appid": 449300, + "normalized_name": "planar conquest" + }, + { + "appid": 449310, + "normalized_name": "spunk and moxie" + }, + { + "appid": 449320, + "normalized_name": "dino eggs rebirth" + }, + { + "appid": 449330, + "normalized_name": "grid masters" + }, + { + "appid": 449340, + "normalized_name": "serafina's crown" + }, + { + "appid": 449350, + "normalized_name": "backstreets of the mind" + }, + { + "appid": 449420, + "normalized_name": "mini's magic world" + }, + { + "appid": 449450, + "normalized_name": "split bullet" + }, + { + "appid": 449460, + "normalized_name": "commands & colors the great war" + }, + { + "appid": 449500, + "normalized_name": "hush hush unlimited survival horror" + }, + { + "appid": 449510, + "normalized_name": "the crow's eye" + }, + { + "appid": 449520, + "normalized_name": "rush for gold california" + }, + { + "appid": 449530, + "normalized_name": "grand pigeon's duty" + }, + { + "appid": 449540, + "normalized_name": "there's poop in my soup" + }, + { + "appid": 449550, + "normalized_name": "chicken invaders 2" + }, + { + "appid": 449560, + "normalized_name": "space ranger ask" + }, + { + "appid": 449610, + "normalized_name": "monster boy and the cursed kingdom" + }, + { + "appid": 449640, + "normalized_name": "bloody zombies" + }, + { + "appid": 449680, + "normalized_name": "samoliotik" + }, + { + "appid": 449690, + "normalized_name": "fatal fight" + }, + { + "appid": 449700, + "normalized_name": "ariel" + }, + { + "appid": 449710, + "normalized_name": "redcon" + }, + { + "appid": 449730, + "normalized_name": "ahnayro the dream world" + }, + { + "appid": 449760, + "normalized_name": "tenrow" + }, + { + "appid": 449770, + "normalized_name": "legend of moros" + }, + { + "appid": 449780, + "normalized_name": "jacob" + }, + { + "appid": 449800, + "normalized_name": "attack on titan / a.o.t. wings of freedom" + }, + { + "appid": 449820, + "normalized_name": "daughter of shadows an scp breach event" + }, + { + "appid": 449940, + "normalized_name": "! that bastard is trying to steal our gold !" + }, + { + "appid": 449960, + "normalized_name": "book of demons" + }, + { + "appid": 450020, + "normalized_name": "damage control" + }, + { + "appid": 450040, + "normalized_name": "stealth labyrinth" + }, + { + "appid": 450050, + "normalized_name": "yon paradox" + }, + { + "appid": 450060, + "normalized_name": "insane decay of mind the labyrinth" + }, + { + "appid": 450110, + "normalized_name": "amigdala" + }, + { + "appid": 450120, + "normalized_name": "capitalism plus" + }, + { + "appid": 450140, + "normalized_name": "seven kingdoms ancient adversaries" + }, + { + "appid": 450150, + "normalized_name": "campgrounds the endorus expedition collector's" + }, + { + "appid": 450170, + "normalized_name": "boor" + }, + { + "appid": 450190, + "normalized_name": "maze lord" + }, + { + "appid": 450220, + "normalized_name": "overload playable teaser 3.0" + }, + { + "appid": 450240, + "normalized_name": "bullet force" + }, + { + "appid": 450250, + "normalized_name": "aegis of earth protonovus assault" + }, + { + "appid": 450290, + "normalized_name": "assault on arnhem" + }, + { + "appid": 450390, + "normalized_name": "the lab" + }, + { + "appid": 450440, + "normalized_name": "creepy castle" + }, + { + "appid": 450500, + "normalized_name": "ace of seafood" + }, + { + "appid": 450540, + "normalized_name": "hot dogs horseshoes & hand grenades" + }, + { + "appid": 450570, + "normalized_name": "roadworks simulator" + }, + { + "appid": 450590, + "normalized_name": "safety driving simulator car" + }, + { + "appid": 450600, + "normalized_name": "safety driving simulator motorbike" + }, + { + "appid": 450630, + "normalized_name": "woeful woebots" + }, + { + "appid": 450650, + "normalized_name": "polyology" + }, + { + "appid": 450670, + "normalized_name": "table top racing world tour" + }, + { + "appid": 450700, + "normalized_name": "the spatials galactology" + }, + { + "appid": 450740, + "normalized_name": "mind unleashed" + }, + { + "appid": 450760, + "normalized_name": "graverun" + }, + { + "appid": 450850, + "normalized_name": "cube land arena" + }, + { + "appid": 450860, + "normalized_name": "andarilho" + }, + { + "appid": 450950, + "normalized_name": "danmaku unlimited 3" + }, + { + "appid": 451000, + "normalized_name": "ember kaboom" + }, + { + "appid": 451010, + "normalized_name": "kittypocalypse" + }, + { + "appid": 451020, + "normalized_name": "battle chasers nightwar" + }, + { + "appid": 451060, + "normalized_name": "wincars racer" + }, + { + "appid": 451080, + "normalized_name": "giant cop justice above all" + }, + { + "appid": 451100, + "normalized_name": "cubikolor" + }, + { + "appid": 451130, + "normalized_name": "khan absolute power" + }, + { + "appid": 451140, + "normalized_name": "drawn dark flight collector's" + }, + { + "appid": 451200, + "normalized_name": "candlelight" + }, + { + "appid": 451210, + "normalized_name": "rocket shooter" + }, + { + "appid": 451310, + "normalized_name": "a fold apart" + }, + { + "appid": 451330, + "normalized_name": "is defense editor" + }, + { + "appid": 451340, + "normalized_name": "gold mining simulator" + }, + { + "appid": 451350, + "normalized_name": "tropical fish shop 2" + }, + { + "appid": 451360, + "normalized_name": "fenrisulfr puzzle" + }, + { + "appid": 451400, + "normalized_name": "meridian squad 22" + }, + { + "appid": 451540, + "normalized_name": "snakes on an extradimensional plane" + }, + { + "appid": 451570, + "normalized_name": "demetrios the big cynical adventure" + }, + { + "appid": 451590, + "normalized_name": "¡zombies! faulty towers" + }, + { + "appid": 451600, + "normalized_name": "counterattack uprising" + }, + { + "appid": 451630, + "normalized_name": "brute" + }, + { + "appid": 451640, + "normalized_name": "c14 dating" + }, + { + "appid": 451660, + "normalized_name": "trucker" + }, + { + "appid": 451670, + "normalized_name": "war birds ww2 air strike 1942" + }, + { + "appid": 451700, + "normalized_name": "secrets of deep earth shrine" + }, + { + "appid": 451760, + "normalized_name": "highway blossoms" + }, + { + "appid": 451780, + "normalized_name": "trillion god of destruction" + }, + { + "appid": 451790, + "normalized_name": "forging glory" + }, + { + "appid": 451800, + "normalized_name": "end of the mine" + }, + { + "appid": 451840, + "normalized_name": "out of ammo" + }, + { + "appid": 451870, + "normalized_name": "nighttime terror vr dessert defender" + }, + { + "appid": 451880, + "normalized_name": "catch a falling star" + }, + { + "appid": 451900, + "normalized_name": "wizardcraft" + }, + { + "appid": 451920, + "normalized_name": "thorne death merchants" + }, + { + "appid": 451930, + "normalized_name": "qrth phyl" + }, + { + "appid": 451940, + "normalized_name": "return home" + }, + { + "appid": 451950, + "normalized_name": "eep train simulator mission" + }, + { + "appid": 451960, + "normalized_name": "the secret of pineview forest" + }, + { + "appid": 451980, + "normalized_name": "the body vr journey inside a cell" + }, + { + "appid": 451990, + "normalized_name": "cranks and goggles" + }, + { + "appid": 452000, + "normalized_name": "military life tank simulator" + }, + { + "appid": 452060, + "normalized_name": "caveblazers" + }, + { + "appid": 452120, + "normalized_name": "midvinter" + }, + { + "appid": 452180, + "normalized_name": "one clone left" + }, + { + "appid": 452230, + "normalized_name": "spellstone" + }, + { + "appid": 452240, + "normalized_name": "dawn of the robot empire" + }, + { + "appid": 452320, + "normalized_name": "party saboteurs after party" + }, + { + "appid": 452340, + "normalized_name": "ian's eyes" + }, + { + "appid": 452410, + "normalized_name": "damsel" + }, + { + "appid": 452420, + "normalized_name": "koihime enbu" + }, + { + "appid": 452440, + "normalized_name": "flowers le volume sur printemps" + }, + { + "appid": 452450, + "normalized_name": "rising islands" + }, + { + "appid": 452490, + "normalized_name": "the cubicle." + }, + { + "appid": 452510, + "normalized_name": "under night in birth exe late" + }, + { + "appid": 452570, + "normalized_name": "battle chef brigade deluxe" + }, + { + "appid": 452650, + "normalized_name": "the rebel" + }, + { + "appid": 452710, + "normalized_name": "realities" + }, + { + "appid": 452860, + "normalized_name": "mad bullets" + }, + { + "appid": 452870, + "normalized_name": "cube blast match" + }, + { + "appid": 452920, + "normalized_name": "laser disco defenders" + }, + { + "appid": 452930, + "normalized_name": "insane" + }, + { + "appid": 452970, + "normalized_name": "asemblance" + }, + { + "appid": 453030, + "normalized_name": "the fifth expedition" + }, + { + "appid": 453090, + "normalized_name": "parkitect" + }, + { + "appid": 453100, + "normalized_name": "frederic resurrection of music director's cut" + }, + { + "appid": 453130, + "normalized_name": "powargrid" + }, + { + "appid": 453220, + "normalized_name": "bramblelash" + }, + { + "appid": 453270, + "normalized_name": "madness cubed" + }, + { + "appid": 453290, + "normalized_name": "awareness rooms" + }, + { + "appid": 453300, + "normalized_name": "a healer only lives twice" + }, + { + "appid": 453310, + "normalized_name": "blackwood crossing" + }, + { + "appid": 453320, + "normalized_name": "vairon's wrath" + }, + { + "appid": 453340, + "normalized_name": "hustle cat" + }, + { + "appid": 453350, + "normalized_name": "vaccine war" + }, + { + "appid": 453390, + "normalized_name": "dark parables the little mermaid and the purple tide collector's" + }, + { + "appid": 453470, + "normalized_name": "hacked" + }, + { + "appid": 453480, + "normalized_name": "shadowverse ccg" + }, + { + "appid": 453510, + "normalized_name": "one man is not no man" + }, + { + "appid": 453650, + "normalized_name": "marble void" + }, + { + "appid": 453660, + "normalized_name": "rogue contracts syndicate" + }, + { + "appid": 453670, + "normalized_name": "the lost souls" + }, + { + "appid": 453690, + "normalized_name": "dark quest 2" + }, + { + "appid": 453700, + "normalized_name": "prog.1" + }, + { + "appid": 453710, + "normalized_name": "tabletop soccer" + }, + { + "appid": 453720, + "normalized_name": "last will" + }, + { + "appid": 453730, + "normalized_name": "borstal" + }, + { + "appid": 453740, + "normalized_name": "spaceman sparkles 3" + }, + { + "appid": 453750, + "normalized_name": "tyto ecology" + }, + { + "appid": 453770, + "normalized_name": "forgotten tales day of the dead" + }, + { + "appid": 453780, + "normalized_name": "secrets of magic the book of spells" + }, + { + "appid": 453790, + "normalized_name": "candice debébé's incredibly trick lifestyle" + }, + { + "appid": 453810, + "normalized_name": "blasting agent" + }, + { + "appid": 453820, + "normalized_name": "hero quest tower conflict" + }, + { + "appid": 453830, + "normalized_name": "innoquous 5" + }, + { + "appid": 453850, + "normalized_name": "dear red extended" + }, + { + "appid": 453860, + "normalized_name": "what the dark keeps" + }, + { + "appid": 453870, + "normalized_name": "quantum chess" + }, + { + "appid": 453880, + "normalized_name": "ninja outbreak" + }, + { + "appid": 453890, + "normalized_name": "black rose" + }, + { + "appid": 453900, + "normalized_name": "thousands of years later" + }, + { + "appid": 453910, + "normalized_name": "love is dead" + }, + { + "appid": 453950, + "normalized_name": "to ash" + }, + { + "appid": 453960, + "normalized_name": "envy the dead" + }, + { + "appid": 453980, + "normalized_name": "airstrike hd" + }, + { + "appid": 453990, + "normalized_name": "mibibli's quest" + }, + { + "appid": 454000, + "normalized_name": "downwind" + }, + { + "appid": 454030, + "normalized_name": "link" + }, + { + "appid": 454060, + "normalized_name": "blueprint tycoon" + }, + { + "appid": 454070, + "normalized_name": "boundel the second era" + }, + { + "appid": 454100, + "normalized_name": "dungeon escape" + }, + { + "appid": 454120, + "normalized_name": "starbase" + }, + { + "appid": 454130, + "normalized_name": "nil ninjahtic ronin" + }, + { + "appid": 454140, + "normalized_name": "first person tennis the real tennis simulator" + }, + { + "appid": 454160, + "normalized_name": "dark fear" + }, + { + "appid": 454170, + "normalized_name": "xorced sashiro's laedrum" + }, + { + "appid": 454180, + "normalized_name": "crazycars3d" + }, + { + "appid": 454190, + "normalized_name": "cubicolor" + }, + { + "appid": 454200, + "normalized_name": "neon hardcorps" + }, + { + "appid": 454220, + "normalized_name": "the temporal invasion" + }, + { + "appid": 454230, + "normalized_name": "slg remix" + }, + { + "appid": 454240, + "normalized_name": "a tofu tail" + }, + { + "appid": 454250, + "normalized_name": "the eyes of ara" + }, + { + "appid": 454260, + "normalized_name": "the hinterlands" + }, + { + "appid": 454320, + "normalized_name": "[the sequence]" + }, + { + "appid": 454330, + "normalized_name": "a room beyond" + }, + { + "appid": 454350, + "normalized_name": "days of war" + }, + { + "appid": 454380, + "normalized_name": "champions of breakfast" + }, + { + "appid": 454390, + "normalized_name": "rally copters" + }, + { + "appid": 454410, + "normalized_name": "giga wrecker" + }, + { + "appid": 454420, + "normalized_name": "mini metal" + }, + { + "appid": 454480, + "normalized_name": "break through artificial maze" + }, + { + "appid": 454520, + "normalized_name": "militant" + }, + { + "appid": 454530, + "normalized_name": "decisive campaigns barbarossa" + }, + { + "appid": 454540, + "normalized_name": "luckcatchers" + }, + { + "appid": 454570, + "normalized_name": "i am caligula" + }, + { + "appid": 454580, + "normalized_name": "spider wars" + }, + { + "appid": 454610, + "normalized_name": "demon's crystals" + }, + { + "appid": 454630, + "normalized_name": "button frenzy" + }, + { + "appid": 454650, + "normalized_name": "dragon ball xenoverse 2" + }, + { + "appid": 454670, + "normalized_name": "piggy princess" + }, + { + "appid": 454690, + "normalized_name": "cyber city 2157 the visual novel" + }, + { + "appid": 454700, + "normalized_name": "shiny gauntlet" + }, + { + "appid": 454720, + "normalized_name": "ram boe" + }, + { + "appid": 454730, + "normalized_name": "world of undead" + }, + { + "appid": 454750, + "normalized_name": "aeternum" + }, + { + "appid": 454770, + "normalized_name": "mystic melee" + }, + { + "appid": 454780, + "normalized_name": "atriage" + }, + { + "appid": 454830, + "normalized_name": "beach ball valley" + }, + { + "appid": 454870, + "normalized_name": "magic quest" + }, + { + "appid": 454890, + "normalized_name": "project starship" + }, + { + "appid": 454900, + "normalized_name": "amaranthine" + }, + { + "appid": 454950, + "normalized_name": "mainlining" + }, + { + "appid": 454970, + "normalized_name": "gravity den" + }, + { + "appid": 455020, + "normalized_name": "jackpot poker by pokerstars" + }, + { + "appid": 455080, + "normalized_name": "awakening the redleaf forest collector's" + }, + { + "appid": 455100, + "normalized_name": "gerty" + }, + { + "appid": 455110, + "normalized_name": "pertinence" + }, + { + "appid": 455120, + "normalized_name": "stay close" + }, + { + "appid": 455190, + "normalized_name": "domain defense vr" + }, + { + "appid": 455200, + "normalized_name": "the battle for sector 219" + }, + { + "appid": 455230, + "normalized_name": "bazaar" + }, + { + "appid": 455300, + "normalized_name": "deuterium wars" + }, + { + "appid": 455310, + "normalized_name": "bloody chronicles new cycle of death visual novel" + }, + { + "appid": 455400, + "normalized_name": "pac man 256" + }, + { + "appid": 455440, + "normalized_name": "spell fighter vr" + }, + { + "appid": 455490, + "normalized_name": "don't die dateless dummy!" + }, + { + "appid": 455590, + "normalized_name": "clumsy runners" + }, + { + "appid": 455640, + "normalized_name": "edgar" + }, + { + "appid": 455690, + "normalized_name": "pixel puzzles junior jigsaw" + }, + { + "appid": 455710, + "normalized_name": "project rpg" + }, + { + "appid": 455770, + "normalized_name": "yamayama" + }, + { + "appid": 455820, + "normalized_name": "omensight" + }, + { + "appid": 455830, + "normalized_name": "frightshow fighter" + }, + { + "appid": 455910, + "normalized_name": "star wars rogue squadron 3d" + }, + { + "appid": 455940, + "normalized_name": "odd||even" + }, + { + "appid": 455960, + "normalized_name": "domain defense" + }, + { + "appid": 455970, + "normalized_name": "nokori" + }, + { + "appid": 455980, + "normalized_name": "judgment apocalypse survival simulation" + }, + { + "appid": 455990, + "normalized_name": "smash pixel racing" + }, + { + "appid": 456090, + "normalized_name": "dead some day" + }, + { + "appid": 456130, + "normalized_name": "space scaven" + }, + { + "appid": 456140, + "normalized_name": "bobo and the chest of nightmares" + }, + { + "appid": 456160, + "normalized_name": "flag n frag" + }, + { + "appid": 456170, + "normalized_name": "bannerman" + }, + { + "appid": 456180, + "normalized_name": "the american dream" + }, + { + "appid": 456390, + "normalized_name": "exception" + }, + { + "appid": 456420, + "normalized_name": "gunslinger trainer" + }, + { + "appid": 456430, + "normalized_name": "christmas adventure candy storm" + }, + { + "appid": 456440, + "normalized_name": "the orphan dreams" + }, + { + "appid": 456540, + "normalized_name": "star wars rebel assault i + ii" + }, + { + "appid": 456650, + "normalized_name": "kewtia crystallite hunt" + }, + { + "appid": 456660, + "normalized_name": "slime & friends" + }, + { + "appid": 456670, + "normalized_name": "hand of fate 2" + }, + { + "appid": 456690, + "normalized_name": "weather lord following the princess collector's" + }, + { + "appid": 456750, + "normalized_name": "the room three" + }, + { + "appid": 456760, + "normalized_name": "a dragon girl looks up at the endless sky" + }, + { + "appid": 456780, + "normalized_name": "ducati 90th anniversary" + }, + { + "appid": 456810, + "normalized_name": "zombillie" + }, + { + "appid": 456830, + "normalized_name": "dual core" + }, + { + "appid": 456920, + "normalized_name": "gary the gull" + }, + { + "appid": 457010, + "normalized_name": "starsone" + }, + { + "appid": 457130, + "normalized_name": "runes the forgotten path" + }, + { + "appid": 457140, + "normalized_name": "oxygen not included" + }, + { + "appid": 457210, + "normalized_name": "seum speedrunners from hell" + }, + { + "appid": 457250, + "normalized_name": "oblitacrater" + }, + { + "appid": 457260, + "normalized_name": "omen of sorrow" + }, + { + "appid": 457320, + "normalized_name": "holoball" + }, + { + "appid": 457330, + "normalized_name": "high octane drift" + }, + { + "appid": 457340, + "normalized_name": "dimensional" + }, + { + "appid": 457370, + "normalized_name": "alexa's wild night" + }, + { + "appid": 457380, + "normalized_name": "storm vr" + }, + { + "appid": 457410, + "normalized_name": "hastilude" + }, + { + "appid": 457420, + "normalized_name": "surgeon simulator vr meet the medic" + }, + { + "appid": 457450, + "normalized_name": "defend your crypt" + }, + { + "appid": 457480, + "normalized_name": "domino sky" + }, + { + "appid": 457490, + "normalized_name": "forgotten not lost a kinetic novel" + }, + { + "appid": 457520, + "normalized_name": "moustache mountain" + }, + { + "appid": 457530, + "normalized_name": "my lady" + }, + { + "appid": 457550, + "normalized_name": "bigscreen beta" + }, + { + "appid": 457570, + "normalized_name": "camp sunshine" + }, + { + "appid": 457580, + "normalized_name": "the visitor" + }, + { + "appid": 457600, + "normalized_name": "emerge cities of the apocalypse" + }, + { + "appid": 457650, + "normalized_name": "stonehenge vr sandbox" + }, + { + "appid": 457660, + "normalized_name": "andromedum" + }, + { + "appid": 457680, + "normalized_name": "opus the day we found earth" + }, + { + "appid": 457690, + "normalized_name": "hotel blind" + }, + { + "appid": 457710, + "normalized_name": "road madness" + }, + { + "appid": 457730, + "normalized_name": "mushroom wars 2" + }, + { + "appid": 457760, + "normalized_name": "the signal from tölva" + }, + { + "appid": 457770, + "normalized_name": "audio arena" + }, + { + "appid": 457810, + "normalized_name": "sky to fly soulless leviathan" + }, + { + "appid": 457820, + "normalized_name": "outrage" + }, + { + "appid": 457860, + "normalized_name": "apollo 11 vr" + }, + { + "appid": 457870, + "normalized_name": "minigame party vr" + }, + { + "appid": 457890, + "normalized_name": "tumbleseed" + }, + { + "appid": 457960, + "normalized_name": "holopoint" + }, + { + "appid": 457980, + "normalized_name": "adele following the signs" + }, + { + "appid": 458000, + "normalized_name": "march of the living" + }, + { + "appid": 458030, + "normalized_name": "starfringe adversus" + }, + { + "appid": 458060, + "normalized_name": "drusilla dreams" + }, + { + "appid": 458110, + "normalized_name": "vreakout" + }, + { + "appid": 458170, + "normalized_name": "spiritsphere dx" + }, + { + "appid": 458180, + "normalized_name": "postz zombies vr" + }, + { + "appid": 458230, + "normalized_name": "infinite shooter" + }, + { + "appid": 458290, + "normalized_name": "space bit attack" + }, + { + "appid": 458330, + "normalized_name": "vilmonic" + }, + { + "appid": 458370, + "normalized_name": "vr baseball" + }, + { + "appid": 458380, + "normalized_name": "gahkthun of the golden lightning steam" + }, + { + "appid": 458420, + "normalized_name": "last heroes 3" + }, + { + "appid": 458430, + "normalized_name": "steel seed" + }, + { + "appid": 458450, + "normalized_name": "gain" + }, + { + "appid": 458470, + "normalized_name": "grim legends 3 the dark city" + }, + { + "appid": 458480, + "normalized_name": "mythic wonders the philosopher's stone" + }, + { + "appid": 458490, + "normalized_name": "who must die" + }, + { + "appid": 458500, + "normalized_name": "babylon 2055 pinball" + }, + { + "appid": 458510, + "normalized_name": "zombie pinball" + }, + { + "appid": 458520, + "normalized_name": "wrath of anna" + }, + { + "appid": 458540, + "normalized_name": "lines" + }, + { + "appid": 458560, + "normalized_name": "plastic playground" + }, + { + "appid": 458580, + "normalized_name": "windlands 2" + }, + { + "appid": 458590, + "normalized_name": "abe vr" + }, + { + "appid": 458600, + "normalized_name": "zroll" + }, + { + "appid": 458630, + "normalized_name": "political animals" + }, + { + "appid": 458660, + "normalized_name": "the slimeking's tower" + }, + { + "appid": 458700, + "normalized_name": "cursor challenge" + }, + { + "appid": 458710, + "normalized_name": "kingdom rush frontiers tower defense" + }, + { + "appid": 458730, + "normalized_name": "conception ii children of the seven stars" + }, + { + "appid": 458760, + "normalized_name": "palinurus" + }, + { + "appid": 458770, + "normalized_name": "wrc 6 fia world rally championship" + }, + { + "appid": 458820, + "normalized_name": "states firms & households" + }, + { + "appid": 458830, + "normalized_name": "snooker nation championship" + }, + { + "appid": 458920, + "normalized_name": "carnival games vr" + }, + { + "appid": 458970, + "normalized_name": "intruder alert ixian operations" + }, + { + "appid": 458990, + "normalized_name": "astral domine" + }, + { + "appid": 459010, + "normalized_name": "ghost town mine ride & shootin' gallery" + }, + { + "appid": 459020, + "normalized_name": "melting hearts our love will grow 2" + }, + { + "appid": 459040, + "normalized_name": "medieval battlefields" + }, + { + "appid": 459050, + "normalized_name": "wizards home" + }, + { + "appid": 459080, + "normalized_name": "yiik a postmodern rpg" + }, + { + "appid": 459090, + "normalized_name": "masquerada songs and shadows" + }, + { + "appid": 459130, + "normalized_name": "love in the glen" + }, + { + "appid": 459150, + "normalized_name": "super cat herding totally awesome" + }, + { + "appid": 459160, + "normalized_name": "allods online" + }, + { + "appid": 459170, + "normalized_name": "discovr egypt king tut's tomb" + }, + { + "appid": 459220, + "normalized_name": "halo wars" + }, + { + "appid": 459260, + "normalized_name": "bowslinger" + }, + { + "appid": 459310, + "normalized_name": "the hero project redemption season" + }, + { + "appid": 459350, + "normalized_name": "battlesloths 2025 the great pizza wars" + }, + { + "appid": 459370, + "normalized_name": "riverbond" + }, + { + "appid": 459410, + "normalized_name": "sector 724" + }, + { + "appid": 459470, + "normalized_name": "wars of napoleon" + }, + { + "appid": 459520, + "normalized_name": "kinacoustic" + }, + { + "appid": 459540, + "normalized_name": "cherry tree high girls' fight" + }, + { + "appid": 459580, + "normalized_name": "lightwalk" + }, + { + "appid": 459610, + "normalized_name": "star fleet armada rogue adventures" + }, + { + "appid": 459630, + "normalized_name": "r.c. bot inc." + }, + { + "appid": 459640, + "normalized_name": "you... and who else?" + }, + { + "appid": 459680, + "normalized_name": "auro a monster bumping adventure" + }, + { + "appid": 459730, + "normalized_name": "a world with no colour" + }, + { + "appid": 459760, + "normalized_name": "exotic matter" + }, + { + "appid": 459770, + "normalized_name": "longshot universe" + }, + { + "appid": 459780, + "normalized_name": "vektron revenge" + }, + { + "appid": 459820, + "normalized_name": "crush crush" + }, + { + "appid": 459830, + "normalized_name": "final days" + }, + { + "appid": 459840, + "normalized_name": "monster bash hd" + }, + { + "appid": 459880, + "normalized_name": "playfortress" + }, + { + "appid": 459900, + "normalized_name": "sokos" + }, + { + "appid": 459940, + "normalized_name": "deer man" + }, + { + "appid": 460060, + "normalized_name": "varenje" + }, + { + "appid": 460120, + "normalized_name": "megadimension neptunia vii" + }, + { + "appid": 460140, + "normalized_name": "midnight at the celestial palace part i" + }, + { + "appid": 460150, + "normalized_name": "one last chance" + }, + { + "appid": 460160, + "normalized_name": "the leisure of grisaia" + }, + { + "appid": 460190, + "normalized_name": "rocket riot" + }, + { + "appid": 460210, + "normalized_name": "bearslayer" + }, + { + "appid": 460220, + "normalized_name": "xenoraid the first space war" + }, + { + "appid": 460230, + "normalized_name": "starters orders 6 horse racing" + }, + { + "appid": 460250, + "normalized_name": "🔴 circles" + }, + { + "appid": 460340, + "normalized_name": "guards" + }, + { + "appid": 460430, + "normalized_name": "the letter horror visual novel" + }, + { + "appid": 460510, + "normalized_name": "one dark night" + }, + { + "appid": 460540, + "normalized_name": "temple of rust" + }, + { + "appid": 460560, + "normalized_name": "blamdown udder fury" + }, + { + "appid": 460580, + "normalized_name": "star chart" + }, + { + "appid": 460630, + "normalized_name": "trouble witches origin episode1 daughters of amalgam" + }, + { + "appid": 460640, + "normalized_name": "breached" + }, + { + "appid": 460650, + "normalized_name": "tick tock bang bang" + }, + { + "appid": 460700, + "normalized_name": "song of the deep" + }, + { + "appid": 460730, + "normalized_name": "ghosts and dragons" + }, + { + "appid": 460750, + "normalized_name": "blade ballet" + }, + { + "appid": 460780, + "normalized_name": "avadon 3 the warborn" + }, + { + "appid": 460790, + "normalized_name": "bayonetta" + }, + { + "appid": 460810, + "normalized_name": "vanquish" + }, + { + "appid": 460850, + "normalized_name": "allumette" + }, + { + "appid": 460910, + "normalized_name": "a gents" + }, + { + "appid": 460920, + "normalized_name": "steep" + }, + { + "appid": 460930, + "normalized_name": "tom clancy's ghost recon wildlands" + }, + { + "appid": 460940, + "normalized_name": "father´s island" + }, + { + "appid": 460950, + "normalized_name": "katana zero" + }, + { + "appid": 460960, + "normalized_name": "the deed dynasty" + }, + { + "appid": 460970, + "normalized_name": "soulcaster part i & ii" + }, + { + "appid": 460990, + "normalized_name": "the impossible travel agency" + }, + { + "appid": 461010, + "normalized_name": "roll'd" + }, + { + "appid": 461030, + "normalized_name": "a long way home" + }, + { + "appid": 461040, + "normalized_name": "pico park classic" + }, + { + "appid": 461100, + "normalized_name": "steamdolls vr" + }, + { + "appid": 461170, + "normalized_name": "bucket detective" + }, + { + "appid": 461180, + "normalized_name": "surrealvr" + }, + { + "appid": 461190, + "normalized_name": "disobey revolt simulator" + }, + { + "appid": 461210, + "normalized_name": "riding out" + }, + { + "appid": 461220, + "normalized_name": "beglitched" + }, + { + "appid": 461230, + "normalized_name": "dashy square" + }, + { + "appid": 461280, + "normalized_name": "missileman origins" + }, + { + "appid": 461320, + "normalized_name": "smackitball" + }, + { + "appid": 461340, + "normalized_name": "a timely intervention" + }, + { + "appid": 461350, + "normalized_name": "the king's heroes" + }, + { + "appid": 461360, + "normalized_name": "thorne son of slaves (ep.2)" + }, + { + "appid": 461370, + "normalized_name": "midnight's blessing 2" + }, + { + "appid": 461380, + "normalized_name": "a princess' tale" + }, + { + "appid": 461390, + "normalized_name": "bulby diamond course" + }, + { + "appid": 461400, + "normalized_name": "massive" + }, + { + "appid": 461410, + "normalized_name": "protonwar" + }, + { + "appid": 461430, + "normalized_name": "emergenyc" + }, + { + "appid": 461480, + "normalized_name": "archibald's adventures" + }, + { + "appid": 461500, + "normalized_name": "omega agent" + }, + { + "appid": 461510, + "normalized_name": "tears of avia" + }, + { + "appid": 461520, + "normalized_name": "grizzly valley" + }, + { + "appid": 461560, + "normalized_name": "mandagon" + }, + { + "appid": 461580, + "normalized_name": "galaxy cannon rider" + }, + { + "appid": 461590, + "normalized_name": "the way of love sub zero" + }, + { + "appid": 461600, + "normalized_name": "zipple world 2 the sweet chaos" + }, + { + "appid": 461620, + "normalized_name": "predynastic egypt" + }, + { + "appid": 461640, + "normalized_name": "sins of the demon rpg" + }, + { + "appid": 461650, + "normalized_name": "it's killing time" + }, + { + "appid": 461700, + "normalized_name": "seduce me 2 the demon war" + }, + { + "appid": 461710, + "normalized_name": "tales across time" + }, + { + "appid": 461730, + "normalized_name": "blaite" + }, + { + "appid": 461750, + "normalized_name": "ghoul kid" + }, + { + "appid": 461760, + "normalized_name": "reptilian rebellion" + }, + { + "appid": 461780, + "normalized_name": "moonstone tavern a fantasy tavern sim!" + }, + { + "appid": 461810, + "normalized_name": "cafe 0 ~the sleeping beast~" + }, + { + "appid": 461820, + "normalized_name": "legionwood 1 tale of the two swords" + }, + { + "appid": 461830, + "normalized_name": "adventure apes and the mayan mystery" + }, + { + "appid": 461840, + "normalized_name": "zenge" + }, + { + "appid": 461850, + "normalized_name": "abrix 2 diamond version" + }, + { + "appid": 461860, + "normalized_name": "tower dwellers" + }, + { + "appid": 461870, + "normalized_name": "police simulator patrol duty" + }, + { + "appid": 461880, + "normalized_name": "hyposphere" + }, + { + "appid": 461890, + "normalized_name": "north" + }, + { + "appid": 461940, + "normalized_name": "plancon space conflict" + }, + { + "appid": 461950, + "normalized_name": "beat cop" + }, + { + "appid": 461970, + "normalized_name": "skyreach" + }, + { + "appid": 461990, + "normalized_name": "the prison game" + }, + { + "appid": 462000, + "normalized_name": "cyberpong" + }, + { + "appid": 462070, + "normalized_name": "iwo bloodbath in the bonins" + }, + { + "appid": 462100, + "normalized_name": "starr mazer dsp" + }, + { + "appid": 462110, + "normalized_name": "3 coins at school" + }, + { + "appid": 462120, + "normalized_name": "rustwalker legends" + }, + { + "appid": 462130, + "normalized_name": "momentum" + }, + { + "appid": 462220, + "normalized_name": "mahjong deluxe 3" + }, + { + "appid": 462240, + "normalized_name": "post human w.a.r" + }, + { + "appid": 462250, + "normalized_name": "boiling bolt" + }, + { + "appid": 462380, + "normalized_name": "music of the spheres" + }, + { + "appid": 462400, + "normalized_name": "slide ride arcade" + }, + { + "appid": 462420, + "normalized_name": "eyescream" + }, + { + "appid": 462480, + "normalized_name": "sweet escape vr" + }, + { + "appid": 462520, + "normalized_name": "super kaiju" + }, + { + "appid": 462530, + "normalized_name": "8i make vr human" + }, + { + "appid": 462570, + "normalized_name": "new yankee in king arthur's court" + }, + { + "appid": 462580, + "normalized_name": "new yankee in santa's service" + }, + { + "appid": 462590, + "normalized_name": "taekwondo grand prix" + }, + { + "appid": 462620, + "normalized_name": "pocket kingdom" + }, + { + "appid": 462630, + "normalized_name": "riftstar raiders" + }, + { + "appid": 462640, + "normalized_name": "surf world series" + }, + { + "appid": 462670, + "normalized_name": "vr xterminator" + }, + { + "appid": 462680, + "normalized_name": "balancity" + }, + { + "appid": 462700, + "normalized_name": "cricket captain 2016" + }, + { + "appid": 462730, + "normalized_name": "townopolis" + }, + { + "appid": 462770, + "normalized_name": "pyre" + }, + { + "appid": 462780, + "normalized_name": "darksiders warmastered" + }, + { + "appid": 462830, + "normalized_name": "airline director 2 tycoon game" + }, + { + "appid": 462860, + "normalized_name": "crawlers and brawlers" + }, + { + "appid": 462910, + "normalized_name": "poly runner vr" + }, + { + "appid": 462930, + "normalized_name": "adventure communist" + }, + { + "appid": 462940, + "normalized_name": "making history the second world war" + }, + { + "appid": 462960, + "normalized_name": "caveman world mountains of unga boonga" + }, + { + "appid": 462990, + "normalized_name": "tomoyo after ~it's a wonderful life~ english" + }, + { + "appid": 463000, + "normalized_name": "hero battle" + }, + { + "appid": 463010, + "normalized_name": "one way flight" + }, + { + "appid": 463020, + "normalized_name": "wander no more" + }, + { + "appid": 463030, + "normalized_name": "bottle (2016)" + }, + { + "appid": 463060, + "normalized_name": "clover tale" + }, + { + "appid": 463070, + "normalized_name": "mecha ritz steel rondo" + }, + { + "appid": 463100, + "normalized_name": "liveza death of the earth" + }, + { + "appid": 463110, + "normalized_name": "farnham fables" + }, + { + "appid": 463120, + "normalized_name": "mop operation cleanup" + }, + { + "appid": 463130, + "normalized_name": "bug n out" + }, + { + "appid": 463140, + "normalized_name": "glory warrior lord of darkness" + }, + { + "appid": 463150, + "normalized_name": "barrier x" + }, + { + "appid": 463160, + "normalized_name": "super dungeon tactics" + }, + { + "appid": 463170, + "normalized_name": "jagged alliance rage!" + }, + { + "appid": 463180, + "normalized_name": "super blue fighter" + }, + { + "appid": 463210, + "normalized_name": "state of anarchy" + }, + { + "appid": 463220, + "normalized_name": "dungeon of zolthan" + }, + { + "appid": 463250, + "normalized_name": "one tower" + }, + { + "appid": 463270, + "normalized_name": "ghost 1.0" + }, + { + "appid": 463290, + "normalized_name": "kismet" + }, + { + "appid": 463320, + "normalized_name": "the sea eternal" + }, + { + "appid": 463350, + "normalized_name": "storm of spears rpg" + }, + { + "appid": 463390, + "normalized_name": "one thousand lies" + }, + { + "appid": 463400, + "normalized_name": "spellbound" + }, + { + "appid": 463410, + "normalized_name": "panic pump can you save them all?" + }, + { + "appid": 463430, + "normalized_name": "ironguard" + }, + { + "appid": 463440, + "normalized_name": "retool" + }, + { + "appid": 463450, + "normalized_name": "bipolar game" + }, + { + "appid": 463460, + "normalized_name": "resette's prescription ~book of memory swaying scale~" + }, + { + "appid": 463480, + "normalized_name": "a shooty bit" + }, + { + "appid": 463510, + "normalized_name": "norman's great illusion" + }, + { + "appid": 463530, + "normalized_name": "empires of the undergrowth" + }, + { + "appid": 463540, + "normalized_name": "streetcraft" + }, + { + "appid": 463670, + "normalized_name": "runeyana" + }, + { + "appid": 463710, + "normalized_name": "puzzle galaxies" + }, + { + "appid": 463730, + "normalized_name": "bioframe outpost" + }, + { + "appid": 463760, + "normalized_name": "the beggar's ride" + }, + { + "appid": 463800, + "normalized_name": "freeholder" + }, + { + "appid": 463830, + "normalized_name": "izeriya" + }, + { + "appid": 463850, + "normalized_name": "muddy heights 2" + }, + { + "appid": 463860, + "normalized_name": "shadows of kurgansk" + }, + { + "appid": 463870, + "normalized_name": "deathwave" + }, + { + "appid": 463880, + "normalized_name": "beyond magic" + }, + { + "appid": 463920, + "normalized_name": "initia elemental arena" + }, + { + "appid": 463930, + "normalized_name": "the dweller" + }, + { + "appid": 463940, + "normalized_name": "shadow over isolation" + }, + { + "appid": 463980, + "normalized_name": "solitairica" + }, + { + "appid": 464040, + "normalized_name": "log drive runner" + }, + { + "appid": 464050, + "normalized_name": "heroes must die" + }, + { + "appid": 464060, + "normalized_name": "ruiner" + }, + { + "appid": 464070, + "normalized_name": "diorama battle of ninja虚拟3d世界 忍者之战" + }, + { + "appid": 464080, + "normalized_name": "kyoto colorful days" + }, + { + "appid": 464100, + "normalized_name": "codex of victory" + }, + { + "appid": 464110, + "normalized_name": "factotum 90" + }, + { + "appid": 464150, + "normalized_name": "regalia of men and monarchs" + }, + { + "appid": 464230, + "normalized_name": "colours of magic aqua teeter" + }, + { + "appid": 464240, + "normalized_name": "detective hunt crownston city pd" + }, + { + "appid": 464260, + "normalized_name": "xeno crisis" + }, + { + "appid": 464340, + "normalized_name": "syberia 3" + }, + { + "appid": 464350, + "normalized_name": "screeps world" + }, + { + "appid": 464360, + "normalized_name": "3030 deathwar redux a space odyssey" + }, + { + "appid": 464380, + "normalized_name": "best of us" + }, + { + "appid": 464400, + "normalized_name": "bounce" + }, + { + "appid": 464440, + "normalized_name": "annie amber" + }, + { + "appid": 464450, + "normalized_name": "dodonpachi resurrection" + }, + { + "appid": 464490, + "normalized_name": "the afterglow of grisaia" + }, + { + "appid": 464500, + "normalized_name": "the melody of grisaia" + }, + { + "appid": 464530, + "normalized_name": "猫肉「cat meat」" + }, + { + "appid": 464540, + "normalized_name": "colosse" + }, + { + "appid": 464610, + "normalized_name": "led it rain" + }, + { + "appid": 464620, + "normalized_name": "siralim 2" + }, + { + "appid": 464630, + "normalized_name": "secret of the royal throne" + }, + { + "appid": 464650, + "normalized_name": "runbow" + }, + { + "appid": 464670, + "normalized_name": "empty soul s&s" + }, + { + "appid": 464690, + "normalized_name": "vroomist" + }, + { + "appid": 464700, + "normalized_name": "maui" + }, + { + "appid": 464740, + "normalized_name": "monsters and medicine" + }, + { + "appid": 464780, + "normalized_name": "chusingura46+1 s" + }, + { + "appid": 464800, + "normalized_name": "twisted worlds" + }, + { + "appid": 464850, + "normalized_name": "don bradman cricket 17" + }, + { + "appid": 464880, + "normalized_name": "stars in shadow" + }, + { + "appid": 464900, + "normalized_name": "pitfall planet" + }, + { + "appid": 464920, + "normalized_name": "surviving mars" + }, + { + "appid": 464940, + "normalized_name": "sketchfab vr" + }, + { + "appid": 464950, + "normalized_name": "sumer" + }, + { + "appid": 464960, + "normalized_name": "hiiro" + }, + { + "appid": 465000, + "normalized_name": "event horizon" + }, + { + "appid": 465010, + "normalized_name": "quantized" + }, + { + "appid": 465020, + "normalized_name": "sector six" + }, + { + "appid": 465050, + "normalized_name": "grey phobia" + }, + { + "appid": 465060, + "normalized_name": "exzeal" + }, + { + "appid": 465070, + "normalized_name": "trizeal remix" + }, + { + "appid": 465090, + "normalized_name": "don bradman cricket 17 demo" + }, + { + "appid": 465100, + "normalized_name": "luna the shadow dust" + }, + { + "appid": 465130, + "normalized_name": "wicce" + }, + { + "appid": 465150, + "normalized_name": "mars odyssey" + }, + { + "appid": 465170, + "normalized_name": "crime secrets crimson lily" + }, + { + "appid": 465180, + "normalized_name": "one day in london" + }, + { + "appid": 465190, + "normalized_name": "space survival" + }, + { + "appid": 465200, + "normalized_name": "fury unleashed" + }, + { + "appid": 465240, + "normalized_name": "serious sam vr the last hope" + }, + { + "appid": 465280, + "normalized_name": "yesterday origins" + }, + { + "appid": 465310, + "normalized_name": "ricerca vr" + }, + { + "appid": 465360, + "normalized_name": "uprising join or die" + }, + { + "appid": 465440, + "normalized_name": "aplowcalypse" + }, + { + "appid": 465450, + "normalized_name": "iomoon" + }, + { + "appid": 465490, + "normalized_name": "stellar tactics" + }, + { + "appid": 465510, + "normalized_name": "sinful eden" + }, + { + "appid": 465520, + "normalized_name": "price" + }, + { + "appid": 465540, + "normalized_name": "adventure world" + }, + { + "appid": 465660, + "normalized_name": "franchise hockey manager 3" + }, + { + "appid": 465670, + "normalized_name": "project g" + }, + { + "appid": 465720, + "normalized_name": "demon hunter 2 new chapter" + }, + { + "appid": 465750, + "normalized_name": "tank battle north africa" + }, + { + "appid": 465760, + "normalized_name": "scrap garden" + }, + { + "appid": 465780, + "normalized_name": "new retro arcade neon" + }, + { + "appid": 465840, + "normalized_name": "the last blade" + }, + { + "appid": 465860, + "normalized_name": "awakening the sunhook spire collector's" + }, + { + "appid": 465870, + "normalized_name": "shock troopers 2nd squad" + }, + { + "appid": 465890, + "normalized_name": "dark parables the final cinderella collector's" + }, + { + "appid": 465900, + "normalized_name": "dark tales edgar allan poe's the gold bug collector's" + }, + { + "appid": 465920, + "normalized_name": "echoes of the past the revenge of the witch collector's" + }, + { + "appid": 465930, + "normalized_name": "oddplanet" + }, + { + "appid": 465960, + "normalized_name": "farm tribe" + }, + { + "appid": 465970, + "normalized_name": "grave mania undead fever" + }, + { + "appid": 465990, + "normalized_name": "hidden expedition the crown of solomon collector's" + }, + { + "appid": 466000, + "normalized_name": "maze subject 360 collector's" + }, + { + "appid": 466010, + "normalized_name": "nevertales the beauty within collector's" + }, + { + "appid": 466020, + "normalized_name": "off the record the linden shades collector's" + }, + { + "appid": 466030, + "normalized_name": "otherworld spring of shadows collector's" + }, + { + "appid": 466040, + "normalized_name": "pet store panic" + }, + { + "appid": 466050, + "normalized_name": "redemption cemetery salvation of the lost collector's" + }, + { + "appid": 466060, + "normalized_name": "shiver vanishing hitchhiker collector's" + }, + { + "appid": 466070, + "normalized_name": "spa mania" + }, + { + "appid": 466080, + "normalized_name": "surface the pantheon collector's" + }, + { + "appid": 466100, + "normalized_name": "witches' legacy the ties that bind collector's" + }, + { + "appid": 466110, + "normalized_name": "shaolin vs wutang" + }, + { + "appid": 466130, + "normalized_name": "white day a labyrinth named school" + }, + { + "appid": 466160, + "normalized_name": "arelite core" + }, + { + "appid": 466170, + "normalized_name": "idling to rule the gods" + }, + { + "appid": 466210, + "normalized_name": "race & destroy" + }, + { + "appid": 466240, + "normalized_name": "deceit" + }, + { + "appid": 466270, + "normalized_name": "half life a place in the west" + }, + { + "appid": 466280, + "normalized_name": "super cube smash" + }, + { + "appid": 466290, + "normalized_name": "bitshift battlegrid" + }, + { + "appid": 466300, + "normalized_name": "planescape torment enhanced" + }, + { + "appid": 466350, + "normalized_name": "fossil echo" + }, + { + "appid": 466420, + "normalized_name": "warriors' wrath" + }, + { + "appid": 466430, + "normalized_name": "choice of alexandria" + }, + { + "appid": 466450, + "normalized_name": "bootleg systems" + }, + { + "appid": 466490, + "normalized_name": "princess isabella the rise of an heir" + }, + { + "appid": 466500, + "normalized_name": "35mm" + }, + { + "appid": 466520, + "normalized_name": "drone hunter vr" + }, + { + "appid": 466560, + "normalized_name": "northgard" + }, + { + "appid": 466580, + "normalized_name": "god's death" + }, + { + "appid": 466630, + "normalized_name": "the pedestrian" + }, + { + "appid": 466660, + "normalized_name": "stash" + }, + { + "appid": 466720, + "normalized_name": "vintage vr" + }, + { + "appid": 466730, + "normalized_name": "king's guard td" + }, + { + "appid": 466740, + "normalized_name": "araya" + }, + { + "appid": 466770, + "normalized_name": "ghost croquet" + }, + { + "appid": 466780, + "normalized_name": "prehistoric tales" + }, + { + "appid": 466800, + "normalized_name": "the dope game" + }, + { + "appid": 466810, + "normalized_name": "soulslayer~灭魂·误佳期~" + }, + { + "appid": 466820, + "normalized_name": "zenodyne r" + }, + { + "appid": 466840, + "normalized_name": "super space pug" + }, + { + "appid": 466860, + "normalized_name": "上帝之城 i:监狱帝国 [city of god i prison empire]" + }, + { + "appid": 466870, + "normalized_name": "aurora nights" + }, + { + "appid": 466890, + "normalized_name": "z.i.o.n." + }, + { + "appid": 466900, + "normalized_name": "hide & spook the haunted alchemist" + }, + { + "appid": 466910, + "normalized_name": "worm.is the game" + }, + { + "appid": 466920, + "normalized_name": "mugen souls z" + }, + { + "appid": 466940, + "normalized_name": "the sandbox evolution craft a 2d pixel universe!" + }, + { + "appid": 466980, + "normalized_name": "can't drive this" + }, + { + "appid": 467000, + "normalized_name": "insincere" + }, + { + "appid": 467090, + "normalized_name": "a game of changes" + }, + { + "appid": 467170, + "normalized_name": "subterrarium" + }, + { + "appid": 467210, + "normalized_name": "evo explores" + }, + { + "appid": 467220, + "normalized_name": "dyna bomb" + }, + { + "appid": 467270, + "normalized_name": "weaves of fate" + }, + { + "appid": 467290, + "normalized_name": "starship titanic" + }, + { + "appid": 467310, + "normalized_name": "rogue port red nightmare" + }, + { + "appid": 467320, + "normalized_name": "god of word" + }, + { + "appid": 467330, + "normalized_name": "just a cleric" + }, + { + "appid": 467340, + "normalized_name": "star surveyor" + }, + { + "appid": 467350, + "normalized_name": "leveron space" + }, + { + "appid": 467360, + "normalized_name": "off peak" + }, + { + "appid": 467370, + "normalized_name": "escape this" + }, + { + "appid": 467380, + "normalized_name": "khimera destroy all monster girls" + }, + { + "appid": 467390, + "normalized_name": "approaching blocks" + }, + { + "appid": 467400, + "normalized_name": "go for launch mercury" + }, + { + "appid": 467440, + "normalized_name": "insignificant" + }, + { + "appid": 467470, + "normalized_name": "shoot shoot mega pack" + }, + { + "appid": 467480, + "normalized_name": "c o s m" + }, + { + "appid": 467490, + "normalized_name": "graven the purple moon prophecy" + }, + { + "appid": 467520, + "normalized_name": "power & revolution" + }, + { + "appid": 467540, + "normalized_name": "fantasy bump" + }, + { + "appid": 467650, + "normalized_name": "demolition" + }, + { + "appid": 467660, + "normalized_name": "paranormal activity the lost soul" + }, + { + "appid": 467680, + "normalized_name": "negligee love stories" + }, + { + "appid": 467700, + "normalized_name": "delightful sins" + }, + { + "appid": 467710, + "normalized_name": "santa girls" + }, + { + "appid": 467720, + "normalized_name": "roomie romance" + }, + { + "appid": 467740, + "normalized_name": "swim meet" + }, + { + "appid": 467750, + "normalized_name": "chromo xy" + }, + { + "appid": 467760, + "normalized_name": "trapper's delight" + }, + { + "appid": 467780, + "normalized_name": "simian.interface++" + }, + { + "appid": 467790, + "normalized_name": "crongdor the barbarian" + }, + { + "appid": 467810, + "normalized_name": "splody" + }, + { + "appid": 467820, + "normalized_name": "zero g arena" + }, + { + "appid": 467850, + "normalized_name": "metagal" + }, + { + "appid": 467900, + "normalized_name": "swordy" + }, + { + "appid": 467910, + "normalized_name": "epθch" + }, + { + "appid": 467930, + "normalized_name": "smashing the battle" + }, + { + "appid": 467940, + "normalized_name": "memoir en code reissue" + }, + { + "appid": 467950, + "normalized_name": "survive in space" + }, + { + "appid": 467960, + "normalized_name": "home behind" + }, + { + "appid": 468050, + "normalized_name": "the last time" + }, + { + "appid": 468070, + "normalized_name": "90 minute fever online football (soccer) manager" + }, + { + "appid": 468080, + "normalized_name": "occurrence at jcr outpost" + }, + { + "appid": 468100, + "normalized_name": "aqua moto racing utopia" + }, + { + "appid": 468110, + "normalized_name": "rescuties! vr" + }, + { + "appid": 468130, + "normalized_name": "nebula" + }, + { + "appid": 468150, + "normalized_name": "trap house" + }, + { + "appid": 468160, + "normalized_name": "ancient go" + }, + { + "appid": 468170, + "normalized_name": "acidpunk echoes of doll city" + }, + { + "appid": 468240, + "normalized_name": "vr regatta the sailing game" + }, + { + "appid": 468310, + "normalized_name": "she wants me dead" + }, + { + "appid": 468320, + "normalized_name": "mini golf mundo" + }, + { + "appid": 468330, + "normalized_name": "hive altenum wars" + }, + { + "appid": 468350, + "normalized_name": "hexaverse" + }, + { + "appid": 468490, + "normalized_name": "neon space" + }, + { + "appid": 468530, + "normalized_name": "a date in the park" + }, + { + "appid": 468560, + "normalized_name": "blind trust" + }, + { + "appid": 468570, + "normalized_name": "de void" + }, + { + "appid": 468650, + "normalized_name": "super comboman smash" + }, + { + "appid": 468670, + "normalized_name": "speed brawl" + }, + { + "appid": 468700, + "normalized_name": "nvidia vr funhouse" + }, + { + "appid": 468740, + "normalized_name": "snow fortress" + }, + { + "appid": 468780, + "normalized_name": "the concourse" + }, + { + "appid": 468800, + "normalized_name": "arkshot" + }, + { + "appid": 468820, + "normalized_name": "titans of space plus" + }, + { + "appid": 468920, + "normalized_name": "fishing simulator" + }, + { + "appid": 468930, + "normalized_name": "phantaruk" + }, + { + "appid": 469550, + "normalized_name": "bambino rally 3" + }, + { + "appid": 469600, + "normalized_name": "legion td 2 multiplayer tower defense" + }, + { + "appid": 469610, + "normalized_name": "rick and morty virtual rick ality" + }, + { + "appid": 469710, + "normalized_name": "shattered throne" + }, + { + "appid": 469720, + "normalized_name": "monsters' den godfall" + }, + { + "appid": 469730, + "normalized_name": "super mega neo pug" + }, + { + "appid": 469790, + "normalized_name": "linelight" + }, + { + "appid": 469800, + "normalized_name": "evolution board game" + }, + { + "appid": 469820, + "normalized_name": "genital jousting" + }, + { + "appid": 469890, + "normalized_name": "space codex" + }, + { + "appid": 469900, + "normalized_name": "paradox paradigm" + }, + { + "appid": 469920, + "normalized_name": "hackmud" + }, + { + "appid": 469930, + "normalized_name": "pandum online" + }, + { + "appid": 469980, + "normalized_name": "legend of miro" + }, + { + "appid": 469990, + "normalized_name": "nekopalive" + }, + { + "appid": 470020, + "normalized_name": "snarfquest tales episode 1 the beginning" + }, + { + "appid": 470040, + "normalized_name": "spellgear" + }, + { + "appid": 470060, + "normalized_name": "1917 the alien invasion dx" + }, + { + "appid": 470090, + "normalized_name": "quantum replica" + }, + { + "appid": 470130, + "normalized_name": "eclipse defending the motherland" + }, + { + "appid": 470140, + "normalized_name": "funklift" + }, + { + "appid": 470170, + "normalized_name": "evangeline" + }, + { + "appid": 470210, + "normalized_name": "rocketbirds 2 evolution" + }, + { + "appid": 470220, + "normalized_name": "uno" + }, + { + "appid": 470260, + "normalized_name": "event[0]" + }, + { + "appid": 470270, + "normalized_name": "tribal pass" + }, + { + "appid": 470280, + "normalized_name": "lost route" + }, + { + "appid": 470300, + "normalized_name": "winged sakura demon civil war" + }, + { + "appid": 470310, + "normalized_name": "troubleshooter abandoned children" + }, + { + "appid": 470440, + "normalized_name": "matris" + }, + { + "appid": 470450, + "normalized_name": "where's my helmet?" + }, + { + "appid": 470470, + "normalized_name": "birdsketball" + }, + { + "appid": 470480, + "normalized_name": "angel express [tokkyu tenshi]" + }, + { + "appid": 470490, + "normalized_name": "rollergirls from beyond" + }, + { + "appid": 470580, + "normalized_name": "in the shadows" + }, + { + "appid": 470590, + "normalized_name": "moto rkd dash sp" + }, + { + "appid": 470740, + "normalized_name": "demolish & build 2017" + }, + { + "appid": 470760, + "normalized_name": "antiflux" + }, + { + "appid": 470780, + "normalized_name": "she remembered caterpillars" + }, + { + "appid": 470890, + "normalized_name": "warfire" + }, + { + "appid": 471010, + "normalized_name": "seven enhanced" + }, + { + "appid": 471160, + "normalized_name": "moonshot galaxy" + }, + { + "appid": 471170, + "normalized_name": "romopolis" + }, + { + "appid": 471200, + "normalized_name": "melody" + }, + { + "appid": 471220, + "normalized_name": "don't drop the bass" + }, + { + "appid": 471330, + "normalized_name": "versus squad" + }, + { + "appid": 471380, + "normalized_name": "urban pirate" + }, + { + "appid": 471400, + "normalized_name": "space jammers" + }, + { + "appid": 471550, + "normalized_name": "nine parchments" + }, + { + "appid": 471570, + "normalized_name": "grandpa's table" + }, + { + "appid": 471630, + "normalized_name": "rexodus a vr story experience" + }, + { + "appid": 471660, + "normalized_name": "kingspray graffiti vr" + }, + { + "appid": 471700, + "normalized_name": "greedy guns" + }, + { + "appid": 471710, + "normalized_name": "rec room" + }, + { + "appid": 471720, + "normalized_name": "k station" + }, + { + "appid": 471730, + "normalized_name": "rocket ski racing" + }, + { + "appid": 471770, + "normalized_name": "in case of emergency release raptor" + }, + { + "appid": 471810, + "normalized_name": "death squared" + }, + { + "appid": 471920, + "normalized_name": "pan pan" + }, + { + "appid": 472060, + "normalized_name": "ortus regni" + }, + { + "appid": 472420, + "normalized_name": "duke grabowski mighty swashbuckler" + }, + { + "appid": 472680, + "normalized_name": "elisa the innkeeper prequel" + }, + { + "appid": 472720, + "normalized_name": "car car crash hands on" + }, + { + "appid": 472740, + "normalized_name": "ghrian" + }, + { + "appid": 472770, + "normalized_name": "help the game" + }, + { + "appid": 472830, + "normalized_name": "ke tsu no ana" + }, + { + "appid": 472870, + "normalized_name": "higurashi when they cry hou ch.3 tatarigoroshi" + }, + { + "appid": 473140, + "normalized_name": "bomberzone" + }, + { + "appid": 473450, + "normalized_name": "the narrator is a dick" + }, + { + "appid": 473460, + "normalized_name": "memory oblivion box" + }, + { + "appid": 473470, + "normalized_name": "purgatory" + }, + { + "appid": 473480, + "normalized_name": "miko mole" + }, + { + "appid": 473510, + "normalized_name": "gal x e" + }, + { + "appid": 473520, + "normalized_name": "autumn" + }, + { + "appid": 473530, + "normalized_name": "slime san superslime" + }, + { + "appid": 473540, + "normalized_name": "raise your own clone" + }, + { + "appid": 473550, + "normalized_name": "snowball fps" + }, + { + "appid": 473560, + "normalized_name": "cosmic dust & rust" + }, + { + "appid": 473610, + "normalized_name": "shock tactics" + }, + { + "appid": 473670, + "normalized_name": "the dolls reborn" + }, + { + "appid": 473690, + "normalized_name": "absolver" + }, + { + "appid": 473720, + "normalized_name": "mutant mudds super challenge" + }, + { + "appid": 473750, + "normalized_name": "feudums" + }, + { + "appid": 473770, + "normalized_name": "ballisticng" + }, + { + "appid": 473810, + "normalized_name": "killbot" + }, + { + "appid": 473840, + "normalized_name": "diib's dilemma" + }, + { + "appid": 473910, + "normalized_name": "the nest" + }, + { + "appid": 473920, + "normalized_name": "corinne cross's dead & breakfast" + }, + { + "appid": 473930, + "normalized_name": "steam gift cards" + }, + { + "appid": 473950, + "normalized_name": "manifold garden" + }, + { + "appid": 473970, + "normalized_name": "zombie city defense 2" + }, + { + "appid": 474010, + "normalized_name": "the nadi project" + }, + { + "appid": 474020, + "normalized_name": "ragnorium" + }, + { + "appid": 474030, + "normalized_name": "the abbey of crime extensum" + }, + { + "appid": 474040, + "normalized_name": "karl's kooky warehouse" + }, + { + "appid": 474050, + "normalized_name": "candy blast" + }, + { + "appid": 474210, + "normalized_name": "butcher" + }, + { + "appid": 474220, + "normalized_name": "soldat 2" + }, + { + "appid": 474240, + "normalized_name": "journey to the center of the earth" + }, + { + "appid": 474620, + "normalized_name": "giga girl" + }, + { + "appid": 474730, + "normalized_name": "airship asunder" + }, + { + "appid": 474750, + "normalized_name": "reigns" + }, + { + "appid": 474810, + "normalized_name": "dorke and ymp" + }, + { + "appid": 474830, + "normalized_name": "time in time" + }, + { + "appid": 474880, + "normalized_name": "second coming" + }, + { + "appid": 474890, + "normalized_name": "uncrewed" + }, + { + "appid": 474910, + "normalized_name": "the mahjong huntress" + }, + { + "appid": 474960, + "normalized_name": "quantum break" + }, + { + "appid": 474980, + "normalized_name": "cat president ~a more purrfect union~" + }, + { + "appid": 475050, + "normalized_name": "bloxyz" + }, + { + "appid": 475070, + "normalized_name": "dive starpath" + }, + { + "appid": 475080, + "normalized_name": "cavernus" + }, + { + "appid": 475090, + "normalized_name": "project remedium" + }, + { + "appid": 475150, + "normalized_name": "titan quest anniversary" + }, + { + "appid": 475190, + "normalized_name": "scanner sombre" + }, + { + "appid": 475240, + "normalized_name": "orcs" + }, + { + "appid": 475490, + "normalized_name": "major\\minor" + }, + { + "appid": 475520, + "normalized_name": "holodaze" + }, + { + "appid": 475530, + "normalized_name": "go go electric samurai" + }, + { + "appid": 475550, + "normalized_name": "beholder" + }, + { + "appid": 475620, + "normalized_name": "moai 4 terra incognita collector’s" + }, + { + "appid": 475630, + "normalized_name": "crush online" + }, + { + "appid": 475960, + "normalized_name": "bombslinger" + }, + { + "appid": 476000, + "normalized_name": "slightly magic 8bit legacy" + }, + { + "appid": 476020, + "normalized_name": "reflection of mine" + }, + { + "appid": 476030, + "normalized_name": "johnny graves—the unchosen one" + }, + { + "appid": 476240, + "normalized_name": "knights" + }, + { + "appid": 476370, + "normalized_name": "magatama earrings" + }, + { + "appid": 476410, + "normalized_name": "one small fire at a time" + }, + { + "appid": 476420, + "normalized_name": "heart of crown pc" + }, + { + "appid": 476430, + "normalized_name": "swingstar vr" + }, + { + "appid": 476450, + "normalized_name": "so much blood" + }, + { + "appid": 476460, + "normalized_name": "picross touch" + }, + { + "appid": 476480, + "normalized_name": "heaven forest vr mmo" + }, + { + "appid": 476490, + "normalized_name": "choice of the pirate" + }, + { + "appid": 476510, + "normalized_name": "cally's trials" + }, + { + "appid": 476530, + "normalized_name": "children of a dead earth" + }, + { + "appid": 476540, + "normalized_name": "google spotlight stories pearl" + }, + { + "appid": 476600, + "normalized_name": "call of duty wwii" + }, + { + "appid": 476650, + "normalized_name": "the silver case" + }, + { + "appid": 476670, + "normalized_name": "emberdoom" + }, + { + "appid": 476680, + "normalized_name": "emberdoom vr" + }, + { + "appid": 476700, + "normalized_name": "island 359" + }, + { + "appid": 476710, + "normalized_name": "mechagore" + }, + { + "appid": 476920, + "normalized_name": "amulet of dreams" + }, + { + "appid": 477010, + "normalized_name": "10 minute tower" + }, + { + "appid": 477120, + "normalized_name": "train chase" + }, + { + "appid": 477130, + "normalized_name": "surge" + }, + { + "appid": 477140, + "normalized_name": "sparkdimension" + }, + { + "appid": 477160, + "normalized_name": "human fall flat" + }, + { + "appid": 477170, + "normalized_name": "chamber 19" + }, + { + "appid": 477180, + "normalized_name": "shard games" + }, + { + "appid": 477190, + "normalized_name": "epic snowday adventure" + }, + { + "appid": 477200, + "normalized_name": "descent road to legend" + }, + { + "appid": 477270, + "normalized_name": "lightblade vr" + }, + { + "appid": 477290, + "normalized_name": "magma tsunami" + }, + { + "appid": 477310, + "normalized_name": "space hole 2016" + }, + { + "appid": 477720, + "normalized_name": "toricky" + }, + { + "appid": 477730, + "normalized_name": "eador. imperium" + }, + { + "appid": 477740, + "normalized_name": "zero escape the nonary games" + }, + { + "appid": 477750, + "normalized_name": "thirty years' war" + }, + { + "appid": 477770, + "normalized_name": "ride 2" + }, + { + "appid": 477800, + "normalized_name": "piñata" + }, + { + "appid": 477850, + "normalized_name": "owl force" + }, + { + "appid": 477870, + "normalized_name": "yomawari night alone" + }, + { + "appid": 477900, + "normalized_name": "lord of dwarves" + }, + { + "appid": 477910, + "normalized_name": "wanderer of teandria" + }, + { + "appid": 477950, + "normalized_name": "simple spy" + }, + { + "appid": 478010, + "normalized_name": "abc coloring town" + }, + { + "appid": 478210, + "normalized_name": "buddy" + }, + { + "appid": 478950, + "normalized_name": "v arrr" + }, + { + "appid": 478980, + "normalized_name": "mansions of madness" + }, + { + "appid": 479000, + "normalized_name": "irrevrsible" + }, + { + "appid": 479040, + "normalized_name": "metamorphic" + }, + { + "appid": 479100, + "normalized_name": "music wars empire" + }, + { + "appid": 479110, + "normalized_name": "hunter's legacy" + }, + { + "appid": 479140, + "normalized_name": "framed wings" + }, + { + "appid": 479150, + "normalized_name": "box containment" + }, + { + "appid": 479170, + "normalized_name": "drunk wizards" + }, + { + "appid": 479180, + "normalized_name": "space universe" + }, + { + "appid": 479200, + "normalized_name": "champions of odin" + }, + { + "appid": 479310, + "normalized_name": "doodler" + }, + { + "appid": 479330, + "normalized_name": "crazy stone deep learning the first" + }, + { + "appid": 479990, + "normalized_name": "dungeons & darkness" + }, + { + "appid": 480410, + "normalized_name": "mitch berry challenge" + }, + { + "appid": 480430, + "normalized_name": "hide and shriek" + }, + { + "appid": 480450, + "normalized_name": "floppy heroes" + }, + { + "appid": 480480, + "normalized_name": "slash or die" + }, + { + "appid": 480490, + "normalized_name": "prey" + }, + { + "appid": 480500, + "normalized_name": "dogfight elite" + }, + { + "appid": 480640, + "normalized_name": "pathfinder adventures" + }, + { + "appid": 480650, + "normalized_name": "yu gi oh! legacy of the duelist" + }, + { + "appid": 480690, + "normalized_name": "inbound" + }, + { + "appid": 480770, + "normalized_name": "dreamals" + }, + { + "appid": 480900, + "normalized_name": "slap village reality slap" + }, + { + "appid": 481110, + "normalized_name": "the bunker" + }, + { + "appid": 481180, + "normalized_name": "system crash" + }, + { + "appid": 481190, + "normalized_name": "stable orbit build your own space station" + }, + { + "appid": 481420, + "normalized_name": "final approach pilot" + }, + { + "appid": 481510, + "normalized_name": "night in the woods" + }, + { + "appid": 481600, + "normalized_name": "finding hope" + }, + { + "appid": 481870, + "normalized_name": "mini thief" + }, + { + "appid": 481950, + "normalized_name": "emily displaced" + }, + { + "appid": 482210, + "normalized_name": "quarterback snap" + }, + { + "appid": 482300, + "normalized_name": "investigator" + }, + { + "appid": 482330, + "normalized_name": "legends of the universe starcore" + }, + { + "appid": 482390, + "normalized_name": "the night cafe a vr tribute to vincent van gogh" + }, + { + "appid": 482400, + "normalized_name": "system shock" + }, + { + "appid": 482450, + "normalized_name": "nitroplus blasterz heroines infinite duel" + }, + { + "appid": 482460, + "normalized_name": "reverence the combat experience" + }, + { + "appid": 482890, + "normalized_name": "fantasy kingdom simulator" + }, + { + "appid": 482920, + "normalized_name": "hero zero multiplayer rpg" + }, + { + "appid": 482990, + "normalized_name": "heirs and graces" + }, + { + "appid": 483420, + "normalized_name": "adam wolfe" + }, + { + "appid": 483490, + "normalized_name": "circuitous" + }, + { + "appid": 483680, + "normalized_name": "polydome" + }, + { + "appid": 483770, + "normalized_name": "autobahn police simulator 2" + }, + { + "appid": 483820, + "normalized_name": "four realms" + }, + { + "appid": 483850, + "normalized_name": "guns n' boxes" + }, + { + "appid": 483960, + "normalized_name": "purino party" + }, + { + "appid": 483970, + "normalized_name": "directionless" + }, + { + "appid": 483980, + "normalized_name": "mad father" + }, + { + "appid": 484350, + "normalized_name": "vrz torment" + }, + { + "appid": 484390, + "normalized_name": "hanger world" + }, + { + "appid": 484830, + "normalized_name": "deep blue 3d maze in space" + }, + { + "appid": 484870, + "normalized_name": "battle dome" + }, + { + "appid": 484890, + "normalized_name": "crazy otto" + }, + { + "appid": 484900, + "normalized_name": "aven colony" + }, + { + "appid": 484930, + "normalized_name": "beekyr reloaded" + }, + { + "appid": 484950, + "normalized_name": "恶魔迷宫 | evil maze" + }, + { + "appid": 485000, + "normalized_name": "cthulhu realms" + }, + { + "appid": 485030, + "normalized_name": "planet alpha" + }, + { + "appid": 485040, + "normalized_name": "nurse love addiction" + }, + { + "appid": 485080, + "normalized_name": "megapolis" + }, + { + "appid": 485110, + "normalized_name": "planetfate" + }, + { + "appid": 485130, + "normalized_name": "super red hot hero" + }, + { + "appid": 485160, + "normalized_name": "black hole hazard" + }, + { + "appid": 485230, + "normalized_name": "halp!" + }, + { + "appid": 485240, + "normalized_name": "push for emor" + }, + { + "appid": 485260, + "normalized_name": "talent not included" + }, + { + "appid": 485290, + "normalized_name": "vermillion watch moorgate accord collector's" + }, + { + "appid": 485310, + "normalized_name": "head shot" + }, + { + "appid": 485330, + "normalized_name": "star drifter" + }, + { + "appid": 485340, + "normalized_name": "the orchard of stray sheep" + }, + { + "appid": 485350, + "normalized_name": "winter novel" + }, + { + "appid": 485360, + "normalized_name": "disgraced" + }, + { + "appid": 485370, + "normalized_name": "mad combat marines" + }, + { + "appid": 485380, + "normalized_name": "welcome to the game" + }, + { + "appid": 485390, + "normalized_name": "machine made rebirth" + }, + { + "appid": 485400, + "normalized_name": "mechajammer" + }, + { + "appid": 485430, + "normalized_name": "nal is alive" + }, + { + "appid": 485440, + "normalized_name": "call of the mighty warriors" + }, + { + "appid": 485450, + "normalized_name": "ninja stealth" + }, + { + "appid": 485460, + "normalized_name": "the banner saga 3" + }, + { + "appid": 485490, + "normalized_name": "dungeon journey" + }, + { + "appid": 485500, + "normalized_name": "smithy" + }, + { + "appid": 485510, + "normalized_name": "nioh" + }, + { + "appid": 485560, + "normalized_name": "popixel" + }, + { + "appid": 485570, + "normalized_name": "milford heaven luken's chronicles" + }, + { + "appid": 485600, + "normalized_name": "oese" + }, + { + "appid": 485610, + "normalized_name": "soccer online ball 3d" + }, + { + "appid": 485620, + "normalized_name": "pick a hero" + }, + { + "appid": 485630, + "normalized_name": "brazed" + }, + { + "appid": 485640, + "normalized_name": "genius greedy mouse" + }, + { + "appid": 485650, + "normalized_name": "campaign clicker" + }, + { + "appid": 485660, + "normalized_name": "karma miwa" + }, + { + "appid": 485670, + "normalized_name": "mini golf arena" + }, + { + "appid": 485680, + "normalized_name": "sphereface" + }, + { + "appid": 485690, + "normalized_name": "hope lake" + }, + { + "appid": 485730, + "normalized_name": "shift" + }, + { + "appid": 485750, + "normalized_name": "magnetta" + }, + { + "appid": 485760, + "normalized_name": "legend of numbers" + }, + { + "appid": 485770, + "normalized_name": "penguins of the north" + }, + { + "appid": 485790, + "normalized_name": "jolt super robot racer" + }, + { + "appid": 485800, + "normalized_name": "runeous part one" + }, + { + "appid": 485820, + "normalized_name": "e river cabin journal" + }, + { + "appid": 485830, + "normalized_name": "star merc" + }, + { + "appid": 485860, + "normalized_name": "impossible quest" + }, + { + "appid": 485870, + "normalized_name": "super duper party pooper" + }, + { + "appid": 485880, + "normalized_name": "l u n e" + }, + { + "appid": 485890, + "normalized_name": "summer sale" + }, + { + "appid": 485900, + "normalized_name": "hardware engineers" + }, + { + "appid": 485920, + "normalized_name": "neon warp" + }, + { + "appid": 485950, + "normalized_name": "rise of the ancients" + }, + { + "appid": 485970, + "normalized_name": "cyber sentinel" + }, + { + "appid": 485980, + "normalized_name": "syrian warfare" + }, + { + "appid": 486020, + "normalized_name": "hero" + }, + { + "appid": 486120, + "normalized_name": "escape the past" + }, + { + "appid": 486130, + "normalized_name": "best buds vs bad guys" + }, + { + "appid": 486140, + "normalized_name": "9grids vr" + }, + { + "appid": 486150, + "normalized_name": "radical spectrum volume 1" + }, + { + "appid": 486170, + "normalized_name": "bathory the bloody countess" + }, + { + "appid": 486180, + "normalized_name": "the penguin factory" + }, + { + "appid": 486230, + "normalized_name": "con amore" + }, + { + "appid": 486290, + "normalized_name": "waddle home" + }, + { + "appid": 486300, + "normalized_name": "plan z chapter 1" + }, + { + "appid": 486310, + "normalized_name": "meadow a shelter game" + }, + { + "appid": 486320, + "normalized_name": "orbit satellite defense" + }, + { + "appid": 486350, + "normalized_name": "square arena" + }, + { + "appid": 486360, + "normalized_name": "timore inferno" + }, + { + "appid": 486370, + "normalized_name": "pinball evolution vr" + }, + { + "appid": 486380, + "normalized_name": "shigatari" + }, + { + "appid": 486410, + "normalized_name": "biosys inc" + }, + { + "appid": 486430, + "normalized_name": "sphoxie" + }, + { + "appid": 486440, + "normalized_name": "mosh pit simulator" + }, + { + "appid": 486460, + "normalized_name": "twilight town" + }, + { + "appid": 486470, + "normalized_name": "derelict redux" + }, + { + "appid": 486480, + "normalized_name": "tales of destruction" + }, + { + "appid": 486490, + "normalized_name": "witan" + }, + { + "appid": 486500, + "normalized_name": "spooky heroes" + }, + { + "appid": 486510, + "normalized_name": "tokyo warfare" + }, + { + "appid": 486550, + "normalized_name": "the caretaker dungeon nightshift" + }, + { + "appid": 486630, + "normalized_name": "toxic terror" + }, + { + "appid": 486640, + "normalized_name": "cheaters blackjack 21" + }, + { + "appid": 486650, + "normalized_name": "potato thriller" + }, + { + "appid": 486660, + "normalized_name": "super mixtape" + }, + { + "appid": 486690, + "normalized_name": "pastelia stories" + }, + { + "appid": 486720, + "normalized_name": "bastard bonds" + }, + { + "appid": 486760, + "normalized_name": "master of marbles" + }, + { + "appid": 486780, + "normalized_name": "fruit ninja vr" + }, + { + "appid": 486810, + "normalized_name": "house of snark 6 in 1 bundle" + }, + { + "appid": 486850, + "normalized_name": "card of spirits" + }, + { + "appid": 486860, + "normalized_name": "mmorpg tycoon 2" + }, + { + "appid": 486890, + "normalized_name": "gear gauntlet" + }, + { + "appid": 486940, + "normalized_name": "handball action total" + }, + { + "appid": 486990, + "normalized_name": "jump stars" + }, + { + "appid": 487000, + "normalized_name": "quest hunter" + }, + { + "appid": 487020, + "normalized_name": "fantasy mosaics 14 fourth color" + }, + { + "appid": 487030, + "normalized_name": "beasts battle" + }, + { + "appid": 487040, + "normalized_name": "88 heroes" + }, + { + "appid": 487120, + "normalized_name": "citadel forged with fire" + }, + { + "appid": 487160, + "normalized_name": "trials of azra" + }, + { + "appid": 487180, + "normalized_name": "the lords of the earth flame" + }, + { + "appid": 487220, + "normalized_name": "freebie" + }, + { + "appid": 487250, + "normalized_name": "spaera" + }, + { + "appid": 487330, + "normalized_name": "totally unbalanced" + }, + { + "appid": 487350, + "normalized_name": "pirate pop plus" + }, + { + "appid": 487370, + "normalized_name": "akin" + }, + { + "appid": 487380, + "normalized_name": "tetradecagon" + }, + { + "appid": 487430, + "normalized_name": "karakara" + }, + { + "appid": 487500, + "normalized_name": "fault silence the pedant" + }, + { + "appid": 487530, + "normalized_name": "simple ball extended" + }, + { + "appid": 487580, + "normalized_name": "ludo supremo" + }, + { + "appid": 487590, + "normalized_name": "pepe porcupine" + }, + { + "appid": 487600, + "normalized_name": "puzzles under the hill" + }, + { + "appid": 487630, + "normalized_name": "lantern" + }, + { + "appid": 487700, + "normalized_name": "conan the mighty pig" + }, + { + "appid": 487720, + "normalized_name": "agony" + }, + { + "appid": 487740, + "normalized_name": "tower island explore discover and disassemble" + }, + { + "appid": 487770, + "normalized_name": "hoops vr" + }, + { + "appid": 488020, + "normalized_name": "day of destruction" + }, + { + "appid": 488080, + "normalized_name": "taxi" + }, + { + "appid": 488150, + "normalized_name": "octoshield vr" + }, + { + "appid": 488160, + "normalized_name": "galaxy combat wargames" + }, + { + "appid": 488210, + "normalized_name": "jdm tuner racing" + }, + { + "appid": 488220, + "normalized_name": "valcarta rise of the demon" + }, + { + "appid": 488280, + "normalized_name": "gun done" + }, + { + "appid": 488310, + "normalized_name": "eleven table tennis" + }, + { + "appid": 488330, + "normalized_name": "highway to the moon" + }, + { + "appid": 488360, + "normalized_name": "vistascapes vr" + }, + { + "appid": 488430, + "normalized_name": "galaxy in turmoil" + }, + { + "appid": 488440, + "normalized_name": "angeldust" + }, + { + "appid": 488480, + "normalized_name": "spaceroads" + }, + { + "appid": 488500, + "normalized_name": "the book of commands lost symbol" + }, + { + "appid": 488550, + "normalized_name": "dream car builder" + }, + { + "appid": 488580, + "normalized_name": "hover 2030" + }, + { + "appid": 488590, + "normalized_name": "armed against the undead" + }, + { + "appid": 488660, + "normalized_name": "just deserts" + }, + { + "appid": 488690, + "normalized_name": "mx nitro unleashed" + }, + { + "appid": 488730, + "normalized_name": "god's trigger" + }, + { + "appid": 488760, + "normalized_name": "left hand path" + }, + { + "appid": 488770, + "normalized_name": "her majesty's spiffing" + }, + { + "appid": 488790, + "normalized_name": "south park the fractured but whole" + }, + { + "appid": 488860, + "normalized_name": "madness project nexus" + }, + { + "appid": 488890, + "normalized_name": "gentlemoon 2" + }, + { + "appid": 488910, + "normalized_name": "astral heroes" + }, + { + "appid": 488920, + "normalized_name": "knockout league arcade vr boxing" + }, + { + "appid": 488950, + "normalized_name": "werewolves within" + }, + { + "appid": 488960, + "normalized_name": "star vikings forever" + }, + { + "appid": 489000, + "normalized_name": "the infinite black" + }, + { + "appid": 489020, + "normalized_name": "igrow game" + }, + { + "appid": 489050, + "normalized_name": "whitetail challenge" + }, + { + "appid": 489070, + "normalized_name": "edge of twilight – return to glory" + }, + { + "appid": 489080, + "normalized_name": "spellforge" + }, + { + "appid": 489100, + "normalized_name": "machrace" + }, + { + "appid": 489110, + "normalized_name": "putty pals" + }, + { + "appid": 489120, + "normalized_name": "sling ming" + }, + { + "appid": 489140, + "normalized_name": "mr. shifty" + }, + { + "appid": 489160, + "normalized_name": "vr shooter guns" + }, + { + "appid": 489170, + "normalized_name": "galaxy reavers" + }, + { + "appid": 489220, + "normalized_name": "unforgiving trials the darkest crusade" + }, + { + "appid": 489240, + "normalized_name": "exile to death" + }, + { + "appid": 489260, + "normalized_name": "brut@l" + }, + { + "appid": 489360, + "normalized_name": "case animatronics" + }, + { + "appid": 489370, + "normalized_name": "quarantine" + }, + { + "appid": 489380, + "normalized_name": "quivr" + }, + { + "appid": 489440, + "normalized_name": "tentacult!" + }, + { + "appid": 489470, + "normalized_name": "hide and secret treasure of the ages" + }, + { + "appid": 489520, + "normalized_name": "minion masters" + }, + { + "appid": 489560, + "normalized_name": "astroflux" + }, + { + "appid": 489570, + "normalized_name": "antisphere" + }, + { + "appid": 489580, + "normalized_name": "awa" + }, + { + "appid": 489600, + "normalized_name": "the golf club vr" + }, + { + "appid": 489610, + "normalized_name": "chicken assassin reloaded" + }, + { + "appid": 489630, + "normalized_name": "warhammer 40 000 gladius relics of war" + }, + { + "appid": 489660, + "normalized_name": "fabric" + }, + { + "appid": 489720, + "normalized_name": "conga master" + }, + { + "appid": 489730, + "normalized_name": "run the gamut" + }, + { + "appid": 489740, + "normalized_name": "playthings vr music vacation" + }, + { + "appid": 489760, + "normalized_name": "demon truck" + }, + { + "appid": 489810, + "normalized_name": "blockaid" + }, + { + "appid": 489830, + "normalized_name": "the elder scrolls v skyrim special" + }, + { + "appid": 489900, + "normalized_name": "bayla bunny" + }, + { + "appid": 489930, + "normalized_name": "adventures of bertram fiddle 2 a bleaker predicklement" + }, + { + "appid": 489940, + "normalized_name": "battalion legacy" + }, + { + "appid": 490040, + "normalized_name": "child of the wind" + }, + { + "appid": 490080, + "normalized_name": "lock's quest" + }, + { + "appid": 490100, + "normalized_name": "quell zen" + }, + { + "appid": 490110, + "normalized_name": "the precinct" + }, + { + "appid": 490160, + "normalized_name": "time tenshi 2" + }, + { + "appid": 490170, + "normalized_name": "mind ovr matter" + }, + { + "appid": 490220, + "normalized_name": "prismata" + }, + { + "appid": 490230, + "normalized_name": "swarmriders" + }, + { + "appid": 490250, + "normalized_name": "locomancer" + }, + { + "appid": 490280, + "normalized_name": "realms of magic" + }, + { + "appid": 490300, + "normalized_name": "rabbit island" + }, + { + "appid": 490360, + "normalized_name": "hermodr" + }, + { + "appid": 490370, + "normalized_name": "imperium galactica ii" + }, + { + "appid": 490390, + "normalized_name": "神明的一天世界(god's one day world)" + }, + { + "appid": 490430, + "normalized_name": "octamari rescue" + }, + { + "appid": 490450, + "normalized_name": "tokyo 42" + }, + { + "appid": 490510, + "normalized_name": "pixel puzzles 2 christmas" + }, + { + "appid": 490690, + "normalized_name": "the barbarian and the subterranean caves" + }, + { + "appid": 490820, + "normalized_name": "fly o'clock" + }, + { + "appid": 490840, + "normalized_name": "gnomes & goblins (preview)" + }, + { + "appid": 490860, + "normalized_name": "dashbored" + }, + { + "appid": 490870, + "normalized_name": "weird hero" + }, + { + "appid": 490880, + "normalized_name": "robot legions reborn" + }, + { + "appid": 490890, + "normalized_name": "ne no kami the two princess knights of kyoto" + }, + { + "appid": 490910, + "normalized_name": "control craft 3" + }, + { + "appid": 490920, + "normalized_name": "wolfpack" + }, + { + "appid": 490930, + "normalized_name": "need to know" + }, + { + "appid": 490950, + "normalized_name": "frost" + }, + { + "appid": 490980, + "normalized_name": "daily chthonicle editor's" + }, + { + "appid": 490990, + "normalized_name": "aiball" + }, + { + "appid": 491000, + "normalized_name": "gravity cat" + }, + { + "appid": 491010, + "normalized_name": "in vert" + }, + { + "appid": 491020, + "normalized_name": "revenge of the spirit rite of resurrection" + }, + { + "appid": 491040, + "normalized_name": "bot vice" + }, + { + "appid": 491060, + "normalized_name": "league of evil" + }, + { + "appid": 491070, + "normalized_name": "shout of survival" + }, + { + "appid": 491090, + "normalized_name": "ant queen" + }, + { + "appid": 491100, + "normalized_name": "human we have a problem" + }, + { + "appid": 491110, + "normalized_name": "duckie dash" + }, + { + "appid": 491130, + "normalized_name": "red trigger" + }, + { + "appid": 491160, + "normalized_name": "gembreak" + }, + { + "appid": 491180, + "normalized_name": "discrepant" + }, + { + "appid": 491210, + "normalized_name": "lumbermancer" + }, + { + "appid": 491220, + "normalized_name": "mr. pumpkin adventure" + }, + { + "appid": 491240, + "normalized_name": "lil big invasion" + }, + { + "appid": 491260, + "normalized_name": "take thy throne" + }, + { + "appid": 491280, + "normalized_name": "drift horizon online" + }, + { + "appid": 491330, + "normalized_name": "12 labours of hercules v kids of hellas (platinum edition)" + }, + { + "appid": 491350, + "normalized_name": "way of the red" + }, + { + "appid": 491370, + "normalized_name": "den vänstra handens stig" + }, + { + "appid": 491390, + "normalized_name": "alchemist penguin" + }, + { + "appid": 491420, + "normalized_name": "the 9th day 第九日" + }, + { + "appid": 491440, + "normalized_name": "grim dragons" + }, + { + "appid": 491470, + "normalized_name": "principia master of science" + }, + { + "appid": 491510, + "normalized_name": "vanilla bagel the roguelike" + }, + { + "appid": 491520, + "normalized_name": "zero g vr" + }, + { + "appid": 491530, + "normalized_name": "notruf 112 | emergency call 112" + }, + { + "appid": 491540, + "normalized_name": "the bus" + }, + { + "appid": 491560, + "normalized_name": "momonga pinball adventures" + }, + { + "appid": 491580, + "normalized_name": "mahjong destiny" + }, + { + "appid": 491620, + "normalized_name": "beeftacular" + }, + { + "appid": 491650, + "normalized_name": "reset 1 1" + }, + { + "appid": 491660, + "normalized_name": "assault on the necrospire" + }, + { + "appid": 491700, + "normalized_name": "gotta go" + }, + { + "appid": 491710, + "normalized_name": "gun range vr" + }, + { + "appid": 491720, + "normalized_name": "nary" + }, + { + "appid": 491790, + "normalized_name": "project syria" + }, + { + "appid": 491800, + "normalized_name": "across the line" + }, + { + "appid": 491830, + "normalized_name": "glow" + }, + { + "appid": 491930, + "normalized_name": "my caligula" + }, + { + "appid": 491950, + "normalized_name": "orwell keeping an eye on you" + }, + { + "appid": 492080, + "normalized_name": "vision of aurora borealis" + }, + { + "appid": 492090, + "normalized_name": "a train pc classic" + }, + { + "appid": 492100, + "normalized_name": "lord of djinn" + }, + { + "appid": 492150, + "normalized_name": "rpg world action rpg maker" + }, + { + "appid": 492160, + "normalized_name": "3d pool" + }, + { + "appid": 492170, + "normalized_name": "planet driller" + }, + { + "appid": 492180, + "normalized_name": "haimrik" + }, + { + "appid": 492200, + "normalized_name": "capriders euro soccer" + }, + { + "appid": 492220, + "normalized_name": "bohemian killing" + }, + { + "appid": 492230, + "normalized_name": "space hulk tactics" + }, + { + "appid": 492270, + "normalized_name": "the cat! porfirio's adventure" + }, + { + "appid": 492280, + "normalized_name": "the agency chapter 1" + }, + { + "appid": 492290, + "normalized_name": "has been heroes" + }, + { + "appid": 492370, + "normalized_name": "affairs of the court choice of romance" + }, + { + "appid": 492400, + "normalized_name": "thunder gun revenge of the mutants" + }, + { + "appid": 492410, + "normalized_name": "rogues like us" + }, + { + "appid": 492430, + "normalized_name": "alteric" + }, + { + "appid": 492490, + "normalized_name": "zombie apocalypse escape the undead city" + }, + { + "appid": 492500, + "normalized_name": "heroes of the monkey tavern" + }, + { + "appid": 492530, + "normalized_name": "the dark legions" + }, + { + "appid": 492540, + "normalized_name": "she dreams elsewhere" + }, + { + "appid": 492560, + "normalized_name": "malkia" + }, + { + "appid": 492600, + "normalized_name": "ridge" + }, + { + "appid": 492610, + "normalized_name": "one day the sun disappeared" + }, + { + "appid": 492630, + "normalized_name": "bear with me episode one" + }, + { + "appid": 492710, + "normalized_name": "vr ping pong" + }, + { + "appid": 492720, + "normalized_name": "tropico 6" + }, + { + "appid": 492840, + "normalized_name": "veterans online open beta" + }, + { + "appid": 492850, + "normalized_name": "astroderps" + }, + { + "appid": 492860, + "normalized_name": "aperion cyberstorm" + }, + { + "appid": 492870, + "normalized_name": "five champions of canaan" + }, + { + "appid": 492880, + "normalized_name": "virtual insanity" + }, + { + "appid": 493000, + "normalized_name": "battle knights" + }, + { + "appid": 493040, + "normalized_name": "beat ninja" + }, + { + "appid": 493060, + "normalized_name": "ballistic tanks" + }, + { + "appid": 493080, + "normalized_name": "card quest" + }, + { + "appid": 493100, + "normalized_name": "bellybots" + }, + { + "appid": 493110, + "normalized_name": "koth" + }, + { + "appid": 493180, + "normalized_name": "dynasty feud" + }, + { + "appid": 493200, + "normalized_name": "rime" + }, + { + "appid": 493220, + "normalized_name": "after the empire" + }, + { + "appid": 493290, + "normalized_name": "world vr competition" + }, + { + "appid": 493310, + "normalized_name": "requiem avenging angel" + }, + { + "appid": 493320, + "normalized_name": "killing time (classic)" + }, + { + "appid": 493340, + "normalized_name": "planet coaster" + }, + { + "appid": 493380, + "normalized_name": "chessvr" + }, + { + "appid": 493400, + "normalized_name": "funfair" + }, + { + "appid": 493410, + "normalized_name": "steampuff phinnegan's factory" + }, + { + "appid": 493450, + "normalized_name": "wild romance" + }, + { + "appid": 493460, + "normalized_name": "pyroslam vr table tennis" + }, + { + "appid": 493480, + "normalized_name": "erisle" + }, + { + "appid": 493490, + "normalized_name": "city car driving" + }, + { + "appid": 493500, + "normalized_name": "bank limit advanced battle racing" + }, + { + "appid": 493520, + "normalized_name": "gtfo" + }, + { + "appid": 493540, + "normalized_name": "figment" + }, + { + "appid": 493580, + "normalized_name": "hidden object 12 in 1 bundle" + }, + { + "appid": 493620, + "normalized_name": "vr disc golf" + }, + { + "appid": 493650, + "normalized_name": "deep space dash" + }, + { + "appid": 493670, + "normalized_name": "valkyrius prime" + }, + { + "appid": 493700, + "normalized_name": "monster puzzle" + }, + { + "appid": 493710, + "normalized_name": "laraan" + }, + { + "appid": 493720, + "normalized_name": "haven moon" + }, + { + "appid": 493780, + "normalized_name": "nightork adventures beyond the moons of shadalee" + }, + { + "appid": 493790, + "normalized_name": "#archery" + }, + { + "appid": 493810, + "normalized_name": "jonah's path" + }, + { + "appid": 493820, + "normalized_name": "rivais em batalha" + }, + { + "appid": 493840, + "normalized_name": "marvel vs. capcom infinite" + }, + { + "appid": 493900, + "normalized_name": "dungeons 3" + }, + { + "appid": 493920, + "normalized_name": "nevermine" + }, + { + "appid": 493980, + "normalized_name": "green ranch" + }, + { + "appid": 494000, + "normalized_name": "anthelion" + }, + { + "appid": 494020, + "normalized_name": "splash bash" + }, + { + "appid": 494040, + "normalized_name": "puppetsvr" + }, + { + "appid": 494050, + "normalized_name": "road to your city" + }, + { + "appid": 494090, + "normalized_name": "dungeon girl" + }, + { + "appid": 494100, + "normalized_name": "enigma" + }, + { + "appid": 494120, + "normalized_name": "rx squad" + }, + { + "appid": 494150, + "normalized_name": "the thrill of the fight vr boxing" + }, + { + "appid": 494170, + "normalized_name": "miniature garden" + }, + { + "appid": 494220, + "normalized_name": "blight of the immortals" + }, + { + "appid": 494230, + "normalized_name": "heart's medicine time to heal" + }, + { + "appid": 494240, + "normalized_name": "pengame" + }, + { + "appid": 494250, + "normalized_name": "beebeeq" + }, + { + "appid": 494290, + "normalized_name": "midzone" + }, + { + "appid": 494310, + "normalized_name": "unbreakable vr runner" + }, + { + "appid": 494350, + "normalized_name": "bowl vr" + }, + { + "appid": 494360, + "normalized_name": "barrow hill curse of the ancient circle" + }, + { + "appid": 494380, + "normalized_name": "vr boxing workout" + }, + { + "appid": 494430, + "normalized_name": "praey for the gods" + }, + { + "appid": 494440, + "normalized_name": "the amazing shinsengumi heroes in love" + }, + { + "appid": 494450, + "normalized_name": "office lovers" + }, + { + "appid": 494460, + "normalized_name": "dangerous relationship" + }, + { + "appid": 494470, + "normalized_name": "my butler" + }, + { + "appid": 494490, + "normalized_name": "坦克大战" + }, + { + "appid": 494530, + "normalized_name": "orc hunter vr" + }, + { + "appid": 494580, + "normalized_name": "standby" + }, + { + "appid": 494600, + "normalized_name": "earth's dawn" + }, + { + "appid": 494670, + "normalized_name": "transroad usa" + }, + { + "appid": 494700, + "normalized_name": "eliosi's hunt" + }, + { + "appid": 494720, + "normalized_name": "morphblade" + }, + { + "appid": 494730, + "normalized_name": "galacticare" + }, + { + "appid": 494740, + "normalized_name": "police quest collection" + }, + { + "appid": 494780, + "normalized_name": "mageworks" + }, + { + "appid": 494790, + "normalized_name": "captain curve's intergalactic space adventure" + }, + { + "appid": 494810, + "normalized_name": "vr vacate the room (virtual reality escape)" + }, + { + "appid": 494820, + "normalized_name": "acid flip" + }, + { + "appid": 494830, + "normalized_name": "vivespray" + }, + { + "appid": 494840, + "normalized_name": "uboat" + }, + { + "appid": 494850, + "normalized_name": "veer pong" + }, + { + "appid": 494960, + "normalized_name": "twisted arrow" + }, + { + "appid": 494970, + "normalized_name": "savana" + }, + { + "appid": 494980, + "normalized_name": "wondership q" + }, + { + "appid": 494990, + "normalized_name": "too angry to space" + }, + { + "appid": 495010, + "normalized_name": "ranger of the jungle" + }, + { + "appid": 495030, + "normalized_name": "vr battle grid" + }, + { + "appid": 495050, + "normalized_name": "mega man legacy collection 2" + }, + { + "appid": 495090, + "normalized_name": "evolution planet gold" + }, + { + "appid": 495110, + "normalized_name": "enigmatis 3 the shadow of karkhala" + }, + { + "appid": 495140, + "normalized_name": "naruto ninja storm" + }, + { + "appid": 495200, + "normalized_name": "dath" + }, + { + "appid": 495230, + "normalized_name": "hypnorain" + }, + { + "appid": 495280, + "normalized_name": "disgaea 2 pc" + }, + { + "appid": 495290, + "normalized_name": "accurc 2" + }, + { + "appid": 495300, + "normalized_name": "trumpiñata" + }, + { + "appid": 495320, + "normalized_name": "ancient vr coaster" + }, + { + "appid": 495350, + "normalized_name": "woodle tree 2 worlds" + }, + { + "appid": 495390, + "normalized_name": "the wire loop game vr" + }, + { + "appid": 495420, + "normalized_name": "state of decay 2 juggernaut" + }, + { + "appid": 495520, + "normalized_name": "ping pong league" + }, + { + "appid": 495540, + "normalized_name": "dashy square vr" + }, + { + "appid": 495550, + "normalized_name": "baskhead" + }, + { + "appid": 495560, + "normalized_name": "farm manager 2018" + }, + { + "appid": 495580, + "normalized_name": "divided we fall play for free" + }, + { + "appid": 495600, + "normalized_name": "asteroid fight" + }, + { + "appid": 495680, + "normalized_name": "overdriven reloaded" + }, + { + "appid": 495700, + "normalized_name": "gabriel knight sins of the father" + }, + { + "appid": 495720, + "normalized_name": "intrude" + }, + { + "appid": 495730, + "normalized_name": "ghost train vr" + }, + { + "appid": 495750, + "normalized_name": "reckpunk" + }, + { + "appid": 495760, + "normalized_name": "deios ii // deidia" + }, + { + "appid": 495780, + "normalized_name": "hexoscope" + }, + { + "appid": 495820, + "normalized_name": "lil tanks" + }, + { + "appid": 495830, + "normalized_name": "endless labyrinth" + }, + { + "appid": 495890, + "normalized_name": "montaro" + }, + { + "appid": 495900, + "normalized_name": "lance a lot classic" + }, + { + "appid": 495910, + "normalized_name": "dungeon fighter online" + }, + { + "appid": 495960, + "normalized_name": "the secret monster society" + }, + { + "appid": 495980, + "normalized_name": "selma and the wisp" + }, + { + "appid": 495990, + "normalized_name": "true love ~confide to the maple~" + }, + { + "appid": 496000, + "normalized_name": "bowmage" + }, + { + "appid": 496030, + "normalized_name": "dark parables the swan princess and the dire tree collector's" + }, + { + "appid": 496040, + "normalized_name": "shaq fu a legend reborn" + }, + { + "appid": 496070, + "normalized_name": "geo fall" + }, + { + "appid": 496080, + "normalized_name": "space vr!" + }, + { + "appid": 496120, + "normalized_name": "lasercat" + }, + { + "appid": 496160, + "normalized_name": "return zero vr" + }, + { + "appid": 496170, + "normalized_name": "desert race adventures" + }, + { + "appid": 496180, + "normalized_name": "ge neuro" + }, + { + "appid": 496190, + "normalized_name": "senza peso" + }, + { + "appid": 496230, + "normalized_name": "watching grass grow in vr the game" + }, + { + "appid": 496240, + "normalized_name": "onward" + }, + { + "appid": 496250, + "normalized_name": "paddle up" + }, + { + "appid": 496260, + "normalized_name": "corona blossom vol.1 gift from the galaxy" + }, + { + "appid": 496290, + "normalized_name": "deep dark dungeon" + }, + { + "appid": 496300, + "normalized_name": "kingdom new lands" + }, + { + "appid": 496310, + "normalized_name": "momento temporis light from the deep" + }, + { + "appid": 496320, + "normalized_name": "running gods" + }, + { + "appid": 496340, + "normalized_name": "fighting fantasy legends" + }, + { + "appid": 496350, + "normalized_name": "supipara chapter 1 spring has come!" + }, + { + "appid": 496360, + "normalized_name": "rc racing off road 2.0" + }, + { + "appid": 496380, + "normalized_name": "a verdant hue" + }, + { + "appid": 496390, + "normalized_name": "shiny" + }, + { + "appid": 496400, + "normalized_name": "renoir" + }, + { + "appid": 496440, + "normalized_name": "the challenge" + }, + { + "appid": 496460, + "normalized_name": "life is feudal forest village" + }, + { + "appid": 496520, + "normalized_name": "typing with jester" + }, + { + "appid": 496530, + "normalized_name": "pigmentone" + }, + { + "appid": 496540, + "normalized_name": "zone of lacryma" + }, + { + "appid": 496550, + "normalized_name": "noob squad" + }, + { + "appid": 496570, + "normalized_name": "locus solus" + }, + { + "appid": 496590, + "normalized_name": "crystal cosmos" + }, + { + "appid": 496610, + "normalized_name": "push the crate" + }, + { + "appid": 496620, + "normalized_name": "monster slayers" + }, + { + "appid": 496630, + "normalized_name": "empty horizons" + }, + { + "appid": 496640, + "normalized_name": "strange night" + }, + { + "appid": 496650, + "normalized_name": "antihorror" + }, + { + "appid": 496660, + "normalized_name": "minotaur" + }, + { + "appid": 496670, + "normalized_name": "maze roller" + }, + { + "appid": 496680, + "normalized_name": "sweatshop" + }, + { + "appid": 496690, + "normalized_name": "adventures on the polluted islands" + }, + { + "appid": 496730, + "normalized_name": "sorcerer king rivals" + }, + { + "appid": 496740, + "normalized_name": "discovering space 2" + }, + { + "appid": 496750, + "normalized_name": "the housewife" + }, + { + "appid": 496760, + "normalized_name": "the beast within a gabriel knight mystery" + }, + { + "appid": 496790, + "normalized_name": "nothin' but net" + }, + { + "appid": 496810, + "normalized_name": "megatagmension blanc + neptune vs zombies (neptunia)" + }, + { + "appid": 496820, + "normalized_name": "ruction the golden tablet" + }, + { + "appid": 496850, + "normalized_name": "brick battalion" + }, + { + "appid": 496890, + "normalized_name": "replica" + }, + { + "appid": 496930, + "normalized_name": "sumeru" + }, + { + "appid": 496940, + "normalized_name": "second death" + }, + { + "appid": 496950, + "normalized_name": "the slingshot vr" + }, + { + "appid": 496960, + "normalized_name": "shoot mania vr fun zombies" + }, + { + "appid": 496980, + "normalized_name": "cosmic cavern 3671宇宙最大の地底最大の作戦" + }, + { + "appid": 496990, + "normalized_name": "ghost sweeper" + }, + { + "appid": 497000, + "normalized_name": "cross death vr" + }, + { + "appid": 497020, + "normalized_name": "mystic diary hidden object" + }, + { + "appid": 497040, + "normalized_name": "underground keeper" + }, + { + "appid": 497050, + "normalized_name": "shape shifter" + }, + { + "appid": 497060, + "normalized_name": "rise" + }, + { + "appid": 497080, + "normalized_name": "construct escape the system" + }, + { + "appid": 497090, + "normalized_name": "amihailu in dreamland" + }, + { + "appid": 497100, + "normalized_name": "footrock" + }, + { + "appid": 497120, + "normalized_name": "wildcard" + }, + { + "appid": 497180, + "normalized_name": "street legal racing redline v2.3.1" + }, + { + "appid": 497190, + "normalized_name": "pichon" + }, + { + "appid": 497260, + "normalized_name": "fabulous food truck" + }, + { + "appid": 497280, + "normalized_name": "wrong dimension the one dimensional platformer" + }, + { + "appid": 497300, + "normalized_name": "always higher" + }, + { + "appid": 497320, + "normalized_name": "the spirit of twelve" + }, + { + "appid": 497360, + "normalized_name": "gabriel knight 3 blood of the sacred blood of the damned" + }, + { + "appid": 497380, + "normalized_name": "rise" + }, + { + "appid": 497400, + "normalized_name": "1 moment of time silentville" + }, + { + "appid": 497420, + "normalized_name": "pixelscape oceans" + }, + { + "appid": 497430, + "normalized_name": "g prime" + }, + { + "appid": 497450, + "normalized_name": "blortasia" + }, + { + "appid": 497460, + "normalized_name": "mervils a vr adventure" + }, + { + "appid": 497470, + "normalized_name": "d.n.age" + }, + { + "appid": 497480, + "normalized_name": "gravpool" + }, + { + "appid": 497490, + "normalized_name": "project hovercraft" + }, + { + "appid": 497510, + "normalized_name": "crystal quest classic" + }, + { + "appid": 497580, + "normalized_name": "agent walker secret journey" + }, + { + "appid": 497590, + "normalized_name": "sapper's bad dream" + }, + { + "appid": 497640, + "normalized_name": "trick & treat" + }, + { + "appid": 497670, + "normalized_name": "line/dash" + }, + { + "appid": 497680, + "normalized_name": "plates" + }, + { + "appid": 497700, + "normalized_name": "safety first!" + }, + { + "appid": 497710, + "normalized_name": "holobunnies pause cafe" + }, + { + "appid": 497720, + "normalized_name": "funfair ride simulator 3" + }, + { + "appid": 497730, + "normalized_name": "the wardrobe even better" + }, + { + "appid": 497780, + "normalized_name": "recursed" + }, + { + "appid": 497790, + "normalized_name": "ayumi enhanced" + }, + { + "appid": 497800, + "normalized_name": "golden krone hotel" + }, + { + "appid": 497820, + "normalized_name": "quanero vr" + }, + { + "appid": 497850, + "normalized_name": "8 bit hordes" + }, + { + "appid": 497860, + "normalized_name": "zezenia online" + }, + { + "appid": 497870, + "normalized_name": "super sketch bob" + }, + { + "appid": 497880, + "normalized_name": "doodle what?!" + }, + { + "appid": 497940, + "normalized_name": "destiny of ancient kingdoms" + }, + { + "appid": 497950, + "normalized_name": "god's gift" + }, + { + "appid": 498000, + "normalized_name": "mushroom crusher extreme" + }, + { + "appid": 498030, + "normalized_name": "barnyard mahjong 3" + }, + { + "appid": 498040, + "normalized_name": "the hidden dragon" + }, + { + "appid": 498050, + "normalized_name": "mystery of rivenhallows" + }, + { + "appid": 498190, + "normalized_name": "dragon rage" + }, + { + "appid": 498240, + "normalized_name": "batman the telltale series" + }, + { + "appid": 498280, + "normalized_name": "jurassic survival" + }, + { + "appid": 498320, + "normalized_name": "trolley gold" + }, + { + "appid": 498330, + "normalized_name": "cats are liquid a light in the shadows" + }, + { + "appid": 498340, + "normalized_name": "shards of azuria" + }, + { + "appid": 498360, + "normalized_name": "puzzle nebula" + }, + { + "appid": 498370, + "normalized_name": "basketball court vr" + }, + { + "appid": 498380, + "normalized_name": "aquanimble" + }, + { + "appid": 498450, + "normalized_name": "a week of circus terror" + }, + { + "appid": 498460, + "normalized_name": "abduction prologue the story of jonathan blake" + }, + { + "appid": 498470, + "normalized_name": "switch 'n' shoot" + }, + { + "appid": 498500, + "normalized_name": "i am the hero" + }, + { + "appid": 498510, + "normalized_name": "dreamland" + }, + { + "appid": 498570, + "normalized_name": "extreme forklifting 2" + }, + { + "appid": 498580, + "normalized_name": "asrecorp" + }, + { + "appid": 498600, + "normalized_name": "msi electric city" + }, + { + "appid": 498620, + "normalized_name": "the shadowland" + }, + { + "appid": 498630, + "normalized_name": "red planet survive" + }, + { + "appid": 498660, + "normalized_name": "mind spheres" + }, + { + "appid": 498680, + "normalized_name": "in the shadow of the truth" + }, + { + "appid": 498700, + "normalized_name": "the ember saga a new fire" + }, + { + "appid": 498720, + "normalized_name": "inklings" + }, + { + "appid": 498740, + "normalized_name": "way of redemption" + }, + { + "appid": 498830, + "normalized_name": "mustache in hell" + }, + { + "appid": 498850, + "normalized_name": "ortus arena strategy board game online for free" + }, + { + "appid": 498940, + "normalized_name": "warbirds dawn of aces world war i air combat" + }, + { + "appid": 498980, + "normalized_name": "duo" + }, + { + "appid": 498990, + "normalized_name": "balloon chair death match" + }, + { + "appid": 499100, + "normalized_name": "dark parables the exiled prince collector's" + }, + { + "appid": 499110, + "normalized_name": "dark parables rise of the snow queen collector's" + }, + { + "appid": 499120, + "normalized_name": "dark parables the red riding hood sisters collector's" + }, + { + "appid": 499140, + "normalized_name": "operator overload" + }, + { + "appid": 499180, + "normalized_name": "braid anniversary" + }, + { + "appid": 499210, + "normalized_name": "road rage" + }, + { + "appid": 499230, + "normalized_name": "survhive" + }, + { + "appid": 499330, + "normalized_name": "lord mayor" + }, + { + "appid": 499340, + "normalized_name": "turner" + }, + { + "appid": 499370, + "normalized_name": "tower of archeos" + }, + { + "appid": 499400, + "normalized_name": "the path of greatest resistance" + }, + { + "appid": 499420, + "normalized_name": "star fields" + }, + { + "appid": 499440, + "normalized_name": "klocki" + }, + { + "appid": 499460, + "normalized_name": "tomato jones" + }, + { + "appid": 499520, + "normalized_name": "the turing test" + }, + { + "appid": 499540, + "normalized_name": "wake up" + }, + { + "appid": 499560, + "normalized_name": "fourtex jugo" + }, + { + "appid": 499580, + "normalized_name": "crystal control ii" + }, + { + "appid": 499610, + "normalized_name": "copter and sky" + }, + { + "appid": 499620, + "normalized_name": "booster experience" + }, + { + "appid": 499660, + "normalized_name": "medieval kingdom wars" + }, + { + "appid": 499760, + "normalized_name": "redswood vr" + }, + { + "appid": 499890, + "normalized_name": "aaero" + }, + { + "appid": 499900, + "normalized_name": "pulse shift" + }, + { + "appid": 499910, + "normalized_name": "shinrai broken beyond despair" + }, + { + "appid": 499940, + "normalized_name": "ascension vr" + }, + { + "appid": 499950, + "normalized_name": "metal assault gigaslave europe" + }, + { + "appid": 500090, + "normalized_name": "wyvrn dragon flight vr" + }, + { + "appid": 500110, + "normalized_name": "glider island" + }, + { + "appid": 500120, + "normalized_name": "gazzel quest the five magic stones" + }, + { + "appid": 500140, + "normalized_name": "wildlife vr" + }, + { + "appid": 500150, + "normalized_name": "time gap" + }, + { + "appid": 500170, + "normalized_name": "urlaubsflug simulator – holiday flight simulator" + }, + { + "appid": 500180, + "normalized_name": "epic flail" + }, + { + "appid": 500190, + "normalized_name": "firefight" + }, + { + "appid": 500220, + "normalized_name": "weather lord legendary hero collector's" + }, + { + "appid": 500260, + "normalized_name": "ben and ed blood party" + }, + { + "appid": 500320, + "normalized_name": "a tale of caos overture" + }, + { + "appid": 500340, + "normalized_name": "quack attack 1985 turbo dx" + }, + { + "appid": 500350, + "normalized_name": "final fleet" + }, + { + "appid": 500360, + "normalized_name": "vrmultigames" + }, + { + "appid": 500380, + "normalized_name": "uncorporeal \"fluffy!\"" + }, + { + "appid": 500420, + "normalized_name": "soulhunt" + }, + { + "appid": 500440, + "normalized_name": "take the cake" + }, + { + "appid": 500480, + "normalized_name": "fist of physics" + }, + { + "appid": 500550, + "normalized_name": "save the universe please!" + }, + { + "appid": 500570, + "normalized_name": "mahjong deluxe 2 astral planes" + }, + { + "appid": 500580, + "normalized_name": "kitty cat jigsaw puzzles" + }, + { + "appid": 500590, + "normalized_name": "puppy dog jigsaw puzzles" + }, + { + "appid": 500660, + "normalized_name": "limberjack" + }, + { + "appid": 500670, + "normalized_name": "tormentor❌punisher" + }, + { + "appid": 500680, + "normalized_name": "jockey rush" + }, + { + "appid": 500690, + "normalized_name": "secret santa" + }, + { + "appid": 500710, + "normalized_name": "wild terra online" + }, + { + "appid": 500740, + "normalized_name": "enigma prison" + }, + { + "appid": 500750, + "normalized_name": "gi racing 2.0" + }, + { + "appid": 500760, + "normalized_name": "kuraburo kai" + }, + { + "appid": 500790, + "normalized_name": "moribund" + }, + { + "appid": 500800, + "normalized_name": "rogue fighter" + }, + { + "appid": 500810, + "normalized_name": "arcanum of steamworks and magick obscura" + }, + { + "appid": 500870, + "normalized_name": "riddles of the past" + }, + { + "appid": 500880, + "normalized_name": "tails" + }, + { + "appid": 500920, + "normalized_name": "house of alice" + }, + { + "appid": 500940, + "normalized_name": "get the gems" + }, + { + "appid": 500980, + "normalized_name": "endangered" + }, + { + "appid": 501020, + "normalized_name": "super pixel racers" + }, + { + "appid": 501030, + "normalized_name": "extravaganza rising" + }, + { + "appid": 501050, + "normalized_name": "emerland solitaire endless journey" + }, + { + "appid": 501060, + "normalized_name": "c.s.s. citadel vr" + }, + { + "appid": 501080, + "normalized_name": "fishing barents sea" + }, + { + "appid": 501090, + "normalized_name": "design it drive it speedboats" + }, + { + "appid": 501110, + "normalized_name": "mount wingsuit" + }, + { + "appid": 501120, + "normalized_name": "clock simulator" + }, + { + "appid": 501180, + "normalized_name": "acan's call act 1" + }, + { + "appid": 501190, + "normalized_name": "axis football 2016" + }, + { + "appid": 501220, + "normalized_name": "space ribbon slipstream to the extreme" + }, + { + "appid": 501270, + "normalized_name": "robots in the wild" + }, + { + "appid": 501300, + "normalized_name": "what remains of edith finch" + }, + { + "appid": 501310, + "normalized_name": "venture forth" + }, + { + "appid": 501320, + "normalized_name": "the shrouded isle" + }, + { + "appid": 501350, + "normalized_name": "dimension hunter vr" + }, + { + "appid": 501380, + "normalized_name": "uncorporeal \"alcatraz island lofts\"" + }, + { + "appid": 501400, + "normalized_name": "knight versus demon" + }, + { + "appid": 501410, + "normalized_name": "sos special operative stories" + }, + { + "appid": 501420, + "normalized_name": "my own pet" + }, + { + "appid": 501440, + "normalized_name": "stars" + }, + { + "appid": 501450, + "normalized_name": "puzzle cross" + }, + { + "appid": 501470, + "normalized_name": "hold the door!" + }, + { + "appid": 501480, + "normalized_name": "lost socks naughty brothers" + }, + { + "appid": 501500, + "normalized_name": "black moon chronicles" + }, + { + "appid": 501530, + "normalized_name": "sturmfront the mutant war übel" + }, + { + "appid": 501590, + "normalized_name": "bulletstorm full clip" + }, + { + "appid": 501760, + "normalized_name": "francisca" + }, + { + "appid": 501790, + "normalized_name": "unforeseen incidents" + }, + { + "appid": 501840, + "normalized_name": "don't disturb" + }, + { + "appid": 501850, + "normalized_name": "dcr drive.crash.repeat" + }, + { + "appid": 501860, + "normalized_name": "slayer shock" + }, + { + "appid": 501930, + "normalized_name": "sig.null" + }, + { + "appid": 501940, + "normalized_name": "hikikomori no chuunibyou" + }, + { + "appid": 501950, + "normalized_name": "rogue islands" + }, + { + "appid": 501970, + "normalized_name": "phantasmagoria 2 a puzzle of flesh" + }, + { + "appid": 501990, + "normalized_name": "phantasmagoria" + }, + { + "appid": 502050, + "normalized_name": "hopping up for it" + }, + { + "appid": 502070, + "normalized_name": "fast and curious" + }, + { + "appid": 502090, + "normalized_name": "invisible mind" + }, + { + "appid": 502100, + "normalized_name": "death's life" + }, + { + "appid": 502120, + "normalized_name": "anicon animal complex cat's path" + }, + { + "appid": 502130, + "normalized_name": "ctrl cv" + }, + { + "appid": 502140, + "normalized_name": "drayt empire" + }, + { + "appid": 502150, + "normalized_name": "interstellar logistics inc" + }, + { + "appid": 502200, + "normalized_name": "orczz" + }, + { + "appid": 502210, + "normalized_name": "super markup man" + }, + { + "appid": 502230, + "normalized_name": "monsters' den book of dread" + }, + { + "appid": 502240, + "normalized_name": "you deserve" + }, + { + "appid": 502250, + "normalized_name": "moira" + }, + { + "appid": 502280, + "normalized_name": "berserk and the band of the hawk" + }, + { + "appid": 502300, + "normalized_name": "heartomics lost count" + }, + { + "appid": 502320, + "normalized_name": "boulder dash 30th anniversary" + }, + { + "appid": 502350, + "normalized_name": "atv quadracer" + }, + { + "appid": 502380, + "normalized_name": "tangled up!" + }, + { + "appid": 502400, + "normalized_name": "redactem" + }, + { + "appid": 502410, + "normalized_name": "airport fire department the simulation" + }, + { + "appid": 502420, + "normalized_name": "firefighters the simulation" + }, + { + "appid": 502430, + "normalized_name": "roadworks the simulation" + }, + { + "appid": 502440, + "normalized_name": "plant fire department the simulation" + }, + { + "appid": 502450, + "normalized_name": "professional construction the simulation" + }, + { + "appid": 502460, + "normalized_name": "hotel giant" + }, + { + "appid": 502470, + "normalized_name": "airport simulator 3 day & night" + }, + { + "appid": 502500, + "normalized_name": "ace combat 7 skies unknown" + }, + { + "appid": 502520, + "normalized_name": "general civil war" + }, + { + "appid": 502530, + "normalized_name": "the grey man" + }, + { + "appid": 502540, + "normalized_name": "cold vengeance" + }, + { + "appid": 502550, + "normalized_name": "strike.is the game" + }, + { + "appid": 502600, + "normalized_name": "the multidimensional underwear drawer" + }, + { + "appid": 502650, + "normalized_name": "autumn park mini golf" + }, + { + "appid": 502700, + "normalized_name": "laser lasso ball" + }, + { + "appid": 502710, + "normalized_name": "the last sniper vr" + }, + { + "appid": 502720, + "normalized_name": "star explorers" + }, + { + "appid": 502730, + "normalized_name": "osy osmosis" + }, + { + "appid": 502740, + "normalized_name": "50 years" + }, + { + "appid": 502750, + "normalized_name": "quest for glory 1 5" + }, + { + "appid": 502770, + "normalized_name": "voodoo garden" + }, + { + "appid": 502780, + "normalized_name": "avalon the journey begins" + }, + { + "appid": 502800, + "normalized_name": "senran kagura estival versus" + }, + { + "appid": 502810, + "normalized_name": "tank hero vr" + }, + { + "appid": 502820, + "normalized_name": "batman arkham vr" + }, + { + "appid": 502880, + "normalized_name": "the janitor" + }, + { + "appid": 502910, + "normalized_name": "the return home" + }, + { + "appid": 502920, + "normalized_name": "gunnihilation" + }, + { + "appid": 502940, + "normalized_name": "calm down stalin" + }, + { + "appid": 502990, + "normalized_name": "kisaragi no hougyoku" + }, + { + "appid": 503010, + "normalized_name": "azulgar star commanders" + }, + { + "appid": 503050, + "normalized_name": "heroes from the past joan of arc" + }, + { + "appid": 503060, + "normalized_name": "the agency of anomalies mystic hospital collector's" + }, + { + "appid": 503070, + "normalized_name": "off the record the italian affair collector's" + }, + { + "appid": 503080, + "normalized_name": "echoes of the past kingdom of despair collector's" + }, + { + "appid": 503090, + "normalized_name": "fairy maids" + }, + { + "appid": 503100, + "normalized_name": "black hat cooperative" + }, + { + "appid": 503130, + "normalized_name": "red is dead the complex fun random level fast strategy game" + }, + { + "appid": 503140, + "normalized_name": "dungeon punks" + }, + { + "appid": 503150, + "normalized_name": "frantic freighter" + }, + { + "appid": 503160, + "normalized_name": "angels & demigods scifi vr visual novel" + }, + { + "appid": 503180, + "normalized_name": "minilaw ministry of law" + }, + { + "appid": 503210, + "normalized_name": "sentry knight tactics" + }, + { + "appid": 503240, + "normalized_name": "hurricane" + }, + { + "appid": 503280, + "normalized_name": "marble land" + }, + { + "appid": 503290, + "normalized_name": "maraiyum rise of the setting sun" + }, + { + "appid": 503340, + "normalized_name": "dig 4 destruction" + }, + { + "appid": 503350, + "normalized_name": "white noise 2" + }, + { + "appid": 503370, + "normalized_name": "hospitalize" + }, + { + "appid": 503390, + "normalized_name": "roomscale tower" + }, + { + "appid": 503400, + "normalized_name": "four last things" + }, + { + "appid": 503450, + "normalized_name": "space rangers quest" + }, + { + "appid": 503460, + "normalized_name": "security hole" + }, + { + "appid": 503480, + "normalized_name": "mahluk dark demon" + }, + { + "appid": 503490, + "normalized_name": "sword of fireheart the awakening element" + }, + { + "appid": 503550, + "normalized_name": "dye" + }, + { + "appid": 503560, + "normalized_name": "911 operator" + }, + { + "appid": 503580, + "normalized_name": "duck season" + }, + { + "appid": 503620, + "normalized_name": "fictorum" + }, + { + "appid": 503630, + "normalized_name": "invasion!" + }, + { + "appid": 503650, + "normalized_name": "fenimore fillmore the westerner" + }, + { + "appid": 503680, + "normalized_name": "the seeker" + }, + { + "appid": 503690, + "normalized_name": "starship disco" + }, + { + "appid": 503700, + "normalized_name": "fall of freya (alpha 1)" + }, + { + "appid": 503710, + "normalized_name": "void" + }, + { + "appid": 503730, + "normalized_name": "saving harmony" + }, + { + "appid": 503750, + "normalized_name": "splash blast panic" + }, + { + "appid": 503770, + "normalized_name": "elven assassin" + }, + { + "appid": 503780, + "normalized_name": "ice caves of europa" + }, + { + "appid": 503820, + "normalized_name": "a detective's novel" + }, + { + "appid": 503830, + "normalized_name": "the life of greather" + }, + { + "appid": 503860, + "normalized_name": "patterna" + }, + { + "appid": 503900, + "normalized_name": "candy smash vr" + }, + { + "appid": 503940, + "normalized_name": "railway empire" + }, + { + "appid": 503950, + "normalized_name": "star tactics redux" + }, + { + "appid": 503960, + "normalized_name": "will of the gods" + }, + { + "appid": 503980, + "normalized_name": "detective hank and the golden sneeze" + }, + { + "appid": 504000, + "normalized_name": "endless fables the minotaur's curse" + }, + { + "appid": 504030, + "normalized_name": "freemium way" + }, + { + "appid": 504090, + "normalized_name": "3..2..1..grenades!" + }, + { + "appid": 504100, + "normalized_name": "russian vr coasters" + }, + { + "appid": 504110, + "normalized_name": "the longest five minutes" + }, + { + "appid": 504130, + "normalized_name": "manual samuel last tuesday" + }, + { + "appid": 504210, + "normalized_name": "shenzhen i/o" + }, + { + "appid": 504230, + "normalized_name": "celeste" + }, + { + "appid": 504260, + "normalized_name": "happy pong" + }, + { + "appid": 504280, + "normalized_name": "the cold war era" + }, + { + "appid": 504300, + "normalized_name": "gangs of space" + }, + { + "appid": 504310, + "normalized_name": "the cooking game" + }, + { + "appid": 504370, + "normalized_name": "battlerite" + }, + { + "appid": 504380, + "normalized_name": "detective hayseed hollywood" + }, + { + "appid": 504390, + "normalized_name": "along the edge" + }, + { + "appid": 504400, + "normalized_name": "optika" + }, + { + "appid": 504410, + "normalized_name": "escape from pleasure planet" + }, + { + "appid": 504420, + "normalized_name": "malazard magic defense" + }, + { + "appid": 504430, + "normalized_name": "the watchmaker" + }, + { + "appid": 504450, + "normalized_name": "starsmashers" + }, + { + "appid": 504460, + "normalized_name": "team racing league" + }, + { + "appid": 504470, + "normalized_name": "salvaged" + }, + { + "appid": 504490, + "normalized_name": "the god's chain" + }, + { + "appid": 504500, + "normalized_name": "hover havoc" + }, + { + "appid": 504560, + "normalized_name": "the unwelcomed" + }, + { + "appid": 504610, + "normalized_name": "sabersaw vr" + }, + { + "appid": 504620, + "normalized_name": "grid legion storm" + }, + { + "appid": 504630, + "normalized_name": "broomball vr" + }, + { + "appid": 504660, + "normalized_name": "tears revolude" + }, + { + "appid": 504690, + "normalized_name": "woven" + }, + { + "appid": 504700, + "normalized_name": "blockships" + }, + { + "appid": 504750, + "normalized_name": "lew pulsipher's doomstar" + }, + { + "appid": 504770, + "normalized_name": "slavistan" + }, + { + "appid": 504800, + "normalized_name": "sorcery! part 4" + }, + { + "appid": 504840, + "normalized_name": "brick stack vr" + }, + { + "appid": 504850, + "normalized_name": "castle invasion throne out" + }, + { + "appid": 504880, + "normalized_name": "pixel puzzles 2 radical roach" + }, + { + "appid": 504920, + "normalized_name": "39 days to mars" + }, + { + "appid": 504980, + "normalized_name": "elves adventure" + }, + { + "appid": 505060, + "normalized_name": "warcube" + }, + { + "appid": 505070, + "normalized_name": "secrets of me" + }, + { + "appid": 505080, + "normalized_name": "gakuen club" + }, + { + "appid": 505090, + "normalized_name": "the charming empire" + }, + { + "appid": 505110, + "normalized_name": "ghost pursuit vr" + }, + { + "appid": 505170, + "normalized_name": "carmageddon max damage" + }, + { + "appid": 505210, + "normalized_name": "neon space 2" + }, + { + "appid": 505230, + "normalized_name": "pathologic 2" + }, + { + "appid": 505270, + "normalized_name": "the food run" + }, + { + "appid": 505290, + "normalized_name": "super rock blasters!" + }, + { + "appid": 505330, + "normalized_name": "apocalipsis" + }, + { + "appid": 505400, + "normalized_name": "diamond joyce and the secret of crystal cave" + }, + { + "appid": 505460, + "normalized_name": "foxhole" + }, + { + "appid": 505630, + "normalized_name": "let them come" + }, + { + "appid": 505640, + "normalized_name": "antihero" + }, + { + "appid": 505660, + "normalized_name": "the crystal nebula" + }, + { + "appid": 505680, + "normalized_name": "glaive" + }, + { + "appid": 505730, + "normalized_name": "holy potatoes! we’re in space?!" + }, + { + "appid": 505740, + "normalized_name": "eximius seize the frontline" + }, + { + "appid": 505750, + "normalized_name": "trimmer tycoon" + }, + { + "appid": 506090, + "normalized_name": "switch or die trying" + }, + { + "appid": 506110, + "normalized_name": "exposure a game of camouflage" + }, + { + "appid": 506150, + "normalized_name": "dragon bros" + }, + { + "appid": 506260, + "normalized_name": "cladun returns this is sengoku!" + }, + { + "appid": 506280, + "normalized_name": "my lil' donut" + }, + { + "appid": 506470, + "normalized_name": "quip anomaly" + }, + { + "appid": 506480, + "normalized_name": "archmage rises" + }, + { + "appid": 506500, + "normalized_name": "party panic" + }, + { + "appid": 506510, + "normalized_name": "shadows of adam" + }, + { + "appid": 506550, + "normalized_name": "rollerforce" + }, + { + "appid": 506590, + "normalized_name": "sky valley" + }, + { + "appid": 506610, + "normalized_name": "five nights at freddy's sister location" + }, + { + "appid": 506640, + "normalized_name": "burlesque" + }, + { + "appid": 506700, + "normalized_name": "levantera tale of the winds" + }, + { + "appid": 506710, + "normalized_name": "the colony new haven chronicles" + }, + { + "appid": 506730, + "normalized_name": "dinosaur forest" + }, + { + "appid": 506760, + "normalized_name": "twisty's asylum escapades" + }, + { + "appid": 506830, + "normalized_name": "goo saga" + }, + { + "appid": 506840, + "normalized_name": "the dungeons of castle madness" + }, + { + "appid": 506870, + "normalized_name": "unexplored" + }, + { + "appid": 506900, + "normalized_name": "downward enhanced" + }, + { + "appid": 506930, + "normalized_name": "colab" + }, + { + "appid": 506960, + "normalized_name": "pong champion vr" + }, + { + "appid": 506980, + "normalized_name": "drone remote tactical warfare" + }, + { + "appid": 507010, + "normalized_name": "mr.president!" + }, + { + "appid": 507030, + "normalized_name": "bicyclism ep" + }, + { + "appid": 507050, + "normalized_name": "dogos" + }, + { + "appid": 507060, + "normalized_name": "sceal an irish folklore adventure" + }, + { + "appid": 507080, + "normalized_name": "baseball mogul diamond" + }, + { + "appid": 507120, + "normalized_name": "the superfluous" + }, + { + "appid": 507140, + "normalized_name": "tesla's tower the wardenclyffe mystery" + }, + { + "appid": 507210, + "normalized_name": "the wire" + }, + { + "appid": 507270, + "normalized_name": "lily´s epic quest" + }, + { + "appid": 507340, + "normalized_name": "strike squadron caracará" + }, + { + "appid": 507380, + "normalized_name": "black sand drift" + }, + { + "appid": 507390, + "normalized_name": "gone in november" + }, + { + "appid": 507400, + "normalized_name": "vindictive drive" + }, + { + "appid": 507440, + "normalized_name": "island simulator 2016" + }, + { + "appid": 507490, + "normalized_name": "ashes of the singularity escalation" + }, + { + "appid": 507500, + "normalized_name": "punt" + }, + { + "appid": 507520, + "normalized_name": "zzzz zzzz zzzz" + }, + { + "appid": 508170, + "normalized_name": "blacksmith hit" + }, + { + "appid": 508180, + "normalized_name": "fly and destroy" + }, + { + "appid": 508200, + "normalized_name": "bacon tales between pigs and wolves" + }, + { + "appid": 508230, + "normalized_name": "anime studio simulator" + }, + { + "appid": 508250, + "normalized_name": "aussie sports vr 2016" + }, + { + "appid": 508260, + "normalized_name": "treasure of a blizzard" + }, + { + "appid": 508290, + "normalized_name": "$1 ride" + }, + { + "appid": 508300, + "normalized_name": "strategy & tactics dark ages" + }, + { + "appid": 508330, + "normalized_name": "galer plague of heroes" + }, + { + "appid": 508350, + "normalized_name": "draconic order vr" + }, + { + "appid": 508390, + "normalized_name": "scrap garden the day before" + }, + { + "appid": 508410, + "normalized_name": "skipchaser" + }, + { + "appid": 508440, + "normalized_name": "totally accurate battle simulator" + }, + { + "appid": 508460, + "normalized_name": "maxcontrol" + }, + { + "appid": 508520, + "normalized_name": "minibotz" + }, + { + "appid": 508530, + "normalized_name": "hackyzack" + }, + { + "appid": 508540, + "normalized_name": "haeven" + }, + { + "appid": 508550, + "normalized_name": "sneak thief" + }, + { + "appid": 508580, + "normalized_name": "casinoxr" + }, + { + "appid": 508600, + "normalized_name": "rod revolt of defense" + }, + { + "appid": 508610, + "normalized_name": "project xinatra" + }, + { + "appid": 508620, + "normalized_name": "zomblabs" + }, + { + "appid": 508630, + "normalized_name": "soldiers lost forever (1914 1918)" + }, + { + "appid": 508650, + "normalized_name": "signal decay" + }, + { + "appid": 508660, + "normalized_name": "triple x tycoon" + }, + { + "appid": 508680, + "normalized_name": "domino vr" + }, + { + "appid": 508710, + "normalized_name": "project lounge" + }, + { + "appid": 508720, + "normalized_name": "rusty lines" + }, + { + "appid": 508730, + "normalized_name": "painted legend" + }, + { + "appid": 508740, + "normalized_name": "wheels of aurelia" + }, + { + "appid": 508760, + "normalized_name": "ball of wonder" + }, + { + "appid": 508790, + "normalized_name": "flat heroes" + }, + { + "appid": 508820, + "normalized_name": "won't you be my laser?" + }, + { + "appid": 508840, + "normalized_name": "broken armor" + }, + { + "appid": 508890, + "normalized_name": "meteor crush vr" + }, + { + "appid": 508900, + "normalized_name": "zup! x" + }, + { + "appid": 508910, + "normalized_name": "deus ex machina game of the year 30th anniversary collector’s" + }, + { + "appid": 508930, + "normalized_name": "mini z racers turbo" + }, + { + "appid": 508940, + "normalized_name": "escape lizards" + }, + { + "appid": 508950, + "normalized_name": "beerman" + }, + { + "appid": 508980, + "normalized_name": "crashday redline" + }, + { + "appid": 508990, + "normalized_name": "handsome mr. frog" + }, + { + "appid": 509070, + "normalized_name": "super vr trainer" + }, + { + "appid": 509110, + "normalized_name": "spikit" + }, + { + "appid": 509130, + "normalized_name": "rc airsim rc model airplane flight simulator" + }, + { + "appid": 509140, + "normalized_name": "hvr" + }, + { + "appid": 509160, + "normalized_name": "gebub's adventure" + }, + { + "appid": 509170, + "normalized_name": "vrninja" + }, + { + "appid": 509190, + "normalized_name": "rollout" + }, + { + "appid": 509210, + "normalized_name": "clockwork" + }, + { + "appid": 509220, + "normalized_name": "save jesus" + }, + { + "appid": 509230, + "normalized_name": "erusal" + }, + { + "appid": 509250, + "normalized_name": "to the top" + }, + { + "appid": 509260, + "normalized_name": "northern regime" + }, + { + "appid": 509290, + "normalized_name": "one night two crazies" + }, + { + "appid": 509310, + "normalized_name": "throunnelvr" + }, + { + "appid": 509340, + "normalized_name": "abandoned hospital vr" + }, + { + "appid": 509360, + "normalized_name": "trespass episode 1" + }, + { + "appid": 509380, + "normalized_name": "mech ace combat trainer" + }, + { + "appid": 509390, + "normalized_name": "galaxiverse" + }, + { + "appid": 509400, + "normalized_name": "lost in harmony" + }, + { + "appid": 509420, + "normalized_name": "riding club championships" + }, + { + "appid": 509440, + "normalized_name": "god simulator" + }, + { + "appid": 509450, + "normalized_name": "colony" + }, + { + "appid": 509530, + "normalized_name": "gods and nemesis of ghosts from dragons" + }, + { + "appid": 509540, + "normalized_name": "svrvive the deus helix" + }, + { + "appid": 509560, + "normalized_name": "heroes of dire" + }, + { + "appid": 509570, + "normalized_name": "in celebration of violence" + }, + { + "appid": 509580, + "normalized_name": "the lord of the rings adventure card game" + }, + { + "appid": 509600, + "normalized_name": "battle time" + }, + { + "appid": 509610, + "normalized_name": "beachhead 2000" + }, + { + "appid": 509620, + "normalized_name": "last stitch goodnight" + }, + { + "appid": 509770, + "normalized_name": "postcollapse" + }, + { + "appid": 509780, + "normalized_name": "fire arrow plus" + }, + { + "appid": 509800, + "normalized_name": "the last weekend" + }, + { + "appid": 509820, + "normalized_name": "super grav" + }, + { + "appid": 509830, + "normalized_name": "evil robots from n1m" + }, + { + "appid": 509850, + "normalized_name": "bumper" + }, + { + "appid": 509860, + "normalized_name": "baezult" + }, + { + "appid": 509880, + "normalized_name": "the end o o" + }, + { + "appid": 509910, + "normalized_name": "night vigil" + }, + { + "appid": 509920, + "normalized_name": "doc apocalypse" + }, + { + "appid": 509930, + "normalized_name": "nightmarez" + }, + { + "appid": 509950, + "normalized_name": "transmission" + }, + { + "appid": 509960, + "normalized_name": "pinga ponga" + }, + { + "appid": 509980, + "normalized_name": "bigfoot" + }, + { + "appid": 510000, + "normalized_name": "xecryst remains" + }, + { + "appid": 510040, + "normalized_name": "a matter of murder" + }, + { + "appid": 510050, + "normalized_name": "you have 10 seconds" + }, + { + "appid": 510060, + "normalized_name": "punch bomb" + }, + { + "appid": 510070, + "normalized_name": "shiperoids" + }, + { + "appid": 510080, + "normalized_name": "worldy cup" + }, + { + "appid": 510110, + "normalized_name": "new yankee in king arthur's court 2" + }, + { + "appid": 510130, + "normalized_name": "power link vr" + }, + { + "appid": 510180, + "normalized_name": "nde rescue" + }, + { + "appid": 510240, + "normalized_name": "forma.8" + }, + { + "appid": 510250, + "normalized_name": "super destronaut" + }, + { + "appid": 510280, + "normalized_name": "orange adventure" + }, + { + "appid": 510290, + "normalized_name": "dexed" + }, + { + "appid": 510320, + "normalized_name": "conflict of heroes awakening the bear" + }, + { + "appid": 510360, + "normalized_name": "recession" + }, + { + "appid": 510370, + "normalized_name": "dragon souls" + }, + { + "appid": 510380, + "normalized_name": "goventure micro business" + }, + { + "appid": 510390, + "normalized_name": "unknown fate" + }, + { + "appid": 510410, + "normalized_name": "cogs and cowboys" + }, + { + "appid": 510420, + "normalized_name": "the hex" + }, + { + "appid": 510430, + "normalized_name": "stacks on stacks (on stacks)" + }, + { + "appid": 510490, + "normalized_name": "the fall part 2 unbound" + }, + { + "appid": 510500, + "normalized_name": "executive assault 2" + }, + { + "appid": 510520, + "normalized_name": "little red lie" + }, + { + "appid": 510540, + "normalized_name": "long gone days" + }, + { + "appid": 510550, + "normalized_name": "congo merc" + }, + { + "appid": 510570, + "normalized_name": "curse" + }, + { + "appid": 510590, + "normalized_name": "d the game" + }, + { + "appid": 510620, + "normalized_name": "thoth" + }, + { + "appid": 510650, + "normalized_name": "eventide 2 the sorcerers mirror" + }, + { + "appid": 510660, + "normalized_name": "big bang empire" + }, + { + "appid": 510680, + "normalized_name": "re angel" + }, + { + "appid": 510700, + "normalized_name": "armor clash vr" + }, + { + "appid": 510710, + "normalized_name": "bloxiq vr" + }, + { + "appid": 510730, + "normalized_name": "grim seventh" + }, + { + "appid": 510740, + "normalized_name": "konrad's kittens" + }, + { + "appid": 510750, + "normalized_name": "driftwood the visual novel" + }, + { + "appid": 510780, + "normalized_name": "skyboats" + }, + { + "appid": 510790, + "normalized_name": "the sun will rise" + }, + { + "appid": 510840, + "normalized_name": "evolvation" + }, + { + "appid": 510850, + "normalized_name": "mars 2030" + }, + { + "appid": 510910, + "normalized_name": "temple of the apsara" + }, + { + "appid": 510930, + "normalized_name": "thirst vr" + }, + { + "appid": 510960, + "normalized_name": "puzzling rooms vr" + }, + { + "appid": 510990, + "normalized_name": "loowarvr" + }, + { + "appid": 511010, + "normalized_name": "taiker" + }, + { + "appid": 511070, + "normalized_name": "manic miners" + }, + { + "appid": 511090, + "normalized_name": "the shape of heart" + }, + { + "appid": 511110, + "normalized_name": "dodgeball blitz" + }, + { + "appid": 511120, + "normalized_name": "ikenie" + }, + { + "appid": 511140, + "normalized_name": "new york mysteries the lantern of souls collector's" + }, + { + "appid": 511160, + "normalized_name": "cubway" + }, + { + "appid": 511190, + "normalized_name": "graveyard shift" + }, + { + "appid": 511230, + "normalized_name": "the last" + }, + { + "appid": 511250, + "normalized_name": "cloudbase prime" + }, + { + "appid": 511270, + "normalized_name": "bounce paradise" + }, + { + "appid": 511280, + "normalized_name": "negligee spring clean" + }, + { + "appid": 511320, + "normalized_name": "echoes of the fey the fox's trail" + }, + { + "appid": 511330, + "normalized_name": "farm life natures adventure" + }, + { + "appid": 511350, + "normalized_name": "mr. massagy" + }, + { + "appid": 511380, + "normalized_name": "pozzo jello crusade" + }, + { + "appid": 511390, + "normalized_name": "base raid" + }, + { + "appid": 511420, + "normalized_name": "aleph null" + }, + { + "appid": 511430, + "normalized_name": "crossworlds escape" + }, + { + "appid": 511460, + "normalized_name": "unaided 1939" + }, + { + "appid": 511470, + "normalized_name": "glass masquerade" + }, + { + "appid": 511490, + "normalized_name": "malavision the beginning" + }, + { + "appid": 511500, + "normalized_name": "nanuleu" + }, + { + "appid": 511540, + "normalized_name": "moonquest" + }, + { + "appid": 511560, + "normalized_name": "world of golf" + }, + { + "appid": 511570, + "normalized_name": "nightstar" + }, + { + "appid": 511600, + "normalized_name": "space jones vr" + }, + { + "appid": 511610, + "normalized_name": "adventure of thieves" + }, + { + "appid": 511630, + "normalized_name": "max an autistic journey" + }, + { + "appid": 511660, + "normalized_name": "beachhead 2002" + }, + { + "appid": 511680, + "normalized_name": "fate/extella" + }, + { + "appid": 511690, + "normalized_name": "duck force" + }, + { + "appid": 511700, + "normalized_name": "ship it" + }, + { + "appid": 511730, + "normalized_name": "airborne empires" + }, + { + "appid": 511740, + "normalized_name": "gal*gun double peace" + }, + { + "appid": 511790, + "normalized_name": "retro football boss" + }, + { + "appid": 511800, + "normalized_name": "onraid" + }, + { + "appid": 511810, + "normalized_name": "chexs" + }, + { + "appid": 511820, + "normalized_name": "le havre the inland port" + }, + { + "appid": 511830, + "normalized_name": "vr paintball heartbreak regret & paintbots" + }, + { + "appid": 511920, + "normalized_name": "reproduction man" + }, + { + "appid": 511960, + "normalized_name": "gravity shot" + }, + { + "appid": 512000, + "normalized_name": "kite" + }, + { + "appid": 512020, + "normalized_name": "box maze" + }, + { + "appid": 512060, + "normalized_name": "stay! stay! democratic people's republic of korea!" + }, + { + "appid": 512070, + "normalized_name": "hue defense" + }, + { + "appid": 512080, + "normalized_name": "fancy skiing vr" + }, + { + "appid": 512090, + "normalized_name": "tank defense division" + }, + { + "appid": 512110, + "normalized_name": "cosmos crash vr" + }, + { + "appid": 512120, + "normalized_name": "nakiti generations" + }, + { + "appid": 512150, + "normalized_name": "swordlord" + }, + { + "appid": 512160, + "normalized_name": "volleying" + }, + { + "appid": 512170, + "normalized_name": "the research facility no.507" + }, + { + "appid": 512180, + "normalized_name": "nightshade/百花百狼" + }, + { + "appid": 512220, + "normalized_name": "trickster vr co op dungeon crawler" + }, + { + "appid": 512230, + "normalized_name": "sally's law" + }, + { + "appid": 512240, + "normalized_name": "duckpocalypse" + }, + { + "appid": 512250, + "normalized_name": "oh...sir!! the insult simulator" + }, + { + "appid": 512260, + "normalized_name": "avalon legends solitaire 2" + }, + { + "appid": 512270, + "normalized_name": "home a vr spacewalk" + }, + { + "appid": 512300, + "normalized_name": "unbox newbie's adventure" + }, + { + "appid": 512370, + "normalized_name": "hero boy" + }, + { + "appid": 512410, + "normalized_name": "69 ways to kill a zombie" + }, + { + "appid": 512420, + "normalized_name": "wave magic vr" + }, + { + "appid": 512430, + "normalized_name": "make america great again" + }, + { + "appid": 512460, + "normalized_name": "nature and life drunk on nectar" + }, + { + "appid": 512470, + "normalized_name": "the pirate caribbean hunt" + }, + { + "appid": 512490, + "normalized_name": "zombie estate 2" + }, + { + "appid": 512550, + "normalized_name": "cursed west" + }, + { + "appid": 512560, + "normalized_name": "hocwar" + }, + { + "appid": 512640, + "normalized_name": "final quest" + }, + { + "appid": 512680, + "normalized_name": "pan dimensional conga combat" + }, + { + "appid": 512700, + "normalized_name": "duckles the jigsaw witch" + }, + { + "appid": 512720, + "normalized_name": "velocidevorium" + }, + { + "appid": 512740, + "normalized_name": "flat path" + }, + { + "appid": 512750, + "normalized_name": "one giant leap" + }, + { + "appid": 512770, + "normalized_name": "iactura" + }, + { + "appid": 512790, + "normalized_name": "quern undying thoughts" + }, + { + "appid": 512830, + "normalized_name": "zombie trigger" + }, + { + "appid": 512890, + "normalized_name": "elsinore" + }, + { + "appid": 512900, + "normalized_name": "streets of rogue" + }, + { + "appid": 512920, + "normalized_name": "trigger time" + }, + { + "appid": 513000, + "normalized_name": "kuboom" + }, + { + "appid": 513060, + "normalized_name": "wills and wonders" + }, + { + "appid": 513160, + "normalized_name": "escape from zellman orbital" + }, + { + "appid": 513170, + "normalized_name": "the tower last stand" + }, + { + "appid": 513210, + "normalized_name": "rescue bear operation" + }, + { + "appid": 513230, + "normalized_name": "the underground man" + }, + { + "appid": 513240, + "normalized_name": "birdtual reality" + }, + { + "appid": 513250, + "normalized_name": "rogue stache" + }, + { + "appid": 513260, + "normalized_name": "green moon 2" + }, + { + "appid": 513270, + "normalized_name": "lockdown stand alone" + }, + { + "appid": 513290, + "normalized_name": "lucius iii" + }, + { + "appid": 513310, + "normalized_name": "aviators" + }, + { + "appid": 513320, + "normalized_name": "alice vr" + }, + { + "appid": 513330, + "normalized_name": "party tycoon" + }, + { + "appid": 513340, + "normalized_name": "through abandoned the forest" + }, + { + "appid": 513360, + "normalized_name": "mu cartographer" + }, + { + "appid": 513370, + "normalized_name": "blade & bones" + }, + { + "appid": 513420, + "normalized_name": "vr escape the space station" + }, + { + "appid": 513450, + "normalized_name": "drop alive" + }, + { + "appid": 513460, + "normalized_name": "agenda" + }, + { + "appid": 513480, + "normalized_name": "geo" + }, + { + "appid": 513490, + "normalized_name": "1943 berlin blitz" + }, + { + "appid": 513510, + "normalized_name": "intralism" + }, + { + "appid": 513550, + "normalized_name": "vive le roi" + }, + { + "appid": 513560, + "normalized_name": "hunger dungeon" + }, + { + "appid": 513570, + "normalized_name": "wooden house" + }, + { + "appid": 513580, + "normalized_name": "miaou moon" + }, + { + "appid": 513590, + "normalized_name": "so many cubes" + }, + { + "appid": 513600, + "normalized_name": "energy invasion" + }, + { + "appid": 513610, + "normalized_name": "madrobot x" + }, + { + "appid": 513620, + "normalized_name": "skytime" + }, + { + "appid": 513660, + "normalized_name": "rest in jelly" + }, + { + "appid": 513690, + "normalized_name": "danger zone 2" + }, + { + "appid": 513710, + "normalized_name": "scum" + }, + { + "appid": 513720, + "normalized_name": "archipelago" + }, + { + "appid": 513740, + "normalized_name": "joana's life" + }, + { + "appid": 513770, + "normalized_name": "click space miner" + }, + { + "appid": 513780, + "normalized_name": "turbo pug dx" + }, + { + "appid": 513790, + "normalized_name": "deadlock" + }, + { + "appid": 513810, + "normalized_name": "arkham nightmares" + }, + { + "appid": 513820, + "normalized_name": "luxis" + }, + { + "appid": 513840, + "normalized_name": "friday night bullet arena" + }, + { + "appid": 513860, + "normalized_name": "elena" + }, + { + "appid": 513880, + "normalized_name": "panzer warfare" + }, + { + "appid": 513890, + "normalized_name": "the frostrune" + }, + { + "appid": 513910, + "normalized_name": "c.a.r.l." + }, + { + "appid": 513920, + "normalized_name": "desperate times" + }, + { + "appid": 513930, + "normalized_name": "j.u.r japan underground racing" + }, + { + "appid": 513960, + "normalized_name": "galactic fighters" + }, + { + "appid": 513980, + "normalized_name": "oh no! bugs!" + }, + { + "appid": 513990, + "normalized_name": "happy empire" + }, + { + "appid": 514010, + "normalized_name": "football mogul 15" + }, + { + "appid": 514050, + "normalized_name": "uprising 2 lead and destroy" + }, + { + "appid": 514080, + "normalized_name": "deadly dozen" + }, + { + "appid": 514090, + "normalized_name": "beautiful japanese scenery animated jigsaws" + }, + { + "appid": 514130, + "normalized_name": "european air war" + }, + { + "appid": 514140, + "normalized_name": "elite warriors vietnam" + }, + { + "appid": 514150, + "normalized_name": "line of sight vietnam" + }, + { + "appid": 514160, + "normalized_name": "18 wheels of steel across america" + }, + { + "appid": 514170, + "normalized_name": "18 wheels of steel convoy" + }, + { + "appid": 514180, + "normalized_name": "18 wheels of steel haulin’" + }, + { + "appid": 514200, + "normalized_name": "mythic victory arena" + }, + { + "appid": 514220, + "normalized_name": "super gunworld 2" + }, + { + "appid": 514240, + "normalized_name": "alone?" + }, + { + "appid": 514290, + "normalized_name": "factory engineer" + }, + { + "appid": 514310, + "normalized_name": "senran kagura bon appétit! full course" + }, + { + "appid": 514340, + "normalized_name": "aliens go home run" + }, + { + "appid": 514350, + "normalized_name": "fancy slingshot vr" + }, + { + "appid": 514360, + "normalized_name": "freedom fighter" + }, + { + "appid": 514370, + "normalized_name": "dragonblast vr" + }, + { + "appid": 514390, + "normalized_name": "pooshooter toilet invaders" + }, + { + "appid": 514400, + "normalized_name": "legends of time" + }, + { + "appid": 514410, + "normalized_name": "gun brothers" + }, + { + "appid": 514460, + "normalized_name": "cyberline racing" + }, + { + "appid": 514470, + "normalized_name": "fantastic 4 in a row 2" + }, + { + "appid": 514480, + "normalized_name": "fantastic checkers 2" + }, + { + "appid": 514490, + "normalized_name": "word search 2 letter boxed" + }, + { + "appid": 514510, + "normalized_name": "unreal heroes" + }, + { + "appid": 514520, + "normalized_name": "sparky's hunt" + }, + { + "appid": 514530, + "normalized_name": "rally racers" + }, + { + "appid": 514570, + "normalized_name": "pinball parlor" + }, + { + "appid": 514580, + "normalized_name": "cooking witch" + }, + { + "appid": 514620, + "normalized_name": "ellipsis" + }, + { + "appid": 514640, + "normalized_name": "tankyou!" + }, + { + "appid": 514650, + "normalized_name": "orbital x" + }, + { + "appid": 514660, + "normalized_name": "bitmaster" + }, + { + "appid": 514670, + "normalized_name": "satellite command" + }, + { + "appid": 514700, + "normalized_name": "mystery case files 13th skull collector's" + }, + { + "appid": 514720, + "normalized_name": "dark tales edgar allan poe's the masque of the red death collector's" + }, + { + "appid": 514730, + "normalized_name": "hidden expedition dawn of prosperity collector's" + }, + { + "appid": 514740, + "normalized_name": "final cut death on the silver screen collector's" + }, + { + "appid": 514750, + "normalized_name": "nightmare adventures the witch's prison" + }, + { + "appid": 514760, + "normalized_name": "spirits of mystery amber maiden collector's" + }, + { + "appid": 514770, + "normalized_name": "grave mania pandemic pandemonium" + }, + { + "appid": 514780, + "normalized_name": "best in show solitaire" + }, + { + "appid": 514810, + "normalized_name": "eldritch hunter" + }, + { + "appid": 514820, + "normalized_name": "wasps!" + }, + { + "appid": 514830, + "normalized_name": "stifled echolocation horror mystery" + }, + { + "appid": 514890, + "normalized_name": "super jagua" + }, + { + "appid": 514920, + "normalized_name": "crash wheels" + }, + { + "appid": 514930, + "normalized_name": "super hop 'n' bop ultra" + }, + { + "appid": 514990, + "normalized_name": "outbreak" + }, + { + "appid": 515000, + "normalized_name": "panic at multiverse high!" + }, + { + "appid": 515010, + "normalized_name": "a duel hand disaster trackher" + }, + { + "appid": 515020, + "normalized_name": "the vr museum of fine art" + }, + { + "appid": 515040, + "normalized_name": "make america great again the trump presidency" + }, + { + "appid": 515060, + "normalized_name": "third eye" + }, + { + "appid": 515180, + "normalized_name": "bus simulator 18" + }, + { + "appid": 515200, + "normalized_name": "cliff hanger" + }, + { + "appid": 515230, + "normalized_name": "cleo's lost idols" + }, + { + "appid": 515260, + "normalized_name": "virtual rides 3 funfair simulator" + }, + { + "appid": 515470, + "normalized_name": "hyper color ball" + }, + { + "appid": 515570, + "normalized_name": "ubermosh vol.3" + }, + { + "appid": 515650, + "normalized_name": "straimium immortaly" + }, + { + "appid": 515690, + "normalized_name": "warriors of vilvatikta" + }, + { + "appid": 515700, + "normalized_name": "snowday" + }, + { + "appid": 515890, + "normalized_name": "marty thinks 4d" + }, + { + "appid": 515900, + "normalized_name": "rock" + }, + { + "appid": 515910, + "normalized_name": "hooligan vasja" + }, + { + "appid": 515960, + "normalized_name": "martha is dead" + }, + { + "appid": 516000, + "normalized_name": "candy thieves tale of gnomes" + }, + { + "appid": 516010, + "normalized_name": "board defenders" + }, + { + "appid": 516030, + "normalized_name": "insane robots" + }, + { + "appid": 516040, + "normalized_name": "everything is peachy" + }, + { + "appid": 516110, + "normalized_name": "toejam & earl back in the groove!" + }, + { + "appid": 516120, + "normalized_name": "juno's darkest hour" + }, + { + "appid": 516130, + "normalized_name": "runner3" + }, + { + "appid": 516250, + "normalized_name": "skynet rising portal to the past" + }, + { + "appid": 516360, + "normalized_name": "gerty robots in love" + }, + { + "appid": 516430, + "normalized_name": "ruin of the reckless" + }, + { + "appid": 516440, + "normalized_name": "alien rampage" + }, + { + "appid": 516460, + "normalized_name": "50 years" + }, + { + "appid": 516470, + "normalized_name": "crappy zombie game" + }, + { + "appid": 516480, + "normalized_name": "pinkman" + }, + { + "appid": 516500, + "normalized_name": "zissi's island" + }, + { + "appid": 516510, + "normalized_name": "orake classic" + }, + { + "appid": 516520, + "normalized_name": "omega reaction" + }, + { + "appid": 516550, + "normalized_name": "relativity" + }, + { + "appid": 516560, + "normalized_name": "the odyssey" + }, + { + "appid": 516570, + "normalized_name": "adaptr" + }, + { + "appid": 516580, + "normalized_name": "dystoria" + }, + { + "appid": 516590, + "normalized_name": "cyberthreat" + }, + { + "appid": 516600, + "normalized_name": "bai qu hundreds of melodies" + }, + { + "appid": 516610, + "normalized_name": "guardian war vr" + }, + { + "appid": 516640, + "normalized_name": "a large quantity of mushrooms" + }, + { + "appid": 516650, + "normalized_name": "preston sterling" + }, + { + "appid": 516680, + "normalized_name": "flying baron 1916" + }, + { + "appid": 516740, + "normalized_name": "elves vs goblins defender" + }, + { + "appid": 516750, + "normalized_name": "my summer car" + }, + { + "appid": 516790, + "normalized_name": "fat mask" + }, + { + "appid": 516810, + "normalized_name": "the garden" + }, + { + "appid": 516820, + "normalized_name": "exodemon" + }, + { + "appid": 516830, + "normalized_name": "grapply" + }, + { + "appid": 516840, + "normalized_name": "the tale of doris and the dragon episode 1" + }, + { + "appid": 516870, + "normalized_name": "isomorph" + }, + { + "appid": 516890, + "normalized_name": "alchemic jousts" + }, + { + "appid": 516900, + "normalized_name": "oniris basket vr" + }, + { + "appid": 516920, + "normalized_name": "veilia" + }, + { + "appid": 516940, + "normalized_name": "minesweeper vr" + }, + { + "appid": 516960, + "normalized_name": "b.c.e." + }, + { + "appid": 517000, + "normalized_name": "sakura shrine girls" + }, + { + "appid": 517010, + "normalized_name": "aztecalypse" + }, + { + "appid": 517060, + "normalized_name": "day of the trumplings" + }, + { + "appid": 517130, + "normalized_name": "soundboxing" + }, + { + "appid": 517140, + "normalized_name": "polycrusher" + }, + { + "appid": 517160, + "normalized_name": "richie's plank experience" + }, + { + "appid": 517190, + "normalized_name": "rebound" + }, + { + "appid": 517210, + "normalized_name": "bad pad" + }, + { + "appid": 517220, + "normalized_name": "balls! virtual reality cricket" + }, + { + "appid": 517230, + "normalized_name": "spinning maze" + }, + { + "appid": 517240, + "normalized_name": "machinations fog of war" + }, + { + "appid": 517270, + "normalized_name": "pro farm manager" + }, + { + "appid": 517280, + "normalized_name": "zescape" + }, + { + "appid": 517300, + "normalized_name": "publisher tycoon" + }, + { + "appid": 517320, + "normalized_name": "gungirl 2" + }, + { + "appid": 517330, + "normalized_name": "stellar interface" + }, + { + "appid": 517340, + "normalized_name": "tank tread" + }, + { + "appid": 517350, + "normalized_name": "squareface" + }, + { + "appid": 517360, + "normalized_name": "the secret order 4 beyond time" + }, + { + "appid": 517370, + "normalized_name": "tavernier" + }, + { + "appid": 517400, + "normalized_name": "vr amazing files horror hospital" + }, + { + "appid": 517460, + "normalized_name": "steamhammervr the rogue apprentice" + }, + { + "appid": 517470, + "normalized_name": "king of booze drinking game" + }, + { + "appid": 517480, + "normalized_name": "vhsoverdose" + }, + { + "appid": 517500, + "normalized_name": "tactics bludgeons blessing" + }, + { + "appid": 517510, + "normalized_name": "flatshot" + }, + { + "appid": 517550, + "normalized_name": "the enlightened league of bone builders and the osseous enigma" + }, + { + "appid": 517620, + "normalized_name": "gooblins" + }, + { + "appid": 517630, + "normalized_name": "just cause 4 reloaded" + }, + { + "appid": 517660, + "normalized_name": "drop out 0" + }, + { + "appid": 517670, + "normalized_name": "cowbots and aliens" + }, + { + "appid": 517680, + "normalized_name": "a dead world's dream" + }, + { + "appid": 517710, + "normalized_name": "redout enhanced" + }, + { + "appid": 517720, + "normalized_name": "epic tavern" + }, + { + "appid": 517770, + "normalized_name": "caketomino" + }, + { + "appid": 517780, + "normalized_name": "ogre" + }, + { + "appid": 517790, + "normalized_name": "caesar 3" + }, + { + "appid": 517810, + "normalized_name": "caesar iv" + }, + { + "appid": 517910, + "normalized_name": "sisyphus reborn" + }, + { + "appid": 517930, + "normalized_name": "the castles of dr. creep" + }, + { + "appid": 517960, + "normalized_name": "crate punks" + }, + { + "appid": 517970, + "normalized_name": "cranga! harbor frenzy" + }, + { + "appid": 517990, + "normalized_name": "city vr" + }, + { + "appid": 518000, + "normalized_name": "edge guardian" + }, + { + "appid": 518030, + "normalized_name": "aim hero" + }, + { + "appid": 518040, + "normalized_name": "volleyball unbound pro beach volleyball" + }, + { + "appid": 518060, + "normalized_name": "chess ultra" + }, + { + "appid": 518110, + "normalized_name": "ahros one warrior chronicle" + }, + { + "appid": 518120, + "normalized_name": "chimpact 1 chuck's adventure" + }, + { + "appid": 518130, + "normalized_name": "how to shoot a criminal" + }, + { + "appid": 518140, + "normalized_name": "lectrovolt ii" + }, + { + "appid": 518150, + "normalized_name": "intruder" + }, + { + "appid": 518190, + "normalized_name": "sky jac" + }, + { + "appid": 518280, + "normalized_name": "dead end junction" + }, + { + "appid": 518580, + "normalized_name": "accounting (legacy)" + }, + { + "appid": 518610, + "normalized_name": "live in color" + }, + { + "appid": 518620, + "normalized_name": "ballistick" + }, + { + "appid": 518640, + "normalized_name": "dragon skies vr" + }, + { + "appid": 518650, + "normalized_name": "illumine" + }, + { + "appid": 518660, + "normalized_name": "zone4" + }, + { + "appid": 518670, + "normalized_name": "intensive exposure" + }, + { + "appid": 518680, + "normalized_name": "kapsul infinite" + }, + { + "appid": 518730, + "normalized_name": "zombo buster rising" + }, + { + "appid": 518740, + "normalized_name": "why is the princess in a magic forest?!" + }, + { + "appid": 518790, + "normalized_name": "thehunter call of the wild" + }, + { + "appid": 518800, + "normalized_name": "lone leader" + }, + { + "appid": 518920, + "normalized_name": "surgeon simulator experience reality" + }, + { + "appid": 519020, + "normalized_name": "shuttle siege" + }, + { + "appid": 519030, + "normalized_name": "don't let go!" + }, + { + "appid": 519080, + "normalized_name": "soda girls" + }, + { + "appid": 519140, + "normalized_name": "minds eyes" + }, + { + "appid": 519160, + "normalized_name": "toon ocean vr" + }, + { + "appid": 519170, + "normalized_name": "the journey home" + }, + { + "appid": 519180, + "normalized_name": "streamer simulator" + }, + { + "appid": 519190, + "normalized_name": "next day survival" + }, + { + "appid": 519200, + "normalized_name": "kitty kitty boing boing the happy adventure in puzzle garden!" + }, + { + "appid": 519490, + "normalized_name": "nba 2kvr experience" + }, + { + "appid": 519540, + "normalized_name": "virtual islands" + }, + { + "appid": 519550, + "normalized_name": "space dvrts" + }, + { + "appid": 519860, + "normalized_name": "dusk" + }, + { + "appid": 519870, + "normalized_name": "flying pengy" + }, + { + "appid": 519890, + "normalized_name": "star boss" + }, + { + "appid": 519940, + "normalized_name": "kubz vr" + }, + { + "appid": 519980, + "normalized_name": "trains vr" + }, + { + "appid": 519990, + "normalized_name": "zenza" + }, + { + "appid": 520010, + "normalized_name": "climbey" + }, + { + "appid": 520080, + "normalized_name": "your star" + }, + { + "appid": 520120, + "normalized_name": "vanguard v" + }, + { + "appid": 520150, + "normalized_name": "a midsummer night's choice" + }, + { + "appid": 520230, + "normalized_name": "twinforce" + }, + { + "appid": 520250, + "normalized_name": "visitors" + }, + { + "appid": 520270, + "normalized_name": "thrills & chills roller coasters" + }, + { + "appid": 520290, + "normalized_name": "fright light" + }, + { + "appid": 520300, + "normalized_name": "underworld dungeon" + }, + { + "appid": 520330, + "normalized_name": "power tools vr" + }, + { + "appid": 520370, + "normalized_name": "pigeon fight" + }, + { + "appid": 520380, + "normalized_name": "camper jumper simulator" + }, + { + "appid": 520410, + "normalized_name": "spacepod" + }, + { + "appid": 520440, + "normalized_name": "guilty gear xrd rev 2" + }, + { + "appid": 520470, + "normalized_name": "music inside a vr rhythm game" + }, + { + "appid": 520510, + "normalized_name": "tribocalypse vr" + }, + { + "appid": 520520, + "normalized_name": "it comes around a kinetic novel" + }, + { + "appid": 520540, + "normalized_name": "tribloos 3" + }, + { + "appid": 520590, + "normalized_name": "the journey of forgotten memories" + }, + { + "appid": 520600, + "normalized_name": "purrfect date visual novel/dating simulator" + }, + { + "appid": 520610, + "normalized_name": "drive on moscow" + }, + { + "appid": 520660, + "normalized_name": "wrack exoverse" + }, + { + "appid": 520670, + "normalized_name": "strikers edge" + }, + { + "appid": 520680, + "normalized_name": "lost cities" + }, + { + "appid": 520720, + "normalized_name": "dear esther landmark" + }, + { + "appid": 520750, + "normalized_name": "dwvr" + }, + { + "appid": 520810, + "normalized_name": "metal noise" + }, + { + "appid": 520850, + "normalized_name": "lost in secular love" + }, + { + "appid": 520860, + "normalized_name": "impulse of war" + }, + { + "appid": 520910, + "normalized_name": "kokurase episode 1" + }, + { + "appid": 520930, + "normalized_name": "pong it! vr" + }, + { + "appid": 520940, + "normalized_name": "mx vs atv all out" + }, + { + "appid": 520950, + "normalized_name": "drift ce" + }, + { + "appid": 520990, + "normalized_name": "barrow hill the dark path" + }, + { + "appid": 521000, + "normalized_name": "globe rush" + }, + { + "appid": 521090, + "normalized_name": "industry giant" + }, + { + "appid": 521100, + "normalized_name": "minosmaze the minotaur's labyrinth" + }, + { + "appid": 521110, + "normalized_name": "zombie birds first encounter halloween" + }, + { + "appid": 521130, + "normalized_name": "dots extreme" + }, + { + "appid": 521140, + "normalized_name": "king machine" + }, + { + "appid": 521150, + "normalized_name": "another brick in the mall" + }, + { + "appid": 521200, + "normalized_name": "epic battle fantasy 3" + }, + { + "appid": 521210, + "normalized_name": "timore 5" + }, + { + "appid": 521230, + "normalized_name": "stone age wars" + }, + { + "appid": 521250, + "normalized_name": "blue screen adventures" + }, + { + "appid": 521280, + "normalized_name": "atlantis pearls of the deep" + }, + { + "appid": 521300, + "normalized_name": "the electric shocktopus" + }, + { + "appid": 521320, + "normalized_name": "final warrior quest" + }, + { + "appid": 521330, + "normalized_name": "skull ball heroes" + }, + { + "appid": 521340, + "normalized_name": "true or false" + }, + { + "appid": 521350, + "normalized_name": "use your words" + }, + { + "appid": 521380, + "normalized_name": "life of a caveman" + }, + { + "appid": 521390, + "normalized_name": "rhythmslinger" + }, + { + "appid": 521430, + "normalized_name": "super switch" + }, + { + "appid": 521450, + "normalized_name": "hunted one step too far reborn" + }, + { + "appid": 521470, + "normalized_name": "magical otoge ciel" + }, + { + "appid": 521500, + "normalized_name": "sakura space" + }, + { + "appid": 521510, + "normalized_name": "magical×spiral" + }, + { + "appid": 521540, + "normalized_name": "this world unknown" + }, + { + "appid": 521560, + "normalized_name": "the mystery of woolley mountain" + }, + { + "appid": 521570, + "normalized_name": "you have 10 seconds 2" + }, + { + "appid": 521580, + "normalized_name": "where are my internets?" + }, + { + "appid": 521590, + "normalized_name": "subterra" + }, + { + "appid": 521620, + "normalized_name": "alchemist adventure" + }, + { + "appid": 521630, + "normalized_name": "toadled classic" + }, + { + "appid": 521650, + "normalized_name": "genghis khan" + }, + { + "appid": 521660, + "normalized_name": "nobunaga's ambition zenkokuban" + }, + { + "appid": 521670, + "normalized_name": "romance of the three kingdoms" + }, + { + "appid": 521680, + "normalized_name": "bandit kings of ancient china" + }, + { + "appid": 521690, + "normalized_name": "romance of the three kingdoms ii" + }, + { + "appid": 521700, + "normalized_name": "nobunaga's ambition sengoku gunyuuden" + }, + { + "appid": 521710, + "normalized_name": "romance of the three kingdoms iii" + }, + { + "appid": 521720, + "normalized_name": "uncharted waters" + }, + { + "appid": 521730, + "normalized_name": "romance of the three kingdoms iv with power up kit" + }, + { + "appid": 521740, + "normalized_name": "nobunaga's ambition bushou fuunroku" + }, + { + "appid": 521750, + "normalized_name": "romance of the three kingdoms v with power up kit" + }, + { + "appid": 521760, + "normalized_name": "taiko risshiden" + }, + { + "appid": 521790, + "normalized_name": "ancient frontier" + }, + { + "appid": 521800, + "normalized_name": "command ops 2 core game" + }, + { + "appid": 521860, + "normalized_name": "lop nor zombie vr (htc vive)" + }, + { + "appid": 521890, + "normalized_name": "hello neighbor" + }, + { + "appid": 521920, + "normalized_name": "death's hangover" + }, + { + "appid": 521950, + "normalized_name": "bullet sorrow vr" + }, + { + "appid": 521980, + "normalized_name": "autumn dream" + }, + { + "appid": 521990, + "normalized_name": "galactic storm" + }, + { + "appid": 522000, + "normalized_name": "blind blades" + }, + { + "appid": 522010, + "normalized_name": "lost crew" + }, + { + "appid": 522020, + "normalized_name": "blue effect vr" + }, + { + "appid": 522040, + "normalized_name": "princess remedy 2 in a heap of trouble" + }, + { + "appid": 522070, + "normalized_name": "abstract initiative" + }, + { + "appid": 522080, + "normalized_name": "gemstone keeper" + }, + { + "appid": 522090, + "normalized_name": "medieval defenders" + }, + { + "appid": 522130, + "normalized_name": "landtraveller" + }, + { + "appid": 522200, + "normalized_name": "loading human chapter 1" + }, + { + "appid": 522210, + "normalized_name": "serial cleaner" + }, + { + "appid": 522220, + "normalized_name": "inmind 2 vr" + }, + { + "appid": 522230, + "normalized_name": "the fishing club 3d co op sport angling" + }, + { + "appid": 522240, + "normalized_name": "pool panic" + }, + { + "appid": 522250, + "normalized_name": "quick draw" + }, + { + "appid": 522290, + "normalized_name": "super cucumber" + }, + { + "appid": 522300, + "normalized_name": "polywings" + }, + { + "appid": 522340, + "normalized_name": "ghostlords" + }, + { + "appid": 522470, + "normalized_name": "the house of da vinci" + }, + { + "appid": 522490, + "normalized_name": "carrie's order up!" + }, + { + "appid": 522530, + "normalized_name": "revenant saga" + }, + { + "appid": 522570, + "normalized_name": "the last hope" + }, + { + "appid": 522590, + "normalized_name": "near midnight" + }, + { + "appid": 522610, + "normalized_name": "lord of the seal" + }, + { + "appid": 522660, + "normalized_name": "snooker online multiplayer snooker game!" + }, + { + "appid": 522690, + "normalized_name": "in fear i trust" + }, + { + "appid": 522700, + "normalized_name": "the final days i'm still alive" + }, + { + "appid": 522710, + "normalized_name": "virtual escape the play room" + }, + { + "appid": 522730, + "normalized_name": "god of arrows vr" + }, + { + "appid": 522740, + "normalized_name": "oh my godheads" + }, + { + "appid": 522880, + "normalized_name": "psycho pass mandatory happiness" + }, + { + "appid": 522890, + "normalized_name": "ant gravity tiny's adventure" + }, + { + "appid": 522900, + "normalized_name": "when it hits the fan" + }, + { + "appid": 522940, + "normalized_name": "gun godz" + }, + { + "appid": 522950, + "normalized_name": "mayhem zx" + }, + { + "appid": 522960, + "normalized_name": "airship commander" + }, + { + "appid": 522990, + "normalized_name": "spell casting meowgically enhanced" + }, + { + "appid": 523000, + "normalized_name": "princess maker 2 refine" + }, + { + "appid": 523030, + "normalized_name": "tank universal 2" + }, + { + "appid": 523060, + "normalized_name": "planet smasher" + }, + { + "appid": 523070, + "normalized_name": "black forest" + }, + { + "appid": 523080, + "normalized_name": "gamepad controller template" + }, + { + "appid": 523090, + "normalized_name": "bomb u!" + }, + { + "appid": 523150, + "normalized_name": "mahjong world contest (麻将)" + }, + { + "appid": 523160, + "normalized_name": "alice's patchworks 2" + }, + { + "appid": 523170, + "normalized_name": "shotforge" + }, + { + "appid": 523180, + "normalized_name": "doritos vr battle" + }, + { + "appid": 523210, + "normalized_name": "a normal lost phone" + }, + { + "appid": 523440, + "normalized_name": "ztime (danger noodles!)" + }, + { + "appid": 523550, + "normalized_name": "defense of castle chilly" + }, + { + "appid": 523570, + "normalized_name": "across flash" + }, + { + "appid": 523610, + "normalized_name": "beyond enemy lines" + }, + { + "appid": 523640, + "normalized_name": "the works of mercy" + }, + { + "appid": 523650, + "normalized_name": "lust for darkness" + }, + { + "appid": 523660, + "normalized_name": "hypercharge unboxed" + }, + { + "appid": 523670, + "normalized_name": "adventures of fluzz" + }, + { + "appid": 523680, + "normalized_name": "honey rose underdog fighter extraordinaire" + }, + { + "appid": 523710, + "normalized_name": "sword master vr" + }, + { + "appid": 523720, + "normalized_name": "unruly ghouls" + }, + { + "appid": 523730, + "normalized_name": "sweet volley high" + }, + { + "appid": 523740, + "normalized_name": "techwars global conflict" + }, + { + "appid": 523750, + "normalized_name": "the 4th coming" + }, + { + "appid": 523760, + "normalized_name": "loot or die" + }, + { + "appid": 523770, + "normalized_name": "of bird and cage" + }, + { + "appid": 523780, + "normalized_name": "emily is away too" + }, + { + "appid": 523860, + "normalized_name": "launch squad" + }, + { + "appid": 523870, + "normalized_name": "breaking fast" + }, + { + "appid": 523880, + "normalized_name": "peakvox escape virus hd" + }, + { + "appid": 523890, + "normalized_name": "stardrone vr" + }, + { + "appid": 523900, + "normalized_name": "fated souls 2" + }, + { + "appid": 523940, + "normalized_name": "zombvr" + }, + { + "appid": 523960, + "normalized_name": "tenet" + }, + { + "appid": 523970, + "normalized_name": "atomic butcher homo metabolicus" + }, + { + "appid": 524010, + "normalized_name": "siege of centauri" + }, + { + "appid": 524030, + "normalized_name": "machine learning episode i" + }, + { + "appid": 524050, + "normalized_name": "salmon ninja" + }, + { + "appid": 524060, + "normalized_name": "block wave vr" + }, + { + "appid": 524120, + "normalized_name": "raptor valley" + }, + { + "appid": 524200, + "normalized_name": "queen of thieves" + }, + { + "appid": 524220, + "normalized_name": "nier automata" + }, + { + "appid": 524240, + "normalized_name": "stonebond the gargoyle's domain" + }, + { + "appid": 524250, + "normalized_name": "dad quest" + }, + { + "appid": 524350, + "normalized_name": "tiledynasty fps arena" + }, + { + "appid": 524380, + "normalized_name": "yore vr" + }, + { + "appid": 524430, + "normalized_name": "skool daze reskooled" + }, + { + "appid": 524520, + "normalized_name": "fatehaven" + }, + { + "appid": 524540, + "normalized_name": "samurai of hyuga" + }, + { + "appid": 524560, + "normalized_name": "samurai of hyuga book 2" + }, + { + "appid": 524580, + "normalized_name": "fairy fencer f advent dark force" + }, + { + "appid": 524600, + "normalized_name": "dark parables curse of briar rose collector's" + }, + { + "appid": 524610, + "normalized_name": "ceggtcher vr" + }, + { + "appid": 524640, + "normalized_name": "asura vengeance" + }, + { + "appid": 524650, + "normalized_name": "dangerous duels" + }, + { + "appid": 524690, + "normalized_name": "bitslap" + }, + { + "appid": 524850, + "normalized_name": "alicemare" + }, + { + "appid": 524910, + "normalized_name": "hidden through time" + }, + { + "appid": 524940, + "normalized_name": "javva juice" + }, + { + "appid": 525040, + "normalized_name": "the disney afternoon collection" + }, + { + "appid": 525050, + "normalized_name": "artisan going home again" + }, + { + "appid": 525070, + "normalized_name": "captain lycop invasion of the heters" + }, + { + "appid": 525080, + "normalized_name": "the race for the white house 2016" + }, + { + "appid": 525150, + "normalized_name": "space fuss" + }, + { + "appid": 525190, + "normalized_name": "the construct" + }, + { + "appid": 525210, + "normalized_name": "nock hidden arrow" + }, + { + "appid": 525240, + "normalized_name": "lost sphear" + }, + { + "appid": 525300, + "normalized_name": "starship annihilator" + }, + { + "appid": 525330, + "normalized_name": "galaxy of trian board game" + }, + { + "appid": 525350, + "normalized_name": "thick air" + }, + { + "appid": 525360, + "normalized_name": "shio" + }, + { + "appid": 525370, + "normalized_name": "gobernators (parodia política peruana)" + }, + { + "appid": 525380, + "normalized_name": "demon peak" + }, + { + "appid": 525450, + "normalized_name": "king oddball" + }, + { + "appid": 525460, + "normalized_name": "sullen light is your friend" + }, + { + "appid": 525480, + "normalized_name": ".hack//g.u. last recode" + }, + { + "appid": 525500, + "normalized_name": "candy kingdom vr" + }, + { + "appid": 525510, + "normalized_name": "guns gore and cannoli 2" + }, + { + "appid": 525540, + "normalized_name": "six feet under" + }, + { + "appid": 525590, + "normalized_name": "brawlderdash" + }, + { + "appid": 525600, + "normalized_name": "dyno adventure" + }, + { + "appid": 525620, + "normalized_name": "octogeddon" + }, + { + "appid": 525640, + "normalized_name": "bullets and more vr bam vr" + }, + { + "appid": 525680, + "normalized_name": "deisim" + }, + { + "appid": 525690, + "normalized_name": "mmm murder most misfortunate" + }, + { + "appid": 525700, + "normalized_name": "birthdays the beginning" + }, + { + "appid": 525740, + "normalized_name": "slashy hero" + }, + { + "appid": 525760, + "normalized_name": "awesome obstacle challenge" + }, + { + "appid": 525780, + "normalized_name": "doorways old prototype" + }, + { + "appid": 525870, + "normalized_name": "wackymoles" + }, + { + "appid": 525910, + "normalized_name": "cockroach vr" + }, + { + "appid": 525920, + "normalized_name": "pro cycling manager 2017" + }, + { + "appid": 525950, + "normalized_name": "just bat (vr cricket)" + }, + { + "appid": 526090, + "normalized_name": "very real chess" + }, + { + "appid": 526130, + "normalized_name": "sky sanctuary" + }, + { + "appid": 526140, + "normalized_name": "the gallery episode 2 heart of the emberstone" + }, + { + "appid": 526160, + "normalized_name": "the wild eight" + }, + { + "appid": 526180, + "normalized_name": "deus ex mankind divided vr experience" + }, + { + "appid": 526240, + "normalized_name": "cloudbound" + }, + { + "appid": 526290, + "normalized_name": "my fight" + }, + { + "appid": 526310, + "normalized_name": "silhouette chapter one" + }, + { + "appid": 526400, + "normalized_name": "embers of magic" + }, + { + "appid": 526430, + "normalized_name": "project \"fire\"" + }, + { + "appid": 526450, + "normalized_name": "hack time" + }, + { + "appid": 526470, + "normalized_name": "deep below" + }, + { + "appid": 526490, + "normalized_name": "higurashi when they cry hou ch.4 himatsubushi" + }, + { + "appid": 526510, + "normalized_name": "the hateful dead" + }, + { + "appid": 526540, + "normalized_name": "8infinity" + }, + { + "appid": 526550, + "normalized_name": "pitchfork" + }, + { + "appid": 526590, + "normalized_name": "boxing saga" + }, + { + "appid": 526720, + "normalized_name": "off grid stealth hacking" + }, + { + "appid": 526730, + "normalized_name": "life of lon chapter 1" + }, + { + "appid": 526740, + "normalized_name": "hack_me" + }, + { + "appid": 526750, + "normalized_name": "the gleam vr escape the room" + }, + { + "appid": 526780, + "normalized_name": "jumper jape" + }, + { + "appid": 526790, + "normalized_name": "monsti" + }, + { + "appid": 526800, + "normalized_name": "cubotrox" + }, + { + "appid": 526870, + "normalized_name": "satisfactory" + }, + { + "appid": 526880, + "normalized_name": "chess knight 2" + }, + { + "appid": 526890, + "normalized_name": "a day in the woods" + }, + { + "appid": 526960, + "normalized_name": "fair islands vr" + }, + { + "appid": 526980, + "normalized_name": "handball 17" + }, + { + "appid": 527040, + "normalized_name": "armies of riddle classic" + }, + { + "appid": 527100, + "normalized_name": "star trek bridge crew" + }, + { + "appid": 527110, + "normalized_name": "the melody of dust" + }, + { + "appid": 527150, + "normalized_name": "dead" + }, + { + "appid": 527160, + "normalized_name": "cmoar vr cinema" + }, + { + "appid": 527190, + "normalized_name": "world end economica episode.03" + }, + { + "appid": 527210, + "normalized_name": "janken cards" + }, + { + "appid": 527230, + "normalized_name": "for the king" + }, + { + "appid": 527240, + "normalized_name": "geology business" + }, + { + "appid": 527250, + "normalized_name": "villetown" + }, + { + "appid": 527260, + "normalized_name": "lurk" + }, + { + "appid": 527280, + "normalized_name": "nights of azure" + }, + { + "appid": 527290, + "normalized_name": "atelier firis the alchemist and the mysterious journey / フィリスのアトリエ ~不思議な旅の錬金術士~" + }, + { + "appid": 527310, + "normalized_name": "bubble labs vr" + }, + { + "appid": 527320, + "normalized_name": "defend the highlands world tour" + }, + { + "appid": 527330, + "normalized_name": "grave vr prologue" + }, + { + "appid": 527340, + "normalized_name": "what the box?" + }, + { + "appid": 527360, + "normalized_name": "escape station" + }, + { + "appid": 527380, + "normalized_name": "captain kaon" + }, + { + "appid": 527420, + "normalized_name": "demon hunter 3 revelation" + }, + { + "appid": 527430, + "normalized_name": "warhammer 40 000 inquisitor martyr" + }, + { + "appid": 527450, + "normalized_name": "cockroach simulator" + }, + { + "appid": 527470, + "normalized_name": "donuts'n'justice" + }, + { + "appid": 527510, + "normalized_name": "the legions of rome" + }, + { + "appid": 527520, + "normalized_name": "strike force arctic storm" + }, + { + "appid": 527560, + "normalized_name": "alone without her" + }, + { + "appid": 527580, + "normalized_name": "pitch hit arcade" + }, + { + "appid": 527700, + "normalized_name": "containment initiative" + }, + { + "appid": 527710, + "normalized_name": "crown champion legends of the arena" + }, + { + "appid": 527720, + "normalized_name": "keep defending" + }, + { + "appid": 527740, + "normalized_name": "yankai's triangle" + }, + { + "appid": 527750, + "normalized_name": "merger 3d" + }, + { + "appid": 527760, + "normalized_name": "just hero" + }, + { + "appid": 527770, + "normalized_name": "russian superhero dead ivan" + }, + { + "appid": 527790, + "normalized_name": "cranium conundrum" + }, + { + "appid": 527800, + "normalized_name": "war cube" + }, + { + "appid": 527810, + "normalized_name": "dynamite alex" + }, + { + "appid": 527820, + "normalized_name": "lifestream a haunting text adventure" + }, + { + "appid": 527880, + "normalized_name": "dreadful" + }, + { + "appid": 527890, + "normalized_name": "shop n spree shopping paradise" + }, + { + "appid": 527900, + "normalized_name": "grim tales the bride collector's" + }, + { + "appid": 527910, + "normalized_name": "nevertales shattered image collector's" + }, + { + "appid": 527920, + "normalized_name": "farm tribe 2" + }, + { + "appid": 527930, + "normalized_name": "spa mania 2" + }, + { + "appid": 527940, + "normalized_name": "mystery trackers the void collector's" + }, + { + "appid": 527950, + "normalized_name": "divergence year zero" + }, + { + "appid": 527960, + "normalized_name": "fractured state" + }, + { + "appid": 527990, + "normalized_name": "gladiator trainer" + }, + { + "appid": 528010, + "normalized_name": "eternal return" + }, + { + "appid": 528020, + "normalized_name": "destroyer" + }, + { + "appid": 528060, + "normalized_name": "東周列萌志 philosophic love" + }, + { + "appid": 528070, + "normalized_name": "solitaire beach season" + }, + { + "appid": 528110, + "normalized_name": "tennis elbow manager" + }, + { + "appid": 528120, + "normalized_name": "darkness and flame born of fire collector's" + }, + { + "appid": 528160, + "normalized_name": "solstice chronicles mia" + }, + { + "appid": 528180, + "normalized_name": "agricola all creatures big and small" + }, + { + "appid": 528190, + "normalized_name": "carpe deal 'em" + }, + { + "appid": 528230, + "normalized_name": "synthetik legion rising" + }, + { + "appid": 528250, + "normalized_name": "patchwork" + }, + { + "appid": 528260, + "normalized_name": "titan slayer" + }, + { + "appid": 528270, + "normalized_name": "neon ultra" + }, + { + "appid": 528300, + "normalized_name": "soulless ray of hope" + }, + { + "appid": 528420, + "normalized_name": "evil orbs" + }, + { + "appid": 528430, + "normalized_name": "wells" + }, + { + "appid": 528450, + "normalized_name": "hunt the unknown quarry" + }, + { + "appid": 528460, + "normalized_name": "rogalia" + }, + { + "appid": 528510, + "normalized_name": "turbo pug 3d" + }, + { + "appid": 528550, + "normalized_name": "drunkn bar fight" + }, + { + "appid": 528580, + "normalized_name": "found" + }, + { + "appid": 528610, + "normalized_name": "double dragon iv" + }, + { + "appid": 528640, + "normalized_name": "rugby union team manager 2017" + }, + { + "appid": 528660, + "normalized_name": "spin rush" + }, + { + "appid": 528670, + "normalized_name": "elems" + }, + { + "appid": 528720, + "normalized_name": "shu" + }, + { + "appid": 528730, + "normalized_name": "crypt of the serpent king" + }, + { + "appid": 528740, + "normalized_name": "operation new earth" + }, + { + "appid": 528770, + "normalized_name": "twixel" + }, + { + "appid": 528820, + "normalized_name": "eisenwald blood of november" + }, + { + "appid": 528860, + "normalized_name": "proxy hacker" + }, + { + "appid": 528900, + "normalized_name": "multirotor sim 2" + }, + { + "appid": 528910, + "normalized_name": "golf pro vr" + }, + { + "appid": 528930, + "normalized_name": "fruit for the village" + }, + { + "appid": 528940, + "normalized_name": "birthright cataclysm overture" + }, + { + "appid": 528950, + "normalized_name": "nekuia" + }, + { + "appid": 528970, + "normalized_name": "sos survival" + }, + { + "appid": 528980, + "normalized_name": "arakion book one" + }, + { + "appid": 528990, + "normalized_name": "basketball babe" + }, + { + "appid": 529020, + "normalized_name": "virtual o" + }, + { + "appid": 529040, + "normalized_name": "fine china" + }, + { + "appid": 529060, + "normalized_name": "space simulator" + }, + { + "appid": 529090, + "normalized_name": "violet haunted" + }, + { + "appid": 529100, + "normalized_name": "omni link" + }, + { + "appid": 529110, + "normalized_name": "awkward dimensions redux" + }, + { + "appid": 529130, + "normalized_name": "expect the unexpected" + }, + { + "appid": 529140, + "normalized_name": "ulama arena of the gods" + }, + { + "appid": 529150, + "normalized_name": "lazerbait" + }, + { + "appid": 529160, + "normalized_name": "moekuri adorable + tactical srpg" + }, + { + "appid": 529180, + "normalized_name": "dark and light" + }, + { + "appid": 529240, + "normalized_name": "creature clicker capture train ascend!" + }, + { + "appid": 529260, + "normalized_name": "robot incursion" + }, + { + "appid": 529280, + "normalized_name": "teot the end of tomorrow" + }, + { + "appid": 529340, + "normalized_name": "victoria 3" + }, + { + "appid": 529360, + "normalized_name": "void rangers" + }, + { + "appid": 529410, + "normalized_name": "kittypocalypse ungoggled" + }, + { + "appid": 529420, + "normalized_name": "crazy sapper 3d" + }, + { + "appid": 529440, + "normalized_name": "behold the kickmen" + }, + { + "appid": 529450, + "normalized_name": "i know a tale" + }, + { + "appid": 529490, + "normalized_name": "rogue trooper redux" + }, + { + "appid": 529500, + "normalized_name": "alone? vr" + }, + { + "appid": 529520, + "normalized_name": "mutant football league" + }, + { + "appid": 529580, + "normalized_name": "kyurinaga's revenge" + }, + { + "appid": 529590, + "normalized_name": "please don't touch anything 3d" + }, + { + "appid": 529610, + "normalized_name": "fish lake" + }, + { + "appid": 529630, + "normalized_name": "the rabbit hole" + }, + { + "appid": 529640, + "normalized_name": "steamvr driver for fove" + }, + { + "appid": 529660, + "normalized_name": "mages of mystralia" + }, + { + "appid": 529670, + "normalized_name": "the bellows" + }, + { + "appid": 529700, + "normalized_name": "total extreme wrestling 2013" + }, + { + "appid": 529760, + "normalized_name": "taiku mansion" + }, + { + "appid": 529770, + "normalized_name": "ley lines" + }, + { + "appid": 529780, + "normalized_name": "disturbed" + }, + { + "appid": 529790, + "normalized_name": "gone with the demon" + }, + { + "appid": 529820, + "normalized_name": "beyond power vr" + }, + { + "appid": 529860, + "normalized_name": "colecovision flashback" + }, + { + "appid": 529870, + "normalized_name": "microgons" + }, + { + "appid": 529890, + "normalized_name": "maniac mansion" + }, + { + "appid": 529900, + "normalized_name": "polygon attack" + }, + { + "appid": 529910, + "normalized_name": "ark park" + }, + { + "appid": 529920, + "normalized_name": "resurgence" + }, + { + "appid": 529940, + "normalized_name": "showdownvr" + }, + { + "appid": 529950, + "normalized_name": "12 orbits" + }, + { + "appid": 529970, + "normalized_name": "positronx" + }, + { + "appid": 530010, + "normalized_name": "water heroes a game for change" + }, + { + "appid": 530020, + "normalized_name": "world to the west" + }, + { + "appid": 530040, + "normalized_name": "reconquest" + }, + { + "appid": 530070, + "normalized_name": "train sim world 2020" + }, + { + "appid": 530080, + "normalized_name": "super toaster x learn japanese rpg" + }, + { + "appid": 530110, + "normalized_name": "tales of a spymaster" + }, + { + "appid": 530120, + "normalized_name": "vr the diner duo" + }, + { + "appid": 530130, + "normalized_name": "akuto showdown" + }, + { + "appid": 530160, + "normalized_name": "eve of destruction redux vietnam" + }, + { + "appid": 530240, + "normalized_name": "pixel warfare pro" + }, + { + "appid": 530290, + "normalized_name": "the planet of the vicious creatures" + }, + { + "appid": 530300, + "normalized_name": "slymes" + }, + { + "appid": 530320, + "normalized_name": "wandersong" + }, + { + "appid": 530330, + "normalized_name": "blameless" + }, + { + "appid": 530340, + "normalized_name": "_xodus" + }, + { + "appid": 530360, + "normalized_name": "requiescence" + }, + { + "appid": 530370, + "normalized_name": "warlock's tower" + }, + { + "appid": 530390, + "normalized_name": "slayaway camp" + }, + { + "appid": 530470, + "normalized_name": "s#arp shooter" + }, + { + "appid": 530500, + "normalized_name": "the rosefinch curse(ning's wing 1)" + }, + { + "appid": 530510, + "normalized_name": "manipulated" + }, + { + "appid": 530520, + "normalized_name": "aegis" + }, + { + "appid": 530530, + "normalized_name": "si kancil the adventurous mouse deer" + }, + { + "appid": 530540, + "normalized_name": "mr.president prologue episode" + }, + { + "appid": 530630, + "normalized_name": "empires apart" + }, + { + "appid": 530650, + "normalized_name": "rogues or heroes" + }, + { + "appid": 530720, + "normalized_name": "solitaire royale" + }, + { + "appid": 530820, + "normalized_name": "subject a 119" + }, + { + "appid": 530830, + "normalized_name": "sophie's guardian" + }, + { + "appid": 530860, + "normalized_name": "the wanderer" + }, + { + "appid": 530890, + "normalized_name": "haydee" + }, + { + "appid": 530920, + "normalized_name": "archimedes" + }, + { + "appid": 530930, + "normalized_name": "soulblight" + }, + { + "appid": 530940, + "normalized_name": "biohazard 7 resident evil グロテスクver." + }, + { + "appid": 530950, + "normalized_name": "tower 57" + }, + { + "appid": 530960, + "normalized_name": "rom extraction" + }, + { + "appid": 531050, + "normalized_name": "far beyond a space odyssey vr" + }, + { + "appid": 531070, + "normalized_name": "the tower fantogame" + }, + { + "appid": 531080, + "normalized_name": "minotaur's maze" + }, + { + "appid": 531100, + "normalized_name": "ominous!" + }, + { + "appid": 531110, + "normalized_name": "battles of norghan" + }, + { + "appid": 531140, + "normalized_name": "all the delicate duplicates" + }, + { + "appid": 531180, + "normalized_name": "airheart tales of broken wings" + }, + { + "appid": 531190, + "normalized_name": "hebereke! march! red army girls' brigade" + }, + { + "appid": 531200, + "normalized_name": "beneath the cherry trees" + }, + { + "appid": 531240, + "normalized_name": "max stern" + }, + { + "appid": 531270, + "normalized_name": "the art of fight | 4vs4 fast paced fps" + }, + { + "appid": 531480, + "normalized_name": "shaperockets" + }, + { + "appid": 531510, + "normalized_name": "just shapes & beats" + }, + { + "appid": 531520, + "normalized_name": "tankcraft" + }, + { + "appid": 531540, + "normalized_name": "hidden dimensions 3" + }, + { + "appid": 531630, + "normalized_name": "non linear text quests" + }, + { + "appid": 531640, + "normalized_name": "eternal card game" + }, + { + "appid": 531660, + "normalized_name": "exoplanet first contact" + }, + { + "appid": 531680, + "normalized_name": "8 bit invaders!" + }, + { + "appid": 531730, + "normalized_name": "corona blossom vol.2 the truth from beyond" + }, + { + "appid": 531740, + "normalized_name": "rubek" + }, + { + "appid": 531780, + "normalized_name": "castle explorer" + }, + { + "appid": 531860, + "normalized_name": "where's my what?" + }, + { + "appid": 531890, + "normalized_name": "guardian's oath" + }, + { + "appid": 531910, + "normalized_name": "bad sector hdd" + }, + { + "appid": 531920, + "normalized_name": "carton" + }, + { + "appid": 531930, + "normalized_name": "dungeon rats" + }, + { + "appid": 531960, + "normalized_name": "bloody walls" + }, + { + "appid": 531990, + "normalized_name": "egg time" + }, + { + "appid": 532030, + "normalized_name": "dmt dream dealer trip" + }, + { + "appid": 532070, + "normalized_name": "the miners" + }, + { + "appid": 532080, + "normalized_name": "apocalypse mechanism" + }, + { + "appid": 532110, + "normalized_name": "rusty lake roots" + }, + { + "appid": 532120, + "normalized_name": "header goal vr being axel rix" + }, + { + "appid": 532170, + "normalized_name": "waveland" + }, + { + "appid": 532190, + "normalized_name": "super blood hockey" + }, + { + "appid": 532210, + "normalized_name": "life is strange 2" + }, + { + "appid": 532260, + "normalized_name": "top floor" + }, + { + "appid": 532270, + "normalized_name": "lethal vr" + }, + { + "appid": 532290, + "normalized_name": "dark train" + }, + { + "appid": 532320, + "normalized_name": "de blob" + }, + { + "appid": 532470, + "normalized_name": "in extremis" + }, + { + "appid": 532600, + "normalized_name": "sweet candy mahjong" + }, + { + "appid": 532660, + "normalized_name": "exteria" + }, + { + "appid": 532670, + "normalized_name": "manor of the damned!" + }, + { + "appid": 532690, + "normalized_name": "neo atlas 1469" + }, + { + "appid": 532700, + "normalized_name": "finque" + }, + { + "appid": 532740, + "normalized_name": "crazy flies" + }, + { + "appid": 532750, + "normalized_name": "dwarrows" + }, + { + "appid": 532770, + "normalized_name": "time leap paradise super live!" + }, + { + "appid": 532790, + "normalized_name": "vampire the masquerade bloodlines 2" + }, + { + "appid": 532800, + "normalized_name": "compet epic beast battles" + }, + { + "appid": 532840, + "normalized_name": "cayne" + }, + { + "appid": 532890, + "normalized_name": "civil war 1862" + }, + { + "appid": 532900, + "normalized_name": "outskirts" + }, + { + "appid": 532920, + "normalized_name": "the artifact" + }, + { + "appid": 532980, + "normalized_name": "thaumistry in charm's way" + }, + { + "appid": 533010, + "normalized_name": "filthy lucre" + }, + { + "appid": 533030, + "normalized_name": "haunted hotel" + }, + { + "appid": 533040, + "normalized_name": "dark parables the thief and the tinderbox collector's" + }, + { + "appid": 533050, + "normalized_name": "lazy galaxy rebel story" + }, + { + "appid": 533060, + "normalized_name": "puppetshow mystery of joyville" + }, + { + "appid": 533070, + "normalized_name": "league of light dark omens collector's" + }, + { + "appid": 533080, + "normalized_name": "phantasmat crucible peak collector's" + }, + { + "appid": 533090, + "normalized_name": "haunted legends the queen of spades collector's" + }, + { + "appid": 533170, + "normalized_name": "don't chat with strangers" + }, + { + "appid": 533180, + "normalized_name": "campfire one of us is the killer" + }, + { + "appid": 533260, + "normalized_name": "behold!" + }, + { + "appid": 533280, + "normalized_name": "wild arena" + }, + { + "appid": 533300, + "normalized_name": "zup!" + }, + { + "appid": 533330, + "normalized_name": "shut eye" + }, + { + "appid": 533340, + "normalized_name": "captivity" + }, + { + "appid": 533360, + "normalized_name": "zia and the goddesses of magic" + }, + { + "appid": 533470, + "normalized_name": "the cube hotel(ning's wing 2)" + }, + { + "appid": 533480, + "normalized_name": "academagia the making of mages" + }, + { + "appid": 533540, + "normalized_name": "monmusu" + }, + { + "appid": 533580, + "normalized_name": "entangle" + }, + { + "appid": 533610, + "normalized_name": "jet gunner refueled" + }, + { + "appid": 533630, + "normalized_name": "fight me bro!" + }, + { + "appid": 533660, + "normalized_name": "ziggy's chase" + }, + { + "appid": 533700, + "normalized_name": "vr retreat" + }, + { + "appid": 533740, + "normalized_name": "tunnel vr" + }, + { + "appid": 533770, + "normalized_name": "the writer a change of identity" + }, + { + "appid": 533780, + "normalized_name": "zombie defense" + }, + { + "appid": 533800, + "normalized_name": "orcish inn" + }, + { + "appid": 533820, + "normalized_name": "atonement 2 ruptured by despair" + }, + { + "appid": 533850, + "normalized_name": "eggk47" + }, + { + "appid": 533860, + "normalized_name": "multimirror" + }, + { + "appid": 533890, + "normalized_name": "reboot" + }, + { + "appid": 533920, + "normalized_name": "battle tank armada" + }, + { + "appid": 533950, + "normalized_name": "don't open the doors!" + }, + { + "appid": 533960, + "normalized_name": "scary humans" + }, + { + "appid": 534000, + "normalized_name": "fast action hero" + }, + { + "appid": 534010, + "normalized_name": "defense of egypt cleopatra mission" + }, + { + "appid": 534120, + "normalized_name": "hex defense" + }, + { + "appid": 534190, + "normalized_name": "blink the bulb" + }, + { + "appid": 534200, + "normalized_name": "solid" + }, + { + "appid": 534210, + "normalized_name": "megarats" + }, + { + "appid": 534220, + "normalized_name": "dragon's sin" + }, + { + "appid": 534230, + "normalized_name": "quell 4d" + }, + { + "appid": 534240, + "normalized_name": "the island of eternal struggle" + }, + { + "appid": 534250, + "normalized_name": "getting freaky with fujiki" + }, + { + "appid": 534270, + "normalized_name": "solitaire 220 plus" + }, + { + "appid": 534290, + "normalized_name": "cursed castilla (maldita castilla ex)" + }, + { + "appid": 534320, + "normalized_name": "4team" + }, + { + "appid": 534350, + "normalized_name": "ancient rome 2" + }, + { + "appid": 534370, + "normalized_name": "pure farming 2018" + }, + { + "appid": 534380, + "normalized_name": "dying light 2 stay human reloaded" + }, + { + "appid": 534440, + "normalized_name": "killing zombies" + }, + { + "appid": 534460, + "normalized_name": "let hawaii happen vr" + }, + { + "appid": 534480, + "normalized_name": "tropical girls vr" + }, + { + "appid": 534550, + "normalized_name": "guacamelee! 2" + }, + { + "appid": 534560, + "normalized_name": "ramify" + }, + { + "appid": 534570, + "normalized_name": "survival kingdom" + }, + { + "appid": 534660, + "normalized_name": "lux umbra" + }, + { + "appid": 534680, + "normalized_name": "dolphin up" + }, + { + "appid": 534720, + "normalized_name": "tornuffalo" + }, + { + "appid": 534780, + "normalized_name": "xgun weapon evolution" + }, + { + "appid": 534870, + "normalized_name": "arcane" + }, + { + "appid": 534880, + "normalized_name": "super ninja hero vr" + }, + { + "appid": 534910, + "normalized_name": "3d arcade fishing" + }, + { + "appid": 534920, + "normalized_name": "relaxing vr games mahjong" + }, + { + "appid": 534980, + "normalized_name": "never forget me" + }, + { + "appid": 535000, + "normalized_name": "exit" + }, + { + "appid": 535150, + "normalized_name": "busted!" + }, + { + "appid": 535170, + "normalized_name": "climbtime" + }, + { + "appid": 535190, + "normalized_name": "chunky orbits" + }, + { + "appid": 535240, + "normalized_name": "landmine larry" + }, + { + "appid": 535260, + "normalized_name": "save home" + }, + { + "appid": 535270, + "normalized_name": "constricting cubes" + }, + { + "appid": 535280, + "normalized_name": "retro parking" + }, + { + "appid": 535330, + "normalized_name": "block king" + }, + { + "appid": 535350, + "normalized_name": "elderine dreams to destiny" + }, + { + "appid": 535370, + "normalized_name": "the secret of middle city" + }, + { + "appid": 535380, + "normalized_name": "asteroid blaster vr" + }, + { + "appid": 535410, + "normalized_name": "saga of the void admirals" + }, + { + "appid": 535440, + "normalized_name": "war7" + }, + { + "appid": 535460, + "normalized_name": "a fear of heights and other things" + }, + { + "appid": 535480, + "normalized_name": "sundered eldritch" + }, + { + "appid": 535490, + "normalized_name": "porno studio tycoon" + }, + { + "appid": 535520, + "normalized_name": "nidhogg 2" + }, + { + "appid": 535530, + "normalized_name": "demon hunter" + }, + { + "appid": 535630, + "normalized_name": "one more night" + }, + { + "appid": 535650, + "normalized_name": "dwingle b.o.t" + }, + { + "appid": 535680, + "normalized_name": "moorhuhn schlägt zurück" + }, + { + "appid": 535690, + "normalized_name": "crash force" + }, + { + "appid": 535700, + "normalized_name": "3d chess" + }, + { + "appid": 535750, + "normalized_name": "vr fun world" + }, + { + "appid": 535760, + "normalized_name": "unforgiving trials the space crusade" + }, + { + "appid": 535840, + "normalized_name": "marblize" + }, + { + "appid": 535890, + "normalized_name": "stereo aereo" + }, + { + "appid": 535910, + "normalized_name": "meow jong" + }, + { + "appid": 535930, + "normalized_name": "two point hospital" + }, + { + "appid": 535980, + "normalized_name": "phrase shift" + }, + { + "appid": 536040, + "normalized_name": "cards of cthulhu" + }, + { + "appid": 536050, + "normalized_name": "994 w 24th" + }, + { + "appid": 536210, + "normalized_name": "please state your name a vr animated film" + }, + { + "appid": 536220, + "normalized_name": "the walking dead a new frontier" + }, + { + "appid": 536230, + "normalized_name": "siege hammer" + }, + { + "appid": 536270, + "normalized_name": "ancestors the humankind odyssey" + }, + { + "appid": 536280, + "normalized_name": "disintegration" + }, + { + "appid": 536320, + "normalized_name": "the space garden" + }, + { + "appid": 536360, + "normalized_name": "guardian of the grave" + }, + { + "appid": 536370, + "normalized_name": "percussive vr" + }, + { + "appid": 536410, + "normalized_name": "greenwood the last ritual" + }, + { + "appid": 536420, + "normalized_name": "shining plume" + }, + { + "appid": 536430, + "normalized_name": "the revenge of johnny bonasera episode 1" + }, + { + "appid": 536450, + "normalized_name": "vzerthos the heir of thunder" + }, + { + "appid": 536460, + "normalized_name": "warp league basketball" + }, + { + "appid": 536470, + "normalized_name": "magnetized" + }, + { + "appid": 536490, + "normalized_name": "perfect fit totemland" + }, + { + "appid": 536510, + "normalized_name": "hacker series" + }, + { + "appid": 536530, + "normalized_name": "marlene betwixt" + }, + { + "appid": 536560, + "normalized_name": "chaos code new sign of catastrophe" + }, + { + "appid": 536630, + "normalized_name": "maze sounds" + }, + { + "appid": 536640, + "normalized_name": "grimm dark legacy" + }, + { + "appid": 536660, + "normalized_name": "jcb pioneer mars" + }, + { + "appid": 536680, + "normalized_name": "miniature the story puzzle" + }, + { + "appid": 536690, + "normalized_name": "aentity" + }, + { + "appid": 536750, + "normalized_name": "boomtown! deluxe" + }, + { + "appid": 536770, + "normalized_name": "the awkward steve duology" + }, + { + "appid": 536780, + "normalized_name": "lost grimoires stolen kingdom" + }, + { + "appid": 536800, + "normalized_name": "file 9" + }, + { + "appid": 536890, + "normalized_name": "glittermitten grove" + }, + { + "appid": 536920, + "normalized_name": "groggers!" + }, + { + "appid": 536950, + "normalized_name": "legend of ares" + }, + { + "appid": 536960, + "normalized_name": "no way out a dead realm tale" + }, + { + "appid": 536990, + "normalized_name": "redie" + }, + { + "appid": 537000, + "normalized_name": "nelo" + }, + { + "appid": 537020, + "normalized_name": "legions of tyrandel" + }, + { + "appid": 537050, + "normalized_name": "bric the casual indie game" + }, + { + "appid": 537060, + "normalized_name": "magixhome vr" + }, + { + "appid": 537110, + "normalized_name": "angels of death" + }, + { + "appid": 537130, + "normalized_name": "red spider vengeance" + }, + { + "appid": 537140, + "normalized_name": "nemesis perspective" + }, + { + "appid": 537170, + "normalized_name": "4x4 offroad racing nitro" + }, + { + "appid": 537180, + "normalized_name": "digimon masters online" + }, + { + "appid": 537200, + "normalized_name": "defense of greece td" + }, + { + "appid": 537340, + "normalized_name": "guts and glory" + }, + { + "appid": 537380, + "normalized_name": "abyssal zone" + }, + { + "appid": 537430, + "normalized_name": "inner chains" + }, + { + "appid": 537450, + "normalized_name": "recore" + }, + { + "appid": 537520, + "normalized_name": "symmetry" + }, + { + "appid": 537540, + "normalized_name": "the last journey" + }, + { + "appid": 537590, + "normalized_name": "bridge to nowhere" + }, + { + "appid": 537630, + "normalized_name": "tee time golf" + }, + { + "appid": 537660, + "normalized_name": "brumm" + }, + { + "appid": 537680, + "normalized_name": "sheep tag 2" + }, + { + "appid": 537700, + "normalized_name": "octave" + }, + { + "appid": 537750, + "normalized_name": "dungeon of doom puzzle" + }, + { + "appid": 537760, + "normalized_name": "arizona rose and the pirates' riddles" + }, + { + "appid": 537800, + "normalized_name": "bomber crew" + }, + { + "appid": 537920, + "normalized_name": "supa kila monsta hunta" + }, + { + "appid": 537990, + "normalized_name": "heroine anthem zero sacrifice" + }, + { + "appid": 538000, + "normalized_name": "hop step sing! kisekiteki shining! (hq edition)" + }, + { + "appid": 538030, + "normalized_name": "xenonauts 2" + }, + { + "appid": 538040, + "normalized_name": "dante's forest" + }, + { + "appid": 538050, + "normalized_name": "the baron got you again" + }, + { + "appid": 538060, + "normalized_name": "doodle god 8 bit mania collector's item" + }, + { + "appid": 538070, + "normalized_name": "bad dream coma" + }, + { + "appid": 538100, + "normalized_name": "feel the snow" + }, + { + "appid": 538110, + "normalized_name": "delila's gift" + }, + { + "appid": 538170, + "normalized_name": "raging titan" + }, + { + "appid": 538220, + "normalized_name": "haunted halloween '85 (original nes game)" + }, + { + "appid": 538330, + "normalized_name": "a escape vr" + }, + { + "appid": 538390, + "normalized_name": "crimson nights" + }, + { + "appid": 538410, + "normalized_name": "chicken chase" + }, + { + "appid": 538470, + "normalized_name": "remind yourself" + }, + { + "appid": 538490, + "normalized_name": "shatter quest" + }, + { + "appid": 538550, + "normalized_name": "party golf" + }, + { + "appid": 538560, + "normalized_name": "help me doctor" + }, + { + "appid": 538590, + "normalized_name": "sleeping valley" + }, + { + "appid": 538680, + "normalized_name": "the legend of heroes trails of cold steel" + }, + { + "appid": 538700, + "normalized_name": "turgul rapid fighting" + }, + { + "appid": 538710, + "normalized_name": "dead hungry" + }, + { + "appid": 538790, + "normalized_name": "primal carnage onslaught" + }, + { + "appid": 538810, + "normalized_name": "train mechanic simulator 2017" + }, + { + "appid": 538840, + "normalized_name": "city climber" + }, + { + "appid": 538880, + "normalized_name": "triennale game collection" + }, + { + "appid": 538900, + "normalized_name": "ziq" + }, + { + "appid": 538920, + "normalized_name": "fiery disaster" + }, + { + "appid": 538950, + "normalized_name": "plenty skyhearth" + }, + { + "appid": 538990, + "normalized_name": "sugarmill" + }, + { + "appid": 539050, + "normalized_name": "super island god vr" + }, + { + "appid": 539090, + "normalized_name": "clazer" + }, + { + "appid": 539270, + "normalized_name": "mahjong" + }, + { + "appid": 539280, + "normalized_name": "tetraminos" + }, + { + "appid": 539290, + "normalized_name": "brick breaker" + }, + { + "appid": 539300, + "normalized_name": "solitaire" + }, + { + "appid": 539320, + "normalized_name": "picontier / ピコンティア" + }, + { + "appid": 539330, + "normalized_name": "light fairytale episode 1" + }, + { + "appid": 539340, + "normalized_name": "future unfolding" + }, + { + "appid": 539370, + "normalized_name": "tv trouble" + }, + { + "appid": 539400, + "normalized_name": "son of a witch" + }, + { + "appid": 539440, + "normalized_name": "citalis" + }, + { + "appid": 539450, + "normalized_name": "crab dub" + }, + { + "appid": 539460, + "normalized_name": "puzzle cube" + }, + { + "appid": 539470, + "normalized_name": "police stories" + }, + { + "appid": 539550, + "normalized_name": "seawolf vr" + }, + { + "appid": 539560, + "normalized_name": "vienna automobile society" + }, + { + "appid": 539660, + "normalized_name": "chronoclock" + }, + { + "appid": 539670, + "normalized_name": "sakura nova" + }, + { + "appid": 539690, + "normalized_name": "nanomedix inc" + }, + { + "appid": 539720, + "normalized_name": "razortron 2000" + }, + { + "appid": 539750, + "normalized_name": "kombine" + }, + { + "appid": 539980, + "normalized_name": "space cat" + }, + { + "appid": 540010, + "normalized_name": "symphony of the machine" + }, + { + "appid": 540020, + "normalized_name": "final quest ii" + }, + { + "appid": 540060, + "normalized_name": "fabulous angela's fashion fever" + }, + { + "appid": 540100, + "normalized_name": "imprisoned light" + }, + { + "appid": 540150, + "normalized_name": "tank battle blitzkrieg" + }, + { + "appid": 540180, + "normalized_name": "kommissar" + }, + { + "appid": 540190, + "normalized_name": "tetropunk" + }, + { + "appid": 540230, + "normalized_name": "civil war 1861" + }, + { + "appid": 540250, + "normalized_name": "tank battle 1945" + }, + { + "appid": 540320, + "normalized_name": "vulture island" + }, + { + "appid": 540360, + "normalized_name": "jewel quest seven seas collector's" + }, + { + "appid": 540410, + "normalized_name": "queendoom" + }, + { + "appid": 540500, + "normalized_name": "starfighter arduxim" + }, + { + "appid": 540510, + "normalized_name": "islands non places" + }, + { + "appid": 540550, + "normalized_name": "commercium" + }, + { + "appid": 540590, + "normalized_name": "red barton and the sky pirates" + }, + { + "appid": 540610, + "normalized_name": "delicious! pretty girls mahjong solitaire" + }, + { + "appid": 540640, + "normalized_name": "tales of the elements" + }, + { + "appid": 540650, + "normalized_name": "dawn of warriors" + }, + { + "appid": 540660, + "normalized_name": "sorcery is for saps" + }, + { + "appid": 540690, + "normalized_name": "hellenica" + }, + { + "appid": 540740, + "normalized_name": "perfect" + }, + { + "appid": 540770, + "normalized_name": "subject 264" + }, + { + "appid": 540780, + "normalized_name": "delicious emily's message in a bottle" + }, + { + "appid": 540840, + "normalized_name": "lara croft go" + }, + { + "appid": 540860, + "normalized_name": "dragon kingdom war" + }, + { + "appid": 540870, + "normalized_name": "crewsaders" + }, + { + "appid": 540880, + "normalized_name": "rose of winter" + }, + { + "appid": 540900, + "normalized_name": "nuclear contingency" + }, + { + "appid": 541150, + "normalized_name": "vox l" + }, + { + "appid": 541160, + "normalized_name": "mc lars the video game" + }, + { + "appid": 541190, + "normalized_name": "nodiatis" + }, + { + "appid": 541200, + "normalized_name": "gttod get to the orange door" + }, + { + "appid": 541210, + "normalized_name": "cold waters" + }, + { + "appid": 541230, + "normalized_name": "alien shooter td" + }, + { + "appid": 541240, + "normalized_name": "red's kingdom" + }, + { + "appid": 541300, + "normalized_name": "survive the nights" + }, + { + "appid": 541310, + "normalized_name": "tiny thor" + }, + { + "appid": 541350, + "normalized_name": "calm waters a point and click adventure" + }, + { + "appid": 541370, + "normalized_name": "clickdraw clicker" + }, + { + "appid": 541380, + "normalized_name": "physdrive" + }, + { + "appid": 541410, + "normalized_name": "skyway" + }, + { + "appid": 541420, + "normalized_name": "hoverboards vr" + }, + { + "appid": 541450, + "normalized_name": "operation abyss new tokyo legacy" + }, + { + "appid": 541560, + "normalized_name": "suppressed" + }, + { + "appid": 541570, + "normalized_name": "sally face episode one" + }, + { + "appid": 541640, + "normalized_name": "disney infinity 1.0 gold" + }, + { + "appid": 541660, + "normalized_name": "disney infinity 2.0 gold" + }, + { + "appid": 541670, + "normalized_name": "disney infinity 3.0 gold" + }, + { + "appid": 541720, + "normalized_name": "redrum dead diary" + }, + { + "appid": 541760, + "normalized_name": "the frontier" + }, + { + "appid": 541770, + "normalized_name": "ruinscity_vr" + }, + { + "appid": 541910, + "normalized_name": "david slade mysteries case files" + }, + { + "appid": 541920, + "normalized_name": "help" + }, + { + "appid": 541930, + "normalized_name": "panoptic" + }, + { + "appid": 541970, + "normalized_name": "lost in reefs antarctic" + }, + { + "appid": 542030, + "normalized_name": "runesage" + }, + { + "appid": 542050, + "normalized_name": "forgotton anne" + }, + { + "appid": 542100, + "normalized_name": "train crisis" + }, + { + "appid": 542110, + "normalized_name": "friendship" + }, + { + "appid": 542120, + "normalized_name": "win big or die" + }, + { + "appid": 542200, + "normalized_name": "animal lover" + }, + { + "appid": 542210, + "normalized_name": "xemo robot simulation" + }, + { + "appid": 542220, + "normalized_name": "rumpus" + }, + { + "appid": 542240, + "normalized_name": "tzompantli" + }, + { + "appid": 542260, + "normalized_name": "the herbalist" + }, + { + "appid": 542270, + "normalized_name": "project alpha 002" + }, + { + "appid": 542280, + "normalized_name": "happy maze" + }, + { + "appid": 542290, + "normalized_name": "da capo 3 r" + }, + { + "appid": 542310, + "normalized_name": "escape the game" + }, + { + "appid": 542340, + "normalized_name": "slingshot people" + }, + { + "appid": 542350, + "normalized_name": "castle of no escape 2" + }, + { + "appid": 542400, + "normalized_name": "pixel gladiator" + }, + { + "appid": 542410, + "normalized_name": "true blades" + }, + { + "appid": 542480, + "normalized_name": "therian saga" + }, + { + "appid": 542520, + "normalized_name": "lost in the rift reborn" + }, + { + "appid": 542550, + "normalized_name": "plankton" + }, + { + "appid": 542570, + "normalized_name": "runvr" + }, + { + "appid": 542590, + "normalized_name": "soulsaveronline" + }, + { + "appid": 542620, + "normalized_name": "lonelyland vr" + }, + { + "appid": 542650, + "normalized_name": "on the front line" + }, + { + "appid": 542660, + "normalized_name": "feral fury" + }, + { + "appid": 542670, + "normalized_name": "extreme skiing vr" + }, + { + "appid": 542680, + "normalized_name": "super puzzle sisters" + }, + { + "appid": 542690, + "normalized_name": "mahsung deluxe" + }, + { + "appid": 542710, + "normalized_name": "dessert storm" + }, + { + "appid": 542720, + "normalized_name": "bubble blowout" + }, + { + "appid": 542730, + "normalized_name": "block blowout" + }, + { + "appid": 542740, + "normalized_name": "balloon blowout" + }, + { + "appid": 542750, + "normalized_name": "piratado 1" + }, + { + "appid": 542770, + "normalized_name": "castle must be mine" + }, + { + "appid": 542780, + "normalized_name": "drift gear racing free" + }, + { + "appid": 542790, + "normalized_name": "racetronicvr" + }, + { + "appid": 542820, + "normalized_name": "demonicguestvr" + }, + { + "appid": 542850, + "normalized_name": "dystopy" + }, + { + "appid": 542870, + "normalized_name": "biomydra" + }, + { + "appid": 542880, + "normalized_name": "byte family" + }, + { + "appid": 542910, + "normalized_name": "crumbled world" + }, + { + "appid": 542930, + "normalized_name": "painted memories" + }, + { + "appid": 542940, + "normalized_name": "kickoff legends" + }, + { + "appid": 542960, + "normalized_name": "pumpkin sculptrvr" + }, + { + "appid": 543010, + "normalized_name": "bush hockey league" + }, + { + "appid": 543030, + "normalized_name": "slap the fly" + }, + { + "appid": 543040, + "normalized_name": "zhed puzzle game" + }, + { + "appid": 543050, + "normalized_name": "arc continuum" + }, + { + "appid": 543070, + "normalized_name": "gray skies dark waters" + }, + { + "appid": 543100, + "normalized_name": "beat the game" + }, + { + "appid": 543110, + "normalized_name": "head it! vr soccer heading game" + }, + { + "appid": 543120, + "normalized_name": "handpass vr" + }, + { + "appid": 543140, + "normalized_name": "legend of merchant" + }, + { + "appid": 543150, + "normalized_name": "guardian of the demon valley" + }, + { + "appid": 543160, + "normalized_name": "supermoose" + }, + { + "appid": 543170, + "normalized_name": "project r.e.b.o.o.t" + }, + { + "appid": 543180, + "normalized_name": "infinite tanks" + }, + { + "appid": 543240, + "normalized_name": "√letter root letter" + }, + { + "appid": 543260, + "normalized_name": "wonder boy the dragon's trap" + }, + { + "appid": 543270, + "normalized_name": "mr. shadow" + }, + { + "appid": 543290, + "normalized_name": "void & nothingness" + }, + { + "appid": 543300, + "normalized_name": "horizon of history" + }, + { + "appid": 543350, + "normalized_name": "the night the carsons disappeared" + }, + { + "appid": 543360, + "normalized_name": "relaxation balls" + }, + { + "appid": 543380, + "normalized_name": "empire of the fallen steel" + }, + { + "appid": 543390, + "normalized_name": "aeon" + }, + { + "appid": 543410, + "normalized_name": "crowe the drowned armory" + }, + { + "appid": 543430, + "normalized_name": "brain booster" + }, + { + "appid": 543440, + "normalized_name": "cold iron quick draw western duels" + }, + { + "appid": 543460, + "normalized_name": "dead rising 4" + }, + { + "appid": 543480, + "normalized_name": "dead of day" + }, + { + "appid": 543530, + "normalized_name": "holo impact prologue" + }, + { + "appid": 543540, + "normalized_name": "archer guardian vr the chapter zero" + }, + { + "appid": 543580, + "normalized_name": "pipejob" + }, + { + "appid": 543600, + "normalized_name": "monster maze vr" + }, + { + "appid": 543710, + "normalized_name": "cogito" + }, + { + "appid": 543720, + "normalized_name": "damned cold" + }, + { + "appid": 543740, + "normalized_name": "medieval story" + }, + { + "appid": 543870, + "normalized_name": "naruto shippuden ninja storm 2" + }, + { + "appid": 543900, + "normalized_name": "metal gear survive" + }, + { + "appid": 543910, + "normalized_name": "world of dasm dasm spell quest" + }, + { + "appid": 543920, + "normalized_name": "weird creatures" + }, + { + "appid": 543930, + "normalized_name": "koi musubi" + }, + { + "appid": 543940, + "normalized_name": "perso" + }, + { + "appid": 543950, + "normalized_name": "z`code (vr for htc vive)" + }, + { + "appid": 543980, + "normalized_name": "zombie exodus safe haven" + }, + { + "appid": 544000, + "normalized_name": "dream univrse" + }, + { + "appid": 544130, + "normalized_name": "whack a vote hammering the polls" + }, + { + "appid": 544140, + "normalized_name": "murder mystery adventure" + }, + { + "appid": 544180, + "normalized_name": "orbox c" + }, + { + "appid": 544220, + "normalized_name": "damage sadistic butchering of humanity" + }, + { + "appid": 544300, + "normalized_name": "memory of a broken dimension" + }, + { + "appid": 544310, + "normalized_name": "jumps" + }, + { + "appid": 544330, + "normalized_name": "snake pass" + }, + { + "appid": 544360, + "normalized_name": "project amaranth" + }, + { + "appid": 544370, + "normalized_name": "dead hand drive" + }, + { + "appid": 544380, + "normalized_name": "tesla the weather man" + }, + { + "appid": 544390, + "normalized_name": "nite team 4 military hacking division" + }, + { + "appid": 544400, + "normalized_name": "gungungun" + }, + { + "appid": 544410, + "normalized_name": "potioneer the vr gardening simulator" + }, + { + "appid": 544440, + "normalized_name": "next stop 2" + }, + { + "appid": 544470, + "normalized_name": "prisma & the masquerade menace" + }, + { + "appid": 544480, + "normalized_name": "draft day sports pro basketball 2017" + }, + { + "appid": 544520, + "normalized_name": "the puppet master" + }, + { + "appid": 544530, + "normalized_name": "escape bloody mary" + }, + { + "appid": 544540, + "normalized_name": "the fastest fist" + }, + { + "appid": 544550, + "normalized_name": "stationeers" + }, + { + "appid": 544580, + "normalized_name": "bullet soul" + }, + { + "appid": 544590, + "normalized_name": "death dojo" + }, + { + "appid": 544600, + "normalized_name": "delicious emily's christmas carol" + }, + { + "appid": 544610, + "normalized_name": "battlestar galactica deadlock" + }, + { + "appid": 544630, + "normalized_name": "river city melee battle royal special" + }, + { + "appid": 544650, + "normalized_name": "sacred almanac traces of greed" + }, + { + "appid": 544680, + "normalized_name": "holy avenger" + }, + { + "appid": 544690, + "normalized_name": "kriaturaz o guardião das lendas (base)" + }, + { + "appid": 544710, + "normalized_name": "delicious emily's new beginning" + }, + { + "appid": 544730, + "normalized_name": "catan universe" + }, + { + "appid": 544750, + "normalized_name": "soulcalibur vi" + }, + { + "appid": 544790, + "normalized_name": "happy empire a bouquet for the princess" + }, + { + "appid": 544800, + "normalized_name": "driftwatch vr" + }, + { + "appid": 544810, + "normalized_name": "kards the ww2 card game" + }, + { + "appid": 544820, + "normalized_name": "21 steps to soul" + }, + { + "appid": 544840, + "normalized_name": "children of orc" + }, + { + "appid": 544870, + "normalized_name": "blood ties" + }, + { + "appid": 544920, + "normalized_name": "darwin project" + }, + { + "appid": 544970, + "normalized_name": "milkmaid of the milky way" + }, + { + "appid": 544990, + "normalized_name": "nobunaga's ambition" + }, + { + "appid": 545000, + "normalized_name": "aoki ookami to shiroki mejika" + }, + { + "appid": 545010, + "normalized_name": "ishin no arashi" + }, + { + "appid": 545030, + "normalized_name": "nsfw ~ not a simulator for working" + }, + { + "appid": 545040, + "normalized_name": "feather" + }, + { + "appid": 545050, + "normalized_name": "badiya desert survival" + }, + { + "appid": 545060, + "normalized_name": "bullet soul infinite burst" + }, + { + "appid": 545130, + "normalized_name": "pro basketball manager 2017" + }, + { + "appid": 545150, + "normalized_name": "beastiarium" + }, + { + "appid": 545180, + "normalized_name": "muffled warfare echolocation shooter" + }, + { + "appid": 545200, + "normalized_name": "super blackjack battle 2 turbo the card warriors" + }, + { + "appid": 545330, + "normalized_name": "al・fine" + }, + { + "appid": 545340, + "normalized_name": "companion" + }, + { + "appid": 545400, + "normalized_name": "natural beyond nature" + }, + { + "appid": 545410, + "normalized_name": "a trip to yugoslavia director's cut" + }, + { + "appid": 545430, + "normalized_name": "bedfellows frenzy" + }, + { + "appid": 545450, + "normalized_name": "hollow bliss" + }, + { + "appid": 545470, + "normalized_name": "hover hazard" + }, + { + "appid": 545490, + "normalized_name": "akuya" + }, + { + "appid": 545540, + "normalized_name": "the infectious madness of doctor dekker" + }, + { + "appid": 545550, + "normalized_name": "harvester of the dead" + }, + { + "appid": 545570, + "normalized_name": "phat phrog" + }, + { + "appid": 545580, + "normalized_name": "go away there's kumis over there!" + }, + { + "appid": 545590, + "normalized_name": "button tales" + }, + { + "appid": 545600, + "normalized_name": "vigilantes" + }, + { + "appid": 545620, + "normalized_name": "anamorphine" + }, + { + "appid": 545640, + "normalized_name": "shiver poltergeist collector's" + }, + { + "appid": 545660, + "normalized_name": "roofbot" + }, + { + "appid": 545670, + "normalized_name": "parallyzed" + }, + { + "appid": 545690, + "normalized_name": "voi" + }, + { + "appid": 545700, + "normalized_name": "the land of dasthir" + }, + { + "appid": 545720, + "normalized_name": "nother an indie souls like" + }, + { + "appid": 545750, + "normalized_name": "rise high" + }, + { + "appid": 545800, + "normalized_name": "ghostdream" + }, + { + "appid": 545820, + "normalized_name": "wanderland" + }, + { + "appid": 545830, + "normalized_name": "princess of tavern collector's" + }, + { + "appid": 545840, + "normalized_name": "convicted galaxy" + }, + { + "appid": 545850, + "normalized_name": "shady brook a dark mystery text adventure" + }, + { + "appid": 545860, + "normalized_name": "luke sidewalker" + }, + { + "appid": 545880, + "normalized_name": "super gear quest" + }, + { + "appid": 545890, + "normalized_name": "breaking wheel" + }, + { + "appid": 545910, + "normalized_name": "redemption cemetery bitter frost collector's" + }, + { + "appid": 545920, + "normalized_name": "hunting unlimited 4" + }, + { + "appid": 545930, + "normalized_name": "hunting unlimited 2011" + }, + { + "appid": 545940, + "normalized_name": "hunting unlimited 2009" + }, + { + "appid": 545960, + "normalized_name": "wild animals animated jigsaws" + }, + { + "appid": 545980, + "normalized_name": "voodoo vince" + }, + { + "appid": 546030, + "normalized_name": "fatal gem vr(the first match 3 vr game)" + }, + { + "appid": 546040, + "normalized_name": "ancient code vr( the fantasy egypt journey)" + }, + { + "appid": 546050, + "normalized_name": "puyo puyotetris" + }, + { + "appid": 546070, + "normalized_name": "flower design" + }, + { + "appid": 546080, + "normalized_name": "coffin of ashes" + }, + { + "appid": 546090, + "normalized_name": "trip to vinelands" + }, + { + "appid": 546100, + "normalized_name": "botolo" + }, + { + "appid": 546110, + "normalized_name": "画境(picturesque) vr" + }, + { + "appid": 546120, + "normalized_name": "pursuit of power 2 the chaos dimension" + }, + { + "appid": 546150, + "normalized_name": "primordian" + }, + { + "appid": 546160, + "normalized_name": "ladybug quest" + }, + { + "appid": 546170, + "normalized_name": "gem forge" + }, + { + "appid": 546180, + "normalized_name": "starry nights helix" + }, + { + "appid": 546200, + "normalized_name": "gnomes garden 3 the thief of castles" + }, + { + "appid": 546210, + "normalized_name": "unforgiven vr" + }, + { + "appid": 546220, + "normalized_name": "red comrades 3 return of alaska. reloaded" + }, + { + "appid": 546230, + "normalized_name": "xenus 2. white gold." + }, + { + "appid": 546240, + "normalized_name": "the journey" + }, + { + "appid": 546330, + "normalized_name": "space mouse 35th anniversary" + }, + { + "appid": 546340, + "normalized_name": "dynamic very very hard game!!" + }, + { + "appid": 546350, + "normalized_name": "craft keep vr" + }, + { + "appid": 546390, + "normalized_name": "brief karate foolish" + }, + { + "appid": 546400, + "normalized_name": "cavern escape extremely hard game!!!" + }, + { + "appid": 546410, + "normalized_name": "grab the bottle" + }, + { + "appid": 546430, + "normalized_name": "pathway" + }, + { + "appid": 546440, + "normalized_name": "sluggish morss days of the purple sun" + }, + { + "appid": 546460, + "normalized_name": "baezult 2" + }, + { + "appid": 546490, + "normalized_name": "heart and seoul" + }, + { + "appid": 546500, + "normalized_name": "tank it!" + }, + { + "appid": 546550, + "normalized_name": "snowball!" + }, + { + "appid": 546560, + "normalized_name": "half life alyx" + }, + { + "appid": 546600, + "normalized_name": "vanguards" + }, + { + "appid": 546610, + "normalized_name": "acro storm" + }, + { + "appid": 546650, + "normalized_name": "beat boxer" + }, + { + "appid": 546660, + "normalized_name": "operation breakout" + }, + { + "appid": 546670, + "normalized_name": "xark" + }, + { + "appid": 546700, + "normalized_name": "the butterfly sign" + }, + { + "appid": 546780, + "normalized_name": "anomalies" + }, + { + "appid": 546790, + "normalized_name": "comit the astrodian" + }, + { + "appid": 546800, + "normalized_name": "tower in the sky tactics" + }, + { + "appid": 546820, + "normalized_name": "pony world 2" + }, + { + "appid": 546870, + "normalized_name": "merchants & mercenaries" + }, + { + "appid": 546900, + "normalized_name": "fear effect sedna" + }, + { + "appid": 546930, + "normalized_name": "machine hunt" + }, + { + "appid": 546940, + "normalized_name": "happy empire 2 – the lost relic" + }, + { + "appid": 546960, + "normalized_name": "mechatroniks attack" + }, + { + "appid": 546980, + "normalized_name": "midnight carnival" + }, + { + "appid": 546990, + "normalized_name": "town of night" + }, + { + "appid": 547000, + "normalized_name": "septic savages" + }, + { + "appid": 547040, + "normalized_name": "above vr" + }, + { + "appid": 547050, + "normalized_name": "ryb" + }, + { + "appid": 547090, + "normalized_name": "halloween mysteries" + }, + { + "appid": 547130, + "normalized_name": "the hero" + }, + { + "appid": 547140, + "normalized_name": "owari" + }, + { + "appid": 547150, + "normalized_name": "the morgue fissure between worlds" + }, + { + "appid": 547160, + "normalized_name": "zukara" + }, + { + "appid": 547200, + "normalized_name": "boo breakers the ghostening" + }, + { + "appid": 547210, + "normalized_name": "sullen" + }, + { + "appid": 547250, + "normalized_name": "oscar mike vr" + }, + { + "appid": 547260, + "normalized_name": "mausoleum of the medusa" + }, + { + "appid": 547310, + "normalized_name": "that's mahjong!" + }, + { + "appid": 547340, + "normalized_name": "lovekami divinity stage" + }, + { + "appid": 547360, + "normalized_name": "break arts ii" + }, + { + "appid": 547370, + "normalized_name": "dark war" + }, + { + "appid": 547390, + "normalized_name": "mosaic game of gods" + }, + { + "appid": 547410, + "normalized_name": "peak angle drift online" + }, + { + "appid": 547440, + "normalized_name": "7d game (vr for vive)" + }, + { + "appid": 547480, + "normalized_name": "carly and the reaperman escape from the underworld" + }, + { + "appid": 547520, + "normalized_name": "rapture world conquest" + }, + { + "appid": 547540, + "normalized_name": "pangemic" + }, + { + "appid": 547590, + "normalized_name": "pinball fx2 vr" + }, + { + "appid": 547670, + "normalized_name": "musical range" + }, + { + "appid": 547680, + "normalized_name": "guild quest" + }, + { + "appid": 547710, + "normalized_name": "darkness ahead" + }, + { + "appid": 547730, + "normalized_name": "izanami's dream battle" + }, + { + "appid": 547740, + "normalized_name": "across" + }, + { + "appid": 547750, + "normalized_name": "endless night alpha" + }, + { + "appid": 547820, + "normalized_name": "kitten squad" + }, + { + "appid": 547840, + "normalized_name": "interfectorem" + }, + { + "appid": 547850, + "normalized_name": "trump simulator vr" + }, + { + "appid": 547870, + "normalized_name": "clown2beat" + }, + { + "appid": 547880, + "normalized_name": "alien invasion tower defense" + }, + { + "appid": 547900, + "normalized_name": "front office football eight" + }, + { + "appid": 547910, + "normalized_name": "the survey" + }, + { + "appid": 547920, + "normalized_name": "our darkest night" + }, + { + "appid": 547930, + "normalized_name": "precursors" + }, + { + "appid": 547960, + "normalized_name": "space beret" + }, + { + "appid": 547970, + "normalized_name": "celestial breach" + }, + { + "appid": 547980, + "normalized_name": "equin the lantern" + }, + { + "appid": 547990, + "normalized_name": "congresswolf" + }, + { + "appid": 548020, + "normalized_name": "warmada" + }, + { + "appid": 548050, + "normalized_name": "runes" + }, + { + "appid": 548080, + "normalized_name": "space merchants arena" + }, + { + "appid": 548090, + "normalized_name": "alone in the dark 1" + }, + { + "appid": 548110, + "normalized_name": "star twine" + }, + { + "appid": 548130, + "normalized_name": "scribble ships" + }, + { + "appid": 548170, + "normalized_name": "arena master" + }, + { + "appid": 548220, + "normalized_name": "paladin" + }, + { + "appid": 548230, + "normalized_name": "spingun" + }, + { + "appid": 548240, + "normalized_name": "demon pit" + }, + { + "appid": 548260, + "normalized_name": "backfire" + }, + { + "appid": 548280, + "normalized_name": "neonball" + }, + { + "appid": 548290, + "normalized_name": "dark eden" + }, + { + "appid": 548320, + "normalized_name": "magical mysteries path of the sorceress" + }, + { + "appid": 548330, + "normalized_name": "wheely" + }, + { + "appid": 548340, + "normalized_name": "abode" + }, + { + "appid": 548360, + "normalized_name": "vr runningjoe" + }, + { + "appid": 548370, + "normalized_name": "rezrog" + }, + { + "appid": 548390, + "normalized_name": "gimbal gravity" + }, + { + "appid": 548430, + "normalized_name": "deep rock galactic" + }, + { + "appid": 548470, + "normalized_name": "first impact rise of a hero" + }, + { + "appid": 548480, + "normalized_name": "nightz" + }, + { + "appid": 548500, + "normalized_name": "payroll" + }, + { + "appid": 548560, + "normalized_name": "manastorm champions of g'nar" + }, + { + "appid": 548570, + "normalized_name": "rage 2" + }, + { + "appid": 548650, + "normalized_name": "lightspeed frontier" + }, + { + "appid": 548680, + "normalized_name": "iron crypticle" + }, + { + "appid": 548710, + "normalized_name": "sandstorm" + }, + { + "appid": 548720, + "normalized_name": "through the mirror" + }, + { + "appid": 548740, + "normalized_name": "warpin creation (vr)" + }, + { + "appid": 548790, + "normalized_name": "clothesline carnage" + }, + { + "appid": 548810, + "normalized_name": "operation babel new tokyo legacy" + }, + { + "appid": 548840, + "normalized_name": "a rose in the twilight" + }, + { + "appid": 548860, + "normalized_name": "the torus syndicate" + }, + { + "appid": 548890, + "normalized_name": "alone in the dark 2" + }, + { + "appid": 548900, + "normalized_name": "alone in the dark 3" + }, + { + "appid": 549000, + "normalized_name": "munch vr" + }, + { + "appid": 549030, + "normalized_name": "snipz" + }, + { + "appid": 549040, + "normalized_name": "biotope" + }, + { + "appid": 549080, + "normalized_name": "tank warfare tunisia 1943" + }, + { + "appid": 549090, + "normalized_name": "counter agents" + }, + { + "appid": 549100, + "normalized_name": "gravnewton" + }, + { + "appid": 549160, + "normalized_name": "army men" + }, + { + "appid": 549170, + "normalized_name": "army men ii" + }, + { + "appid": 549180, + "normalized_name": "army men toys in space" + }, + { + "appid": 549190, + "normalized_name": "fetch" + }, + { + "appid": 549220, + "normalized_name": "dark canvas a brush with death collector's" + }, + { + "appid": 549240, + "normalized_name": "beans the coffee shop simulator" + }, + { + "appid": 549260, + "normalized_name": "alwa's awakening" + }, + { + "appid": 549280, + "normalized_name": "quiz night tonight!" + }, + { + "appid": 549390, + "normalized_name": "storage inc 2" + }, + { + "appid": 549400, + "normalized_name": "ironclads 2 war of the pacific" + }, + { + "appid": 549660, + "normalized_name": "wondee" + }, + { + "appid": 549670, + "normalized_name": "the thing tower defense" + }, + { + "appid": 549700, + "normalized_name": "orphan" + }, + { + "appid": 549740, + "normalized_name": "indie game sim" + }, + { + "appid": 549760, + "normalized_name": "evolution vr" + }, + { + "appid": 549770, + "normalized_name": "paranormal teens" + }, + { + "appid": 549780, + "normalized_name": "rainbow rage squad" + }, + { + "appid": 549790, + "normalized_name": "glorch's great escape walking is for chumps" + }, + { + "appid": 549850, + "normalized_name": "the shadows of pygmalion" + }, + { + "appid": 549860, + "normalized_name": "one night stand" + }, + { + "appid": 549880, + "normalized_name": "robosports vr" + }, + { + "appid": 549900, + "normalized_name": "leviathan starblade" + }, + { + "appid": 549910, + "normalized_name": "locked fears" + }, + { + "appid": 549920, + "normalized_name": "vrchaeology prologue" + }, + { + "appid": 549950, + "normalized_name": "vaccine" + }, + { + "appid": 549990, + "normalized_name": "cobalt dedicated server" + }, + { + "appid": 550010, + "normalized_name": "happy room" + }, + { + "appid": 550080, + "normalized_name": "valkyrie drive bhikkhuni" + }, + { + "appid": 550160, + "normalized_name": "street champ vr" + }, + { + "appid": 550170, + "normalized_name": "rpg fighter league" + }, + { + "appid": 550180, + "normalized_name": "fiber twig midnight puzzle" + }, + { + "appid": 550200, + "normalized_name": "world destroyers" + }, + { + "appid": 550220, + "normalized_name": "charm tale quest" + }, + { + "appid": 550240, + "normalized_name": "after life story of a father" + }, + { + "appid": 550310, + "normalized_name": "root of evil the tailor" + }, + { + "appid": 550320, + "normalized_name": "art of rally" + }, + { + "appid": 550340, + "normalized_name": "umineko golden fantasia" + }, + { + "appid": 550360, + "normalized_name": "one of the last" + }, + { + "appid": 550370, + "normalized_name": "the last sin" + }, + { + "appid": 550390, + "normalized_name": "kingdom of aurelia mystery of the poisoned dagger" + }, + { + "appid": 550400, + "normalized_name": "delicious emily's hopes and fears" + }, + { + "appid": 550420, + "normalized_name": "stargazer christmas" + }, + { + "appid": 550440, + "normalized_name": "azkend 2 the world beneath" + }, + { + "appid": 550450, + "normalized_name": "sparkle unleashed" + }, + { + "appid": 550470, + "normalized_name": "nostale anime mmorpg" + }, + { + "appid": 550520, + "normalized_name": "b. braun future operating room" + }, + { + "appid": 550560, + "normalized_name": "chilie" + }, + { + "appid": 550580, + "normalized_name": "sticker craft" + }, + { + "appid": 550590, + "normalized_name": "archaica the path of light" + }, + { + "appid": 550600, + "normalized_name": "sphere complex" + }, + { + "appid": 550650, + "normalized_name": "black squad" + }, + { + "appid": 550670, + "normalized_name": "what the heck dude?" + }, + { + "appid": 550740, + "normalized_name": "battles of the valiant universe ccg" + }, + { + "appid": 550810, + "normalized_name": "abduction bit" + }, + { + "appid": 550820, + "normalized_name": "kitten cannon" + }, + { + "appid": 550830, + "normalized_name": "brain voyagers ricochet" + }, + { + "appid": 550840, + "normalized_name": "fresh body" + }, + { + "appid": 550870, + "normalized_name": "tricky trail rc" + }, + { + "appid": 550930, + "normalized_name": "rocket craze 3d" + }, + { + "appid": 550990, + "normalized_name": "viktor a steampunk adventure" + }, + { + "appid": 551050, + "normalized_name": "die with glory — point and click adventure game" + }, + { + "appid": 551060, + "normalized_name": "creekside creep invasion" + }, + { + "appid": 551080, + "normalized_name": "rescue your chickens" + }, + { + "appid": 551100, + "normalized_name": "oblivion's edge" + }, + { + "appid": 551110, + "normalized_name": "wayout" + }, + { + "appid": 551130, + "normalized_name": "tiki brawl" + }, + { + "appid": 551150, + "normalized_name": "labyrinths of the world shattered soul collector's" + }, + { + "appid": 551160, + "normalized_name": "spirit of revenge cursed castle collector's" + }, + { + "appid": 551170, + "normalized_name": "onmyoji" + }, + { + "appid": 551190, + "normalized_name": "123 slaughter me street 2" + }, + { + "appid": 551320, + "normalized_name": "lord darydikilkil" + }, + { + "appid": 551330, + "normalized_name": "sea of lies mutiny of the heart collector's" + }, + { + "appid": 551360, + "normalized_name": "myths of the world chinese healer collector's" + }, + { + "appid": 551380, + "normalized_name": "danse macabre the last adagio collector's" + }, + { + "appid": 551440, + "normalized_name": "chiaro and the elixir of life" + }, + { + "appid": 551450, + "normalized_name": "furious angels" + }, + { + "appid": 551500, + "normalized_name": "star fight" + }, + { + "appid": 551520, + "normalized_name": "last days of spring 2" + }, + { + "appid": 551550, + "normalized_name": "assassination box" + }, + { + "appid": 551570, + "normalized_name": "sarab duji tower" + }, + { + "appid": 551580, + "normalized_name": "goblin and coins" + }, + { + "appid": 551610, + "normalized_name": "virtual army revolution" + }, + { + "appid": 551620, + "normalized_name": "approaching infinity" + }, + { + "appid": 551630, + "normalized_name": "navalia" + }, + { + "appid": 551650, + "normalized_name": "the bedtime story" + }, + { + "appid": 551700, + "normalized_name": "gunheart" + }, + { + "appid": 551710, + "normalized_name": "bring her home" + }, + { + "appid": 551730, + "normalized_name": "toukiden 2" + }, + { + "appid": 551750, + "normalized_name": "survival vr" + }, + { + "appid": 551770, + "normalized_name": "echo" + }, + { + "appid": 551840, + "normalized_name": "crystal shard adventure bundle" + }, + { + "appid": 551860, + "normalized_name": "abandon ship" + }, + { + "appid": 551930, + "normalized_name": "skater 2d" + }, + { + "appid": 552000, + "normalized_name": "blowhards" + }, + { + "appid": 552030, + "normalized_name": "artillerists" + }, + { + "appid": 552060, + "normalized_name": "escapevr the basement" + }, + { + "appid": 552080, + "normalized_name": "ironwolf vr" + }, + { + "appid": 552100, + "normalized_name": "brick rigs" + }, + { + "appid": 552110, + "normalized_name": "puzzle pirates dark seas" + }, + { + "appid": 552120, + "normalized_name": "orbit playing with gravity" + }, + { + "appid": 552130, + "normalized_name": "whiplash crash valley" + }, + { + "appid": 552140, + "normalized_name": "cage" + }, + { + "appid": 552150, + "normalized_name": "willie's haunted hayride" + }, + { + "appid": 552160, + "normalized_name": "hade" + }, + { + "appid": 552180, + "normalized_name": "goblin.life" + }, + { + "appid": 552200, + "normalized_name": "peakvox mew mew chamber for steam" + }, + { + "appid": 552210, + "normalized_name": "peakvox route candle for steam" + }, + { + "appid": 552220, + "normalized_name": "invaders!" + }, + { + "appid": 552230, + "normalized_name": "doomsday survival training" + }, + { + "appid": 552240, + "normalized_name": "fancy trangram vr" + }, + { + "appid": 552270, + "normalized_name": "primitive road" + }, + { + "appid": 552280, + "normalized_name": "游魂2 you're the only one" + }, + { + "appid": 552300, + "normalized_name": "soldier sortie vr agent 006" + }, + { + "appid": 552310, + "normalized_name": "anguished" + }, + { + "appid": 552330, + "normalized_name": "happy birthday bernard" + }, + { + "appid": 552340, + "normalized_name": "danger room" + }, + { + "appid": 552350, + "normalized_name": "unhappy ever after" + }, + { + "appid": 552380, + "normalized_name": "[ r.u.m.a ]" + }, + { + "appid": 552390, + "normalized_name": "druid" + }, + { + "appid": 552400, + "normalized_name": "sweep'n'sweep" + }, + { + "appid": 552410, + "normalized_name": "project abyss" + }, + { + "appid": 552440, + "normalized_name": "the talos principle vr" + }, + { + "appid": 552450, + "normalized_name": "serious sam vr the first encounter" + }, + { + "appid": 552460, + "normalized_name": "serious sam vr the second encounter" + }, + { + "appid": 552480, + "normalized_name": "havoc runner" + }, + { + "appid": 552500, + "normalized_name": "warhammer vermintide 2" + }, + { + "appid": 552520, + "normalized_name": "far cry 5" + }, + { + "appid": 552540, + "normalized_name": "lotia" + }, + { + "appid": 552550, + "normalized_name": "space rift non vr episode 1" + }, + { + "appid": 552570, + "normalized_name": "the new queen" + }, + { + "appid": 552580, + "normalized_name": "jade's journey" + }, + { + "appid": 552590, + "normalized_name": "the sexy brutale" + }, + { + "appid": 552610, + "normalized_name": "ninja smasher!" + }, + { + "appid": 552620, + "normalized_name": "atom rpg post apocalyptic indie game" + }, + { + "appid": 552630, + "normalized_name": "keep watching vr" + }, + { + "appid": 552670, + "normalized_name": "rite of passage the perfect show collector's" + }, + { + "appid": 552690, + "normalized_name": "fantasy fairways" + }, + { + "appid": 552700, + "normalized_name": "world of final fantasy" + }, + { + "appid": 552720, + "normalized_name": "saga of the north wind" + }, + { + "appid": 552780, + "normalized_name": "dexodonex" + }, + { + "appid": 552800, + "normalized_name": "swingin swiggins" + }, + { + "appid": 552870, + "normalized_name": "amazeing adventures" + }, + { + "appid": 552880, + "normalized_name": "stardrop" + }, + { + "appid": 552900, + "normalized_name": "fields xy" + }, + { + "appid": 552910, + "normalized_name": "tokyo tattoo girls" + }, + { + "appid": 552940, + "normalized_name": "snakes n ladders origins episode 1" + }, + { + "appid": 552960, + "normalized_name": "fastigium" + }, + { + "appid": 552970, + "normalized_name": "sumoman" + }, + { + "appid": 552990, + "normalized_name": "world of warships" + }, + { + "appid": 553000, + "normalized_name": "escape artist the trial" + }, + { + "appid": 553020, + "normalized_name": "theatre of doom" + }, + { + "appid": 553050, + "normalized_name": "welcome home love" + }, + { + "appid": 553100, + "normalized_name": "timber! the logging experts" + }, + { + "appid": 553110, + "normalized_name": "alpine ski vr" + }, + { + "appid": 553130, + "normalized_name": "into the unknown" + }, + { + "appid": 553150, + "normalized_name": "vr dungeon" + }, + { + "appid": 553260, + "normalized_name": "realpolitiks" + }, + { + "appid": 553290, + "normalized_name": "drift king survival" + }, + { + "appid": 553310, + "normalized_name": "lethal league blaze" + }, + { + "appid": 553320, + "normalized_name": "syren" + }, + { + "appid": 553330, + "normalized_name": "clutter 7 infinity joe's quest" + }, + { + "appid": 553340, + "normalized_name": "solargun" + }, + { + "appid": 553350, + "normalized_name": "space ghost pirate zombie slayer" + }, + { + "appid": 553410, + "normalized_name": "pirate defense" + }, + { + "appid": 553420, + "normalized_name": "tunic" + }, + { + "appid": 553430, + "normalized_name": "skill master vr learn meditation" + }, + { + "appid": 553440, + "normalized_name": "r.a.t.s. (regulatory astro topographical stabilizer)" + }, + { + "appid": 553450, + "normalized_name": "the purge day" + }, + { + "appid": 553470, + "normalized_name": "destination ares" + }, + { + "appid": 553480, + "normalized_name": "the pirate's fate" + }, + { + "appid": 553490, + "normalized_name": "wild game hunter vr" + }, + { + "appid": 553520, + "normalized_name": "trainz railroad simulator 2019" + }, + { + "appid": 553530, + "normalized_name": "teratini vr" + }, + { + "appid": 553540, + "normalized_name": "phantom brigade" + }, + { + "appid": 553570, + "normalized_name": "ifactor" + }, + { + "appid": 553590, + "normalized_name": "hot squat" + }, + { + "appid": 553610, + "normalized_name": "arsonville" + }, + { + "appid": 553630, + "normalized_name": "wipe out vr" + }, + { + "appid": 553640, + "normalized_name": "icey" + }, + { + "appid": 553680, + "normalized_name": "hand eye cubination" + }, + { + "appid": 553690, + "normalized_name": "dustoff heli rescue 2" + }, + { + "appid": 553760, + "normalized_name": "einlanzer" + }, + { + "appid": 553780, + "normalized_name": "ark box unlimited" + }, + { + "appid": 553790, + "normalized_name": "once in yaissor" + }, + { + "appid": 553800, + "normalized_name": "lunar stone origin of blood" + }, + { + "appid": 553820, + "normalized_name": "deathmetal" + }, + { + "appid": 553830, + "normalized_name": "100 nya" + }, + { + "appid": 553850, + "normalized_name": "helldivers 2" + }, + { + "appid": 553910, + "normalized_name": "mystic defense" + }, + { + "appid": 553940, + "normalized_name": "bartigo" + }, + { + "appid": 553950, + "normalized_name": "gridd retroenhanced" + }, + { + "appid": 553960, + "normalized_name": "husk" + }, + { + "appid": 554140, + "normalized_name": "desert ride coaster" + }, + { + "appid": 554150, + "normalized_name": "frequent flyer" + }, + { + "appid": 554180, + "normalized_name": "pale spectrum part two of the book of gray magic" + }, + { + "appid": 554220, + "normalized_name": "oafmatch" + }, + { + "appid": 554280, + "normalized_name": "time carnage vr" + }, + { + "appid": 554290, + "normalized_name": "himawari the sunflower" + }, + { + "appid": 554310, + "normalized_name": "rage wars" + }, + { + "appid": 554330, + "normalized_name": "choppa" + }, + { + "appid": 554470, + "normalized_name": "bladeshield" + }, + { + "appid": 554530, + "normalized_name": "crackhead" + }, + { + "appid": 554560, + "normalized_name": "amaranthine voyage the tree of life collector's" + }, + { + "appid": 554570, + "normalized_name": "witanlore dreamtime" + }, + { + "appid": 554590, + "normalized_name": "little kingdom 2" + }, + { + "appid": 554600, + "normalized_name": "learn japanese to survive! katakana war" + }, + { + "appid": 554610, + "normalized_name": "ultramegon" + }, + { + "appid": 554620, + "normalized_name": "life is strange before the storm" + }, + { + "appid": 554640, + "normalized_name": "拯救大魔王2 rescue the great demon 2" + }, + { + "appid": 554660, + "normalized_name": "puzzle poker" + }, + { + "appid": 554680, + "normalized_name": "crazy saloon vr" + }, + { + "appid": 554690, + "normalized_name": "rotation phonology break" + }, + { + "appid": 554700, + "normalized_name": "viking escape" + }, + { + "appid": 554710, + "normalized_name": "spell cast" + }, + { + "appid": 554720, + "normalized_name": "ziba" + }, + { + "appid": 554750, + "normalized_name": "axis football 2017" + }, + { + "appid": 554770, + "normalized_name": "heavily armed" + }, + { + "appid": 554800, + "normalized_name": "masky" + }, + { + "appid": 554810, + "normalized_name": "the wild eternal" + }, + { + "appid": 554870, + "normalized_name": "superhypercube" + }, + { + "appid": 554920, + "normalized_name": "0 day" + }, + { + "appid": 554980, + "normalized_name": "lollipop the best indie game" + }, + { + "appid": 555000, + "normalized_name": "goat of duty" + }, + { + "appid": 555010, + "normalized_name": "m.e.r.c." + }, + { + "appid": 555040, + "normalized_name": "fan fun" + }, + { + "appid": 555050, + "normalized_name": "racket fury table tennis vr" + }, + { + "appid": 555060, + "normalized_name": "final soccer vr" + }, + { + "appid": 555080, + "normalized_name": "isyium" + }, + { + "appid": 555090, + "normalized_name": "the surrogate" + }, + { + "appid": 555130, + "normalized_name": "sonic hunter vr" + }, + { + "appid": 555150, + "normalized_name": "the first tree" + }, + { + "appid": 555160, + "normalized_name": "pavlov" + }, + { + "appid": 555170, + "normalized_name": "onemanvurger" + }, + { + "appid": 555180, + "normalized_name": "infinitasdm" + }, + { + "appid": 555210, + "normalized_name": "trick and treat visual novel" + }, + { + "appid": 555220, + "normalized_name": "detention" + }, + { + "appid": 555230, + "normalized_name": "the table at war vr" + }, + { + "appid": 555260, + "normalized_name": "the butterfly sign human error" + }, + { + "appid": 555280, + "normalized_name": "m.a.c.e." + }, + { + "appid": 555290, + "normalized_name": "little briar rose" + }, + { + "appid": 555310, + "normalized_name": "satellite" + }, + { + "appid": 555320, + "normalized_name": "never give up!" + }, + { + "appid": 555370, + "normalized_name": "1812 the invasion of canada" + }, + { + "appid": 555400, + "normalized_name": "collision course" + }, + { + "appid": 555410, + "normalized_name": "hearts of chaos" + }, + { + "appid": 555450, + "normalized_name": "deus ex breach" + }, + { + "appid": 555510, + "normalized_name": "machiavillain" + }, + { + "appid": 555520, + "normalized_name": "riddles of fate wild hunt collector's" + }, + { + "appid": 555570, + "normalized_name": "infestation the new z" + }, + { + "appid": 555580, + "normalized_name": "the legend of dark witch 2 (魔神少女エピソード2)" + }, + { + "appid": 555600, + "normalized_name": "hopalong the badlands" + }, + { + "appid": 555610, + "normalized_name": "gunmetal arcadia zero" + }, + { + "appid": 555630, + "normalized_name": "a magical high school girl / 魔法の女子高生" + }, + { + "appid": 555640, + "normalized_name": "japanese school life" + }, + { + "appid": 555650, + "normalized_name": "love guitars and the nashville skyline" + }, + { + "appid": 555660, + "normalized_name": "red forest" + }, + { + "appid": 555670, + "normalized_name": "infinitum" + }, + { + "appid": 555710, + "normalized_name": "zolg" + }, + { + "appid": 555720, + "normalized_name": "grave danger" + }, + { + "appid": 555730, + "normalized_name": "robot city stadium" + }, + { + "appid": 555750, + "normalized_name": "masked forces" + }, + { + "appid": 555820, + "normalized_name": "grim facade mystery of venice collector’s" + }, + { + "appid": 555830, + "normalized_name": "vecitas" + }, + { + "appid": 555850, + "normalized_name": "galactic landing" + }, + { + "appid": 555880, + "normalized_name": "sairento vr" + }, + { + "appid": 555890, + "normalized_name": "burgers 2" + }, + { + "appid": 555920, + "normalized_name": "dark egypt" + }, + { + "appid": 555930, + "normalized_name": "madness" + }, + { + "appid": 555950, + "normalized_name": "danganronpa another episode ultra despair girls" + }, + { + "appid": 555970, + "normalized_name": "awaken" + }, + { + "appid": 556000, + "normalized_name": "gold crusader" + }, + { + "appid": 556050, + "normalized_name": "hyper jam" + }, + { + "appid": 556060, + "normalized_name": "detective gallo" + }, + { + "appid": 556090, + "normalized_name": "fighting space" + }, + { + "appid": 556130, + "normalized_name": "drones the human condition" + }, + { + "appid": 556140, + "normalized_name": "we are stars" + }, + { + "appid": 556160, + "normalized_name": "phat stacks" + }, + { + "appid": 556180, + "normalized_name": "mysterium a psychic clue game" + }, + { + "appid": 556190, + "normalized_name": "seven seas solitaire" + }, + { + "appid": 556200, + "normalized_name": "blue crystal" + }, + { + "appid": 556230, + "normalized_name": "off road paradise trial 4x4" + }, + { + "appid": 556240, + "normalized_name": "disoriented" + }, + { + "appid": 556250, + "normalized_name": "final core" + }, + { + "appid": 556260, + "normalized_name": "gil's lucid dreams" + }, + { + "appid": 556280, + "normalized_name": "neon prism" + }, + { + "appid": 556300, + "normalized_name": "age of farming" + }, + { + "appid": 556310, + "normalized_name": "tmm entourage" + }, + { + "appid": 556340, + "normalized_name": "king kaiju" + }, + { + "appid": 556490, + "normalized_name": "debrysis an awesome badtrip" + }, + { + "appid": 556520, + "normalized_name": "housekeeping vr" + }, + { + "appid": 556530, + "normalized_name": "faerie solitaire dire" + }, + { + "appid": 556540, + "normalized_name": "pyramid vr" + }, + { + "appid": 556640, + "normalized_name": "gladius | gladiator vr sword fighting" + }, + { + "appid": 556680, + "normalized_name": "intruder war areas" + }, + { + "appid": 556700, + "normalized_name": "heavy impact" + }, + { + "appid": 556710, + "normalized_name": "marrow" + }, + { + "appid": 556720, + "normalized_name": "off road super racing" + }, + { + "appid": 556740, + "normalized_name": "legrand legacy tale of the fatebounds" + }, + { + "appid": 556770, + "normalized_name": "star phoenix" + }, + { + "appid": 556780, + "normalized_name": "neptune arena fps" + }, + { + "appid": 556820, + "normalized_name": "warbands bushido" + }, + { + "appid": 556830, + "normalized_name": "gemwars" + }, + { + "appid": 556840, + "normalized_name": "the dome" + }, + { + "appid": 556860, + "normalized_name": "gladiator school" + }, + { + "appid": 556870, + "normalized_name": "charlie's adventure" + }, + { + "appid": 556890, + "normalized_name": "dreamcage escape" + }, + { + "appid": 556920, + "normalized_name": "equilibrium of divinity" + }, + { + "appid": 556960, + "normalized_name": "lost wing" + }, + { + "appid": 556990, + "normalized_name": "rage against the zombies" + }, + { + "appid": 557030, + "normalized_name": "avenger bird" + }, + { + "appid": 557040, + "normalized_name": "99vidas" + }, + { + "appid": 557180, + "normalized_name": "league of maidens" + }, + { + "appid": 557190, + "normalized_name": "buildmorecubes" + }, + { + "appid": 557240, + "normalized_name": "afterlife" + }, + { + "appid": 557260, + "normalized_name": "irec" + }, + { + "appid": 557320, + "normalized_name": "credence filter" + }, + { + "appid": 557330, + "normalized_name": ">// system.hack" + }, + { + "appid": 557340, + "normalized_name": "my friend pedro" + }, + { + "appid": 557400, + "normalized_name": "midas gold plus" + }, + { + "appid": 557410, + "normalized_name": "dream quest" + }, + { + "appid": 557420, + "normalized_name": "kamio recoil" + }, + { + "appid": 557460, + "normalized_name": "toledovr" + }, + { + "appid": 557520, + "normalized_name": "torn" + }, + { + "appid": 557570, + "normalized_name": "able black" + }, + { + "appid": 557580, + "normalized_name": "ancient guardian" + }, + { + "appid": 557600, + "normalized_name": "gorogoa" + }, + { + "appid": 557630, + "normalized_name": "hello charlotte ep2 requiem aeternam deo" + }, + { + "appid": 557670, + "normalized_name": "spooky night" + }, + { + "appid": 557680, + "normalized_name": "germ wars" + }, + { + "appid": 557700, + "normalized_name": "empyrean" + }, + { + "appid": 557720, + "normalized_name": "love chronicles the spell collector's" + }, + { + "appid": 557730, + "normalized_name": "i hate santa" + }, + { + "appid": 557750, + "normalized_name": "giants citizen kabuto" + }, + { + "appid": 557760, + "normalized_name": "of light and darkness" + }, + { + "appid": 557770, + "normalized_name": "pawn" + }, + { + "appid": 557790, + "normalized_name": "goblet of maya" + }, + { + "appid": 557810, + "normalized_name": "clicker guild" + }, + { + "appid": 557830, + "normalized_name": "my pet rock" + }, + { + "appid": 557850, + "normalized_name": "magnificent ships volume 1" + }, + { + "appid": 557860, + "normalized_name": "azurea juncture" + }, + { + "appid": 557880, + "normalized_name": "say goodbye" + }, + { + "appid": 557890, + "normalized_name": "sunset's ashes" + }, + { + "appid": 557900, + "normalized_name": "a walk in the woods" + }, + { + "appid": 557940, + "normalized_name": "the muybridge mausoleum" + }, + { + "appid": 557950, + "normalized_name": "fatal error rts" + }, + { + "appid": 557960, + "normalized_name": "beach bowling dream vr" + }, + { + "appid": 557970, + "normalized_name": "teria" + }, + { + "appid": 558010, + "normalized_name": "revival reset" + }, + { + "appid": 558050, + "normalized_name": "princess kidnapper vr" + }, + { + "appid": 558060, + "normalized_name": "candy island" + }, + { + "appid": 558100, + "normalized_name": "art of war red tides" + }, + { + "appid": 558110, + "normalized_name": "odyssey the story of science" + }, + { + "appid": 558230, + "normalized_name": "elsword free to play" + }, + { + "appid": 558260, + "normalized_name": "gravel" + }, + { + "appid": 558340, + "normalized_name": "faces of illusion the twin phantoms" + }, + { + "appid": 558410, + "normalized_name": "cannonfire concerto" + }, + { + "appid": 558420, + "normalized_name": "stories untold" + }, + { + "appid": 558440, + "normalized_name": "the night christmas ended" + }, + { + "appid": 558450, + "normalized_name": "fibrillation hd" + }, + { + "appid": 558490, + "normalized_name": "crossroad mysteries the broken deal" + }, + { + "appid": 558650, + "normalized_name": "star kingdom the elements" + }, + { + "appid": 558660, + "normalized_name": "it's always monday" + }, + { + "appid": 558670, + "normalized_name": "the agency of anomalies cinderstone orphanage collector's" + }, + { + "appid": 558680, + "normalized_name": "kyoto tanoji quest" + }, + { + "appid": 558720, + "normalized_name": "tribal siege" + }, + { + "appid": 558740, + "normalized_name": "craft work vr shop" + }, + { + "appid": 558780, + "normalized_name": "sonya the great adventure" + }, + { + "appid": 558790, + "normalized_name": "queen's quest 2 stories of forgotten past" + }, + { + "appid": 558850, + "normalized_name": "children of colossus" + }, + { + "appid": 558870, + "normalized_name": "club naughty" + }, + { + "appid": 558990, + "normalized_name": "opus magnum" + }, + { + "appid": 559010, + "normalized_name": "cosmic sugar vr" + }, + { + "appid": 559030, + "normalized_name": "siege saga" + }, + { + "appid": 559070, + "normalized_name": "zak mckracken and the alien mindbenders" + }, + { + "appid": 559100, + "normalized_name": "phantom doctrine" + }, + { + "appid": 559130, + "normalized_name": "inner voices" + }, + { + "appid": 559140, + "normalized_name": "pinheads bowling vr" + }, + { + "appid": 559150, + "normalized_name": "royal detective the lord of statues collector's" + }, + { + "appid": 559170, + "normalized_name": "ready aim splat!" + }, + { + "appid": 559210, + "normalized_name": "rakuen" + }, + { + "appid": 559250, + "normalized_name": "ghostlight manor" + }, + { + "appid": 559260, + "normalized_name": "wayward souls" + }, + { + "appid": 559280, + "normalized_name": "snailiens" + }, + { + "appid": 559300, + "normalized_name": "thunder spheres virtual reality 3d pool" + }, + { + "appid": 559310, + "normalized_name": "illyriad grand strategy mmo" + }, + { + "appid": 559330, + "normalized_name": "a fisherman's tale" + }, + { + "appid": 559350, + "normalized_name": "eurgava fight for haaria" + }, + { + "appid": 559360, + "normalized_name": "brocat the b game" + }, + { + "appid": 559450, + "normalized_name": "demented pixie" + }, + { + "appid": 559610, + "normalized_name": "love ribbon" + }, + { + "appid": 559620, + "normalized_name": "outlaws + a handful of missions" + }, + { + "appid": 559630, + "normalized_name": "kid baby starchild" + }, + { + "appid": 559640, + "normalized_name": "betrayal collection" + }, + { + "appid": 559650, + "normalized_name": "witch it" + }, + { + "appid": 559680, + "normalized_name": "vampire the masquerade redemption" + }, + { + "appid": 559850, + "normalized_name": "time tenshi 2 special" + }, + { + "appid": 559870, + "normalized_name": "pako car chase simulator" + }, + { + "appid": 559900, + "normalized_name": "gulman 4 still alive" + }, + { + "appid": 559910, + "normalized_name": "terroir" + }, + { + "appid": 559920, + "normalized_name": "broken blue" + }, + { + "appid": 559930, + "normalized_name": "causality" + }, + { + "appid": 559960, + "normalized_name": "power hover" + }, + { + "appid": 560000, + "normalized_name": "ladykiller in a bind" + }, + { + "appid": 560050, + "normalized_name": "xmas shooting scramble!!" + }, + { + "appid": 560080, + "normalized_name": "i was rebuilt" + }, + { + "appid": 560130, + "normalized_name": "pillars of eternity ii deadfire" + }, + { + "appid": 560170, + "normalized_name": "star wars shadows of the empire" + }, + { + "appid": 560180, + "normalized_name": "world in danger" + }, + { + "appid": 560200, + "normalized_name": "a number's life" + }, + { + "appid": 560220, + "normalized_name": "estiman game of estimation" + }, + { + "appid": 560230, + "normalized_name": "black swan" + }, + { + "appid": 560250, + "normalized_name": "galaxy girls" + }, + { + "appid": 560260, + "normalized_name": "super blue boy planet" + }, + { + "appid": 560300, + "normalized_name": "thy sword" + }, + { + "appid": 560340, + "normalized_name": "tower ascent" + }, + { + "appid": 560350, + "normalized_name": "police quest swat" + }, + { + "appid": 560370, + "normalized_name": "swat 3 tactical game of the year" + }, + { + "appid": 560430, + "normalized_name": "indiana jones and the emperor's tomb" + }, + { + "appid": 560550, + "normalized_name": "void link" + }, + { + "appid": 560570, + "normalized_name": "breaking bones" + }, + { + "appid": 560600, + "normalized_name": "plantechtor" + }, + { + "appid": 560640, + "normalized_name": "the cabin vr escape the room" + }, + { + "appid": 560660, + "normalized_name": "#utopia" + }, + { + "appid": 560710, + "normalized_name": "leap up no jutsu" + }, + { + "appid": 560720, + "normalized_name": "dark angels masquerade of shadows" + }, + { + "appid": 560730, + "normalized_name": "the esoterica hollow earth" + }, + { + "appid": 560740, + "normalized_name": "shtriga summer camp" + }, + { + "appid": 560750, + "normalized_name": "world keepers last resort" + }, + { + "appid": 560760, + "normalized_name": "sacra terra kiss of death collector’s" + }, + { + "appid": 560770, + "normalized_name": "andoran skye 1.5" + }, + { + "appid": 560790, + "normalized_name": "red spider2 exiled" + }, + { + "appid": 560820, + "normalized_name": "the saint abyss of despair" + }, + { + "appid": 560840, + "normalized_name": "tootinis" + }, + { + "appid": 560870, + "normalized_name": "singing stones vr" + }, + { + "appid": 560930, + "normalized_name": "marimba vr" + }, + { + "appid": 560960, + "normalized_name": "magic tavern" + }, + { + "appid": 560970, + "normalized_name": "fireworks desert blast" + }, + { + "appid": 561000, + "normalized_name": "delicious emily's home sweet home" + }, + { + "appid": 561010, + "normalized_name": "spirit" + }, + { + "appid": 561080, + "normalized_name": "the price of freedom" + }, + { + "appid": 561190, + "normalized_name": "bamboo ep" + }, + { + "appid": 561230, + "normalized_name": "special delivery" + }, + { + "appid": 561260, + "normalized_name": "the rabbit and the owl" + }, + { + "appid": 561340, + "normalized_name": "merlin adventurer store" + }, + { + "appid": 561360, + "normalized_name": "vr invaders" + }, + { + "appid": 561420, + "normalized_name": "hot plates" + }, + { + "appid": 561440, + "normalized_name": "graffiti bombing" + }, + { + "appid": 561450, + "normalized_name": "mutant fighting cup 2" + }, + { + "appid": 561480, + "normalized_name": "96 mill" + }, + { + "appid": 561510, + "normalized_name": "dragodino" + }, + { + "appid": 561590, + "normalized_name": "cricket captain 2017" + }, + { + "appid": 561600, + "normalized_name": "mxgp3 the official motocross videogame" + }, + { + "appid": 561610, + "normalized_name": "motogp17" + }, + { + "appid": 561660, + "normalized_name": "decoherence" + }, + { + "appid": 561680, + "normalized_name": "santa's christmas solitaire" + }, + { + "appid": 561690, + "normalized_name": "emission vr" + }, + { + "appid": 561740, + "normalized_name": "midboss" + }, + { + "appid": 561770, + "normalized_name": "just ignore them" + }, + { + "appid": 561930, + "normalized_name": "sword of the guardian" + }, + { + "appid": 561970, + "normalized_name": "reality" + }, + { + "appid": 562010, + "normalized_name": "tanki online" + }, + { + "appid": 562050, + "normalized_name": "liquid pinball" + }, + { + "appid": 562090, + "normalized_name": "kronos" + }, + { + "appid": 562160, + "normalized_name": "the inner darkness" + }, + { + "appid": 562210, + "normalized_name": "древняя русь" + }, + { + "appid": 562220, + "normalized_name": "zup! 2" + }, + { + "appid": 562230, + "normalized_name": "space tyrant" + }, + { + "appid": 562240, + "normalized_name": "the spirit underneath" + }, + { + "appid": 562250, + "normalized_name": "beastmancer" + }, + { + "appid": 562260, + "normalized_name": "waveshaper" + }, + { + "appid": 562270, + "normalized_name": "shot shot tactic" + }, + { + "appid": 562280, + "normalized_name": "</reality>" + }, + { + "appid": 562290, + "normalized_name": "zahalia the knights of galiveth" + }, + { + "appid": 562310, + "normalized_name": "spacecats with lasers the outerspace" + }, + { + "appid": 562320, + "normalized_name": "locked in vr" + }, + { + "appid": 562330, + "normalized_name": "dwarflings" + }, + { + "appid": 562340, + "normalized_name": "iron wings" + }, + { + "appid": 562350, + "normalized_name": "maid mansion" + }, + { + "appid": 562360, + "normalized_name": "planes bullets and vodka" + }, + { + "appid": 562410, + "normalized_name": "panty party" + }, + { + "appid": 562420, + "normalized_name": "armor clash ii" + }, + { + "appid": 562430, + "normalized_name": "alien hostage" + }, + { + "appid": 562450, + "normalized_name": "salvage op" + }, + { + "appid": 562460, + "normalized_name": "radium 2" + }, + { + "appid": 562470, + "normalized_name": "天使帝國四《empire of angels iv》" + }, + { + "appid": 562480, + "normalized_name": "corona blossom vol.3 journey to the stars" + }, + { + "appid": 562490, + "normalized_name": "evilmorph" + }, + { + "appid": 562500, + "normalized_name": "warstone td" + }, + { + "appid": 562520, + "normalized_name": "attempt[42]" + }, + { + "appid": 562530, + "normalized_name": "universev star domination" + }, + { + "appid": 562540, + "normalized_name": "cabals card blitz" + }, + { + "appid": 562560, + "normalized_name": "boozy dwarf" + }, + { + "appid": 562570, + "normalized_name": "access denied" + }, + { + "appid": 562600, + "normalized_name": "our wonderful world" + }, + { + "appid": 562620, + "normalized_name": "robonauts" + }, + { + "appid": 562640, + "normalized_name": "introvert quest" + }, + { + "appid": 562660, + "normalized_name": "pandarama the lost toys" + }, + { + "appid": 562680, + "normalized_name": "the wizards who fell in a hole" + }, + { + "appid": 562700, + "normalized_name": "paintball 707" + }, + { + "appid": 562730, + "normalized_name": "mechdefender tower defense" + }, + { + "appid": 562740, + "normalized_name": "zombie town vr" + }, + { + "appid": 562750, + "normalized_name": "lifo harvester (ep)" + }, + { + "appid": 562860, + "normalized_name": "ion fury" + }, + { + "appid": 563120, + "normalized_name": "desolate wastes vendor chronicles" + }, + { + "appid": 563130, + "normalized_name": "the cows are watching" + }, + { + "appid": 563150, + "normalized_name": "interlogic" + }, + { + "appid": 563160, + "normalized_name": "vr the anime girls method / 全豚に告ぐ!これで痩せなきゃお前は終わりだ!" + }, + { + "appid": 563170, + "normalized_name": "graveball" + }, + { + "appid": 563180, + "normalized_name": "dispersio" + }, + { + "appid": 563190, + "normalized_name": "de blob 2" + }, + { + "appid": 563200, + "normalized_name": "slay" + }, + { + "appid": 563250, + "normalized_name": "lemuria lost in space" + }, + { + "appid": 563260, + "normalized_name": "steel empire" + }, + { + "appid": 563270, + "normalized_name": "in vitra jrpg adventure" + }, + { + "appid": 563320, + "normalized_name": "mountain trap the manor of memories" + }, + { + "appid": 563330, + "normalized_name": "mountain trap 2 under the cloak of fear" + }, + { + "appid": 563340, + "normalized_name": "blue tear" + }, + { + "appid": 563360, + "normalized_name": "market tycoon" + }, + { + "appid": 563370, + "normalized_name": "don't touch the zombies" + }, + { + "appid": 563380, + "normalized_name": "shadows" + }, + { + "appid": 563390, + "normalized_name": "children of the galaxy" + }, + { + "appid": 563400, + "normalized_name": "ludu" + }, + { + "appid": 563410, + "normalized_name": "necroball" + }, + { + "appid": 563420, + "normalized_name": "obscura" + }, + { + "appid": 563430, + "normalized_name": "void pyramid" + }, + { + "appid": 563470, + "normalized_name": "reaping rewards" + }, + { + "appid": 563490, + "normalized_name": "earth liberation" + }, + { + "appid": 563500, + "normalized_name": "the 8th day" + }, + { + "appid": 563520, + "normalized_name": "when our journey ends a visual novel" + }, + { + "appid": 563530, + "normalized_name": "insatia" + }, + { + "appid": 563550, + "normalized_name": "nevrosa escape" + }, + { + "appid": 563560, + "normalized_name": "alien swarm reactive drop" + }, + { + "appid": 563600, + "normalized_name": "buratino" + }, + { + "appid": 563610, + "normalized_name": "vr squash 2017" + }, + { + "appid": 563680, + "normalized_name": "dragonwingsvr" + }, + { + "appid": 563690, + "normalized_name": "rubicon approach" + }, + { + "appid": 563710, + "normalized_name": "loops of zen" + }, + { + "appid": 563730, + "normalized_name": "the world 3 rise of demon" + }, + { + "appid": 563740, + "normalized_name": "lemons must die" + }, + { + "appid": 563750, + "normalized_name": "world boxing manager" + }, + { + "appid": 563760, + "normalized_name": "vr girlfriend" + }, + { + "appid": 563810, + "normalized_name": "fumiko!" + }, + { + "appid": 563830, + "normalized_name": "historium vr relive the history of bruges" + }, + { + "appid": 563840, + "normalized_name": "lost ember" + }, + { + "appid": 563910, + "normalized_name": "guardian of december" + }, + { + "appid": 564010, + "normalized_name": "stern pinball arcade" + }, + { + "appid": 564040, + "normalized_name": "zangeki warp" + }, + { + "appid": 564050, + "normalized_name": "bud spencer & terence hill slaps and beans" + }, + { + "appid": 564080, + "normalized_name": "metagalactic blitz" + }, + { + "appid": 564090, + "normalized_name": "fierce tales the dog's heart collector's" + }, + { + "appid": 564100, + "normalized_name": "deadly edge" + }, + { + "appid": 564140, + "normalized_name": "juniper theory" + }, + { + "appid": 564150, + "normalized_name": "rosenkreuzstilette" + }, + { + "appid": 564160, + "normalized_name": "rosenkreuzstilette freudenstachel" + }, + { + "appid": 564210, + "normalized_name": "fishermurs" + }, + { + "appid": 564230, + "normalized_name": "fire pro wrestling world" + }, + { + "appid": 564280, + "normalized_name": "adventuring gentleman" + }, + { + "appid": 564310, + "normalized_name": "serious sam fusion 2017 (beta)" + }, + { + "appid": 564330, + "normalized_name": "in your face td" + }, + { + "appid": 564340, + "normalized_name": "5 in 1 pack monument builders destination usa" + }, + { + "appid": 564420, + "normalized_name": "santa's special delivery" + }, + { + "appid": 564450, + "normalized_name": "whispered secrets the story of tideville collector's" + }, + { + "appid": 564470, + "normalized_name": "battle for orion 2" + }, + { + "appid": 564480, + "normalized_name": "the great wobo escape" + }, + { + "appid": 564530, + "normalized_name": "pharaoh + cleopatra" + }, + { + "appid": 564700, + "normalized_name": "scar of the doll" + }, + { + "appid": 564710, + "normalized_name": "soda dungeon" + }, + { + "appid": 564720, + "normalized_name": "werther quest" + }, + { + "appid": 564810, + "normalized_name": "ticket" + }, + { + "appid": 564900, + "normalized_name": "space hotel" + }, + { + "appid": 564920, + "normalized_name": "smoots tennis survival zombie" + }, + { + "appid": 564940, + "normalized_name": "alone with you" + }, + { + "appid": 564950, + "normalized_name": "starfighter origins" + }, + { + "appid": 564960, + "normalized_name": "return to krondor" + }, + { + "appid": 564980, + "normalized_name": "killer klownz" + }, + { + "appid": 565020, + "normalized_name": "global adventures" + }, + { + "appid": 565030, + "normalized_name": "blueshift" + }, + { + "appid": 565080, + "normalized_name": "negligee spring clean prelude" + }, + { + "appid": 565110, + "normalized_name": "mobile astro" + }, + { + "appid": 565120, + "normalized_name": "the station" + }, + { + "appid": 565140, + "normalized_name": "chimeras tune of revenge collector's" + }, + { + "appid": 565170, + "normalized_name": "blade strangers" + }, + { + "appid": 565180, + "normalized_name": "dogurai" + }, + { + "appid": 565190, + "normalized_name": "spacecats with lasers vr" + }, + { + "appid": 565200, + "normalized_name": "gem monster" + }, + { + "appid": 565330, + "normalized_name": "twisted" + }, + { + "appid": 565380, + "normalized_name": "cargo cult shoot'n'loot vr" + }, + { + "appid": 565390, + "normalized_name": "hyperun" + }, + { + "appid": 565490, + "normalized_name": "tier 1" + }, + { + "appid": 565540, + "normalized_name": "the turkey of christmas past" + }, + { + "appid": 565550, + "normalized_name": "redneck rampage" + }, + { + "appid": 565600, + "normalized_name": "christmas stories nutcracker collector's" + }, + { + "appid": 565640, + "normalized_name": "colorful life" + }, + { + "appid": 565650, + "normalized_name": "swam" + }, + { + "appid": 565660, + "normalized_name": "akihabara feel the rhythm" + }, + { + "appid": 565670, + "normalized_name": "kunlun fight" + }, + { + "appid": 565690, + "normalized_name": "ayakashigami" + }, + { + "appid": 565720, + "normalized_name": "pretty girls panic!" + }, + { + "appid": 565730, + "normalized_name": "sanctuary vr (also contains non vr version)" + }, + { + "appid": 565760, + "normalized_name": "escape the loop" + }, + { + "appid": 565860, + "normalized_name": "tomato way" + }, + { + "appid": 565910, + "normalized_name": "trainscape" + }, + { + "appid": 565980, + "normalized_name": "evertree inn" + }, + { + "appid": 566050, + "normalized_name": "zeus + poseidon" + }, + { + "appid": 566140, + "normalized_name": "holo graham" + }, + { + "appid": 566150, + "normalized_name": "bowling at the lake" + }, + { + "appid": 566160, + "normalized_name": "zup! 6" + }, + { + "appid": 566170, + "normalized_name": "elephant express vr" + }, + { + "appid": 566180, + "normalized_name": "fractal" + }, + { + "appid": 566190, + "normalized_name": "the search" + }, + { + "appid": 566200, + "normalized_name": "minions monsters and madness" + }, + { + "appid": 566250, + "normalized_name": "project almighty" + }, + { + "appid": 566270, + "normalized_name": "child of ault" + }, + { + "appid": 566320, + "normalized_name": "an octonaut odyssey" + }, + { + "appid": 566350, + "normalized_name": "quizality" + }, + { + "appid": 566380, + "normalized_name": "speedball arena" + }, + { + "appid": 566410, + "normalized_name": "once upon a time" + }, + { + "appid": 566420, + "normalized_name": "marinatide" + }, + { + "appid": 566430, + "normalized_name": "ultimus bellum" + }, + { + "appid": 566440, + "normalized_name": "necromunda underhive wars" + }, + { + "appid": 566490, + "normalized_name": "keen one girl army" + }, + { + "appid": 566530, + "normalized_name": "mass exodus redux" + }, + { + "appid": 566540, + "normalized_name": "labyrinth of refrain coven of dusk" + }, + { + "appid": 566550, + "normalized_name": "rule your school" + }, + { + "appid": 566560, + "normalized_name": "fighters unleashed" + }, + { + "appid": 566570, + "normalized_name": "hover skate vr" + }, + { + "appid": 566580, + "normalized_name": "the jigsaw puzzle garden" + }, + { + "appid": 566600, + "normalized_name": "cypress legacy" + }, + { + "appid": 566640, + "normalized_name": "dinofense" + }, + { + "appid": 566670, + "normalized_name": "save the ninja clan" + }, + { + "appid": 566690, + "normalized_name": "meriwether an american epic" + }, + { + "appid": 566700, + "normalized_name": "eye in the sky" + }, + { + "appid": 566730, + "normalized_name": "uma war vr" + }, + { + "appid": 566750, + "normalized_name": "crimson trigger" + }, + { + "appid": 566780, + "normalized_name": "beats fever" + }, + { + "appid": 566800, + "normalized_name": "amarantime arena" + }, + { + "appid": 566810, + "normalized_name": "pixel bomb! bomb!!" + }, + { + "appid": 566860, + "normalized_name": "vr dungeon knight" + }, + { + "appid": 566870, + "normalized_name": "vr monster awakens" + }, + { + "appid": 566880, + "normalized_name": "henry the hamster handler vr" + }, + { + "appid": 566900, + "normalized_name": "wacky wings vr" + }, + { + "appid": 566910, + "normalized_name": "zombie vikings stab a thon" + }, + { + "appid": 566930, + "normalized_name": "rescue team 6 collector's" + }, + { + "appid": 566940, + "normalized_name": "claws & feathers 2" + }, + { + "appid": 566970, + "normalized_name": "escapevr trapped above the clouds" + }, + { + "appid": 567010, + "normalized_name": "game royale 2 the secret of jannis island" + }, + { + "appid": 567020, + "normalized_name": "tile" + }, + { + "appid": 567030, + "normalized_name": "under leaves" + }, + { + "appid": 567040, + "normalized_name": "affordagolf online" + }, + { + "appid": 567060, + "normalized_name": "putrefaction 2 void walker" + }, + { + "appid": 567080, + "normalized_name": "wizards and warlords" + }, + { + "appid": 567130, + "normalized_name": "boogeyman 2" + }, + { + "appid": 567140, + "normalized_name": "mahjong magic journey" + }, + { + "appid": 567150, + "normalized_name": "mosaics galore" + }, + { + "appid": 567160, + "normalized_name": "katy and bob safari cafe" + }, + { + "appid": 567200, + "normalized_name": "incorp inc" + }, + { + "appid": 567210, + "normalized_name": "bunnyrama" + }, + { + "appid": 567240, + "normalized_name": "drawn trail of shadows collector's" + }, + { + "appid": 567280, + "normalized_name": "cube runner" + }, + { + "appid": 567290, + "normalized_name": "slash it" + }, + { + "appid": 567320, + "normalized_name": "vthree" + }, + { + "appid": 567340, + "normalized_name": "the deal" + }, + { + "appid": 567370, + "normalized_name": "atomic 79" + }, + { + "appid": 567380, + "normalized_name": "heartbound" + }, + { + "appid": 567430, + "normalized_name": "dodge master" + }, + { + "appid": 567480, + "normalized_name": "heph" + }, + { + "appid": 567580, + "normalized_name": "duke of alpha centauri" + }, + { + "appid": 567590, + "normalized_name": "altero" + }, + { + "appid": 567620, + "normalized_name": "the strayed" + }, + { + "appid": 567630, + "normalized_name": "blood of steel" + }, + { + "appid": 567640, + "normalized_name": "danganronpa v3 killing harmony" + }, + { + "appid": 567660, + "normalized_name": "baseball riot" + }, + { + "appid": 567670, + "normalized_name": "serious sam 3 vr bfe" + }, + { + "appid": 567680, + "normalized_name": "the pasture" + }, + { + "appid": 567700, + "normalized_name": "mekside vr" + }, + { + "appid": 567750, + "normalized_name": "gamer career tycoon" + }, + { + "appid": 567780, + "normalized_name": "satellite repairman" + }, + { + "appid": 567800, + "normalized_name": "12 labours of hercules vi race for olympus (platinum edition)" + }, + { + "appid": 567840, + "normalized_name": "brush up vr" + }, + { + "appid": 567860, + "normalized_name": "passage 4" + }, + { + "appid": 567890, + "normalized_name": "zero g" + }, + { + "appid": 567980, + "normalized_name": "santa rockstar" + }, + { + "appid": 568020, + "normalized_name": "blind love" + }, + { + "appid": 568030, + "normalized_name": "last mage standing" + }, + { + "appid": 568040, + "normalized_name": "macbat 64" + }, + { + "appid": 568060, + "normalized_name": "hyper void" + }, + { + "appid": 568070, + "normalized_name": "mable & the wood" + }, + { + "appid": 568090, + "normalized_name": "tattletail" + }, + { + "appid": 568130, + "normalized_name": "gum guy" + }, + { + "appid": 568160, + "normalized_name": "mayan prophecies ship of spirits collector's" + }, + { + "appid": 568200, + "normalized_name": "duo" + }, + { + "appid": 568220, + "normalized_name": "lobotomy corporation | monster management simulation" + }, + { + "appid": 568240, + "normalized_name": "kung fu ping pong" + }, + { + "appid": 568300, + "normalized_name": "the sibling experiment" + }, + { + "appid": 568310, + "normalized_name": "trespass episode 2" + }, + { + "appid": 568320, + "normalized_name": "pictopix" + }, + { + "appid": 568330, + "normalized_name": "(vr)西汉帝陵 the han dynasty imperial mausoleums" + }, + { + "appid": 568370, + "normalized_name": "castle battles" + }, + { + "appid": 568400, + "normalized_name": "depths of limbo" + }, + { + "appid": 568420, + "normalized_name": "donut distraction" + }, + { + "appid": 568460, + "normalized_name": "ghostory" + }, + { + "appid": 568470, + "normalized_name": "waking the glares chapters i and ii" + }, + { + "appid": 568480, + "normalized_name": "space slam" + }, + { + "appid": 568490, + "normalized_name": "frog hop" + }, + { + "appid": 568500, + "normalized_name": "atomic reconstruction" + }, + { + "appid": 568560, + "normalized_name": "puzzle player" + }, + { + "appid": 568570, + "normalized_name": "force of nature" + }, + { + "appid": 568580, + "normalized_name": "gunfleet" + }, + { + "appid": 568610, + "normalized_name": "versus the elite trials" + }, + { + "appid": 568670, + "normalized_name": "trapped souls" + }, + { + "appid": 568690, + "normalized_name": "smash party vr" + }, + { + "appid": 568720, + "normalized_name": "the agony" + }, + { + "appid": 568740, + "normalized_name": "shadow codex" + }, + { + "appid": 568750, + "normalized_name": "甜点恋人 / pastry lovers" + }, + { + "appid": 568770, + "normalized_name": "cinderella phenomenon otome/visual novel" + }, + { + "appid": 568780, + "normalized_name": "multishop tycoon deluxe" + }, + { + "appid": 568800, + "normalized_name": "summer times afternoon" + }, + { + "appid": 568830, + "normalized_name": "witch of ice kingdom ⅱ" + }, + { + "appid": 568840, + "normalized_name": "gunhero" + }, + { + "appid": 568860, + "normalized_name": "psycho on the loose" + }, + { + "appid": 568910, + "normalized_name": "ambition of the slimes" + }, + { + "appid": 568920, + "normalized_name": "the final specimen arrival" + }, + { + "appid": 568930, + "normalized_name": "the land of pain" + }, + { + "appid": 569010, + "normalized_name": "island racer" + }, + { + "appid": 569050, + "normalized_name": "paul pixel the awakening" + }, + { + "appid": 569130, + "normalized_name": "revenge quest" + }, + { + "appid": 569140, + "normalized_name": "paranormal pursuit the gifted one collector's" + }, + { + "appid": 569150, + "normalized_name": "dark cases the blood ruby collector's" + }, + { + "appid": 569200, + "normalized_name": "space rogue classic" + }, + { + "appid": 569210, + "normalized_name": "yozora rhapsody" + }, + { + "appid": 569220, + "normalized_name": "spycraft the great game" + }, + { + "appid": 569270, + "normalized_name": "sable maze sullivan river collector's" + }, + { + "appid": 569290, + "normalized_name": "metamorfose s" + }, + { + "appid": 569340, + "normalized_name": "thing in itself" + }, + { + "appid": 569350, + "normalized_name": "robocritters" + }, + { + "appid": 569360, + "normalized_name": "pivot pilot" + }, + { + "appid": 569370, + "normalized_name": "bitdude" + }, + { + "appid": 569380, + "normalized_name": "alicia griffith – lakeside murder" + }, + { + "appid": 569390, + "normalized_name": "street of sanctuary vr" + }, + { + "appid": 569420, + "normalized_name": "vrqb" + }, + { + "appid": 569430, + "normalized_name": "a demon's game episode 1" + }, + { + "appid": 569480, + "normalized_name": "kingdoms and castles" + }, + { + "appid": 569500, + "normalized_name": "monkey land 3d reaper rush" + }, + { + "appid": 569510, + "normalized_name": "the harvest vr" + }, + { + "appid": 569520, + "normalized_name": "the mine" + }, + { + "appid": 569530, + "normalized_name": "sky noon" + }, + { + "appid": 569570, + "normalized_name": "light apprentice the comic book rpg" + }, + { + "appid": 569610, + "normalized_name": "distant space" + }, + { + "appid": 569630, + "normalized_name": "out of ammo death drive" + }, + { + "appid": 569640, + "normalized_name": "zombiefight vr" + }, + { + "appid": 569720, + "normalized_name": "tunnel divers" + }, + { + "appid": 569770, + "normalized_name": "starship constructor" + }, + { + "appid": 569800, + "normalized_name": "leaves the journey" + }, + { + "appid": 569810, + "normalized_name": "leaves the return" + }, + { + "appid": 569860, + "normalized_name": "thimbleweed park" + }, + { + "appid": 569870, + "normalized_name": "experiment gone rogue" + }, + { + "appid": 569890, + "normalized_name": "me igigu" + }, + { + "appid": 569900, + "normalized_name": "timeless the forgotten town collector's" + }, + { + "appid": 569940, + "normalized_name": "bocce beach" + }, + { + "appid": 569970, + "normalized_name": "chosen 2" + }, + { + "appid": 570000, + "normalized_name": "old friend" + }, + { + "appid": 570050, + "normalized_name": "raiden v director's cut | 雷電 v director's cut | 雷電v 導演剪輯版" + }, + { + "appid": 570060, + "normalized_name": "tacoface" + }, + { + "appid": 570110, + "normalized_name": "tim tim 2 \"the almighty gnome\"" + }, + { + "appid": 570230, + "normalized_name": "deathlike awakening" + }, + { + "appid": 570340, + "normalized_name": "gowings safari" + }, + { + "appid": 570420, + "normalized_name": "x rebirth vr" + }, + { + "appid": 570470, + "normalized_name": "escape the bunker" + }, + { + "appid": 570490, + "normalized_name": "shenzhen solitaire" + }, + { + "appid": 570500, + "normalized_name": "child phobia nightcoming fears" + }, + { + "appid": 570540, + "normalized_name": "animal planet amazon odyssey" + }, + { + "appid": 570580, + "normalized_name": "zork anthology" + }, + { + "appid": 570590, + "normalized_name": "solitaire vr" + }, + { + "appid": 570600, + "normalized_name": "binary trigger" + }, + { + "appid": 570680, + "normalized_name": "zork grand inquisitor" + }, + { + "appid": 570690, + "normalized_name": "xmas zombie rampage" + }, + { + "appid": 570710, + "normalized_name": "extinction" + }, + { + "appid": 570770, + "normalized_name": "古剑奇谭二(gujian2)" + }, + { + "appid": 570780, + "normalized_name": "古剑奇谭(gujian)" + }, + { + "appid": 570790, + "normalized_name": "new frontier days ~founding pioneers~" + }, + { + "appid": 570810, + "normalized_name": "rage quest the worst game" + }, + { + "appid": 570820, + "normalized_name": "dusty raging fist" + }, + { + "appid": 570840, + "normalized_name": "家有大貓 nekojishi" + }, + { + "appid": 570850, + "normalized_name": "metal assault" + }, + { + "appid": 570860, + "normalized_name": "audiobeats" + }, + { + "appid": 570890, + "normalized_name": "fallen" + }, + { + "appid": 570900, + "normalized_name": "art plunge" + }, + { + "appid": 570940, + "normalized_name": "dark souls" + }, + { + "appid": 570950, + "normalized_name": "devilated" + }, + { + "appid": 570970, + "normalized_name": "arena an age of barbarians story" + }, + { + "appid": 570980, + "normalized_name": "tale of fallen dragons" + }, + { + "appid": 571020, + "normalized_name": "santa's big adventures" + }, + { + "appid": 571050, + "normalized_name": "santa sling" + }, + { + "appid": 571060, + "normalized_name": "zork nemesis the forbidden lands" + }, + { + "appid": 571080, + "normalized_name": "formulanext" + }, + { + "appid": 571100, + "normalized_name": "space sex" + }, + { + "appid": 571180, + "normalized_name": "holiday simulator wacky sleigh ride" + }, + { + "appid": 571230, + "normalized_name": "domino craft vr" + }, + { + "appid": 571260, + "normalized_name": "the king of fighters xiv steam" + }, + { + "appid": 571310, + "normalized_name": "steamworld dig 2" + }, + { + "appid": 571330, + "normalized_name": "idioctopus" + }, + { + "appid": 571340, + "normalized_name": "seeking evil the wendigo" + }, + { + "appid": 571350, + "normalized_name": "ded" + }, + { + "appid": 571430, + "normalized_name": "drone hero" + }, + { + "appid": 571500, + "normalized_name": "magic hour" + }, + { + "appid": 571520, + "normalized_name": "kalaban" + }, + { + "appid": 571530, + "normalized_name": "superdimension neptune vs sega hard girls" + }, + { + "appid": 571550, + "normalized_name": "hawks tactical" + }, + { + "appid": 571630, + "normalized_name": "puzzle island vr" + }, + { + "appid": 571660, + "normalized_name": "psyche soldier vr" + }, + { + "appid": 571680, + "normalized_name": "birthseederia" + }, + { + "appid": 571720, + "normalized_name": "one piece unlimited world red deluxe" + }, + { + "appid": 571740, + "normalized_name": "golf it!" + }, + { + "appid": 571860, + "normalized_name": "galactic core the lost fleet (vr)" + }, + { + "appid": 571870, + "normalized_name": "little jack's adventures" + }, + { + "appid": 571880, + "normalized_name": "angels with scaly wings / 鱗羽の天使" + }, + { + "appid": 572000, + "normalized_name": "president erect vr" + }, + { + "appid": 572010, + "normalized_name": "no way out" + }, + { + "appid": 572020, + "normalized_name": "darwin's demons" + }, + { + "appid": 572040, + "normalized_name": "felis" + }, + { + "appid": 572050, + "normalized_name": "call to power ii" + }, + { + "appid": 572130, + "normalized_name": "flock vr" + }, + { + "appid": 572160, + "normalized_name": "golf for workgroups" + }, + { + "appid": 572170, + "normalized_name": "deadtruth the dark path ahead" + }, + { + "appid": 572180, + "normalized_name": "zap zone" + }, + { + "appid": 572220, + "normalized_name": "magequit" + }, + { + "appid": 572240, + "normalized_name": "snake 3d adventures" + }, + { + "appid": 572290, + "normalized_name": "the existence abstract" + }, + { + "appid": 572330, + "normalized_name": "the fan" + }, + { + "appid": 572410, + "normalized_name": "steel division normandy 44" + }, + { + "appid": 572430, + "normalized_name": "party hard 2" + }, + { + "appid": 572480, + "normalized_name": "orbiz" + }, + { + "appid": 572510, + "normalized_name": "superola champion" + }, + { + "appid": 572520, + "normalized_name": "dropzone" + }, + { + "appid": 572570, + "normalized_name": "weather lord royal holidays collector's" + }, + { + "appid": 572580, + "normalized_name": "incredible dracula ii the last call collector's" + }, + { + "appid": 572620, + "normalized_name": "pierhead arcade 2" + }, + { + "appid": 572630, + "normalized_name": "lyravr" + }, + { + "appid": 572640, + "normalized_name": "fake happy end" + }, + { + "appid": 572660, + "normalized_name": "nick" + }, + { + "appid": 572700, + "normalized_name": "nancy drew sea of darkness" + }, + { + "appid": 572710, + "normalized_name": "nancy drew labyrinth of lies" + }, + { + "appid": 572720, + "normalized_name": "nancy drew the shattered medallion" + }, + { + "appid": 572730, + "normalized_name": "nancy drew the silent spy" + }, + { + "appid": 572740, + "normalized_name": "nancy drew the secret of shadow ranch" + }, + { + "appid": 572760, + "normalized_name": "holiday bonus gold" + }, + { + "appid": 572890, + "normalized_name": "pikuniku" + }, + { + "appid": 572980, + "normalized_name": "star dust the book of earth (vr)" + }, + { + "appid": 573040, + "normalized_name": "school of talent suzu route" + }, + { + "appid": 573050, + "normalized_name": "wojdan وجدان" + }, + { + "appid": 573060, + "normalized_name": "logistical" + }, + { + "appid": 573070, + "normalized_name": "bafl brakes are for losers" + }, + { + "appid": 573080, + "normalized_name": "peregrin" + }, + { + "appid": 573090, + "normalized_name": "stormworks build and rescue" + }, + { + "appid": 573100, + "normalized_name": "battlefleet gothic armada 2" + }, + { + "appid": 573110, + "normalized_name": "away journey to the unexpected" + }, + { + "appid": 573120, + "normalized_name": "dead in vinland" + }, + { + "appid": 573130, + "normalized_name": "aporia beyond the valley" + }, + { + "appid": 573170, + "normalized_name": "fidel dungeon rescue" + }, + { + "appid": 573210, + "normalized_name": "mistwood heroes" + }, + { + "appid": 573260, + "normalized_name": "those damn aliens! vr" + }, + { + "appid": 573270, + "normalized_name": "alcatraz vr escape room" + }, + { + "appid": 573280, + "normalized_name": "island getaway" + }, + { + "appid": 573300, + "normalized_name": "monumental failure" + }, + { + "appid": 573320, + "normalized_name": "underhero" + }, + { + "appid": 573330, + "normalized_name": "equilibrium vr" + }, + { + "appid": 573340, + "normalized_name": "northern tale 2" + }, + { + "appid": 573360, + "normalized_name": "warka flarka flim flam" + }, + { + "appid": 573370, + "normalized_name": "tyler model 005" + }, + { + "appid": 573410, + "normalized_name": "ai war 2" + }, + { + "appid": 573460, + "normalized_name": "perch" + }, + { + "appid": 573490, + "normalized_name": "interstellar transport company" + }, + { + "appid": 573520, + "normalized_name": "crowtel renovations" + }, + { + "appid": 573530, + "normalized_name": "isolation" + }, + { + "appid": 573550, + "normalized_name": "goalkeepvr" + }, + { + "appid": 573600, + "normalized_name": "think of the children" + }, + { + "appid": 573610, + "normalized_name": "dooors vr" + }, + { + "appid": 573650, + "normalized_name": "3 days zoo mystery" + }, + { + "appid": 573660, + "normalized_name": "aerea" + }, + { + "appid": 573670, + "normalized_name": "adelantado trilogy. book two" + }, + { + "appid": 573690, + "normalized_name": "adelantado trilogy. book three" + }, + { + "appid": 573700, + "normalized_name": "island tribe 4" + }, + { + "appid": 573710, + "normalized_name": "farm mania 2" + }, + { + "appid": 573720, + "normalized_name": "viking saga epic adventure" + }, + { + "appid": 573730, + "normalized_name": "northern tale 3" + }, + { + "appid": 573740, + "normalized_name": "northern tale 4" + }, + { + "appid": 573750, + "normalized_name": "island tribe 5" + }, + { + "appid": 573760, + "normalized_name": "roads of rome new generation" + }, + { + "appid": 573770, + "normalized_name": "red" + }, + { + "appid": 573780, + "normalized_name": "xenon valkyrie" + }, + { + "appid": 573790, + "normalized_name": "imperium galactica" + }, + { + "appid": 573800, + "normalized_name": "natari at the bubble planet" + }, + { + "appid": 574010, + "normalized_name": "forestry" + }, + { + "appid": 574030, + "normalized_name": "score a goal (physical football)" + }, + { + "appid": 574040, + "normalized_name": "christmas massacre vr" + }, + { + "appid": 574050, + "normalized_name": "dragon quest heroes ii" + }, + { + "appid": 574070, + "normalized_name": "space wars interstellar empires" + }, + { + "appid": 574080, + "normalized_name": "fog of war" + }, + { + "appid": 574090, + "normalized_name": "mothergunship" + }, + { + "appid": 574120, + "normalized_name": "sausage sports club" + }, + { + "appid": 574140, + "normalized_name": "project lux" + }, + { + "appid": 574150, + "normalized_name": "samurai sword vr" + }, + { + "appid": 574160, + "normalized_name": "senko no ronde 2" + }, + { + "appid": 574170, + "normalized_name": "love engine" + }, + { + "appid": 574180, + "normalized_name": "rem survival" + }, + { + "appid": 574190, + "normalized_name": "vr snowballs" + }, + { + "appid": 574200, + "normalized_name": "earth defense force 4.1 wingdiver the shooter" + }, + { + "appid": 574220, + "normalized_name": "ze vr" + }, + { + "appid": 574260, + "normalized_name": "the secret order 5 the buried kingdom" + }, + { + "appid": 574270, + "normalized_name": "lost grimoires 2 shard of mystery" + }, + { + "appid": 574310, + "normalized_name": "the mooseman" + }, + { + "appid": 574410, + "normalized_name": "demon grade vr" + }, + { + "appid": 574420, + "normalized_name": "dr. doyle & the mystery of the cloche hat" + }, + { + "appid": 574440, + "normalized_name": "ripple effect" + }, + { + "appid": 574500, + "normalized_name": "gearend" + }, + { + "appid": 574520, + "normalized_name": "entervr" + }, + { + "appid": 574530, + "normalized_name": "the veteran vr" + }, + { + "appid": 574560, + "normalized_name": "dude stop" + }, + { + "appid": 574580, + "normalized_name": "to the capital" + }, + { + "appid": 574590, + "normalized_name": "koloro" + }, + { + "appid": 574640, + "normalized_name": "unalive" + }, + { + "appid": 574690, + "normalized_name": "triangle" + }, + { + "appid": 574710, + "normalized_name": "dark shores" + }, + { + "appid": 574720, + "normalized_name": "little big workshop" + }, + { + "appid": 574740, + "normalized_name": "fausts alptraum" + }, + { + "appid": 574760, + "normalized_name": "starship theory" + }, + { + "appid": 574780, + "normalized_name": "naughty or nice" + }, + { + "appid": 574820, + "normalized_name": "cat or bread?" + }, + { + "appid": 574890, + "normalized_name": "forgotten chambers" + }, + { + "appid": 574920, + "normalized_name": "spacejourney vr" + }, + { + "appid": 574940, + "normalized_name": "downward spiral prologue" + }, + { + "appid": 574980, + "normalized_name": "them's fightin' herds" + }, + { + "appid": 575010, + "normalized_name": "celestial crossing" + }, + { + "appid": 575020, + "normalized_name": "outerra world sandbox" + }, + { + "appid": 575030, + "normalized_name": "baru and the spirit prince" + }, + { + "appid": 575040, + "normalized_name": "温室之城(glass city the dust)" + }, + { + "appid": 575050, + "normalized_name": "little triangle" + }, + { + "appid": 575060, + "normalized_name": "nemo_d.o" + }, + { + "appid": 575080, + "normalized_name": "pleasure in dream" + }, + { + "appid": 575170, + "normalized_name": "don't mess up" + }, + { + "appid": 575210, + "normalized_name": "happy drummer vr" + }, + { + "appid": 575330, + "normalized_name": "oh...sir! the hollywood roast" + }, + { + "appid": 575340, + "normalized_name": "chessaria the tactical adventure (chess)" + }, + { + "appid": 575360, + "normalized_name": "ultimagus" + }, + { + "appid": 575400, + "normalized_name": "try hard parking" + }, + { + "appid": 575420, + "normalized_name": "chocolate" + }, + { + "appid": 575430, + "normalized_name": "vr home" + }, + { + "appid": 575450, + "normalized_name": "graceful explosion machine" + }, + { + "appid": 575480, + "normalized_name": "wagamama high spec" + }, + { + "appid": 575490, + "normalized_name": "let's draw" + }, + { + "appid": 575510, + "normalized_name": "sakura agent" + }, + { + "appid": 575560, + "normalized_name": "space badminton vr" + }, + { + "appid": 575570, + "normalized_name": "iced" + }, + { + "appid": 575580, + "normalized_name": "queen of seas" + }, + { + "appid": 575590, + "normalized_name": "balloon popping pigs deluxe" + }, + { + "appid": 575600, + "normalized_name": "2017 vr" + }, + { + "appid": 575630, + "normalized_name": "permute" + }, + { + "appid": 575640, + "normalized_name": "zup! 3" + }, + { + "appid": 575650, + "normalized_name": "lily's day off" + }, + { + "appid": 575660, + "normalized_name": "platinum kill" + }, + { + "appid": 575670, + "normalized_name": "five elements" + }, + { + "appid": 575680, + "normalized_name": "square n fair" + }, + { + "appid": 575690, + "normalized_name": "parkan the imperial chronicles" + }, + { + "appid": 575700, + "normalized_name": "fruit arranger" + }, + { + "appid": 575710, + "normalized_name": "jump step step" + }, + { + "appid": 575720, + "normalized_name": "mighty party" + }, + { + "appid": 575750, + "normalized_name": "magic box" + }, + { + "appid": 575760, + "normalized_name": "project r.e.b.o.o.t 2" + }, + { + "appid": 575770, + "normalized_name": "dangerous bullets" + }, + { + "appid": 575780, + "normalized_name": "inner silence" + }, + { + "appid": 575800, + "normalized_name": "arizona rose and the pharaohs' riddles" + }, + { + "appid": 575810, + "normalized_name": "4人打ちアクション麻雀 / action mahjong" + }, + { + "appid": 575820, + "normalized_name": "i hate running backwards" + }, + { + "appid": 575830, + "normalized_name": "roomaze" + }, + { + "appid": 575840, + "normalized_name": "neverend" + }, + { + "appid": 575850, + "normalized_name": "hartacon tactics" + }, + { + "appid": 575860, + "normalized_name": "tomb joe" + }, + { + "appid": 575880, + "normalized_name": "1979 invasion earth" + }, + { + "appid": 575890, + "normalized_name": "katy and bob way back home" + }, + { + "appid": 575900, + "normalized_name": "mosaics galore 2" + }, + { + "appid": 575920, + "normalized_name": "felix jumpman" + }, + { + "appid": 575940, + "normalized_name": "the tenth line" + }, + { + "appid": 575950, + "normalized_name": "blood feed" + }, + { + "appid": 575960, + "normalized_name": "the wisbey mystery" + }, + { + "appid": 575970, + "normalized_name": "golem gates" + }, + { + "appid": 575990, + "normalized_name": "knot" + }, + { + "appid": 576020, + "normalized_name": "final theosis" + }, + { + "appid": 576030, + "normalized_name": "mhrd" + }, + { + "appid": 576050, + "normalized_name": "other worlds india" + }, + { + "appid": 576060, + "normalized_name": "faraway islands" + }, + { + "appid": 576090, + "normalized_name": "last wings" + }, + { + "appid": 576100, + "normalized_name": "unknown pharaoh" + }, + { + "appid": 576110, + "normalized_name": "where is my brain!?" + }, + { + "appid": 576120, + "normalized_name": "purgatory ii" + }, + { + "appid": 576130, + "normalized_name": "state of anarchy master of mayhem" + }, + { + "appid": 576160, + "normalized_name": "a long road home" + }, + { + "appid": 576230, + "normalized_name": "home tech vr" + }, + { + "appid": 576260, + "normalized_name": "winds of trade" + }, + { + "appid": 576280, + "normalized_name": "arena hero" + }, + { + "appid": 576290, + "normalized_name": "huckleberry falls" + }, + { + "appid": 576310, + "normalized_name": "oracle" + }, + { + "appid": 576370, + "normalized_name": "cubians vr" + }, + { + "appid": 576390, + "normalized_name": "365 days" + }, + { + "appid": 576400, + "normalized_name": "elisa the innkeeper" + }, + { + "appid": 576410, + "normalized_name": "nihilist simulator" + }, + { + "appid": 576420, + "normalized_name": "the curse of yendor" + }, + { + "appid": 576430, + "normalized_name": "world of robots" + }, + { + "appid": 576470, + "normalized_name": "animality" + }, + { + "appid": 576480, + "normalized_name": "drunken fight simulator" + }, + { + "appid": 576500, + "normalized_name": "evergarden" + }, + { + "appid": 576540, + "normalized_name": "brother wings" + }, + { + "appid": 576590, + "normalized_name": "puzzle wishes" + }, + { + "appid": 576620, + "normalized_name": "the puzzle room vr ( escape the room )" + }, + { + "appid": 576640, + "normalized_name": "gunnvr" + }, + { + "appid": 576650, + "normalized_name": "fovos vr" + }, + { + "appid": 576660, + "normalized_name": "snake party" + }, + { + "appid": 576670, + "normalized_name": "sky is arrows" + }, + { + "appid": 576700, + "normalized_name": "hollow halls" + }, + { + "appid": 576720, + "normalized_name": "light and dance vr music action relaxation" + }, + { + "appid": 576730, + "normalized_name": "spirit of maya" + }, + { + "appid": 576740, + "normalized_name": "footrock 2" + }, + { + "appid": 576750, + "normalized_name": "ropes and dragons vr" + }, + { + "appid": 576770, + "normalized_name": "low magic age" + }, + { + "appid": 576800, + "normalized_name": "final bravely" + }, + { + "appid": 576810, + "normalized_name": "2 ninjas 1 cup" + }, + { + "appid": 576820, + "normalized_name": "colourise" + }, + { + "appid": 576840, + "normalized_name": "raygun commando vr" + }, + { + "appid": 576860, + "normalized_name": "summer nightmare" + }, + { + "appid": 576940, + "normalized_name": "hunt for gods" + }, + { + "appid": 576950, + "normalized_name": "westard" + }, + { + "appid": 576960, + "normalized_name": "🧠 out of the box" + }, + { + "appid": 576980, + "normalized_name": "western 1849 reloaded" + }, + { + "appid": 577000, + "normalized_name": "witchcraft" + }, + { + "appid": 577080, + "normalized_name": "a dump in the dark" + }, + { + "appid": 577120, + "normalized_name": "archipelago navigable vr comic" + }, + { + "appid": 577150, + "normalized_name": "icebox speedgunner" + }, + { + "appid": 577160, + "normalized_name": "skyling garden defense" + }, + { + "appid": 577180, + "normalized_name": "sin castle" + }, + { + "appid": 577230, + "normalized_name": "three kingdoms the last warlord" + }, + { + "appid": 577240, + "normalized_name": "cogvr" + }, + { + "appid": 577270, + "normalized_name": "vr aquarium 雅" + }, + { + "appid": 577280, + "normalized_name": "scalpers turtle & the moonshine gang" + }, + { + "appid": 577290, + "normalized_name": "drunk or dead" + }, + { + "appid": 577320, + "normalized_name": "quantic pinball" + }, + { + "appid": 577330, + "normalized_name": "road fist" + }, + { + "appid": 577360, + "normalized_name": "luna and the moonling" + }, + { + "appid": 577370, + "normalized_name": "boost" + }, + { + "appid": 577380, + "normalized_name": "draw the way" + }, + { + "appid": 577390, + "normalized_name": "make it as an artist" + }, + { + "appid": 577410, + "normalized_name": "the pit infinity" + }, + { + "appid": 577440, + "normalized_name": "kygo 'carry me' vr experience" + }, + { + "appid": 577460, + "normalized_name": "zoop! hunter's grimm" + }, + { + "appid": 577470, + "normalized_name": "last days of tascaria" + }, + { + "appid": 577480, + "normalized_name": "higurashi when they cry hou ch. 5 meakashi" + }, + { + "appid": 577490, + "normalized_name": "minos strategos" + }, + { + "appid": 577530, + "normalized_name": "pixel ripped 1989" + }, + { + "appid": 577560, + "normalized_name": "wizard king" + }, + { + "appid": 577570, + "normalized_name": "mage guard the last grimoire" + }, + { + "appid": 577580, + "normalized_name": "gladiator sword of vengeance" + }, + { + "appid": 577640, + "normalized_name": "space station loma operations" + }, + { + "appid": 577670, + "normalized_name": "demolish & build 2018" + }, + { + "appid": 577690, + "normalized_name": "spooky's jump scare mansion hd renovation" + }, + { + "appid": 577710, + "normalized_name": "pirates of everseas" + }, + { + "appid": 577730, + "normalized_name": "idle evolution" + }, + { + "appid": 577740, + "normalized_name": "winexy" + }, + { + "appid": 577760, + "normalized_name": "tears of a dragon" + }, + { + "appid": 577780, + "normalized_name": "atramentum vr" + }, + { + "appid": 577850, + "normalized_name": "tiny wheels" + }, + { + "appid": 577890, + "normalized_name": "arena blood on the sand vr" + }, + { + "appid": 577910, + "normalized_name": "ghost blade hd" + }, + { + "appid": 577940, + "normalized_name": "killer instinct" + }, + { + "appid": 577970, + "normalized_name": "punch planet early access" + }, + { + "appid": 577980, + "normalized_name": "messiah" + }, + { + "appid": 577990, + "normalized_name": "ignition" + }, + { + "appid": 578010, + "normalized_name": "australian football coach" + }, + { + "appid": 578050, + "normalized_name": "siege and destroy" + }, + { + "appid": 578060, + "normalized_name": "noda" + }, + { + "appid": 578080, + "normalized_name": "pubg battlegrounds" + }, + { + "appid": 578100, + "normalized_name": "meowter space" + }, + { + "appid": 578190, + "normalized_name": "diesel power" + }, + { + "appid": 578210, + "normalized_name": "a tech cybernetic vr" + }, + { + "appid": 578310, + "normalized_name": "brain / out" + }, + { + "appid": 578320, + "normalized_name": "dark parables jack and the sky kingdom collector's" + }, + { + "appid": 578330, + "normalized_name": "lego city undercover" + }, + { + "appid": 578350, + "normalized_name": "element td" + }, + { + "appid": 578360, + "normalized_name": "dark dimensions city of fog collector's" + }, + { + "appid": 578390, + "normalized_name": "remnith" + }, + { + "appid": 578420, + "normalized_name": "mars underground" + }, + { + "appid": 578430, + "normalized_name": "puzzle puppers" + }, + { + "appid": 578440, + "normalized_name": "冒险村传说(tales of legends)" + }, + { + "appid": 578470, + "normalized_name": "break time!" + }, + { + "appid": 578540, + "normalized_name": "perfect gold yuri visual novel" + }, + { + "appid": 578590, + "normalized_name": "city siege faction island" + }, + { + "appid": 578610, + "normalized_name": "super pixel smash" + }, + { + "appid": 578620, + "normalized_name": "gorn" + }, + { + "appid": 578650, + "normalized_name": "the outer worlds" + }, + { + "appid": 578660, + "normalized_name": "kindled cavern" + }, + { + "appid": 578670, + "normalized_name": "conquest frontier wars" + }, + { + "appid": 578690, + "normalized_name": "dog duty" + }, + { + "appid": 578720, + "normalized_name": "a mortician's tale" + }, + { + "appid": 578740, + "normalized_name": "seclusion" + }, + { + "appid": 578760, + "normalized_name": "psyia" + }, + { + "appid": 578800, + "normalized_name": "phantom" + }, + { + "appid": 578830, + "normalized_name": "cavern of time" + }, + { + "appid": 578850, + "normalized_name": "64.0" + }, + { + "appid": 578870, + "normalized_name": "megaglest" + }, + { + "appid": 578880, + "normalized_name": "embrace the fear" + }, + { + "appid": 578890, + "normalized_name": "selatria advent of the dakk'rian empire" + }, + { + "appid": 578900, + "normalized_name": "demonheart" + }, + { + "appid": 578920, + "normalized_name": "demon lord" + }, + { + "appid": 578930, + "normalized_name": "love 2 kuso" + }, + { + "appid": 578990, + "normalized_name": "two worlds ii hd shattered embrace" + }, + { + "appid": 579020, + "normalized_name": "constructor" + }, + { + "appid": 579030, + "normalized_name": "gridvr" + }, + { + "appid": 579050, + "normalized_name": "vrsailing by betomorrow" + }, + { + "appid": 579080, + "normalized_name": "snow games vr" + }, + { + "appid": 579110, + "normalized_name": "interkosmos" + }, + { + "appid": 579120, + "normalized_name": "unlucky seven" + }, + { + "appid": 579130, + "normalized_name": "lightstrike" + }, + { + "appid": 579150, + "normalized_name": "riot of the numbers" + }, + { + "appid": 579160, + "normalized_name": "a god like backhand!" + }, + { + "appid": 579180, + "normalized_name": "ys viii lacrimosa of dana" + }, + { + "appid": 579210, + "normalized_name": "syndrome vr" + }, + { + "appid": 579230, + "normalized_name": "alpacapaca dash" + }, + { + "appid": 579330, + "normalized_name": "the sorceress" + }, + { + "appid": 579490, + "normalized_name": "rush a disney • pixar adventure" + }, + { + "appid": 579560, + "normalized_name": "sky trader" + }, + { + "appid": 579580, + "normalized_name": "the source of evil" + }, + { + "appid": 579720, + "normalized_name": "neverout" + }, + { + "appid": 579760, + "normalized_name": "the journey down chapter three" + }, + { + "appid": 579780, + "normalized_name": "mental asylum vr" + }, + { + "appid": 579820, + "normalized_name": "robinson the journey" + }, + { + "appid": 579840, + "normalized_name": "bloody trapland 2 curiosity" + }, + { + "appid": 579870, + "normalized_name": "biosupremacy" + }, + { + "appid": 579940, + "normalized_name": "race for the galaxy" + }, + { + "appid": 579980, + "normalized_name": "lost eden" + }, + { + "appid": 580010, + "normalized_name": "mystery case files the black veil collector's" + }, + { + "appid": 580040, + "normalized_name": "formata" + }, + { + "appid": 580060, + "normalized_name": "cut cut buffet" + }, + { + "appid": 580170, + "normalized_name": "my lovely daughter" + }, + { + "appid": 580200, + "normalized_name": "yonder the cloud catcher chronicles" + }, + { + "appid": 580300, + "normalized_name": "super stone legacy" + }, + { + "appid": 580320, + "normalized_name": "ashworld" + }, + { + "appid": 580410, + "normalized_name": "destination pluto the vr experience" + }, + { + "appid": 580420, + "normalized_name": "tourists kidnapped a little bear" + }, + { + "appid": 580480, + "normalized_name": "european mystery scent of desire collector’s" + }, + { + "appid": 580520, + "normalized_name": "water planet" + }, + { + "appid": 580540, + "normalized_name": "monkeyking vr" + }, + { + "appid": 580560, + "normalized_name": "hero barrier" + }, + { + "appid": 580570, + "normalized_name": "lethis daring discoverers" + }, + { + "appid": 580590, + "normalized_name": "cublast hd" + }, + { + "appid": 580630, + "normalized_name": "dimensional rift" + }, + { + "appid": 580640, + "normalized_name": "end state" + }, + { + "appid": 580680, + "normalized_name": "cyber jolt (vr)" + }, + { + "appid": 580710, + "normalized_name": "afghanistan '11" + }, + { + "appid": 580720, + "normalized_name": "carrier deck" + }, + { + "appid": 580820, + "normalized_name": "robot soccer challenge" + }, + { + "appid": 580870, + "normalized_name": "ballistic" + }, + { + "appid": 580880, + "normalized_name": "city of rott streets of rott" + }, + { + "appid": 580890, + "normalized_name": "arrow heads" + }, + { + "appid": 580900, + "normalized_name": "grumpy witch" + }, + { + "appid": 580930, + "normalized_name": "redneck deer huntin'" + }, + { + "appid": 580940, + "normalized_name": "redneck rampage rides again" + }, + { + "appid": 580950, + "normalized_name": "arcane maelstrom" + }, + { + "appid": 581030, + "normalized_name": "the last hope trump vs mafia north korea" + }, + { + "appid": 581060, + "normalized_name": "jump to die!!" + }, + { + "appid": 581100, + "normalized_name": "langoth" + }, + { + "appid": 581120, + "normalized_name": "griptape backbone" + }, + { + "appid": 581130, + "normalized_name": "metal waltz anime tank girls" + }, + { + "appid": 581150, + "normalized_name": "project bits" + }, + { + "appid": 581200, + "normalized_name": "nash racing" + }, + { + "appid": 581210, + "normalized_name": "dungeon manager zv 2" + }, + { + "appid": 581220, + "normalized_name": "news tycoon" + }, + { + "appid": 581230, + "normalized_name": "soul saber 2" + }, + { + "appid": 581270, + "normalized_name": "old man's journey" + }, + { + "appid": 581300, + "normalized_name": "black mirror" + }, + { + "appid": 581310, + "normalized_name": "riskers" + }, + { + "appid": 581320, + "normalized_name": "insurgency sandstorm" + }, + { + "appid": 581340, + "normalized_name": "narborion saga" + }, + { + "appid": 581360, + "normalized_name": "foxtail" + }, + { + "appid": 581370, + "normalized_name": "drizzlepath glass" + }, + { + "appid": 581380, + "normalized_name": "clockwise" + }, + { + "appid": 581460, + "normalized_name": "quivr vanguard" + }, + { + "appid": 581520, + "normalized_name": "sakura magical girls" + }, + { + "appid": 581590, + "normalized_name": "retro pinball" + }, + { + "appid": 581600, + "normalized_name": "the albatross" + }, + { + "appid": 581630, + "normalized_name": "sword with sauce" + }, + { + "appid": 581650, + "normalized_name": "once upon an all hallow's eve" + }, + { + "appid": 581660, + "normalized_name": "super meat boy forever" + }, + { + "appid": 581730, + "normalized_name": "autumn night 3d shooter" + }, + { + "appid": 581740, + "normalized_name": "hunger" + }, + { + "appid": 581760, + "normalized_name": "true or false 2" + }, + { + "appid": 581810, + "normalized_name": "1166" + }, + { + "appid": 581820, + "normalized_name": "judas" + }, + { + "appid": 581840, + "normalized_name": "caliper" + }, + { + "appid": 581910, + "normalized_name": "iron armada" + }, + { + "appid": 581920, + "normalized_name": "dunk it (vr basketball)" + }, + { + "appid": 581970, + "normalized_name": "zombie ballz" + }, + { + "appid": 581980, + "normalized_name": "candy machine" + }, + { + "appid": 582010, + "normalized_name": "monster hunter world" + }, + { + "appid": 582030, + "normalized_name": "oblivion tesseract vr" + }, + { + "appid": 582050, + "normalized_name": "hvrgun" + }, + { + "appid": 582110, + "normalized_name": "baskhead training" + }, + { + "appid": 582160, + "normalized_name": "assassin's creed origins" + }, + { + "appid": 582200, + "normalized_name": "the physiology of the eye" + }, + { + "appid": 582210, + "normalized_name": "vremin (virtual reality theremin)" + }, + { + "appid": 582260, + "normalized_name": "extreme g 2" + }, + { + "appid": 582270, + "normalized_name": "everything" + }, + { + "appid": 582290, + "normalized_name": "rest house" + }, + { + "appid": 582330, + "normalized_name": "warriors rise to glory" + }, + { + "appid": 582350, + "normalized_name": "zombie killin'" + }, + { + "appid": 582360, + "normalized_name": "spud cricket vr" + }, + { + "appid": 582370, + "normalized_name": "snowflake's chance" + }, + { + "appid": 582390, + "normalized_name": "ski sport jumping vr" + }, + { + "appid": 582440, + "normalized_name": "nine" + }, + { + "appid": 582450, + "normalized_name": "hack the fbi" + }, + { + "appid": 582460, + "normalized_name": "epitaph" + }, + { + "appid": 582490, + "normalized_name": "lighting end vr" + }, + { + "appid": 582500, + "normalized_name": "we were here" + }, + { + "appid": 582530, + "normalized_name": "wacky spores the chase" + }, + { + "appid": 582550, + "normalized_name": "passpartout the starving artist" + }, + { + "appid": 582560, + "normalized_name": "the invisible hours" + }, + { + "appid": 582610, + "normalized_name": "z end" + }, + { + "appid": 582620, + "normalized_name": "copoka" + }, + { + "appid": 582660, + "normalized_name": "black desert" + }, + { + "appid": 582690, + "normalized_name": "toon shooters 2 the freelancers" + }, + { + "appid": 582810, + "normalized_name": "awesome metal detecting" + }, + { + "appid": 582820, + "normalized_name": "gravity vector" + }, + { + "appid": 582830, + "normalized_name": "synch" + }, + { + "appid": 582840, + "normalized_name": "20something" + }, + { + "appid": 582860, + "normalized_name": "the rain spirit code breaker" + }, + { + "appid": 582890, + "normalized_name": "estranged the departure" + }, + { + "appid": 582920, + "normalized_name": "from shadows" + }, + { + "appid": 582960, + "normalized_name": "lit" + }, + { + "appid": 582980, + "normalized_name": "castle of shikigami" + }, + { + "appid": 582990, + "normalized_name": "space fist" + }, + { + "appid": 583000, + "normalized_name": "fly away" + }, + { + "appid": 583030, + "normalized_name": "eraser & builder" + }, + { + "appid": 583040, + "normalized_name": "princess maker refine" + }, + { + "appid": 583060, + "normalized_name": "the cavern" + }, + { + "appid": 583090, + "normalized_name": "seabed" + }, + { + "appid": 583120, + "normalized_name": "bottle flip vr" + }, + { + "appid": 583150, + "normalized_name": "kart chaser the boost vr" + }, + { + "appid": 583190, + "normalized_name": "the astonishing game" + }, + { + "appid": 583240, + "normalized_name": "coffence" + }, + { + "appid": 583270, + "normalized_name": "cosmic express" + }, + { + "appid": 583470, + "normalized_name": "the end is nigh" + }, + { + "appid": 583490, + "normalized_name": "infinipicross" + }, + { + "appid": 583500, + "normalized_name": "galaxis wars" + }, + { + "appid": 583530, + "normalized_name": "aquila bird flight simulator" + }, + { + "appid": 583570, + "normalized_name": "1 2 swift" + }, + { + "appid": 583580, + "normalized_name": "brutal warrior" + }, + { + "appid": 583590, + "normalized_name": "arms race tcwe" + }, + { + "appid": 583700, + "normalized_name": "m.a.c.s." + }, + { + "appid": 583760, + "normalized_name": "slash it 2" + }, + { + "appid": 583780, + "normalized_name": "dark dimensions the last shift" + }, + { + "appid": 583890, + "normalized_name": "balthazar's dream" + }, + { + "appid": 583930, + "normalized_name": "faerie solitaire" + }, + { + "appid": 583950, + "normalized_name": "artifact" + }, + { + "appid": 584040, + "normalized_name": "journey benjamin's adventures" + }, + { + "appid": 584070, + "normalized_name": "vee rethak deep under the mountain" + }, + { + "appid": 584100, + "normalized_name": "mad digger" + }, + { + "appid": 584150, + "normalized_name": "casey powell lacrosse 18" + }, + { + "appid": 584170, + "normalized_name": "freedom locomotion vr" + }, + { + "appid": 584220, + "normalized_name": "runningdead" + }, + { + "appid": 584280, + "normalized_name": "airport master" + }, + { + "appid": 584370, + "normalized_name": "the trail frontier challenge" + }, + { + "appid": 584400, + "normalized_name": "sonic mania" + }, + { + "appid": 584600, + "normalized_name": "virus crashers" + }, + { + "appid": 584640, + "normalized_name": "super chicken jumper" + }, + { + "appid": 584760, + "normalized_name": "rayless" + }, + { + "appid": 584780, + "normalized_name": "operation swat" + }, + { + "appid": 584800, + "normalized_name": "civil war battle of petersburg" + }, + { + "appid": 584850, + "normalized_name": "power solitaire vr" + }, + { + "appid": 584860, + "normalized_name": "surfasaurus" + }, + { + "appid": 584880, + "normalized_name": "pixel sand" + }, + { + "appid": 584890, + "normalized_name": "stayin' alive" + }, + { + "appid": 584930, + "normalized_name": "conductor" + }, + { + "appid": 584940, + "normalized_name": "amber's magic shop" + }, + { + "appid": 584980, + "normalized_name": "late shift" + }, + { + "appid": 584990, + "normalized_name": "the long reach" + }, + { + "appid": 585020, + "normalized_name": "宇宙大拍扁 / big bia" + }, + { + "appid": 585040, + "normalized_name": "dry erase infinite vr whiteboard" + }, + { + "appid": 585080, + "normalized_name": "hunting simulator" + }, + { + "appid": 585090, + "normalized_name": "black river" + }, + { + "appid": 585180, + "normalized_name": "open sorcery" + }, + { + "appid": 585190, + "normalized_name": "a gummy's life" + }, + { + "appid": 585240, + "normalized_name": "return to zork" + }, + { + "appid": 585260, + "normalized_name": "antagonist" + }, + { + "appid": 585270, + "normalized_name": "heapvr" + }, + { + "appid": 585310, + "normalized_name": "beyond the city vr" + }, + { + "appid": 585360, + "normalized_name": "steampunk syndicate" + }, + { + "appid": 585420, + "normalized_name": "trailmakers" + }, + { + "appid": 585430, + "normalized_name": "flatspace iik" + }, + { + "appid": 585450, + "normalized_name": "shadows awakening" + }, + { + "appid": 585500, + "normalized_name": "dick wilde" + }, + { + "appid": 585550, + "normalized_name": "feminazi the triggering" + }, + { + "appid": 585590, + "normalized_name": "emperor kingdom" + }, + { + "appid": 585690, + "normalized_name": "minimalism" + }, + { + "appid": 585710, + "normalized_name": "blazing beaks" + }, + { + "appid": 585740, + "normalized_name": "mortem" + }, + { + "appid": 585750, + "normalized_name": "chowdertwo" + }, + { + "appid": 585770, + "normalized_name": "prism collider" + }, + { + "appid": 585800, + "normalized_name": "let's find a way" + }, + { + "appid": 585820, + "normalized_name": "leylines" + }, + { + "appid": 585830, + "normalized_name": "ninja stealth 2" + }, + { + "appid": 585840, + "normalized_name": "leaving lyndow" + }, + { + "appid": 585880, + "normalized_name": "once on a windswept night" + }, + { + "appid": 585890, + "normalized_name": "sweetest monster" + }, + { + "appid": 585900, + "normalized_name": "harvest moon light of hope special" + }, + { + "appid": 585910, + "normalized_name": "wild guns reloaded" + }, + { + "appid": 585920, + "normalized_name": "puzzle one" + }, + { + "appid": 585950, + "normalized_name": "wayout 2 hex" + }, + { + "appid": 585970, + "normalized_name": "tank assault x" + }, + { + "appid": 585990, + "normalized_name": "echoes of the fey episode 0 the immolation" + }, + { + "appid": 586020, + "normalized_name": "flairtender" + }, + { + "appid": 586030, + "normalized_name": "shardbound forge your path master your strategy" + }, + { + "appid": 586060, + "normalized_name": "jet hero" + }, + { + "appid": 586080, + "normalized_name": "age of heroes (vr)" + }, + { + "appid": 586100, + "normalized_name": "heroes in the sky origin" + }, + { + "appid": 586110, + "normalized_name": "sansar" + }, + { + "appid": 586130, + "normalized_name": "survival driver" + }, + { + "appid": 586140, + "normalized_name": "blazblue centralfiction" + }, + { + "appid": 586150, + "normalized_name": "armored freedom" + }, + { + "appid": 586160, + "normalized_name": "dash fleet" + }, + { + "appid": 586170, + "normalized_name": "mad dojo" + }, + { + "appid": 586200, + "normalized_name": "street fighter 30th anniversary collection" + }, + { + "appid": 586230, + "normalized_name": "kult of ktulu olympic" + }, + { + "appid": 586240, + "normalized_name": "soul searching" + }, + { + "appid": 586290, + "normalized_name": "crimson crisis" + }, + { + "appid": 586310, + "normalized_name": "gunman taco truck" + }, + { + "appid": 586320, + "normalized_name": "ufo unfortunately fortunate organisms" + }, + { + "appid": 586340, + "normalized_name": "lamm" + }, + { + "appid": 586350, + "normalized_name": "ubermosh wraith" + }, + { + "appid": 586360, + "normalized_name": "pyro vr" + }, + { + "appid": 586380, + "normalized_name": "vitatio 2" + }, + { + "appid": 586390, + "normalized_name": "missile cards" + }, + { + "appid": 586430, + "normalized_name": "spheroids" + }, + { + "appid": 586450, + "normalized_name": "hikibyou2" + }, + { + "appid": 586460, + "normalized_name": "greyhound manager 2 rebooted" + }, + { + "appid": 586570, + "normalized_name": "metanet hunter cd" + }, + { + "appid": 586600, + "normalized_name": "the adventures of fluffy" + }, + { + "appid": 586620, + "normalized_name": "or" + }, + { + "appid": 586660, + "normalized_name": "trackless" + }, + { + "appid": 586670, + "normalized_name": "a foretold affair" + }, + { + "appid": 586680, + "normalized_name": "awakening the golden age collector's" + }, + { + "appid": 586690, + "normalized_name": "dead reckoning silvermoon isle collector's" + }, + { + "appid": 586700, + "normalized_name": "otherworld omens of summer collector's" + }, + { + "appid": 586710, + "normalized_name": "witches' legacy slumbering darkness collector's" + }, + { + "appid": 586720, + "normalized_name": "surface reel life collector's" + }, + { + "appid": 586740, + "normalized_name": "spirits of mystery song of the phoenix collector's" + }, + { + "appid": 586750, + "normalized_name": "sonny" + }, + { + "appid": 586770, + "normalized_name": "megalomaniac" + }, + { + "appid": 586790, + "normalized_name": "hold your houses" + }, + { + "appid": 586830, + "normalized_name": "mighty monster mayhem" + }, + { + "appid": 586880, + "normalized_name": "mini ghost" + }, + { + "appid": 586890, + "normalized_name": "play with balloon" + }, + { + "appid": 586920, + "normalized_name": "empyrean frontier" + }, + { + "appid": 586930, + "normalized_name": "taken souls blood ritual collector's" + }, + { + "appid": 586950, + "normalized_name": "the wizards enhanced" + }, + { + "appid": 586960, + "normalized_name": "upside down" + }, + { + "appid": 586970, + "normalized_name": "hungry flame" + }, + { + "appid": 586990, + "normalized_name": "just vr slingshot target practice" + }, + { + "appid": 587000, + "normalized_name": "first strike" + }, + { + "appid": 587010, + "normalized_name": "ezra the stranger" + }, + { + "appid": 587070, + "normalized_name": "protothype _ a love story" + }, + { + "appid": 587100, + "normalized_name": "ys seven" + }, + { + "appid": 587110, + "normalized_name": "ys memories of celceta" + }, + { + "appid": 587160, + "normalized_name": "nose goes" + }, + { + "appid": 587180, + "normalized_name": "wulverblade" + }, + { + "appid": 587220, + "normalized_name": "jet island" + }, + { + "appid": 587260, + "normalized_name": "tokyo xanadu ex+" + }, + { + "appid": 587290, + "normalized_name": "the thing with mistletoes" + }, + { + "appid": 587310, + "normalized_name": "soma spirits rebalance" + }, + { + "appid": 587330, + "normalized_name": "mars simulator red planet" + }, + { + "appid": 587400, + "normalized_name": "snow moto racing freedom" + }, + { + "appid": 587420, + "normalized_name": "cart racer" + }, + { + "appid": 587430, + "normalized_name": "i expect you to die" + }, + { + "appid": 587440, + "normalized_name": "galactic keep" + }, + { + "appid": 587450, + "normalized_name": "saurian" + }, + { + "appid": 587470, + "normalized_name": "chroma lab" + }, + { + "appid": 587480, + "normalized_name": "elaine" + }, + { + "appid": 587490, + "normalized_name": "dark throne" + }, + { + "appid": 587520, + "normalized_name": "dungeons of sundaria" + }, + { + "appid": 587560, + "normalized_name": "oodlescape the apocalypse" + }, + { + "appid": 587570, + "normalized_name": "elsewhere high chapter 1 a visual novel" + }, + { + "appid": 587580, + "normalized_name": "nature treks vr" + }, + { + "appid": 587620, + "normalized_name": "okami hd" + }, + { + "appid": 587690, + "normalized_name": "the artist" + }, + { + "appid": 587710, + "normalized_name": "xenobox vr" + }, + { + "appid": 587730, + "normalized_name": "orbital injection" + }, + { + "appid": 587790, + "normalized_name": "deadly animal duel" + }, + { + "appid": 587810, + "normalized_name": "bang bang fruit" + }, + { + "appid": 587840, + "normalized_name": "in the darkness of the sea" + }, + { + "appid": 587860, + "normalized_name": "tales of escape" + }, + { + "appid": 587920, + "normalized_name": "phantom halls" + }, + { + "appid": 587930, + "normalized_name": "vr under a desert sun" + }, + { + "appid": 587970, + "normalized_name": "dead drop" + }, + { + "appid": 588030, + "normalized_name": "derail valley" + }, + { + "appid": 588040, + "normalized_name": "will a wonderful world / will:美好世界" + }, + { + "appid": 588050, + "normalized_name": "you with me a kinetic novel" + }, + { + "appid": 588070, + "normalized_name": "brotherz" + }, + { + "appid": 588110, + "normalized_name": "one dog story" + }, + { + "appid": 588120, + "normalized_name": "capsa" + }, + { + "appid": 588140, + "normalized_name": "escape from voyna dead forest" + }, + { + "appid": 588160, + "normalized_name": "pizza connection 3" + }, + { + "appid": 588180, + "normalized_name": "totemori" + }, + { + "appid": 588190, + "normalized_name": "tower!3d pro" + }, + { + "appid": 588200, + "normalized_name": "modsork" + }, + { + "appid": 588230, + "normalized_name": "beckett" + }, + { + "appid": 588240, + "normalized_name": "frisky business" + }, + { + "appid": 588290, + "normalized_name": "goalie challenge vr" + }, + { + "appid": 588340, + "normalized_name": "stolen steel vr" + }, + { + "appid": 588430, + "normalized_name": "fallout shelter" + }, + { + "appid": 588440, + "normalized_name": "false front" + }, + { + "appid": 588490, + "normalized_name": "trickstyle" + }, + { + "appid": 588540, + "normalized_name": "super lovely planet" + }, + { + "appid": 588550, + "normalized_name": "high templar vr" + }, + { + "appid": 588560, + "normalized_name": "vrobot vr giant robot destruction simulator" + }, + { + "appid": 588620, + "normalized_name": "mary le chef cooking passion" + }, + { + "appid": 588630, + "normalized_name": "draw rider 2" + }, + { + "appid": 588650, + "normalized_name": "dead cells" + }, + { + "appid": 588690, + "normalized_name": "peace death!" + }, + { + "appid": 588710, + "normalized_name": "neighboring islands" + }, + { + "appid": 588730, + "normalized_name": "majotori" + }, + { + "appid": 588750, + "normalized_name": "king of dirt" + }, + { + "appid": 588800, + "normalized_name": "hevn" + }, + { + "appid": 588880, + "normalized_name": "crush" + }, + { + "appid": 588890, + "normalized_name": "heroes of arca" + }, + { + "appid": 588920, + "normalized_name": "badass" + }, + { + "appid": 588930, + "normalized_name": "king 'n knight" + }, + { + "appid": 588950, + "normalized_name": "kingsway" + }, + { + "appid": 588970, + "normalized_name": "oik" + }, + { + "appid": 588980, + "normalized_name": "speed and scream" + }, + { + "appid": 588990, + "normalized_name": "the homestead invasion" + }, + { + "appid": 589040, + "normalized_name": "fujii a magical gardening adventure" + }, + { + "appid": 589050, + "normalized_name": "knighthood dawn of heroes" + }, + { + "appid": 589060, + "normalized_name": "trapper knight sharpshooter princess" + }, + { + "appid": 589080, + "normalized_name": "enigma sphere enhanced" + }, + { + "appid": 589100, + "normalized_name": "the moonstone equation" + }, + { + "appid": 589110, + "normalized_name": "constricted vr" + }, + { + "appid": 589150, + "normalized_name": "viking rage" + }, + { + "appid": 589160, + "normalized_name": "zombie apocalypse" + }, + { + "appid": 589170, + "normalized_name": "panzer panic vr" + }, + { + "appid": 589200, + "normalized_name": "dreadhalls" + }, + { + "appid": 589220, + "normalized_name": "uayeb the dry land" + }, + { + "appid": 589240, + "normalized_name": "jaguar i pace concept | virtual reality experience" + }, + { + "appid": 589250, + "normalized_name": "powersvr" + }, + { + "appid": 589270, + "normalized_name": "xoel empire" + }, + { + "appid": 589280, + "normalized_name": "stunt kite masters vr" + }, + { + "appid": 589290, + "normalized_name": "holdfast nations at war" + }, + { + "appid": 589300, + "normalized_name": "legend of the skyfish" + }, + { + "appid": 589320, + "normalized_name": "catch a lover" + }, + { + "appid": 589360, + "normalized_name": "ni no kuni ii revenant kingdom" + }, + { + "appid": 589380, + "normalized_name": "vrog" + }, + { + "appid": 589410, + "normalized_name": "dammerlicht" + }, + { + "appid": 589420, + "normalized_name": "grass cutter mutated lawns" + }, + { + "appid": 589450, + "normalized_name": "where cards fall" + }, + { + "appid": 589460, + "normalized_name": "covert syndrome" + }, + { + "appid": 589470, + "normalized_name": "myrne the quest" + }, + { + "appid": 589480, + "normalized_name": "the falconers moonlight" + }, + { + "appid": 589500, + "normalized_name": "shovel knight shovel of hope" + }, + { + "appid": 589510, + "normalized_name": "shovel knight specter of torment" + }, + { + "appid": 589530, + "normalized_name": "hakuoki kyoto winds" + }, + { + "appid": 589590, + "normalized_name": "kindergarten" + }, + { + "appid": 589620, + "normalized_name": "it lurks in the woods" + }, + { + "appid": 589640, + "normalized_name": "spoids" + }, + { + "appid": 589670, + "normalized_name": "double kick heroes" + }, + { + "appid": 589680, + "normalized_name": "chainless" + }, + { + "appid": 589690, + "normalized_name": "queen's quest 3 the end of dawn" + }, + { + "appid": 589730, + "normalized_name": "tyd wag vir niemand (time waits for nobody)" + }, + { + "appid": 589760, + "normalized_name": "revhead" + }, + { + "appid": 589770, + "normalized_name": "green elephant 2d" + }, + { + "appid": 589780, + "normalized_name": "the red strings club" + }, + { + "appid": 589850, + "normalized_name": "leashed soul" + }, + { + "appid": 589860, + "normalized_name": "soulset" + }, + { + "appid": 589870, + "normalized_name": "learn to fly 3" + }, + { + "appid": 589940, + "normalized_name": "eye of the temple" + }, + { + "appid": 590270, + "normalized_name": "catsby" + }, + { + "appid": 590280, + "normalized_name": "canvas the gallery" + }, + { + "appid": 590370, + "normalized_name": "tiny troopers 2" + }, + { + "appid": 590380, + "normalized_name": "into the breach" + }, + { + "appid": 590430, + "normalized_name": "beefeaterxo" + }, + { + "appid": 590440, + "normalized_name": "carlos iii y la difusión de la antigüedad" + }, + { + "appid": 590530, + "normalized_name": "world builder" + }, + { + "appid": 590560, + "normalized_name": "filthy stinking orcs!" + }, + { + "appid": 590570, + "normalized_name": "paper quest" + }, + { + "appid": 590580, + "normalized_name": "dragon of legends" + }, + { + "appid": 590590, + "normalized_name": "remnants of naezith" + }, + { + "appid": 590600, + "normalized_name": "lifebase" + }, + { + "appid": 590660, + "normalized_name": "shop tycoon the boss" + }, + { + "appid": 590670, + "normalized_name": "epic card game" + }, + { + "appid": 590690, + "normalized_name": "sprint vector" + }, + { + "appid": 590720, + "normalized_name": "cobalt wasd" + }, + { + "appid": 590770, + "normalized_name": "vectonic" + }, + { + "appid": 590790, + "normalized_name": "snowballer" + }, + { + "appid": 590800, + "normalized_name": "rainbow dreams" + }, + { + "appid": 590820, + "normalized_name": "pixel stories of dungeon" + }, + { + "appid": 590830, + "normalized_name": "s&box" + }, + { + "appid": 590840, + "normalized_name": "attack of the giant mutant lizard" + }, + { + "appid": 590850, + "normalized_name": "night lights" + }, + { + "appid": 590870, + "normalized_name": "planetoid" + }, + { + "appid": 590900, + "normalized_name": "ultra break" + }, + { + "appid": 590910, + "normalized_name": "炎黄战纪之三国烽烟" + }, + { + "appid": 590950, + "normalized_name": "toaster jam" + }, + { + "appid": 590970, + "normalized_name": "hollow" + }, + { + "appid": 591000, + "normalized_name": "deep sixed" + }, + { + "appid": 591020, + "normalized_name": "山贼" + }, + { + "appid": 591090, + "normalized_name": "bestseller curse of the golden owl" + }, + { + "appid": 591130, + "normalized_name": "bunny madness anarchy" + }, + { + "appid": 591140, + "normalized_name": "disc league" + }, + { + "appid": 591350, + "normalized_name": "escape the mazes" + }, + { + "appid": 591360, + "normalized_name": "dreams of dali" + }, + { + "appid": 591370, + "normalized_name": "production line car factory simulation" + }, + { + "appid": 591380, + "normalized_name": "bomb squad academy" + }, + { + "appid": 591390, + "normalized_name": "a nifty game" + }, + { + "appid": 591420, + "normalized_name": "zup! 4" + }, + { + "appid": 591460, + "normalized_name": "parkasaurus" + }, + { + "appid": 591470, + "normalized_name": "dark realm queen of flames collector's" + }, + { + "appid": 591560, + "normalized_name": "red death" + }, + { + "appid": 591580, + "normalized_name": "mystery tales the lost hope collector's" + }, + { + "appid": 591610, + "normalized_name": "deep end" + }, + { + "appid": 591630, + "normalized_name": "candleman the journey" + }, + { + "appid": 591640, + "normalized_name": "light it | てらし鬼" + }, + { + "appid": 591660, + "normalized_name": "final rest" + }, + { + "appid": 591680, + "normalized_name": "taphouse vr" + }, + { + "appid": 591740, + "normalized_name": "sniper fury" + }, + { + "appid": 591750, + "normalized_name": "solo" + }, + { + "appid": 591760, + "normalized_name": "hyperbrawl tournament" + }, + { + "appid": 591790, + "normalized_name": "breach it" + }, + { + "appid": 591910, + "normalized_name": "world basketball manager 2" + }, + { + "appid": 591920, + "normalized_name": "power tools vr" + }, + { + "appid": 591930, + "normalized_name": "genesia legacy domain" + }, + { + "appid": 591940, + "normalized_name": "the normal day" + }, + { + "appid": 591960, + "normalized_name": "animation throwdown the quest for cards" + }, + { + "appid": 591990, + "normalized_name": "cosmic awakening vr" + }, + { + "appid": 592020, + "normalized_name": "smugglecraft" + }, + { + "appid": 592030, + "normalized_name": "just in time incorporated" + }, + { + "appid": 592040, + "normalized_name": "energia" + }, + { + "appid": 592060, + "normalized_name": "sons of triskelion" + }, + { + "appid": 592100, + "normalized_name": "flotilla 2" + }, + { + "appid": 592120, + "normalized_name": "glyphs apprentice" + }, + { + "appid": 592130, + "normalized_name": "nakedman vs the clothes" + }, + { + "appid": 592200, + "normalized_name": "super army of tentacles 3 the search for army of tentacles 2" + }, + { + "appid": 592240, + "normalized_name": "jupiteration" + }, + { + "appid": 592270, + "normalized_name": "neko navy" + }, + { + "appid": 592300, + "normalized_name": "slowdrive" + }, + { + "appid": 592320, + "normalized_name": "the ruins vr escape the room" + }, + { + "appid": 592330, + "normalized_name": "roomscale coaster" + }, + { + "appid": 592340, + "normalized_name": "mall empire" + }, + { + "appid": 592360, + "normalized_name": "violet's dream vr" + }, + { + "appid": 592380, + "normalized_name": "apocalypse cow" + }, + { + "appid": 592400, + "normalized_name": "courtyard broomball" + }, + { + "appid": 592410, + "normalized_name": "spacetours vr ep1 the solar system" + }, + { + "appid": 592480, + "normalized_name": "knights and bikes" + }, + { + "appid": 592550, + "normalized_name": "seasteader" + }, + { + "appid": 592560, + "normalized_name": "hoop route" + }, + { + "appid": 592570, + "normalized_name": "wild unknown" + }, + { + "appid": 592620, + "normalized_name": "trajectory" + }, + { + "appid": 592640, + "normalized_name": "stream games deluxe" + }, + { + "appid": 592660, + "normalized_name": "zen garden" + }, + { + "appid": 592720, + "normalized_name": "paulo's wing" + }, + { + "appid": 592730, + "normalized_name": "aerial destruction" + }, + { + "appid": 592750, + "normalized_name": "space fright" + }, + { + "appid": 592770, + "normalized_name": "copter besieged" + }, + { + "appid": 592780, + "normalized_name": "bang bang car" + }, + { + "appid": 593000, + "normalized_name": "alien swarm reactive drop sdk" + }, + { + "appid": 593030, + "normalized_name": "strategic command wwii war in europe" + }, + { + "appid": 593060, + "normalized_name": "squishies" + }, + { + "appid": 593070, + "normalized_name": "digby extreme" + }, + { + "appid": 593100, + "normalized_name": "there is a way" + }, + { + "appid": 593150, + "normalized_name": "ooblets" + }, + { + "appid": 593200, + "normalized_name": "the adventures of fei duanmu 端木斐异闻录" + }, + { + "appid": 593240, + "normalized_name": "vr super sports" + }, + { + "appid": 593250, + "normalized_name": "voxel shot vr" + }, + { + "appid": 593260, + "normalized_name": "planet defender" + }, + { + "appid": 593280, + "normalized_name": "cat quest" + }, + { + "appid": 593330, + "normalized_name": "algotica iterations" + }, + { + "appid": 593400, + "normalized_name": "float gallery" + }, + { + "appid": 593410, + "normalized_name": "elven legend" + }, + { + "appid": 593490, + "normalized_name": "empire architect" + }, + { + "appid": 593530, + "normalized_name": "jelly in the sky" + }, + { + "appid": 593540, + "normalized_name": "elven legend 2 the bewitched tree" + }, + { + "appid": 593560, + "normalized_name": "the last cargo" + }, + { + "appid": 593600, + "normalized_name": "pixark" + }, + { + "appid": 593620, + "normalized_name": "the last conflict" + }, + { + "appid": 593640, + "normalized_name": "papetura" + }, + { + "appid": 593670, + "normalized_name": "sponchies" + }, + { + "appid": 593680, + "normalized_name": "rocking pilot" + }, + { + "appid": 593700, + "normalized_name": "tower fortress" + }, + { + "appid": 593720, + "normalized_name": "dangerous games prisoners of destiny collector's" + }, + { + "appid": 593730, + "normalized_name": "ouroboros prelude" + }, + { + "appid": 593740, + "normalized_name": "dragon climax" + }, + { + "appid": 593850, + "normalized_name": "davyria heroes of eternity" + }, + { + "appid": 593900, + "normalized_name": "tender loving care" + }, + { + "appid": 593950, + "normalized_name": "世阳教你学防灾shiyang teaches you to learn disaster prevention" + }, + { + "appid": 593960, + "normalized_name": "lorelai" + }, + { + "appid": 593970, + "normalized_name": "clash of vessels vr" + }, + { + "appid": 593980, + "normalized_name": "gluon" + }, + { + "appid": 594000, + "normalized_name": "shadows and lies" + }, + { + "appid": 594030, + "normalized_name": "afterglitch" + }, + { + "appid": 594040, + "normalized_name": "series makers tycoon" + }, + { + "appid": 594050, + "normalized_name": "red alliance" + }, + { + "appid": 594120, + "normalized_name": "fort awesome" + }, + { + "appid": 594130, + "normalized_name": "winds of change" + }, + { + "appid": 594150, + "normalized_name": "airrevo vr" + }, + { + "appid": 594160, + "normalized_name": "the last patient" + }, + { + "appid": 594200, + "normalized_name": "don't get hit in the face" + }, + { + "appid": 594220, + "normalized_name": "the living remain" + }, + { + "appid": 594230, + "normalized_name": "glitched" + }, + { + "appid": 594260, + "normalized_name": "the trial" + }, + { + "appid": 594300, + "normalized_name": "chasing styx" + }, + { + "appid": 594310, + "normalized_name": "reflection of a fallen feather" + }, + { + "appid": 594320, + "normalized_name": "return of red riding hood enhanced" + }, + { + "appid": 594330, + "normalized_name": "visage" + }, + { + "appid": 594350, + "normalized_name": "attack helicopter dating simulator" + }, + { + "appid": 594360, + "normalized_name": "sort 'em" + }, + { + "appid": 594370, + "normalized_name": "crazy fishing" + }, + { + "appid": 594380, + "normalized_name": "dragon audit" + }, + { + "appid": 594390, + "normalized_name": "decoy" + }, + { + "appid": 594410, + "normalized_name": "western bank vr" + }, + { + "appid": 594490, + "normalized_name": "deadly hunter vr" + }, + { + "appid": 594550, + "normalized_name": "arma cold war assault mac/linux" + }, + { + "appid": 594570, + "normalized_name": "total war warhammer ii" + }, + { + "appid": 594650, + "normalized_name": "hunt showdown 1896" + }, + { + "appid": 594660, + "normalized_name": "runt of the litter" + }, + { + "appid": 594680, + "normalized_name": "shuyan saga" + }, + { + "appid": 594720, + "normalized_name": "star merchant" + }, + { + "appid": 594750, + "normalized_name": "tiles" + }, + { + "appid": 594760, + "normalized_name": "zombie in my city" + }, + { + "appid": 594810, + "normalized_name": "color jumper" + }, + { + "appid": 594820, + "normalized_name": "an oath to the stars" + }, + { + "appid": 594950, + "normalized_name": "the witches' tea party" + }, + { + "appid": 594980, + "normalized_name": "super amazeballs" + }, + { + "appid": 595010, + "normalized_name": "violet cycle" + }, + { + "appid": 595030, + "normalized_name": "please" + }, + { + "appid": 595060, + "normalized_name": "lionheart legacy of the crusader" + }, + { + "appid": 595070, + "normalized_name": "keep balance vr" + }, + { + "appid": 595080, + "normalized_name": "silver grapple" + }, + { + "appid": 595090, + "normalized_name": "prevent the fall" + }, + { + "appid": 595100, + "normalized_name": "cthon" + }, + { + "appid": 595120, + "normalized_name": "cold space" + }, + { + "appid": 595130, + "normalized_name": "my vet practice" + }, + { + "appid": 595140, + "normalized_name": "immortal redneck" + }, + { + "appid": 595150, + "normalized_name": "my vet practice – marine patrol" + }, + { + "appid": 595160, + "normalized_name": "my boyfriend – he loves me he loves me not" + }, + { + "appid": 595260, + "normalized_name": "heat guardian" + }, + { + "appid": 595280, + "normalized_name": "throne of lies medieval politics" + }, + { + "appid": 595300, + "normalized_name": "vr2 vacate 2 rooms (virtual reality escape)" + }, + { + "appid": 595320, + "normalized_name": "polterheist" + }, + { + "appid": 595420, + "normalized_name": "franchise hockey manager 4" + }, + { + "appid": 595430, + "normalized_name": "sky knights" + }, + { + "appid": 595440, + "normalized_name": "cpu invaders" + }, + { + "appid": 595460, + "normalized_name": "flix and chill" + }, + { + "appid": 595500, + "normalized_name": "freedom planet 2" + }, + { + "appid": 595520, + "normalized_name": "final fantasy xii the zodiac age" + }, + { + "appid": 595550, + "normalized_name": "mastema out of hell" + }, + { + "appid": 595560, + "normalized_name": "legend of hand" + }, + { + "appid": 595630, + "normalized_name": "neon8" + }, + { + "appid": 595640, + "normalized_name": "robo do it" + }, + { + "appid": 595650, + "normalized_name": "fatal passion art prison collector's" + }, + { + "appid": 595660, + "normalized_name": "lux alliance" + }, + { + "appid": 595670, + "normalized_name": "dehoarder 2" + }, + { + "appid": 595690, + "normalized_name": "one hour one life" + }, + { + "appid": 595730, + "normalized_name": "ascendant hearts" + }, + { + "appid": 595740, + "normalized_name": "samurai warriors spirit of sanada" + }, + { + "appid": 595760, + "normalized_name": "the heartland saga" + }, + { + "appid": 595770, + "normalized_name": "airmech wastelands" + }, + { + "appid": 595780, + "normalized_name": "rogue port blue nightmare" + }, + { + "appid": 595790, + "normalized_name": "hell is other demons" + }, + { + "appid": 595920, + "normalized_name": "death point" + }, + { + "appid": 595930, + "normalized_name": "steam rails to riches" + }, + { + "appid": 595960, + "normalized_name": "pinball wicked" + }, + { + "appid": 595990, + "normalized_name": "princess kidnapper 2 vr" + }, + { + "appid": 596000, + "normalized_name": "the shattering" + }, + { + "appid": 596050, + "normalized_name": "martha madison optics" + }, + { + "appid": 596070, + "normalized_name": "skills hockey vr" + }, + { + "appid": 596080, + "normalized_name": "embers of mirrim" + }, + { + "appid": 596090, + "normalized_name": "gray destiny" + }, + { + "appid": 596200, + "normalized_name": "blood 'n bikinis" + }, + { + "appid": 596240, + "normalized_name": "apocryph an old school shooter" + }, + { + "appid": 596260, + "normalized_name": "s copter trials of quick fingers and logic" + }, + { + "appid": 596270, + "normalized_name": "tales of terror crimson dawn" + }, + { + "appid": 596280, + "normalized_name": "you are god" + }, + { + "appid": 596380, + "normalized_name": "coffee crisis" + }, + { + "appid": 596390, + "normalized_name": "over my dead body (for you)" + }, + { + "appid": 596400, + "normalized_name": "azada elementa collector's" + }, + { + "appid": 596470, + "normalized_name": "cartesian" + }, + { + "appid": 596500, + "normalized_name": "chippy & noppo" + }, + { + "appid": 596530, + "normalized_name": "chaos drift" + }, + { + "appid": 596540, + "normalized_name": "the lost heir 3 demon war" + }, + { + "appid": 596560, + "normalized_name": "mars vr(全球使命vr)" + }, + { + "appid": 596570, + "normalized_name": "gray tank" + }, + { + "appid": 596580, + "normalized_name": "fading of zarya 7" + }, + { + "appid": 596590, + "normalized_name": "linked" + }, + { + "appid": 596620, + "normalized_name": "gas guzzlers combat carnage" + }, + { + "appid": 596630, + "normalized_name": "ricochet kills noir" + }, + { + "appid": 596640, + "normalized_name": "lost in the ocean vr" + }, + { + "appid": 596710, + "normalized_name": "kith tales from the fractured plateaus" + }, + { + "appid": 596730, + "normalized_name": "mountaineer" + }, + { + "appid": 596740, + "normalized_name": "origin space" + }, + { + "appid": 596810, + "normalized_name": "save their souls" + }, + { + "appid": 596890, + "normalized_name": "life of a mobster" + }, + { + "appid": 596910, + "normalized_name": "life of a wizard" + }, + { + "appid": 596940, + "normalized_name": "hide and seek" + }, + { + "appid": 596950, + "normalized_name": "rat simulator" + }, + { + "appid": 596970, + "normalized_name": "sunless skies sovereign" + }, + { + "appid": 596990, + "normalized_name": "mini rollers" + }, + { + "appid": 597020, + "normalized_name": "all star fielding challenge vr" + }, + { + "appid": 597030, + "normalized_name": "aircraft evolution" + }, + { + "appid": 597040, + "normalized_name": "dumbass drivers!" + }, + { + "appid": 597060, + "normalized_name": "numina" + }, + { + "appid": 597090, + "normalized_name": "comit the astrodian 2" + }, + { + "appid": 597120, + "normalized_name": "the filmmaker a text adventure" + }, + { + "appid": 597150, + "normalized_name": "hyper knights" + }, + { + "appid": 597170, + "normalized_name": "clone drone in the danger zone" + }, + { + "appid": 597180, + "normalized_name": "old world" + }, + { + "appid": 597190, + "normalized_name": "lunaform" + }, + { + "appid": 597200, + "normalized_name": "epic little war game" + }, + { + "appid": 597210, + "normalized_name": "bayou island point and click adventure" + }, + { + "appid": 597220, + "normalized_name": "west of loathing" + }, + { + "appid": 597230, + "normalized_name": "shotgun legend" + }, + { + "appid": 597240, + "normalized_name": "johnsgame" + }, + { + "appid": 597280, + "normalized_name": "witch hunters stolen beauty collector's" + }, + { + "appid": 597590, + "normalized_name": "attack of the bugs" + }, + { + "appid": 597640, + "normalized_name": "buccaneers bounty & boom!" + }, + { + "appid": 597670, + "normalized_name": "exterminator" + }, + { + "appid": 597700, + "normalized_name": "ovivo" + }, + { + "appid": 597720, + "normalized_name": "stunt toys" + }, + { + "appid": 597730, + "normalized_name": "dark grim mariupolis" + }, + { + "appid": 597760, + "normalized_name": "yuppie psycho executive" + }, + { + "appid": 597770, + "normalized_name": "vindicta" + }, + { + "appid": 597790, + "normalized_name": "poor mouse" + }, + { + "appid": 597810, + "normalized_name": "shining plume 2" + }, + { + "appid": 597820, + "normalized_name": "biomutant" + }, + { + "appid": 597860, + "normalized_name": "nightmare boy" + }, + { + "appid": 597900, + "normalized_name": "eternum ex" + }, + { + "appid": 597920, + "normalized_name": "survivalizm the animal simulator" + }, + { + "appid": 597970, + "normalized_name": "age of rivals" + }, + { + "appid": 597990, + "normalized_name": "i'm titanium" + }, + { + "appid": 598030, + "normalized_name": "revolt 1917" + }, + { + "appid": 598060, + "normalized_name": "slasher's keep" + }, + { + "appid": 598070, + "normalized_name": "nevrosa prelude" + }, + { + "appid": 598090, + "normalized_name": "absent mind" + }, + { + "appid": 598170, + "normalized_name": "super" + }, + { + "appid": 598230, + "normalized_name": "ascender" + }, + { + "appid": 598240, + "normalized_name": "stupid raft battle simulator" + }, + { + "appid": 598330, + "normalized_name": "simairport" + }, + { + "appid": 598340, + "normalized_name": "lament" + }, + { + "appid": 598350, + "normalized_name": "alien insanity" + }, + { + "appid": 598400, + "normalized_name": "starship commander arcade" + }, + { + "appid": 598430, + "normalized_name": "ergastulum dungeon nightmares iii" + }, + { + "appid": 598440, + "normalized_name": "roots of insanity" + }, + { + "appid": 598450, + "normalized_name": "slice dice & rice" + }, + { + "appid": 598480, + "normalized_name": "world of one" + }, + { + "appid": 598490, + "normalized_name": "healer's quest" + }, + { + "appid": 598500, + "normalized_name": "startide" + }, + { + "appid": 598530, + "normalized_name": "naev" + }, + { + "appid": 598550, + "normalized_name": "huntdown" + }, + { + "appid": 598590, + "normalized_name": "escape 2042 the truth defenders" + }, + { + "appid": 598600, + "normalized_name": "silence in space season one" + }, + { + "appid": 598610, + "normalized_name": "avalon legends solitaire" + }, + { + "appid": 598620, + "normalized_name": "mystery riddles" + }, + { + "appid": 598640, + "normalized_name": "wonder wickets" + }, + { + "appid": 598690, + "normalized_name": "dark legion vr" + }, + { + "appid": 598700, + "normalized_name": "the vagrant" + }, + { + "appid": 598720, + "normalized_name": "country of one" + }, + { + "appid": 598730, + "normalized_name": "shakedown hawaii" + }, + { + "appid": 598740, + "normalized_name": "horizon vanguard" + }, + { + "appid": 598780, + "normalized_name": "boreal blade" + }, + { + "appid": 598810, + "normalized_name": "carcassonne tiles & tactics" + }, + { + "appid": 598840, + "normalized_name": "ninja shodown" + }, + { + "appid": 598880, + "normalized_name": "domiverse" + }, + { + "appid": 598940, + "normalized_name": "doodle mafia" + }, + { + "appid": 598960, + "normalized_name": "mashinky" + }, + { + "appid": 598980, + "normalized_name": "the coin game" + }, + { + "appid": 598990, + "normalized_name": "pizza connection" + }, + { + "appid": 599000, + "normalized_name": "pizza connection 2" + }, + { + "appid": 599040, + "normalized_name": "win that war!" + }, + { + "appid": 599070, + "normalized_name": "umpire simulator" + }, + { + "appid": 599080, + "normalized_name": "the blackout club" + }, + { + "appid": 599140, + "normalized_name": "graveyard keeper" + }, + { + "appid": 599150, + "normalized_name": "prana" + }, + { + "appid": 599160, + "normalized_name": "skeletal dance party" + }, + { + "appid": 599180, + "normalized_name": "mister mart" + }, + { + "appid": 599390, + "normalized_name": "battle for wesnoth" + }, + { + "appid": 599420, + "normalized_name": "the raiders" + }, + { + "appid": 599430, + "normalized_name": "war of castle vr" + }, + { + "appid": 599460, + "normalized_name": "weapon shop fantasy" + }, + { + "appid": 599480, + "normalized_name": "flamel's miracle(弗拉梅尔的奇迹)" + }, + { + "appid": 599490, + "normalized_name": "bounty killer" + }, + { + "appid": 599510, + "normalized_name": "spacedweller" + }, + { + "appid": 599560, + "normalized_name": "ghost files the face of guilt" + }, + { + "appid": 599580, + "normalized_name": "bob & bernard against the nazis" + }, + { + "appid": 599590, + "normalized_name": "volleyball fever" + }, + { + "appid": 599600, + "normalized_name": "constructor classic 1997" + }, + { + "appid": 599610, + "normalized_name": "lost words beyond the page" + }, + { + "appid": 599630, + "normalized_name": "mountain mind headbanger's vr" + }, + { + "appid": 599670, + "normalized_name": "chess3d" + }, + { + "appid": 599750, + "normalized_name": "crisis in the kremlin" + }, + { + "appid": 599780, + "normalized_name": "honeypot espionage" + }, + { + "appid": 599800, + "normalized_name": "easy magic" + }, + { + "appid": 599840, + "normalized_name": "planet rix 13" + }, + { + "appid": 599880, + "normalized_name": "tequila zombies 3" + }, + { + "appid": 599900, + "normalized_name": "tower defense fantasy legends tower game" + }, + { + "appid": 599960, + "normalized_name": "dogolrax" + }, + { + "appid": 600000, + "normalized_name": "the st christopher's school lockdown" + }, + { + "appid": 600080, + "normalized_name": "unto the end" + }, + { + "appid": 600090, + "normalized_name": "the coma recut" + }, + { + "appid": 600100, + "normalized_name": "executive hockey" + }, + { + "appid": 600120, + "normalized_name": "life forge reborn orpg" + }, + { + "appid": 600130, + "normalized_name": "valfaris" + }, + { + "appid": 600140, + "normalized_name": "belko vr an escape room experiment" + }, + { + "appid": 600150, + "normalized_name": "warpaint" + }, + { + "appid": 600170, + "normalized_name": "off the record the art of deception collector's" + }, + { + "appid": 600180, + "normalized_name": "light strike array" + }, + { + "appid": 600190, + "normalized_name": "ski jump vr" + }, + { + "appid": 600200, + "normalized_name": "smintheus" + }, + { + "appid": 600210, + "normalized_name": "robomatch" + }, + { + "appid": 600230, + "normalized_name": "epsilon jump prime" + }, + { + "appid": 600250, + "normalized_name": "art of guile" + }, + { + "appid": 600260, + "normalized_name": "jungle dino vr" + }, + { + "appid": 600290, + "normalized_name": "the forgotten void" + }, + { + "appid": 600310, + "normalized_name": "rogue'n roll" + }, + { + "appid": 600330, + "normalized_name": "contracted" + }, + { + "appid": 600350, + "normalized_name": "vectorwars vr" + }, + { + "appid": 600360, + "normalized_name": "abduction episode 1 her name was sarah" + }, + { + "appid": 600370, + "normalized_name": "paradigm" + }, + { + "appid": 600410, + "normalized_name": "hero e" + }, + { + "appid": 600420, + "normalized_name": "mob rule classic" + }, + { + "appid": 600440, + "normalized_name": "cyber complex" + }, + { + "appid": 600460, + "normalized_name": "dustwind" + }, + { + "appid": 600480, + "normalized_name": "megaquarium" + }, + { + "appid": 600500, + "normalized_name": "laser strikers" + }, + { + "appid": 600510, + "normalized_name": "ginsha" + }, + { + "appid": 600520, + "normalized_name": "cryogear" + }, + { + "appid": 600530, + "normalized_name": "kautic the bald wizard" + }, + { + "appid": 600550, + "normalized_name": "save our souls episode i" + }, + { + "appid": 600580, + "normalized_name": "dark mechanism virtual reality" + }, + { + "appid": 600600, + "normalized_name": "makethatmoney" + }, + { + "appid": 600610, + "normalized_name": "the hand of merlin" + }, + { + "appid": 600630, + "normalized_name": "spaceship looter" + }, + { + "appid": 600640, + "normalized_name": "trapped summoner" + }, + { + "appid": 600650, + "normalized_name": "ok bob" + }, + { + "appid": 600660, + "normalized_name": "kimmy" + }, + { + "appid": 600670, + "normalized_name": "descending" + }, + { + "appid": 600690, + "normalized_name": "troid blaster" + }, + { + "appid": 600720, + "normalized_name": "trackmania² lagoon" + }, + { + "appid": 600740, + "normalized_name": "land doctrine" + }, + { + "appid": 600750, + "normalized_name": "star trek timelines" + }, + { + "appid": 600980, + "normalized_name": "master shot vr" + }, + { + "appid": 600990, + "normalized_name": "the gardens between" + }, + { + "appid": 601010, + "normalized_name": "hotel anatolia" + }, + { + "appid": 601020, + "normalized_name": "seed of the arcane episode 1" + }, + { + "appid": 601050, + "normalized_name": "attack on titan 2 a.o.t.2" + }, + { + "appid": 601080, + "normalized_name": "trance vr" + }, + { + "appid": 601110, + "normalized_name": "twin roads" + }, + { + "appid": 601130, + "normalized_name": "spark" + }, + { + "appid": 601150, + "normalized_name": "devil may cry 5" + }, + { + "appid": 601170, + "normalized_name": "zil truck rallycross" + }, + { + "appid": 601180, + "normalized_name": "doug and lily" + }, + { + "appid": 601200, + "normalized_name": "pix" + }, + { + "appid": 601210, + "normalized_name": "text adventure dungeon empire" + }, + { + "appid": 601220, + "normalized_name": "zup! f" + }, + { + "appid": 601240, + "normalized_name": "ripple" + }, + { + "appid": 601250, + "normalized_name": "micronomicon heroes" + }, + { + "appid": 601330, + "normalized_name": "eye of odin" + }, + { + "appid": 601380, + "normalized_name": "the last one" + }, + { + "appid": 601430, + "normalized_name": "the evil within 2" + }, + { + "appid": 601490, + "normalized_name": "passengers awakening vr experience" + }, + { + "appid": 601500, + "normalized_name": "lost in nature" + }, + { + "appid": 601510, + "normalized_name": "yu gi oh! duel links" + }, + { + "appid": 601520, + "normalized_name": "sirius age of the free agents" + }, + { + "appid": 601530, + "normalized_name": "darkarta a broken heart's quest collector's" + }, + { + "appid": 601540, + "normalized_name": "veil of crows" + }, + { + "appid": 601550, + "normalized_name": "don't look back" + }, + { + "appid": 601570, + "normalized_name": "fix me fix you" + }, + { + "appid": 601590, + "normalized_name": "battletrucks" + }, + { + "appid": 601640, + "normalized_name": "the guard of dungeon" + }, + { + "appid": 601700, + "normalized_name": "jetbros" + }, + { + "appid": 601750, + "normalized_name": "range day vr" + }, + { + "appid": 601760, + "normalized_name": "vr audio visualizer" + }, + { + "appid": 601790, + "normalized_name": "eternal lore" + }, + { + "appid": 601810, + "normalized_name": "spark the electric jester" + }, + { + "appid": 601840, + "normalized_name": "griftlands" + }, + { + "appid": 601870, + "normalized_name": "biotoxin the dark days" + }, + { + "appid": 601880, + "normalized_name": "boostbots vr" + }, + { + "appid": 601920, + "normalized_name": "adjacency" + }, + { + "appid": 601930, + "normalized_name": "trianguluv" + }, + { + "appid": 601940, + "normalized_name": "fancy fishing vr" + }, + { + "appid": 601990, + "normalized_name": "perspectives aleppo helsinki" + }, + { + "appid": 602010, + "normalized_name": "plank not included" + }, + { + "appid": 602040, + "normalized_name": "rota craze" + }, + { + "appid": 602070, + "normalized_name": "plasma puncher" + }, + { + "appid": 602080, + "normalized_name": "solaroids" + }, + { + "appid": 602120, + "normalized_name": "molemen must die!" + }, + { + "appid": 602130, + "normalized_name": "violent killer vr" + }, + { + "appid": 602140, + "normalized_name": "the uncertain vr experience" + }, + { + "appid": 602150, + "normalized_name": "desert battle" + }, + { + "appid": 602160, + "normalized_name": "alchemist defender vr" + }, + { + "appid": 602180, + "normalized_name": "free towns" + }, + { + "appid": 602200, + "normalized_name": "dreamlike worlds" + }, + { + "appid": 602240, + "normalized_name": "metacell genesis arcade" + }, + { + "appid": 602250, + "normalized_name": "asylopole" + }, + { + "appid": 602270, + "normalized_name": "alienautics" + }, + { + "appid": 602300, + "normalized_name": "alter army" + }, + { + "appid": 602320, + "normalized_name": "train valley 2" + }, + { + "appid": 602420, + "normalized_name": "su and the quest for meaning" + }, + { + "appid": 602430, + "normalized_name": "yono and the celestial elephants" + }, + { + "appid": 602480, + "normalized_name": "kartong death by cardboard!" + }, + { + "appid": 602510, + "normalized_name": "gettysburg the tide turns" + }, + { + "appid": 602520, + "normalized_name": "nekopara vol. 3" + }, + { + "appid": 602540, + "normalized_name": "the ancient remains" + }, + { + "appid": 602550, + "normalized_name": "space conquest" + }, + { + "appid": 602590, + "normalized_name": "saucer like" + }, + { + "appid": 602600, + "normalized_name": "visions of zosimos" + }, + { + "appid": 602630, + "normalized_name": "diorama worlds" + }, + { + "appid": 602660, + "normalized_name": "suspended workshops" + }, + { + "appid": 602670, + "normalized_name": "方块传说" + }, + { + "appid": 602700, + "normalized_name": "chippy" + }, + { + "appid": 602770, + "normalized_name": "clatter" + }, + { + "appid": 602790, + "normalized_name": "fated souls 3" + }, + { + "appid": 602860, + "normalized_name": "ironclads 2 boshin war" + }, + { + "appid": 602880, + "normalized_name": "powernaut vangardt" + }, + { + "appid": 602890, + "normalized_name": "hack_me 2" + }, + { + "appid": 602900, + "normalized_name": "hack_me 3" + }, + { + "appid": 602910, + "normalized_name": "one wish" + }, + { + "appid": 602920, + "normalized_name": "sketch! run!" + }, + { + "appid": 602930, + "normalized_name": "wordlase" + }, + { + "appid": 602960, + "normalized_name": "barotrauma" + }, + { + "appid": 602970, + "normalized_name": "stunt island" + }, + { + "appid": 603000, + "normalized_name": "hillbilly apocalypse" + }, + { + "appid": 603010, + "normalized_name": "chill" + }, + { + "appid": 603020, + "normalized_name": "skautfold usurper" + }, + { + "appid": 603060, + "normalized_name": "tarim guardians" + }, + { + "appid": 603090, + "normalized_name": "dream stone" + }, + { + "appid": 603100, + "normalized_name": "atomine" + }, + { + "appid": 603110, + "normalized_name": "grizzland" + }, + { + "appid": 603120, + "normalized_name": "happy campers" + }, + { + "appid": 603130, + "normalized_name": "masked shooters" + }, + { + "appid": 603140, + "normalized_name": "connected hearts visual novel" + }, + { + "appid": 603150, + "normalized_name": "defence to death" + }, + { + "appid": 603190, + "normalized_name": "tank destroyer" + }, + { + "appid": 603210, + "normalized_name": "valkyries" + }, + { + "appid": 603220, + "normalized_name": "rotii" + }, + { + "appid": 603230, + "normalized_name": "the wendigo" + }, + { + "appid": 603240, + "normalized_name": "shadow of conquest" + }, + { + "appid": 603250, + "normalized_name": "my own little planet" + }, + { + "appid": 603260, + "normalized_name": "the cat games" + }, + { + "appid": 603280, + "normalized_name": "tarotica voo doo" + }, + { + "appid": 603320, + "normalized_name": "age of defense" + }, + { + "appid": 603330, + "normalized_name": "blasted road terror" + }, + { + "appid": 603340, + "normalized_name": "demon blade vr" + }, + { + "appid": 603350, + "normalized_name": "don't cut your hand" + }, + { + "appid": 603360, + "normalized_name": "cryptomoneya" + }, + { + "appid": 603380, + "normalized_name": "dragon essence color my world" + }, + { + "appid": 603390, + "normalized_name": "stone story rpg" + }, + { + "appid": 603400, + "normalized_name": "fox n forests" + }, + { + "appid": 603420, + "normalized_name": "caveman warriors" + }, + { + "appid": 603460, + "normalized_name": "king and assassins" + }, + { + "appid": 603490, + "normalized_name": "star hunter vr" + }, + { + "appid": 603530, + "normalized_name": "a robot named fight!" + }, + { + "appid": 603550, + "normalized_name": "schlag den star das spiel" + }, + { + "appid": 603560, + "normalized_name": "one night in the house" + }, + { + "appid": 603610, + "normalized_name": "aegis 2186" + }, + { + "appid": 603630, + "normalized_name": "rubber ball vr" + }, + { + "appid": 603660, + "normalized_name": "women of xal" + }, + { + "appid": 603680, + "normalized_name": "one helluva day" + }, + { + "appid": 603700, + "normalized_name": "the low road" + }, + { + "appid": 603730, + "normalized_name": "something to do with love" + }, + { + "appid": 603750, + "normalized_name": "arcane raise" + }, + { + "appid": 603790, + "normalized_name": "ninja avenger dragon blade" + }, + { + "appid": 603800, + "normalized_name": "rethink" + }, + { + "appid": 603810, + "normalized_name": "a girls fabric face" + }, + { + "appid": 603840, + "normalized_name": "randall" + }, + { + "appid": 603850, + "normalized_name": "age of history ii" + }, + { + "appid": 603870, + "normalized_name": "a tale of two kingdoms" + }, + { + "appid": 603880, + "normalized_name": "sounds of her love" + }, + { + "appid": 603910, + "normalized_name": "meccha zombies" + }, + { + "appid": 603930, + "normalized_name": "battle princess madelyn" + }, + { + "appid": 603940, + "normalized_name": "pixel shopkeeper" + }, + { + "appid": 603960, + "normalized_name": "star of providence" + }, + { + "appid": 603970, + "normalized_name": "shoot loop vr" + }, + { + "appid": 603990, + "normalized_name": "memory eater" + }, + { + "appid": 604000, + "normalized_name": "like clay" + }, + { + "appid": 604010, + "normalized_name": "chimpology" + }, + { + "appid": 604030, + "normalized_name": "warped reality" + }, + { + "appid": 604040, + "normalized_name": "legion tale" + }, + { + "appid": 604060, + "normalized_name": "goblin harvest the mighty quest" + }, + { + "appid": 604140, + "normalized_name": "broccoli bob" + }, + { + "appid": 604150, + "normalized_name": "bomb royale" + }, + { + "appid": 604170, + "normalized_name": "libra of the vampire princess" + }, + { + "appid": 604230, + "normalized_name": "unlasting horror" + }, + { + "appid": 604240, + "normalized_name": "shotgun farmers" + }, + { + "appid": 604300, + "normalized_name": "show must go on" + }, + { + "appid": 604330, + "normalized_name": "the crown of leaves" + }, + { + "appid": 604340, + "normalized_name": "web of deceit black widow collector's" + }, + { + "appid": 604450, + "normalized_name": "another adventure" + }, + { + "appid": 604490, + "normalized_name": "running through russia" + }, + { + "appid": 604500, + "normalized_name": "tank force" + }, + { + "appid": 604510, + "normalized_name": "empires in ruins" + }, + { + "appid": 604530, + "normalized_name": "embodyme beta" + }, + { + "appid": 604540, + "normalized_name": "empire of sin" + }, + { + "appid": 604590, + "normalized_name": "build & battle" + }, + { + "appid": 604640, + "normalized_name": "outer rim" + }, + { + "appid": 604740, + "normalized_name": "danger zone" + }, + { + "appid": 604770, + "normalized_name": "dark prospect" + }, + { + "appid": 604780, + "normalized_name": "amaze" + }, + { + "appid": 604830, + "normalized_name": "all alone vr" + }, + { + "appid": 604920, + "normalized_name": "dark blood chronicles" + }, + { + "appid": 604950, + "normalized_name": "rgbverse" + }, + { + "appid": 604980, + "normalized_name": "travel riddles trip to india" + }, + { + "appid": 604990, + "normalized_name": "stratside" + }, + { + "appid": 605040, + "normalized_name": "zarya and the cursed skull" + }, + { + "appid": 605060, + "normalized_name": "just beneath the skin 2d" + }, + { + "appid": 605100, + "normalized_name": "renzo racer" + }, + { + "appid": 605110, + "normalized_name": "vr chair games" + }, + { + "appid": 605140, + "normalized_name": "kings of lorn the fall of ebris" + }, + { + "appid": 605160, + "normalized_name": "perfect plan" + }, + { + "appid": 605180, + "normalized_name": "theory of fear" + }, + { + "appid": 605190, + "normalized_name": "getaway island" + }, + { + "appid": 605200, + "normalized_name": "kursk battle at prochorovka" + }, + { + "appid": 605210, + "normalized_name": "the last tree" + }, + { + "appid": 605230, + "normalized_name": "grey hack" + }, + { + "appid": 605250, + "normalized_name": "cluckles' adventure" + }, + { + "appid": 605310, + "normalized_name": "unearthing mars vr" + }, + { + "appid": 605410, + "normalized_name": "fear the dead" + }, + { + "appid": 605450, + "normalized_name": "in death" + }, + { + "appid": 605490, + "normalized_name": "one hit ko" + }, + { + "appid": 605610, + "normalized_name": "dawn" + }, + { + "appid": 605740, + "normalized_name": "flashing lights police firefighting emergency services (ems) simulator" + }, + { + "appid": 605770, + "normalized_name": "luna" + }, + { + "appid": 605790, + "normalized_name": "queen's tales the beast and the nightingale collector's" + }, + { + "appid": 605800, + "normalized_name": "skelattack" + }, + { + "appid": 605830, + "normalized_name": "organ quarter" + }, + { + "appid": 605850, + "normalized_name": "pinball inside a vr arcade game" + }, + { + "appid": 605860, + "normalized_name": "paper toss vr" + }, + { + "appid": 605920, + "normalized_name": "volted" + }, + { + "appid": 605980, + "normalized_name": "starlightriders hyperjump" + }, + { + "appid": 605990, + "normalized_name": "heart's medicine hospital heat" + }, + { + "appid": 606000, + "normalized_name": "die for valhalla!" + }, + { + "appid": 606030, + "normalized_name": "meganoid" + }, + { + "appid": 606060, + "normalized_name": "dark tower" + }, + { + "appid": 606150, + "normalized_name": "moonlighter" + }, + { + "appid": 606160, + "normalized_name": "routine" + }, + { + "appid": 606230, + "normalized_name": "thea 2 the shattering" + }, + { + "appid": 606280, + "normalized_name": "darksiders iii" + }, + { + "appid": 606300, + "normalized_name": "divine ascent" + }, + { + "appid": 606330, + "normalized_name": "shadows 2 perfidia" + }, + { + "appid": 606350, + "normalized_name": "puttyface" + }, + { + "appid": 606360, + "normalized_name": "mech skeleton" + }, + { + "appid": 606370, + "normalized_name": "romancing saga 2" + }, + { + "appid": 606480, + "normalized_name": "flood of light" + }, + { + "appid": 606490, + "normalized_name": "duck life 6 space" + }, + { + "appid": 606500, + "normalized_name": "hellsign" + }, + { + "appid": 606510, + "normalized_name": "grisaia phantom trigger vol.1" + }, + { + "appid": 606520, + "normalized_name": "grisaia phantom trigger vol.2" + }, + { + "appid": 606670, + "normalized_name": "crowd smashers" + }, + { + "appid": 606680, + "normalized_name": "silver" + }, + { + "appid": 606690, + "normalized_name": "ecchi sketch draw cute girls every day!" + }, + { + "appid": 606710, + "normalized_name": "sphinx and the cursed mummy" + }, + { + "appid": 606730, + "normalized_name": "sine mora ex" + }, + { + "appid": 606790, + "normalized_name": "battle bolts" + }, + { + "appid": 606800, + "normalized_name": "startup company" + }, + { + "appid": 606830, + "normalized_name": "chasing legends" + }, + { + "appid": 606850, + "normalized_name": "vr batting" + }, + { + "appid": 606860, + "normalized_name": "nephise" + }, + { + "appid": 606870, + "normalized_name": "metamorph dungeon creatures" + }, + { + "appid": 606880, + "normalized_name": "greedfall" + }, + { + "appid": 606890, + "normalized_name": "masters of anima" + }, + { + "appid": 606920, + "normalized_name": "exa the infinite instrument" + }, + { + "appid": 606940, + "normalized_name": "cyborg tower defense" + }, + { + "appid": 606950, + "normalized_name": "army general" + }, + { + "appid": 606960, + "normalized_name": "crimson metal classic 1999" + }, + { + "appid": 606980, + "normalized_name": "potentia" + }, + { + "appid": 607020, + "normalized_name": "last heroes 4" + }, + { + "appid": 607030, + "normalized_name": "jade's journey 2" + }, + { + "appid": 607040, + "normalized_name": "grimoire chronicles" + }, + { + "appid": 607050, + "normalized_name": "wargroove" + }, + { + "appid": 607080, + "normalized_name": "psychonauts 2" + }, + { + "appid": 607120, + "normalized_name": "police quest swat 2" + }, + { + "appid": 607160, + "normalized_name": "luxin time" + }, + { + "appid": 607190, + "normalized_name": "dark frontier" + }, + { + "appid": 607210, + "normalized_name": "possessed" + }, + { + "appid": 607230, + "normalized_name": "clockwizzze" + }, + { + "appid": 607260, + "normalized_name": "mcosu" + }, + { + "appid": 607330, + "normalized_name": "rangi" + }, + { + "appid": 607350, + "normalized_name": "battlestage" + }, + { + "appid": 607360, + "normalized_name": "cog (center of gravity)" + }, + { + "appid": 607400, + "normalized_name": "necrosphere" + }, + { + "appid": 607440, + "normalized_name": "escape vr" + }, + { + "appid": 607460, + "normalized_name": "battle snails" + }, + { + "appid": 607490, + "normalized_name": "haunted halloween '86 (the curse of possum hollow)" + }, + { + "appid": 607590, + "normalized_name": "earthquake simulator vr" + }, + { + "appid": 607660, + "normalized_name": "21 days" + }, + { + "appid": 607670, + "normalized_name": "puzzle guardians" + }, + { + "appid": 607680, + "normalized_name": "popap" + }, + { + "appid": 607760, + "normalized_name": "cyberdrifter" + }, + { + "appid": 607770, + "normalized_name": "moonatees" + }, + { + "appid": 607780, + "normalized_name": "toymaker" + }, + { + "appid": 607820, + "normalized_name": "infinite adventures" + }, + { + "appid": 607860, + "normalized_name": "kira" + }, + { + "appid": 607880, + "normalized_name": "accel world vs. sword art online deluxe" + }, + { + "appid": 607890, + "normalized_name": "sword art online hollow realization deluxe" + }, + { + "appid": 608110, + "normalized_name": "null vector" + }, + { + "appid": 608120, + "normalized_name": "afterburn" + }, + { + "appid": 608190, + "normalized_name": "frontier vr" + }, + { + "appid": 608370, + "normalized_name": "drums hero" + }, + { + "appid": 608380, + "normalized_name": "sfera" + }, + { + "appid": 608440, + "normalized_name": "volatile triangle" + }, + { + "appid": 608510, + "normalized_name": "you must be 18 or older to enter" + }, + { + "appid": 608530, + "normalized_name": "tartarus" + }, + { + "appid": 608540, + "normalized_name": "blastercell" + }, + { + "appid": 608610, + "normalized_name": "into the ice" + }, + { + "appid": 608630, + "normalized_name": "pixel zumbi" + }, + { + "appid": 608660, + "normalized_name": "psebay" + }, + { + "appid": 608670, + "normalized_name": "miracle mia" + }, + { + "appid": 608760, + "normalized_name": "doodle devil" + }, + { + "appid": 608800, + "normalized_name": "guns of icarus alliance" + }, + { + "appid": 608870, + "normalized_name": "phantasma vr director's cut" + }, + { + "appid": 608990, + "normalized_name": "the archotek project" + }, + { + "appid": 609010, + "normalized_name": "mech league boxing" + }, + { + "appid": 609100, + "normalized_name": "gold rush! 2" + }, + { + "appid": 609110, + "normalized_name": "blazing chrome" + }, + { + "appid": 609150, + "normalized_name": "star ocean the last hope 4k & full hd remaster" + }, + { + "appid": 609170, + "normalized_name": "drummer talent vr" + }, + { + "appid": 609320, + "normalized_name": "far lone sails" + }, + { + "appid": 609340, + "normalized_name": "twilight phenomena the lodgers of house 13 collector's" + }, + { + "appid": 609360, + "normalized_name": "gravity garden" + }, + { + "appid": 609400, + "normalized_name": "city rush" + }, + { + "appid": 609410, + "normalized_name": "iron tides" + }, + { + "appid": 609420, + "normalized_name": "never give up" + }, + { + "appid": 609490, + "normalized_name": "minit" + }, + { + "appid": 609720, + "normalized_name": "tyr chains of valhalla" + }, + { + "appid": 609760, + "normalized_name": "the eagle's heir" + }, + { + "appid": 609850, + "normalized_name": "slinger vr" + }, + { + "appid": 609920, + "normalized_name": "hotshot racing" + }, + { + "appid": 609940, + "normalized_name": "krosmaga" + }, + { + "appid": 610080, + "normalized_name": "realm grinder" + }, + { + "appid": 610090, + "normalized_name": "gnomelings migration" + }, + { + "appid": 610110, + "normalized_name": "love story letters from the past" + }, + { + "appid": 610120, + "normalized_name": "little kite" + }, + { + "appid": 610130, + "normalized_name": "ultragoodness" + }, + { + "appid": 610180, + "normalized_name": "the jackbox party pack 4" + }, + { + "appid": 610190, + "normalized_name": "warriors all stars" + }, + { + "appid": 610210, + "normalized_name": "planetes" + }, + { + "appid": 610250, + "normalized_name": "glitch's trip" + }, + { + "appid": 610260, + "normalized_name": "american vr coasters" + }, + { + "appid": 610310, + "normalized_name": "star story the horizon escape" + }, + { + "appid": 610350, + "normalized_name": "poker show vr" + }, + { + "appid": 610360, + "normalized_name": "zup! zero" + }, + { + "appid": 610370, + "normalized_name": "desperados iii" + }, + { + "appid": 610380, + "normalized_name": "ratty catty" + }, + { + "appid": 610410, + "normalized_name": "pawarumi" + }, + { + "appid": 610460, + "normalized_name": "rise of balloons" + }, + { + "appid": 610500, + "normalized_name": "willy nilly knight" + }, + { + "appid": 610550, + "normalized_name": "hidden expedition the pearl of discord collector's" + }, + { + "appid": 610560, + "normalized_name": "tales of the lumminai" + }, + { + "appid": 610570, + "normalized_name": "paradox soul" + }, + { + "appid": 610610, + "normalized_name": "pacaplus" + }, + { + "appid": 610620, + "normalized_name": "too loud chapter 1" + }, + { + "appid": 610660, + "normalized_name": "russian roads" + }, + { + "appid": 610670, + "normalized_name": "alchemyland" + }, + { + "appid": 610680, + "normalized_name": "starway fleet" + }, + { + "appid": 610720, + "normalized_name": "mechatronika" + }, + { + "appid": 610730, + "normalized_name": "the chosen warriors" + }, + { + "appid": 610740, + "normalized_name": "supercluster void" + }, + { + "appid": 610750, + "normalized_name": "games&girls" + }, + { + "appid": 610780, + "normalized_name": "crazy buggy racing" + }, + { + "appid": 610810, + "normalized_name": "your friend hana" + }, + { + "appid": 610840, + "normalized_name": "jasem just another shooter with electronic music" + }, + { + "appid": 610860, + "normalized_name": "shogo mobile armor division" + }, + { + "appid": 610900, + "normalized_name": "sumatra fate of yandi" + }, + { + "appid": 610940, + "normalized_name": "istorm" + }, + { + "appid": 610960, + "normalized_name": "红石遗迹 red obsidian remnant" + }, + { + "appid": 610980, + "normalized_name": "the midnight sanctuary" + }, + { + "appid": 611020, + "normalized_name": "citybattle | virtual earth" + }, + { + "appid": 611040, + "normalized_name": "tube tycoon" + }, + { + "appid": 611050, + "normalized_name": "moriarty endgame vr" + }, + { + "appid": 611060, + "normalized_name": "echoplex" + }, + { + "appid": 611080, + "normalized_name": "gappo's legacy vr" + }, + { + "appid": 611090, + "normalized_name": "boofle's home" + }, + { + "appid": 611120, + "normalized_name": "ikea vr pancake kitchen" + }, + { + "appid": 611140, + "normalized_name": "dark passenger" + }, + { + "appid": 611150, + "normalized_name": "your sisters" + }, + { + "appid": 611160, + "normalized_name": "karnage chronicles" + }, + { + "appid": 611180, + "normalized_name": "super street the game" + }, + { + "appid": 611190, + "normalized_name": "rogue shift" + }, + { + "appid": 611200, + "normalized_name": "zeppelin vr" + }, + { + "appid": 611220, + "normalized_name": "crimson hills" + }, + { + "appid": 611230, + "normalized_name": "heathen the sons of the law" + }, + { + "appid": 611300, + "normalized_name": "task force" + }, + { + "appid": 611350, + "normalized_name": "evil tag" + }, + { + "appid": 611390, + "normalized_name": "anicon animal complex sheep's path" + }, + { + "appid": 611500, + "normalized_name": "quake champions" + }, + { + "appid": 611550, + "normalized_name": "underground keeper 2" + }, + { + "appid": 611620, + "normalized_name": "thenightfall" + }, + { + "appid": 611630, + "normalized_name": "grave chase" + }, + { + "appid": 611660, + "normalized_name": "fallout 4 vr" + }, + { + "appid": 611670, + "normalized_name": "the elder scrolls v skyrim vr" + }, + { + "appid": 611690, + "normalized_name": "invicta beam" + }, + { + "appid": 611710, + "normalized_name": "kaiju big battel fighto fantasy" + }, + { + "appid": 611720, + "normalized_name": "practisim vr" + }, + { + "appid": 611730, + "normalized_name": "galactic feud" + }, + { + "appid": 611750, + "normalized_name": "welcome to hanwell" + }, + { + "appid": 611760, + "normalized_name": "don't escape 4 days to survive" + }, + { + "appid": 611770, + "normalized_name": "void source" + }, + { + "appid": 611790, + "normalized_name": "house party" + }, + { + "appid": 611810, + "normalized_name": "the last hunt" + }, + { + "appid": 611820, + "normalized_name": "xenosis alien infection" + }, + { + "appid": 611830, + "normalized_name": "park bound" + }, + { + "appid": 611850, + "normalized_name": "tragedy of prince rupert" + }, + { + "appid": 611860, + "normalized_name": "aborigenus" + }, + { + "appid": 611960, + "normalized_name": "pilam sky" + }, + { + "appid": 611970, + "normalized_name": "timetodie" + }, + { + "appid": 611980, + "normalized_name": "oik 2" + }, + { + "appid": 612010, + "normalized_name": "duel vr" + }, + { + "appid": 612020, + "normalized_name": "zombidle remonstered" + }, + { + "appid": 612030, + "normalized_name": "harvest simulator vr" + }, + { + "appid": 612040, + "normalized_name": "duel on board" + }, + { + "appid": 612050, + "normalized_name": "vriq" + }, + { + "appid": 612060, + "normalized_name": "indie dream" + }, + { + "appid": 612100, + "normalized_name": "these nights in cairo" + }, + { + "appid": 612110, + "normalized_name": "sweet fantasy" + }, + { + "appid": 612120, + "normalized_name": "darwin's bots episode 1" + }, + { + "appid": 612130, + "normalized_name": "linkage" + }, + { + "appid": 612140, + "normalized_name": "weebish mines" + }, + { + "appid": 612150, + "normalized_name": "conran the dinky raccoon" + }, + { + "appid": 612160, + "normalized_name": "splinter zone" + }, + { + "appid": 612170, + "normalized_name": "one eyed kutkh" + }, + { + "appid": 612180, + "normalized_name": "see light" + }, + { + "appid": 612190, + "normalized_name": "fastigium dead end" + }, + { + "appid": 612220, + "normalized_name": "chaos edge" + }, + { + "appid": 612230, + "normalized_name": "modern assault tanks" + }, + { + "appid": 612250, + "normalized_name": "eastwood vr" + }, + { + "appid": 612300, + "normalized_name": "sudden strike gold" + }, + { + "appid": 612310, + "normalized_name": "gorb" + }, + { + "appid": 612370, + "normalized_name": "pako 2" + }, + { + "appid": 612380, + "normalized_name": "cryptocracy" + }, + { + "appid": 612390, + "normalized_name": "dandara trials of fear" + }, + { + "appid": 612400, + "normalized_name": "the last night" + }, + { + "appid": 612440, + "normalized_name": "the cable center virtual archive" + }, + { + "appid": 612470, + "normalized_name": "bio inc. redemption" + }, + { + "appid": 612510, + "normalized_name": "the far frontier" + }, + { + "appid": 612520, + "normalized_name": "sudden strike 2 gold" + }, + { + "appid": 612540, + "normalized_name": "sudden strike 3" + }, + { + "appid": 612570, + "normalized_name": "fort triumph" + }, + { + "appid": 612590, + "normalized_name": "mouse playhouse" + }, + { + "appid": 612600, + "normalized_name": "drone fighters" + }, + { + "appid": 612610, + "normalized_name": "bombinator" + }, + { + "appid": 612620, + "normalized_name": "detective butler maiden voyage murder" + }, + { + "appid": 612640, + "normalized_name": "dunk lords" + }, + { + "appid": 612660, + "normalized_name": "just us" + }, + { + "appid": 612720, + "normalized_name": "saelig" + }, + { + "appid": 612740, + "normalized_name": "bokida heartfelt reunion" + }, + { + "appid": 612750, + "normalized_name": "scorb vr" + }, + { + "appid": 612790, + "normalized_name": "infiniti vr" + }, + { + "appid": 612820, + "normalized_name": "fallen legion rise to glory" + }, + { + "appid": 612840, + "normalized_name": "boxplosion" + }, + { + "appid": 612880, + "normalized_name": "wolfenstein ii the new colossus" + }, + { + "appid": 612890, + "normalized_name": "link twin" + }, + { + "appid": 612930, + "normalized_name": "fight of gods" + }, + { + "appid": 613010, + "normalized_name": "secret in story" + }, + { + "appid": 613020, + "normalized_name": "gem hunter" + }, + { + "appid": 613040, + "normalized_name": "a lost room" + }, + { + "appid": 613050, + "normalized_name": "laser grid" + }, + { + "appid": 613100, + "normalized_name": "house flipper" + }, + { + "appid": 613120, + "normalized_name": "tank battle east front" + }, + { + "appid": 613130, + "normalized_name": "mega overload vr" + }, + { + "appid": 613190, + "normalized_name": "unworthy" + }, + { + "appid": 613200, + "normalized_name": "dead days" + }, + { + "appid": 613210, + "normalized_name": "blobcat" + }, + { + "appid": 613240, + "normalized_name": "stonekeep" + }, + { + "appid": 613270, + "normalized_name": "dinosis survival" + }, + { + "appid": 613330, + "normalized_name": "blackjack bailey vr" + }, + { + "appid": 613350, + "normalized_name": "punished talents seven muses collector's" + }, + { + "appid": 613370, + "normalized_name": "upside down dimensions" + }, + { + "appid": 613390, + "normalized_name": "dungeons of chaos" + }, + { + "appid": 613400, + "normalized_name": "sakeretsu" + }, + { + "appid": 613410, + "normalized_name": "delphinia chronicle" + }, + { + "appid": 613420, + "normalized_name": "boros" + }, + { + "appid": 613450, + "normalized_name": "please knock on my door" + }, + { + "appid": 613470, + "normalized_name": "the inner world the last wind monk" + }, + { + "appid": 613510, + "normalized_name": "real stories from the grave maleficium" + }, + { + "appid": 613590, + "normalized_name": "dungeon of zaar open beta" + }, + { + "appid": 613610, + "normalized_name": "silver island" + }, + { + "appid": 613620, + "normalized_name": "hoverloop" + }, + { + "appid": 613670, + "normalized_name": "the chronicles of dragon wing reborn" + }, + { + "appid": 613730, + "normalized_name": "need for drink" + }, + { + "appid": 613790, + "normalized_name": "red cube vr" + }, + { + "appid": 613830, + "normalized_name": "chrono trigger" + }, + { + "appid": 613850, + "normalized_name": "radiant crusade" + }, + { + "appid": 613860, + "normalized_name": "tank on tank digital west front" + }, + { + "appid": 613880, + "normalized_name": "zoo tycoon animal collection" + }, + { + "appid": 613900, + "normalized_name": "museum of other realities" + }, + { + "appid": 613970, + "normalized_name": "bravery rise of the last hero" + }, + { + "appid": 613980, + "normalized_name": "top secret" + }, + { + "appid": 614030, + "normalized_name": "rhythm rush!" + }, + { + "appid": 614050, + "normalized_name": "clumsy knight 2" + }, + { + "appid": 614090, + "normalized_name": "deadbeat heroes" + }, + { + "appid": 614140, + "normalized_name": "illusoria" + }, + { + "appid": 614150, + "normalized_name": "train harder" + }, + { + "appid": 614160, + "normalized_name": "bug invaders" + }, + { + "appid": 614250, + "normalized_name": "carrier" + }, + { + "appid": 614260, + "normalized_name": "gates of nowhere" + }, + { + "appid": 614380, + "normalized_name": "haunted manor lord of mirrors collector's" + }, + { + "appid": 614450, + "normalized_name": "bellatia" + }, + { + "appid": 614460, + "normalized_name": "amber tail adventure" + }, + { + "appid": 614530, + "normalized_name": "garden tale" + }, + { + "appid": 614560, + "normalized_name": "battleship bishojo" + }, + { + "appid": 614570, + "normalized_name": "dishonored death of the outsider" + }, + { + "appid": 614630, + "normalized_name": "tiny rails" + }, + { + "appid": 614650, + "normalized_name": "midnight calling anabel collector's" + }, + { + "appid": 614660, + "normalized_name": "magic technology" + }, + { + "appid": 614700, + "normalized_name": "nightmare grotto" + }, + { + "appid": 614730, + "normalized_name": "spy dna" + }, + { + "appid": 614770, + "normalized_name": "beachhead desert war" + }, + { + "appid": 614830, + "normalized_name": "vivespray 2" + }, + { + "appid": 614850, + "normalized_name": "power fist vr" + }, + { + "appid": 614880, + "normalized_name": "battle for enlor" + }, + { + "appid": 614890, + "normalized_name": "cuit" + }, + { + "appid": 614900, + "normalized_name": "devade" + }, + { + "appid": 614910, + "normalized_name": "#monstercakes" + }, + { + "appid": 614950, + "normalized_name": "shootout on cash island" + }, + { + "appid": 614960, + "normalized_name": "neonomicon" + }, + { + "appid": 614970, + "normalized_name": "qbike cyberpunk motorcycles" + }, + { + "appid": 615010, + "normalized_name": "runic rampage action rpg" + }, + { + "appid": 615020, + "normalized_name": "king of the world" + }, + { + "appid": 615070, + "normalized_name": "dealey plaza paintball" + }, + { + "appid": 615080, + "normalized_name": "runaway train" + }, + { + "appid": 615120, + "normalized_name": "compound" + }, + { + "appid": 615150, + "normalized_name": "twist of destiny" + }, + { + "appid": 615160, + "normalized_name": "the adventures of alvis" + }, + { + "appid": 615180, + "normalized_name": "firewood" + }, + { + "appid": 615250, + "normalized_name": "m.a.x. mechanized assault & exploration" + }, + { + "appid": 615270, + "normalized_name": "star rage vr" + }, + { + "appid": 615330, + "normalized_name": "happy penguin vr" + }, + { + "appid": 615340, + "normalized_name": "mystic journey tri peaks solitaire" + }, + { + "appid": 615350, + "normalized_name": "scarlett mysteries cursed child" + }, + { + "appid": 615390, + "normalized_name": "encounter of galaxies" + }, + { + "appid": 615400, + "normalized_name": "make it rain love of money" + }, + { + "appid": 615460, + "normalized_name": "bitcoin vr" + }, + { + "appid": 615490, + "normalized_name": "i'm awesome" + }, + { + "appid": 615530, + "normalized_name": "love money rock'n'roll" + }, + { + "appid": 615550, + "normalized_name": "stratobash" + }, + { + "appid": 615590, + "normalized_name": "solaright" + }, + { + "appid": 615610, + "normalized_name": "orbt xl" + }, + { + "appid": 615630, + "normalized_name": "the sniper vr" + }, + { + "appid": 615650, + "normalized_name": "the professor presents #gothandles" + }, + { + "appid": 615670, + "normalized_name": "solitune" + }, + { + "appid": 615680, + "normalized_name": "vagrant hearts zero" + }, + { + "appid": 615690, + "normalized_name": "inferno" + }, + { + "appid": 615700, + "normalized_name": "a plunge into darkness" + }, + { + "appid": 615730, + "normalized_name": "nancy drew the final scene" + }, + { + "appid": 615770, + "normalized_name": "nancy drew message in a haunted mansion" + }, + { + "appid": 615780, + "normalized_name": "nancy drew treasure in the royal tower" + }, + { + "appid": 615910, + "normalized_name": "katana x" + }, + { + "appid": 615970, + "normalized_name": "displaced" + }, + { + "appid": 616000, + "normalized_name": "riptale" + }, + { + "appid": 616040, + "normalized_name": "tales of the tiny planet" + }, + { + "appid": 616050, + "normalized_name": "hello inc vr" + }, + { + "appid": 616110, + "normalized_name": "spaceplan" + }, + { + "appid": 616220, + "normalized_name": "hide vs. seek" + }, + { + "appid": 616240, + "normalized_name": "premium pool arena" + }, + { + "appid": 616250, + "normalized_name": "crystalline" + }, + { + "appid": 616330, + "normalized_name": "埋葬 dig a boo" + }, + { + "appid": 616390, + "normalized_name": "zodiac hentai hellish memory" + }, + { + "appid": 616420, + "normalized_name": "edge of atlantis" + }, + { + "appid": 616490, + "normalized_name": "post war dreams" + }, + { + "appid": 616520, + "normalized_name": "cheap golf" + }, + { + "appid": 616560, + "normalized_name": "epic battle simulator" + }, + { + "appid": 616580, + "normalized_name": "war girl" + }, + { + "appid": 616610, + "normalized_name": "getmebro!" + }, + { + "appid": 616620, + "normalized_name": "forest fortress" + }, + { + "appid": 616640, + "normalized_name": "b 12" + }, + { + "appid": 616650, + "normalized_name": "retrofighter vr" + }, + { + "appid": 616660, + "normalized_name": "vr coaster extreme" + }, + { + "appid": 616680, + "normalized_name": "monster showdown" + }, + { + "appid": 616690, + "normalized_name": "brköut" + }, + { + "appid": 616700, + "normalized_name": "rage of car force car crashing games" + }, + { + "appid": 616740, + "normalized_name": "克莉丝的炎之信仰 cryste the faith of fire vol.1" + }, + { + "appid": 616750, + "normalized_name": "1943 deadly desert" + }, + { + "appid": 616780, + "normalized_name": "age of space" + }, + { + "appid": 616820, + "normalized_name": "district steel" + }, + { + "appid": 616830, + "normalized_name": "cartoon strike" + }, + { + "appid": 616860, + "normalized_name": "magic heroes save our park" + }, + { + "appid": 616880, + "normalized_name": "no stick shooter" + }, + { + "appid": 616890, + "normalized_name": "vr slugger the toy baseball field" + }, + { + "appid": 616920, + "normalized_name": "batmud" + }, + { + "appid": 617020, + "normalized_name": "omega pattern visual novel" + }, + { + "appid": 617030, + "normalized_name": "landless" + }, + { + "appid": 617060, + "normalized_name": "virush" + }, + { + "appid": 617160, + "normalized_name": "home sweet home" + }, + { + "appid": 617270, + "normalized_name": "hoggy 2" + }, + { + "appid": 617290, + "normalized_name": "remnant from the ashes" + }, + { + "appid": 617350, + "normalized_name": "samurai forge" + }, + { + "appid": 617420, + "normalized_name": "animal rivals" + }, + { + "appid": 617430, + "normalized_name": "a butterfly in the district of dreams" + }, + { + "appid": 617440, + "normalized_name": "arcade mayhem juanito" + }, + { + "appid": 617450, + "normalized_name": "trollskog" + }, + { + "appid": 617480, + "normalized_name": "tower of time" + }, + { + "appid": 617590, + "normalized_name": "affliction" + }, + { + "appid": 617600, + "normalized_name": "vr interior designer pro" + }, + { + "appid": 617610, + "normalized_name": "japanese women animated jigsaws" + }, + { + "appid": 617620, + "normalized_name": "disturbed beyond aramor" + }, + { + "appid": 617630, + "normalized_name": "shadow mist" + }, + { + "appid": 617640, + "normalized_name": "forged of blood" + }, + { + "appid": 617650, + "normalized_name": "alphalink" + }, + { + "appid": 617660, + "normalized_name": "dong jin rice hime(東津萌米)" + }, + { + "appid": 617670, + "normalized_name": "zup! s" + }, + { + "appid": 617680, + "normalized_name": "drunk fu wasted masters" + }, + { + "appid": 617690, + "normalized_name": "endless winter" + }, + { + "appid": 617700, + "normalized_name": "weed shop 2" + }, + { + "appid": 617710, + "normalized_name": "cannons defenders steam" + }, + { + "appid": 617750, + "normalized_name": "neurowake" + }, + { + "appid": 617820, + "normalized_name": "7 days with death" + }, + { + "appid": 617830, + "normalized_name": "superhot vr" + }, + { + "appid": 617850, + "normalized_name": "jaws of extinction" + }, + { + "appid": 617970, + "normalized_name": "love bites" + }, + { + "appid": 617980, + "normalized_name": "summer in trigue" + }, + { + "appid": 617990, + "normalized_name": "thieves of dingirra" + }, + { + "appid": 618000, + "normalized_name": "the curse of mantras" + }, + { + "appid": 618010, + "normalized_name": "volleyball heaven" + }, + { + "appid": 618050, + "normalized_name": "to the light" + }, + { + "appid": 618070, + "normalized_name": "jet buster" + }, + { + "appid": 618080, + "normalized_name": "martial arts brutality" + }, + { + "appid": 618100, + "normalized_name": "feral blue" + }, + { + "appid": 618140, + "normalized_name": "barro" + }, + { + "appid": 618190, + "normalized_name": "people eater" + }, + { + "appid": 618200, + "normalized_name": "skylands" + }, + { + "appid": 618210, + "normalized_name": "lanternium" + }, + { + "appid": 618270, + "normalized_name": "spiritlands" + }, + { + "appid": 618310, + "normalized_name": "aftergrinder" + }, + { + "appid": 618330, + "normalized_name": "within the cosmos" + }, + { + "appid": 618350, + "normalized_name": "personal disco vr" + }, + { + "appid": 618360, + "normalized_name": "aesthetic melody" + }, + { + "appid": 618370, + "normalized_name": "rescue quest gold" + }, + { + "appid": 618420, + "normalized_name": "【nekogakuen】matthiola reverie verse" + }, + { + "appid": 618430, + "normalized_name": "episicava vol. 1" + }, + { + "appid": 618470, + "normalized_name": "qbik" + }, + { + "appid": 618490, + "normalized_name": "mr blaster" + }, + { + "appid": 618500, + "normalized_name": "hailstorm vr" + }, + { + "appid": 618510, + "normalized_name": "battle bruise" + }, + { + "appid": 618550, + "normalized_name": "chess of blades" + }, + { + "appid": 618560, + "normalized_name": "the legend of excalipurr" + }, + { + "appid": 618570, + "normalized_name": "pixel arcade legacy" + }, + { + "appid": 618590, + "normalized_name": "zombie buster vr" + }, + { + "appid": 618600, + "normalized_name": "挑战立方vr(challenge cube vr)" + }, + { + "appid": 618610, + "normalized_name": "endless horde" + }, + { + "appid": 618620, + "normalized_name": "naval armada" + }, + { + "appid": 618630, + "normalized_name": "astral traveler" + }, + { + "appid": 618650, + "normalized_name": "pixel gear" + }, + { + "appid": 618670, + "normalized_name": "one bullet left" + }, + { + "appid": 618690, + "normalized_name": "gorescript" + }, + { + "appid": 618710, + "normalized_name": "elminage original priestess of darkness and the ring of the gods" + }, + { + "appid": 618720, + "normalized_name": "1bitheart" + }, + { + "appid": 618740, + "normalized_name": "beat hazard 2" + }, + { + "appid": 618750, + "normalized_name": "choose wisely" + }, + { + "appid": 618760, + "normalized_name": "ironborn" + }, + { + "appid": 618850, + "normalized_name": "pumpkin days" + }, + { + "appid": 618920, + "normalized_name": "dungeon escape vr" + }, + { + "appid": 618950, + "normalized_name": "agatha knife" + }, + { + "appid": 618970, + "normalized_name": "outcast second contact" + }, + { + "appid": 618990, + "normalized_name": "into oblivion" + }, + { + "appid": 619000, + "normalized_name": "riley short analog boy episode 1" + }, + { + "appid": 619100, + "normalized_name": "spirit guide crucible" + }, + { + "appid": 619150, + "normalized_name": "while true learn()" + }, + { + "appid": 619210, + "normalized_name": "4d toys" + }, + { + "appid": 619220, + "normalized_name": "goblock's impossible medley" + }, + { + "appid": 619230, + "normalized_name": "vempire the kings of darkness" + }, + { + "appid": 619270, + "normalized_name": "wolf's fury" + }, + { + "appid": 619280, + "normalized_name": "gloom" + }, + { + "appid": 619310, + "normalized_name": "ways of history" + }, + { + "appid": 619320, + "normalized_name": "skatemasta tcheco" + }, + { + "appid": 619330, + "normalized_name": "duck hunting" + }, + { + "appid": 619340, + "normalized_name": "egos tales of fallen souls" + }, + { + "appid": 619350, + "normalized_name": "sandra and woo in the cursed adventure" + }, + { + "appid": 619380, + "normalized_name": "the little vampir" + }, + { + "appid": 619390, + "normalized_name": "oddworld soulstorm enhanced" + }, + { + "appid": 619400, + "normalized_name": "fluffy creatures vs the world" + }, + { + "appid": 619430, + "normalized_name": "world of castles" + }, + { + "appid": 619470, + "normalized_name": "boss defiance heroic" + }, + { + "appid": 619480, + "normalized_name": "rock ken bo" + }, + { + "appid": 619490, + "normalized_name": "fear of clowns" + }, + { + "appid": 619500, + "normalized_name": "cyubevr" + }, + { + "appid": 619530, + "normalized_name": "spacelab simulator" + }, + { + "appid": 619540, + "normalized_name": "darkwater" + }, + { + "appid": 619590, + "normalized_name": "cubeball vr" + }, + { + "appid": 619600, + "normalized_name": "wrecked get your ship together" + }, + { + "appid": 619610, + "normalized_name": "ultratank" + }, + { + "appid": 619620, + "normalized_name": "cellz" + }, + { + "appid": 619670, + "normalized_name": "huge bang bang" + }, + { + "appid": 619700, + "normalized_name": "steel rats" + }, + { + "appid": 619740, + "normalized_name": "the inevitability" + }, + { + "appid": 619780, + "normalized_name": "the swords of ditto mormo's curse" + }, + { + "appid": 619810, + "normalized_name": "fabulous angela's high school reunion" + }, + { + "appid": 619820, + "normalized_name": "heroes of hammerwatch ii" + }, + { + "appid": 619870, + "normalized_name": "omegaland" + }, + { + "appid": 619880, + "normalized_name": "atomega" + }, + { + "appid": 619890, + "normalized_name": "evil glitch" + }, + { + "appid": 619910, + "normalized_name": "just cause 3 multiplayer mod" + }, + { + "appid": 619930, + "normalized_name": "spring bonus" + }, + { + "appid": 620070, + "normalized_name": "vroom kaboom" + }, + { + "appid": 620080, + "normalized_name": "a clockwork ley line the borderline of dusk" + }, + { + "appid": 620130, + "normalized_name": "chaos town" + }, + { + "appid": 620140, + "normalized_name": "bottle flip challenge vr" + }, + { + "appid": 620170, + "normalized_name": "icarus starship command simulator" + }, + { + "appid": 620180, + "normalized_name": "nerepis" + }, + { + "appid": 620190, + "normalized_name": "gunsmith" + }, + { + "appid": 620210, + "normalized_name": "fatal twelve" + }, + { + "appid": 620220, + "normalized_name": "catmaze" + }, + { + "appid": 620280, + "normalized_name": "freefall" + }, + { + "appid": 620310, + "normalized_name": "bonny's adventure" + }, + { + "appid": 620330, + "normalized_name": "scrapper" + }, + { + "appid": 620340, + "normalized_name": "cubrick" + }, + { + "appid": 620350, + "normalized_name": "dark hope a puzzle adventure" + }, + { + "appid": 620360, + "normalized_name": "toy clash" + }, + { + "appid": 620410, + "normalized_name": "exit a biodelic adventure" + }, + { + "appid": 620570, + "normalized_name": "tower!2011 se" + }, + { + "appid": 620580, + "normalized_name": "calico & co." + }, + { + "appid": 620590, + "normalized_name": "ancestors legacy" + }, + { + "appid": 620620, + "normalized_name": "pirate101" + }, + { + "appid": 620630, + "normalized_name": "civil war 1865" + }, + { + "appid": 620640, + "normalized_name": "lightning d day" + }, + { + "appid": 620650, + "normalized_name": "puzzle with your friends" + }, + { + "appid": 620660, + "normalized_name": "jack spriggan" + }, + { + "appid": 620670, + "normalized_name": "the cursed revolver" + }, + { + "appid": 620700, + "normalized_name": "evil possession" + }, + { + "appid": 620710, + "normalized_name": "tankblitz" + }, + { + "appid": 620790, + "normalized_name": "the slopes" + }, + { + "appid": 620800, + "normalized_name": "big hit vr baseball" + }, + { + "appid": 620890, + "normalized_name": "wizard bros" + }, + { + "appid": 620900, + "normalized_name": "witchinour" + }, + { + "appid": 620940, + "normalized_name": "invisibox" + }, + { + "appid": 620980, + "normalized_name": "beat saber" + }, + { + "appid": 621000, + "normalized_name": "异常 | exception" + }, + { + "appid": 621010, + "normalized_name": "headmaster" + }, + { + "appid": 621020, + "normalized_name": "antigraviator" + }, + { + "appid": 621060, + "normalized_name": "pc building simulator" + }, + { + "appid": 621070, + "normalized_name": "legends of ellaria" + }, + { + "appid": 621080, + "normalized_name": "persian nights sands of wonders" + }, + { + "appid": 621090, + "normalized_name": "elixir of immortality ii the league of immortality" + }, + { + "appid": 621140, + "normalized_name": "egg hunt vr" + }, + { + "appid": 621150, + "normalized_name": "false shelter" + }, + { + "appid": 621170, + "normalized_name": "winter's empty mask visual novel" + }, + { + "appid": 621220, + "normalized_name": "nantucket" + }, + { + "appid": 621780, + "normalized_name": "virtually impossible" + }, + { + "appid": 621810, + "normalized_name": "strain tactics" + }, + { + "appid": 621830, + "normalized_name": "wrc 7 fia world rally championship" + }, + { + "appid": 621850, + "normalized_name": "maze bandit" + }, + { + "appid": 621880, + "normalized_name": "phoenix dynasty 2" + }, + { + "appid": 621930, + "normalized_name": "attack of the earthlings" + }, + { + "appid": 621970, + "normalized_name": "trailblazers" + }, + { + "appid": 622010, + "normalized_name": "the fall of lazarus" + }, + { + "appid": 622020, + "normalized_name": "atv drift & tricks" + }, + { + "appid": 622040, + "normalized_name": "zooicide" + }, + { + "appid": 622060, + "normalized_name": "xoxo droplets" + }, + { + "appid": 622080, + "normalized_name": "plague road" + }, + { + "appid": 622150, + "normalized_name": "bridge to another world burnt dreams collector's" + }, + { + "appid": 622200, + "normalized_name": "cursery the crooked man and the crooked cat collector's" + }, + { + "appid": 622220, + "normalized_name": "fate/extella link" + }, + { + "appid": 622270, + "normalized_name": "show it 2 me" + }, + { + "appid": 622310, + "normalized_name": "amigo vr" + }, + { + "appid": 622320, + "normalized_name": "nano project" + }, + { + "appid": 622370, + "normalized_name": "freaky awesome" + }, + { + "appid": 622380, + "normalized_name": "retne" + }, + { + "appid": 622420, + "normalized_name": "stay alive apocalypse" + }, + { + "appid": 622460, + "normalized_name": "steampunk tower 2" + }, + { + "appid": 622470, + "normalized_name": "road dogs" + }, + { + "appid": 622480, + "normalized_name": "gus track adventures vr" + }, + { + "appid": 622510, + "normalized_name": "lootfest wars" + }, + { + "appid": 622540, + "normalized_name": "the frost" + }, + { + "appid": 622550, + "normalized_name": "final cut encore collector's" + }, + { + "appid": 622610, + "normalized_name": "cult fear inside" + }, + { + "appid": 622620, + "normalized_name": "nightmare adventures the turning thorn" + }, + { + "appid": 622630, + "normalized_name": "bendy secrets of the machine" + }, + { + "appid": 622650, + "normalized_name": "bendy and the ink machine" + }, + { + "appid": 622670, + "normalized_name": "huusuienbu chapter spring and summer" + }, + { + "appid": 622680, + "normalized_name": "mayhem in single valley" + }, + { + "appid": 622700, + "normalized_name": "war heroes invasion" + }, + { + "appid": 622720, + "normalized_name": "weedcraft inc" + }, + { + "appid": 622770, + "normalized_name": "hacktag" + }, + { + "appid": 622810, + "normalized_name": "invasion" + }, + { + "appid": 622830, + "normalized_name": "battle chess" + }, + { + "appid": 622870, + "normalized_name": "within the blade" + }, + { + "appid": 622880, + "normalized_name": "sweven" + }, + { + "appid": 622890, + "normalized_name": "necroworm" + }, + { + "appid": 622910, + "normalized_name": "the trial of witch" + }, + { + "appid": 622920, + "normalized_name": "p walker's simulation" + }, + { + "appid": 622930, + "normalized_name": "magic masks" + }, + { + "appid": 622950, + "normalized_name": "ball lab ii" + }, + { + "appid": 622980, + "normalized_name": "trainclicker idle evolution" + }, + { + "appid": 623040, + "normalized_name": "crystal vibes feat. ott." + }, + { + "appid": 623050, + "normalized_name": "cyberclub 2077" + }, + { + "appid": 623070, + "normalized_name": "delicious emily's miracle of life" + }, + { + "appid": 623080, + "normalized_name": "planetarian hd" + }, + { + "appid": 623090, + "normalized_name": "baja edge of control hd" + }, + { + "appid": 623160, + "normalized_name": "zombie solitaire 2 chapter 1" + }, + { + "appid": 623170, + "normalized_name": "zombie solitaire 2 chapter 2" + }, + { + "appid": 623180, + "normalized_name": "zombie solitaire 2 chapter 3" + }, + { + "appid": 623320, + "normalized_name": "button button up!" + }, + { + "appid": 623340, + "normalized_name": "stars end" + }, + { + "appid": 623360, + "normalized_name": "grim tales the legacy collector's" + }, + { + "appid": 623370, + "normalized_name": "xdrive vr" + }, + { + "appid": 623380, + "normalized_name": "cybermotion" + }, + { + "appid": 623460, + "normalized_name": "haunted legends the bronze horseman collector's" + }, + { + "appid": 623470, + "normalized_name": "league of light wicked harvest collector's" + }, + { + "appid": 623540, + "normalized_name": "late for work" + }, + { + "appid": 623550, + "normalized_name": "timen runner" + }, + { + "appid": 623570, + "normalized_name": "pingball vr" + }, + { + "appid": 623580, + "normalized_name": "pobeda" + }, + { + "appid": 623640, + "normalized_name": "mulaka" + }, + { + "appid": 623670, + "normalized_name": "moe mekuri sp 萌めくりsp" + }, + { + "appid": 623700, + "normalized_name": "rec center tycoon management simulator" + }, + { + "appid": 623800, + "normalized_name": "everything must fall" + }, + { + "appid": 623810, + "normalized_name": "rabbit story" + }, + { + "appid": 623840, + "normalized_name": "ambre a heartbreaking kinetic novel" + }, + { + "appid": 623850, + "normalized_name": "elite encounter" + }, + { + "appid": 623860, + "normalized_name": "handball manager team" + }, + { + "appid": 623900, + "normalized_name": "table football pro" + }, + { + "appid": 623920, + "normalized_name": "chicago 1930 the prohibition" + }, + { + "appid": 623930, + "normalized_name": "solaria moon" + }, + { + "appid": 623940, + "normalized_name": "hiveswap act 1" + }, + { + "appid": 624050, + "normalized_name": "lazer cops" + }, + { + "appid": 624060, + "normalized_name": "shattered steel" + }, + { + "appid": 624070, + "normalized_name": "dragon wars" + }, + { + "appid": 624080, + "normalized_name": "cyberia" + }, + { + "appid": 624260, + "normalized_name": "the crane trials red" + }, + { + "appid": 624270, + "normalized_name": "the painscreek killings" + }, + { + "appid": 624320, + "normalized_name": "loyalty and blood viktor origins" + }, + { + "appid": 624410, + "normalized_name": "prank bros / 欢乐兄弟" + }, + { + "appid": 624430, + "normalized_name": "ai rebellion vr" + }, + { + "appid": 624460, + "normalized_name": "fantasynth one" + }, + { + "appid": 624550, + "normalized_name": "spiritual warfare & wisdom tree collection" + }, + { + "appid": 624560, + "normalized_name": "medusa's labyrinth vr" + }, + { + "appid": 624610, + "normalized_name": "run" + }, + { + "appid": 624630, + "normalized_name": "tennisvr" + }, + { + "appid": 624680, + "normalized_name": "promethium" + }, + { + "appid": 624690, + "normalized_name": "next jump shmup tactics" + }, + { + "appid": 624710, + "normalized_name": "cow milking simulator" + }, + { + "appid": 624890, + "normalized_name": "adventure craft" + }, + { + "appid": 624900, + "normalized_name": "comet strike" + }, + { + "appid": 624920, + "normalized_name": "trapped with the dolls vr" + }, + { + "appid": 624930, + "normalized_name": "fearless tigor" + }, + { + "appid": 624950, + "normalized_name": "b3" + }, + { + "appid": 624970, + "normalized_name": "battlezone combat commander" + }, + { + "appid": 624990, + "normalized_name": "the mimic" + }, + { + "appid": 625000, + "normalized_name": "knightfall" + }, + { + "appid": 625040, + "normalized_name": "ophidia" + }, + { + "appid": 625090, + "normalized_name": "red flu" + }, + { + "appid": 625120, + "normalized_name": "last hours of jack" + }, + { + "appid": 625160, + "normalized_name": "scrollonoid" + }, + { + "appid": 625180, + "normalized_name": "elevator vr" + }, + { + "appid": 625220, + "normalized_name": "building blocks / master builder of egypt" + }, + { + "appid": 625320, + "normalized_name": "no clue vr" + }, + { + "appid": 625340, + "normalized_name": "xera survival" + }, + { + "appid": 625370, + "normalized_name": "a second before us" + }, + { + "appid": 625410, + "normalized_name": "anomie" + }, + { + "appid": 625430, + "normalized_name": "doodle god blitz" + }, + { + "appid": 625470, + "normalized_name": "the red stare" + }, + { + "appid": 625560, + "normalized_name": "the overdreamer" + }, + { + "appid": 625580, + "normalized_name": "the cleansing versus" + }, + { + "appid": 625630, + "normalized_name": "journey of johann" + }, + { + "appid": 625680, + "normalized_name": "way of the passive fist" + }, + { + "appid": 625690, + "normalized_name": "归墟纪·寂夜 final world" + }, + { + "appid": 625700, + "normalized_name": "global soccer a management game 2017" + }, + { + "appid": 625720, + "normalized_name": "nothing can stop us (encore)" + }, + { + "appid": 625730, + "normalized_name": "cefore" + }, + { + "appid": 625740, + "normalized_name": "rifter" + }, + { + "appid": 625770, + "normalized_name": "smashing the battle vr" + }, + { + "appid": 625780, + "normalized_name": "magic wand" + }, + { + "appid": 625800, + "normalized_name": "tomb guard vr" + }, + { + "appid": 625820, + "normalized_name": "bionic battle mutants" + }, + { + "appid": 625830, + "normalized_name": "battlesky vr" + }, + { + "appid": 625860, + "normalized_name": "god awe full clicker" + }, + { + "appid": 625900, + "normalized_name": "ashes of kanaka" + }, + { + "appid": 625910, + "normalized_name": "time recoil" + }, + { + "appid": 625940, + "normalized_name": "tomato jones 2" + }, + { + "appid": 625960, + "normalized_name": "stoneshard" + }, + { + "appid": 625980, + "normalized_name": "yomawari midnight shadows" + }, + { + "appid": 625990, + "normalized_name": "welcome to moreytown" + }, + { + "appid": 626020, + "normalized_name": "shadows in the darkness" + }, + { + "appid": 626160, + "normalized_name": "awesome machine" + }, + { + "appid": 626170, + "normalized_name": "apocalypse night" + }, + { + "appid": 626250, + "normalized_name": "consortium the tower" + }, + { + "appid": 626460, + "normalized_name": "the legendary blacksmith" + }, + { + "appid": 626510, + "normalized_name": "lovekami useless goddess" + }, + { + "appid": 626550, + "normalized_name": "prodigy tactics" + }, + { + "appid": 626570, + "normalized_name": "microcosm" + }, + { + "appid": 626580, + "normalized_name": "spellspire" + }, + { + "appid": 626600, + "normalized_name": "lost dimension" + }, + { + "appid": 626610, + "normalized_name": "tt isle of man ride on the edge" + }, + { + "appid": 626630, + "normalized_name": "two worlds ii hd call of the tenebrae" + }, + { + "appid": 626640, + "normalized_name": "lost lands the wanderer collector's" + }, + { + "appid": 626660, + "normalized_name": "flipping death" + }, + { + "appid": 626680, + "normalized_name": "kreedz climbing" + }, + { + "appid": 626690, + "normalized_name": "sword art online fatal bullet" + }, + { + "appid": 626700, + "normalized_name": "clark | hoova vr" + }, + { + "appid": 626730, + "normalized_name": "the incredible vr game show" + }, + { + "appid": 626760, + "normalized_name": "vrtender" + }, + { + "appid": 626810, + "normalized_name": "area of darkness sentinel" + }, + { + "appid": 626840, + "normalized_name": "shadow wolf mysteries curse of the full moon collector's" + }, + { + "appid": 627070, + "normalized_name": "invoker" + }, + { + "appid": 627270, + "normalized_name": "injustice 2" + }, + { + "appid": 627350, + "normalized_name": "london detective mysteria" + }, + { + "appid": 627380, + "normalized_name": "the family skeleton" + }, + { + "appid": 627410, + "normalized_name": "blackeye" + }, + { + "appid": 627420, + "normalized_name": "sorgina a tale of witches" + }, + { + "appid": 627450, + "normalized_name": "rugby 18" + }, + { + "appid": 627460, + "normalized_name": "thornyway" + }, + { + "appid": 627570, + "normalized_name": "ventureverse legend of ulora" + }, + { + "appid": 627620, + "normalized_name": "intelligent design an evolutionary sandbox" + }, + { + "appid": 627670, + "normalized_name": "rocket wars" + }, + { + "appid": 627690, + "normalized_name": "idle champions of the forgotten realms" + }, + { + "appid": 627820, + "normalized_name": "england exchange" + }, + { + "appid": 627890, + "normalized_name": "reventa" + }, + { + "appid": 627910, + "normalized_name": "bubsy the woolies strike back" + }, + { + "appid": 627950, + "normalized_name": "1914 prelude to chaos" + }, + { + "appid": 628020, + "normalized_name": "romance of the three kingdoms vi with power up kit" + }, + { + "appid": 628030, + "normalized_name": "romance of the three kingdoms vii with power up kit" + }, + { + "appid": 628040, + "normalized_name": "romance of the three kingdoms viii with power up kit" + }, + { + "appid": 628050, + "normalized_name": "romance of the three kingdoms ix with power up kit" + }, + { + "appid": 628060, + "normalized_name": "romance of the three kingdoms x with power up kit" + }, + { + "appid": 628070, + "normalized_name": "romance of the three kingdoms xi with power up kit" + }, + { + "appid": 628080, + "normalized_name": "romance of the three kingdoms xii with power up kit" + }, + { + "appid": 628090, + "normalized_name": "nobunaga's ambition haouden with power up kit" + }, + { + "appid": 628100, + "normalized_name": "nobunaga’s ambition shouseiroku with power up kit" + }, + { + "appid": 628110, + "normalized_name": "nobunaga's ambition reppuden with power up kit" + }, + { + "appid": 628120, + "normalized_name": "nobunaga's ambition ranseiki with power up kit" + }, + { + "appid": 628130, + "normalized_name": "nobunaga's ambition soutenroku with power up kit" + }, + { + "appid": 628140, + "normalized_name": "nobunaga's ambition tenkasousei with power up kit" + }, + { + "appid": 628150, + "normalized_name": "sangokushi eiketsuden" + }, + { + "appid": 628160, + "normalized_name": "genghis khan ii clan of the gray wolf" + }, + { + "appid": 628170, + "normalized_name": "uncharted waters ii" + }, + { + "appid": 628180, + "normalized_name": "winning post" + }, + { + "appid": 628200, + "normalized_name": "the invisible hand" + }, + { + "appid": 628290, + "normalized_name": "all walls must fall a tech noir tactics game" + }, + { + "appid": 628320, + "normalized_name": "roah" + }, + { + "appid": 628350, + "normalized_name": "lazaretto" + }, + { + "appid": 628440, + "normalized_name": "multiplayer fps demo" + }, + { + "appid": 628450, + "normalized_name": "magnificent ships volume 2" + }, + { + "appid": 628460, + "normalized_name": "lily of the valley" + }, + { + "appid": 628530, + "normalized_name": "blobby tennis" + }, + { + "appid": 628550, + "normalized_name": "crypt stalker" + }, + { + "appid": 628560, + "normalized_name": "bebop and tempo" + }, + { + "appid": 628570, + "normalized_name": "trivia night" + }, + { + "appid": 628580, + "normalized_name": "miniballist" + }, + { + "appid": 628650, + "normalized_name": "a new world kingdoms" + }, + { + "appid": 628660, + "normalized_name": "lode runner legacy" + }, + { + "appid": 628670, + "normalized_name": "hellpoint" + }, + { + "appid": 628700, + "normalized_name": "the flaws of gravity" + }, + { + "appid": 628710, + "normalized_name": "hell warders" + }, + { + "appid": 628730, + "normalized_name": "adolescent santa claus" + }, + { + "appid": 628740, + "normalized_name": "mr. saitou" + }, + { + "appid": 628750, + "normalized_name": "amaze 2" + }, + { + "appid": 628760, + "normalized_name": "the adventurer episode 1 beginning of the end" + }, + { + "appid": 628770, + "normalized_name": "tangledeep" + }, + { + "appid": 628800, + "normalized_name": "super hydorah" + }, + { + "appid": 628820, + "normalized_name": "alala wake mi up!" + }, + { + "appid": 628830, + "normalized_name": "ultra hat dimension" + }, + { + "appid": 628880, + "normalized_name": "battle commanders" + }, + { + "appid": 628890, + "normalized_name": "nobunaga's ambition taishi" + }, + { + "appid": 628900, + "normalized_name": "terra mystica" + }, + { + "appid": 628920, + "normalized_name": "tomboys need love too!" + }, + { + "appid": 628940, + "normalized_name": "liz before the plague" + }, + { + "appid": 628950, + "normalized_name": "nephise begins" + }, + { + "appid": 628960, + "normalized_name": "journey to alien worlds" + }, + { + "appid": 629000, + "normalized_name": "lydia" + }, + { + "appid": 629030, + "normalized_name": "employee recycling center" + }, + { + "appid": 629040, + "normalized_name": "skytropolis" + }, + { + "appid": 629080, + "normalized_name": "beyond light advent collector's" + }, + { + "appid": 629090, + "normalized_name": "horace" + }, + { + "appid": 629100, + "normalized_name": "cadenza music betrayal and death collector's" + }, + { + "appid": 629110, + "normalized_name": "dark parables ballad of rapunzel collector's" + }, + { + "appid": 629180, + "normalized_name": "homegrove" + }, + { + "appid": 629220, + "normalized_name": "rise of insanity" + }, + { + "appid": 629230, + "normalized_name": "the storytale" + }, + { + "appid": 629240, + "normalized_name": "toilet run" + }, + { + "appid": 629270, + "normalized_name": "shiny ninjas" + }, + { + "appid": 629340, + "normalized_name": "possession" + }, + { + "appid": 629360, + "normalized_name": "the falling nights" + }, + { + "appid": 629380, + "normalized_name": "cosmic pioneer" + }, + { + "appid": 629400, + "normalized_name": "mall mayhem" + }, + { + "appid": 629410, + "normalized_name": "vectorwave" + }, + { + "appid": 629420, + "normalized_name": "super perspective" + }, + { + "appid": 629430, + "normalized_name": "the last birdling" + }, + { + "appid": 629440, + "normalized_name": "graze counter" + }, + { + "appid": 629450, + "normalized_name": "towards gold and glory" + }, + { + "appid": 629540, + "normalized_name": "alien arena warriors of mars" + }, + { + "appid": 629550, + "normalized_name": "placebo effect" + }, + { + "appid": 629640, + "normalized_name": "sea battle vr" + }, + { + "appid": 629650, + "normalized_name": "symphonic rain" + }, + { + "appid": 629690, + "normalized_name": "vaporum" + }, + { + "appid": 629720, + "normalized_name": "fuzecat" + }, + { + "appid": 629730, + "normalized_name": "blade and sorcery" + }, + { + "appid": 629760, + "normalized_name": "mordhau" + }, + { + "appid": 629770, + "normalized_name": "tiny echo" + }, + { + "appid": 629780, + "normalized_name": "wizzball" + }, + { + "appid": 629810, + "normalized_name": "galact quest" + }, + { + "appid": 629820, + "normalized_name": "maneater" + }, + { + "appid": 629840, + "normalized_name": "caligo" + }, + { + "appid": 629860, + "normalized_name": "spelunker party!" + }, + { + "appid": 629960, + "normalized_name": "trajectory of summer flower" + }, + { + "appid": 629970, + "normalized_name": "beast pets" + }, + { + "appid": 630020, + "normalized_name": "the first class vr" + }, + { + "appid": 630030, + "normalized_name": "war tech fighters" + }, + { + "appid": 630040, + "normalized_name": "jackhammer demolition dodgeball" + }, + { + "appid": 630050, + "normalized_name": "dead exit" + }, + { + "appid": 630060, + "normalized_name": "寇莎梅特:困世迷情 consummate missing world" + }, + { + "appid": 630070, + "normalized_name": "tengutana" + }, + { + "appid": 630080, + "normalized_name": "eggtime 2" + }, + { + "appid": 630130, + "normalized_name": "top punch" + }, + { + "appid": 630140, + "normalized_name": "sky clash lords of clans 3d" + }, + { + "appid": 630160, + "normalized_name": "super rocket shootout" + }, + { + "appid": 630170, + "normalized_name": "murder in tehran's alleys 1933" + }, + { + "appid": 630240, + "normalized_name": "nevertales smoke and mirrors collector's" + }, + { + "appid": 630260, + "normalized_name": "tilted mind" + }, + { + "appid": 630310, + "normalized_name": "the mummy demastered" + }, + { + "appid": 630360, + "normalized_name": "megacity builder" + }, + { + "appid": 630390, + "normalized_name": "safari venture" + }, + { + "appid": 630440, + "normalized_name": "movie studio tycoon" + }, + { + "appid": 630460, + "normalized_name": "fist's elimination tower" + }, + { + "appid": 630470, + "normalized_name": "solitaire club" + }, + { + "appid": 630490, + "normalized_name": "storm area 51 september 20th 2019" + }, + { + "appid": 630510, + "normalized_name": "psychlabvr" + }, + { + "appid": 630550, + "normalized_name": "faulty apprentice" + }, + { + "appid": 630610, + "normalized_name": "disneyland adventures" + }, + { + "appid": 630630, + "normalized_name": "apex" + }, + { + "appid": 630640, + "normalized_name": "sequence storm" + }, + { + "appid": 630670, + "normalized_name": "call of the ocean" + }, + { + "appid": 630690, + "normalized_name": "interplay solitaire" + }, + { + "appid": 630720, + "normalized_name": "mana spark" + }, + { + "appid": 630790, + "normalized_name": "psycho pass サイコパス 選択なき幸福" + }, + { + "appid": 630830, + "normalized_name": "the legacy forgotten gates collector's" + }, + { + "appid": 630870, + "normalized_name": "chuusotsu! 1st graduation time after time" + }, + { + "appid": 631120, + "normalized_name": "raybeem live in your music" + }, + { + "appid": 631220, + "normalized_name": "puzzle showdown 4k" + }, + { + "appid": 631240, + "normalized_name": "haunted train spirits of charon collector's" + }, + { + "appid": 631250, + "normalized_name": "double clue solitaire stories" + }, + { + "appid": 631260, + "normalized_name": "puppetshow souls of the innocent collector's" + }, + { + "appid": 631270, + "normalized_name": "haunted hotel ii believe the lies" + }, + { + "appid": 631490, + "normalized_name": "son of scoregasm" + }, + { + "appid": 631510, + "normalized_name": "devil may cry hd collection" + }, + { + "appid": 631540, + "normalized_name": "community inc" + }, + { + "appid": 631570, + "normalized_name": "whispers of a machine" + }, + { + "appid": 631660, + "normalized_name": "immersion chess" + }, + { + "appid": 631670, + "normalized_name": "booper get home!" + }, + { + "appid": 631770, + "normalized_name": "pixplode" + }, + { + "appid": 631810, + "normalized_name": "galactic gallery" + }, + { + "appid": 631830, + "normalized_name": "sarcophag" + }, + { + "appid": 631860, + "normalized_name": "gataela" + }, + { + "appid": 631900, + "normalized_name": "airtone" + }, + { + "appid": 631920, + "normalized_name": "somewhere on zibylon" + }, + { + "appid": 631940, + "normalized_name": "goodnight" + }, + { + "appid": 631950, + "normalized_name": "caelum into the sky" + }, + { + "appid": 631960, + "normalized_name": "windsoul" + }, + { + "appid": 631980, + "normalized_name": "immortal planet" + }, + { + "appid": 631990, + "normalized_name": "remember remember" + }, + { + "appid": 632000, + "normalized_name": "crosscells" + }, + { + "appid": 632020, + "normalized_name": "necromancer returns" + }, + { + "appid": 632040, + "normalized_name": "vr sand" + }, + { + "appid": 632050, + "normalized_name": "the village" + }, + { + "appid": 632070, + "normalized_name": "the fidelio incident" + }, + { + "appid": 632080, + "normalized_name": "kinese" + }, + { + "appid": 632100, + "normalized_name": "the last sigil" + }, + { + "appid": 632110, + "normalized_name": "crimson keep" + }, + { + "appid": 632130, + "normalized_name": "set 'n det" + }, + { + "appid": 632170, + "normalized_name": "spartan fist" + }, + { + "appid": 632200, + "normalized_name": "kuro survival" + }, + { + "appid": 632240, + "normalized_name": "gunball" + }, + { + "appid": 632250, + "normalized_name": "deru the art of cooperation" + }, + { + "appid": 632290, + "normalized_name": "the grand ball" + }, + { + "appid": 632300, + "normalized_name": "hobo tough life" + }, + { + "appid": 632350, + "normalized_name": "cyberdimension neptunia 4 goddesses online" + }, + { + "appid": 632360, + "normalized_name": "risk of rain 2" + }, + { + "appid": 632380, + "normalized_name": "bionic attack" + }, + { + "appid": 632470, + "normalized_name": "disco elysium the final cut" + }, + { + "appid": 632510, + "normalized_name": "blockle" + }, + { + "appid": 632590, + "normalized_name": "the tale of doris and the dragon episode 2" + }, + { + "appid": 632710, + "normalized_name": "princess evangile w happiness steam" + }, + { + "appid": 632800, + "normalized_name": "beyond eden" + }, + { + "appid": 632820, + "normalized_name": "ricky raccoon" + }, + { + "appid": 632830, + "normalized_name": "aztec venture" + }, + { + "appid": 632840, + "normalized_name": "cyber vr" + }, + { + "appid": 632880, + "normalized_name": "the majesty of colors" + }, + { + "appid": 632900, + "normalized_name": "serment contract with a devil" + }, + { + "appid": 632950, + "normalized_name": "sin reloaded" + }, + { + "appid": 633060, + "normalized_name": "orwell ignorance is strength" + }, + { + "appid": 633080, + "normalized_name": "relic hunters legend" + }, + { + "appid": 633110, + "normalized_name": "fast beat loop racer gt | 環狀賽車gt" + }, + { + "appid": 633150, + "normalized_name": "mythlink" + }, + { + "appid": 633230, + "normalized_name": "naruto to boruto shinobi striker" + }, + { + "appid": 633320, + "normalized_name": "spirit realm" + }, + { + "appid": 633360, + "normalized_name": "remothered tormented fathers" + }, + { + "appid": 633430, + "normalized_name": "trail of destruction" + }, + { + "appid": 633440, + "normalized_name": "unit 4" + }, + { + "appid": 633460, + "normalized_name": "tannenberg" + }, + { + "appid": 633580, + "normalized_name": "neighbourhood necromancer" + }, + { + "appid": 633600, + "normalized_name": "creatures such as we" + }, + { + "appid": 633660, + "normalized_name": "onimod land" + }, + { + "appid": 633930, + "normalized_name": "yeah jam fury u me everybody!" + }, + { + "appid": 633940, + "normalized_name": "vision origin" + }, + { + "appid": 633950, + "normalized_name": "fall of light darkest" + }, + { + "appid": 633970, + "normalized_name": "heroes never die" + }, + { + "appid": 634060, + "normalized_name": "observrtarium" + }, + { + "appid": 634070, + "normalized_name": "murnatan" + }, + { + "appid": 634090, + "normalized_name": "suncore chronicles the tower" + }, + { + "appid": 634120, + "normalized_name": "inmates" + }, + { + "appid": 634150, + "normalized_name": "resize" + }, + { + "appid": 634160, + "normalized_name": "cattails | become a cat!" + }, + { + "appid": 634180, + "normalized_name": "darkarta a broken heart's quest standard" + }, + { + "appid": 634200, + "normalized_name": "tanks vs aliens" + }, + { + "appid": 634340, + "normalized_name": "legend of himari" + }, + { + "appid": 634410, + "normalized_name": "a story beside" + }, + { + "appid": 634700, + "normalized_name": "plutonium" + }, + { + "appid": 634810, + "normalized_name": "cw chaco war" + }, + { + "appid": 635040, + "normalized_name": "freeze climbing" + }, + { + "appid": 635050, + "normalized_name": "despoiler" + }, + { + "appid": 635060, + "normalized_name": "castle of no escape" + }, + { + "appid": 635190, + "normalized_name": "puppy doge vr" + }, + { + "appid": 635200, + "normalized_name": "distrust polar survival" + }, + { + "appid": 635220, + "normalized_name": "the naked game" + }, + { + "appid": 635250, + "normalized_name": "evil genome 光明重影" + }, + { + "appid": 635260, + "normalized_name": "carx drift racing online" + }, + { + "appid": 635270, + "normalized_name": "through the dark prologue" + }, + { + "appid": 635310, + "normalized_name": "ski sniper" + }, + { + "appid": 635320, + "normalized_name": "last day of june" + }, + { + "appid": 635390, + "normalized_name": "thief of thieves" + }, + { + "appid": 635410, + "normalized_name": "the adventurer and his backpack" + }, + { + "appid": 635430, + "normalized_name": "blue angels aerobatic flight simulator" + }, + { + "appid": 635520, + "normalized_name": "phantasmat the endless night collector's" + }, + { + "appid": 635590, + "normalized_name": "vulture strike" + }, + { + "appid": 635670, + "normalized_name": "emporium" + }, + { + "appid": 635700, + "normalized_name": "zix" + }, + { + "appid": 635790, + "normalized_name": "how to fool a liar king" + }, + { + "appid": 635810, + "normalized_name": "manygolf" + }, + { + "appid": 635830, + "normalized_name": "demon mark a russian saga" + }, + { + "appid": 635850, + "normalized_name": "sentience the android's tale" + }, + { + "appid": 635880, + "normalized_name": "chicken labyrinth puzzles" + }, + { + "appid": 635900, + "normalized_name": "tunnels of despair" + }, + { + "appid": 635930, + "normalized_name": "dogo" + }, + { + "appid": 635940, + "normalized_name": "little busters! english" + }, + { + "appid": 635980, + "normalized_name": "break the food chain" + }, + { + "appid": 636010, + "normalized_name": "chateau garden" + }, + { + "appid": 636020, + "normalized_name": "india garden" + }, + { + "appid": 636030, + "normalized_name": "ricky raccoon 2 adventures in egypt" + }, + { + "appid": 636050, + "normalized_name": "5 star rio resort" + }, + { + "appid": 636070, + "normalized_name": "corridor z" + }, + { + "appid": 636100, + "normalized_name": "tesla vs lovecraft" + }, + { + "appid": 636150, + "normalized_name": "cyberhunt" + }, + { + "appid": 636170, + "normalized_name": "reaching for petals" + }, + { + "appid": 636190, + "normalized_name": "the foglands" + }, + { + "appid": 636220, + "normalized_name": "cubeworks" + }, + { + "appid": 636230, + "normalized_name": "safe house" + }, + { + "appid": 636270, + "normalized_name": "the loop" + }, + { + "appid": 636310, + "normalized_name": "concurrency" + }, + { + "appid": 636320, + "normalized_name": "depth of extinction" + }, + { + "appid": 636330, + "normalized_name": "the god paradox" + }, + { + "appid": 636360, + "normalized_name": "silent gentlemen" + }, + { + "appid": 636370, + "normalized_name": "the sun never sets" + }, + { + "appid": 636390, + "normalized_name": "ticket to earth" + }, + { + "appid": 636400, + "normalized_name": "cubots the origins" + }, + { + "appid": 636430, + "normalized_name": "zombie kill" + }, + { + "appid": 636450, + "normalized_name": "rez infinite" + }, + { + "appid": 636460, + "normalized_name": "rugby league team manager 2018" + }, + { + "appid": 636480, + "normalized_name": "ravenfield" + }, + { + "appid": 636490, + "normalized_name": "ka mate" + }, + { + "appid": 636520, + "normalized_name": "gevaudan" + }, + { + "appid": 636560, + "normalized_name": "runewards strategy card game" + }, + { + "appid": 636570, + "normalized_name": "nights of azure 2 bride of the new moon" + }, + { + "appid": 636580, + "normalized_name": "primal reign" + }, + { + "appid": 636590, + "normalized_name": "vr sushi bar" + }, + { + "appid": 636620, + "normalized_name": "tanks vr" + }, + { + "appid": 636640, + "normalized_name": "base of war" + }, + { + "appid": 636720, + "normalized_name": "bring to light" + }, + { + "appid": 636740, + "normalized_name": "akihabara feel the rhythm remixed" + }, + { + "appid": 636790, + "normalized_name": "car mechanic flipper" + }, + { + "appid": 636910, + "normalized_name": "geoid" + }, + { + "appid": 636930, + "normalized_name": "soundscape vr 2017" + }, + { + "appid": 636950, + "normalized_name": "marksmanvr" + }, + { + "appid": 636960, + "normalized_name": "wo yao da 我要大" + }, + { + "appid": 636970, + "normalized_name": "tales of glory" + }, + { + "appid": 637040, + "normalized_name": "roadkillerz" + }, + { + "appid": 637050, + "normalized_name": "spire of sorcery" + }, + { + "appid": 637060, + "normalized_name": "tiny tales heart of the forest" + }, + { + "appid": 637070, + "normalized_name": "end of the road vr" + }, + { + "appid": 637090, + "normalized_name": "battletech" + }, + { + "appid": 637100, + "normalized_name": "sonic forces" + }, + { + "appid": 637110, + "normalized_name": "runes of avalon path of magic" + }, + { + "appid": 637120, + "normalized_name": "space god" + }, + { + "appid": 637310, + "normalized_name": "stream service" + }, + { + "appid": 637330, + "normalized_name": "stack" + }, + { + "appid": 637340, + "normalized_name": "solar core" + }, + { + "appid": 637410, + "normalized_name": "disputed space" + }, + { + "appid": 637640, + "normalized_name": "the glade" + }, + { + "appid": 637650, + "normalized_name": "final fantasy xv windows" + }, + { + "appid": 637670, + "normalized_name": "secret of mana" + }, + { + "appid": 637850, + "normalized_name": "confess my love" + }, + { + "appid": 637860, + "normalized_name": "斩毒:黑与白(narcotics police black and white)" + }, + { + "appid": 637870, + "normalized_name": "slice&dice" + }, + { + "appid": 637880, + "normalized_name": "i wanna be the cat" + }, + { + "appid": 637920, + "normalized_name": "weather lord" + }, + { + "appid": 637930, + "normalized_name": "weather lord hidden realm" + }, + { + "appid": 637940, + "normalized_name": "weather lord in search of the shaman" + }, + { + "appid": 637960, + "normalized_name": "projectm dream" + }, + { + "appid": 637980, + "normalized_name": "mission b" + }, + { + "appid": 638000, + "normalized_name": "when ski lifts go wrong" + }, + { + "appid": 638020, + "normalized_name": "castle wars vr" + }, + { + "appid": 638060, + "normalized_name": "majestic trials" + }, + { + "appid": 638070, + "normalized_name": "murderous pursuits" + }, + { + "appid": 638110, + "normalized_name": "desert bus vr" + }, + { + "appid": 638130, + "normalized_name": "sweet surrender vr" + }, + { + "appid": 638160, + "normalized_name": "moero chronicle" + }, + { + "appid": 638200, + "normalized_name": "capitalism 2" + }, + { + "appid": 638230, + "normalized_name": "journey" + }, + { + "appid": 638240, + "normalized_name": "calavera day of the dead collector's" + }, + { + "appid": 638250, + "normalized_name": "sea of lies nemesis collector's" + }, + { + "appid": 638260, + "normalized_name": "myths of the world stolen spring collector's" + }, + { + "appid": 638270, + "normalized_name": "rite of passage child of the forest collector's" + }, + { + "appid": 638290, + "normalized_name": "grim facade sinister obsession collector’s" + }, + { + "appid": 638390, + "normalized_name": "trail of the damned" + }, + { + "appid": 638470, + "normalized_name": "eggggg the platform puker" + }, + { + "appid": 638490, + "normalized_name": "soldat" + }, + { + "appid": 638500, + "normalized_name": "soldat dedicated server" + }, + { + "appid": 638510, + "normalized_name": "dotage" + }, + { + "appid": 638650, + "normalized_name": "sword art online re hollow fragment" + }, + { + "appid": 638720, + "normalized_name": "final battle" + }, + { + "appid": 638740, + "normalized_name": "the seeker" + }, + { + "appid": 638830, + "normalized_name": "vr scape" + }, + { + "appid": 638850, + "normalized_name": "animallica" + }, + { + "appid": 638900, + "normalized_name": "defenders of the realm vr" + }, + { + "appid": 638920, + "normalized_name": "beanvr—the social vr" + }, + { + "appid": 638930, + "normalized_name": "dal segno" + }, + { + "appid": 638940, + "normalized_name": "jester's quest" + }, + { + "appid": 638970, + "normalized_name": "yakuza 0" + }, + { + "appid": 638990, + "normalized_name": "undying \"kingdom\"" + }, + { + "appid": 639130, + "normalized_name": "ultrawings" + }, + { + "appid": 639180, + "normalized_name": "time space and matter" + }, + { + "appid": 639220, + "normalized_name": "throttle powah vr" + }, + { + "appid": 639230, + "normalized_name": "rival books of aster" + }, + { + "appid": 639240, + "normalized_name": "codered agent sarah's story day one" + }, + { + "appid": 639270, + "normalized_name": "operation warcade vr" + }, + { + "appid": 639280, + "normalized_name": "lander 8009 vr" + }, + { + "appid": 639300, + "normalized_name": "age of gladiators ii death league" + }, + { + "appid": 639320, + "normalized_name": "fading" + }, + { + "appid": 639440, + "normalized_name": "vremedies ct procedure experience" + }, + { + "appid": 639460, + "normalized_name": "zombie riot" + }, + { + "appid": 639470, + "normalized_name": "original journey" + }, + { + "appid": 639490, + "normalized_name": "umineko when they cry answer arcs" + }, + { + "appid": 639560, + "normalized_name": "spacescape" + }, + { + "appid": 639650, + "normalized_name": "1982" + }, + { + "appid": 639720, + "normalized_name": "a bloody night" + }, + { + "appid": 639730, + "normalized_name": "murder in tehran's alleys 2016" + }, + { + "appid": 639770, + "normalized_name": "untitled" + }, + { + "appid": 639840, + "normalized_name": "field breaking" + }, + { + "appid": 639880, + "normalized_name": "zero zero zero zero" + }, + { + "appid": 639920, + "normalized_name": "escape the gray" + }, + { + "appid": 640010, + "normalized_name": "forsaken castle" + }, + { + "appid": 640050, + "normalized_name": "soldiers of the universe" + }, + { + "appid": 640090, + "normalized_name": "zarya 1 mystery on the moon" + }, + { + "appid": 640120, + "normalized_name": "youropa" + }, + { + "appid": 640150, + "normalized_name": "tale of toast" + }, + { + "appid": 640160, + "normalized_name": "galactic glitch prologue" + }, + { + "appid": 640210, + "normalized_name": "just one line" + }, + { + "appid": 640250, + "normalized_name": "kitty hawk" + }, + { + "appid": 640290, + "normalized_name": "super duper multitasking" + }, + { + "appid": 640300, + "normalized_name": "run of mydan" + }, + { + "appid": 640310, + "normalized_name": "drive by hero" + }, + { + "appid": 640340, + "normalized_name": "serious sam tormental" + }, + { + "appid": 640380, + "normalized_name": "ubermosh vol.5" + }, + { + "appid": 640590, + "normalized_name": "the lego ninjago movie video game" + }, + { + "appid": 640600, + "normalized_name": "bleeding kansas" + }, + { + "appid": 640690, + "normalized_name": "super tony land" + }, + { + "appid": 640700, + "normalized_name": "narvas" + }, + { + "appid": 640760, + "normalized_name": "code51 mecha arena" + }, + { + "appid": 640780, + "normalized_name": "battle mech frontier" + }, + { + "appid": 640800, + "normalized_name": "skyfront vr" + }, + { + "appid": 640820, + "normalized_name": "pathfinder kingmaker — enhanced plus" + }, + { + "appid": 640840, + "normalized_name": "gohan quest" + }, + { + "appid": 640860, + "normalized_name": "stone rage" + }, + { + "appid": 640880, + "normalized_name": "hyper sentinel" + }, + { + "appid": 640890, + "normalized_name": "will glow the wisp" + }, + { + "appid": 640970, + "normalized_name": "in game adventure legend of monsters" + }, + { + "appid": 640990, + "normalized_name": "fashioning little miss lonesome" + }, + { + "appid": 641050, + "normalized_name": "stroodledoodle" + }, + { + "appid": 641080, + "normalized_name": "trials rising" + }, + { + "appid": 641320, + "normalized_name": "cooking simulator" + }, + { + "appid": 641590, + "normalized_name": "perplexigon" + }, + { + "appid": 641780, + "normalized_name": "the drone racing league simulator" + }, + { + "appid": 641860, + "normalized_name": "trenches of war" + }, + { + "appid": 641870, + "normalized_name": "symecu8e" + }, + { + "appid": 641910, + "normalized_name": "bike rush" + }, + { + "appid": 641940, + "normalized_name": "the last sanctuary vr" + }, + { + "appid": 641950, + "normalized_name": "last stonelord" + }, + { + "appid": 641960, + "normalized_name": "boxvr" + }, + { + "appid": 641980, + "normalized_name": "block survival legend of the lost islands" + }, + { + "appid": 641990, + "normalized_name": "the escapists 2" + }, + { + "appid": 642000, + "normalized_name": "regenesis arcade lite" + }, + { + "appid": 642020, + "normalized_name": "gordy and the monster moon" + }, + { + "appid": 642070, + "normalized_name": "vr theme park rides" + }, + { + "appid": 642090, + "normalized_name": "coming out on top" + }, + { + "appid": 642170, + "normalized_name": "legendary hunter vr" + }, + { + "appid": 642190, + "normalized_name": "beer pong league" + }, + { + "appid": 642390, + "normalized_name": "blocksworld" + }, + { + "appid": 642520, + "normalized_name": "trio" + }, + { + "appid": 642560, + "normalized_name": "art of gravity" + }, + { + "appid": 642570, + "normalized_name": "flame of mirrors" + }, + { + "appid": 642580, + "normalized_name": "cally's caves 4" + }, + { + "appid": 642600, + "normalized_name": "burst fighter" + }, + { + "appid": 642610, + "normalized_name": "shape of the world" + }, + { + "appid": 642620, + "normalized_name": "cyber rebellion" + }, + { + "appid": 642650, + "normalized_name": "pepper's puzzles" + }, + { + "appid": 642660, + "normalized_name": "vremedies mri procedure experience" + }, + { + "appid": 642670, + "normalized_name": "vremedies radiotherapy procedure experience" + }, + { + "appid": 642690, + "normalized_name": "vremedies theatre procedure experience" + }, + { + "appid": 642700, + "normalized_name": "the murder room vr" + }, + { + "appid": 642710, + "normalized_name": "iron defense vr" + }, + { + "appid": 642730, + "normalized_name": "virtual slotcars" + }, + { + "appid": 642830, + "normalized_name": "milanoir" + }, + { + "appid": 642840, + "normalized_name": "red bull doodle art global vr gallery" + }, + { + "appid": 642860, + "normalized_name": "battle army" + }, + { + "appid": 642910, + "normalized_name": "happyfunland" + }, + { + "appid": 643200, + "normalized_name": "keep in mind" + }, + { + "appid": 643260, + "normalized_name": "break stuff with coins" + }, + { + "appid": 643270, + "normalized_name": "oldtv" + }, + { + "appid": 643370, + "normalized_name": "esports manager" + }, + { + "appid": 643570, + "normalized_name": "avatar of the wolf" + }, + { + "appid": 643590, + "normalized_name": "everyday golf vr" + }, + { + "appid": 643610, + "normalized_name": "mortal blitz" + }, + { + "appid": 643620, + "normalized_name": "night trap 25th anniversary" + }, + { + "appid": 643810, + "normalized_name": "fugl" + }, + { + "appid": 643820, + "normalized_name": "shadowside" + }, + { + "appid": 643830, + "normalized_name": "botlike a robot's rampage" + }, + { + "appid": 643870, + "normalized_name": "kitten adventures in city park" + }, + { + "appid": 643880, + "normalized_name": "strikey sisters" + }, + { + "appid": 643900, + "normalized_name": "alvora tactics" + }, + { + "appid": 643930, + "normalized_name": "魔王3:新秩序" + }, + { + "appid": 643940, + "normalized_name": "jim is moving out!" + }, + { + "appid": 643950, + "normalized_name": "a handful of keflings" + }, + { + "appid": 643960, + "normalized_name": "cursed treasure 2" + }, + { + "appid": 643970, + "normalized_name": "return to planet x" + }, + { + "appid": 643980, + "normalized_name": "ironbound" + }, + { + "appid": 644000, + "normalized_name": "interstellar prime" + }, + { + "appid": 644010, + "normalized_name": "racing glider" + }, + { + "appid": 644080, + "normalized_name": "alphabear hardcover" + }, + { + "appid": 644130, + "normalized_name": "foxus" + }, + { + "appid": 644150, + "normalized_name": "smogpunk 湮霾之地" + }, + { + "appid": 644160, + "normalized_name": "reflecting fate" + }, + { + "appid": 644280, + "normalized_name": "arms of telos" + }, + { + "appid": 644330, + "normalized_name": "in the dark" + }, + { + "appid": 644340, + "normalized_name": "omina mortis" + }, + { + "appid": 644370, + "normalized_name": "howard phillips lovecar" + }, + { + "appid": 644380, + "normalized_name": "hegis' grasp evil resurrected" + }, + { + "appid": 644390, + "normalized_name": "d&d lords of waterdeep" + }, + { + "appid": 644400, + "normalized_name": "robotraps" + }, + { + "appid": 644420, + "normalized_name": "xion" + }, + { + "appid": 644480, + "normalized_name": "outbreak the new nightmare" + }, + { + "appid": 644530, + "normalized_name": "the maid_san's caving adventure メイドさん洞窟探検" + }, + { + "appid": 644540, + "normalized_name": "dies irae ~amantes amentes~" + }, + { + "appid": 644550, + "normalized_name": "篱笆庄秘闻 / mysteries of fence" + }, + { + "appid": 644560, + "normalized_name": "mirror" + }, + { + "appid": 644580, + "normalized_name": "slash or die 2" + }, + { + "appid": 644610, + "normalized_name": "drums hero pc" + }, + { + "appid": 644640, + "normalized_name": "band of defenders" + }, + { + "appid": 644660, + "normalized_name": "lathe safety simulator" + }, + { + "appid": 644670, + "normalized_name": "deus vult | online vr sword fighting" + }, + { + "appid": 644680, + "normalized_name": "libra of the vampire princess lycoris & aoi in \"the promise\" plus iris in \"homeworld\"" + }, + { + "appid": 644710, + "normalized_name": "gary grigsby's war in the west" + }, + { + "appid": 644740, + "normalized_name": "vrun" + }, + { + "appid": 644760, + "normalized_name": "streetball vr" + }, + { + "appid": 644800, + "normalized_name": "spacerx dome survivals" + }, + { + "appid": 644830, + "normalized_name": "the surge 2" + }, + { + "appid": 644860, + "normalized_name": "the lightbringers" + }, + { + "appid": 644870, + "normalized_name": "fortress of hell" + }, + { + "appid": 644890, + "normalized_name": "darklast" + }, + { + "appid": 644930, + "normalized_name": "they are billions" + }, + { + "appid": 645090, + "normalized_name": "zup! 5" + }, + { + "appid": 645130, + "normalized_name": "space dream" + }, + { + "appid": 645150, + "normalized_name": "unborne" + }, + { + "appid": 645190, + "normalized_name": "jungle hostages" + }, + { + "appid": 645200, + "normalized_name": "lethal running" + }, + { + "appid": 645210, + "normalized_name": "ussr 2021" + }, + { + "appid": 645230, + "normalized_name": "ruckball" + }, + { + "appid": 645240, + "normalized_name": "costumenaut" + }, + { + "appid": 645260, + "normalized_name": "trophy fishing 2" + }, + { + "appid": 645270, + "normalized_name": "30 days to survive" + }, + { + "appid": 645280, + "normalized_name": "mystic vr" + }, + { + "appid": 645290, + "normalized_name": "mechanism" + }, + { + "appid": 645320, + "normalized_name": "scarf" + }, + { + "appid": 645330, + "normalized_name": "frontline heroes vr" + }, + { + "appid": 645340, + "normalized_name": "relax walk vr" + }, + { + "appid": 645360, + "normalized_name": "cube xl" + }, + { + "appid": 645380, + "normalized_name": "heroes of umbra" + }, + { + "appid": 645410, + "normalized_name": "ominous tales the forsaken isle" + }, + { + "appid": 645420, + "normalized_name": "entwined strings of deception" + }, + { + "appid": 645440, + "normalized_name": "tearstone" + }, + { + "appid": 645450, + "normalized_name": "gravity quest" + }, + { + "appid": 645460, + "normalized_name": "mind maze" + }, + { + "appid": 645470, + "normalized_name": "log the game" + }, + { + "appid": 645530, + "normalized_name": "raise the dead" + }, + { + "appid": 645630, + "normalized_name": "car mechanic simulator 2018" + }, + { + "appid": 645650, + "normalized_name": "chickens madness" + }, + { + "appid": 645690, + "normalized_name": "fantasia of the wind 风之幻想曲" + }, + { + "appid": 645720, + "normalized_name": "fabular once upon a spacetime" + }, + { + "appid": 645730, + "normalized_name": "resonance of fate/end of eternity 4k/hd" + }, + { + "appid": 645750, + "normalized_name": "rule with an iron fish a pirate fishing adventure" + }, + { + "appid": 645780, + "normalized_name": "robot pirates" + }, + { + "appid": 645790, + "normalized_name": "home wars" + }, + { + "appid": 645820, + "normalized_name": "odysseus kosmos and his robot quest (complete season)" + }, + { + "appid": 645830, + "normalized_name": "son korsan" + }, + { + "appid": 645860, + "normalized_name": "spartan vr" + }, + { + "appid": 645920, + "normalized_name": "dreamstones" + }, + { + "appid": 645930, + "normalized_name": "zero killed" + }, + { + "appid": 645940, + "normalized_name": "onescreen solar sails" + }, + { + "appid": 646010, + "normalized_name": "golem" + }, + { + "appid": 646030, + "normalized_name": "redneck rampage possum bayou" + }, + { + "appid": 646050, + "normalized_name": "past cure" + }, + { + "appid": 646100, + "normalized_name": "woodlands" + }, + { + "appid": 646150, + "normalized_name": "winter wolves classic games collection" + }, + { + "appid": 646180, + "normalized_name": "nightcrawler vr bowling" + }, + { + "appid": 646200, + "normalized_name": "dead effect 2 vr" + }, + { + "appid": 646240, + "normalized_name": "bacon may die" + }, + { + "appid": 646270, + "normalized_name": "60 parsecs!" + }, + { + "appid": 646280, + "normalized_name": "too many weapons" + }, + { + "appid": 646300, + "normalized_name": "chainman" + }, + { + "appid": 646310, + "normalized_name": "projectm daydream" + }, + { + "appid": 646330, + "normalized_name": "darkness and flame missing memories collector's" + }, + { + "appid": 646350, + "normalized_name": "tracon!2012 se" + }, + { + "appid": 646360, + "normalized_name": "el ministerio del tiempo vr el tiempo en tus manos" + }, + { + "appid": 646370, + "normalized_name": "vesta" + }, + { + "appid": 646430, + "normalized_name": "harp vefa" + }, + { + "appid": 646460, + "normalized_name": "complikated" + }, + { + "appid": 646470, + "normalized_name": "alicia quatermain secrets of the lost treasures" + }, + { + "appid": 646500, + "normalized_name": "egypt old kingdom" + }, + { + "appid": 646530, + "normalized_name": "hop step sing! kiss×kiss×kiss (hq edition)" + }, + { + "appid": 646570, + "normalized_name": "slay the spire" + }, + { + "appid": 646600, + "normalized_name": "baobabs mausoleum ep.1 ovnifagos don´t eat flamingos" + }, + { + "appid": 646680, + "normalized_name": "roman adventures britons. season 1" + }, + { + "appid": 646820, + "normalized_name": "might & mayhem" + }, + { + "appid": 646830, + "normalized_name": "blood of darkness" + }, + { + "appid": 646890, + "normalized_name": "distant nightmare virtual reality" + }, + { + "appid": 646910, + "normalized_name": "the crew 2" + }, + { + "appid": 646960, + "normalized_name": "three twenty one" + }, + { + "appid": 647000, + "normalized_name": "robros" + }, + { + "appid": 647040, + "normalized_name": "riaaf the spider" + }, + { + "appid": 647050, + "normalized_name": "super hardcore" + }, + { + "appid": 647080, + "normalized_name": "haunted halls green hills sanitarium collector's" + }, + { + "appid": 647090, + "normalized_name": "maestro music of death collector's" + }, + { + "appid": 647280, + "normalized_name": "pixel shooter" + }, + { + "appid": 647500, + "normalized_name": "near death experience" + }, + { + "appid": 647570, + "normalized_name": "transference" + }, + { + "appid": 647640, + "normalized_name": "shockrods" + }, + { + "appid": 647650, + "normalized_name": "space avenger – empire of nexx" + }, + { + "appid": 647660, + "normalized_name": "drone warfare" + }, + { + "appid": 647740, + "normalized_name": "airmen" + }, + { + "appid": 647830, + "normalized_name": "lego marvel super heroes 2" + }, + { + "appid": 647840, + "normalized_name": "ironclads 2 caroline islands war 1885" + }, + { + "appid": 647850, + "normalized_name": "royal detective queen of shadows collector's" + }, + { + "appid": 647890, + "normalized_name": "the agency of anomalies the last performance collector's" + }, + { + "appid": 647900, + "normalized_name": "riddles of fate into oblivion collector's" + }, + { + "appid": 647910, + "normalized_name": "amaranthine voyage the living mountain collector's" + }, + { + "appid": 647930, + "normalized_name": "danse macabre crimson cabaret collector's" + }, + { + "appid": 647940, + "normalized_name": "shrouded tales revenge of shadows collector's" + }, + { + "appid": 647950, + "normalized_name": "kitty nigiri" + }, + { + "appid": 647960, + "normalized_name": "rusted warfare rts" + }, + { + "appid": 647980, + "normalized_name": "trojan inc." + }, + { + "appid": 647990, + "normalized_name": "batter up! vr" + }, + { + "appid": 648020, + "normalized_name": "the fleet" + }, + { + "appid": 648050, + "normalized_name": "super pilot" + }, + { + "appid": 648060, + "normalized_name": "nucvivor" + }, + { + "appid": 648070, + "normalized_name": "crisisactionvr" + }, + { + "appid": 648100, + "normalized_name": "raging loop" + }, + { + "appid": 648120, + "normalized_name": "pixel sketch" + }, + { + "appid": 648150, + "normalized_name": "arcsaber vr" + }, + { + "appid": 648190, + "normalized_name": "aliens in the yard" + }, + { + "appid": 648220, + "normalized_name": "scp area 8" + }, + { + "appid": 648270, + "normalized_name": "i see your pain" + }, + { + "appid": 648350, + "normalized_name": "jurassic world evolution" + }, + { + "appid": 648380, + "normalized_name": "bullet dodge" + }, + { + "appid": 648390, + "normalized_name": "marie's room" + }, + { + "appid": 648410, + "normalized_name": "colony ship a post earth role playing game" + }, + { + "appid": 648440, + "normalized_name": "pixel devil and the broken cartridge" + }, + { + "appid": 648510, + "normalized_name": "choice of the star captain" + }, + { + "appid": 648530, + "normalized_name": "reckless space pirates" + }, + { + "appid": 648550, + "normalized_name": "choice" + }, + { + "appid": 648570, + "normalized_name": "hell dimension vr" + }, + { + "appid": 648580, + "normalized_name": "428 shibuya scramble" + }, + { + "appid": 648590, + "normalized_name": "428 〜封鎖された渋谷で〜" + }, + { + "appid": 648600, + "normalized_name": "final fantasy xv windows mod organizer" + }, + { + "appid": 648630, + "normalized_name": "damascus gear operation tokyo hd" + }, + { + "appid": 648640, + "normalized_name": "antiquia lost" + }, + { + "appid": 648660, + "normalized_name": "boobs vs zombies" + }, + { + "appid": 648670, + "normalized_name": "bikini island" + }, + { + "appid": 648750, + "normalized_name": "tokaido" + }, + { + "appid": 648780, + "normalized_name": "it's quiz time" + }, + { + "appid": 648800, + "normalized_name": "raft" + }, + { + "appid": 648810, + "normalized_name": "vehicle vr" + }, + { + "appid": 648880, + "normalized_name": "guano gladiators" + }, + { + "appid": 648890, + "normalized_name": "dmt dynamic music tesseract" + }, + { + "appid": 648950, + "normalized_name": "illuminary" + }, + { + "appid": 649000, + "normalized_name": "you shall not jump pc master race" + }, + { + "appid": 649040, + "normalized_name": "isle in the sky" + }, + { + "appid": 649120, + "normalized_name": "magician's gambit" + }, + { + "appid": 649150, + "normalized_name": "phobia" + }, + { + "appid": 649170, + "normalized_name": "the seasons" + }, + { + "appid": 649240, + "normalized_name": "radtv" + }, + { + "appid": 649300, + "normalized_name": "wisdom of war" + }, + { + "appid": 649360, + "normalized_name": "yesterday" + }, + { + "appid": 649450, + "normalized_name": "deadly escape" + }, + { + "appid": 649460, + "normalized_name": "space panic room escape (vr)" + }, + { + "appid": 649510, + "normalized_name": "bullet vr" + }, + { + "appid": 649560, + "normalized_name": "l.a.p.d. 2195" + }, + { + "appid": 649570, + "normalized_name": "dash dash run!" + }, + { + "appid": 649580, + "normalized_name": "twins of the pasture" + }, + { + "appid": 649600, + "normalized_name": "swords and sandals 2 redux" + }, + { + "appid": 649620, + "normalized_name": "vr battleship yamato" + }, + { + "appid": 649630, + "normalized_name": "darkmaze" + }, + { + "appid": 649640, + "normalized_name": "ashes cricket" + }, + { + "appid": 649660, + "normalized_name": "liberty vr" + }, + { + "appid": 649670, + "normalized_name": "zhust the illusion soul" + }, + { + "appid": 649730, + "normalized_name": "officebots reality bytes [vr]" + }, + { + "appid": 649740, + "normalized_name": "craft battle simulator" + }, + { + "appid": 649790, + "normalized_name": "harvest life" + }, + { + "appid": 649810, + "normalized_name": "windstorm start of a great friendship" + }, + { + "appid": 649820, + "normalized_name": "slime san blackbird's kraken" + }, + { + "appid": 649870, + "normalized_name": "nitrorage" + }, + { + "appid": 649880, + "normalized_name": "disco time 80s vr" + }, + { + "appid": 649890, + "normalized_name": "caliban below" + }, + { + "appid": 649950, + "normalized_name": "ashen" + }, + { + "appid": 649960, + "normalized_name": "happy lab" + }, + { + "appid": 649970, + "normalized_name": "hero's story" + }, + { + "appid": 649990, + "normalized_name": "writers" + }, + { + "appid": 650000, + "normalized_name": "doom vfr" + }, + { + "appid": 650010, + "normalized_name": "mob stadium" + }, + { + "appid": 650070, + "normalized_name": "overturn" + }, + { + "appid": 650120, + "normalized_name": "shots fired" + }, + { + "appid": 650220, + "normalized_name": "interplanetary enhanced" + }, + { + "appid": 650310, + "normalized_name": "journey of the sword" + }, + { + "appid": 650330, + "normalized_name": "sanator scarlet scarf" + }, + { + "appid": 650340, + "normalized_name": "tublervr" + }, + { + "appid": 650350, + "normalized_name": "machine world 2" + }, + { + "appid": 650440, + "normalized_name": "warbanners" + }, + { + "appid": 650490, + "normalized_name": "dinosaur hunt first blood" + }, + { + "appid": 650500, + "normalized_name": "wolfenstein ii the new colossus" + }, + { + "appid": 650510, + "normalized_name": "zone of the enders the 2nd runner m∀rs / アヌビス ゾーン・オブ・エンダーズ マーズ" + }, + { + "appid": 650570, + "normalized_name": "code 7 a story driven hacking adventure" + }, + { + "appid": 650600, + "normalized_name": "greece defense td" + }, + { + "appid": 650620, + "normalized_name": "the zero dome" + }, + { + "appid": 650670, + "normalized_name": "grimoire heralds of the winged exemplar (v2)" + }, + { + "appid": 650680, + "normalized_name": "golem creation kit" + }, + { + "appid": 650690, + "normalized_name": "plumber 3d" + }, + { + "appid": 650700, + "normalized_name": "yume nikki" + }, + { + "appid": 650720, + "normalized_name": "slipdrive" + }, + { + "appid": 650730, + "normalized_name": "weeping skies" + }, + { + "appid": 650740, + "normalized_name": "leap of champions" + }, + { + "appid": 650750, + "normalized_name": "hypernova escape from hadea" + }, + { + "appid": 650760, + "normalized_name": "侠客风云传前传(tale of wuxia the pre sequel)" + }, + { + "appid": 650770, + "normalized_name": "time gun / 时间枪" + }, + { + "appid": 650780, + "normalized_name": "angerforce reloaded" + }, + { + "appid": 650810, + "normalized_name": "imperatum" + }, + { + "appid": 650820, + "normalized_name": "psychic isolation" + }, + { + "appid": 650860, + "normalized_name": "wrath of loki vr adventure" + }, + { + "appid": 650880, + "normalized_name": "beyond the invisible evening" + }, + { + "appid": 650940, + "normalized_name": "rogue empire dungeon crawler rpg" + }, + { + "appid": 650980, + "normalized_name": "naklua vr" + }, + { + "appid": 650990, + "normalized_name": "run jump die repeat" + }, + { + "appid": 651010, + "normalized_name": "nurbits" + }, + { + "appid": 651080, + "normalized_name": "moon landing vr" + }, + { + "appid": 651090, + "normalized_name": "aces high iii" + }, + { + "appid": 651120, + "normalized_name": "diesel express vr" + }, + { + "appid": 651170, + "normalized_name": "deep horizon" + }, + { + "appid": 651280, + "normalized_name": "tinkerquarry" + }, + { + "appid": 651310, + "normalized_name": "hentami vendetta" + }, + { + "appid": 651340, + "normalized_name": "shephy" + }, + { + "appid": 651360, + "normalized_name": "eskimo bob starring alfonzo" + }, + { + "appid": 651370, + "normalized_name": "a rip in time" + }, + { + "appid": 651380, + "normalized_name": "bang! bang! totally accurate redneck simulator" + }, + { + "appid": 651470, + "normalized_name": "onirim solitaire card game" + }, + { + "appid": 651490, + "normalized_name": "no longer home" + }, + { + "appid": 651500, + "normalized_name": "my memory of us" + }, + { + "appid": 651520, + "normalized_name": "castle defender" + }, + { + "appid": 651550, + "normalized_name": "concperfect 2017" + }, + { + "appid": 651560, + "normalized_name": "clash of robots" + }, + { + "appid": 651600, + "normalized_name": "jumps vr" + }, + { + "appid": 651610, + "normalized_name": "booty diver" + }, + { + "appid": 651640, + "normalized_name": "the spook inspectors" + }, + { + "appid": 651650, + "normalized_name": "dunia masters" + }, + { + "appid": 651660, + "normalized_name": "halcyon 6 starbase commander (lightspeed edition)" + }, + { + "appid": 651670, + "normalized_name": "star renegades" + }, + { + "appid": 651680, + "normalized_name": "shalnor legends sacred lands" + }, + { + "appid": 651690, + "normalized_name": "double play 2 player vr baseball" + }, + { + "appid": 651820, + "normalized_name": "little miss lonely" + }, + { + "appid": 651940, + "normalized_name": "debris field" + }, + { + "appid": 651950, + "normalized_name": "collapsus" + }, + { + "appid": 651970, + "normalized_name": "neon galaxy" + }, + { + "appid": 651990, + "normalized_name": "the montana chronicles montana's croatoa" + }, + { + "appid": 652030, + "normalized_name": "tessa's ark" + }, + { + "appid": 652040, + "normalized_name": "children of apollo" + }, + { + "appid": 652050, + "normalized_name": "the labyrinth" + }, + { + "appid": 652060, + "normalized_name": "curse of the great forest" + }, + { + "appid": 652070, + "normalized_name": "bump+smack" + }, + { + "appid": 652090, + "normalized_name": "blockara" + }, + { + "appid": 652120, + "normalized_name": "humble abode" + }, + { + "appid": 652130, + "normalized_name": "lupus in fabula" + }, + { + "appid": 652140, + "normalized_name": "echo nine" + }, + { + "appid": 652160, + "normalized_name": "dc wonder unlimited" + }, + { + "appid": 652180, + "normalized_name": "vr guest" + }, + { + "appid": 652190, + "normalized_name": "emily wants to play too" + }, + { + "appid": 652200, + "normalized_name": "chromaestro" + }, + { + "appid": 652230, + "normalized_name": "crazycar" + }, + { + "appid": 652250, + "normalized_name": "pond wars" + }, + { + "appid": 652270, + "normalized_name": "dark and bright" + }, + { + "appid": 652310, + "normalized_name": "khufu's delivery service" + }, + { + "appid": 652330, + "normalized_name": "hereafter" + }, + { + "appid": 652340, + "normalized_name": "flagsplosion" + }, + { + "appid": 652360, + "normalized_name": "bff or die" + }, + { + "appid": 652390, + "normalized_name": "mr rabbit's alphabet forest adventure" + }, + { + "appid": 652410, + "normalized_name": "brigand oaxaca" + }, + { + "appid": 652460, + "normalized_name": "fragmentum" + }, + { + "appid": 652470, + "normalized_name": "hex tunnel" + }, + { + "appid": 652480, + "normalized_name": "killbox" + }, + { + "appid": 652510, + "normalized_name": "escape room reality" + }, + { + "appid": 652530, + "normalized_name": "potentia" + }, + { + "appid": 652540, + "normalized_name": "mocove arts vr" + }, + { + "appid": 652550, + "normalized_name": "vickinachi" + }, + { + "appid": 652560, + "normalized_name": "beached" + }, + { + "appid": 652570, + "normalized_name": "mystika 3 awakening of the dragons" + }, + { + "appid": 652600, + "normalized_name": "descent silence of mind" + }, + { + "appid": 652610, + "normalized_name": "stick nightmare" + }, + { + "appid": 652660, + "normalized_name": "esport manager" + }, + { + "appid": 652700, + "normalized_name": "equivoque" + }, + { + "appid": 652730, + "normalized_name": "z aftershock" + }, + { + "appid": 652750, + "normalized_name": "polygon hero" + }, + { + "appid": 652760, + "normalized_name": "watchlist" + }, + { + "appid": 652770, + "normalized_name": "zofia" + }, + { + "appid": 652780, + "normalized_name": "the mutational" + }, + { + "appid": 652800, + "normalized_name": "sojourner" + }, + { + "appid": 652810, + "normalized_name": "grabity" + }, + { + "appid": 652830, + "normalized_name": "lost legends the pharaoh's tomb" + }, + { + "appid": 652880, + "normalized_name": "samsara" + }, + { + "appid": 652890, + "normalized_name": "vanguard knights" + }, + { + "appid": 652900, + "normalized_name": "the mechanical room vr" + }, + { + "appid": 652910, + "normalized_name": "delay" + }, + { + "appid": 652940, + "normalized_name": "pyxel knight" + }, + { + "appid": 652950, + "normalized_name": "maggie's apartment" + }, + { + "appid": 652980, + "normalized_name": "loading screen simulator" + }, + { + "appid": 652990, + "normalized_name": "eternal maze" + }, + { + "appid": 653020, + "normalized_name": "lumins and shades" + }, + { + "appid": 653050, + "normalized_name": "undertaker's" + }, + { + "appid": 653060, + "normalized_name": "the siege and the sandfox" + }, + { + "appid": 653080, + "normalized_name": "inflatality" + }, + { + "appid": 653100, + "normalized_name": "puzzle bloc invasion" + }, + { + "appid": 653120, + "normalized_name": "rockshot" + }, + { + "appid": 653130, + "normalized_name": "pocket assault" + }, + { + "appid": 653190, + "normalized_name": "spacebound" + }, + { + "appid": 653210, + "normalized_name": "prisoner" + }, + { + "appid": 653220, + "normalized_name": "chroma blast" + }, + { + "appid": 653530, + "normalized_name": "return of the obra dinn" + }, + { + "appid": 653550, + "normalized_name": "spin the beat" + }, + { + "appid": 653760, + "normalized_name": "crushing blow" + }, + { + "appid": 653770, + "normalized_name": "the first time i died" + }, + { + "appid": 653780, + "normalized_name": "defend your kingdom" + }, + { + "appid": 653840, + "normalized_name": "the contractor" + }, + { + "appid": 653850, + "normalized_name": "cave escape" + }, + { + "appid": 653870, + "normalized_name": "cavern crumblers" + }, + { + "appid": 653920, + "normalized_name": "darkest wave" + }, + { + "appid": 653930, + "normalized_name": "tiny town vr" + }, + { + "appid": 653940, + "normalized_name": "zafehouse diaries 2" + }, + { + "appid": 653950, + "normalized_name": "your smile beyond twilight 黄昏下的月台上" + }, + { + "appid": 653960, + "normalized_name": "dinoblaster" + }, + { + "appid": 653970, + "normalized_name": "virtual temple order of the golden dawn" + }, + { + "appid": 654000, + "normalized_name": "a quick death" + }, + { + "appid": 654010, + "normalized_name": "project mallow" + }, + { + "appid": 654020, + "normalized_name": "ben the exorcist" + }, + { + "appid": 654060, + "normalized_name": "war chariots royal legion" + }, + { + "appid": 654070, + "normalized_name": "escape room" + }, + { + "appid": 654080, + "normalized_name": "der einzig wahre auserwählte" + }, + { + "appid": 654090, + "normalized_name": "high clear vr" + }, + { + "appid": 654100, + "normalized_name": "rival megagun" + }, + { + "appid": 654110, + "normalized_name": "fisher fans vr" + }, + { + "appid": 654200, + "normalized_name": "seven reboot" + }, + { + "appid": 654220, + "normalized_name": "flash point fire rescue" + }, + { + "appid": 654240, + "normalized_name": "xenoslaive overdrive" + }, + { + "appid": 654250, + "normalized_name": "catacombs 1 demon war" + }, + { + "appid": 654260, + "normalized_name": "旧手表 old watch" + }, + { + "appid": 654300, + "normalized_name": "darkest hunters" + }, + { + "appid": 654350, + "normalized_name": "cyber utopia" + }, + { + "appid": 654390, + "normalized_name": "dialogue a writer's story" + }, + { + "appid": 654400, + "normalized_name": "shank n' bake" + }, + { + "appid": 654430, + "normalized_name": "status insane" + }, + { + "appid": 654440, + "normalized_name": "isotiles isometric puzzle game" + }, + { + "appid": 654450, + "normalized_name": "exorcise the demons" + }, + { + "appid": 654470, + "normalized_name": "blood waves" + }, + { + "appid": 654500, + "normalized_name": "super xyx" + }, + { + "appid": 654520, + "normalized_name": "travel riddles trip to greece" + }, + { + "appid": 654550, + "normalized_name": "football game" + }, + { + "appid": 654570, + "normalized_name": "history2048 3d puzzle number game" + }, + { + "appid": 654580, + "normalized_name": "senalux" + }, + { + "appid": 654600, + "normalized_name": "powball renaissance" + }, + { + "appid": 654610, + "normalized_name": "mr. dubstep" + }, + { + "appid": 654630, + "normalized_name": "dreamblaster" + }, + { + "appid": 654640, + "normalized_name": "7 pillars" + }, + { + "appid": 654660, + "normalized_name": "pharmakon tactical puzzle" + }, + { + "appid": 654670, + "normalized_name": "rps runner" + }, + { + "appid": 654680, + "normalized_name": "ziggurat 3d chess" + }, + { + "appid": 654700, + "normalized_name": "unearthing process" + }, + { + "appid": 654710, + "normalized_name": "ashes" + }, + { + "appid": 654740, + "normalized_name": "stick engine" + }, + { + "appid": 654750, + "normalized_name": "square x square" + }, + { + "appid": 654770, + "normalized_name": "ballway" + }, + { + "appid": 654800, + "normalized_name": "guts and syringes" + }, + { + "appid": 654810, + "normalized_name": "a snake's tale" + }, + { + "appid": 654820, + "normalized_name": "akin vol 2" + }, + { + "appid": 654840, + "normalized_name": "i want toilet!!!!!!" + }, + { + "appid": 654850, + "normalized_name": "masked forces zombie survival" + }, + { + "appid": 654860, + "normalized_name": "panic in puzzle world" + }, + { + "appid": 654880, + "normalized_name": "dream daddy a dad dating simulator" + }, + { + "appid": 654890, + "normalized_name": "grand tactician the civil war (1861 1865)" + }, + { + "appid": 654900, + "normalized_name": "qop" + }, + { + "appid": 654910, + "normalized_name": "yankai's peak." + }, + { + "appid": 654940, + "normalized_name": "rxe" + }, + { + "appid": 654950, + "normalized_name": "labyrinth escape" + }, + { + "appid": 654960, + "normalized_name": "the eldritch zookeeper" + }, + { + "appid": 654970, + "normalized_name": "numberline 2" + }, + { + "appid": 654980, + "normalized_name": "inferno puzzle" + }, + { + "appid": 654990, + "normalized_name": "dude simulator" + }, + { + "appid": 655000, + "normalized_name": "masked forces 2 mystic demons" + }, + { + "appid": 655030, + "normalized_name": "simple light cycles" + }, + { + "appid": 655040, + "normalized_name": "deltaplan simulator" + }, + { + "appid": 655080, + "normalized_name": "crazy ball adventures" + }, + { + "appid": 655100, + "normalized_name": "oik 3" + }, + { + "appid": 655110, + "normalized_name": "final prophet" + }, + { + "appid": 655160, + "normalized_name": "welcome to heaven" + }, + { + "appid": 655170, + "normalized_name": "telepathy zero" + }, + { + "appid": 655180, + "normalized_name": "thinkahead" + }, + { + "appid": 655200, + "normalized_name": "arena" + }, + { + "appid": 655220, + "normalized_name": "freedom a time to reckon" + }, + { + "appid": 655250, + "normalized_name": "insectophobia episode 1" + }, + { + "appid": 655270, + "normalized_name": "eponymous" + }, + { + "appid": 655280, + "normalized_name": "ping" + }, + { + "appid": 655290, + "normalized_name": "escape the pacific" + }, + { + "appid": 655350, + "normalized_name": "astro duel 2" + }, + { + "appid": 655360, + "normalized_name": "aftermath y2k" + }, + { + "appid": 655370, + "normalized_name": "train bandit" + }, + { + "appid": 655380, + "normalized_name": "dig dog" + }, + { + "appid": 655420, + "normalized_name": "simple rts" + }, + { + "appid": 655430, + "normalized_name": "tiger hunt" + }, + { + "appid": 655440, + "normalized_name": "panzer killer" + }, + { + "appid": 655460, + "normalized_name": "hooligan vasja halloween" + }, + { + "appid": 655480, + "normalized_name": "solar settlers" + }, + { + "appid": 655490, + "normalized_name": "geneticognito" + }, + { + "appid": 655500, + "normalized_name": "mx bikes" + }, + { + "appid": 655520, + "normalized_name": "tick tick pass" + }, + { + "appid": 655530, + "normalized_name": "ragdoll kanojo" + }, + { + "appid": 655550, + "normalized_name": "nokbak" + }, + { + "appid": 655580, + "normalized_name": "micro cosmic worlds" + }, + { + "appid": 655600, + "normalized_name": "phat stacks 2" + }, + { + "appid": 655610, + "normalized_name": "horse racing 2016" + }, + { + "appid": 655620, + "normalized_name": "krieg" + }, + { + "appid": 655630, + "normalized_name": "paddle battle" + }, + { + "appid": 655640, + "normalized_name": "hockey space" + }, + { + "appid": 655650, + "normalized_name": "mahjong masters temple of the ten gods" + }, + { + "appid": 655660, + "normalized_name": "screaming eagles" + }, + { + "appid": 655670, + "normalized_name": "tense reflection" + }, + { + "appid": 655700, + "normalized_name": "f.e.x (forced evolution experiment)" + }, + { + "appid": 655710, + "normalized_name": "tick hunter" + }, + { + "appid": 655730, + "normalized_name": "this strange realm of mine" + }, + { + "appid": 655740, + "normalized_name": "tallowmere 2 curse of the kittens" + }, + { + "appid": 655750, + "normalized_name": "trigger spree" + }, + { + "appid": 655760, + "normalized_name": "beast mode night of the werewolf silver bullet" + }, + { + "appid": 655770, + "normalized_name": "crimson gray" + }, + { + "appid": 655780, + "normalized_name": "project 5 sightseer" + }, + { + "appid": 655790, + "normalized_name": "fly simulator" + }, + { + "appid": 655910, + "normalized_name": "bullet party" + }, + { + "appid": 655930, + "normalized_name": "merri puzzle" + }, + { + "appid": 655940, + "normalized_name": "elo hell" + }, + { + "appid": 655950, + "normalized_name": "exocomets" + }, + { + "appid": 655980, + "normalized_name": "wonfourn" + }, + { + "appid": 656020, + "normalized_name": "beta runner" + }, + { + "appid": 656040, + "normalized_name": "the wolf's bite" + }, + { + "appid": 656060, + "normalized_name": "skify" + }, + { + "appid": 656070, + "normalized_name": "better off tread" + }, + { + "appid": 656100, + "normalized_name": "mr. triangle's maze" + }, + { + "appid": 656130, + "normalized_name": "king erik" + }, + { + "appid": 656140, + "normalized_name": "planets of war" + }, + { + "appid": 656170, + "normalized_name": "radianvr" + }, + { + "appid": 656190, + "normalized_name": "the houchi play the 放置プレイ" + }, + { + "appid": 656200, + "normalized_name": "电竞俱乐部/esports club" + }, + { + "appid": 656210, + "normalized_name": "romby" + }, + { + "appid": 656220, + "normalized_name": "sorcerer's dream" + }, + { + "appid": 656240, + "normalized_name": "heat" + }, + { + "appid": 656260, + "normalized_name": "apex tournament" + }, + { + "appid": 656280, + "normalized_name": "fractus" + }, + { + "appid": 656300, + "normalized_name": "rd's adventure mini golf" + }, + { + "appid": 656320, + "normalized_name": "planet protector vr" + }, + { + "appid": 656330, + "normalized_name": "outpost l5" + }, + { + "appid": 656350, + "normalized_name": "undermine" + }, + { + "appid": 656360, + "normalized_name": "bounced" + }, + { + "appid": 656380, + "normalized_name": "chicken daddy" + }, + { + "appid": 656400, + "normalized_name": "attrition tactical fronts" + }, + { + "appid": 656440, + "normalized_name": "explomania" + }, + { + "appid": 656450, + "normalized_name": "alien hallway 2" + }, + { + "appid": 656460, + "normalized_name": "vostok inc." + }, + { + "appid": 656480, + "normalized_name": "hidden animals english spanish" + }, + { + "appid": 656490, + "normalized_name": "automobile tycoon" + }, + { + "appid": 656510, + "normalized_name": "epic car factory" + }, + { + "appid": 656530, + "normalized_name": "pro gamer manager 2" + }, + { + "appid": 656540, + "normalized_name": "a2be a science fiction narrative" + }, + { + "appid": 656550, + "normalized_name": "shadow bug" + }, + { + "appid": 656560, + "normalized_name": "castaway home designer" + }, + { + "appid": 656570, + "normalized_name": "in the raven shadow" + }, + { + "appid": 656580, + "normalized_name": "claws of furry" + }, + { + "appid": 656590, + "normalized_name": "eight minute empire" + }, + { + "appid": 656600, + "normalized_name": "slash it" + }, + { + "appid": 656610, + "normalized_name": "red wake carnage" + }, + { + "appid": 656620, + "normalized_name": "circuit warz" + }, + { + "appid": 656630, + "normalized_name": "dead of night" + }, + { + "appid": 656640, + "normalized_name": "kalzor 2000" + }, + { + "appid": 656660, + "normalized_name": "fantasy mosaics 15 ancient land" + }, + { + "appid": 656680, + "normalized_name": "bomb defense" + }, + { + "appid": 656690, + "normalized_name": "medieval steve" + }, + { + "appid": 656700, + "normalized_name": "rico" + }, + { + "appid": 656730, + "normalized_name": "block robot mini survival game" + }, + { + "appid": 656740, + "normalized_name": "cosmonator" + }, + { + "appid": 656780, + "normalized_name": "bullyparade der spiel" + }, + { + "appid": 656800, + "normalized_name": "infestus" + }, + { + "appid": 656840, + "normalized_name": "death maze" + }, + { + "appid": 656880, + "normalized_name": "cybercube" + }, + { + "appid": 656890, + "normalized_name": "jewel venture" + }, + { + "appid": 656900, + "normalized_name": "rhem i se the mysterious land" + }, + { + "appid": 656910, + "normalized_name": "space hit" + }, + { + "appid": 656940, + "normalized_name": "the theodore adventures" + }, + { + "appid": 656970, + "normalized_name": "magicat" + }, + { + "appid": 657000, + "normalized_name": "rising hell" + }, + { + "appid": 657010, + "normalized_name": "lucky night texas hold'em vr" + }, + { + "appid": 657020, + "normalized_name": "save dash" + }, + { + "appid": 657040, + "normalized_name": "the myth seekers the legacy of vulcan" + }, + { + "appid": 657050, + "normalized_name": "humanity must perish" + }, + { + "appid": 657060, + "normalized_name": "himegimi detective" + }, + { + "appid": 657070, + "normalized_name": "dream hills captured magic" + }, + { + "appid": 657080, + "normalized_name": "project taurus" + }, + { + "appid": 657090, + "normalized_name": "robothorium" + }, + { + "appid": 657110, + "normalized_name": "2 planets fire and ice" + }, + { + "appid": 657120, + "normalized_name": "flix and chill 2 millennials" + }, + { + "appid": 657170, + "normalized_name": "shoot 'm up" + }, + { + "appid": 657200, + "normalized_name": "hand simulator" + }, + { + "appid": 657210, + "normalized_name": "the afterwoods" + }, + { + "appid": 657230, + "normalized_name": "spirit of the ancient forest" + }, + { + "appid": 657240, + "normalized_name": "tracks the train set game" + }, + { + "appid": 657250, + "normalized_name": "maid delight" + }, + { + "appid": 657260, + "normalized_name": "救う(she save)" + }, + { + "appid": 657290, + "normalized_name": "blind men" + }, + { + "appid": 657300, + "normalized_name": "party crashers" + }, + { + "appid": 657400, + "normalized_name": "mimic hunter" + }, + { + "appid": 657410, + "normalized_name": "electronics circuits simulator" + }, + { + "appid": 657440, + "normalized_name": "burn it down" + }, + { + "appid": 657450, + "normalized_name": "claybreaker vr clay shooting" + }, + { + "appid": 657470, + "normalized_name": "take off the flight simulator" + }, + { + "appid": 657480, + "normalized_name": "dark skies the nemansk incident" + }, + { + "appid": 657500, + "normalized_name": "hold the line the american revolution" + }, + { + "appid": 657530, + "normalized_name": "impresja" + }, + { + "appid": 657550, + "normalized_name": "quadrantica" + }, + { + "appid": 657580, + "normalized_name": "what!? my neighbors are demons!!?" + }, + { + "appid": 657590, + "normalized_name": "grav blazer" + }, + { + "appid": 657630, + "normalized_name": "fidget spinner" + }, + { + "appid": 657660, + "normalized_name": "shaman flower" + }, + { + "appid": 657690, + "normalized_name": "the caribbean sail" + }, + { + "appid": 657700, + "normalized_name": "the automatician" + }, + { + "appid": 657780, + "normalized_name": "rome circus maximus chariot race vr" + }, + { + "appid": 657790, + "normalized_name": "defense of roman britain" + }, + { + "appid": 657860, + "normalized_name": "dragon's prophet turkiye" + }, + { + "appid": 657990, + "normalized_name": "crafting dead" + }, + { + "appid": 658050, + "normalized_name": "the dragons' twilight" + }, + { + "appid": 658060, + "normalized_name": "valentine panic" + }, + { + "appid": 658090, + "normalized_name": "galaxy crash" + }, + { + "appid": 658120, + "normalized_name": "mad sector" + }, + { + "appid": 658140, + "normalized_name": "sakura sakura" + }, + { + "appid": 658150, + "normalized_name": "skeleton boomerang" + }, + { + "appid": 658160, + "normalized_name": "clickraid" + }, + { + "appid": 658210, + "normalized_name": "mega maze" + }, + { + "appid": 658230, + "normalized_name": "chambered" + }, + { + "appid": 658250, + "normalized_name": "xtrike" + }, + { + "appid": 658260, + "normalized_name": "blue reflection" + }, + { + "appid": 658280, + "normalized_name": "dungeon; friends escape!" + }, + { + "appid": 658340, + "normalized_name": "edge of insanity" + }, + { + "appid": 658390, + "normalized_name": "tunnel runner vr" + }, + { + "appid": 658400, + "normalized_name": "baseball mogul 2017" + }, + { + "appid": 658430, + "normalized_name": "professor watts word search into the ocean" + }, + { + "appid": 658450, + "normalized_name": "lil' blue buddy" + }, + { + "appid": 658470, + "normalized_name": "mini battlegrounds" + }, + { + "appid": 658480, + "normalized_name": "starfighter general" + }, + { + "appid": 658490, + "normalized_name": "drive isle" + }, + { + "appid": 658500, + "normalized_name": "ultra space battle brawl" + }, + { + "appid": 658510, + "normalized_name": "dark eden origin" + }, + { + "appid": 658530, + "normalized_name": "grisaia phantom trigger vol.3" + }, + { + "appid": 658550, + "normalized_name": "zup! zero 2" + }, + { + "appid": 658560, + "normalized_name": "zup! 7" + }, + { + "appid": 658570, + "normalized_name": "furidashi drift cyber sport" + }, + { + "appid": 658590, + "normalized_name": "she and the light bearer" + }, + { + "appid": 658600, + "normalized_name": "lawnmower game" + }, + { + "appid": 658610, + "normalized_name": "位面穿越者 三国传(a bit crosser three kingdoms)" + }, + { + "appid": 658620, + "normalized_name": "wonderful everyday down the rabbit hole" + }, + { + "appid": 658630, + "normalized_name": "anonymous me" + }, + { + "appid": 658660, + "normalized_name": "way of defector" + }, + { + "appid": 658690, + "normalized_name": "rage in peace" + }, + { + "appid": 658700, + "normalized_name": "v rally 4" + }, + { + "appid": 658710, + "normalized_name": "pine seekers" + }, + { + "appid": 658760, + "normalized_name": "teal" + }, + { + "appid": 658770, + "normalized_name": "dreamals dream quest" + }, + { + "appid": 658780, + "normalized_name": "bomb chicken" + }, + { + "appid": 658790, + "normalized_name": "samurai riot" + }, + { + "appid": 658800, + "normalized_name": "fantasy mosaics 16 six colors in wonderland" + }, + { + "appid": 658810, + "normalized_name": "flux8" + }, + { + "appid": 658830, + "normalized_name": "artificer science of magic" + }, + { + "appid": 658850, + "normalized_name": "do not feed the monkeys" + }, + { + "appid": 658870, + "normalized_name": "exit 2 directions" + }, + { + "appid": 658880, + "normalized_name": "jammerball" + }, + { + "appid": 658890, + "normalized_name": "arthurian legends" + }, + { + "appid": 658970, + "normalized_name": "casinorpg" + }, + { + "appid": 658980, + "normalized_name": "valnir rok survival rpg" + }, + { + "appid": 658990, + "normalized_name": "icycle on thin ice" + }, + { + "appid": 659000, + "normalized_name": "meta star" + }, + { + "appid": 659040, + "normalized_name": "intrusion protocol" + }, + { + "appid": 659060, + "normalized_name": "omega racers" + }, + { + "appid": 659110, + "normalized_name": "vicious attack llama apocalypse" + }, + { + "appid": 659130, + "normalized_name": "shopping tycoon" + }, + { + "appid": 659140, + "normalized_name": "titan saga chains of kronos" + }, + { + "appid": 659150, + "normalized_name": "dark train coupe" + }, + { + "appid": 659160, + "normalized_name": "rain of pumpkins" + }, + { + "appid": 659170, + "normalized_name": "super flipside" + }, + { + "appid": 659180, + "normalized_name": "medieval mystery match" + }, + { + "appid": 659190, + "normalized_name": "sorry james" + }, + { + "appid": 659220, + "normalized_name": "project maze" + }, + { + "appid": 659260, + "normalized_name": "canvas quest" + }, + { + "appid": 659300, + "normalized_name": "super farming boy" + }, + { + "appid": 659320, + "normalized_name": "pixel pursuit" + }, + { + "appid": 659330, + "normalized_name": "rubber toys" + }, + { + "appid": 659460, + "normalized_name": "riotz" + }, + { + "appid": 659480, + "normalized_name": "the initiate" + }, + { + "appid": 659490, + "normalized_name": "devil in the capital" + }, + { + "appid": 659500, + "normalized_name": "a mining game" + }, + { + "appid": 659510, + "normalized_name": "ghostie quest" + }, + { + "appid": 659540, + "normalized_name": "warsim the realm of aslona" + }, + { + "appid": 659560, + "normalized_name": "vitatio" + }, + { + "appid": 659630, + "normalized_name": "tiny toyfare" + }, + { + "appid": 659760, + "normalized_name": "synthetic dreams" + }, + { + "appid": 659780, + "normalized_name": "darkness and a crowd" + }, + { + "appid": 659790, + "normalized_name": "hero of the galactic core" + }, + { + "appid": 659810, + "normalized_name": "bead" + }, + { + "appid": 659830, + "normalized_name": "the war god the artifact" + }, + { + "appid": 659840, + "normalized_name": "wwr warfare robots" + }, + { + "appid": 659860, + "normalized_name": "作业本战记(exercise book epic)" + }, + { + "appid": 659870, + "normalized_name": "don't die!" + }, + { + "appid": 659890, + "normalized_name": "fantasy mosaics 17 new palette" + }, + { + "appid": 659900, + "normalized_name": "aetherspace" + }, + { + "appid": 659910, + "normalized_name": "loptice" + }, + { + "appid": 659920, + "normalized_name": "transports" + }, + { + "appid": 659940, + "normalized_name": "travel riddles trip to france" + }, + { + "appid": 659950, + "normalized_name": "travel riddles trip to italy" + }, + { + "appid": 659960, + "normalized_name": "legends of hidden sword" + }, + { + "appid": 660030, + "normalized_name": "fantasy mosaics 18 explore new colors" + }, + { + "appid": 660040, + "normalized_name": "diving trunks" + }, + { + "appid": 660070, + "normalized_name": "chromatic" + }, + { + "appid": 660110, + "normalized_name": "depthmera" + }, + { + "appid": 660160, + "normalized_name": "field of glory ii" + }, + { + "appid": 660170, + "normalized_name": "haunted hotel stay in the light" + }, + { + "appid": 660180, + "normalized_name": "seduction 誘惑" + }, + { + "appid": 660200, + "normalized_name": "transistor defense" + }, + { + "appid": 660270, + "normalized_name": "space scumbags" + }, + { + "appid": 660280, + "normalized_name": "keep it safe 2" + }, + { + "appid": 660290, + "normalized_name": "dungeons & geese" + }, + { + "appid": 660320, + "normalized_name": "m.a.c.e. tower defense" + }, + { + "appid": 660340, + "normalized_name": "robot king part i rebooted and ready" + }, + { + "appid": 660390, + "normalized_name": "rageball" + }, + { + "appid": 660400, + "normalized_name": "squarehead" + }, + { + "appid": 660450, + "normalized_name": "orbs" + }, + { + "appid": 660520, + "normalized_name": "the iota project" + }, + { + "appid": 660560, + "normalized_name": "fishing on the fly" + }, + { + "appid": 660730, + "normalized_name": "ventura inc" + }, + { + "appid": 660760, + "normalized_name": "bouncing odyssey" + }, + { + "appid": 660800, + "normalized_name": "blossoming yandere 満開 ヤンデレ" + }, + { + "appid": 660820, + "normalized_name": "retro block vr" + }, + { + "appid": 660860, + "normalized_name": "cube monster" + }, + { + "appid": 660880, + "normalized_name": "b" + }, + { + "appid": 660890, + "normalized_name": "kronostasis" + }, + { + "appid": 660900, + "normalized_name": "dark mystery" + }, + { + "appid": 660920, + "normalized_name": "the warhorn" + }, + { + "appid": 660940, + "normalized_name": "law mower" + }, + { + "appid": 660970, + "normalized_name": "persian the great lamp heist" + }, + { + "appid": 660980, + "normalized_name": "quantum wizard" + }, + { + "appid": 660990, + "normalized_name": "dead purge outbreak" + }, + { + "appid": 661000, + "normalized_name": "flow the sliding" + }, + { + "appid": 661030, + "normalized_name": "aliens&asteroids" + }, + { + "appid": 661040, + "normalized_name": "time trap mystery hidden object games. finding objects" + }, + { + "appid": 661050, + "normalized_name": "quadrablaze" + }, + { + "appid": 661070, + "normalized_name": "perigee" + }, + { + "appid": 661100, + "normalized_name": "abraxas interactive's push" + }, + { + "appid": 661110, + "normalized_name": "shattered god quest for the divine relic" + }, + { + "appid": 661120, + "normalized_name": "mercury cascade into madness" + }, + { + "appid": 661130, + "normalized_name": "chilloutvr" + }, + { + "appid": 661180, + "normalized_name": "simplefield" + }, + { + "appid": 661190, + "normalized_name": "undefined" + }, + { + "appid": 661200, + "normalized_name": "cymatically muffed" + }, + { + "appid": 661220, + "normalized_name": "cutthroat gunboat" + }, + { + "appid": 661230, + "normalized_name": "progress bar simulator" + }, + { + "appid": 661240, + "normalized_name": "visitors marine invasion" + }, + { + "appid": 661250, + "normalized_name": "jarheads" + }, + { + "appid": 661260, + "normalized_name": "bad thoughts" + }, + { + "appid": 661270, + "normalized_name": "valhall 2000" + }, + { + "appid": 661280, + "normalized_name": "dresden files cooperative card game" + }, + { + "appid": 661290, + "normalized_name": "arizona derby" + }, + { + "appid": 661300, + "normalized_name": "radical spectrum volume 2" + }, + { + "appid": 661330, + "normalized_name": "layers" + }, + { + "appid": 661340, + "normalized_name": "tyred" + }, + { + "appid": 661360, + "normalized_name": "glitchbuster" + }, + { + "appid": 661380, + "normalized_name": "orbit defender" + }, + { + "appid": 661410, + "normalized_name": "the unclogging an unsanitary saga" + }, + { + "appid": 661420, + "normalized_name": "run for coins" + }, + { + "appid": 661430, + "normalized_name": "lineway" + }, + { + "appid": 661440, + "normalized_name": "prelude for a dream" + }, + { + "appid": 661450, + "normalized_name": "the lighthouse" + }, + { + "appid": 661460, + "normalized_name": "thin judgment" + }, + { + "appid": 661470, + "normalized_name": "the gateway trilogy" + }, + { + "appid": 661480, + "normalized_name": "unione" + }, + { + "appid": 661490, + "normalized_name": "insert paper" + }, + { + "appid": 661500, + "normalized_name": "rekindling" + }, + { + "appid": 661520, + "normalized_name": "archangel" + }, + { + "appid": 661530, + "normalized_name": "gold rush in the oort cloud" + }, + { + "appid": 661550, + "normalized_name": "space geekz the crunchy flakes conspiracy" + }, + { + "appid": 661560, + "normalized_name": "audioship" + }, + { + "appid": 661650, + "normalized_name": "roll out" + }, + { + "appid": 661670, + "normalized_name": "renegade grounds episode 1" + }, + { + "appid": 661680, + "normalized_name": "growbot" + }, + { + "appid": 661690, + "normalized_name": "primal lands" + }, + { + "appid": 661700, + "normalized_name": "心の闇の先に trial versionⅱ" + }, + { + "appid": 661730, + "normalized_name": "dawn of h'btakh" + }, + { + "appid": 661740, + "normalized_name": "morphite" + }, + { + "appid": 661750, + "normalized_name": "a purrtato tail by the light of the elderstar" + }, + { + "appid": 661790, + "normalized_name": "witch hunt" + }, + { + "appid": 661820, + "normalized_name": "i.f.o" + }, + { + "appid": 661830, + "normalized_name": "lunarsea" + }, + { + "appid": 661900, + "normalized_name": "planetbound" + }, + { + "appid": 661920, + "normalized_name": "claybook" + }, + { + "appid": 661940, + "normalized_name": "regular human basketball" + }, + { + "appid": 661950, + "normalized_name": "flyingrock arena" + }, + { + "appid": 661960, + "normalized_name": "dragon lords 3d strategy" + }, + { + "appid": 661970, + "normalized_name": "space battle humanity" + }, + { + "appid": 661990, + "normalized_name": "arcana heart 3 lovemax sixstars!!!!!! xtend" + }, + { + "appid": 662000, + "normalized_name": "startron" + }, + { + "appid": 662170, + "normalized_name": "secrets of the past mother's diary" + }, + { + "appid": 662180, + "normalized_name": "signals of chaos" + }, + { + "appid": 662190, + "normalized_name": "the secret order 6 bloodline" + }, + { + "appid": 662200, + "normalized_name": "swim out" + }, + { + "appid": 662210, + "normalized_name": "metal as phuk" + }, + { + "appid": 662220, + "normalized_name": "overlogging" + }, + { + "appid": 662230, + "normalized_name": "trendpoker 3d texas hold'em poker" + }, + { + "appid": 662240, + "normalized_name": "epitasis" + }, + { + "appid": 662260, + "normalized_name": "on earth as it is in heaven a kinetic novel" + }, + { + "appid": 662340, + "normalized_name": "renaine" + }, + { + "appid": 662380, + "normalized_name": "project x" + }, + { + "appid": 662390, + "normalized_name": "squish and the corrupted crystal" + }, + { + "appid": 662400, + "normalized_name": "steampunk action battle simulator" + }, + { + "appid": 662410, + "normalized_name": "circuit dude" + }, + { + "appid": 662440, + "normalized_name": "strategeist" + }, + { + "appid": 662470, + "normalized_name": "soundlites" + }, + { + "appid": 662500, + "normalized_name": "vault resort" + }, + { + "appid": 662540, + "normalized_name": "haque" + }, + { + "appid": 662550, + "normalized_name": "beraltors" + }, + { + "appid": 662570, + "normalized_name": "united tactics" + }, + { + "appid": 662610, + "normalized_name": "spacemerc" + }, + { + "appid": 662660, + "normalized_name": "dirty fighter 2" + }, + { + "appid": 662680, + "normalized_name": "beetle uprising" + }, + { + "appid": 662690, + "normalized_name": "fos" + }, + { + "appid": 662700, + "normalized_name": "chop and drop vr" + }, + { + "appid": 662720, + "normalized_name": "mage rumble" + }, + { + "appid": 662780, + "normalized_name": "crystal reign" + }, + { + "appid": 662830, + "normalized_name": "bombix" + }, + { + "appid": 662840, + "normalized_name": "abo khashem" + }, + { + "appid": 662870, + "normalized_name": "the cerberus project horde arena fps" + }, + { + "appid": 662910, + "normalized_name": "cash crop" + }, + { + "appid": 662920, + "normalized_name": "westslingers" + }, + { + "appid": 662930, + "normalized_name": "dominari empires" + }, + { + "appid": 662940, + "normalized_name": "never not shooting" + }, + { + "appid": 662950, + "normalized_name": "cloudcity vr" + }, + { + "appid": 662960, + "normalized_name": "mysteria ~occult shadows~" + }, + { + "appid": 662990, + "normalized_name": "eddy紫 ~eddy violet~" + }, + { + "appid": 663020, + "normalized_name": "cutlass" + }, + { + "appid": 663060, + "normalized_name": "cycle (轮回)" + }, + { + "appid": 663080, + "normalized_name": "rectracer" + }, + { + "appid": 663090, + "normalized_name": "granado espada" + }, + { + "appid": 663100, + "normalized_name": "thrust & shoot flight school" + }, + { + "appid": 663110, + "normalized_name": "sunrise survival" + }, + { + "appid": 663120, + "normalized_name": "the rosebud condominium" + }, + { + "appid": 663130, + "normalized_name": "game tengoku cruisinmix special" + }, + { + "appid": 663140, + "normalized_name": "robby's adventure" + }, + { + "appid": 663160, + "normalized_name": "pocket universe create your community" + }, + { + "appid": 663190, + "normalized_name": "dream coaster vr" + }, + { + "appid": 663200, + "normalized_name": "rift coaster hd vr" + }, + { + "appid": 663210, + "normalized_name": "12 labours of hercules vii fleecing the fleece (platinum edition)" + }, + { + "appid": 663220, + "normalized_name": "bottle_shooter" + }, + { + "appid": 663240, + "normalized_name": "all you can eat" + }, + { + "appid": 663250, + "normalized_name": "professional farmer american dream" + }, + { + "appid": 663290, + "normalized_name": "dead by death" + }, + { + "appid": 663300, + "normalized_name": "enlightenment" + }, + { + "appid": 663330, + "normalized_name": "janusz the handyman adventure" + }, + { + "appid": 663370, + "normalized_name": "the zwuggels a beach holiday adventure for kids" + }, + { + "appid": 663390, + "normalized_name": "rento fortune online dice board game (大富翁)" + }, + { + "appid": 663410, + "normalized_name": "circle up" + }, + { + "appid": 663430, + "normalized_name": "this is not rpg" + }, + { + "appid": 663480, + "normalized_name": "fungoids steam version" + }, + { + "appid": 663530, + "normalized_name": "dragon's lunch" + }, + { + "appid": 663540, + "normalized_name": "murder..." + }, + { + "appid": 663570, + "normalized_name": "protocol rift" + }, + { + "appid": 663590, + "normalized_name": "foxfolk" + }, + { + "appid": 663600, + "normalized_name": "genie" + }, + { + "appid": 663690, + "normalized_name": "rival rampage" + }, + { + "appid": 663760, + "normalized_name": "outgun" + }, + { + "appid": 663830, + "normalized_name": "george vs bonny pp wars" + }, + { + "appid": 663920, + "normalized_name": "died of fear" + }, + { + "appid": 663940, + "normalized_name": "rotoscape" + }, + { + "appid": 663950, + "normalized_name": "ruin" + }, + { + "appid": 663970, + "normalized_name": "giant slayers" + }, + { + "appid": 664000, + "normalized_name": "hammerhelm" + }, + { + "appid": 664010, + "normalized_name": "la llorona wants your soul" + }, + { + "appid": 664030, + "normalized_name": "time to walk alone" + }, + { + "appid": 664040, + "normalized_name": "staff wars wizard rumble" + }, + { + "appid": 664050, + "normalized_name": "stoptime drive" + }, + { + "appid": 664060, + "normalized_name": "willful" + }, + { + "appid": 664080, + "normalized_name": "turn your destiny" + }, + { + "appid": 664090, + "normalized_name": "eternity warriors vr" + }, + { + "appid": 664110, + "normalized_name": "void wisp" + }, + { + "appid": 664120, + "normalized_name": "wildlife park gold reloaded" + }, + { + "appid": 664130, + "normalized_name": "僕と彼の危険な同居生活" + }, + { + "appid": 664140, + "normalized_name": "isoboom" + }, + { + "appid": 664160, + "normalized_name": "shn!p" + }, + { + "appid": 664180, + "normalized_name": "draw puzzle 画之谜" + }, + { + "appid": 664190, + "normalized_name": "slide!!" + }, + { + "appid": 664210, + "normalized_name": "boxed in" + }, + { + "appid": 664240, + "normalized_name": "retrowar 8 bit party battle" + }, + { + "appid": 664250, + "normalized_name": "equimagic galashow of horses" + }, + { + "appid": 664290, + "normalized_name": "the mexican dream" + }, + { + "appid": 664320, + "normalized_name": "holy potatoes! what the hell?!" + }, + { + "appid": 664340, + "normalized_name": "indeep | the casual dungeon crawler" + }, + { + "appid": 664350, + "normalized_name": "german fortress 3d" + }, + { + "appid": 664420, + "normalized_name": "girls and quiz" + }, + { + "appid": 664440, + "normalized_name": "cognizant protocol" + }, + { + "appid": 664450, + "normalized_name": "manifest 99" + }, + { + "appid": 664460, + "normalized_name": "summer" + }, + { + "appid": 664490, + "normalized_name": "orb rivals" + }, + { + "appid": 664510, + "normalized_name": "infernal racket" + }, + { + "appid": 664530, + "normalized_name": "legends of iskaria days of thieves" + }, + { + "appid": 664560, + "normalized_name": "dreamtank" + }, + { + "appid": 664570, + "normalized_name": "my personal angel" + }, + { + "appid": 664580, + "normalized_name": "gray grofa" + }, + { + "appid": 664590, + "normalized_name": "airi's world" + }, + { + "appid": 664600, + "normalized_name": "memories of home" + }, + { + "appid": 664610, + "normalized_name": "gelu" + }, + { + "appid": 664620, + "normalized_name": "pink rage otome" + }, + { + "appid": 664630, + "normalized_name": "tupã" + }, + { + "appid": 664640, + "normalized_name": "leilani's island" + }, + { + "appid": 664650, + "normalized_name": "canadian football 2017" + }, + { + "appid": 664660, + "normalized_name": "against the gradient" + }, + { + "appid": 664750, + "normalized_name": "wrongworld" + }, + { + "appid": 664780, + "normalized_name": "alter ego" + }, + { + "appid": 664820, + "normalized_name": "ether awakening" + }, + { + "appid": 664830, + "normalized_name": "zombotron" + }, + { + "appid": 664850, + "normalized_name": "8 bit adventure anthology volume i" + }, + { + "appid": 664870, + "normalized_name": "forgotten faces" + }, + { + "appid": 665030, + "normalized_name": "zeran's folly" + }, + { + "appid": 665060, + "normalized_name": "triangulate" + }, + { + "appid": 665080, + "normalized_name": "stunt corgi vr" + }, + { + "appid": 665090, + "normalized_name": "the initial" + }, + { + "appid": 665110, + "normalized_name": "thewalkerkiller vr" + }, + { + "appid": 665120, + "normalized_name": "jetman go" + }, + { + "appid": 665160, + "normalized_name": "puzzle mania" + }, + { + "appid": 665210, + "normalized_name": "hoop shot vr" + }, + { + "appid": 665240, + "normalized_name": "fateholders of tetsoidea" + }, + { + "appid": 665270, + "normalized_name": "弹幕音乐绘 ~风雷幻奏曲~ / barrage musical ~a fantasy of tempest~" + }, + { + "appid": 665310, + "normalized_name": "tank battle pacific" + }, + { + "appid": 665330, + "normalized_name": "wrestling revolution 3d" + }, + { + "appid": 665340, + "normalized_name": "ancient amuletor vr" + }, + { + "appid": 665350, + "normalized_name": "mayhem above" + }, + { + "appid": 665360, + "normalized_name": "comedy night" + }, + { + "appid": 665370, + "normalized_name": "mutilate a doll 2" + }, + { + "appid": 665410, + "normalized_name": "square box" + }, + { + "appid": 665440, + "normalized_name": "civil war gettysburg" + }, + { + "appid": 665490, + "normalized_name": "the monster inside" + }, + { + "appid": 665510, + "normalized_name": "vengeance lost love" + }, + { + "appid": 665550, + "normalized_name": "death runner" + }, + { + "appid": 665560, + "normalized_name": "skyward" + }, + { + "appid": 665590, + "normalized_name": "dog gone golfing" + }, + { + "appid": 665620, + "normalized_name": "zombie hobby vr" + }, + { + "appid": 665630, + "normalized_name": "marble masters the pit" + }, + { + "appid": 665640, + "normalized_name": "spaceworms" + }, + { + "appid": 665650, + "normalized_name": "2v hoverbike" + }, + { + "appid": 665670, + "normalized_name": "enlysia" + }, + { + "appid": 665720, + "normalized_name": "soulbreaker" + }, + { + "appid": 665730, + "normalized_name": "fight sparring vr" + }, + { + "appid": 665740, + "normalized_name": "book of potentia 2" + }, + { + "appid": 665780, + "normalized_name": "juke" + }, + { + "appid": 665790, + "normalized_name": "dragon drop" + }, + { + "appid": 665840, + "normalized_name": "to the sea the courier" + }, + { + "appid": 665880, + "normalized_name": "survivor vr" + }, + { + "appid": 665890, + "normalized_name": "jay fighter" + }, + { + "appid": 665900, + "normalized_name": "火箭星战 star rocket strike" + }, + { + "appid": 665930, + "normalized_name": "rock 'n roll" + }, + { + "appid": 665950, + "normalized_name": "creepy races" + }, + { + "appid": 665960, + "normalized_name": "lobster empire" + }, + { + "appid": 666010, + "normalized_name": "refract" + }, + { + "appid": 666020, + "normalized_name": "shark dating simulator xl+" + }, + { + "appid": 666040, + "normalized_name": "underdone" + }, + { + "appid": 666050, + "normalized_name": "rescue team 7" + }, + { + "appid": 666060, + "normalized_name": "derelict fleet" + }, + { + "appid": 666080, + "normalized_name": "伝創記iv ~if~" + }, + { + "appid": 666090, + "normalized_name": "bad government" + }, + { + "appid": 666100, + "normalized_name": "shooty fruity" + }, + { + "appid": 666110, + "normalized_name": "break the cookie" + }, + { + "appid": 666120, + "normalized_name": "dawn of the killer zombies" + }, + { + "appid": 666140, + "normalized_name": "my time at portia" + }, + { + "appid": 666150, + "normalized_name": "prehistoric kingdom" + }, + { + "appid": 666170, + "normalized_name": "space betrayers" + }, + { + "appid": 666220, + "normalized_name": "cs2d" + }, + { + "appid": 666240, + "normalized_name": "nascence" + }, + { + "appid": 666250, + "normalized_name": "equalizer" + }, + { + "appid": 666260, + "normalized_name": "formless adventure" + }, + { + "appid": 666270, + "normalized_name": "endure" + }, + { + "appid": 666290, + "normalized_name": "virus z" + }, + { + "appid": 666310, + "normalized_name": "space of darkness" + }, + { + "appid": 666320, + "normalized_name": "watergate xtreme" + }, + { + "appid": 666330, + "normalized_name": "inertia" + }, + { + "appid": 666340, + "normalized_name": "inescapable vr underground" + }, + { + "appid": 666560, + "normalized_name": "no mans land" + }, + { + "appid": 666570, + "normalized_name": "infectonator 3 apocalypse" + }, + { + "appid": 666590, + "normalized_name": "jetball" + }, + { + "appid": 666600, + "normalized_name": "zombie town" + }, + { + "appid": 666610, + "normalized_name": "endless atc" + }, + { + "appid": 666620, + "normalized_name": "behind these eyes a short horror story" + }, + { + "appid": 666630, + "normalized_name": "the captives plot of the demiurge" + }, + { + "appid": 666640, + "normalized_name": "empire wargame of new century" + }, + { + "appid": 666660, + "normalized_name": "castles" + }, + { + "appid": 666730, + "normalized_name": "this merchant life" + }, + { + "appid": 666780, + "normalized_name": "4th of july vr" + }, + { + "appid": 666790, + "normalized_name": "knossos" + }, + { + "appid": 666800, + "normalized_name": "solitaire cat pirate portrait" + }, + { + "appid": 666810, + "normalized_name": "luna" + }, + { + "appid": 666820, + "normalized_name": "skirmish line" + }, + { + "appid": 666850, + "normalized_name": "beyond the horizon" + }, + { + "appid": 666860, + "normalized_name": "bit heroes quest" + }, + { + "appid": 666870, + "normalized_name": "凶手不是我 perfect crime" + }, + { + "appid": 666910, + "normalized_name": "malfunction" + }, + { + "appid": 666930, + "normalized_name": "luxocraft" + }, + { + "appid": 666940, + "normalized_name": "welcome back to 2007" + }, + { + "appid": 666960, + "normalized_name": "cowboy's adventure" + }, + { + "appid": 667000, + "normalized_name": "casus belli battle of annihilation" + }, + { + "appid": 667010, + "normalized_name": "dracula vampires vs. zombies" + }, + { + "appid": 667030, + "normalized_name": "archimedes eureka!" + }, + { + "appid": 667040, + "normalized_name": "alicia quatermain 2 the stone of fate" + }, + { + "appid": 667060, + "normalized_name": "no escape" + }, + { + "appid": 667120, + "normalized_name": "itowngameplay universe" + }, + { + "appid": 667130, + "normalized_name": "clumsy fred" + }, + { + "appid": 667140, + "normalized_name": "tournament of tamers" + }, + { + "appid": 667150, + "normalized_name": "detective butler and the king of hearts" + }, + { + "appid": 667160, + "normalized_name": "sphere frustration" + }, + { + "appid": 667170, + "normalized_name": "undead souls" + }, + { + "appid": 667220, + "normalized_name": "ayo a rain tale" + }, + { + "appid": 667240, + "normalized_name": "vintage hero" + }, + { + "appid": 667270, + "normalized_name": "the miserable crimson hooded girl" + }, + { + "appid": 667300, + "normalized_name": "amaze 3d" + }, + { + "appid": 667310, + "normalized_name": "animal herding" + }, + { + "appid": 667340, + "normalized_name": "anxiety" + }, + { + "appid": 667360, + "normalized_name": "hooligan vasja christmas" + }, + { + "appid": 667400, + "normalized_name": "mazeglaser" + }, + { + "appid": 667410, + "normalized_name": "the nose" + }, + { + "appid": 667420, + "normalized_name": "redium" + }, + { + "appid": 667430, + "normalized_name": "a cat's manor" + }, + { + "appid": 667450, + "normalized_name": "fire fighter" + }, + { + "appid": 667460, + "normalized_name": "super retro maker" + }, + { + "appid": 667510, + "normalized_name": "the elmian warrior" + }, + { + "appid": 667530, + "normalized_name": "drunken wrestlers 2" + }, + { + "appid": 667550, + "normalized_name": "pion" + }, + { + "appid": 667580, + "normalized_name": "fighting for food" + }, + { + "appid": 667590, + "normalized_name": "fjord battle racing" + }, + { + "appid": 667600, + "normalized_name": "sky force reloaded" + }, + { + "appid": 667610, + "normalized_name": "ancient cities" + }, + { + "appid": 667620, + "normalized_name": "hexion" + }, + { + "appid": 667630, + "normalized_name": "snake charmer tps snek" + }, + { + "appid": 667660, + "normalized_name": "photon rush" + }, + { + "appid": 667670, + "normalized_name": "expanse" + }, + { + "appid": 667690, + "normalized_name": "bedlamball" + }, + { + "appid": 667720, + "normalized_name": "red faction guerrilla re mars tered" + }, + { + "appid": 667760, + "normalized_name": "super lumi live" + }, + { + "appid": 667770, + "normalized_name": "nano shift" + }, + { + "appid": 667780, + "normalized_name": "rosebaker's icy treats the vr iceman sim" + }, + { + "appid": 667790, + "normalized_name": "downbreak" + }, + { + "appid": 667800, + "normalized_name": "loco dojo" + }, + { + "appid": 667810, + "normalized_name": "next up hero" + }, + { + "appid": 667820, + "normalized_name": "farmington tales" + }, + { + "appid": 667840, + "normalized_name": "dungeon builder s" + }, + { + "appid": 667870, + "normalized_name": "mindnight" + }, + { + "appid": 667880, + "normalized_name": "dog theatre" + }, + { + "appid": 667890, + "normalized_name": "dead maze" + }, + { + "appid": 667900, + "normalized_name": "brave" + }, + { + "appid": 667920, + "normalized_name": "survival tycoon" + }, + { + "appid": 667930, + "normalized_name": "stickdodgevr" + }, + { + "appid": 667970, + "normalized_name": "vtol vr" + }, + { + "appid": 668000, + "normalized_name": "initiative" + }, + { + "appid": 668010, + "normalized_name": "goalie vr" + }, + { + "appid": 668170, + "normalized_name": "incline" + }, + { + "appid": 668190, + "normalized_name": "wordabeasts" + }, + { + "appid": 668200, + "normalized_name": "four horsemen" + }, + { + "appid": 668210, + "normalized_name": "super fancy pants adventure" + }, + { + "appid": 668220, + "normalized_name": "breadwinner vr" + }, + { + "appid": 668230, + "normalized_name": "sli fi 2d planet platformer" + }, + { + "appid": 668280, + "normalized_name": "backslash" + }, + { + "appid": 668290, + "normalized_name": "from orbit" + }, + { + "appid": 668300, + "normalized_name": "chinese souls hua garden/华夏园" + }, + { + "appid": 668320, + "normalized_name": "perilous warp" + }, + { + "appid": 668350, + "normalized_name": "higurashi when they cry hou ch.6 tsumihoroboshi" + }, + { + "appid": 668360, + "normalized_name": "bokuten why i became an angel" + }, + { + "appid": 668370, + "normalized_name": "girl vs crowd" + }, + { + "appid": 668430, + "normalized_name": "v racer hoverbike" + }, + { + "appid": 668460, + "normalized_name": "robozone" + }, + { + "appid": 668510, + "normalized_name": "kartofank vr" + }, + { + "appid": 668520, + "normalized_name": "exzeus 2 (legacy)" + }, + { + "appid": 668550, + "normalized_name": "8doors arum's afterlife adventure" + }, + { + "appid": 668560, + "normalized_name": "thomaz" + }, + { + "appid": 668570, + "normalized_name": "jack & the cat" + }, + { + "appid": 668580, + "normalized_name": "atomic heart" + }, + { + "appid": 668590, + "normalized_name": "omen exitio plague" + }, + { + "appid": 668600, + "normalized_name": "pixelum" + }, + { + "appid": 668610, + "normalized_name": "lords of war" + }, + { + "appid": 668620, + "normalized_name": "1dimensional desperado" + }, + { + "appid": 668630, + "normalized_name": "tricolour lovestory" + }, + { + "appid": 668640, + "normalized_name": "flipping legend dx" + }, + { + "appid": 668650, + "normalized_name": "hookbots" + }, + { + "appid": 668670, + "normalized_name": "glasswinged ascension" + }, + { + "appid": 668680, + "normalized_name": "鬼畜大冒险 gui chu da mao xian" + }, + { + "appid": 668730, + "normalized_name": "legends of iona rpg (2007 arcade mod)" + }, + { + "appid": 668770, + "normalized_name": "solarium" + }, + { + "appid": 668780, + "normalized_name": "the puppet of tersa episode one" + }, + { + "appid": 668790, + "normalized_name": "chicken wars" + }, + { + "appid": 668800, + "normalized_name": "otterbash" + }, + { + "appid": 668830, + "normalized_name": "raid on coasts" + }, + { + "appid": 668850, + "normalized_name": "the istrys" + }, + { + "appid": 668890, + "normalized_name": "hiking simulator 2017" + }, + { + "appid": 668900, + "normalized_name": "murder miners x" + }, + { + "appid": 668910, + "normalized_name": "breeze of death" + }, + { + "appid": 668960, + "normalized_name": "esper make you live again" + }, + { + "appid": 668970, + "normalized_name": "space waver" + }, + { + "appid": 668980, + "normalized_name": "forsaken" + }, + { + "appid": 669000, + "normalized_name": "six ear macaque" + }, + { + "appid": 669040, + "normalized_name": "whispered secrets into the beyond collector's" + }, + { + "appid": 669050, + "normalized_name": "mutiny!!" + }, + { + "appid": 669270, + "normalized_name": "momentum mod" + }, + { + "appid": 669290, + "normalized_name": "espire 1 vr operative" + }, + { + "appid": 669310, + "normalized_name": "brave path" + }, + { + "appid": 669320, + "normalized_name": "nationwar chronicles | 国战 列国志传" + }, + { + "appid": 669330, + "normalized_name": "mechabellum" + }, + { + "appid": 669340, + "normalized_name": "the royal cosmonautical society" + }, + { + "appid": 669350, + "normalized_name": "outracer" + }, + { + "appid": 669360, + "normalized_name": "infested nation" + }, + { + "appid": 669380, + "normalized_name": "astoria the holders of power saga" + }, + { + "appid": 669390, + "normalized_name": "lethal laser" + }, + { + "appid": 669410, + "normalized_name": "exatron quest l'epée de sang" + }, + { + "appid": 669440, + "normalized_name": "ikaros" + }, + { + "appid": 669490, + "normalized_name": "blockdude" + }, + { + "appid": 669500, + "normalized_name": "himeko sutori" + }, + { + "appid": 669520, + "normalized_name": "mino saga" + }, + { + "appid": 669570, + "normalized_name": "microspy" + }, + { + "appid": 669580, + "normalized_name": "the ultimatest battle" + }, + { + "appid": 669600, + "normalized_name": "light in the dark" + }, + { + "appid": 669620, + "normalized_name": "the necromancer's castle" + }, + { + "appid": 669630, + "normalized_name": "hollowed" + }, + { + "appid": 669650, + "normalized_name": "tiny thief" + }, + { + "appid": 669660, + "normalized_name": "debris" + }, + { + "appid": 669690, + "normalized_name": "funny fingers" + }, + { + "appid": 669700, + "normalized_name": "project azriel" + }, + { + "appid": 669710, + "normalized_name": "outburst" + }, + { + "appid": 669730, + "normalized_name": "mind trap" + }, + { + "appid": 669740, + "normalized_name": "tower bombarde" + }, + { + "appid": 669750, + "normalized_name": "brain storm tower bombarde" + }, + { + "appid": 669760, + "normalized_name": "one bit" + }, + { + "appid": 669770, + "normalized_name": "strangers in a strange land" + }, + { + "appid": 669790, + "normalized_name": "starlines" + }, + { + "appid": 669830, + "normalized_name": "asteroids millennium" + }, + { + "appid": 669910, + "normalized_name": "miles & kilo" + }, + { + "appid": 669950, + "normalized_name": "bdsm big drunk satanic massacre" + }, + { + "appid": 669960, + "normalized_name": "the dungeon power" + }, + { + "appid": 669990, + "normalized_name": "crucial throw" + }, + { + "appid": 670020, + "normalized_name": "solar system journey vr" + }, + { + "appid": 670050, + "normalized_name": "infantry" + }, + { + "appid": 670080, + "normalized_name": "superluminauts" + }, + { + "appid": 670090, + "normalized_name": "fallencore" + }, + { + "appid": 670100, + "normalized_name": "mint" + }, + { + "appid": 670120, + "normalized_name": "virtual wave" + }, + { + "appid": 670140, + "normalized_name": "destiny of a wizard" + }, + { + "appid": 670160, + "normalized_name": "d'lirium" + }, + { + "appid": 670180, + "normalized_name": "castles ii siege & conquest" + }, + { + "appid": 670190, + "normalized_name": "quadra clash" + }, + { + "appid": 670210, + "normalized_name": "otto the odd ostrich" + }, + { + "appid": 670230, + "normalized_name": "omega extinction" + }, + { + "appid": 670250, + "normalized_name": "grashers" + }, + { + "appid": 670260, + "normalized_name": "solace crafting" + }, + { + "appid": 670270, + "normalized_name": "wings of peace vr daybreak" + }, + { + "appid": 670280, + "normalized_name": "in dungeon" + }, + { + "appid": 670290, + "normalized_name": "real pool 3d poolians" + }, + { + "appid": 670320, + "normalized_name": "papa's time machine" + }, + { + "appid": 670330, + "normalized_name": "flight 732" + }, + { + "appid": 670340, + "normalized_name": "mysterious adventure of michael" + }, + { + "appid": 670370, + "normalized_name": "fallen cube" + }, + { + "appid": 670400, + "normalized_name": "malatzshia" + }, + { + "appid": 670410, + "normalized_name": "citadale the legends trilogy" + }, + { + "appid": 670430, + "normalized_name": "colorless life" + }, + { + "appid": 670440, + "normalized_name": "obscure challenge your mind" + }, + { + "appid": 670490, + "normalized_name": "rise of man" + }, + { + "appid": 670500, + "normalized_name": "rc plane 3" + }, + { + "appid": 670510, + "normalized_name": "colorblend fx desaturation" + }, + { + "appid": 670550, + "normalized_name": "light biker hockey" + }, + { + "appid": 670610, + "normalized_name": "swaps and traps" + }, + { + "appid": 670620, + "normalized_name": "surv" + }, + { + "appid": 670630, + "normalized_name": "slingshot puzzle" + }, + { + "appid": 670720, + "normalized_name": "stealthscape" + }, + { + "appid": 670730, + "normalized_name": "sure footing" + }, + { + "appid": 670750, + "normalized_name": "0°n 0°w" + }, + { + "appid": 670760, + "normalized_name": "sage 3d" + }, + { + "appid": 670780, + "normalized_name": "albert mort desert heat" + }, + { + "appid": 670790, + "normalized_name": "jack's game" + }, + { + "appid": 670820, + "normalized_name": "civitatem" + }, + { + "appid": 670830, + "normalized_name": "vr trivia battle" + }, + { + "appid": 670850, + "normalized_name": "sokoban land dx" + }, + { + "appid": 670910, + "normalized_name": "ahts ship simulator" + }, + { + "appid": 670930, + "normalized_name": "escape doodland" + }, + { + "appid": 670940, + "normalized_name": "the voice in the void" + }, + { + "appid": 670950, + "normalized_name": "band of outlaws" + }, + { + "appid": 670970, + "normalized_name": "res judicata vale of myth" + }, + { + "appid": 671050, + "normalized_name": "xminutes wings" + }, + { + "appid": 671090, + "normalized_name": "oik memory" + }, + { + "appid": 671100, + "normalized_name": "dizzy hearts chapter 1" + }, + { + "appid": 671120, + "normalized_name": "spaceship trucker" + }, + { + "appid": 671130, + "normalized_name": "above & below" + }, + { + "appid": 671150, + "normalized_name": "explosive dinosaurs" + }, + { + "appid": 671170, + "normalized_name": "great esports manager" + }, + { + "appid": 671180, + "normalized_name": "elementals reborn" + }, + { + "appid": 671200, + "normalized_name": "gaia 2200" + }, + { + "appid": 671230, + "normalized_name": "spirits ciel bleu" + }, + { + "appid": 671240, + "normalized_name": "七个小矮人2 / seven boys 2" + }, + { + "appid": 671260, + "normalized_name": "goken" + }, + { + "appid": 671270, + "normalized_name": "stophat" + }, + { + "appid": 671290, + "normalized_name": "deadliners" + }, + { + "appid": 671310, + "normalized_name": "pararea social vr for everyone (beta)" + }, + { + "appid": 671330, + "normalized_name": "lit the torch" + }, + { + "appid": 671370, + "normalized_name": "flight of light" + }, + { + "appid": 671390, + "normalized_name": "metropolis lux obscura" + }, + { + "appid": 671440, + "normalized_name": "rise of industry" + }, + { + "appid": 671460, + "normalized_name": "the gamer challenge" + }, + { + "appid": 671470, + "normalized_name": "carsteroids" + }, + { + "appid": 671490, + "normalized_name": "princess sahirah is a spoiled brat!" + }, + { + "appid": 671510, + "normalized_name": "desolate" + }, + { + "appid": 671550, + "normalized_name": "brickochet" + }, + { + "appid": 671560, + "normalized_name": "iggy's zombie a pug alypse" + }, + { + "appid": 671580, + "normalized_name": "neocube" + }, + { + "appid": 671600, + "normalized_name": "ashes of oahu" + }, + { + "appid": 671610, + "normalized_name": "warfork" + }, + { + "appid": 671620, + "normalized_name": "beast battle simulator" + }, + { + "appid": 671630, + "normalized_name": "stripper anya demon slayer" + }, + { + "appid": 671640, + "normalized_name": "deadburg" + }, + { + "appid": 671650, + "normalized_name": "mad age & this guy" + }, + { + "appid": 671670, + "normalized_name": "village of souls" + }, + { + "appid": 671690, + "normalized_name": "[mars] total warfare" + }, + { + "appid": 671700, + "normalized_name": "dead horizon origin" + }, + { + "appid": 671720, + "normalized_name": "ro" + }, + { + "appid": 671740, + "normalized_name": "vr shoot around realistic basketball simulator" + }, + { + "appid": 671750, + "normalized_name": "colorcode" + }, + { + "appid": 671800, + "normalized_name": "run!zombiefood!" + }, + { + "appid": 671810, + "normalized_name": "the adventures of capitano navarro" + }, + { + "appid": 671840, + "normalized_name": "eat sleep bet repeat" + }, + { + "appid": 671850, + "normalized_name": "dormant world" + }, + { + "appid": 671860, + "normalized_name": "battlebit" + }, + { + "appid": 671880, + "normalized_name": "tower offence! たわーおふぇんす!" + }, + { + "appid": 671900, + "normalized_name": "devoid of shadows" + }, + { + "appid": 671920, + "normalized_name": "dead secret circle" + }, + { + "appid": 671970, + "normalized_name": "junkyard simulator" + }, + { + "appid": 671980, + "normalized_name": "close me" + }, + { + "appid": 671990, + "normalized_name": "b99" + }, + { + "appid": 672000, + "normalized_name": "system goose overload" + }, + { + "appid": 672010, + "normalized_name": "canari" + }, + { + "appid": 672020, + "normalized_name": "hold my beer" + }, + { + "appid": 672030, + "normalized_name": "swap blocks" + }, + { + "appid": 672050, + "normalized_name": "super mr. kake" + }, + { + "appid": 672080, + "normalized_name": "cube creatures" + }, + { + "appid": 672100, + "normalized_name": "an occasional dream" + }, + { + "appid": 672130, + "normalized_name": "damned hours" + }, + { + "appid": 672140, + "normalized_name": "battle for korsun" + }, + { + "appid": 672150, + "normalized_name": "logistical 3 earth" + }, + { + "appid": 672160, + "normalized_name": "oldmaidgirl" + }, + { + "appid": 672230, + "normalized_name": "i fell from grace" + }, + { + "appid": 672240, + "normalized_name": "dreams of greatness" + }, + { + "appid": 672250, + "normalized_name": "plexus" + }, + { + "appid": 672280, + "normalized_name": "gates of horn and ivory" + }, + { + "appid": 672290, + "normalized_name": "magic forest" + }, + { + "appid": 672300, + "normalized_name": "air traffic disruptor" + }, + { + "appid": 672310, + "normalized_name": "kingdoms of marazia classic" + }, + { + "appid": 672320, + "normalized_name": "the last sorcerer" + }, + { + "appid": 672380, + "normalized_name": "ameline and the burger" + }, + { + "appid": 672410, + "normalized_name": "access" + }, + { + "appid": 672420, + "normalized_name": "netherworld" + }, + { + "appid": 672430, + "normalized_name": "koe (声) part 1" + }, + { + "appid": 672440, + "normalized_name": "barbaric" + }, + { + "appid": 672460, + "normalized_name": "genetic disaster" + }, + { + "appid": 672480, + "normalized_name": "mini hockey vr" + }, + { + "appid": 672490, + "normalized_name": "dedrive" + }, + { + "appid": 672570, + "normalized_name": "the western hunter" + }, + { + "appid": 672590, + "normalized_name": "azure saga pathfinder" + }, + { + "appid": 672630, + "normalized_name": "academia school simulator" + }, + { + "appid": 672640, + "normalized_name": "war robots vr the skirmish" + }, + { + "appid": 672650, + "normalized_name": "monitor the game" + }, + { + "appid": 672660, + "normalized_name": "army ops" + }, + { + "appid": 672670, + "normalized_name": "hover bots vr" + }, + { + "appid": 672680, + "normalized_name": "supremacy call of war 1942" + }, + { + "appid": 672690, + "normalized_name": "the nothing" + }, + { + "appid": 672710, + "normalized_name": "traffic giant" + }, + { + "appid": 672720, + "normalized_name": "crime solitaire 2 the smoking gun" + }, + { + "appid": 672730, + "normalized_name": "find you" + }, + { + "appid": 672770, + "normalized_name": "poseidon project dark sky" + }, + { + "appid": 672780, + "normalized_name": "sweet magic madness" + }, + { + "appid": 672790, + "normalized_name": "elemental combat" + }, + { + "appid": 672860, + "normalized_name": "stellarhub" + }, + { + "appid": 672880, + "normalized_name": "superwurfels" + }, + { + "appid": 672890, + "normalized_name": "sparkball" + }, + { + "appid": 672910, + "normalized_name": "hangry bunnies from mars" + }, + { + "appid": 672920, + "normalized_name": "the bounty v2" + }, + { + "appid": 672940, + "normalized_name": "galaxy of drones" + }, + { + "appid": 672970, + "normalized_name": "swords and sandals medieval" + }, + { + "appid": 673000, + "normalized_name": "high hell" + }, + { + "appid": 673010, + "normalized_name": "wiloo" + }, + { + "appid": 673040, + "normalized_name": "acorns above a world gone nuts" + }, + { + "appid": 673050, + "normalized_name": "starballmadness" + }, + { + "appid": 673060, + "normalized_name": "floor plan hands on" + }, + { + "appid": 673070, + "normalized_name": "the ranger lost tribe" + }, + { + "appid": 673100, + "normalized_name": "code of the savage" + }, + { + "appid": 673130, + "normalized_name": "amid evil" + }, + { + "appid": 673140, + "normalized_name": "infinite skyline" + }, + { + "appid": 673190, + "normalized_name": "all star fruit racing" + }, + { + "appid": 673210, + "normalized_name": "frontier pilot simulator" + }, + { + "appid": 673220, + "normalized_name": "joumee the hedgehog" + }, + { + "appid": 673230, + "normalized_name": "galaxy annihilation" + }, + { + "appid": 673240, + "normalized_name": "room 54" + }, + { + "appid": 673250, + "normalized_name": "exterminator escape!" + }, + { + "appid": 673260, + "normalized_name": "starblast" + }, + { + "appid": 673280, + "normalized_name": "gyrosphere trials" + }, + { + "appid": 673300, + "normalized_name": "alien splatter redux" + }, + { + "appid": 673310, + "normalized_name": "adam waste" + }, + { + "appid": 673360, + "normalized_name": "black mist" + }, + { + "appid": 673430, + "normalized_name": "mahjong magic islands" + }, + { + "appid": 673450, + "normalized_name": "time lock vr 1" + }, + { + "appid": 673480, + "normalized_name": "timbertales" + }, + { + "appid": 673530, + "normalized_name": "zaba the frog" + }, + { + "appid": 673540, + "normalized_name": "mogo invasion" + }, + { + "appid": 673550, + "normalized_name": "legendary arcane" + }, + { + "appid": 673560, + "normalized_name": "iosoccer" + }, + { + "appid": 673570, + "normalized_name": "squadron sky guardians" + }, + { + "appid": 673580, + "normalized_name": "hamlet" + }, + { + "appid": 673590, + "normalized_name": "amazing thailand vr experience" + }, + { + "appid": 673600, + "normalized_name": "prison boss vr" + }, + { + "appid": 673610, + "normalized_name": "airport ceo" + }, + { + "appid": 673620, + "normalized_name": "slizer battle management system" + }, + { + "appid": 673630, + "normalized_name": "heaven and earth" + }, + { + "appid": 673660, + "normalized_name": "neon hardcore" + }, + { + "appid": 673720, + "normalized_name": "police adventure" + }, + { + "appid": 673740, + "normalized_name": "space battlecruiser" + }, + { + "appid": 673750, + "normalized_name": "super bunny man" + }, + { + "appid": 673800, + "normalized_name": "zup! xs" + }, + { + "appid": 673810, + "normalized_name": "infinite sunshine dust" + }, + { + "appid": 673820, + "normalized_name": "master of abc" + }, + { + "appid": 673830, + "normalized_name": "vr stock car racers" + }, + { + "appid": 673840, + "normalized_name": "vr formula" + }, + { + "appid": 673850, + "normalized_name": "neofeud" + }, + { + "appid": 673870, + "normalized_name": "math combat challenge" + }, + { + "appid": 673880, + "normalized_name": "warhammer 40 000 mechanicus" + }, + { + "appid": 673900, + "normalized_name": "avem33" + }, + { + "appid": 673910, + "normalized_name": "wrestling revolution 2d" + }, + { + "appid": 673920, + "normalized_name": "maso marble" + }, + { + "appid": 673940, + "normalized_name": "dragon glory" + }, + { + "appid": 673950, + "normalized_name": "farm together" + }, + { + "appid": 673970, + "normalized_name": "mux" + }, + { + "appid": 673980, + "normalized_name": "spears 'n' spades" + }, + { + "appid": 674020, + "normalized_name": "world war 3" + }, + { + "appid": 674090, + "normalized_name": "sky haven tycoon airport simulator" + }, + { + "appid": 674120, + "normalized_name": "cruentis the murderer vol.1" + }, + { + "appid": 674130, + "normalized_name": "bare metal" + }, + { + "appid": 674140, + "normalized_name": "bugsnax" + }, + { + "appid": 674150, + "normalized_name": "simon the sorcerer 25th anniversary" + }, + { + "appid": 674160, + "normalized_name": "slasher vr" + }, + { + "appid": 674170, + "normalized_name": "driftforce" + }, + { + "appid": 674180, + "normalized_name": "aliveinvr" + }, + { + "appid": 674190, + "normalized_name": "conquest of the new world" + }, + { + "appid": 674200, + "normalized_name": "the docs department of creatures" + }, + { + "appid": 674210, + "normalized_name": "rush to adventure" + }, + { + "appid": 674220, + "normalized_name": "clickbit" + }, + { + "appid": 674230, + "normalized_name": "light of the mountain" + }, + { + "appid": 674250, + "normalized_name": "resurgence earth united" + }, + { + "appid": 674310, + "normalized_name": "the 2048" + }, + { + "appid": 674320, + "normalized_name": "brimstone" + }, + { + "appid": 674330, + "normalized_name": "defend the cake" + }, + { + "appid": 674360, + "normalized_name": "orb flo" + }, + { + "appid": 674370, + "normalized_name": "coffeebiz tycoon" + }, + { + "appid": 674380, + "normalized_name": "delude succubus prison" + }, + { + "appid": 674390, + "normalized_name": "bildo" + }, + { + "appid": 674400, + "normalized_name": "einar" + }, + { + "appid": 674420, + "normalized_name": "piece of memory" + }, + { + "appid": 674440, + "normalized_name": "skipper puzzle across the sea" + }, + { + "appid": 674450, + "normalized_name": "blind witch peek window" + }, + { + "appid": 674480, + "normalized_name": "unformed 破妄" + }, + { + "appid": 674500, + "normalized_name": "total tank simulator" + }, + { + "appid": 674520, + "normalized_name": "fight'n rage" + }, + { + "appid": 674550, + "normalized_name": "sweetbed" + }, + { + "appid": 674570, + "normalized_name": "bear football" + }, + { + "appid": 674580, + "normalized_name": "fare thee well" + }, + { + "appid": 674630, + "normalized_name": "town" + }, + { + "appid": 674730, + "normalized_name": "mrak" + }, + { + "appid": 674750, + "normalized_name": "yet another zombie defense hd" + }, + { + "appid": 674760, + "normalized_name": "the executioner prologue" + }, + { + "appid": 674800, + "normalized_name": "tailwind" + }, + { + "appid": 674840, + "normalized_name": "the essence reaper ritual" + }, + { + "appid": 674850, + "normalized_name": "2md vr football classic" + }, + { + "appid": 674860, + "normalized_name": "bystander" + }, + { + "appid": 674900, + "normalized_name": "toys gun fire boom" + }, + { + "appid": 674910, + "normalized_name": "testbed terror" + }, + { + "appid": 674930, + "normalized_name": "boyfriend dungeon" + }, + { + "appid": 674940, + "normalized_name": "stick fight the game" + }, + { + "appid": 674960, + "normalized_name": "gods of the fallen land" + }, + { + "appid": 674980, + "normalized_name": "dirty fighter 1" + }, + { + "appid": 675010, + "normalized_name": "mudrunner" + }, + { + "appid": 675030, + "normalized_name": "super samurai rampage" + }, + { + "appid": 675040, + "normalized_name": "torn familjen" + }, + { + "appid": 675110, + "normalized_name": "kill your friends" + }, + { + "appid": 675120, + "normalized_name": "crusader crash" + }, + { + "appid": 675130, + "normalized_name": "aegyptus" + }, + { + "appid": 675140, + "normalized_name": "laika 2.0 sekret pravda" + }, + { + "appid": 675160, + "normalized_name": "soldier killer" + }, + { + "appid": 675170, + "normalized_name": "303 squadron battle of britain" + }, + { + "appid": 675180, + "normalized_name": "choice of zombies" + }, + { + "appid": 675210, + "normalized_name": "castleminer warfare" + }, + { + "appid": 675220, + "normalized_name": "soulfrost" + }, + { + "appid": 675240, + "normalized_name": "shining song starnova" + }, + { + "appid": 675260, + "normalized_name": "batman the enemy within the telltale series" + }, + { + "appid": 675270, + "normalized_name": "rockets are super hard" + }, + { + "appid": 675330, + "normalized_name": "space crawl" + }, + { + "appid": 675360, + "normalized_name": "forbidden love" + }, + { + "appid": 675370, + "normalized_name": "gulu" + }, + { + "appid": 675410, + "normalized_name": "eternal essence" + }, + { + "appid": 675480, + "normalized_name": "witch thief" + }, + { + "appid": 675490, + "normalized_name": "artifact adventure gaiden" + }, + { + "appid": 675500, + "normalized_name": "act it out xl! a charades party game" + }, + { + "appid": 675510, + "normalized_name": "kingdom city drowning episode 1 the champion" + }, + { + "appid": 675530, + "normalized_name": "m1 a death in the desert" + }, + { + "appid": 675610, + "normalized_name": "メモリーズオフ" + }, + { + "appid": 675620, + "normalized_name": "alter cosmos" + }, + { + "appid": 675630, + "normalized_name": "super potus trump" + }, + { + "appid": 675640, + "normalized_name": "the lonely gorilla" + }, + { + "appid": 675650, + "normalized_name": "tales of blood and sand" + }, + { + "appid": 675660, + "normalized_name": "relic keepers" + }, + { + "appid": 675690, + "normalized_name": "tribal wars" + }, + { + "appid": 675720, + "normalized_name": "direct" + }, + { + "appid": 675730, + "normalized_name": "katharsis" + }, + { + "appid": 675750, + "normalized_name": "gamedevdan vs life" + }, + { + "appid": 675810, + "normalized_name": "bang! howdy" + }, + { + "appid": 675830, + "normalized_name": "pulses crystal journeys" + }, + { + "appid": 675870, + "normalized_name": "ruby hunter" + }, + { + "appid": 675890, + "normalized_name": "within a rose" + }, + { + "appid": 675910, + "normalized_name": "visual out" + }, + { + "appid": 675940, + "normalized_name": "spaceshot" + }, + { + "appid": 675950, + "normalized_name": "peninsular war battles" + }, + { + "appid": 675960, + "normalized_name": "matryoshka strike" + }, + { + "appid": 675970, + "normalized_name": "powerslide" + }, + { + "appid": 675980, + "normalized_name": "atomic sky" + }, + { + "appid": 675990, + "normalized_name": "questr" + }, + { + "appid": 676000, + "normalized_name": "bloody mice" + }, + { + "appid": 676030, + "normalized_name": "eternal starlight vr" + }, + { + "appid": 676060, + "normalized_name": "vr killing town / 杀戮小镇" + }, + { + "appid": 676070, + "normalized_name": "an orc's tale kriegsruf" + }, + { + "appid": 676090, + "normalized_name": "legend of mercy 神医魔导" + }, + { + "appid": 676120, + "normalized_name": "sango guardian chaos generation steamedition" + }, + { + "appid": 676130, + "normalized_name": "without within 3 (初衷)" + }, + { + "appid": 676170, + "normalized_name": "ungrounded ripple unleashed vr" + }, + { + "appid": 676180, + "normalized_name": "spaceguard 80" + }, + { + "appid": 676210, + "normalized_name": "story of the survivor prisoner" + }, + { + "appid": 676240, + "normalized_name": "tauronos" + }, + { + "appid": 676270, + "normalized_name": "the mofflys invasion mayhem" + }, + { + "appid": 676310, + "normalized_name": "deadly zone" + }, + { + "appid": 676320, + "normalized_name": "letter setter" + }, + { + "appid": 676340, + "normalized_name": "undarkened" + }, + { + "appid": 676410, + "normalized_name": "embrace of ocean story of hope" + }, + { + "appid": 676420, + "normalized_name": "sinkr" + }, + { + "appid": 676430, + "normalized_name": "push" + }, + { + "appid": 676440, + "normalized_name": "trash squad" + }, + { + "appid": 676450, + "normalized_name": "double memory" + }, + { + "appid": 676460, + "normalized_name": "sellsword vr" + }, + { + "appid": 676470, + "normalized_name": "sommad" + }, + { + "appid": 676500, + "normalized_name": "time warpers" + }, + { + "appid": 676510, + "normalized_name": "industrial petting" + }, + { + "appid": 676520, + "normalized_name": "piece of memory 2 prologue" + }, + { + "appid": 676540, + "normalized_name": "mercfighter" + }, + { + "appid": 676550, + "normalized_name": "crash test billy" + }, + { + "appid": 676570, + "normalized_name": "crazy bowling" + }, + { + "appid": 676580, + "normalized_name": "neo impossible bosses" + }, + { + "appid": 676600, + "normalized_name": "fuzzy's quest" + }, + { + "appid": 676620, + "normalized_name": "robots create ai" + }, + { + "appid": 676630, + "normalized_name": "attentat 1942" + }, + { + "appid": 676660, + "normalized_name": "逮到你了!" + }, + { + "appid": 676680, + "normalized_name": "mircron wars xr" + }, + { + "appid": 676690, + "normalized_name": "vr escape the puzzle room" + }, + { + "appid": 676700, + "normalized_name": "heroes of delum" + }, + { + "appid": 676720, + "normalized_name": "bug killers" + }, + { + "appid": 676730, + "normalized_name": "behind the door" + }, + { + "appid": 676760, + "normalized_name": "noise" + }, + { + "appid": 676770, + "normalized_name": "island dash" + }, + { + "appid": 676800, + "normalized_name": "dark descent the blue rose" + }, + { + "appid": 676820, + "normalized_name": "subsurface circular" + }, + { + "appid": 676830, + "normalized_name": "xenomarine" + }, + { + "appid": 676840, + "normalized_name": "contagion vr outbreak" + }, + { + "appid": 676850, + "normalized_name": "guardian" + }, + { + "appid": 676880, + "normalized_name": "tales of glacier (vr)" + }, + { + "appid": 676910, + "normalized_name": "magic potion destroyer" + }, + { + "appid": 676930, + "normalized_name": "twincop" + }, + { + "appid": 676960, + "normalized_name": "hotlap heroes" + }, + { + "appid": 676990, + "normalized_name": "the stone" + }, + { + "appid": 677020, + "normalized_name": "eventide 3 legacy of legends" + }, + { + "appid": 677030, + "normalized_name": "draw souls" + }, + { + "appid": 677040, + "normalized_name": "cloudborn" + }, + { + "appid": 677060, + "normalized_name": "into the rhythm vr" + }, + { + "appid": 677080, + "normalized_name": "dungeon manager zv resurrection" + }, + { + "appid": 677120, + "normalized_name": "heroes of hammerwatch" + }, + { + "appid": 677160, + "normalized_name": "we were here too" + }, + { + "appid": 677190, + "normalized_name": "hatchick" + }, + { + "appid": 677210, + "normalized_name": "gift to humanity alpha" + }, + { + "appid": 677220, + "normalized_name": "silver tale" + }, + { + "appid": 677230, + "normalized_name": "around the words" + }, + { + "appid": 677240, + "normalized_name": "trespassers" + }, + { + "appid": 677260, + "normalized_name": "nuclear wipeout" + }, + { + "appid": 677280, + "normalized_name": "sigi a fart for melusina" + }, + { + "appid": 677300, + "normalized_name": "ghosts of miami" + }, + { + "appid": 677330, + "normalized_name": "theseus" + }, + { + "appid": 677340, + "normalized_name": "the colonists" + }, + { + "appid": 677380, + "normalized_name": "disco destruction" + }, + { + "appid": 677450, + "normalized_name": "medieval shopkeeper simulator" + }, + { + "appid": 677480, + "normalized_name": "outpost zero" + }, + { + "appid": 677520, + "normalized_name": "guilt battle arena" + }, + { + "appid": 677590, + "normalized_name": "hope" + }, + { + "appid": 677610, + "normalized_name": "penn & teller vr frankly unfair unkind unnecessary & underhanded" + }, + { + "appid": 677620, + "normalized_name": "splitgate" + }, + { + "appid": 677650, + "normalized_name": "brass" + }, + { + "appid": 677680, + "normalized_name": "defender of earth vs the alien armada" + }, + { + "appid": 677700, + "normalized_name": "attack of the gooobers" + }, + { + "appid": 677720, + "normalized_name": "tangrams deluxe" + }, + { + "appid": 677730, + "normalized_name": "karmasutra" + }, + { + "appid": 677780, + "normalized_name": "interplanetary hunter" + }, + { + "appid": 677790, + "normalized_name": "souls" + }, + { + "appid": 677810, + "normalized_name": "wing of misadventure retro" + }, + { + "appid": 677820, + "normalized_name": "businessman" + }, + { + "appid": 677850, + "normalized_name": "eselmir and the five magical gifts" + }, + { + "appid": 677870, + "normalized_name": "gamers unknown survival" + }, + { + "appid": 677910, + "normalized_name": "life on mars remake" + }, + { + "appid": 678010, + "normalized_name": "temporal storm x hyperspace dream" + }, + { + "appid": 678050, + "normalized_name": "experiment" + }, + { + "appid": 678060, + "normalized_name": "super ultra monster smash!" + }, + { + "appid": 678090, + "normalized_name": "symploke legend of gustavo bueno (chapter 1)" + }, + { + "appid": 678100, + "normalized_name": "vr crane master" + }, + { + "appid": 678150, + "normalized_name": "jmpr" + }, + { + "appid": 678170, + "normalized_name": "slingshot hero vr" + }, + { + "appid": 678190, + "normalized_name": "king of bali" + }, + { + "appid": 678200, + "normalized_name": "vr table sports" + }, + { + "appid": 678230, + "normalized_name": "abstract arena" + }, + { + "appid": 678240, + "normalized_name": "destroyer invasion" + }, + { + "appid": 678250, + "normalized_name": "noserland" + }, + { + "appid": 678310, + "normalized_name": "pinball deluxe reloaded" + }, + { + "appid": 678390, + "normalized_name": "office management 101" + }, + { + "appid": 678400, + "normalized_name": "dark tales edgar allan poe's the fall of the house of usher collector's" + }, + { + "appid": 678410, + "normalized_name": "chimeras the signs of prophecy collector's" + }, + { + "appid": 678420, + "normalized_name": "fierce tales marcus' memory collector's" + }, + { + "appid": 678430, + "normalized_name": "mayan prophecies cursed island collector's" + }, + { + "appid": 678440, + "normalized_name": "dark parables queen of sands collector's" + }, + { + "appid": 678450, + "normalized_name": "full on paintball" + }, + { + "appid": 678460, + "normalized_name": "tekling" + }, + { + "appid": 678470, + "normalized_name": "pirates of corsairs" + }, + { + "appid": 678500, + "normalized_name": "the climber" + }, + { + "appid": 678520, + "normalized_name": "gal*gun vr" + }, + { + "appid": 678530, + "normalized_name": "plexarium" + }, + { + "appid": 678540, + "normalized_name": "bad school boy" + }, + { + "appid": 678560, + "normalized_name": "鸿源战纪 tales of hongyuan" + }, + { + "appid": 678570, + "normalized_name": "vr fitness" + }, + { + "appid": 678590, + "normalized_name": "warzone x" + }, + { + "appid": 678620, + "normalized_name": "battle chess ii chinese chess" + }, + { + "appid": 678750, + "normalized_name": "gravity tunnel vr" + }, + { + "appid": 678760, + "normalized_name": "simon the sorcerer mucusade 25th anniversary" + }, + { + "appid": 678800, + "normalized_name": "sas zombie assault 4" + }, + { + "appid": 678820, + "normalized_name": "gun running war dogs" + }, + { + "appid": 678830, + "normalized_name": "buried alive vr" + }, + { + "appid": 678850, + "normalized_name": "uurnog uurnlimited" + }, + { + "appid": 678870, + "normalized_name": "eatwell" + }, + { + "appid": 678880, + "normalized_name": "solmec hollow planet" + }, + { + "appid": 678890, + "normalized_name": "airport simulator 2019" + }, + { + "appid": 678900, + "normalized_name": "farmer's dynasty" + }, + { + "appid": 678910, + "normalized_name": "bombgears" + }, + { + "appid": 678920, + "normalized_name": "symploke legend of gustavo bueno (chapter 2)" + }, + { + "appid": 678930, + "normalized_name": "square route" + }, + { + "appid": 678940, + "normalized_name": "nox dei" + }, + { + "appid": 678950, + "normalized_name": "dragon ball fighterz" + }, + { + "appid": 678960, + "normalized_name": "code vein" + }, + { + "appid": 678970, + "normalized_name": "modern tales age of invention" + }, + { + "appid": 679030, + "normalized_name": "heli commando 2017" + }, + { + "appid": 679050, + "normalized_name": "electro pong vr" + }, + { + "appid": 679070, + "normalized_name": "fapic" + }, + { + "appid": 679080, + "normalized_name": "toy goblins" + }, + { + "appid": 679090, + "normalized_name": "9th dawn classic clunky controls" + }, + { + "appid": 679100, + "normalized_name": "aequitas orbis" + }, + { + "appid": 679110, + "normalized_name": "werewolf the apocalypse earthblood" + }, + { + "appid": 679120, + "normalized_name": "deep space anomaly" + }, + { + "appid": 679190, + "normalized_name": "the hunting god" + }, + { + "appid": 679200, + "normalized_name": "forbidden game" + }, + { + "appid": 679230, + "normalized_name": "tell a demon" + }, + { + "appid": 679300, + "normalized_name": "pathos" + }, + { + "appid": 679390, + "normalized_name": "topdown showdown" + }, + { + "appid": 679400, + "normalized_name": "relik" + }, + { + "appid": 679410, + "normalized_name": "the adventures of clive mcmulligan on planet zeta four" + }, + { + "appid": 679430, + "normalized_name": "skyraine" + }, + { + "appid": 679470, + "normalized_name": "solenars edge rebirth" + }, + { + "appid": 679480, + "normalized_name": "生死线 dead line" + }, + { + "appid": 679490, + "normalized_name": "lisa's memory 丽莎的记忆" + }, + { + "appid": 679500, + "normalized_name": "campfire cooking" + }, + { + "appid": 679510, + "normalized_name": "steel punk ball" + }, + { + "appid": 679520, + "normalized_name": "メモリーズオフ2nd" + }, + { + "appid": 679530, + "normalized_name": "professor watts memory match shapes and colors" + }, + { + "appid": 679620, + "normalized_name": "rollercoaster xperience" + }, + { + "appid": 679640, + "normalized_name": "c64 & amiga classix remakes sixpack" + }, + { + "appid": 679660, + "normalized_name": "amaze zer0" + }, + { + "appid": 679670, + "normalized_name": "miniature td vr" + }, + { + "appid": 679690, + "normalized_name": "swapquest" + }, + { + "appid": 679700, + "normalized_name": "dead shits" + }, + { + "appid": 679720, + "normalized_name": "mad farm vr" + }, + { + "appid": 679740, + "normalized_name": "totally mayhem" + }, + { + "appid": 679750, + "normalized_name": "catch & release" + }, + { + "appid": 679770, + "normalized_name": "dr. cares pet rescue 911" + }, + { + "appid": 679780, + "normalized_name": "lemuria lost in space vr" + }, + { + "appid": 679820, + "normalized_name": "solitaire mystery stolen power" + }, + { + "appid": 679830, + "normalized_name": "village monsters" + }, + { + "appid": 679860, + "normalized_name": "zap master" + }, + { + "appid": 679900, + "normalized_name": "swords & souls neverseen" + }, + { + "appid": 679910, + "normalized_name": "meawja" + }, + { + "appid": 679930, + "normalized_name": "36 fragments of midnight" + }, + { + "appid": 679960, + "normalized_name": "brain crush" + }, + { + "appid": 680030, + "normalized_name": "gone viral" + }, + { + "appid": 680070, + "normalized_name": "puzzle underwater world" + }, + { + "appid": 680100, + "normalized_name": "heroes of myths warriors of gods" + }, + { + "appid": 680140, + "normalized_name": "tetsoidea eternal" + }, + { + "appid": 680170, + "normalized_name": "vr triber" + }, + { + "appid": 680190, + "normalized_name": "interstellar invaders" + }, + { + "appid": 680240, + "normalized_name": "alien life lab" + }, + { + "appid": 680250, + "normalized_name": "the mirage illusion of wish" + }, + { + "appid": 680300, + "normalized_name": "peetee babybuu" + }, + { + "appid": 680310, + "normalized_name": "poker world single player" + }, + { + "appid": 680330, + "normalized_name": "elium prison escape" + }, + { + "appid": 680350, + "normalized_name": "hurl vr" + }, + { + "appid": 680360, + "normalized_name": "regions of ruin" + }, + { + "appid": 680380, + "normalized_name": "night call" + }, + { + "appid": 680390, + "normalized_name": "hidden dragon legend" + }, + { + "appid": 680400, + "normalized_name": "light tracer (vr & non vr)" + }, + { + "appid": 680420, + "normalized_name": "outriders" + }, + { + "appid": 680450, + "normalized_name": "damn!" + }, + { + "appid": 680480, + "normalized_name": "icy frostbite" + }, + { + "appid": 680500, + "normalized_name": "shadowcalls 暗影召唤" + }, + { + "appid": 680550, + "normalized_name": "zombie waiting" + }, + { + "appid": 680560, + "normalized_name": "vr2space" + }, + { + "appid": 680590, + "normalized_name": "minotaur" + }, + { + "appid": 680620, + "normalized_name": "bouncy bob" + }, + { + "appid": 680640, + "normalized_name": "chefu" + }, + { + "appid": 680680, + "normalized_name": "all haze eve" + }, + { + "appid": 680690, + "normalized_name": "kama bullet heritage" + }, + { + "appid": 680730, + "normalized_name": "plight" + }, + { + "appid": 680750, + "normalized_name": "destination primus vita ep. 1" + }, + { + "appid": 680780, + "normalized_name": "death train warning unsafe vr experience" + }, + { + "appid": 680830, + "normalized_name": "wait! life is beautiful!" + }, + { + "appid": 680850, + "normalized_name": "sixteen" + }, + { + "appid": 680860, + "normalized_name": "evil labs" + }, + { + "appid": 680880, + "normalized_name": "flood the prequel" + }, + { + "appid": 680890, + "normalized_name": "where the money is" + }, + { + "appid": 680930, + "normalized_name": "fairy lands rinka and the fairy gems" + }, + { + "appid": 680940, + "normalized_name": "riot street" + }, + { + "appid": 680950, + "normalized_name": "let's bowl vr bowling game" + }, + { + "appid": 680970, + "normalized_name": "kingdom watcher" + }, + { + "appid": 680980, + "normalized_name": "headliner" + }, + { + "appid": 680990, + "normalized_name": "sword bros" + }, + { + "appid": 681000, + "normalized_name": "om6n" + }, + { + "appid": 681020, + "normalized_name": "throne of the dead" + }, + { + "appid": 681030, + "normalized_name": "dark empire" + }, + { + "appid": 681060, + "normalized_name": "shooty squad" + }, + { + "appid": 681090, + "normalized_name": "funtoon's world" + }, + { + "appid": 681100, + "normalized_name": "supermagical" + }, + { + "appid": 681110, + "normalized_name": "eagle island twist" + }, + { + "appid": 681150, + "normalized_name": "rainbow duck" + }, + { + "appid": 681160, + "normalized_name": "breach of contract online" + }, + { + "appid": 681190, + "normalized_name": "secrets of arcadia" + }, + { + "appid": 681240, + "normalized_name": "dujanah" + }, + { + "appid": 681260, + "normalized_name": "red number prologue" + }, + { + "appid": 681280, + "normalized_name": "descenders" + }, + { + "appid": 681290, + "normalized_name": "hare" + }, + { + "appid": 681330, + "normalized_name": "helium rain" + }, + { + "appid": 681340, + "normalized_name": "arraynium" + }, + { + "appid": 681350, + "normalized_name": "battlefield alliance(战地联盟)" + }, + { + "appid": 681360, + "normalized_name": "song samurai" + }, + { + "appid": 681380, + "normalized_name": "the balloonist beyond the clouds." + }, + { + "appid": 681390, + "normalized_name": "zomday" + }, + { + "appid": 681410, + "normalized_name": "adventures of the worm" + }, + { + "appid": 681460, + "normalized_name": "cendric" + }, + { + "appid": 681480, + "normalized_name": "ancient worlds jaguar's fate" + }, + { + "appid": 681490, + "normalized_name": "dontbegrey" + }, + { + "appid": 681500, + "normalized_name": "lumber king" + }, + { + "appid": 681520, + "normalized_name": "the rodinia project" + }, + { + "appid": 681530, + "normalized_name": "noisz" + }, + { + "appid": 681540, + "normalized_name": "escape from space shredder" + }, + { + "appid": 681550, + "normalized_name": "maze run vr" + }, + { + "appid": 681580, + "normalized_name": "dragoncrash" + }, + { + "appid": 681610, + "normalized_name": "anti zombie ai tower defense (azai td)" + }, + { + "appid": 681620, + "normalized_name": "cube link" + }, + { + "appid": 681630, + "normalized_name": "voxel interceptor" + }, + { + "appid": 681640, + "normalized_name": "world of contraptions" + }, + { + "appid": 681670, + "normalized_name": "elly the jelly" + }, + { + "appid": 681690, + "normalized_name": "order:vr" + }, + { + "appid": 681710, + "normalized_name": "eidetus" + }, + { + "appid": 681730, + "normalized_name": "nowhere prophet" + }, + { + "appid": 681740, + "normalized_name": "liberator td" + }, + { + "appid": 681750, + "normalized_name": "voxelaxy [remastered]" + }, + { + "appid": 681760, + "normalized_name": "diver sea survival simulator" + }, + { + "appid": 681780, + "normalized_name": "distorted reality" + }, + { + "appid": 681790, + "normalized_name": "vikubb" + }, + { + "appid": 681800, + "normalized_name": "fur up" + }, + { + "appid": 681810, + "normalized_name": "仙剑奇侠传六" + }, + { + "appid": 681820, + "normalized_name": "仙剑奇侠传四" + }, + { + "appid": 681830, + "normalized_name": "仙剑奇侠传五" + }, + { + "appid": 681840, + "normalized_name": "仙剑奇侠传五 前传" + }, + { + "appid": 681850, + "normalized_name": "derpy god" + }, + { + "appid": 681900, + "normalized_name": "ionaxxia" + }, + { + "appid": 681920, + "normalized_name": "slingshot cowboy vr" + }, + { + "appid": 681950, + "normalized_name": "addforce" + }, + { + "appid": 681980, + "normalized_name": "lycah" + }, + { + "appid": 681990, + "normalized_name": "battle squares" + }, + { + "appid": 682000, + "normalized_name": "solmec among stars" + }, + { + "appid": 682010, + "normalized_name": "solmec colony adrift" + }, + { + "appid": 682020, + "normalized_name": "karradash the lost dungeons" + }, + { + "appid": 682080, + "normalized_name": "pato box" + }, + { + "appid": 682100, + "normalized_name": "all evil night" + }, + { + "appid": 682110, + "normalized_name": "world traveler vr" + }, + { + "appid": 682140, + "normalized_name": "undead development" + }, + { + "appid": 682160, + "normalized_name": "butterbies" + }, + { + "appid": 682170, + "normalized_name": "witchkin" + }, + { + "appid": 682180, + "normalized_name": "tile battle" + }, + { + "appid": 682230, + "normalized_name": "sidewords" + }, + { + "appid": 682250, + "normalized_name": "mayas' virtual brush" + }, + { + "appid": 682270, + "normalized_name": "gender bender" + }, + { + "appid": 682280, + "normalized_name": "code 9" + }, + { + "appid": 682290, + "normalized_name": "zeus' battlegrounds" + }, + { + "appid": 682340, + "normalized_name": "slice&dice" + }, + { + "appid": 682350, + "normalized_name": "gnome light" + }, + { + "appid": 682360, + "normalized_name": "deadly rescue" + }, + { + "appid": 682370, + "normalized_name": "pooper scooper" + }, + { + "appid": 682450, + "normalized_name": "garrison archangel" + }, + { + "appid": 682470, + "normalized_name": "真实幻象 / behind the truth" + }, + { + "appid": 682480, + "normalized_name": "恒水中学连环虐杀 / the untold story of hengshui school" + }, + { + "appid": 682490, + "normalized_name": "鬼山 / a ghost around me" + }, + { + "appid": 682500, + "normalized_name": "绝望游戏 / desperate game" + }, + { + "appid": 682510, + "normalized_name": "以罪之名 / in the name of sin" + }, + { + "appid": 682530, + "normalized_name": "marz tactical base defense" + }, + { + "appid": 682550, + "normalized_name": "ワールド・ネバーランド2~プルト共和国物語~experience of fiction life" + }, + { + "appid": 682570, + "normalized_name": "sg/zh school girl/zombie hunter" + }, + { + "appid": 682590, + "normalized_name": "dungeon marathon" + }, + { + "appid": 682610, + "normalized_name": "iubes 2" + }, + { + "appid": 682630, + "normalized_name": "box maze 2 agent cubert" + }, + { + "appid": 682670, + "normalized_name": "初颜 the prototype" + }, + { + "appid": 682730, + "normalized_name": "hearing" + }, + { + "appid": 682740, + "normalized_name": "data thief" + }, + { + "appid": 682770, + "normalized_name": "treasure hunt vr" + }, + { + "appid": 682780, + "normalized_name": "breaking good" + }, + { + "appid": 682810, + "normalized_name": "guts" + }, + { + "appid": 682820, + "normalized_name": "metronix lab" + }, + { + "appid": 682910, + "normalized_name": "no lights" + }, + { + "appid": 682920, + "normalized_name": "downloaded fragments of a forgotten soul" + }, + { + "appid": 682960, + "normalized_name": "purgation" + }, + { + "appid": 682970, + "normalized_name": "minefight" + }, + { + "appid": 682990, + "normalized_name": "drug dealer simulator" + }, + { + "appid": 683000, + "normalized_name": "evasion" + }, + { + "appid": 683050, + "normalized_name": "active crowds" + }, + { + "appid": 683070, + "normalized_name": "trundle" + }, + { + "appid": 683130, + "normalized_name": "exon the impossible challenge" + }, + { + "appid": 683150, + "normalized_name": "inferno deathfield" + }, + { + "appid": 683180, + "normalized_name": "corona borealis" + }, + { + "appid": 683190, + "normalized_name": "cold comfort" + }, + { + "appid": 683210, + "normalized_name": "apez" + }, + { + "appid": 683220, + "normalized_name": "business hooiznes" + }, + { + "appid": 683230, + "normalized_name": "defendoooooor!!" + }, + { + "appid": 683240, + "normalized_name": "apocalypse knights 2.0 the angel awakens" + }, + { + "appid": 683260, + "normalized_name": "inops" + }, + { + "appid": 683280, + "normalized_name": "omega quintet" + }, + { + "appid": 683300, + "normalized_name": "maenhîr" + }, + { + "appid": 683310, + "normalized_name": "cecconoid" + }, + { + "appid": 683320, + "normalized_name": "gris" + }, + { + "appid": 683340, + "normalized_name": "disassembled" + }, + { + "appid": 683370, + "normalized_name": "land of arxox" + }, + { + "appid": 683430, + "normalized_name": "assassination station" + }, + { + "appid": 683440, + "normalized_name": "bootybuns & 21" + }, + { + "appid": 683530, + "normalized_name": "freefly burning" + }, + { + "appid": 683600, + "normalized_name": "football mogul 18" + }, + { + "appid": 683620, + "normalized_name": "excursion" + }, + { + "appid": 683630, + "normalized_name": "half past disaster" + }, + { + "appid": 683660, + "normalized_name": "minigolf blast" + }, + { + "appid": 683670, + "normalized_name": "blokdodge" + }, + { + "appid": 683680, + "normalized_name": "暴走熊孩" + }, + { + "appid": 683690, + "normalized_name": "supermarket tycoon" + }, + { + "appid": 683730, + "normalized_name": "crownfall" + }, + { + "appid": 683760, + "normalized_name": "strangers of the power" + }, + { + "appid": 683770, + "normalized_name": "rover builder" + }, + { + "appid": 683780, + "normalized_name": "salvo subs" + }, + { + "appid": 683790, + "normalized_name": "tractorball" + }, + { + "appid": 683810, + "normalized_name": "the dark age i zordon's empire" + }, + { + "appid": 683830, + "normalized_name": "weable" + }, + { + "appid": 683840, + "normalized_name": "galaxia conquestum" + }, + { + "appid": 683870, + "normalized_name": "quest of vidhuraa" + }, + { + "appid": 683890, + "normalized_name": "operation sheep defense" + }, + { + "appid": 683900, + "normalized_name": "rollercoaster tycoon classic" + }, + { + "appid": 683930, + "normalized_name": "a wonder" + }, + { + "appid": 683940, + "normalized_name": "lawgivers" + }, + { + "appid": 683970, + "normalized_name": "entwined the perfect murder" + }, + { + "appid": 684000, + "normalized_name": "wooden ocean" + }, + { + "appid": 684040, + "normalized_name": "logos" + }, + { + "appid": 684050, + "normalized_name": "achievement idler black" + }, + { + "appid": 684060, + "normalized_name": "the hero unmasked!" + }, + { + "appid": 684130, + "normalized_name": "desert strait operation online" + }, + { + "appid": 684170, + "normalized_name": "hexlide" + }, + { + "appid": 684200, + "normalized_name": "icons legacy" + }, + { + "appid": 684210, + "normalized_name": "7" + }, + { + "appid": 684230, + "normalized_name": "madcap castle" + }, + { + "appid": 684250, + "normalized_name": "月之暗面 the dark side of the moon" + }, + { + "appid": 684260, + "normalized_name": "phantom warfare" + }, + { + "appid": 684270, + "normalized_name": "silicon zeroes" + }, + { + "appid": 684320, + "normalized_name": "hot pink" + }, + { + "appid": 684350, + "normalized_name": "tank tactics tds" + }, + { + "appid": 684400, + "normalized_name": "power war the first men" + }, + { + "appid": 684410, + "normalized_name": "bridge constructor portal" + }, + { + "appid": 684420, + "normalized_name": "steampunk syndicate 2" + }, + { + "appid": 684430, + "normalized_name": "ju" + }, + { + "appid": 684450, + "normalized_name": "surviving the aftermath" + }, + { + "appid": 684470, + "normalized_name": "super blockbreak 3d" + }, + { + "appid": 684490, + "normalized_name": "monsters in haha island (群妖志)" + }, + { + "appid": 684510, + "normalized_name": "orn the tiny forest sprite" + }, + { + "appid": 684530, + "normalized_name": "lance a lot enhanced" + }, + { + "appid": 684560, + "normalized_name": "beyond the wall" + }, + { + "appid": 684570, + "normalized_name": "dr. dungeon's madman!" + }, + { + "appid": 684580, + "normalized_name": "shoppe keep 2" + }, + { + "appid": 684590, + "normalized_name": "tale of enki pilgrimage" + }, + { + "appid": 684620, + "normalized_name": "jetx vr" + }, + { + "appid": 684650, + "normalized_name": "turret sector" + }, + { + "appid": 684680, + "normalized_name": "polygoneer" + }, + { + "appid": 684700, + "normalized_name": "celestian tales realms beyond" + }, + { + "appid": 684720, + "normalized_name": "battlegun" + }, + { + "appid": 684770, + "normalized_name": "fall fear fly redemption" + }, + { + "appid": 684800, + "normalized_name": "log jammers" + }, + { + "appid": 684820, + "normalized_name": "singularity roller" + }, + { + "appid": 684840, + "normalized_name": "days of purgatory" + }, + { + "appid": 684870, + "normalized_name": "spiral splatter" + }, + { + "appid": 684930, + "normalized_name": "fantasy era" + }, + { + "appid": 684940, + "normalized_name": "logistical british isles" + }, + { + "appid": 684970, + "normalized_name": "rules of destruction" + }, + { + "appid": 684980, + "normalized_name": "sudokube" + }, + { + "appid": 685040, + "normalized_name": "mr rabbit's jigsaw puzzle" + }, + { + "appid": 685050, + "normalized_name": "spartan" + }, + { + "appid": 685110, + "normalized_name": "metachromium" + }, + { + "appid": 685120, + "normalized_name": "geometry world" + }, + { + "appid": 685130, + "normalized_name": "radar defense" + }, + { + "appid": 685140, + "normalized_name": "zoo strikers" + }, + { + "appid": 685200, + "normalized_name": "seconds to square" + }, + { + "appid": 685230, + "normalized_name": "alienzix" + }, + { + "appid": 685240, + "normalized_name": "paradiddle" + }, + { + "appid": 685310, + "normalized_name": "transport defender" + }, + { + "appid": 685330, + "normalized_name": "lost connection" + }, + { + "appid": 685340, + "normalized_name": "delivery from the pain survival / 末日方舟 生存" + }, + { + "appid": 685360, + "normalized_name": "third exit" + }, + { + "appid": 685370, + "normalized_name": "jewels of the mysterious woodland" + }, + { + "appid": 685400, + "normalized_name": "skelly selest" + }, + { + "appid": 685420, + "normalized_name": "grace of zordan" + }, + { + "appid": 685430, + "normalized_name": "run crabby run adventure" + }, + { + "appid": 685450, + "normalized_name": "cobos" + }, + { + "appid": 685560, + "normalized_name": "arenus" + }, + { + "appid": 685570, + "normalized_name": "turretmaster" + }, + { + "appid": 685670, + "normalized_name": "know by heart" + }, + { + "appid": 685680, + "normalized_name": "sakura gamer" + }, + { + "appid": 685690, + "normalized_name": "guns'n'stories bulletproof vr" + }, + { + "appid": 685700, + "normalized_name": "asteroid hunter" + }, + { + "appid": 685730, + "normalized_name": "vr darts zone" + }, + { + "appid": 685740, + "normalized_name": "schoolwar become a vr animegirl" + }, + { + "appid": 685750, + "normalized_name": "the soldier in the mine" + }, + { + "appid": 685760, + "normalized_name": "stones of rome" + }, + { + "appid": 685770, + "normalized_name": "2d mahjong temple" + }, + { + "appid": 685790, + "normalized_name": "ruthless safari" + }, + { + "appid": 685800, + "normalized_name": "tough story big hell" + }, + { + "appid": 685870, + "normalized_name": "homelesshood" + }, + { + "appid": 685910, + "normalized_name": "battlefleet engineer" + }, + { + "appid": 685920, + "normalized_name": "angry gnome" + }, + { + "appid": 685970, + "normalized_name": "martha madison forces" + }, + { + "appid": 685990, + "normalized_name": "forgotten land" + }, + { + "appid": 686000, + "normalized_name": "lightwire" + }, + { + "appid": 686010, + "normalized_name": "the hunt rebuilt" + }, + { + "appid": 686030, + "normalized_name": "digital domain’s monkey king" + }, + { + "appid": 686040, + "normalized_name": "reallygoodbattle" + }, + { + "appid": 686060, + "normalized_name": "mewgenics" + }, + { + "appid": 686090, + "normalized_name": "bloodlines of prima" + }, + { + "appid": 686100, + "normalized_name": "canboom vr" + }, + { + "appid": 686110, + "normalized_name": "robot heroes" + }, + { + "appid": 686200, + "normalized_name": "door kickers action squad" + }, + { + "appid": 686240, + "normalized_name": "gunducky industries++" + }, + { + "appid": 686260, + "normalized_name": "forged battalion" + }, + { + "appid": 686270, + "normalized_name": "kiitsu" + }, + { + "appid": 686290, + "normalized_name": "radical roach infinity" + }, + { + "appid": 686300, + "normalized_name": "neon coliseum" + }, + { + "appid": 686340, + "normalized_name": "insanity vr last score" + }, + { + "appid": 686360, + "normalized_name": "dungeons & treasure vr" + }, + { + "appid": 686380, + "normalized_name": "nightmare at the lighthouse" + }, + { + "appid": 686440, + "normalized_name": "hard time" + }, + { + "appid": 686450, + "normalized_name": "the little ball that could" + }, + { + "appid": 686490, + "normalized_name": "arkanoidsmoking" + }, + { + "appid": 686500, + "normalized_name": "sylvio 2" + }, + { + "appid": 686510, + "normalized_name": "fatty rabbit hole" + }, + { + "appid": 686520, + "normalized_name": "gnomes garden new home" + }, + { + "appid": 686550, + "normalized_name": "trivia vault mixed trivia" + }, + { + "appid": 686570, + "normalized_name": "freedom defender" + }, + { + "appid": 686580, + "normalized_name": "storms of shambhala" + }, + { + "appid": 686610, + "normalized_name": "sobreviva" + }, + { + "appid": 686620, + "normalized_name": "3d mahjong worlds" + }, + { + "appid": 686630, + "normalized_name": "bricks in the box" + }, + { + "appid": 686640, + "normalized_name": "space panic arena" + }, + { + "appid": 686660, + "normalized_name": "the mice of riddle place the incident of izzy ramirez" + }, + { + "appid": 686680, + "normalized_name": "computer tycoon" + }, + { + "appid": 686720, + "normalized_name": "saga scarlet grace ambitions" + }, + { + "appid": 686760, + "normalized_name": "carpe diem reboot" + }, + { + "appid": 686770, + "normalized_name": "the wind and wilting blossom" + }, + { + "appid": 686810, + "normalized_name": "hell let loose" + }, + { + "appid": 686870, + "normalized_name": "lost items" + }, + { + "appid": 686900, + "normalized_name": "bronze age hd" + }, + { + "appid": 686910, + "normalized_name": "delirium" + }, + { + "appid": 686940, + "normalized_name": "captivus" + }, + { + "appid": 686950, + "normalized_name": "aesculap orthopilotelite vr palpation" + }, + { + "appid": 687260, + "normalized_name": "tokyo dark" + }, + { + "appid": 687270, + "normalized_name": "divide" + }, + { + "appid": 687310, + "normalized_name": "xenia" + }, + { + "appid": 687320, + "normalized_name": "mine!" + }, + { + "appid": 687340, + "normalized_name": "spyhack episode 1" + }, + { + "appid": 687360, + "normalized_name": "doodle jamboree" + }, + { + "appid": 687390, + "normalized_name": "huedango" + }, + { + "appid": 687420, + "normalized_name": "lone vessel" + }, + { + "appid": 687440, + "normalized_name": "in the valley of gods" + }, + { + "appid": 687480, + "normalized_name": "trivia vault science & history trivia" + }, + { + "appid": 687490, + "normalized_name": "trivia vault super heroes trivia" + }, + { + "appid": 687510, + "normalized_name": "wirenet" + }, + { + "appid": 687520, + "normalized_name": "realm quest" + }, + { + "appid": 687540, + "normalized_name": "tasty planet" + }, + { + "appid": 687560, + "normalized_name": "avoid the monsters" + }, + { + "appid": 687590, + "normalized_name": "juniper's knot" + }, + { + "appid": 687600, + "normalized_name": "magic pixel picross" + }, + { + "appid": 687610, + "normalized_name": "cat vs. corgis" + }, + { + "appid": 687630, + "normalized_name": "epic cards battle 2 (tcg)" + }, + { + "appid": 687640, + "normalized_name": "infinity assassin (vr)" + }, + { + "appid": 687650, + "normalized_name": "childhood grocery 辣条杂货店 学校小卖部 令人感动的童年回忆,经典策略模拟经营解密" + }, + { + "appid": 687720, + "normalized_name": "baobabs mausoleum ep.2 1313 barnabas dead end drive" + }, + { + "appid": 687730, + "normalized_name": "my way vr" + }, + { + "appid": 687750, + "normalized_name": "yandere school" + }, + { + "appid": 687760, + "normalized_name": "occultus mediterranean cabal" + }, + { + "appid": 687800, + "normalized_name": "heads will roll reforged" + }, + { + "appid": 687830, + "normalized_name": "transparent black" + }, + { + "appid": 687850, + "normalized_name": "head goal soccer online" + }, + { + "appid": 687860, + "normalized_name": "the pilgrimage" + }, + { + "appid": 687890, + "normalized_name": "runaway vr" + }, + { + "appid": 687900, + "normalized_name": "unworded" + }, + { + "appid": 687920, + "normalized_name": "tropical liquor" + }, + { + "appid": 687950, + "normalized_name": "suburban scavengers" + }, + { + "appid": 687980, + "normalized_name": "mothlight" + }, + { + "appid": 688000, + "normalized_name": "trials of the thief taker" + }, + { + "appid": 688020, + "normalized_name": "kitchen simulator 2" + }, + { + "appid": 688050, + "normalized_name": "boidwatch" + }, + { + "appid": 688060, + "normalized_name": "odd realm" + }, + { + "appid": 688070, + "normalized_name": "legendary gary" + }, + { + "appid": 688120, + "normalized_name": "toxicant" + }, + { + "appid": 688130, + "normalized_name": "pogostuck rage with your friends" + }, + { + "appid": 688140, + "normalized_name": "tempest 4000" + }, + { + "appid": 688150, + "normalized_name": "jumper speedrun" + }, + { + "appid": 688170, + "normalized_name": "denki gaka's bombshell" + }, + { + "appid": 688200, + "normalized_name": "cassandra's fabulous foray" + }, + { + "appid": 688210, + "normalized_name": "deathlands" + }, + { + "appid": 688260, + "normalized_name": "morph girl" + }, + { + "appid": 688330, + "normalized_name": "zombie commando 3d" + }, + { + "appid": 688350, + "normalized_name": "wrath of the goliaths dinosaurs" + }, + { + "appid": 688370, + "normalized_name": "cyberoque" + }, + { + "appid": 688380, + "normalized_name": "restoration" + }, + { + "appid": 688420, + "normalized_name": "bad north jotunn" + }, + { + "appid": 688470, + "normalized_name": "汉匈决战/han xiongnu wars" + }, + { + "appid": 688500, + "normalized_name": "rise of one" + }, + { + "appid": 688540, + "normalized_name": "zombie raid no one survives" + }, + { + "appid": 688570, + "normalized_name": "romance with chocolate hidden object in paris. hopa" + }, + { + "appid": 688620, + "normalized_name": "tiny force deluxe" + }, + { + "appid": 688630, + "normalized_name": "nightork adventures 2 legacy of chaos" + }, + { + "appid": 688650, + "normalized_name": "you doesn't exist" + }, + { + "appid": 688660, + "normalized_name": "her majesty's ship" + }, + { + "appid": 688680, + "normalized_name": "oswald's adventure" + }, + { + "appid": 688690, + "normalized_name": "yoba" + }, + { + "appid": 688720, + "normalized_name": "infinity fall" + }, + { + "appid": 688730, + "normalized_name": "petridish.pw" + }, + { + "appid": 688740, + "normalized_name": "fractured minds" + }, + { + "appid": 688750, + "normalized_name": "minedrill redux" + }, + { + "appid": 688770, + "normalized_name": "tetrux online" + }, + { + "appid": 688780, + "normalized_name": "taras bulba and platforms of hoolion" + }, + { + "appid": 688790, + "normalized_name": "nebula nuker" + }, + { + "appid": 688800, + "normalized_name": "paralysis" + }, + { + "appid": 688880, + "normalized_name": "cynoclept the game" + }, + { + "appid": 688900, + "normalized_name": "endless reality" + }, + { + "appid": 688910, + "normalized_name": "cube c vr game collection" + }, + { + "appid": 688930, + "normalized_name": "city of ages picture supportive text mud (server and client included)" + }, + { + "appid": 688940, + "normalized_name": "steve's pub soda on tap" + }, + { + "appid": 689000, + "normalized_name": "vulture" + }, + { + "appid": 689020, + "normalized_name": "final m00n defender of the cubes" + }, + { + "appid": 689030, + "normalized_name": "infection rate" + }, + { + "appid": 689040, + "normalized_name": "scuttlers" + }, + { + "appid": 689050, + "normalized_name": "next stop zombie" + }, + { + "appid": 689070, + "normalized_name": "asyula 方舟之链" + }, + { + "appid": 689090, + "normalized_name": "microtransaction simulator" + }, + { + "appid": 689100, + "normalized_name": "ravager" + }, + { + "appid": 689120, + "normalized_name": "scuffle scoundrels" + }, + { + "appid": 689130, + "normalized_name": "operation polarity hook" + }, + { + "appid": 689170, + "normalized_name": "potemkin" + }, + { + "appid": 689180, + "normalized_name": "trivia vault 1980's trivia" + }, + { + "appid": 689210, + "normalized_name": "the museum of throughview" + }, + { + "appid": 689270, + "normalized_name": "chessia" + }, + { + "appid": 689290, + "normalized_name": "my rc buggy! vr" + }, + { + "appid": 689300, + "normalized_name": "monsteria" + }, + { + "appid": 689340, + "normalized_name": "logistical usa florida" + }, + { + "appid": 689350, + "normalized_name": "ruin city gasolina" + }, + { + "appid": 689370, + "normalized_name": "azzy battles the darkness" + }, + { + "appid": 689380, + "normalized_name": "亲临三国" + }, + { + "appid": 689400, + "normalized_name": "madu maths" + }, + { + "appid": 689460, + "normalized_name": "trinity dungeon" + }, + { + "appid": 689480, + "normalized_name": "leon's crusade (la cruzada de león)" + }, + { + "appid": 689520, + "normalized_name": "★ fallalypse ★" + }, + { + "appid": 689600, + "normalized_name": "little earth" + }, + { + "appid": 689610, + "normalized_name": "hunt 'n sneak" + }, + { + "appid": 689620, + "normalized_name": "alpha mike foxtrot vr amf vr" + }, + { + "appid": 689660, + "normalized_name": "without a roof (w.a.r.)" + }, + { + "appid": 689680, + "normalized_name": "memories" + }, + { + "appid": 689700, + "normalized_name": "mad crown" + }, + { + "appid": 689710, + "normalized_name": "hop step sing! kimamani☆summer vacation (hq edition)" + }, + { + "appid": 689720, + "normalized_name": "gangsta underground the poker" + }, + { + "appid": 689740, + "normalized_name": "mystery loss" + }, + { + "appid": 689760, + "normalized_name": "balanced" + }, + { + "appid": 689830, + "normalized_name": "dueleum" + }, + { + "appid": 689880, + "normalized_name": "bee aware! 2.0" + }, + { + "appid": 689900, + "normalized_name": "darkestville castle" + }, + { + "appid": 689910, + "normalized_name": "another lost phone laura's story" + }, + { + "appid": 689980, + "normalized_name": "car trader simulator" + }, + { + "appid": 690000, + "normalized_name": "slimebrawl" + }, + { + "appid": 690040, + "normalized_name": "superhot mind control delete" + }, + { + "appid": 690060, + "normalized_name": "sore" + }, + { + "appid": 690080, + "normalized_name": "deadly traps" + }, + { + "appid": 690100, + "normalized_name": "twokinds online" + }, + { + "appid": 690110, + "normalized_name": "wellspring altar of roots" + }, + { + "appid": 690120, + "normalized_name": "inked a tale of love" + }, + { + "appid": 690130, + "normalized_name": "flatfatcat" + }, + { + "appid": 690140, + "normalized_name": "sword legacy omen" + }, + { + "appid": 690150, + "normalized_name": "fossil hunters" + }, + { + "appid": 690200, + "normalized_name": "capsular" + }, + { + "appid": 690210, + "normalized_name": "roboholic" + }, + { + "appid": 690220, + "normalized_name": "call me skyfish" + }, + { + "appid": 690240, + "normalized_name": "trivia vault classic rock trivia" + }, + { + "appid": 690260, + "normalized_name": "tower miners" + }, + { + "appid": 690290, + "normalized_name": "territory control 2" + }, + { + "appid": 690320, + "normalized_name": "snake a roid" + }, + { + "appid": 690350, + "normalized_name": "endless combat" + }, + { + "appid": 690370, + "normalized_name": "cantata" + }, + { + "appid": 690400, + "normalized_name": "rainbow step" + }, + { + "appid": 690410, + "normalized_name": "twisted enhanced" + }, + { + "appid": 690420, + "normalized_name": "quickscoper doge the dank illuminati memes" + }, + { + "appid": 690440, + "normalized_name": "korvae in space" + }, + { + "appid": 690460, + "normalized_name": "sky hunter" + }, + { + "appid": 690500, + "normalized_name": "in the village of grandfather summer sun heat." + }, + { + "appid": 690530, + "normalized_name": "灵魂筹码 soul at stake" + }, + { + "appid": 690550, + "normalized_name": "pogo" + }, + { + "appid": 690560, + "normalized_name": "i am overburdened" + }, + { + "appid": 690570, + "normalized_name": "drone racer canyons" + }, + { + "appid": 690580, + "normalized_name": "evil spirits" + }, + { + "appid": 690620, + "normalized_name": "downward spiral horus station" + }, + { + "appid": 690630, + "normalized_name": "light fantastik" + }, + { + "appid": 690640, + "normalized_name": "trine 4 the nightmare prince" + }, + { + "appid": 690670, + "normalized_name": "klondike solitaire kings" + }, + { + "appid": 690710, + "normalized_name": "heiankyo alien / 平安京エイリアン" + }, + { + "appid": 690740, + "normalized_name": "books" + }, + { + "appid": 690790, + "normalized_name": "dirt rally 2.0" + }, + { + "appid": 690800, + "normalized_name": "solar warden" + }, + { + "appid": 690810, + "normalized_name": "killing floor incursion" + }, + { + "appid": 690820, + "normalized_name": "the sunset 2096" + }, + { + "appid": 690830, + "normalized_name": "foundation" + }, + { + "appid": 690840, + "normalized_name": "martha madison simple machines volume 1" + }, + { + "appid": 690850, + "normalized_name": "magibot" + }, + { + "appid": 690860, + "normalized_name": "pirate jump 2" + }, + { + "appid": 690930, + "normalized_name": "evening surprise" + }, + { + "appid": 690950, + "normalized_name": "skeleton sprint" + }, + { + "appid": 690980, + "normalized_name": "to4 tactical operations" + }, + { + "appid": 691020, + "normalized_name": "fog of war free" + }, + { + "appid": 691080, + "normalized_name": "3d hardcore cube" + }, + { + "appid": 691090, + "normalized_name": "fates call a new beginning" + }, + { + "appid": 691150, + "normalized_name": "saku saku love blooms with the cherry blossoms" + }, + { + "appid": 691160, + "normalized_name": "electronauts vr music" + }, + { + "appid": 691210, + "normalized_name": "dead man's trail" + }, + { + "appid": 691220, + "normalized_name": "parkour" + }, + { + "appid": 691240, + "normalized_name": "going nowhere the dream" + }, + { + "appid": 691250, + "normalized_name": "charlie the duck" + }, + { + "appid": 691260, + "normalized_name": "population one" + }, + { + "appid": 691280, + "normalized_name": "sinner sacrifice for redemption" + }, + { + "appid": 691320, + "normalized_name": "gun club vr" + }, + { + "appid": 691390, + "normalized_name": "alchemage" + }, + { + "appid": 691420, + "normalized_name": "continuous girl" + }, + { + "appid": 691430, + "normalized_name": "firebird the unfinished" + }, + { + "appid": 691450, + "normalized_name": "misao 2024 hd remaster" + }, + { + "appid": 691540, + "normalized_name": "space fighter" + }, + { + "appid": 691570, + "normalized_name": "wingless" + }, + { + "appid": 691580, + "normalized_name": "maggie's movies camera action!" + }, + { + "appid": 691590, + "normalized_name": "kryptcrawler" + }, + { + "appid": 691620, + "normalized_name": "death rings of jupiter" + }, + { + "appid": 691630, + "normalized_name": "stellatum" + }, + { + "appid": 691640, + "normalized_name": "roadrunner vr" + }, + { + "appid": 691650, + "normalized_name": "kaet must die!" + }, + { + "appid": 691680, + "normalized_name": "ganbatte" + }, + { + "appid": 691690, + "normalized_name": "ash of gods redemption" + }, + { + "appid": 691700, + "normalized_name": "triton wing" + }, + { + "appid": 691720, + "normalized_name": "retrogunx vr" + }, + { + "appid": 691730, + "normalized_name": "fpv drone simulator" + }, + { + "appid": 691750, + "normalized_name": "andromeda wing" + }, + { + "appid": 691770, + "normalized_name": "eiyu*senki –the world conquest" + }, + { + "appid": 691790, + "normalized_name": "arcadian atlas" + }, + { + "appid": 691830, + "normalized_name": "avernum 3 ruined world" + }, + { + "appid": 691850, + "normalized_name": "the mines of morseph" + }, + { + "appid": 691860, + "normalized_name": "watch out" + }, + { + "appid": 691890, + "normalized_name": "machine crisis (陨星危机)" + }, + { + "appid": 691910, + "normalized_name": "fishing maniacs (td/rts)" + }, + { + "appid": 691930, + "normalized_name": "msi electric city core assault" + }, + { + "appid": 691980, + "normalized_name": "fortune's tavern" + }, + { + "appid": 691990, + "normalized_name": "cat's lover" + }, + { + "appid": 692030, + "normalized_name": "tennis world tour" + }, + { + "appid": 692090, + "normalized_name": "robin of loxley the legend of sherwood" + }, + { + "appid": 692100, + "normalized_name": "infliction" + }, + { + "appid": 692110, + "normalized_name": "archrobo robotic annihilation" + }, + { + "appid": 692130, + "normalized_name": "rise of titans" + }, + { + "appid": 692170, + "normalized_name": "virtual robots robot programming simulator" + }, + { + "appid": 692190, + "normalized_name": "pixel puzzle picross" + }, + { + "appid": 692200, + "normalized_name": "amaze dark times" + }, + { + "appid": 692270, + "normalized_name": "over the moonlight" + }, + { + "appid": 692310, + "normalized_name": "repulse galactic rivals" + }, + { + "appid": 692360, + "normalized_name": "tales of wedding rings vr" + }, + { + "appid": 692530, + "normalized_name": "community garden" + }, + { + "appid": 692590, + "normalized_name": "defective" + }, + { + "appid": 692610, + "normalized_name": "two escapes" + }, + { + "appid": 692630, + "normalized_name": "beetlejuice bad as can" + }, + { + "appid": 692660, + "normalized_name": "invictus in the shadow of olympus" + }, + { + "appid": 692680, + "normalized_name": "don't explode" + }, + { + "appid": 692690, + "normalized_name": "dance collider" + }, + { + "appid": 692710, + "normalized_name": "astron jump baby" + }, + { + "appid": 692780, + "normalized_name": "olorun theocracy" + }, + { + "appid": 692790, + "normalized_name": "春风 | spring breeze" + }, + { + "appid": 692830, + "normalized_name": "fear of nightmares madness descent" + }, + { + "appid": 692840, + "normalized_name": "underworld ascendant" + }, + { + "appid": 692850, + "normalized_name": "bloodstained ritual of the night" + }, + { + "appid": 692890, + "normalized_name": "roboquest" + }, + { + "appid": 692920, + "normalized_name": "xxz" + }, + { + "appid": 692930, + "normalized_name": "dreadeye vr" + }, + { + "appid": 692950, + "normalized_name": "the dew" + }, + { + "appid": 693020, + "normalized_name": "space commander 9" + }, + { + "appid": 693030, + "normalized_name": "neo angle" + }, + { + "appid": 693070, + "normalized_name": "martha madison simple machines volume 2" + }, + { + "appid": 693080, + "normalized_name": "martha madison magnetism" + }, + { + "appid": 693090, + "normalized_name": "star waker" + }, + { + "appid": 693150, + "normalized_name": "martha madison electricity" + }, + { + "appid": 693180, + "normalized_name": "slice of life" + }, + { + "appid": 693190, + "normalized_name": "survival driver 2 heavy vehicles" + }, + { + "appid": 693210, + "normalized_name": "grimtale island" + }, + { + "appid": 693240, + "normalized_name": "mahjong challenge" + }, + { + "appid": 693250, + "normalized_name": "panda run" + }, + { + "appid": 693300, + "normalized_name": "unbalance" + }, + { + "appid": 693310, + "normalized_name": "bomsy" + }, + { + "appid": 693320, + "normalized_name": "chinomikon" + }, + { + "appid": 693330, + "normalized_name": "fake world vr" + }, + { + "appid": 693380, + "normalized_name": "neckbeards basement arena" + }, + { + "appid": 693400, + "normalized_name": "taking valhalla vr" + }, + { + "appid": 693430, + "normalized_name": "the simple apocalypse" + }, + { + "appid": 693450, + "normalized_name": "clad in iron gulf of mexico 1864" + }, + { + "appid": 693500, + "normalized_name": "castle demolition vr" + }, + { + "appid": 693560, + "normalized_name": "after rain phoenix rise" + }, + { + "appid": 693580, + "normalized_name": "goblins of elderstone" + }, + { + "appid": 693650, + "normalized_name": "logistical italy" + }, + { + "appid": 693670, + "normalized_name": "molten armor" + }, + { + "appid": 693700, + "normalized_name": "prime mover" + }, + { + "appid": 693790, + "normalized_name": "crypt hunter" + }, + { + "appid": 693800, + "normalized_name": "loco parentis / 孤女咒怨" + }, + { + "appid": 693810, + "normalized_name": "treasure at the top" + }, + { + "appid": 693820, + "normalized_name": "the ragdoll" + }, + { + "appid": 693830, + "normalized_name": "containment corps" + }, + { + "appid": 693880, + "normalized_name": "trivia vault 1980's trivia 2" + }, + { + "appid": 693890, + "normalized_name": "trivia vault classic rock trivia 2" + }, + { + "appid": 693940, + "normalized_name": "orrstead" + }, + { + "appid": 693950, + "normalized_name": "カニマン vs メカモンキー" + }, + { + "appid": 693960, + "normalized_name": "just ride:apparent horizon 狂飙:极限视界" + }, + { + "appid": 694060, + "normalized_name": "ignis universia eternal sisters saga dx" + }, + { + "appid": 694070, + "normalized_name": "badlands roadtrip" + }, + { + "appid": 694110, + "normalized_name": "build a bridge!" + }, + { + "appid": 694130, + "normalized_name": "my free zoo" + }, + { + "appid": 694140, + "normalized_name": "undercity" + }, + { + "appid": 694150, + "normalized_name": "abyssal fall" + }, + { + "appid": 694160, + "normalized_name": "guardians of life vr" + }, + { + "appid": 694180, + "normalized_name": "mobilezombie" + }, + { + "appid": 694230, + "normalized_name": "martha madison energy" + }, + { + "appid": 694240, + "normalized_name": "martha madison waves" + }, + { + "appid": 694280, + "normalized_name": "zombie army 4 dead war" + }, + { + "appid": 694370, + "normalized_name": "space pilgrim academy year 1" + }, + { + "appid": 694400, + "normalized_name": "diminutive" + }, + { + "appid": 694420, + "normalized_name": "alimardan's mischief" + }, + { + "appid": 694430, + "normalized_name": "alimardan meets merlin" + }, + { + "appid": 694440, + "normalized_name": "man of law | judge simulator" + }, + { + "appid": 694470, + "normalized_name": "guitar hardness" + }, + { + "appid": 694480, + "normalized_name": "dotfi" + }, + { + "appid": 694490, + "normalized_name": "quad hopping" + }, + { + "appid": 694500, + "normalized_name": "army men rts" + }, + { + "appid": 694520, + "normalized_name": "his chuunibyou cannot be cured!" + }, + { + "appid": 694550, + "normalized_name": "audio forager" + }, + { + "appid": 694610, + "normalized_name": "lumak's wraptiles" + }, + { + "appid": 694660, + "normalized_name": "end of days" + }, + { + "appid": 694670, + "normalized_name": "charpi" + }, + { + "appid": 694680, + "normalized_name": "santa claws" + }, + { + "appid": 694720, + "normalized_name": "not my car – battle royale" + }, + { + "appid": 694730, + "normalized_name": "evil park" + }, + { + "appid": 694760, + "normalized_name": "sweaty palms" + }, + { + "appid": 694770, + "normalized_name": "vestaria saga i war of the scions" + }, + { + "appid": 694830, + "normalized_name": "give it up! plus / 永不言弃 plus" + }, + { + "appid": 694930, + "normalized_name": "lost god" + }, + { + "appid": 694950, + "normalized_name": "oure" + }, + { + "appid": 694960, + "normalized_name": "zenethics lab outbreak" + }, + { + "appid": 694980, + "normalized_name": "fjong" + }, + { + "appid": 694990, + "normalized_name": "goblin and coins ii" + }, + { + "appid": 695050, + "normalized_name": "rain of reflections set free" + }, + { + "appid": 695100, + "normalized_name": "smoke and sacrifice" + }, + { + "appid": 695110, + "normalized_name": "twickles" + }, + { + "appid": 695320, + "normalized_name": "jobous the alien r" + }, + { + "appid": 695330, + "normalized_name": "season a letter to the future" + }, + { + "appid": 695360, + "normalized_name": "veritex" + }, + { + "appid": 695420, + "normalized_name": "hex origins" + }, + { + "appid": 695440, + "normalized_name": "dark dimensions wax beauty collector's" + }, + { + "appid": 695450, + "normalized_name": "kingdom of the dragon" + }, + { + "appid": 695460, + "normalized_name": "coffee pixes" + }, + { + "appid": 695470, + "normalized_name": "super galaxy boy" + }, + { + "appid": 695480, + "normalized_name": "space calibur" + }, + { + "appid": 695490, + "normalized_name": "operation chromite 1950 vr" + }, + { + "appid": 695510, + "normalized_name": "rena and elin" + }, + { + "appid": 695560, + "normalized_name": "building block heroes" + }, + { + "appid": 695570, + "normalized_name": "pyromind" + }, + { + "appid": 695600, + "normalized_name": "this grand life" + }, + { + "appid": 695630, + "normalized_name": "chinese paladin:sword and fairy" + }, + { + "appid": 695650, + "normalized_name": "猎人物语" + }, + { + "appid": 695660, + "normalized_name": "saloon showdown vr" + }, + { + "appid": 695720, + "normalized_name": "matchville match 3 puzzle" + }, + { + "appid": 695760, + "normalized_name": "girls and dungeons" + }, + { + "appid": 695810, + "normalized_name": "horde attack" + }, + { + "appid": 695830, + "normalized_name": "captain backwater" + }, + { + "appid": 695880, + "normalized_name": "the flying turtle jewel quest" + }, + { + "appid": 695910, + "normalized_name": "the relentless" + }, + { + "appid": 695920, + "normalized_name": "super seducer how to talk to girls" + }, + { + "appid": 695940, + "normalized_name": "love chronicles the sword and the rose" + }, + { + "appid": 695950, + "normalized_name": "european mystery the face of envy collector's" + }, + { + "appid": 695960, + "normalized_name": "awakening the goblin kingdom collector's" + }, + { + "appid": 695970, + "normalized_name": "treadnauts" + }, + { + "appid": 695980, + "normalized_name": "labyrinths of the world forbidden muse collector's" + }, + { + "appid": 695990, + "normalized_name": "dead reckoning brassfield manor collector's" + }, + { + "appid": 696000, + "normalized_name": "witches' legacy the dark throne collector's" + }, + { + "appid": 696010, + "normalized_name": "otherworld shades of fall collector's" + }, + { + "appid": 696020, + "normalized_name": "surface game of gods collector's" + }, + { + "appid": 696040, + "normalized_name": "tactera" + }, + { + "appid": 696050, + "normalized_name": "the final days eternal night" + }, + { + "appid": 696060, + "normalized_name": "live" + }, + { + "appid": 696110, + "normalized_name": "backgammon" + }, + { + "appid": 696140, + "normalized_name": "no heroes here" + }, + { + "appid": 696150, + "normalized_name": "electro ride the neon racing" + }, + { + "appid": 696160, + "normalized_name": "necromancer accountant" + }, + { + "appid": 696170, + "normalized_name": "senran kagura peach beach splash" + }, + { + "appid": 696180, + "normalized_name": "bullet witch" + }, + { + "appid": 696190, + "normalized_name": "vacant" + }, + { + "appid": 696220, + "normalized_name": "folklore hunter" + }, + { + "appid": 696250, + "normalized_name": "lost shipwreck" + }, + { + "appid": 696280, + "normalized_name": "sole" + }, + { + "appid": 696310, + "normalized_name": "the ghost of joe p" + }, + { + "appid": 696360, + "normalized_name": "chinese paladin:sword and fairy 6" + }, + { + "appid": 696370, + "normalized_name": "broke protocol" + }, + { + "appid": 696410, + "normalized_name": "toy generals" + }, + { + "appid": 696430, + "normalized_name": "progetto ustica" + }, + { + "appid": 696470, + "normalized_name": "house dating vr cute korean girl sehyun" + }, + { + "appid": 696480, + "normalized_name": "the norwood suite" + }, + { + "appid": 696490, + "normalized_name": "totoball" + }, + { + "appid": 696500, + "normalized_name": "soldiers of freedom" + }, + { + "appid": 696530, + "normalized_name": "lake ridden" + }, + { + "appid": 696540, + "normalized_name": "60 second strike" + }, + { + "appid": 696560, + "normalized_name": "bouncing duck simulator" + }, + { + "appid": 696580, + "normalized_name": "the tower" + }, + { + "appid": 696590, + "normalized_name": "xxz xxl" + }, + { + "appid": 696600, + "normalized_name": "星球之间/between planets" + }, + { + "appid": 696630, + "normalized_name": "starlight" + }, + { + "appid": 696710, + "normalized_name": "the surprising adventures of munchausen" + }, + { + "appid": 696760, + "normalized_name": "hololab champions" + }, + { + "appid": 696770, + "normalized_name": "k'nossos" + }, + { + "appid": 696810, + "normalized_name": "empyre lords of the sea gates" + }, + { + "appid": 696850, + "normalized_name": "zap blastum" + }, + { + "appid": 696860, + "normalized_name": "900" + }, + { + "appid": 696880, + "normalized_name": "2d paintball" + }, + { + "appid": 696910, + "normalized_name": "the legend of the dragonflame high school" + }, + { + "appid": 696940, + "normalized_name": "dreamworks voltron vr chronicles" + }, + { + "appid": 696960, + "normalized_name": "helios battle universe" + }, + { + "appid": 696990, + "normalized_name": "fear for freedom" + }, + { + "appid": 697000, + "normalized_name": "you are king" + }, + { + "appid": 697130, + "normalized_name": "the 9th gate" + }, + { + "appid": 697160, + "normalized_name": "pixel to the west" + }, + { + "appid": 697250, + "normalized_name": "beyond enemy lines 2 enhanced" + }, + { + "appid": 697270, + "normalized_name": "onehit" + }, + { + "appid": 697320, + "normalized_name": "kung fu all star vr" + }, + { + "appid": 697330, + "normalized_name": "dronihilation vr" + }, + { + "appid": 697370, + "normalized_name": "linx battle arena" + }, + { + "appid": 697430, + "normalized_name": "differently fast" + }, + { + "appid": 697450, + "normalized_name": "piatka" + }, + { + "appid": 697490, + "normalized_name": "space wrangler" + }, + { + "appid": 697550, + "normalized_name": "it lurks below" + }, + { + "appid": 697580, + "normalized_name": "screamer" + }, + { + "appid": 697610, + "normalized_name": "idle bouncer" + }, + { + "appid": 697630, + "normalized_name": "warma" + }, + { + "appid": 697650, + "normalized_name": "the 25th ward the silver case" + }, + { + "appid": 697660, + "normalized_name": "jump gunners" + }, + { + "appid": 697670, + "normalized_name": "journey of haha" + }, + { + "appid": 697680, + "normalized_name": "marblesared" + }, + { + "appid": 697710, + "normalized_name": "ophidian" + }, + { + "appid": 697730, + "normalized_name": "escape fantasy" + }, + { + "appid": 697800, + "normalized_name": "one night you're crazy" + }, + { + "appid": 697850, + "normalized_name": "fps fun puzzle shooter" + }, + { + "appid": 697870, + "normalized_name": "cruz brothers" + }, + { + "appid": 697890, + "normalized_name": "empty handed" + }, + { + "appid": 697900, + "normalized_name": "bounty below" + }, + { + "appid": 697910, + "normalized_name": "temple raid vr" + }, + { + "appid": 697930, + "normalized_name": "brutal runner" + }, + { + "appid": 697950, + "normalized_name": "tank wars anniversary" + }, + { + "appid": 697960, + "normalized_name": "cute monsters battle arena" + }, + { + "appid": 697970, + "normalized_name": "pyramaze the game" + }, + { + "appid": 698030, + "normalized_name": "comit the astrodian 3" + }, + { + "appid": 698040, + "normalized_name": "legends of the universe cosmic bounty" + }, + { + "appid": 698050, + "normalized_name": "all our asias" + }, + { + "appid": 698080, + "normalized_name": "escape dead earth" + }, + { + "appid": 698100, + "normalized_name": "protagon vr" + }, + { + "appid": 698110, + "normalized_name": "reficul vr" + }, + { + "appid": 698160, + "normalized_name": "dinosaurisland" + }, + { + "appid": 698230, + "normalized_name": "rockbuster" + }, + { + "appid": 698260, + "normalized_name": "star shelter" + }, + { + "appid": 698320, + "normalized_name": "nanoscape" + }, + { + "appid": 698340, + "normalized_name": "沙漠飞车 desert racer" + }, + { + "appid": 698360, + "normalized_name": "within whispers the fall" + }, + { + "appid": 698370, + "normalized_name": "true or false universe" + }, + { + "appid": 698410, + "normalized_name": "ski hard lorsbruck 1978" + }, + { + "appid": 698450, + "normalized_name": "midnight quest" + }, + { + "appid": 698480, + "normalized_name": "hippo sports" + }, + { + "appid": 698500, + "normalized_name": "guppy" + }, + { + "appid": 698520, + "normalized_name": "a writer and his daughter" + }, + { + "appid": 698540, + "normalized_name": "dungeon warfare 2" + }, + { + "appid": 698570, + "normalized_name": "wackit" + }, + { + "appid": 698590, + "normalized_name": "demonstier" + }, + { + "appid": 698600, + "normalized_name": "tooth and claw" + }, + { + "appid": 698610, + "normalized_name": "through blocks" + }, + { + "appid": 698620, + "normalized_name": "screamer 2" + }, + { + "appid": 698640, + "normalized_name": "deep sky derelicts" + }, + { + "appid": 698650, + "normalized_name": "neon the ninja" + }, + { + "appid": 698660, + "normalized_name": "uknon jones & guynelk awesome!" + }, + { + "appid": 698670, + "normalized_name": "scorn" + }, + { + "appid": 698700, + "normalized_name": "rise of the third power" + }, + { + "appid": 698770, + "normalized_name": "watch me jump" + }, + { + "appid": 698780, + "normalized_name": "doki doki literature club!" + }, + { + "appid": 698790, + "normalized_name": "paper fire rookie (formerly paperville panic)" + }, + { + "appid": 698830, + "normalized_name": "puzzle dating" + }, + { + "appid": 698870, + "normalized_name": "metaverse keeper / 元能失控" + }, + { + "appid": 698880, + "normalized_name": "slash/dots." + }, + { + "appid": 698910, + "normalized_name": "cliffstone manor" + }, + { + "appid": 698920, + "normalized_name": "王国出击" + }, + { + "appid": 698950, + "normalized_name": "chaos and the white robot" + }, + { + "appid": 698960, + "normalized_name": "battlemage training" + }, + { + "appid": 698980, + "normalized_name": "sword master" + }, + { + "appid": 698990, + "normalized_name": "only a" + }, + { + "appid": 699010, + "normalized_name": "unsettled" + }, + { + "appid": 699040, + "normalized_name": "millidor" + }, + { + "appid": 699080, + "normalized_name": "jake's love story" + }, + { + "appid": 699100, + "normalized_name": "megaton total destruction" + }, + { + "appid": 699130, + "normalized_name": "world war z" + }, + { + "appid": 699150, + "normalized_name": "rex another island" + }, + { + "appid": 699160, + "normalized_name": "a plot story" + }, + { + "appid": 699170, + "normalized_name": "fell seal arbiter's mark" + }, + { + "appid": 699180, + "normalized_name": "human powered spacecraft" + }, + { + "appid": 699230, + "normalized_name": "birdcakes" + }, + { + "appid": 699240, + "normalized_name": "keyboard killers" + }, + { + "appid": 699330, + "normalized_name": "the iron oath" + }, + { + "appid": 699370, + "normalized_name": "the market trader" + }, + { + "appid": 699390, + "normalized_name": "knife club" + }, + { + "appid": 699410, + "normalized_name": "labyrinthian" + }, + { + "appid": 699470, + "normalized_name": "brindilyl legends the story of landon" + }, + { + "appid": 699480, + "normalized_name": "the doorbreaker" + }, + { + "appid": 699510, + "normalized_name": "the new california" + }, + { + "appid": 699540, + "normalized_name": "argonus and the gods of stone" + }, + { + "appid": 699560, + "normalized_name": "pixel skater" + }, + { + "appid": 699570, + "normalized_name": "the legendary player make your reputation open beta" + }, + { + "appid": 699590, + "normalized_name": "trivia vault science & history trivia 2" + }, + { + "appid": 699600, + "normalized_name": "peg" + }, + { + "appid": 699670, + "normalized_name": "feudal alloy" + }, + { + "appid": 699680, + "normalized_name": "monopolka" + }, + { + "appid": 699700, + "normalized_name": "dying reborn" + }, + { + "appid": 699710, + "normalized_name": "rose and lotus petals of memories" + }, + { + "appid": 699720, + "normalized_name": "timension" + }, + { + "appid": 699740, + "normalized_name": "bannermen" + }, + { + "appid": 699760, + "normalized_name": "triple otakus puzzle" + }, + { + "appid": 699770, + "normalized_name": "rideop thrill ride simulator" + }, + { + "appid": 699780, + "normalized_name": "endless fables 2 frozen path" + }, + { + "appid": 699790, + "normalized_name": "pegasus door" + }, + { + "appid": 699820, + "normalized_name": "mustdashe" + }, + { + "appid": 699850, + "normalized_name": "medieval battle europe" + }, + { + "appid": 699860, + "normalized_name": "civil war 1864" + }, + { + "appid": 699920, + "normalized_name": "despotism 3k" + }, + { + "appid": 699930, + "normalized_name": "freshly fried shrimps seemed hot additionally named noth" + }, + { + "appid": 699940, + "normalized_name": "memetyper" + }, + { + "appid": 699970, + "normalized_name": "breath" + }, + { + "appid": 699990, + "normalized_name": "virtugo" + }, + { + "appid": 700030, + "normalized_name": "life is feudal mmo" + }, + { + "appid": 700050, + "normalized_name": "bees knees" + }, + { + "appid": 700060, + "normalized_name": "space station continuum" + }, + { + "appid": 700100, + "normalized_name": "spooky station" + }, + { + "appid": 700140, + "normalized_name": "frog x bird" + }, + { + "appid": 700160, + "normalized_name": "semblance" + }, + { + "appid": 700170, + "normalized_name": "deserving life" + }, + { + "appid": 700200, + "normalized_name": "20 minute metropolis the action city builder" + }, + { + "appid": 700210, + "normalized_name": "one legacy" + }, + { + "appid": 700240, + "normalized_name": "project genesis" + }, + { + "appid": 700270, + "normalized_name": "boratium wars" + }, + { + "appid": 700310, + "normalized_name": "music racer 2000" + }, + { + "appid": 700330, + "normalized_name": "scp secret laboratory" + }, + { + "appid": 700340, + "normalized_name": "galacatraz eject equip escape" + }, + { + "appid": 700360, + "normalized_name": "knightout" + }, + { + "appid": 700400, + "normalized_name": "planet bash" + }, + { + "appid": 700440, + "normalized_name": "jellyfish" + }, + { + "appid": 700450, + "normalized_name": "silentium 2d" + }, + { + "appid": 700460, + "normalized_name": "nine worlds a viking saga" + }, + { + "appid": 700480, + "normalized_name": "microsoft allegiance" + }, + { + "appid": 700490, + "normalized_name": "玄龙棋mysterychess" + }, + { + "appid": 700510, + "normalized_name": "岚零之风 wind horizon" + }, + { + "appid": 700520, + "normalized_name": "shift quantum a cyber noir puzzle platformer" + }, + { + "appid": 700540, + "normalized_name": "derora" + }, + { + "appid": 700560, + "normalized_name": "druid's tale crystal cave" + }, + { + "appid": 700570, + "normalized_name": "beyond the void" + }, + { + "appid": 700590, + "normalized_name": "ghostly horizon" + }, + { + "appid": 700600, + "normalized_name": "evil genius 2 world domination" + }, + { + "appid": 700610, + "normalized_name": "dungeongogo" + }, + { + "appid": 700620, + "normalized_name": "temple of aluxes" + }, + { + "appid": 700650, + "normalized_name": "adventure golf vr" + }, + { + "appid": 700720, + "normalized_name": "keyboard sports saving qwerty" + }, + { + "appid": 700730, + "normalized_name": "dungeoneer" + }, + { + "appid": 700740, + "normalized_name": "teenage mutant ninja turtles portal power" + }, + { + "appid": 700750, + "normalized_name": "the battle of mahjong" + }, + { + "appid": 700770, + "normalized_name": "zonedriver" + }, + { + "appid": 700820, + "normalized_name": "tfm the first men" + }, + { + "appid": 700830, + "normalized_name": "immersive poetry" + }, + { + "appid": 700880, + "normalized_name": "kingdom the far reaches" + }, + { + "appid": 700910, + "normalized_name": "royal agents sweet zombie" + }, + { + "appid": 700920, + "normalized_name": "placement" + }, + { + "appid": 700940, + "normalized_name": "tangramsvr" + }, + { + "appid": 700990, + "normalized_name": "gunship battle2 vr steam" + }, + { + "appid": 701010, + "normalized_name": "gurugedara" + }, + { + "appid": 701040, + "normalized_name": "cometstriker dx" + }, + { + "appid": 701080, + "normalized_name": "supersonic tank cats" + }, + { + "appid": 701100, + "normalized_name": "amoreon nightclub" + }, + { + "appid": 701160, + "normalized_name": "kingdom two crowns" + }, + { + "appid": 701260, + "normalized_name": "rebound arena" + }, + { + "appid": 701280, + "normalized_name": "askutron quiz show" + }, + { + "appid": 701290, + "normalized_name": "legendary mahjong" + }, + { + "appid": 701360, + "normalized_name": "fate crawler" + }, + { + "appid": 701370, + "normalized_name": "pop pop boom boom vr" + }, + { + "appid": 701380, + "normalized_name": "el tango de la muerte" + }, + { + "appid": 701410, + "normalized_name": "i_am.exe" + }, + { + "appid": 701420, + "normalized_name": "ne no kami the two princess knights of kyoto part 2" + }, + { + "appid": 701440, + "normalized_name": "phantom jump" + }, + { + "appid": 701460, + "normalized_name": "billiards" + }, + { + "appid": 701470, + "normalized_name": "ttv2" + }, + { + "appid": 701540, + "normalized_name": "evil star" + }, + { + "appid": 701580, + "normalized_name": "ninja goemon and immortal jewels" + }, + { + "appid": 701610, + "normalized_name": "dungeons of the fallen" + }, + { + "appid": 701630, + "normalized_name": "saint george | the tree of secrets" + }, + { + "appid": 701670, + "normalized_name": "krotruvink" + }, + { + "appid": 701680, + "normalized_name": "the legend of slime" + }, + { + "appid": 701720, + "normalized_name": "2d neon cube" + }, + { + "appid": 701730, + "normalized_name": "yi and the thousand moons" + }, + { + "appid": 701740, + "normalized_name": "modest kind" + }, + { + "appid": 701760, + "normalized_name": "l.s.s" + }, + { + "appid": 701800, + "normalized_name": "triplicata" + }, + { + "appid": 701810, + "normalized_name": "epic dumpster bear dumpster fire redux" + }, + { + "appid": 701820, + "normalized_name": "gif the game of inevitable frustration" + }, + { + "appid": 701860, + "normalized_name": "the witch's isle" + }, + { + "appid": 701870, + "normalized_name": "swarm queen" + }, + { + "appid": 701880, + "normalized_name": "rocka feller" + }, + { + "appid": 701890, + "normalized_name": "starzine" + }, + { + "appid": 701900, + "normalized_name": "splat the blob" + }, + { + "appid": 701910, + "normalized_name": "dawn of a soul" + }, + { + "appid": 701930, + "normalized_name": "short stories collection of class tangerine" + }, + { + "appid": 701940, + "normalized_name": "champions of aerial" + }, + { + "appid": 701950, + "normalized_name": "survival simulator vr" + }, + { + "appid": 701960, + "normalized_name": "fish's trip" + }, + { + "appid": 701970, + "normalized_name": "sliding blocks" + }, + { + "appid": 701990, + "normalized_name": "edmonton trolley car" + }, + { + "appid": 702030, + "normalized_name": "starbear taxi" + }, + { + "appid": 702050, + "normalized_name": "the song of saya" + }, + { + "appid": 702070, + "normalized_name": "ascii wars" + }, + { + "appid": 702080, + "normalized_name": "my factory 我的工厂" + }, + { + "appid": 702110, + "normalized_name": "the last blade 2" + }, + { + "appid": 702120, + "normalized_name": "the king of fighters '97 global match" + }, + { + "appid": 702130, + "normalized_name": "deadly footprints" + }, + { + "appid": 702150, + "normalized_name": "project mercury" + }, + { + "appid": 702160, + "normalized_name": "rocketboat pilot" + }, + { + "appid": 702180, + "normalized_name": "mafia is alive" + }, + { + "appid": 702200, + "normalized_name": "lost with dinosaurs" + }, + { + "appid": 702210, + "normalized_name": "princess serena ~raid of demon legion~" + }, + { + "appid": 702220, + "normalized_name": "touch my spinner" + }, + { + "appid": 702300, + "normalized_name": "number world adventure" + }, + { + "appid": 702310, + "normalized_name": "tricks and treats" + }, + { + "appid": 702320, + "normalized_name": "march of empires" + }, + { + "appid": 702340, + "normalized_name": "avem888 vr" + }, + { + "appid": 702360, + "normalized_name": "hunters life" + }, + { + "appid": 702430, + "normalized_name": "school simulator multiplayer" + }, + { + "appid": 702490, + "normalized_name": "seclusion islesbury" + }, + { + "appid": 702550, + "normalized_name": "ez4u" + }, + { + "appid": 702620, + "normalized_name": "wrecking towers" + }, + { + "appid": 702670, + "normalized_name": "donut county" + }, + { + "appid": 702680, + "normalized_name": "wattam" + }, + { + "appid": 702700, + "normalized_name": "super bomberman r" + }, + { + "appid": 702790, + "normalized_name": "午餐13" + }, + { + "appid": 702810, + "normalized_name": "shooty skies" + }, + { + "appid": 702820, + "normalized_name": "by any means necessary" + }, + { + "appid": 702890, + "normalized_name": "blazblue cross tag battle" + }, + { + "appid": 702900, + "normalized_name": "time barbarian extreme!!" + }, + { + "appid": 702930, + "normalized_name": "packet queen #" + }, + { + "appid": 702940, + "normalized_name": "paper shakespeare to date or not to date?" + }, + { + "appid": 703000, + "normalized_name": "beer babes and dragons" + }, + { + "appid": 703030, + "normalized_name": "newtypes" + }, + { + "appid": 703050, + "normalized_name": "ihugu i hug you" + }, + { + "appid": 703080, + "normalized_name": "planet zoo" + }, + { + "appid": 703090, + "normalized_name": "冒险之路(adventure road)" + }, + { + "appid": 703100, + "normalized_name": "parabolus" + }, + { + "appid": 703120, + "normalized_name": "keeplanet" + }, + { + "appid": 703140, + "normalized_name": "codename phantom" + }, + { + "appid": 703180, + "normalized_name": "ben 10" + }, + { + "appid": 703200, + "normalized_name": "jumphobia classic" + }, + { + "appid": 703250, + "normalized_name": "astroshift" + }, + { + "appid": 703260, + "normalized_name": "blast" + }, + { + "appid": 703270, + "normalized_name": "run my little pixel" + }, + { + "appid": 703280, + "normalized_name": "zeal" + }, + { + "appid": 703310, + "normalized_name": "hidden & dangerous action pack" + }, + { + "appid": 703320, + "normalized_name": "hidden & dangerous 2 courage under fire" + }, + { + "appid": 703360, + "normalized_name": "stickman annihilation 2" + }, + { + "appid": 703400, + "normalized_name": "enoch underground" + }, + { + "appid": 703430, + "normalized_name": "star rangers vr free demo" + }, + { + "appid": 703490, + "normalized_name": "flat worlds" + }, + { + "appid": 703500, + "normalized_name": "rethink | evolved" + }, + { + "appid": 703510, + "normalized_name": "wooden battles" + }, + { + "appid": 703530, + "normalized_name": "grav blazer squared" + }, + { + "appid": 703540, + "normalized_name": "algorithm" + }, + { + "appid": 703600, + "normalized_name": "astral" + }, + { + "appid": 703620, + "normalized_name": "clash force" + }, + { + "appid": 703630, + "normalized_name": "the quarter game" + }, + { + "appid": 703680, + "normalized_name": "cursed deal" + }, + { + "appid": 703690, + "normalized_name": "nemesis" + }, + { + "appid": 703700, + "normalized_name": "our end of the world" + }, + { + "appid": 703720, + "normalized_name": "ersatz" + }, + { + "appid": 703730, + "normalized_name": "sorcery jokers all ages version" + }, + { + "appid": 703800, + "normalized_name": "all cows in" + }, + { + "appid": 703820, + "normalized_name": "pixel killers the showdown" + }, + { + "appid": 703840, + "normalized_name": "animal super squad" + }, + { + "appid": 703880, + "normalized_name": "swords and soldiers 2 shawarmageddon" + }, + { + "appid": 703910, + "normalized_name": "vrpatients" + }, + { + "appid": 703920, + "normalized_name": "bang bang fruit 2" + }, + { + "appid": 703940, + "normalized_name": "ball 2d soccer online" + }, + { + "appid": 703960, + "normalized_name": "morder" + }, + { + "appid": 703970, + "normalized_name": "protoball" + }, + { + "appid": 703980, + "normalized_name": "star wars imperial assault legends of the alliance" + }, + { + "appid": 704000, + "normalized_name": "gunhead" + }, + { + "appid": 704010, + "normalized_name": "longstory" + }, + { + "appid": 704020, + "normalized_name": "master arena" + }, + { + "appid": 704030, + "normalized_name": "professional farmer cattle and crops" + }, + { + "appid": 704040, + "normalized_name": "castle clicker idle city tycoon" + }, + { + "appid": 704070, + "normalized_name": "robots.io" + }, + { + "appid": 704110, + "normalized_name": "gunhouse" + }, + { + "appid": 704140, + "normalized_name": "edge of existence" + }, + { + "appid": 704190, + "normalized_name": "bitcoin collector" + }, + { + "appid": 704200, + "normalized_name": "the chronicles of nyanya" + }, + { + "appid": 704230, + "normalized_name": "pro cycling manager 2018" + }, + { + "appid": 704270, + "normalized_name": "generation zero" + }, + { + "appid": 704300, + "normalized_name": "bartender vr simulator" + }, + { + "appid": 704310, + "normalized_name": "lumberjack vr" + }, + { + "appid": 704350, + "normalized_name": "captain 13 beyond the hero" + }, + { + "appid": 704360, + "normalized_name": "sacralith the archer`s tale" + }, + { + "appid": 704370, + "normalized_name": "water pipeline" + }, + { + "appid": 704430, + "normalized_name": "space survivors i the reckoning" + }, + { + "appid": 704450, + "normalized_name": "neverwinter nights enhanced" + }, + { + "appid": 704470, + "normalized_name": "vr furballs demolition" + }, + { + "appid": 704480, + "normalized_name": "durak!" + }, + { + "appid": 704510, + "normalized_name": "mercury fallen" + }, + { + "appid": 704520, + "normalized_name": "battle buddies vr" + }, + { + "appid": 704640, + "normalized_name": "evolution of ages settlements" + }, + { + "appid": 704660, + "normalized_name": "maze trials" + }, + { + "appid": 704670, + "normalized_name": "inexplicable geeks dawn of just us" + }, + { + "appid": 704680, + "normalized_name": "amplitude a visual novel" + }, + { + "appid": 704690, + "normalized_name": "elisa seduce the innkeeper" + }, + { + "appid": 704700, + "normalized_name": "tryon" + }, + { + "appid": 704760, + "normalized_name": "grimrush" + }, + { + "appid": 704840, + "normalized_name": "the walking vegetables" + }, + { + "appid": 704850, + "normalized_name": "thief simulator" + }, + { + "appid": 704860, + "normalized_name": "keepsake" + }, + { + "appid": 704880, + "normalized_name": "trident's wake" + }, + { + "appid": 704910, + "normalized_name": "tenta shooter" + }, + { + "appid": 704920, + "normalized_name": "magic rampage" + }, + { + "appid": 704940, + "normalized_name": "box it" + }, + { + "appid": 704950, + "normalized_name": "scarlett's dungeon retro action rpg roguelite" + }, + { + "appid": 704970, + "normalized_name": "project ara crucible" + }, + { + "appid": 704990, + "normalized_name": "oses" + }, + { + "appid": 705000, + "normalized_name": "octorspace" + }, + { + "appid": 705020, + "normalized_name": "bottom of the 9th" + }, + { + "appid": 705040, + "normalized_name": "hawken reborn" + }, + { + "appid": 705050, + "normalized_name": "apocalypse legacy" + }, + { + "appid": 705060, + "normalized_name": "infernales" + }, + { + "appid": 705070, + "normalized_name": "feminazi 3000" + }, + { + "appid": 705090, + "normalized_name": "trivia vault super heroes trivia 2" + }, + { + "appid": 705100, + "normalized_name": "marshmallow melee" + }, + { + "appid": 705120, + "normalized_name": "death coming/死神来了" + }, + { + "appid": 705130, + "normalized_name": "foundation of nightmares" + }, + { + "appid": 705150, + "normalized_name": "rhythm world master project" + }, + { + "appid": 705170, + "normalized_name": "antipole dx" + }, + { + "appid": 705210, + "normalized_name": "cube racer" + }, + { + "appid": 705230, + "normalized_name": "ingame.exe" + }, + { + "appid": 705240, + "normalized_name": "boom box blue!" + }, + { + "appid": 705250, + "normalized_name": "cross set infinity" + }, + { + "appid": 705260, + "normalized_name": "waste cleaner" + }, + { + "appid": 705280, + "normalized_name": "hakoniwa explorer plus" + }, + { + "appid": 705290, + "normalized_name": "strange telephone" + }, + { + "appid": 705300, + "normalized_name": "suicide adventures" + }, + { + "appid": 705340, + "normalized_name": "kofi quest" + }, + { + "appid": 705370, + "normalized_name": "the cursed tower" + }, + { + "appid": 705380, + "normalized_name": "galactic shipwright" + }, + { + "appid": 705390, + "normalized_name": "aya's journey" + }, + { + "appid": 705410, + "normalized_name": "world war party game of trump" + }, + { + "appid": 705440, + "normalized_name": "onager!" + }, + { + "appid": 705450, + "normalized_name": "wunderdoktor" + }, + { + "appid": 705500, + "normalized_name": "tiny bubbles" + }, + { + "appid": 705510, + "normalized_name": "picture builder" + }, + { + "appid": 705530, + "normalized_name": "wizard hunter 2348" + }, + { + "appid": 705550, + "normalized_name": "burgle bros." + }, + { + "appid": 705570, + "normalized_name": "tayutama 2 you're the only one eng ver." + }, + { + "appid": 705610, + "normalized_name": "where they cremate the roadkill" + }, + { + "appid": 705620, + "normalized_name": "hellmut the badass from hell" + }, + { + "appid": 705640, + "normalized_name": "back to the egg! tower defense" + }, + { + "appid": 705670, + "normalized_name": "ballz farm" + }, + { + "appid": 705700, + "normalized_name": "stripper anya 2 x migufighters" + }, + { + "appid": 705710, + "normalized_name": "sense of the devil" + }, + { + "appid": 705740, + "normalized_name": "car demolition clicker" + }, + { + "appid": 705750, + "normalized_name": "american patriots boston tea party" + }, + { + "appid": 705770, + "normalized_name": "the donnerwald experiment" + }, + { + "appid": 705780, + "normalized_name": "ancient future" + }, + { + "appid": 705800, + "normalized_name": "astroe" + }, + { + "appid": 705810, + "normalized_name": "wuxing master 五行师(ccg)" + }, + { + "appid": 705860, + "normalized_name": "spacewalker" + }, + { + "appid": 705870, + "normalized_name": "echo grotto" + }, + { + "appid": 705920, + "normalized_name": "empress of gold" + }, + { + "appid": 705930, + "normalized_name": "the trace" + }, + { + "appid": 705960, + "normalized_name": "dreampuzzle" + }, + { + "appid": 706010, + "normalized_name": "the unseen" + }, + { + "appid": 706020, + "normalized_name": "fade to silence" + }, + { + "appid": 706030, + "normalized_name": "parking cop simulator" + }, + { + "appid": 706130, + "normalized_name": "far from noise" + }, + { + "appid": 706200, + "normalized_name": "celtabula" + }, + { + "appid": 706210, + "normalized_name": "haul asteroid" + }, + { + "appid": 706240, + "normalized_name": "gravity light" + }, + { + "appid": 706270, + "normalized_name": "space zombies invasion" + }, + { + "appid": 706280, + "normalized_name": "devil in the pines" + }, + { + "appid": 706310, + "normalized_name": "caveduel" + }, + { + "appid": 706320, + "normalized_name": "trivia vault mini mixed trivia" + }, + { + "appid": 706330, + "normalized_name": "trivia vault mini mixed trivia 2" + }, + { + "appid": 706360, + "normalized_name": "physica e" + }, + { + "appid": 706370, + "normalized_name": "logistical usa oregon" + }, + { + "appid": 706380, + "normalized_name": "logistical norway" + }, + { + "appid": 706390, + "normalized_name": "logistical chile" + }, + { + "appid": 706440, + "normalized_name": "cyborg arena" + }, + { + "appid": 706480, + "normalized_name": "the man in the cape special" + }, + { + "appid": 706490, + "normalized_name": "little hidden city" + }, + { + "appid": 706510, + "normalized_name": "somos" + }, + { + "appid": 706550, + "normalized_name": "kaya" + }, + { + "appid": 706560, + "normalized_name": "jimmy and the pulsating mass" + }, + { + "appid": 706570, + "normalized_name": "the seven stages" + }, + { + "appid": 706680, + "normalized_name": "brave earth prologue" + }, + { + "appid": 706690, + "normalized_name": "megatronic void" + }, + { + "appid": 706710, + "normalized_name": "close your eyes" + }, + { + "appid": 706850, + "normalized_name": "devader" + }, + { + "appid": 706880, + "normalized_name": "austen translation" + }, + { + "appid": 706920, + "normalized_name": "战术狂想1(chimera of tactics 1)" + }, + { + "appid": 706950, + "normalized_name": "chupacabra" + }, + { + "appid": 706960, + "normalized_name": "super slime arena" + }, + { + "appid": 706980, + "normalized_name": "papercat" + }, + { + "appid": 706990, + "normalized_name": "blockpost legacy" + }, + { + "appid": 707000, + "normalized_name": "aw nutz" + }, + { + "appid": 707010, + "normalized_name": "will to live online" + }, + { + "appid": 707030, + "normalized_name": "postal 4 no regerts" + }, + { + "appid": 707040, + "normalized_name": "robosoul" + }, + { + "appid": 707060, + "normalized_name": "beast quest" + }, + { + "appid": 707110, + "normalized_name": "anahita" + }, + { + "appid": 707140, + "normalized_name": "chess" + }, + { + "appid": 707220, + "normalized_name": "the base" + }, + { + "appid": 707230, + "normalized_name": "prison chainball massacre" + }, + { + "appid": 707300, + "normalized_name": "hatsune miku vr" + }, + { + "appid": 707320, + "normalized_name": "keatz the lonely bird" + }, + { + "appid": 707350, + "normalized_name": "damascus gear operation osaka hd" + }, + { + "appid": 707400, + "normalized_name": "attack of insects" + }, + { + "appid": 707450, + "normalized_name": "march to glory" + }, + { + "appid": 707470, + "normalized_name": "jumpfist" + }, + { + "appid": 707560, + "normalized_name": "crucible trails initial rupture" + }, + { + "appid": 707580, + "normalized_name": "affected the manor the" + }, + { + "appid": 707590, + "normalized_name": "defense clicker" + }, + { + "appid": 707610, + "normalized_name": "food mahjong" + }, + { + "appid": 707710, + "normalized_name": "mobile dungeon" + }, + { + "appid": 707720, + "normalized_name": "ragna maya" + }, + { + "appid": 707750, + "normalized_name": "drumsim" + }, + { + "appid": 707760, + "normalized_name": "war to the core" + }, + { + "appid": 707770, + "normalized_name": "tactics 2 war" + }, + { + "appid": 707850, + "normalized_name": "jigsaw puzzles" + }, + { + "appid": 707870, + "normalized_name": "hoo boy" + }, + { + "appid": 707920, + "normalized_name": "analemma" + }, + { + "appid": 707950, + "normalized_name": "tank warz!" + }, + { + "appid": 707960, + "normalized_name": "i was here" + }, + { + "appid": 708020, + "normalized_name": "jamie's dream" + }, + { + "appid": 708030, + "normalized_name": "" + }, + { + "appid": 708070, + "normalized_name": "recharge" + }, + { + "appid": 708100, + "normalized_name": "a boy and his beard" + }, + { + "appid": 708140, + "normalized_name": "trielement" + }, + { + "appid": 708150, + "normalized_name": "lost artifacts ancient tribe survival" + }, + { + "appid": 708190, + "normalized_name": "code world" + }, + { + "appid": 708200, + "normalized_name": "fantasization" + }, + { + "appid": 708260, + "normalized_name": "text wormhole" + }, + { + "appid": 708280, + "normalized_name": "bobbi_cities" + }, + { + "appid": 708310, + "normalized_name": "infinite gravity" + }, + { + "appid": 708340, + "normalized_name": "shark simulator" + }, + { + "appid": 708360, + "normalized_name": "vr racket ball" + }, + { + "appid": 708370, + "normalized_name": "reboant demo" + }, + { + "appid": 708430, + "normalized_name": "kamikaze cube" + }, + { + "appid": 708450, + "normalized_name": "pembrey" + }, + { + "appid": 708510, + "normalized_name": "the promethium effect the idle clicker mmo" + }, + { + "appid": 708550, + "normalized_name": "skydome" + }, + { + "appid": 708580, + "normalized_name": "the exorcist legion vr chapter 1 first rites" + }, + { + "appid": 708590, + "normalized_name": "battle master" + }, + { + "appid": 708630, + "normalized_name": "little adventurer ii" + }, + { + "appid": 708640, + "normalized_name": "nudist beach survival simulator" + }, + { + "appid": 708680, + "normalized_name": "octopus bar" + }, + { + "appid": 708710, + "normalized_name": "defend your castle" + }, + { + "appid": 708720, + "normalized_name": "gridiron" + }, + { + "appid": 708760, + "normalized_name": "social club vr casino nights" + }, + { + "appid": 708780, + "normalized_name": "slam fighter ii" + }, + { + "appid": 708820, + "normalized_name": "baby hands" + }, + { + "appid": 708830, + "normalized_name": "the armament project" + }, + { + "appid": 708850, + "normalized_name": "reverie" + }, + { + "appid": 708870, + "normalized_name": "reginald does his thang" + }, + { + "appid": 708890, + "normalized_name": "beatris" + }, + { + "appid": 708910, + "normalized_name": "hordiaz" + }, + { + "appid": 708920, + "normalized_name": "i can see the future" + }, + { + "appid": 708930, + "normalized_name": "dice 1000 online" + }, + { + "appid": 708950, + "normalized_name": "steam tactics" + }, + { + "appid": 708970, + "normalized_name": "god starfighter" + }, + { + "appid": 708990, + "normalized_name": "turtle's quest" + }, + { + "appid": 709010, + "normalized_name": "offroad transport simulator" + }, + { + "appid": 709020, + "normalized_name": "virus of survivors life simulator" + }, + { + "appid": 709040, + "normalized_name": "volseons" + }, + { + "appid": 709050, + "normalized_name": "ghoul" + }, + { + "appid": 709080, + "normalized_name": "the bears and the bees" + }, + { + "appid": 709100, + "normalized_name": "strange girl beside" + }, + { + "appid": 709140, + "normalized_name": "a dream for aaron" + }, + { + "appid": 709190, + "normalized_name": "god of failure" + }, + { + "appid": 709240, + "normalized_name": "ingnomia" + }, + { + "appid": 709290, + "normalized_name": "rage quest" + }, + { + "appid": 709340, + "normalized_name": "spirits of mystery the dark minotaur collector's" + }, + { + "appid": 709350, + "normalized_name": "dark realm princess of ice collector's" + }, + { + "appid": 709370, + "normalized_name": "badrobots vr" + }, + { + "appid": 709380, + "normalized_name": "circularity" + }, + { + "appid": 709390, + "normalized_name": "chewbrick" + }, + { + "appid": 709400, + "normalized_name": "low desert punk" + }, + { + "appid": 709410, + "normalized_name": "azura" + }, + { + "appid": 709450, + "normalized_name": "towards the pantheon escaping eternity" + }, + { + "appid": 709470, + "normalized_name": "mirrors" + }, + { + "appid": 709490, + "normalized_name": "mutiny island" + }, + { + "appid": 709510, + "normalized_name": "towards the pantheon" + }, + { + "appid": 709520, + "normalized_name": "where's phantom thief" + }, + { + "appid": 709560, + "normalized_name": "until the last" + }, + { + "appid": 709610, + "normalized_name": "mahjong match" + }, + { + "appid": 709620, + "normalized_name": "squareboy vs bullies arena" + }, + { + "appid": 709670, + "normalized_name": "clarent saga tactics" + }, + { + "appid": 709700, + "normalized_name": "the thing space x" + }, + { + "appid": 709710, + "normalized_name": "jung's labyrinth" + }, + { + "appid": 709720, + "normalized_name": "yagzz!" + }, + { + "appid": 709730, + "normalized_name": "slingray" + }, + { + "appid": 709750, + "normalized_name": "iro hero" + }, + { + "appid": 709780, + "normalized_name": "crazy scientist" + }, + { + "appid": 709790, + "normalized_name": "the red front" + }, + { + "appid": 709800, + "normalized_name": "hardcore zboy" + }, + { + "appid": 709820, + "normalized_name": "wasted pizza" + }, + { + "appid": 709840, + "normalized_name": "bloody glimpse" + }, + { + "appid": 709850, + "normalized_name": "ambush tactics" + }, + { + "appid": 709870, + "normalized_name": "west of red" + }, + { + "appid": 709880, + "normalized_name": "panzer doctrine" + }, + { + "appid": 709890, + "normalized_name": "crazy mob" + }, + { + "appid": 709920, + "normalized_name": "tametsi" + }, + { + "appid": 709940, + "normalized_name": "weapon and armor mahjong" + }, + { + "appid": 710020, + "normalized_name": "starcatcher" + }, + { + "appid": 710030, + "normalized_name": "cinderella escape 2 revenge" + }, + { + "appid": 710070, + "normalized_name": "helltown" + }, + { + "appid": 710090, + "normalized_name": "annual" + }, + { + "appid": 710110, + "normalized_name": "trivia vault mini mixed trivia 3" + }, + { + "appid": 710120, + "normalized_name": "trivia vault mini mixed trivia 4" + }, + { + "appid": 710130, + "normalized_name": "隐龙传:影踪(hidden dragon legend shadow trace)" + }, + { + "appid": 710140, + "normalized_name": "king's tower" + }, + { + "appid": 710160, + "normalized_name": "mula the cycle of shadow" + }, + { + "appid": 710170, + "normalized_name": "the broken seal" + }, + { + "appid": 710190, + "normalized_name": "谜题姐妹 puzzle sisters" + }, + { + "appid": 710220, + "normalized_name": "dreadstar the quest for revenge" + }, + { + "appid": 710230, + "normalized_name": "urban strife" + }, + { + "appid": 710250, + "normalized_name": "pet squad racing" + }, + { + "appid": 710280, + "normalized_name": "musician" + }, + { + "appid": 710310, + "normalized_name": "hopscotch" + }, + { + "appid": 710460, + "normalized_name": "rush on rome" + }, + { + "appid": 710470, + "normalized_name": "little witch academia chamber of time" + }, + { + "appid": 710480, + "normalized_name": "extreme real reality hd remix" + }, + { + "appid": 710520, + "normalized_name": "super trashforce" + }, + { + "appid": 710550, + "normalized_name": "cubion" + }, + { + "appid": 710600, + "normalized_name": "red bow" + }, + { + "appid": 710610, + "normalized_name": "don't sink" + }, + { + "appid": 710620, + "normalized_name": "wira & taksa against the master of gravity" + }, + { + "appid": 710630, + "normalized_name": "goldrushers" + }, + { + "appid": 710640, + "normalized_name": "pro drift reloaded 2020" + }, + { + "appid": 710650, + "normalized_name": "conquest of gerazania" + }, + { + "appid": 710670, + "normalized_name": "reprogram" + }, + { + "appid": 710690, + "normalized_name": "the path of motus" + }, + { + "appid": 710700, + "normalized_name": "paperback the game" + }, + { + "appid": 710710, + "normalized_name": "pizza game" + }, + { + "appid": 710740, + "normalized_name": "sniper rust vr" + }, + { + "appid": 710760, + "normalized_name": "high noon vr" + }, + { + "appid": 710780, + "normalized_name": "sky jump" + }, + { + "appid": 710820, + "normalized_name": "belpaese homecoming" + }, + { + "appid": 710880, + "normalized_name": "dark rising" + }, + { + "appid": 710920, + "normalized_name": "darksiders genesis" + }, + { + "appid": 710940, + "normalized_name": "owl's midnight journey" + }, + { + "appid": 710950, + "normalized_name": "pinewood island" + }, + { + "appid": 710960, + "normalized_name": "enceladus" + }, + { + "appid": 710990, + "normalized_name": "kendamvr virtual reality kendama" + }, + { + "appid": 711000, + "normalized_name": "ancient tower" + }, + { + "appid": 711050, + "normalized_name": "walking heavy" + }, + { + "appid": 711070, + "normalized_name": "kim jong boom" + }, + { + "appid": 711130, + "normalized_name": "god of light" + }, + { + "appid": 711140, + "normalized_name": "forsaken generation" + }, + { + "appid": 711150, + "normalized_name": "brick breaker" + }, + { + "appid": 711190, + "normalized_name": "color sudoku" + }, + { + "appid": 711210, + "normalized_name": "stepx" + }, + { + "appid": 711230, + "normalized_name": "titus the fox" + }, + { + "appid": 711240, + "normalized_name": "grand academy for future villains" + }, + { + "appid": 711260, + "normalized_name": "bhb biohazard bot" + }, + { + "appid": 711300, + "normalized_name": "bit storm vr first loop" + }, + { + "appid": 711310, + "normalized_name": "spiiiders" + }, + { + "appid": 711320, + "normalized_name": "battle of frigates" + }, + { + "appid": 711330, + "normalized_name": "trial of the demon hunter" + }, + { + "appid": 711350, + "normalized_name": "captive of fortune" + }, + { + "appid": 711380, + "normalized_name": "code of princess ex" + }, + { + "appid": 711390, + "normalized_name": "anti gravity warriors vr" + }, + { + "appid": 711430, + "normalized_name": "miss fisher and the deathly maze" + }, + { + "appid": 711440, + "normalized_name": "mortars vr" + }, + { + "appid": 711450, + "normalized_name": "orb the ball" + }, + { + "appid": 711460, + "normalized_name": "duel survival" + }, + { + "appid": 711480, + "normalized_name": "room 42" + }, + { + "appid": 711500, + "normalized_name": "dr. fizzgigious' fantabulous carbon dating simulacrum" + }, + { + "appid": 711540, + "normalized_name": "lonely mountains downhill" + }, + { + "appid": 711550, + "normalized_name": "glo difficult indie platformer" + }, + { + "appid": 711570, + "normalized_name": "epic battle simulator 2" + }, + { + "appid": 711590, + "normalized_name": "tff the final frontier" + }, + { + "appid": 711600, + "normalized_name": "dragon orb" + }, + { + "appid": 711610, + "normalized_name": "playerless one button adventure" + }, + { + "appid": 711630, + "normalized_name": "eveslan" + }, + { + "appid": 711660, + "normalized_name": "chuchel" + }, + { + "appid": 711690, + "normalized_name": "cognizer" + }, + { + "appid": 711700, + "normalized_name": "derpy fight" + }, + { + "appid": 711710, + "normalized_name": "redeyes 赤瞳之勋" + }, + { + "appid": 711720, + "normalized_name": "fade away" + }, + { + "appid": 711750, + "normalized_name": "monster energy supercross the official videogame" + }, + { + "appid": 711760, + "normalized_name": "bound to light" + }, + { + "appid": 711770, + "normalized_name": "hotel dracula" + }, + { + "appid": 711810, + "normalized_name": "never split the party" + }, + { + "appid": 711820, + "normalized_name": "plumb" + }, + { + "appid": 711840, + "normalized_name": "johnny chainsaw" + }, + { + "appid": 711870, + "normalized_name": "degauss" + }, + { + "appid": 711890, + "normalized_name": "dark parables goldilocks and the fallen star collector's" + }, + { + "appid": 711920, + "normalized_name": "detective case and clown bot in the express killer" + }, + { + "appid": 711930, + "normalized_name": "square head zombies fps game" + }, + { + "appid": 711970, + "normalized_name": "galactic field:strategy bate2017 银河领域:策略版 bate 2017" + }, + { + "appid": 711980, + "normalized_name": "starship evo" + }, + { + "appid": 712000, + "normalized_name": "elder chaos" + }, + { + "appid": 712010, + "normalized_name": "chevo lurker exodus" + }, + { + "appid": 712060, + "normalized_name": "m.i.a. overture" + }, + { + "appid": 712070, + "normalized_name": "lantern of worlds" + }, + { + "appid": 712080, + "normalized_name": "7 bones and 7 stones the ritual" + }, + { + "appid": 712090, + "normalized_name": "don't feed" + }, + { + "appid": 712100, + "normalized_name": "a total war saga thrones of britannia" + }, + { + "appid": 712120, + "normalized_name": "rhythmica" + }, + { + "appid": 712150, + "normalized_name": "tankvr" + }, + { + "appid": 712180, + "normalized_name": "mugsters" + }, + { + "appid": 712190, + "normalized_name": "genesis alpha one deluxe" + }, + { + "appid": 712210, + "normalized_name": "runrunrun" + }, + { + "appid": 712230, + "normalized_name": "warzone" + }, + { + "appid": 712240, + "normalized_name": "sneaky bears" + }, + { + "appid": 712260, + "normalized_name": "feast your eyes" + }, + { + "appid": 712360, + "normalized_name": "boom squad" + }, + { + "appid": 712390, + "normalized_name": "team four star rpg" + }, + { + "appid": 712530, + "normalized_name": "chamber of darkness" + }, + { + "appid": 712610, + "normalized_name": "onironauta" + }, + { + "appid": 712620, + "normalized_name": "shattered" + }, + { + "appid": 712650, + "normalized_name": "azure sky project" + }, + { + "appid": 712660, + "normalized_name": "ybit" + }, + { + "appid": 712700, + "normalized_name": "black friday the game" + }, + { + "appid": 712730, + "normalized_name": "simulacra" + }, + { + "appid": 712760, + "normalized_name": "duped" + }, + { + "appid": 712770, + "normalized_name": "just a dream" + }, + { + "appid": 712810, + "normalized_name": "fallen times" + }, + { + "appid": 712870, + "normalized_name": "vectorium" + }, + { + "appid": 712880, + "normalized_name": "chess arena 象棋竞技场" + }, + { + "appid": 712890, + "normalized_name": "harmonium" + }, + { + "appid": 712910, + "normalized_name": "cubians rescue princess" + }, + { + "appid": 712970, + "normalized_name": "clad in iron philippines 1898" + }, + { + "appid": 712980, + "normalized_name": "rainyday" + }, + { + "appid": 713010, + "normalized_name": "warium" + }, + { + "appid": 713030, + "normalized_name": "mini hockey champ!" + }, + { + "appid": 713060, + "normalized_name": "the beanstalk" + }, + { + "appid": 713070, + "normalized_name": "pray for death" + }, + { + "appid": 713080, + "normalized_name": "president evil" + }, + { + "appid": 713090, + "normalized_name": "zombie bloxx" + }, + { + "appid": 713100, + "normalized_name": "stockup" + }, + { + "appid": 713160, + "normalized_name": "after death" + }, + { + "appid": 713170, + "normalized_name": "unborn" + }, + { + "appid": 713180, + "normalized_name": "eredia the diary of heroes" + }, + { + "appid": 713220, + "normalized_name": "mass o' kyzt" + }, + { + "appid": 713230, + "normalized_name": "vr drivers" + }, + { + "appid": 713260, + "normalized_name": "beyond the sunset 斜阳下的彼岸" + }, + { + "appid": 713310, + "normalized_name": "gambol" + }, + { + "appid": 713320, + "normalized_name": "google spotlight stories sonaria" + }, + { + "appid": 713340, + "normalized_name": "space ship commander" + }, + { + "appid": 713350, + "normalized_name": "beat.r." + }, + { + "appid": 713360, + "normalized_name": "beyond arm's reach" + }, + { + "appid": 713380, + "normalized_name": "mr. barrel" + }, + { + "appid": 713390, + "normalized_name": "no god for us" + }, + { + "appid": 713420, + "normalized_name": "crisis on the planet of the apes" + }, + { + "appid": 713430, + "normalized_name": "secrets of magic 2 witches and wizards" + }, + { + "appid": 713450, + "normalized_name": "dungeon rustlers" + }, + { + "appid": 713460, + "normalized_name": "train frontier classic" + }, + { + "appid": 713500, + "normalized_name": "moto vr" + }, + { + "appid": 713530, + "normalized_name": "armored kitten" + }, + { + "appid": 713540, + "normalized_name": "neptunian donut" + }, + { + "appid": 713550, + "normalized_name": "hikaru's cube" + }, + { + "appid": 713570, + "normalized_name": "go kart survival" + }, + { + "appid": 713580, + "normalized_name": "nash racing 2 muscle cars" + }, + { + "appid": 713590, + "normalized_name": "hidden object food" + }, + { + "appid": 713600, + "normalized_name": "airstrike one" + }, + { + "appid": 713650, + "normalized_name": "sevgilim olur musun ?" + }, + { + "appid": 713680, + "normalized_name": "ablepsia" + }, + { + "appid": 713740, + "normalized_name": "train your minibot" + }, + { + "appid": 713800, + "normalized_name": "infinite gateway" + }, + { + "appid": 713830, + "normalized_name": "pivot puzzles" + }, + { + "appid": 713840, + "normalized_name": "goblin storm" + }, + { + "appid": 713860, + "normalized_name": "my name is addiction" + }, + { + "appid": 713930, + "normalized_name": "the perplexing orb" + }, + { + "appid": 713980, + "normalized_name": "mark after dark" + }, + { + "appid": 714010, + "normalized_name": "aimlabs" + }, + { + "appid": 714020, + "normalized_name": "idle adventure" + }, + { + "appid": 714050, + "normalized_name": "undead" + }, + { + "appid": 714060, + "normalized_name": "alien mayhem" + }, + { + "appid": 714080, + "normalized_name": "black clover quartet knights" + }, + { + "appid": 714120, + "normalized_name": "little misfortune" + }, + { + "appid": 714130, + "normalized_name": "whitaers" + }, + { + "appid": 714210, + "normalized_name": "zula türkiye" + }, + { + "appid": 714240, + "normalized_name": "swarmrider omega" + }, + { + "appid": 714250, + "normalized_name": "eternity the last unicorn" + }, + { + "appid": 714280, + "normalized_name": "time up" + }, + { + "appid": 714290, + "normalized_name": "endless treasure hunt" + }, + { + "appid": 714300, + "normalized_name": "dead by murder" + }, + { + "appid": 714340, + "normalized_name": "follow my footsteps" + }, + { + "appid": 714360, + "normalized_name": "a shawn story" + }, + { + "appid": 714370, + "normalized_name": "left alive" + }, + { + "appid": 714520, + "normalized_name": "a spooky teaparty" + }, + { + "appid": 714530, + "normalized_name": "grim mystery of wasules" + }, + { + "appid": 714570, + "normalized_name": "hidden object tools" + }, + { + "appid": 714580, + "normalized_name": "google spotlight stories son of jaguar" + }, + { + "appid": 714590, + "normalized_name": "back of space" + }, + { + "appid": 714610, + "normalized_name": "google spotlight stories rain or shine" + }, + { + "appid": 714620, + "normalized_name": "snakeez" + }, + { + "appid": 714640, + "normalized_name": "abstractanoid" + }, + { + "appid": 714680, + "normalized_name": "ashes of mankind citadels" + }, + { + "appid": 714730, + "normalized_name": "luvocious" + }, + { + "appid": 714780, + "normalized_name": "google spotlight stories special delivery" + }, + { + "appid": 714800, + "normalized_name": "maitetsu" + }, + { + "appid": 714820, + "normalized_name": "creature romances for the ladies" + }, + { + "appid": 714840, + "normalized_name": "mecho tales" + }, + { + "appid": 714880, + "normalized_name": "大乱斗 chaos battle" + }, + { + "appid": 714910, + "normalized_name": "n body vr" + }, + { + "appid": 714970, + "normalized_name": "metonymy" + }, + { + "appid": 714980, + "normalized_name": "meanwhile an interactive comic book" + }, + { + "appid": 715010, + "normalized_name": "diamo xl" + }, + { + "appid": 715020, + "normalized_name": "elden path of the forgotten" + }, + { + "appid": 715050, + "normalized_name": "the islander" + }, + { + "appid": 715060, + "normalized_name": "lost in the forest" + }, + { + "appid": 715090, + "normalized_name": "rescue team 4" + }, + { + "appid": 715100, + "normalized_name": "endless wave" + }, + { + "appid": 715170, + "normalized_name": "crush lab" + }, + { + "appid": 715210, + "normalized_name": "the pillage" + }, + { + "appid": 715240, + "normalized_name": "claws & feathers 3" + }, + { + "appid": 715270, + "normalized_name": "fire and fury english civil war" + }, + { + "appid": 715280, + "normalized_name": "ancient battle hannibal" + }, + { + "appid": 715290, + "normalized_name": "segfault" + }, + { + "appid": 715310, + "normalized_name": "urban rivals" + }, + { + "appid": 715320, + "normalized_name": "legend of egypt pharaohs garden" + }, + { + "appid": 715350, + "normalized_name": "deadlandvr action shooter fps" + }, + { + "appid": 715370, + "normalized_name": "fidget spinner editor" + }, + { + "appid": 715380, + "normalized_name": "those who remain" + }, + { + "appid": 715400, + "normalized_name": "frozen flame" + }, + { + "appid": 715410, + "normalized_name": "signs of darkness" + }, + { + "appid": 715430, + "normalized_name": "going astray" + }, + { + "appid": 715440, + "normalized_name": "choice of the cat" + }, + { + "appid": 715460, + "normalized_name": "disparity" + }, + { + "appid": 715470, + "normalized_name": "rocks and rockets" + }, + { + "appid": 715490, + "normalized_name": "above the fallen" + }, + { + "appid": 715510, + "normalized_name": "run zeus run" + }, + { + "appid": 715520, + "normalized_name": "wall street junior" + }, + { + "appid": 715560, + "normalized_name": "eastshade" + }, + { + "appid": 715580, + "normalized_name": "hoshizora no memoria wish upon a shooting star hd" + }, + { + "appid": 715650, + "normalized_name": "the endless journey" + }, + { + "appid": 715660, + "normalized_name": "信徒 献祭" + }, + { + "appid": 715680, + "normalized_name": "knight vs giant the broken excalibur" + }, + { + "appid": 715690, + "normalized_name": "putrefaction 2 rumble in the hometown" + }, + { + "appid": 715760, + "normalized_name": "dojagi the korean pottery" + }, + { + "appid": 715810, + "normalized_name": "project amalthea battlegrounds" + }, + { + "appid": 715840, + "normalized_name": "poosky" + }, + { + "appid": 715980, + "normalized_name": "eared hero" + }, + { + "appid": 715990, + "normalized_name": "maybot run" + }, + { + "appid": 716000, + "normalized_name": "space dragon" + }, + { + "appid": 716010, + "normalized_name": "inline" + }, + { + "appid": 716030, + "normalized_name": "oppaidius summer trouble!" + }, + { + "appid": 716040, + "normalized_name": "hide and go boom" + }, + { + "appid": 716050, + "normalized_name": "strike team hydra" + }, + { + "appid": 716060, + "normalized_name": "purgatory ashes | 炼狱灰烬" + }, + { + "appid": 716070, + "normalized_name": "mindsight" + }, + { + "appid": 716090, + "normalized_name": "cottage garden" + }, + { + "appid": 716100, + "normalized_name": "bohnanza the duel" + }, + { + "appid": 716130, + "normalized_name": "rotatorix" + }, + { + "appid": 716150, + "normalized_name": "nakawak expanded color" + }, + { + "appid": 716190, + "normalized_name": "animalia the quiz game" + }, + { + "appid": 716230, + "normalized_name": "galactic lords" + }, + { + "appid": 716250, + "normalized_name": "eight dragons" + }, + { + "appid": 716260, + "normalized_name": "guns'n'stories preface vr" + }, + { + "appid": 716310, + "normalized_name": "crazy toad" + }, + { + "appid": 716330, + "normalized_name": "void" + }, + { + "appid": 716340, + "normalized_name": "blackberry honey" + }, + { + "appid": 716350, + "normalized_name": "reign of guilds" + }, + { + "appid": 716360, + "normalized_name": "sweepervr" + }, + { + "appid": 716370, + "normalized_name": "flippt" + }, + { + "appid": 716380, + "normalized_name": "the chemist" + }, + { + "appid": 716400, + "normalized_name": "battle of red cliffs vr" + }, + { + "appid": 716480, + "normalized_name": "halloween knight" + }, + { + "appid": 716490, + "normalized_name": "exapunks" + }, + { + "appid": 716500, + "normalized_name": "eliza" + }, + { + "appid": 716560, + "normalized_name": "trancelation" + }, + { + "appid": 716600, + "normalized_name": "premier buggy racing tour" + }, + { + "appid": 716630, + "normalized_name": "battlevoid sector siege" + }, + { + "appid": 716640, + "normalized_name": "sigma theory global cold war" + }, + { + "appid": 716650, + "normalized_name": "yorkshire gubbins" + }, + { + "appid": 716680, + "normalized_name": "nirvana pilot yume" + }, + { + "appid": 716710, + "normalized_name": "東方憑依華~ antinomy of common flowers." + }, + { + "appid": 716750, + "normalized_name": "nemesis realms" + }, + { + "appid": 716760, + "normalized_name": "dream alone" + }, + { + "appid": 716770, + "normalized_name": "exorder" + }, + { + "appid": 716780, + "normalized_name": "sand is the soul" + }, + { + "appid": 716850, + "normalized_name": "jewel of wonderland" + }, + { + "appid": 716870, + "normalized_name": "gravity ball" + }, + { + "appid": 716900, + "normalized_name": "el ministerio del tiempo vr salva el tiempo" + }, + { + "appid": 716920, + "normalized_name": "the trivia challenge" + }, + { + "appid": 716940, + "normalized_name": "grape jelly" + }, + { + "appid": 716950, + "normalized_name": "dino scourge" + }, + { + "appid": 717000, + "normalized_name": "skimmerz" + }, + { + "appid": 717020, + "normalized_name": "drosoph hotel" + }, + { + "appid": 717040, + "normalized_name": "the flight of dowran" + }, + { + "appid": 717050, + "normalized_name": "thirdmage" + }, + { + "appid": 717060, + "normalized_name": "konrad the rocket" + }, + { + "appid": 717070, + "normalized_name": "r coil" + }, + { + "appid": 717110, + "normalized_name": "claire de lune" + }, + { + "appid": 717120, + "normalized_name": "a collection of bad moments" + }, + { + "appid": 717170, + "normalized_name": "mulletman and the molemen" + }, + { + "appid": 717190, + "normalized_name": "super dungeon master ace rpg" + }, + { + "appid": 717230, + "normalized_name": "still dark at dawn" + }, + { + "appid": 717240, + "normalized_name": "divide & conquer" + }, + { + "appid": 717300, + "normalized_name": "arena" + }, + { + "appid": 717310, + "normalized_name": "aggelos" + }, + { + "appid": 717320, + "normalized_name": "tales of inca lost land" + }, + { + "appid": 717330, + "normalized_name": "halloween pumpkin story" + }, + { + "appid": 717380, + "normalized_name": "yerah" + }, + { + "appid": 717400, + "normalized_name": "power of the void" + }, + { + "appid": 717440, + "normalized_name": "hiro's harvest season" + }, + { + "appid": 717540, + "normalized_name": "de mambo" + }, + { + "appid": 717560, + "normalized_name": "lucifer within us" + }, + { + "appid": 717610, + "normalized_name": "a case of distrust" + }, + { + "appid": 717640, + "normalized_name": "reigns her majesty" + }, + { + "appid": 717670, + "normalized_name": "the occupant" + }, + { + "appid": 717680, + "normalized_name": "tubular rift" + }, + { + "appid": 717720, + "normalized_name": "cyberia 2 resurrection" + }, + { + "appid": 717760, + "normalized_name": "catch the thief if you can!" + }, + { + "appid": 717780, + "normalized_name": "trap labs" + }, + { + "appid": 717790, + "normalized_name": "hold your own" + }, + { + "appid": 717800, + "normalized_name": "三国宏图(great cause of the three kingdoms)" + }, + { + "appid": 717820, + "normalized_name": "boom island" + }, + { + "appid": 717830, + "normalized_name": "waiting for the loop" + }, + { + "appid": 717840, + "normalized_name": "viral" + }, + { + "appid": 717850, + "normalized_name": "sable's grimoire" + }, + { + "appid": 717870, + "normalized_name": "an adventurer's gallantry" + }, + { + "appid": 717910, + "normalized_name": "bubble rush" + }, + { + "appid": 717930, + "normalized_name": "deadhunters" + }, + { + "appid": 717940, + "normalized_name": "wil" + }, + { + "appid": 717950, + "normalized_name": "rainbow snake" + }, + { + "appid": 717960, + "normalized_name": "soto" + }, + { + "appid": 717980, + "normalized_name": "伏雨录:少年篇" + }, + { + "appid": 717990, + "normalized_name": "bloodworks" + }, + { + "appid": 718010, + "normalized_name": "robbie swifthand and the orb of mysteries" + }, + { + "appid": 718020, + "normalized_name": "gral" + }, + { + "appid": 718030, + "normalized_name": "kyklos code" + }, + { + "appid": 718040, + "normalized_name": "super arcade boy in defender of planet earth" + }, + { + "appid": 718070, + "normalized_name": "ageofdarkness" + }, + { + "appid": 718080, + "normalized_name": "artifact quest 2 match 3 puzzle" + }, + { + "appid": 718120, + "normalized_name": "jack b. nimble" + }, + { + "appid": 718140, + "normalized_name": "domino dungeon" + }, + { + "appid": 718180, + "normalized_name": "super dungeon boy" + }, + { + "appid": 718190, + "normalized_name": "koboo the tree spirit" + }, + { + "appid": 718200, + "normalized_name": "forever home" + }, + { + "appid": 718210, + "normalized_name": "depopulation" + }, + { + "appid": 718240, + "normalized_name": "solar collector" + }, + { + "appid": 718250, + "normalized_name": "nova flow" + }, + { + "appid": 718270, + "normalized_name": "zombiethon" + }, + { + "appid": 718320, + "normalized_name": "foxyland" + }, + { + "appid": 718350, + "normalized_name": "loot collection mahjong" + }, + { + "appid": 718370, + "normalized_name": "lsd" + }, + { + "appid": 718380, + "normalized_name": "holopoint chronicle" + }, + { + "appid": 718410, + "normalized_name": "aws argentina wingshooting simulator" + }, + { + "appid": 718470, + "normalized_name": "rockland vr" + }, + { + "appid": 718490, + "normalized_name": "logistical japan" + }, + { + "appid": 718500, + "normalized_name": "derpy dinos" + }, + { + "appid": 718530, + "normalized_name": "the survival test vr defend to death" + }, + { + "appid": 718550, + "normalized_name": "usurpator" + }, + { + "appid": 718560, + "normalized_name": "scythe digital" + }, + { + "appid": 718590, + "normalized_name": "dark devotion" + }, + { + "appid": 718650, + "normalized_name": "driftland the magic revival" + }, + { + "appid": 718660, + "normalized_name": "magic matchstick" + }, + { + "appid": 718670, + "normalized_name": "cultist simulator" + }, + { + "appid": 718680, + "normalized_name": "left&right" + }, + { + "appid": 718720, + "normalized_name": "deathpit 3000" + }, + { + "appid": 718730, + "normalized_name": "one strike" + }, + { + "appid": 718740, + "normalized_name": "chop chop princess!" + }, + { + "appid": 718750, + "normalized_name": "epic battles of history" + }, + { + "appid": 718830, + "normalized_name": "unrested development" + }, + { + "appid": 718840, + "normalized_name": "diamondfalls" + }, + { + "appid": 718850, + "normalized_name": "age of wonders planetfall" + }, + { + "appid": 718910, + "normalized_name": "vitamin girl / ビタミンガール" + }, + { + "appid": 718920, + "normalized_name": "dead noir the heart" + }, + { + "appid": 718940, + "normalized_name": "prey with gun 带枪的猎物" + }, + { + "appid": 718960, + "normalized_name": "the flesh god" + }, + { + "appid": 718970, + "normalized_name": "gone astray" + }, + { + "appid": 718980, + "normalized_name": "grey zone" + }, + { + "appid": 718990, + "normalized_name": "drone infiltrator" + }, + { + "appid": 719030, + "normalized_name": "steel and soul" + }, + { + "appid": 719040, + "normalized_name": "wasteland 3" + }, + { + "appid": 719070, + "normalized_name": "blowout" + }, + { + "appid": 719080, + "normalized_name": "fart simulator 2018" + }, + { + "appid": 719100, + "normalized_name": "space way" + }, + { + "appid": 719110, + "normalized_name": "imperil" + }, + { + "appid": 719120, + "normalized_name": "o'fox life" + }, + { + "appid": 719130, + "normalized_name": "ovo smash!" + }, + { + "appid": 719140, + "normalized_name": "entanglement" + }, + { + "appid": 719160, + "normalized_name": "akhenaten rule as pharaoh" + }, + { + "appid": 719180, + "normalized_name": "revulsion" + }, + { + "appid": 719200, + "normalized_name": "the wall" + }, + { + "appid": 719210, + "normalized_name": "supposedly wonderful future" + }, + { + "appid": 719220, + "normalized_name": "romans from mars" + }, + { + "appid": 719240, + "normalized_name": "romans from mars 360" + }, + { + "appid": 719250, + "normalized_name": "cove point fun center vr" + }, + { + "appid": 719280, + "normalized_name": "bullseye" + }, + { + "appid": 719290, + "normalized_name": "prophecy i the viking child" + }, + { + "appid": 719300, + "normalized_name": "daemonsgate" + }, + { + "appid": 719310, + "normalized_name": "king's table the legend of ragnarok" + }, + { + "appid": 719320, + "normalized_name": "the humans collection" + }, + { + "appid": 719340, + "normalized_name": "returnstate" + }, + { + "appid": 719350, + "normalized_name": "orbits" + }, + { + "appid": 719370, + "normalized_name": "ele blaze" + }, + { + "appid": 719410, + "normalized_name": "magical squash" + }, + { + "appid": 719470, + "normalized_name": "demon and fairy" + }, + { + "appid": 719520, + "normalized_name": "spectro" + }, + { + "appid": 719550, + "normalized_name": "puzzler" + }, + { + "appid": 719590, + "normalized_name": "mesozoica" + }, + { + "appid": 719600, + "normalized_name": "鉄道運転士vr" + }, + { + "appid": 719630, + "normalized_name": "malkyrs" + }, + { + "appid": 719640, + "normalized_name": "war planet online global conquest" + }, + { + "appid": 719660, + "normalized_name": "monster garden" + }, + { + "appid": 719730, + "normalized_name": "uptasia" + }, + { + "appid": 719740, + "normalized_name": "pi" + }, + { + "appid": 719750, + "normalized_name": "puss!" + }, + { + "appid": 719800, + "normalized_name": "last encounter" + }, + { + "appid": 719830, + "normalized_name": "desert craft" + }, + { + "appid": 719840, + "normalized_name": "mad gardener zombie massacre" + }, + { + "appid": 719890, + "normalized_name": "beasts of bermuda" + }, + { + "appid": 719930, + "normalized_name": "super high ball pinball platformer" + }, + { + "appid": 719970, + "normalized_name": "soccer simulation" + }, + { + "appid": 720000, + "normalized_name": "don't panic!" + }, + { + "appid": 720020, + "normalized_name": "pilli adventure" + }, + { + "appid": 720030, + "normalized_name": "indecision." + }, + { + "appid": 720040, + "normalized_name": "valknut" + }, + { + "appid": 720060, + "normalized_name": "colony" + }, + { + "appid": 720150, + "normalized_name": "shikhondo(食魂徒) soul eater" + }, + { + "appid": 720160, + "normalized_name": "get to amkonius" + }, + { + "appid": 720240, + "normalized_name": "legend of fainn dynasty ~battles of beautiful warlords~" + }, + { + "appid": 720250, + "normalized_name": "welcome to the game ii" + }, + { + "appid": 720270, + "normalized_name": "defense task force sci fi tower defense" + }, + { + "appid": 720280, + "normalized_name": "fox hime" + }, + { + "appid": 720290, + "normalized_name": "reaching for petals vr" + }, + { + "appid": 720300, + "normalized_name": "toran" + }, + { + "appid": 720310, + "normalized_name": "armed warrior vr" + }, + { + "appid": 720350, + "normalized_name": "mundaun" + }, + { + "appid": 720380, + "normalized_name": "ancestors legacy free peasant" + }, + { + "appid": 720470, + "normalized_name": "caveman alive" + }, + { + "appid": 720480, + "normalized_name": "flappy galaxy" + }, + { + "appid": 720510, + "normalized_name": "tactical ar" + }, + { + "appid": 720540, + "normalized_name": "triple twenty vr darts" + }, + { + "appid": 720560, + "normalized_name": "vigil the longest night" + }, + { + "appid": 720600, + "normalized_name": "halloween jigsaw puzzles" + }, + { + "appid": 720620, + "normalized_name": "talespire" + }, + { + "appid": 720640, + "normalized_name": "la aventura de axel" + }, + { + "appid": 720660, + "normalized_name": "overloop" + }, + { + "appid": 720670, + "normalized_name": "cats make you smarter!" + }, + { + "appid": 720730, + "normalized_name": "without escape" + }, + { + "appid": 720850, + "normalized_name": "blasteron" + }, + { + "appid": 720940, + "normalized_name": "horns of fear" + }, + { + "appid": 720950, + "normalized_name": "ege distantplanet nonxxx" + }, + { + "appid": 721030, + "normalized_name": "la tale" + }, + { + "appid": 721080, + "normalized_name": "bounce ball" + }, + { + "appid": 721180, + "normalized_name": "dustborn" + }, + { + "appid": 721300, + "normalized_name": "american angst (steam deluxe edition)" + }, + { + "appid": 721310, + "normalized_name": "operasyon pars" + }, + { + "appid": 721350, + "normalized_name": "where are my friends?" + }, + { + "appid": 721380, + "normalized_name": "logistical usa new york" + }, + { + "appid": 721390, + "normalized_name": "pipe push paradise" + }, + { + "appid": 721400, + "normalized_name": "hot runback vr runner" + }, + { + "appid": 721420, + "normalized_name": "fighting box" + }, + { + "appid": 721450, + "normalized_name": "cardboard invasion" + }, + { + "appid": 721460, + "normalized_name": "xeno time inception" + }, + { + "appid": 721470, + "normalized_name": "snake treasure chest" + }, + { + "appid": 721480, + "normalized_name": "vr hockey league" + }, + { + "appid": 721510, + "normalized_name": "renters revenge" + }, + { + "appid": 721540, + "normalized_name": "cursed isles" + }, + { + "appid": 721670, + "normalized_name": "frontiers.io" + }, + { + "appid": 721700, + "normalized_name": "holomento" + }, + { + "appid": 721740, + "normalized_name": "sea of fatness save humanity together" + }, + { + "appid": 721760, + "normalized_name": "highlands deep waters" + }, + { + "appid": 721780, + "normalized_name": "roguevive" + }, + { + "appid": 721850, + "normalized_name": "wanna run again sprite girl" + }, + { + "appid": 721890, + "normalized_name": "zhandou (vr and non vr)" + }, + { + "appid": 721940, + "normalized_name": "daily run" + }, + { + "appid": 721950, + "normalized_name": "last toon standing" + }, + { + "appid": 721960, + "normalized_name": "deathmatch soccer" + }, + { + "appid": 721990, + "normalized_name": "dead spawn" + }, + { + "appid": 722010, + "normalized_name": "b a s e m e n t" + }, + { + "appid": 722020, + "normalized_name": "bitcoin collector spinners attack" + }, + { + "appid": 722040, + "normalized_name": "cargo breach" + }, + { + "appid": 722050, + "normalized_name": "dean daimon" + }, + { + "appid": 722060, + "normalized_name": "dominions 5 warriors of the faith" + }, + { + "appid": 722080, + "normalized_name": "blue snake adventures" + }, + { + "appid": 722180, + "normalized_name": "surv1v3" + }, + { + "appid": 722200, + "normalized_name": "eep tsm gotthardbahn nordrampe modul erstfeld" + }, + { + "appid": 722230, + "normalized_name": "l.a. noire the vr case files" + }, + { + "appid": 722290, + "normalized_name": "hikejam" + }, + { + "appid": 722330, + "normalized_name": "the painter's playground" + }, + { + "appid": 722340, + "normalized_name": "captain vs sky pirates" + }, + { + "appid": 722350, + "normalized_name": "light of mine" + }, + { + "appid": 722370, + "normalized_name": "funball games vr" + }, + { + "appid": 722380, + "normalized_name": "blindsight" + }, + { + "appid": 722400, + "normalized_name": "record store nightmare" + }, + { + "appid": 722540, + "normalized_name": "banana town" + }, + { + "appid": 722560, + "normalized_name": "rad" + }, + { + "appid": 722570, + "normalized_name": "nazishoot" + }, + { + "appid": 722580, + "normalized_name": "dreadnought sol" + }, + { + "appid": 722590, + "normalized_name": "audio factory" + }, + { + "appid": 722600, + "normalized_name": "the last monster master" + }, + { + "appid": 722620, + "normalized_name": "fatal velocity physics combat" + }, + { + "appid": 722660, + "normalized_name": "startup freak" + }, + { + "appid": 722670, + "normalized_name": "chinese chess/ elephant game 象棋/ 中国象棋/ 中國象棋" + }, + { + "appid": 722680, + "normalized_name": "blok drop neo" + }, + { + "appid": 722730, + "normalized_name": "cogmind" + }, + { + "appid": 722750, + "normalized_name": "the killbox aquarius" + }, + { + "appid": 722760, + "normalized_name": "captain firebeard and the bay of crows" + }, + { + "appid": 722810, + "normalized_name": "casual spider solitaire" + }, + { + "appid": 722870, + "normalized_name": "the mind of marlo" + }, + { + "appid": 722890, + "normalized_name": "last berserker endless war" + }, + { + "appid": 722910, + "normalized_name": "lighttrack" + }, + { + "appid": 722920, + "normalized_name": "hex empire 3" + }, + { + "appid": 722960, + "normalized_name": "case 2 animatronics survival" + }, + { + "appid": 722990, + "normalized_name": "dungeons of hell" + }, + { + "appid": 723020, + "normalized_name": "3571 the game" + }, + { + "appid": 723030, + "normalized_name": "vr enigma" + }, + { + "appid": 723050, + "normalized_name": "neon rage" + }, + { + "appid": 723070, + "normalized_name": "scrolls of the lord" + }, + { + "appid": 723090, + "normalized_name": "meltys quest" + }, + { + "appid": 723100, + "normalized_name": "orbital racer" + }, + { + "appid": 723110, + "normalized_name": "scrap galaxy" + }, + { + "appid": 723130, + "normalized_name": "railgunners" + }, + { + "appid": 723180, + "normalized_name": "the rift" + }, + { + "appid": 723190, + "normalized_name": "sniper hunter adventure 3d" + }, + { + "appid": 723210, + "normalized_name": "mind sweeper vr" + }, + { + "appid": 723270, + "normalized_name": "rumu" + }, + { + "appid": 723290, + "normalized_name": "layup legends" + }, + { + "appid": 723330, + "normalized_name": "winning post 8 2018" + }, + { + "appid": 723350, + "normalized_name": "hell shooter" + }, + { + "appid": 723380, + "normalized_name": "wraith" + }, + { + "appid": 723390, + "normalized_name": "hunt down the freeman" + }, + { + "appid": 723400, + "normalized_name": "ballrun 3d marble maze speedrun" + }, + { + "appid": 723410, + "normalized_name": "doomtrooper ccg" + }, + { + "appid": 723420, + "normalized_name": "创世 修真录" + }, + { + "appid": 723450, + "normalized_name": "dragon hunt" + }, + { + "appid": 723510, + "normalized_name": "the cave vr" + }, + { + "appid": 723540, + "normalized_name": "魔光" + }, + { + "appid": 723560, + "normalized_name": "shadow of the mask" + }, + { + "appid": 723600, + "normalized_name": "star swapper" + }, + { + "appid": 723610, + "normalized_name": "dream golf vr" + }, + { + "appid": 723720, + "normalized_name": "la maledizione dell'uccello serpente" + }, + { + "appid": 723750, + "normalized_name": "the princess is in another castle" + }, + { + "appid": 723760, + "normalized_name": "steamburg" + }, + { + "appid": 723790, + "normalized_name": "the pirate plague of the dead" + }, + { + "appid": 723810, + "normalized_name": "don't bleed" + }, + { + "appid": 723820, + "normalized_name": "banano bros." + }, + { + "appid": 723830, + "normalized_name": "cyborg invasion shooter" + }, + { + "appid": 723880, + "normalized_name": "new world the tupis" + }, + { + "appid": 723890, + "normalized_name": "don't make love" + }, + { + "appid": 723910, + "normalized_name": "dark canvas blood and stone collector's" + }, + { + "appid": 723920, + "normalized_name": "dangerous games illusionist collector's" + }, + { + "appid": 723930, + "normalized_name": "dark romance vampire in love collector's" + }, + { + "appid": 723940, + "normalized_name": "hidden expedition the fountain of youth collector's" + }, + { + "appid": 723950, + "normalized_name": "haunted manor queen of death collector's" + }, + { + "appid": 723960, + "normalized_name": "twilight phenomena strange menagerie collector's" + }, + { + "appid": 724000, + "normalized_name": "uragun" + }, + { + "appid": 724010, + "normalized_name": "house of velez part 1" + }, + { + "appid": 724030, + "normalized_name": "buffy stole your sandwich" + }, + { + "appid": 724090, + "normalized_name": "restaurant manager" + }, + { + "appid": 724110, + "normalized_name": "playusa" + }, + { + "appid": 724120, + "normalized_name": "rise 30 minutes to extinction" + }, + { + "appid": 724130, + "normalized_name": "radar warfare" + }, + { + "appid": 724170, + "normalized_name": "solar lander" + }, + { + "appid": 724180, + "normalized_name": "morgan lives in a rocket house in vr" + }, + { + "appid": 724250, + "normalized_name": "princess maker 5" + }, + { + "appid": 724260, + "normalized_name": "princess maker go!go! princess" + }, + { + "appid": 724290, + "normalized_name": "en thirer pp slimes adventures" + }, + { + "appid": 724300, + "normalized_name": "roof rage" + }, + { + "appid": 724310, + "normalized_name": "kawanakajima no kassen" + }, + { + "appid": 724330, + "normalized_name": "age of grit" + }, + { + "appid": 724350, + "normalized_name": "king of the couch zoovival" + }, + { + "appid": 724370, + "normalized_name": "夕生 halflight" + }, + { + "appid": 724390, + "normalized_name": "rigid force alpha" + }, + { + "appid": 724430, + "normalized_name": "knights hunt" + }, + { + "appid": 724450, + "normalized_name": "call of nightmare" + }, + { + "appid": 724470, + "normalized_name": "lazy galaxy" + }, + { + "appid": 724480, + "normalized_name": "world circuit boxing" + }, + { + "appid": 724490, + "normalized_name": "protocol" + }, + { + "appid": 724510, + "normalized_name": "the quiet sleep" + }, + { + "appid": 724520, + "normalized_name": "magilore" + }, + { + "appid": 724530, + "normalized_name": "eonwar" + }, + { + "appid": 724580, + "normalized_name": "domino" + }, + { + "appid": 724600, + "normalized_name": "another rocket game" + }, + { + "appid": 724630, + "normalized_name": "archaeologyx" + }, + { + "appid": 724640, + "normalized_name": "aurorabound deluxe" + }, + { + "appid": 724680, + "normalized_name": "cosmo's quickstop" + }, + { + "appid": 724690, + "normalized_name": "railed" + }, + { + "appid": 724710, + "normalized_name": "super knockoff! vs" + }, + { + "appid": 724740, + "normalized_name": "lines x" + }, + { + "appid": 724750, + "normalized_name": "robot's mystery" + }, + { + "appid": 724760, + "normalized_name": "duralumin wind" + }, + { + "appid": 724870, + "normalized_name": "glorious noon" + }, + { + "appid": 724900, + "normalized_name": "hallowed encounter" + }, + { + "appid": 724910, + "normalized_name": "icarus six sixty six" + }, + { + "appid": 724920, + "normalized_name": "starcats" + }, + { + "appid": 724930, + "normalized_name": "last chickenburg" + }, + { + "appid": 724940, + "normalized_name": "beach cry of vr" + }, + { + "appid": 724950, + "normalized_name": "hope is in 23" + }, + { + "appid": 724970, + "normalized_name": "神舞幻想 faith of danschant" + }, + { + "appid": 724980, + "normalized_name": "winter warland" + }, + { + "appid": 725010, + "normalized_name": "dark town invisible danger" + }, + { + "appid": 725020, + "normalized_name": "som soul of mask" + }, + { + "appid": 725040, + "normalized_name": "ebony spire heresy" + }, + { + "appid": 725050, + "normalized_name": "thug life" + }, + { + "appid": 725080, + "normalized_name": "fearful symmetry & the cursed prince" + }, + { + "appid": 725090, + "normalized_name": "medieval mayhem" + }, + { + "appid": 725100, + "normalized_name": "exoblast" + }, + { + "appid": 725110, + "normalized_name": "wizards tourney" + }, + { + "appid": 725120, + "normalized_name": "adios amigos galactic explorers" + }, + { + "appid": 725140, + "normalized_name": "nogard" + }, + { + "appid": 725170, + "normalized_name": "home run solitaire" + }, + { + "appid": 725270, + "normalized_name": "necrobarista" + }, + { + "appid": 725280, + "normalized_name": "psi project" + }, + { + "appid": 725320, + "normalized_name": "dance studio vr" + }, + { + "appid": 725330, + "normalized_name": "zelle" + }, + { + "appid": 725340, + "normalized_name": "lines x free" + }, + { + "appid": 725380, + "normalized_name": "maddening euphoria" + }, + { + "appid": 725410, + "normalized_name": "𝄞gaia's melody echoed melodies" + }, + { + "appid": 725430, + "normalized_name": "gates of avalon" + }, + { + "appid": 725480, + "normalized_name": "slap city" + }, + { + "appid": 725510, + "normalized_name": "merper vr" + }, + { + "appid": 725540, + "normalized_name": "morps" + }, + { + "appid": 725550, + "normalized_name": "vs round 1" + }, + { + "appid": 725620, + "normalized_name": "battlegrounds2d.io" + }, + { + "appid": 725640, + "normalized_name": "duel" + }, + { + "appid": 725660, + "normalized_name": "thundering skies" + }, + { + "appid": 725680, + "normalized_name": "golf 2d" + }, + { + "appid": 725780, + "normalized_name": "play with me escape room" + }, + { + "appid": 725850, + "normalized_name": "kana quest" + }, + { + "appid": 725870, + "normalized_name": "age of seas" + }, + { + "appid": 725890, + "normalized_name": "assembly league" + }, + { + "appid": 725910, + "normalized_name": "collide" + }, + { + "appid": 725920, + "normalized_name": "if only..." + }, + { + "appid": 725950, + "normalized_name": "zombie nightmare" + }, + { + "appid": 725960, + "normalized_name": "ballistic mini golf" + }, + { + "appid": 725970, + "normalized_name": "combat instinct" + }, + { + "appid": 725980, + "normalized_name": "path out" + }, + { + "appid": 726000, + "normalized_name": "no king no kingdom" + }, + { + "appid": 726020, + "normalized_name": "mission ammunition" + }, + { + "appid": 726030, + "normalized_name": "minsweeper" + }, + { + "appid": 726060, + "normalized_name": "car thief simulator 2017" + }, + { + "appid": 726070, + "normalized_name": "hidden object sweet home" + }, + { + "appid": 726100, + "normalized_name": "queen's garden halloween" + }, + { + "appid": 726110, + "normalized_name": "overcrowd a commute 'em up" + }, + { + "appid": 726160, + "normalized_name": "the under" + }, + { + "appid": 726200, + "normalized_name": "hostil" + }, + { + "appid": 726230, + "normalized_name": "the superlatives aetherfall" + }, + { + "appid": 726250, + "normalized_name": "unknightly" + }, + { + "appid": 726260, + "normalized_name": "bit bullet" + }, + { + "appid": 726300, + "normalized_name": "ionball 3" + }, + { + "appid": 726320, + "normalized_name": "girl blonde" + }, + { + "appid": 726330, + "normalized_name": "ocean's crabellum" + }, + { + "appid": 726340, + "normalized_name": "alchemist's castle" + }, + { + "appid": 726360, + "normalized_name": "boobs saga prepare to hentai" + }, + { + "appid": 726390, + "normalized_name": "scream collector" + }, + { + "appid": 726430, + "normalized_name": "creeping terror" + }, + { + "appid": 726450, + "normalized_name": "hero's descent" + }, + { + "appid": 726460, + "normalized_name": "choice of broadsides" + }, + { + "appid": 726490, + "normalized_name": "projection first light" + }, + { + "appid": 726500, + "normalized_name": "the adventures of sam carlisle the hunt for the lost treasure" + }, + { + "appid": 726510, + "normalized_name": "heads run" + }, + { + "appid": 726520, + "normalized_name": "the merchant memoirs" + }, + { + "appid": 726550, + "normalized_name": "form of a legend" + }, + { + "appid": 726570, + "normalized_name": "heavy destinies" + }, + { + "appid": 726580, + "normalized_name": "game machines arcade casino" + }, + { + "appid": 726590, + "normalized_name": "nba 2k playgrounds 2" + }, + { + "appid": 726600, + "normalized_name": "drift zone" + }, + { + "appid": 726620, + "normalized_name": "kitty rescue" + }, + { + "appid": 726630, + "normalized_name": "mare nostrvm" + }, + { + "appid": 726710, + "normalized_name": "razed" + }, + { + "appid": 726720, + "normalized_name": "marble run" + }, + { + "appid": 726760, + "normalized_name": "boy next door" + }, + { + "appid": 726770, + "normalized_name": "infinite horizon" + }, + { + "appid": 726800, + "normalized_name": "the rare nine" + }, + { + "appid": 726810, + "normalized_name": "void cube runner" + }, + { + "appid": 726820, + "normalized_name": "inner mazes souls guides" + }, + { + "appid": 726830, + "normalized_name": "vacation simulator" + }, + { + "appid": 726840, + "normalized_name": "city game studio your game dev adventure begins" + }, + { + "appid": 726870, + "normalized_name": "anchorhead" + }, + { + "appid": 726880, + "normalized_name": "posable heroes" + }, + { + "appid": 726910, + "normalized_name": "star wars droid repair bay" + }, + { + "appid": 726950, + "normalized_name": "dark rose valkyrie" + }, + { + "appid": 726980, + "normalized_name": "cyber warrior" + }, + { + "appid": 727010, + "normalized_name": "wrath of thor" + }, + { + "appid": 727020, + "normalized_name": "arcade moonlander" + }, + { + "appid": 727040, + "normalized_name": "alucinod" + }, + { + "appid": 727060, + "normalized_name": "the mystery room" + }, + { + "appid": 727070, + "normalized_name": "hex" + }, + { + "appid": 727100, + "normalized_name": "orch star" + }, + { + "appid": 727110, + "normalized_name": "the lost wizard" + }, + { + "appid": 727130, + "normalized_name": "between the stars" + }, + { + "appid": 727140, + "normalized_name": "love all you have left" + }, + { + "appid": 727150, + "normalized_name": "one watcher" + }, + { + "appid": 727170, + "normalized_name": "old school fotd" + }, + { + "appid": 727180, + "normalized_name": "大逃亡专家 escape expert" + }, + { + "appid": 727190, + "normalized_name": "blik" + }, + { + "appid": 727200, + "normalized_name": "santa's workshop" + }, + { + "appid": 727220, + "normalized_name": "nightingale downs" + }, + { + "appid": 727280, + "normalized_name": "scrap" + }, + { + "appid": 727290, + "normalized_name": "boot hill bounties" + }, + { + "appid": 727310, + "normalized_name": "major league gladiators" + }, + { + "appid": 727320, + "normalized_name": "operation desert road" + }, + { + "appid": 727330, + "normalized_name": "last salvo" + }, + { + "appid": 727340, + "normalized_name": "stitched hd" + }, + { + "appid": 727420, + "normalized_name": "taco tom 2" + }, + { + "appid": 727450, + "normalized_name": "beats of fury" + }, + { + "appid": 727460, + "normalized_name": "magic tower" + }, + { + "appid": 727480, + "normalized_name": "reach me" + }, + { + "appid": 727490, + "normalized_name": "hell space" + }, + { + "appid": 727510, + "normalized_name": "void memory" + }, + { + "appid": 727530, + "normalized_name": "expelled" + }, + { + "appid": 727540, + "normalized_name": "rex" + }, + { + "appid": 727550, + "normalized_name": "illville return instructions. act 1" + }, + { + "appid": 727570, + "normalized_name": "after the collapse" + }, + { + "appid": 727610, + "normalized_name": "hot pool" + }, + { + "appid": 727640, + "normalized_name": "шп shp" + }, + { + "appid": 727660, + "normalized_name": "eden falling" + }, + { + "appid": 727690, + "normalized_name": "pain to win" + }, + { + "appid": 727720, + "normalized_name": "found horror game 11.exe" + }, + { + "appid": 727730, + "normalized_name": "shiver" + }, + { + "appid": 727740, + "normalized_name": "raging fists retribution" + }, + { + "appid": 727760, + "normalized_name": "umiro" + }, + { + "appid": 727790, + "normalized_name": "dead target vr zombie intensified" + }, + { + "appid": 727800, + "normalized_name": "voxel tank vr" + }, + { + "appid": 727830, + "normalized_name": "reformers" + }, + { + "appid": 727840, + "normalized_name": "eggcellent vr" + }, + { + "appid": 727850, + "normalized_name": "elderborn" + }, + { + "appid": 727860, + "normalized_name": "space quiz" + }, + { + "appid": 727900, + "normalized_name": "maze of gaea(real maze vr simulation)" + }, + { + "appid": 727910, + "normalized_name": "titanic the experience" + }, + { + "appid": 727930, + "normalized_name": "robo revenge squad" + }, + { + "appid": 727960, + "normalized_name": "xagia wars" + }, + { + "appid": 727970, + "normalized_name": "cosmic trail" + }, + { + "appid": 728020, + "normalized_name": "lost home" + }, + { + "appid": 728050, + "normalized_name": "❂ heroes of hexaluga ❂" + }, + { + "appid": 728090, + "normalized_name": "cibos" + }, + { + "appid": 728100, + "normalized_name": "deceiver" + }, + { + "appid": 728110, + "normalized_name": "board games vr" + }, + { + "appid": 728140, + "normalized_name": "loco bonobo" + }, + { + "appid": 728150, + "normalized_name": "virtual race car engineer 2018" + }, + { + "appid": 728170, + "normalized_name": "a near dawn" + }, + { + "appid": 728220, + "normalized_name": "deadeye dungeon" + }, + { + "appid": 728240, + "normalized_name": "adventure time pirates of the enchiridion" + }, + { + "appid": 728420, + "normalized_name": "rogue quest the vault of the lost tyrant" + }, + { + "appid": 728530, + "normalized_name": "sd gundam g generation cross rays" + }, + { + "appid": 728610, + "normalized_name": "willowisp vr" + }, + { + "appid": 728620, + "normalized_name": "ribbonchase" + }, + { + "appid": 728670, + "normalized_name": "maze up!" + }, + { + "appid": 728710, + "normalized_name": "trooper 1" + }, + { + "appid": 728720, + "normalized_name": "roojack" + }, + { + "appid": 728730, + "normalized_name": "holyday city reloaded" + }, + { + "appid": 728740, + "normalized_name": "sniper elite v2" + }, + { + "appid": 728770, + "normalized_name": "safe not safe" + }, + { + "appid": 728830, + "normalized_name": "san matias mafia city" + }, + { + "appid": 728870, + "normalized_name": "viaerium" + }, + { + "appid": 728880, + "normalized_name": "overcooked! 2" + }, + { + "appid": 728950, + "normalized_name": "barrels up" + }, + { + "appid": 728990, + "normalized_name": "pixel car" + }, + { + "appid": 729000, + "normalized_name": "wytchwood" + }, + { + "appid": 729030, + "normalized_name": "サバイバルメソッド survival method" + }, + { + "appid": 729040, + "normalized_name": "borderlands game of the year enhanced" + }, + { + "appid": 729050, + "normalized_name": "big bang billiards" + }, + { + "appid": 729060, + "normalized_name": "silent descent" + }, + { + "appid": 729090, + "normalized_name": "tropical escape" + }, + { + "appid": 729130, + "normalized_name": "sound soarer" + }, + { + "appid": 729180, + "normalized_name": "turtle voidrunner" + }, + { + "appid": 729190, + "normalized_name": "kraken" + }, + { + "appid": 729270, + "normalized_name": "alvarok" + }, + { + "appid": 729290, + "normalized_name": "hidden cubes" + }, + { + "appid": 729300, + "normalized_name": "cleansuit" + }, + { + "appid": 729310, + "normalized_name": "draft day sports college basketball 2017" + }, + { + "appid": 729320, + "normalized_name": "the succubi trap" + }, + { + "appid": 729340, + "normalized_name": "amon" + }, + { + "appid": 729370, + "normalized_name": "klaus" + }, + { + "appid": 729390, + "normalized_name": "debris infinity" + }, + { + "appid": 729460, + "normalized_name": "distant space 2" + }, + { + "appid": 729520, + "normalized_name": "dreamland defender" + }, + { + "appid": 729530, + "normalized_name": "legends of talia arcadia" + }, + { + "appid": 729570, + "normalized_name": "222 hearts" + }, + { + "appid": 729580, + "normalized_name": "malzbie's pinball collection" + }, + { + "appid": 729610, + "normalized_name": "聖剣レイヴランシル物語&聖剣レイヴランシル物語+(plus) episode1 2 3" + }, + { + "appid": 729640, + "normalized_name": "bombfest" + }, + { + "appid": 729650, + "normalized_name": "more than just chess" + }, + { + "appid": 729660, + "normalized_name": "blackout z slaughterhouse" + }, + { + "appid": 729670, + "normalized_name": "lsd dream emulator (wanderlust)" + }, + { + "appid": 729680, + "normalized_name": "random wars" + }, + { + "appid": 729720, + "normalized_name": "zomborg" + }, + { + "appid": 729780, + "normalized_name": "timeless the lost castle" + }, + { + "appid": 729820, + "normalized_name": "wheelbarrow warrior" + }, + { + "appid": 729930, + "normalized_name": "tales of terror house on the hill collector's" + }, + { + "appid": 729940, + "normalized_name": "azada in libro collector's" + }, + { + "appid": 729970, + "normalized_name": "dogma" + }, + { + "appid": 729980, + "normalized_name": "happy neighbors" + }, + { + "appid": 729990, + "normalized_name": "hexopods" + }, + { + "appid": 730010, + "normalized_name": "ninja in training" + }, + { + "appid": 730030, + "normalized_name": "spinner simulator unstress yourself" + }, + { + "appid": 730050, + "normalized_name": "verdant skies" + }, + { + "appid": 730090, + "normalized_name": "travel vr" + }, + { + "appid": 730120, + "normalized_name": "micro miners" + }, + { + "appid": 730160, + "normalized_name": "shape palette" + }, + { + "appid": 730170, + "normalized_name": "rocketboarder" + }, + { + "appid": 730180, + "normalized_name": "bits n bullets" + }, + { + "appid": 730190, + "normalized_name": "sick coaster" + }, + { + "appid": 730220, + "normalized_name": "trivia vault video game trivia deluxe" + }, + { + "appid": 730240, + "normalized_name": "chicken with chainguns" + }, + { + "appid": 730270, + "normalized_name": "junkerbot" + }, + { + "appid": 730280, + "normalized_name": "protect your planet" + }, + { + "appid": 730290, + "normalized_name": "eat all the things" + }, + { + "appid": 730300, + "normalized_name": "super star panda" + }, + { + "appid": 730310, + "normalized_name": "dynasty warriors 9" + }, + { + "appid": 730390, + "normalized_name": "raji an ancient epic" + }, + { + "appid": 730410, + "normalized_name": "music band manager" + }, + { + "appid": 730420, + "normalized_name": "combine war toys" + }, + { + "appid": 730430, + "normalized_name": "this is the president" + }, + { + "appid": 730450, + "normalized_name": "axyos battlecards" + }, + { + "appid": 730460, + "normalized_name": "peter world" + }, + { + "appid": 730580, + "normalized_name": "megarace 1" + }, + { + "appid": 730620, + "normalized_name": "hammer 2" + }, + { + "appid": 730670, + "normalized_name": "exit 3 painter" + }, + { + "appid": 730690, + "normalized_name": "exit 4 portal" + }, + { + "appid": 730700, + "normalized_name": "the word is not the thing" + }, + { + "appid": 730710, + "normalized_name": "space viking raiders" + }, + { + "appid": 730760, + "normalized_name": "go! go! radio 8 bit" + }, + { + "appid": 730780, + "normalized_name": "kentucky dash" + }, + { + "appid": 730820, + "normalized_name": "the curse of monkey island" + }, + { + "appid": 730830, + "normalized_name": "escape from monkey island" + }, + { + "appid": 730840, + "normalized_name": "burger shop" + }, + { + "appid": 730860, + "normalized_name": "amoeba battle microscopic rts action" + }, + { + "appid": 730870, + "normalized_name": "burger shop 2" + }, + { + "appid": 730890, + "normalized_name": "salvation in corruption" + }, + { + "appid": 730920, + "normalized_name": "super skelemania" + }, + { + "appid": 731040, + "normalized_name": "the invincible" + }, + { + "appid": 731120, + "normalized_name": "three kingdoms vr jade knight (光之三國vr 青龍騎)" + }, + { + "appid": 731180, + "normalized_name": "coffee run" + }, + { + "appid": 731190, + "normalized_name": "loud or quiet" + }, + { + "appid": 731230, + "normalized_name": "snake road to apple" + }, + { + "appid": 731250, + "normalized_name": "exotanks" + }, + { + "appid": 731300, + "normalized_name": "solos" + }, + { + "appid": 731310, + "normalized_name": "undercrewed" + }, + { + "appid": 731320, + "normalized_name": "speebot" + }, + { + "appid": 731410, + "normalized_name": "merv reborn" + }, + { + "appid": 731420, + "normalized_name": "roguebreaker" + }, + { + "appid": 731430, + "normalized_name": "influence" + }, + { + "appid": 731450, + "normalized_name": "drop vr audio visualizer" + }, + { + "appid": 731490, + "normalized_name": "crash bandicoot n. sane trilogy" + }, + { + "appid": 731500, + "normalized_name": "cave brawlers" + }, + { + "appid": 731510, + "normalized_name": "the scrungeon depths" + }, + { + "appid": 731520, + "normalized_name": "tooki" + }, + { + "appid": 731560, + "normalized_name": "boinks" + }, + { + "appid": 731590, + "normalized_name": "midnight ultra" + }, + { + "appid": 731600, + "normalized_name": "heckpoint" + }, + { + "appid": 731650, + "normalized_name": "summer islands" + }, + { + "appid": 731670, + "normalized_name": "ermo" + }, + { + "appid": 731680, + "normalized_name": "遇见猎人" + }, + { + "appid": 731690, + "normalized_name": "jingo" + }, + { + "appid": 731700, + "normalized_name": "wild downtown" + }, + { + "appid": 731720, + "normalized_name": "doomed" + }, + { + "appid": 731760, + "normalized_name": "crawl space the mansion" + }, + { + "appid": 731770, + "normalized_name": "flightless classic" + }, + { + "appid": 731790, + "normalized_name": "fly destroyer" + }, + { + "appid": 731830, + "normalized_name": "warpflux" + }, + { + "appid": 731860, + "normalized_name": "galactic pocket billiards" + }, + { + "appid": 731880, + "normalized_name": "remaya idle" + }, + { + "appid": 731890, + "normalized_name": "horror hunt" + }, + { + "appid": 731920, + "normalized_name": "government simulator" + }, + { + "appid": 731930, + "normalized_name": "talk to aya" + }, + { + "appid": 731940, + "normalized_name": "bars and balance" + }, + { + "appid": 731950, + "normalized_name": "the homestead" + }, + { + "appid": 732010, + "normalized_name": "brainyjoy" + }, + { + "appid": 732030, + "normalized_name": "pimiko plus" + }, + { + "appid": 732040, + "normalized_name": "corridor 15 firts" + }, + { + "appid": 732050, + "normalized_name": "voxel tycoon" + }, + { + "appid": 732060, + "normalized_name": "the monk and the warrior. the heart of the king." + }, + { + "appid": 732070, + "normalized_name": "lost in the tomb" + }, + { + "appid": 732090, + "normalized_name": "dragon perception" + }, + { + "appid": 732160, + "normalized_name": "the wild age" + }, + { + "appid": 732240, + "normalized_name": "spacebourne" + }, + { + "appid": 732290, + "normalized_name": "schatte ~the witch and the fake shadow~ / 魔女と偽りの影" + }, + { + "appid": 732340, + "normalized_name": "project ball" + }, + { + "appid": 732360, + "normalized_name": "mercury blue mini episode" + }, + { + "appid": 732370, + "normalized_name": "juicy realm" + }, + { + "appid": 732400, + "normalized_name": "platago! super platform game maker" + }, + { + "appid": 732430, + "normalized_name": "superflight" + }, + { + "appid": 732440, + "normalized_name": "trim" + }, + { + "appid": 732470, + "normalized_name": "battleship lonewolf" + }, + { + "appid": 732480, + "normalized_name": "jam session vr" + }, + { + "appid": 732510, + "normalized_name": "rise of the foederati" + }, + { + "appid": 732670, + "normalized_name": "dyana moto" + }, + { + "appid": 732680, + "normalized_name": "gems" + }, + { + "appid": 732690, + "normalized_name": "five nights at freddy's help wanted" + }, + { + "appid": 732730, + "normalized_name": "war trigger 2" + }, + { + "appid": 732770, + "normalized_name": "knight terrors" + }, + { + "appid": 732800, + "normalized_name": "turtle quest" + }, + { + "appid": 732810, + "normalized_name": "slipstream" + }, + { + "appid": 732820, + "normalized_name": "green blood" + }, + { + "appid": 732840, + "normalized_name": "nullysun" + }, + { + "appid": 732850, + "normalized_name": "sector assault" + }, + { + "appid": 732900, + "normalized_name": "cow catcher" + }, + { + "appid": 732930, + "normalized_name": "wunderling dx" + }, + { + "appid": 732950, + "normalized_name": "pairs" + }, + { + "appid": 732970, + "normalized_name": "beyond clouds" + }, + { + "appid": 732980, + "normalized_name": "keyscaper" + }, + { + "appid": 733020, + "normalized_name": "zen blocks relaxing puzzle board game" + }, + { + "appid": 733030, + "normalized_name": "famousity card game" + }, + { + "appid": 733040, + "normalized_name": "cube defender 2000" + }, + { + "appid": 733050, + "normalized_name": "lines infinite" + }, + { + "appid": 733060, + "normalized_name": "the 37th week" + }, + { + "appid": 733070, + "normalized_name": "sudoku universe / 数独宇宙" + }, + { + "appid": 733090, + "normalized_name": "mustache politics shooter" + }, + { + "appid": 733110, + "normalized_name": "8 bit adventures 2" + }, + { + "appid": 733180, + "normalized_name": "destroy space aliens" + }, + { + "appid": 733210, + "normalized_name": "neversong" + }, + { + "appid": 733230, + "normalized_name": "cyber arena" + }, + { + "appid": 733250, + "normalized_name": "mover" + }, + { + "appid": 733300, + "normalized_name": "my big sister" + }, + { + "appid": 733340, + "normalized_name": "hakuoki edo blossoms" + }, + { + "appid": 733360, + "normalized_name": "summonervr (alpha)" + }, + { + "appid": 733420, + "normalized_name": "fragments" + }, + { + "appid": 733430, + "normalized_name": "the escape" + }, + { + "appid": 733460, + "normalized_name": "first feudal" + }, + { + "appid": 733480, + "normalized_name": "flora" + }, + { + "appid": 733500, + "normalized_name": "logistical russia" + }, + { + "appid": 733510, + "normalized_name": "logistical usa wisconsin" + }, + { + "appid": 733520, + "normalized_name": "logistical switzerland" + }, + { + "appid": 733530, + "normalized_name": "logistical south africa" + }, + { + "appid": 733540, + "normalized_name": "logistical brazil" + }, + { + "appid": 733550, + "normalized_name": "clash of magic vr" + }, + { + "appid": 733560, + "normalized_name": "snuffles and co." + }, + { + "appid": 733570, + "normalized_name": "loot run" + }, + { + "appid": 733620, + "normalized_name": "c.a.s.t (combat alchemy solution and tactics)" + }, + { + "appid": 733670, + "normalized_name": "award. room of fear" + }, + { + "appid": 733690, + "normalized_name": "the hospital allison's diary" + }, + { + "appid": 733710, + "normalized_name": "youfight" + }, + { + "appid": 733740, + "normalized_name": "sakura cupid" + }, + { + "appid": 733750, + "normalized_name": "steel eagle" + }, + { + "appid": 733760, + "normalized_name": "megarace 2" + }, + { + "appid": 733770, + "normalized_name": "megarace 3" + }, + { + "appid": 733790, + "normalized_name": "not tonight" + }, + { + "appid": 733800, + "normalized_name": "frosty nights" + }, + { + "appid": 733810, + "normalized_name": "clutter vi leigh's story" + }, + { + "appid": 733820, + "normalized_name": "highrisers" + }, + { + "appid": 733840, + "normalized_name": "anime bubble pop" + }, + { + "appid": 733870, + "normalized_name": "king of the eggs" + }, + { + "appid": 733890, + "normalized_name": "magical girl dash 2 triple prisma attack" + }, + { + "appid": 733910, + "normalized_name": "entropic shop vr" + }, + { + "appid": 733990, + "normalized_name": "i can't believe it's not gambling" + }, + { + "appid": 734020, + "normalized_name": "legendary dxp" + }, + { + "appid": 734080, + "normalized_name": "qajary cat" + }, + { + "appid": 734090, + "normalized_name": "moon bus" + }, + { + "appid": 734120, + "normalized_name": "bonbon" + }, + { + "appid": 734330, + "normalized_name": "coaster x" + }, + { + "appid": 734350, + "normalized_name": "rocket armor" + }, + { + "appid": 734440, + "normalized_name": "black moon 黑月" + }, + { + "appid": 734450, + "normalized_name": "grimante" + }, + { + "appid": 734470, + "normalized_name": "reality falls" + }, + { + "appid": 734490, + "normalized_name": "minimancer" + }, + { + "appid": 734510, + "normalized_name": "worshippers" + }, + { + "appid": 734550, + "normalized_name": "wheel riders online obt" + }, + { + "appid": 734570, + "normalized_name": "bitcoin tycoon mining simulation game" + }, + { + "appid": 734580, + "normalized_name": "battlerush" + }, + { + "appid": 734590, + "normalized_name": "civil warfare another bullet in the war" + }, + { + "appid": 734700, + "normalized_name": "the lost gardens" + }, + { + "appid": 734730, + "normalized_name": "ancient frontier steel shadows" + }, + { + "appid": 734750, + "normalized_name": "pickcrafter" + }, + { + "appid": 734820, + "normalized_name": "protect me" + }, + { + "appid": 734840, + "normalized_name": "neon defense 1 pink power" + }, + { + "appid": 734870, + "normalized_name": "houston we have spinach!" + }, + { + "appid": 734890, + "normalized_name": "the francy droo & friends collection" + }, + { + "appid": 734900, + "normalized_name": "chemically bonded" + }, + { + "appid": 734910, + "normalized_name": "eternal hour golden hour" + }, + { + "appid": 734920, + "normalized_name": "meanders" + }, + { + "appid": 734980, + "normalized_name": "prosperity" + }, + { + "appid": 735010, + "normalized_name": "fantasy of eden" + }, + { + "appid": 735060, + "normalized_name": "the forbidden arts" + }, + { + "appid": 735110, + "normalized_name": "defenders of tetsoidea" + }, + { + "appid": 735250, + "normalized_name": "blackstone" + }, + { + "appid": 735260, + "normalized_name": "meleng" + }, + { + "appid": 735280, + "normalized_name": "emergency 20" + }, + { + "appid": 735290, + "normalized_name": "genesis noir" + }, + { + "appid": 735320, + "normalized_name": "timetravelers" + }, + { + "appid": 735350, + "normalized_name": "bottle pilgrim redux" + }, + { + "appid": 735410, + "normalized_name": "task is to survive" + }, + { + "appid": 735460, + "normalized_name": "highway madness" + }, + { + "appid": 735490, + "normalized_name": "烛梦灯 the dreams of candlelight" + }, + { + "appid": 735500, + "normalized_name": "creepy road" + }, + { + "appid": 735520, + "normalized_name": "time killers catchout" + }, + { + "appid": 735530, + "normalized_name": "time killers spot race" + }, + { + "appid": 735540, + "normalized_name": "no one" + }, + { + "appid": 735550, + "normalized_name": "crazy soccer football stars" + }, + { + "appid": 735570, + "normalized_name": "project rhombus" + }, + { + "appid": 735580, + "normalized_name": "11 11 memories retold" + }, + { + "appid": 735600, + "normalized_name": "banzai royale" + }, + { + "appid": 735620, + "normalized_name": "die drei ??? geheimnis der schattenhelden" + }, + { + "appid": 735650, + "normalized_name": "one more night bio clinic" + }, + { + "appid": 735680, + "normalized_name": "forgotten light" + }, + { + "appid": 735810, + "normalized_name": "cyber surf" + }, + { + "appid": 736050, + "normalized_name": "kink" + }, + { + "appid": 736110, + "normalized_name": "deep sorrow" + }, + { + "appid": 736180, + "normalized_name": "ex0 dark moon" + }, + { + "appid": 736190, + "normalized_name": "chinese parents" + }, + { + "appid": 736200, + "normalized_name": "nana in the dark" + }, + { + "appid": 736220, + "normalized_name": "squad 44" + }, + { + "appid": 736230, + "normalized_name": "salt thrust" + }, + { + "appid": 736240, + "normalized_name": "the revolt awakening" + }, + { + "appid": 736250, + "normalized_name": "amberskull" + }, + { + "appid": 736260, + "normalized_name": "baba is you" + }, + { + "appid": 736290, + "normalized_name": "isle of dinosaurs 2d" + }, + { + "appid": 736300, + "normalized_name": "our feelings" + }, + { + "appid": 736340, + "normalized_name": "vr mini bowling" + }, + { + "appid": 736390, + "normalized_name": "unforgiving happiness" + }, + { + "appid": 736420, + "normalized_name": "yag" + }, + { + "appid": 736430, + "normalized_name": "clicker badventure" + }, + { + "appid": 736460, + "normalized_name": "rotate – professional virtual aviation network" + }, + { + "appid": 736470, + "normalized_name": "the godbeast" + }, + { + "appid": 736480, + "normalized_name": "glory & honor" + }, + { + "appid": 736570, + "normalized_name": "the crooked man" + }, + { + "appid": 736590, + "normalized_name": "operation harsh doorstop" + }, + { + "appid": 736610, + "normalized_name": "war pig big bang" + }, + { + "appid": 736710, + "normalized_name": "yōdanji" + }, + { + "appid": 736720, + "normalized_name": "baam squad" + }, + { + "appid": 736780, + "normalized_name": "clash of spells" + }, + { + "appid": 736810, + "normalized_name": "the raven" + }, + { + "appid": 736820, + "normalized_name": "knights of honor ii sovereign" + }, + { + "appid": 736830, + "normalized_name": "fen prologue" + }, + { + "appid": 736840, + "normalized_name": "amaze double" + }, + { + "appid": 736850, + "normalized_name": "we. the revolution" + }, + { + "appid": 736860, + "normalized_name": "hidden object adventure around the world in 80 days" + }, + { + "appid": 736910, + "normalized_name": "cats fly helicopters" + }, + { + "appid": 736920, + "normalized_name": "here & elsewhere" + }, + { + "appid": 736930, + "normalized_name": "delicious moms vs dads" + }, + { + "appid": 737050, + "normalized_name": "open sorcery sea++" + }, + { + "appid": 737070, + "normalized_name": "olympicvr" + }, + { + "appid": 737100, + "normalized_name": "squarewave maker" + }, + { + "appid": 737240, + "normalized_name": "skipper 2" + }, + { + "appid": 737260, + "normalized_name": "coaster of carnage vr" + }, + { + "appid": 737280, + "normalized_name": "moose invasion" + }, + { + "appid": 737330, + "normalized_name": "pixelord" + }, + { + "appid": 737340, + "normalized_name": "wild light darkest isles" + }, + { + "appid": 737380, + "normalized_name": "cutthroat" + }, + { + "appid": 737390, + "normalized_name": "batch 17" + }, + { + "appid": 737470, + "normalized_name": "mc lars 2 brotherhood" + }, + { + "appid": 737490, + "normalized_name": "journey to luonto" + }, + { + "appid": 737510, + "normalized_name": "dead forest" + }, + { + "appid": 737520, + "normalized_name": "flynn son of crimson" + }, + { + "appid": 737530, + "normalized_name": "i'm lost" + }, + { + "appid": 737600, + "normalized_name": "40 days [四十天]" + }, + { + "appid": 737630, + "normalized_name": "hibow" + }, + { + "appid": 737640, + "normalized_name": "pipes racer" + }, + { + "appid": 737660, + "normalized_name": "the deepest house" + }, + { + "appid": 737670, + "normalized_name": "lost king's lullaby" + }, + { + "appid": 737690, + "normalized_name": "bernackels' shoggoth" + }, + { + "appid": 737710, + "normalized_name": "melody of iris 虹色旋律 (full color ver.)" + }, + { + "appid": 737730, + "normalized_name": "tres 2b" + }, + { + "appid": 737830, + "normalized_name": "christmas puzzle" + }, + { + "appid": 737840, + "normalized_name": "gyrocube vr" + }, + { + "appid": 737870, + "normalized_name": "conduct deluxe!" + }, + { + "appid": 737880, + "normalized_name": "riff vr" + }, + { + "appid": 737890, + "normalized_name": "catastronauts" + }, + { + "appid": 737930, + "normalized_name": "online circle pong" + }, + { + "appid": 737980, + "normalized_name": "the grimsworth reports woodfall" + }, + { + "appid": 738000, + "normalized_name": "achievement lurker respectable accomplishment" + }, + { + "appid": 738020, + "normalized_name": "elmia" + }, + { + "appid": 738030, + "normalized_name": "monjarmageddon" + }, + { + "appid": 738060, + "normalized_name": "freddy fazbear's pizzeria simulator" + }, + { + "appid": 738080, + "normalized_name": "creatio ex nihilo aition" + }, + { + "appid": 738130, + "normalized_name": "get dis money" + }, + { + "appid": 738190, + "normalized_name": "morth" + }, + { + "appid": 738210, + "normalized_name": "galactic orbital death sport" + }, + { + "appid": 738230, + "normalized_name": "high noon" + }, + { + "appid": 738260, + "normalized_name": "survivor of eschewal" + }, + { + "appid": 738270, + "normalized_name": "ciel fledge a daughter raising simulator" + }, + { + "appid": 738290, + "normalized_name": "spacecoaster vr" + }, + { + "appid": 738350, + "normalized_name": "dream pets vr" + }, + { + "appid": 738440, + "normalized_name": "mazequest 2" + }, + { + "appid": 738450, + "normalized_name": "knights of the drowned table" + }, + { + "appid": 738470, + "normalized_name": "god of thunder" + }, + { + "appid": 738480, + "normalized_name": "find pixel" + }, + { + "appid": 738510, + "normalized_name": "メモリーズオフ innocent fille" + }, + { + "appid": 738520, + "normalized_name": "breathedge" + }, + { + "appid": 738530, + "normalized_name": "new gundam breaker" + }, + { + "appid": 738540, + "normalized_name": "tales of vesperia" + }, + { + "appid": 738550, + "normalized_name": "spike volleyball" + }, + { + "appid": 738560, + "normalized_name": "fariwalk the prelude" + }, + { + "appid": 738580, + "normalized_name": "wars and battles normandy" + }, + { + "appid": 738590, + "normalized_name": "wars and battles october war" + }, + { + "appid": 738600, + "normalized_name": "odyssey the deep space expedition" + }, + { + "appid": 738610, + "normalized_name": "train station simulator" + }, + { + "appid": 738620, + "normalized_name": "the reaction" + }, + { + "appid": 738650, + "normalized_name": "seers isle" + }, + { + "appid": 738690, + "normalized_name": "balance of kingdoms" + }, + { + "appid": 738700, + "normalized_name": "secret of the rendrasha blade ch1&2" + }, + { + "appid": 738720, + "normalized_name": "bug attack!" + }, + { + "appid": 738730, + "normalized_name": "family jewels" + }, + { + "appid": 738760, + "normalized_name": "the line" + }, + { + "appid": 738770, + "normalized_name": "gridcrack" + }, + { + "appid": 738840, + "normalized_name": "brutal alice the hundred day's war" + }, + { + "appid": 738860, + "normalized_name": "jetstream" + }, + { + "appid": 738880, + "normalized_name": "pain of war" + }, + { + "appid": 738900, + "normalized_name": "winter's symphonies" + }, + { + "appid": 738920, + "normalized_name": "sexy serial killer" + }, + { + "appid": 738950, + "normalized_name": "super hockey ball" + }, + { + "appid": 739010, + "normalized_name": "the blue box" + }, + { + "appid": 739030, + "normalized_name": "the fog" + }, + { + "appid": 739050, + "normalized_name": "deck casters" + }, + { + "appid": 739080, + "normalized_name": "9 monkeys of shaolin" + }, + { + "appid": 739100, + "normalized_name": "blink rogues" + }, + { + "appid": 739130, + "normalized_name": "the executioner" + }, + { + "appid": 739170, + "normalized_name": "parker & lane twisted minds" + }, + { + "appid": 739180, + "normalized_name": "achball" + }, + { + "appid": 739190, + "normalized_name": "antventor" + }, + { + "appid": 739220, + "normalized_name": "ark noir" + }, + { + "appid": 739240, + "normalized_name": "the ghosts of hackney mills" + }, + { + "appid": 739260, + "normalized_name": "golden hornet" + }, + { + "appid": 739270, + "normalized_name": "cradle of links" + }, + { + "appid": 739290, + "normalized_name": "dark old sun" + }, + { + "appid": 739360, + "normalized_name": "poly island" + }, + { + "appid": 739410, + "normalized_name": "zorbit's orbits" + }, + { + "appid": 739540, + "normalized_name": "break the game" + }, + { + "appid": 739630, + "normalized_name": "phasmophobia" + }, + { + "appid": 739650, + "normalized_name": "drake hollow" + }, + { + "appid": 739660, + "normalized_name": "battle trendaria" + }, + { + "appid": 739690, + "normalized_name": "now man flies" + }, + { + "appid": 739710, + "normalized_name": "monsterplants vs bowling arcade" + }, + { + "appid": 739720, + "normalized_name": "penkura" + }, + { + "appid": 739730, + "normalized_name": "awe of despair" + }, + { + "appid": 739790, + "normalized_name": "the beauty cult's nectarmancer" + }, + { + "appid": 739800, + "normalized_name": "verzaken! vr adventure" + }, + { + "appid": 739820, + "normalized_name": "wraithmind" + }, + { + "appid": 739850, + "normalized_name": "goblins keep coming tower defense" + }, + { + "appid": 739880, + "normalized_name": "アルカナリッター" + }, + { + "appid": 739890, + "normalized_name": "dogstar" + }, + { + "appid": 739910, + "normalized_name": "monolith jack" + }, + { + "appid": 739930, + "normalized_name": "mad manuel" + }, + { + "appid": 739940, + "normalized_name": "guide the ball" + }, + { + "appid": 739950, + "normalized_name": "fruit attacks vr" + }, + { + "appid": 739980, + "normalized_name": "let`s not stay friends" + }, + { + "appid": 740000, + "normalized_name": "绝境幸存者 escape zombie land" + }, + { + "appid": 740040, + "normalized_name": "play with gilbert remake" + }, + { + "appid": 740060, + "normalized_name": "virality" + }, + { + "appid": 740070, + "normalized_name": "dead link pages torn" + }, + { + "appid": 740080, + "normalized_name": "deadly days" + }, + { + "appid": 740090, + "normalized_name": "lost grimoires 3 the forgotten well" + }, + { + "appid": 740130, + "normalized_name": "tales of arise" + }, + { + "appid": 740150, + "normalized_name": "burn clown burn!" + }, + { + "appid": 740170, + "normalized_name": "unexpected end" + }, + { + "appid": 740200, + "normalized_name": "the mercury man" + }, + { + "appid": 740220, + "normalized_name": "peoplepackages" + }, + { + "appid": 740230, + "normalized_name": "just ski+" + }, + { + "appid": 740240, + "normalized_name": "snake eyes dungeon" + }, + { + "appid": 740250, + "normalized_name": "neos vr" + }, + { + "appid": 740260, + "normalized_name": "crimson imprint plus nonexistent christmas" + }, + { + "appid": 740270, + "normalized_name": "musicwave" + }, + { + "appid": 740280, + "normalized_name": "preventive strike" + }, + { + "appid": 740290, + "normalized_name": "irony of nightmare" + }, + { + "appid": 740300, + "normalized_name": "hide n seek vr" + }, + { + "appid": 740310, + "normalized_name": "transmogrify" + }, + { + "appid": 740320, + "normalized_name": "djilyaro" + }, + { + "appid": 740330, + "normalized_name": "rain of arrows" + }, + { + "appid": 740340, + "normalized_name": "neuromatrix" + }, + { + "appid": 740350, + "normalized_name": "stay woke etheral" + }, + { + "appid": 740390, + "normalized_name": "terrorist elimination" + }, + { + "appid": 740410, + "normalized_name": "puzzle chambers" + }, + { + "appid": 740450, + "normalized_name": "alien planet" + }, + { + "appid": 740470, + "normalized_name": "echoed world" + }, + { + "appid": 740500, + "normalized_name": "eseapner" + }, + { + "appid": 740520, + "normalized_name": "mystery tales the twilight world collector's" + }, + { + "appid": 740550, + "normalized_name": "record of agarest war mariage" + }, + { + "appid": 740570, + "normalized_name": "illie" + }, + { + "appid": 740600, + "normalized_name": "gachimuchi" + }, + { + "appid": 740690, + "normalized_name": "plangman" + }, + { + "appid": 740730, + "normalized_name": "station commander" + }, + { + "appid": 740780, + "normalized_name": "onsenvr" + }, + { + "appid": 740810, + "normalized_name": "pleasure puzzle workshop 趣拼拼:拼图工坊" + }, + { + "appid": 740950, + "normalized_name": "overkill" + }, + { + "appid": 740990, + "normalized_name": "wurst defender coop" + }, + { + "appid": 741010, + "normalized_name": "ball game" + }, + { + "appid": 741100, + "normalized_name": "save the halloween" + }, + { + "appid": 741110, + "normalized_name": "blackshift" + }, + { + "appid": 741120, + "normalized_name": "solar system" + }, + { + "appid": 741140, + "normalized_name": "baldr sky" + }, + { + "appid": 741250, + "normalized_name": "the sand man" + }, + { + "appid": 741260, + "normalized_name": "mobile empire" + }, + { + "appid": 741320, + "normalized_name": "the song of terminus 終焉的迴響 護界者之歌" + }, + { + "appid": 741340, + "normalized_name": "kingdom workshop" + }, + { + "appid": 741360, + "normalized_name": "vr hybrid war 2117 vr 混合战争 2117" + }, + { + "appid": 741390, + "normalized_name": "最強の囲碁 ~名人への道~ / igo meijin" + }, + { + "appid": 741400, + "normalized_name": "wands" + }, + { + "appid": 741430, + "normalized_name": "titanic vr" + }, + { + "appid": 741450, + "normalized_name": "immortal heroes" + }, + { + "appid": 741490, + "normalized_name": "atlantis vr" + }, + { + "appid": 741500, + "normalized_name": "john the zombie" + }, + { + "appid": 741510, + "normalized_name": "the hong kong massacre" + }, + { + "appid": 741520, + "normalized_name": "professor lupo and his horrible pets" + }, + { + "appid": 741550, + "normalized_name": "underflow" + }, + { + "appid": 741590, + "normalized_name": "hex commander fantasy heroes" + }, + { + "appid": 741650, + "normalized_name": "holy towers" + }, + { + "appid": 741670, + "normalized_name": "easy red" + }, + { + "appid": 741730, + "normalized_name": "lost in bardo" + }, + { + "appid": 741770, + "normalized_name": "santa's vacation" + }, + { + "appid": 741820, + "normalized_name": "prey typhon hunter" + }, + { + "appid": 741930, + "normalized_name": "hydroactive" + }, + { + "appid": 741990, + "normalized_name": "wild animal sports day" + }, + { + "appid": 742010, + "normalized_name": "lab 03 yrinth" + }, + { + "appid": 742030, + "normalized_name": "mahjong" + }, + { + "appid": 742150, + "normalized_name": "heart of the house" + }, + { + "appid": 742170, + "normalized_name": "dr. frank's build a boyfriend" + }, + { + "appid": 742220, + "normalized_name": "escape camp waddalooh" + }, + { + "appid": 742230, + "normalized_name": "a day for a kitten" + }, + { + "appid": 742250, + "normalized_name": "opus rocket of whispers" + }, + { + "appid": 742300, + "normalized_name": "mega man 11" + }, + { + "appid": 742340, + "normalized_name": "super boxman ultra" + }, + { + "appid": 742360, + "normalized_name": "全民王者" + }, + { + "appid": 742380, + "normalized_name": "spreadstorm" + }, + { + "appid": 742420, + "normalized_name": "saints row" + }, + { + "appid": 742460, + "normalized_name": "marble skies" + }, + { + "appid": 742470, + "normalized_name": "chronicles of cyberpunk" + }, + { + "appid": 742480, + "normalized_name": "the big journey" + }, + { + "appid": 742490, + "normalized_name": "nonogram the greatest painter" + }, + { + "appid": 742500, + "normalized_name": "nonogram master's legacy" + }, + { + "appid": 742510, + "normalized_name": "psikodelya" + }, + { + "appid": 742520, + "normalized_name": "astrologaster" + }, + { + "appid": 742530, + "normalized_name": "roguemance" + }, + { + "appid": 742630, + "normalized_name": "wonky ship" + }, + { + "appid": 742700, + "normalized_name": "empire deluxe combined" + }, + { + "appid": 742900, + "normalized_name": "sleeping dawn" + }, + { + "appid": 742970, + "normalized_name": "oraxum trials" + }, + { + "appid": 742990, + "normalized_name": "sanguo war under heaven" + }, + { + "appid": 743000, + "normalized_name": "progeny vr" + }, + { + "appid": 743030, + "normalized_name": "heli" + }, + { + "appid": 743070, + "normalized_name": "paddle master vr" + }, + { + "appid": 743100, + "normalized_name": "dsync" + }, + { + "appid": 743110, + "normalized_name": "shit storm" + }, + { + "appid": 743130, + "normalized_name": "mewnbase" + }, + { + "appid": 743170, + "normalized_name": "soulz" + }, + { + "appid": 743190, + "normalized_name": "zap zap zombie cats" + }, + { + "appid": 743230, + "normalized_name": "baseball mogul 2018" + }, + { + "appid": 743240, + "normalized_name": "oh my cooking gun" + }, + { + "appid": 743330, + "normalized_name": "super hyperactive ninja" + }, + { + "appid": 743340, + "normalized_name": "tanks meet zombies" + }, + { + "appid": 743350, + "normalized_name": "slay.one" + }, + { + "appid": 743360, + "normalized_name": "haste heist" + }, + { + "appid": 743380, + "normalized_name": "split" + }, + { + "appid": 743390, + "normalized_name": "distraint 2" + }, + { + "appid": 743420, + "normalized_name": "temple of spikes" + }, + { + "appid": 743450, + "normalized_name": "monster prom" + }, + { + "appid": 743460, + "normalized_name": "vr火灾逃生应急演练(vr fire emergency simulation system)" + }, + { + "appid": 743480, + "normalized_name": "hexamon" + }, + { + "appid": 743500, + "normalized_name": "above" + }, + { + "appid": 743550, + "normalized_name": "cosmonaut" + }, + { + "appid": 743570, + "normalized_name": "neven" + }, + { + "appid": 743580, + "normalized_name": "carrumble" + }, + { + "appid": 743640, + "normalized_name": "achievement clicker" + }, + { + "appid": 743660, + "normalized_name": "boot hill blaster" + }, + { + "appid": 743670, + "normalized_name": "senpa.io" + }, + { + "appid": 743680, + "normalized_name": "primordial darkness" + }, + { + "appid": 743770, + "normalized_name": "stockwrk7" + }, + { + "appid": 743830, + "normalized_name": "supertrucks offroad racing" + }, + { + "appid": 743850, + "normalized_name": "polyroll" + }, + { + "appid": 743890, + "normalized_name": "mega man x legacy collection" + }, + { + "appid": 743900, + "normalized_name": "mega man x legacy collection 2" + }, + { + "appid": 743910, + "normalized_name": "想い出にかわる君~メモリーズオフ~" + }, + { + "appid": 743920, + "normalized_name": "choo choo! the train rides!" + }, + { + "appid": 743940, + "normalized_name": "together we live" + }, + { + "appid": 743960, + "normalized_name": "super powered battle friends" + }, + { + "appid": 743990, + "normalized_name": "private detective punch drunk" + }, + { + "appid": 744010, + "normalized_name": "mount hill" + }, + { + "appid": 744020, + "normalized_name": "k pop vr" + }, + { + "appid": 744040, + "normalized_name": "street heat" + }, + { + "appid": 744050, + "normalized_name": "space invaders extreme" + }, + { + "appid": 744060, + "normalized_name": "groove coaster" + }, + { + "appid": 744070, + "normalized_name": "kunoichi rush" + }, + { + "appid": 744170, + "normalized_name": "starfighter neon" + }, + { + "appid": 744190, + "normalized_name": "rusty lake paradise" + }, + { + "appid": 744200, + "normalized_name": "altiros" + }, + { + "appid": 744220, + "normalized_name": "ai dummy" + }, + { + "appid": 744240, + "normalized_name": "fisk" + }, + { + "appid": 744260, + "normalized_name": "legend of homebody" + }, + { + "appid": 744270, + "normalized_name": "rise of ages" + }, + { + "appid": 744280, + "normalized_name": "af zero" + }, + { + "appid": 744290, + "normalized_name": "perspectrip" + }, + { + "appid": 744330, + "normalized_name": "gear stalker" + }, + { + "appid": 744400, + "normalized_name": "tratel64" + }, + { + "appid": 744420, + "normalized_name": "adventures of pipi" + }, + { + "appid": 744430, + "normalized_name": "deep gachigasm" + }, + { + "appid": 744440, + "normalized_name": "the breeding the fog" + }, + { + "appid": 744450, + "normalized_name": "water density" + }, + { + "appid": 744460, + "normalized_name": "be the hero" + }, + { + "appid": 744490, + "normalized_name": "bulleto master" + }, + { + "appid": 744520, + "normalized_name": "neko nin exheart +plus nachi" + }, + { + "appid": 744550, + "normalized_name": "tactical operations" + }, + { + "appid": 744590, + "normalized_name": "starship clicker" + }, + { + "appid": 744600, + "normalized_name": "balloonatics" + }, + { + "appid": 744610, + "normalized_name": "tad that alien dude" + }, + { + "appid": 744630, + "normalized_name": "mystery stone from heaven" + }, + { + "appid": 744650, + "normalized_name": "order of the gatekeepers" + }, + { + "appid": 744660, + "normalized_name": "dream channel" + }, + { + "appid": 744670, + "normalized_name": "worlds at war (monitors & vr)" + }, + { + "appid": 744690, + "normalized_name": "arcanorum 231" + }, + { + "appid": 744700, + "normalized_name": "神话纪元 titansiege" + }, + { + "appid": 744710, + "normalized_name": "kungfu beggar" + }, + { + "appid": 744720, + "normalized_name": "the silence outside" + }, + { + "appid": 744750, + "normalized_name": "devil and the fairy" + }, + { + "appid": 744760, + "normalized_name": "epic royal" + }, + { + "appid": 744800, + "normalized_name": "banyu lintar angin little storm" + }, + { + "appid": 744810, + "normalized_name": "a raven monologue" + }, + { + "appid": 744880, + "normalized_name": "monkeys ahoy" + }, + { + "appid": 744890, + "normalized_name": "teen date simulator" + }, + { + "appid": 744900, + "normalized_name": "dead frontier 2" + }, + { + "appid": 744910, + "normalized_name": "shipbreakers" + }, + { + "appid": 744940, + "normalized_name": "blue whale" + }, + { + "appid": 744980, + "normalized_name": "super club soccer" + }, + { + "appid": 745000, + "normalized_name": "card crawl" + }, + { + "appid": 745010, + "normalized_name": "mechanic miner" + }, + { + "appid": 745030, + "normalized_name": "squarism" + }, + { + "appid": 745060, + "normalized_name": "hunter of antiques" + }, + { + "appid": 745090, + "normalized_name": "rombie" + }, + { + "appid": 745120, + "normalized_name": "pinball" + }, + { + "appid": 745130, + "normalized_name": "rage room" + }, + { + "appid": 745180, + "normalized_name": "bike of the wild" + }, + { + "appid": 745250, + "normalized_name": "yapp yet another puzzle platformer" + }, + { + "appid": 745270, + "normalized_name": "defrain" + }, + { + "appid": 745280, + "normalized_name": "まぜっこタワー" + }, + { + "appid": 745330, + "normalized_name": "strikeforce kitty" + }, + { + "appid": 745340, + "normalized_name": "super meat shooter" + }, + { + "appid": 745360, + "normalized_name": "ecopoiesis" + }, + { + "appid": 745370, + "normalized_name": "purple heart" + }, + { + "appid": 745380, + "normalized_name": "znkl 177" + }, + { + "appid": 745400, + "normalized_name": "kebab it up!" + }, + { + "appid": 745420, + "normalized_name": "tronix defender" + }, + { + "appid": 745430, + "normalized_name": "neon aileron" + }, + { + "appid": 745450, + "normalized_name": "the finnish virtual art gallery" + }, + { + "appid": 745500, + "normalized_name": "pixel space battles" + }, + { + "appid": 745510, + "normalized_name": "fidget spinner in space" + }, + { + "appid": 745520, + "normalized_name": "robovdino" + }, + { + "appid": 745530, + "normalized_name": "draft day sports pro basketball 2018" + }, + { + "appid": 745540, + "normalized_name": "ecoquest explore discover protect!" + }, + { + "appid": 745560, + "normalized_name": "overclocked" + }, + { + "appid": 745620, + "normalized_name": "soul survival vr" + }, + { + "appid": 745630, + "normalized_name": "the redemption of pancakes" + }, + { + "appid": 745650, + "normalized_name": "cross pixels" + }, + { + "appid": 745660, + "normalized_name": "sockman" + }, + { + "appid": 745680, + "normalized_name": "lovehammer 400 000 the buttlerian crusade" + }, + { + "appid": 745710, + "normalized_name": "smackhead" + }, + { + "appid": 745720, + "normalized_name": "crazy appliances 疯狂电器" + }, + { + "appid": 745730, + "normalized_name": "sunshine manor" + }, + { + "appid": 745740, + "normalized_name": "reflex" + }, + { + "appid": 745750, + "normalized_name": "viking village" + }, + { + "appid": 745760, + "normalized_name": "perceptions of the dead" + }, + { + "appid": 745790, + "normalized_name": "chambara" + }, + { + "appid": 745810, + "normalized_name": "spirit animal survival" + }, + { + "appid": 745820, + "normalized_name": "贤者挽歌之马略卡协奏曲" + }, + { + "appid": 745830, + "normalized_name": "dragon sinker" + }, + { + "appid": 745850, + "normalized_name": "karakara2" + }, + { + "appid": 745870, + "normalized_name": "prehistorik" + }, + { + "appid": 745880, + "normalized_name": "東方天空璋 ~ hidden star in four seasons." + }, + { + "appid": 745890, + "normalized_name": "this is not a jumping game" + }, + { + "appid": 745920, + "normalized_name": "temtem" + }, + { + "appid": 745930, + "normalized_name": "ancient treasure 法爾斯編年史:上古秘寶" + }, + { + "appid": 745940, + "normalized_name": "quanect" + }, + { + "appid": 745950, + "normalized_name": "apparition" + }, + { + "appid": 745960, + "normalized_name": "a sky full of stars 仰望夜空的星辰" + }, + { + "appid": 745970, + "normalized_name": "terminal conflict" + }, + { + "appid": 746000, + "normalized_name": "haxor" + }, + { + "appid": 746010, + "normalized_name": "rig or skill pc brawl" + }, + { + "appid": 746020, + "normalized_name": "pit of evil" + }, + { + "appid": 746030, + "normalized_name": "wreckin' ball adventure" + }, + { + "appid": 746040, + "normalized_name": "inmate survival" + }, + { + "appid": 746100, + "normalized_name": "yet another hentai puzzle" + }, + { + "appid": 746110, + "normalized_name": "technosphere collector's" + }, + { + "appid": 746140, + "normalized_name": "walking zombie shooter" + }, + { + "appid": 746210, + "normalized_name": "play together party games" + }, + { + "appid": 746220, + "normalized_name": "monarch of greed act 1" + }, + { + "appid": 746240, + "normalized_name": "flip the table" + }, + { + "appid": 746260, + "normalized_name": "square massacre" + }, + { + "appid": 746270, + "normalized_name": "tale of alamar" + }, + { + "appid": 746300, + "normalized_name": "rasty pelican" + }, + { + "appid": 746340, + "normalized_name": "headsquare multiplayer vr ball game" + }, + { + "appid": 746350, + "normalized_name": "air combat arena" + }, + { + "appid": 746360, + "normalized_name": "orblitz" + }, + { + "appid": 746400, + "normalized_name": "speed dating for ghosts" + }, + { + "appid": 746410, + "normalized_name": "stop santa tower defense" + }, + { + "appid": 746420, + "normalized_name": "broken minds" + }, + { + "appid": 746500, + "normalized_name": "totally realistic sledding vr" + }, + { + "appid": 746510, + "normalized_name": "duck season pc" + }, + { + "appid": 746520, + "normalized_name": "indie dev story" + }, + { + "appid": 746530, + "normalized_name": "plague hunter" + }, + { + "appid": 746540, + "normalized_name": "space panic defense" + }, + { + "appid": 746560, + "normalized_name": "gadgeteer" + }, + { + "appid": 746570, + "normalized_name": "box looter 2018" + }, + { + "appid": 746580, + "normalized_name": "hardcore mecha" + }, + { + "appid": 746590, + "normalized_name": "quadra" + }, + { + "appid": 746620, + "normalized_name": "bakery" + }, + { + "appid": 746660, + "normalized_name": "throw anything" + }, + { + "appid": 746680, + "normalized_name": "bounce rescue!" + }, + { + "appid": 746690, + "normalized_name": "chase ace sole survivor" + }, + { + "appid": 746710, + "normalized_name": "cypher" + }, + { + "appid": 746750, + "normalized_name": "the unholy society" + }, + { + "appid": 746760, + "normalized_name": "outside" + }, + { + "appid": 746770, + "normalized_name": "bunny mania 2" + }, + { + "appid": 746840, + "normalized_name": "chronicles of magic divided kingdoms" + }, + { + "appid": 746850, + "normalized_name": "cloudpunk" + }, + { + "appid": 746860, + "normalized_name": "rail recon" + }, + { + "appid": 746880, + "normalized_name": "spoxel" + }, + { + "appid": 746890, + "normalized_name": "skript" + }, + { + "appid": 746900, + "normalized_name": "a song in the void" + }, + { + "appid": 746910, + "normalized_name": "chicken farm 2k17" + }, + { + "appid": 746920, + "normalized_name": "rapid tap" + }, + { + "appid": 746940, + "normalized_name": "nippon marathon" + }, + { + "appid": 746990, + "normalized_name": "prelude psychological horror game" + }, + { + "appid": 747050, + "normalized_name": "portal journey portarius" + }, + { + "appid": 747090, + "normalized_name": "deep space unknown universe" + }, + { + "appid": 747130, + "normalized_name": "haunted dream house" + }, + { + "appid": 747160, + "normalized_name": "baptism" + }, + { + "appid": 747190, + "normalized_name": "achievement lurker dad jokes" + }, + { + "appid": 747200, + "normalized_name": "keplerth" + }, + { + "appid": 747210, + "normalized_name": "voyage senki vr 海洋传说 vr" + }, + { + "appid": 747220, + "normalized_name": "pound of flesh" + }, + { + "appid": 747230, + "normalized_name": "cosmic buddies town" + }, + { + "appid": 747240, + "normalized_name": "xl1 clippingpoint" + }, + { + "appid": 747260, + "normalized_name": "kungfu town vr" + }, + { + "appid": 747280, + "normalized_name": "asteroid girl" + }, + { + "appid": 747310, + "normalized_name": "hyper knights battles" + }, + { + "appid": 747320, + "normalized_name": "bravium" + }, + { + "appid": 747330, + "normalized_name": "the adventure of kroos" + }, + { + "appid": 747340, + "normalized_name": "unforgiving a northern hymn" + }, + { + "appid": 747350, + "normalized_name": "hellblade senua's sacrifice vr" + }, + { + "appid": 747360, + "normalized_name": "gray dawn" + }, + { + "appid": 747470, + "normalized_name": "doughlings arcade" + }, + { + "appid": 747540, + "normalized_name": "acchen tile matching the arcade way" + }, + { + "appid": 747560, + "normalized_name": "darkroom" + }, + { + "appid": 747590, + "normalized_name": "drive//shaft" + }, + { + "appid": 747610, + "normalized_name": "zula global" + }, + { + "appid": 747620, + "normalized_name": "joggernauts" + }, + { + "appid": 747630, + "normalized_name": "bankster" + }, + { + "appid": 747640, + "normalized_name": "harambe kong" + }, + { + "appid": 747650, + "normalized_name": "the padre" + }, + { + "appid": 747660, + "normalized_name": "five nights at freddy's security breach" + }, + { + "appid": 747690, + "normalized_name": "sinister halloween" + }, + { + "appid": 747700, + "normalized_name": "space shaft" + }, + { + "appid": 747730, + "normalized_name": "operation red dragon" + }, + { + "appid": 747750, + "normalized_name": "d.f.r. the light" + }, + { + "appid": 747770, + "normalized_name": "super shoot owl" + }, + { + "appid": 747790, + "normalized_name": "olson's boxing challenge" + }, + { + "appid": 747810, + "normalized_name": "flow handcrafted" + }, + { + "appid": 747820, + "normalized_name": "terra tanks defenders of the earth" + }, + { + "appid": 747850, + "normalized_name": "warm village 暖暖村物语" + }, + { + "appid": 747910, + "normalized_name": "disassembly 3d" + }, + { + "appid": 747920, + "normalized_name": "hero plus" + }, + { + "appid": 747930, + "normalized_name": "battle ion" + }, + { + "appid": 747970, + "normalized_name": "scions of fate" + }, + { + "appid": 747980, + "normalized_name": "puzzle blocks" + }, + { + "appid": 747990, + "normalized_name": "project ca" + }, + { + "appid": 748010, + "normalized_name": "space rocks" + }, + { + "appid": 748020, + "normalized_name": "terracotta" + }, + { + "appid": 748040, + "normalized_name": "state of war warmonger / 蓝色警戒 (classic 2000)" + }, + { + "appid": 748050, + "normalized_name": "initiation" + }, + { + "appid": 748060, + "normalized_name": "schooljump" + }, + { + "appid": 748110, + "normalized_name": "kitten madness" + }, + { + "appid": 748120, + "normalized_name": "crazy cat" + }, + { + "appid": 748130, + "normalized_name": "sugy the christmas elf" + }, + { + "appid": 748270, + "normalized_name": "vr roller coaster cave depths" + }, + { + "appid": 748300, + "normalized_name": "treasure hunter simulator" + }, + { + "appid": 748310, + "normalized_name": "trio adventures" + }, + { + "appid": 748320, + "normalized_name": "the flawless art's tale" + }, + { + "appid": 748330, + "normalized_name": "super mega space blaster special turbo" + }, + { + "appid": 748360, + "normalized_name": "my hero one's justice" + }, + { + "appid": 748370, + "normalized_name": "stand out vr vr battle royale" + }, + { + "appid": 748420, + "normalized_name": "beat the blitz" + }, + { + "appid": 748430, + "normalized_name": "cube color" + }, + { + "appid": 748480, + "normalized_name": "wild romance mofu mofu" + }, + { + "appid": 748490, + "normalized_name": "the legend of heroes trails of cold steel ii" + }, + { + "appid": 748520, + "normalized_name": "tevris" + }, + { + "appid": 748540, + "normalized_name": "solitaire" + }, + { + "appid": 748580, + "normalized_name": "bridge to another world the others collector's" + }, + { + "appid": 748600, + "normalized_name": "meme dragons" + }, + { + "appid": 748610, + "normalized_name": "airport madness 3d volume 2" + }, + { + "appid": 748650, + "normalized_name": "carnage in space ignition" + }, + { + "appid": 748660, + "normalized_name": "tom's mansion" + }, + { + "appid": 748670, + "normalized_name": "skydiving simulator vr" + }, + { + "appid": 748720, + "normalized_name": "atv simulator vr" + }, + { + "appid": 748730, + "normalized_name": "seek not a lighthouse" + }, + { + "appid": 748780, + "normalized_name": "cardinal conclave" + }, + { + "appid": 748800, + "normalized_name": "savage offroad" + }, + { + "appid": 748810, + "normalized_name": "vikings on trampolines" + }, + { + "appid": 748820, + "normalized_name": "monstrous" + }, + { + "appid": 748830, + "normalized_name": "yanone letter splatter" + }, + { + "appid": 748880, + "normalized_name": "external visions" + }, + { + "appid": 748890, + "normalized_name": "choice of rebels uprising" + }, + { + "appid": 748910, + "normalized_name": "spacepig" + }, + { + "appid": 748930, + "normalized_name": "brink of extinction" + }, + { + "appid": 748940, + "normalized_name": "rise of legions" + }, + { + "appid": 748970, + "normalized_name": "zen chess mate in one" + }, + { + "appid": 748980, + "normalized_name": "tico" + }, + { + "appid": 748990, + "normalized_name": "the z axis continuum" + }, + { + "appid": 749000, + "normalized_name": "final cut homage collector's" + }, + { + "appid": 749010, + "normalized_name": "yatzy" + }, + { + "appid": 749040, + "normalized_name": "battle runner" + }, + { + "appid": 749050, + "normalized_name": "the 111th soul" + }, + { + "appid": 749080, + "normalized_name": "mystery case files the revenant's hunt collector's" + }, + { + "appid": 749110, + "normalized_name": "bold blade" + }, + { + "appid": 749130, + "normalized_name": "sk8" + }, + { + "appid": 749140, + "normalized_name": "prehistorik 2" + }, + { + "appid": 749160, + "normalized_name": "katyusha" + }, + { + "appid": 749180, + "normalized_name": "bridge trek" + }, + { + "appid": 749200, + "normalized_name": "offensive dimensions" + }, + { + "appid": 749250, + "normalized_name": "7th sector" + }, + { + "appid": 749290, + "normalized_name": "vehicles fury" + }, + { + "appid": 749320, + "normalized_name": "alma" + }, + { + "appid": 749340, + "normalized_name": "chocolate makes you happy" + }, + { + "appid": 749370, + "normalized_name": "the perfect sniper" + }, + { + "appid": 749410, + "normalized_name": "season's beatings" + }, + { + "appid": 749420, + "normalized_name": "aris" + }, + { + "appid": 749430, + "normalized_name": "stacker" + }, + { + "appid": 749470, + "normalized_name": "taoth the adventures of the herkulez" + }, + { + "appid": 749480, + "normalized_name": "station 228" + }, + { + "appid": 749520, + "normalized_name": "樱之杜†净梦者" + }, + { + "appid": 749540, + "normalized_name": "wild wolf" + }, + { + "appid": 749550, + "normalized_name": "lawnmower game 2 drifter" + }, + { + "appid": 749560, + "normalized_name": "cycle 28" + }, + { + "appid": 749580, + "normalized_name": "all that remains" + }, + { + "appid": 749650, + "normalized_name": "barrimean jungle" + }, + { + "appid": 749670, + "normalized_name": "spinning around" + }, + { + "appid": 749710, + "normalized_name": "imperi" + }, + { + "appid": 749720, + "normalized_name": "climb!" + }, + { + "appid": 749730, + "normalized_name": "while you are downloading" + }, + { + "appid": 749800, + "normalized_name": "pixeljunk monsters 2" + }, + { + "appid": 749820, + "normalized_name": "villages" + }, + { + "appid": 749830, + "normalized_name": "moon bullet" + }, + { + "appid": 749840, + "normalized_name": "the boogie man" + }, + { + "appid": 749850, + "normalized_name": "dragonfangz the rose & dungeon of time" + }, + { + "appid": 749860, + "normalized_name": "super sportmatchen" + }, + { + "appid": 749870, + "normalized_name": "mytd 我的塔防" + }, + { + "appid": 749880, + "normalized_name": "just jump" + }, + { + "appid": 749890, + "normalized_name": "the hanged man" + }, + { + "appid": 749900, + "normalized_name": "feed the animals" + }, + { + "appid": 749920, + "normalized_name": "eternal dread" + }, + { + "appid": 749950, + "normalized_name": "the six dragons" + }, + { + "appid": 749960, + "normalized_name": "townsmen vr" + }, + { + "appid": 749980, + "normalized_name": "illusion a tale of the mind" + }, + { + "appid": 749990, + "normalized_name": "trigonometry" + }, + { + "appid": 750010, + "normalized_name": "combat tested" + }, + { + "appid": 750020, + "normalized_name": "moving day" + }, + { + "appid": 750070, + "normalized_name": "motorbike garage mechanic simulator" + }, + { + "appid": 750080, + "normalized_name": "dead climb" + }, + { + "appid": 750130, + "normalized_name": "the sinking city" + }, + { + "appid": 750170, + "normalized_name": "diesel railcar simulator" + }, + { + "appid": 750200, + "normalized_name": "away the survival series" + }, + { + "appid": 750210, + "normalized_name": "last anime boy saving loli" + }, + { + "appid": 750240, + "normalized_name": "ascending madness" + }, + { + "appid": 750270, + "normalized_name": "hover x souls git gud" + }, + { + "appid": 750290, + "normalized_name": "slice of sea" + }, + { + "appid": 750330, + "normalized_name": "air hockey" + }, + { + "appid": 750350, + "normalized_name": "google spotlight stories piggy" + }, + { + "appid": 750360, + "normalized_name": "google spotlight stories on ice" + }, + { + "appid": 750420, + "normalized_name": "super dashmatch" + }, + { + "appid": 750440, + "normalized_name": "skylight" + }, + { + "appid": 750450, + "normalized_name": "gunlock" + }, + { + "appid": 750460, + "normalized_name": "wronged" + }, + { + "appid": 750470, + "normalized_name": "war brokers" + }, + { + "appid": 750500, + "normalized_name": "socketeer" + }, + { + "appid": 750510, + "normalized_name": "age of ascent" + }, + { + "appid": 750520, + "normalized_name": "arcade tycoon simulation game" + }, + { + "appid": 750610, + "normalized_name": "garenburg woods" + }, + { + "appid": 750620, + "normalized_name": "naughty elves" + }, + { + "appid": 750670, + "normalized_name": "sushido vs zombies" + }, + { + "appid": 750710, + "normalized_name": "croneworld rpg adventure 1" + }, + { + "appid": 750740, + "normalized_name": "slice the ice" + }, + { + "appid": 750770, + "normalized_name": "labyronia elements" + }, + { + "appid": 750780, + "normalized_name": "christmas puzzle 2" + }, + { + "appid": 750790, + "normalized_name": "hollow throne" + }, + { + "appid": 750800, + "normalized_name": "egress" + }, + { + "appid": 750820, + "normalized_name": "you are a torpedo ai" + }, + { + "appid": 750850, + "normalized_name": "the dream collector" + }, + { + "appid": 750870, + "normalized_name": "jumpball 2" + }, + { + "appid": 750900, + "normalized_name": "fight desserts" + }, + { + "appid": 750920, + "normalized_name": "shadow of the tomb raider" + }, + { + "appid": 750960, + "normalized_name": "yissa deep realms" + }, + { + "appid": 750990, + "normalized_name": "neko nin exheart +plus saiha" + }, + { + "appid": 751060, + "normalized_name": "ice age scrat's nutty adventure" + }, + { + "appid": 751100, + "normalized_name": "nonograms prophecy" + }, + { + "appid": 751110, + "normalized_name": "overview (a walk through the universe)" + }, + { + "appid": 751200, + "normalized_name": "puzzle tactics" + }, + { + "appid": 751220, + "normalized_name": "ethereal" + }, + { + "appid": 751230, + "normalized_name": "hyper slasher" + }, + { + "appid": 751250, + "normalized_name": "big tower tiny square" + }, + { + "appid": 751260, + "normalized_name": "astrohazard solutions ltd." + }, + { + "appid": 751280, + "normalized_name": "snail trek chapter 1 intershellar" + }, + { + "appid": 751300, + "normalized_name": "alice mystery garden" + }, + { + "appid": 751320, + "normalized_name": "echo" + }, + { + "appid": 751330, + "normalized_name": "battery jam" + }, + { + "appid": 751340, + "normalized_name": "assault gunners hd" + }, + { + "appid": 751350, + "normalized_name": "deadly contact" + }, + { + "appid": 751380, + "normalized_name": "sacred four" + }, + { + "appid": 751400, + "normalized_name": "the turdler" + }, + { + "appid": 751430, + "normalized_name": "puzzle of santa girl vr" + }, + { + "appid": 751440, + "normalized_name": "vr kanojo / vrカノジョ" + }, + { + "appid": 751450, + "normalized_name": "nanairo reincarnation" + }, + { + "appid": 751470, + "normalized_name": "deadstep" + }, + { + "appid": 751480, + "normalized_name": "vector velocity" + }, + { + "appid": 751490, + "normalized_name": "wavecrash!!" + }, + { + "appid": 751500, + "normalized_name": "tiny metal" + }, + { + "appid": 751530, + "normalized_name": "dog fight super ultra deluxe" + }, + { + "appid": 751540, + "normalized_name": "duel jousting" + }, + { + "appid": 751550, + "normalized_name": "the same crime" + }, + { + "appid": 751590, + "normalized_name": "dinosaurs a prehistoric adventure" + }, + { + "appid": 751600, + "normalized_name": "darkroom 2" + }, + { + "appid": 751630, + "normalized_name": "after the fall" + }, + { + "appid": 751640, + "normalized_name": "dead dungeon" + }, + { + "appid": 751670, + "normalized_name": "cloud chasers journey of hope" + }, + { + "appid": 751680, + "normalized_name": "c64 & amiga classix remakes sixpack 2" + }, + { + "appid": 751690, + "normalized_name": "the mammoth a cave painting" + }, + { + "appid": 751730, + "normalized_name": "tennis arcade vr" + }, + { + "appid": 751740, + "normalized_name": "roller coaster egypt vr" + }, + { + "appid": 751780, + "normalized_name": "forager" + }, + { + "appid": 751810, + "normalized_name": "antimatter drive" + }, + { + "appid": 751820, + "normalized_name": "black future '88" + }, + { + "appid": 751870, + "normalized_name": "chopper battle new horizon" + }, + { + "appid": 751920, + "normalized_name": "sealer assist" + }, + { + "appid": 751940, + "normalized_name": "flight of the athena" + }, + { + "appid": 751950, + "normalized_name": "tactical" + }, + { + "appid": 751970, + "normalized_name": "plox neon" + }, + { + "appid": 751980, + "normalized_name": "box cats puzzle" + }, + { + "appid": 752000, + "normalized_name": "bug battle" + }, + { + "appid": 752020, + "normalized_name": "the apartment" + }, + { + "appid": 752030, + "normalized_name": "paradise lost fps cosmic horror game" + }, + { + "appid": 752040, + "normalized_name": "univers" + }, + { + "appid": 752050, + "normalized_name": "virtual reality girls" + }, + { + "appid": 752060, + "normalized_name": "subwar 2050" + }, + { + "appid": 752070, + "normalized_name": "project fox online" + }, + { + "appid": 752080, + "normalized_name": "intergalactic traveler the omega sector" + }, + { + "appid": 752170, + "normalized_name": "save your nuts" + }, + { + "appid": 752180, + "normalized_name": "one night" + }, + { + "appid": 752200, + "normalized_name": "vr dunhuang" + }, + { + "appid": 752240, + "normalized_name": "space time shipyard" + }, + { + "appid": 752290, + "normalized_name": "scientific project optic" + }, + { + "appid": 752330, + "normalized_name": "shape of america episode one" + }, + { + "appid": 752380, + "normalized_name": "terrorhythm (trrt) rhythm driven action beat 'em up!" + }, + { + "appid": 752430, + "normalized_name": "arcade love / ゲーセンラブ。" + }, + { + "appid": 752470, + "normalized_name": "cineris somnia" + }, + { + "appid": 752480, + "normalized_name": "sniper elite vr" + }, + { + "appid": 752500, + "normalized_name": "ghoulboy dark sword of goblin" + }, + { + "appid": 752520, + "normalized_name": "football nation vr tournament 2018" + }, + { + "appid": 752530, + "normalized_name": "close call extreme" + }, + { + "appid": 752550, + "normalized_name": "ripped pants at work" + }, + { + "appid": 752560, + "normalized_name": "noahmund" + }, + { + "appid": 752570, + "normalized_name": "song of memories (complete scenario)" + }, + { + "appid": 752580, + "normalized_name": "imperivm rtc hd \"great battles of rome\"" + }, + { + "appid": 752590, + "normalized_name": "a plague tale innocence" + }, + { + "appid": 752600, + "normalized_name": "dual snake" + }, + { + "appid": 752640, + "normalized_name": "national rugby manager" + }, + { + "appid": 752700, + "normalized_name": "abscond" + }, + { + "appid": 752710, + "normalized_name": "infinity trip" + }, + { + "appid": 752760, + "normalized_name": "isle td" + }, + { + "appid": 752770, + "normalized_name": "gyroshooter" + }, + { + "appid": 752780, + "normalized_name": "w4rr i/o rs" + }, + { + "appid": 752800, + "normalized_name": "mysterious realms rpg" + }, + { + "appid": 752810, + "normalized_name": "nola is burning" + }, + { + "appid": 752830, + "normalized_name": "choice of the rock star" + }, + { + "appid": 752850, + "normalized_name": "choice of the ninja" + }, + { + "appid": 752880, + "normalized_name": "sounds of music" + }, + { + "appid": 752900, + "normalized_name": "prehistoric hunt" + }, + { + "appid": 752910, + "normalized_name": "cookies vs. claus" + }, + { + "appid": 752960, + "normalized_name": "synther" + }, + { + "appid": 753020, + "normalized_name": "harry's burgers" + }, + { + "appid": 753090, + "normalized_name": "marius" + }, + { + "appid": 753170, + "normalized_name": "blood harvest 2" + }, + { + "appid": 753190, + "normalized_name": "zero symptom" + }, + { + "appid": 753210, + "normalized_name": "diy simulator" + }, + { + "appid": 753220, + "normalized_name": "mhakna gramura and fairy bell" + }, + { + "appid": 753230, + "normalized_name": "stay" + }, + { + "appid": 753240, + "normalized_name": "cg the seven virus knights" + }, + { + "appid": 753270, + "normalized_name": "henri's secret visual novel" + }, + { + "appid": 753360, + "normalized_name": "voiceactress" + }, + { + "appid": 753370, + "normalized_name": "regenesis arcade" + }, + { + "appid": 753380, + "normalized_name": "metal soldiers 2" + }, + { + "appid": 753390, + "normalized_name": "the eerie adventures of kally" + }, + { + "appid": 753400, + "normalized_name": "harem girl evie" + }, + { + "appid": 753420, + "normalized_name": "dungreed" + }, + { + "appid": 753440, + "normalized_name": "a small robot story" + }, + { + "appid": 753490, + "normalized_name": "lamplight station" + }, + { + "appid": 753540, + "normalized_name": "the dream machine the" + }, + { + "appid": 753560, + "normalized_name": "twinstack" + }, + { + "appid": 753570, + "normalized_name": "rogue buddies aztek gold" + }, + { + "appid": 753590, + "normalized_name": "hellbound" + }, + { + "appid": 753610, + "normalized_name": "j.a.w.s" + }, + { + "appid": 753630, + "normalized_name": "refinish network paintboss vr" + }, + { + "appid": 753640, + "normalized_name": "outer wilds" + }, + { + "appid": 753650, + "normalized_name": "due process" + }, + { + "appid": 753660, + "normalized_name": "atmasphere" + }, + { + "appid": 753670, + "normalized_name": "restaurant tycoon" + }, + { + "appid": 753900, + "normalized_name": "end space" + }, + { + "appid": 753920, + "normalized_name": "battle for the last chicken" + }, + { + "appid": 753930, + "normalized_name": "god's basement" + }, + { + "appid": 753950, + "normalized_name": "wwii英雄列伝 最強の虎クルト・クニスペル" + }, + { + "appid": 753960, + "normalized_name": "jida chronicle chaos frontier vr" + }, + { + "appid": 753970, + "normalized_name": "mafia clicker city builder" + }, + { + "appid": 753980, + "normalized_name": "ark the lost fairytale" + }, + { + "appid": 753990, + "normalized_name": "psi project legacy" + }, + { + "appid": 754000, + "normalized_name": "re bot vr" + }, + { + "appid": 754040, + "normalized_name": "piggy poggy pog" + }, + { + "appid": 754050, + "normalized_name": "bomb bots arena" + }, + { + "appid": 754110, + "normalized_name": "escort commander" + }, + { + "appid": 754120, + "normalized_name": "ninja stealth 3" + }, + { + "appid": 754150, + "normalized_name": "rolling line" + }, + { + "appid": 754160, + "normalized_name": "defenders of tetsoidea academy" + }, + { + "appid": 754230, + "normalized_name": "defense warfare" + }, + { + "appid": 754240, + "normalized_name": "math pixels" + }, + { + "appid": 754270, + "normalized_name": "hexvade" + }, + { + "appid": 754300, + "normalized_name": "metal quest" + }, + { + "appid": 754310, + "normalized_name": "deadly cryptids" + }, + { + "appid": 754320, + "normalized_name": "pixel noir" + }, + { + "appid": 754330, + "normalized_name": "nogibator way of legs" + }, + { + "appid": 754340, + "normalized_name": "paper dungeons crawler" + }, + { + "appid": 754350, + "normalized_name": "忍者村大战2" + }, + { + "appid": 754400, + "normalized_name": "amazeing lemons" + }, + { + "appid": 754410, + "normalized_name": "鉄道運転士 railroad operator" + }, + { + "appid": 754460, + "normalized_name": "jisei" + }, + { + "appid": 754480, + "normalized_name": "dummy!" + }, + { + "appid": 754500, + "normalized_name": "plutocracy" + }, + { + "appid": 754510, + "normalized_name": "3d hardcore cube 2" + }, + { + "appid": 754520, + "normalized_name": "animals memory" + }, + { + "appid": 754530, + "normalized_name": "il 2 sturmovik cliffs of dover blitz" + }, + { + "appid": 754540, + "normalized_name": "gauntlet of ire" + }, + { + "appid": 754620, + "normalized_name": "high school simulator" + }, + { + "appid": 754760, + "normalized_name": "meteors" + }, + { + "appid": 754800, + "normalized_name": "yashik" + }, + { + "appid": 754810, + "normalized_name": "six days of snow" + }, + { + "appid": 754830, + "normalized_name": "travel mosaics 6 christmas around the world" + }, + { + "appid": 754840, + "normalized_name": "my life as a maiden" + }, + { + "appid": 754850, + "normalized_name": "the spy who shrunk me" + }, + { + "appid": 754890, + "normalized_name": "firmament" + }, + { + "appid": 754930, + "normalized_name": "zero days vr" + }, + { + "appid": 755040, + "normalized_name": "aloha play 阿囉哈遊戲" + }, + { + "appid": 755080, + "normalized_name": "genesis 创世争霸" + }, + { + "appid": 755130, + "normalized_name": "snowglobe" + }, + { + "appid": 755140, + "normalized_name": "air dash" + }, + { + "appid": 755150, + "normalized_name": "aurora trail" + }, + { + "appid": 755220, + "normalized_name": "frutakia 2" + }, + { + "appid": 755230, + "normalized_name": "target speed" + }, + { + "appid": 755240, + "normalized_name": "raining coins" + }, + { + "appid": 755250, + "normalized_name": "impale" + }, + { + "appid": 755340, + "normalized_name": "shawy adventures" + }, + { + "appid": 755350, + "normalized_name": "truth disorder" + }, + { + "appid": 755390, + "normalized_name": "sine requie snake eyes" + }, + { + "appid": 755410, + "normalized_name": "vengeful rites" + }, + { + "appid": 755420, + "normalized_name": "essence defenders" + }, + { + "appid": 755450, + "normalized_name": "stage 3 azaria" + }, + { + "appid": 755470, + "normalized_name": "the world next door" + }, + { + "appid": 755490, + "normalized_name": "rocket blasters" + }, + { + "appid": 755500, + "normalized_name": "one piece world seeker" + }, + { + "appid": 755520, + "normalized_name": "battle shapes" + }, + { + "appid": 755530, + "normalized_name": "factorybelts 2" + }, + { + "appid": 755550, + "normalized_name": "true mining simulator" + }, + { + "appid": 755560, + "normalized_name": "arrowpoint" + }, + { + "appid": 755570, + "normalized_name": "chinbu's adventure" + }, + { + "appid": 755580, + "normalized_name": "daddy's gone a hunting" + }, + { + "appid": 755590, + "normalized_name": "battle high 2 a+" + }, + { + "appid": 755600, + "normalized_name": "christmas race" + }, + { + "appid": 755610, + "normalized_name": "defend your buttress" + }, + { + "appid": 755630, + "normalized_name": "drake of the 99 dragons" + }, + { + "appid": 755640, + "normalized_name": "predator vr" + }, + { + "appid": 755670, + "normalized_name": "sleep tight" + }, + { + "appid": 755760, + "normalized_name": "power supplied" + }, + { + "appid": 755800, + "normalized_name": "hades' star" + }, + { + "appid": 755820, + "normalized_name": "one against the galaxy" + }, + { + "appid": 755830, + "normalized_name": "lonely astronaut" + }, + { + "appid": 755850, + "normalized_name": "vr ping pong paradise" + }, + { + "appid": 755920, + "normalized_name": "chop" + }, + { + "appid": 755950, + "normalized_name": "fantasy quest solitaire" + }, + { + "appid": 755980, + "normalized_name": "deployment" + }, + { + "appid": 756020, + "normalized_name": "puppet kings" + }, + { + "appid": 756040, + "normalized_name": "rollercoaster legends" + }, + { + "appid": 756090, + "normalized_name": "good morning" + }, + { + "appid": 756100, + "normalized_name": "curse of the old gods" + }, + { + "appid": 756150, + "normalized_name": "born tubi wild" + }, + { + "appid": 756170, + "normalized_name": "helix brawl" + }, + { + "appid": 756190, + "normalized_name": "sky road" + }, + { + "appid": 756200, + "normalized_name": "impossibox" + }, + { + "appid": 756210, + "normalized_name": "talsaluq tower of infinity" + }, + { + "appid": 756220, + "normalized_name": "whirlpool" + }, + { + "appid": 756230, + "normalized_name": "kartofelka" + }, + { + "appid": 756240, + "normalized_name": "asylamba influence" + }, + { + "appid": 756260, + "normalized_name": "kingdom defense" + }, + { + "appid": 756290, + "normalized_name": "in league" + }, + { + "appid": 756300, + "normalized_name": "gym empire gym tycoon sim management" + }, + { + "appid": 756320, + "normalized_name": "snail trek chapter 2 a snail of two worlds" + }, + { + "appid": 756340, + "normalized_name": "traffic cop" + }, + { + "appid": 756350, + "normalized_name": "outbreak the escape" + }, + { + "appid": 756360, + "normalized_name": "linch" + }, + { + "appid": 756380, + "normalized_name": "super bugman extreme ultra" + }, + { + "appid": 756420, + "normalized_name": "dark maze" + }, + { + "appid": 756490, + "normalized_name": "next hero" + }, + { + "appid": 756500, + "normalized_name": "noir chronicles city of crime" + }, + { + "appid": 756520, + "normalized_name": "sensual vr" + }, + { + "appid": 756530, + "normalized_name": "tokyo ghoul re [call to exist]" + }, + { + "appid": 756560, + "normalized_name": "robot warriors" + }, + { + "appid": 756590, + "normalized_name": "atelier lydie & suelle ~the alchemists and the mysterious paintings~" + }, + { + "appid": 756600, + "normalized_name": "trianga's project battle splash 2.0" + }, + { + "appid": 756630, + "normalized_name": "solar wind" + }, + { + "appid": 756640, + "normalized_name": "welcome to orochi park" + }, + { + "appid": 756650, + "normalized_name": "the box vr" + }, + { + "appid": 756680, + "normalized_name": "angelo skate away" + }, + { + "appid": 756700, + "normalized_name": "neon seoul outrun" + }, + { + "appid": 756740, + "normalized_name": "man of honor" + }, + { + "appid": 756790, + "normalized_name": "cityglitch" + }, + { + "appid": 756800, + "normalized_name": "contraband police" + }, + { + "appid": 756810, + "normalized_name": "m.a.x. 2 mechanized assault & exploration" + }, + { + "appid": 756840, + "normalized_name": "摩尼遊戯tokoyo" + }, + { + "appid": 756860, + "normalized_name": "archers" + }, + { + "appid": 756880, + "normalized_name": "nvl" + }, + { + "appid": 756890, + "normalized_name": "alive hunter" + }, + { + "appid": 756980, + "normalized_name": "raymond's obstacle course" + }, + { + "appid": 757030, + "normalized_name": "christmas stories a christmas carol collector's" + }, + { + "appid": 757040, + "normalized_name": "desert golfing" + }, + { + "appid": 757050, + "normalized_name": "pure metal feature 1" + }, + { + "appid": 757060, + "normalized_name": "doubletap" + }, + { + "appid": 757080, + "normalized_name": "broadway 1849" + }, + { + "appid": 757100, + "normalized_name": "vr rhythm action seiya" + }, + { + "appid": 757170, + "normalized_name": "kolobok" + }, + { + "appid": 757180, + "normalized_name": "wolf & rabbit" + }, + { + "appid": 757190, + "normalized_name": "vexius" + }, + { + "appid": 757200, + "normalized_name": "emergency 3" + }, + { + "appid": 757210, + "normalized_name": "emergency 4 deluxe" + }, + { + "appid": 757230, + "normalized_name": "donjon defense" + }, + { + "appid": 757240, + "normalized_name": "aimtastic" + }, + { + "appid": 757290, + "normalized_name": "on board" + }, + { + "appid": 757300, + "normalized_name": "truberbrook / trüberbrook" + }, + { + "appid": 757310, + "normalized_name": "sable" + }, + { + "appid": 757320, + "normalized_name": "atomicrops" + }, + { + "appid": 757330, + "normalized_name": "qop 2" + }, + { + "appid": 757380, + "normalized_name": "ship ahoy open beta" + }, + { + "appid": 757400, + "normalized_name": "city balls vr" + }, + { + "appid": 757420, + "normalized_name": "zombie crisis last one standing" + }, + { + "appid": 757430, + "normalized_name": "schwerpunkt" + }, + { + "appid": 757440, + "normalized_name": "crafting tycoon" + }, + { + "appid": 757450, + "normalized_name": "samurai of hyuga book 3" + }, + { + "appid": 757470, + "normalized_name": "doom roller" + }, + { + "appid": 757480, + "normalized_name": "broken reality" + }, + { + "appid": 757490, + "normalized_name": "mapas do horizonte um jogo para conhecer bh" + }, + { + "appid": 757500, + "normalized_name": "fadeholm" + }, + { + "appid": 757530, + "normalized_name": "greenflame" + }, + { + "appid": 757540, + "normalized_name": "oedipus dating sim" + }, + { + "appid": 757550, + "normalized_name": "football story" + }, + { + "appid": 757580, + "normalized_name": "endless inside" + }, + { + "appid": 757590, + "normalized_name": "life game" + }, + { + "appid": 757600, + "normalized_name": "hotel transylvania 3 monsters overboard" + }, + { + "appid": 757630, + "normalized_name": "big day" + }, + { + "appid": 757670, + "normalized_name": "blitz freak" + }, + { + "appid": 757690, + "normalized_name": "limit of defense" + }, + { + "appid": 757700, + "normalized_name": "dungeon's barrage" + }, + { + "appid": 757730, + "normalized_name": "shadowcrawl the dark pilgrimage" + }, + { + "appid": 757780, + "normalized_name": "sector 452" + }, + { + "appid": 757810, + "normalized_name": "mahlone one" + }, + { + "appid": 757820, + "normalized_name": "flowing lights" + }, + { + "appid": 757850, + "normalized_name": "the grim ending" + }, + { + "appid": 757860, + "normalized_name": "elbub" + }, + { + "appid": 757870, + "normalized_name": "australian trip" + }, + { + "appid": 757900, + "normalized_name": "live and learn" + }, + { + "appid": 757910, + "normalized_name": "away" + }, + { + "appid": 757940, + "normalized_name": "raygun gadabout" + }, + { + "appid": 757990, + "normalized_name": "disassembly line" + }, + { + "appid": 758010, + "normalized_name": "big neon tower vs tiny square" + }, + { + "appid": 758020, + "normalized_name": "dmd mars mission" + }, + { + "appid": 758030, + "normalized_name": "captured king" + }, + { + "appid": 758050, + "normalized_name": "internet simulator" + }, + { + "appid": 758070, + "normalized_name": "kill the superweapon" + }, + { + "appid": 758080, + "normalized_name": "bloodlust 2 nemesis" + }, + { + "appid": 758090, + "normalized_name": "茂伸奇谈" + }, + { + "appid": 758100, + "normalized_name": "e startup" + }, + { + "appid": 758120, + "normalized_name": "rc fun city" + }, + { + "appid": 758140, + "normalized_name": "the plague" + }, + { + "appid": 758150, + "normalized_name": "mcrogue" + }, + { + "appid": 758170, + "normalized_name": "krampus quest" + }, + { + "appid": 758190, + "normalized_name": "dragon cliff" + }, + { + "appid": 758210, + "normalized_name": "escape room" + }, + { + "appid": 758220, + "normalized_name": "osmorrow" + }, + { + "appid": 758250, + "normalized_name": "taste of power" + }, + { + "appid": 758270, + "normalized_name": "裁決者 the white butcher" + }, + { + "appid": 758280, + "normalized_name": "drunkenpants" + }, + { + "appid": 758320, + "normalized_name": "cursed lands" + }, + { + "appid": 758330, + "normalized_name": "shenmue i & ii" + }, + { + "appid": 758370, + "normalized_name": "through the ages" + }, + { + "appid": 758400, + "normalized_name": "the heist" + }, + { + "appid": 758410, + "normalized_name": "ao international tennis" + }, + { + "appid": 758470, + "normalized_name": "africa hunting" + }, + { + "appid": 758480, + "normalized_name": "ukrainian ball in search of gas" + }, + { + "appid": 758500, + "normalized_name": "loot box quest" + }, + { + "appid": 758530, + "normalized_name": "sprout" + }, + { + "appid": 758560, + "normalized_name": "versus world" + }, + { + "appid": 758570, + "normalized_name": "tomorrow don't come puzzling depression" + }, + { + "appid": 758580, + "normalized_name": "grim tales the wishes collector's" + }, + { + "appid": 758590, + "normalized_name": "league of light silent mountain collector's" + }, + { + "appid": 758600, + "normalized_name": "christmas stories hans christian andersen's tin soldier collector's" + }, + { + "appid": 758610, + "normalized_name": "botanica earthbound collector's" + }, + { + "appid": 758620, + "normalized_name": "shadow wolf mysteries bane of the family collector's" + }, + { + "appid": 758630, + "normalized_name": "cadenza the kiss of death collector's" + }, + { + "appid": 758640, + "normalized_name": "nevertales legends collector's" + }, + { + "appid": 758650, + "normalized_name": "haunted train frozen in time collector's" + }, + { + "appid": 758660, + "normalized_name": "neverbound" + }, + { + "appid": 758680, + "normalized_name": "oddinary highway" + }, + { + "appid": 758690, + "normalized_name": "occupy mars the game" + }, + { + "appid": 758730, + "normalized_name": "paw patrol on a roll!" + }, + { + "appid": 758790, + "normalized_name": "musical reflex" + }, + { + "appid": 758840, + "normalized_name": "bygone worlds drama at the odeion" + }, + { + "appid": 758850, + "normalized_name": "nachzehrer" + }, + { + "appid": 758870, + "normalized_name": "kynseed" + }, + { + "appid": 758880, + "normalized_name": "redsun rts" + }, + { + "appid": 758920, + "normalized_name": "action rush" + }, + { + "appid": 758930, + "normalized_name": "captain forever trilogy" + }, + { + "appid": 758980, + "normalized_name": "poker legends texas hold'em poker tournaments" + }, + { + "appid": 758990, + "normalized_name": "ancient warfare 3" + }, + { + "appid": 759000, + "normalized_name": ".projekt" + }, + { + "appid": 759030, + "normalized_name": "wayway" + }, + { + "appid": 759040, + "normalized_name": "planet guardian vr" + }, + { + "appid": 759060, + "normalized_name": "ground runner trials" + }, + { + "appid": 759080, + "normalized_name": "city eye" + }, + { + "appid": 759160, + "normalized_name": "dungeons & vampires" + }, + { + "appid": 759180, + "normalized_name": "bizarre tale" + }, + { + "appid": 759260, + "normalized_name": "go all out" + }, + { + "appid": 759440, + "normalized_name": "learn japanese to survive! kanji combat" + }, + { + "appid": 759540, + "normalized_name": "wanted killer vr" + }, + { + "appid": 759570, + "normalized_name": "decay of logos" + }, + { + "appid": 759610, + "normalized_name": "house of evil" + }, + { + "appid": 759640, + "normalized_name": "plug me" + }, + { + "appid": 759650, + "normalized_name": "christmas puzzle 3" + }, + { + "appid": 759740, + "normalized_name": "ride 3" + }, + { + "appid": 759750, + "normalized_name": "doodle god alchemy jam" + }, + { + "appid": 759830, + "normalized_name": "gamma blast" + }, + { + "appid": 759840, + "normalized_name": "battle for mountain throne" + }, + { + "appid": 759850, + "normalized_name": "debuff" + }, + { + "appid": 759860, + "normalized_name": "mgp manager" + }, + { + "appid": 759870, + "normalized_name": "hj sacrifice" + }, + { + "appid": 759900, + "normalized_name": "the 13th heir ragnarok chapter 2" + }, + { + "appid": 759920, + "normalized_name": "souland" + }, + { + "appid": 759940, + "normalized_name": "前程似锦 excellent expectations" + }, + { + "appid": 759950, + "normalized_name": "uizuno blade vr" + }, + { + "appid": 759980, + "normalized_name": "mimic" + }, + { + "appid": 760000, + "normalized_name": "awaken:gunpowder adventurer day.dream" + }, + { + "appid": 760010, + "normalized_name": "flying turkey" + }, + { + "appid": 760030, + "normalized_name": "dizzy dungeon" + }, + { + "appid": 760050, + "normalized_name": "nightwolf survive the megadome" + }, + { + "appid": 760060, + "normalized_name": "mutant year zero road to eden" + }, + { + "appid": 760120, + "normalized_name": "your toy" + }, + { + "appid": 760160, + "normalized_name": "vampire the masquerade bloodhunt" + }, + { + "appid": 760220, + "normalized_name": "chineze" + }, + { + "appid": 760240, + "normalized_name": "mysterious insects" + }, + { + "appid": 760250, + "normalized_name": "mukti" + }, + { + "appid": 760320, + "normalized_name": "gunman tales" + }, + { + "appid": 760330, + "normalized_name": "bytepath" + }, + { + "appid": 760350, + "normalized_name": "star sweet" + }, + { + "appid": 760360, + "normalized_name": "android john 2.1" + }, + { + "appid": 760390, + "normalized_name": "tile typer" + }, + { + "appid": 760410, + "normalized_name": "don't be afraid" + }, + { + "appid": 760460, + "normalized_name": "weed" + }, + { + "appid": 760490, + "normalized_name": "frontier runner" + }, + { + "appid": 760510, + "normalized_name": "cat burglar a tail of purrsuit" + }, + { + "appid": 760530, + "normalized_name": "futurejam" + }, + { + "appid": 760550, + "normalized_name": "kakusankibou / 扩散希望" + }, + { + "appid": 760560, + "normalized_name": "happy new year clicker" + }, + { + "appid": 760580, + "normalized_name": "inspace 2980" + }, + { + "appid": 760630, + "normalized_name": "tennis elbow manager 2" + }, + { + "appid": 760640, + "normalized_name": "tennis elbow 4" + }, + { + "appid": 760650, + "normalized_name": "hammerting" + }, + { + "appid": 760660, + "normalized_name": "retro miami" + }, + { + "appid": 760680, + "normalized_name": "galaxy race" + }, + { + "appid": 760690, + "normalized_name": "premonitions the merchants of sol" + }, + { + "appid": 760800, + "normalized_name": "cube life island survival" + }, + { + "appid": 760810, + "normalized_name": "retimed" + }, + { + "appid": 760860, + "normalized_name": "transcend" + }, + { + "appid": 760890, + "normalized_name": "hello charlotte ep3 childhood's end" + }, + { + "appid": 760900, + "normalized_name": "in the thrall of darkness the gift of dreams" + }, + { + "appid": 760920, + "normalized_name": "electricvlab" + }, + { + "appid": 760930, + "normalized_name": "bitcoin farm" + }, + { + "appid": 760950, + "normalized_name": "black powder" + }, + { + "appid": 760960, + "normalized_name": "rocketgirl" + }, + { + "appid": 760980, + "normalized_name": "tower expanse" + }, + { + "appid": 760990, + "normalized_name": "weakwood throne" + }, + { + "appid": 761000, + "normalized_name": "floresia i intemporel" + }, + { + "appid": 761010, + "normalized_name": "wave break" + }, + { + "appid": 761020, + "normalized_name": "voidwalkers exodus" + }, + { + "appid": 761030, + "normalized_name": "earthlock" + }, + { + "appid": 761040, + "normalized_name": "wolf gang" + }, + { + "appid": 761060, + "normalized_name": "tractionsim" + }, + { + "appid": 761070, + "normalized_name": "garden of oblivion" + }, + { + "appid": 761090, + "normalized_name": "curre" + }, + { + "appid": 761100, + "normalized_name": "jump! jump! jump!" + }, + { + "appid": 761110, + "normalized_name": "infinity escape" + }, + { + "appid": 761130, + "normalized_name": "stellar warrior" + }, + { + "appid": 761140, + "normalized_name": "lost summoner kitty" + }, + { + "appid": 761150, + "normalized_name": "brick breaker bunch" + }, + { + "appid": 761170, + "normalized_name": "radical dungeon sweeper" + }, + { + "appid": 761180, + "normalized_name": "pumpking spice" + }, + { + "appid": 761190, + "normalized_name": "1010" + }, + { + "appid": 761220, + "normalized_name": "live the guitar" + }, + { + "appid": 761280, + "normalized_name": "white pearl" + }, + { + "appid": 761290, + "normalized_name": "sink or skim" + }, + { + "appid": 761300, + "normalized_name": "horde of plenty" + }, + { + "appid": 761320, + "normalized_name": "black jewel" + }, + { + "appid": 761350, + "normalized_name": "booth a dystopian adventure" + }, + { + "appid": 761440, + "normalized_name": "santa run" + }, + { + "appid": 761450, + "normalized_name": "huge beer pong challenges vr" + }, + { + "appid": 761460, + "normalized_name": "lamplight city" + }, + { + "appid": 761480, + "normalized_name": "snail trek chapter 3 lettuce be" + }, + { + "appid": 761570, + "normalized_name": "beard & axe" + }, + { + "appid": 761600, + "normalized_name": "onimusha warlords" + }, + { + "appid": 761620, + "normalized_name": "beholder 2" + }, + { + "appid": 761630, + "normalized_name": "akda" + }, + { + "appid": 761640, + "normalized_name": "home darkness escape?" + }, + { + "appid": 761660, + "normalized_name": "stickman destruction 2" + }, + { + "appid": 761670, + "normalized_name": "grisaia phantom trigger vol.4" + }, + { + "appid": 761700, + "normalized_name": "your diary +" + }, + { + "appid": 761720, + "normalized_name": "can you eat by yourself" + }, + { + "appid": 761730, + "normalized_name": "non the first warp" + }, + { + "appid": 761760, + "normalized_name": "till the dawn waiting" + }, + { + "appid": 761770, + "normalized_name": "fire flight" + }, + { + "appid": 761790, + "normalized_name": "parker & lane criminal justice" + }, + { + "appid": 761830, + "normalized_name": "mr. prepper" + }, + { + "appid": 761880, + "normalized_name": "the day they landed" + }, + { + "appid": 761890, + "normalized_name": "albion online" + }, + { + "appid": 761910, + "normalized_name": "worbital" + }, + { + "appid": 761920, + "normalized_name": "zenodeath" + }, + { + "appid": 761930, + "normalized_name": "code name origin" + }, + { + "appid": 762000, + "normalized_name": "witches craft" + }, + { + "appid": 762010, + "normalized_name": "echo tokyo reaper" + }, + { + "appid": 762030, + "normalized_name": "mowin' & throwin'" + }, + { + "appid": 762080, + "normalized_name": "galactic force" + }, + { + "appid": 762100, + "normalized_name": "jerry frog's retro adventure" + }, + { + "appid": 762110, + "normalized_name": "meow wars card battle" + }, + { + "appid": 762120, + "normalized_name": "nuke babysitter simulator | kim" + }, + { + "appid": 762130, + "normalized_name": "namaste virtual yoga retreat" + }, + { + "appid": 762150, + "normalized_name": "rise of the gunters" + }, + { + "appid": 762180, + "normalized_name": "treachery in beatdown city" + }, + { + "appid": 762190, + "normalized_name": "epic loon" + }, + { + "appid": 762220, + "normalized_name": "afterparty" + }, + { + "appid": 762240, + "normalized_name": "fantasy realm a land torn asunder" + }, + { + "appid": 762250, + "normalized_name": "fire in the hole" + }, + { + "appid": 762270, + "normalized_name": "thunder chase" + }, + { + "appid": 762360, + "normalized_name": "hexed" + }, + { + "appid": 762370, + "normalized_name": "everything is going to be ok" + }, + { + "appid": 762380, + "normalized_name": "world apart" + }, + { + "appid": 762480, + "normalized_name": "chinese inn" + }, + { + "appid": 762490, + "normalized_name": "naked sun" + }, + { + "appid": 762500, + "normalized_name": "rhythm girl" + }, + { + "appid": 762520, + "normalized_name": "demon hunter 4 riddles of light" + }, + { + "appid": 762540, + "normalized_name": "allwheel.online" + }, + { + "appid": 762560, + "normalized_name": "manarocks" + }, + { + "appid": 762590, + "normalized_name": "zombie derby 2" + }, + { + "appid": 762610, + "normalized_name": "russian subway dogs" + }, + { + "appid": 762630, + "normalized_name": "dark wish" + }, + { + "appid": 762650, + "normalized_name": "depraved" + }, + { + "appid": 762670, + "normalized_name": "astro joust" + }, + { + "appid": 762680, + "normalized_name": "double turn" + }, + { + "appid": 762780, + "normalized_name": "amazing pea td" + }, + { + "appid": 762830, + "normalized_name": "telling lies" + }, + { + "appid": 762840, + "normalized_name": "maquette" + }, + { + "appid": 762850, + "normalized_name": "cubit" + }, + { + "appid": 762860, + "normalized_name": "anti virus destroyer" + }, + { + "appid": 762870, + "normalized_name": "the prime movr" + }, + { + "appid": 762900, + "normalized_name": "cars with guns it's about time" + }, + { + "appid": 762930, + "normalized_name": "supipara chapter 2 spring has come!" + }, + { + "appid": 762940, + "normalized_name": "mineko's night market" + }, + { + "appid": 762950, + "normalized_name": "chess cubed" + }, + { + "appid": 762980, + "normalized_name": "chaotic void" + }, + { + "appid": 763000, + "normalized_name": "super army of tentacles 3 the search for army of tentacles 2 black goat of the woods" + }, + { + "appid": 763010, + "normalized_name": "lost in maze" + }, + { + "appid": 763030, + "normalized_name": "nelly cootalot spoonbeaks ahoy! hd" + }, + { + "appid": 763050, + "normalized_name": "happiness drops!" + }, + { + "appid": 763070, + "normalized_name": "overcoming pain" + }, + { + "appid": 763090, + "normalized_name": "aqua fish" + }, + { + "appid": 763100, + "normalized_name": "lumberjack simulator" + }, + { + "appid": 763180, + "normalized_name": "anima flux" + }, + { + "appid": 763200, + "normalized_name": "volkstein" + }, + { + "appid": 763210, + "normalized_name": "amelon" + }, + { + "appid": 763220, + "normalized_name": "bright low" + }, + { + "appid": 763230, + "normalized_name": "fruity smoothie" + }, + { + "appid": 763250, + "normalized_name": "the spectrum retreat" + }, + { + "appid": 763290, + "normalized_name": "riddlord the consequence" + }, + { + "appid": 763300, + "normalized_name": "game tube ♛" + }, + { + "appid": 763310, + "normalized_name": "projekt z beyond order" + }, + { + "appid": 763320, + "normalized_name": "advanced mechanized spacecraft" + }, + { + "appid": 763340, + "normalized_name": "brave hand" + }, + { + "appid": 763350, + "normalized_name": "slime sports" + }, + { + "appid": 763380, + "normalized_name": "koikoi" + }, + { + "appid": 763400, + "normalized_name": "cave runner" + }, + { + "appid": 763410, + "normalized_name": "long live santa!" + }, + { + "appid": 763430, + "normalized_name": "front defense heroes" + }, + { + "appid": 763490, + "normalized_name": "precision archery competitive" + }, + { + "appid": 763520, + "normalized_name": "hard place" + }, + { + "appid": 763550, + "normalized_name": "a journey through valhalla" + }, + { + "appid": 763570, + "normalized_name": "opus 1 social justice war" + }, + { + "appid": 763610, + "normalized_name": "freakshow anniversary" + }, + { + "appid": 763630, + "normalized_name": "the door of ice 冰封之门" + }, + { + "appid": 763650, + "normalized_name": "comets wake" + }, + { + "appid": 763680, + "normalized_name": "miney company a data racket" + }, + { + "appid": 763710, + "normalized_name": "river city melee mach!!" + }, + { + "appid": 763730, + "normalized_name": "ragtag adventurers" + }, + { + "appid": 763740, + "normalized_name": "nark the dragon" + }, + { + "appid": 763750, + "normalized_name": "minaurs" + }, + { + "appid": 763790, + "normalized_name": "trainervr" + }, + { + "appid": 763810, + "normalized_name": "jingle" + }, + { + "appid": 763870, + "normalized_name": "xploquest" + }, + { + "appid": 763880, + "normalized_name": "no ordinary elevator" + }, + { + "appid": 763890, + "normalized_name": "wildermyth" + }, + { + "appid": 763910, + "normalized_name": "time tenshi paradox episode 1" + }, + { + "appid": 763930, + "normalized_name": "tally ho" + }, + { + "appid": 763950, + "normalized_name": "t rex time machine" + }, + { + "appid": 763990, + "normalized_name": "chasing the stars" + }, + { + "appid": 764010, + "normalized_name": "insane cold back to the ice age" + }, + { + "appid": 764030, + "normalized_name": "realm revolutions" + }, + { + "appid": 764050, + "normalized_name": "maelstrom" + }, + { + "appid": 764090, + "normalized_name": "star shredders" + }, + { + "appid": 764110, + "normalized_name": "flappy arms" + }, + { + "appid": 764180, + "normalized_name": "cross of auria" + }, + { + "appid": 764230, + "normalized_name": "shoujo city" + }, + { + "appid": 764240, + "normalized_name": "horse paradise my dream ranch" + }, + { + "appid": 764280, + "normalized_name": "atomic adam episode 1" + }, + { + "appid": 764300, + "normalized_name": "shantae half genie hero" + }, + { + "appid": 764370, + "normalized_name": "realm of the ghost king" + }, + { + "appid": 764390, + "normalized_name": "synced warriors" + }, + { + "appid": 764410, + "normalized_name": "trials of the gauntlet" + }, + { + "appid": 764420, + "normalized_name": "rogue racer" + }, + { + "appid": 764430, + "normalized_name": "the legend of bean" + }, + { + "appid": 764470, + "normalized_name": "gear path" + }, + { + "appid": 764490, + "normalized_name": "stickman jetpack" + }, + { + "appid": 764500, + "normalized_name": "deep dark fight" + }, + { + "appid": 764510, + "normalized_name": "phantom signal — sci fi strategy game" + }, + { + "appid": 764540, + "normalized_name": "tall order" + }, + { + "appid": 764550, + "normalized_name": "city builder" + }, + { + "appid": 764560, + "normalized_name": "chocolate makes you happy 2" + }, + { + "appid": 764570, + "normalized_name": "beavers be dammed" + }, + { + "appid": 764580, + "normalized_name": "realmcraft" + }, + { + "appid": 764590, + "normalized_name": "shadow of loot box" + }, + { + "appid": 764630, + "normalized_name": "alien invaders from the planet plorth" + }, + { + "appid": 764670, + "normalized_name": "sea dogs" + }, + { + "appid": 764710, + "normalized_name": "warpsquad" + }, + { + "appid": 764720, + "normalized_name": "oh no! ninjas!" + }, + { + "appid": 764740, + "normalized_name": "caviar endless stress reliever" + }, + { + "appid": 764780, + "normalized_name": "edepth angel pinocchio's murder" + }, + { + "appid": 764790, + "normalized_name": "the messenger" + }, + { + "appid": 764830, + "normalized_name": "snowmania" + }, + { + "appid": 764870, + "normalized_name": "bubblien pop" + }, + { + "appid": 764880, + "normalized_name": "brazilian adventure" + }, + { + "appid": 764890, + "normalized_name": "match point" + }, + { + "appid": 764920, + "normalized_name": "fear the night 恐惧之夜" + }, + { + "appid": 764930, + "normalized_name": "hubert" + }, + { + "appid": 764990, + "normalized_name": "whack the serial killer 20 ways plus neighbour burglars..." + }, + { + "appid": 765010, + "normalized_name": "strid" + }, + { + "appid": 765030, + "normalized_name": "樱雪集~yuyuko's butterfly dream" + }, + { + "appid": 765040, + "normalized_name": "defense of the fantasy robots" + }, + { + "appid": 765060, + "normalized_name": "pixelbot extreme!" + }, + { + "appid": 765090, + "normalized_name": "kojou" + }, + { + "appid": 765100, + "normalized_name": "labirinto" + }, + { + "appid": 765140, + "normalized_name": "s.u.b." + }, + { + "appid": 765160, + "normalized_name": "weable 2" + }, + { + "appid": 765170, + "normalized_name": "crazy bigheads" + }, + { + "appid": 765180, + "normalized_name": "scp 087 recovered document" + }, + { + "appid": 765210, + "normalized_name": "your royal gayness" + }, + { + "appid": 765230, + "normalized_name": "unrect" + }, + { + "appid": 765240, + "normalized_name": "daydream" + }, + { + "appid": 765250, + "normalized_name": "mind the vikings" + }, + { + "appid": 765260, + "normalized_name": "overhead" + }, + { + "appid": 765320, + "normalized_name": "planetarium 2 zen odyssey" + }, + { + "appid": 765350, + "normalized_name": "quirky crook" + }, + { + "appid": 765360, + "normalized_name": "clumsy knight vs. skeleton" + }, + { + "appid": 765370, + "normalized_name": "rts commander smash the rebels" + }, + { + "appid": 765380, + "normalized_name": "internal light vr" + }, + { + "appid": 765400, + "normalized_name": "christmas tale visual novel" + }, + { + "appid": 765410, + "normalized_name": "bean battles" + }, + { + "appid": 765450, + "normalized_name": "tank brawl 2 armor fury" + }, + { + "appid": 765460, + "normalized_name": "atoms" + }, + { + "appid": 765470, + "normalized_name": "the great fantasy struggle" + }, + { + "appid": 765480, + "normalized_name": "karambola" + }, + { + "appid": 765490, + "normalized_name": "spectrum break" + }, + { + "appid": 765510, + "normalized_name": "we can't get through the zombies" + }, + { + "appid": 765520, + "normalized_name": "billy" + }, + { + "appid": 765530, + "normalized_name": "fall down" + }, + { + "appid": 765570, + "normalized_name": "orcz evolve vr" + }, + { + "appid": 765590, + "normalized_name": "co op snek online" + }, + { + "appid": 765610, + "normalized_name": "hex up" + }, + { + "appid": 765620, + "normalized_name": "last hope" + }, + { + "appid": 765630, + "normalized_name": "the dead cloud forest" + }, + { + "appid": 765640, + "normalized_name": "change" + }, + { + "appid": 765650, + "normalized_name": "tsukumohime" + }, + { + "appid": 765690, + "normalized_name": "dark strokes the legend of the snow kingdom collector’s" + }, + { + "appid": 765700, + "normalized_name": "tactical galactical" + }, + { + "appid": 765710, + "normalized_name": "light bearers" + }, + { + "appid": 765730, + "normalized_name": "wand wars vr" + }, + { + "appid": 765770, + "normalized_name": "forest legends the call of love collector's" + }, + { + "appid": 765780, + "normalized_name": "little smart planet" + }, + { + "appid": 765790, + "normalized_name": "legend of long night" + }, + { + "appid": 765810, + "normalized_name": "mars horizon" + }, + { + "appid": 765870, + "normalized_name": "leisure suit larry wet dreams don't dry" + }, + { + "appid": 765880, + "normalized_name": "the occupation" + }, + { + "appid": 765940, + "normalized_name": "sok" + }, + { + "appid": 765950, + "normalized_name": "project glitch" + }, + { + "appid": 766000, + "normalized_name": "kenshō" + }, + { + "appid": 766010, + "normalized_name": "slime san sheeple’s sequel" + }, + { + "appid": 766040, + "normalized_name": "gloom digital" + }, + { + "appid": 766060, + "normalized_name": "fast drive extreme race" + }, + { + "appid": 766070, + "normalized_name": "apperception" + }, + { + "appid": 766090, + "normalized_name": "we walked in darkness" + }, + { + "appid": 766150, + "normalized_name": "the tension" + }, + { + "appid": 766210, + "normalized_name": "wargs" + }, + { + "appid": 766250, + "normalized_name": "kaz ball" + }, + { + "appid": 766280, + "normalized_name": "a light in the dark" + }, + { + "appid": 766320, + "normalized_name": "the mage's tale" + }, + { + "appid": 766420, + "normalized_name": "neckbeards silly squadron" + }, + { + "appid": 766430, + "normalized_name": "dolla world" + }, + { + "appid": 766460, + "normalized_name": "trireme commander" + }, + { + "appid": 766500, + "normalized_name": "the hordes of the dead" + }, + { + "appid": 766560, + "normalized_name": "the fruitless flower 雾雨中的徒花" + }, + { + "appid": 766570, + "normalized_name": "russian fishing 4" + }, + { + "appid": 766600, + "normalized_name": "amazing human simulator" + }, + { + "appid": 766620, + "normalized_name": "gambit heart" + }, + { + "appid": 766630, + "normalized_name": "dust and salt" + }, + { + "appid": 766650, + "normalized_name": "d.r.i.l.l." + }, + { + "appid": 766680, + "normalized_name": "punch line" + }, + { + "appid": 766700, + "normalized_name": "pearsandgraywitch" + }, + { + "appid": 766730, + "normalized_name": "gachimuchi reloaded" + }, + { + "appid": 766740, + "normalized_name": "maze of adventures" + }, + { + "appid": 766780, + "normalized_name": "stax" + }, + { + "appid": 766850, + "normalized_name": "vaporwave simulator" + }, + { + "appid": 766900, + "normalized_name": "denki bounce" + }, + { + "appid": 766910, + "normalized_name": "e ball" + }, + { + "appid": 766930, + "normalized_name": "ignis duels of wizards" + }, + { + "appid": 766940, + "normalized_name": "snares of ruin" + }, + { + "appid": 766990, + "normalized_name": "billiards wizards" + }, + { + "appid": 767000, + "normalized_name": "afterthedawn" + }, + { + "appid": 767010, + "normalized_name": "agent x equation rider" + }, + { + "appid": 767020, + "normalized_name": "shooting sports gun club" + }, + { + "appid": 767030, + "normalized_name": "trivia vault technology trivia deluxe" + }, + { + "appid": 767050, + "normalized_name": "last day of fear" + }, + { + "appid": 767100, + "normalized_name": "super poop" + }, + { + "appid": 767110, + "normalized_name": "anime girls vr" + }, + { + "appid": 767130, + "normalized_name": "virtual reality girls 2" + }, + { + "appid": 767170, + "normalized_name": "dolphins cyborgs and open space" + }, + { + "appid": 767200, + "normalized_name": "chinese ink painting puzzle & creator / 國畫拼圖創作家" + }, + { + "appid": 767300, + "normalized_name": "war of conquest" + }, + { + "appid": 767310, + "normalized_name": "brutal inventions" + }, + { + "appid": 767330, + "normalized_name": "indoor rock climbing vr" + }, + { + "appid": 767360, + "normalized_name": "monster league" + }, + { + "appid": 767390, + "normalized_name": "dakar 18" + }, + { + "appid": 767400, + "normalized_name": "弹炸人2222" + }, + { + "appid": 767410, + "normalized_name": "mightyironball" + }, + { + "appid": 767420, + "normalized_name": "wauies the pet shop game" + }, + { + "appid": 767460, + "normalized_name": "technotron defense" + }, + { + "appid": 767470, + "normalized_name": "creatio ex nihilo ii deus otiosus" + }, + { + "appid": 767490, + "normalized_name": "last wood" + }, + { + "appid": 767500, + "normalized_name": "once in yaissor 2" + }, + { + "appid": 767550, + "normalized_name": "topshot darkness" + }, + { + "appid": 767560, + "normalized_name": "war robots" + }, + { + "appid": 767590, + "normalized_name": "raining blocks" + }, + { + "appid": 767660, + "normalized_name": "orphan age" + }, + { + "appid": 767680, + "normalized_name": "domino effect" + }, + { + "appid": 767690, + "normalized_name": "heart of the emberstone coliseum" + }, + { + "appid": 767800, + "normalized_name": "struggle for talyria" + }, + { + "appid": 767840, + "normalized_name": "meteorite defense command" + }, + { + "appid": 767860, + "normalized_name": "gilded" + }, + { + "appid": 767870, + "normalized_name": "dark noid" + }, + { + "appid": 767910, + "normalized_name": "strange night ll" + }, + { + "appid": 767930, + "normalized_name": "assault spy" + }, + { + "appid": 767970, + "normalized_name": "inhumanus" + }, + { + "appid": 767980, + "normalized_name": "multi quest" + }, + { + "appid": 768020, + "normalized_name": "the mysterious ship(诡船谜案)" + }, + { + "appid": 768060, + "normalized_name": "the warrior of treasures" + }, + { + "appid": 768090, + "normalized_name": "amatarasu riddle star" + }, + { + "appid": 768110, + "normalized_name": "dawn city" + }, + { + "appid": 768130, + "normalized_name": "aiso" + }, + { + "appid": 768170, + "normalized_name": "medieval real estate" + }, + { + "appid": 768180, + "normalized_name": "truck driver" + }, + { + "appid": 768200, + "normalized_name": "smalland survive the wilds" + }, + { + "appid": 768270, + "normalized_name": "lisssn" + }, + { + "appid": 768290, + "normalized_name": "snow white solitaire. charmed kingdom" + }, + { + "appid": 768300, + "normalized_name": "zhulik.exe" + }, + { + "appid": 768310, + "normalized_name": "er spectro" + }, + { + "appid": 768450, + "normalized_name": "nuts" + }, + { + "appid": 768460, + "normalized_name": "areia pathway to dawn" + }, + { + "appid": 768480, + "normalized_name": "chamber of the sci mutant priestess" + }, + { + "appid": 768520, + "normalized_name": "red solstice 2 survivors" + }, + { + "appid": 768540, + "normalized_name": "dinosaurs prehistoric survivors" + }, + { + "appid": 768550, + "normalized_name": "zanshin" + }, + { + "appid": 768570, + "normalized_name": "uncanny islands" + }, + { + "appid": 768580, + "normalized_name": "witchball" + }, + { + "appid": 768590, + "normalized_name": "box align" + }, + { + "appid": 768630, + "normalized_name": "zyxia neon termination" + }, + { + "appid": 768640, + "normalized_name": "red hot ricochet" + }, + { + "appid": 768750, + "normalized_name": "montecrypto the bitcoin enigma" + }, + { + "appid": 768770, + "normalized_name": "industrialvr hoover dam" + }, + { + "appid": 768800, + "normalized_name": "race" + }, + { + "appid": 768820, + "normalized_name": "free yourself a gravity puzzle game starring you!" + }, + { + "appid": 768840, + "normalized_name": "first steam game vhs color retro racer miles challenge" + }, + { + "appid": 768880, + "normalized_name": "beach rules" + }, + { + "appid": 768900, + "normalized_name": "hedra" + }, + { + "appid": 768990, + "normalized_name": "x fire vr" + }, + { + "appid": 769020, + "normalized_name": "ye fenny revenge of the evil good shepherd" + }, + { + "appid": 769030, + "normalized_name": "twine3d" + }, + { + "appid": 769060, + "normalized_name": "dab on 'em haterz" + }, + { + "appid": 769080, + "normalized_name": "the little war" + }, + { + "appid": 769110, + "normalized_name": "barbarian souls" + }, + { + "appid": 769150, + "normalized_name": "casino slot machines" + }, + { + "appid": 769160, + "normalized_name": "sol galaxy defender" + }, + { + "appid": 769170, + "normalized_name": "flinch" + }, + { + "appid": 769190, + "normalized_name": "mistress of maids" + }, + { + "appid": 769200, + "normalized_name": "click&fight" + }, + { + "appid": 769220, + "normalized_name": "trafico" + }, + { + "appid": 769230, + "normalized_name": "no more pop music annihilation" + }, + { + "appid": 769320, + "normalized_name": "invasher" + }, + { + "appid": 769340, + "normalized_name": "zomby soldier" + }, + { + "appid": 769360, + "normalized_name": "harts" + }, + { + "appid": 769370, + "normalized_name": "dragon boar and lady rabbit" + }, + { + "appid": 769390, + "normalized_name": "xmas zombie rampage 2" + }, + { + "appid": 769410, + "normalized_name": "electromaze tower defense" + }, + { + "appid": 769420, + "normalized_name": "juventures" + }, + { + "appid": 769480, + "normalized_name": "proboon lite" + }, + { + "appid": 769520, + "normalized_name": "abyss crew" + }, + { + "appid": 769540, + "normalized_name": "beat miner" + }, + { + "appid": 769550, + "normalized_name": "east 73 magenta fairytale" + }, + { + "appid": 769560, + "normalized_name": "月圆之夜 (night of full moon)" + }, + { + "appid": 769580, + "normalized_name": "kingdom of blades" + }, + { + "appid": 769590, + "normalized_name": "play cube with uncle billy" + }, + { + "appid": 769600, + "normalized_name": "rheksetor" + }, + { + "appid": 769630, + "normalized_name": "紅蜘蛛外伝:暗戦" + }, + { + "appid": 769640, + "normalized_name": "lordian karma" + }, + { + "appid": 769680, + "normalized_name": "愛神餐館2" + }, + { + "appid": 769690, + "normalized_name": "reading simulator" + }, + { + "appid": 769730, + "normalized_name": "awkward" + }, + { + "appid": 769840, + "normalized_name": "muddledash" + }, + { + "appid": 769910, + "normalized_name": "flipped on" + }, + { + "appid": 769920, + "normalized_name": "odysseus kosmos and his robot quest episode 1" + }, + { + "appid": 769930, + "normalized_name": "dwarvrs" + }, + { + "appid": 769940, + "normalized_name": "fantasy defense" + }, + { + "appid": 769950, + "normalized_name": "panzer strategy" + }, + { + "appid": 769970, + "normalized_name": "bad dream fever" + }, + { + "appid": 769980, + "normalized_name": "lock her up the trump supremacy" + }, + { + "appid": 770010, + "normalized_name": "bacon roll" + }, + { + "appid": 770020, + "normalized_name": "royal tumble" + }, + { + "appid": 770040, + "normalized_name": "everescape" + }, + { + "appid": 770050, + "normalized_name": "castle clamber" + }, + { + "appid": 770070, + "normalized_name": "swords and sandals 5 redux maximus" + }, + { + "appid": 770080, + "normalized_name": "gnome lake" + }, + { + "appid": 770090, + "normalized_name": "la camila a vr story" + }, + { + "appid": 770100, + "normalized_name": "one deck dungeon" + }, + { + "appid": 770110, + "normalized_name": "twilight path" + }, + { + "appid": 770120, + "normalized_name": "yoltrund" + }, + { + "appid": 770160, + "normalized_name": "seishin virtual rhythm" + }, + { + "appid": 770200, + "normalized_name": "squally" + }, + { + "appid": 770270, + "normalized_name": "warbot" + }, + { + "appid": 770320, + "normalized_name": "zazmo arcade pack" + }, + { + "appid": 770350, + "normalized_name": "pixel drift" + }, + { + "appid": 770360, + "normalized_name": "lowpoly hero" + }, + { + "appid": 770370, + "normalized_name": "adventures of dragon" + }, + { + "appid": 770380, + "normalized_name": "army of tentacles (not) a cthulhu dating sim black goat of the woods" + }, + { + "appid": 770390, + "normalized_name": "draugen" + }, + { + "appid": 770400, + "normalized_name": "fairy of the treasures" + }, + { + "appid": 770410, + "normalized_name": "path to mnemosyne" + }, + { + "appid": 770460, + "normalized_name": "the dummy experiment" + }, + { + "appid": 770490, + "normalized_name": "death in the water" + }, + { + "appid": 770500, + "normalized_name": "goblin gearshop" + }, + { + "appid": 770520, + "normalized_name": "boomer rampage" + }, + { + "appid": 770560, + "normalized_name": "overlook local multiplayer game up to 16 players" + }, + { + "appid": 770600, + "normalized_name": "memento of spring" + }, + { + "appid": 770630, + "normalized_name": "boo! greedy kid" + }, + { + "appid": 770660, + "normalized_name": "thetaball" + }, + { + "appid": 770760, + "normalized_name": "dungeon of the forgotten king" + }, + { + "appid": 770790, + "normalized_name": "formfish" + }, + { + "appid": 770810, + "normalized_name": "good pizza great pizza cooking simulator game" + }, + { + "appid": 770820, + "normalized_name": "factory hiro" + }, + { + "appid": 770830, + "normalized_name": "alien revival episode 1 duty calls" + }, + { + "appid": 770850, + "normalized_name": "dunkypung" + }, + { + "appid": 770860, + "normalized_name": "annwn the otherworld" + }, + { + "appid": 770870, + "normalized_name": "queen's tales sins of the past collector's" + }, + { + "appid": 770880, + "normalized_name": "love story the beach cottage" + }, + { + "appid": 770890, + "normalized_name": "web of deceit deadly sands collector's" + }, + { + "appid": 770900, + "normalized_name": "off the record liberty stone collector's" + }, + { + "appid": 770920, + "normalized_name": "haunted legends the undertaker collector's" + }, + { + "appid": 771010, + "normalized_name": "containment" + }, + { + "appid": 771060, + "normalized_name": "iron league" + }, + { + "appid": 771070, + "normalized_name": "infinos gaiden" + }, + { + "appid": 771100, + "normalized_name": "talk to saki" + }, + { + "appid": 771120, + "normalized_name": "rotator" + }, + { + "appid": 771130, + "normalized_name": "sad city 42" + }, + { + "appid": 771170, + "normalized_name": "fen" + }, + { + "appid": 771180, + "normalized_name": "xz" + }, + { + "appid": 771190, + "normalized_name": "xz xl" + }, + { + "appid": 771240, + "normalized_name": "yumecore" + }, + { + "appid": 771250, + "normalized_name": "doodle god mighty trio" + }, + { + "appid": 771310, + "normalized_name": "welcome to light fields" + }, + { + "appid": 771320, + "normalized_name": "amazing trivia" + }, + { + "appid": 771340, + "normalized_name": "kansei" + }, + { + "appid": 771350, + "normalized_name": "achievement clicker 2018" + }, + { + "appid": 771370, + "normalized_name": "confederate express" + }, + { + "appid": 771380, + "normalized_name": "yousei" + }, + { + "appid": 771400, + "normalized_name": "escape from voyna tactical fps survival" + }, + { + "appid": 771410, + "normalized_name": "you will never get this achievement" + }, + { + "appid": 771420, + "normalized_name": "primal light" + }, + { + "appid": 771430, + "normalized_name": "evolva" + }, + { + "appid": 771450, + "normalized_name": "error human not found" + }, + { + "appid": 771470, + "normalized_name": "stage fright (by broan games)" + }, + { + "appid": 771500, + "normalized_name": "the intern" + }, + { + "appid": 771530, + "normalized_name": "take that" + }, + { + "appid": 771540, + "normalized_name": "banshee force" + }, + { + "appid": 771560, + "normalized_name": "ffxv windows 4k resolution pack" + }, + { + "appid": 771570, + "normalized_name": "zombie city" + }, + { + "appid": 771670, + "normalized_name": "vr_playroom" + }, + { + "appid": 771680, + "normalized_name": "shield impact" + }, + { + "appid": 771690, + "normalized_name": "fimbul" + }, + { + "appid": 771700, + "normalized_name": "airhead" + }, + { + "appid": 771710, + "normalized_name": ".t.e.s.t expected behaviour — sci fi 3d puzzle quest" + }, + { + "appid": 771770, + "normalized_name": "isles of etherion" + }, + { + "appid": 771800, + "normalized_name": "deadstick bush flight simulator" + }, + { + "appid": 771810, + "normalized_name": "the spy who shot me" + }, + { + "appid": 771820, + "normalized_name": "rookie math pro" + }, + { + "appid": 771860, + "normalized_name": "jelly escape" + }, + { + "appid": 771870, + "normalized_name": "bullet runner" + }, + { + "appid": 771920, + "normalized_name": "together vr" + }, + { + "appid": 771950, + "normalized_name": "sumetrick" + }, + { + "appid": 771970, + "normalized_name": "star runner" + }, + { + "appid": 772060, + "normalized_name": "harvester of dreams episode 1" + }, + { + "appid": 772070, + "normalized_name": "harvest seasons" + }, + { + "appid": 772080, + "normalized_name": "mind portal" + }, + { + "appid": 772090, + "normalized_name": "once upon a dungeon" + }, + { + "appid": 772100, + "normalized_name": "dexterity" + }, + { + "appid": 772110, + "normalized_name": "asteroidiga" + }, + { + "appid": 772160, + "normalized_name": "4 for the money demo" + }, + { + "appid": 772180, + "normalized_name": "cricket club" + }, + { + "appid": 772200, + "normalized_name": "mortal manor" + }, + { + "appid": 772210, + "normalized_name": "committed mystery at shady pines premium" + }, + { + "appid": 772220, + "normalized_name": "arbiter" + }, + { + "appid": 772230, + "normalized_name": "跳跃2/leapii" + }, + { + "appid": 772240, + "normalized_name": "the treasure seekers of lady luck" + }, + { + "appid": 772260, + "normalized_name": "nitorinc. touhou microgames!" + }, + { + "appid": 772270, + "normalized_name": "blocked and loaded" + }, + { + "appid": 772290, + "normalized_name": "rainswept" + }, + { + "appid": 772300, + "normalized_name": "to the city of the clouds" + }, + { + "appid": 772320, + "normalized_name": "yeti's parole officer" + }, + { + "appid": 772340, + "normalized_name": "showdown at willow creek" + }, + { + "appid": 772360, + "normalized_name": "for rent haunted house" + }, + { + "appid": 772410, + "normalized_name": "max and maya cat simulator" + }, + { + "appid": 772420, + "normalized_name": "complex a vr puzzle game" + }, + { + "appid": 772430, + "normalized_name": "hero of the kingdom iii" + }, + { + "appid": 772440, + "normalized_name": "sky ball" + }, + { + "appid": 772450, + "normalized_name": "prison bomber" + }, + { + "appid": 772460, + "normalized_name": "yangbo adventure" + }, + { + "appid": 772470, + "normalized_name": "8 in 1 iq scale bundle" + }, + { + "appid": 772480, + "normalized_name": "super inefficient golf" + }, + { + "appid": 772500, + "normalized_name": "distortions" + }, + { + "appid": 772570, + "normalized_name": "crew 167 the grand block odyssey" + }, + { + "appid": 772590, + "normalized_name": "after life vr" + }, + { + "appid": 772600, + "normalized_name": "fisherones" + }, + { + "appid": 772610, + "normalized_name": "q yo blaster" + }, + { + "appid": 772650, + "normalized_name": "r.a.f.a." + }, + { + "appid": 772670, + "normalized_name": "beyond the invisible darkness came" + }, + { + "appid": 772680, + "normalized_name": "a museum of dubious splendors" + }, + { + "appid": 772700, + "normalized_name": "matchygotchy" + }, + { + "appid": 772710, + "normalized_name": "fay's factory" + }, + { + "appid": 772730, + "normalized_name": "angel light the elven truce" + }, + { + "appid": 772750, + "normalized_name": "wizards wand of epicosity" + }, + { + "appid": 772940, + "normalized_name": "mori and the whisper" + }, + { + "appid": 772980, + "normalized_name": "deconstruction" + }, + { + "appid": 772990, + "normalized_name": "bird watcher" + }, + { + "appid": 773010, + "normalized_name": "hunahpu quest. mechanoid" + }, + { + "appid": 773090, + "normalized_name": "lucid dream adventure" + }, + { + "appid": 773120, + "normalized_name": "christmas santa troubles" + }, + { + "appid": 773130, + "normalized_name": "nyan destroyer" + }, + { + "appid": 773150, + "normalized_name": "subscribe & punch!" + }, + { + "appid": 773180, + "normalized_name": "glukhovo" + }, + { + "appid": 773190, + "normalized_name": "dark core" + }, + { + "appid": 773230, + "normalized_name": "the evil party" + }, + { + "appid": 773330, + "normalized_name": "action alien survival" + }, + { + "appid": 773360, + "normalized_name": "stinky snake" + }, + { + "appid": 773370, + "normalized_name": "exo one" + }, + { + "appid": 773380, + "normalized_name": "viking age odin's warrior" + }, + { + "appid": 773390, + "normalized_name": "aim trainer pro" + }, + { + "appid": 773420, + "normalized_name": "panacea last will" + }, + { + "appid": 773430, + "normalized_name": "meow motors" + }, + { + "appid": 773440, + "normalized_name": "primal pursuit" + }, + { + "appid": 773460, + "normalized_name": "瞳:祈愿 vr / pupil wandering vr" + }, + { + "appid": 773490, + "normalized_name": "谜桥 / riddlebridge" + }, + { + "appid": 773510, + "normalized_name": "the hardest thing" + }, + { + "appid": 773520, + "normalized_name": "refight burning engine" + }, + { + "appid": 773530, + "normalized_name": "magic nations" + }, + { + "appid": 773540, + "normalized_name": "boss crushers" + }, + { + "appid": 773570, + "normalized_name": "log challenge" + }, + { + "appid": 773580, + "normalized_name": "game dev studio" + }, + { + "appid": 773590, + "normalized_name": "azusa rp online" + }, + { + "appid": 773610, + "normalized_name": "hill quest" + }, + { + "appid": 773630, + "normalized_name": "quanero 2 system release" + }, + { + "appid": 773640, + "normalized_name": "colony on mars" + }, + { + "appid": 773650, + "normalized_name": "the first thrust of god" + }, + { + "appid": 773660, + "normalized_name": "cannon fire" + }, + { + "appid": 773670, + "normalized_name": "delete" + }, + { + "appid": 773710, + "normalized_name": "drifting cloud" + }, + { + "appid": 773740, + "normalized_name": "overpass" + }, + { + "appid": 773790, + "normalized_name": "ostriv" + }, + { + "appid": 773810, + "normalized_name": "nostoi" + }, + { + "appid": 773830, + "normalized_name": "dr. trolley's problem" + }, + { + "appid": 773840, + "normalized_name": "exocross" + }, + { + "appid": 773850, + "normalized_name": "wt2" + }, + { + "appid": 773870, + "normalized_name": "vector's adventures" + }, + { + "appid": 773910, + "normalized_name": "the short story of a drifting labyrinth" + }, + { + "appid": 773930, + "normalized_name": "coaster" + }, + { + "appid": 773951, + "normalized_name": "freeman guerrilla warfare" + }, + { + "appid": 774051, + "normalized_name": "dream on the moon" + }, + { + "appid": 774091, + "normalized_name": "ostalgie the berlin wall" + }, + { + "appid": 774121, + "normalized_name": "super jet juck" + }, + { + "appid": 774131, + "normalized_name": "nostradamus the four horsemen of the apocalypse" + }, + { + "appid": 774141, + "normalized_name": "miazma or the devil's stone" + }, + { + "appid": 774151, + "normalized_name": "yoomurjak's ring" + }, + { + "appid": 774161, + "normalized_name": "steampunker" + }, + { + "appid": 774171, + "normalized_name": "muse dash" + }, + { + "appid": 774181, + "normalized_name": "rhythm doctor" + }, + { + "appid": 774191, + "normalized_name": "car puzzler" + }, + { + "appid": 774201, + "normalized_name": "heaven's vault" + }, + { + "appid": 774221, + "normalized_name": "nekomew's potty trouble" + }, + { + "appid": 774241, + "normalized_name": "warhammer chaosbane" + }, + { + "appid": 774261, + "normalized_name": "my little bomb" + }, + { + "appid": 774281, + "normalized_name": "achievement lurker we give up!" + }, + { + "appid": 774291, + "normalized_name": "last man sitting" + }, + { + "appid": 774321, + "normalized_name": "starbo the story of leo cornell" + }, + { + "appid": 774331, + "normalized_name": "ash of war" + }, + { + "appid": 774351, + "normalized_name": "citystate" + }, + { + "appid": 774361, + "normalized_name": "blasphemous" + }, + { + "appid": 774401, + "normalized_name": "scrap attack vr" + }, + { + "appid": 774411, + "normalized_name": "temple of xiala" + }, + { + "appid": 774421, + "normalized_name": "shinrin yoku forest meditation and relaxation" + }, + { + "appid": 774441, + "normalized_name": "island time vr" + }, + { + "appid": 774451, + "normalized_name": "among the dead" + }, + { + "appid": 774461, + "normalized_name": "the jackbox party pack 5" + }, + { + "appid": 774471, + "normalized_name": "holofist" + }, + { + "appid": 774501, + "normalized_name": "vr soccer '96" + }, + { + "appid": 774511, + "normalized_name": "megadimension neptunia viir" + }, + { + "appid": 774531, + "normalized_name": "snail trek chapter 4 the final fondue" + }, + { + "appid": 774541, + "normalized_name": "species artificial life real evolution" + }, + { + "appid": 774551, + "normalized_name": "football heroes turbo" + }, + { + "appid": 774561, + "normalized_name": "rym 9000" + }, + { + "appid": 774651, + "normalized_name": "mighty gunvolt burst" + }, + { + "appid": 774661, + "normalized_name": "filthy frank kart" + }, + { + "appid": 774791, + "normalized_name": "surgeon simulator 2" + }, + { + "appid": 774801, + "normalized_name": "crab champions" + }, + { + "appid": 774811, + "normalized_name": "yumenikki dream diary" + }, + { + "appid": 774861, + "normalized_name": "project winter" + }, + { + "appid": 774891, + "normalized_name": "fenix box" + }, + { + "appid": 774901, + "normalized_name": "pure football 2018" + }, + { + "appid": 774911, + "normalized_name": "the master" + }, + { + "appid": 775200, + "normalized_name": "powerless" + }, + { + "appid": 775270, + "normalized_name": "they have horns" + }, + { + "appid": 775310, + "normalized_name": "blood of patriots" + }, + { + "appid": 775430, + "normalized_name": "discovery tour by assassin’s creed ancient egypt" + }, + { + "appid": 775460, + "normalized_name": "the cryptkeepers of hallowford" + }, + { + "appid": 775490, + "normalized_name": "super steampunk pinball 2d" + }, + { + "appid": 775500, + "normalized_name": "scarlet nexus" + }, + { + "appid": 775520, + "normalized_name": "animals memory dinosaurs" + }, + { + "appid": 775530, + "normalized_name": "puzzlement" + }, + { + "appid": 775570, + "normalized_name": "deadly blue" + }, + { + "appid": 775580, + "normalized_name": "itta" + }, + { + "appid": 775590, + "normalized_name": "spork the manic utensil storm" + }, + { + "appid": 775620, + "normalized_name": "fight or flight" + }, + { + "appid": 775690, + "normalized_name": "platform golf" + }, + { + "appid": 775720, + "normalized_name": "lozenge" + }, + { + "appid": 775730, + "normalized_name": "dialing" + }, + { + "appid": 775760, + "normalized_name": "蜜汁女孩 juice girl" + }, + { + "appid": 775790, + "normalized_name": "rampage ragdoll" + }, + { + "appid": 775830, + "normalized_name": "chess sudoku" + }, + { + "appid": 775850, + "normalized_name": "piwall" + }, + { + "appid": 775860, + "normalized_name": "midnightland" + }, + { + "appid": 775900, + "normalized_name": "motogp18" + }, + { + "appid": 775910, + "normalized_name": "animals memory birds" + }, + { + "appid": 775940, + "normalized_name": "rise of liberty" + }, + { + "appid": 775960, + "normalized_name": "the tower of beatrice" + }, + { + "appid": 775990, + "normalized_name": "overduty vr battle royale" + }, + { + "appid": 776000, + "normalized_name": "choice of the vampire" + }, + { + "appid": 776020, + "normalized_name": "choice of the vampire the fall of memphis" + }, + { + "appid": 776040, + "normalized_name": "john lazarus episode 1 dead man's origin" + }, + { + "appid": 776050, + "normalized_name": "f/a 18e super hornet" + }, + { + "appid": 776100, + "normalized_name": "one night on the road" + }, + { + "appid": 776140, + "normalized_name": "idol quest vr" + }, + { + "appid": 776150, + "normalized_name": "m1 tank platoon" + }, + { + "appid": 776160, + "normalized_name": "up and down" + }, + { + "appid": 776170, + "normalized_name": "serious office" + }, + { + "appid": 776190, + "normalized_name": "galactic battles" + }, + { + "appid": 776210, + "normalized_name": "afraid project" + }, + { + "appid": 776270, + "normalized_name": "earl's minecart adventures" + }, + { + "appid": 776280, + "normalized_name": "lux ex legacy" + }, + { + "appid": 776290, + "normalized_name": "kamikazo vr" + }, + { + "appid": 776320, + "normalized_name": "armada skies" + }, + { + "appid": 776340, + "normalized_name": "gay world" + }, + { + "appid": 776360, + "normalized_name": "a walk along the wall" + }, + { + "appid": 776380, + "normalized_name": "fsx spaceport" + }, + { + "appid": 776390, + "normalized_name": "outbreak in space vr free" + }, + { + "appid": 776410, + "normalized_name": "sorcerer's path" + }, + { + "appid": 776440, + "normalized_name": "project velocity" + }, + { + "appid": 776450, + "normalized_name": "hoshis elektronauts" + }, + { + "appid": 776490, + "normalized_name": "永远消失的幻想乡 ~ the disappearing of gensokyo" + }, + { + "appid": 776510, + "normalized_name": "richcode富豪密码" + }, + { + "appid": 776540, + "normalized_name": "amaze untouchable" + }, + { + "appid": 776550, + "normalized_name": "yuzi lims anime runner" + }, + { + "appid": 776580, + "normalized_name": "abasralsa" + }, + { + "appid": 776590, + "normalized_name": "乱战机动队 past due" + }, + { + "appid": 776600, + "normalized_name": "witch sword" + }, + { + "appid": 776660, + "normalized_name": "smooth operators 2" + }, + { + "appid": 776670, + "normalized_name": "flying bacon ukrainian air force" + }, + { + "appid": 776720, + "normalized_name": "dungeon gambit boy" + }, + { + "appid": 776740, + "normalized_name": "unveloped" + }, + { + "appid": 776780, + "normalized_name": "copierre" + }, + { + "appid": 776790, + "normalized_name": "squirrel sphere" + }, + { + "appid": 776820, + "normalized_name": "sit on bottle" + }, + { + "appid": 776830, + "normalized_name": "tears 9 10" + }, + { + "appid": 776880, + "normalized_name": "extremeretroarena" + }, + { + "appid": 776890, + "normalized_name": "clicker mining simulator" + }, + { + "appid": 776930, + "normalized_name": "omnibion war" + }, + { + "appid": 776960, + "normalized_name": "mouse (sneaking)" + }, + { + "appid": 776970, + "normalized_name": "scary new year" + }, + { + "appid": 777000, + "normalized_name": "freeflight" + }, + { + "appid": 777020, + "normalized_name": "mumps" + }, + { + "appid": 777040, + "normalized_name": "criminal bundle" + }, + { + "appid": 777050, + "normalized_name": "toxic plumbing" + }, + { + "appid": 777130, + "normalized_name": "blush blush" + }, + { + "appid": 777140, + "normalized_name": "megamix" + }, + { + "appid": 777150, + "normalized_name": "adventure land the code mmorpg" + }, + { + "appid": 777160, + "normalized_name": "forgotten places regained castle" + }, + { + "appid": 777170, + "normalized_name": "bomber league" + }, + { + "appid": 777200, + "normalized_name": "koewotayorini sp / 声之寄托sp" + }, + { + "appid": 777210, + "normalized_name": "vulpine" + }, + { + "appid": 777220, + "normalized_name": "审判者 the inquisitor" + }, + { + "appid": 777240, + "normalized_name": "tren0" + }, + { + "appid": 777250, + "normalized_name": "the tavern of magic" + }, + { + "appid": 777270, + "normalized_name": "thirsty bubble" + }, + { + "appid": 777300, + "normalized_name": "the placebos" + }, + { + "appid": 777310, + "normalized_name": "battle of keys" + }, + { + "appid": 777340, + "normalized_name": "animals memory underwater kingdom" + }, + { + "appid": 777350, + "normalized_name": "maze walker" + }, + { + "appid": 777360, + "normalized_name": "hord high or die" + }, + { + "appid": 777380, + "normalized_name": "fleets of ascendancy" + }, + { + "appid": 777390, + "normalized_name": "flyout" + }, + { + "appid": 777410, + "normalized_name": "earthnight" + }, + { + "appid": 777420, + "normalized_name": "quests unlimited" + }, + { + "appid": 777430, + "normalized_name": "virtual boxing league" + }, + { + "appid": 777460, + "normalized_name": "motor strike racing rampage" + }, + { + "appid": 777470, + "normalized_name": "the infinite black 2" + }, + { + "appid": 777530, + "normalized_name": "salsa virtual" + }, + { + "appid": 777540, + "normalized_name": "the windzen hero" + }, + { + "appid": 777550, + "normalized_name": "king battle" + }, + { + "appid": 777560, + "normalized_name": "invisible" + }, + { + "appid": 777580, + "normalized_name": "champ against chumps upgrade" + }, + { + "appid": 777590, + "normalized_name": "众生" + }, + { + "appid": 777610, + "normalized_name": "drumming" + }, + { + "appid": 777620, + "normalized_name": "little fight" + }, + { + "appid": 777650, + "normalized_name": "yet another research dog" + }, + { + "appid": 777670, + "normalized_name": "okinawa rush" + }, + { + "appid": 777730, + "normalized_name": "entropy 2120" + }, + { + "appid": 777760, + "normalized_name": "charlie ii" + }, + { + "appid": 777770, + "normalized_name": "war party" + }, + { + "appid": 777790, + "normalized_name": "final directive" + }, + { + "appid": 777820, + "normalized_name": "the quest for the big key" + }, + { + "appid": 777850, + "normalized_name": "cannon crew" + }, + { + "appid": 777860, + "normalized_name": "jambo" + }, + { + "appid": 777880, + "normalized_name": "fluffy horde" + }, + { + "appid": 778000, + "normalized_name": "the sol device" + }, + { + "appid": 778010, + "normalized_name": "filmmaker tycoon" + }, + { + "appid": 778030, + "normalized_name": "block heads instakill" + }, + { + "appid": 778050, + "normalized_name": "revenge of the headless" + }, + { + "appid": 778070, + "normalized_name": "mini wheels" + }, + { + "appid": 778080, + "normalized_name": "40 winks" + }, + { + "appid": 778110, + "normalized_name": "bladeline vr" + }, + { + "appid": 778120, + "normalized_name": "hyperbolic ignition" + }, + { + "appid": 778140, + "normalized_name": "briks 2" + }, + { + "appid": 778150, + "normalized_name": "crossroad" + }, + { + "appid": 778230, + "normalized_name": "mighty gemstones" + }, + { + "appid": 778240, + "normalized_name": "star sod" + }, + { + "appid": 778250, + "normalized_name": "battle of kings vr" + }, + { + "appid": 778260, + "normalized_name": "the scent of summer" + }, + { + "appid": 778270, + "normalized_name": "tombo breaker vr" + }, + { + "appid": 778330, + "normalized_name": "squirm" + }, + { + "appid": 778340, + "normalized_name": "animals memory dogs" + }, + { + "appid": 778360, + "normalized_name": "love or loved a bullet for my valentine" + }, + { + "appid": 778370, + "normalized_name": "born to die" + }, + { + "appid": 778390, + "normalized_name": "corpse party book of shadows" + }, + { + "appid": 778400, + "normalized_name": "corpse party sweet sachiko's hysteric birthday bash" + }, + { + "appid": 778410, + "normalized_name": "dead ground" + }, + { + "appid": 778440, + "normalized_name": "ruzar the dark stones" + }, + { + "appid": 778460, + "normalized_name": "the communist dogifesto" + }, + { + "appid": 778470, + "normalized_name": "crystals and curses" + }, + { + "appid": 778500, + "normalized_name": "amelia's curse" + }, + { + "appid": 778540, + "normalized_name": "big blue memory" + }, + { + "appid": 778550, + "normalized_name": "nazi elimination" + }, + { + "appid": 778570, + "normalized_name": "bustories" + }, + { + "appid": 778580, + "normalized_name": "trinity" + }, + { + "appid": 778590, + "normalized_name": "mountain troll" + }, + { + "appid": 778600, + "normalized_name": "zero gravity pool" + }, + { + "appid": 778610, + "normalized_name": "foto flash" + }, + { + "appid": 778620, + "normalized_name": "strange house" + }, + { + "appid": 778630, + "normalized_name": "snoobli" + }, + { + "appid": 778640, + "normalized_name": "super bit adventure paragons of life" + }, + { + "appid": 778650, + "normalized_name": "volcano tower" + }, + { + "appid": 778700, + "normalized_name": "amorous" + }, + { + "appid": 778760, + "normalized_name": "the agency chapter 2" + }, + { + "appid": 778770, + "normalized_name": "ladybird reflect" + }, + { + "appid": 778780, + "normalized_name": "desktop agents cov1d 999" + }, + { + "appid": 778800, + "normalized_name": "hybris pulse of ruin" + }, + { + "appid": 778810, + "normalized_name": "soul for two" + }, + { + "appid": 778840, + "normalized_name": "armored evolution" + }, + { + "appid": 778850, + "normalized_name": "please close the doors" + }, + { + "appid": 778860, + "normalized_name": "animals memory insect" + }, + { + "appid": 778870, + "normalized_name": "kommersant" + }, + { + "appid": 778930, + "normalized_name": "property" + }, + { + "appid": 778960, + "normalized_name": "wartime prologue" + }, + { + "appid": 778980, + "normalized_name": "the drain collector" + }, + { + "appid": 779000, + "normalized_name": "murica" + }, + { + "appid": 779050, + "normalized_name": "a tractor" + }, + { + "appid": 779060, + "normalized_name": "cyborg invasion shooter 2 battle of earth" + }, + { + "appid": 779070, + "normalized_name": "steel knight 1513" + }, + { + "appid": 779090, + "normalized_name": "umfend" + }, + { + "appid": 779100, + "normalized_name": "daemonical" + }, + { + "appid": 779110, + "normalized_name": "harsh" + }, + { + "appid": 779130, + "normalized_name": "virtual fighting championship (vfc)" + }, + { + "appid": 779140, + "normalized_name": "outrealm" + }, + { + "appid": 779150, + "normalized_name": "shadow of something" + }, + { + "appid": 779160, + "normalized_name": "realshot" + }, + { + "appid": 779170, + "normalized_name": "heart pounding dating prep" + }, + { + "appid": 779220, + "normalized_name": "loa me and angel" + }, + { + "appid": 779240, + "normalized_name": "conquer" + }, + { + "appid": 779250, + "normalized_name": "paradox wrench" + }, + { + "appid": 779290, + "normalized_name": "stygian reign of the old ones" + }, + { + "appid": 779300, + "normalized_name": "battle of kings" + }, + { + "appid": 779320, + "normalized_name": "asura valley" + }, + { + "appid": 779330, + "normalized_name": "ninja tycoon" + }, + { + "appid": 779340, + "normalized_name": "total war three kingdoms" + }, + { + "appid": 779360, + "normalized_name": "instant death" + }, + { + "appid": 779380, + "normalized_name": "atmocity" + }, + { + "appid": 779390, + "normalized_name": "run dorothy run" + }, + { + "appid": 779430, + "normalized_name": "full ace tennis simulator" + }, + { + "appid": 779450, + "normalized_name": "overlanders" + }, + { + "appid": 779500, + "normalized_name": "burrow" + }, + { + "appid": 779550, + "normalized_name": "the rising of the rose ocelot" + }, + { + "appid": 779560, + "normalized_name": "公主的逃脱日常" + }, + { + "appid": 779570, + "normalized_name": "roulette simulator" + }, + { + "appid": 779580, + "normalized_name": "fat foods" + }, + { + "appid": 779590, + "normalized_name": "scavenger sv 4" + }, + { + "appid": 779620, + "normalized_name": "empty town" + }, + { + "appid": 779640, + "normalized_name": "妄想症:deliver me" + }, + { + "appid": 779650, + "normalized_name": "ready player one oasis beta" + }, + { + "appid": 779700, + "normalized_name": "in between games" + }, + { + "appid": 779730, + "normalized_name": "foosball vr" + }, + { + "appid": 779780, + "normalized_name": "r academy" + }, + { + "appid": 779790, + "normalized_name": "cell" + }, + { + "appid": 779800, + "normalized_name": "dangerous level" + }, + { + "appid": 779840, + "normalized_name": "forgotten sound 1 revelation" + }, + { + "appid": 779870, + "normalized_name": "flatwaters the curse of echita" + }, + { + "appid": 779920, + "normalized_name": "hexxon" + }, + { + "appid": 779950, + "normalized_name": "spirit roots" + }, + { + "appid": 779990, + "normalized_name": "space between worlds" + }, + { + "appid": 780000, + "normalized_name": "critical mess" + }, + { + "appid": 780020, + "normalized_name": "true puzzle" + }, + { + "appid": 780030, + "normalized_name": "kids of karendow" + }, + { + "appid": 780080, + "normalized_name": "bikour!" + }, + { + "appid": 780120, + "normalized_name": "car crash couch party" + }, + { + "appid": 780130, + "normalized_name": "simulation" + }, + { + "appid": 780150, + "normalized_name": "the studio" + }, + { + "appid": 780160, + "normalized_name": "all stars racing cup" + }, + { + "appid": 780190, + "normalized_name": "we might die" + }, + { + "appid": 780210, + "normalized_name": "freeways" + }, + { + "appid": 780230, + "normalized_name": "missing road" + }, + { + "appid": 780260, + "normalized_name": "stranded alone" + }, + { + "appid": 780270, + "normalized_name": "brimstone brawlers early access" + }, + { + "appid": 780280, + "normalized_name": "summer funland" + }, + { + "appid": 780290, + "normalized_name": "gloomhaven" + }, + { + "appid": 780310, + "normalized_name": "the riftbreaker" + }, + { + "appid": 780320, + "normalized_name": "snow white solitaire. legacy of dwarves" + }, + { + "appid": 780350, + "normalized_name": "unruly heroes" + }, + { + "appid": 780370, + "normalized_name": "bubble blast rescue vr" + }, + { + "appid": 780390, + "normalized_name": "space bob vs. the replicons" + }, + { + "appid": 780400, + "normalized_name": "hyper arena vr" + }, + { + "appid": 780430, + "normalized_name": "hiro's forest rumble" + }, + { + "appid": 780500, + "normalized_name": "suzy cube" + }, + { + "appid": 780520, + "normalized_name": "technolites episode 1" + }, + { + "appid": 780570, + "normalized_name": "ai anomaly" + }, + { + "appid": 780580, + "normalized_name": "lost in the dungeon" + }, + { + "appid": 780630, + "normalized_name": "the painter's apprentice" + }, + { + "appid": 780670, + "normalized_name": "fantasy of expedition" + }, + { + "appid": 780700, + "normalized_name": "ninja bricks" + }, + { + "appid": 780710, + "normalized_name": "turret syndrome vr" + }, + { + "appid": 780720, + "normalized_name": "undarkened revival" + }, + { + "appid": 780740, + "normalized_name": "silent footsteps" + }, + { + "appid": 780750, + "normalized_name": "snake classic" + }, + { + "appid": 780760, + "normalized_name": "lots of balls" + }, + { + "appid": 780800, + "normalized_name": "ball lab" + }, + { + "appid": 780820, + "normalized_name": "xoxo blood droplets" + }, + { + "appid": 780840, + "normalized_name": "kuchisake onna 口裂け女" + }, + { + "appid": 780850, + "normalized_name": "recreational dreaming" + }, + { + "appid": 780930, + "normalized_name": "cute war:zero 萌系战争:零" + }, + { + "appid": 780970, + "normalized_name": "food dream factory 梦想的美食世界:研发美食开心制作糖果模拟经营养成" + }, + { + "appid": 781000, + "normalized_name": "mystic space" + }, + { + "appid": 781030, + "normalized_name": "dk online" + }, + { + "appid": 781040, + "normalized_name": "missionx beta" + }, + { + "appid": 781050, + "normalized_name": "evie" + }, + { + "appid": 781100, + "normalized_name": "winner winner chicken dinner!" + }, + { + "appid": 781110, + "normalized_name": "later on" + }, + { + "appid": 781130, + "normalized_name": "creatura" + }, + { + "appid": 781180, + "normalized_name": "technicity" + }, + { + "appid": 781200, + "normalized_name": "beat the rhythm vr" + }, + { + "appid": 781220, + "normalized_name": "drakkhen" + }, + { + "appid": 781240, + "normalized_name": "mystical" + }, + { + "appid": 781250, + "normalized_name": "eternam" + }, + { + "appid": 781260, + "normalized_name": "marco polo" + }, + { + "appid": 781270, + "normalized_name": "chaos control" + }, + { + "appid": 781280, + "normalized_name": "time gate knight's chase" + }, + { + "appid": 781290, + "normalized_name": "hostage rescue mission" + }, + { + "appid": 781320, + "normalized_name": "guns & notes" + }, + { + "appid": 781440, + "normalized_name": "oh my god look at this knight" + }, + { + "appid": 781450, + "normalized_name": "primordial soup" + }, + { + "appid": 781480, + "normalized_name": "tech support error unknown" + }, + { + "appid": 781490, + "normalized_name": "lonely trip" + }, + { + "appid": 781500, + "normalized_name": "candy snake master" + }, + { + "appid": 781520, + "normalized_name": "liminal spaces polyventure" + }, + { + "appid": 781590, + "normalized_name": "三国游侠志" + }, + { + "appid": 781610, + "normalized_name": "night fly" + }, + { + "appid": 781630, + "normalized_name": "iffy institute" + }, + { + "appid": 781640, + "normalized_name": "run jump fail" + }, + { + "appid": 781650, + "normalized_name": "endlessness" + }, + { + "appid": 781660, + "normalized_name": "space rocket" + }, + { + "appid": 781670, + "normalized_name": "the directed" + }, + { + "appid": 781680, + "normalized_name": "in darkness" + }, + { + "appid": 781720, + "normalized_name": "apocz" + }, + { + "appid": 781760, + "normalized_name": "trivia vault health trivia deluxe" + }, + { + "appid": 781780, + "normalized_name": "behind walls" + }, + { + "appid": 781790, + "normalized_name": "wanted in hell" + }, + { + "appid": 781800, + "normalized_name": "walhall" + }, + { + "appid": 781810, + "normalized_name": "oik 4" + }, + { + "appid": 781820, + "normalized_name": "oik memory 2" + }, + { + "appid": 781830, + "normalized_name": "survival space unlimited shooting" + }, + { + "appid": 781840, + "normalized_name": "sub terra draconis" + }, + { + "appid": 781860, + "normalized_name": "stick adventures wizard madness chapter 1" + }, + { + "appid": 781880, + "normalized_name": "object \"cleaning\"" + }, + { + "appid": 781890, + "normalized_name": "darkness restricted" + }, + { + "appid": 781920, + "normalized_name": "the haunted house of doom" + }, + { + "appid": 781930, + "normalized_name": "count dookie fart" + }, + { + "appid": 781950, + "normalized_name": "galactic delivery" + }, + { + "appid": 781960, + "normalized_name": "world war forex" + }, + { + "appid": 781990, + "normalized_name": "wequer" + }, + { + "appid": 782020, + "normalized_name": "endless crusade" + }, + { + "appid": 782060, + "normalized_name": "creatio ex nihilo iii amor dei" + }, + { + "appid": 782070, + "normalized_name": "late night 1320" + }, + { + "appid": 782100, + "normalized_name": "#cutesnake" + }, + { + "appid": 782120, + "normalized_name": "super gravity ball" + }, + { + "appid": 782130, + "normalized_name": "wer weiß denn sowas? das spiel" + }, + { + "appid": 782140, + "normalized_name": "re legion" + }, + { + "appid": 782160, + "normalized_name": "raptainment" + }, + { + "appid": 782180, + "normalized_name": "the way to defeat the archfiend / 打倒魔王的方法" + }, + { + "appid": 782190, + "normalized_name": "the seven districts of sin the tail makes the fox episode 1" + }, + { + "appid": 782250, + "normalized_name": "hush hush only your love can save them" + }, + { + "appid": 782260, + "normalized_name": "rogue eclipse" + }, + { + "appid": 782280, + "normalized_name": "beer!" + }, + { + "appid": 782290, + "normalized_name": "tavern table tactics" + }, + { + "appid": 782300, + "normalized_name": "unstoppable hamster" + }, + { + "appid": 782330, + "normalized_name": "doom eternal" + }, + { + "appid": 782340, + "normalized_name": "lake of voices" + }, + { + "appid": 782380, + "normalized_name": "mirage of dragon" + }, + { + "appid": 782410, + "normalized_name": "metropolis" + }, + { + "appid": 782420, + "normalized_name": "rhcs stretchingvr" + }, + { + "appid": 782430, + "normalized_name": "matchy star" + }, + { + "appid": 782450, + "normalized_name": "fleazer" + }, + { + "appid": 782490, + "normalized_name": "people versus everything" + }, + { + "appid": 782510, + "normalized_name": "draft day sports pro football 2018" + }, + { + "appid": 782570, + "normalized_name": "endless road reborn" + }, + { + "appid": 782610, + "normalized_name": "tank 51" + }, + { + "appid": 782630, + "normalized_name": "twisted sails" + }, + { + "appid": 782640, + "normalized_name": "neptunegl" + }, + { + "appid": 782650, + "normalized_name": "drones and ruins" + }, + { + "appid": 782660, + "normalized_name": "modern tanks" + }, + { + "appid": 782670, + "normalized_name": "battle tanks world war ii" + }, + { + "appid": 782690, + "normalized_name": "gazing from beyond" + }, + { + "appid": 782700, + "normalized_name": "jerry and the mystery loot box" + }, + { + "appid": 782940, + "normalized_name": "rawmen food fighter arena 🍜" + }, + { + "appid": 783060, + "normalized_name": "aiden" + }, + { + "appid": 783090, + "normalized_name": "neon" + }, + { + "appid": 783120, + "normalized_name": "淑女同萌!" + }, + { + "appid": 783170, + "normalized_name": "insomnia the ark" + }, + { + "appid": 783180, + "normalized_name": "fairune collection" + }, + { + "appid": 783200, + "normalized_name": "forbidden clicker party" + }, + { + "appid": 783210, + "normalized_name": "aggressors ancient rome" + }, + { + "appid": 783220, + "normalized_name": "block shock" + }, + { + "appid": 783230, + "normalized_name": "way of the orb" + }, + { + "appid": 783240, + "normalized_name": "die pig die" + }, + { + "appid": 783250, + "normalized_name": "containment" + }, + { + "appid": 783260, + "normalized_name": "crush" + }, + { + "appid": 783270, + "normalized_name": "seek & destroy steampunk arcade" + }, + { + "appid": 783310, + "normalized_name": "burden" + }, + { + "appid": 783320, + "normalized_name": "gotta get going steam smugglers vr" + }, + { + "appid": 783330, + "normalized_name": "super robolom" + }, + { + "appid": 783340, + "normalized_name": "fracter" + }, + { + "appid": 783400, + "normalized_name": "lexie the takeover" + }, + { + "appid": 783410, + "normalized_name": "dustwun" + }, + { + "appid": 783420, + "normalized_name": "elementium" + }, + { + "appid": 783430, + "normalized_name": "gatlin'" + }, + { + "appid": 783440, + "normalized_name": "seven mysteries the last page" + }, + { + "appid": 783450, + "normalized_name": "hypergun" + }, + { + "appid": 783550, + "normalized_name": "obscurity unknown threat" + }, + { + "appid": 783560, + "normalized_name": "math tile" + }, + { + "appid": 783590, + "normalized_name": "age of gladiators ii rome" + }, + { + "appid": 783650, + "normalized_name": "keys" + }, + { + "appid": 783720, + "normalized_name": "ninja striker!" + }, + { + "appid": 783770, + "normalized_name": "ironsight" + }, + { + "appid": 783790, + "normalized_name": "survivors of borridor" + }, + { + "appid": 783840, + "normalized_name": "lakeview valley" + }, + { + "appid": 783850, + "normalized_name": "derpy pirates!" + }, + { + "appid": 783860, + "normalized_name": "horse riding deluxe" + }, + { + "appid": 783890, + "normalized_name": "brightest" + }, + { + "appid": 783940, + "normalized_name": "forgotten hill mementoes" + }, + { + "appid": 783960, + "normalized_name": "forgotten sound 2 destiny" + }, + { + "appid": 784010, + "normalized_name": "dragonview" + }, + { + "appid": 784040, + "normalized_name": "food monster and animals memory match" + }, + { + "appid": 784050, + "normalized_name": "filthy hands" + }, + { + "appid": 784060, + "normalized_name": "bitcoin mining empire tycoon" + }, + { + "appid": 784080, + "normalized_name": "mechwarrior 5 mercenaries" + }, + { + "appid": 784100, + "normalized_name": "gone fireflies" + }, + { + "appid": 784110, + "normalized_name": "blogic blox" + }, + { + "appid": 784130, + "normalized_name": "treasure stack" + }, + { + "appid": 784150, + "normalized_name": "workers & resources soviet republic" + }, + { + "appid": 784180, + "normalized_name": "american farmer" + }, + { + "appid": 784890, + "normalized_name": "bashville" + }, + { + "appid": 784950, + "normalized_name": "supremacy world war 3" + }, + { + "appid": 785030, + "normalized_name": "little adventurer iii" + }, + { + "appid": 785050, + "normalized_name": "massive galaxy" + }, + { + "appid": 785070, + "normalized_name": "dig and shoot" + }, + { + "appid": 785090, + "normalized_name": "dark flow" + }, + { + "appid": 785100, + "normalized_name": "cosmic top secret" + }, + { + "appid": 785110, + "normalized_name": "anime girl or bottle?" + }, + { + "appid": 785130, + "normalized_name": "clawface" + }, + { + "appid": 785150, + "normalized_name": "virus rush" + }, + { + "appid": 785260, + "normalized_name": "team sonic racing" + }, + { + "appid": 785430, + "normalized_name": "space farm" + }, + { + "appid": 785460, + "normalized_name": "neon krieger yamato" + }, + { + "appid": 785480, + "normalized_name": "titanic adventure out of time" + }, + { + "appid": 785560, + "normalized_name": "scutter" + }, + { + "appid": 785590, + "normalized_name": "the real laser ball" + }, + { + "appid": 785620, + "normalized_name": "spring it!" + }, + { + "appid": 785640, + "normalized_name": "luminescence" + }, + { + "appid": 785740, + "normalized_name": "this is the police 2" + }, + { + "appid": 785750, + "normalized_name": "[東方二次] senran meisuishu tactics / 戦乱命萃酒タクティクス" + }, + { + "appid": 785760, + "normalized_name": "crumple zone" + }, + { + "appid": 785770, + "normalized_name": "emergency call 112 – the fire fighting simulation 2" + }, + { + "appid": 785780, + "normalized_name": "of mice and sand revised" + }, + { + "appid": 785790, + "normalized_name": "what the golf?" + }, + { + "appid": 785830, + "normalized_name": "adonis" + }, + { + "appid": 785840, + "normalized_name": "moe jigsaw" + }, + { + "appid": 785850, + "normalized_name": "valthirian arc hero school story" + }, + { + "appid": 785860, + "normalized_name": "zombie watch" + }, + { + "appid": 785870, + "normalized_name": "admine" + }, + { + "appid": 785880, + "normalized_name": "overwhelm" + }, + { + "appid": 785890, + "normalized_name": "hexologic" + }, + { + "appid": 785920, + "normalized_name": "madness of the architect" + }, + { + "appid": 785940, + "normalized_name": "strategic command classic global conflict" + }, + { + "appid": 785950, + "normalized_name": "sacrifice dungeon" + }, + { + "appid": 786040, + "normalized_name": "haunted hotel lonely dream" + }, + { + "appid": 786060, + "normalized_name": "sea of lies burning coast collector's" + }, + { + "appid": 786070, + "normalized_name": "myths of the world spirit wolf collector's" + }, + { + "appid": 786080, + "normalized_name": "grim facade a wealth of betrayal collector's" + }, + { + "appid": 786090, + "normalized_name": "rite of passage hide and seek collector's" + }, + { + "appid": 786100, + "normalized_name": "maestro notes of life collector's" + }, + { + "appid": 786110, + "normalized_name": "cubes" + }, + { + "appid": 786120, + "normalized_name": "galaxy wide domination" + }, + { + "appid": 786130, + "normalized_name": "teeny heist" + }, + { + "appid": 786140, + "normalized_name": "plat4mer" + }, + { + "appid": 786150, + "normalized_name": "pad of time" + }, + { + "appid": 786170, + "normalized_name": "bomb bay" + }, + { + "appid": 786180, + "normalized_name": "rehack" + }, + { + "appid": 786280, + "normalized_name": "armored squad" + }, + { + "appid": 786290, + "normalized_name": "undercover agent" + }, + { + "appid": 786330, + "normalized_name": "internal storm" + }, + { + "appid": 786340, + "normalized_name": "ativeil" + }, + { + "appid": 786350, + "normalized_name": "shinobi bad buddies" + }, + { + "appid": 786370, + "normalized_name": "alien crusader" + }, + { + "appid": 786380, + "normalized_name": "bleak" + }, + { + "appid": 786390, + "normalized_name": "purgatory fell" + }, + { + "appid": 786410, + "normalized_name": "an aspie life" + }, + { + "appid": 786420, + "normalized_name": "fantastic sea" + }, + { + "appid": 786450, + "normalized_name": "don't bite me bro! +" + }, + { + "appid": 786470, + "normalized_name": "border closure 边境封闭" + }, + { + "appid": 786490, + "normalized_name": "brew ha" + }, + { + "appid": 786510, + "normalized_name": "oracle of forgotten testament" + }, + { + "appid": 786540, + "normalized_name": "brick vs. paddle" + }, + { + "appid": 786570, + "normalized_name": "the alpha device" + }, + { + "appid": 786580, + "normalized_name": "gleaner heights" + }, + { + "appid": 786590, + "normalized_name": "karloman and his iced muffins" + }, + { + "appid": 786640, + "normalized_name": "back to the 80's" + }, + { + "appid": 786670, + "normalized_name": "loot box simulator 20!8" + }, + { + "appid": 786680, + "normalized_name": "dungeons forever" + }, + { + "appid": 786710, + "normalized_name": "echoes of war the last heartbeat" + }, + { + "appid": 786720, + "normalized_name": "eternal man forest" + }, + { + "appid": 786740, + "normalized_name": "proletarian budget survival" + }, + { + "appid": 786770, + "normalized_name": "z the end" + }, + { + "appid": 786800, + "normalized_name": "puzzles by axis" + }, + { + "appid": 786820, + "normalized_name": "sok max" + }, + { + "appid": 786840, + "normalized_name": "outofcolors" + }, + { + "appid": 786910, + "normalized_name": "deluded mind" + }, + { + "appid": 786940, + "normalized_name": "afternoon empire" + }, + { + "appid": 786950, + "normalized_name": "baptize billy" + }, + { + "appid": 786960, + "normalized_name": "star epica 3720" + }, + { + "appid": 786980, + "normalized_name": "behind the beyond" + }, + { + "appid": 786990, + "normalized_name": "spellkeeper" + }, + { + "appid": 787040, + "normalized_name": "perfect heist" + }, + { + "appid": 787050, + "normalized_name": "impossible jumpy quest" + }, + { + "appid": 787070, + "normalized_name": "super ledgehop double laser" + }, + { + "appid": 787100, + "normalized_name": "homeworld defense" + }, + { + "appid": 787110, + "normalized_name": "usotsuki game / 谎言游戏" + }, + { + "appid": 787120, + "normalized_name": "there is no tomorrow revived" + }, + { + "appid": 787140, + "normalized_name": "the adventures of kusoge" + }, + { + "appid": 787150, + "normalized_name": "necro wars" + }, + { + "appid": 787160, + "normalized_name": "frol blok" + }, + { + "appid": 787200, + "normalized_name": "nova wing" + }, + { + "appid": 787220, + "normalized_name": "annotation of love" + }, + { + "appid": 787250, + "normalized_name": "clash of castle" + }, + { + "appid": 787260, + "normalized_name": "universe balancing bureau" + }, + { + "appid": 787350, + "normalized_name": "masked" + }, + { + "appid": 787370, + "normalized_name": "fable of the sword" + }, + { + "appid": 787400, + "normalized_name": "fantasy versus" + }, + { + "appid": 787450, + "normalized_name": "koewotayorini / 声之寄托" + }, + { + "appid": 787460, + "normalized_name": "squash kings vr" + }, + { + "appid": 787480, + "normalized_name": "phoenix wright ace attorney trilogy" + }, + { + "appid": 787510, + "normalized_name": "muv luv alternative total eclipse" + }, + { + "appid": 787530, + "normalized_name": "pale lands vr" + }, + { + "appid": 787550, + "normalized_name": "farhome" + }, + { + "appid": 787580, + "normalized_name": "10 pin bowling (vr support)" + }, + { + "appid": 787620, + "normalized_name": "dinoku" + }, + { + "appid": 787640, + "normalized_name": "shoppe keep 2 character creator preview" + }, + { + "appid": 787650, + "normalized_name": "neonwall" + }, + { + "appid": 787690, + "normalized_name": "math hero" + }, + { + "appid": 787710, + "normalized_name": "comrades and barons solitaire of bloody 1919" + }, + { + "appid": 787720, + "normalized_name": "block'hood vr" + }, + { + "appid": 787730, + "normalized_name": "adventure game" + }, + { + "appid": 787740, + "normalized_name": "construction simulator 2 us pocket" + }, + { + "appid": 787760, + "normalized_name": "toribash next" + }, + { + "appid": 787780, + "normalized_name": "in memory of titan" + }, + { + "appid": 787790, + "normalized_name": "epic roller coasters" + }, + { + "appid": 787810, + "normalized_name": "rogue heroes ruins of tasos" + }, + { + "appid": 787840, + "normalized_name": "blacksmith" + }, + { + "appid": 787850, + "normalized_name": "heroine anthem zero 2 scalescars oath" + }, + { + "appid": 787860, + "normalized_name": "farming simulator 19" + }, + { + "appid": 787920, + "normalized_name": "running fable" + }, + { + "appid": 787930, + "normalized_name": "american railroads summit river & pine valley" + }, + { + "appid": 787940, + "normalized_name": "glista" + }, + { + "appid": 787950, + "normalized_name": "pixelcraft vr" + }, + { + "appid": 787960, + "normalized_name": "prism" + }, + { + "appid": 787970, + "normalized_name": "miraclr divine dating sim" + }, + { + "appid": 787980, + "normalized_name": "4d minesweeper" + }, + { + "appid": 787990, + "normalized_name": "resume the video game" + }, + { + "appid": 788000, + "normalized_name": "rogueverse" + }, + { + "appid": 788020, + "normalized_name": "critical gravity" + }, + { + "appid": 788050, + "normalized_name": "re;lord 1 ~the witch of herfort and stuffed animals~" + }, + { + "appid": 788100, + "normalized_name": "neon abyss" + }, + { + "appid": 788120, + "normalized_name": "disjoint" + }, + { + "appid": 788150, + "normalized_name": "go away my fat" + }, + { + "appid": 788180, + "normalized_name": "city of sky" + }, + { + "appid": 788190, + "normalized_name": "super asteroids" + }, + { + "appid": 788200, + "normalized_name": "the little slime" + }, + { + "appid": 788210, + "normalized_name": "the bonfire forsaken lands" + }, + { + "appid": 788240, + "normalized_name": "gentracing" + }, + { + "appid": 788250, + "normalized_name": "soul grabber" + }, + { + "appid": 788270, + "normalized_name": "exiled kingdoms" + }, + { + "appid": 788310, + "normalized_name": "shallow swing" + }, + { + "appid": 788320, + "normalized_name": "balls and magnets" + }, + { + "appid": 788330, + "normalized_name": "varion" + }, + { + "appid": 788350, + "normalized_name": "funny wings vr" + }, + { + "appid": 788390, + "normalized_name": "uagi saba" + }, + { + "appid": 788410, + "normalized_name": "tales of nebezem elemental link" + }, + { + "appid": 788420, + "normalized_name": "potion explosion" + }, + { + "appid": 788470, + "normalized_name": "stonies" + }, + { + "appid": 788480, + "normalized_name": "changeover decisions" + }, + { + "appid": 788490, + "normalized_name": "stackfortress" + }, + { + "appid": 788500, + "normalized_name": "7 soccer a sci fi soccer tale" + }, + { + "appid": 788510, + "normalized_name": "aeve zero gravity" + }, + { + "appid": 788520, + "normalized_name": "bleeding knife" + }, + { + "appid": 788540, + "normalized_name": "vivez versailles" + }, + { + "appid": 788610, + "normalized_name": "the piano" + }, + { + "appid": 788630, + "normalized_name": "gaia beyond" + }, + { + "appid": 788640, + "normalized_name": "dungeon stars" + }, + { + "appid": 788670, + "normalized_name": "waxworks curse of the ancestors" + }, + { + "appid": 788690, + "normalized_name": "psychonauts in the rhombus of ruin" + }, + { + "appid": 788700, + "normalized_name": "valeguard" + }, + { + "appid": 788720, + "normalized_name": "naturallandscape guilinlandscape (自然景观系列 桂林山水)" + }, + { + "appid": 788730, + "normalized_name": "mortar and pestle" + }, + { + "appid": 788740, + "normalized_name": "a salem witch trial murder mystery" + }, + { + "appid": 788750, + "normalized_name": "tri wing" + }, + { + "appid": 788760, + "normalized_name": "cubiques" + }, + { + "appid": 788770, + "normalized_name": "meteor 60 seconds!" + }, + { + "appid": 788800, + "normalized_name": "magic tower 3d" + }, + { + "appid": 788810, + "normalized_name": "exposure" + }, + { + "appid": 788820, + "normalized_name": "lightning war" + }, + { + "appid": 788870, + "normalized_name": "in the long run the game" + }, + { + "appid": 788890, + "normalized_name": "tomato jones episode 3" + }, + { + "appid": 788900, + "normalized_name": "vr_playroom episode beginning (escape room horror)" + }, + { + "appid": 788930, + "normalized_name": "razerwire nanowars" + }, + { + "appid": 788960, + "normalized_name": "mar war the evil awakens" + }, + { + "appid": 788970, + "normalized_name": "hidden object adventure captain nemo. objets cachés" + }, + { + "appid": 789010, + "normalized_name": "wanderfog" + }, + { + "appid": 789050, + "normalized_name": "paradise" + }, + { + "appid": 789090, + "normalized_name": "rainbow reactor" + }, + { + "appid": 789100, + "normalized_name": "my little farmies" + }, + { + "appid": 789130, + "normalized_name": "failure to launch" + }, + { + "appid": 789160, + "normalized_name": "plastic rebellion" + }, + { + "appid": 789200, + "normalized_name": "s.p.i.k.e arena" + }, + { + "appid": 789210, + "normalized_name": "ncradle an 80s synth adventure" + }, + { + "appid": 789220, + "normalized_name": "★ fallalypse ★ death or cress ♝" + }, + { + "appid": 789260, + "normalized_name": "unmoor" + }, + { + "appid": 789280, + "normalized_name": "rysen" + }, + { + "appid": 789290, + "normalized_name": "rpg merchant" + }, + { + "appid": 789380, + "normalized_name": "sometimes to deal with the difficulty of being alive i need to believe there is a possibility that life is not real." + }, + { + "appid": 789450, + "normalized_name": "zim's word game" + }, + { + "appid": 789480, + "normalized_name": "astroblast vr" + }, + { + "appid": 789490, + "normalized_name": "boom! maze" + }, + { + "appid": 789500, + "normalized_name": "trench run vr" + }, + { + "appid": 789510, + "normalized_name": "super goribei" + }, + { + "appid": 789540, + "normalized_name": "the adventures of nick & willikins" + }, + { + "appid": 789550, + "normalized_name": "bright bob" + }, + { + "appid": 789570, + "normalized_name": "nepenthe" + }, + { + "appid": 789580, + "normalized_name": "i・s・u ~fighting musical chair~" + }, + { + "appid": 789600, + "normalized_name": "mortal box" + }, + { + "appid": 789610, + "normalized_name": "splash adventure the maze of morla" + }, + { + "appid": 789620, + "normalized_name": "crypt the black tower" + }, + { + "appid": 789660, + "normalized_name": "buggos" + }, + { + "appid": 789670, + "normalized_name": "unhallowed the ca" + }, + { + "appid": 789680, + "normalized_name": "mech troid" + }, + { + "appid": 789700, + "normalized_name": "wendy’s mart 3d" + }, + { + "appid": 789710, + "normalized_name": "boyandlabyrinth" + }, + { + "appid": 789720, + "normalized_name": "aurora" + }, + { + "appid": 789730, + "normalized_name": "not without my poop" + }, + { + "appid": 789740, + "normalized_name": "maidens of a hollow dream" + }, + { + "appid": 789750, + "normalized_name": "idle earth" + }, + { + "appid": 789760, + "normalized_name": "dead or school" + }, + { + "appid": 789770, + "normalized_name": "starena" + }, + { + "appid": 789780, + "normalized_name": "battle for it all" + }, + { + "appid": 789820, + "normalized_name": "reborn" + }, + { + "appid": 789830, + "normalized_name": "muv luv unlimited the day after episode 03" + }, + { + "appid": 789840, + "normalized_name": "a dream of burning sand" + }, + { + "appid": 789880, + "normalized_name": "ghost platoon" + }, + { + "appid": 789890, + "normalized_name": "city patrol police" + }, + { + "appid": 789900, + "normalized_name": "my little riding champion" + }, + { + "appid": 789910, + "normalized_name": "planet of the apes last frontier" + }, + { + "appid": 789920, + "normalized_name": "poopdie" + }, + { + "appid": 789930, + "normalized_name": "blind boris" + }, + { + "appid": 789940, + "normalized_name": "unyielder" + }, + { + "appid": 789950, + "normalized_name": "infernium" + }, + { + "appid": 789980, + "normalized_name": "twilight on yulestead" + }, + { + "appid": 790020, + "normalized_name": "lightfield hyper" + }, + { + "appid": 790030, + "normalized_name": "hexer" + }, + { + "appid": 790050, + "normalized_name": "porcelain panic" + }, + { + "appid": 790060, + "normalized_name": "the void rains upon her heart" + }, + { + "appid": 790070, + "normalized_name": "bouldering brawl" + }, + { + "appid": 790080, + "normalized_name": "zerocar future motorsport" + }, + { + "appid": 790100, + "normalized_name": "project tank" + }, + { + "appid": 790120, + "normalized_name": "run and jump" + }, + { + "appid": 790130, + "normalized_name": "ore" + }, + { + "appid": 790170, + "normalized_name": "fairly certain doom" + }, + { + "appid": 790210, + "normalized_name": "neon knight vengeance from the grave" + }, + { + "appid": 790230, + "normalized_name": "zombie clicker defense" + }, + { + "appid": 790250, + "normalized_name": "bloodgeon" + }, + { + "appid": 790260, + "normalized_name": "kate's test" + }, + { + "appid": 790290, + "normalized_name": "lonely in the winter" + }, + { + "appid": 790300, + "normalized_name": "puzzle for kids" + }, + { + "appid": 790330, + "normalized_name": "obsession" + }, + { + "appid": 790350, + "normalized_name": "the inner friend" + }, + { + "appid": 790360, + "normalized_name": "warriorb" + }, + { + "appid": 790390, + "normalized_name": "the revenge of johnny bonasera episode 2" + }, + { + "appid": 790410, + "normalized_name": "futanari quest" + }, + { + "appid": 790430, + "normalized_name": "modlands" + }, + { + "appid": 790450, + "normalized_name": "anykey" + }, + { + "appid": 790540, + "normalized_name": "the quiet man" + }, + { + "appid": 790550, + "normalized_name": "monktastic" + }, + { + "appid": 790570, + "normalized_name": "innocent vr" + }, + { + "appid": 790600, + "normalized_name": "stormbound" + }, + { + "appid": 790630, + "normalized_name": "boxcat" + }, + { + "appid": 790680, + "normalized_name": "brutal mood" + }, + { + "appid": 790700, + "normalized_name": "bugout" + }, + { + "appid": 790710, + "normalized_name": "world of warplanes" + }, + { + "appid": 790740, + "normalized_name": "tick tock a tale for two" + }, + { + "appid": 790750, + "normalized_name": "ovrshot" + }, + { + "appid": 790760, + "normalized_name": "space chip" + }, + { + "appid": 790790, + "normalized_name": "impossible runner" + }, + { + "appid": 790800, + "normalized_name": "ascent spirit" + }, + { + "appid": 790810, + "normalized_name": "voxel baller" + }, + { + "appid": 790820, + "normalized_name": "valkyria chronicles 4" + }, + { + "appid": 790840, + "normalized_name": "epiphany!" + }, + { + "appid": 790850, + "normalized_name": "undead horde" + }, + { + "appid": 790860, + "normalized_name": "chocolate makes you happy 3" + }, + { + "appid": 790890, + "normalized_name": "for food sake! vr" + }, + { + "appid": 790930, + "normalized_name": "primitive shooter" + }, + { + "appid": 790950, + "normalized_name": "feed eve" + }, + { + "appid": 790960, + "normalized_name": "beer ranger" + }, + { + "appid": 790970, + "normalized_name": "golfy golf" + }, + { + "appid": 791000, + "normalized_name": "atomic heist" + }, + { + "appid": 791020, + "normalized_name": "drumpf rise up libertonia!" + }, + { + "appid": 791050, + "normalized_name": "i hate heroes rocket man" + }, + { + "appid": 791140, + "normalized_name": "shatter everything (vr)" + }, + { + "appid": 791150, + "normalized_name": "ev3 drag racing" + }, + { + "appid": 791160, + "normalized_name": "icky" + }, + { + "appid": 791180, + "normalized_name": "1 screen platformer" + }, + { + "appid": 791190, + "normalized_name": "gears of eden" + }, + { + "appid": 791200, + "normalized_name": "planet cube edge" + }, + { + "appid": 791240, + "normalized_name": "lumote the mastermote chronicles" + }, + { + "appid": 791260, + "normalized_name": "pandora chains of chaos" + }, + { + "appid": 791290, + "normalized_name": "space ball" + }, + { + "appid": 791300, + "normalized_name": "canek quest for corn [demo]" + }, + { + "appid": 791320, + "normalized_name": "zahalia" + }, + { + "appid": 791330, + "normalized_name": "fallen ~makina and the city of ruins~" + }, + { + "appid": 791370, + "normalized_name": "xploquest 2" + }, + { + "appid": 791380, + "normalized_name": "way out" + }, + { + "appid": 791390, + "normalized_name": "mr dirt poor 吃土计划" + }, + { + "appid": 791400, + "normalized_name": "from village to empire" + }, + { + "appid": 791410, + "normalized_name": "desktop cube man" + }, + { + "appid": 791430, + "normalized_name": "the archer dead hunt" + }, + { + "appid": 791470, + "normalized_name": "dyo" + }, + { + "appid": 791590, + "normalized_name": "psychiatrist simulator" + }, + { + "appid": 791600, + "normalized_name": "aplestia" + }, + { + "appid": 791630, + "normalized_name": "tale of ronin" + }, + { + "appid": 791700, + "normalized_name": "bird game" + }, + { + "appid": 791720, + "normalized_name": "lost satellite" + }, + { + "appid": 791740, + "normalized_name": "gladiators of the arena" + }, + { + "appid": 791750, + "normalized_name": "president trump the way in uganda" + }, + { + "appid": 791760, + "normalized_name": "a story of distress" + }, + { + "appid": 791770, + "normalized_name": "try to fall asleep" + }, + { + "appid": 791790, + "normalized_name": "no safety" + }, + { + "appid": 791800, + "normalized_name": "mind over mushroom" + }, + { + "appid": 791880, + "normalized_name": "essence of illumination the beginning" + }, + { + "appid": 791930, + "normalized_name": "bombtag" + }, + { + "appid": 791950, + "normalized_name": "hiking simulator 2018" + }, + { + "appid": 791960, + "normalized_name": "cactus jumper" + }, + { + "appid": 791990, + "normalized_name": "moba gm" + }, + { + "appid": 792000, + "normalized_name": "pit blocks 3d" + }, + { + "appid": 792030, + "normalized_name": "just bearly" + }, + { + "appid": 792040, + "normalized_name": "detective di the silk rose murders | 狄仁杰之锦蔷薇" + }, + { + "appid": 792050, + "normalized_name": "beneath the surface" + }, + { + "appid": 792070, + "normalized_name": "asteion nights" + }, + { + "appid": 792080, + "normalized_name": "glutton man" + }, + { + "appid": 792100, + "normalized_name": "7 billion humans" + }, + { + "appid": 792120, + "normalized_name": "fight knight" + }, + { + "appid": 792160, + "normalized_name": "heroes of hellas 4 birth of legend" + }, + { + "appid": 792190, + "normalized_name": "iridescence" + }, + { + "appid": 792200, + "normalized_name": "dynast.io" + }, + { + "appid": 792220, + "normalized_name": "paunch" + }, + { + "appid": 792230, + "normalized_name": "zombie serial killer incident" + }, + { + "appid": 792290, + "normalized_name": "total alarm" + }, + { + "appid": 792300, + "normalized_name": "the beast inside" + }, + { + "appid": 792320, + "normalized_name": "sunburnt" + }, + { + "appid": 792340, + "normalized_name": "esper" + }, + { + "appid": 792350, + "normalized_name": "joy climb" + }, + { + "appid": 792370, + "normalized_name": "a rite from the stars" + }, + { + "appid": 792380, + "normalized_name": "survival journals" + }, + { + "appid": 792400, + "normalized_name": "battleship lonewolf 2" + }, + { + "appid": 792470, + "normalized_name": "wwⅱ英雄列伝 泥の中の虎オットー・カリウス" + }, + { + "appid": 792480, + "normalized_name": "name the song quiz" + }, + { + "appid": 792500, + "normalized_name": "streets ablaze" + }, + { + "appid": 792560, + "normalized_name": "ukhar" + }, + { + "appid": 792570, + "normalized_name": "battlecon online" + }, + { + "appid": 792610, + "normalized_name": "king of the dwarves underground city builder" + }, + { + "appid": 792650, + "normalized_name": "super jigsaw puzzle" + }, + { + "appid": 792660, + "normalized_name": "the operational art of war iv" + }, + { + "appid": 792680, + "normalized_name": "containment initiative pc standalone" + }, + { + "appid": 792710, + "normalized_name": "levelhead platformer maker" + }, + { + "appid": 792720, + "normalized_name": "boxing apocalypse" + }, + { + "appid": 792750, + "normalized_name": "afandas survival" + }, + { + "appid": 792760, + "normalized_name": "the necklace of blood" + }, + { + "appid": 792770, + "normalized_name": "super green rally" + }, + { + "appid": 792800, + "normalized_name": "adventures of hendri" + }, + { + "appid": 792810, + "normalized_name": "balloon" + }, + { + "appid": 792820, + "normalized_name": "lost in 80s ii" + }, + { + "appid": 792850, + "normalized_name": "robo puzzle smash" + }, + { + "appid": 792860, + "normalized_name": "road doom" + }, + { + "appid": 792870, + "normalized_name": "super nosebleed land" + }, + { + "appid": 792880, + "normalized_name": "never stop sneakin'" + }, + { + "appid": 792900, + "normalized_name": "outbreak zombie" + }, + { + "appid": 792910, + "normalized_name": "point of no return" + }, + { + "appid": 792930, + "normalized_name": "age of viking conquest" + }, + { + "appid": 792940, + "normalized_name": "sail and sacrifice" + }, + { + "appid": 792970, + "normalized_name": "wheelz2" + }, + { + "appid": 792990, + "normalized_name": "identity" + }, + { + "appid": 793000, + "normalized_name": "star pit starship" + }, + { + "appid": 793010, + "normalized_name": "super pillow fight" + }, + { + "appid": 793030, + "normalized_name": "asteroid defender!" + }, + { + "appid": 793050, + "normalized_name": "undead factory zombie pandemic" + }, + { + "appid": 793060, + "normalized_name": "starship" + }, + { + "appid": 793080, + "normalized_name": "ばるばろっさ! ~すすめ? 赤軍少女旅団~(全年齢版)" + }, + { + "appid": 793100, + "normalized_name": "future ghost" + }, + { + "appid": 793130, + "normalized_name": "post apo machines" + }, + { + "appid": 793150, + "normalized_name": "moe! ninja girls" + }, + { + "appid": 793180, + "normalized_name": "魔王村长和杂货店 hero village simulator" + }, + { + "appid": 793200, + "normalized_name": "escape the darkness" + }, + { + "appid": 793210, + "normalized_name": "the cathedral allison's diary" + }, + { + "appid": 793220, + "normalized_name": "a fine mess" + }, + { + "appid": 793250, + "normalized_name": "casino poker" + }, + { + "appid": 793260, + "normalized_name": "army of squirrels" + }, + { + "appid": 793280, + "normalized_name": "neon valley revenge" + }, + { + "appid": 793310, + "normalized_name": "die drei ??? und der riesenkrake" + }, + { + "appid": 793320, + "normalized_name": "die drei ??? rätsel aus der geisterwelt" + }, + { + "appid": 793350, + "normalized_name": "swarmlake" + }, + { + "appid": 793370, + "normalized_name": "kids" + }, + { + "appid": 793400, + "normalized_name": "fist of brave" + }, + { + "appid": 793410, + "normalized_name": "橙天の銀翼~スカイランドの魔女と巫女~" + }, + { + "appid": 793440, + "normalized_name": "hammer hex" + }, + { + "appid": 793450, + "normalized_name": "desecration of wings" + }, + { + "appid": 793460, + "normalized_name": "112 operator" + }, + { + "appid": 793480, + "normalized_name": "trick shot" + }, + { + "appid": 793490, + "normalized_name": "exocraft" + }, + { + "appid": 793510, + "normalized_name": "dusk of confinement" + }, + { + "appid": 793560, + "normalized_name": "warfare 1944" + }, + { + "appid": 793570, + "normalized_name": "trenchfoot" + }, + { + "appid": 793600, + "normalized_name": "bully beatdown" + }, + { + "appid": 793620, + "normalized_name": "hellbreaker" + }, + { + "appid": 793630, + "normalized_name": "grood" + }, + { + "appid": 793640, + "normalized_name": "d.c. s#*!storm" + }, + { + "appid": 793660, + "normalized_name": "dead sparrows" + }, + { + "appid": 793670, + "normalized_name": "the wastes" + }, + { + "appid": 793690, + "normalized_name": "final assault" + }, + { + "appid": 793760, + "normalized_name": "my sweet waifu" + }, + { + "appid": 793820, + "normalized_name": "coffee crawl" + }, + { + "appid": 793830, + "normalized_name": "kharon's crypt even death may die" + }, + { + "appid": 793850, + "normalized_name": "pizza delivery 3000" + }, + { + "appid": 793880, + "normalized_name": "mirage" + }, + { + "appid": 793900, + "normalized_name": "master blaster vr" + }, + { + "appid": 793940, + "normalized_name": "moai 5 new generation collector’s" + }, + { + "appid": 793970, + "normalized_name": "super kids racing" + }, + { + "appid": 793980, + "normalized_name": "inbound" + }, + { + "appid": 793990, + "normalized_name": "dupio" + }, + { + "appid": 794030, + "normalized_name": "pegasus 5 gone astray" + }, + { + "appid": 794040, + "normalized_name": "the broken seal arena" + }, + { + "appid": 794050, + "normalized_name": "drift legends" + }, + { + "appid": 794180, + "normalized_name": "pro fishing simulator" + }, + { + "appid": 794190, + "normalized_name": "football russian 20!8" + }, + { + "appid": 794210, + "normalized_name": "grave tower" + }, + { + "appid": 794230, + "normalized_name": "golden8bits" + }, + { + "appid": 794240, + "normalized_name": "spinch" + }, + { + "appid": 794260, + "normalized_name": "outward" + }, + { + "appid": 794270, + "normalized_name": "landinar into the void" + }, + { + "appid": 794300, + "normalized_name": "simple man" + }, + { + "appid": 794350, + "normalized_name": "no captain allowed!" + }, + { + "appid": 794390, + "normalized_name": "zed survival" + }, + { + "appid": 794420, + "normalized_name": "no body home" + }, + { + "appid": 794480, + "normalized_name": "ottoman empire spectacular millennium" + }, + { + "appid": 794490, + "normalized_name": "journey of life" + }, + { + "appid": 794530, + "normalized_name": "zombie lane survival" + }, + { + "appid": 794540, + "normalized_name": "neo cab" + }, + { + "appid": 794550, + "normalized_name": "grapple force rena" + }, + { + "appid": 794570, + "normalized_name": "xball champion" + }, + { + "appid": 794580, + "normalized_name": "snk heroines tag team frenzy" + }, + { + "appid": 794600, + "normalized_name": "let it die" + }, + { + "appid": 794630, + "normalized_name": "puzzle 3d" + }, + { + "appid": 794640, + "normalized_name": "tommyknockers" + }, + { + "appid": 794650, + "normalized_name": "i saw it" + }, + { + "appid": 794690, + "normalized_name": "光明大陆" + }, + { + "appid": 794700, + "normalized_name": "frisky business episode 2" + }, + { + "appid": 794740, + "normalized_name": "patent9 goddess of trust" + }, + { + "appid": 794750, + "normalized_name": "minesweepvr" + }, + { + "appid": 794760, + "normalized_name": "abyss crawlers plus" + }, + { + "appid": 794780, + "normalized_name": "pathogen 病原体" + }, + { + "appid": 794800, + "normalized_name": "clue/cluedo classic" + }, + { + "appid": 794820, + "normalized_name": "knights of pen and paper 2 free" + }, + { + "appid": 794830, + "normalized_name": "abha \"light on the path\"" + }, + { + "appid": 794850, + "normalized_name": "landflix odyssey" + }, + { + "appid": 794860, + "normalized_name": "esail sailing simulator" + }, + { + "appid": 794940, + "normalized_name": "hexa turn" + }, + { + "appid": 794950, + "normalized_name": "the frosty leaves 寒叶下的薄冰" + }, + { + "appid": 794960, + "normalized_name": "the sojourn" + }, + { + "appid": 794990, + "normalized_name": "geometry runner online" + }, + { + "appid": 795040, + "normalized_name": "e.z" + }, + { + "appid": 795050, + "normalized_name": "techno boy" + }, + { + "appid": 795110, + "normalized_name": "iin" + }, + { + "appid": 795120, + "normalized_name": "to the capital 2" + }, + { + "appid": 795160, + "normalized_name": "tsundere idol" + }, + { + "appid": 795220, + "normalized_name": "wildlife tycoon venture africa" + }, + { + "appid": 795230, + "normalized_name": "venture arctic" + }, + { + "appid": 795310, + "normalized_name": "devil in the details uncensored" + }, + { + "appid": 795320, + "normalized_name": "dissimilation" + }, + { + "appid": 795420, + "normalized_name": "the darkside detective a fumble in the dark" + }, + { + "appid": 795440, + "normalized_name": "why war?" + }, + { + "appid": 795480, + "normalized_name": "unknown pain hardcore" + }, + { + "appid": 795490, + "normalized_name": "fuktopia" + }, + { + "appid": 795510, + "normalized_name": "koihime enbu ryorairai" + }, + { + "appid": 795550, + "normalized_name": "warawara invaders" + }, + { + "appid": 795570, + "normalized_name": "odium to the core" + }, + { + "appid": 795610, + "normalized_name": "gift of parthax" + }, + { + "appid": 795680, + "normalized_name": "border of her heart" + }, + { + "appid": 795760, + "normalized_name": "uppers" + }, + { + "appid": 795910, + "normalized_name": "montero" + }, + { + "appid": 795920, + "normalized_name": "salvator" + }, + { + "appid": 795940, + "normalized_name": "fantasy mosaics 19 edge of the world" + }, + { + "appid": 795950, + "normalized_name": "deathly storm the edge of life" + }, + { + "appid": 795960, + "normalized_name": "murder diaries ankara" + }, + { + "appid": 795990, + "normalized_name": "rise the vieneo province" + }, + { + "appid": 796030, + "normalized_name": "hard helmets" + }, + { + "appid": 796050, + "normalized_name": "the agency of anomalies mind invasion collector's" + }, + { + "appid": 796060, + "normalized_name": "riddles of fate memento mori collector's" + }, + { + "appid": 796070, + "normalized_name": "puppetshow return to joyville collector's" + }, + { + "appid": 796080, + "normalized_name": "amaranthine voyage the shadow of torment collector's" + }, + { + "appid": 796090, + "normalized_name": "danse macabre deadly deception collector's" + }, + { + "appid": 796100, + "normalized_name": "haunted halls fears from childhood collector's" + }, + { + "appid": 796110, + "normalized_name": "arkasha" + }, + { + "appid": 796130, + "normalized_name": "virus petya" + }, + { + "appid": 796140, + "normalized_name": "zig" + }, + { + "appid": 796260, + "normalized_name": "radiant melodia" + }, + { + "appid": 796290, + "normalized_name": "world of tennis roaring ’20s" + }, + { + "appid": 796300, + "normalized_name": "aria's wing" + }, + { + "appid": 796320, + "normalized_name": "potatoe" + }, + { + "appid": 796330, + "normalized_name": "widower's sky" + }, + { + "appid": 796340, + "normalized_name": "lifeblood" + }, + { + "appid": 796350, + "normalized_name": "naturefly" + }, + { + "appid": 796360, + "normalized_name": "jq countries" + }, + { + "appid": 796370, + "normalized_name": "desert of vice" + }, + { + "appid": 796380, + "normalized_name": "terra feminarum" + }, + { + "appid": 796440, + "normalized_name": "spaceguy" + }, + { + "appid": 796460, + "normalized_name": "individual investor tycoon" + }, + { + "appid": 796480, + "normalized_name": "bit boom" + }, + { + "appid": 796490, + "normalized_name": "fantasy mosaics 20 castle of puzzles" + }, + { + "appid": 796500, + "normalized_name": "spellshokked!" + }, + { + "appid": 796510, + "normalized_name": "monkey slap" + }, + { + "appid": 796520, + "normalized_name": "ice cream factory" + }, + { + "appid": 796530, + "normalized_name": "altera" + }, + { + "appid": 796580, + "normalized_name": "100 seconds" + }, + { + "appid": 796590, + "normalized_name": "the arab republic of taghia" + }, + { + "appid": 796600, + "normalized_name": "don't touch the walls" + }, + { + "appid": 796620, + "normalized_name": "x mushrooms(x蘑菇)" + }, + { + "appid": 796640, + "normalized_name": "mr.jezko" + }, + { + "appid": 796660, + "normalized_name": "about how he earned a suite from t financial platform in four months" + }, + { + "appid": 796710, + "normalized_name": "web spice" + }, + { + "appid": 796760, + "normalized_name": "varblocks" + }, + { + "appid": 796770, + "normalized_name": "toddler simulator" + }, + { + "appid": 796780, + "normalized_name": "star drift" + }, + { + "appid": 796790, + "normalized_name": "glad valakas simulator" + }, + { + "appid": 796800, + "normalized_name": "lair of the titans" + }, + { + "appid": 796840, + "normalized_name": "molecule a chemical challenge" + }, + { + "appid": 796860, + "normalized_name": "police enforcement vr 1 king 27" + }, + { + "appid": 796900, + "normalized_name": "trivia vault mixed trivia 2" + }, + { + "appid": 796910, + "normalized_name": "please love my computer game" + }, + { + "appid": 796920, + "normalized_name": "xenoform" + }, + { + "appid": 796930, + "normalized_name": "neon spaceboard" + }, + { + "appid": 796940, + "normalized_name": "red embrace" + }, + { + "appid": 796950, + "normalized_name": "the haunting of billy" + }, + { + "appid": 796970, + "normalized_name": "vr soccer training" + }, + { + "appid": 796980, + "normalized_name": "kai yuen's overlapped universe" + }, + { + "appid": 797010, + "normalized_name": "mavi's journey" + }, + { + "appid": 797020, + "normalized_name": "tinywar high speed" + }, + { + "appid": 797040, + "normalized_name": "reboant endless dawn" + }, + { + "appid": 797060, + "normalized_name": "qubika" + }, + { + "appid": 797070, + "normalized_name": "bunny adventure" + }, + { + "appid": 797090, + "normalized_name": "neon sun" + }, + { + "appid": 797110, + "normalized_name": "shadow blood vr" + }, + { + "appid": 797180, + "normalized_name": "cosh" + }, + { + "appid": 797190, + "normalized_name": "survive the king killer" + }, + { + "appid": 797200, + "normalized_name": "international space station tour vr" + }, + { + "appid": 797300, + "normalized_name": "fantasy mosaics 21 on the movie set" + }, + { + "appid": 797310, + "normalized_name": "fantasy mosaics 22 summer vacation" + }, + { + "appid": 797330, + "normalized_name": "fantasy mosaics 23 magic forest" + }, + { + "appid": 797340, + "normalized_name": "fantasy mosaics 24 deserted island" + }, + { + "appid": 797350, + "normalized_name": "fantasy mosaics 25 wedding ceremony" + }, + { + "appid": 797390, + "normalized_name": "how to cope with boredom and loneliness" + }, + { + "appid": 797400, + "normalized_name": "railroad corporation" + }, + { + "appid": 797410, + "normalized_name": "headsnatchers" + }, + { + "appid": 797420, + "normalized_name": "night drive vr" + }, + { + "appid": 797430, + "normalized_name": "hd poker texas hold'em" + }, + { + "appid": 797440, + "normalized_name": "fantasy mosaics 26 fairytale garden" + }, + { + "appid": 797450, + "normalized_name": "fantasy mosaics 27 secret colors" + }, + { + "appid": 797550, + "normalized_name": "panic flight" + }, + { + "appid": 797570, + "normalized_name": "go morse go! arcade" + }, + { + "appid": 797610, + "normalized_name": "subsideria" + }, + { + "appid": 797620, + "normalized_name": "dissembler" + }, + { + "appid": 797660, + "normalized_name": "god test" + }, + { + "appid": 797710, + "normalized_name": "rpgolf" + }, + { + "appid": 798140, + "normalized_name": "blood drift" + }, + { + "appid": 798170, + "normalized_name": "dive" + }, + { + "appid": 798180, + "normalized_name": "space turret gunner 宇宙大炮手" + }, + { + "appid": 798190, + "normalized_name": "star clash" + }, + { + "appid": 798200, + "normalized_name": "tomb exploration vr" + }, + { + "appid": 798240, + "normalized_name": "cryep" + }, + { + "appid": 798280, + "normalized_name": "crocomars" + }, + { + "appid": 798290, + "normalized_name": "mxgp pro" + }, + { + "appid": 798300, + "normalized_name": "knightmare lands" + }, + { + "appid": 798330, + "normalized_name": "bacterium / 生命之旅" + }, + { + "appid": 798350, + "normalized_name": "capsule jump" + }, + { + "appid": 798420, + "normalized_name": "professional fishing" + }, + { + "appid": 798460, + "normalized_name": "ni no kuni wrath of the white witch" + }, + { + "appid": 798470, + "normalized_name": "idle craft" + }, + { + "appid": 798480, + "normalized_name": "loneliness after chapter 1" + }, + { + "appid": 798490, + "normalized_name": "othercide" + }, + { + "appid": 798510, + "normalized_name": "super dragon ball heroes world mission" + }, + { + "appid": 798560, + "normalized_name": "inaccessible world" + }, + { + "appid": 798590, + "normalized_name": "elven love" + }, + { + "appid": 798610, + "normalized_name": "mermaid adventures the frozen time" + }, + { + "appid": 798630, + "normalized_name": "patchman vs. blue squares" + }, + { + "appid": 798650, + "normalized_name": "squeakers" + }, + { + "appid": 798670, + "normalized_name": "tactical chronicle" + }, + { + "appid": 798680, + "normalized_name": "animosity" + }, + { + "appid": 798710, + "normalized_name": "voltage" + }, + { + "appid": 798720, + "normalized_name": "super robo mouse" + }, + { + "appid": 798780, + "normalized_name": "color cannons+" + }, + { + "appid": 798790, + "normalized_name": "polycube" + }, + { + "appid": 798830, + "normalized_name": "the commission organized crime grand strategy" + }, + { + "appid": 798840, + "normalized_name": "panzer war" + }, + { + "appid": 798850, + "normalized_name": "achievement lurker easiest cosmetic numbers" + }, + { + "appid": 798940, + "normalized_name": "勇士冲冲冲 classic rodeo play" + }, + { + "appid": 798950, + "normalized_name": "logout" + }, + { + "appid": 798960, + "normalized_name": "putin takes taxes" + }, + { + "appid": 799060, + "normalized_name": "biotix phage genesis" + }, + { + "appid": 799070, + "normalized_name": "zup! 8" + }, + { + "appid": 799080, + "normalized_name": "5 star hawaii resort your resort" + }, + { + "appid": 799110, + "normalized_name": "picrastination" + }, + { + "appid": 799120, + "normalized_name": "zombiehunt" + }, + { + "appid": 799180, + "normalized_name": "unfinished battle" + }, + { + "appid": 799210, + "normalized_name": "legions at war" + }, + { + "appid": 799240, + "normalized_name": "my free farm 2" + }, + { + "appid": 799260, + "normalized_name": "godly corp" + }, + { + "appid": 799270, + "normalized_name": "looney rally" + }, + { + "appid": 799340, + "normalized_name": "battle for gaming" + }, + { + "appid": 799360, + "normalized_name": "hot zone" + }, + { + "appid": 799410, + "normalized_name": "the outbreak story" + }, + { + "appid": 799420, + "normalized_name": "shadow of the black dragon" + }, + { + "appid": 799460, + "normalized_name": "broken metal" + }, + { + "appid": 799470, + "normalized_name": "time de tour" + }, + { + "appid": 799500, + "normalized_name": "survivalz" + }, + { + "appid": 799510, + "normalized_name": "squidlit" + }, + { + "appid": 799530, + "normalized_name": "psychopathics" + }, + { + "appid": 799540, + "normalized_name": "super dungeon boy 2" + }, + { + "appid": 799560, + "normalized_name": "blackbeard's cove" + }, + { + "appid": 799570, + "normalized_name": "angles" + }, + { + "appid": 799590, + "normalized_name": "life lessons" + }, + { + "appid": 799600, + "normalized_name": "cosmoteer starship architect & commander" + }, + { + "appid": 799610, + "normalized_name": "drill arena" + }, + { + "appid": 799620, + "normalized_name": "grim wanderings" + }, + { + "appid": 799640, + "normalized_name": "dungeon munchies" + }, + { + "appid": 799660, + "normalized_name": "the blue zula vr concert series" + }, + { + "appid": 799670, + "normalized_name": "volantia" + }, + { + "appid": 799730, + "normalized_name": "guard of wonderland vr" + }, + { + "appid": 799770, + "normalized_name": "alea" + }, + { + "appid": 799800, + "normalized_name": "animals memory cats" + }, + { + "appid": 799810, + "normalized_name": "returner 77" + }, + { + "appid": 799830, + "normalized_name": "am i the baddie?" + }, + { + "appid": 799840, + "normalized_name": "life and debt a real life simulator" + }, + { + "appid": 799860, + "normalized_name": "breathe" + }, + { + "appid": 799870, + "normalized_name": "neko dungeon | 喵酱迷城 | 喵醬迷城 | ねこダンジョン" + }, + { + "appid": 799890, + "normalized_name": "revenger age of morons" + }, + { + "appid": 799910, + "normalized_name": "cheitha" + }, + { + "appid": 799920, + "normalized_name": "impossible fighter frog" + }, + { + "appid": 799960, + "normalized_name": "wizard101" + }, + { + "appid": 800030, + "normalized_name": "magikiras" + }, + { + "appid": 800050, + "normalized_name": "the great tournament" + }, + { + "appid": 800080, + "normalized_name": "rising sun iron aces" + }, + { + "appid": 800120, + "normalized_name": "lonely yuri" + }, + { + "appid": 800130, + "normalized_name": "smartboy" + }, + { + "appid": 800170, + "normalized_name": "隐 stealth" + }, + { + "appid": 800180, + "normalized_name": "momoiro closet" + }, + { + "appid": 800190, + "normalized_name": "the adventures of elena temple" + }, + { + "appid": 800200, + "normalized_name": "witching tower vr" + }, + { + "appid": 800240, + "normalized_name": "ghostly matter" + }, + { + "appid": 800270, + "normalized_name": "terraforming mars" + }, + { + "appid": 800280, + "normalized_name": "flyvalny 20!8" + }, + { + "appid": 800290, + "normalized_name": "visp virtual space port" + }, + { + "appid": 800300, + "normalized_name": "glight" + }, + { + "appid": 800310, + "normalized_name": "paladin duty knights and blades" + }, + { + "appid": 800320, + "normalized_name": "cubic color" + }, + { + "appid": 800330, + "normalized_name": "color circle" + }, + { + "appid": 800350, + "normalized_name": "casino blackjack" + }, + { + "appid": 800380, + "normalized_name": "escape room vr stories" + }, + { + "appid": 800390, + "normalized_name": "puppet fever" + }, + { + "appid": 800490, + "normalized_name": "alaska" + }, + { + "appid": 800510, + "normalized_name": "roboheist vr" + }, + { + "appid": 800530, + "normalized_name": "ninja jump" + }, + { + "appid": 800550, + "normalized_name": "darkdire the advanced set" + }, + { + "appid": 800560, + "normalized_name": "the great tournament 2" + }, + { + "appid": 800580, + "normalized_name": "highway wars" + }, + { + "appid": 800600, + "normalized_name": "wayhaven chronicles book one" + }, + { + "appid": 800620, + "normalized_name": "fallen hero rebirth" + }, + { + "appid": 800640, + "normalized_name": "xtreme paddleball" + }, + { + "appid": 800650, + "normalized_name": "the last operator" + }, + { + "appid": 800670, + "normalized_name": "netstars vr goalie trainer" + }, + { + "appid": 800680, + "normalized_name": "rtag rise" + }, + { + "appid": 800690, + "normalized_name": "the unlikely legend of rusty pup" + }, + { + "appid": 800700, + "normalized_name": "project hastur" + }, + { + "appid": 800710, + "normalized_name": "mad zombie" + }, + { + "appid": 800720, + "normalized_name": "space fighters" + }, + { + "appid": 800820, + "normalized_name": "2236 a.d." + }, + { + "appid": 800830, + "normalized_name": "floogen" + }, + { + "appid": 800840, + "normalized_name": "jesters poker" + }, + { + "appid": 800860, + "normalized_name": "omnicube" + }, + { + "appid": 800910, + "normalized_name": "friendzoned archer" + }, + { + "appid": 800930, + "normalized_name": "twin blue moons" + }, + { + "appid": 800980, + "normalized_name": "one man army vr" + }, + { + "appid": 801010, + "normalized_name": "unsolved stories" + }, + { + "appid": 801020, + "normalized_name": "golden dungeons" + }, + { + "appid": 801040, + "normalized_name": "poly universe" + }, + { + "appid": 801060, + "normalized_name": "arcball" + }, + { + "appid": 801080, + "normalized_name": "hunting on myths" + }, + { + "appid": 801120, + "normalized_name": "kirchhoff's revenge" + }, + { + "appid": 801140, + "normalized_name": "unitystation" + }, + { + "appid": 801150, + "normalized_name": "imm defense" + }, + { + "appid": 801180, + "normalized_name": "beer pong vr" + }, + { + "appid": 801210, + "normalized_name": "spellsword cards demontide" + }, + { + "appid": 801250, + "normalized_name": "gohorobo" + }, + { + "appid": 801260, + "normalized_name": "nostalgic train" + }, + { + "appid": 801280, + "normalized_name": "cowboy escape" + }, + { + "appid": 801290, + "normalized_name": "diabolic" + }, + { + "appid": 801330, + "normalized_name": "monkey rush" + }, + { + "appid": 801340, + "normalized_name": "healer simulator" + }, + { + "appid": 801370, + "normalized_name": "isotower" + }, + { + "appid": 801380, + "normalized_name": "movit" + }, + { + "appid": 801390, + "normalized_name": "onslaught vr" + }, + { + "appid": 801400, + "normalized_name": "hoser hockey" + }, + { + "appid": 801410, + "normalized_name": "hidden life" + }, + { + "appid": 801420, + "normalized_name": "kollidoskop!" + }, + { + "appid": 801450, + "normalized_name": "microtransaction simulator game of the decade deluxe" + }, + { + "appid": 801480, + "normalized_name": "agent a a puzzle in disguise" + }, + { + "appid": 801490, + "normalized_name": "hellcrunch" + }, + { + "appid": 801500, + "normalized_name": "wannamine" + }, + { + "appid": 801550, + "normalized_name": "vail vr" + }, + { + "appid": 801600, + "normalized_name": "夜雪冰娇" + }, + { + "appid": 801610, + "normalized_name": "amigo fishing" + }, + { + "appid": 801630, + "normalized_name": "under night in birth exe late[cl r]" + }, + { + "appid": 801660, + "normalized_name": "swapper tiles" + }, + { + "appid": 801700, + "normalized_name": "alpencross" + }, + { + "appid": 801750, + "normalized_name": "hot shot burn" + }, + { + "appid": 801760, + "normalized_name": "city monsters" + }, + { + "appid": 801770, + "normalized_name": "brutalism" + }, + { + "appid": 801780, + "normalized_name": "haters kill them all!" + }, + { + "appid": 801800, + "normalized_name": "atomfall" + }, + { + "appid": 801840, + "normalized_name": "psychoballs" + }, + { + "appid": 801870, + "normalized_name": "ramen" + }, + { + "appid": 801880, + "normalized_name": "drift tuner 2019" + }, + { + "appid": 801890, + "normalized_name": "christmas race 2" + }, + { + "appid": 801900, + "normalized_name": "the last baron's stunt (anime)" + }, + { + "appid": 801910, + "normalized_name": "orbos" + }, + { + "appid": 801940, + "normalized_name": "star boy" + }, + { + "appid": 801950, + "normalized_name": "cryptorig" + }, + { + "appid": 802040, + "normalized_name": "captive" + }, + { + "appid": 802050, + "normalized_name": "rag doll joe" + }, + { + "appid": 802060, + "normalized_name": "spencer" + }, + { + "appid": 802070, + "normalized_name": "cluster dust" + }, + { + "appid": 802080, + "normalized_name": "pillage" + }, + { + "appid": 802090, + "normalized_name": "dungeon puzzle vr solve it or die" + }, + { + "appid": 802120, + "normalized_name": "cellyon boss confrontation" + }, + { + "appid": 802130, + "normalized_name": "break the targets" + }, + { + "appid": 802160, + "normalized_name": "mimic man" + }, + { + "appid": 802180, + "normalized_name": "desertshootout" + }, + { + "appid": 802190, + "normalized_name": "the land of glass" + }, + { + "appid": 802200, + "normalized_name": "hellbound survival mode" + }, + { + "appid": 802210, + "normalized_name": "bsl winter games challenge" + }, + { + "appid": 802260, + "normalized_name": "vandozer" + }, + { + "appid": 802270, + "normalized_name": "tank ball" + }, + { + "appid": 802300, + "normalized_name": "baseball kings vr" + }, + { + "appid": 802310, + "normalized_name": "pingpong kings vr" + }, + { + "appid": 802320, + "normalized_name": "tennis kings vr" + }, + { + "appid": 802330, + "normalized_name": "badminton kings vr" + }, + { + "appid": 802340, + "normalized_name": "archery kings vr" + }, + { + "appid": 802360, + "normalized_name": "king of mazes" + }, + { + "appid": 802400, + "normalized_name": "fhtagn! tales of the creeping madness" + }, + { + "appid": 802410, + "normalized_name": "league of survivors" + }, + { + "appid": 802450, + "normalized_name": "nairi tower of shirin" + }, + { + "appid": 802480, + "normalized_name": "baby game plan 0 3" + }, + { + "appid": 802490, + "normalized_name": "fabulous angela's wedding disaster" + }, + { + "appid": 802530, + "normalized_name": "space raiders rpg" + }, + { + "appid": 802550, + "normalized_name": "war1 various fighters" + }, + { + "appid": 802600, + "normalized_name": "grimo" + }, + { + "appid": 802650, + "normalized_name": "russian aye race" + }, + { + "appid": 802660, + "normalized_name": "bitcoin or bomb?" + }, + { + "appid": 802690, + "normalized_name": "crazy machines vr" + }, + { + "appid": 802720, + "normalized_name": "give me your coins" + }, + { + "appid": 802730, + "normalized_name": "mother simulator" + }, + { + "appid": 802740, + "normalized_name": "wild glory" + }, + { + "appid": 802780, + "normalized_name": "ball platformer" + }, + { + "appid": 802850, + "normalized_name": "nazishootout" + }, + { + "appid": 802870, + "normalized_name": "the ditzy demons are in love with me" + }, + { + "appid": 802880, + "normalized_name": "muv luv" + }, + { + "appid": 802890, + "normalized_name": "muv luv alternative" + }, + { + "appid": 802900, + "normalized_name": "hollow steps" + }, + { + "appid": 802930, + "normalized_name": "the rainsdowne players" + }, + { + "appid": 803020, + "normalized_name": "manny boxing vr" + }, + { + "appid": 803030, + "normalized_name": "seek or die" + }, + { + "appid": 803040, + "normalized_name": "master of the harem guild" + }, + { + "appid": 803050, + "normalized_name": "per aspera" + }, + { + "appid": 803060, + "normalized_name": "eternal destinies ~the world of possibilities~" + }, + { + "appid": 803080, + "normalized_name": "bad day" + }, + { + "appid": 803110, + "normalized_name": "dread station" + }, + { + "appid": 803130, + "normalized_name": "diastone memories" + }, + { + "appid": 803150, + "normalized_name": "nephise ascension" + }, + { + "appid": 803260, + "normalized_name": "survive in angaria" + }, + { + "appid": 803270, + "normalized_name": "one bit arena" + }, + { + "appid": 803280, + "normalized_name": "briquid" + }, + { + "appid": 803290, + "normalized_name": "random rooms" + }, + { + "appid": 803310, + "normalized_name": "landlord simulator" + }, + { + "appid": 803320, + "normalized_name": "haldor" + }, + { + "appid": 803330, + "normalized_name": "destroy all humans!" + }, + { + "appid": 803350, + "normalized_name": "fighter royale last ace flying" + }, + { + "appid": 803390, + "normalized_name": "thunderbolt" + }, + { + "appid": 803500, + "normalized_name": "" + }, + { + "appid": 803520, + "normalized_name": "nothing to god" + }, + { + "appid": 803570, + "normalized_name": "solar battalion" + }, + { + "appid": 803590, + "normalized_name": "little gold miner" + }, + { + "appid": 803600, + "normalized_name": "disgaea 5" + }, + { + "appid": 803640, + "normalized_name": "phantom matrix" + }, + { + "appid": 803680, + "normalized_name": "eat your words" + }, + { + "appid": 803720, + "normalized_name": "war theatre" + }, + { + "appid": 803750, + "normalized_name": "moon castle" + }, + { + "appid": 803760, + "normalized_name": "free at last" + }, + { + "appid": 803780, + "normalized_name": "toon war" + }, + { + "appid": 803800, + "normalized_name": "widecross" + }, + { + "appid": 803830, + "normalized_name": "the snowboard game" + }, + { + "appid": 803840, + "normalized_name": "it could have been me" + }, + { + "appid": 803850, + "normalized_name": "pixelpunk xl" + }, + { + "appid": 803870, + "normalized_name": "nickproject" + }, + { + "appid": 803890, + "normalized_name": "police helicopter simulator" + }, + { + "appid": 803920, + "normalized_name": "suna" + }, + { + "appid": 803930, + "normalized_name": "galactic bulwark strike" + }, + { + "appid": 803940, + "normalized_name": "collapsion" + }, + { + "appid": 803960, + "normalized_name": "contrasted" + }, + { + "appid": 803980, + "normalized_name": "plane mechanic simulator" + }, + { + "appid": 804000, + "normalized_name": "expendable" + }, + { + "appid": 804010, + "normalized_name": "steamworld quest hand of gilgamech" + }, + { + "appid": 804070, + "normalized_name": "road of dust and rust" + }, + { + "appid": 804120, + "normalized_name": "oneness" + }, + { + "appid": 804130, + "normalized_name": "exist" + }, + { + "appid": 804210, + "normalized_name": "star advent" + }, + { + "appid": 804230, + "normalized_name": "mystery of melody memorial" + }, + { + "appid": 804270, + "normalized_name": "chex quest hd" + }, + { + "appid": 804290, + "normalized_name": "training aim" + }, + { + "appid": 804330, + "normalized_name": "rodentwars! part 1 hamsterball deathmatch!!" + }, + { + "appid": 804350, + "normalized_name": "starman" + }, + { + "appid": 804400, + "normalized_name": "a turd's life" + }, + { + "appid": 804430, + "normalized_name": "drink pro tycoon" + }, + { + "appid": 804440, + "normalized_name": "starman in space" + }, + { + "appid": 804460, + "normalized_name": "last war 2044" + }, + { + "appid": 804490, + "normalized_name": "creed rise to glory" + }, + { + "appid": 804530, + "normalized_name": "cubism" + }, + { + "appid": 804540, + "normalized_name": "greedy developer's cash grab" + }, + { + "appid": 804560, + "normalized_name": "hipanda" + }, + { + "appid": 804600, + "normalized_name": "trivia vault football trivia" + }, + { + "appid": 804610, + "normalized_name": "monmusu * fight!" + }, + { + "appid": 804620, + "normalized_name": "boxing fighter super punch" + }, + { + "appid": 804680, + "normalized_name": "virtual ninja vr" + }, + { + "appid": 804700, + "normalized_name": "the house in fata morgana a requiem for innocence" + }, + { + "appid": 804730, + "normalized_name": "third front wwii" + }, + { + "appid": 804780, + "normalized_name": "vrでレムと異世界生活 膝枕&添寝編" + }, + { + "appid": 804830, + "normalized_name": "shards of eradine" + }, + { + "appid": 804850, + "normalized_name": "pax nova" + }, + { + "appid": 804860, + "normalized_name": "klotzen! panzer battles" + }, + { + "appid": 804870, + "normalized_name": "armed to the gears" + }, + { + "appid": 804900, + "normalized_name": "cat's bar" + }, + { + "appid": 804970, + "normalized_name": "shoottera" + }, + { + "appid": 804990, + "normalized_name": "whispered secrets into the wind collector's" + }, + { + "appid": 805010, + "normalized_name": "fierce tales feline sight collector's" + }, + { + "appid": 805020, + "normalized_name": "mayan prophecies blood moon collector's" + }, + { + "appid": 805030, + "normalized_name": "love chronicles salvation collector's" + }, + { + "appid": 805040, + "normalized_name": "european mystery flowers of death collector's" + }, + { + "appid": 805070, + "normalized_name": "super skull smash go! 2 turbo" + }, + { + "appid": 805090, + "normalized_name": "blackjack in space" + }, + { + "appid": 805120, + "normalized_name": "the fielder's choice" + }, + { + "appid": 805150, + "normalized_name": "tsa frisky" + }, + { + "appid": 805160, + "normalized_name": "antipathy" + }, + { + "appid": 805260, + "normalized_name": "picnic" + }, + { + "appid": 805270, + "normalized_name": "playcraft" + }, + { + "appid": 805320, + "normalized_name": "conjuror's eye" + }, + { + "appid": 805330, + "normalized_name": "angelialost" + }, + { + "appid": 805340, + "normalized_name": "cubiques 2" + }, + { + "appid": 805350, + "normalized_name": "sphera turris" + }, + { + "appid": 805360, + "normalized_name": "trivia vault baseball trivia" + }, + { + "appid": 805370, + "normalized_name": "are you alone?" + }, + { + "appid": 805380, + "normalized_name": "maiden city the last collateral damage" + }, + { + "appid": 805400, + "normalized_name": "mahjong solitaire" + }, + { + "appid": 805420, + "normalized_name": "stack & crack" + }, + { + "appid": 805440, + "normalized_name": "prismatix" + }, + { + "appid": 805470, + "normalized_name": "cubicpanic" + }, + { + "appid": 805480, + "normalized_name": "tank souls" + }, + { + "appid": 805500, + "normalized_name": "dokkaebi hentai adventures" + }, + { + "appid": 805520, + "normalized_name": "the dwarves of glistenveld" + }, + { + "appid": 805540, + "normalized_name": "gun road" + }, + { + "appid": 805550, + "normalized_name": "assetto corsa competizione" + }, + { + "appid": 805590, + "normalized_name": "armored head" + }, + { + "appid": 805610, + "normalized_name": "gulman 5" + }, + { + "appid": 805660, + "normalized_name": "rad rodgers radical" + }, + { + "appid": 805690, + "normalized_name": "fear half factor" + }, + { + "appid": 805710, + "normalized_name": "alien worms invasion" + }, + { + "appid": 805720, + "normalized_name": "satan's castle" + }, + { + "appid": 805760, + "normalized_name": "désiré" + }, + { + "appid": 805770, + "normalized_name": "我的赛车生涯/my racing career" + }, + { + "appid": 805790, + "normalized_name": "torque simulation begins" + }, + { + "appid": 805800, + "normalized_name": "five seconds of bad music" + }, + { + "appid": 805820, + "normalized_name": "putin vs isis" + }, + { + "appid": 805840, + "normalized_name": "just one color" + }, + { + "appid": 805850, + "normalized_name": "wrecked" + }, + { + "appid": 805870, + "normalized_name": "do you know de way" + }, + { + "appid": 805880, + "normalized_name": "trivia vault olympics trivia" + }, + { + "appid": 805890, + "normalized_name": "vitality" + }, + { + "appid": 805900, + "normalized_name": "metal division" + }, + { + "appid": 805920, + "normalized_name": "seek etyliv" + }, + { + "appid": 805940, + "normalized_name": "russia battlegrounds" + }, + { + "appid": 805950, + "normalized_name": "isolated" + }, + { + "appid": 805980, + "normalized_name": "my safe house" + }, + { + "appid": 805990, + "normalized_name": "看见我~see me" + }, + { + "appid": 806000, + "normalized_name": "orccraft" + }, + { + "appid": 806020, + "normalized_name": "milky way map" + }, + { + "appid": 806100, + "normalized_name": "plati nalog favorite russian game" + }, + { + "appid": 806140, + "normalized_name": "achievements printer" + }, + { + "appid": 806150, + "normalized_name": "bloody and cruel story of toys" + }, + { + "appid": 806160, + "normalized_name": "🐰rabbirun🐰" + }, + { + "appid": 806180, + "normalized_name": "beyond the heavens" + }, + { + "appid": 806220, + "normalized_name": "absolute blue" + }, + { + "appid": 806230, + "normalized_name": "mech league hunting" + }, + { + "appid": 806240, + "normalized_name": "rollingball" + }, + { + "appid": 806300, + "normalized_name": "quotes quest match 3" + }, + { + "appid": 806330, + "normalized_name": "retro rocket robot" + }, + { + "appid": 806350, + "normalized_name": "awkward date hero" + }, + { + "appid": 806360, + "normalized_name": "uncanny" + }, + { + "appid": 806470, + "normalized_name": "archery blast" + }, + { + "appid": 806480, + "normalized_name": "blood moon the last stand" + }, + { + "appid": 806490, + "normalized_name": "as we know it" + }, + { + "appid": 806510, + "normalized_name": "her lie i tried to believe" + }, + { + "appid": 806530, + "normalized_name": "unending dusk" + }, + { + "appid": 806540, + "normalized_name": "away from beauty" + }, + { + "appid": 806550, + "normalized_name": "existence" + }, + { + "appid": 806560, + "normalized_name": "vrでエミリアと異世界生活 膝枕&添寝編" + }, + { + "appid": 806580, + "normalized_name": "7th deep" + }, + { + "appid": 806600, + "normalized_name": "escape!" + }, + { + "appid": 806610, + "normalized_name": "trivia vault basketball trivia" + }, + { + "appid": 806650, + "normalized_name": "shields up! vr" + }, + { + "appid": 806670, + "normalized_name": "lanterns" + }, + { + "appid": 806720, + "normalized_name": "幻想四倍剣^2 悔悟棒の謎 / gensoyonbaiken^2" + }, + { + "appid": 806740, + "normalized_name": "fei duanmu vs kobayashi 端木斐 vs 小林正雪" + }, + { + "appid": 806750, + "normalized_name": "lovecraft tales" + }, + { + "appid": 806760, + "normalized_name": "departure" + }, + { + "appid": 806770, + "normalized_name": "noreload heroes" + }, + { + "appid": 806800, + "normalized_name": "hooligan vasja 2 journey through time" + }, + { + "appid": 806830, + "normalized_name": "horse world" + }, + { + "appid": 806840, + "normalized_name": "guiding hand vr" + }, + { + "appid": 806850, + "normalized_name": "amaze gears" + }, + { + "appid": 806860, + "normalized_name": "they are hundreds" + }, + { + "appid": 806880, + "normalized_name": "dj mole" + }, + { + "appid": 806900, + "normalized_name": "them bombs" + }, + { + "appid": 806910, + "normalized_name": "posthuman sanctuary" + }, + { + "appid": 806930, + "normalized_name": "castle secrets between day and night" + }, + { + "appid": 806940, + "normalized_name": "so long grandma" + }, + { + "appid": 806950, + "normalized_name": "victory at sea pacific" + }, + { + "appid": 806960, + "normalized_name": "dr. cares amy's pet clinic" + }, + { + "appid": 806970, + "normalized_name": "loader" + }, + { + "appid": 806990, + "normalized_name": "everhero the fantasy shooter" + }, + { + "appid": 807050, + "normalized_name": "scrash" + }, + { + "appid": 807060, + "normalized_name": "void monsters spring city tales" + }, + { + "appid": 807070, + "normalized_name": "attack of the gigant zombie vs unity chan" + }, + { + "appid": 807120, + "normalized_name": "iratus lord of the dead" + }, + { + "appid": 807140, + "normalized_name": "marble run 2d" + }, + { + "appid": 807230, + "normalized_name": "silenced the house" + }, + { + "appid": 807310, + "normalized_name": "encompassed" + }, + { + "appid": 807340, + "normalized_name": "frank the miner" + }, + { + "appid": 807430, + "normalized_name": "vad virtually assured destruction" + }, + { + "appid": 807570, + "normalized_name": "volotic" + }, + { + "appid": 807690, + "normalized_name": "achilles" + }, + { + "appid": 807730, + "normalized_name": "draft day sports college basketball 2018" + }, + { + "appid": 807810, + "normalized_name": "stickman world" + }, + { + "appid": 807840, + "normalized_name": "fuse balls" + }, + { + "appid": 807870, + "normalized_name": "survival planet" + }, + { + "appid": 807900, + "normalized_name": "hellver" + }, + { + "appid": 807980, + "normalized_name": "elvenescape" + }, + { + "appid": 807990, + "normalized_name": "dangerspace" + }, + { + "appid": 808010, + "normalized_name": "critadel" + }, + { + "appid": 808020, + "normalized_name": "nightmare pop!" + }, + { + "appid": 808080, + "normalized_name": "racing 2d" + }, + { + "appid": 808090, + "normalized_name": "bury me my love" + }, + { + "appid": 808100, + "normalized_name": "galimulator" + }, + { + "appid": 808120, + "normalized_name": "anark.io" + }, + { + "appid": 808130, + "normalized_name": "eternal man village" + }, + { + "appid": 808160, + "normalized_name": "univercity" + }, + { + "appid": 808190, + "normalized_name": "super sonic racer" + }, + { + "appid": 808210, + "normalized_name": "the villa allison's diary" + }, + { + "appid": 808220, + "normalized_name": "scp 087 vr survivor" + }, + { + "appid": 808290, + "normalized_name": "runes of magic" + }, + { + "appid": 808360, + "normalized_name": "graveyard birds" + }, + { + "appid": 808420, + "normalized_name": "global soccer a management game 2018" + }, + { + "appid": 808450, + "normalized_name": "beefender" + }, + { + "appid": 808540, + "normalized_name": "gatari sand on teeth" + }, + { + "appid": 808580, + "normalized_name": "the lone chameleon" + }, + { + "appid": 808610, + "normalized_name": "run tavernquest" + }, + { + "appid": 808770, + "normalized_name": "headspun" + }, + { + "appid": 808800, + "normalized_name": "star singularity" + }, + { + "appid": 808810, + "normalized_name": "robo boop" + }, + { + "appid": 808870, + "normalized_name": "multiple views objects 多视体" + }, + { + "appid": 808880, + "normalized_name": "minitracks" + }, + { + "appid": 808910, + "normalized_name": "star wars episode i racer" + }, + { + "appid": 808960, + "normalized_name": "opie the defender" + }, + { + "appid": 808980, + "normalized_name": "rose seed replica" + }, + { + "appid": 808990, + "normalized_name": "roboworld tactics" + }, + { + "appid": 809000, + "normalized_name": "art of murder fbi confidential" + }, + { + "appid": 809010, + "normalized_name": "scrambled galaxy" + }, + { + "appid": 809020, + "normalized_name": "zeroranger" + }, + { + "appid": 809040, + "normalized_name": "hummingz retro arcade action revised" + }, + { + "appid": 809050, + "normalized_name": "detective holmes trap for the hunter. hidden objects. 探し物" + }, + { + "appid": 809060, + "normalized_name": "reveil" + }, + { + "appid": 809070, + "normalized_name": "dreamily" + }, + { + "appid": 809080, + "normalized_name": "nanoui" + }, + { + "appid": 809090, + "normalized_name": "evilvevil" + }, + { + "appid": 809140, + "normalized_name": "cliff empire" + }, + { + "appid": 809150, + "normalized_name": "tesseract vr" + }, + { + "appid": 809180, + "normalized_name": "district 112 incident bowling alley" + }, + { + "appid": 809200, + "normalized_name": "triggered" + }, + { + "appid": 809210, + "normalized_name": "lifez survival" + }, + { + "appid": 809220, + "normalized_name": "aliensurvival" + }, + { + "appid": 809230, + "normalized_name": "unity of command ii" + }, + { + "appid": 809240, + "normalized_name": "vandals" + }, + { + "appid": 809250, + "normalized_name": "bekkouame" + }, + { + "appid": 809310, + "normalized_name": "sipho" + }, + { + "appid": 809320, + "normalized_name": "silent tweets" + }, + { + "appid": 809330, + "normalized_name": "destiny of light" + }, + { + "appid": 809340, + "normalized_name": "extreme school driving simulator" + }, + { + "appid": 809360, + "normalized_name": "cosmic snake 8473/3671(hamlets)" + }, + { + "appid": 809410, + "normalized_name": "the take" + }, + { + "appid": 809430, + "normalized_name": "the floor is lava" + }, + { + "appid": 809440, + "normalized_name": "protolife" + }, + { + "appid": 809450, + "normalized_name": "❂ hexaluga ❂ witch hunter's travelling castle ♉" + }, + { + "appid": 809460, + "normalized_name": "earth muncher" + }, + { + "appid": 809470, + "normalized_name": "survivor island" + }, + { + "appid": 809490, + "normalized_name": "infernales circles of hell" + }, + { + "appid": 809500, + "normalized_name": "brazilian root" + }, + { + "appid": 809530, + "normalized_name": "hypergate" + }, + { + "appid": 809540, + "normalized_name": "mechs v kaijus tower defense" + }, + { + "appid": 809550, + "normalized_name": "death from unknown survival" + }, + { + "appid": 809570, + "normalized_name": "ignis avis venatio" + }, + { + "appid": 809580, + "normalized_name": "rams" + }, + { + "appid": 809610, + "normalized_name": "yacht simulator vr" + }, + { + "appid": 809640, + "normalized_name": "尺子和橡皮" + }, + { + "appid": 809680, + "normalized_name": "panzer hearts war visual novel" + }, + { + "appid": 809700, + "normalized_name": "cuberun" + }, + { + "appid": 809720, + "normalized_name": "rescue hq the tycoon" + }, + { + "appid": 809730, + "normalized_name": "fishery" + }, + { + "appid": 809760, + "normalized_name": "jungleshoot" + }, + { + "appid": 809770, + "normalized_name": "deerhunterx" + }, + { + "appid": 809780, + "normalized_name": "thegunrunner" + }, + { + "appid": 809790, + "normalized_name": "nightmare simulator" + }, + { + "appid": 809800, + "normalized_name": "thewraithtrails" + }, + { + "appid": 809830, + "normalized_name": "china vs roman" + }, + { + "appid": 809840, + "normalized_name": "anime show 动漫时装秀" + }, + { + "appid": 809850, + "normalized_name": "sudoku zenkai / 数独全卡" + }, + { + "appid": 809870, + "normalized_name": "ninjin clash of carrots" + }, + { + "appid": 809880, + "normalized_name": "degrees of separation" + }, + { + "appid": 809890, + "normalized_name": "shining resonance refrain" + }, + { + "appid": 809900, + "normalized_name": "calvin tucker's farm animal racing" + }, + { + "appid": 809950, + "normalized_name": "asemblance oversight" + }, + { + "appid": 810000, + "normalized_name": "manaya" + }, + { + "appid": 810030, + "normalized_name": "valdenses em busca da verdade" + }, + { + "appid": 810040, + "normalized_name": "swords 'n magic and stuff" + }, + { + "appid": 810050, + "normalized_name": "starbucket" + }, + { + "appid": 810060, + "normalized_name": "beautiful bricks" + }, + { + "appid": 810190, + "normalized_name": "zombie town online" + }, + { + "appid": 810200, + "normalized_name": "blue." + }, + { + "appid": 810220, + "normalized_name": "faucet vr" + }, + { + "appid": 810230, + "normalized_name": "traum" + }, + { + "appid": 810250, + "normalized_name": "racing game" + }, + { + "appid": 810330, + "normalized_name": "fast food rampage" + }, + { + "appid": 810340, + "normalized_name": "world of islands" + }, + { + "appid": 810360, + "normalized_name": "masters of puzzle" + }, + { + "appid": 810420, + "normalized_name": "find the gnome" + }, + { + "appid": 810450, + "normalized_name": "the idiot's tale" + }, + { + "appid": 810460, + "normalized_name": "riverhill trials" + }, + { + "appid": 810470, + "normalized_name": "black dream plus" + }, + { + "appid": 810500, + "normalized_name": "powerbeatsvr vr fitness" + }, + { + "appid": 810510, + "normalized_name": "welcome back daddy" + }, + { + "appid": 810590, + "normalized_name": "area 86" + }, + { + "appid": 810610, + "normalized_name": "mission of hero" + }, + { + "appid": 810630, + "normalized_name": "paint it black" + }, + { + "appid": 810640, + "normalized_name": "radiis" + }, + { + "appid": 810650, + "normalized_name": "the next day after friday" + }, + { + "appid": 810660, + "normalized_name": "the office quest" + }, + { + "appid": 810670, + "normalized_name": "nalogi" + }, + { + "appid": 810680, + "normalized_name": "zombie murder" + }, + { + "appid": 810690, + "normalized_name": "colour box" + }, + { + "appid": 810700, + "normalized_name": "the final days blood dawn" + }, + { + "appid": 810720, + "normalized_name": "zombie murder hell arrives" + }, + { + "appid": 810740, + "normalized_name": "turtle lu" + }, + { + "appid": 810760, + "normalized_name": "starman's vr experience" + }, + { + "appid": 810770, + "normalized_name": "frog demon" + }, + { + "appid": 810780, + "normalized_name": "rain project a touhou fangame" + }, + { + "appid": 810800, + "normalized_name": "action alien tropical" + }, + { + "appid": 811030, + "normalized_name": "bloodstone" + }, + { + "appid": 811070, + "normalized_name": "眼中的世界 conviction" + }, + { + "appid": 811080, + "normalized_name": "total esports action manager" + }, + { + "appid": 811090, + "normalized_name": "ana the game" + }, + { + "appid": 811110, + "normalized_name": "blacksimulator" + }, + { + "appid": 811130, + "normalized_name": "forever space" + }, + { + "appid": 811160, + "normalized_name": "game of stones" + }, + { + "appid": 811180, + "normalized_name": "farm quest" + }, + { + "appid": 811190, + "normalized_name": "orion" + }, + { + "appid": 811250, + "normalized_name": "content creator simulator" + }, + { + "appid": 811270, + "normalized_name": "impulsion" + }, + { + "appid": 811290, + "normalized_name": "project pastorate" + }, + { + "appid": 811320, + "normalized_name": "jupiter hell" + }, + { + "appid": 811360, + "normalized_name": "archibald" + }, + { + "appid": 811440, + "normalized_name": "gripper's adventure" + }, + { + "appid": 811450, + "normalized_name": "dongo adventure" + }, + { + "appid": 811470, + "normalized_name": "immunity" + }, + { + "appid": 811480, + "normalized_name": "geography quiz" + }, + { + "appid": 811550, + "normalized_name": "mythbusters the game crazy experiments simulator" + }, + { + "appid": 811620, + "normalized_name": "organosphere" + }, + { + "appid": 811640, + "normalized_name": "divided soul theft" + }, + { + "appid": 811720, + "normalized_name": "outbreak the nightmare chronicles" + }, + { + "appid": 811760, + "normalized_name": "the last exterminator" + }, + { + "appid": 811790, + "normalized_name": "project plainsight" + }, + { + "appid": 811850, + "normalized_name": "samba shooter" + }, + { + "appid": 811870, + "normalized_name": "verlet swing" + }, + { + "appid": 811880, + "normalized_name": "close combat the bloody first" + }, + { + "appid": 811890, + "normalized_name": "perky little things" + }, + { + "appid": 811910, + "normalized_name": "mrs snake" + }, + { + "appid": 811940, + "normalized_name": "game of drones" + }, + { + "appid": 811950, + "normalized_name": "bloody faerie" + }, + { + "appid": 811970, + "normalized_name": "super dream dasher" + }, + { + "appid": 812040, + "normalized_name": "shortest trip to earth" + }, + { + "appid": 812060, + "normalized_name": "viarkanoid" + }, + { + "appid": 812070, + "normalized_name": "project nightmares case 36 henrietta kedward" + }, + { + "appid": 812090, + "normalized_name": "raw footage" + }, + { + "appid": 812100, + "normalized_name": "blake and mortimer the curse of the thirty denarii" + }, + { + "appid": 812110, + "normalized_name": "alice in wonderland hidden objects" + }, + { + "appid": 812140, + "normalized_name": "assassin's creed odyssey" + }, + { + "appid": 812160, + "normalized_name": "etherborn" + }, + { + "appid": 812170, + "normalized_name": "parkland" + }, + { + "appid": 812190, + "normalized_name": "miasma caves" + }, + { + "appid": 812360, + "normalized_name": "monsters of kanji" + }, + { + "appid": 812380, + "normalized_name": "flock of dogs" + }, + { + "appid": 812390, + "normalized_name": "torimodosu" + }, + { + "appid": 812410, + "normalized_name": "dimension of monster girls" + }, + { + "appid": 812430, + "normalized_name": "touch the devil vr(おさわり魔王vr)" + }, + { + "appid": 812450, + "normalized_name": "the m0rg vs keys" + }, + { + "appid": 812460, + "normalized_name": "air raid over britain" + }, + { + "appid": 812550, + "normalized_name": "the king's bird" + }, + { + "appid": 812560, + "normalized_name": "cross†channel steam" + }, + { + "appid": 812580, + "normalized_name": "chop it" + }, + { + "appid": 812590, + "normalized_name": "awakening of celestial" + }, + { + "appid": 812610, + "normalized_name": "escape architect vr" + }, + { + "appid": 812650, + "normalized_name": "data defense" + }, + { + "appid": 812740, + "normalized_name": "the plus point" + }, + { + "appid": 812770, + "normalized_name": "lunapark vr" + }, + { + "appid": 812780, + "normalized_name": "casterlords" + }, + { + "appid": 812810, + "normalized_name": "missed messages." + }, + { + "appid": 812840, + "normalized_name": "lugame lunchtime games club!" + }, + { + "appid": 812850, + "normalized_name": "outline" + }, + { + "appid": 812860, + "normalized_name": "genius calculator" + }, + { + "appid": 812870, + "normalized_name": "sentinels of freedom" + }, + { + "appid": 812890, + "normalized_name": "bifrost project" + }, + { + "appid": 812900, + "normalized_name": "bump bump bump" + }, + { + "appid": 812910, + "normalized_name": "zodiac legion" + }, + { + "appid": 812930, + "normalized_name": "strategic command classic wwii" + }, + { + "appid": 812940, + "normalized_name": "dear leader" + }, + { + "appid": 812960, + "normalized_name": "guilds of delenar" + }, + { + "appid": 812980, + "normalized_name": "postworld" + }, + { + "appid": 813020, + "normalized_name": "broken ties" + }, + { + "appid": 813030, + "normalized_name": "reverie a heroes tale" + }, + { + "appid": 813080, + "normalized_name": "circadian" + }, + { + "appid": 813110, + "normalized_name": "paralines the last paladin" + }, + { + "appid": 813150, + "normalized_name": "elevator ritual" + }, + { + "appid": 813170, + "normalized_name": "don't pray to satan" + }, + { + "appid": 813230, + "normalized_name": "animal well" + }, + { + "appid": 813250, + "normalized_name": "unicorn dungeon" + }, + { + "appid": 813260, + "normalized_name": "vector born" + }, + { + "appid": 813290, + "normalized_name": "this child of mine" + }, + { + "appid": 813300, + "normalized_name": "code cracker 代码破译者" + }, + { + "appid": 813310, + "normalized_name": "outsider strategist~異世界で軍師になる~" + }, + { + "appid": 813350, + "normalized_name": "ben 10 vr" + }, + { + "appid": 813370, + "normalized_name": "การิน ปริศนาคดีอาถรรพ์ the game ตอนพิธีเปลี่ยนชีพ" + }, + { + "appid": 813400, + "normalized_name": "在这个世界的尽头,你与我被遗忘的传说" + }, + { + "appid": 813440, + "normalized_name": "drillsvr" + }, + { + "appid": 813450, + "normalized_name": "barbearian" + }, + { + "appid": 813480, + "normalized_name": "general horse and the package of doom" + }, + { + "appid": 813530, + "normalized_name": "fpv freerider recharged" + }, + { + "appid": 813540, + "normalized_name": "scheming through the zombie apocalypse the beginning" + }, + { + "appid": 813590, + "normalized_name": "solas and the white winter" + }, + { + "appid": 813630, + "normalized_name": "supraland" + }, + { + "appid": 813650, + "normalized_name": "runefall" + }, + { + "appid": 813700, + "normalized_name": "sakura sadist" + }, + { + "appid": 813730, + "normalized_name": "fleet star v" + }, + { + "appid": 813780, + "normalized_name": "age of empires ii" + }, + { + "appid": 813860, + "normalized_name": "n.u.t.z." + }, + { + "appid": 813920, + "normalized_name": "oldtail" + }, + { + "appid": 813930, + "normalized_name": "revoke" + }, + { + "appid": 813970, + "normalized_name": "urban episode 1" + }, + { + "appid": 814000, + "normalized_name": "one piece odyssey" + }, + { + "appid": 814010, + "normalized_name": "ball driver" + }, + { + "appid": 814020, + "normalized_name": "quickshot" + }, + { + "appid": 814030, + "normalized_name": "queen's quest 4 sacred truce" + }, + { + "appid": 814200, + "normalized_name": "simple story alex" + }, + { + "appid": 814210, + "normalized_name": "搜索·迷城掠影/the phantom of the city" + }, + { + "appid": 814230, + "normalized_name": "slam land" + }, + { + "appid": 814300, + "normalized_name": "pigeons attack" + }, + { + "appid": 814320, + "normalized_name": "arkady survive" + }, + { + "appid": 814330, + "normalized_name": "skyfear" + }, + { + "appid": 814340, + "normalized_name": "ghoststory" + }, + { + "appid": 814360, + "normalized_name": "mythic ocean" + }, + { + "appid": 814370, + "normalized_name": "monster sanctuary" + }, + { + "appid": 814380, + "normalized_name": "sekiro shadows die twice goty" + }, + { + "appid": 814400, + "normalized_name": "battlewake" + }, + { + "appid": 814420, + "normalized_name": "tetralogical" + }, + { + "appid": 814480, + "normalized_name": "mini world creata" + }, + { + "appid": 814510, + "normalized_name": "1248" + }, + { + "appid": 814530, + "normalized_name": "death crown" + }, + { + "appid": 814540, + "normalized_name": "changed" + }, + { + "appid": 814550, + "normalized_name": "cherry island" + }, + { + "appid": 814560, + "normalized_name": "eat my shuriken and die!" + }, + { + "appid": 814570, + "normalized_name": "the great escape" + }, + { + "appid": 814580, + "normalized_name": "where time stood still" + }, + { + "appid": 814590, + "normalized_name": "caveman stories" + }, + { + "appid": 814600, + "normalized_name": "tunnel b1" + }, + { + "appid": 814610, + "normalized_name": "last rites" + }, + { + "appid": 814620, + "normalized_name": "central intelligence" + }, + { + "appid": 814630, + "normalized_name": "elf" + }, + { + "appid": 814640, + "normalized_name": "sleepwalker" + }, + { + "appid": 814650, + "normalized_name": "pushover" + }, + { + "appid": 814660, + "normalized_name": "the unintended consequences of curiosity" + }, + { + "appid": 814680, + "normalized_name": "unbound worlds apart" + }, + { + "appid": 814700, + "normalized_name": "larkin building by frank lloyd wright" + }, + { + "appid": 814710, + "normalized_name": "the rhys510 flash back" + }, + { + "appid": 814730, + "normalized_name": "rogue frontiers" + }, + { + "appid": 814740, + "normalized_name": "armored battle crew [world war 1] tank warfare and crew management simulator" + }, + { + "appid": 814770, + "normalized_name": "duder" + }, + { + "appid": 814790, + "normalized_name": "how we die" + }, + { + "appid": 814800, + "normalized_name": "boom fighters" + }, + { + "appid": 814870, + "normalized_name": "monads" + }, + { + "appid": 814880, + "normalized_name": "powerbots builders" + }, + { + "appid": 814890, + "normalized_name": "boxengine" + }, + { + "appid": 814900, + "normalized_name": "三国虎将传vr sanguo warriors vr" + }, + { + "appid": 814940, + "normalized_name": "" + }, + { + "appid": 814960, + "normalized_name": "blackbox" + }, + { + "appid": 814990, + "normalized_name": "super x chess" + }, + { + "appid": 815000, + "normalized_name": "tardy" + }, + { + "appid": 815010, + "normalized_name": "relaxicon" + }, + { + "appid": 815030, + "normalized_name": "skull feast" + }, + { + "appid": 815070, + "normalized_name": "the adventurous four" + }, + { + "appid": 815080, + "normalized_name": "hot mars 69" + }, + { + "appid": 815090, + "normalized_name": "lemuria" + }, + { + "appid": 815100, + "normalized_name": "bubli" + }, + { + "appid": 815110, + "normalized_name": "conc jump" + }, + { + "appid": 815150, + "normalized_name": "knight bewitched" + }, + { + "appid": 815170, + "normalized_name": "zombie world" + }, + { + "appid": 815210, + "normalized_name": "tiny tasy town" + }, + { + "appid": 815260, + "normalized_name": "lords of kingdoms" + }, + { + "appid": 815280, + "normalized_name": "crooked waters" + }, + { + "appid": 815290, + "normalized_name": "guards of the gate" + }, + { + "appid": 815300, + "normalized_name": "幻想英雄传 卡片对决" + }, + { + "appid": 815320, + "normalized_name": "catify vr" + }, + { + "appid": 815360, + "normalized_name": "stick war castle defence" + }, + { + "appid": 815370, + "normalized_name": "green hell" + }, + { + "appid": 815390, + "normalized_name": "psi cards" + }, + { + "appid": 815440, + "normalized_name": "time transit vr" + }, + { + "appid": 815450, + "normalized_name": "cardinal cross" + }, + { + "appid": 815480, + "normalized_name": "ratergy" + }, + { + "appid": 815540, + "normalized_name": "awakening the skyward castle collector's" + }, + { + "appid": 815550, + "normalized_name": "surface alone in the mist collector's" + }, + { + "appid": 815560, + "normalized_name": "dead reckoning the crescent case collector's" + }, + { + "appid": 815570, + "normalized_name": "witches' legacy hunter and the hunted collector's" + }, + { + "appid": 815580, + "normalized_name": "dark parables return of the salt princess collector's" + }, + { + "appid": 815620, + "normalized_name": "cyber escape" + }, + { + "appid": 815630, + "normalized_name": "majula frontier" + }, + { + "appid": 815660, + "normalized_name": "lucie" + }, + { + "appid": 815700, + "normalized_name": "consortya" + }, + { + "appid": 815730, + "normalized_name": "swingy sword" + }, + { + "appid": 815780, + "normalized_name": "pipe by bmx streets" + }, + { + "appid": 815800, + "normalized_name": "infecto" + }, + { + "appid": 815830, + "normalized_name": "space escape!" + }, + { + "appid": 815840, + "normalized_name": "sword mans" + }, + { + "appid": 815860, + "normalized_name": "reframed" + }, + { + "appid": 815950, + "normalized_name": "chocolate makes you happy 4" + }, + { + "appid": 815970, + "normalized_name": "mane" + }, + { + "appid": 816000, + "normalized_name": "face au train" + }, + { + "appid": 816030, + "normalized_name": "alice must find the key to escape (hidden objects)" + }, + { + "appid": 816040, + "normalized_name": "dot debugger" + }, + { + "appid": 816060, + "normalized_name": "kingdom clicker" + }, + { + "appid": 816070, + "normalized_name": "blunt force" + }, + { + "appid": 816080, + "normalized_name": "select hero / 究极勇者的选择传说" + }, + { + "appid": 816090, + "normalized_name": "space hulk deathwing enhanced" + }, + { + "appid": 816150, + "normalized_name": "hardway party" + }, + { + "appid": 816160, + "normalized_name": "score a goal 2 (physical football)" + }, + { + "appid": 816170, + "normalized_name": "spectrubes infinity" + }, + { + "appid": 816180, + "normalized_name": "zhmyshenko valery albertovich" + }, + { + "appid": 816190, + "normalized_name": "draw it!" + }, + { + "appid": 816200, + "normalized_name": "planet assault" + }, + { + "appid": 816210, + "normalized_name": "the balcony" + }, + { + "appid": 816240, + "normalized_name": "build wars" + }, + { + "appid": 816250, + "normalized_name": "jq dogs & cats" + }, + { + "appid": 816270, + "normalized_name": "sounds of verity" + }, + { + "appid": 816280, + "normalized_name": "amora" + }, + { + "appid": 816340, + "normalized_name": "kingdom rush origins tower defense" + }, + { + "appid": 816350, + "normalized_name": "the flood" + }, + { + "appid": 816380, + "normalized_name": "crazzers" + }, + { + "appid": 816400, + "normalized_name": "questlike" + }, + { + "appid": 816410, + "normalized_name": "go go poncho!" + }, + { + "appid": 816430, + "normalized_name": "radical relocation" + }, + { + "appid": 816490, + "normalized_name": "hidden paws" + }, + { + "appid": 816500, + "normalized_name": "micro pico racers" + }, + { + "appid": 816550, + "normalized_name": "gallows" + }, + { + "appid": 816580, + "normalized_name": "love obsession" + }, + { + "appid": 816590, + "normalized_name": "finalfire" + }, + { + "appid": 816600, + "normalized_name": "丰裕之角 不可思议之物居住的小镇" + }, + { + "appid": 816630, + "normalized_name": "monkey king master of the clouds | 中華大仙" + }, + { + "appid": 816650, + "normalized_name": "armor contest" + }, + { + "appid": 816670, + "normalized_name": "slayer of traitors" + }, + { + "appid": 816710, + "normalized_name": "gray cat" + }, + { + "appid": 816720, + "normalized_name": "bugs must die / 异星特勤队" + }, + { + "appid": 816730, + "normalized_name": "headon!" + }, + { + "appid": 816760, + "normalized_name": "stickman fidget spinner rush" + }, + { + "appid": 816770, + "normalized_name": "the four colour theorem" + }, + { + "appid": 816810, + "normalized_name": "unlight schizochronicle" + }, + { + "appid": 816830, + "normalized_name": "varius" + }, + { + "appid": 816840, + "normalized_name": "night of the shrub part 1" + }, + { + "appid": 816850, + "normalized_name": "stardust origins" + }, + { + "appid": 816870, + "normalized_name": "kill 'em all" + }, + { + "appid": 816930, + "normalized_name": "production sound / 产声" + }, + { + "appid": 816990, + "normalized_name": "dead dust" + }, + { + "appid": 817020, + "normalized_name": "unholy" + }, + { + "appid": 817110, + "normalized_name": "bitcoin vs brain" + }, + { + "appid": 817120, + "normalized_name": "hammy" + }, + { + "appid": 817150, + "normalized_name": "factory pirates" + }, + { + "appid": 817160, + "normalized_name": "scary defense" + }, + { + "appid": 817200, + "normalized_name": "nautical life" + }, + { + "appid": 817220, + "normalized_name": "the forestale" + }, + { + "appid": 817230, + "normalized_name": "acid spy" + }, + { + "appid": 817250, + "normalized_name": "kill him! online wars" + }, + { + "appid": 817360, + "normalized_name": "the outer rim survivor" + }, + { + "appid": 817370, + "normalized_name": "marching simulator" + }, + { + "appid": 817390, + "normalized_name": "age of giants" + }, + { + "appid": 817410, + "normalized_name": "sushiparty" + }, + { + "appid": 817440, + "normalized_name": "angelshooter" + }, + { + "appid": 817460, + "normalized_name": "sea dogs caribbean tales" + }, + { + "appid": 817470, + "normalized_name": "toazzle" + }, + { + "appid": 817510, + "normalized_name": "golfing over it with alva majo" + }, + { + "appid": 817530, + "normalized_name": "mercury race" + }, + { + "appid": 817540, + "normalized_name": "spellforce 3 soul harvest" + }, + { + "appid": 817620, + "normalized_name": "gingerbread story" + }, + { + "appid": 817630, + "normalized_name": "island tribe 3" + }, + { + "appid": 817640, + "normalized_name": "adelantado 4 aztec skulls" + }, + { + "appid": 817660, + "normalized_name": "soul smith of the kingdom" + }, + { + "appid": 817680, + "normalized_name": "real drift" + }, + { + "appid": 817710, + "normalized_name": "vridnix" + }, + { + "appid": 817720, + "normalized_name": "cricket captain 2018" + }, + { + "appid": 817770, + "normalized_name": "30 seconds to jail" + }, + { + "appid": 817800, + "normalized_name": "overlook trail" + }, + { + "appid": 817820, + "normalized_name": "the \"quiet please!\" collection" + }, + { + "appid": 817840, + "normalized_name": "max gentlemen sexy business!" + }, + { + "appid": 817860, + "normalized_name": "perceptions of the dead 2" + }, + { + "appid": 817890, + "normalized_name": "paleocalypse" + }, + { + "appid": 817920, + "normalized_name": "no love" + }, + { + "appid": 817950, + "normalized_name": "naturallandscape three gorges (自然景观系列 长江三峡)" + }, + { + "appid": 817970, + "normalized_name": "high noom vr" + }, + { + "appid": 817980, + "normalized_name": "murderwave digital slaughter" + }, + { + "appid": 818010, + "normalized_name": "iaido" + }, + { + "appid": 818030, + "normalized_name": "alicia quatermain 3 the mystery of the flaming gold" + }, + { + "appid": 818050, + "normalized_name": "wormster dash" + }, + { + "appid": 818060, + "normalized_name": "super saurio fly jurassic" + }, + { + "appid": 818070, + "normalized_name": "draoi" + }, + { + "appid": 818090, + "normalized_name": "inner riddle" + }, + { + "appid": 818140, + "normalized_name": "stay safe" + }, + { + "appid": 818150, + "normalized_name": "retro hacker" + }, + { + "appid": 818210, + "normalized_name": "indie pogo" + }, + { + "appid": 818220, + "normalized_name": "fatal stormer" + }, + { + "appid": 818240, + "normalized_name": "fix race" + }, + { + "appid": 818320, + "normalized_name": "lego the incredibles" + }, + { + "appid": 818350, + "normalized_name": "tenkyu" + }, + { + "appid": 818360, + "normalized_name": "wildbus" + }, + { + "appid": 818370, + "normalized_name": "spadyssey" + }, + { + "appid": 818380, + "normalized_name": "seasonal soccer" + }, + { + "appid": 818390, + "normalized_name": "the deer" + }, + { + "appid": 818400, + "normalized_name": "starway vr" + }, + { + "appid": 818410, + "normalized_name": "space hole 2018" + }, + { + "appid": 818420, + "normalized_name": "囧之国" + }, + { + "appid": 818430, + "normalized_name": "burningbridges vr" + }, + { + "appid": 818440, + "normalized_name": "forgotten places lost circus" + }, + { + "appid": 818480, + "normalized_name": "eternal man mountain" + }, + { + "appid": 818500, + "normalized_name": "colorzzle" + }, + { + "appid": 818520, + "normalized_name": "builders of egypt" + }, + { + "appid": 818530, + "normalized_name": "8 ball" + }, + { + "appid": 818570, + "normalized_name": "zombie desperation" + }, + { + "appid": 818580, + "normalized_name": "shapestorm" + }, + { + "appid": 818590, + "normalized_name": "nano nebula" + }, + { + "appid": 818610, + "normalized_name": "the great gaias" + }, + { + "appid": 818620, + "normalized_name": "music boy 3d" + }, + { + "appid": 818630, + "normalized_name": "secrets of godhelm riverfall" + }, + { + "appid": 818640, + "normalized_name": "alien invasion 3d" + }, + { + "appid": 818650, + "normalized_name": "evil cogs" + }, + { + "appid": 818670, + "normalized_name": "save snegurochka!" + }, + { + "appid": 818710, + "normalized_name": "galactic tanks" + }, + { + "appid": 818730, + "normalized_name": "tower climber" + }, + { + "appid": 818760, + "normalized_name": "woodways" + }, + { + "appid": 818780, + "normalized_name": "scrunk" + }, + { + "appid": 818790, + "normalized_name": "stunt hill" + }, + { + "appid": 818800, + "normalized_name": "merrily perilly" + }, + { + "appid": 818830, + "normalized_name": "asteroid deflector xl" + }, + { + "appid": 818860, + "normalized_name": "beyond the sky" + }, + { + "appid": 818890, + "normalized_name": "box maze extreme" + }, + { + "appid": 818910, + "normalized_name": "the silent islands" + }, + { + "appid": 818940, + "normalized_name": "oakwood academy of spells and sorcery" + }, + { + "appid": 818950, + "normalized_name": "space slingshot vr" + }, + { + "appid": 818960, + "normalized_name": "tayal" + }, + { + "appid": 818990, + "normalized_name": "hotel spring" + }, + { + "appid": 819020, + "normalized_name": "zanki zero last beginning" + }, + { + "appid": 819030, + "normalized_name": "steins;gate elite" + }, + { + "appid": 819040, + "normalized_name": "ashi lake of light" + }, + { + "appid": 819060, + "normalized_name": "red rover" + }, + { + "appid": 819070, + "normalized_name": "the unknown city (horror begins now.....episode 1)" + }, + { + "appid": 819090, + "normalized_name": "pixel caveman" + }, + { + "appid": 819160, + "normalized_name": "aliens are rude!" + }, + { + "appid": 819190, + "normalized_name": "undead citadel" + }, + { + "appid": 819210, + "normalized_name": "the president" + }, + { + "appid": 819220, + "normalized_name": "yuso" + }, + { + "appid": 819230, + "normalized_name": "gothicc breaker" + }, + { + "appid": 819260, + "normalized_name": "feudal lords" + }, + { + "appid": 819270, + "normalized_name": "justice legion" + }, + { + "appid": 819280, + "normalized_name": "zamb! endless extermination" + }, + { + "appid": 819330, + "normalized_name": "quaddro 2" + }, + { + "appid": 819370, + "normalized_name": "battle of cubes" + }, + { + "appid": 819440, + "normalized_name": "hammer world dimension traveler" + }, + { + "appid": 819460, + "normalized_name": "metal shell neon pulse" + }, + { + "appid": 819470, + "normalized_name": "trainpunk run" + }, + { + "appid": 819480, + "normalized_name": "pizza titan ultra" + }, + { + "appid": 819520, + "normalized_name": "star souls" + }, + { + "appid": 819550, + "normalized_name": "cheese maze" + }, + { + "appid": 819560, + "normalized_name": "turbot racing" + }, + { + "appid": 819630, + "normalized_name": "basketball classics" + }, + { + "appid": 819640, + "normalized_name": "crypto quest" + }, + { + "appid": 819650, + "normalized_name": "bitcoin" + }, + { + "appid": 819660, + "normalized_name": "infinity challenge" + }, + { + "appid": 819670, + "normalized_name": "wall walker" + }, + { + "appid": 819730, + "normalized_name": "rounders (arena)" + }, + { + "appid": 819740, + "normalized_name": "deadly delivery" + }, + { + "appid": 819780, + "normalized_name": "the singularity wish" + }, + { + "appid": 819790, + "normalized_name": "laplace:拉普拉斯的神子" + }, + { + "appid": 819800, + "normalized_name": "untouchable" + }, + { + "appid": 819870, + "normalized_name": "7 days in dream 光尘" + }, + { + "appid": 819880, + "normalized_name": "sshield reborn" + }, + { + "appid": 819940, + "normalized_name": "rum ram" + }, + { + "appid": 819950, + "normalized_name": "archer's story" + }, + { + "appid": 819980, + "normalized_name": "brief battles" + }, + { + "appid": 820020, + "normalized_name": "alder's blood" + }, + { + "appid": 820030, + "normalized_name": "picross fairytale nonogram red riding hood secret" + }, + { + "appid": 820040, + "normalized_name": "picross fairytale legend of the mermaid" + }, + { + "appid": 820070, + "normalized_name": "cube universe" + }, + { + "appid": 820090, + "normalized_name": "solitaire knights" + }, + { + "appid": 820170, + "normalized_name": "crazy maze" + }, + { + "appid": 820190, + "normalized_name": "forward" + }, + { + "appid": 820210, + "normalized_name": "ashi wash" + }, + { + "appid": 820240, + "normalized_name": "save one more" + }, + { + "appid": 820250, + "normalized_name": "trial of the gods" + }, + { + "appid": 820300, + "normalized_name": "crypto girl the visual novel" + }, + { + "appid": 820310, + "normalized_name": "truth of falchion" + }, + { + "appid": 820320, + "normalized_name": "word typing game" + }, + { + "appid": 820380, + "normalized_name": "russian prisoner vs nazi zombies" + }, + { + "appid": 820400, + "normalized_name": "shrouded in sanity freebirth" + }, + { + "appid": 820480, + "normalized_name": "warriors of titus" + }, + { + "appid": 820500, + "normalized_name": "tisnart shapes" + }, + { + "appid": 820510, + "normalized_name": "camp w" + }, + { + "appid": 820520, + "normalized_name": "deceive inc." + }, + { + "appid": 820530, + "normalized_name": "stardust vr" + }, + { + "appid": 820540, + "normalized_name": "bloodroots" + }, + { + "appid": 820570, + "normalized_name": "exterminate the world 灭世vr" + }, + { + "appid": 820600, + "normalized_name": "rethink | evolved 2" + }, + { + "appid": 820610, + "normalized_name": "ages of mages the last keeper" + }, + { + "appid": 820620, + "normalized_name": "spooky ghosts dot com" + }, + { + "appid": 820630, + "normalized_name": "metal wolf chaos xd" + }, + { + "appid": 820640, + "normalized_name": "aqua lungers" + }, + { + "appid": 820660, + "normalized_name": "future city coaster" + }, + { + "appid": 820680, + "normalized_name": "higher ground" + }, + { + "appid": 820690, + "normalized_name": "zyternion" + }, + { + "appid": 820700, + "normalized_name": "free road" + }, + { + "appid": 820710, + "normalized_name": "mogic" + }, + { + "appid": 820730, + "normalized_name": "adventure of a lifetime" + }, + { + "appid": 820760, + "normalized_name": "tactics & strategy master joan of arc" + }, + { + "appid": 820780, + "normalized_name": "dungeon jump 地牢跳跃" + }, + { + "appid": 820790, + "normalized_name": "feast book one «family ties»" + }, + { + "appid": 820830, + "normalized_name": "the famous diver" + }, + { + "appid": 820840, + "normalized_name": "pre one" + }, + { + "appid": 820880, + "normalized_name": "helping hand" + }, + { + "appid": 820900, + "normalized_name": "ceress and orea" + }, + { + "appid": 820910, + "normalized_name": "last resort island" + }, + { + "appid": 820950, + "normalized_name": "boltzmann brain" + }, + { + "appid": 821020, + "normalized_name": "primus vita artemis" + }, + { + "appid": 821100, + "normalized_name": "the protocons" + }, + { + "appid": 821120, + "normalized_name": "poopy philosophy" + }, + { + "appid": 821180, + "normalized_name": "reliefs the time of the lemures" + }, + { + "appid": 821190, + "normalized_name": "minitime" + }, + { + "appid": 821230, + "normalized_name": "drink 'em" + }, + { + "appid": 821250, + "normalized_name": "flotsam" + }, + { + "appid": 821260, + "normalized_name": "light" + }, + { + "appid": 821320, + "normalized_name": "spaghet" + }, + { + "appid": 821330, + "normalized_name": "mob war nazi golds" + }, + { + "appid": 821360, + "normalized_name": "wallrunners" + }, + { + "appid": 821370, + "normalized_name": "mlb home run derby vr" + }, + { + "appid": 821380, + "normalized_name": "project scrapper" + }, + { + "appid": 821390, + "normalized_name": "achievement lurker another one bites the dust" + }, + { + "appid": 821400, + "normalized_name": "packed train" + }, + { + "appid": 821410, + "normalized_name": "yafti" + }, + { + "appid": 821430, + "normalized_name": "unknown scrolls" + }, + { + "appid": 821440, + "normalized_name": "gunnrunner" + }, + { + "appid": 821480, + "normalized_name": "space flowers" + }, + { + "appid": 821490, + "normalized_name": "battlecourt" + }, + { + "appid": 821500, + "normalized_name": "ria's hook" + }, + { + "appid": 821520, + "normalized_name": "trivia vault boxing trivia" + }, + { + "appid": 821550, + "normalized_name": "the dreamlands aisling's quest" + }, + { + "appid": 821560, + "normalized_name": "螢幕判官 behind the screen" + }, + { + "appid": 821570, + "normalized_name": "lethal lawns competitive mowing bloodsport" + }, + { + "appid": 821610, + "normalized_name": "my sunny resort" + }, + { + "appid": 821640, + "normalized_name": "floor kids" + }, + { + "appid": 821670, + "normalized_name": "horse farm" + }, + { + "appid": 821720, + "normalized_name": "20.000 leagues under the sea captain nemo" + }, + { + "appid": 821780, + "normalized_name": "last anime boy 2 hentai zombie hell" + }, + { + "appid": 821820, + "normalized_name": "farmer's fairy tale" + }, + { + "appid": 821840, + "normalized_name": "holy stick!" + }, + { + "appid": 821850, + "normalized_name": "old factory" + }, + { + "appid": 821860, + "normalized_name": "secret laboratory" + }, + { + "appid": 821870, + "normalized_name": "starball" + }, + { + "appid": 821880, + "normalized_name": "idol manager" + }, + { + "appid": 821910, + "normalized_name": "tower defense sudden attack" + }, + { + "appid": 821920, + "normalized_name": "oaoa off and on again" + }, + { + "appid": 822030, + "normalized_name": "dark drive" + }, + { + "appid": 822040, + "normalized_name": "super volley blast" + }, + { + "appid": 822070, + "normalized_name": "sas vs zombies" + }, + { + "appid": 822110, + "normalized_name": "magika land of fantasy" + }, + { + "appid": 822130, + "normalized_name": "flynn and freckles" + }, + { + "appid": 822140, + "normalized_name": "glaive brick breaker" + }, + { + "appid": 822150, + "normalized_name": "way home" + }, + { + "appid": 822190, + "normalized_name": "little bug" + }, + { + "appid": 822240, + "normalized_name": "animal jam" + }, + { + "appid": 822250, + "normalized_name": "gl1tch" + }, + { + "appid": 822270, + "normalized_name": "clash of magic spectator only" + }, + { + "appid": 822310, + "normalized_name": "bones 'n' bullets" + }, + { + "appid": 822440, + "normalized_name": "you are the apple of my eye 研磨时光" + }, + { + "appid": 822450, + "normalized_name": "exe mainframe" + }, + { + "appid": 822460, + "normalized_name": "trivia vault auto racing trivia" + }, + { + "appid": 822470, + "normalized_name": "属性与生活" + }, + { + "appid": 822510, + "normalized_name": "struggle for survival vr battle royale" + }, + { + "appid": 822530, + "normalized_name": "pukan bye bye" + }, + { + "appid": 822540, + "normalized_name": "escape from tethys" + }, + { + "appid": 822550, + "normalized_name": "2dgamemanias taken" + }, + { + "appid": 822610, + "normalized_name": "patternis" + }, + { + "appid": 822640, + "normalized_name": "squids odyssey" + }, + { + "appid": 822650, + "normalized_name": "typical nightmare" + }, + { + "appid": 822660, + "normalized_name": "abacus" + }, + { + "appid": 822680, + "normalized_name": "eternal man jump" + }, + { + "appid": 822700, + "normalized_name": "beer and skittls vr" + }, + { + "appid": 822710, + "normalized_name": "clash mutants vs pirates" + }, + { + "appid": 822720, + "normalized_name": "the amazing bernard" + }, + { + "appid": 822740, + "normalized_name": "flappyu vr" + }, + { + "appid": 822750, + "normalized_name": "try to seize me" + }, + { + "appid": 822760, + "normalized_name": "fureraba ~friend to lover~" + }, + { + "appid": 822800, + "normalized_name": "soulfire" + }, + { + "appid": 822810, + "normalized_name": "velvet guard" + }, + { + "appid": 822830, + "normalized_name": "ouroboros" + }, + { + "appid": 822840, + "normalized_name": "metal" + }, + { + "appid": 822870, + "normalized_name": "diary of defender" + }, + { + "appid": 822900, + "normalized_name": "trivia vault golf trivia" + }, + { + "appid": 822910, + "normalized_name": "mortal squad portal to hell" + }, + { + "appid": 822920, + "normalized_name": "ellen" + }, + { + "appid": 822930, + "normalized_name": "wolf tails" + }, + { + "appid": 822940, + "normalized_name": "tori" + }, + { + "appid": 822970, + "normalized_name": "block cat space golf" + }, + { + "appid": 822990, + "normalized_name": "spinnortality | cyberpunk management sim" + }, + { + "appid": 823040, + "normalized_name": "griefer" + }, + { + "appid": 823100, + "normalized_name": "peace duke" + }, + { + "appid": 823130, + "normalized_name": "totally accurate battlegrounds" + }, + { + "appid": 823160, + "normalized_name": "knife hit dash" + }, + { + "appid": 823180, + "normalized_name": "bubble strike" + }, + { + "appid": 823210, + "normalized_name": "lunar soil" + }, + { + "appid": 823230, + "normalized_name": "abrissprofi online" + }, + { + "appid": 823280, + "normalized_name": "ste save the earth" + }, + { + "appid": 823290, + "normalized_name": "pokka man" + }, + { + "appid": 823310, + "normalized_name": "alchemy classic" + }, + { + "appid": 823320, + "normalized_name": "crazyhouseplanes" + }, + { + "appid": 823330, + "normalized_name": "marginal act" + }, + { + "appid": 823340, + "normalized_name": "round mars" + }, + { + "appid": 823350, + "normalized_name": "hell's new world" + }, + { + "appid": 823360, + "normalized_name": "sloppy goat" + }, + { + "appid": 823370, + "normalized_name": "lucky vs aliens" + }, + { + "appid": 823420, + "normalized_name": "erinye demo" + }, + { + "appid": 823470, + "normalized_name": "glitchball" + }, + { + "appid": 823500, + "normalized_name": "boneworks" + }, + { + "appid": 823510, + "normalized_name": "precision sniping competitive" + }, + { + "appid": 823530, + "normalized_name": "aesthetic arena" + }, + { + "appid": 823550, + "normalized_name": "booty calls" + }, + { + "appid": 823580, + "normalized_name": "isoland 2 ashes of time" + }, + { + "appid": 823590, + "normalized_name": "slug slasher" + }, + { + "appid": 823600, + "normalized_name": "battle brawlers" + }, + { + "appid": 823610, + "normalized_name": "dungeon of dragon knight" + }, + { + "appid": 823640, + "normalized_name": "gnomes garden lost king" + }, + { + "appid": 823650, + "normalized_name": "zombow" + }, + { + "appid": 823670, + "normalized_name": "hykee episode 1 underwater" + }, + { + "appid": 823690, + "normalized_name": "vr toon help me (살려주세요)" + }, + { + "appid": 823700, + "normalized_name": "autocross madness" + }, + { + "appid": 823770, + "normalized_name": "labyrinths of atlantis" + }, + { + "appid": 823800, + "normalized_name": "kitty play" + }, + { + "appid": 823820, + "normalized_name": "fallen dungeons" + }, + { + "appid": 823830, + "normalized_name": "frightened beetles" + }, + { + "appid": 823840, + "normalized_name": "macrotis a mother's journey" + }, + { + "appid": 823910, + "normalized_name": "last evil" + }, + { + "appid": 823920, + "normalized_name": "kawaii rainbow portal" + }, + { + "appid": 823940, + "normalized_name": "virtual battlegrounds" + }, + { + "appid": 823950, + "normalized_name": "re legend" + }, + { + "appid": 824000, + "normalized_name": "hokko life" + }, + { + "appid": 824070, + "normalized_name": "objects in space" + }, + { + "appid": 824090, + "normalized_name": "tailquest defense" + }, + { + "appid": 824110, + "normalized_name": "before the blood" + }, + { + "appid": 824170, + "normalized_name": "relic raiders" + }, + { + "appid": 824190, + "normalized_name": "achievement clicker 2019" + }, + { + "appid": 824200, + "normalized_name": "the bell chimes for gold" + }, + { + "appid": 824220, + "normalized_name": "reflecting reflections" + }, + { + "appid": 824250, + "normalized_name": "bitbreaker" + }, + { + "appid": 824260, + "normalized_name": "show me what you got" + }, + { + "appid": 824270, + "normalized_name": "kovaak's" + }, + { + "appid": 824280, + "normalized_name": "monster jam steel titans" + }, + { + "appid": 824300, + "normalized_name": "dragon awaken" + }, + { + "appid": 824400, + "normalized_name": "havoc in heaven" + }, + { + "appid": 824430, + "normalized_name": "black circle" + }, + { + "appid": 824440, + "normalized_name": "雪色废都 abandoned snowy castle" + }, + { + "appid": 824450, + "normalized_name": "blockchain tycoon" + }, + { + "appid": 824460, + "normalized_name": "hellfront honeymoon" + }, + { + "appid": 824470, + "normalized_name": "my maid girlfriend" + }, + { + "appid": 824520, + "normalized_name": "nobody knows" + }, + { + "appid": 824540, + "normalized_name": "arrow ventura vr" + }, + { + "appid": 824550, + "normalized_name": "sd gundam battle alliance" + }, + { + "appid": 824570, + "normalized_name": "kine" + }, + { + "appid": 824580, + "normalized_name": "the last tower" + }, + { + "appid": 824600, + "normalized_name": "hrot" + }, + { + "appid": 824620, + "normalized_name": "jolly battle" + }, + { + "appid": 824640, + "normalized_name": "the witch's apprentice a magical mishap" + }, + { + "appid": 824690, + "normalized_name": "oroborus planes of the dead" + }, + { + "appid": 824720, + "normalized_name": "pure rock crawling" + }, + { + "appid": 824760, + "normalized_name": "deathtrap dungeon trilogy" + }, + { + "appid": 824770, + "normalized_name": "labirinto 2" + }, + { + "appid": 824830, + "normalized_name": "corpse party blood drive" + }, + { + "appid": 824840, + "normalized_name": "oi innkeep!" + }, + { + "appid": 824850, + "normalized_name": "some distant memory" + }, + { + "appid": 824880, + "normalized_name": "charlotte" + }, + { + "appid": 824900, + "normalized_name": "fallen empires" + }, + { + "appid": 825000, + "normalized_name": "temptation" + }, + { + "appid": 825060, + "normalized_name": "watch over christmas" + }, + { + "appid": 825100, + "normalized_name": "redshift vr" + }, + { + "appid": 825110, + "normalized_name": "space drift squad" + }, + { + "appid": 825160, + "normalized_name": "lollihop" + }, + { + "appid": 825170, + "normalized_name": "porcuball" + }, + { + "appid": 825210, + "normalized_name": "donut shop" + }, + { + "appid": 825240, + "normalized_name": "elude" + }, + { + "appid": 825300, + "normalized_name": "to trust an incubus" + }, + { + "appid": 825310, + "normalized_name": "dude simulator 2" + }, + { + "appid": 825320, + "normalized_name": "cyberrebeat the fifth domain of warfare" + }, + { + "appid": 825350, + "normalized_name": "downhill deceits" + }, + { + "appid": 825370, + "normalized_name": "a bloody party" + }, + { + "appid": 825450, + "normalized_name": "type" + }, + { + "appid": 825480, + "normalized_name": "eldr legacy" + }, + { + "appid": 825500, + "normalized_name": "dead ground arena" + }, + { + "appid": 825550, + "normalized_name": "blueberrynova" + }, + { + "appid": 825580, + "normalized_name": "grotoro" + }, + { + "appid": 825610, + "normalized_name": "viking's drakkars" + }, + { + "appid": 825620, + "normalized_name": "m.i.n.d." + }, + { + "appid": 825630, + "normalized_name": "steins;gate 0" + }, + { + "appid": 825730, + "normalized_name": "tzar the burden of the crown" + }, + { + "appid": 825970, + "normalized_name": "the mystery of devils house" + }, + { + "appid": 826000, + "normalized_name": "masked forces 3" + }, + { + "appid": 826010, + "normalized_name": "jq chemistry" + }, + { + "appid": 826020, + "normalized_name": "zombie teacher" + }, + { + "appid": 826030, + "normalized_name": "brainpower" + }, + { + "appid": 826040, + "normalized_name": "sacred stones" + }, + { + "appid": 826050, + "normalized_name": "chime sharp game composer" + }, + { + "appid": 826100, + "normalized_name": "find someone else" + }, + { + "appid": 826160, + "normalized_name": "butcherboy" + }, + { + "appid": 826170, + "normalized_name": "laser ball" + }, + { + "appid": 826180, + "normalized_name": "eonia" + }, + { + "appid": 826230, + "normalized_name": "concluse" + }, + { + "appid": 826270, + "normalized_name": "hellbreath" + }, + { + "appid": 826300, + "normalized_name": "monochromaniacs" + }, + { + "appid": 826370, + "normalized_name": "spirits of mystery the silver arrow collector's" + }, + { + "appid": 826380, + "normalized_name": "dark canvas a murder exposed collector's" + }, + { + "appid": 826420, + "normalized_name": "dark romance heart of the beast collector's" + }, + { + "appid": 826430, + "normalized_name": "twilight phenomena the incredible show collector's" + }, + { + "appid": 826450, + "normalized_name": "paws 'n claws vr" + }, + { + "appid": 826460, + "normalized_name": "the road to hades" + }, + { + "appid": 826470, + "normalized_name": "nummels" + }, + { + "appid": 826480, + "normalized_name": "vr benchmark kanojo" + }, + { + "appid": 826540, + "normalized_name": "audio trip" + }, + { + "appid": 826550, + "normalized_name": "golf cart drive" + }, + { + "appid": 826590, + "normalized_name": "kmenta" + }, + { + "appid": 826600, + "normalized_name": "i am not a monster first contact" + }, + { + "appid": 826610, + "normalized_name": "max mozart" + }, + { + "appid": 826630, + "normalized_name": "iron harvest" + }, + { + "appid": 826640, + "normalized_name": "earthlock 2" + }, + { + "appid": 826660, + "normalized_name": "rosette and words" + }, + { + "appid": 826740, + "normalized_name": "rise of the slime" + }, + { + "appid": 826810, + "normalized_name": "floor by floor" + }, + { + "appid": 826930, + "normalized_name": "the capture worlds" + }, + { + "appid": 826940, + "normalized_name": "maid of sker" + }, + { + "appid": 827000, + "normalized_name": "celtic kings rage of war" + }, + { + "appid": 827050, + "normalized_name": "rising kingdoms" + }, + { + "appid": 827100, + "normalized_name": "aladin & the enchanted lamp" + }, + { + "appid": 827110, + "normalized_name": "the three musketeers d'artagnan & the 12 jewels" + }, + { + "appid": 827120, + "normalized_name": "les misérables cosette's fate" + }, + { + "appid": 827130, + "normalized_name": "les misérables jean valjean" + }, + { + "appid": 827170, + "normalized_name": "flicksync mad hatter vr" + }, + { + "appid": 827210, + "normalized_name": "death carnival" + }, + { + "appid": 827220, + "normalized_name": "overclocked the aclockalypse" + }, + { + "appid": 827270, + "normalized_name": "bounty hunter space detective" + }, + { + "appid": 827280, + "normalized_name": "school fab lab vr" + }, + { + "appid": 827290, + "normalized_name": "secret little haven" + }, + { + "appid": 827330, + "normalized_name": "skydrift infinity" + }, + { + "appid": 827360, + "normalized_name": "armoured engines" + }, + { + "appid": 827410, + "normalized_name": "luminous combat" + }, + { + "appid": 827420, + "normalized_name": "coin pusher" + }, + { + "appid": 827450, + "normalized_name": "inksplosion" + }, + { + "appid": 827460, + "normalized_name": "tetra's escape" + }, + { + "appid": 827530, + "normalized_name": "current" + }, + { + "appid": 827540, + "normalized_name": "a penny for some motivation" + }, + { + "appid": 827560, + "normalized_name": "arena of the gods" + }, + { + "appid": 827580, + "normalized_name": "a.s.h." + }, + { + "appid": 827590, + "normalized_name": "nova wing ii" + }, + { + "appid": 827610, + "normalized_name": "dead end job" + }, + { + "appid": 827640, + "normalized_name": "trash story" + }, + { + "appid": 827770, + "normalized_name": "pathosis" + }, + { + "appid": 827780, + "normalized_name": "margot's word brain" + }, + { + "appid": 827830, + "normalized_name": "castle agony" + }, + { + "appid": 827860, + "normalized_name": "destined" + }, + { + "appid": 827880, + "normalized_name": "the endless mission" + }, + { + "appid": 827900, + "normalized_name": "bounty hunter stampede" + }, + { + "appid": 827920, + "normalized_name": "bounce" + }, + { + "appid": 827930, + "normalized_name": "strive" + }, + { + "appid": 827940, + "normalized_name": "marvellous inc." + }, + { + "appid": 827950, + "normalized_name": "inzo" + }, + { + "appid": 828030, + "normalized_name": "one ping only" + }, + { + "appid": 828050, + "normalized_name": "the mirror lied" + }, + { + "appid": 828070, + "normalized_name": "treasure hunter claire" + }, + { + "appid": 828080, + "normalized_name": "pong like" + }, + { + "appid": 828100, + "normalized_name": "synstasis" + }, + { + "appid": 828150, + "normalized_name": "win the game!" + }, + { + "appid": 828160, + "normalized_name": "x town 3d game" + }, + { + "appid": 828170, + "normalized_name": "pivross" + }, + { + "appid": 828190, + "normalized_name": "m.e.c.h.a. memory erasure control of hover attractor" + }, + { + "appid": 828220, + "normalized_name": "beta kaola budding game" + }, + { + "appid": 828230, + "normalized_name": "dungeons of the dead" + }, + { + "appid": 828240, + "normalized_name": "host" + }, + { + "appid": 828250, + "normalized_name": "stargazer program" + }, + { + "appid": 828270, + "normalized_name": "jelly bomber" + }, + { + "appid": 828320, + "normalized_name": "grid clash vr" + }, + { + "appid": 828350, + "normalized_name": "tomb towers" + }, + { + "appid": 828380, + "normalized_name": "death mark vol.1 死印之迷雾" + }, + { + "appid": 828410, + "normalized_name": "onibushi vr" + }, + { + "appid": 828420, + "normalized_name": "six second slam" + }, + { + "appid": 828440, + "normalized_name": "the other side of the screen" + }, + { + "appid": 828470, + "normalized_name": "rise of the savage" + }, + { + "appid": 828480, + "normalized_name": "minigolfpark vr" + }, + { + "appid": 828520, + "normalized_name": "metis one" + }, + { + "appid": 828540, + "normalized_name": "игра забытых богов. проснись / game of the forgotten gods. wake up" + }, + { + "appid": 828550, + "normalized_name": "trivia vault hockey trivia" + }, + { + "appid": 828570, + "normalized_name": "canvas" + }, + { + "appid": 828580, + "normalized_name": "neko nin exheart 2" + }, + { + "appid": 828590, + "normalized_name": "super weekend mode" + }, + { + "appid": 828600, + "normalized_name": "mama farm" + }, + { + "appid": 828640, + "normalized_name": "the stranger vr" + }, + { + "appid": 828660, + "normalized_name": "war of the zombie" + }, + { + "appid": 828680, + "normalized_name": "berserker's descent" + }, + { + "appid": 828710, + "normalized_name": "laws of machine" + }, + { + "appid": 828730, + "normalized_name": "dumb as wizards" + }, + { + "appid": 828740, + "normalized_name": "tales of the neon sea" + }, + { + "appid": 828760, + "normalized_name": "paper shakespeare the legend of rainbow hollow" + }, + { + "appid": 828770, + "normalized_name": "turbo soccer vr" + }, + { + "appid": 828860, + "normalized_name": "the stroke of midnight" + }, + { + "appid": 828890, + "normalized_name": "my golf" + }, + { + "appid": 828900, + "normalized_name": "the stillness of the wind" + }, + { + "appid": 828910, + "normalized_name": "amaze frozen" + }, + { + "appid": 828950, + "normalized_name": "howlville the dark past" + }, + { + "appid": 828960, + "normalized_name": "blonde driver" + }, + { + "appid": 828970, + "normalized_name": "hit the hive" + }, + { + "appid": 829040, + "normalized_name": "light borrower" + }, + { + "appid": 829080, + "normalized_name": "burst into" + }, + { + "appid": 829110, + "normalized_name": "lego dc super villains" + }, + { + "appid": 829120, + "normalized_name": "extreme dash reloaded" + }, + { + "appid": 829210, + "normalized_name": "aidol artificial intelligence idol" + }, + { + "appid": 829260, + "normalized_name": "morning never comes" + }, + { + "appid": 829280, + "normalized_name": "kaze and the wild masks" + }, + { + "appid": 829300, + "normalized_name": "bomber un" + }, + { + "appid": 829370, + "normalized_name": "nicky the home alone golf ball" + }, + { + "appid": 829400, + "normalized_name": "wren's journey" + }, + { + "appid": 829410, + "normalized_name": "project myriad" + }, + { + "appid": 829420, + "normalized_name": "fun hospital" + }, + { + "appid": 829490, + "normalized_name": "firebird steam version" + }, + { + "appid": 829560, + "normalized_name": "katie" + }, + { + "appid": 829590, + "normalized_name": "cryofall" + }, + { + "appid": 829610, + "normalized_name": "alice in vr" + }, + { + "appid": 829630, + "normalized_name": "skat stammtisch" + }, + { + "appid": 829660, + "normalized_name": "no time to relax" + }, + { + "appid": 829720, + "normalized_name": "the nature" + }, + { + "appid": 829750, + "normalized_name": "robots attack on vapeland" + }, + { + "appid": 829760, + "normalized_name": "synthrally" + }, + { + "appid": 829780, + "normalized_name": "baby's on fire 99 virgins" + }, + { + "appid": 829940, + "normalized_name": "russian world" + }, + { + "appid": 829980, + "normalized_name": "jagoondo" + }, + { + "appid": 830360, + "normalized_name": "platform challenge" + }, + { + "appid": 830370, + "normalized_name": "monster crown" + }, + { + "appid": 830410, + "normalized_name": "nogalious" + }, + { + "appid": 830430, + "normalized_name": "drowning" + }, + { + "appid": 830470, + "normalized_name": "mazebot" + }, + { + "appid": 830490, + "normalized_name": "achievement lurker you are going to have to work hard for these nuts" + }, + { + "appid": 830500, + "normalized_name": "the blobs fight" + }, + { + "appid": 830510, + "normalized_name": "bounty hunter ocean diver" + }, + { + "appid": 830520, + "normalized_name": "finger jets" + }, + { + "appid": 830560, + "normalized_name": "overturn final operation" + }, + { + "appid": 830580, + "normalized_name": "battlebeasts" + }, + { + "appid": 830590, + "normalized_name": "holy potatoes! a spy story?!" + }, + { + "appid": 830620, + "normalized_name": "storm of jigsaw puzzles 拼图风暴" + }, + { + "appid": 830630, + "normalized_name": "existential kitty cat rpg" + }, + { + "appid": 830640, + "normalized_name": "dayz tools" + }, + { + "appid": 830710, + "normalized_name": "the eerie inn" + }, + { + "appid": 830750, + "normalized_name": "poker simulator" + }, + { + "appid": 830810, + "normalized_name": "death game" + }, + { + "appid": 830820, + "normalized_name": "jets'n'guns 2" + }, + { + "appid": 830850, + "normalized_name": "dragon's eye" + }, + { + "appid": 830890, + "normalized_name": "infinite vector" + }, + { + "appid": 830980, + "normalized_name": "doodle date" + }, + { + "appid": 831050, + "normalized_name": "dolmen" + }, + { + "appid": 831060, + "normalized_name": "black jack story" + }, + { + "appid": 831070, + "normalized_name": "the cabinets of doctor arcana" + }, + { + "appid": 831090, + "normalized_name": "os path" + }, + { + "appid": 831100, + "normalized_name": "brother perro" + }, + { + "appid": 831110, + "normalized_name": "unconventional warfare" + }, + { + "appid": 831120, + "normalized_name": "space pilgrim academy year 2" + }, + { + "appid": 831230, + "normalized_name": "doors quest demo" + }, + { + "appid": 831250, + "normalized_name": "maxi pool masters vr" + }, + { + "appid": 831260, + "normalized_name": "keyboard guitar master" + }, + { + "appid": 831350, + "normalized_name": "hovercraft drive" + }, + { + "appid": 831450, + "normalized_name": "kolb antarctica experience" + }, + { + "appid": 831460, + "normalized_name": "voiceactressⅱ" + }, + { + "appid": 831470, + "normalized_name": "one dollar simulator" + }, + { + "appid": 831490, + "normalized_name": "draw near" + }, + { + "appid": 831540, + "normalized_name": "norilsk" + }, + { + "appid": 831560, + "normalized_name": "warriors orochi 4" + }, + { + "appid": 831570, + "normalized_name": "isoland" + }, + { + "appid": 831590, + "normalized_name": "vrq test" + }, + { + "appid": 831650, + "normalized_name": "chronus arc" + }, + { + "appid": 831660, + "normalized_name": "茂伸奇谈 happy end 合集版" + }, + { + "appid": 831670, + "normalized_name": "space hunt" + }, + { + "appid": 831680, + "normalized_name": "hero go" + }, + { + "appid": 831720, + "normalized_name": "emma the story" + }, + { + "appid": 831740, + "normalized_name": "circles of hell" + }, + { + "appid": 831770, + "normalized_name": "zombie derby" + }, + { + "appid": 831790, + "normalized_name": "geeste" + }, + { + "appid": 831810, + "normalized_name": "bane of asphodel" + }, + { + "appid": 831910, + "normalized_name": "croc's world construction kit" + }, + { + "appid": 831950, + "normalized_name": "infinite survival" + }, + { + "appid": 832020, + "normalized_name": "questery" + }, + { + "appid": 832080, + "normalized_name": "google spotlight stories back to the moon" + }, + { + "appid": 832130, + "normalized_name": "negative world" + }, + { + "appid": 832140, + "normalized_name": "infernal radiation" + }, + { + "appid": 832320, + "normalized_name": "mighty switch force! collection" + }, + { + "appid": 832360, + "normalized_name": "hotel magnate" + }, + { + "appid": 832370, + "normalized_name": "cubekiller" + }, + { + "appid": 832380, + "normalized_name": "reignman(掌控者)" + }, + { + "appid": 832420, + "normalized_name": "iced vr" + }, + { + "appid": 832430, + "normalized_name": "electric dreams" + }, + { + "appid": 832460, + "normalized_name": "bullet age" + }, + { + "appid": 832470, + "normalized_name": "season up" + }, + { + "appid": 832500, + "normalized_name": "3 minutes to midnight a comedy graphic adventure" + }, + { + "appid": 832510, + "normalized_name": "aerochopper" + }, + { + "appid": 832520, + "normalized_name": "灵文西游" + }, + { + "appid": 832530, + "normalized_name": "vr game brick of war 魔块战争" + }, + { + "appid": 832540, + "normalized_name": "art of murder hunt for the puppeteer" + }, + { + "appid": 832610, + "normalized_name": "corrupted" + }, + { + "appid": 832650, + "normalized_name": "royal adventure" + }, + { + "appid": 832680, + "normalized_name": "darts and friends" + }, + { + "appid": 832690, + "normalized_name": "stonetowers" + }, + { + "appid": 832710, + "normalized_name": "the 7th circle endless nightmare" + }, + { + "appid": 832720, + "normalized_name": "dungeon brewmaster" + }, + { + "appid": 832770, + "normalized_name": "age of fear the undead king gold" + }, + { + "appid": 832990, + "normalized_name": "apocalypse rider" + }, + { + "appid": 833010, + "normalized_name": "zombie forest 2" + }, + { + "appid": 833020, + "normalized_name": "wail of despair" + }, + { + "appid": 833030, + "normalized_name": "hypertrain" + }, + { + "appid": 833040, + "normalized_name": "hiveswap friendsim" + }, + { + "appid": 833060, + "normalized_name": "biologger" + }, + { + "appid": 833070, + "normalized_name": "arrowborn" + }, + { + "appid": 833090, + "normalized_name": "swords of gurrah" + }, + { + "appid": 833110, + "normalized_name": "the steadfast vr challenge" + }, + { + "appid": 833140, + "normalized_name": "supaplex" + }, + { + "appid": 833150, + "normalized_name": "hungry fish evolution" + }, + { + "appid": 833170, + "normalized_name": "burned land" + }, + { + "appid": 833180, + "normalized_name": "spaceship commander" + }, + { + "appid": 833230, + "normalized_name": "spitting z" + }, + { + "appid": 833260, + "normalized_name": "catanod" + }, + { + "appid": 833270, + "normalized_name": "citrouille sweet witches" + }, + { + "appid": 833300, + "normalized_name": "fantasyland" + }, + { + "appid": 833330, + "normalized_name": "hprz the syndrome" + }, + { + "appid": 833360, + "normalized_name": "star valor" + }, + { + "appid": 833370, + "normalized_name": "hexlab" + }, + { + "appid": 833390, + "normalized_name": "en tactico" + }, + { + "appid": 833400, + "normalized_name": "corral" + }, + { + "appid": 833440, + "normalized_name": "vera swings" + }, + { + "appid": 833470, + "normalized_name": "rabbit jigsaw puzzles" + }, + { + "appid": 833500, + "normalized_name": "thunder rally" + }, + { + "appid": 833510, + "normalized_name": "time skip" + }, + { + "appid": 833530, + "normalized_name": "make zombies great again" + }, + { + "appid": 833540, + "normalized_name": "the platformer gun" + }, + { + "appid": 833630, + "normalized_name": "starlight city" + }, + { + "appid": 833650, + "normalized_name": "dust n wheels" + }, + { + "appid": 833660, + "normalized_name": "grave prosperity part 1" + }, + { + "appid": 833670, + "normalized_name": "naughty study for exams with a ghost" + }, + { + "appid": 833690, + "normalized_name": "cubesc" + }, + { + "appid": 833700, + "normalized_name": "city bus simulator 2018" + }, + { + "appid": 833750, + "normalized_name": "syko swinger" + }, + { + "appid": 833760, + "normalized_name": "exploration pro" + }, + { + "appid": 833770, + "normalized_name": "couch party game night" + }, + { + "appid": 833800, + "normalized_name": "speed car fighter" + }, + { + "appid": 833810, + "normalized_name": "extreme formula championship" + }, + { + "appid": 833820, + "normalized_name": "mountain racing" + }, + { + "appid": 833870, + "normalized_name": "the unbreakable gumball" + }, + { + "appid": 833910, + "normalized_name": "overchunked" + }, + { + "appid": 833920, + "normalized_name": "meme machine" + }, + { + "appid": 833940, + "normalized_name": "vertigo fps" + }, + { + "appid": 833950, + "normalized_name": "risk system" + }, + { + "appid": 833960, + "normalized_name": "mr. grayscale" + }, + { + "appid": 833980, + "normalized_name": "dave" + }, + { + "appid": 833990, + "normalized_name": "stonewall penitentiary" + }, + { + "appid": 834000, + "normalized_name": "cross country skiing vr" + }, + { + "appid": 834030, + "normalized_name": "slamdunk vr" + }, + { + "appid": 834050, + "normalized_name": "sixgenerals | 六小将传说" + }, + { + "appid": 834100, + "normalized_name": "dungeon adventure" + }, + { + "appid": 834140, + "normalized_name": "blacksmith dark times" + }, + { + "appid": 834150, + "normalized_name": "glare1more" + }, + { + "appid": 834180, + "normalized_name": "#cutesnake 2" + }, + { + "appid": 834210, + "normalized_name": "clicker planet" + }, + { + "appid": 834280, + "normalized_name": "fishing sim world pro tour" + }, + { + "appid": 834320, + "normalized_name": "my mad road adventure racing & shooting" + }, + { + "appid": 834380, + "normalized_name": "cube zone" + }, + { + "appid": 834390, + "normalized_name": "king's heir rise to the throne" + }, + { + "appid": 834420, + "normalized_name": "rollingball unlimited world" + }, + { + "appid": 834440, + "normalized_name": "nameless" + }, + { + "appid": 834450, + "normalized_name": "roarr! the adventures of rampage rex" + }, + { + "appid": 834470, + "normalized_name": "zima uhodi!" + }, + { + "appid": 834530, + "normalized_name": "yakuza kiwami" + }, + { + "appid": 834580, + "normalized_name": "東方逆妙乱 ~ ephemeral unnatural balance" + }, + { + "appid": 834730, + "normalized_name": "crazy justice" + }, + { + "appid": 834740, + "normalized_name": "circle empires" + }, + { + "appid": 834750, + "normalized_name": "crucible falls together forever" + }, + { + "appid": 834760, + "normalized_name": "robot wants it all" + }, + { + "appid": 834790, + "normalized_name": "eggs all guns broken" + }, + { + "appid": 834800, + "normalized_name": "solseraph" + }, + { + "appid": 834880, + "normalized_name": "acro fs" + }, + { + "appid": 834910, + "normalized_name": "atlas" + }, + { + "appid": 834920, + "normalized_name": "operation osama bin laden" + }, + { + "appid": 834930, + "normalized_name": "bishi and the alien slime invasion!" + }, + { + "appid": 835040, + "normalized_name": "美少女夏日欢乐!" + }, + { + "appid": 835110, + "normalized_name": "america's retribution" + }, + { + "appid": 835130, + "normalized_name": "last stanza" + }, + { + "appid": 835430, + "normalized_name": "la mulana 2" + }, + { + "appid": 835440, + "normalized_name": "naturallandscape grand canyon (自然景观系列 美国大峡谷)" + }, + { + "appid": 835450, + "normalized_name": "neon force pushers" + }, + { + "appid": 835490, + "normalized_name": "deadly stigma" + }, + { + "appid": 835500, + "normalized_name": "烈焰战纪" + }, + { + "appid": 835510, + "normalized_name": "horror fish simulator" + }, + { + "appid": 835520, + "normalized_name": "dodge show" + }, + { + "appid": 835530, + "normalized_name": "魔物娘物语" + }, + { + "appid": 835560, + "normalized_name": "ancient rush 2" + }, + { + "appid": 835570, + "normalized_name": "conqueror's blade" + }, + { + "appid": 835600, + "normalized_name": "techwars deathmatch" + }, + { + "appid": 835620, + "normalized_name": "sneiroball" + }, + { + "appid": 835630, + "normalized_name": "all you can feed sushi bar" + }, + { + "appid": 835640, + "normalized_name": "dust and salt the battle for murk" + }, + { + "appid": 835650, + "normalized_name": "rising lords" + }, + { + "appid": 835660, + "normalized_name": "circle up" + }, + { + "appid": 835680, + "normalized_name": "intelligence dinosaurs" + }, + { + "appid": 835690, + "normalized_name": "city sweeper clean it fast!" + }, + { + "appid": 835700, + "normalized_name": "alice behind the mirror" + }, + { + "appid": 835710, + "normalized_name": "tactics maiden" + }, + { + "appid": 835720, + "normalized_name": "2260 vr" + }, + { + "appid": 835740, + "normalized_name": "hyperfighter boost mode on" + }, + { + "appid": 835770, + "normalized_name": "tony slopes" + }, + { + "appid": 835790, + "normalized_name": "datascape" + }, + { + "appid": 835800, + "normalized_name": "flailure" + }, + { + "appid": 835910, + "normalized_name": "above the fold" + }, + { + "appid": 835960, + "normalized_name": "the talos principle 2" + }, + { + "appid": 836010, + "normalized_name": "space challenge" + }, + { + "appid": 836080, + "normalized_name": "barrage / 铁幕" + }, + { + "appid": 836110, + "normalized_name": "time tenshi paradox episode 2" + }, + { + "appid": 836120, + "normalized_name": "hard way to heaven" + }, + { + "appid": 836230, + "normalized_name": "heavy blade" + }, + { + "appid": 836260, + "normalized_name": "call of bitcoin" + }, + { + "appid": 836280, + "normalized_name": "dynamite bunny catch the carrot" + }, + { + "appid": 836290, + "normalized_name": "achievement lurker ballad of the shimapan warrior king of panties" + }, + { + "appid": 836300, + "normalized_name": "humble pie" + }, + { + "appid": 836330, + "normalized_name": "the god" + }, + { + "appid": 836340, + "normalized_name": "qinoto" + }, + { + "appid": 836350, + "normalized_name": "heartbreak high a break up simulator" + }, + { + "appid": 836420, + "normalized_name": "beginner'sgame" + }, + { + "appid": 836440, + "normalized_name": "monsterxman inheritence to lust" + }, + { + "appid": 836450, + "normalized_name": "heaven will be mine" + }, + { + "appid": 836460, + "normalized_name": "etherian" + }, + { + "appid": 836470, + "normalized_name": "mage fort" + }, + { + "appid": 836480, + "normalized_name": "恋爱模拟器 love simulation" + }, + { + "appid": 836490, + "normalized_name": "月夜下的紅茶杯 ~ blacktea with moon" + }, + { + "appid": 836540, + "normalized_name": "viking brothers 2" + }, + { + "appid": 836550, + "normalized_name": "viking brothers 3" + }, + { + "appid": 836560, + "normalized_name": "viking brothers 4" + }, + { + "appid": 836580, + "normalized_name": "dead groundz" + }, + { + "appid": 836590, + "normalized_name": "stay cool kobayashi san! a river city ransom story" + }, + { + "appid": 836600, + "normalized_name": "alternate jake hunter daedalus the awakening of golden jazz" + }, + { + "appid": 836610, + "normalized_name": "jigsaw 360" + }, + { + "appid": 836640, + "normalized_name": "寄居隅怪奇事件簿 hermitage strange case files" + }, + { + "appid": 836690, + "normalized_name": "homestarvr" + }, + { + "appid": 836700, + "normalized_name": "doctor flow" + }, + { + "appid": 836760, + "normalized_name": "sorcery saga curse of the great curry god" + }, + { + "appid": 836770, + "normalized_name": "art of murder cards of destiny" + }, + { + "appid": 836850, + "normalized_name": "tiny tanks" + }, + { + "appid": 836860, + "normalized_name": "art of murder the secret files" + }, + { + "appid": 836880, + "normalized_name": "the berlin wall" + }, + { + "appid": 836940, + "normalized_name": "【scp】器関ノ彷徨 the will of a single tale 【demover.】" + }, + { + "appid": 837040, + "normalized_name": "redneck kentucky and the next generation chickens" + }, + { + "appid": 837090, + "normalized_name": "chronicles of mystery the tree of life" + }, + { + "appid": 837100, + "normalized_name": "chronicles of mystery the legend of the sacred treasure" + }, + { + "appid": 837110, + "normalized_name": "chronicles of mystery secret of the lost kingdom" + }, + { + "appid": 837180, + "normalized_name": "slamoids!" + }, + { + "appid": 837190, + "normalized_name": "tanglewood" + }, + { + "appid": 837200, + "normalized_name": "nethack legacy" + }, + { + "appid": 837210, + "normalized_name": "doodle god genesis secrets" + }, + { + "appid": 837220, + "normalized_name": "doodle tanks" + }, + { + "appid": 837240, + "normalized_name": "shopkeeper simulator vr refreshed" + }, + { + "appid": 837260, + "normalized_name": "roller coaster apocalypse vr" + }, + { + "appid": 837270, + "normalized_name": "tharn" + }, + { + "appid": 837280, + "normalized_name": "lost borderline" + }, + { + "appid": 837290, + "normalized_name": "blind mind" + }, + { + "appid": 837310, + "normalized_name": "telophase" + }, + { + "appid": 837330, + "normalized_name": "crimson shift" + }, + { + "appid": 837350, + "normalized_name": "king of the hat" + }, + { + "appid": 837390, + "normalized_name": "my zero trip" + }, + { + "appid": 837400, + "normalized_name": "fated kingdom" + }, + { + "appid": 837430, + "normalized_name": "flying aces navy pilot simulator" + }, + { + "appid": 837440, + "normalized_name": "minesweep" + }, + { + "appid": 837460, + "normalized_name": "batbarian testament of the primordials" + }, + { + "appid": 837470, + "normalized_name": "untitled goose game" + }, + { + "appid": 837500, + "normalized_name": "leder panzer" + }, + { + "appid": 837530, + "normalized_name": "dark ghost rpg" + }, + { + "appid": 837550, + "normalized_name": "bouncy butter ball" + }, + { + "appid": 837590, + "normalized_name": "operation thunderstorm" + }, + { + "appid": 837600, + "normalized_name": "the royal marines commando" + }, + { + "appid": 837610, + "normalized_name": "mary skelter nightmares" + }, + { + "appid": 837640, + "normalized_name": "tapsonic world champion vr" + }, + { + "appid": 837720, + "normalized_name": "tactical mind" + }, + { + "appid": 837780, + "normalized_name": "coin op kingdom" + }, + { + "appid": 837790, + "normalized_name": "around the world in 80 days" + }, + { + "appid": 837800, + "normalized_name": "red riding hood star crossed lovers" + }, + { + "appid": 837850, + "normalized_name": "photonic distress" + }, + { + "appid": 837880, + "normalized_name": "you suck at parking" + }, + { + "appid": 837900, + "normalized_name": "bitcoin trader" + }, + { + "appid": 837920, + "normalized_name": "abnormal world season one" + }, + { + "appid": 837930, + "normalized_name": "alone" + }, + { + "appid": 837940, + "normalized_name": "mobile forces" + }, + { + "appid": 837950, + "normalized_name": "mad carnage" + }, + { + "appid": 838010, + "normalized_name": "double cross" + }, + { + "appid": 838050, + "normalized_name": "the hero project open season" + }, + { + "appid": 838070, + "normalized_name": "the gametrekking omnibus" + }, + { + "appid": 838090, + "normalized_name": "king of peasants" + }, + { + "appid": 838100, + "normalized_name": "point" + }, + { + "appid": 838110, + "normalized_name": "hyperparasite" + }, + { + "appid": 838160, + "normalized_name": "trail breaking" + }, + { + "appid": 838180, + "normalized_name": "mechcorp" + }, + { + "appid": 838190, + "normalized_name": "hidden protector roadtrip (preface)" + }, + { + "appid": 838220, + "normalized_name": "endersite" + }, + { + "appid": 838240, + "normalized_name": "darkwinds" + }, + { + "appid": 838270, + "normalized_name": "grandpa" + }, + { + "appid": 838300, + "normalized_name": "xenocave" + }, + { + "appid": 838310, + "normalized_name": "bloodstained curse of the moon" + }, + { + "appid": 838340, + "normalized_name": "may" + }, + { + "appid": 838350, + "normalized_name": "太吾绘卷 the scroll of taiwu" + }, + { + "appid": 838360, + "normalized_name": "life goals" + }, + { + "appid": 838380, + "normalized_name": "dead or alive 6" + }, + { + "appid": 838390, + "normalized_name": "merry glade" + }, + { + "appid": 838410, + "normalized_name": "tabletop playground" + }, + { + "appid": 838440, + "normalized_name": "the great race" + }, + { + "appid": 838490, + "normalized_name": "theorem" + }, + { + "appid": 838540, + "normalized_name": "city escaper" + }, + { + "appid": 838620, + "normalized_name": "slappy ass" + }, + { + "appid": 838630, + "normalized_name": "deadliest catch the game" + }, + { + "appid": 838690, + "normalized_name": "unleashed" + }, + { + "appid": 838700, + "normalized_name": "azada ancient magic" + }, + { + "appid": 838730, + "normalized_name": "grim tales the stone queen collector's" + }, + { + "appid": 838740, + "normalized_name": "final cut the true escapade collector's" + }, + { + "appid": 838750, + "normalized_name": "shadow wolf mysteries cursed wedding collector's" + }, + { + "appid": 838790, + "normalized_name": "the devil's garden" + }, + { + "appid": 838840, + "normalized_name": "secret of harrow manor" + }, + { + "appid": 838940, + "normalized_name": "little marisa's disaster journey" + }, + { + "appid": 838990, + "normalized_name": "endhall" + }, + { + "appid": 839010, + "normalized_name": "real winners victoryball" + }, + { + "appid": 839020, + "normalized_name": "the rig a starmap to murder" + }, + { + "appid": 839030, + "normalized_name": "mad frost" + }, + { + "appid": 839040, + "normalized_name": "fasaria world ancients of moons + server" + }, + { + "appid": 839080, + "normalized_name": "draw chilly" + }, + { + "appid": 839090, + "normalized_name": "galaxy ball defender" + }, + { + "appid": 839130, + "normalized_name": "snowball saves summer" + }, + { + "appid": 839200, + "normalized_name": "spedv" + }, + { + "appid": 839210, + "normalized_name": "the land of the seazogs" + }, + { + "appid": 839230, + "normalized_name": "mr. sweet" + }, + { + "appid": 839240, + "normalized_name": "penny black" + }, + { + "appid": 839250, + "normalized_name": "三国英雄列传 (legendary heros in the three kingdoms)" + }, + { + "appid": 839260, + "normalized_name": "russian aye horror" + }, + { + "appid": 839280, + "normalized_name": "cartonfall" + }, + { + "appid": 839300, + "normalized_name": "legendary eleven epic football" + }, + { + "appid": 839310, + "normalized_name": "signal simulator" + }, + { + "appid": 839330, + "normalized_name": "catch me if you can" + }, + { + "appid": 839340, + "normalized_name": "sok min" + }, + { + "appid": 839350, + "normalized_name": "melordandek" + }, + { + "appid": 839370, + "normalized_name": "the story of gods 七神物语" + }, + { + "appid": 839410, + "normalized_name": "undead & beyond" + }, + { + "appid": 839420, + "normalized_name": "krampus is home" + }, + { + "appid": 839430, + "normalized_name": "flurius" + }, + { + "appid": 839450, + "normalized_name": "7'scarlet" + }, + { + "appid": 839460, + "normalized_name": "psycho squirrels" + }, + { + "appid": 839500, + "normalized_name": "血战夹皮沟" + }, + { + "appid": 839520, + "normalized_name": "the legend of evil" + }, + { + "appid": 839530, + "normalized_name": "bomight" + }, + { + "appid": 839560, + "normalized_name": "shrinking pains" + }, + { + "appid": 839570, + "normalized_name": "what are you stupid" + }, + { + "appid": 839590, + "normalized_name": "hamster daily" + }, + { + "appid": 839630, + "normalized_name": "survisland / 实境求生" + }, + { + "appid": 839640, + "normalized_name": "那些年,我们一起收到的好人卡" + }, + { + "appid": 839670, + "normalized_name": "alice's adventures hidden object. wimmelbild" + }, + { + "appid": 839680, + "normalized_name": "the lost earth" + }, + { + "appid": 839730, + "normalized_name": "planum" + }, + { + "appid": 839740, + "normalized_name": "戾谈" + }, + { + "appid": 839770, + "normalized_name": "phoenix point" + }, + { + "appid": 839810, + "normalized_name": "drift 4000" + }, + { + "appid": 839820, + "normalized_name": "match connect challenge" + }, + { + "appid": 839850, + "normalized_name": "lenin the lion" + }, + { + "appid": 839870, + "normalized_name": "wilmot's warehouse" + }, + { + "appid": 839910, + "normalized_name": "mythgard" + }, + { + "appid": 839920, + "normalized_name": "9 balls" + }, + { + "appid": 839930, + "normalized_name": "my car" + }, + { + "appid": 839940, + "normalized_name": "silverworld" + }, + { + "appid": 839960, + "normalized_name": "the technician" + }, + { + "appid": 839970, + "normalized_name": "mr rabbit's memory game" + }, + { + "appid": 840010, + "normalized_name": "garden paws" + }, + { + "appid": 840020, + "normalized_name": "gun rage" + }, + { + "appid": 840050, + "normalized_name": "ad movere" + }, + { + "appid": 840060, + "normalized_name": "good doggo" + }, + { + "appid": 840090, + "normalized_name": "battleground shooting training 吃鸡枪法训练器" + }, + { + "appid": 840100, + "normalized_name": "magic scroll tactics / マジックスクロールタクティクス / 魔法卷轴 / 魔法捲軸" + }, + { + "appid": 840110, + "normalized_name": "the beat a glam noir game" + }, + { + "appid": 840130, + "normalized_name": "battle royale survivors 究极求生 大逃杀" + }, + { + "appid": 840140, + "normalized_name": "武侠乂 the swordsmen x" + }, + { + "appid": 840170, + "normalized_name": "delivery man simulator" + }, + { + "appid": 840180, + "normalized_name": "on board 4 pc" + }, + { + "appid": 840210, + "normalized_name": "arkham horror mother's embrace" + }, + { + "appid": 840230, + "normalized_name": "chicken ~boiled egg~" + }, + { + "appid": 840240, + "normalized_name": "mosaic game of gods ii" + }, + { + "appid": 840260, + "normalized_name": "endless world idle rpg" + }, + { + "appid": 840300, + "normalized_name": "supralympic runners" + }, + { + "appid": 840310, + "normalized_name": "slice" + }, + { + "appid": 840380, + "normalized_name": "quible sphere" + }, + { + "appid": 840390, + "normalized_name": "spacebase startopia" + }, + { + "appid": 840410, + "normalized_name": "mushroom heroes" + }, + { + "appid": 840420, + "normalized_name": "the gauntlet" + }, + { + "appid": 840430, + "normalized_name": "planetary dustoff" + }, + { + "appid": 840440, + "normalized_name": "good boy!" + }, + { + "appid": 840500, + "normalized_name": "dictator's dreams" + }, + { + "appid": 840510, + "normalized_name": "furious drivers" + }, + { + "appid": 840580, + "normalized_name": "virtual foosball" + }, + { + "appid": 840590, + "normalized_name": "anoix" + }, + { + "appid": 840610, + "normalized_name": "fortune 499" + }, + { + "appid": 840620, + "normalized_name": "geometry boxer" + }, + { + "appid": 840690, + "normalized_name": "setup developer tool 2018" + }, + { + "appid": 840700, + "normalized_name": "qvabllock" + }, + { + "appid": 840710, + "normalized_name": "trivia vault tennis trivia" + }, + { + "appid": 840720, + "normalized_name": "sword art online lost song" + }, + { + "appid": 840730, + "normalized_name": "the sandbox of god" + }, + { + "appid": 840800, + "normalized_name": "outlaws of the old west" + }, + { + "appid": 840810, + "normalized_name": "data ball" + }, + { + "appid": 840830, + "normalized_name": "noonie" + }, + { + "appid": 840840, + "normalized_name": "colosso crystal skulls" + }, + { + "appid": 840860, + "normalized_name": "i pay no rent" + }, + { + "appid": 840880, + "normalized_name": "camped out!" + }, + { + "appid": 840890, + "normalized_name": "rocket rush" + }, + { + "appid": 840910, + "normalized_name": "save her from dreams" + }, + { + "appid": 840920, + "normalized_name": "asimov laws" + }, + { + "appid": 840930, + "normalized_name": "bing bong xl" + }, + { + "appid": 840940, + "normalized_name": "spirits of metropolis legacy" + }, + { + "appid": 840980, + "normalized_name": "exoder" + }, + { + "appid": 841010, + "normalized_name": "jack and sara educational game" + }, + { + "appid": 841020, + "normalized_name": "knockdown the ball" + }, + { + "appid": 841110, + "normalized_name": "holy cow! milking simulator" + }, + { + "appid": 841120, + "normalized_name": "wheelchair simulator vr" + }, + { + "appid": 841140, + "normalized_name": "square head zombies 2 fps game" + }, + { + "appid": 841190, + "normalized_name": "honey i joined a cult" + }, + { + "appid": 841200, + "normalized_name": "intelligence" + }, + { + "appid": 841210, + "normalized_name": "ww fantasy" + }, + { + "appid": 841260, + "normalized_name": "final match" + }, + { + "appid": 841270, + "normalized_name": "trap welcome to beryl part 1" + }, + { + "appid": 841290, + "normalized_name": "windfall" + }, + { + "appid": 841320, + "normalized_name": "whitevale defender" + }, + { + "appid": 841330, + "normalized_name": "the bomb project" + }, + { + "appid": 841340, + "normalized_name": "fightttris vr" + }, + { + "appid": 841350, + "normalized_name": "nalogi 2" + }, + { + "appid": 841440, + "normalized_name": "shellblast legacy" + }, + { + "appid": 841470, + "normalized_name": "greentech+ legacy" + }, + { + "appid": 841500, + "normalized_name": "sheep game" + }, + { + "appid": 841580, + "normalized_name": "realmstone" + }, + { + "appid": 841600, + "normalized_name": "aura of worlds" + }, + { + "appid": 841660, + "normalized_name": "the treehouse man" + }, + { + "appid": 841770, + "normalized_name": "siralim 3" + }, + { + "appid": 841790, + "normalized_name": "adventures in the light & dark" + }, + { + "appid": 841800, + "normalized_name": "super heroes men in vr beta" + }, + { + "appid": 841830, + "normalized_name": "semi sweet tofu" + }, + { + "appid": 841870, + "normalized_name": "guardian of immortal mountain(仙山守卫者)" + }, + { + "appid": 841950, + "normalized_name": "echoes iii" + }, + { + "appid": 841970, + "normalized_name": "play top frag" + }, + { + "appid": 841980, + "normalized_name": "avalon legends solitaire 3" + }, + { + "appid": 841990, + "normalized_name": "der milchbauer" + }, + { + "appid": 842070, + "normalized_name": "fantasydynasty le château deretic" + }, + { + "appid": 842080, + "normalized_name": "rabbit valley legend (兔子山谷传说)" + }, + { + "appid": 842100, + "normalized_name": "daymare 1998" + }, + { + "appid": 842120, + "normalized_name": "arca's path vr" + }, + { + "appid": 842130, + "normalized_name": "achievement smiles" + }, + { + "appid": 842140, + "normalized_name": "kitten'd" + }, + { + "appid": 842150, + "normalized_name": "wild west saga idle tycoon clicker" + }, + { + "appid": 842170, + "normalized_name": "hyperspace dogfights" + }, + { + "appid": 842180, + "normalized_name": "prison simulator" + }, + { + "appid": 842190, + "normalized_name": "江湖侠客行" + }, + { + "appid": 842250, + "normalized_name": "gm forge virtual tabletop" + }, + { + "appid": 842270, + "normalized_name": "formula x" + }, + { + "appid": 842290, + "normalized_name": "arcball 2" + }, + { + "appid": 842350, + "normalized_name": "escape code coding adventure" + }, + { + "appid": 842420, + "normalized_name": "a walk in the woods" + }, + { + "appid": 842430, + "normalized_name": "star girls" + }, + { + "appid": 842470, + "normalized_name": "cranes" + }, + { + "appid": 842490, + "normalized_name": "boxigon!" + }, + { + "appid": 842500, + "normalized_name": "kickshot" + }, + { + "appid": 842510, + "normalized_name": "survival maze" + }, + { + "appid": 842520, + "normalized_name": "neon void runner" + }, + { + "appid": 842530, + "normalized_name": "police patrol" + }, + { + "appid": 842560, + "normalized_name": "war hunter" + }, + { + "appid": 842590, + "normalized_name": "knight fighter" + }, + { + "appid": 842620, + "normalized_name": "funny yo" + }, + { + "appid": 842660, + "normalized_name": "ministate" + }, + { + "appid": 842750, + "normalized_name": "galaxy champions tv" + }, + { + "appid": 842760, + "normalized_name": "highscore processing unit" + }, + { + "appid": 842770, + "normalized_name": "deadfall tropics" + }, + { + "appid": 842780, + "normalized_name": "navalart" + }, + { + "appid": 842810, + "normalized_name": "märchen forest mylne and the forest gift [legacy ver.]" + }, + { + "appid": 842850, + "normalized_name": "newt one" + }, + { + "appid": 842870, + "normalized_name": "lords of strife" + }, + { + "appid": 842910, + "normalized_name": "the missing j.j. macfield and the island of memories" + }, + { + "appid": 842980, + "normalized_name": "dungeon crusher soul hunters" + }, + { + "appid": 842990, + "normalized_name": "taco gun" + }, + { + "appid": 843010, + "normalized_name": "orb labs inc." + }, + { + "appid": 843020, + "normalized_name": "hipster cafe" + }, + { + "appid": 843040, + "normalized_name": "recog the first wave" + }, + { + "appid": 843050, + "normalized_name": "north stars" + }, + { + "appid": 843080, + "normalized_name": "vr hero sentry" + }, + { + "appid": 843120, + "normalized_name": "joyo kanji quiz" + }, + { + "appid": 843130, + "normalized_name": "squirgle" + }, + { + "appid": 843160, + "normalized_name": "the lift" + }, + { + "appid": 843170, + "normalized_name": "illusion" + }, + { + "appid": 843180, + "normalized_name": "clan o'conall and the crown of the stag" + }, + { + "appid": 843190, + "normalized_name": "z escape" + }, + { + "appid": 843200, + "normalized_name": "alien hominid invasion" + }, + { + "appid": 843230, + "normalized_name": "album corvus" + }, + { + "appid": 843250, + "normalized_name": "the last deadend" + }, + { + "appid": 843260, + "normalized_name": "the bard's tale trilogy" + }, + { + "appid": 843270, + "normalized_name": "flapping over it" + }, + { + "appid": 843280, + "normalized_name": "hive quest" + }, + { + "appid": 843310, + "normalized_name": "reckless driver" + }, + { + "appid": 843360, + "normalized_name": "rift keeper" + }, + { + "appid": 843370, + "normalized_name": "gravity well" + }, + { + "appid": 843380, + "normalized_name": "super animal royale" + }, + { + "appid": 843390, + "normalized_name": "vertigo 2" + }, + { + "appid": 843400, + "normalized_name": "distant castle" + }, + { + "appid": 843420, + "normalized_name": "supermarket vr and mini games" + }, + { + "appid": 843430, + "normalized_name": "righty tighty xl" + }, + { + "appid": 843440, + "normalized_name": "pivot xl" + }, + { + "appid": 843500, + "normalized_name": "god vs zombies" + }, + { + "appid": 843510, + "normalized_name": "colony prospector" + }, + { + "appid": 843520, + "normalized_name": "the last front" + }, + { + "appid": 843560, + "normalized_name": "ironcommando/钢铁突击队" + }, + { + "appid": 843580, + "normalized_name": "dotline" + }, + { + "appid": 843590, + "normalized_name": "ghostgame" + }, + { + "appid": 843620, + "normalized_name": "forest below" + }, + { + "appid": 843630, + "normalized_name": "project r.a.t." + }, + { + "appid": 843640, + "normalized_name": "wescape" + }, + { + "appid": 843660, + "normalized_name": "rogue agent" + }, + { + "appid": 843700, + "normalized_name": "el taco diablo" + }, + { + "appid": 843710, + "normalized_name": "déjà vu" + }, + { + "appid": 843720, + "normalized_name": "dissimilated land" + }, + { + "appid": 843730, + "normalized_name": "infected battlegrounds" + }, + { + "appid": 843740, + "normalized_name": "hellstar squadron" + }, + { + "appid": 843760, + "normalized_name": "kemonomichi white moment" + }, + { + "appid": 843780, + "normalized_name": "city builder" + }, + { + "appid": 843790, + "normalized_name": "human live how long can human beings exist?人类能生存多久?挑战各种灾难,地球世界末日,冒险策略模拟经营游戏" + }, + { + "appid": 843810, + "normalized_name": "完美的一天 / a perfect day" + }, + { + "appid": 843820, + "normalized_name": "theshootergame" + }, + { + "appid": 843840, + "normalized_name": "space orb" + }, + { + "appid": 843850, + "normalized_name": "cortex protocol" + }, + { + "appid": 843860, + "normalized_name": "when they arrived" + }, + { + "appid": 843870, + "normalized_name": "card games mega collection" + }, + { + "appid": 843890, + "normalized_name": "win the game do it!" + }, + { + "appid": 843900, + "normalized_name": "demon's rise war for the deep" + }, + { + "appid": 843920, + "normalized_name": "hungry piggy vs chicken" + }, + { + "appid": 843980, + "normalized_name": "vortex rush" + }, + { + "appid": 843990, + "normalized_name": "bullet hell advanced" + }, + { + "appid": 844020, + "normalized_name": "g.a.m.e.s" + }, + { + "appid": 844030, + "normalized_name": "codename ghost hunt" + }, + { + "appid": 844040, + "normalized_name": "rush" + }, + { + "appid": 844050, + "normalized_name": "desert child" + }, + { + "appid": 844090, + "normalized_name": "piano simulator" + }, + { + "appid": 844130, + "normalized_name": "future proof" + }, + { + "appid": 844140, + "normalized_name": "trivia vault soccer trivia" + }, + { + "appid": 844160, + "normalized_name": "chocolate makes you happy 5" + }, + { + "appid": 844180, + "normalized_name": "slab" + }, + { + "appid": 844210, + "normalized_name": "titty crush" + }, + { + "appid": 844250, + "normalized_name": "gamemaster magus" + }, + { + "appid": 844260, + "normalized_name": "rustler (grand theft horse)" + }, + { + "appid": 844330, + "normalized_name": "the goatman" + }, + { + "appid": 844350, + "normalized_name": "obscurity" + }, + { + "appid": 844380, + "normalized_name": "cave digger vr" + }, + { + "appid": 844390, + "normalized_name": "deadly flare" + }, + { + "appid": 844420, + "normalized_name": "demon's rise lords of chaos" + }, + { + "appid": 844430, + "normalized_name": "sagittarius" + }, + { + "appid": 844440, + "normalized_name": "the indie game legend 3d" + }, + { + "appid": 844490, + "normalized_name": "rhombus legends" + }, + { + "appid": 844500, + "normalized_name": "draw a stickman epic 3" + }, + { + "appid": 844520, + "normalized_name": "recoil" + }, + { + "appid": 844540, + "normalized_name": "the worst day ever" + }, + { + "appid": 844580, + "normalized_name": "jungle juggle" + }, + { + "appid": 844590, + "normalized_name": "hypnospace outlaw" + }, + { + "appid": 844610, + "normalized_name": "hentai puzzles" + }, + { + "appid": 844620, + "normalized_name": "odyssee" + }, + { + "appid": 844660, + "normalized_name": "heart of the woods" + }, + { + "appid": 844670, + "normalized_name": "please be happy" + }, + { + "appid": 844740, + "normalized_name": "scarf" + }, + { + "appid": 844750, + "normalized_name": "go kart racing" + }, + { + "appid": 844760, + "normalized_name": "the armclaw experiment" + }, + { + "appid": 844790, + "normalized_name": "gemstone guardians" + }, + { + "appid": 844820, + "normalized_name": "ocean wonder vr" + }, + { + "appid": 844850, + "normalized_name": "tower hunter erza's trial" + }, + { + "appid": 844860, + "normalized_name": "tank operations european campaign" + }, + { + "appid": 844870, + "normalized_name": "kurtzpel" + }, + { + "appid": 844900, + "normalized_name": "director of football" + }, + { + "appid": 844910, + "normalized_name": "the flying farm" + }, + { + "appid": 844920, + "normalized_name": "fortissimo fa" + }, + { + "appid": 844930, + "normalized_name": "fox hime zero" + }, + { + "appid": 844940, + "normalized_name": "have a n.i.c.e day!" + }, + { + "appid": 844950, + "normalized_name": "eternal fantasy" + }, + { + "appid": 844960, + "normalized_name": "pro 11 football manager game" + }, + { + "appid": 844970, + "normalized_name": "cowboy attack of wild animal" + }, + { + "appid": 844980, + "normalized_name": "i am your president" + }, + { + "appid": 844990, + "normalized_name": "drone striker" + }, + { + "appid": 845030, + "normalized_name": "evergate" + }, + { + "appid": 845040, + "normalized_name": "aegis legends" + }, + { + "appid": 845050, + "normalized_name": "last regiment" + }, + { + "appid": 845070, + "normalized_name": "the awesome adventures of captain spirit" + }, + { + "appid": 845090, + "normalized_name": "power tower" + }, + { + "appid": 845110, + "normalized_name": "snakelike" + }, + { + "appid": 845150, + "normalized_name": "vietnam war puzzles" + }, + { + "appid": 845160, + "normalized_name": "polycity stories the affair" + }, + { + "appid": 845170, + "normalized_name": "block smashers vr" + }, + { + "appid": 845200, + "normalized_name": "❂ hexaluga ❂ weapon and shield ☯" + }, + { + "appid": 845230, + "normalized_name": "super cubiform" + }, + { + "appid": 845250, + "normalized_name": "fish tycoon 2 virtual aquarium" + }, + { + "appid": 845270, + "normalized_name": "mirror drop" + }, + { + "appid": 845290, + "normalized_name": "destructions" + }, + { + "appid": 845330, + "normalized_name": "sign here _________" + }, + { + "appid": 845350, + "normalized_name": "color path" + }, + { + "appid": 845370, + "normalized_name": "as if dreaming when you're wide awake" + }, + { + "appid": 845380, + "normalized_name": "instinct" + }, + { + "appid": 845390, + "normalized_name": "ride to canada" + }, + { + "appid": 845400, + "normalized_name": "club dance party vr" + }, + { + "appid": 845450, + "normalized_name": "reflected ray" + }, + { + "appid": 845460, + "normalized_name": "make route" + }, + { + "appid": 845480, + "normalized_name": "kinaman vs gray elephant" + }, + { + "appid": 845490, + "normalized_name": "resequenced" + }, + { + "appid": 845510, + "normalized_name": "diymachinery (自定义机械)" + }, + { + "appid": 845520, + "normalized_name": "hard work" + }, + { + "appid": 845570, + "normalized_name": "super punchman" + }, + { + "appid": 845590, + "normalized_name": "god is a cube programming robot cubes" + }, + { + "appid": 845600, + "normalized_name": "waking violet" + }, + { + "appid": 845630, + "normalized_name": "disdoored" + }, + { + "appid": 845650, + "normalized_name": "meteor shower" + }, + { + "appid": 845660, + "normalized_name": "super versus" + }, + { + "appid": 845690, + "normalized_name": "rats bats and bones" + }, + { + "appid": 845700, + "normalized_name": "mushroom the ruckus" + }, + { + "appid": 845730, + "normalized_name": "russian prison sport ochko" + }, + { + "appid": 845750, + "normalized_name": "don't play with dolls" + }, + { + "appid": 845820, + "normalized_name": "lighter than ar" + }, + { + "appid": 845840, + "normalized_name": "laser maze" + }, + { + "appid": 845860, + "normalized_name": "gem rush" + }, + { + "appid": 845870, + "normalized_name": "blackfaith" + }, + { + "appid": 845880, + "normalized_name": "touhou scarlet curiosity" + }, + { + "appid": 845890, + "normalized_name": "moonbreaker" + }, + { + "appid": 845900, + "normalized_name": "awake episode one" + }, + { + "appid": 845940, + "normalized_name": "brickfest" + }, + { + "appid": 845950, + "normalized_name": "clash of magic" + }, + { + "appid": 845960, + "normalized_name": "furries & scalies & bears oh my!" + }, + { + "appid": 845970, + "normalized_name": "trivia vault movie trivia" + }, + { + "appid": 846000, + "normalized_name": "vinnie's diary" + }, + { + "appid": 846010, + "normalized_name": "visceral cubes" + }, + { + "appid": 846020, + "normalized_name": "yomotsu" + }, + { + "appid": 846030, + "normalized_name": "δv rings of saturn" + }, + { + "appid": 846040, + "normalized_name": "osternfield" + }, + { + "appid": 846050, + "normalized_name": "silent depth 3d submarine simulation" + }, + { + "appid": 846080, + "normalized_name": "where thoughts go" + }, + { + "appid": 846110, + "normalized_name": "the friends of ringo ishikawa" + }, + { + "appid": 846120, + "normalized_name": "hello pollution!" + }, + { + "appid": 846130, + "normalized_name": "guardians of the past" + }, + { + "appid": 846200, + "normalized_name": "bastard" + }, + { + "appid": 846210, + "normalized_name": "sea explorer" + }, + { + "appid": 846220, + "normalized_name": "catsapults" + }, + { + "appid": 846230, + "normalized_name": "twin stick tanks" + }, + { + "appid": 846250, + "normalized_name": "devious" + }, + { + "appid": 846320, + "normalized_name": "ai vendetta" + }, + { + "appid": 846340, + "normalized_name": "obliteracy" + }, + { + "appid": 846370, + "normalized_name": "obostar" + }, + { + "appid": 846470, + "normalized_name": "moss" + }, + { + "appid": 846530, + "normalized_name": "lifegamesimulator" + }, + { + "appid": 846660, + "normalized_name": "cicadas the iqa" + }, + { + "appid": 846670, + "normalized_name": "saint slaughter x days" + }, + { + "appid": 846690, + "normalized_name": "lost lands ice spell collector's" + }, + { + "appid": 846700, + "normalized_name": "the legacy prisoner collector's" + }, + { + "appid": 846710, + "normalized_name": "de'vine world of shadows" + }, + { + "appid": 846730, + "normalized_name": "rugby 20" + }, + { + "appid": 846750, + "normalized_name": "catburglar" + }, + { + "appid": 846770, + "normalized_name": "dysmantle" + }, + { + "appid": 846780, + "normalized_name": "jumpstream" + }, + { + "appid": 846800, + "normalized_name": "diner bros" + }, + { + "appid": 846820, + "normalized_name": "tell me everything" + }, + { + "appid": 846830, + "normalized_name": "partyline vr" + }, + { + "appid": 846850, + "normalized_name": "dearcraft" + }, + { + "appid": 846870, + "normalized_name": "yooka laylee and the impossible lair" + }, + { + "appid": 846880, + "normalized_name": "the chronicles of quiver dick" + }, + { + "appid": 847100, + "normalized_name": "тридевятые земли(свет или тьма)" + }, + { + "appid": 847230, + "normalized_name": "turn based champion" + }, + { + "appid": 847240, + "normalized_name": "zombie commander" + }, + { + "appid": 847290, + "normalized_name": "community college hero knowledge is power" + }, + { + "appid": 847300, + "normalized_name": "doomsday on demand 2" + }, + { + "appid": 847310, + "normalized_name": "doomsday on demand" + }, + { + "appid": 847360, + "normalized_name": "super lucky's tale" + }, + { + "appid": 847370, + "normalized_name": "sunset overdrive" + }, + { + "appid": 847390, + "normalized_name": "barrel boot camp" + }, + { + "appid": 847450, + "normalized_name": "solenars edge heroes" + }, + { + "appid": 847460, + "normalized_name": "trapped" + }, + { + "appid": 847490, + "normalized_name": "star speeder" + }, + { + "appid": 847510, + "normalized_name": "roller" + }, + { + "appid": 847520, + "normalized_name": "pizzamon" + }, + { + "appid": 847530, + "normalized_name": "hyperbowl" + }, + { + "appid": 847550, + "normalized_name": "strike!ovulationdivine fist! rebellion to extinction!" + }, + { + "appid": 847560, + "normalized_name": "our hero! first" + }, + { + "appid": 847570, + "normalized_name": "how about spikes" + }, + { + "appid": 847580, + "normalized_name": "truth disorder ii" + }, + { + "appid": 847590, + "normalized_name": "sword of the black stone" + }, + { + "appid": 847600, + "normalized_name": "rapid" + }, + { + "appid": 847650, + "normalized_name": "virtual reality experiment framework" + }, + { + "appid": 847660, + "normalized_name": "story heaven & hell" + }, + { + "appid": 847670, + "normalized_name": "robo runners" + }, + { + "appid": 847680, + "normalized_name": "pale cachexia" + }, + { + "appid": 847720, + "normalized_name": "söldner secret wars" + }, + { + "appid": 847780, + "normalized_name": "castle of the underdogs episode 1" + }, + { + "appid": 847790, + "normalized_name": "indentured servant" + }, + { + "appid": 847800, + "normalized_name": "toybit quest" + }, + { + "appid": 847810, + "normalized_name": "endless horizon" + }, + { + "appid": 847860, + "normalized_name": "die in the dark" + }, + { + "appid": 847900, + "normalized_name": "deathtolls experience" + }, + { + "appid": 847940, + "normalized_name": "suki's spooky romance" + }, + { + "appid": 847950, + "normalized_name": "yakuza kiss" + }, + { + "appid": 848030, + "normalized_name": "roundguard" + }, + { + "appid": 848050, + "normalized_name": "gp bikes" + }, + { + "appid": 848060, + "normalized_name": "story of a gladiator" + }, + { + "appid": 848070, + "normalized_name": "ufo simulator control master" + }, + { + "appid": 848080, + "normalized_name": "depths of sanity" + }, + { + "appid": 848090, + "normalized_name": "batter burst" + }, + { + "appid": 848100, + "normalized_name": "maze madness" + }, + { + "appid": 848120, + "normalized_name": "terror world" + }, + { + "appid": 848150, + "normalized_name": "fury fighter vr" + }, + { + "appid": 848190, + "normalized_name": "kingdoms the crown" + }, + { + "appid": 848200, + "normalized_name": "azuran tales trials" + }, + { + "appid": 848220, + "normalized_name": "split drive" + }, + { + "appid": 848230, + "normalized_name": "let's go nuts!" + }, + { + "appid": 848270, + "normalized_name": "sky conqueror" + }, + { + "appid": 848300, + "normalized_name": "grow wild west" + }, + { + "appid": 848310, + "normalized_name": "bitcoin trading master simulator" + }, + { + "appid": 848330, + "normalized_name": "pride run" + }, + { + "appid": 848350, + "normalized_name": "katamari damacy reroll" + }, + { + "appid": 848400, + "normalized_name": "simian rising" + }, + { + "appid": 848410, + "normalized_name": "detached non vr" + }, + { + "appid": 848420, + "normalized_name": "instacondo limited" + }, + { + "appid": 848430, + "normalized_name": "freakout calamity tv show" + }, + { + "appid": 848450, + "normalized_name": "subnautica below zero" + }, + { + "appid": 848460, + "normalized_name": "aurum kings" + }, + { + "appid": 848470, + "normalized_name": "action card football" + }, + { + "appid": 848480, + "normalized_name": "creeper world 4" + }, + { + "appid": 848500, + "normalized_name": "sniper strike special ops" + }, + { + "appid": 848520, + "normalized_name": "super destronaut dx" + }, + { + "appid": 848530, + "normalized_name": "cyberemo 2007" + }, + { + "appid": 848550, + "normalized_name": "welcome back to 2007 part ii" + }, + { + "appid": 848610, + "normalized_name": "adult toy store" + }, + { + "appid": 848630, + "normalized_name": "dinosaur hunter" + }, + { + "appid": 848660, + "normalized_name": "cool headed" + }, + { + "appid": 848700, + "normalized_name": "toki time trial" + }, + { + "appid": 848710, + "normalized_name": "defendion" + }, + { + "appid": 848720, + "normalized_name": "z.w!" + }, + { + "appid": 848740, + "normalized_name": "lazergoat invasion" + }, + { + "appid": 848750, + "normalized_name": "space drop" + }, + { + "appid": 848770, + "normalized_name": "krystal the adventurer" + }, + { + "appid": 848780, + "normalized_name": "star tower" + }, + { + "appid": 848810, + "normalized_name": "bug splatt" + }, + { + "appid": 848840, + "normalized_name": "towers" + }, + { + "appid": 848890, + "normalized_name": "afelhem" + }, + { + "appid": 848920, + "normalized_name": "bitsy bits" + }, + { + "appid": 848930, + "normalized_name": "rising dusk" + }, + { + "appid": 848960, + "normalized_name": "gotcha racing 2nd" + }, + { + "appid": 849000, + "normalized_name": "open the door" + }, + { + "appid": 849030, + "normalized_name": "asteroid turret defender vr" + }, + { + "appid": 849070, + "normalized_name": "black home 2" + }, + { + "appid": 849090, + "normalized_name": "fightworld" + }, + { + "appid": 849100, + "normalized_name": "alaskan road truckers" + }, + { + "appid": 849140, + "normalized_name": "midnight caravan" + }, + { + "appid": 849210, + "normalized_name": "raccoo venture" + }, + { + "appid": 849220, + "normalized_name": "fate of stars" + }, + { + "appid": 849270, + "normalized_name": "soccer nations battle" + }, + { + "appid": 849280, + "normalized_name": "john mambo" + }, + { + "appid": 849290, + "normalized_name": "miniverse wars alpha" + }, + { + "appid": 849320, + "normalized_name": "tank rush" + }, + { + "appid": 849340, + "normalized_name": "zema" + }, + { + "appid": 849350, + "normalized_name": "realistic illusion" + }, + { + "appid": 849360, + "normalized_name": "wrecking towers" + }, + { + "appid": 849390, + "normalized_name": "valerian tales" + }, + { + "appid": 849410, + "normalized_name": "poop slinger" + }, + { + "appid": 849420, + "normalized_name": "professor madhouse" + }, + { + "appid": 849520, + "normalized_name": "rheum" + }, + { + "appid": 849560, + "normalized_name": "the road to canterbury" + }, + { + "appid": 849600, + "normalized_name": "sandbox showdown" + }, + { + "appid": 849620, + "normalized_name": "trivia vault celebrity trivia" + }, + { + "appid": 849630, + "normalized_name": "wolf balls" + }, + { + "appid": 849670, + "normalized_name": "oval" + }, + { + "appid": 849680, + "normalized_name": "timetekker" + }, + { + "appid": 849690, + "normalized_name": "ghost mountain roller coaster" + }, + { + "appid": 849740, + "normalized_name": "love esquire rpg/dating sim/visual novel" + }, + { + "appid": 849790, + "normalized_name": "firmament wars" + }, + { + "appid": 849800, + "normalized_name": "mermaid mission titanic" + }, + { + "appid": 849840, + "normalized_name": "imperi ii" + }, + { + "appid": 849870, + "normalized_name": "virtual pirate vr" + }, + { + "appid": 849880, + "normalized_name": "journey of the fox" + }, + { + "appid": 849940, + "normalized_name": "freefall tournament" + }, + { + "appid": 849970, + "normalized_name": "forgotten realm rpg" + }, + { + "appid": 849980, + "normalized_name": "color by numbers dinosaurs" + }, + { + "appid": 850000, + "normalized_name": "noel the mortal fate s1 7" + }, + { + "appid": 850030, + "normalized_name": "crime scene reconstruction of crime" + }, + { + "appid": 850040, + "normalized_name": "puzzgun" + }, + { + "appid": 850050, + "normalized_name": "achievement idler red" + }, + { + "appid": 850060, + "normalized_name": "anima gate of memories the nameless chronicles" + }, + { + "appid": 850110, + "normalized_name": "number guesser" + }, + { + "appid": 850170, + "normalized_name": "emergency" + }, + { + "appid": 850190, + "normalized_name": "goat simulator 3" + }, + { + "appid": 850250, + "normalized_name": "dark matter" + }, + { + "appid": 850270, + "normalized_name": "kaleido chaos" + }, + { + "appid": 850310, + "normalized_name": "deadly station" + }, + { + "appid": 850320, + "normalized_name": "phogs!" + }, + { + "appid": 850330, + "normalized_name": "best game eu" + }, + { + "appid": 850340, + "normalized_name": "deep voyage" + }, + { + "appid": 850450, + "normalized_name": "escape first" + }, + { + "appid": 850500, + "normalized_name": "slum ball vr tournament" + }, + { + "appid": 850550, + "normalized_name": "world of virtual reality vr" + }, + { + "appid": 850710, + "normalized_name": "skip's sanity" + }, + { + "appid": 850740, + "normalized_name": "the princess adventure" + }, + { + "appid": 850760, + "normalized_name": "underdungeon" + }, + { + "appid": 850780, + "normalized_name": "battle royale bootcamp" + }, + { + "appid": 850820, + "normalized_name": "祛魅·教化(祛魅1)" + }, + { + "appid": 850830, + "normalized_name": "adventure in kana village" + }, + { + "appid": 850840, + "normalized_name": "camp grizzly vr" + }, + { + "appid": 850860, + "normalized_name": "the battle of evil" + }, + { + "appid": 850880, + "normalized_name": "vegetaball" + }, + { + "appid": 850920, + "normalized_name": "hypersonic speed girl / 超速少女" + }, + { + "appid": 850940, + "normalized_name": "space colonizers idle clicker" + }, + { + "appid": 850970, + "normalized_name": "plunker" + }, + { + "appid": 850980, + "normalized_name": "guilty gear" + }, + { + "appid": 851040, + "normalized_name": "darkest mana master of the table" + }, + { + "appid": 851050, + "normalized_name": "paper dolls vr" + }, + { + "appid": 851100, + "normalized_name": "touhou luna nights" + }, + { + "appid": 851110, + "normalized_name": "idle racing go clicker tycoon" + }, + { + "appid": 851150, + "normalized_name": "burning knight" + }, + { + "appid": 851180, + "normalized_name": "blood harvest 3" + }, + { + "appid": 851200, + "normalized_name": "omae wa mou shindeiru" + }, + { + "appid": 851210, + "normalized_name": "super helpful man" + }, + { + "appid": 851220, + "normalized_name": "free the animation" + }, + { + "appid": 851240, + "normalized_name": "journey to valhalla" + }, + { + "appid": 851250, + "normalized_name": "sleeping dawn vr" + }, + { + "appid": 851280, + "normalized_name": "mindseize" + }, + { + "appid": 851300, + "normalized_name": "barbarian" + }, + { + "appid": 851320, + "normalized_name": "slimegear" + }, + { + "appid": 851330, + "normalized_name": "pizza connection 3 pizza creator" + }, + { + "appid": 851350, + "normalized_name": "let's play with nanai!" + }, + { + "appid": 851490, + "normalized_name": "the amazing adventures of lady fanny featherstone" + }, + { + "appid": 851520, + "normalized_name": "trivia vault tv trivia" + }, + { + "appid": 851530, + "normalized_name": "mini dead" + }, + { + "appid": 851570, + "normalized_name": "zombie hotel" + }, + { + "appid": 851580, + "normalized_name": "planet unknown runner" + }, + { + "appid": 851590, + "normalized_name": "cosplay convention crisis" + }, + { + "appid": 851640, + "normalized_name": "marble race" + }, + { + "appid": 851650, + "normalized_name": "logistical abc islands" + }, + { + "appid": 851670, + "normalized_name": "lumines" + }, + { + "appid": 851690, + "normalized_name": "order of the assassin" + }, + { + "appid": 851710, + "normalized_name": "trivia vault art trivia" + }, + { + "appid": 851720, + "normalized_name": "brain cell" + }, + { + "appid": 851730, + "normalized_name": "sandmade" + }, + { + "appid": 851770, + "normalized_name": "number hunt" + }, + { + "appid": 851790, + "normalized_name": "astrontycoon" + }, + { + "appid": 851800, + "normalized_name": "g2 fighter / 基因特工" + }, + { + "appid": 851810, + "normalized_name": "sudoku collection" + }, + { + "appid": 851820, + "normalized_name": "boxes inc." + }, + { + "appid": 851840, + "normalized_name": "strangers of the power 2" + }, + { + "appid": 851850, + "normalized_name": "dragon ball z kakarot" + }, + { + "appid": 851880, + "normalized_name": "rōa" + }, + { + "appid": 851890, + "normalized_name": "gal*gun 2" + }, + { + "appid": 851920, + "normalized_name": "nova wing iii" + }, + { + "appid": 851930, + "normalized_name": "battle royale tycoon" + }, + { + "appid": 851950, + "normalized_name": "heroine of the sniper" + }, + { + "appid": 851960, + "normalized_name": "acrophobia" + }, + { + "appid": 851970, + "normalized_name": "ship rescue" + }, + { + "appid": 851980, + "normalized_name": "ball grabbers" + }, + { + "appid": 852090, + "normalized_name": "penko park" + }, + { + "appid": 852110, + "normalized_name": "retromaze" + }, + { + "appid": 852160, + "normalized_name": "jack the barbarian" + }, + { + "appid": 852180, + "normalized_name": "bunker rush" + }, + { + "appid": 852190, + "normalized_name": "10 seconds" + }, + { + "appid": 852220, + "normalized_name": "accident" + }, + { + "appid": 852250, + "normalized_name": "danger room vr" + }, + { + "appid": 852300, + "normalized_name": "creature in the well" + }, + { + "appid": 852310, + "normalized_name": "omega commando" + }, + { + "appid": 852320, + "normalized_name": "holonglide" + }, + { + "appid": 852340, + "normalized_name": "king rabbit puzzle" + }, + { + "appid": 852390, + "normalized_name": "swordbounce" + }, + { + "appid": 852420, + "normalized_name": "warhalla" + }, + { + "appid": 852450, + "normalized_name": "the stray cat" + }, + { + "appid": 852470, + "normalized_name": "hellfire fortress" + }, + { + "appid": 852480, + "normalized_name": "snow daze the music of winter special" + }, + { + "appid": 852500, + "normalized_name": "worldquest" + }, + { + "appid": 852530, + "normalized_name": "atex brawl" + }, + { + "appid": 852560, + "normalized_name": "guns battle royale" + }, + { + "appid": 852570, + "normalized_name": "a tale of pirates a dummy mutiny" + }, + { + "appid": 852590, + "normalized_name": "alone in the forest vr" + }, + { + "appid": 852610, + "normalized_name": "space of one drama" + }, + { + "appid": 852620, + "normalized_name": "zen vs gravity" + }, + { + "appid": 852630, + "normalized_name": "keiko everlasting" + }, + { + "appid": 852650, + "normalized_name": "barbarroja" + }, + { + "appid": 852720, + "normalized_name": "voxel tanks" + }, + { + "appid": 852750, + "normalized_name": "paper shakespeare stick merchant of venice" + }, + { + "appid": 852760, + "normalized_name": "d.f.r. the light vr" + }, + { + "appid": 852780, + "normalized_name": "temperia soul of majestic" + }, + { + "appid": 852790, + "normalized_name": "the adventure of magical girl" + }, + { + "appid": 852860, + "normalized_name": "towards a perilous journey" + }, + { + "appid": 852880, + "normalized_name": "ficterra" + }, + { + "appid": 852890, + "normalized_name": "crash world" + }, + { + "appid": 852900, + "normalized_name": "space captain mccallery episode 1 crash landing" + }, + { + "appid": 852910, + "normalized_name": "sweet pool" + }, + { + "appid": 852920, + "normalized_name": "bad bots rise" + }, + { + "appid": 853000, + "normalized_name": "generic jumper" + }, + { + "appid": 853040, + "normalized_name": "deep space | space platformer" + }, + { + "appid": 853050, + "normalized_name": "el hijo a wild west tale" + }, + { + "appid": 853060, + "normalized_name": "timothy vs the aliens" + }, + { + "appid": 853120, + "normalized_name": "iron ground" + }, + { + "appid": 853150, + "normalized_name": "wars across the world russian battles" + }, + { + "appid": 853200, + "normalized_name": "shred! 2 ft sam pilgrim" + }, + { + "appid": 853210, + "normalized_name": "gopnik simulator" + }, + { + "appid": 853220, + "normalized_name": "doors & rooms" + }, + { + "appid": 853240, + "normalized_name": "the light keeps us safe" + }, + { + "appid": 853250, + "normalized_name": "신기록 a compendium of ghosts" + }, + { + "appid": 853260, + "normalized_name": "ants! mission of the salvation" + }, + { + "appid": 853290, + "normalized_name": "claw breaker" + }, + { + "appid": 853300, + "normalized_name": "the pizza delivery boy who saved the world" + }, + { + "appid": 853310, + "normalized_name": "mr. maze" + }, + { + "appid": 853320, + "normalized_name": "kurt der fussballmanager" + }, + { + "appid": 853330, + "normalized_name": "n.i.c.e. 2" + }, + { + "appid": 853410, + "normalized_name": "yapp2 yet another pushing puzzler" + }, + { + "appid": 853450, + "normalized_name": "nevergrind online" + }, + { + "appid": 853460, + "normalized_name": "the mirror's end" + }, + { + "appid": 853480, + "normalized_name": "pestis" + }, + { + "appid": 853500, + "normalized_name": "quarantine circular" + }, + { + "appid": 853550, + "normalized_name": "equilinox" + }, + { + "appid": 853580, + "normalized_name": "lost" + }, + { + "appid": 853590, + "normalized_name": "goroons" + }, + { + "appid": 853610, + "normalized_name": "the outlaw the drunk & the whore" + }, + { + "appid": 853620, + "normalized_name": "stickman in the portal" + }, + { + "appid": 853700, + "normalized_name": "heart of dixie goty hyper combo" + }, + { + "appid": 853760, + "normalized_name": "space armor 2" + }, + { + "appid": 853770, + "normalized_name": "maximum action" + }, + { + "appid": 853780, + "normalized_name": "blubblub quest of the blob" + }, + { + "appid": 853830, + "normalized_name": "great mountain experience" + }, + { + "appid": 853850, + "normalized_name": "logistical caribbean" + }, + { + "appid": 853860, + "normalized_name": "amaze classic" + }, + { + "appid": 853940, + "normalized_name": "moonfall" + }, + { + "appid": 853980, + "normalized_name": "splash" + }, + { + "appid": 854030, + "normalized_name": "ancient journey vr" + }, + { + "appid": 854060, + "normalized_name": "bob the cube" + }, + { + "appid": 854120, + "normalized_name": "subterraneus" + }, + { + "appid": 854150, + "normalized_name": "snail racer extreme" + }, + { + "appid": 854160, + "normalized_name": "dino dawn" + }, + { + "appid": 854190, + "normalized_name": "russian gangsta in hell" + }, + { + "appid": 854210, + "normalized_name": "ice demon" + }, + { + "appid": 854250, + "normalized_name": "fpv freerider" + }, + { + "appid": 854330, + "normalized_name": "lost in spice" + }, + { + "appid": 854390, + "normalized_name": "doors push or pull" + }, + { + "appid": 854400, + "normalized_name": "exchange" + }, + { + "appid": 854450, + "normalized_name": "arlo the rabbit" + }, + { + "appid": 854500, + "normalized_name": "dawn of the celestialpod" + }, + { + "appid": 854510, + "normalized_name": "warlock tower defence" + }, + { + "appid": 854530, + "normalized_name": "paper shakespeare stick julius caesar (with a dagger)" + }, + { + "appid": 854540, + "normalized_name": "paper shakespeare loves labor(s) lost" + }, + { + "appid": 854550, + "normalized_name": "scary maze" + }, + { + "appid": 854570, + "normalized_name": "pamali indonesian folklore horror" + }, + { + "appid": 854640, + "normalized_name": "no prospects company" + }, + { + "appid": 854670, + "normalized_name": "heroes trials" + }, + { + "appid": 854680, + "normalized_name": "deeplands" + }, + { + "appid": 854690, + "normalized_name": "rollercoaster legends ii thor's hammer" + }, + { + "appid": 854770, + "normalized_name": "wtf" + }, + { + "appid": 854810, + "normalized_name": "simple sailing" + }, + { + "appid": 854830, + "normalized_name": "washed up!" + }, + { + "appid": 854860, + "normalized_name": "cows vs vikings" + }, + { + "appid": 854870, + "normalized_name": "perseverance part 1" + }, + { + "appid": 854940, + "normalized_name": "ikenfell" + }, + { + "appid": 854950, + "normalized_name": "not without you" + }, + { + "appid": 854990, + "normalized_name": "starfighter x" + }, + { + "appid": 855010, + "normalized_name": "270 | two seventy us election" + }, + { + "appid": 855030, + "normalized_name": "balloon strike" + }, + { + "appid": 855050, + "normalized_name": "thunderbolt 2" + }, + { + "appid": 855110, + "normalized_name": "floating wonderland" + }, + { + "appid": 855160, + "normalized_name": "vtree beach volleyball" + }, + { + "appid": 855180, + "normalized_name": "squares" + }, + { + "appid": 855190, + "normalized_name": "the subject" + }, + { + "appid": 855240, + "normalized_name": "leon's nightmare" + }, + { + "appid": 855320, + "normalized_name": "the 18th floor" + }, + { + "appid": 855390, + "normalized_name": "ryte the eye of atlantis" + }, + { + "appid": 855510, + "normalized_name": "void" + }, + { + "appid": 855530, + "normalized_name": "new ice york" + }, + { + "appid": 855550, + "normalized_name": "coffee noir business detective game" + }, + { + "appid": 855580, + "normalized_name": "ahlman arcade 2018" + }, + { + "appid": 855590, + "normalized_name": "age of cards ra's chess" + }, + { + "appid": 855610, + "normalized_name": "thrunt xl" + }, + { + "appid": 855620, + "normalized_name": "asteroid deathmatch" + }, + { + "appid": 855630, + "normalized_name": "zeliria sanctuary" + }, + { + "appid": 855640, + "normalized_name": "my brother rabbit" + }, + { + "appid": 855650, + "normalized_name": "trigger" + }, + { + "appid": 855670, + "normalized_name": "荒野寻踪" + }, + { + "appid": 855700, + "normalized_name": "trippy jump" + }, + { + "appid": 855710, + "normalized_name": "unsacrifice" + }, + { + "appid": 855730, + "normalized_name": "plants" + }, + { + "appid": 855740, + "normalized_name": "bum simulator" + }, + { + "appid": 855760, + "normalized_name": "sweet treats" + }, + { + "appid": 855770, + "normalized_name": "upboll" + }, + { + "appid": 855800, + "normalized_name": "trek travel around the world" + }, + { + "appid": 855830, + "normalized_name": "nex os colosseum" + }, + { + "appid": 855850, + "normalized_name": "space elite force" + }, + { + "appid": 855860, + "normalized_name": "superfighters deluxe" + }, + { + "appid": 855970, + "normalized_name": "vixens from outer space" + }, + { + "appid": 855990, + "normalized_name": "wake up good guardian!" + }, + { + "appid": 856010, + "normalized_name": "national machine" + }, + { + "appid": 856040, + "normalized_name": "chameleon man" + }, + { + "appid": 856050, + "normalized_name": "conjury of nature" + }, + { + "appid": 856060, + "normalized_name": "蝶生梦影 butterfly dream shadow" + }, + { + "appid": 856080, + "normalized_name": "mind labyrinth vr dreams" + }, + { + "appid": 856100, + "normalized_name": "little comet" + }, + { + "appid": 856110, + "normalized_name": "antisnake" + }, + { + "appid": 856130, + "normalized_name": "dark sasi" + }, + { + "appid": 856160, + "normalized_name": "star baron – vr beast combat game" + }, + { + "appid": 856170, + "normalized_name": "exo td" + }, + { + "appid": 856190, + "normalized_name": "metori" + }, + { + "appid": 856210, + "normalized_name": "bit dungeon iii" + }, + { + "appid": 856220, + "normalized_name": "don't die!" + }, + { + "appid": 856240, + "normalized_name": "total singu" + }, + { + "appid": 856260, + "normalized_name": "100 chests" + }, + { + "appid": 856270, + "normalized_name": "draid" + }, + { + "appid": 856300, + "normalized_name": "disc golf vr" + }, + { + "appid": 856310, + "normalized_name": "seul (alone) the entrée" + }, + { + "appid": 856350, + "normalized_name": "15 seconds" + }, + { + "appid": 856370, + "normalized_name": "one way ticket / 单程票" + }, + { + "appid": 856420, + "normalized_name": "glow ball not a billiard puzzle game" + }, + { + "appid": 856450, + "normalized_name": "a story of a band" + }, + { + "appid": 856490, + "normalized_name": "falling words" + }, + { + "appid": 856540, + "normalized_name": "super dangerous dungeons" + }, + { + "appid": 856550, + "normalized_name": "stabby machine" + }, + { + "appid": 856560, + "normalized_name": "black roses" + }, + { + "appid": 856570, + "normalized_name": "lost flame" + }, + { + "appid": 856600, + "normalized_name": "fur the game" + }, + { + "appid": 856650, + "normalized_name": "pylon racer" + }, + { + "appid": 856670, + "normalized_name": "present for manager" + }, + { + "appid": 856730, + "normalized_name": "arena 8" + }, + { + "appid": 856760, + "normalized_name": "gachi gang" + }, + { + "appid": 856770, + "normalized_name": "hokan monster slayer" + }, + { + "appid": 856790, + "normalized_name": "export simulator" + }, + { + "appid": 856880, + "normalized_name": "fighting fantasy classics" + }, + { + "appid": 856890, + "normalized_name": "justice sucks tactical vacuum action" + }, + { + "appid": 856980, + "normalized_name": "7 in 1 brain sharpness bundle" + }, + { + "appid": 856990, + "normalized_name": "a long way down" + }, + { + "appid": 857010, + "normalized_name": "hube seeker of achievements" + }, + { + "appid": 857020, + "normalized_name": "putinoids vs navalnyats путиноиды против навальнят" + }, + { + "appid": 857050, + "normalized_name": "casual penalty" + }, + { + "appid": 857060, + "normalized_name": "cccp calls!" + }, + { + "appid": 857080, + "normalized_name": "escape from the princess" + }, + { + "appid": 857090, + "normalized_name": "jumping man mine" + }, + { + "appid": 857110, + "normalized_name": "space blaster 8 bit" + }, + { + "appid": 857130, + "normalized_name": "evolution" + }, + { + "appid": 857140, + "normalized_name": "snake snake snake!" + }, + { + "appid": 857180, + "normalized_name": "the cooking game vr" + }, + { + "appid": 857200, + "normalized_name": "planet stronghold 2" + }, + { + "appid": 857210, + "normalized_name": "building block heroes rush" + }, + { + "appid": 857240, + "normalized_name": "the prison experiment battle royale" + }, + { + "appid": 857300, + "normalized_name": "korvux chapter 1" + }, + { + "appid": 857370, + "normalized_name": "the entity" + }, + { + "appid": 857410, + "normalized_name": "red spider3 a heroine never dies" + }, + { + "appid": 857420, + "normalized_name": "just beat em up world of fury" + }, + { + "appid": 857450, + "normalized_name": "island" + }, + { + "appid": 857460, + "normalized_name": "∀kashicforce" + }, + { + "appid": 857470, + "normalized_name": "nekokoro" + }, + { + "appid": 857480, + "normalized_name": "seirei" + }, + { + "appid": 857500, + "normalized_name": "black bird" + }, + { + "appid": 857510, + "normalized_name": "knife flipping" + }, + { + "appid": 857520, + "normalized_name": "degrees" + }, + { + "appid": 857540, + "normalized_name": "soviet bear uni adventure" + }, + { + "appid": 857600, + "normalized_name": "fight the horror" + }, + { + "appid": 857680, + "normalized_name": "catan vr" + }, + { + "appid": 857690, + "normalized_name": "lagoon lounge the poisonous fountain" + }, + { + "appid": 857700, + "normalized_name": "zombiehunterz" + }, + { + "appid": 857710, + "normalized_name": "fallen bird" + }, + { + "appid": 857740, + "normalized_name": "ludicrous speed" + }, + { + "appid": 857760, + "normalized_name": "sad rpg a social anxiety role playing game" + }, + { + "appid": 857770, + "normalized_name": "the risers" + }, + { + "appid": 857850, + "normalized_name": "dwarf defense" + }, + { + "appid": 857860, + "normalized_name": "planetary settlers" + }, + { + "appid": 857890, + "normalized_name": "runetech" + }, + { + "appid": 857900, + "normalized_name": "huge enemy worldbreakers" + }, + { + "appid": 857940, + "normalized_name": "nature calls" + }, + { + "appid": 857950, + "normalized_name": "incredible mandy" + }, + { + "appid": 857980, + "normalized_name": "void bastards" + }, + { + "appid": 858010, + "normalized_name": "enchantedgirl 纯情房东俏房客" + }, + { + "appid": 858030, + "normalized_name": "paranoia happiness is mandatory" + }, + { + "appid": 858040, + "normalized_name": "sudoku jigsaw / 拼图数独" + }, + { + "appid": 858050, + "normalized_name": "the rose of segunda" + }, + { + "appid": 858060, + "normalized_name": "idle heist" + }, + { + "appid": 858070, + "normalized_name": "leviathan's sword" + }, + { + "appid": 858080, + "normalized_name": "spoorky" + }, + { + "appid": 858090, + "normalized_name": "spellcastia" + }, + { + "appid": 858100, + "normalized_name": "grimshade" + }, + { + "appid": 858170, + "normalized_name": "the last train" + }, + { + "appid": 858180, + "normalized_name": "adventures of mike" + }, + { + "appid": 858200, + "normalized_name": "scratch the cat" + }, + { + "appid": 858210, + "normalized_name": "nova drift" + }, + { + "appid": 858250, + "normalized_name": "tainted fate" + }, + { + "appid": 858260, + "normalized_name": "until you fall" + }, + { + "appid": 858320, + "normalized_name": "itsy blitzy" + }, + { + "appid": 858360, + "normalized_name": "the initiate 2 the first interviews" + }, + { + "appid": 858380, + "normalized_name": "expedia cenote vr" + }, + { + "appid": 858420, + "normalized_name": "trivia vault business trivia" + }, + { + "appid": 858440, + "normalized_name": "ninja midori" + }, + { + "appid": 858500, + "normalized_name": "skelli tower defense" + }, + { + "appid": 858560, + "normalized_name": "tet vr" + }, + { + "appid": 858600, + "normalized_name": "rule the world" + }, + { + "appid": 858630, + "normalized_name": "aquaculture land fish farming simulation" + }, + { + "appid": 858640, + "normalized_name": "the last crystal" + }, + { + "appid": 858680, + "normalized_name": "black paradox" + }, + { + "appid": 858710, + "normalized_name": "gravity circuit" + }, + { + "appid": 858730, + "normalized_name": "yoke light" + }, + { + "appid": 858740, + "normalized_name": "waves of death" + }, + { + "appid": 858760, + "normalized_name": "scalak" + }, + { + "appid": 858770, + "normalized_name": "crashers of aetheria" + }, + { + "appid": 858780, + "normalized_name": "rent a vice" + }, + { + "appid": 858810, + "normalized_name": "dawn of man" + }, + { + "appid": 858820, + "normalized_name": "tribes of midgard" + }, + { + "appid": 858830, + "normalized_name": "echoes of the fey the last sacrament" + }, + { + "appid": 858840, + "normalized_name": "the epic bang theory" + }, + { + "appid": 858860, + "normalized_name": "tabletop gods" + }, + { + "appid": 858870, + "normalized_name": "queen of seas 2" + }, + { + "appid": 858880, + "normalized_name": "fragile fighter" + }, + { + "appid": 858940, + "normalized_name": "flowers le volume sur ete" + }, + { + "appid": 858960, + "normalized_name": "sumo" + }, + { + "appid": 859050, + "normalized_name": "360 no scope!" + }, + { + "appid": 859090, + "normalized_name": "turbo tunnel" + }, + { + "appid": 859120, + "normalized_name": "that tiny spaceship" + }, + { + "appid": 859150, + "normalized_name": "幻想三國誌5/fantasia sango 5" + }, + { + "appid": 859160, + "normalized_name": "blightmare" + }, + { + "appid": 859170, + "normalized_name": "survival" + }, + { + "appid": 859180, + "normalized_name": "monster castle" + }, + { + "appid": 859200, + "normalized_name": "chaos of east" + }, + { + "appid": 859220, + "normalized_name": "sweeper zero" + }, + { + "appid": 859280, + "normalized_name": "拯救大魔王重生 falsemen demon rebirth" + }, + { + "appid": 859340, + "normalized_name": "seeking dawn" + }, + { + "appid": 859350, + "normalized_name": "aces of the luftwaffe squadron" + }, + { + "appid": 859370, + "normalized_name": "in my mind." + }, + { + "appid": 859380, + "normalized_name": "what's my gender?" + }, + { + "appid": 859440, + "normalized_name": "mars or die!" + }, + { + "appid": 859460, + "normalized_name": "small person" + }, + { + "appid": 859510, + "normalized_name": "ace meerkats" + }, + { + "appid": 859530, + "normalized_name": "vive le roi 2" + }, + { + "appid": 859560, + "normalized_name": "escape the grid vr" + }, + { + "appid": 859570, + "normalized_name": "secret neighbor hello neighbor multiplayer" + }, + { + "appid": 859580, + "normalized_name": "imperator rome" + }, + { + "appid": 859610, + "normalized_name": "s.t.r.e.t.c.h." + }, + { + "appid": 859640, + "normalized_name": "along together" + }, + { + "appid": 859660, + "normalized_name": "discs of steel party" + }, + { + "appid": 859700, + "normalized_name": "usa 2020" + }, + { + "appid": 859720, + "normalized_name": "cubelz" + }, + { + "appid": 859740, + "normalized_name": "don't notice me" + }, + { + "appid": 859820, + "normalized_name": "triptrip" + }, + { + "appid": 859870, + "normalized_name": "frqncy" + }, + { + "appid": 859920, + "normalized_name": "double head shark attack" + }, + { + "appid": 859930, + "normalized_name": "cat o combo!" + }, + { + "appid": 859940, + "normalized_name": "decks" + }, + { + "appid": 859950, + "normalized_name": "the enthralling realms" + }, + { + "appid": 859960, + "normalized_name": "geocells tricells" + }, + { + "appid": 859970, + "normalized_name": "math classroom challenge" + }, + { + "appid": 859990, + "normalized_name": "eggs 1942" + }, + { + "appid": 860000, + "normalized_name": "cosmic collapse" + }, + { + "appid": 860010, + "normalized_name": "into the soup" + }, + { + "appid": 860020, + "normalized_name": "exfil" + }, + { + "appid": 860030, + "normalized_name": "common hanzi quiz simplified chinese" + }, + { + "appid": 860070, + "normalized_name": "bulletline" + }, + { + "appid": 860080, + "normalized_name": "lilgunbois super team transgender fortress platformer battlegrounds" + }, + { + "appid": 860090, + "normalized_name": "erotic jigsaw challenge vol. 1" + }, + { + "appid": 860150, + "normalized_name": "d'lirium the golden rogue" + }, + { + "appid": 860210, + "normalized_name": "return to nangrim" + }, + { + "appid": 860260, + "normalized_name": "strike force" + }, + { + "appid": 860290, + "normalized_name": "labyrinths of umbra" + }, + { + "appid": 860320, + "normalized_name": "apartment 3301" + }, + { + "appid": 860330, + "normalized_name": "mutation mayhem" + }, + { + "appid": 860340, + "normalized_name": "trivia vault toy trivia" + }, + { + "appid": 860350, + "normalized_name": "trivia vault fashion trivia" + }, + { + "appid": 860400, + "normalized_name": "unexpected journey 奇幻之旅" + }, + { + "appid": 860430, + "normalized_name": "burgerwise the clown" + }, + { + "appid": 860440, + "normalized_name": "goat life" + }, + { + "appid": 860450, + "normalized_name": "module td. sci fi tower defense" + }, + { + "appid": 860480, + "normalized_name": "fernz gate" + }, + { + "appid": 860490, + "normalized_name": "revenant dogma" + }, + { + "appid": 860500, + "normalized_name": "spellfront" + }, + { + "appid": 860510, + "normalized_name": "little nightmares ii" + }, + { + "appid": 860530, + "normalized_name": "babycar driver" + }, + { + "appid": 860550, + "normalized_name": "secrets of the past dion" + }, + { + "appid": 860560, + "normalized_name": "gremlins inc. – card game" + }, + { + "appid": 860590, + "normalized_name": "missiledancer" + }, + { + "appid": 860600, + "normalized_name": "betweenside" + }, + { + "appid": 860620, + "normalized_name": "kursk" + }, + { + "appid": 860640, + "normalized_name": "lingotopia" + }, + { + "appid": 860650, + "normalized_name": "drizzlepath deja vu" + }, + { + "appid": 860660, + "normalized_name": "to hell with hell" + }, + { + "appid": 860670, + "normalized_name": "❂ hexaluga ❂ dungeons and hunting ☠" + }, + { + "appid": 860680, + "normalized_name": "smile'n'slide" + }, + { + "appid": 860730, + "normalized_name": "skinscape" + }, + { + "appid": 860770, + "normalized_name": "made to order the party game" + }, + { + "appid": 860790, + "normalized_name": "adventures of pipi 2 save hype" + }, + { + "appid": 860820, + "normalized_name": "meme supreme ¯\\_(ツ)_/¯" + }, + { + "appid": 860860, + "normalized_name": "suicide guy sleepin' deeply" + }, + { + "appid": 860880, + "normalized_name": "castle jigsaw puzzles" + }, + { + "appid": 860890, + "normalized_name": "factory town" + }, + { + "appid": 860900, + "normalized_name": "bounty battle" + }, + { + "appid": 860910, + "normalized_name": "hentai 3018" + }, + { + "appid": 860930, + "normalized_name": "a quiet mind" + }, + { + "appid": 860950, + "normalized_name": "mark of the ninja" + }, + { + "appid": 860960, + "normalized_name": "n1l (no1lives)" + }, + { + "appid": 860990, + "normalized_name": "chroma shift" + }, + { + "appid": 861000, + "normalized_name": "putinization" + }, + { + "appid": 861010, + "normalized_name": "minako" + }, + { + "appid": 861020, + "normalized_name": "virus" + }, + { + "appid": 861030, + "normalized_name": "lovely fox" + }, + { + "appid": 861050, + "normalized_name": "demonsarecrazy" + }, + { + "appid": 861080, + "normalized_name": "lonia saga 2" + }, + { + "appid": 861150, + "normalized_name": "plutonium pirates" + }, + { + "appid": 861160, + "normalized_name": "argos the most difficult vr game in the world" + }, + { + "appid": 861210, + "normalized_name": "gaze at maze" + }, + { + "appid": 861230, + "normalized_name": "arevoatl seven coins" + }, + { + "appid": 861240, + "normalized_name": "paper valley" + }, + { + "appid": 861250, + "normalized_name": "cyber shadow" + }, + { + "appid": 861260, + "normalized_name": "synthetic love" + }, + { + "appid": 861270, + "normalized_name": "sudoku killer / 杀手数独" + }, + { + "appid": 861280, + "normalized_name": "战术狂想2(chimera of tactics 2)" + }, + { + "appid": 861290, + "normalized_name": "shooter game" + }, + { + "appid": 861320, + "normalized_name": "beyond minimalism" + }, + { + "appid": 861330, + "normalized_name": "dungeon deathball" + }, + { + "appid": 861350, + "normalized_name": "gym simulator" + }, + { + "appid": 861400, + "normalized_name": "nefertari journey to eternity" + }, + { + "appid": 861410, + "normalized_name": "brave dungeon the meaning of justice" + }, + { + "appid": 861510, + "normalized_name": "sail ships" + }, + { + "appid": 861520, + "normalized_name": "#akirobots" + }, + { + "appid": 861530, + "normalized_name": "insula bounty royale" + }, + { + "appid": 861540, + "normalized_name": "dicey dungeons" + }, + { + "appid": 861550, + "normalized_name": "neon universe" + }, + { + "appid": 861580, + "normalized_name": "delve" + }, + { + "appid": 861650, + "normalized_name": "session skate sim" + }, + { + "appid": 861670, + "normalized_name": "street level windows" + }, + { + "appid": 861710, + "normalized_name": "geometry rush" + }, + { + "appid": 861720, + "normalized_name": "trivia vault food trivia" + }, + { + "appid": 861740, + "normalized_name": "trivia vault literature trivia" + }, + { + "appid": 861760, + "normalized_name": "foto flash 2" + }, + { + "appid": 861770, + "normalized_name": "frogstatue" + }, + { + "appid": 861790, + "normalized_name": "bomb bomb" + }, + { + "appid": 861860, + "normalized_name": "doctor tsunami" + }, + { + "appid": 861910, + "normalized_name": "catch'em" + }, + { + "appid": 861930, + "normalized_name": "kidz" + }, + { + "appid": 861940, + "normalized_name": "crashbots" + }, + { + "appid": 861960, + "normalized_name": "master pyrox wizard smackdown" + }, + { + "appid": 862110, + "normalized_name": "super jigsaw puzzle cities" + }, + { + "appid": 862130, + "normalized_name": "rainy day racer" + }, + { + "appid": 862150, + "normalized_name": "prison test" + }, + { + "appid": 862160, + "normalized_name": "comet crasher" + }, + { + "appid": 862190, + "normalized_name": "footy ball tournament 2018" + }, + { + "appid": 862200, + "normalized_name": "bot tales the crashed" + }, + { + "appid": 862230, + "normalized_name": "how mosquito became human" + }, + { + "appid": 862240, + "normalized_name": "e3.14center" + }, + { + "appid": 862250, + "normalized_name": "danger!energy" + }, + { + "appid": 862260, + "normalized_name": "miami cruise" + }, + { + "appid": 862280, + "normalized_name": "time tenshi" + }, + { + "appid": 862300, + "normalized_name": "ros" + }, + { + "appid": 862370, + "normalized_name": "yahrit!" + }, + { + "appid": 862390, + "normalized_name": "flyinside flight simulator" + }, + { + "appid": 862440, + "normalized_name": "angel wings" + }, + { + "appid": 862460, + "normalized_name": "to light ex umbra" + }, + { + "appid": 862480, + "normalized_name": "the spiral scouts" + }, + { + "appid": 862490, + "normalized_name": "fantasy raiders" + }, + { + "appid": 862500, + "normalized_name": "talos vr" + }, + { + "appid": 862520, + "normalized_name": "lucky night poker games" + }, + { + "appid": 862570, + "normalized_name": "ding dong xl" + }, + { + "appid": 862580, + "normalized_name": "ok/normal" + }, + { + "appid": 862590, + "normalized_name": "bluefear" + }, + { + "appid": 862630, + "normalized_name": "la corda d'oro octave" + }, + { + "appid": 862670, + "normalized_name": "sky tracers" + }, + { + "appid": 862690, + "normalized_name": "kid napper gosh i'm kidnapped by a pupil" + }, + { + "appid": 862700, + "normalized_name": "cubers arena" + }, + { + "appid": 862730, + "normalized_name": "magic blast vr" + }, + { + "appid": 862740, + "normalized_name": "oneshift" + }, + { + "appid": 862770, + "normalized_name": "ko mech" + }, + { + "appid": 862800, + "normalized_name": "storm chasers" + }, + { + "appid": 862850, + "normalized_name": "the great story of a mighty hero" + }, + { + "appid": 862880, + "normalized_name": "intelligence anime girls" + }, + { + "appid": 862900, + "normalized_name": "swapette showdown" + }, + { + "appid": 862920, + "normalized_name": "kitsune kitchen" + }, + { + "appid": 862990, + "normalized_name": "survive the west" + }, + { + "appid": 863120, + "normalized_name": "the general retreats" + }, + { + "appid": 863150, + "normalized_name": "caverns lost sky" + }, + { + "appid": 863170, + "normalized_name": "muerte's arena" + }, + { + "appid": 863190, + "normalized_name": "gamer sensei's range royale" + }, + { + "appid": 863230, + "normalized_name": "super plexis" + }, + { + "appid": 863270, + "normalized_name": "orc island" + }, + { + "appid": 863280, + "normalized_name": "astraeus" + }, + { + "appid": 863290, + "normalized_name": "balance of soccer" + }, + { + "appid": 863300, + "normalized_name": "futuretech space combat academy" + }, + { + "appid": 863310, + "normalized_name": "vertical fall" + }, + { + "appid": 863380, + "normalized_name": "frankenstein beyond the time" + }, + { + "appid": 863390, + "normalized_name": "elemensional rift" + }, + { + "appid": 863400, + "normalized_name": "feud" + }, + { + "appid": 863430, + "normalized_name": "one person story" + }, + { + "appid": 863460, + "normalized_name": "cyber ops" + }, + { + "appid": 863470, + "normalized_name": "cairo's tale the big egg" + }, + { + "appid": 863490, + "normalized_name": "bighead runner" + }, + { + "appid": 863500, + "normalized_name": "all quiet in the trenches" + }, + { + "appid": 863560, + "normalized_name": "slime ccg" + }, + { + "appid": 863570, + "normalized_name": "super seducer 2 advanced seduction tactics" + }, + { + "appid": 863580, + "normalized_name": "viking days" + }, + { + "appid": 863590, + "normalized_name": "starcom nexus" + }, + { + "appid": 863640, + "normalized_name": "quiz time" + }, + { + "appid": 863660, + "normalized_name": "sea of memories" + }, + { + "appid": 863670, + "normalized_name": "science the world is in your hands" + }, + { + "appid": 863690, + "normalized_name": "blueprint" + }, + { + "appid": 863720, + "normalized_name": "otto and the ancient worlds" + }, + { + "appid": 863730, + "normalized_name": "artillery cats" + }, + { + "appid": 863780, + "normalized_name": "cat food" + }, + { + "appid": 863810, + "normalized_name": "smash boy ver.kz" + }, + { + "appid": 863840, + "normalized_name": "minerxp" + }, + { + "appid": 863870, + "normalized_name": "brain 43℃" + }, + { + "appid": 863900, + "normalized_name": "villager's biography" + }, + { + "appid": 863920, + "normalized_name": "the lost sky" + }, + { + "appid": 863940, + "normalized_name": "treasure adventure game" + }, + { + "appid": 863970, + "normalized_name": "survive the rift" + }, + { + "appid": 863980, + "normalized_name": "orix!" + }, + { + "appid": 864010, + "normalized_name": "space force" + }, + { + "appid": 864020, + "normalized_name": "lost legend legacy" + }, + { + "appid": 864030, + "normalized_name": "frogvale" + }, + { + "appid": 864060, + "normalized_name": "marble it up! ultra" + }, + { + "appid": 864100, + "normalized_name": "sagebrush" + }, + { + "appid": 864110, + "normalized_name": "trap defense" + }, + { + "appid": 864130, + "normalized_name": "my magical demon lover" + }, + { + "appid": 864150, + "normalized_name": "feelin" + }, + { + "appid": 864160, + "normalized_name": "be a walker" + }, + { + "appid": 864170, + "normalized_name": "midnight horde" + }, + { + "appid": 864190, + "normalized_name": "3 2 1 survive !" + }, + { + "appid": 864200, + "normalized_name": "demolition ball" + }, + { + "appid": 864230, + "normalized_name": "barry has a secret" + }, + { + "appid": 864300, + "normalized_name": "qop 3" + }, + { + "appid": 864310, + "normalized_name": "destiny of a wizard 2 beyond the vale" + }, + { + "appid": 864360, + "normalized_name": "savanna shot vr" + }, + { + "appid": 864370, + "normalized_name": "aztec number" + }, + { + "appid": 864420, + "normalized_name": "waterside chirping 水畔空蝉" + }, + { + "appid": 864430, + "normalized_name": "silverframe(纯白星原)" + }, + { + "appid": 864450, + "normalized_name": "combat wings" + }, + { + "appid": 864480, + "normalized_name": "taprpg homeland" + }, + { + "appid": 864500, + "normalized_name": "calm cards klondike" + }, + { + "appid": 864510, + "normalized_name": "scud frenzy" + }, + { + "appid": 864530, + "normalized_name": "necro immortallis" + }, + { + "appid": 864540, + "normalized_name": "fallback" + }, + { + "appid": 864550, + "normalized_name": "radiant one" + }, + { + "appid": 864570, + "normalized_name": "chocolate makes you happy 6" + }, + { + "appid": 864590, + "normalized_name": "zombie rampage" + }, + { + "appid": 864600, + "normalized_name": "jade's dungeon descent" + }, + { + "appid": 864610, + "normalized_name": "magic realm online" + }, + { + "appid": 864680, + "normalized_name": "rover mechanic simulator" + }, + { + "appid": 864700, + "normalized_name": "dinosaur fossil hunter" + }, + { + "appid": 864730, + "normalized_name": "panther vr" + }, + { + "appid": 864740, + "normalized_name": "the world of labyrinths labyronia" + }, + { + "appid": 864760, + "normalized_name": "limouzik" + }, + { + "appid": 864780, + "normalized_name": "dance my waifu" + }, + { + "appid": 864810, + "normalized_name": "numeric" + }, + { + "appid": 864850, + "normalized_name": "permission vr" + }, + { + "appid": 864860, + "normalized_name": "hellcat" + }, + { + "appid": 864880, + "normalized_name": "beasts&chests" + }, + { + "appid": 864930, + "normalized_name": "ultrabugs" + }, + { + "appid": 864960, + "normalized_name": "drops rhythm garden" + }, + { + "appid": 864970, + "normalized_name": "nightstar alliance" + }, + { + "appid": 865030, + "normalized_name": "frogatto & friends" + }, + { + "appid": 865040, + "normalized_name": "super bit blaster xl" + }, + { + "appid": 865060, + "normalized_name": "murasaki tsurugi" + }, + { + "appid": 865090, + "normalized_name": "ahegal" + }, + { + "appid": 865100, + "normalized_name": "李教授的知识问答" + }, + { + "appid": 865130, + "normalized_name": "ales dash" + }, + { + "appid": 865150, + "normalized_name": "安全教育" + }, + { + "appid": 865160, + "normalized_name": "takenoko" + }, + { + "appid": 865170, + "normalized_name": "heavenly duels" + }, + { + "appid": 865180, + "normalized_name": "reformers intl ver(变革者国际版)" + }, + { + "appid": 865190, + "normalized_name": "hotfloor" + }, + { + "appid": 865200, + "normalized_name": "divereal (inactive stopped)" + }, + { + "appid": 865220, + "normalized_name": "puzlogic" + }, + { + "appid": 865270, + "normalized_name": "library" + }, + { + "appid": 865310, + "normalized_name": "dubstep abasralsa" + }, + { + "appid": 865330, + "normalized_name": "dark days of horror" + }, + { + "appid": 865360, + "normalized_name": "we were here together" + }, + { + "appid": 865370, + "normalized_name": "el hincha el videojuego" + }, + { + "appid": 865390, + "normalized_name": "infinite world randomize everything" + }, + { + "appid": 865410, + "normalized_name": "cyber puzzle hackrow" + }, + { + "appid": 865540, + "normalized_name": "playne the meditation game" + }, + { + "appid": 865570, + "normalized_name": "pact with a witch" + }, + { + "appid": 865580, + "normalized_name": "kingdomonium" + }, + { + "appid": 865610, + "normalized_name": "tails noir" + }, + { + "appid": 865630, + "normalized_name": "one hundred times me" + }, + { + "appid": 865640, + "normalized_name": "mind your manas" + }, + { + "appid": 865680, + "normalized_name": "the eternal cylinder" + }, + { + "appid": 865720, + "normalized_name": "torn tales rebound" + }, + { + "appid": 865750, + "normalized_name": "harmony of the bravest" + }, + { + "appid": 865760, + "normalized_name": "solitude escape of head" + }, + { + "appid": 865800, + "normalized_name": "octo gravity" + }, + { + "appid": 865820, + "normalized_name": "psychedelica of the black butterfly" + }, + { + "appid": 865830, + "normalized_name": "psychedelica of the ashen hawk" + }, + { + "appid": 865840, + "normalized_name": "metempsychosis" + }, + { + "appid": 865850, + "normalized_name": "dehumanized" + }, + { + "appid": 865860, + "normalized_name": "vein hotel" + }, + { + "appid": 865870, + "normalized_name": "spacetone" + }, + { + "appid": 865880, + "normalized_name": "天岚行 through the mist and sky" + }, + { + "appid": 865930, + "normalized_name": "bqm blockquest maker" + }, + { + "appid": 865940, + "normalized_name": "snk 40th anniversary collection" + }, + { + "appid": 865980, + "normalized_name": "bossgard" + }, + { + "appid": 865990, + "normalized_name": "highway junkie" + }, + { + "appid": 866010, + "normalized_name": "beat stickman infinity clones" + }, + { + "appid": 866020, + "normalized_name": "growtopia" + }, + { + "appid": 866040, + "normalized_name": "kicker" + }, + { + "appid": 866080, + "normalized_name": "flywarzz" + }, + { + "appid": 866100, + "normalized_name": "harmonytd" + }, + { + "appid": 866140, + "normalized_name": "arise a simple story" + }, + { + "appid": 866180, + "normalized_name": "debris 2x1 hentai" + }, + { + "appid": 866190, + "normalized_name": "irony curtain from matryoshka with love" + }, + { + "appid": 866200, + "normalized_name": "timecluster" + }, + { + "appid": 866270, + "normalized_name": "lambs on the road the beginning" + }, + { + "appid": 866310, + "normalized_name": "putin run away from trump" + }, + { + "appid": 866330, + "normalized_name": "fatman simulator" + }, + { + "appid": 866340, + "normalized_name": "colonumbers" + }, + { + "appid": 866400, + "normalized_name": "on the western front" + }, + { + "appid": 866420, + "normalized_name": "tanks" + }, + { + "appid": 866430, + "normalized_name": "as+cend" + }, + { + "appid": 866440, + "normalized_name": "what never was" + }, + { + "appid": 866450, + "normalized_name": "light rider" + }, + { + "appid": 866480, + "normalized_name": "i.e.l indo european languages" + }, + { + "appid": 866490, + "normalized_name": "test" + }, + { + "appid": 866500, + "normalized_name": "space toads mayhem" + }, + { + "appid": 866510, + "normalized_name": "!anyway!" + }, + { + "appid": 866520, + "normalized_name": "defense the farm" + }, + { + "appid": 866540, + "normalized_name": "vr flush" + }, + { + "appid": 866570, + "normalized_name": "system shock 2 25th anniversary remaster" + }, + { + "appid": 866700, + "normalized_name": "echoes of the past wolf healer collector's" + }, + { + "appid": 866710, + "normalized_name": "shiver the lily's requiem collector's" + }, + { + "appid": 866730, + "normalized_name": "love story the way home" + }, + { + "appid": 866740, + "normalized_name": "haunted hotel charles dexter ward collector's" + }, + { + "appid": 866750, + "normalized_name": "redemption cemetery grave testimony collector’s" + }, + { + "appid": 866770, + "normalized_name": "spaceteam vr" + }, + { + "appid": 866780, + "normalized_name": "sea of lies tide of treachery collector's" + }, + { + "appid": 866790, + "normalized_name": "myths of the world of fiends and fairies collector's" + }, + { + "appid": 866800, + "normalized_name": "the walking dead the final season" + }, + { + "appid": 866900, + "normalized_name": "realms of supremacy" + }, + { + "appid": 866960, + "normalized_name": "slime kingdom" + }, + { + "appid": 867010, + "normalized_name": "adventure delivery service" + }, + { + "appid": 867050, + "normalized_name": "endless fables 3 dark moor" + }, + { + "appid": 867080, + "normalized_name": "stones of yalmrith" + }, + { + "appid": 867110, + "normalized_name": "dungeon rankers" + }, + { + "appid": 867120, + "normalized_name": "lilipalace" + }, + { + "appid": 867130, + "normalized_name": "alice in wonderland 3d labyrinth game" + }, + { + "appid": 867140, + "normalized_name": "win the game wtf!" + }, + { + "appid": 867150, + "normalized_name": "influx redux" + }, + { + "appid": 867160, + "normalized_name": "tomb of the overlord" + }, + { + "appid": 867180, + "normalized_name": "tilesweeper" + }, + { + "appid": 867210, + "normalized_name": "songs of conquest" + }, + { + "appid": 867250, + "normalized_name": "wars of succession" + }, + { + "appid": 867290, + "normalized_name": "crossroads inn anniversary" + }, + { + "appid": 867380, + "normalized_name": "up left out" + }, + { + "appid": 867390, + "normalized_name": "chase" + }, + { + "appid": 867400, + "normalized_name": "out of reach treasure royale" + }, + { + "appid": 867420, + "normalized_name": "andor wrecking dawn" + }, + { + "appid": 867460, + "normalized_name": "planet reserve" + }, + { + "appid": 867470, + "normalized_name": "albedon wars" + }, + { + "appid": 867480, + "normalized_name": "daddy" + }, + { + "appid": 867490, + "normalized_name": "remyadry" + }, + { + "appid": 867510, + "normalized_name": "photon cube" + }, + { + "appid": 867530, + "normalized_name": "party poopers" + }, + { + "appid": 867540, + "normalized_name": "honor cry aftermath" + }, + { + "appid": 867550, + "normalized_name": "range ball" + }, + { + "appid": 867580, + "normalized_name": "magic flight academy" + }, + { + "appid": 867590, + "normalized_name": "sakura and crit the mock game" + }, + { + "appid": 867640, + "normalized_name": "office race" + }, + { + "appid": 867660, + "normalized_name": "nykra before" + }, + { + "appid": 867690, + "normalized_name": "psycho wolf" + }, + { + "appid": 867700, + "normalized_name": "the wilting amaranth" + }, + { + "appid": 867720, + "normalized_name": "zombie barricades" + }, + { + "appid": 867750, + "normalized_name": "gull kebap vr" + }, + { + "appid": 867760, + "normalized_name": "invasion of the box people" + }, + { + "appid": 867770, + "normalized_name": "the one we found" + }, + { + "appid": 867790, + "normalized_name": "aeroplanoui" + }, + { + "appid": 867800, + "normalized_name": "gravity jump" + }, + { + "appid": 867850, + "normalized_name": "turn up jeans" + }, + { + "appid": 867900, + "normalized_name": "tennis tune up" + }, + { + "appid": 867920, + "normalized_name": "tales of mahabharata" + }, + { + "appid": 867960, + "normalized_name": "remorse the list" + }, + { + "appid": 867980, + "normalized_name": "raiders of the lost island" + }, + { + "appid": 868000, + "normalized_name": "dance with memes" + }, + { + "appid": 868010, + "normalized_name": "hallo spaceboy" + }, + { + "appid": 868020, + "normalized_name": "aperture hand lab" + }, + { + "appid": 868040, + "normalized_name": "stick spartans" + }, + { + "appid": 868060, + "normalized_name": "immortal darkness curse of the pale king" + }, + { + "appid": 868070, + "normalized_name": "through the tomb" + }, + { + "appid": 868080, + "normalized_name": "golf galore" + }, + { + "appid": 868090, + "normalized_name": "battle summoners vr basic" + }, + { + "appid": 868100, + "normalized_name": "小游戏世界(中国版)" + }, + { + "appid": 868130, + "normalized_name": "hex two" + }, + { + "appid": 868150, + "normalized_name": "takelings house party" + }, + { + "appid": 868180, + "normalized_name": "salty seabird bay" + }, + { + "appid": 868190, + "normalized_name": "sapper boom!" + }, + { + "appid": 868210, + "normalized_name": "road z survival the last winter" + }, + { + "appid": 868230, + "normalized_name": "mushroom quest" + }, + { + "appid": 868240, + "normalized_name": "finsummervr" + }, + { + "appid": 868260, + "normalized_name": "zoo constructor" + }, + { + "appid": 868320, + "normalized_name": "噬元之主" + }, + { + "appid": 868360, + "normalized_name": "project hospital" + }, + { + "appid": 868370, + "normalized_name": "lost tales the castle escape" + }, + { + "appid": 868380, + "normalized_name": "sexbot quality assurance simulator" + }, + { + "appid": 868390, + "normalized_name": "survival diary" + }, + { + "appid": 868410, + "normalized_name": "daisenryaku perfect 4.0" + }, + { + "appid": 868430, + "normalized_name": "brathian" + }, + { + "appid": 868450, + "normalized_name": "full colour tiles" + }, + { + "appid": 868460, + "normalized_name": "adventure of a digger" + }, + { + "appid": 868500, + "normalized_name": "qybe" + }, + { + "appid": 868510, + "normalized_name": "the outsiders" + }, + { + "appid": 868520, + "normalized_name": "killer7" + }, + { + "appid": 868550, + "normalized_name": "what do you hear?? yanny vs laurel" + }, + { + "appid": 868560, + "normalized_name": "fly killer vr" + }, + { + "appid": 868570, + "normalized_name": "prototype mansion used no cover" + }, + { + "appid": 868580, + "normalized_name": "arkhangel the house of the seven stars" + }, + { + "appid": 868600, + "normalized_name": "lands of the lost" + }, + { + "appid": 868660, + "normalized_name": "soccer battle royale" + }, + { + "appid": 868710, + "normalized_name": "hope of humanity" + }, + { + "appid": 868720, + "normalized_name": "megaton" + }, + { + "appid": 868730, + "normalized_name": "chessers" + }, + { + "appid": 868760, + "normalized_name": "don't stop" + }, + { + "appid": 868770, + "normalized_name": "saint kotar the yellow mask" + }, + { + "appid": 868780, + "normalized_name": "i cyborg" + }, + { + "appid": 868830, + "normalized_name": "rio rex" + }, + { + "appid": 868880, + "normalized_name": "candy raid the factory" + }, + { + "appid": 868890, + "normalized_name": "horny fighter" + }, + { + "appid": 868910, + "normalized_name": "cryptozookeeper" + }, + { + "appid": 868920, + "normalized_name": "pylow" + }, + { + "appid": 868930, + "normalized_name": "nobunaga's shadow" + }, + { + "appid": 868940, + "normalized_name": "the curious study of dr. blackwood a vr tech demo" + }, + { + "appid": 868950, + "normalized_name": "absolute vr experiences" + }, + { + "appid": 868960, + "normalized_name": "aridfortress" + }, + { + "appid": 868970, + "normalized_name": "cut the ex girlfriends" + }, + { + "appid": 869010, + "normalized_name": "katto" + }, + { + "appid": 869030, + "normalized_name": "brotherhood united" + }, + { + "appid": 869060, + "normalized_name": "resort boss golf" + }, + { + "appid": 869080, + "normalized_name": "trago" + }, + { + "appid": 869090, + "normalized_name": "sampling" + }, + { + "appid": 869100, + "normalized_name": "universally loved" + }, + { + "appid": 869130, + "normalized_name": "world of zombies" + }, + { + "appid": 869170, + "normalized_name": "oneiros" + }, + { + "appid": 869260, + "normalized_name": "get rektorized" + }, + { + "appid": 869270, + "normalized_name": "/reroll" + }, + { + "appid": 869280, + "normalized_name": "rapstar tycoon" + }, + { + "appid": 869290, + "normalized_name": "don't look down" + }, + { + "appid": 869300, + "normalized_name": "the darkest woods" + }, + { + "appid": 869340, + "normalized_name": "the federal rescue" + }, + { + "appid": 869350, + "normalized_name": "because we're here act i" + }, + { + "appid": 869370, + "normalized_name": "the goracle" + }, + { + "appid": 869400, + "normalized_name": "numbers & letters" + }, + { + "appid": 869410, + "normalized_name": "blades of worlds" + }, + { + "appid": 869420, + "normalized_name": "jailbreak lockdown" + }, + { + "appid": 869440, + "normalized_name": "cherry in the sky" + }, + { + "appid": 869450, + "normalized_name": "xenogrove" + }, + { + "appid": 869460, + "normalized_name": "the experimental adventures of lame & cheesy" + }, + { + "appid": 869470, + "normalized_name": "tiny hands adventure" + }, + { + "appid": 869490, + "normalized_name": "limerick cadence mansion" + }, + { + "appid": 869500, + "normalized_name": "the book of regrets" + }, + { + "appid": 869510, + "normalized_name": "召唤一些奇形怪状的东西打来打去的小游戏" + }, + { + "appid": 869540, + "normalized_name": "hero hunters 杀手 3d 2k19" + }, + { + "appid": 869550, + "normalized_name": "double shot" + }, + { + "appid": 869560, + "normalized_name": "dayd through time. jurassic rush" + }, + { + "appid": 869580, + "normalized_name": "keep running" + }, + { + "appid": 869600, + "normalized_name": "on your mark" + }, + { + "appid": 869620, + "normalized_name": "katy and bob cake café" + }, + { + "appid": 869630, + "normalized_name": "heart'n block" + }, + { + "appid": 869640, + "normalized_name": "angry giant" + }, + { + "appid": 869650, + "normalized_name": "franky lettuce" + }, + { + "appid": 869660, + "normalized_name": "幻世情缘" + }, + { + "appid": 869690, + "normalized_name": "cat lady the card game" + }, + { + "appid": 869710, + "normalized_name": "skirmish" + }, + { + "appid": 869730, + "normalized_name": "duncade" + }, + { + "appid": 869840, + "normalized_name": "羽翼的祈愿 feather of praying" + }, + { + "appid": 869850, + "normalized_name": "jet ant" + }, + { + "appid": 869870, + "normalized_name": "she is mermaid" + }, + { + "appid": 869880, + "normalized_name": "cyanide & happiness freakpocalypse (episode 1)" + }, + { + "appid": 869910, + "normalized_name": "amaze bowl" + }, + { + "appid": 869930, + "normalized_name": "up and up" + }, + { + "appid": 870010, + "normalized_name": "mazes and mages" + }, + { + "appid": 870020, + "normalized_name": "3d gravity rocket" + }, + { + "appid": 870030, + "normalized_name": "polymatic" + }, + { + "appid": 870080, + "normalized_name": "running through russia 2" + }, + { + "appid": 870090, + "normalized_name": "lems" + }, + { + "appid": 870100, + "normalized_name": "乌鸦 crows" + }, + { + "appid": 870110, + "normalized_name": "the monsters' history book" + }, + { + "appid": 870120, + "normalized_name": "the bad gravedigger" + }, + { + "appid": 870140, + "normalized_name": "treasure hunter man 2" + }, + { + "appid": 870150, + "normalized_name": "jumponaut" + }, + { + "appid": 870160, + "normalized_name": "r.o.v.e.r." + }, + { + "appid": 870180, + "normalized_name": "blueprint word" + }, + { + "appid": 870190, + "normalized_name": "that which binds us" + }, + { + "appid": 870200, + "normalized_name": "juno new origins" + }, + { + "appid": 870260, + "normalized_name": "forward line" + }, + { + "appid": 870290, + "normalized_name": "the miskatonic" + }, + { + "appid": 870390, + "normalized_name": "moonshine maniacs a wild west saga" + }, + { + "appid": 870400, + "normalized_name": "fugue" + }, + { + "appid": 870430, + "normalized_name": "debit and credit a walk through accounting hell" + }, + { + "appid": 870450, + "normalized_name": "fobia" + }, + { + "appid": 870520, + "normalized_name": "太平洋之嵐6 ~ 史上最大的激戰諾曼第攻防戰! pacific storm 6 battle for normandy" + }, + { + "appid": 870570, + "normalized_name": "black steel" + }, + { + "appid": 870580, + "normalized_name": "zoomnboom" + }, + { + "appid": 870590, + "normalized_name": "moonbase down" + }, + { + "appid": 870670, + "normalized_name": "ink cipher" + }, + { + "appid": 870680, + "normalized_name": "automatum" + }, + { + "appid": 870690, + "normalized_name": "galaxy trucker extended" + }, + { + "appid": 870730, + "normalized_name": "adapt or perish" + }, + { + "appid": 870740, + "normalized_name": "bowman vs zombies" + }, + { + "appid": 870750, + "normalized_name": "smash it" + }, + { + "appid": 870780, + "normalized_name": "control" + }, + { + "appid": 870800, + "normalized_name": "kilcount" + }, + { + "appid": 870830, + "normalized_name": "dark inside" + }, + { + "appid": 870870, + "normalized_name": "meecheenme" + }, + { + "appid": 870890, + "normalized_name": "museum of symmetry" + }, + { + "appid": 870930, + "normalized_name": "fragment a botanical adventure" + }, + { + "appid": 870940, + "normalized_name": "brainstorm party" + }, + { + "appid": 870950, + "normalized_name": "drone investigations" + }, + { + "appid": 870990, + "normalized_name": "!labrpgup!" + }, + { + "appid": 871100, + "normalized_name": "animyst" + }, + { + "appid": 871140, + "normalized_name": "great old one arrival" + }, + { + "appid": 871150, + "normalized_name": "noble crusade" + }, + { + "appid": 871160, + "normalized_name": "loopcraft" + }, + { + "appid": 871190, + "normalized_name": "hatch" + }, + { + "appid": 871200, + "normalized_name": "fighting ex layer" + }, + { + "appid": 871210, + "normalized_name": "lamp chronicle" + }, + { + "appid": 871220, + "normalized_name": "the adventures of captain potato" + }, + { + "appid": 871230, + "normalized_name": "dungeon rush" + }, + { + "appid": 871270, + "normalized_name": "wild west vr" + }, + { + "appid": 871280, + "normalized_name": "grisaia phantom trigger vol.5" + }, + { + "appid": 871290, + "normalized_name": "shepard fairey vr damaged" + }, + { + "appid": 871300, + "normalized_name": "curse in our heads" + }, + { + "appid": 871310, + "normalized_name": "arc savior" + }, + { + "appid": 871330, + "normalized_name": "achaem!" + }, + { + "appid": 871390, + "normalized_name": "rock n' rush battle racing" + }, + { + "appid": 871400, + "normalized_name": "cinnamon fight" + }, + { + "appid": 871410, + "normalized_name": "dawngrown" + }, + { + "appid": 871420, + "normalized_name": "lovecraft's untold stories" + }, + { + "appid": 871510, + "normalized_name": "wheelchair simulator" + }, + { + "appid": 871530, + "normalized_name": "radio commander" + }, + { + "appid": 871540, + "normalized_name": "bmx streets" + }, + { + "appid": 871550, + "normalized_name": "chicken rider" + }, + { + "appid": 871570, + "normalized_name": "summer memory of bell" + }, + { + "appid": 871580, + "normalized_name": "super ball wrestle yes" + }, + { + "appid": 871590, + "normalized_name": "nurikabe" + }, + { + "appid": 871620, + "normalized_name": "volcano eruption" + }, + { + "appid": 871640, + "normalized_name": "asteroid rkd" + }, + { + "appid": 871670, + "normalized_name": "trapland" + }, + { + "appid": 871710, + "normalized_name": "galactic dominion" + }, + { + "appid": 871720, + "normalized_name": "custom night" + }, + { + "appid": 871810, + "normalized_name": "blackout" + }, + { + "appid": 871850, + "normalized_name": "mutation phase" + }, + { + "appid": 871860, + "normalized_name": "allergenium" + }, + { + "appid": 871870, + "normalized_name": "alone" + }, + { + "appid": 871920, + "normalized_name": "mad restaurant people" + }, + { + "appid": 871930, + "normalized_name": "gladiabots ai combat arena" + }, + { + "appid": 871940, + "normalized_name": "brawlquest" + }, + { + "appid": 871950, + "normalized_name": "dere evil exe" + }, + { + "appid": 871980, + "normalized_name": "digimon survive" + }, + { + "appid": 871990, + "normalized_name": "battlerush 2" + }, + { + "appid": 872000, + "normalized_name": "beerd leaver" + }, + { + "appid": 872040, + "normalized_name": "hovership havoc" + }, + { + "appid": 872060, + "normalized_name": "quiet as a stone" + }, + { + "appid": 872090, + "normalized_name": "freezeer" + }, + { + "appid": 872110, + "normalized_name": "burden of proof" + }, + { + "appid": 872140, + "normalized_name": "the eye of modern mali" + }, + { + "appid": 872180, + "normalized_name": "charm tale" + }, + { + "appid": 872200, + "normalized_name": "rogue company" + }, + { + "appid": 872220, + "normalized_name": "delta g" + }, + { + "appid": 872230, + "normalized_name": "destiny of altrais" + }, + { + "appid": 872240, + "normalized_name": "nick beard the fedora of destiny" + }, + { + "appid": 872270, + "normalized_name": "the change" + }, + { + "appid": 872310, + "normalized_name": "grid games color coded" + }, + { + "appid": 872330, + "normalized_name": "wizard street" + }, + { + "appid": 872340, + "normalized_name": "bunny battle arena" + }, + { + "appid": 872350, + "normalized_name": "zombie killing simulator" + }, + { + "appid": 872360, + "normalized_name": "fruit hoop" + }, + { + "appid": 872380, + "normalized_name": "banzo marks of slavery" + }, + { + "appid": 872390, + "normalized_name": "rise of the titan" + }, + { + "appid": 872410, + "normalized_name": "romance of the three kingdoms xiv" + }, + { + "appid": 872450, + "normalized_name": "let's seduce the heroine!" + }, + { + "appid": 872460, + "normalized_name": "queen of the pack" + }, + { + "appid": 872470, + "normalized_name": "necro mutex" + }, + { + "appid": 872490, + "normalized_name": "blind souls" + }, + { + "appid": 872550, + "normalized_name": "urbance clans card battle!" + }, + { + "appid": 872560, + "normalized_name": "cubeology" + }, + { + "appid": 872570, + "normalized_name": "romans age of caesar" + }, + { + "appid": 872580, + "normalized_name": "the neon boy" + }, + { + "appid": 872590, + "normalized_name": "探灵警探" + }, + { + "appid": 872600, + "normalized_name": "创史者hist maker" + }, + { + "appid": 872630, + "normalized_name": "project vr wild hunt" + }, + { + "appid": 872670, + "normalized_name": "scp 5k" + }, + { + "appid": 872680, + "normalized_name": "z dawn" + }, + { + "appid": 872700, + "normalized_name": "jet story 2018" + }, + { + "appid": 872720, + "normalized_name": "supermash" + }, + { + "appid": 872730, + "normalized_name": "test your knowledge cities" + }, + { + "appid": 872750, + "normalized_name": "guard duty" + }, + { + "appid": 872810, + "normalized_name": "eleven eleven" + }, + { + "appid": 872970, + "normalized_name": "azurael's circle chapter 1" + }, + { + "appid": 872990, + "normalized_name": "stream games" + }, + { + "appid": 873000, + "normalized_name": "stuck together" + }, + { + "appid": 873040, + "normalized_name": "final missions" + }, + { + "appid": 873050, + "normalized_name": "crescent hollow" + }, + { + "appid": 873070, + "normalized_name": "neo neo" + }, + { + "appid": 873090, + "normalized_name": "chibisu's costume combat" + }, + { + "appid": 873140, + "normalized_name": "war of gaia into the fire" + }, + { + "appid": 873160, + "normalized_name": "speckle chill puzzle game" + }, + { + "appid": 873180, + "normalized_name": "飞跃跳台:冒险!!! / 1000 stages adventure!!!" + }, + { + "appid": 873190, + "normalized_name": "есть два стула" + }, + { + "appid": 873200, + "normalized_name": "teleportals. i swear it's a nice game" + }, + { + "appid": 873210, + "normalized_name": "iterform" + }, + { + "appid": 873220, + "normalized_name": "survivalz battlegrounds" + }, + { + "appid": 873230, + "normalized_name": "the king's request physiology and anatomy revision game" + }, + { + "appid": 873250, + "normalized_name": "crimson light" + }, + { + "appid": 873270, + "normalized_name": "rolled out!" + }, + { + "appid": 873280, + "normalized_name": "kick them out!!!" + }, + { + "appid": 873320, + "normalized_name": "life's playground" + }, + { + "appid": 873330, + "normalized_name": "color by numbers flowers" + }, + { + "appid": 873370, + "normalized_name": "モデルdeファイト(model de fight)" + }, + { + "appid": 873390, + "normalized_name": "celestial hacker girl jessica" + }, + { + "appid": 873410, + "normalized_name": "the basilisk" + }, + { + "appid": 873470, + "normalized_name": "zero sum future" + }, + { + "appid": 873480, + "normalized_name": "tether roll jump swing glide!" + }, + { + "appid": 873490, + "normalized_name": "不落城 unconquered castle" + }, + { + "appid": 873500, + "normalized_name": "space maze" + }, + { + "appid": 873560, + "normalized_name": "jack n' jill dx" + }, + { + "appid": 873610, + "normalized_name": "mr.vegan" + }, + { + "appid": 873710, + "normalized_name": "paris jigsaw puzzles" + }, + { + "appid": 873720, + "normalized_name": "pac adventures 3d" + }, + { + "appid": 873730, + "normalized_name": "under the war" + }, + { + "appid": 873740, + "normalized_name": "tranquility base mining colony the moon explorer version" + }, + { + "appid": 873790, + "normalized_name": "freebot battle for freeweb" + }, + { + "appid": 873810, + "normalized_name": "cars arena" + }, + { + "appid": 873830, + "normalized_name": "subcube" + }, + { + "appid": 873840, + "normalized_name": "truck & logistics simulator" + }, + { + "appid": 873850, + "normalized_name": "passage" + }, + { + "appid": 873890, + "normalized_name": "legends of amberland the forgotten crown" + }, + { + "appid": 873900, + "normalized_name": "lost artifacts golden island" + }, + { + "appid": 873930, + "normalized_name": "aliens invaded our planet" + }, + { + "appid": 873940, + "normalized_name": "crying suns" + }, + { + "appid": 873960, + "normalized_name": "panic room 2 hide and seek" + }, + { + "appid": 873970, + "normalized_name": "virtual families 2 our dream house" + }, + { + "appid": 873980, + "normalized_name": "isle of skye" + }, + { + "appid": 874010, + "normalized_name": "amaze classic inverted" + }, + { + "appid": 874020, + "normalized_name": "lost artifacts soulstone" + }, + { + "appid": 874030, + "normalized_name": "to the core" + }, + { + "appid": 874040, + "normalized_name": "ministry of broadcast" + }, + { + "appid": 874060, + "normalized_name": "bleeding moons" + }, + { + "appid": 874080, + "normalized_name": "detective failure" + }, + { + "appid": 874090, + "normalized_name": "living with jaguars" + }, + { + "appid": 874130, + "normalized_name": "hunter brick ball" + }, + { + "appid": 874140, + "normalized_name": "othello 2018" + }, + { + "appid": 874200, + "normalized_name": "swipe fruit smash" + }, + { + "appid": 874230, + "normalized_name": "antirocketh" + }, + { + "appid": 874250, + "normalized_name": "hum drum experiences" + }, + { + "appid": 874260, + "normalized_name": "the forgotten city" + }, + { + "appid": 874270, + "normalized_name": "sphaera" + }, + { + "appid": 874330, + "normalized_name": "me and dungeons" + }, + { + "appid": 874370, + "normalized_name": "repentant" + }, + { + "appid": 874390, + "normalized_name": "the battle of polytopia" + }, + { + "appid": 874400, + "normalized_name": "dinosaur hunt puzzle" + }, + { + "appid": 874440, + "normalized_name": "border bots vr" + }, + { + "appid": 874450, + "normalized_name": "lunacy saint rhodes" + }, + { + "appid": 874460, + "normalized_name": "achtung! cthulhu tactics" + }, + { + "appid": 874630, + "normalized_name": "m.a.d. cliff all quiet on the bridge" + }, + { + "appid": 874640, + "normalized_name": "the life's lane" + }, + { + "appid": 874650, + "normalized_name": "xxx puzzle" + }, + { + "appid": 874690, + "normalized_name": "maze and dagger" + }, + { + "appid": 874700, + "normalized_name": "the putinland divide & conquer" + }, + { + "appid": 874760, + "normalized_name": "giphy world vr" + }, + { + "appid": 874770, + "normalized_name": "goinund" + }, + { + "appid": 874780, + "normalized_name": "brick breaker premium" + }, + { + "appid": 874810, + "normalized_name": "brick breaker premium 3" + }, + { + "appid": 874840, + "normalized_name": "arcball 3 infinity" + }, + { + "appid": 874880, + "normalized_name": "hat hunters" + }, + { + "appid": 874930, + "normalized_name": "what a trash game!" + }, + { + "appid": 875080, + "normalized_name": "solar explorer new dawn" + }, + { + "appid": 875100, + "normalized_name": "tiger tank 59 ⅰ" + }, + { + "appid": 875110, + "normalized_name": "infinipicross 2.0" + }, + { + "appid": 875160, + "normalized_name": "mall town" + }, + { + "appid": 875210, + "normalized_name": "三国群英传8 (kingdom heroes 8)" + }, + { + "appid": 875240, + "normalized_name": "tree bonsai" + }, + { + "appid": 875270, + "normalized_name": "anceder" + }, + { + "appid": 875300, + "normalized_name": "de fobos y deimos" + }, + { + "appid": 875310, + "normalized_name": "liberated" + }, + { + "appid": 875320, + "normalized_name": "exo racing" + }, + { + "appid": 875340, + "normalized_name": "dead mayhem" + }, + { + "appid": 875400, + "normalized_name": "blackout the darkest night" + }, + { + "appid": 875430, + "normalized_name": "hentai words" + }, + { + "appid": 875500, + "normalized_name": "factory of monsters" + }, + { + "appid": 875510, + "normalized_name": "midnight awake" + }, + { + "appid": 875520, + "normalized_name": "freddy's journey" + }, + { + "appid": 875530, + "normalized_name": "dead in time" + }, + { + "appid": 875540, + "normalized_name": "virtual telescope" + }, + { + "appid": 875550, + "normalized_name": "vogue the explorer" + }, + { + "appid": 875590, + "normalized_name": "choco puzzle" + }, + { + "appid": 875610, + "normalized_name": "loop loop dx" + }, + { + "appid": 875630, + "normalized_name": "call each new year" + }, + { + "appid": 875640, + "normalized_name": "mechanisms of mystery a vr escape game" + }, + { + "appid": 875660, + "normalized_name": "tales from windy meadow legacy" + }, + { + "appid": 875670, + "normalized_name": "sophisticated puzzle" + }, + { + "appid": 875710, + "normalized_name": "brane prototype" + }, + { + "appid": 875740, + "normalized_name": "scorch" + }, + { + "appid": 875760, + "normalized_name": "furious seas" + }, + { + "appid": 875780, + "normalized_name": "trivia king" + }, + { + "appid": 875790, + "normalized_name": "the movie trivia challenge" + }, + { + "appid": 875800, + "normalized_name": "wasteland" + }, + { + "appid": 875810, + "normalized_name": "salio" + }, + { + "appid": 875830, + "normalized_name": "moral king" + }, + { + "appid": 875840, + "normalized_name": "bookers underground chapter" + }, + { + "appid": 875930, + "normalized_name": "rehtona 幻境双生" + }, + { + "appid": 876100, + "normalized_name": "zodicat" + }, + { + "appid": 876110, + "normalized_name": "envoy of nezphere" + }, + { + "appid": 876120, + "normalized_name": "jolly rogers pirates rumble" + }, + { + "appid": 876130, + "normalized_name": "crazy farm vrground" + }, + { + "appid": 876140, + "normalized_name": "police air transporter" + }, + { + "appid": 876150, + "normalized_name": "the lost light of sisu" + }, + { + "appid": 876160, + "normalized_name": "occupy white walls" + }, + { + "appid": 876170, + "normalized_name": "dds (d.i.y drone simulator)" + }, + { + "appid": 876180, + "normalized_name": "skyscrapers puzzle airi's tale" + }, + { + "appid": 876190, + "normalized_name": "football drama" + }, + { + "appid": 876210, + "normalized_name": "zen space flight vr showcase" + }, + { + "appid": 876220, + "normalized_name": "moss destruction" + }, + { + "appid": 876240, + "normalized_name": "the psychic" + }, + { + "appid": 876270, + "normalized_name": "homo flimsy the ragdoll goalkeeping simulator" + }, + { + "appid": 876290, + "normalized_name": "let's split up (a visual novel)" + }, + { + "appid": 876300, + "normalized_name": "road homeward" + }, + { + "appid": 876310, + "normalized_name": "big pogo man" + }, + { + "appid": 876320, + "normalized_name": "hyperspace delivery service" + }, + { + "appid": 876340, + "normalized_name": "vr slots 3d" + }, + { + "appid": 876370, + "normalized_name": "somnium" + }, + { + "appid": 876380, + "normalized_name": "underwater hunting" + }, + { + "appid": 876410, + "normalized_name": "greenspawn restaurant" + }, + { + "appid": 876470, + "normalized_name": "tentlan" + }, + { + "appid": 876480, + "normalized_name": "vosaria lair of the forgotten" + }, + { + "appid": 876500, + "normalized_name": "hyperdot" + }, + { + "appid": 876540, + "normalized_name": "adventure hero" + }, + { + "appid": 876560, + "normalized_name": "cookie space" + }, + { + "appid": 876580, + "normalized_name": "canyousurvive?" + }, + { + "appid": 876650, + "normalized_name": "aground" + }, + { + "appid": 876780, + "normalized_name": "kronorite" + }, + { + "appid": 876810, + "normalized_name": "one jump bomb" + }, + { + "appid": 876840, + "normalized_name": "999" + }, + { + "appid": 876850, + "normalized_name": "whitelily 1:丽丽公主" + }, + { + "appid": 876880, + "normalized_name": "caretaker" + }, + { + "appid": 876890, + "normalized_name": "draw it! 2" + }, + { + "appid": 876900, + "normalized_name": "climb" + }, + { + "appid": 876930, + "normalized_name": "fancy skiing 2 online" + }, + { + "appid": 876960, + "normalized_name": "car puzzle round ways" + }, + { + "appid": 877010, + "normalized_name": "beyond contact" + }, + { + "appid": 877040, + "normalized_name": "samurai wish" + }, + { + "appid": 877060, + "normalized_name": "multiball (bladosharik)" + }, + { + "appid": 877070, + "normalized_name": "ticktock" + }, + { + "appid": 877080, + "normalized_name": "seeds of resilience" + }, + { + "appid": 877150, + "normalized_name": "gravity wars" + }, + { + "appid": 877180, + "normalized_name": "candy" + }, + { + "appid": 877200, + "normalized_name": "zero caliber vr" + }, + { + "appid": 877250, + "normalized_name": "devochka quest" + }, + { + "appid": 877270, + "normalized_name": "the pirates of sector 7" + }, + { + "appid": 877300, + "normalized_name": "liquid sunshine" + }, + { + "appid": 877310, + "normalized_name": "sumerian blood gilgamesh against the gods" + }, + { + "appid": 877330, + "normalized_name": "castle kong" + }, + { + "appid": 877340, + "normalized_name": "atmotech episode praeludium" + }, + { + "appid": 877360, + "normalized_name": "18+" + }, + { + "appid": 877380, + "normalized_name": "factory manager" + }, + { + "appid": 877400, + "normalized_name": "dust and echos vengeance" + }, + { + "appid": 877430, + "normalized_name": "задолбали! (unstoppable man)" + }, + { + "appid": 877440, + "normalized_name": "quench" + }, + { + "appid": 877470, + "normalized_name": "rage of the pumpkins space prostitutes must die! again" + }, + { + "appid": 877480, + "normalized_name": "ammo pigs armed and delicious" + }, + { + "appid": 877510, + "normalized_name": "the station vr" + }, + { + "appid": 877530, + "normalized_name": "sneaky funk" + }, + { + "appid": 877550, + "normalized_name": "digital jigsaw puzzle" + }, + { + "appid": 877590, + "normalized_name": "gensokyo rolling force / 幻想郷ローリングフォース" + }, + { + "appid": 877610, + "normalized_name": "cyber lemur" + }, + { + "appid": 877680, + "normalized_name": "hardcore weapon challenge fps action" + }, + { + "appid": 877690, + "normalized_name": "deepfield" + }, + { + "appid": 877710, + "normalized_name": "micromanagement" + }, + { + "appid": 877750, + "normalized_name": "coinon" + }, + { + "appid": 877780, + "normalized_name": "puzzles for smart cats" + }, + { + "appid": 877800, + "normalized_name": "swimsanity!" + }, + { + "appid": 877810, + "normalized_name": "anodyne 2 return to dust" + }, + { + "appid": 877850, + "normalized_name": "tribe xr | dj academy" + }, + { + "appid": 877870, + "normalized_name": "world soccer strikers '91" + }, + { + "appid": 877910, + "normalized_name": "time drifter" + }, + { + "appid": 877940, + "normalized_name": "gekraxel" + }, + { + "appid": 877960, + "normalized_name": "the legend of monster mountain" + }, + { + "appid": 877980, + "normalized_name": "hunting fields of jackals" + }, + { + "appid": 878020, + "normalized_name": "it's you a breakup story" + }, + { + "appid": 878030, + "normalized_name": "trains & things" + }, + { + "appid": 878090, + "normalized_name": "the dragons' twilight ii" + }, + { + "appid": 878100, + "normalized_name": "one day for revenge" + }, + { + "appid": 878110, + "normalized_name": "fuel renegades" + }, + { + "appid": 878120, + "normalized_name": "unitestar" + }, + { + "appid": 878140, + "normalized_name": "witch of the woods" + }, + { + "appid": 878150, + "normalized_name": "core awaken ~the yuka~" + }, + { + "appid": 878170, + "normalized_name": "nazi" + }, + { + "appid": 878180, + "normalized_name": "hyper simon x" + }, + { + "appid": 878210, + "normalized_name": "matcho" + }, + { + "appid": 878240, + "normalized_name": "adva lines" + }, + { + "appid": 878250, + "normalized_name": "super jigsaw puzzle monuments" + }, + { + "appid": 878270, + "normalized_name": "trivia vault music trivia" + }, + { + "appid": 878280, + "normalized_name": "distorted illusions" + }, + { + "appid": 878290, + "normalized_name": "double switch 25th anniversary" + }, + { + "appid": 878300, + "normalized_name": "rolltheearth" + }, + { + "appid": 878310, + "normalized_name": "dishwasher" + }, + { + "appid": 878320, + "normalized_name": "simulacra pipe dreams" + }, + { + "appid": 878330, + "normalized_name": "whip! whip!" + }, + { + "appid": 878340, + "normalized_name": "wisgr" + }, + { + "appid": 878350, + "normalized_name": "tavern guardians banquet" + }, + { + "appid": 878380, + "normalized_name": "东方大战争 ~ touhou big big battle" + }, + { + "appid": 878420, + "normalized_name": "woodpunk" + }, + { + "appid": 878440, + "normalized_name": "fantasy ball" + }, + { + "appid": 878470, + "normalized_name": "70 seconds survival" + }, + { + "appid": 878500, + "normalized_name": "captain the runner" + }, + { + "appid": 878510, + "normalized_name": "sort the cube" + }, + { + "appid": 878520, + "normalized_name": "sally's salon kiss & make up" + }, + { + "appid": 878540, + "normalized_name": "coach bus simulator parking" + }, + { + "appid": 878580, + "normalized_name": "garage bad trip" + }, + { + "appid": 878590, + "normalized_name": "taprpg 2 the second one" + }, + { + "appid": 878610, + "normalized_name": "don't feed the slimes!" + }, + { + "appid": 878620, + "normalized_name": "neotrie vr multiplayer" + }, + { + "appid": 878640, + "normalized_name": "lo op" + }, + { + "appid": 878660, + "normalized_name": "build buildings" + }, + { + "appid": 878670, + "normalized_name": "shenmue iii" + }, + { + "appid": 878680, + "normalized_name": "the 50 states quiz" + }, + { + "appid": 878690, + "normalized_name": "morning star" + }, + { + "appid": 878710, + "normalized_name": "draft day sports college football 2018" + }, + { + "appid": 878750, + "normalized_name": "hentai girl" + }, + { + "appid": 878770, + "normalized_name": "spear master" + }, + { + "appid": 878780, + "normalized_name": "cute cats puzzles" + }, + { + "appid": 878810, + "normalized_name": "ashes of the ark" + }, + { + "appid": 878900, + "normalized_name": "gmh good morning human !" + }, + { + "appid": 878910, + "normalized_name": "sarah in the sky" + }, + { + "appid": 878950, + "normalized_name": "_dive" + }, + { + "appid": 878970, + "normalized_name": "the block box" + }, + { + "appid": 878980, + "normalized_name": "welcome to the dreamscape" + }, + { + "appid": 878990, + "normalized_name": "up or out" + }, + { + "appid": 879000, + "normalized_name": "comanche" + }, + { + "appid": 879030, + "normalized_name": "egg teacher vr" + }, + { + "appid": 879050, + "normalized_name": "drakkar crew" + }, + { + "appid": 879060, + "normalized_name": "boris the mutant bear with a gun" + }, + { + "appid": 879080, + "normalized_name": "samira's house" + }, + { + "appid": 879090, + "normalized_name": "meower's quest jasper's tale" + }, + { + "appid": 879100, + "normalized_name": "starship avenger operation take back earth/スターシップアベンジャー 地球奪還大作戦" + }, + { + "appid": 879110, + "normalized_name": "dragon`s checkers" + }, + { + "appid": 879140, + "normalized_name": "スペースチャンネル5 vr あらかた★ダンシングショー" + }, + { + "appid": 879160, + "normalized_name": "battlerite royale" + }, + { + "appid": 879200, + "normalized_name": "kin" + }, + { + "appid": 879250, + "normalized_name": "dot to dot puzzles" + }, + { + "appid": 879270, + "normalized_name": "'1st core the zombie killing cyborg'" + }, + { + "appid": 879280, + "normalized_name": "supesu" + }, + { + "appid": 879290, + "normalized_name": "multitaskmaster" + }, + { + "appid": 879320, + "normalized_name": "street karate" + }, + { + "appid": 879390, + "normalized_name": "powerup elevation" + }, + { + "appid": 879410, + "normalized_name": "let's go there and wander nowhere" + }, + { + "appid": 879420, + "normalized_name": "agony unrated" + }, + { + "appid": 879430, + "normalized_name": "switch black & white" + }, + { + "appid": 879450, + "normalized_name": "the chambers" + }, + { + "appid": 879470, + "normalized_name": "idle hunter" + }, + { + "appid": 879480, + "normalized_name": "the journey to fairytales" + }, + { + "appid": 879510, + "normalized_name": "lucy got problems" + }, + { + "appid": 879520, + "normalized_name": "ruby & majesty treasure team" + }, + { + "appid": 879530, + "normalized_name": "thunderbowl" + }, + { + "appid": 879580, + "normalized_name": "hyperball" + }, + { + "appid": 879600, + "normalized_name": "ones and zeroes" + }, + { + "appid": 879610, + "normalized_name": "girl mod | girls vr (create + pose in vr)" + }, + { + "appid": 879620, + "normalized_name": "armored train" + }, + { + "appid": 879670, + "normalized_name": "battle simulator" + }, + { + "appid": 879740, + "normalized_name": "epic skater 2" + }, + { + "appid": 879780, + "normalized_name": "the factory must survive" + }, + { + "appid": 879850, + "normalized_name": "box the game" + }, + { + "appid": 879920, + "normalized_name": "trakker" + }, + { + "appid": 880130, + "normalized_name": "lawless lands" + }, + { + "appid": 880180, + "normalized_name": "long road" + }, + { + "appid": 880200, + "normalized_name": "j15 jet fighter vr (歼15舰载机)" + }, + { + "appid": 880210, + "normalized_name": "the red moon" + }, + { + "appid": 880220, + "normalized_name": "~azur ring~virgin and slave's phylacteries" + }, + { + "appid": 880270, + "normalized_name": "geogebra mixed reality" + }, + { + "appid": 880300, + "normalized_name": "blood will be spilled" + }, + { + "appid": 880320, + "normalized_name": "魔装術師アカネ / magic mechsuit akane" + }, + { + "appid": 880330, + "normalized_name": "last byte standing" + }, + { + "appid": 880340, + "normalized_name": "trooper 2 alien justice" + }, + { + "appid": 880370, + "normalized_name": "jetpack dog" + }, + { + "appid": 880380, + "normalized_name": "franchise hockey manager 5" + }, + { + "appid": 880400, + "normalized_name": "lingering fragrance" + }, + { + "appid": 880490, + "normalized_name": "与雾雨魔理沙一起偷重要的东西 ~ happy stealing with kirisame marisa" + }, + { + "appid": 880510, + "normalized_name": "girl and goblin" + }, + { + "appid": 880550, + "normalized_name": "how to be best russian game developer" + }, + { + "appid": 880570, + "normalized_name": "drugs to bee" + }, + { + "appid": 880580, + "normalized_name": "yorg.io" + }, + { + "appid": 880590, + "normalized_name": "slabs" + }, + { + "appid": 880610, + "normalized_name": "lets beats" + }, + { + "appid": 880620, + "normalized_name": "荒漠求生" + }, + { + "appid": 880720, + "normalized_name": "entangled" + }, + { + "appid": 880730, + "normalized_name": "rocket assault downhill rush" + }, + { + "appid": 880750, + "normalized_name": "astra exodus" + }, + { + "appid": 880770, + "normalized_name": "cybrus" + }, + { + "appid": 880780, + "normalized_name": "vatnik simulator a russian patriot game" + }, + { + "appid": 880790, + "normalized_name": "the analyst" + }, + { + "appid": 880800, + "normalized_name": "akai noroi" + }, + { + "appid": 880830, + "normalized_name": "cavesweeper" + }, + { + "appid": 880840, + "normalized_name": "sniper fodder" + }, + { + "appid": 880850, + "normalized_name": "war rock" + }, + { + "appid": 880870, + "normalized_name": "donut arena" + }, + { + "appid": 880910, + "normalized_name": "kungfucious vr wuxia kung fu simulator" + }, + { + "appid": 880930, + "normalized_name": "cyberganked" + }, + { + "appid": 880940, + "normalized_name": "pummel party" + }, + { + "appid": 880950, + "normalized_name": "爱上火车 pure station" + }, + { + "appid": 880960, + "normalized_name": "blinding light" + }, + { + "appid": 880990, + "normalized_name": "school idol" + }, + { + "appid": 881020, + "normalized_name": "granblue fantasy relink" + }, + { + "appid": 881040, + "normalized_name": "bug academy" + }, + { + "appid": 881050, + "normalized_name": "獣王/beast king" + }, + { + "appid": 881060, + "normalized_name": "fortune and gloria" + }, + { + "appid": 881090, + "normalized_name": "super dodgeball beats" + }, + { + "appid": 881100, + "normalized_name": "noita" + }, + { + "appid": 881110, + "normalized_name": "incel clicker" + }, + { + "appid": 881130, + "normalized_name": "synthwave dream '85" + }, + { + "appid": 881150, + "normalized_name": "shooting over it to be a star" + }, + { + "appid": 881180, + "normalized_name": "noitapeli" + }, + { + "appid": 881190, + "normalized_name": "robbotto" + }, + { + "appid": 881230, + "normalized_name": "top down racer" + }, + { + "appid": 881260, + "normalized_name": "vagrant fury" + }, + { + "appid": 881290, + "normalized_name": "vcoder labs" + }, + { + "appid": 881300, + "normalized_name": "arboreal" + }, + { + "appid": 881310, + "normalized_name": "bearhammer" + }, + { + "appid": 881320, + "normalized_name": "the lego movie 2 videogame" + }, + { + "appid": 881410, + "normalized_name": "stereograph museum vr" + }, + { + "appid": 881420, + "normalized_name": "six ages ride like the wind" + }, + { + "appid": 881470, + "normalized_name": "combo postage" + }, + { + "appid": 881490, + "normalized_name": "tower keepers" + }, + { + "appid": 881500, + "normalized_name": "steamulator 2019" + }, + { + "appid": 881510, + "normalized_name": "the official gamingtaylor game great job!" + }, + { + "appid": 881520, + "normalized_name": "geometry defense infinite" + }, + { + "appid": 881550, + "normalized_name": "magic synthesis" + }, + { + "appid": 881560, + "normalized_name": "how to date a magical girl!" + }, + { + "appid": 881610, + "normalized_name": "professor watts word search space voyage" + }, + { + "appid": 881620, + "normalized_name": "plumber the pipe rush" + }, + { + "appid": 881670, + "normalized_name": "screensavers vr" + }, + { + "appid": 881690, + "normalized_name": "the slater" + }, + { + "appid": 881710, + "normalized_name": "staggered!" + }, + { + "appid": 881730, + "normalized_name": "train simulator london subway" + }, + { + "appid": 881750, + "normalized_name": "furwind" + }, + { + "appid": 881810, + "normalized_name": "wishes in pen chrysanthemums in august otome visual novel" + }, + { + "appid": 881820, + "normalized_name": "egony" + }, + { + "appid": 881880, + "normalized_name": "degeneration" + }, + { + "appid": 881900, + "normalized_name": "wildzone" + }, + { + "appid": 881910, + "normalized_name": "the battle of ages" + }, + { + "appid": 881920, + "normalized_name": "depression the game" + }, + { + "appid": 881930, + "normalized_name": "business tycoon billionaire" + }, + { + "appid": 881970, + "normalized_name": "voice shooter \"pif paf\"" + }, + { + "appid": 881980, + "normalized_name": "drive switch evade" + }, + { + "appid": 882020, + "normalized_name": "monster energy supercross the official videogame 2" + }, + { + "appid": 882040, + "normalized_name": "the outpost nine episode 1" + }, + { + "appid": 882080, + "normalized_name": "star'shoot" + }, + { + "appid": 882100, + "normalized_name": "xcom chimera squad" + }, + { + "appid": 882110, + "normalized_name": "google spotlight stories age of sail" + }, + { + "appid": 882120, + "normalized_name": "rugon unfinished" + }, + { + "appid": 882140, + "normalized_name": "reentry a space flight simulator" + }, + { + "appid": 882150, + "normalized_name": "sky link" + }, + { + "appid": 882180, + "normalized_name": "toader" + }, + { + "appid": 882190, + "normalized_name": "tight ride" + }, + { + "appid": 882200, + "normalized_name": "reveal" + }, + { + "appid": 882210, + "normalized_name": "duke of defense" + }, + { + "appid": 882220, + "normalized_name": "mecha tokyo rush" + }, + { + "appid": 882230, + "normalized_name": "dog's quest" + }, + { + "appid": 882250, + "normalized_name": "metro sim hustle" + }, + { + "appid": 882260, + "normalized_name": "hellmaze" + }, + { + "appid": 882290, + "normalized_name": "take care of the paperwork" + }, + { + "appid": 882390, + "normalized_name": "enhanced" + }, + { + "appid": 882410, + "normalized_name": "age of fear the free world" + }, + { + "appid": 882440, + "normalized_name": "rusty tank survival" + }, + { + "appid": 882460, + "normalized_name": "the warrior war" + }, + { + "appid": 882560, + "normalized_name": "door" + }, + { + "appid": 882590, + "normalized_name": "outcast tales the first journey" + }, + { + "appid": 882600, + "normalized_name": "chess multiple boards" + }, + { + "appid": 882640, + "normalized_name": "ashley clark secret of the ruby" + }, + { + "appid": 882660, + "normalized_name": "galdur" + }, + { + "appid": 882670, + "normalized_name": "nono's magic general shop" + }, + { + "appid": 882680, + "normalized_name": "foreskin fury" + }, + { + "appid": 882700, + "normalized_name": "thievery" + }, + { + "appid": 882710, + "normalized_name": "東方幕華祭 touhou makuka sai ~ fantastic danmaku festival" + }, + { + "appid": 882730, + "normalized_name": "re solver" + }, + { + "appid": 882760, + "normalized_name": "nom nom apocalypse" + }, + { + "appid": 882790, + "normalized_name": "天命奇御 fate seeker" + }, + { + "appid": 882830, + "normalized_name": "fallen beast (project ora) us version" + }, + { + "appid": 882840, + "normalized_name": "true north" + }, + { + "appid": 882860, + "normalized_name": "another reigny day" + }, + { + "appid": 882870, + "normalized_name": "jolly riot" + }, + { + "appid": 882900, + "normalized_name": "lu bu maker" + }, + { + "appid": 882910, + "normalized_name": "battle x" + }, + { + "appid": 882940, + "normalized_name": "the moment we met" + }, + { + "appid": 882960, + "normalized_name": "visitor 来访者" + }, + { + "appid": 882980, + "normalized_name": "night of the loving dead" + }, + { + "appid": 882990, + "normalized_name": "bad day" + }, + { + "appid": 883000, + "normalized_name": "horror rollercoaster" + }, + { + "appid": 883020, + "normalized_name": "shadowlings" + }, + { + "appid": 883070, + "normalized_name": "viviette" + }, + { + "appid": 883080, + "normalized_name": "ludo online classic multiplayer dice board game" + }, + { + "appid": 883100, + "normalized_name": "360 no scope arena" + }, + { + "appid": 883130, + "normalized_name": "new star manager" + }, + { + "appid": 883160, + "normalized_name": "legend of dragon labyrinth" + }, + { + "appid": 883190, + "normalized_name": "jorji and impossible forest" + }, + { + "appid": 883220, + "normalized_name": "fugue in void" + }, + { + "appid": 883230, + "normalized_name": "times and galaxy" + }, + { + "appid": 883240, + "normalized_name": "slumber clause" + }, + { + "appid": 883270, + "normalized_name": "immortals(修仙志)" + }, + { + "appid": 883280, + "normalized_name": "struggle for light" + }, + { + "appid": 883300, + "normalized_name": "poverty is a choice" + }, + { + "appid": 883330, + "normalized_name": "the skeleton" + }, + { + "appid": 883360, + "normalized_name": "beyond blue" + }, + { + "appid": 883390, + "normalized_name": "beyond the mind" + }, + { + "appid": 883400, + "normalized_name": "the treasure of the lost temple" + }, + { + "appid": 883560, + "normalized_name": "wardens of the amber cage" + }, + { + "appid": 883590, + "normalized_name": "nocturne prelude" + }, + { + "appid": 883630, + "normalized_name": "rocket island" + }, + { + "appid": 883670, + "normalized_name": "v.t." + }, + { + "appid": 883680, + "normalized_name": "four kings one war" + }, + { + "appid": 883710, + "normalized_name": "resident evil 2" + }, + { + "appid": 883750, + "normalized_name": "shadow force" + }, + { + "appid": 883780, + "normalized_name": "wayblock" + }, + { + "appid": 883790, + "normalized_name": "three life" + }, + { + "appid": 883810, + "normalized_name": "nocturne of steel" + }, + { + "appid": 883830, + "normalized_name": "nsfware" + }, + { + "appid": 883850, + "normalized_name": "dungene" + }, + { + "appid": 883860, + "normalized_name": "cadria item shop" + }, + { + "appid": 883870, + "normalized_name": "霎时晴荫" + }, + { + "appid": 883880, + "normalized_name": "faraway puzzle escape" + }, + { + "appid": 883900, + "normalized_name": "eri" + }, + { + "appid": 883930, + "normalized_name": "mercs" + }, + { + "appid": 883960, + "normalized_name": "the lost and forgotten part 1" + }, + { + "appid": 883970, + "normalized_name": "little imps a dungeon builder" + }, + { + "appid": 884070, + "normalized_name": "war ender" + }, + { + "appid": 884080, + "normalized_name": "munchies" + }, + { + "appid": 884090, + "normalized_name": "idle dungeons" + }, + { + "appid": 884160, + "normalized_name": "hyperzen training" + }, + { + "appid": 884180, + "normalized_name": "robot rumble 2" + }, + { + "appid": 884260, + "normalized_name": "akane" + }, + { + "appid": 884270, + "normalized_name": "cabins jigsaw puzzles" + }, + { + "appid": 884290, + "normalized_name": "cat's yarn" + }, + { + "appid": 884320, + "normalized_name": "love vibe aria" + }, + { + "appid": 884350, + "normalized_name": "the unfolding engine paint a game" + }, + { + "appid": 884370, + "normalized_name": "hotel transylvania popstic" + }, + { + "appid": 884390, + "normalized_name": "professor watts word search pirates life" + }, + { + "appid": 884400, + "normalized_name": "the harbinger's head" + }, + { + "appid": 884410, + "normalized_name": "unnatural" + }, + { + "appid": 884420, + "normalized_name": "the last wizard" + }, + { + "appid": 884430, + "normalized_name": "the magician's burden" + }, + { + "appid": 884440, + "normalized_name": "professor watts word search yummy foods" + }, + { + "appid": 884460, + "normalized_name": "beyond tokyo" + }, + { + "appid": 884470, + "normalized_name": "sunken" + }, + { + "appid": 884500, + "normalized_name": "bitcoin mining tycoon" + }, + { + "appid": 884530, + "normalized_name": "pro gamer tycoon" + }, + { + "appid": 884550, + "normalized_name": "mist of the dark" + }, + { + "appid": 884590, + "normalized_name": "garage master 2018" + }, + { + "appid": 884610, + "normalized_name": "road rage royale" + }, + { + "appid": 884630, + "normalized_name": "golden fall" + }, + { + "appid": 884640, + "normalized_name": "mines and magic" + }, + { + "appid": 884660, + "normalized_name": "crsed cuisine royale" + }, + { + "appid": 884670, + "normalized_name": "codenames" + }, + { + "appid": 884880, + "normalized_name": "super seeker" + }, + { + "appid": 884900, + "normalized_name": "slider" + }, + { + "appid": 884910, + "normalized_name": "the grid" + }, + { + "appid": 884920, + "normalized_name": "exo adventures" + }, + { + "appid": 884960, + "normalized_name": "rolling in the reef" + }, + { + "appid": 884980, + "normalized_name": "code romantic" + }, + { + "appid": 884990, + "normalized_name": "absinth" + }, + { + "appid": 885000, + "normalized_name": "synth riders" + }, + { + "appid": 885080, + "normalized_name": "my town dessert slice" + }, + { + "appid": 885120, + "normalized_name": "werewolves haven rising" + }, + { + "appid": 885140, + "normalized_name": "七人杀阵 seven sacrifices" + }, + { + "appid": 885150, + "normalized_name": "capcom beat 'em up bundle" + }, + { + "appid": 885160, + "normalized_name": "botsu" + }, + { + "appid": 885190, + "normalized_name": "mahjong pretty manga girls" + }, + { + "appid": 885210, + "normalized_name": "undelivered" + }, + { + "appid": 885220, + "normalized_name": "neon cat tickler" + }, + { + "appid": 885290, + "normalized_name": "acespeeder3" + }, + { + "appid": 885320, + "normalized_name": "cro magnon" + }, + { + "appid": 885380, + "normalized_name": "need a packet?" + }, + { + "appid": 885470, + "normalized_name": "wired" + }, + { + "appid": 885480, + "normalized_name": "maze crusher" + }, + { + "appid": 885510, + "normalized_name": "smutty scrolls" + }, + { + "appid": 885530, + "normalized_name": "skd" + }, + { + "appid": 885570, + "normalized_name": "nova life amboise" + }, + { + "appid": 885590, + "normalized_name": "time" + }, + { + "appid": 885630, + "normalized_name": "floor massacre" + }, + { + "appid": 885640, + "normalized_name": "lynne" + }, + { + "appid": 885650, + "normalized_name": "the waters above prelude" + }, + { + "appid": 885690, + "normalized_name": "liminal" + }, + { + "appid": 885730, + "normalized_name": "aerial guardian" + }, + { + "appid": 885780, + "normalized_name": "legion's crawl" + }, + { + "appid": 885790, + "normalized_name": "ayni fairyland" + }, + { + "appid": 885810, + "normalized_name": "the witch's house mv" + }, + { + "appid": 885840, + "normalized_name": "z after a point and click survival" + }, + { + "appid": 885890, + "normalized_name": "immortal quest" + }, + { + "appid": 885910, + "normalized_name": "ginga force" + }, + { + "appid": 885940, + "normalized_name": "meritocracy of the oni & blade" + }, + { + "appid": 885950, + "normalized_name": "airranger" + }, + { + "appid": 885970, + "normalized_name": "total war rome" + }, + { + "appid": 886010, + "normalized_name": "smash halloween pumpkins the challenge" + }, + { + "appid": 886020, + "normalized_name": "jumper magic" + }, + { + "appid": 886040, + "normalized_name": "hentai temple" + }, + { + "appid": 886060, + "normalized_name": "redout space assault" + }, + { + "appid": 886070, + "normalized_name": "jewel match solitaire" + }, + { + "appid": 886110, + "normalized_name": "rkn block me telegram" + }, + { + "appid": 886120, + "normalized_name": "upbreakers" + }, + { + "appid": 886180, + "normalized_name": "blood money" + }, + { + "appid": 886200, + "normalized_name": "endcycle vs" + }, + { + "appid": 886220, + "normalized_name": "thunderballs vr" + }, + { + "appid": 886230, + "normalized_name": "noble armada lost worlds" + }, + { + "appid": 886250, + "normalized_name": "vegas infinite by pokerstars" + }, + { + "appid": 886270, + "normalized_name": "yeli orog" + }, + { + "appid": 886290, + "normalized_name": "starfield wars 沙罗曼蛇 3d" + }, + { + "appid": 886300, + "normalized_name": "store crasher" + }, + { + "appid": 886310, + "normalized_name": "the island combat" + }, + { + "appid": 886330, + "normalized_name": "domicard" + }, + { + "appid": 886350, + "normalized_name": "clouded" + }, + { + "appid": 886360, + "normalized_name": "casino mega collection" + }, + { + "appid": 886370, + "normalized_name": "multicellular" + }, + { + "appid": 886380, + "normalized_name": "ruya" + }, + { + "appid": 886390, + "normalized_name": "a roll back story" + }, + { + "appid": 886420, + "normalized_name": "unborn" + }, + { + "appid": 886430, + "normalized_name": "tock" + }, + { + "appid": 886450, + "normalized_name": "night of the shrub part 2" + }, + { + "appid": 886460, + "normalized_name": "outside the lines" + }, + { + "appid": 886470, + "normalized_name": "another otter" + }, + { + "appid": 886490, + "normalized_name": "speed box" + }, + { + "appid": 886530, + "normalized_name": "golem rush" + }, + { + "appid": 886540, + "normalized_name": "magical girl's labyrinth" + }, + { + "appid": 886590, + "normalized_name": "my bingo" + }, + { + "appid": 886600, + "normalized_name": "brutalaliens" + }, + { + "appid": 886610, + "normalized_name": "the mystery of happyville" + }, + { + "appid": 886620, + "normalized_name": "rockin' road" + }, + { + "appid": 886630, + "normalized_name": "glitchpets" + }, + { + "appid": 886650, + "normalized_name": "6 in 1 iq scale bundle" + }, + { + "appid": 886670, + "normalized_name": "proficient paddles" + }, + { + "appid": 886710, + "normalized_name": "lavender" + }, + { + "appid": 886730, + "normalized_name": "ephemeral fantasy on dark" + }, + { + "appid": 886780, + "normalized_name": "jelly wrestle" + }, + { + "appid": 886820, + "normalized_name": "nelke & the legendary alchemists ~ateliers of the new world~" + }, + { + "appid": 886830, + "normalized_name": "parkourman" + }, + { + "appid": 886840, + "normalized_name": "fur fury" + }, + { + "appid": 886860, + "normalized_name": "explodey sci fi side scroller w/ 'splosions" + }, + { + "appid": 886890, + "normalized_name": "industrysim virtual platform" + }, + { + "appid": 886900, + "normalized_name": "chef a restaurant tycoon game" + }, + { + "appid": 886950, + "normalized_name": "roman the worm" + }, + { + "appid": 886960, + "normalized_name": "dragon spear" + }, + { + "appid": 886970, + "normalized_name": "tomato way 2" + }, + { + "appid": 887040, + "normalized_name": "paper planets" + }, + { + "appid": 887060, + "normalized_name": "asterix & obelix xxl 2" + }, + { + "appid": 887090, + "normalized_name": "blocks! richard iii" + }, + { + "appid": 887160, + "normalized_name": "the sunny day 晴天" + }, + { + "appid": 887170, + "normalized_name": "vortex of pain" + }, + { + "appid": 887280, + "normalized_name": "epic helicopter" + }, + { + "appid": 887300, + "normalized_name": "bleeding sun" + }, + { + "appid": 887330, + "normalized_name": "glassbreakers champions of moss" + }, + { + "appid": 887340, + "normalized_name": "owl watch" + }, + { + "appid": 887370, + "normalized_name": "element space" + }, + { + "appid": 887400, + "normalized_name": "the great geometric multiverse tour" + }, + { + "appid": 887420, + "normalized_name": "warman" + }, + { + "appid": 887440, + "normalized_name": "fractal chicken" + }, + { + "appid": 887450, + "normalized_name": "tunche" + }, + { + "appid": 887490, + "normalized_name": "burden of command" + }, + { + "appid": 887510, + "normalized_name": "galencia" + }, + { + "appid": 887520, + "normalized_name": "seat of war" + }, + { + "appid": 887530, + "normalized_name": "president yukino" + }, + { + "appid": 887550, + "normalized_name": "dimetrosaur" + }, + { + "appid": 887570, + "normalized_name": "nebulous fleet command" + }, + { + "appid": 887590, + "normalized_name": "boxrunner" + }, + { + "appid": 887630, + "normalized_name": "harpoon cat" + }, + { + "appid": 887660, + "normalized_name": "brath brain and math" + }, + { + "appid": 887680, + "normalized_name": "不当英雄roguelike hero" + }, + { + "appid": 887710, + "normalized_name": "ritter" + }, + { + "appid": 887720, + "normalized_name": "devil's hunt" + }, + { + "appid": 887730, + "normalized_name": "horde zombie outbreak" + }, + { + "appid": 887740, + "normalized_name": "老虎游戏 tiger casino&slot game" + }, + { + "appid": 887750, + "normalized_name": "opus mortem" + }, + { + "appid": 887800, + "normalized_name": "snooker 19" + }, + { + "appid": 887820, + "normalized_name": "double" + }, + { + "appid": 887850, + "normalized_name": "tal arctic" + }, + { + "appid": 887870, + "normalized_name": "retro racers 2" + }, + { + "appid": 887880, + "normalized_name": "o.c.d. on completeness & dissonance" + }, + { + "appid": 887890, + "normalized_name": "puzzles by axis hyper" + }, + { + "appid": 887900, + "normalized_name": "egg is broken. heart is too." + }, + { + "appid": 887910, + "normalized_name": "rite of passage the lost tides collector's" + }, + { + "appid": 887920, + "normalized_name": "maestro music from the void collector's" + }, + { + "appid": 887930, + "normalized_name": "puppetshow destiny undone collector's" + }, + { + "appid": 887940, + "normalized_name": "amaranthine voyage the obsidian book collector's" + }, + { + "appid": 887950, + "normalized_name": "danse macabre thin ice collector's" + }, + { + "appid": 887960, + "normalized_name": "mystery case files rewind collector's" + }, + { + "appid": 887970, + "normalized_name": "generation streets" + }, + { + "appid": 888010, + "normalized_name": "tango the adventure game" + }, + { + "appid": 888020, + "normalized_name": "faiths end 2d survival horror" + }, + { + "appid": 888040, + "normalized_name": "metal fatigue" + }, + { + "appid": 888070, + "normalized_name": "railroad tracks" + }, + { + "appid": 888090, + "normalized_name": "tree" + }, + { + "appid": 888130, + "normalized_name": "starport delta" + }, + { + "appid": 888140, + "normalized_name": "quatris" + }, + { + "appid": 888150, + "normalized_name": "space hamster in turmoil" + }, + { + "appid": 888200, + "normalized_name": "psi magic" + }, + { + "appid": 888220, + "normalized_name": "matchygotchy z" + }, + { + "appid": 888250, + "normalized_name": "war" + }, + { + "appid": 888310, + "normalized_name": "suitchi" + }, + { + "appid": 888380, + "normalized_name": "zolo zombies only live once" + }, + { + "appid": 888400, + "normalized_name": "world of war battlegrounds" + }, + { + "appid": 888420, + "normalized_name": "abunka" + }, + { + "appid": 888480, + "normalized_name": "ninja speedrush" + }, + { + "appid": 888530, + "normalized_name": "yaga" + }, + { + "appid": 888540, + "normalized_name": "project 59" + }, + { + "appid": 888560, + "normalized_name": "forest rabbit" + }, + { + "appid": 888570, + "normalized_name": "zombie head" + }, + { + "appid": 888610, + "normalized_name": "oligopoly industrial revolution" + }, + { + "appid": 888620, + "normalized_name": "pilgrimage" + }, + { + "appid": 888630, + "normalized_name": "another sight" + }, + { + "appid": 888640, + "normalized_name": "lovestory" + }, + { + "appid": 888670, + "normalized_name": "notified" + }, + { + "appid": 888690, + "normalized_name": "guess who ?" + }, + { + "appid": 888710, + "normalized_name": "pitch perfect ear training" + }, + { + "appid": 888740, + "normalized_name": "fortofthenight" + }, + { + "appid": 888760, + "normalized_name": "dragonfly chronicles" + }, + { + "appid": 888780, + "normalized_name": "adapt" + }, + { + "appid": 888790, + "normalized_name": "sabbat of the witch" + }, + { + "appid": 888800, + "normalized_name": "s.f.77" + }, + { + "appid": 888810, + "normalized_name": "wetwork" + }, + { + "appid": 888880, + "normalized_name": "summer jigsaw puzzles" + }, + { + "appid": 888900, + "normalized_name": "zyx story" + }, + { + "appid": 888910, + "normalized_name": "tano's fate" + }, + { + "appid": 888970, + "normalized_name": "minicar race 极品飞车2019 mini" + }, + { + "appid": 888990, + "normalized_name": "雨上がりのハナビィ ameagari no hanaby" + }, + { + "appid": 889060, + "normalized_name": "open space 2d" + }, + { + "appid": 889080, + "normalized_name": "deity empires" + }, + { + "appid": 889100, + "normalized_name": "pythagoras' perpetual motion machine" + }, + { + "appid": 889130, + "normalized_name": "knifeboy rebooted" + }, + { + "appid": 889150, + "normalized_name": "igknight food fight" + }, + { + "appid": 889160, + "normalized_name": "ultire balls out" + }, + { + "appid": 889170, + "normalized_name": "battle royale builder" + }, + { + "appid": 889220, + "normalized_name": "a stickman reality" + }, + { + "appid": 889240, + "normalized_name": "loot box simulator" + }, + { + "appid": 889260, + "normalized_name": "bonkies" + }, + { + "appid": 889280, + "normalized_name": "marginalia" + }, + { + "appid": 889290, + "normalized_name": "echoes world" + }, + { + "appid": 889320, + "normalized_name": "the plant" + }, + { + "appid": 889400, + "normalized_name": "stickybots" + }, + { + "appid": 889450, + "normalized_name": "centifeed" + }, + { + "appid": 889470, + "normalized_name": "another world truck driver" + }, + { + "appid": 889480, + "normalized_name": "virtual virtual reality" + }, + { + "appid": 889500, + "normalized_name": "punk a.f." + }, + { + "appid": 889510, + "normalized_name": "senran kagura burst re newal" + }, + { + "appid": 889520, + "normalized_name": "empire" + }, + { + "appid": 889530, + "normalized_name": "sharp" + }, + { + "appid": 889600, + "normalized_name": "the caligula effect overdose" + }, + { + "appid": 889670, + "normalized_name": "bitter tides" + }, + { + "appid": 889700, + "normalized_name": "muv luv photonflowers*" + }, + { + "appid": 889710, + "normalized_name": "muv luv photonmelodies♮" + }, + { + "appid": 889720, + "normalized_name": "crypto crisis" + }, + { + "appid": 889730, + "normalized_name": "downtown mafia gang wars" + }, + { + "appid": 889740, + "normalized_name": "the oni sellsword" + }, + { + "appid": 889770, + "normalized_name": "unholy disaster" + }, + { + "appid": 889790, + "normalized_name": "incandescent 2" + }, + { + "appid": 889850, + "normalized_name": "save president from rebels" + }, + { + "appid": 889910, + "normalized_name": "hell pie" + }, + { + "appid": 889970, + "normalized_name": "my farm" + }, + { + "appid": 889990, + "normalized_name": "rgbcells" + }, + { + "appid": 890010, + "normalized_name": "hexile" + }, + { + "appid": 890070, + "normalized_name": "秋色的記憶(體驗版) / fall...in love (demo)" + }, + { + "appid": 890130, + "normalized_name": "pawn of the dead" + }, + { + "appid": 890180, + "normalized_name": "ecchi cards" + }, + { + "appid": 890200, + "normalized_name": "destruction paper" + }, + { + "appid": 890210, + "normalized_name": "kids learn" + }, + { + "appid": 890220, + "normalized_name": "math fun" + }, + { + "appid": 890280, + "normalized_name": "myha return to the lost island" + }, + { + "appid": 890300, + "normalized_name": "kitrinos inside the cube" + }, + { + "appid": 890310, + "normalized_name": "shadow brawlers" + }, + { + "appid": 890400, + "normalized_name": "uncharted waters online" + }, + { + "appid": 890470, + "normalized_name": "slave master the game" + }, + { + "appid": 890480, + "normalized_name": "widget satchel" + }, + { + "appid": 890500, + "normalized_name": "love ritual" + }, + { + "appid": 890520, + "normalized_name": "rocket science" + }, + { + "appid": 890550, + "normalized_name": "rumble" + }, + { + "appid": 890570, + "normalized_name": "almost alive" + }, + { + "appid": 890590, + "normalized_name": "knight king assassin" + }, + { + "appid": 890600, + "normalized_name": "space agent 8 artifacts" + }, + { + "appid": 890630, + "normalized_name": "perspectrum" + }, + { + "appid": 890640, + "normalized_name": "rampage of the dead" + }, + { + "appid": 890680, + "normalized_name": "mars troopers 生化奇兵2019" + }, + { + "appid": 890690, + "normalized_name": "forgotten world" + }, + { + "appid": 890700, + "normalized_name": "caffeine victoria's legacy" + }, + { + "appid": 890710, + "normalized_name": "ecchi puzzle" + }, + { + "appid": 890720, + "normalized_name": "in other waters" + }, + { + "appid": 890740, + "normalized_name": "a gentlemanly adventure" + }, + { + "appid": 890750, + "normalized_name": "lily's night off" + }, + { + "appid": 890800, + "normalized_name": "country park" + }, + { + "appid": 890820, + "normalized_name": "valor time" + }, + { + "appid": 890880, + "normalized_name": "frostbite deadly climate" + }, + { + "appid": 890890, + "normalized_name": "green with energy" + }, + { + "appid": 890900, + "normalized_name": "whacker guy distance hunter" + }, + { + "appid": 890910, + "normalized_name": "kill the monster" + }, + { + "appid": 890920, + "normalized_name": "glitch" + }, + { + "appid": 890930, + "normalized_name": "whiskered away" + }, + { + "appid": 890970, + "normalized_name": "oakwood" + }, + { + "appid": 891020, + "normalized_name": "handball 21" + }, + { + "appid": 891040, + "normalized_name": "pool 2d poolians" + }, + { + "appid": 891100, + "normalized_name": "ray of light" + }, + { + "appid": 891110, + "normalized_name": "hell knights" + }, + { + "appid": 891120, + "normalized_name": "watching delusion" + }, + { + "appid": 891130, + "normalized_name": "super flail" + }, + { + "appid": 891170, + "normalized_name": "the witch & the 66 mushrooms" + }, + { + "appid": 891180, + "normalized_name": "pinpin ballball" + }, + { + "appid": 891190, + "normalized_name": "cross x carrot" + }, + { + "appid": 891200, + "normalized_name": "bike dash excite!" + }, + { + "appid": 891220, + "normalized_name": "pla_toon" + }, + { + "appid": 891240, + "normalized_name": "hentai defense" + }, + { + "appid": 891270, + "normalized_name": "draft day sports pro golf" + }, + { + "appid": 891290, + "normalized_name": "easy racing" + }, + { + "appid": 891310, + "normalized_name": "medical verdict" + }, + { + "appid": 891320, + "normalized_name": "echoes in white" + }, + { + "appid": 891330, + "normalized_name": "fast dust" + }, + { + "appid": 891340, + "normalized_name": "roidrekt" + }, + { + "appid": 891350, + "normalized_name": "just dash" + }, + { + "appid": 891360, + "normalized_name": "hellcoming" + }, + { + "appid": 891370, + "normalized_name": "the last hex" + }, + { + "appid": 891380, + "normalized_name": "retro snake adventures" + }, + { + "appid": 891430, + "normalized_name": "rogue heist" + }, + { + "appid": 891460, + "normalized_name": "mischief on main street" + }, + { + "appid": 891470, + "normalized_name": "falling blocks" + }, + { + "appid": 891480, + "normalized_name": "idle expanse" + }, + { + "appid": 891490, + "normalized_name": "capsule" + }, + { + "appid": 891510, + "normalized_name": "love's sweet garnish" + }, + { + "appid": 891700, + "normalized_name": "mosaics galore. challenging journey" + }, + { + "appid": 891710, + "normalized_name": "thanksgiving day mosaic" + }, + { + "appid": 891720, + "normalized_name": "pirate mosaic puzzle. caribbean treasures" + }, + { + "appid": 891790, + "normalized_name": "devil engine" + }, + { + "appid": 891850, + "normalized_name": "astrela starlight" + }, + { + "appid": 891870, + "normalized_name": "king of phoenix" + }, + { + "appid": 891950, + "normalized_name": "wagers of war" + }, + { + "appid": 891960, + "normalized_name": "webbvr the james webb space telescope virtual experience" + }, + { + "appid": 891970, + "normalized_name": "train defense" + }, + { + "appid": 891990, + "normalized_name": "rusty runner" + }, + { + "appid": 892020, + "normalized_name": "robots 2 unknown world" + }, + { + "appid": 892130, + "normalized_name": "the searcher wild west adventure" + }, + { + "appid": 892160, + "normalized_name": "bare boob brawlerz power claw" + }, + { + "appid": 892180, + "normalized_name": "powernode" + }, + { + "appid": 892200, + "normalized_name": "ufo combat 2000" + }, + { + "appid": 892210, + "normalized_name": "gungrave vr" + }, + { + "appid": 892310, + "normalized_name": "infinity heroes" + }, + { + "appid": 892380, + "normalized_name": "dr greenstuff" + }, + { + "appid": 892420, + "normalized_name": "懒人修仙传" + }, + { + "appid": 892460, + "normalized_name": "twoplay mahjong(双人麻将)" + }, + { + "appid": 892470, + "normalized_name": "bvrger van" + }, + { + "appid": 892490, + "normalized_name": "fish catcher" + }, + { + "appid": 892500, + "normalized_name": "ludopolis" + }, + { + "appid": 892550, + "normalized_name": "beauty and the beast hidden object fairy tale. hog" + }, + { + "appid": 892560, + "normalized_name": "paulpaul act 1" + }, + { + "appid": 892570, + "normalized_name": "the quest giver" + }, + { + "appid": 892630, + "normalized_name": "mojo hanako" + }, + { + "appid": 892640, + "normalized_name": "fan'cie veer! (fish are nasty cake is excellent vektor evading emblazed rapture)" + }, + { + "appid": 892740, + "normalized_name": "bloom" + }, + { + "appid": 892760, + "normalized_name": "seed of evil" + }, + { + "appid": 892780, + "normalized_name": "sanguine sanctum" + }, + { + "appid": 892830, + "normalized_name": "vritra" + }, + { + "appid": 892840, + "normalized_name": "oscarwildecard" + }, + { + "appid": 892860, + "normalized_name": "hot brass" + }, + { + "appid": 892880, + "normalized_name": "chocolate makes you happy 7" + }, + { + "appid": 892910, + "normalized_name": "space wars" + }, + { + "appid": 892930, + "normalized_name": "sonar beat" + }, + { + "appid": 892960, + "normalized_name": "dimension of gameth" + }, + { + "appid": 892970, + "normalized_name": "valheim" + }, + { + "appid": 892980, + "normalized_name": "my heart grows fonder" + }, + { + "appid": 892990, + "normalized_name": "sable's grimoire a dragon's treasure" + }, + { + "appid": 893010, + "normalized_name": "slave's sword" + }, + { + "appid": 893020, + "normalized_name": "slave's sword 2" + }, + { + "appid": 893030, + "normalized_name": "music racer" + }, + { + "appid": 893050, + "normalized_name": "hasbro's battleship" + }, + { + "appid": 893060, + "normalized_name": "waye" + }, + { + "appid": 893070, + "normalized_name": "the end inari's quest" + }, + { + "appid": 893090, + "normalized_name": "mad factory" + }, + { + "appid": 893120, + "normalized_name": "synthrun" + }, + { + "appid": 893150, + "normalized_name": "fury strike" + }, + { + "appid": 893170, + "normalized_name": "mystery house secret stealth" + }, + { + "appid": 893180, + "normalized_name": "catherine classic" + }, + { + "appid": 893330, + "normalized_name": "voxel race" + }, + { + "appid": 893350, + "normalized_name": "malfortune" + }, + { + "appid": 893370, + "normalized_name": "absolute adventure" + }, + { + "appid": 893390, + "normalized_name": "meridian 59" + }, + { + "appid": 893420, + "normalized_name": "harvested" + }, + { + "appid": 893450, + "normalized_name": "life after the living" + }, + { + "appid": 893460, + "normalized_name": "nightmarebullet" + }, + { + "appid": 893470, + "normalized_name": "salary man escape" + }, + { + "appid": 893480, + "normalized_name": "for the revenge" + }, + { + "appid": 893490, + "normalized_name": "team a.r.g. anthology" + }, + { + "appid": 893500, + "normalized_name": "reign of the succubus" + }, + { + "appid": 893560, + "normalized_name": "spire of sorcery – character generator" + }, + { + "appid": 893570, + "normalized_name": "short life" + }, + { + "appid": 893590, + "normalized_name": "monopolist technological revolution" + }, + { + "appid": 893610, + "normalized_name": "skautfold into the fray" + }, + { + "appid": 893620, + "normalized_name": "azurael's circle chapter 2" + }, + { + "appid": 893640, + "normalized_name": "dances with butterflies vr" + }, + { + "appid": 893650, + "normalized_name": "csi vr crime scene investigation" + }, + { + "appid": 893670, + "normalized_name": "silent night" + }, + { + "appid": 893680, + "normalized_name": "project warlock" + }, + { + "appid": 893690, + "normalized_name": "rikki & vikki" + }, + { + "appid": 893710, + "normalized_name": "mercenary leto" + }, + { + "appid": 893720, + "normalized_name": "one hand clapping" + }, + { + "appid": 893790, + "normalized_name": "newfound courage" + }, + { + "appid": 893810, + "normalized_name": "chrono project" + }, + { + "appid": 893840, + "normalized_name": "roll for the galaxy" + }, + { + "appid": 893850, + "normalized_name": "the longing" + }, + { + "appid": 893870, + "normalized_name": "trials of ascension exile" + }, + { + "appid": 893900, + "normalized_name": "astral gunners" + }, + { + "appid": 893910, + "normalized_name": "science simulator" + }, + { + "appid": 893940, + "normalized_name": "super gma" + }, + { + "appid": 893950, + "normalized_name": "russi.a simulator" + }, + { + "appid": 893960, + "normalized_name": "running naked simulator 2019" + }, + { + "appid": 894000, + "normalized_name": "night of the blood moon" + }, + { + "appid": 894010, + "normalized_name": "battle of worldviews" + }, + { + "appid": 894020, + "normalized_name": "death's door" + }, + { + "appid": 894060, + "normalized_name": "watch" + }, + { + "appid": 894070, + "normalized_name": "unmanned helicopter" + }, + { + "appid": 894090, + "normalized_name": "maze gold run" + }, + { + "appid": 894120, + "normalized_name": "ghostman the council calamity" + }, + { + "appid": 894160, + "normalized_name": "oh boy cheese" + }, + { + "appid": 894200, + "normalized_name": "blockiverse camouflage" + }, + { + "appid": 894270, + "normalized_name": "beware of trains" + }, + { + "appid": 894330, + "normalized_name": "one hunt" + }, + { + "appid": 894340, + "normalized_name": "beat the song" + }, + { + "appid": 894350, + "normalized_name": "vibur disintegration (episode 1)" + }, + { + "appid": 894360, + "normalized_name": "actionpaintvr" + }, + { + "appid": 894380, + "normalized_name": "exoplanet a project coreward demo" + }, + { + "appid": 894390, + "normalized_name": "bernie’s nightmare" + }, + { + "appid": 894420, + "normalized_name": "duke dashington" + }, + { + "appid": 894430, + "normalized_name": "push blox 2" + }, + { + "appid": 894460, + "normalized_name": "crimson gray dusk and dawn" + }, + { + "appid": 894540, + "normalized_name": "shychess" + }, + { + "appid": 894570, + "normalized_name": "supaplex hard" + }, + { + "appid": 894610, + "normalized_name": "hungry kitty donuts mania" + }, + { + "appid": 894620, + "normalized_name": "atone heart of the elder tree" + }, + { + "appid": 894630, + "normalized_name": "final theory" + }, + { + "appid": 894730, + "normalized_name": "the chronicles of noah's ark" + }, + { + "appid": 894740, + "normalized_name": "cosmic ray" + }, + { + "appid": 894750, + "normalized_name": "l way" + }, + { + "appid": 894820, + "normalized_name": "trumpy wall" + }, + { + "appid": 894830, + "normalized_name": "hanz puppetguns" + }, + { + "appid": 894890, + "normalized_name": "stalked at night" + }, + { + "appid": 894930, + "normalized_name": "the cage" + }, + { + "appid": 894940, + "normalized_name": "littlewood" + }, + { + "appid": 894960, + "normalized_name": "evil reap" + }, + { + "appid": 895000, + "normalized_name": "convergence compulsion" + }, + { + "appid": 895060, + "normalized_name": "my house" + }, + { + "appid": 895110, + "normalized_name": "magical battle cry" + }, + { + "appid": 895120, + "normalized_name": "dog jam" + }, + { + "appid": 895140, + "normalized_name": "jjboom" + }, + { + "appid": 895160, + "normalized_name": "autonomica" + }, + { + "appid": 895170, + "normalized_name": "drop up" + }, + { + "appid": 895180, + "normalized_name": "majin woman" + }, + { + "appid": 895200, + "normalized_name": "swords of gargantua" + }, + { + "appid": 895210, + "normalized_name": "on board" + }, + { + "appid": 895220, + "normalized_name": "leaflet love story" + }, + { + "appid": 895370, + "normalized_name": "dollkart" + }, + { + "appid": 895400, + "normalized_name": "deadside" + }, + { + "appid": 895420, + "normalized_name": "path of sin greed" + }, + { + "appid": 895430, + "normalized_name": "from the sky new horizon" + }, + { + "appid": 895470, + "normalized_name": "ew/we" + }, + { + "appid": 895480, + "normalized_name": "fates of ort" + }, + { + "appid": 895510, + "normalized_name": "blow up pieces unleashed" + }, + { + "appid": 895520, + "normalized_name": "blinding blade" + }, + { + "appid": 895550, + "normalized_name": "total 15" + }, + { + "appid": 895580, + "normalized_name": "yoga lesson vr" + }, + { + "appid": 895600, + "normalized_name": "mojo" + }, + { + "appid": 895610, + "normalized_name": "where's baby" + }, + { + "appid": 895620, + "normalized_name": "spellcaster university" + }, + { + "appid": 895650, + "normalized_name": "save the cookie" + }, + { + "appid": 895670, + "normalized_name": "armajet" + }, + { + "appid": 895710, + "normalized_name": "electronic stock trading system" + }, + { + "appid": 895740, + "normalized_name": "gunfu heroes" + }, + { + "appid": 895750, + "normalized_name": "the adventures of mr. fluffykins" + }, + { + "appid": 895760, + "normalized_name": "ollie oop" + }, + { + "appid": 895820, + "normalized_name": "kokorogawari" + }, + { + "appid": 895850, + "normalized_name": "uro" + }, + { + "appid": 895860, + "normalized_name": "witchaction" + }, + { + "appid": 895870, + "normalized_name": "project wingman" + }, + { + "appid": 895890, + "normalized_name": "grabbag" + }, + { + "appid": 895900, + "normalized_name": "the chaotic workshop" + }, + { + "appid": 895930, + "normalized_name": "maze quest 1 the forest" + }, + { + "appid": 895940, + "normalized_name": "atlantic edge" + }, + { + "appid": 895950, + "normalized_name": "biohazard re 2 z version" + }, + { + "appid": 895960, + "normalized_name": "save them" + }, + { + "appid": 895970, + "normalized_name": "blackshot mercenary warfare" + }, + { + "appid": 895980, + "normalized_name": "《古斯塔奥:帝國重生》gustavo kingdom rebirth" + }, + { + "appid": 895990, + "normalized_name": "水时钟 water_clock" + }, + { + "appid": 896010, + "normalized_name": "clockwork ambrosia" + }, + { + "appid": 896030, + "normalized_name": "fortissimo fa intl ver" + }, + { + "appid": 896040, + "normalized_name": "the impure" + }, + { + "appid": 896110, + "normalized_name": "crime stories days of vengeance" + }, + { + "appid": 896160, + "normalized_name": "evil bank manager" + }, + { + "appid": 896170, + "normalized_name": "my fox sister|我的妖狐妹妹" + }, + { + "appid": 896180, + "normalized_name": "nazi 2" + }, + { + "appid": 896220, + "normalized_name": "dangerous skies 80's" + }, + { + "appid": 896230, + "normalized_name": "picross bonbon nonogram" + }, + { + "appid": 896240, + "normalized_name": "the grand museum vr" + }, + { + "appid": 896250, + "normalized_name": "liquidation" + }, + { + "appid": 896340, + "normalized_name": "to leave" + }, + { + "appid": 896350, + "normalized_name": "symphonics make music in vr" + }, + { + "appid": 896370, + "normalized_name": "navigator" + }, + { + "appid": 896380, + "normalized_name": "before nightfall" + }, + { + "appid": 896400, + "normalized_name": "alien attack pocket" + }, + { + "appid": 896410, + "normalized_name": "mayonez dark comedy slav adventure rpg" + }, + { + "appid": 896440, + "normalized_name": "eternal edge +" + }, + { + "appid": 896460, + "normalized_name": "lucah born of a dream" + }, + { + "appid": 896500, + "normalized_name": "whispering flames" + }, + { + "appid": 896520, + "normalized_name": "stay out of the house" + }, + { + "appid": 896550, + "normalized_name": "the sea between" + }, + { + "appid": 896570, + "normalized_name": "puzzle cats & dogs" + }, + { + "appid": 896590, + "normalized_name": "milmo" + }, + { + "appid": 896650, + "normalized_name": "end war rts" + }, + { + "appid": 896670, + "normalized_name": "ritual on the eve 前夜祭" + }, + { + "appid": 896750, + "normalized_name": "koral" + }, + { + "appid": 896820, + "normalized_name": "magic trickery" + }, + { + "appid": 896850, + "normalized_name": "car crash online" + }, + { + "appid": 896870, + "normalized_name": "eggs & kings" + }, + { + "appid": 896880, + "normalized_name": "bouncing over it with friends" + }, + { + "appid": 896890, + "normalized_name": "vr paradise steam" + }, + { + "appid": 896940, + "normalized_name": "switcher" + }, + { + "appid": 896950, + "normalized_name": "jumanji the video game" + }, + { + "appid": 896960, + "normalized_name": "dreamworks dragons dawn of new riders" + }, + { + "appid": 896970, + "normalized_name": "haunted halls revenge of doctor blackmore collector's" + }, + { + "appid": 896980, + "normalized_name": "whispered secrets golden silence collector's" + }, + { + "appid": 896990, + "normalized_name": "dark tales edgar allan poe's the tell tale heart collector's" + }, + { + "appid": 897000, + "normalized_name": "love chronicles a winter's spell collector's" + }, + { + "appid": 897010, + "normalized_name": "surface return to another world collector's" + }, + { + "appid": 897020, + "normalized_name": "awakening moonfell wood" + }, + { + "appid": 897030, + "normalized_name": "paratopic" + }, + { + "appid": 897040, + "normalized_name": "nazi bunker" + }, + { + "appid": 897100, + "normalized_name": "escape black orion vr" + }, + { + "appid": 897110, + "normalized_name": "swap! swap! swap!" + }, + { + "appid": 897120, + "normalized_name": "moko's advice" + }, + { + "appid": 897210, + "normalized_name": "omicroid" + }, + { + "appid": 897220, + "normalized_name": "summer pockets" + }, + { + "appid": 897270, + "normalized_name": "无法传达的话语(words cannot convey)" + }, + { + "appid": 897300, + "normalized_name": "hacked hentai prison" + }, + { + "appid": 897330, + "normalized_name": "coloring pixels" + }, + { + "appid": 897340, + "normalized_name": "nous" + }, + { + "appid": 897360, + "normalized_name": "urban explorer golf" + }, + { + "appid": 897380, + "normalized_name": "reptiles in hunt" + }, + { + "appid": 897410, + "normalized_name": "esports life tycoon" + }, + { + "appid": 897420, + "normalized_name": "the christmas gifts" + }, + { + "appid": 897440, + "normalized_name": "leviathan ~a survival rpg~" + }, + { + "appid": 897450, + "normalized_name": "the survivalists" + }, + { + "appid": 897530, + "normalized_name": "retroids" + }, + { + "appid": 897550, + "normalized_name": "study of unusual forest of secrets" + }, + { + "appid": 897560, + "normalized_name": "waveform wipeout" + }, + { + "appid": 897580, + "normalized_name": "avem888" + }, + { + "appid": 897610, + "normalized_name": "scrapland" + }, + { + "appid": 897630, + "normalized_name": "death fungeon" + }, + { + "appid": 897640, + "normalized_name": "gun crazy" + }, + { + "appid": 897650, + "normalized_name": "selfie games [tv] a multiplayer couch party game" + }, + { + "appid": 897690, + "normalized_name": "ding dong vr" + }, + { + "appid": 897700, + "normalized_name": "bladequest" + }, + { + "appid": 897730, + "normalized_name": "among trees" + }, + { + "appid": 897740, + "normalized_name": "spaghet 2 al dente chapter" + }, + { + "appid": 897760, + "normalized_name": "put anna" + }, + { + "appid": 897770, + "normalized_name": "solar fighters" + }, + { + "appid": 897800, + "normalized_name": "arcane golf" + }, + { + "appid": 897820, + "normalized_name": "reigns game of thrones" + }, + { + "appid": 897830, + "normalized_name": "the queen of blackwood high" + }, + { + "appid": 897880, + "normalized_name": "the occluder" + }, + { + "appid": 897890, + "normalized_name": "blade of arena 劍鬥界域" + }, + { + "appid": 897900, + "normalized_name": "typing hero" + }, + { + "appid": 897910, + "normalized_name": "sandhill architectures" + }, + { + "appid": 897930, + "normalized_name": "demonheart hunters" + }, + { + "appid": 897940, + "normalized_name": "high cats" + }, + { + "appid": 897970, + "normalized_name": "viper attack" + }, + { + "appid": 897980, + "normalized_name": "camoflux levels & bosses" + }, + { + "appid": 898000, + "normalized_name": "uventa" + }, + { + "appid": 898040, + "normalized_name": "whirlygig" + }, + { + "appid": 898050, + "normalized_name": "hermina lumen is only human" + }, + { + "appid": 898080, + "normalized_name": "everybody's sad" + }, + { + "appid": 898090, + "normalized_name": "立方杀阵(cubic kill array)" + }, + { + "appid": 898120, + "normalized_name": "temple of the lost" + }, + { + "appid": 898160, + "normalized_name": "hotel remorse" + }, + { + "appid": 898170, + "normalized_name": "grid gunner" + }, + { + "appid": 898200, + "normalized_name": "spessvr" + }, + { + "appid": 898220, + "normalized_name": "void of space" + }, + { + "appid": 898240, + "normalized_name": "kinkshamed" + }, + { + "appid": 898250, + "normalized_name": "packagerun" + }, + { + "appid": 898260, + "normalized_name": "juliantli" + }, + { + "appid": 898290, + "normalized_name": "v.o.i.d." + }, + { + "appid": 898310, + "normalized_name": "happy empire a bouquet for the princess enhanced" + }, + { + "appid": 898320, + "normalized_name": "synth ninja" + }, + { + "appid": 898340, + "normalized_name": "puzzles and board games mega collection" + }, + { + "appid": 898380, + "normalized_name": "color party" + }, + { + "appid": 898400, + "normalized_name": "the misadventures of botsworth" + }, + { + "appid": 898430, + "normalized_name": "cube creator x" + }, + { + "appid": 898440, + "normalized_name": "turing tumble vr" + }, + { + "appid": 898450, + "normalized_name": "ubermosh santicide" + }, + { + "appid": 898460, + "normalized_name": "outback" + }, + { + "appid": 898490, + "normalized_name": "dorian morris adventure" + }, + { + "appid": 898500, + "normalized_name": "hentai city" + }, + { + "appid": 898580, + "normalized_name": "premium bowling" + }, + { + "appid": 898650, + "normalized_name": "the shapeshifting detective" + }, + { + "appid": 898660, + "normalized_name": "cubicus arcanum" + }, + { + "appid": 898680, + "normalized_name": "jump and run don't fall" + }, + { + "appid": 898690, + "normalized_name": "zombie" + }, + { + "appid": 898720, + "normalized_name": "kubifaktorium" + }, + { + "appid": 898750, + "normalized_name": "super robot wars 30" + }, + { + "appid": 898780, + "normalized_name": "escape game" + }, + { + "appid": 898790, + "normalized_name": "locomotion" + }, + { + "appid": 898800, + "normalized_name": "constructor plus" + }, + { + "appid": 898810, + "normalized_name": "merv liberation" + }, + { + "appid": 898830, + "normalized_name": "in your realm" + }, + { + "appid": 898890, + "normalized_name": "endling extinction is forever" + }, + { + "appid": 898910, + "normalized_name": "dash danger action speed heroes" + }, + { + "appid": 898920, + "normalized_name": "axis & allies 1942 online" + }, + { + "appid": 898930, + "normalized_name": "pingball ultra" + }, + { + "appid": 898950, + "normalized_name": "ulxrd" + }, + { + "appid": 898980, + "normalized_name": "the mine" + }, + { + "appid": 899000, + "normalized_name": "warlords.io" + }, + { + "appid": 899020, + "normalized_name": "chiptune dj" + }, + { + "appid": 899090, + "normalized_name": "ricecakers" + }, + { + "appid": 899100, + "normalized_name": "sum" + }, + { + "appid": 899160, + "normalized_name": "小林正雪復仇之密室重制版 cheney wood the revenge" + }, + { + "appid": 899180, + "normalized_name": "voronium locust sols" + }, + { + "appid": 899190, + "normalized_name": "a piece of wish upon the stars" + }, + { + "appid": 899200, + "normalized_name": "windstorm an unexpected arrival" + }, + { + "appid": 899220, + "normalized_name": "fly of butterfly" + }, + { + "appid": 899230, + "normalized_name": "last stand reborn" + }, + { + "appid": 899270, + "normalized_name": "blambox" + }, + { + "appid": 899290, + "normalized_name": "the night of fire stealing/盗火之夜" + }, + { + "appid": 899310, + "normalized_name": "iron danger" + }, + { + "appid": 899340, + "normalized_name": "mendel" + }, + { + "appid": 899390, + "normalized_name": "xenon racer" + }, + { + "appid": 899440, + "normalized_name": "god eater 3" + }, + { + "appid": 899460, + "normalized_name": "shores unknown" + }, + { + "appid": 899470, + "normalized_name": "chook & sosig walk the plank" + }, + { + "appid": 899480, + "normalized_name": "girls dance" + }, + { + "appid": 899530, + "normalized_name": "cosmi cave 64" + }, + { + "appid": 899540, + "normalized_name": "protest" + }, + { + "appid": 899570, + "normalized_name": "my first music workshop" + }, + { + "appid": 899590, + "normalized_name": "heliophobia" + }, + { + "appid": 899610, + "normalized_name": "so uh... a spaceship crashed in my yard." + }, + { + "appid": 899630, + "normalized_name": "waifu school" + }, + { + "appid": 899760, + "normalized_name": "her 她" + }, + { + "appid": 899770, + "normalized_name": "last epoch" + }, + { + "appid": 899930, + "normalized_name": "spaceball" + }, + { + "appid": 899940, + "normalized_name": "校园恋物语|love in school" + }, + { + "appid": 899960, + "normalized_name": "the greater good" + }, + { + "appid": 899970, + "normalized_name": "nekopara extra" + }, + { + "appid": 899990, + "normalized_name": "lvn fake news" + }, + { + "appid": 900010, + "normalized_name": "meeple station" + }, + { + "appid": 900040, + "normalized_name": "elex ii" + }, + { + "appid": 900050, + "normalized_name": "amber's airline high hopes" + }, + { + "appid": 900060, + "normalized_name": "free throw" + }, + { + "appid": 900270, + "normalized_name": "reventure" + }, + { + "appid": 900290, + "normalized_name": "veritas" + }, + { + "appid": 900330, + "normalized_name": "king dom" + }, + { + "appid": 900340, + "normalized_name": "terror" + }, + { + "appid": 900370, + "normalized_name": "stockpile" + }, + { + "appid": 900380, + "normalized_name": "indian summer" + }, + { + "appid": 900390, + "normalized_name": "algae" + }, + { + "appid": 900400, + "normalized_name": "sacred fire a role playing game" + }, + { + "appid": 900490, + "normalized_name": "power gunner" + }, + { + "appid": 900790, + "normalized_name": "bunny minesweeper" + }, + { + "appid": 900883, + "normalized_name": "the elder scrolls iv oblivion game of the year deluxe (2009)" + }, + { + "appid": 901000, + "normalized_name": "serenade of the sirens" + }, + { + "appid": 901020, + "normalized_name": "adventure portal" + }, + { + "appid": 901147, + "normalized_name": "earthworm jim" + }, + { + "appid": 901553, + "normalized_name": "serious sam hd gold" + }, + { + "appid": 901638, + "normalized_name": "dungeon siege iii" + }, + { + "appid": 901663, + "normalized_name": "sam & max season two" + }, + { + "appid": 901667, + "normalized_name": "duels of the planeswalkers gold game bundle" + }, + { + "appid": 901735, + "normalized_name": "the stronghold collection" + }, + { + "appid": 901776, + "normalized_name": "fate of the world tipping point" + }, + { + "appid": 903040, + "normalized_name": "the castles of burgundy" + }, + { + "appid": 903150, + "normalized_name": "fall 坠落之后" + }, + { + "appid": 903160, + "normalized_name": "wunderwaffe" + }, + { + "appid": 903180, + "normalized_name": "privateers" + }, + { + "appid": 903280, + "normalized_name": "dead man's fault" + }, + { + "appid": 903310, + "normalized_name": "soter" + }, + { + "appid": 903450, + "normalized_name": "turbo cat fight" + }, + { + "appid": 903490, + "normalized_name": "aban" + }, + { + "appid": 903560, + "normalized_name": "pixel fishies" + }, + { + "appid": 903570, + "normalized_name": "displacement arcade game box" + }, + { + "appid": 903580, + "normalized_name": "astroviking" + }, + { + "appid": 903620, + "normalized_name": "everyday baseball vr" + }, + { + "appid": 903630, + "normalized_name": "the last cube" + }, + { + "appid": 903640, + "normalized_name": "super zombie arcade" + }, + { + "appid": 903680, + "normalized_name": "connect01" + }, + { + "appid": 903700, + "normalized_name": "the misadventures of denniz & diana" + }, + { + "appid": 903710, + "normalized_name": "headshot vr" + }, + { + "appid": 903730, + "normalized_name": "axiom soccer" + }, + { + "appid": 903740, + "normalized_name": "kings" + }, + { + "appid": 903760, + "normalized_name": "binarybotsvr" + }, + { + "appid": 903780, + "normalized_name": "beast agenda 2030" + }, + { + "appid": 903790, + "normalized_name": "card battle spirit link" + }, + { + "appid": 903830, + "normalized_name": "cash rush" + }, + { + "appid": 903850, + "normalized_name": "fairy knights" + }, + { + "appid": 903880, + "normalized_name": "drying paint simulator vr" + }, + { + "appid": 903910, + "normalized_name": "tranzient" + }, + { + "appid": 903930, + "normalized_name": "brigador killers" + }, + { + "appid": 903950, + "normalized_name": "last oasis" + }, + { + "appid": 904050, + "normalized_name": "american university life ~welcome week!~" + }, + { + "appid": 904130, + "normalized_name": "defense abominations" + }, + { + "appid": 904140, + "normalized_name": "slicer" + }, + { + "appid": 904160, + "normalized_name": "ashes" + }, + { + "appid": 904230, + "normalized_name": "40 steps to valhalla" + }, + { + "appid": 904310, + "normalized_name": "initial 2 new stage" + }, + { + "appid": 904320, + "normalized_name": "my holiday" + }, + { + "appid": 904340, + "normalized_name": "marbledrome crazy stunt balls" + }, + { + "appid": 904360, + "normalized_name": "family man" + }, + { + "appid": 904380, + "normalized_name": "vambrace cold soul" + }, + { + "appid": 904400, + "normalized_name": "cardpocalypse" + }, + { + "appid": 904410, + "normalized_name": "fishing simulator" + }, + { + "appid": 904430, + "normalized_name": "swing the cat" + }, + { + "appid": 904440, + "normalized_name": "type defense" + }, + { + "appid": 904450, + "normalized_name": "port valley" + }, + { + "appid": 904500, + "normalized_name": "grompula" + }, + { + "appid": 904510, + "normalized_name": "artificial" + }, + { + "appid": 904520, + "normalized_name": "red embrace hollywood" + }, + { + "appid": 904530, + "normalized_name": "erotic jigsaw challenge vol 2" + }, + { + "appid": 904540, + "normalized_name": "indiana jones and the infernal machine" + }, + { + "appid": 904570, + "normalized_name": "tok" + }, + { + "appid": 904600, + "normalized_name": "small sister" + }, + { + "appid": 904640, + "normalized_name": "dairy farm simulator" + }, + { + "appid": 904680, + "normalized_name": "hothead" + }, + { + "appid": 904700, + "normalized_name": "down ward" + }, + { + "appid": 904740, + "normalized_name": "东方试闻广纪 ~ perfect memento of touhou question" + }, + { + "appid": 904750, + "normalized_name": "zniw adventure" + }, + { + "appid": 904770, + "normalized_name": "divine miracle defense" + }, + { + "appid": 904780, + "normalized_name": "deepweb" + }, + { + "appid": 904800, + "normalized_name": "ambition" + }, + { + "appid": 904810, + "normalized_name": "ectolibrium" + }, + { + "appid": 904820, + "normalized_name": "vr jogger" + }, + { + "appid": 904840, + "normalized_name": "midnight wave" + }, + { + "appid": 904850, + "normalized_name": "fat[ex] courier simulator" + }, + { + "appid": 904860, + "normalized_name": "25 cadre of death" + }, + { + "appid": 904890, + "normalized_name": "neverliria" + }, + { + "appid": 904900, + "normalized_name": "pinup ball sexy strip pinball" + }, + { + "appid": 904950, + "normalized_name": "exodus" + }, + { + "appid": 904960, + "normalized_name": "cine tracer" + }, + { + "appid": 904970, + "normalized_name": "堕魔的伊米娅(fallen emiya)" + }, + { + "appid": 904990, + "normalized_name": "21+" + }, + { + "appid": 905010, + "normalized_name": "draw light" + }, + { + "appid": 905020, + "normalized_name": "fort" + }, + { + "appid": 905060, + "normalized_name": "turret tech" + }, + { + "appid": 905070, + "normalized_name": "contingency" + }, + { + "appid": 905090, + "normalized_name": "pineview drive homeless" + }, + { + "appid": 905120, + "normalized_name": "son.light.sleepwalker" + }, + { + "appid": 905130, + "normalized_name": "doggo dig down" + }, + { + "appid": 905150, + "normalized_name": "trivia quiz all about everything!" + }, + { + "appid": 905180, + "normalized_name": "inevitable vr" + }, + { + "appid": 905240, + "normalized_name": "street tuning evolution" + }, + { + "appid": 905260, + "normalized_name": "hags castle" + }, + { + "appid": 905280, + "normalized_name": "qb sim" + }, + { + "appid": 905330, + "normalized_name": "ooo ascension" + }, + { + "appid": 905340, + "normalized_name": "heave ho" + }, + { + "appid": 905350, + "normalized_name": "bang bang fruit 3" + }, + { + "appid": 905360, + "normalized_name": "smash ball" + }, + { + "appid": 905380, + "normalized_name": "rpg纪元" + }, + { + "appid": 905390, + "normalized_name": "drone spektra" + }, + { + "appid": 905400, + "normalized_name": "cyborg_lab" + }, + { + "appid": 905410, + "normalized_name": "screech of steel gladiators" + }, + { + "appid": 905440, + "normalized_name": "rogue along way" + }, + { + "appid": 905460, + "normalized_name": "nutrients for life" + }, + { + "appid": 905490, + "normalized_name": "deck hunter" + }, + { + "appid": 905510, + "normalized_name": "rugosi" + }, + { + "appid": 905540, + "normalized_name": "frigid" + }, + { + "appid": 905560, + "normalized_name": "bullets in the space" + }, + { + "appid": 905570, + "normalized_name": "celebrity hunter" + }, + { + "appid": 905590, + "normalized_name": "the asteroid belt's trial" + }, + { + "appid": 905630, + "normalized_name": "galaxy top wing" + }, + { + "appid": 905640, + "normalized_name": "combat arms reloaded" + }, + { + "appid": 905650, + "normalized_name": "dominus 2" + }, + { + "appid": 905660, + "normalized_name": "纸境英雄 papercraft" + }, + { + "appid": 905670, + "normalized_name": "巭孬嫑毖" + }, + { + "appid": 905690, + "normalized_name": "魔物讨伐团" + }, + { + "appid": 905760, + "normalized_name": "fugue state" + }, + { + "appid": 905790, + "normalized_name": "hungry shadows" + }, + { + "appid": 905800, + "normalized_name": "spaceexile" + }, + { + "appid": 905860, + "normalized_name": "drillmania" + }, + { + "appid": 905870, + "normalized_name": "inn the countryside" + }, + { + "appid": 905880, + "normalized_name": "caves of plague" + }, + { + "appid": 905890, + "normalized_name": "monowars red zone" + }, + { + "appid": 905960, + "normalized_name": "skyland defense" + }, + { + "appid": 905970, + "normalized_name": "steel crew" + }, + { + "appid": 905980, + "normalized_name": "midnight pulse" + }, + { + "appid": 906010, + "normalized_name": "tal arctic 2" + }, + { + "appid": 906030, + "normalized_name": "noce" + }, + { + "appid": 906050, + "normalized_name": "hentai case opening" + }, + { + "appid": 906100, + "normalized_name": "observation" + }, + { + "appid": 906110, + "normalized_name": "minotaur arcade volume 1" + }, + { + "appid": 906120, + "normalized_name": "polybius" + }, + { + "appid": 906160, + "normalized_name": "repeat the image animals" + }, + { + "appid": 906170, + "normalized_name": "metal brigade tactics" + }, + { + "appid": 906190, + "normalized_name": "kamikaze cube 2" + }, + { + "appid": 906240, + "normalized_name": "encore card games collection" + }, + { + "appid": 906250, + "normalized_name": "encore casino games collection" + }, + { + "appid": 906280, + "normalized_name": "combat rush" + }, + { + "appid": 906300, + "normalized_name": "under one wing" + }, + { + "appid": 906310, + "normalized_name": "rapid racing" + }, + { + "appid": 906360, + "normalized_name": "luxo buddies" + }, + { + "appid": 906370, + "normalized_name": "starkid's obstacle course" + }, + { + "appid": 906390, + "normalized_name": "return." + }, + { + "appid": 906430, + "normalized_name": "alive" + }, + { + "appid": 906460, + "normalized_name": "galactis" + }, + { + "appid": 906470, + "normalized_name": "gravia" + }, + { + "appid": 906480, + "normalized_name": "defenders of ekron" + }, + { + "appid": 906510, + "normalized_name": "conception plus maidens of the twelve stars" + }, + { + "appid": 906560, + "normalized_name": "bare boob brawlerz visual novel vol 1" + }, + { + "appid": 906600, + "normalized_name": "gunkid 99" + }, + { + "appid": 906650, + "normalized_name": "gumstein the awakening" + }, + { + "appid": 906660, + "normalized_name": "seacurity breach" + }, + { + "appid": 906680, + "normalized_name": "zombie flick | 僵尸快打" + }, + { + "appid": 906730, + "normalized_name": "typical" + }, + { + "appid": 906740, + "normalized_name": "voidship the long journey" + }, + { + "appid": 906770, + "normalized_name": "titan slayer ⅱ" + }, + { + "appid": 906790, + "normalized_name": "gaia" + }, + { + "appid": 906820, + "normalized_name": "protocore" + }, + { + "appid": 906850, + "normalized_name": "again?" + }, + { + "appid": 906870, + "normalized_name": "furryfury smash & roll" + }, + { + "appid": 906880, + "normalized_name": "goto" + }, + { + "appid": 906920, + "normalized_name": "political puzzle" + }, + { + "appid": 906930, + "normalized_name": "leap" + }, + { + "appid": 907000, + "normalized_name": "the navigator" + }, + { + "appid": 907020, + "normalized_name": "bomber 95" + }, + { + "appid": 907030, + "normalized_name": "globat pixels" + }, + { + "appid": 907040, + "normalized_name": "simple racing" + }, + { + "appid": 907050, + "normalized_name": "deep space classic" + }, + { + "appid": 907090, + "normalized_name": "cursed armor" + }, + { + "appid": 907160, + "normalized_name": "project skylab" + }, + { + "appid": 907190, + "normalized_name": "grits racing" + }, + { + "appid": 907210, + "normalized_name": "phantom thief celianna" + }, + { + "appid": 907220, + "normalized_name": "one piu day" + }, + { + "appid": 907240, + "normalized_name": "像素修真 pixel xiuzhen" + }, + { + "appid": 907250, + "normalized_name": "gungrave vr u.n" + }, + { + "appid": 907270, + "normalized_name": "esports legend / 电竞传奇" + }, + { + "appid": 907310, + "normalized_name": "world of myths" + }, + { + "appid": 907330, + "normalized_name": "amulet zero 零物语 optimize" + }, + { + "appid": 907350, + "normalized_name": "welcome to... chichester 2 part i the spy of chichester and the eager tourist guide hd" + }, + { + "appid": 907380, + "normalized_name": "the ballad singer" + }, + { + "appid": 907390, + "normalized_name": "numberline 3" + }, + { + "appid": 907410, + "normalized_name": "hard times" + }, + { + "appid": 907460, + "normalized_name": "girlfriend cards" + }, + { + "appid": 907470, + "normalized_name": "iris.fall" + }, + { + "appid": 907500, + "normalized_name": "the peterson case" + }, + { + "appid": 907520, + "normalized_name": "abc paint" + }, + { + "appid": 907560, + "normalized_name": "terrawurm" + }, + { + "appid": 907590, + "normalized_name": "data mining" + }, + { + "appid": 907620, + "normalized_name": "lawnmower game 3 horror" + }, + { + "appid": 907630, + "normalized_name": "haunted showers" + }, + { + "appid": 907650, + "normalized_name": "stronghold warlords" + }, + { + "appid": 907670, + "normalized_name": "super crush ko" + }, + { + "appid": 907710, + "normalized_name": "this is the zodiac speaking" + }, + { + "appid": 907760, + "normalized_name": "arida backland's awakening" + }, + { + "appid": 907770, + "normalized_name": "stone" + }, + { + "appid": 907780, + "normalized_name": "puzzle noid" + }, + { + "appid": 907820, + "normalized_name": "aeon of sands the trail" + }, + { + "appid": 907870, + "normalized_name": "wandering star" + }, + { + "appid": 907900, + "normalized_name": "mystic ruins" + }, + { + "appid": 907920, + "normalized_name": "建筑大冒险 architectural adventure" + }, + { + "appid": 907940, + "normalized_name": "defense contract" + }, + { + "appid": 907950, + "normalized_name": "falldown 79 bottle of truth" + }, + { + "appid": 907970, + "normalized_name": "shennong taste of illusion" + }, + { + "appid": 907980, + "normalized_name": "graularm" + }, + { + "appid": 908000, + "normalized_name": "stories in stone" + }, + { + "appid": 908010, + "normalized_name": "farjob" + }, + { + "appid": 908020, + "normalized_name": "tactic code 战术代码" + }, + { + "appid": 908050, + "normalized_name": "summer catchers" + }, + { + "appid": 908060, + "normalized_name": "talisman digital 5th" + }, + { + "appid": 908070, + "normalized_name": "mystic vale" + }, + { + "appid": 908090, + "normalized_name": "skateboarding pro" + }, + { + "appid": 908100, + "normalized_name": "九州:商旅(nine provinces caravan)" + }, + { + "appid": 908120, + "normalized_name": "w. t. b." + }, + { + "appid": 908150, + "normalized_name": "dunderheads" + }, + { + "appid": 908180, + "normalized_name": "space maze" + }, + { + "appid": 908200, + "normalized_name": "revengers" + }, + { + "appid": 908230, + "normalized_name": "basketball hoop" + }, + { + "appid": 908260, + "normalized_name": "velocity g" + }, + { + "appid": 908270, + "normalized_name": "slime dad" + }, + { + "appid": 908310, + "normalized_name": "the call" + }, + { + "appid": 908320, + "normalized_name": "captain training" + }, + { + "appid": 908330, + "normalized_name": "contingent" + }, + { + "appid": 908350, + "normalized_name": "美少女麻将接龙" + }, + { + "appid": 908360, + "normalized_name": "monomyth" + }, + { + "appid": 908390, + "normalized_name": "infinitrap rehamstered" + }, + { + "appid": 908400, + "normalized_name": "age of forays" + }, + { + "appid": 908420, + "normalized_name": "we happy few soundtrack and digital goods bundle" + }, + { + "appid": 908480, + "normalized_name": "legends of ethernal" + }, + { + "appid": 908500, + "normalized_name": "crazy maze ~疯狂迷宫 ~ 狂った迷路 ~ laberinto loco ~ labyrinthe fou ~ verrücktes labyrinth" + }, + { + "appid": 908510, + "normalized_name": "eight.domino.heart" + }, + { + "appid": 908560, + "normalized_name": "intrepid izzy" + }, + { + "appid": 908590, + "normalized_name": "combiner the card game" + }, + { + "appid": 908620, + "normalized_name": "manipulate sacrifice" + }, + { + "appid": 908660, + "normalized_name": "circle brawl" + }, + { + "appid": 908690, + "normalized_name": "bigboy visual novel" + }, + { + "appid": 908710, + "normalized_name": "nightknight" + }, + { + "appid": 908730, + "normalized_name": "timescar hyperion" + }, + { + "appid": 908740, + "normalized_name": "valhall harbinger beta testing" + }, + { + "appid": 908750, + "normalized_name": "death race vr" + }, + { + "appid": 908770, + "normalized_name": "global conflagration" + }, + { + "appid": 908790, + "normalized_name": "subdivision infinity dx" + }, + { + "appid": 908820, + "normalized_name": "unleash hell" + }, + { + "appid": 908830, + "normalized_name": "shadow fear path to insanity" + }, + { + "appid": 908840, + "normalized_name": "suprapong" + }, + { + "appid": 908920, + "normalized_name": "nightmare simulator" + }, + { + "appid": 908940, + "normalized_name": "夢物語origin" + }, + { + "appid": 908950, + "normalized_name": "glow chess" + }, + { + "appid": 908960, + "normalized_name": "a second chance" + }, + { + "appid": 908990, + "normalized_name": "steel vampire" + }, + { + "appid": 909010, + "normalized_name": "lovebug" + }, + { + "appid": 909020, + "normalized_name": "梦本无忧" + }, + { + "appid": 909080, + "normalized_name": "cube escape paradox" + }, + { + "appid": 909100, + "normalized_name": "epic fun" + }, + { + "appid": 909110, + "normalized_name": "acid nimbus" + }, + { + "appid": 909170, + "normalized_name": "a.d.m(angels demons and men)" + }, + { + "appid": 909190, + "normalized_name": "escape lala retro point and click adventure" + }, + { + "appid": 909200, + "normalized_name": "wandering owl" + }, + { + "appid": 909220, + "normalized_name": "punch pad workout" + }, + { + "appid": 909270, + "normalized_name": "flying soul" + }, + { + "appid": 909320, + "normalized_name": "ruinarch" + }, + { + "appid": 909360, + "normalized_name": "organism8" + }, + { + "appid": 909370, + "normalized_name": "roomesc secret of the hidden room the collaborator" + }, + { + "appid": 909380, + "normalized_name": "中医模拟器" + }, + { + "appid": 909430, + "normalized_name": "travel riddles mahjong" + }, + { + "appid": 909470, + "normalized_name": "touch type tale strategic typing" + }, + { + "appid": 909480, + "normalized_name": "puzzle landscapes" + }, + { + "appid": 909500, + "normalized_name": "hurricane chase(飓风追击)" + }, + { + "appid": 909570, + "normalized_name": "spuds unearthed" + }, + { + "appid": 909580, + "normalized_name": "cortex" + }, + { + "appid": 909630, + "normalized_name": "desktop dynasties pro football" + }, + { + "appid": 909660, + "normalized_name": "vagrus the riven realms" + }, + { + "appid": 909670, + "normalized_name": "skybolt zack" + }, + { + "appid": 909710, + "normalized_name": "pythagoria the finals" + }, + { + "appid": 909750, + "normalized_name": "bloodbound vampire hunters" + }, + { + "appid": 909820, + "normalized_name": "songbird symphony" + }, + { + "appid": 909830, + "normalized_name": "color by number pixel draw" + }, + { + "appid": 909900, + "normalized_name": "悪梦er mo" + }, + { + "appid": 909970, + "normalized_name": "tech corp." + }, + { + "appid": 910150, + "normalized_name": "roving in the dark" + }, + { + "appid": 910180, + "normalized_name": "virtual earth online" + }, + { + "appid": 910190, + "normalized_name": "hive slayer" + }, + { + "appid": 910200, + "normalized_name": "professor watts memory match cute animals" + }, + { + "appid": 910210, + "normalized_name": "coffee trainer vr" + }, + { + "appid": 910220, + "normalized_name": "professor watts memory match yummy cupcakes" + }, + { + "appid": 910230, + "normalized_name": "fortified swiss" + }, + { + "appid": 910250, + "normalized_name": "professor watts memory match fresh fruit" + }, + { + "appid": 910260, + "normalized_name": "chicken vr" + }, + { + "appid": 910280, + "normalized_name": "dash island" + }, + { + "appid": 910290, + "normalized_name": "crackpot despot trump warfare" + }, + { + "appid": 910320, + "normalized_name": "three kingdoms 2019 阿达三国志2019 横版" + }, + { + "appid": 910380, + "normalized_name": "red and the deadly sins" + }, + { + "appid": 910390, + "normalized_name": "stay or leave / 留离" + }, + { + "appid": 910400, + "normalized_name": "mio garden" + }, + { + "appid": 910420, + "normalized_name": "brick breaker with risa" + }, + { + "appid": 910430, + "normalized_name": "the war of the worlds andromeda" + }, + { + "appid": 910450, + "normalized_name": "warhammer quest 2 the end times" + }, + { + "appid": 910460, + "normalized_name": "rocket of whispers prologue" + }, + { + "appid": 910470, + "normalized_name": "backworlds" + }, + { + "appid": 910490, + "normalized_name": "killsquad" + }, + { + "appid": 910500, + "normalized_name": "goalkeeper legend" + }, + { + "appid": 910530, + "normalized_name": "the eerie inn vr" + }, + { + "appid": 910540, + "normalized_name": "moon river" + }, + { + "appid": 910590, + "normalized_name": "supaplex squares" + }, + { + "appid": 910630, + "normalized_name": "arcade spirits" + }, + { + "appid": 910650, + "normalized_name": "thy knights of climbalot" + }, + { + "appid": 910660, + "normalized_name": "shudder" + }, + { + "appid": 910700, + "normalized_name": "space break" + }, + { + "appid": 910730, + "normalized_name": "solid aether" + }, + { + "appid": 910750, + "normalized_name": "battle species" + }, + { + "appid": 910770, + "normalized_name": "slay the dragon" + }, + { + "appid": 910800, + "normalized_name": "citywars savage" + }, + { + "appid": 910830, + "normalized_name": "rebel galaxy outlaw" + }, + { + "appid": 910850, + "normalized_name": "darken vr" + }, + { + "appid": 910860, + "normalized_name": "wide load" + }, + { + "appid": 910880, + "normalized_name": "mad tower tycoon" + }, + { + "appid": 910980, + "normalized_name": "hungry planet" + }, + { + "appid": 910990, + "normalized_name": "urban lockdown" + }, + { + "appid": 911010, + "normalized_name": "farplane relic" + }, + { + "appid": 911040, + "normalized_name": "bunny the horror game" + }, + { + "appid": 911050, + "normalized_name": "holiday escape" + }, + { + "appid": 911100, + "normalized_name": "memetown usa" + }, + { + "appid": 911120, + "normalized_name": "yumori forest" + }, + { + "appid": 911130, + "normalized_name": "puzzle monarch vampires" + }, + { + "appid": 911170, + "normalized_name": "veccol" + }, + { + "appid": 911180, + "normalized_name": "lost letters (of seraphina)" + }, + { + "appid": 911200, + "normalized_name": "petoons party" + }, + { + "appid": 911210, + "normalized_name": "king of my castle vr" + }, + { + "appid": 911220, + "normalized_name": "dusk diver 酉閃町" + }, + { + "appid": 911230, + "normalized_name": "running man 3d" + }, + { + "appid": 911240, + "normalized_name": "super streaker plus" + }, + { + "appid": 911270, + "normalized_name": "intelligence cats" + }, + { + "appid": 911280, + "normalized_name": "dinosaur hunter vr" + }, + { + "appid": 911290, + "normalized_name": "prehistoria" + }, + { + "appid": 911320, + "normalized_name": "timeover" + }, + { + "appid": 911380, + "normalized_name": "bulletgrounds" + }, + { + "appid": 911400, + "normalized_name": "assassin's creed iii" + }, + { + "appid": 911420, + "normalized_name": "terra incognito antarctica 1911" + }, + { + "appid": 911430, + "normalized_name": "good company" + }, + { + "appid": 911480, + "normalized_name": "gofetch" + }, + { + "appid": 911500, + "normalized_name": "antox vs. free radicals" + }, + { + "appid": 911510, + "normalized_name": "paws and soul" + }, + { + "appid": 911520, + "normalized_name": "one more roll" + }, + { + "appid": 911550, + "normalized_name": "din's legacy" + }, + { + "appid": 911580, + "normalized_name": "audio infection" + }, + { + "appid": 911630, + "normalized_name": "unexpected circumstances" + }, + { + "appid": 911640, + "normalized_name": "chromasquares" + }, + { + "appid": 911660, + "normalized_name": "ducks and gooobers" + }, + { + "appid": 911680, + "normalized_name": "rez plz" + }, + { + "appid": 911690, + "normalized_name": "the orphaned soul" + }, + { + "appid": 911760, + "normalized_name": "fruit tower defense" + }, + { + "appid": 911850, + "normalized_name": "torn asunder" + }, + { + "appid": 911880, + "normalized_name": "caramba!" + }, + { + "appid": 911950, + "normalized_name": "origami flight" + }, + { + "appid": 912000, + "normalized_name": "mike goes on hike" + }, + { + "appid": 912010, + "normalized_name": "riscord" + }, + { + "appid": 912070, + "normalized_name": "desert kill" + }, + { + "appid": 912110, + "normalized_name": "ashley clark the secrets of the ancient temple" + }, + { + "appid": 912120, + "normalized_name": "saturnine" + }, + { + "appid": 912140, + "normalized_name": "spaceball in cube" + }, + { + "appid": 912190, + "normalized_name": "hentai iq puzzle" + }, + { + "appid": 912210, + "normalized_name": "achievement collector cat" + }, + { + "appid": 912250, + "normalized_name": "simplex mundi" + }, + { + "appid": 912260, + "normalized_name": "gallery one" + }, + { + "appid": 912310, + "normalized_name": "tabletop adventures" + }, + { + "appid": 912360, + "normalized_name": "garrison gauntlet" + }, + { + "appid": 912370, + "normalized_name": "mahjong club" + }, + { + "appid": 912380, + "normalized_name": "submorse" + }, + { + "appid": 912390, + "normalized_name": "dismantle construct carnage" + }, + { + "appid": 912410, + "normalized_name": "jetpack warrior vr" + }, + { + "appid": 912420, + "normalized_name": "it's a trap" + }, + { + "appid": 912450, + "normalized_name": "yu no a girl who chants love at the bound of this world" + }, + { + "appid": 912500, + "normalized_name": "poltergeist treasure" + }, + { + "appid": 912510, + "normalized_name": "oh ship arena" + }, + { + "appid": 912520, + "normalized_name": "tiger fighter 1931" + }, + { + "appid": 912550, + "normalized_name": "savage vessels" + }, + { + "appid": 912560, + "normalized_name": "proze prologue" + }, + { + "appid": 912570, + "normalized_name": "beautiful desolation" + }, + { + "appid": 912580, + "normalized_name": "raz" + }, + { + "appid": 912590, + "normalized_name": "the path to domination" + }, + { + "appid": 912650, + "normalized_name": "time carnage" + }, + { + "appid": 912660, + "normalized_name": "welcome above" + }, + { + "appid": 912690, + "normalized_name": "adome" + }, + { + "appid": 912720, + "normalized_name": "time traveling raptors" + }, + { + "appid": 912730, + "normalized_name": "gamble of gods" + }, + { + "appid": 912770, + "normalized_name": "san camillo ii" + }, + { + "appid": 912790, + "normalized_name": "meteor" + }, + { + "appid": 912810, + "normalized_name": "sargon's lair" + }, + { + "appid": 912820, + "normalized_name": "survive in angaria 2" + }, + { + "appid": 912840, + "normalized_name": "the end of the sun" + }, + { + "appid": 912900, + "normalized_name": "bunker defense" + }, + { + "appid": 912920, + "normalized_name": "smush.tv competitive vr x pc action" + }, + { + "appid": 912990, + "normalized_name": "platball" + }, + { + "appid": 913000, + "normalized_name": "sheepageddon" + }, + { + "appid": 913010, + "normalized_name": "your dry delight" + }, + { + "appid": 913060, + "normalized_name": "jet lancer" + }, + { + "appid": 913090, + "normalized_name": "rogue party" + }, + { + "appid": 913100, + "normalized_name": "red lucid nightmare" + }, + { + "appid": 913110, + "normalized_name": "desktop tree" + }, + { + "appid": 913120, + "normalized_name": "cat inside" + }, + { + "appid": 913130, + "normalized_name": "fantasy girl puzzle" + }, + { + "appid": 913160, + "normalized_name": "茉莉之夏 jasmine summer" + }, + { + "appid": 913170, + "normalized_name": "letsgal" + }, + { + "appid": 913180, + "normalized_name": "battle royale simulator" + }, + { + "appid": 913210, + "normalized_name": "catcatch" + }, + { + "appid": 913250, + "normalized_name": "mimic" + }, + { + "appid": 913260, + "normalized_name": "victoria" + }, + { + "appid": 913270, + "normalized_name": "we are terror the first days" + }, + { + "appid": 913280, + "normalized_name": "pranky cat" + }, + { + "appid": 913320, + "normalized_name": "the devil's womb" + }, + { + "appid": 913350, + "normalized_name": "cavedare" + }, + { + "appid": 913370, + "normalized_name": "the colony" + }, + { + "appid": 913420, + "normalized_name": "the odd battle" + }, + { + "appid": 913440, + "normalized_name": "mahjongg the collection 2" + }, + { + "appid": 913500, + "normalized_name": "prank masters – otome game" + }, + { + "appid": 913550, + "normalized_name": "i wanna be the creator" + }, + { + "appid": 913570, + "normalized_name": "cave under richmordnom" + }, + { + "appid": 913590, + "normalized_name": "dimension drifter" + }, + { + "appid": 913600, + "normalized_name": "galactic lander" + }, + { + "appid": 913650, + "normalized_name": "supaplex go!" + }, + { + "appid": 913660, + "normalized_name": "supaplex think!" + }, + { + "appid": 913670, + "normalized_name": "supaplex wow!" + }, + { + "appid": 913690, + "normalized_name": "me smart orc" + }, + { + "appid": 913710, + "normalized_name": "dangerous lands magic and rpg" + }, + { + "appid": 913720, + "normalized_name": "alchemic cutie" + }, + { + "appid": 913730, + "normalized_name": "bot rods" + }, + { + "appid": 913740, + "normalized_name": "world of horror" + }, + { + "appid": 913780, + "normalized_name": "new life" + }, + { + "appid": 913800, + "normalized_name": "pentaquin deeds of twilight" + }, + { + "appid": 913820, + "normalized_name": "mma simulator" + }, + { + "appid": 913830, + "normalized_name": "slime age parody mmorpg clicker" + }, + { + "appid": 913850, + "normalized_name": "103" + }, + { + "appid": 913890, + "normalized_name": "plastic soldiers" + }, + { + "appid": 913910, + "normalized_name": "nightmare of melanie" + }, + { + "appid": 914000, + "normalized_name": "tiny battle simulator" + }, + { + "appid": 914010, + "normalized_name": "train station renovation" + }, + { + "appid": 914020, + "normalized_name": "gibbous a cthulhu adventure" + }, + { + "appid": 914050, + "normalized_name": "mummy on the run" + }, + { + "appid": 914070, + "normalized_name": "shoemaker" + }, + { + "appid": 914090, + "normalized_name": "giral" + }, + { + "appid": 914130, + "normalized_name": "ice agent" + }, + { + "appid": 914140, + "normalized_name": "hentai dojo" + }, + { + "appid": 914170, + "normalized_name": "duck life 7 battle" + }, + { + "appid": 914180, + "normalized_name": "mma team manager" + }, + { + "appid": 914190, + "normalized_name": "battleblade" + }, + { + "appid": 914200, + "normalized_name": "football director 2019" + }, + { + "appid": 914210, + "normalized_name": "n1rv ann a cyberpunk bartender action" + }, + { + "appid": 914220, + "normalized_name": "land of puzzles castles" + }, + { + "appid": 914260, + "normalized_name": "half dead 2" + }, + { + "appid": 914270, + "normalized_name": "city blocks" + }, + { + "appid": 914290, + "normalized_name": "welcome to princeland" + }, + { + "appid": 914320, + "normalized_name": "swarm simulator evolution" + }, + { + "appid": 914350, + "normalized_name": "wet warfare" + }, + { + "appid": 914400, + "normalized_name": "key of impasse" + }, + { + "appid": 914420, + "normalized_name": "shadow fencer theatre" + }, + { + "appid": 914430, + "normalized_name": "pro office calculator" + }, + { + "appid": 914440, + "normalized_name": "dear home" + }, + { + "appid": 914450, + "normalized_name": "test subject 901" + }, + { + "appid": 914480, + "normalized_name": "boom bits" + }, + { + "appid": 914500, + "normalized_name": "boons farm" + }, + { + "appid": 914600, + "normalized_name": "surge" + }, + { + "appid": 914620, + "normalized_name": "mist survival" + }, + { + "appid": 914630, + "normalized_name": "wolf the evolution story" + }, + { + "appid": 914680, + "normalized_name": "crazy alchemist" + }, + { + "appid": 914690, + "normalized_name": "hentai shooter 3d" + }, + { + "appid": 914710, + "normalized_name": "cat quest ii" + }, + { + "appid": 914750, + "normalized_name": "bee simulator" + }, + { + "appid": 914800, + "normalized_name": "coffee talk" + }, + { + "appid": 914850, + "normalized_name": "hentai puzzle" + }, + { + "appid": 914890, + "normalized_name": "nine noir lives" + }, + { + "appid": 914900, + "normalized_name": "super strawberry man" + }, + { + "appid": 914930, + "normalized_name": "alcyon infinity" + }, + { + "appid": 914950, + "normalized_name": "the ultra code" + }, + { + "appid": 915020, + "normalized_name": "the e ball" + }, + { + "appid": 915060, + "normalized_name": "dream enders rpg" + }, + { + "appid": 915080, + "normalized_name": "sokoban the rpg" + }, + { + "appid": 915120, + "normalized_name": "koi solitaire" + }, + { + "appid": 915130, + "normalized_name": "东方龙隐談 ~ touhou chaos of black loong" + }, + { + "appid": 915160, + "normalized_name": "anime girl or boy?" + }, + { + "appid": 915190, + "normalized_name": "cartoony cars 2" + }, + { + "appid": 915200, + "normalized_name": "republique vr" + }, + { + "appid": 915230, + "normalized_name": "zombie rollerz pinball heroes" + }, + { + "appid": 915270, + "normalized_name": "vocabrawlary" + }, + { + "appid": 915300, + "normalized_name": "the planet's rescuer" + }, + { + "appid": 915310, + "normalized_name": "snkrx" + }, + { + "appid": 915320, + "normalized_name": "pixel strike 3d" + }, + { + "appid": 915330, + "normalized_name": "hentai block breaker" + }, + { + "appid": 915360, + "normalized_name": "hexahedral pathfinder" + }, + { + "appid": 915380, + "normalized_name": "john black memories" + }, + { + "appid": 915420, + "normalized_name": "teleblast" + }, + { + "appid": 915430, + "normalized_name": "triteckka the pure shooter" + }, + { + "appid": 915440, + "normalized_name": "fireflies" + }, + { + "appid": 915460, + "normalized_name": "hardbass defence" + }, + { + "appid": 915480, + "normalized_name": "pottis dream forge" + }, + { + "appid": 915490, + "normalized_name": "frontline zed" + }, + { + "appid": 915540, + "normalized_name": "aim master" + }, + { + "appid": 915560, + "normalized_name": "koropokkur in love ~a little fairy’s tale~" + }, + { + "appid": 915570, + "normalized_name": "polygone" + }, + { + "appid": 915600, + "normalized_name": "them and us" + }, + { + "appid": 915610, + "normalized_name": "world's greatest cities mosaics" + }, + { + "appid": 915640, + "normalized_name": "deathless heroes" + }, + { + "appid": 915670, + "normalized_name": "everreach project eden" + }, + { + "appid": 915680, + "normalized_name": "jaws of hell" + }, + { + "appid": 915710, + "normalized_name": "little dragons café" + }, + { + "appid": 915720, + "normalized_name": "session seven" + }, + { + "appid": 915730, + "normalized_name": "catch the kids priest simulator game" + }, + { + "appid": 915760, + "normalized_name": "aether drift" + }, + { + "appid": 915770, + "normalized_name": "people cu3ed" + }, + { + "appid": 915810, + "normalized_name": "midnight ghost hunt" + }, + { + "appid": 915820, + "normalized_name": "amethlion" + }, + { + "appid": 915850, + "normalized_name": "super hiking league dx" + }, + { + "appid": 915860, + "normalized_name": "zettavolt trigger" + }, + { + "appid": 915930, + "normalized_name": "sparticles" + }, + { + "appid": 915960, + "normalized_name": "gallows choice" + }, + { + "appid": 916010, + "normalized_name": "beating a dead horse with a one trick pony" + }, + { + "appid": 916030, + "normalized_name": "a summer with the shiba inu" + }, + { + "appid": 916040, + "normalized_name": "sfd rogue trpg" + }, + { + "appid": 916050, + "normalized_name": "clocker 铸时匠" + }, + { + "appid": 916060, + "normalized_name": "loca love my cute roommate" + }, + { + "appid": 916100, + "normalized_name": "telefrag vr" + }, + { + "appid": 916120, + "normalized_name": "rascals" + }, + { + "appid": 916130, + "normalized_name": "meet the miner wdr vr bergwerk" + }, + { + "appid": 916140, + "normalized_name": "the tale of bistun" + }, + { + "appid": 916150, + "normalized_name": "here nya" + }, + { + "appid": 916160, + "normalized_name": "dreamwalker never fall asleep" + }, + { + "appid": 916180, + "normalized_name": "doodle derby" + }, + { + "appid": 916210, + "normalized_name": "fabrication" + }, + { + "appid": 916240, + "normalized_name": "madievals the rise of rusty steelknee" + }, + { + "appid": 916260, + "normalized_name": "cyclones playground" + }, + { + "appid": 916290, + "normalized_name": "crime girl" + }, + { + "appid": 916320, + "normalized_name": "fair deal las vegas" + }, + { + "appid": 916330, + "normalized_name": "wisentree spirit" + }, + { + "appid": 916340, + "normalized_name": "blue time" + }, + { + "appid": 916350, + "normalized_name": "saturnalia" + }, + { + "appid": 916380, + "normalized_name": "panco's journey" + }, + { + "appid": 916390, + "normalized_name": "team up vr (beta)" + }, + { + "appid": 916440, + "normalized_name": "anno 1800" + }, + { + "appid": 916470, + "normalized_name": "gimel dimension" + }, + { + "appid": 916480, + "normalized_name": "spoockey" + }, + { + "appid": 916510, + "normalized_name": "running man 3d part2" + }, + { + "appid": 916540, + "normalized_name": "fatal hour petroleum" + }, + { + "appid": 916580, + "normalized_name": "hentai puzzle x" + }, + { + "appid": 916630, + "normalized_name": "double stretch" + }, + { + "appid": 916640, + "normalized_name": "hecatoncheirstory" + }, + { + "appid": 916730, + "normalized_name": "gato roboto" + }, + { + "appid": 916780, + "normalized_name": "groundless" + }, + { + "appid": 916790, + "normalized_name": "vr relaxation ride" + }, + { + "appid": 916840, + "normalized_name": "the walking dead saints & sinners" + }, + { + "appid": 916860, + "normalized_name": "puzzle monarch super natural" + }, + { + "appid": 916880, + "normalized_name": "puzzle monarch zombie" + }, + { + "appid": 916900, + "normalized_name": "paperbark" + }, + { + "appid": 916910, + "normalized_name": "infommi" + }, + { + "appid": 916930, + "normalized_name": "war trigger classic" + }, + { + "appid": 916950, + "normalized_name": "awesome pea" + }, + { + "appid": 916960, + "normalized_name": "skelittle a giant party!!" + }, + { + "appid": 916970, + "normalized_name": "duck casino bullet" + }, + { + "appid": 917000, + "normalized_name": "world hentai" + }, + { + "appid": 917020, + "normalized_name": "the con simulator" + }, + { + "appid": 917050, + "normalized_name": "find the balance" + }, + { + "appid": 917130, + "normalized_name": "lily" + }, + { + "appid": 917140, + "normalized_name": "amberial dreams" + }, + { + "appid": 917150, + "normalized_name": "godhood" + }, + { + "appid": 917200, + "normalized_name": "kill the dictator" + }, + { + "appid": 917220, + "normalized_name": "trigger finger" + }, + { + "appid": 917240, + "normalized_name": "heavy dreams" + }, + { + "appid": 917280, + "normalized_name": "forbidden forgiveness" + }, + { + "appid": 917290, + "normalized_name": "duck souls" + }, + { + "appid": 917380, + "normalized_name": "lancelot's hangover the quest for the holy booze" + }, + { + "appid": 917550, + "normalized_name": "checkmate!" + }, + { + "appid": 917600, + "normalized_name": "became the hunted" + }, + { + "appid": 917640, + "normalized_name": "bunny beats" + }, + { + "appid": 917680, + "normalized_name": "one night hot springs" + }, + { + "appid": 917690, + "normalized_name": "vanilla garden of judgement" + }, + { + "appid": 917710, + "normalized_name": "decisions" + }, + { + "appid": 917720, + "normalized_name": "gamedec" + }, + { + "appid": 917740, + "normalized_name": "mandy's room" + }, + { + "appid": 917760, + "normalized_name": "survivor in summer" + }, + { + "appid": 917770, + "normalized_name": "mystery house fivestones" + }, + { + "appid": 917800, + "normalized_name": "joydoor" + }, + { + "appid": 917810, + "normalized_name": "beast modon" + }, + { + "appid": 917820, + "normalized_name": "fairtravel battle ccg" + }, + { + "appid": 917830, + "normalized_name": "anima" + }, + { + "appid": 917840, + "normalized_name": "wintermoor tactics club" + }, + { + "appid": 917850, + "normalized_name": "elemental war a tower defense game" + }, + { + "appid": 917870, + "normalized_name": "gauge of rage" + }, + { + "appid": 917880, + "normalized_name": "misfit" + }, + { + "appid": 917900, + "normalized_name": "monster logic" + }, + { + "appid": 917910, + "normalized_name": "lucid path" + }, + { + "appid": 917920, + "normalized_name": "the other half" + }, + { + "appid": 917940, + "normalized_name": "lemuria" + }, + { + "appid": 917950, + "normalized_name": "vellum" + }, + { + "appid": 917990, + "normalized_name": "starboost ex" + }, + { + "appid": 918000, + "normalized_name": "tenminions" + }, + { + "appid": 918060, + "normalized_name": "obstruction vr" + }, + { + "appid": 918070, + "normalized_name": "jq beautiful japan" + }, + { + "appid": 918080, + "normalized_name": "evolo.evolution" + }, + { + "appid": 918100, + "normalized_name": "space cowboy" + }, + { + "appid": 918110, + "normalized_name": "animus stand alone" + }, + { + "appid": 918170, + "normalized_name": "curiosity" + }, + { + "appid": 918180, + "normalized_name": "test your knowledge cats" + }, + { + "appid": 918190, + "normalized_name": "zoroastra" + }, + { + "appid": 918200, + "normalized_name": "iron ascension" + }, + { + "appid": 918260, + "normalized_name": "pachansky mathematics 2+2=8" + }, + { + "appid": 918300, + "normalized_name": "tailzfromthegrave" + }, + { + "appid": 918320, + "normalized_name": "swords with spice" + }, + { + "appid": 918380, + "normalized_name": "choice of magics" + }, + { + "appid": 918430, + "normalized_name": "second second" + }, + { + "appid": 918440, + "normalized_name": "sheep sling" + }, + { + "appid": 918450, + "normalized_name": "dumb little creatures" + }, + { + "appid": 918480, + "normalized_name": "project gr 5lyr galactic relocation" + }, + { + "appid": 918500, + "normalized_name": "fish duel" + }, + { + "appid": 918520, + "normalized_name": "don't kill her" + }, + { + "appid": 918530, + "normalized_name": "the dark room" + }, + { + "appid": 918550, + "normalized_name": "from darkness" + }, + { + "appid": 918570, + "normalized_name": "century age of ashes" + }, + { + "appid": 918600, + "normalized_name": "when silence fell" + }, + { + "appid": 918610, + "normalized_name": "nearescape" + }, + { + "appid": 918620, + "normalized_name": "warships 3d" + }, + { + "appid": 918670, + "normalized_name": "jewel match twilight solitaire" + }, + { + "appid": 918680, + "normalized_name": "castle of venia" + }, + { + "appid": 918690, + "normalized_name": "survival ball" + }, + { + "appid": 918700, + "normalized_name": "star99" + }, + { + "appid": 918720, + "normalized_name": "help me escape! the puzzle maker's office" + }, + { + "appid": 918740, + "normalized_name": "flat trip" + }, + { + "appid": 918780, + "normalized_name": "sector sweep" + }, + { + "appid": 918820, + "normalized_name": "headliner novinews" + }, + { + "appid": 918850, + "normalized_name": "spite" + }, + { + "appid": 918900, + "normalized_name": "girls dance vr" + }, + { + "appid": 918950, + "normalized_name": "warborn" + }, + { + "appid": 918980, + "normalized_name": "soul rebellion" + }, + { + "appid": 918990, + "normalized_name": "gladio" + }, + { + "appid": 919010, + "normalized_name": "revn" + }, + { + "appid": 919040, + "normalized_name": "skywriter" + }, + { + "appid": 919150, + "normalized_name": "a sun of salt" + }, + { + "appid": 919160, + "normalized_name": "submerged vr escape the room" + }, + { + "appid": 919170, + "normalized_name": "dude cops" + }, + { + "appid": 919190, + "normalized_name": "cube full of mines" + }, + { + "appid": 919200, + "normalized_name": "special warfare 特战之王" + }, + { + "appid": 919220, + "normalized_name": "destiny or fate" + }, + { + "appid": 919240, + "normalized_name": "happyblock" + }, + { + "appid": 919250, + "normalized_name": "法师航行" + }, + { + "appid": 919260, + "normalized_name": "final upgrade" + }, + { + "appid": 919290, + "normalized_name": "nebula realms" + }, + { + "appid": 919320, + "normalized_name": "touch down football solitaire" + }, + { + "appid": 919330, + "normalized_name": "ghost in the pool" + }, + { + "appid": 919360, + "normalized_name": "alaloth champions of the four kingdoms" + }, + { + "appid": 919370, + "normalized_name": "overdungeon" + }, + { + "appid": 919400, + "normalized_name": "motion" + }, + { + "appid": 919410, + "normalized_name": "felix the reaper" + }, + { + "appid": 919440, + "normalized_name": "闇行者 dark xingzer" + }, + { + "appid": 919610, + "normalized_name": "the ball encounter" + }, + { + "appid": 919640, + "normalized_name": "steel division 2" + }, + { + "appid": 919690, + "normalized_name": "click and manage tycoon" + }, + { + "appid": 919730, + "normalized_name": "project z" + }, + { + "appid": 919890, + "normalized_name": "navyblue and the spectrum killers" + }, + { + "appid": 920190, + "normalized_name": "greetings" + }, + { + "appid": 920200, + "normalized_name": "artificial mansion" + }, + { + "appid": 920210, + "normalized_name": "lego star wars the skywalker saga" + }, + { + "appid": 920280, + "normalized_name": "monster pub" + }, + { + "appid": 920320, + "normalized_name": "virgo versus the zodiac" + }, + { + "appid": 920450, + "normalized_name": "escape the labyrinth" + }, + { + "appid": 920460, + "normalized_name": "hentai space" + }, + { + "appid": 920500, + "normalized_name": "construction charlie" + }, + { + "appid": 920510, + "normalized_name": "leisure town" + }, + { + "appid": 920520, + "normalized_name": "sexy jigsaw | 性感拼图 | 섹시 퍼즐 | セクシーなパズル" + }, + { + "appid": 920580, + "normalized_name": "tanks with hands armed and treaded" + }, + { + "appid": 920620, + "normalized_name": "ghosting gun s" + }, + { + "appid": 920640, + "normalized_name": "emitters drone invasions" + }, + { + "appid": 920680, + "normalized_name": "fate hunters" + }, + { + "appid": 920710, + "normalized_name": "burndown" + }, + { + "appid": 920720, + "normalized_name": "last oasis dedicated server" + }, + { + "appid": 920770, + "normalized_name": "santa's story of christmas" + }, + { + "appid": 920780, + "normalized_name": "safe" + }, + { + "appid": 920800, + "normalized_name": "lab.gen." + }, + { + "appid": 920820, + "normalized_name": "skater cally" + }, + { + "appid": 921050, + "normalized_name": "jar battlers" + }, + { + "appid": 921070, + "normalized_name": "spellwake" + }, + { + "appid": 921090, + "normalized_name": "where humans shouldn't go" + }, + { + "appid": 921390, + "normalized_name": "武林志(wushu chronicles)" + }, + { + "appid": 921420, + "normalized_name": "kingpin royale" + }, + { + "appid": 921430, + "normalized_name": "genius! nazi girl goeppels chan ep1" + }, + { + "appid": 921450, + "normalized_name": "king randall's party" + }, + { + "appid": 921500, + "normalized_name": "jack is missing" + }, + { + "appid": 921520, + "normalized_name": "puppy chef academy" + }, + { + "appid": 921530, + "normalized_name": "demon king domination deluxe" + }, + { + "appid": 921570, + "normalized_name": "octopath traveler" + }, + { + "appid": 921590, + "normalized_name": "dissidia final fantasy nt free" + }, + { + "appid": 921660, + "normalized_name": "quirky crystal rpg" + }, + { + "appid": 921670, + "normalized_name": "william and the lands of rage" + }, + { + "appid": 921690, + "normalized_name": "o2jam x dancingparty" + }, + { + "appid": 921700, + "normalized_name": "crashphalt" + }, + { + "appid": 921710, + "normalized_name": "galaxy squad" + }, + { + "appid": 921720, + "normalized_name": "frog out!" + }, + { + "appid": 921730, + "normalized_name": "abberbury" + }, + { + "appid": 921740, + "normalized_name": "shahrzad the storyteller" + }, + { + "appid": 921760, + "normalized_name": "sikanda" + }, + { + "appid": 921770, + "normalized_name": "hanz!" + }, + { + "appid": 921780, + "normalized_name": "the dark occult" + }, + { + "appid": 921790, + "normalized_name": "shooting champion vr" + }, + { + "appid": 921800, + "normalized_name": "encased a sci fi post apocalyptic rpg" + }, + { + "appid": 921840, + "normalized_name": "sabreurs a noble duel" + }, + { + "appid": 921850, + "normalized_name": "jar sam" + }, + { + "appid": 921890, + "normalized_name": "retro rockets" + }, + { + "appid": 921900, + "normalized_name": "my burning heart" + }, + { + "appid": 921960, + "normalized_name": "koliseum soccer vr" + }, + { + "appid": 921970, + "normalized_name": "liberty prime" + }, + { + "appid": 922020, + "normalized_name": "beyond the veil" + }, + { + "appid": 922040, + "normalized_name": "hamsterdam" + }, + { + "appid": 922050, + "normalized_name": "doomblade" + }, + { + "appid": 922060, + "normalized_name": "ball run and rush" + }, + { + "appid": 922090, + "normalized_name": "cmd 2048" + }, + { + "appid": 922100, + "normalized_name": "nauticrawl" + }, + { + "appid": 922130, + "normalized_name": "land of puzzles knights" + }, + { + "appid": 922140, + "normalized_name": "oh you touch my balls ( ͡° ͜ʖ ͡°)" + }, + { + "appid": 922150, + "normalized_name": "ink plane" + }, + { + "appid": 922170, + "normalized_name": "the true slime king" + }, + { + "appid": 922220, + "normalized_name": "khospis" + }, + { + "appid": 922290, + "normalized_name": "flappy flappy vr" + }, + { + "appid": 922320, + "normalized_name": "sniper 3d assassin free to play" + }, + { + "appid": 922400, + "normalized_name": "dx ball 2 20th anniversary" + }, + { + "appid": 922410, + "normalized_name": "dinoknights" + }, + { + "appid": 922450, + "normalized_name": "4x galaxy 无主之地:银河" + }, + { + "appid": 922460, + "normalized_name": "cheeky chooks" + }, + { + "appid": 922470, + "normalized_name": "space mayhem" + }, + { + "appid": 922480, + "normalized_name": "auto battle royale" + }, + { + "appid": 922490, + "normalized_name": "max mustard" + }, + { + "appid": 922500, + "normalized_name": "kill la kill if" + }, + { + "appid": 922510, + "normalized_name": "jellyfish the ghost" + }, + { + "appid": 922520, + "normalized_name": "blood city" + }, + { + "appid": 922530, + "normalized_name": "bestiary of sigillum" + }, + { + "appid": 922550, + "normalized_name": "keyg the last prison" + }, + { + "appid": 922590, + "normalized_name": "enter the moon" + }, + { + "appid": 922610, + "normalized_name": "bipgolf" + }, + { + "appid": 922620, + "normalized_name": "kingshunt" + }, + { + "appid": 922630, + "normalized_name": "mortal royale" + }, + { + "appid": 922640, + "normalized_name": "defense corp earth" + }, + { + "appid": 922650, + "normalized_name": "caveman chuck" + }, + { + "appid": 922690, + "normalized_name": "the pub simulator" + }, + { + "appid": 922700, + "normalized_name": "hidden animals photo hunt. seek and find objects game" + }, + { + "appid": 922710, + "normalized_name": "knightin'+" + }, + { + "appid": 922800, + "normalized_name": "girlfriend experience vr" + }, + { + "appid": 922810, + "normalized_name": "meatpossible chapter 1.5" + }, + { + "appid": 922820, + "normalized_name": "lotus bloom" + }, + { + "appid": 922870, + "normalized_name": "final hope" + }, + { + "appid": 922880, + "normalized_name": "siberian dawn" + }, + { + "appid": 922920, + "normalized_name": "knights of tartarus" + }, + { + "appid": 923000, + "normalized_name": "drawgaem" + }, + { + "appid": 923010, + "normalized_name": "egg hunt" + }, + { + "appid": 923020, + "normalized_name": "veilslash" + }, + { + "appid": 923030, + "normalized_name": "rocket swords" + }, + { + "appid": 923050, + "normalized_name": "don't touch me zombie survival" + }, + { + "appid": 923080, + "normalized_name": "angel and devil ninja sushi tempura panda and the statue of liberty" + }, + { + "appid": 923100, + "normalized_name": "moduwar" + }, + { + "appid": 923110, + "normalized_name": "afterdays" + }, + { + "appid": 923120, + "normalized_name": "food bomber" + }, + { + "appid": 923130, + "normalized_name": "plunder squad" + }, + { + "appid": 923140, + "normalized_name": "elven magic" + }, + { + "appid": 923230, + "normalized_name": "dreamback vr" + }, + { + "appid": 923240, + "normalized_name": "the warrior of treasures 2 skull hunter" + }, + { + "appid": 923260, + "normalized_name": "golf peaks" + }, + { + "appid": 923340, + "normalized_name": "space adventure td" + }, + { + "appid": 923350, + "normalized_name": "sakura day mahjong" + }, + { + "appid": 923360, + "normalized_name": "bombjour" + }, + { + "appid": 923370, + "normalized_name": "cat warfare" + }, + { + "appid": 923390, + "normalized_name": "shoot no shoot" + }, + { + "appid": 923400, + "normalized_name": "苍夜" + }, + { + "appid": 923420, + "normalized_name": "farstorm" + }, + { + "appid": 923430, + "normalized_name": "the pit" + }, + { + "appid": 923460, + "normalized_name": "biodigital" + }, + { + "appid": 923470, + "normalized_name": "momo.exe" + }, + { + "appid": 923480, + "normalized_name": "strategist" + }, + { + "appid": 923500, + "normalized_name": "metanormal" + }, + { + "appid": 923510, + "normalized_name": "cedar junction" + }, + { + "appid": 923530, + "normalized_name": "rip" + }, + { + "appid": 923540, + "normalized_name": "pandas die" + }, + { + "appid": 923550, + "normalized_name": "rescale" + }, + { + "appid": 923570, + "normalized_name": "eternal radiance" + }, + { + "appid": 923590, + "normalized_name": "forebearers" + }, + { + "appid": 923630, + "normalized_name": "burger lord" + }, + { + "appid": 923670, + "normalized_name": "super shopper" + }, + { + "appid": 923690, + "normalized_name": "hacker.exe" + }, + { + "appid": 923710, + "normalized_name": "ufactory" + }, + { + "appid": 923730, + "normalized_name": "monster mix" + }, + { + "appid": 923750, + "normalized_name": "industrial infection!" + }, + { + "appid": 923760, + "normalized_name": "chi busters" + }, + { + "appid": 923780, + "normalized_name": "project cybertronic" + }, + { + "appid": 923790, + "normalized_name": "battle royale survival" + }, + { + "appid": 923810, + "normalized_name": "if my heart had wings flight diary" + }, + { + "appid": 923830, + "normalized_name": "waifu wars online" + }, + { + "appid": 923840, + "normalized_name": "侠隐行录:困境疑云wuxia archive crisis escape" + }, + { + "appid": 923880, + "normalized_name": "educator 2076 basics in education" + }, + { + "appid": 923890, + "normalized_name": "yet another tower defence" + }, + { + "appid": 923900, + "normalized_name": "lightning angel litona liliche 섬광천사 리토나 리리셰" + }, + { + "appid": 923910, + "normalized_name": "eve of souls static pod" + }, + { + "appid": 923970, + "normalized_name": "space company simulator" + }, + { + "appid": 924020, + "normalized_name": "spellrune realm of portals" + }, + { + "appid": 924070, + "normalized_name": "arboria" + }, + { + "appid": 924090, + "normalized_name": "trip in hell" + }, + { + "appid": 924100, + "normalized_name": "helheim" + }, + { + "appid": 924120, + "normalized_name": "summerford" + }, + { + "appid": 924130, + "normalized_name": "slime san creator" + }, + { + "appid": 924140, + "normalized_name": "hand simulator survival" + }, + { + "appid": 924200, + "normalized_name": "we are showtime!" + }, + { + "appid": 924250, + "normalized_name": "proze enlightenment" + }, + { + "appid": 924280, + "normalized_name": "bingobango" + }, + { + "appid": 924310, + "normalized_name": "video game" + }, + { + "appid": 924360, + "normalized_name": "zenith hunter" + }, + { + "appid": 924370, + "normalized_name": "kontrakt" + }, + { + "appid": 924380, + "normalized_name": "woodzone" + }, + { + "appid": 924390, + "normalized_name": "ozapell mystery text adventure" + }, + { + "appid": 924420, + "normalized_name": "here to there" + }, + { + "appid": 924430, + "normalized_name": "squid vs vexus" + }, + { + "appid": 924460, + "normalized_name": "vinylove" + }, + { + "appid": 924500, + "normalized_name": "街头英雄 street heroes" + }, + { + "appid": 924520, + "normalized_name": "sunny shine funland!" + }, + { + "appid": 924530, + "normalized_name": "one last try" + }, + { + "appid": 924650, + "normalized_name": "秘封ナイトメアダイアリー ~ violet detector." + }, + { + "appid": 924740, + "normalized_name": "beyond senses" + }, + { + "appid": 924750, + "normalized_name": "harold halibut" + }, + { + "appid": 924780, + "normalized_name": "how to sing to open your heart" + }, + { + "appid": 924790, + "normalized_name": "island maze" + }, + { + "appid": 924800, + "normalized_name": "titanic shipwreck exploration" + }, + { + "appid": 924870, + "normalized_name": "warp tek" + }, + { + "appid": 924900, + "normalized_name": "one gun cat" + }, + { + "appid": 924940, + "normalized_name": "guard of wonderland" + }, + { + "appid": 924960, + "normalized_name": "conjure strike" + }, + { + "appid": 924970, + "normalized_name": "back 4 blood" + }, + { + "appid": 924980, + "normalized_name": "trials of mana" + }, + { + "appid": 925010, + "normalized_name": "ghostship chronicles" + }, + { + "appid": 925040, + "normalized_name": "ero date" + }, + { + "appid": 925050, + "normalized_name": "crystal path" + }, + { + "appid": 925060, + "normalized_name": "fiber twig 2" + }, + { + "appid": 925070, + "normalized_name": "dark asylum mystery adventure" + }, + { + "appid": 925090, + "normalized_name": "sharknado vr eye of the storm" + }, + { + "appid": 925120, + "normalized_name": "天牢 tianlao sokoban" + }, + { + "appid": 925170, + "normalized_name": "dinotrek" + }, + { + "appid": 925280, + "normalized_name": "lot'zamonsters" + }, + { + "appid": 925290, + "normalized_name": "endless fighter" + }, + { + "appid": 925300, + "normalized_name": "ridiculous rugby" + }, + { + "appid": 925330, + "normalized_name": "chronophobia" + }, + { + "appid": 925340, + "normalized_name": "a winter's daydream" + }, + { + "appid": 925360, + "normalized_name": "ape hit" + }, + { + "appid": 925370, + "normalized_name": "wizard slime" + }, + { + "appid": 925440, + "normalized_name": "神社的百合香 ~ floral aroma in the shrine" + }, + { + "appid": 925460, + "normalized_name": "vectronom" + }, + { + "appid": 925470, + "normalized_name": "endless jade sea midori no umi" + }, + { + "appid": 925490, + "normalized_name": "test your knowledge dogs" + }, + { + "appid": 925500, + "normalized_name": "innkeep" + }, + { + "appid": 925520, + "normalized_name": "welcome to bummertown" + }, + { + "appid": 925540, + "normalized_name": "lifespan 5seconds" + }, + { + "appid": 925550, + "normalized_name": "cross racing championship extreme" + }, + { + "appid": 925560, + "normalized_name": "bot gaiden" + }, + { + "appid": 925570, + "normalized_name": "the uncertain light at the end" + }, + { + "appid": 925600, + "normalized_name": "afterlifes" + }, + { + "appid": 925640, + "normalized_name": "в поисках атлантиды" + }, + { + "appid": 925670, + "normalized_name": "dungeon kitty" + }, + { + "appid": 925690, + "normalized_name": "witch the bloodlines" + }, + { + "appid": 925700, + "normalized_name": "evening star" + }, + { + "appid": 925810, + "normalized_name": "ican" + }, + { + "appid": 925900, + "normalized_name": "monica e a guarda dos coelhos" + }, + { + "appid": 925910, + "normalized_name": "mmmmmm... cake!" + }, + { + "appid": 925930, + "normalized_name": "myst iii exile" + }, + { + "appid": 925940, + "normalized_name": "myst iv revelation" + }, + { + "appid": 925950, + "normalized_name": "here comes niko!" + }, + { + "appid": 926010, + "normalized_name": "operation lone wolf" + }, + { + "appid": 926070, + "normalized_name": "fear for sale city of the past collector's" + }, + { + "appid": 926090, + "normalized_name": "reflections of life tree of dreams collector's" + }, + { + "appid": 926100, + "normalized_name": "mystery of the ancients curse of the black water collector's" + }, + { + "appid": 926110, + "normalized_name": "death and betrayal in romania a dana knightstone novel collector's" + }, + { + "appid": 926120, + "normalized_name": "mystery trackers black isle collector's" + }, + { + "appid": 926130, + "normalized_name": "living legends wrath of the beast collector's" + }, + { + "appid": 926140, + "normalized_name": "change a homeless survival experience" + }, + { + "appid": 926170, + "normalized_name": "achromatic" + }, + { + "appid": 926180, + "normalized_name": "bubsy paws on fire!" + }, + { + "appid": 926200, + "normalized_name": "sandtable engine" + }, + { + "appid": 926210, + "normalized_name": "incoming evil" + }, + { + "appid": 926240, + "normalized_name": "psyburst" + }, + { + "appid": 926250, + "normalized_name": "mirror angel's paradise" + }, + { + "appid": 926310, + "normalized_name": "咕啾!文鸟恋爱物语 love story of sparrow" + }, + { + "appid": 926330, + "normalized_name": "小西游记:石猴问世" + }, + { + "appid": 926340, + "normalized_name": "roman's christmas / 罗曼圣诞探案集" + }, + { + "appid": 926350, + "normalized_name": "alien field" + }, + { + "appid": 926370, + "normalized_name": "home security" + }, + { + "appid": 926390, + "normalized_name": "infected shelter" + }, + { + "appid": 926400, + "normalized_name": "scatteria post apocalyptic shooter" + }, + { + "appid": 926420, + "normalized_name": "model railway easily christmas" + }, + { + "appid": 926440, + "normalized_name": "the bloobles and the quest for chocolate" + }, + { + "appid": 926450, + "normalized_name": "thibalryn" + }, + { + "appid": 926470, + "normalized_name": "kolkhoz the red wedge" + }, + { + "appid": 926490, + "normalized_name": "the legend of vraz" + }, + { + "appid": 926520, + "normalized_name": "love letter" + }, + { + "appid": 926540, + "normalized_name": "prime & load 1776" + }, + { + "appid": 926580, + "normalized_name": "broken lines" + }, + { + "appid": 926600, + "normalized_name": "neon sword" + }, + { + "appid": 926610, + "normalized_name": "superior wizards" + }, + { + "appid": 926720, + "normalized_name": "kyiv from dusk till dawn with lenovo explorer" + }, + { + "appid": 926810, + "normalized_name": "dark places" + }, + { + "appid": 926820, + "normalized_name": "eternal space battles" + }, + { + "appid": 926860, + "normalized_name": "bloody rally show" + }, + { + "appid": 926870, + "normalized_name": "twin synth" + }, + { + "appid": 926990, + "normalized_name": "wolfquest anniversary" + }, + { + "appid": 927050, + "normalized_name": "burning instinct" + }, + { + "appid": 927080, + "normalized_name": "space fox kimi" + }, + { + "appid": 927120, + "normalized_name": "quantum covenant" + }, + { + "appid": 927150, + "normalized_name": "普通家庭/ordinaryfamily" + }, + { + "appid": 927190, + "normalized_name": "doll of resurrection" + }, + { + "appid": 927250, + "normalized_name": "bladed fury" + }, + { + "appid": 927270, + "normalized_name": "accounting+" + }, + { + "appid": 927310, + "normalized_name": "巴伦西亚传说:索菲亚的重生 valencia saga sophia's rebirth" + }, + { + "appid": 927370, + "normalized_name": "doc god mode" + }, + { + "appid": 927380, + "normalized_name": "yakuza kiwami 2" + }, + { + "appid": 927580, + "normalized_name": "smoker the car game" + }, + { + "appid": 927670, + "normalized_name": "extreme painting puzzles" + }, + { + "appid": 927740, + "normalized_name": "cosmic crush" + }, + { + "appid": 927760, + "normalized_name": "psycho banger" + }, + { + "appid": 927840, + "normalized_name": "clinically dead" + }, + { + "appid": 927850, + "normalized_name": "corrupt" + }, + { + "appid": 927860, + "normalized_name": "project skylab 2" + }, + { + "appid": 927890, + "normalized_name": "hentai girl linda" + }, + { + "appid": 927930, + "normalized_name": "craken" + }, + { + "appid": 927970, + "normalized_name": "forzebreak" + }, + { + "appid": 927990, + "normalized_name": "a game about" + }, + { + "appid": 928000, + "normalized_name": "solace state emotional cyberpunk stories" + }, + { + "appid": 928070, + "normalized_name": "mård" + }, + { + "appid": 928130, + "normalized_name": "master of rogues the seven artifacts" + }, + { + "appid": 928140, + "normalized_name": "puzzles for smart dogs" + }, + { + "appid": 928160, + "normalized_name": "prototype td" + }, + { + "appid": 928180, + "normalized_name": "shop manager video game tycoon" + }, + { + "appid": 928210, + "normalized_name": "snake vr" + }, + { + "appid": 928230, + "normalized_name": "defender 3d" + }, + { + "appid": 928300, + "normalized_name": "visionarium" + }, + { + "appid": 928350, + "normalized_name": "steven the sperm" + }, + { + "appid": 928370, + "normalized_name": "axe throw vr" + }, + { + "appid": 928390, + "normalized_name": "r type dimensions ex" + }, + { + "appid": 928410, + "normalized_name": "zombies in the dark" + }, + { + "appid": 928440, + "normalized_name": "azure reflections" + }, + { + "appid": 928480, + "normalized_name": "darkness and flame the dark side collector's" + }, + { + "appid": 928520, + "normalized_name": "story of eve a hero's study" + }, + { + "appid": 928600, + "normalized_name": "f1 2019" + }, + { + "appid": 928610, + "normalized_name": "amaze abc" + }, + { + "appid": 928660, + "normalized_name": "count logica" + }, + { + "appid": 928670, + "normalized_name": "kids of hellas back to olympus" + }, + { + "appid": 928680, + "normalized_name": "chicken in the darkness" + }, + { + "appid": 928690, + "normalized_name": "覇県を握れ ~47都道府県大戦~" + }, + { + "appid": 928830, + "normalized_name": "choice of broadsides hms foraker" + }, + { + "appid": 928840, + "normalized_name": "cybarian the time travelling warrior" + }, + { + "appid": 928880, + "normalized_name": "flywings 2018 flight simulator" + }, + { + "appid": 928890, + "normalized_name": "pixel knight" + }, + { + "appid": 928940, + "normalized_name": "pirate island rescue" + }, + { + "appid": 928950, + "normalized_name": "loek" + }, + { + "appid": 928960, + "normalized_name": "godfall" + }, + { + "appid": 928970, + "normalized_name": "lost frontier" + }, + { + "appid": 928990, + "normalized_name": "undungeon" + }, + { + "appid": 929010, + "normalized_name": "swag and sorcery" + }, + { + "appid": 929020, + "normalized_name": "nuclear powered toaster" + }, + { + "appid": 929030, + "normalized_name": "the twelve trials" + }, + { + "appid": 929060, + "normalized_name": "road to eden" + }, + { + "appid": 929120, + "normalized_name": "hop step sing! nozokanaide naked heart (hq edition)" + }, + { + "appid": 929140, + "normalized_name": "tank royale" + }, + { + "appid": 929150, + "normalized_name": "final islands" + }, + { + "appid": 929170, + "normalized_name": "innocent forest the bird of light" + }, + { + "appid": 929180, + "normalized_name": "innocent forest 2 the bed in the sky" + }, + { + "appid": 929200, + "normalized_name": "吞食孔明传 tunshi kongming legends" + }, + { + "appid": 929210, + "normalized_name": "crazydriving" + }, + { + "appid": 929230, + "normalized_name": "raptor cretaceous island" + }, + { + "appid": 929280, + "normalized_name": "tiska buska" + }, + { + "appid": 929290, + "normalized_name": "strip breaker hentai girls" + }, + { + "appid": 929300, + "normalized_name": "chroma sexy hentai girls" + }, + { + "appid": 929310, + "normalized_name": "kamasutra connect sexy hentai girls" + }, + { + "appid": 929320, + "normalized_name": "rhem ii se the cave" + }, + { + "appid": 929340, + "normalized_name": "spire of sorcery prologue" + }, + { + "appid": 929400, + "normalized_name": "mahjong magic journey 3" + }, + { + "appid": 929410, + "normalized_name": "christmas mahjong 2" + }, + { + "appid": 929420, + "normalized_name": "sakura day 2 mahjong" + }, + { + "appid": 929430, + "normalized_name": "mahjong magic journey 2" + }, + { + "appid": 929440, + "normalized_name": "christmas mahjong" + }, + { + "appid": 929450, + "normalized_name": "sky brawl" + }, + { + "appid": 929460, + "normalized_name": "money master" + }, + { + "appid": 929470, + "normalized_name": "mahjong valentine's day" + }, + { + "appid": 929490, + "normalized_name": "ram pressure" + }, + { + "appid": 929510, + "normalized_name": "type fighter" + }, + { + "appid": 929530, + "normalized_name": "glassteroids" + }, + { + "appid": 929540, + "normalized_name": "cube paste" + }, + { + "appid": 929570, + "normalized_name": "a familiar fairytale dyslexic text based adventure" + }, + { + "appid": 929600, + "normalized_name": "can you find it?" + }, + { + "appid": 929610, + "normalized_name": "dark nebula vr" + }, + { + "appid": 929630, + "normalized_name": "luna sky rdx" + }, + { + "appid": 929640, + "normalized_name": "farragnarok" + }, + { + "appid": 929670, + "normalized_name": "orion sandbox enhanced" + }, + { + "appid": 929740, + "normalized_name": "aeronaut" + }, + { + "appid": 929800, + "normalized_name": "bikini heaven" + }, + { + "appid": 929850, + "normalized_name": "diamond caves" + }, + { + "appid": 929910, + "normalized_name": "riftwalker" + }, + { + "appid": 930030, + "normalized_name": "cyber watch" + }, + { + "appid": 930110, + "normalized_name": "sufoco" + }, + { + "appid": 930150, + "normalized_name": "happyfishing" + }, + { + "appid": 930210, + "normalized_name": "huniepop 2 double date" + }, + { + "appid": 930220, + "normalized_name": "yucatan" + }, + { + "appid": 930280, + "normalized_name": "murder mystery machine" + }, + { + "appid": 930290, + "normalized_name": "duck's inferno" + }, + { + "appid": 930300, + "normalized_name": "desolate sands" + }, + { + "appid": 930310, + "normalized_name": "puzzle plunder" + }, + { + "appid": 930320, + "normalized_name": "oops!!! i slept with your mom" + }, + { + "appid": 930360, + "normalized_name": "engram" + }, + { + "appid": 930410, + "normalized_name": "memoria" + }, + { + "appid": 930430, + "normalized_name": "core rescue" + }, + { + "appid": 930470, + "normalized_name": "crimson souls" + }, + { + "appid": 930480, + "normalized_name": "mushroom rain" + }, + { + "appid": 930500, + "normalized_name": "you are here" + }, + { + "appid": 930600, + "normalized_name": "chessboard kingdoms" + }, + { + "appid": 930620, + "normalized_name": "music killer" + }, + { + "appid": 930630, + "normalized_name": "the lost legends of redwall escape the gloomer" + }, + { + "appid": 930640, + "normalized_name": "code brown a game about pooping" + }, + { + "appid": 930650, + "normalized_name": "parkour polygon" + }, + { + "appid": 930690, + "normalized_name": "arcane trials" + }, + { + "appid": 930710, + "normalized_name": "main character simulator" + }, + { + "appid": 930730, + "normalized_name": "getaway grand prix" + }, + { + "appid": 930780, + "normalized_name": "blood card" + }, + { + "appid": 930840, + "normalized_name": "东方百问~touhouasked" + }, + { + "appid": 930850, + "normalized_name": "tale of the fragmented star single fragment version / 星の欠片の物語、ひとかけら版" + }, + { + "appid": 930860, + "normalized_name": "the party of demons" + }, + { + "appid": 930880, + "normalized_name": "this is torture together" + }, + { + "appid": 930910, + "normalized_name": "steins;gate linear bounded phenogram" + }, + { + "appid": 930970, + "normalized_name": "angry ball vr" + }, + { + "appid": 931000, + "normalized_name": "uruz \"return of the er kishi\"" + }, + { + "appid": 931040, + "normalized_name": "breakhack" + }, + { + "appid": 931060, + "normalized_name": "tormentum ii" + }, + { + "appid": 931090, + "normalized_name": "slither link" + }, + { + "appid": 931120, + "normalized_name": "pixel maze" + }, + { + "appid": 931140, + "normalized_name": "epic game theory" + }, + { + "appid": 931150, + "normalized_name": "rento fortune vr" + }, + { + "appid": 931200, + "normalized_name": "rebound vr" + }, + { + "appid": 931210, + "normalized_name": "tabletop basketball vr" + }, + { + "appid": 931220, + "normalized_name": "beat" + }, + { + "appid": 931250, + "normalized_name": "pixel royale" + }, + { + "appid": 931260, + "normalized_name": "multibombers" + }, + { + "appid": 931270, + "normalized_name": "microtown" + }, + { + "appid": 931280, + "normalized_name": "iron marines" + }, + { + "appid": 931310, + "normalized_name": "airplane mode" + }, + { + "appid": 931360, + "normalized_name": "land of puzzles battles" + }, + { + "appid": 931430, + "normalized_name": "land of an endless journey" + }, + { + "appid": 931450, + "normalized_name": "solar purge" + }, + { + "appid": 931470, + "normalized_name": "夏荷 | summer lotus" + }, + { + "appid": 931480, + "normalized_name": "lab runner x" + }, + { + "appid": 931500, + "normalized_name": "touhou genso wanderer reloaded / 不可思议的幻想乡tod reloaded / 不思議の幻想郷tod reloaded" + }, + { + "appid": 931540, + "normalized_name": "revelationtrestan 尸忆岛" + }, + { + "appid": 931560, + "normalized_name": "seven days" + }, + { + "appid": 931570, + "normalized_name": "the twiggles vr" + }, + { + "appid": 931590, + "normalized_name": "crystal war" + }, + { + "appid": 931610, + "normalized_name": "arcane legacy" + }, + { + "appid": 931620, + "normalized_name": "kai entity" + }, + { + "appid": 931650, + "normalized_name": "braveland heroes" + }, + { + "appid": 931680, + "normalized_name": "super hyperspace avenger" + }, + { + "appid": 931690, + "normalized_name": "himno" + }, + { + "appid": 931700, + "normalized_name": "shooting hurts" + }, + { + "appid": 931760, + "normalized_name": "ballz royale" + }, + { + "appid": 931780, + "normalized_name": "to catch a monkey" + }, + { + "appid": 931810, + "normalized_name": "attack on i ching 进击的易经" + }, + { + "appid": 931820, + "normalized_name": "space pirate amai" + }, + { + "appid": 931830, + "normalized_name": "morphe" + }, + { + "appid": 931840, + "normalized_name": "bunny count" + }, + { + "appid": 931860, + "normalized_name": "sydney hunter and the curse of the mayan" + }, + { + "appid": 931870, + "normalized_name": "怪奇幻想夢物語 怪獣綺譚 朧十夜" + }, + { + "appid": 931880, + "normalized_name": "tekling 2" + }, + { + "appid": 931930, + "normalized_name": "the haunted graveyard" + }, + { + "appid": 931940, + "normalized_name": "junkyard wizard" + }, + { + "appid": 931950, + "normalized_name": "labyrinth the war on terror" + }, + { + "appid": 932050, + "normalized_name": "希望之星" + }, + { + "appid": 932070, + "normalized_name": "七夜怪谈 都市校园禁锢传说" + }, + { + "appid": 932090, + "normalized_name": "triwave" + }, + { + "appid": 932120, + "normalized_name": "tal arctic 3" + }, + { + "appid": 932150, + "normalized_name": "wwtf" + }, + { + "appid": 932160, + "normalized_name": "late at night" + }, + { + "appid": 932170, + "normalized_name": "who wants to destroy an alien" + }, + { + "appid": 932190, + "normalized_name": "aliens attack vr" + }, + { + "appid": 932210, + "normalized_name": "nexoria dungeon rogue heroes" + }, + { + "appid": 932220, + "normalized_name": "immure" + }, + { + "appid": 932240, + "normalized_name": "pushing through..." + }, + { + "appid": 932270, + "normalized_name": "july the lost child" + }, + { + "appid": 932290, + "normalized_name": "mochi mochi boy" + }, + { + "appid": 932300, + "normalized_name": "taco truck madness" + }, + { + "appid": 932310, + "normalized_name": "hentball" + }, + { + "appid": 932330, + "normalized_name": "alchemia" + }, + { + "appid": 932350, + "normalized_name": "intelligence dogs" + }, + { + "appid": 932370, + "normalized_name": "bearable nightmares" + }, + { + "appid": 932420, + "normalized_name": "russpuppy kid games" + }, + { + "appid": 932450, + "normalized_name": "blade of acrimony" + }, + { + "appid": 932500, + "normalized_name": "damned daniel" + }, + { + "appid": 932530, + "normalized_name": "skull's impossible quest" + }, + { + "appid": 932560, + "normalized_name": "battle of britain" + }, + { + "appid": 932570, + "normalized_name": "阿比斯的宝藏 treasure of abyss" + }, + { + "appid": 932670, + "normalized_name": "professor watts memory match expressions" + }, + { + "appid": 932730, + "normalized_name": "formula xd" + }, + { + "appid": 932790, + "normalized_name": "ascent crash landing" + }, + { + "appid": 932800, + "normalized_name": "letzte worte vr" + }, + { + "appid": 932810, + "normalized_name": "battlecry world at war" + }, + { + "appid": 932820, + "normalized_name": "the great voyage visual novel" + }, + { + "appid": 932850, + "normalized_name": "simmiland" + }, + { + "appid": 932870, + "normalized_name": "the mark of robot" + }, + { + "appid": 932920, + "normalized_name": "riff vr for arcades" + }, + { + "appid": 932930, + "normalized_name": "sexy girls puzzle" + }, + { + "appid": 932940, + "normalized_name": "archery" + }, + { + "appid": 932950, + "normalized_name": "zombiotik" + }, + { + "appid": 932970, + "normalized_name": "shopping clutter 2 christmas square" + }, + { + "appid": 932980, + "normalized_name": "axis football 2018" + }, + { + "appid": 933000, + "normalized_name": "toy war the beginning" + }, + { + "appid": 933030, + "normalized_name": "heavy recoil" + }, + { + "appid": 933060, + "normalized_name": "hentai weed puzzles" + }, + { + "appid": 933080, + "normalized_name": "fire place" + }, + { + "appid": 933110, + "normalized_name": "age of empires iii" + }, + { + "appid": 933140, + "normalized_name": "drunkn bar fight on halloween" + }, + { + "appid": 933160, + "normalized_name": "space cows" + }, + { + "appid": 933200, + "normalized_name": "ant empire" + }, + { + "appid": 933210, + "normalized_name": "heart chain kitty" + }, + { + "appid": 933230, + "normalized_name": "signed and sealed with a kiss" + }, + { + "appid": 933250, + "normalized_name": "shining orb prequel" + }, + { + "appid": 933290, + "normalized_name": "pixelrpg" + }, + { + "appid": 933300, + "normalized_name": "御俠客 wuxia master" + }, + { + "appid": 933360, + "normalized_name": "mathel idle" + }, + { + "appid": 933380, + "normalized_name": "tennis story" + }, + { + "appid": 933390, + "normalized_name": "mythical" + }, + { + "appid": 933430, + "normalized_name": "sword of rapier" + }, + { + "appid": 933440, + "normalized_name": "cosmos defense" + }, + { + "appid": 933450, + "normalized_name": "wenjia" + }, + { + "appid": 933540, + "normalized_name": "idle space raider" + }, + { + "appid": 933590, + "normalized_name": "legends of koyannis" + }, + { + "appid": 933660, + "normalized_name": "in memory" + }, + { + "appid": 933740, + "normalized_name": "shoottris beyond the classic game" + }, + { + "appid": 933770, + "normalized_name": "star sky 3" + }, + { + "appid": 933820, + "normalized_name": "endzone a world apart" + }, + { + "appid": 933830, + "normalized_name": "of ships & scoundrels" + }, + { + "appid": 933840, + "normalized_name": "world enduro rally" + }, + { + "appid": 933860, + "normalized_name": "discolored" + }, + { + "appid": 933900, + "normalized_name": "the amazonian dread" + }, + { + "appid": 933920, + "normalized_name": "girls vr uncensored!!!" + }, + { + "appid": 933930, + "normalized_name": "tiny love" + }, + { + "appid": 933940, + "normalized_name": "假如我是人工智能 big brother is shaping you" + }, + { + "appid": 933970, + "normalized_name": "brainfuck" + }, + { + "appid": 934060, + "normalized_name": "wish giver 偿愿人" + }, + { + "appid": 934070, + "normalized_name": "mochimochi" + }, + { + "appid": 934120, + "normalized_name": "monkeys & dragons" + }, + { + "appid": 934180, + "normalized_name": "trials of wilderness" + }, + { + "appid": 934220, + "normalized_name": "buy low sell high" + }, + { + "appid": 934250, + "normalized_name": "tactics rogue" + }, + { + "appid": 934260, + "normalized_name": "groundfall" + }, + { + "appid": 934410, + "normalized_name": "rethink 2" + }, + { + "appid": 934430, + "normalized_name": "神位纷争hd ~ ragnania hd" + }, + { + "appid": 934470, + "normalized_name": "a top down job blood gain" + }, + { + "appid": 934480, + "normalized_name": "falling plus" + }, + { + "appid": 934500, + "normalized_name": "stonedefence" + }, + { + "appid": 934510, + "normalized_name": "cubanoids" + }, + { + "appid": 934520, + "normalized_name": "raygun commando vr 2" + }, + { + "appid": 934540, + "normalized_name": "pleasure puzzle sexy girls 趣拼拼:性感少女" + }, + { + "appid": 934550, + "normalized_name": "duck hunting challenge" + }, + { + "appid": 934580, + "normalized_name": "hell wedding 夜嫁" + }, + { + "appid": 934590, + "normalized_name": "lamp man down" + }, + { + "appid": 934600, + "normalized_name": "mech rage" + }, + { + "appid": 934630, + "normalized_name": "rocky planet" + }, + { + "appid": 934670, + "normalized_name": "avernus" + }, + { + "appid": 934700, + "normalized_name": "dead island 2" + }, + { + "appid": 934780, + "normalized_name": "american fugitive" + }, + { + "appid": 934790, + "normalized_name": "monster safari" + }, + { + "appid": 934800, + "normalized_name": "little world of creatures" + }, + { + "appid": 934810, + "normalized_name": "酒店" + }, + { + "appid": 934830, + "normalized_name": "circuit slinger" + }, + { + "appid": 934840, + "normalized_name": "frostrunner" + }, + { + "appid": 934850, + "normalized_name": "cyberdrome" + }, + { + "appid": 934860, + "normalized_name": "la rana" + }, + { + "appid": 934920, + "normalized_name": "sparkchess" + }, + { + "appid": 934930, + "normalized_name": "rds the official drift videogame" + }, + { + "appid": 934950, + "normalized_name": "arté mecenas" + }, + { + "appid": 934990, + "normalized_name": "cute girls vr" + }, + { + "appid": 935020, + "normalized_name": "reapertom" + }, + { + "appid": 935070, + "normalized_name": "sakura mmo" + }, + { + "appid": 935110, + "normalized_name": "the desert's rose" + }, + { + "appid": 935140, + "normalized_name": "when the shutter stops" + }, + { + "appid": 935180, + "normalized_name": "puzzle monarch mummy" + }, + { + "appid": 935190, + "normalized_name": "bewitched game" + }, + { + "appid": 935240, + "normalized_name": "puzzle monarch forests" + }, + { + "appid": 935250, + "normalized_name": "necrolance" + }, + { + "appid": 935320, + "normalized_name": "get to a gun" + }, + { + "appid": 935340, + "normalized_name": "green dragon/グリーンドラゴン" + }, + { + "appid": 935350, + "normalized_name": "cat fu mi" + }, + { + "appid": 935360, + "normalized_name": "itazuravr" + }, + { + "appid": 935380, + "normalized_name": "the keepers of pages chevengur" + }, + { + "appid": 935400, + "normalized_name": "alchemy garden" + }, + { + "appid": 935490, + "normalized_name": "areaz" + }, + { + "appid": 935550, + "normalized_name": "super navecitas 2" + }, + { + "appid": 935560, + "normalized_name": "hentai strip shot" + }, + { + "appid": 935570, + "normalized_name": "ary and the secret of seasons" + }, + { + "appid": 935580, + "normalized_name": "true fear forsaken souls part 2" + }, + { + "appid": 935610, + "normalized_name": "eugenics" + }, + { + "appid": 935630, + "normalized_name": "dungellion" + }, + { + "appid": 935640, + "normalized_name": "pixelarium" + }, + { + "appid": 935660, + "normalized_name": "pixel robot hunter" + }, + { + "appid": 935680, + "normalized_name": "air attack 3.0 aerial firefighting game" + }, + { + "appid": 935700, + "normalized_name": "love hentai sexy body" + }, + { + "appid": 935720, + "normalized_name": "cinderella vr" + }, + { + "appid": 935750, + "normalized_name": "antiquitas" + }, + { + "appid": 935790, + "normalized_name": "angry troll simulator" + }, + { + "appid": 935840, + "normalized_name": "fantasy battles" + }, + { + "appid": 935860, + "normalized_name": "the young mathematician easy difficulty" + }, + { + "appid": 935880, + "normalized_name": "glass masquerade 2 illusions" + }, + { + "appid": 935910, + "normalized_name": "brrrainz feed your hunger" + }, + { + "appid": 935920, + "normalized_name": "fallstreak" + }, + { + "appid": 935930, + "normalized_name": "reignfall" + }, + { + "appid": 935940, + "normalized_name": "croquet pro 2" + }, + { + "appid": 935950, + "normalized_name": "croquet pro" + }, + { + "appid": 935960, + "normalized_name": "zuma legend vr" + }, + { + "appid": 935970, + "normalized_name": "游离大陆 uniland" + }, + { + "appid": 935980, + "normalized_name": "aeternitas" + }, + { + "appid": 936000, + "normalized_name": "a mars adventure redturtle" + }, + { + "appid": 936010, + "normalized_name": "feed the pets origins" + }, + { + "appid": 936020, + "normalized_name": "find differences" + }, + { + "appid": 936060, + "normalized_name": "海底寻宝" + }, + { + "appid": 936070, + "normalized_name": "apartment 327" + }, + { + "appid": 936140, + "normalized_name": "pro cycling manager 2019" + }, + { + "appid": 936150, + "normalized_name": "怪奇幻想夢物語 怪獣綺譚 桜蛇伝" + }, + { + "appid": 936160, + "normalized_name": "atelier rorona ~the alchemist of arland~ dx" + }, + { + "appid": 936170, + "normalized_name": "doodlevr" + }, + { + "appid": 936180, + "normalized_name": "atelier totori ~the adventurer of arland~ dx" + }, + { + "appid": 936190, + "normalized_name": "atelier meruru ~the apprentice of arland~ dx" + }, + { + "appid": 936210, + "normalized_name": "the prometheus secret noohra" + }, + { + "appid": 936270, + "normalized_name": "cave racer" + }, + { + "appid": 936470, + "normalized_name": "singularity shooter" + }, + { + "appid": 936490, + "normalized_name": "counter terrorist agency" + }, + { + "appid": 936500, + "normalized_name": "transport inc" + }, + { + "appid": 936510, + "normalized_name": "2nd circle powerful magic" + }, + { + "appid": 936530, + "normalized_name": "close combat last stand arnhem" + }, + { + "appid": 936580, + "normalized_name": "avoidon" + }, + { + "appid": 936590, + "normalized_name": "moons of ventocia" + }, + { + "appid": 936600, + "normalized_name": "shoot'n'scroll 3d" + }, + { + "appid": 936610, + "normalized_name": "of gods and men the daybreak empire" + }, + { + "appid": 936630, + "normalized_name": "garden variety body horror rare import" + }, + { + "appid": 936650, + "normalized_name": "space pilgrim academy year 3" + }, + { + "appid": 936700, + "normalized_name": "ms. squeaker's home for the sick" + }, + { + "appid": 936720, + "normalized_name": "wrench" + }, + { + "appid": 936740, + "normalized_name": "orogenesis" + }, + { + "appid": 936770, + "normalized_name": "dead by wheel battle royal" + }, + { + "appid": 936780, + "normalized_name": "warplanes ww2 dogfight" + }, + { + "appid": 936790, + "normalized_name": "life is strange true colors" + }, + { + "appid": 936800, + "normalized_name": "professor watts memory match cats" + }, + { + "appid": 936810, + "normalized_name": "professor watts memory match puppies" + }, + { + "appid": 936820, + "normalized_name": "j girl" + }, + { + "appid": 936870, + "normalized_name": "tale of legends 伝創記" + }, + { + "appid": 936890, + "normalized_name": "source beginning" + }, + { + "appid": 936900, + "normalized_name": "dragon puzzle" + }, + { + "appid": 936930, + "normalized_name": "oil baron" + }, + { + "appid": 936950, + "normalized_name": "br logic pack" + }, + { + "appid": 936960, + "normalized_name": "general practitioner" + }, + { + "appid": 936970, + "normalized_name": "candle under water" + }, + { + "appid": 936980, + "normalized_name": "naval battles simulator" + }, + { + "appid": 937020, + "normalized_name": "super gamebear with its three girlfriends超级神经熊 你想知道关于超级喜欢游戏的一头黑色矮小的游戏熊是如何与它的“三个后宫团女朋友”购买到gbc游戏机的吗?" + }, + { + "appid": 937040, + "normalized_name": "bezirk" + }, + { + "appid": 937050, + "normalized_name": "jackquest the tale of the sword" + }, + { + "appid": 937070, + "normalized_name": "a killer's sorrow" + }, + { + "appid": 937090, + "normalized_name": "stacksquatch" + }, + { + "appid": 937120, + "normalized_name": "slingshot explorer the twelve towers" + }, + { + "appid": 937130, + "normalized_name": "color guardian" + }, + { + "appid": 937140, + "normalized_name": "pixel girl 像素女孩" + }, + { + "appid": 937160, + "normalized_name": "bring it down!" + }, + { + "appid": 937170, + "normalized_name": "otaku's adventure" + }, + { + "appid": 937180, + "normalized_name": "impixable" + }, + { + "appid": 937230, + "normalized_name": "star thief" + }, + { + "appid": 937280, + "normalized_name": "genba no kizuna" + }, + { + "appid": 937300, + "normalized_name": "the long return" + }, + { + "appid": 937310, + "normalized_name": "infinitode 2 infinite tower defense" + }, + { + "appid": 937320, + "normalized_name": "jay walker" + }, + { + "appid": 937350, + "normalized_name": "food drive race against hunger" + }, + { + "appid": 937380, + "normalized_name": "ashen empires" + }, + { + "appid": 937390, + "normalized_name": "ah love!" + }, + { + "appid": 937420, + "normalized_name": "miner mike" + }, + { + "appid": 937450, + "normalized_name": "metropolisim" + }, + { + "appid": 937460, + "normalized_name": "survival hell" + }, + { + "appid": 937490, + "normalized_name": "neighbor" + }, + { + "appid": 937520, + "normalized_name": "critter kart" + }, + { + "appid": 937530, + "normalized_name": "dungeon crowley" + }, + { + "appid": 937570, + "normalized_name": "弾幕アマノジャク 〜 impossible spell card." + }, + { + "appid": 937580, + "normalized_name": "東方紺珠伝 ~ legacy of lunatic kingdom." + }, + { + "appid": 937620, + "normalized_name": "zack y" + }, + { + "appid": 937690, + "normalized_name": "冒险公会 adventurer guild" + }, + { + "appid": 937740, + "normalized_name": "anime babes solitaire" + }, + { + "appid": 937770, + "normalized_name": "blackhoops" + }, + { + "appid": 937780, + "normalized_name": "♞ the tactics of war ♞" + }, + { + "appid": 937820, + "normalized_name": "shadow play" + }, + { + "appid": 937850, + "normalized_name": "hidden paws mystery" + }, + { + "appid": 937860, + "normalized_name": "bigger guns" + }, + { + "appid": 937870, + "normalized_name": "mist hunter" + }, + { + "appid": 937910, + "normalized_name": "vulcan sacrifice" + }, + { + "appid": 937930, + "normalized_name": "elle" + }, + { + "appid": 937940, + "normalized_name": "sea dogs city of abandoned ships" + }, + { + "appid": 937950, + "normalized_name": "not in heaven" + }, + { + "appid": 937960, + "normalized_name": "classified stories the tome of myrkah" + }, + { + "appid": 937970, + "normalized_name": "running girl" + }, + { + "appid": 937980, + "normalized_name": "jellyfish season" + }, + { + "appid": 938000, + "normalized_name": "land of puzzles elven princess" + }, + { + "appid": 938020, + "normalized_name": "the kingdom of galanor" + }, + { + "appid": 938040, + "normalized_name": "stackems" + }, + { + "appid": 938050, + "normalized_name": "the anomaly" + }, + { + "appid": 938070, + "normalized_name": "logistical 2 belgium" + }, + { + "appid": 938100, + "normalized_name": "sacred earth promise" + }, + { + "appid": 938170, + "normalized_name": "colette's sugar madness" + }, + { + "appid": 938200, + "normalized_name": "metric racer" + }, + { + "appid": 938220, + "normalized_name": "tapsonic bold" + }, + { + "appid": 938240, + "normalized_name": "cthulhu mythos rpg the sleeping girl of the miasma sea" + }, + { + "appid": 938250, + "normalized_name": "hentai the shell game" + }, + { + "appid": 938260, + "normalized_name": "to burn in memory (anniversary edition)" + }, + { + "appid": 938270, + "normalized_name": "lovekami healing harem" + }, + { + "appid": 938280, + "normalized_name": "roll!" + }, + { + "appid": 938300, + "normalized_name": "cuberpunk 2089" + }, + { + "appid": 938310, + "normalized_name": "12 labours of hercules viii how i met megara" + }, + { + "appid": 938320, + "normalized_name": "nibû" + }, + { + "appid": 938340, + "normalized_name": "the necklace of blood part ii" + }, + { + "appid": 938350, + "normalized_name": "divine business fantasy trading simulator" + }, + { + "appid": 938360, + "normalized_name": "the last soldier" + }, + { + "appid": 938380, + "normalized_name": "townsmen a kingdom rebuilt" + }, + { + "appid": 938390, + "normalized_name": "my riding stables your horse breeding" + }, + { + "appid": 938480, + "normalized_name": "the savior's gang" + }, + { + "appid": 938510, + "normalized_name": "poly and the marble maze" + }, + { + "appid": 938520, + "normalized_name": "twenty one" + }, + { + "appid": 938560, + "normalized_name": "inmost" + }, + { + "appid": 938600, + "normalized_name": "drift stunt racing 2019" + }, + { + "appid": 938630, + "normalized_name": "jewel tree" + }, + { + "appid": 938640, + "normalized_name": "stalingrad abatis" + }, + { + "appid": 938660, + "normalized_name": "achtung die kugel!" + }, + { + "appid": 938680, + "normalized_name": "pixels guide to staying dead" + }, + { + "appid": 938710, + "normalized_name": "skyraid" + }, + { + "appid": 938740, + "normalized_name": "museum volume i" + }, + { + "appid": 938810, + "normalized_name": "雨鸦 you are my sanctuary" + }, + { + "appid": 938820, + "normalized_name": "puzzle monarch egypt" + }, + { + "appid": 938840, + "normalized_name": "puzzle monarch nile river" + }, + { + "appid": 938860, + "normalized_name": "get in the car loser!" + }, + { + "appid": 938870, + "normalized_name": "chronon" + }, + { + "appid": 938940, + "normalized_name": "天风之光~ touhou fan of destiny" + }, + { + "appid": 938960, + "normalized_name": "soul ivy c0" + }, + { + "appid": 938980, + "normalized_name": "lantern bearer" + }, + { + "appid": 939000, + "normalized_name": "crisis vrigade" + }, + { + "appid": 939100, + "normalized_name": "darksburg" + }, + { + "appid": 939120, + "normalized_name": "grand guilds" + }, + { + "appid": 939150, + "normalized_name": "cube 332" + }, + { + "appid": 939200, + "normalized_name": "gold magic 800" + }, + { + "appid": 939210, + "normalized_name": "t3 take the turn" + }, + { + "appid": 939230, + "normalized_name": "bardo" + }, + { + "appid": 939240, + "normalized_name": "super commander xl" + }, + { + "appid": 939250, + "normalized_name": "dungeons and dinners" + }, + { + "appid": 939330, + "normalized_name": "tailor tales" + }, + { + "appid": 939350, + "normalized_name": "rugby champions" + }, + { + "appid": 939380, + "normalized_name": "fruit punch" + }, + { + "appid": 939390, + "normalized_name": "the life of one dog" + }, + { + "appid": 939400, + "normalized_name": "lovechoice 拣爱" + }, + { + "appid": 939410, + "normalized_name": "bloody mary forgotten curse" + }, + { + "appid": 939450, + "normalized_name": "forklift simulator 2019" + }, + { + "appid": 939470, + "normalized_name": "trip" + }, + { + "appid": 939510, + "normalized_name": "pandemic express zombie escape" + }, + { + "appid": 939520, + "normalized_name": "hellgate london" + }, + { + "appid": 939560, + "normalized_name": "monster trampoline" + }, + { + "appid": 939580, + "normalized_name": "ladies" + }, + { + "appid": 939600, + "normalized_name": "love³ love cube" + }, + { + "appid": 939610, + "normalized_name": "rectifying zion" + }, + { + "appid": 939620, + "normalized_name": "pleasure puzzle portrait 趣拼拼:肖像画" + }, + { + "appid": 939670, + "normalized_name": "empire of devil" + }, + { + "appid": 939700, + "normalized_name": "winning post 9" + }, + { + "appid": 939740, + "normalized_name": "qian shan village / 殭屍山莊" + }, + { + "appid": 939750, + "normalized_name": "秋叶|autumn leaves" + }, + { + "appid": 939790, + "normalized_name": "royal alchemist" + }, + { + "appid": 939810, + "normalized_name": "reflex aim trainer" + }, + { + "appid": 939850, + "normalized_name": "the dark pictures anthology man of medan" + }, + { + "appid": 939870, + "normalized_name": "blackberrynova" + }, + { + "appid": 939960, + "normalized_name": "far cry new dawn" + }, + { + "appid": 939970, + "normalized_name": "pixel puzzles aardman jigsaws" + }, + { + "appid": 939990, + "normalized_name": "boxing school" + }, + { + "appid": 940020, + "normalized_name": "survive together" + }, + { + "appid": 940140, + "normalized_name": "project aether first contact" + }, + { + "appid": 940180, + "normalized_name": "hailey" + }, + { + "appid": 940190, + "normalized_name": "chuckie egg 2017" + }, + { + "appid": 940240, + "normalized_name": "jake and the giant" + }, + { + "appid": 940280, + "normalized_name": "entity" + }, + { + "appid": 940300, + "normalized_name": "escape legacy ancient scrolls" + }, + { + "appid": 940310, + "normalized_name": "corpse party 2 dead patient" + }, + { + "appid": 940320, + "normalized_name": "combo jumper" + }, + { + "appid": 940330, + "normalized_name": "bblocks" + }, + { + "appid": 940350, + "normalized_name": "snakest" + }, + { + "appid": 940380, + "normalized_name": "ascend" + }, + { + "appid": 940520, + "normalized_name": "attractorache" + }, + { + "appid": 940580, + "normalized_name": "fia european truck racing championship" + }, + { + "appid": 940590, + "normalized_name": "double pug switch" + }, + { + "appid": 940600, + "normalized_name": "potion island" + }, + { + "appid": 940630, + "normalized_name": "hexen hegemony" + }, + { + "appid": 940640, + "normalized_name": "astronaut the moon eclipse" + }, + { + "appid": 940650, + "normalized_name": "our world is ended." + }, + { + "appid": 940680, + "normalized_name": "the textorcist the story of ray bibbia" + }, + { + "appid": 940700, + "normalized_name": "infinity disk" + }, + { + "appid": 940710, + "normalized_name": "colt canyon" + }, + { + "appid": 940780, + "normalized_name": "royal roads" + }, + { + "appid": 940790, + "normalized_name": "gnomes garden halloween" + }, + { + "appid": 940800, + "normalized_name": "gnomes garden christmas story" + }, + { + "appid": 940810, + "normalized_name": "lost artifacts time machine" + }, + { + "appid": 940850, + "normalized_name": "taptiles" + }, + { + "appid": 940870, + "normalized_name": "bloom" + }, + { + "appid": 940910, + "normalized_name": "minoria" + }, + { + "appid": 940980, + "normalized_name": "phantasmat the dread of oakville collector's" + }, + { + "appid": 940990, + "normalized_name": "grim facade the artist and the pretender collector's" + }, + { + "appid": 941000, + "normalized_name": "witches' legacy lair of the witch queen collector's" + }, + { + "appid": 941020, + "normalized_name": "bayani fighting game" + }, + { + "appid": 941030, + "normalized_name": "spirits of mystery chains of promise collector's" + }, + { + "appid": 941040, + "normalized_name": "dark romance the swan sonata collector's" + }, + { + "appid": 941050, + "normalized_name": "sable maze twelve fears collector's" + }, + { + "appid": 941120, + "normalized_name": "optimum link" + }, + { + "appid": 941130, + "normalized_name": "quantum gate" + }, + { + "appid": 941140, + "normalized_name": "maze slaughter" + }, + { + "appid": 941160, + "normalized_name": "slavicus" + }, + { + "appid": 941200, + "normalized_name": "red beard labyrinth" + }, + { + "appid": 941300, + "normalized_name": "东方梦零魂 touhou nil soul" + }, + { + "appid": 941310, + "normalized_name": "beatographer beatmap all music" + }, + { + "appid": 941320, + "normalized_name": "mariner accident" + }, + { + "appid": 941330, + "normalized_name": "the detective chulin" + }, + { + "appid": 941350, + "normalized_name": "connectome pain control" + }, + { + "appid": 941390, + "normalized_name": "washed up wizard" + }, + { + "appid": 941410, + "normalized_name": "touhou dreaming butterfly | 东方蝶梦志" + }, + { + "appid": 941460, + "normalized_name": "death trash" + }, + { + "appid": 941480, + "normalized_name": "giraffe town" + }, + { + "appid": 941530, + "normalized_name": "righteous mojo" + }, + { + "appid": 941540, + "normalized_name": "candice debébé's scandalous secrets" + }, + { + "appid": 941570, + "normalized_name": "relicta" + }, + { + "appid": 941580, + "normalized_name": "bad day betsy" + }, + { + "appid": 941600, + "normalized_name": "robobunnies in space!" + }, + { + "appid": 941620, + "normalized_name": "galactic tree frog" + }, + { + "appid": 941630, + "normalized_name": "little memories" + }, + { + "appid": 941640, + "normalized_name": "gundy" + }, + { + "appid": 941650, + "normalized_name": "the island into the mist" + }, + { + "appid": 941710, + "normalized_name": "no go" + }, + { + "appid": 941730, + "normalized_name": "firebase defence" + }, + { + "appid": 941790, + "normalized_name": "chocolate makes you happy halloween" + }, + { + "appid": 941800, + "normalized_name": "construct pro" + }, + { + "appid": 941850, + "normalized_name": "vanguard normandy 1944" + }, + { + "appid": 941890, + "normalized_name": "mini matches" + }, + { + "appid": 941920, + "normalized_name": "classic card games 3d" + }, + { + "appid": 941980, + "normalized_name": "the hot dog would explode" + }, + { + "appid": 942010, + "normalized_name": "the 3rd building 三教" + }, + { + "appid": 942020, + "normalized_name": "grimm & tonic aperitif" + }, + { + "appid": 942050, + "normalized_name": "2048" + }, + { + "appid": 942060, + "normalized_name": "jumpgrid" + }, + { + "appid": 942140, + "normalized_name": "fap queen" + }, + { + "appid": 942200, + "normalized_name": "rocket boots mania" + }, + { + "appid": 942220, + "normalized_name": "ambulance simulator" + }, + { + "appid": 942250, + "normalized_name": "smith and winston" + }, + { + "appid": 942270, + "normalized_name": "kunoichi tsubaki" + }, + { + "appid": 942300, + "normalized_name": "✌ johnny rocket" + }, + { + "appid": 942330, + "normalized_name": "puzzle me the vr jigsaw game" + }, + { + "appid": 942340, + "normalized_name": "achievement collector space" + }, + { + "appid": 942370, + "normalized_name": "offside" + }, + { + "appid": 942390, + "normalized_name": "captain toonhead vs the punks from outer space" + }, + { + "appid": 942440, + "normalized_name": "death cave" + }, + { + "appid": 942480, + "normalized_name": "criminal pursuit force" + }, + { + "appid": 942490, + "normalized_name": "double bubble blaster madness vr" + }, + { + "appid": 942510, + "normalized_name": "scamp high hat havoc" + }, + { + "appid": 942520, + "normalized_name": "thrusty ship" + }, + { + "appid": 942530, + "normalized_name": "two till midnight" + }, + { + "appid": 942600, + "normalized_name": "temporality" + }, + { + "appid": 942760, + "normalized_name": "burnout drift" + }, + { + "appid": 942800, + "normalized_name": "hard work" + }, + { + "appid": 942840, + "normalized_name": "the parchment for the realm" + }, + { + "appid": 942850, + "normalized_name": "i walk among zombies vol. 1 (adult version)" + }, + { + "appid": 942870, + "normalized_name": "lolly pang vr" + }, + { + "appid": 942900, + "normalized_name": "goblin's shop" + }, + { + "appid": 942930, + "normalized_name": "枕边少女 moe hypnotist share dreams with you" + }, + { + "appid": 942970, + "normalized_name": "unheard" + }, + { + "appid": 942990, + "normalized_name": "girls in glasses" + }, + { + "appid": 943010, + "normalized_name": "rapid fire" + }, + { + "appid": 943030, + "normalized_name": "night fallen" + }, + { + "appid": 943040, + "normalized_name": "inside grass" + }, + { + "appid": 943080, + "normalized_name": "siege battle of ashington" + }, + { + "appid": 943140, + "normalized_name": "sparklite" + }, + { + "appid": 943170, + "normalized_name": "blast the past" + }, + { + "appid": 943190, + "normalized_name": "octopticom" + }, + { + "appid": 943210, + "normalized_name": "sub four the uncle" + }, + { + "appid": 943230, + "normalized_name": "thrill rollercoasters" + }, + { + "appid": 943260, + "normalized_name": "stranded sails explorers of the cursed islands" + }, + { + "appid": 943270, + "normalized_name": "xilost" + }, + { + "appid": 943290, + "normalized_name": "zombie school 丧尸学院" + }, + { + "appid": 943310, + "normalized_name": "manguin – penguin apocalypse" + }, + { + "appid": 943370, + "normalized_name": "bravery and greed" + }, + { + "appid": 943380, + "normalized_name": "timberman vs" + }, + { + "appid": 943390, + "normalized_name": "pan panda" + }, + { + "appid": 943410, + "normalized_name": "istanbul digital" + }, + { + "appid": 943440, + "normalized_name": "cards of knight" + }, + { + "appid": 943510, + "normalized_name": "blindia" + }, + { + "appid": 943520, + "normalized_name": "pixie panic garden" + }, + { + "appid": 943590, + "normalized_name": "blitzkeep unleashed" + }, + { + "appid": 943640, + "normalized_name": "sacred saga online" + }, + { + "appid": 943680, + "normalized_name": "bargain hunter" + }, + { + "appid": 943700, + "normalized_name": "monster girl island prologue" + }, + { + "appid": 943710, + "normalized_name": "arauco saga rpg action" + }, + { + "appid": 943810, + "normalized_name": "chaos sector 混沌宙域" + }, + { + "appid": 943900, + "normalized_name": "tombeaux" + }, + { + "appid": 943920, + "normalized_name": "spinball" + }, + { + "appid": 943950, + "normalized_name": "photo finish" + }, + { + "appid": 943960, + "normalized_name": "3buttons" + }, + { + "appid": 943970, + "normalized_name": "dj whip vr" + }, + { + "appid": 943980, + "normalized_name": "the logic of the miniature garden" + }, + { + "appid": 944010, + "normalized_name": "s.w.i.n.e. hd remaster" + }, + { + "appid": 944020, + "normalized_name": "dream ending" + }, + { + "appid": 944030, + "normalized_name": "战术狂想3 枪战足球(chimera of tactics 3 gun and soccer)" + }, + { + "appid": 944050, + "normalized_name": "sixth night" + }, + { + "appid": 944080, + "normalized_name": "pode" + }, + { + "appid": 944110, + "normalized_name": "pocket waifu" + }, + { + "appid": 944120, + "normalized_name": "abalyte" + }, + { + "appid": 944180, + "normalized_name": "titan outpost" + }, + { + "appid": 944200, + "normalized_name": "el pansas" + }, + { + "appid": 944220, + "normalized_name": "gachi heroes" + }, + { + "appid": 944250, + "normalized_name": "castle flipper" + }, + { + "appid": 944260, + "normalized_name": "gg puzzler" + }, + { + "appid": 944300, + "normalized_name": "byte driver" + }, + { + "appid": 944330, + "normalized_name": "hunt and snare" + }, + { + "appid": 944340, + "normalized_name": "vignettes" + }, + { + "appid": 944380, + "normalized_name": "drunk puppet" + }, + { + "appid": 944420, + "normalized_name": "king of gods angel the awakening of a demon" + }, + { + "appid": 944430, + "normalized_name": "the last friend" + }, + { + "appid": 944440, + "normalized_name": "powercut inc." + }, + { + "appid": 944450, + "normalized_name": "escape velocity" + }, + { + "appid": 944500, + "normalized_name": "antistatic" + }, + { + "appid": 944510, + "normalized_name": "space merchant" + }, + { + "appid": 944530, + "normalized_name": "sweet seasons" + }, + { + "appid": 944590, + "normalized_name": "thunder kid" + }, + { + "appid": 944610, + "normalized_name": "automobiels and the eisenhower hiway system the game" + }, + { + "appid": 944630, + "normalized_name": "moloch (zero)" + }, + { + "appid": 944640, + "normalized_name": "xenia's ark" + }, + { + "appid": 944650, + "normalized_name": "the mysteries of baroque" + }, + { + "appid": 944690, + "normalized_name": "star goddess" + }, + { + "appid": 944710, + "normalized_name": "turntack" + }, + { + "appid": 944720, + "normalized_name": "hellbanger" + }, + { + "appid": 944730, + "normalized_name": "trends" + }, + { + "appid": 944740, + "normalized_name": "三国虎将传vr2 sanguo warriors vr2" + }, + { + "appid": 944750, + "normalized_name": "forgotten souls" + }, + { + "appid": 944810, + "normalized_name": "dr. cares family practice" + }, + { + "appid": 944830, + "normalized_name": "swap swap" + }, + { + "appid": 944840, + "normalized_name": "mixed estate" + }, + { + "appid": 944860, + "normalized_name": "perverts society" + }, + { + "appid": 944910, + "normalized_name": "knife sisters" + }, + { + "appid": 944920, + "normalized_name": "nanotale typing chronicles" + }, + { + "appid": 944960, + "normalized_name": "contact last defence" + }, + { + "appid": 945100, + "normalized_name": "bassline sinker" + }, + { + "appid": 945140, + "normalized_name": "indie dev simulator" + }, + { + "appid": 945160, + "normalized_name": "angelo and deemon one hell of a quest" + }, + { + "appid": 945240, + "normalized_name": "fly high" + }, + { + "appid": 945280, + "normalized_name": "harem girl samantha" + }, + { + "appid": 945340, + "normalized_name": "ravva and the cyclops curse" + }, + { + "appid": 945360, + "normalized_name": "among us" + }, + { + "appid": 945390, + "normalized_name": "bala na manga" + }, + { + "appid": 945440, + "normalized_name": "tiny bird garden deluxe" + }, + { + "appid": 945460, + "normalized_name": "zombie builder defense" + }, + { + "appid": 945490, + "normalized_name": "little square things" + }, + { + "appid": 945500, + "normalized_name": "steel dungeon 钢铁地牢" + }, + { + "appid": 945520, + "normalized_name": "the perfectionist" + }, + { + "appid": 945530, + "normalized_name": "bohrdom" + }, + { + "appid": 945540, + "normalized_name": "knights of riddle" + }, + { + "appid": 945550, + "normalized_name": "tiger striker" + }, + { + "appid": 945580, + "normalized_name": "bubbles the cat" + }, + { + "appid": 945590, + "normalized_name": "cliché critical change" + }, + { + "appid": 945610, + "normalized_name": "lil' arena" + }, + { + "appid": 945620, + "normalized_name": "tadpole swimmer" + }, + { + "appid": 945630, + "normalized_name": "magicats worlds" + }, + { + "appid": 945680, + "normalized_name": "here be dragons" + }, + { + "appid": 945710, + "normalized_name": "dreadout 2" + }, + { + "appid": 945740, + "normalized_name": "buildings have feelings too!" + }, + { + "appid": 945770, + "normalized_name": "dark envoy" + }, + { + "appid": 945810, + "normalized_name": "bayala the game" + }, + { + "appid": 945820, + "normalized_name": "spotter" + }, + { + "appid": 945850, + "normalized_name": "hunter's trial the fight never ends" + }, + { + "appid": 945860, + "normalized_name": "hopeland" + }, + { + "appid": 945870, + "normalized_name": "starcross arena" + }, + { + "appid": 945880, + "normalized_name": "beer'em up" + }, + { + "appid": 945890, + "normalized_name": "hentai no hero" + }, + { + "appid": 945910, + "normalized_name": "terror for two" + }, + { + "appid": 945920, + "normalized_name": "long arm of the law" + }, + { + "appid": 945950, + "normalized_name": "shopkeepers tale" + }, + { + "appid": 946000, + "normalized_name": "captain macaw" + }, + { + "appid": 946010, + "normalized_name": "tasty planet forever" + }, + { + "appid": 946030, + "normalized_name": "axiom verge 2" + }, + { + "appid": 946040, + "normalized_name": "supply chain idle" + }, + { + "appid": 946050, + "normalized_name": "soda dungeon 2" + }, + { + "appid": 946060, + "normalized_name": "exist" + }, + { + "appid": 946070, + "normalized_name": "abstract" + }, + { + "appid": 946080, + "normalized_name": "the earth dies screaming" + }, + { + "appid": 946090, + "normalized_name": "hentai neighbors" + }, + { + "appid": 946110, + "normalized_name": "future love space machine glimmer deck" + }, + { + "appid": 946160, + "normalized_name": "existence = !existence;" + }, + { + "appid": 946170, + "normalized_name": "papper balls" + }, + { + "appid": 946210, + "normalized_name": "secret girl" + }, + { + "appid": 946240, + "normalized_name": "xobox circle and cross" + }, + { + "appid": 946300, + "normalized_name": "shooting chicken insanity chickens" + }, + { + "appid": 946330, + "normalized_name": "fallen threats" + }, + { + "appid": 946340, + "normalized_name": "lost cave" + }, + { + "appid": 946360, + "normalized_name": "inside path" + }, + { + "appid": 946370, + "normalized_name": "zodiac axis" + }, + { + "appid": 946380, + "normalized_name": "thememory" + }, + { + "appid": 946400, + "normalized_name": "slime quest" + }, + { + "appid": 946460, + "normalized_name": "seven days with the ghost" + }, + { + "appid": 946500, + "normalized_name": "waifu hunter episode 1 the runaway samurai" + }, + { + "appid": 946550, + "normalized_name": "hentai forest" + }, + { + "appid": 946560, + "normalized_name": "don't forget our esports dream" + }, + { + "appid": 946570, + "normalized_name": "the tale of treasonous tom part 1" + }, + { + "appid": 946600, + "normalized_name": "girl with a big sword" + }, + { + "appid": 946610, + "normalized_name": "pocket rogues" + }, + { + "appid": 946650, + "normalized_name": "streets of red devil's dare deluxe" + }, + { + "appid": 946660, + "normalized_name": "loria" + }, + { + "appid": 946670, + "normalized_name": "school owner" + }, + { + "appid": 946680, + "normalized_name": "boss barrage" + }, + { + "appid": 946690, + "normalized_name": "rpggame" + }, + { + "appid": 946700, + "normalized_name": "no king no kingdom vr" + }, + { + "appid": 946720, + "normalized_name": "to the rescue!" + }, + { + "appid": 946770, + "normalized_name": "scheming through the zombie apocalypse ep2 caged" + }, + { + "appid": 946780, + "normalized_name": "momo.exe 2" + }, + { + "appid": 946790, + "normalized_name": "colo grid zation" + }, + { + "appid": 946800, + "normalized_name": "hentai 2+2=4" + }, + { + "appid": 946810, + "normalized_name": "the escape" + }, + { + "appid": 946860, + "normalized_name": "stamp boy / 跳跳小子" + }, + { + "appid": 946880, + "normalized_name": "world of football" + }, + { + "appid": 946920, + "normalized_name": "paranoid" + }, + { + "appid": 946950, + "normalized_name": "boxthetop" + }, + { + "appid": 946980, + "normalized_name": "awakening of dragon" + }, + { + "appid": 946990, + "normalized_name": "secret government" + }, + { + "appid": 947040, + "normalized_name": "i'm not alright" + }, + { + "appid": 947060, + "normalized_name": "furry shakespeare to date or not to date cat girls?" + }, + { + "appid": 947070, + "normalized_name": "furry shakespeare dashing dinosaurs & sexy centaurs" + }, + { + "appid": 947080, + "normalized_name": "the ghost of joe papp 101 ways to kill writer's block" + }, + { + "appid": 947110, + "normalized_name": "fatal hour roadkill" + }, + { + "appid": 947120, + "normalized_name": "where the water tastes like wine fireside chats" + }, + { + "appid": 947230, + "normalized_name": "gulag" + }, + { + "appid": 947250, + "normalized_name": "bibi & tina adventures with horses" + }, + { + "appid": 947260, + "normalized_name": "bibi blocksberg big broom race 3" + }, + { + "appid": 947270, + "normalized_name": "the 'i love money' show" + }, + { + "appid": 947290, + "normalized_name": "arkane rush" + }, + { + "appid": 947300, + "normalized_name": "grim nights" + }, + { + "appid": 947390, + "normalized_name": "doodle farm" + }, + { + "appid": 947400, + "normalized_name": "mahjong secrets" + }, + { + "appid": 947430, + "normalized_name": "kiritan vs kanitan ~zunda mochi defense!~" + }, + { + "appid": 947450, + "normalized_name": "super boo quest" + }, + { + "appid": 947470, + "normalized_name": "optica" + }, + { + "appid": 947520, + "normalized_name": "cede" + }, + { + "appid": 947530, + "normalized_name": "the cup" + }, + { + "appid": 947540, + "normalized_name": "spacefarers!" + }, + { + "appid": 947560, + "normalized_name": "hush in search of dominic ward" + }, + { + "appid": 947580, + "normalized_name": "expedition oregon" + }, + { + "appid": 947600, + "normalized_name": "eroico" + }, + { + "appid": 947830, + "normalized_name": "beyond" + }, + { + "appid": 947880, + "normalized_name": "radio violence" + }, + { + "appid": 947890, + "normalized_name": "virtualcast" + }, + { + "appid": 947940, + "normalized_name": "scp ground zero" + }, + { + "appid": 947960, + "normalized_name": "ribbon racer" + }, + { + "appid": 947970, + "normalized_name": "roads of rome new generation 2" + }, + { + "appid": 948000, + "normalized_name": "bright red skies" + }, + { + "appid": 948020, + "normalized_name": "mojo 2" + }, + { + "appid": 948070, + "normalized_name": "snuse 221" + }, + { + "appid": 948080, + "normalized_name": "lights out" + }, + { + "appid": 948100, + "normalized_name": "ニンジャスレイヤー area 4643" + }, + { + "appid": 948120, + "normalized_name": "the mummy pharaoh" + }, + { + "appid": 948200, + "normalized_name": "mini golf buddies" + }, + { + "appid": 948240, + "normalized_name": "voltage drop" + }, + { + "appid": 948270, + "normalized_name": "byte chaser" + }, + { + "appid": 948320, + "normalized_name": "dragon simulator multiplayer" + }, + { + "appid": 948330, + "normalized_name": "werewolf hunter x" + }, + { + "appid": 948340, + "normalized_name": "journey through memories" + }, + { + "appid": 948350, + "normalized_name": "royal booty quest" + }, + { + "appid": 948370, + "normalized_name": "shaoye" + }, + { + "appid": 948420, + "normalized_name": "exapunks tec redshift player" + }, + { + "appid": 948460, + "normalized_name": "wizard prison" + }, + { + "appid": 948470, + "normalized_name": "deadsiege" + }, + { + "appid": 948490, + "normalized_name": "standard legend" + }, + { + "appid": 948510, + "normalized_name": "monster clicker idle halloween strategy" + }, + { + "appid": 948630, + "normalized_name": "hentai minesweeper" + }, + { + "appid": 948640, + "normalized_name": "wizardry labyrinth of lost souls" + }, + { + "appid": 948650, + "normalized_name": "asdivine hearts ii" + }, + { + "appid": 948660, + "normalized_name": "alvastia chronicles" + }, + { + "appid": 948690, + "normalized_name": "stickman maverick bad boys killer" + }, + { + "appid": 948740, + "normalized_name": "ai the somnium files" + }, + { + "appid": 948770, + "normalized_name": "魔塔2018" + }, + { + "appid": 948790, + "normalized_name": "party poppers" + }, + { + "appid": 948820, + "normalized_name": "nevergrind" + }, + { + "appid": 948830, + "normalized_name": "寄甡 symbiotic love" + }, + { + "appid": 948840, + "normalized_name": "死亡投票_death voting game" + }, + { + "appid": 948880, + "normalized_name": "arena renovation" + }, + { + "appid": 948900, + "normalized_name": "macdows 95" + }, + { + "appid": 948960, + "normalized_name": "morphies law remorphed" + }, + { + "appid": 948990, + "normalized_name": "grottesco absurdus" + }, + { + "appid": 949000, + "normalized_name": "marble combat" + }, + { + "appid": 949030, + "normalized_name": "amaze halloween" + }, + { + "appid": 949050, + "normalized_name": "virtual villagers origins 2" + }, + { + "appid": 949060, + "normalized_name": "love thyself a horatio story" + }, + { + "appid": 949070, + "normalized_name": "colonies" + }, + { + "appid": 949090, + "normalized_name": "kimmie jong on nukes the world" + }, + { + "appid": 949130, + "normalized_name": "draco's misfortune" + }, + { + "appid": 949150, + "normalized_name": "vr party club" + }, + { + "appid": 949170, + "normalized_name": "killing random dudes online" + }, + { + "appid": 949200, + "normalized_name": "ambition a minuet in power" + }, + { + "appid": 949230, + "normalized_name": "cities skylines ii" + }, + { + "appid": 949290, + "normalized_name": "winkeltje the little shop" + }, + { + "appid": 949370, + "normalized_name": "cateau" + }, + { + "appid": 949380, + "normalized_name": "av 17" + }, + { + "appid": 949390, + "normalized_name": "puppet blaster" + }, + { + "appid": 949420, + "normalized_name": "the energy lab" + }, + { + "appid": 949450, + "normalized_name": "11th dream" + }, + { + "appid": 949480, + "normalized_name": "brok the investigator" + }, + { + "appid": 949520, + "normalized_name": "lost on the island" + }, + { + "appid": 949530, + "normalized_name": "time splatter" + }, + { + "appid": 949570, + "normalized_name": "rand o maze" + }, + { + "appid": 949600, + "normalized_name": "intergalactic fishing" + }, + { + "appid": 949630, + "normalized_name": "russian roulette" + }, + { + "appid": 949650, + "normalized_name": "here come the mystery teens!" + }, + { + "appid": 949670, + "normalized_name": "event d" + }, + { + "appid": 949680, + "normalized_name": "fantasy monarch" + }, + { + "appid": 949720, + "normalized_name": "dark man" + }, + { + "appid": 949740, + "normalized_name": "godsend" + }, + { + "appid": 949770, + "normalized_name": "spitkiss" + }, + { + "appid": 949790, + "normalized_name": "rogue bit" + }, + { + "appid": 949800, + "normalized_name": "skyland heart of the mountain" + }, + { + "appid": 949820, + "normalized_name": "crazy washing machine" + }, + { + "appid": 949830, + "normalized_name": "shrines of sacred essenсe" + }, + { + "appid": 949840, + "normalized_name": "icarus84" + }, + { + "appid": 949860, + "normalized_name": "goalkeeper vr challenge" + }, + { + "appid": 949880, + "normalized_name": "ninja code" + }, + { + "appid": 949890, + "normalized_name": "physical exorcism case 01" + }, + { + "appid": 949910, + "normalized_name": "refill your roguelike" + }, + { + "appid": 949960, + "normalized_name": "best life simulator" + }, + { + "appid": 949970, + "normalized_name": "reborn in wild city 迷城重生" + }, + { + "appid": 949990, + "normalized_name": "magical monster land" + }, + { + "appid": 950050, + "normalized_name": "starlink battle for atlas" + }, + { + "appid": 950130, + "normalized_name": "evidence of life" + }, + { + "appid": 950140, + "normalized_name": "hiding spot" + }, + { + "appid": 950160, + "normalized_name": "miracle circus" + }, + { + "appid": 950210, + "normalized_name": "suffer" + }, + { + "appid": 950230, + "normalized_name": "elephant rave 2" + }, + { + "appid": 950240, + "normalized_name": "rise of the pirates" + }, + { + "appid": 950250, + "normalized_name": "halfway home" + }, + { + "appid": 950260, + "normalized_name": "divenia" + }, + { + "appid": 950300, + "normalized_name": "redo!" + }, + { + "appid": 950310, + "normalized_name": "glo phlox" + }, + { + "appid": 950330, + "normalized_name": "oil patch simulations" + }, + { + "appid": 950360, + "normalized_name": "quest room hanon" + }, + { + "appid": 950370, + "normalized_name": "tactics & strategy master 2 princess of holy light(圣光战姬)" + }, + { + "appid": 950380, + "normalized_name": "hang up" + }, + { + "appid": 950400, + "normalized_name": "blame him" + }, + { + "appid": 950460, + "normalized_name": "paradise cleaning!" + }, + { + "appid": 950510, + "normalized_name": "volcan defend the tower" + }, + { + "appid": 950530, + "normalized_name": "mojo 2 mia" + }, + { + "appid": 950570, + "normalized_name": "bitworm" + }, + { + "appid": 950620, + "normalized_name": "priest simulator vampire show" + }, + { + "appid": 950660, + "normalized_name": "wraith ops" + }, + { + "appid": 950670, + "normalized_name": "gothic playable teaser" + }, + { + "appid": 950700, + "normalized_name": "viccp" + }, + { + "appid": 950730, + "normalized_name": "fallen sky online" + }, + { + "appid": 950740, + "normalized_name": "china mao's legacy" + }, + { + "appid": 950750, + "normalized_name": "dega madness" + }, + { + "appid": 950780, + "normalized_name": "pratagon" + }, + { + "appid": 950810, + "normalized_name": "squareworld unpixeled" + }, + { + "appid": 950850, + "normalized_name": "the window box" + }, + { + "appid": 950860, + "normalized_name": "spiral clicker" + }, + { + "appid": 950880, + "normalized_name": "bun" + }, + { + "appid": 950890, + "normalized_name": "game master plus" + }, + { + "appid": 950900, + "normalized_name": "operation harsh doorstop dedicated server" + }, + { + "appid": 950950, + "normalized_name": "in the dark" + }, + { + "appid": 950990, + "normalized_name": "business magnate" + }, + { + "appid": 951000, + "normalized_name": "trap shrine" + }, + { + "appid": 951010, + "normalized_name": "zero spring episode 1 english translation version" + }, + { + "appid": 951030, + "normalized_name": "derelict (do not buy)" + }, + { + "appid": 951040, + "normalized_name": "solar command" + }, + { + "appid": 951050, + "normalized_name": "another hardcore game" + }, + { + "appid": 951100, + "normalized_name": "the adventures of team australia" + }, + { + "appid": 951110, + "normalized_name": "vr cricket" + }, + { + "appid": 951130, + "normalized_name": "心之檻" + }, + { + "appid": 951160, + "normalized_name": "jump up" + }, + { + "appid": 951190, + "normalized_name": "ancient lands the tsar awakening" + }, + { + "appid": 951220, + "normalized_name": "pumpkin death garden" + }, + { + "appid": 951240, + "normalized_name": "obenseuer" + }, + { + "appid": 951250, + "normalized_name": "not heaven" + }, + { + "appid": 951260, + "normalized_name": "shieldwall chronicles swords of the north" + }, + { + "appid": 951310, + "normalized_name": "doville" + }, + { + "appid": 951320, + "normalized_name": "not my day!" + }, + { + "appid": 951330, + "normalized_name": "weaponry dealer vr" + }, + { + "appid": 951360, + "normalized_name": "super potato bruh" + }, + { + "appid": 951370, + "normalized_name": "drawkanoid" + }, + { + "appid": 951400, + "normalized_name": "warlord attrition" + }, + { + "appid": 951410, + "normalized_name": "the tale of greenbrier" + }, + { + "appid": 951420, + "normalized_name": "refraction" + }, + { + "appid": 951430, + "normalized_name": "dead age 2 the zombie survival rpg" + }, + { + "appid": 951440, + "normalized_name": "volcanoids" + }, + { + "appid": 951450, + "normalized_name": "fit it" + }, + { + "appid": 951470, + "normalized_name": "unrest indigo" + }, + { + "appid": 951480, + "normalized_name": "auto brawl chess" + }, + { + "appid": 951490, + "normalized_name": "stream battlecards" + }, + { + "appid": 951530, + "normalized_name": "alien shooter last hope" + }, + { + "appid": 951570, + "normalized_name": "deadness" + }, + { + "appid": 951620, + "normalized_name": "bygone dreams" + }, + { + "appid": 951640, + "normalized_name": "gangsta sniper" + }, + { + "appid": 951670, + "normalized_name": "precipice" + }, + { + "appid": 951690, + "normalized_name": "surge" + }, + { + "appid": 951700, + "normalized_name": "super jigsaw puzzle space" + }, + { + "appid": 951740, + "normalized_name": "nice shot! the gun golfing game" + }, + { + "appid": 951750, + "normalized_name": "i am dead" + }, + { + "appid": 951760, + "normalized_name": "full body workout" + }, + { + "appid": 951770, + "normalized_name": "forsaken realms vahrin's call" + }, + { + "appid": 951780, + "normalized_name": "zombie deathrace feeding frenzy" + }, + { + "appid": 951820, + "normalized_name": "captain bones a pirate's journey" + }, + { + "appid": 951830, + "normalized_name": "the last sovereign" + }, + { + "appid": 951840, + "normalized_name": "don't save the princess" + }, + { + "appid": 951860, + "normalized_name": "once ever after" + }, + { + "appid": 951910, + "normalized_name": "blindoak prow" + }, + { + "appid": 951920, + "normalized_name": "charlie's conscious" + }, + { + "appid": 951930, + "normalized_name": "typing incremental" + }, + { + "appid": 951940, + "normalized_name": "almost there the platformer" + }, + { + "appid": 951990, + "normalized_name": "pepper's castle" + }, + { + "appid": 952000, + "normalized_name": "be vigilant!" + }, + { + "appid": 952010, + "normalized_name": "the martian job" + }, + { + "appid": 952020, + "normalized_name": "love at elevation" + }, + { + "appid": 952030, + "normalized_name": "gilded rails" + }, + { + "appid": 952040, + "normalized_name": "musynx" + }, + { + "appid": 952050, + "normalized_name": "buddinpals" + }, + { + "appid": 952060, + "normalized_name": "resident evil 3" + }, + { + "appid": 952100, + "normalized_name": "bad pixels" + }, + { + "appid": 952120, + "normalized_name": "阿达三国志2019 竖版 three kingdoms 2019" + }, + { + "appid": 952130, + "normalized_name": "origin of decay" + }, + { + "appid": 952140, + "normalized_name": "surrogate" + }, + { + "appid": 952150, + "normalized_name": "命运九重奏" + }, + { + "appid": 952200, + "normalized_name": "stikir" + }, + { + "appid": 952230, + "normalized_name": "5 star miami resort" + }, + { + "appid": 952240, + "normalized_name": "dieselpunk wars" + }, + { + "appid": 952250, + "normalized_name": "september 1999" + }, + { + "appid": 952270, + "normalized_name": "boat basketball" + }, + { + "appid": 952290, + "normalized_name": "zueirama" + }, + { + "appid": 952330, + "normalized_name": "blackfoot burrows" + }, + { + "appid": 952340, + "normalized_name": "the curator prologue" + }, + { + "appid": 952370, + "normalized_name": "armored fighter" + }, + { + "appid": 952400, + "normalized_name": "oculto" + }, + { + "appid": 952420, + "normalized_name": "shan gui ii sweet osmanthus ii" + }, + { + "appid": 952460, + "normalized_name": "lovecraft quest a comix game" + }, + { + "appid": 952510, + "normalized_name": "chronicles of lurra" + }, + { + "appid": 952540, + "normalized_name": "romancing saga 3" + }, + { + "appid": 952560, + "normalized_name": "the testing floor" + }, + { + "appid": 952680, + "normalized_name": "blind girl" + }, + { + "appid": 952700, + "normalized_name": "dead" + }, + { + "appid": 952710, + "normalized_name": "zerone episode 1 gunner" + }, + { + "appid": 952730, + "normalized_name": "18层" + }, + { + "appid": 952850, + "normalized_name": "败家仔 last wish" + }, + { + "appid": 952860, + "normalized_name": "河洛群俠傳 (ho tu lo shu : the books of dragon)" + }, + { + "appid": 952910, + "normalized_name": "lantern of worlds the first quest" + }, + { + "appid": 952920, + "normalized_name": "hoyeonjigi" + }, + { + "appid": 952940, + "normalized_name": "bagburnian remote" + }, + { + "appid": 952950, + "normalized_name": "03.04" + }, + { + "appid": 952970, + "normalized_name": "stick to the end" + }, + { + "appid": 952980, + "normalized_name": "torn earth" + }, + { + "appid": 953000, + "normalized_name": "seven sins academic version" + }, + { + "appid": 953050, + "normalized_name": "dread of laughter" + }, + { + "appid": 953060, + "normalized_name": "go to it" + }, + { + "appid": 953120, + "normalized_name": "adk" + }, + { + "appid": 953150, + "normalized_name": "trivatune" + }, + { + "appid": 953170, + "normalized_name": "witch's tales" + }, + { + "appid": 953190, + "normalized_name": "dream walker" + }, + { + "appid": 953220, + "normalized_name": "corrupted commander" + }, + { + "appid": 953230, + "normalized_name": "quiver dick's terrible tale for terrible parents to read to their equally terrible children" + }, + { + "appid": 953240, + "normalized_name": "spicy deck" + }, + { + "appid": 953270, + "normalized_name": "dominatrix simulator threshold" + }, + { + "appid": 953280, + "normalized_name": "emirati tales" + }, + { + "appid": 953290, + "normalized_name": "dinosaur safari vr" + }, + { + "appid": 953310, + "normalized_name": "trajes fatais suits of fate" + }, + { + "appid": 953330, + "normalized_name": "hyper echelon" + }, + { + "appid": 953340, + "normalized_name": "colourless" + }, + { + "appid": 953370, + "normalized_name": "zed" + }, + { + "appid": 953380, + "normalized_name": "flipside genesis" + }, + { + "appid": 953490, + "normalized_name": "carrion" + }, + { + "appid": 953550, + "normalized_name": "temple scramble" + }, + { + "appid": 953560, + "normalized_name": "3c wonderland coaster" + }, + { + "appid": 953570, + "normalized_name": "white dove 白雀" + }, + { + "appid": 953580, + "normalized_name": "tourist bus simulator" + }, + { + "appid": 953610, + "normalized_name": "hot girls vr" + }, + { + "appid": 953690, + "normalized_name": "doom & destiny worlds" + }, + { + "appid": 953700, + "normalized_name": "i'm an adventurer" + }, + { + "appid": 953740, + "normalized_name": "尸如潮水" + }, + { + "appid": 953750, + "normalized_name": "the masked mage" + }, + { + "appid": 953760, + "normalized_name": "gravity spin" + }, + { + "appid": 953790, + "normalized_name": "无敌荒野/unbeatable wilderness" + }, + { + "appid": 953810, + "normalized_name": "vanguard fight for rudiarius" + }, + { + "appid": 953820, + "normalized_name": "parkan iron strategy" + }, + { + "appid": 953840, + "normalized_name": "apollo 11 vr hd" + }, + { + "appid": 953870, + "normalized_name": "space robinson hardcore roguelike action" + }, + { + "appid": 953880, + "normalized_name": "first class trouble" + }, + { + "appid": 953900, + "normalized_name": "pantsu hunter back to the 90s" + }, + { + "appid": 953920, + "normalized_name": "palace of the azure dragon" + }, + { + "appid": 953950, + "normalized_name": "kubble" + }, + { + "appid": 954000, + "normalized_name": "cosa nostra" + }, + { + "appid": 954010, + "normalized_name": "definitely sneaky but not sneaky" + }, + { + "appid": 954070, + "normalized_name": "beat boxers" + }, + { + "appid": 954080, + "normalized_name": "memorrha" + }, + { + "appid": 954150, + "normalized_name": "nowhere girl" + }, + { + "appid": 954160, + "normalized_name": "angelus brand vr experience" + }, + { + "appid": 954170, + "normalized_name": "backyard brawl" + }, + { + "appid": 954210, + "normalized_name": "symphonic mayhem" + }, + { + "appid": 954240, + "normalized_name": "cuboid keeper" + }, + { + "appid": 954270, + "normalized_name": "logistical 2" + }, + { + "appid": 954280, + "normalized_name": "3dsen vr" + }, + { + "appid": 954300, + "normalized_name": "6 keys the gym" + }, + { + "appid": 954320, + "normalized_name": "bourbon empire" + }, + { + "appid": 954360, + "normalized_name": "color by numbers halloween" + }, + { + "appid": 954400, + "normalized_name": "color by numbers christmas" + }, + { + "appid": 954410, + "normalized_name": "color by numbers animals" + }, + { + "appid": 954420, + "normalized_name": "dotx" + }, + { + "appid": 954530, + "normalized_name": "the momo game" + }, + { + "appid": 954590, + "normalized_name": "text" + }, + { + "appid": 954610, + "normalized_name": "onii chan asobo" + }, + { + "appid": 954620, + "normalized_name": "virtual soccer zone" + }, + { + "appid": 954650, + "normalized_name": "druidstone the secret of the menhir forest" + }, + { + "appid": 954710, + "normalized_name": "blockdoc" + }, + { + "appid": 954720, + "normalized_name": "the shedding" + }, + { + "appid": 954740, + "normalized_name": "terminator resistance" + }, + { + "appid": 954760, + "normalized_name": "the cells" + }, + { + "appid": 954780, + "normalized_name": "zombie soldier" + }, + { + "appid": 954850, + "normalized_name": "kerbal space program 2" + }, + { + "appid": 954860, + "normalized_name": "mad cat's world. act 1 not by meat alone..." + }, + { + "appid": 954870, + "normalized_name": "astrox imperium" + }, + { + "appid": 954920, + "normalized_name": "flank that tank!" + }, + { + "appid": 954970, + "normalized_name": "golden key" + }, + { + "appid": 955010, + "normalized_name": "archwizard" + }, + { + "appid": 955020, + "normalized_name": "utopia syndrome" + }, + { + "appid": 955030, + "normalized_name": "metamorph" + }, + { + "appid": 955050, + "normalized_name": "bright memory" + }, + { + "appid": 955060, + "normalized_name": "the watson scott test" + }, + { + "appid": 955070, + "normalized_name": "forex trading master simulator" + }, + { + "appid": 955090, + "normalized_name": "welcome to graymount" + }, + { + "appid": 955120, + "normalized_name": "scuos" + }, + { + "appid": 955170, + "normalized_name": "铁道物语:陆王(railway saga land king)" + }, + { + "appid": 955190, + "normalized_name": "blueprint word classroom" + }, + { + "appid": 955200, + "normalized_name": "spurdo d" + }, + { + "appid": 955220, + "normalized_name": "train metropolis" + }, + { + "appid": 955290, + "normalized_name": "the blood eclipse" + }, + { + "appid": 955300, + "normalized_name": "shotkill" + }, + { + "appid": 955320, + "normalized_name": "dark fantasy jigsaw puzzle" + }, + { + "appid": 955360, + "normalized_name": "stronghold a hero's fate" + }, + { + "appid": 955370, + "normalized_name": "weyrwood" + }, + { + "appid": 955380, + "normalized_name": "death collector" + }, + { + "appid": 955400, + "normalized_name": "bonds" + }, + { + "appid": 955410, + "normalized_name": "armoured alliance" + }, + { + "appid": 955490, + "normalized_name": "terror in the atomic desert" + }, + { + "appid": 955500, + "normalized_name": "magnetobotty" + }, + { + "appid": 955530, + "normalized_name": "wildest of the wild" + }, + { + "appid": 955540, + "normalized_name": "telecube nightmare" + }, + { + "appid": 955550, + "normalized_name": "root beer on tap" + }, + { + "appid": 955560, + "normalized_name": "evenicle" + }, + { + "appid": 955570, + "normalized_name": "teck boxing 3d" + }, + { + "appid": 955580, + "normalized_name": "rise race the future" + }, + { + "appid": 955600, + "normalized_name": "noble in exile / 落魄之家" + }, + { + "appid": 955620, + "normalized_name": "battle arena euro wars" + }, + { + "appid": 955640, + "normalized_name": "go outside simulator" + }, + { + "appid": 955670, + "normalized_name": "acropolis the archaic age" + }, + { + "appid": 955700, + "normalized_name": "titan hunter" + }, + { + "appid": 955740, + "normalized_name": "mini healer" + }, + { + "appid": 955840, + "normalized_name": "slide to finish" + }, + { + "appid": 955860, + "normalized_name": "woodboy" + }, + { + "appid": 955870, + "normalized_name": "battlecruisers" + }, + { + "appid": 955890, + "normalized_name": "war platform" + }, + { + "appid": 955900, + "normalized_name": "amazing cultivation simulator" + }, + { + "appid": 955940, + "normalized_name": "asterion" + }, + { + "appid": 955980, + "normalized_name": "dive inside" + }, + { + "appid": 956000, + "normalized_name": "su hack" + }, + { + "appid": 956010, + "normalized_name": "hexanome" + }, + { + "appid": 956030, + "normalized_name": "creaks" + }, + { + "appid": 956060, + "normalized_name": "mittelborg city of mages" + }, + { + "appid": 956090, + "normalized_name": "animals memory horses" + }, + { + "appid": 956140, + "normalized_name": "lifeslide" + }, + { + "appid": 956150, + "normalized_name": "mars chaos menace" + }, + { + "appid": 956200, + "normalized_name": "leopoldo manquiseil" + }, + { + "appid": 956210, + "normalized_name": "spec defense" + }, + { + "appid": 956240, + "normalized_name": "simson tuningwerkstatt 3d" + }, + { + "appid": 956270, + "normalized_name": "disruption" + }, + { + "appid": 956280, + "normalized_name": "joe's wrath" + }, + { + "appid": 956310, + "normalized_name": "musashi vs cthulhu" + }, + { + "appid": 956350, + "normalized_name": "there is no turning back!" + }, + { + "appid": 956360, + "normalized_name": "badminton warrior (羽毛球勇士 中国新年版)" + }, + { + "appid": 956380, + "normalized_name": "dark dimensions homecoming collector's" + }, + { + "appid": 956390, + "normalized_name": "final cut fame fatale collector's" + }, + { + "appid": 956400, + "normalized_name": "grim tales bloody mary collector's" + }, + { + "appid": 956430, + "normalized_name": "steampunk graveyard" + }, + { + "appid": 956450, + "normalized_name": "rogue fable iii" + }, + { + "appid": 956470, + "normalized_name": "six degrees of damnation" + }, + { + "appid": 956480, + "normalized_name": "aquarium sandbox" + }, + { + "appid": 956500, + "normalized_name": "bow to blood last captain standing" + }, + { + "appid": 956540, + "normalized_name": "color phase" + }, + { + "appid": 956550, + "normalized_name": "devil girl needs massages" + }, + { + "appid": 956560, + "normalized_name": "starcrossed" + }, + { + "appid": 956590, + "normalized_name": "yet another snake game" + }, + { + "appid": 956600, + "normalized_name": "magebuster amorous augury" + }, + { + "appid": 956620, + "normalized_name": "talk to yuno" + }, + { + "appid": 956680, + "normalized_name": "m.a.s.s. builder" + }, + { + "appid": 956820, + "normalized_name": "antumbra vile shards" + }, + { + "appid": 956880, + "normalized_name": "géants disparus vr" + }, + { + "appid": 956990, + "normalized_name": "slavistan 2" + }, + { + "appid": 957050, + "normalized_name": "ultra off road 2019 alaska" + }, + { + "appid": 957060, + "normalized_name": "divine commander" + }, + { + "appid": 957070, + "normalized_name": "ib cricket" + }, + { + "appid": 957080, + "normalized_name": "eep 15" + }, + { + "appid": 957140, + "normalized_name": "新世勇者传 newera heroes' chronicle" + }, + { + "appid": 957150, + "normalized_name": "冷月清辉照天涯(kung fu legend)" + }, + { + "appid": 957220, + "normalized_name": "our worst fears" + }, + { + "appid": 957270, + "normalized_name": "the lighthouse | vr escape room" + }, + { + "appid": 957280, + "normalized_name": "couch versus" + }, + { + "appid": 957370, + "normalized_name": "chess 2" + }, + { + "appid": 957390, + "normalized_name": "chief's quest" + }, + { + "appid": 957410, + "normalized_name": "king of queendoms" + }, + { + "appid": 957430, + "normalized_name": "mentai uncensored" + }, + { + "appid": 957440, + "normalized_name": "swords and sandals pirates" + }, + { + "appid": 957490, + "normalized_name": "my cabin and i" + }, + { + "appid": 957510, + "normalized_name": "the hour has come" + }, + { + "appid": 957570, + "normalized_name": "the qaedon wars the story begins" + }, + { + "appid": 957660, + "normalized_name": "catizens" + }, + { + "appid": 957680, + "normalized_name": "doughlings invasion" + }, + { + "appid": 957710, + "normalized_name": "the waylanders" + }, + { + "appid": 957720, + "normalized_name": "strategic command wwii world at war" + }, + { + "appid": 957770, + "normalized_name": "warpthrough" + }, + { + "appid": 957790, + "normalized_name": "war dust vr 32v32 battlefields" + }, + { + "appid": 957800, + "normalized_name": "xong vr" + }, + { + "appid": 957810, + "normalized_name": "season of war (beta)" + }, + { + "appid": 957820, + "normalized_name": "across the grooves" + }, + { + "appid": 957850, + "normalized_name": "light up the holidays" + }, + { + "appid": 957890, + "normalized_name": "the horologist's legacy" + }, + { + "appid": 957930, + "normalized_name": "intelligence underwater kingdom" + }, + { + "appid": 957950, + "normalized_name": "1971 indian naval front" + }, + { + "appid": 957960, + "normalized_name": "inkulinati" + }, + { + "appid": 958050, + "normalized_name": "1001st hyper tower" + }, + { + "appid": 958090, + "normalized_name": "school of the dead anastasia" + }, + { + "appid": 958110, + "normalized_name": "尸毒来袭 zombie virus attack" + }, + { + "appid": 958130, + "normalized_name": "neet simulator" + }, + { + "appid": 958190, + "normalized_name": "surge radio" + }, + { + "appid": 958200, + "normalized_name": "ralf" + }, + { + "appid": 958220, + "normalized_name": "the endless summer search for surf" + }, + { + "appid": 958230, + "normalized_name": "axe survival" + }, + { + "appid": 958260, + "normalized_name": "dead or alive xtreme venus vacation" + }, + { + "appid": 958280, + "normalized_name": "float night" + }, + { + "appid": 958290, + "normalized_name": "united force of osiris" + }, + { + "appid": 958300, + "normalized_name": "cute girls 可爱的女孩" + }, + { + "appid": 958310, + "normalized_name": "evolo.spidersim" + }, + { + "appid": 958320, + "normalized_name": "a front too far normandy" + }, + { + "appid": 958360, + "normalized_name": "silver child" + }, + { + "appid": 958400, + "normalized_name": "project cars 3" + }, + { + "appid": 958440, + "normalized_name": "hard karma" + }, + { + "appid": 958480, + "normalized_name": "seed of the dead" + }, + { + "appid": 958490, + "normalized_name": "titan shield" + }, + { + "appid": 958510, + "normalized_name": "assault on hyperion base" + }, + { + "appid": 958530, + "normalized_name": "fury of dracula digital" + }, + { + "appid": 958640, + "normalized_name": "super turbo sudoku" + }, + { + "appid": 958650, + "normalized_name": "strange encounter" + }, + { + "appid": 958670, + "normalized_name": "mekafighters" + }, + { + "appid": 958680, + "normalized_name": "self knowledge vr" + }, + { + "appid": 958690, + "normalized_name": "the sky climber" + }, + { + "appid": 958720, + "normalized_name": "second chance" + }, + { + "appid": 958740, + "normalized_name": "heretic operative" + }, + { + "appid": 958750, + "normalized_name": "re o ri" + }, + { + "appid": 958800, + "normalized_name": "lapse" + }, + { + "appid": 958840, + "normalized_name": "groove catcher" + }, + { + "appid": 958850, + "normalized_name": "let it flow" + }, + { + "appid": 958880, + "normalized_name": "nick bounty and the dame with the blue chewed shoe" + }, + { + "appid": 958900, + "normalized_name": "battle x arcade" + }, + { + "appid": 958910, + "normalized_name": "ar k end game" + }, + { + "appid": 958930, + "normalized_name": "ricky recharge" + }, + { + "appid": 958960, + "normalized_name": "darwin's test" + }, + { + "appid": 958980, + "normalized_name": "pang and bang" + }, + { + "appid": 958990, + "normalized_name": "blokin" + }, + { + "appid": 959000, + "normalized_name": "edna & harvey the breakout anniversary" + }, + { + "appid": 959020, + "normalized_name": "you shall not break!" + }, + { + "appid": 959030, + "normalized_name": "zombie cubes" + }, + { + "appid": 959050, + "normalized_name": "bound up & squirming!" + }, + { + "appid": 959080, + "normalized_name": "unsung warriors prologue" + }, + { + "appid": 959090, + "normalized_name": "waydown" + }, + { + "appid": 959150, + "normalized_name": "making history the first world war" + }, + { + "appid": 959170, + "normalized_name": "john condemned" + }, + { + "appid": 959200, + "normalized_name": "battleships and carriers ww2 battleship game" + }, + { + "appid": 959210, + "normalized_name": "the return survival" + }, + { + "appid": 959220, + "normalized_name": "project discontinued" + }, + { + "appid": 959240, + "normalized_name": "boom" + }, + { + "appid": 959260, + "normalized_name": "aspect" + }, + { + "appid": 959280, + "normalized_name": "total seclusion" + }, + { + "appid": 959340, + "normalized_name": "deconstruction lab" + }, + { + "appid": 959350, + "normalized_name": "sengoku neet" + }, + { + "appid": 959380, + "normalized_name": "war in space" + }, + { + "appid": 959400, + "normalized_name": "save thine kingdom" + }, + { + "appid": 959410, + "normalized_name": "the endless empty" + }, + { + "appid": 959500, + "normalized_name": "cute puzzle" + }, + { + "appid": 959510, + "normalized_name": "the master club" + }, + { + "appid": 959520, + "normalized_name": "fantasy blacksmith" + }, + { + "appid": 959540, + "normalized_name": "devil's toy" + }, + { + "appid": 959590, + "normalized_name": "super keepy ups" + }, + { + "appid": 959700, + "normalized_name": "chuckie egg 2017 challenges" + }, + { + "appid": 959710, + "normalized_name": "the earth is a better person than me" + }, + { + "appid": 959730, + "normalized_name": "spider lander" + }, + { + "appid": 959750, + "normalized_name": "a book of beasts and buddies" + }, + { + "appid": 959760, + "normalized_name": "play room 0g" + }, + { + "appid": 959770, + "normalized_name": "moe the boundary of reality" + }, + { + "appid": 959800, + "normalized_name": "tireless prepare for the adrenaline" + }, + { + "appid": 959850, + "normalized_name": "american patriots the swamp fox" + }, + { + "appid": 959860, + "normalized_name": "the valiant" + }, + { + "appid": 959880, + "normalized_name": "dungeon town" + }, + { + "appid": 959890, + "normalized_name": "sister travel" + }, + { + "appid": 959920, + "normalized_name": "vr curling" + }, + { + "appid": 959930, + "normalized_name": "duality" + }, + { + "appid": 960030, + "normalized_name": "deca" + }, + { + "appid": 960040, + "normalized_name": "clash of chefs vr" + }, + { + "appid": 960070, + "normalized_name": "fish & bubbles" + }, + { + "appid": 960090, + "normalized_name": "bloons td 6" + }, + { + "appid": 960100, + "normalized_name": "layer by layer" + }, + { + "appid": 960140, + "normalized_name": "flower design two" + }, + { + "appid": 960150, + "normalized_name": "rending sky" + }, + { + "appid": 960170, + "normalized_name": "djmax respect v" + }, + { + "appid": 960190, + "normalized_name": "maytroid. i swear it's a nice game too" + }, + { + "appid": 960200, + "normalized_name": "one night 2 the beyond" + }, + { + "appid": 960220, + "normalized_name": "lufulus' creatures" + }, + { + "appid": 960240, + "normalized_name": "stunt kite party" + }, + { + "appid": 960270, + "normalized_name": "dafen oil painting village an immersive reality" + }, + { + "appid": 960320, + "normalized_name": "ego hearts" + }, + { + "appid": 960340, + "normalized_name": "yuna sugar hearts and love" + }, + { + "appid": 960360, + "normalized_name": "yuzi lims hentai" + }, + { + "appid": 960420, + "normalized_name": "hello neighbor hide and seek" + }, + { + "appid": 960550, + "normalized_name": "distress a choice driven sci fi adventure" + }, + { + "appid": 960590, + "normalized_name": "courage for a kiss" + }, + { + "appid": 960600, + "normalized_name": "nanoswarm" + }, + { + "appid": 960610, + "normalized_name": "the gameshow" + }, + { + "appid": 960630, + "normalized_name": "beyond critical" + }, + { + "appid": 960650, + "normalized_name": "royal wedding quest!" + }, + { + "appid": 960660, + "normalized_name": "coldfall" + }, + { + "appid": 960680, + "normalized_name": "anno domini godfather" + }, + { + "appid": 960690, + "normalized_name": "one step from eden" + }, + { + "appid": 960700, + "normalized_name": "guns 'n guts" + }, + { + "appid": 960710, + "normalized_name": "don't give up a cynical tale" + }, + { + "appid": 960730, + "normalized_name": "メモリーズオフ~それから~" + }, + { + "appid": 960740, + "normalized_name": "girls' civilization" + }, + { + "appid": 960800, + "normalized_name": "second world air war s" + }, + { + "appid": 960820, + "normalized_name": "data mining 2" + }, + { + "appid": 960900, + "normalized_name": "lornsword winter chronicle" + }, + { + "appid": 960910, + "normalized_name": "heavy rain" + }, + { + "appid": 960940, + "normalized_name": "vriczat the virtual reality cricket game" + }, + { + "appid": 960980, + "normalized_name": "apsulov end of gods" + }, + { + "appid": 960990, + "normalized_name": "beyond two souls" + }, + { + "appid": 961000, + "normalized_name": "survivors left x" + }, + { + "appid": 961010, + "normalized_name": "the hand of glory" + }, + { + "appid": 961030, + "normalized_name": "node" + }, + { + "appid": 961040, + "normalized_name": "down to hell" + }, + { + "appid": 961060, + "normalized_name": "gameellen" + }, + { + "appid": 961110, + "normalized_name": "prixel" + }, + { + "appid": 961190, + "normalized_name": "abstract hell" + }, + { + "appid": 961200, + "normalized_name": "predecessor" + }, + { + "appid": 961210, + "normalized_name": "7 minute hop" + }, + { + "appid": 961220, + "normalized_name": "sanatorium purgatorium" + }, + { + "appid": 961230, + "normalized_name": "backgammon chess & checkers" + }, + { + "appid": 961240, + "normalized_name": "castleguard" + }, + { + "appid": 961260, + "normalized_name": "hell o ween" + }, + { + "appid": 961280, + "normalized_name": "cargo cult" + }, + { + "appid": 961410, + "normalized_name": "red blue" + }, + { + "appid": 961420, + "normalized_name": "vile" + }, + { + "appid": 961450, + "normalized_name": "echeese zone" + }, + { + "appid": 961490, + "normalized_name": "travis strikes again no more heroes" + }, + { + "appid": 961510, + "normalized_name": "marisaland legacy" + }, + { + "appid": 961540, + "normalized_name": "config wars" + }, + { + "appid": 961560, + "normalized_name": "dark trail" + }, + { + "appid": 961620, + "normalized_name": "flashback" + }, + { + "appid": 961640, + "normalized_name": "the tower of five hearts" + }, + { + "appid": 961660, + "normalized_name": "nowhere patrol" + }, + { + "appid": 961680, + "normalized_name": "rampage online" + }, + { + "appid": 961700, + "normalized_name": "nekocharm" + }, + { + "appid": 961710, + "normalized_name": "puzzle out vr" + }, + { + "appid": 961750, + "normalized_name": "rope racer o'neon" + }, + { + "appid": 961850, + "normalized_name": "circle of sumo" + }, + { + "appid": 961860, + "normalized_name": "super blasting boy" + }, + { + "appid": 961870, + "normalized_name": "toltec and the mysteries of the secret island" + }, + { + "appid": 961910, + "normalized_name": "charm tale 2 mermaid lagoon" + }, + { + "appid": 961920, + "normalized_name": "romantic journey" + }, + { + "appid": 962050, + "normalized_name": "puzzles for smart birds" + }, + { + "appid": 962060, + "normalized_name": "heaven & hell 2" + }, + { + "appid": 962090, + "normalized_name": "common'hood" + }, + { + "appid": 962130, + "normalized_name": "grounded" + }, + { + "appid": 962150, + "normalized_name": "tactics v \"obsidian brigade\"" + }, + { + "appid": 962170, + "normalized_name": "legends" + }, + { + "appid": 962220, + "normalized_name": "singularity tactics arena" + }, + { + "appid": 962240, + "normalized_name": "tiger tank 59 a gun" + }, + { + "appid": 962250, + "normalized_name": "solitaire learn the flags!" + }, + { + "appid": 962270, + "normalized_name": "time virus" + }, + { + "appid": 962280, + "normalized_name": "fantom feast" + }, + { + "appid": 962290, + "normalized_name": "天罡星宿海 the sea of tiangang xinsu" + }, + { + "appid": 962310, + "normalized_name": "flip out!" + }, + { + "appid": 962340, + "normalized_name": "wallenda" + }, + { + "appid": 962360, + "normalized_name": "welove" + }, + { + "appid": 962370, + "normalized_name": "the silver crusade aoorha axeman" + }, + { + "appid": 962380, + "normalized_name": "hot fit!" + }, + { + "appid": 962400, + "normalized_name": "granny" + }, + { + "appid": 962490, + "normalized_name": "机能女孩 energy girl" + }, + { + "appid": 962510, + "normalized_name": "the darkest woods 2" + }, + { + "appid": 962580, + "normalized_name": "summer in mara" + }, + { + "appid": 962610, + "normalized_name": "iscream" + }, + { + "appid": 962630, + "normalized_name": "transient extended" + }, + { + "appid": 962650, + "normalized_name": "paroniria 梦缚" + }, + { + "appid": 962700, + "normalized_name": "chronicle of innsmouth mountains of madness" + }, + { + "appid": 962710, + "normalized_name": "we must praise our glorious leader the flumf" + }, + { + "appid": 962730, + "normalized_name": "skater xl the skateboarding game" + }, + { + "appid": 962810, + "normalized_name": "dark roll" + }, + { + "appid": 962860, + "normalized_name": "madland" + }, + { + "appid": 962950, + "normalized_name": "执行人 executor" + }, + { + "appid": 962970, + "normalized_name": "my 1/6 lover" + }, + { + "appid": 963000, + "normalized_name": "frog detective 1 the haunted island" + }, + { + "appid": 963020, + "normalized_name": "ponkle" + }, + { + "appid": 963150, + "normalized_name": "pirate survival fantasy shooter" + }, + { + "appid": 963170, + "normalized_name": "citadale the ancestral strain" + }, + { + "appid": 963180, + "normalized_name": "trash rage" + }, + { + "appid": 963190, + "normalized_name": "pixel world unity chan!" + }, + { + "appid": 963210, + "normalized_name": "another sight hodge's journey" + }, + { + "appid": 963220, + "normalized_name": "the bluecoats north & south" + }, + { + "appid": 963230, + "normalized_name": "cute puzzle max" + }, + { + "appid": 963280, + "normalized_name": "talk to strangers" + }, + { + "appid": 963290, + "normalized_name": "heroes of fortunia" + }, + { + "appid": 963300, + "normalized_name": "angel devil elf and me!" + }, + { + "appid": 963330, + "normalized_name": "nya nya nya girls (ʻʻʻ)_(=^・ω・^=)_(ʻʻʻ)" + }, + { + "appid": 963370, + "normalized_name": "pricerpg" + }, + { + "appid": 963400, + "normalized_name": "scp blackout" + }, + { + "appid": 963450, + "normalized_name": "the eternal castle [remastered]" + }, + { + "appid": 963470, + "normalized_name": "a sound plan" + }, + { + "appid": 963490, + "normalized_name": "abyss manager" + }, + { + "appid": 963510, + "normalized_name": "intersolar overdrive" + }, + { + "appid": 963570, + "normalized_name": "smoked" + }, + { + "appid": 963590, + "normalized_name": "cubic factory" + }, + { + "appid": 963660, + "normalized_name": "write word" + }, + { + "appid": 963670, + "normalized_name": "project flesh" + }, + { + "appid": 963680, + "normalized_name": "clad in iron sakhalin 1904" + }, + { + "appid": 963690, + "normalized_name": "hentai girl hime" + }, + { + "appid": 963710, + "normalized_name": "lost in vivo" + }, + { + "appid": 963720, + "normalized_name": "beasts shall rise" + }, + { + "appid": 963730, + "normalized_name": "it lurks! a noir horror rpg." + }, + { + "appid": 963770, + "normalized_name": "welcome to... chichester 1/redux the spy of america and the long vacation" + }, + { + "appid": 963830, + "normalized_name": "a flappy bird in real life" + }, + { + "appid": 963860, + "normalized_name": "invaders from dimension x" + }, + { + "appid": 963870, + "normalized_name": "valor & victory" + }, + { + "appid": 963880, + "normalized_name": "東方時空機行 ~ iris machina's journey" + }, + { + "appid": 963890, + "normalized_name": "pace chasers" + }, + { + "appid": 963900, + "normalized_name": "chromatic aberration" + }, + { + "appid": 963910, + "normalized_name": "they that feast" + }, + { + "appid": 963930, + "normalized_name": "contractors" + }, + { + "appid": 963950, + "normalized_name": "paws in the maze" + }, + { + "appid": 963960, + "normalized_name": "neonarcade adventure puzzle muse" + }, + { + "appid": 963980, + "normalized_name": "starboy" + }, + { + "appid": 964020, + "normalized_name": "make your kingdom" + }, + { + "appid": 964040, + "normalized_name": "snood" + }, + { + "appid": 964050, + "normalized_name": "turn the mirror please." + }, + { + "appid": 964060, + "normalized_name": "brainmelter deluxe" + }, + { + "appid": 964070, + "normalized_name": "aim theory trainer" + }, + { + "appid": 964090, + "normalized_name": "license to clone" + }, + { + "appid": 964100, + "normalized_name": "a meadow piece" + }, + { + "appid": 964110, + "normalized_name": "mongirltile" + }, + { + "appid": 964130, + "normalized_name": "my colony" + }, + { + "appid": 964150, + "normalized_name": "chemical chimpet" + }, + { + "appid": 964170, + "normalized_name": "pombotroll" + }, + { + "appid": 964180, + "normalized_name": "late'o'clock" + }, + { + "appid": 964210, + "normalized_name": "mr husky" + }, + { + "appid": 964220, + "normalized_name": "vampire bloody star x" + }, + { + "appid": 964230, + "normalized_name": "future gpx cyber formula sin vier" + }, + { + "appid": 964240, + "normalized_name": "夜之归途 night homing" + }, + { + "appid": 964320, + "normalized_name": "mega punchy golf" + }, + { + "appid": 964340, + "normalized_name": "fant kids matching game" + }, + { + "appid": 964350, + "normalized_name": "at home alone" + }, + { + "appid": 964390, + "normalized_name": "australian road trains" + }, + { + "appid": 964420, + "normalized_name": "heavyweight transport simulator 3" + }, + { + "appid": 964440, + "normalized_name": "hell is others" + }, + { + "appid": 964450, + "normalized_name": "control freak" + }, + { + "appid": 964460, + "normalized_name": "vr rome" + }, + { + "appid": 964490, + "normalized_name": "teom the enemy of mine" + }, + { + "appid": 964570, + "normalized_name": "dcl the game" + }, + { + "appid": 964620, + "normalized_name": "shakes on a plane" + }, + { + "appid": 964650, + "normalized_name": "invasion machine" + }, + { + "appid": 964700, + "normalized_name": "dear apothecary" + }, + { + "appid": 964750, + "normalized_name": "nelson and the magic cauldron" + }, + { + "appid": 964760, + "normalized_name": "believe paranormal psychic adventure" + }, + { + "appid": 964770, + "normalized_name": "deathdays end" + }, + { + "appid": 964800, + "normalized_name": "prodeus" + }, + { + "appid": 964810, + "normalized_name": "shell" + }, + { + "appid": 964910, + "normalized_name": "sunshine & overcast" + }, + { + "appid": 964920, + "normalized_name": "space tycoon | 星际大亨" + }, + { + "appid": 964960, + "normalized_name": "plunder! all hands ahoy" + }, + { + "appid": 964990, + "normalized_name": "storm boy" + }, + { + "appid": 965000, + "normalized_name": "driftking 2d" + }, + { + "appid": 965010, + "normalized_name": "trinoline all ages version" + }, + { + "appid": 965030, + "normalized_name": "run naked woman run" + }, + { + "appid": 965080, + "normalized_name": "江湖求生 ganghood survival" + }, + { + "appid": 965110, + "normalized_name": "space gladiator" + }, + { + "appid": 965120, + "normalized_name": "能量冲击 energy shock" + }, + { + "appid": 965140, + "normalized_name": "vr smash park" + }, + { + "appid": 965150, + "normalized_name": "ascending dojo" + }, + { + "appid": 965180, + "normalized_name": "骑士与魔法战争" + }, + { + "appid": 965200, + "normalized_name": "walking zombie 2" + }, + { + "appid": 965210, + "normalized_name": "café international" + }, + { + "appid": 965230, + "normalized_name": "doraemon story of seasons" + }, + { + "appid": 965240, + "normalized_name": "akabeth tactics" + }, + { + "appid": 965300, + "normalized_name": "the settlers heritage of kings history" + }, + { + "appid": 965310, + "normalized_name": "the settlers rise of an empire history" + }, + { + "appid": 965320, + "normalized_name": "the settlers 7 history" + }, + { + "appid": 965340, + "normalized_name": "🚀 human rocket person" + }, + { + "appid": 965360, + "normalized_name": "i can gun" + }, + { + "appid": 965390, + "normalized_name": "helga euphorium's song" + }, + { + "appid": 965410, + "normalized_name": "desolate city the bloody dawn enhanced" + }, + { + "appid": 965470, + "normalized_name": "rogo" + }, + { + "appid": 965490, + "normalized_name": "propaganda llama" + }, + { + "appid": 965510, + "normalized_name": "neon junctions" + }, + { + "appid": 965540, + "normalized_name": "bombyman" + }, + { + "appid": 965580, + "normalized_name": "root" + }, + { + "appid": 965590, + "normalized_name": "sagrada" + }, + { + "appid": 965600, + "normalized_name": "raiders of the north sea" + }, + { + "appid": 965610, + "normalized_name": "reiner knizia yellow & yangtze" + }, + { + "appid": 965620, + "normalized_name": "wings of glory" + }, + { + "appid": 965630, + "normalized_name": "war yards" + }, + { + "appid": 965640, + "normalized_name": "horror legends" + }, + { + "appid": 965650, + "normalized_name": "piggy chase" + }, + { + "appid": 965670, + "normalized_name": "niplheim's hunter branded azel" + }, + { + "appid": 965680, + "normalized_name": "boomerang fu" + }, + { + "appid": 965710, + "normalized_name": "survive zombies" + }, + { + "appid": 965730, + "normalized_name": "evoke" + }, + { + "appid": 965760, + "normalized_name": "super darts vr" + }, + { + "appid": 965810, + "normalized_name": "kara no shojo" + }, + { + "appid": 965820, + "normalized_name": "沉睡的法则 things as they are" + }, + { + "appid": 965830, + "normalized_name": "deported drain the swamp" + }, + { + "appid": 965860, + "normalized_name": "snownight" + }, + { + "appid": 965880, + "normalized_name": "whimsical quest" + }, + { + "appid": 965890, + "normalized_name": "我是渣男 dishonest" + }, + { + "appid": 965900, + "normalized_name": "animal force" + }, + { + "appid": 965910, + "normalized_name": "moreau" + }, + { + "appid": 965920, + "normalized_name": "rocketgo" + }, + { + "appid": 965940, + "normalized_name": "qu tros" + }, + { + "appid": 965960, + "normalized_name": "vretired" + }, + { + "appid": 965970, + "normalized_name": "my exotic farm" + }, + { + "appid": 965990, + "normalized_name": "destiny's sword" + }, + { + "appid": 966000, + "normalized_name": "detective sherlock pug hidden object. relaxing games" + }, + { + "appid": 966010, + "normalized_name": "anstorm" + }, + { + "appid": 966020, + "normalized_name": "trivia clash adult film star" + }, + { + "appid": 966070, + "normalized_name": "relow" + }, + { + "appid": 966090, + "normalized_name": "canasta 3d premium" + }, + { + "appid": 966100, + "normalized_name": "io interloper" + }, + { + "appid": 966140, + "normalized_name": "magicjam" + }, + { + "appid": 966160, + "normalized_name": "seek love" + }, + { + "appid": 966180, + "normalized_name": "slime research" + }, + { + "appid": 966190, + "normalized_name": "lost marbles" + }, + { + "appid": 966210, + "normalized_name": "tippy tree" + }, + { + "appid": 966240, + "normalized_name": "ocean's treasures" + }, + { + "appid": 966250, + "normalized_name": "homestead" + }, + { + "appid": 966260, + "normalized_name": "shadows of steel moons" + }, + { + "appid": 966320, + "normalized_name": "later alligator" + }, + { + "appid": 966330, + "normalized_name": "flower" + }, + { + "appid": 966370, + "normalized_name": "bravado" + }, + { + "appid": 966400, + "normalized_name": "speaking simulator" + }, + { + "appid": 966420, + "normalized_name": "hell breaker" + }, + { + "appid": 966430, + "normalized_name": "neverinth" + }, + { + "appid": 966450, + "normalized_name": "i'm the koala" + }, + { + "appid": 966460, + "normalized_name": "undress tournament" + }, + { + "appid": 966470, + "normalized_name": "tale of ninja fall of the miyoshi" + }, + { + "appid": 966500, + "normalized_name": "隆中策" + }, + { + "appid": 966530, + "normalized_name": "you have a drunk friend" + }, + { + "appid": 966540, + "normalized_name": "bedtime blues" + }, + { + "appid": 966560, + "normalized_name": "rogan the thief in the castle" + }, + { + "appid": 966580, + "normalized_name": "zquirrels jump" + }, + { + "appid": 966590, + "normalized_name": "beat blocks vr" + }, + { + "appid": 966630, + "normalized_name": "qop 4" + }, + { + "appid": 966650, + "normalized_name": "raid of regions" + }, + { + "appid": 966660, + "normalized_name": "invisible fist" + }, + { + "appid": 966670, + "normalized_name": "the wanderer frankenstein’s creature" + }, + { + "appid": 966680, + "normalized_name": "red matter" + }, + { + "appid": 966720, + "normalized_name": "pumped bmx pro" + }, + { + "appid": 966730, + "normalized_name": "leprechaun shadow" + }, + { + "appid": 966870, + "normalized_name": "sinvr" + }, + { + "appid": 967050, + "normalized_name": "pacify" + }, + { + "appid": 967070, + "normalized_name": "blood broker" + }, + { + "appid": 967100, + "normalized_name": "curfew" + }, + { + "appid": 967120, + "normalized_name": "cursed mansion" + }, + { + "appid": 967210, + "normalized_name": "spark five" + }, + { + "appid": 967240, + "normalized_name": "monkey king hero is back" + }, + { + "appid": 967250, + "normalized_name": "doka 2 kishki" + }, + { + "appid": 967290, + "normalized_name": "mò the frog" + }, + { + "appid": 967330, + "normalized_name": "starfighter infinity" + }, + { + "appid": 967370, + "normalized_name": "dungeons of necromancers" + }, + { + "appid": 967390, + "normalized_name": "chronos before the ashes" + }, + { + "appid": 967410, + "normalized_name": "creatures inc" + }, + { + "appid": 967430, + "normalized_name": "nights at the clown maze" + }, + { + "appid": 967440, + "normalized_name": "kick the anime simulator" + }, + { + "appid": 967450, + "normalized_name": "special counter force attack" + }, + { + "appid": 967460, + "normalized_name": "red eclipse" + }, + { + "appid": 967490, + "normalized_name": "microsoft maquette" + }, + { + "appid": 967750, + "normalized_name": "aerobots vr" + }, + { + "appid": 967910, + "normalized_name": "galactic incoming" + }, + { + "appid": 967940, + "normalized_name": "assault on metaltron" + }, + { + "appid": 967950, + "normalized_name": "soul tech millennium" + }, + { + "appid": 967960, + "normalized_name": "spray dynamite x radioactive insects" + }, + { + "appid": 967970, + "normalized_name": "neon breaker" + }, + { + "appid": 968170, + "normalized_name": "[it's possible] classic" + }, + { + "appid": 968190, + "normalized_name": "angels of ryina" + }, + { + "appid": 968200, + "normalized_name": "jump jumpz" + }, + { + "appid": 968210, + "normalized_name": "predicate" + }, + { + "appid": 968250, + "normalized_name": "king of retail" + }, + { + "appid": 968290, + "normalized_name": "deported 2 build that wall" + }, + { + "appid": 968310, + "normalized_name": "breathe peace world" + }, + { + "appid": 968320, + "normalized_name": "alpha & beta" + }, + { + "appid": 968350, + "normalized_name": "hotel sowls" + }, + { + "appid": 968370, + "normalized_name": "the blind prophet" + }, + { + "appid": 968380, + "normalized_name": "perfect life vr" + }, + { + "appid": 968410, + "normalized_name": "astrogenesis" + }, + { + "appid": 968420, + "normalized_name": "fururu project ruby" + }, + { + "appid": 968430, + "normalized_name": "colonization of the moon" + }, + { + "appid": 968440, + "normalized_name": "artist idle" + }, + { + "appid": 968450, + "normalized_name": "hentai puzzle classic" + }, + { + "appid": 968460, + "normalized_name": "mine royale battle royale" + }, + { + "appid": 968470, + "normalized_name": "bunny mahjo" + }, + { + "appid": 968480, + "normalized_name": "dimensum bizzarre huntseeker" + }, + { + "appid": 968500, + "normalized_name": "a bewitching revolution" + }, + { + "appid": 968530, + "normalized_name": "decks of dexterity" + }, + { + "appid": 968540, + "normalized_name": "too hot!" + }, + { + "appid": 968550, + "normalized_name": "tinytopia" + }, + { + "appid": 968570, + "normalized_name": "chaordic" + }, + { + "appid": 968580, + "normalized_name": "halloween puzzles" + }, + { + "appid": 968590, + "normalized_name": "super urban wizard" + }, + { + "appid": 968600, + "normalized_name": "angry punisher" + }, + { + "appid": 968620, + "normalized_name": "bomb n' bats" + }, + { + "appid": 968640, + "normalized_name": "zet" + }, + { + "appid": 968690, + "normalized_name": "the warrior" + }, + { + "appid": 968700, + "normalized_name": "the kite" + }, + { + "appid": 968710, + "normalized_name": "hazelnut bastille" + }, + { + "appid": 968730, + "normalized_name": "worlds collide" + }, + { + "appid": 968760, + "normalized_name": "blood card 2 dark mist" + }, + { + "appid": 968770, + "normalized_name": "iron vulture" + }, + { + "appid": 968790, + "normalized_name": "dynasty warriors 7 xtreme legends" + }, + { + "appid": 968800, + "normalized_name": "necro story" + }, + { + "appid": 968820, + "normalized_name": "stormhill mystery family shadows" + }, + { + "appid": 968860, + "normalized_name": "defentures" + }, + { + "appid": 968870, + "normalized_name": "close to the sun" + }, + { + "appid": 968920, + "normalized_name": "it's not a moon" + }, + { + "appid": 968930, + "normalized_name": "the fur in me" + }, + { + "appid": 968940, + "normalized_name": "a night with natalie vr" + }, + { + "appid": 968950, + "normalized_name": "sakura mmo 2" + }, + { + "appid": 968970, + "normalized_name": "lumberjack's dynasty" + }, + { + "appid": 969060, + "normalized_name": "mikapyon" + }, + { + "appid": 969130, + "normalized_name": "the lost soul" + }, + { + "appid": 969180, + "normalized_name": "tales of the aswang vr" + }, + { + "appid": 969190, + "normalized_name": "cult of the glitch king" + }, + { + "appid": 969200, + "normalized_name": "okunoka madness" + }, + { + "appid": 969220, + "normalized_name": "up in the air" + }, + { + "appid": 969230, + "normalized_name": "death space" + }, + { + "appid": 969240, + "normalized_name": "siam twinstick" + }, + { + "appid": 969250, + "normalized_name": "flynguin station" + }, + { + "appid": 969330, + "normalized_name": "the way of wrath" + }, + { + "appid": 969340, + "normalized_name": "the dungeon paradox" + }, + { + "appid": 969350, + "normalized_name": "hentai memorama" + }, + { + "appid": 969420, + "normalized_name": "dereliction" + }, + { + "appid": 969450, + "normalized_name": "smoking snakes" + }, + { + "appid": 969480, + "normalized_name": "warp glider" + }, + { + "appid": 969530, + "normalized_name": "cope island adrift" + }, + { + "appid": 969540, + "normalized_name": "pattern" + }, + { + "appid": 969690, + "normalized_name": "brave hero yuusha ex" + }, + { + "appid": 969700, + "normalized_name": "nekomiko" + }, + { + "appid": 969740, + "normalized_name": "yearning" + }, + { + "appid": 969760, + "normalized_name": "omno" + }, + { + "appid": 969940, + "normalized_name": "car transporter 2013" + }, + { + "appid": 969950, + "normalized_name": "woodcutter simulator 2011" + }, + { + "appid": 969970, + "normalized_name": "battlerush ardennes assault" + }, + { + "appid": 969990, + "normalized_name": "spongebob squarepants battle for bikini bottom rehydrated" + }, + { + "appid": 970000, + "normalized_name": "puzzles for smart horses" + }, + { + "appid": 970030, + "normalized_name": "gems of magic lost family" + }, + { + "appid": 970040, + "normalized_name": "psychoverse city" + }, + { + "appid": 970090, + "normalized_name": "snares of ruin zero" + }, + { + "appid": 970130, + "normalized_name": "trinity vr" + }, + { + "appid": 970140, + "normalized_name": "reynard" + }, + { + "appid": 970150, + "normalized_name": "hentai plus girl" + }, + { + "appid": 970180, + "normalized_name": "3 days in the abyss" + }, + { + "appid": 970190, + "normalized_name": "sierra madre the wild west" + }, + { + "appid": 970200, + "normalized_name": "campido" + }, + { + "appid": 970220, + "normalized_name": "ancra" + }, + { + "appid": 970260, + "normalized_name": "hulì the mage" + }, + { + "appid": 970300, + "normalized_name": "re.poly" + }, + { + "appid": 970400, + "normalized_name": "our lovely escape" + }, + { + "appid": 970450, + "normalized_name": "descent of man" + }, + { + "appid": 970460, + "normalized_name": "spot the oddity" + }, + { + "appid": 970470, + "normalized_name": "emerald shores" + }, + { + "appid": 970500, + "normalized_name": "秦殇 (prince of qin)" + }, + { + "appid": 970510, + "normalized_name": "蓝宝石般的被害妄想少女/damsel with persecutory delusion" + }, + { + "appid": 970530, + "normalized_name": "黑暗料理?!" + }, + { + "appid": 970560, + "normalized_name": "steins;gate my darling's embrace" + }, + { + "appid": 970570, + "normalized_name": "chaos;child" + }, + { + "appid": 970580, + "normalized_name": "cubicity slide puzzle" + }, + { + "appid": 970600, + "normalized_name": "paranoia deliver me" + }, + { + "appid": 970710, + "normalized_name": "kolumno" + }, + { + "appid": 970720, + "normalized_name": "dramaqueen" + }, + { + "appid": 970730, + "normalized_name": "ball out" + }, + { + "appid": 970760, + "normalized_name": "khaos wind" + }, + { + "appid": 970800, + "normalized_name": "short circuit vr" + }, + { + "appid": 970810, + "normalized_name": "julie's sweets" + }, + { + "appid": 970820, + "normalized_name": "burnouts the igne mori" + }, + { + "appid": 970830, + "normalized_name": "the dungeon of naheulbeuk the amulet of chaos" + }, + { + "appid": 970840, + "normalized_name": "overpass" + }, + { + "appid": 970850, + "normalized_name": "1001 jigsaw. legends of mystery" + }, + { + "appid": 970870, + "normalized_name": "1001 jigsaw. earth chronicles" + }, + { + "appid": 970880, + "normalized_name": "1001 jigsaw. world tour australian puzzles" + }, + { + "appid": 970890, + "normalized_name": "1001 jigsaw. world tour london" + }, + { + "appid": 970900, + "normalized_name": "1001 jigsaw. home sweet home" + }, + { + "appid": 970910, + "normalized_name": "1001 jigsaw. world tour great america" + }, + { + "appid": 970940, + "normalized_name": "the unicorn princess" + }, + { + "appid": 970960, + "normalized_name": "rebel cops" + }, + { + "appid": 970970, + "normalized_name": "crappy tube" + }, + { + "appid": 970980, + "normalized_name": "vr interactive trailer runes" + }, + { + "appid": 971030, + "normalized_name": "skatebird" + }, + { + "appid": 971040, + "normalized_name": "pipeline vr" + }, + { + "appid": 971060, + "normalized_name": "mystery case files the countess collector's" + }, + { + "appid": 971070, + "normalized_name": "dark parables the match girl's lost paradise collector's" + }, + { + "appid": 971080, + "normalized_name": "shadow wolf mysteries under the crimson moon collector's" + }, + { + "appid": 971090, + "normalized_name": "hidden object home makeover" + }, + { + "appid": 971120, + "normalized_name": "forgiveness escape room" + }, + { + "appid": 971150, + "normalized_name": "b.o.t.s. and the robofriends" + }, + { + "appid": 971160, + "normalized_name": "möbius front '83" + }, + { + "appid": 971180, + "normalized_name": "8bit arena" + }, + { + "appid": 971190, + "normalized_name": "crystal corruption reclamation" + }, + { + "appid": 971210, + "normalized_name": "chronobreach" + }, + { + "appid": 971220, + "normalized_name": "rogue monster rush" + }, + { + "appid": 971230, + "normalized_name": "daedalic complex" + }, + { + "appid": 971280, + "normalized_name": "bomber arena" + }, + { + "appid": 971340, + "normalized_name": "orc towers vr" + }, + { + "appid": 971350, + "normalized_name": "robert rodriguez’s the limit an immersive cinema experience" + }, + { + "appid": 971390, + "normalized_name": "bulls town" + }, + { + "appid": 971430, + "normalized_name": "from beyond prologue" + }, + { + "appid": 971460, + "normalized_name": "fps training" + }, + { + "appid": 971470, + "normalized_name": "scary teacher 3d" + }, + { + "appid": 971480, + "normalized_name": "kitten love emulator" + }, + { + "appid": 971500, + "normalized_name": "bubble burst" + }, + { + "appid": 971530, + "normalized_name": "voidgate" + }, + { + "appid": 971540, + "normalized_name": "sams" + }, + { + "appid": 971610, + "normalized_name": "gyro boss dx" + }, + { + "appid": 971620, + "normalized_name": "puyo puyo champions" + }, + { + "appid": 971640, + "normalized_name": "dragonscales 5 the frozen tomb" + }, + { + "appid": 971650, + "normalized_name": "failspace" + }, + { + "appid": 971680, + "normalized_name": "montaro re" + }, + { + "appid": 971690, + "normalized_name": "cake bash" + }, + { + "appid": 971700, + "normalized_name": "alara prime" + }, + { + "appid": 971710, + "normalized_name": "to hell with dave" + }, + { + "appid": 971740, + "normalized_name": "the wizard's tower" + }, + { + "appid": 971780, + "normalized_name": "elemental connection" + }, + { + "appid": 971850, + "normalized_name": "ships that fight underground (stfu)" + }, + { + "appid": 971880, + "normalized_name": "solitaire mystery four seasons" + }, + { + "appid": 971900, + "normalized_name": "draft day sports pro basketball 2019" + }, + { + "appid": 972010, + "normalized_name": "raiders! forsaken earth" + }, + { + "appid": 972050, + "normalized_name": "super captain 3d" + }, + { + "appid": 972080, + "normalized_name": "bots rush" + }, + { + "appid": 972160, + "normalized_name": "the witch's love diary" + }, + { + "appid": 972180, + "normalized_name": "geno the fallen king" + }, + { + "appid": 972200, + "normalized_name": "祛魅·入灭(祛魅2)" + }, + { + "appid": 972230, + "normalized_name": "watchfamily" + }, + { + "appid": 972280, + "normalized_name": "deep space shooter" + }, + { + "appid": 972290, + "normalized_name": "flyingmetalsuit" + }, + { + "appid": 972420, + "normalized_name": "houdini's castle" + }, + { + "appid": 972480, + "normalized_name": "dog in a box" + }, + { + "appid": 972500, + "normalized_name": "fightbit" + }, + { + "appid": 972510, + "normalized_name": "thingamajig" + }, + { + "appid": 972520, + "normalized_name": "the misadventure of melon" + }, + { + "appid": 972560, + "normalized_name": "termite" + }, + { + "appid": 972600, + "normalized_name": "block pooper 9" + }, + { + "appid": 972620, + "normalized_name": "gems kingdom" + }, + { + "appid": 972650, + "normalized_name": "actual volleyball" + }, + { + "appid": 972660, + "normalized_name": "spiritfarer farewell" + }, + { + "appid": 972740, + "normalized_name": "kobold chapter i" + }, + { + "appid": 972760, + "normalized_name": "secret saga xamadeon stone" + }, + { + "appid": 972770, + "normalized_name": "thousand threads" + }, + { + "appid": 972810, + "normalized_name": "town's stranger" + }, + { + "appid": 972850, + "normalized_name": "the blame" + }, + { + "appid": 972890, + "normalized_name": "rideop vr thrill ride experience" + }, + { + "appid": 972910, + "normalized_name": "timore 6" + }, + { + "appid": 972940, + "normalized_name": "stepbystep" + }, + { + "appid": 972950, + "normalized_name": "dragonsnake vr" + }, + { + "appid": 972960, + "normalized_name": "invasion" + }, + { + "appid": 972990, + "normalized_name": "hopper rabbit" + }, + { + "appid": 973000, + "normalized_name": "die young prologue" + }, + { + "appid": 973040, + "normalized_name": "kobold slayer" + }, + { + "appid": 973050, + "normalized_name": "ashes of the night" + }, + { + "appid": 973060, + "normalized_name": "恶魔迷宫 2 |evil maze 2 | 惡魔迷宮 2" + }, + { + "appid": 973070, + "normalized_name": "bound by blades" + }, + { + "appid": 973090, + "normalized_name": "toilet simulator" + }, + { + "appid": 973110, + "normalized_name": "hay day farm 2019 卡通农场" + }, + { + "appid": 973170, + "normalized_name": "roboball" + }, + { + "appid": 973200, + "normalized_name": "case simulator weapons and armors" + }, + { + "appid": 973220, + "normalized_name": "sinkr 2" + }, + { + "appid": 973230, + "normalized_name": "we who are about to die" + }, + { + "appid": 973240, + "normalized_name": "anime and your life" + }, + { + "appid": 973250, + "normalized_name": "altered" + }, + { + "appid": 973300, + "normalized_name": "super lolicon puzzle simulator 2019" + }, + { + "appid": 973310, + "normalized_name": "symphony of stars" + }, + { + "appid": 973320, + "normalized_name": "dystopian nights" + }, + { + "appid": 973350, + "normalized_name": "warriors of ragnarök" + }, + { + "appid": 973390, + "normalized_name": "empires the rise" + }, + { + "appid": 973400, + "normalized_name": "仙谕" + }, + { + "appid": 973410, + "normalized_name": "the elementalist" + }, + { + "appid": 973440, + "normalized_name": "otokomizu~漢水~" + }, + { + "appid": 973450, + "normalized_name": "ancient abyss" + }, + { + "appid": 973550, + "normalized_name": "yuuki's party night" + }, + { + "appid": 973560, + "normalized_name": "biluo story" + }, + { + "appid": 973580, + "normalized_name": "sniper ghost warrior contracts" + }, + { + "appid": 973640, + "normalized_name": "the breach a vr escape game" + }, + { + "appid": 973690, + "normalized_name": "antrum" + }, + { + "appid": 973700, + "normalized_name": "disassembly vr" + }, + { + "appid": 973720, + "normalized_name": "element z" + }, + { + "appid": 973760, + "normalized_name": "thronebreaker the witcher tales" + }, + { + "appid": 973800, + "normalized_name": "dragon world" + }, + { + "appid": 973810, + "normalized_name": "journey to the savage planet" + }, + { + "appid": 973850, + "normalized_name": "gorytale" + }, + { + "appid": 973860, + "normalized_name": "cypest underground" + }, + { + "appid": 974010, + "normalized_name": "zero spring episode 2" + }, + { + "appid": 974040, + "normalized_name": "battlemore" + }, + { + "appid": 974060, + "normalized_name": "sleigh runner" + }, + { + "appid": 974070, + "normalized_name": "juggly" + }, + { + "appid": 974090, + "normalized_name": "gravity bone" + }, + { + "appid": 974110, + "normalized_name": "zeroptian invasion" + }, + { + "appid": 974140, + "normalized_name": "xtractor defender" + }, + { + "appid": 974150, + "normalized_name": "welltown" + }, + { + "appid": 974160, + "normalized_name": "stupid cupid" + }, + { + "appid": 974180, + "normalized_name": "falnarion tactics" + }, + { + "appid": 974200, + "normalized_name": "异霊 皓月空华" + }, + { + "appid": 974220, + "normalized_name": "memorise creation" + }, + { + "appid": 974240, + "normalized_name": "detective escape1" + }, + { + "appid": 974310, + "normalized_name": "a matter of time" + }, + { + "appid": 974320, + "normalized_name": "hentai dreams" + }, + { + "appid": 974370, + "normalized_name": "chop is dish" + }, + { + "appid": 974390, + "normalized_name": "metaloid origin" + }, + { + "appid": 974420, + "normalized_name": "sexy girls" + }, + { + "appid": 974430, + "normalized_name": "galactic campaign" + }, + { + "appid": 974450, + "normalized_name": "三和大神" + }, + { + "appid": 974480, + "normalized_name": "echoes of mystralia" + }, + { + "appid": 974530, + "normalized_name": "draft day sports pro football 2019" + }, + { + "appid": 974600, + "normalized_name": "retro wing prime" + }, + { + "appid": 974620, + "normalized_name": "ultrawings flat" + }, + { + "appid": 974670, + "normalized_name": "dream girls vr" + }, + { + "appid": 974680, + "normalized_name": "a night with natalie" + }, + { + "appid": 974750, + "normalized_name": "the crazy cookies!" + }, + { + "appid": 974830, + "normalized_name": "the art theft by jay doherty" + }, + { + "appid": 974840, + "normalized_name": "a show of kindness" + }, + { + "appid": 974850, + "normalized_name": "flan" + }, + { + "appid": 974860, + "normalized_name": "condition red" + }, + { + "appid": 974870, + "normalized_name": "firework" + }, + { + "appid": 974910, + "normalized_name": "magical diary wolf hall" + }, + { + "appid": 974920, + "normalized_name": "new adult reality" + }, + { + "appid": 974930, + "normalized_name": "eternal realm ii dark matter" + }, + { + "appid": 974950, + "normalized_name": "damnosaur" + }, + { + "appid": 974970, + "normalized_name": "blocky mcblockface" + }, + { + "appid": 975000, + "normalized_name": "no thank you!!!" + }, + { + "appid": 975020, + "normalized_name": "the spirit master of retarnia conqueror of the labyrinth" + }, + { + "appid": 975050, + "normalized_name": "orphan of the petal" + }, + { + "appid": 975100, + "normalized_name": "justice fallen clan" + }, + { + "appid": 975110, + "normalized_name": "no crossing" + }, + { + "appid": 975120, + "normalized_name": "~necromancy~emily's escape" + }, + { + "appid": 975150, + "normalized_name": "resolutiion" + }, + { + "appid": 975160, + "normalized_name": "ankh guardian treasure of the demon's temple/ゴッド・オブ・ウォール 魔宮の秘宝" + }, + { + "appid": 975200, + "normalized_name": "red points" + }, + { + "appid": 975220, + "normalized_name": "a business power" + }, + { + "appid": 975230, + "normalized_name": "das geisterschiff / the ghost ship" + }, + { + "appid": 975240, + "normalized_name": "hentai shooter 3d christmas party" + }, + { + "appid": 975270, + "normalized_name": "军团战棋legion war" + }, + { + "appid": 975290, + "normalized_name": "the pepper prince episode 1 red hot chili wedding" + }, + { + "appid": 975350, + "normalized_name": "mojo xxx" + }, + { + "appid": 975370, + "normalized_name": "dwarf fortress" + }, + { + "appid": 975390, + "normalized_name": "dodgeball simulator vr" + }, + { + "appid": 975410, + "normalized_name": "vestige" + }, + { + "appid": 975430, + "normalized_name": "dick wilde 2" + }, + { + "appid": 975470, + "normalized_name": "silver chains" + }, + { + "appid": 975500, + "normalized_name": "the podlands" + }, + { + "appid": 975510, + "normalized_name": "panzer paladin" + }, + { + "appid": 975520, + "normalized_name": "shnipers" + }, + { + "appid": 975620, + "normalized_name": "project deepweb" + }, + { + "appid": 975630, + "normalized_name": "fossil diggers vr" + }, + { + "appid": 975640, + "normalized_name": "adolf hitler humiliation simulator" + }, + { + "appid": 975660, + "normalized_name": "discharge" + }, + { + "appid": 975670, + "normalized_name": "neon blast" + }, + { + "appid": 975680, + "normalized_name": "metal slug xx" + }, + { + "appid": 975690, + "normalized_name": "elash" + }, + { + "appid": 975700, + "normalized_name": "kótergame" + }, + { + "appid": 975710, + "normalized_name": "qipa world hello big adventure" + }, + { + "appid": 975750, + "normalized_name": "proto g" + }, + { + "appid": 975760, + "normalized_name": "love room" + }, + { + "appid": 975770, + "normalized_name": "escape from the dragons" + }, + { + "appid": 975800, + "normalized_name": "cosmodrive zero" + }, + { + "appid": 975860, + "normalized_name": "拖拉机" + }, + { + "appid": 975910, + "normalized_name": "hentai shadow" + }, + { + "appid": 975950, + "normalized_name": "effie" + }, + { + "appid": 975980, + "normalized_name": "mahjong fest winterland" + }, + { + "appid": 976010, + "normalized_name": "i hate this game" + }, + { + "appid": 976020, + "normalized_name": "the true tales of bloodstreet 13 chapter 1" + }, + { + "appid": 976030, + "normalized_name": "drafting tales" + }, + { + "appid": 976060, + "normalized_name": "in the ember 余烬之中" + }, + { + "appid": 976070, + "normalized_name": "破碎的笔记 bad note" + }, + { + "appid": 976090, + "normalized_name": "fight for gold ii" + }, + { + "appid": 976120, + "normalized_name": "warpzone drifter" + }, + { + "appid": 976160, + "normalized_name": "beer bar" + }, + { + "appid": 976230, + "normalized_name": "tv189" + }, + { + "appid": 976240, + "normalized_name": "spaceguy red space" + }, + { + "appid": 976260, + "normalized_name": "the last monsters" + }, + { + "appid": 976290, + "normalized_name": "proditur" + }, + { + "appid": 976310, + "normalized_name": "mortal kombat11" + }, + { + "appid": 976320, + "normalized_name": "drawz" + }, + { + "appid": 976340, + "normalized_name": "you can(not) survive" + }, + { + "appid": 976360, + "normalized_name": "cotrio" + }, + { + "appid": 976390, + "normalized_name": "9 nine episode 1" + }, + { + "appid": 976410, + "normalized_name": "infinite children" + }, + { + "appid": 976420, + "normalized_name": "my so called future girlfriend" + }, + { + "appid": 976500, + "normalized_name": "venineth" + }, + { + "appid": 976570, + "normalized_name": "code shifter" + }, + { + "appid": 976590, + "normalized_name": "bus simulator 21 next stop" + }, + { + "appid": 976630, + "normalized_name": "hatchball" + }, + { + "appid": 976680, + "normalized_name": "minimal move" + }, + { + "appid": 976700, + "normalized_name": "size matters" + }, + { + "appid": 976720, + "normalized_name": "case opener guns" + }, + { + "appid": 976730, + "normalized_name": "halo the master chief collection" + }, + { + "appid": 976780, + "normalized_name": "neoncode" + }, + { + "appid": 976800, + "normalized_name": "九劫曲:诅咒之地 nine trials" + }, + { + "appid": 976830, + "normalized_name": "diaper quest 2055" + }, + { + "appid": 976870, + "normalized_name": "kukoo kitchen" + }, + { + "appid": 976890, + "normalized_name": "hidden deep" + }, + { + "appid": 976900, + "normalized_name": "lumberhill" + }, + { + "appid": 976920, + "normalized_name": "dance of death du lac & fey" + }, + { + "appid": 976930, + "normalized_name": "groove gunner" + }, + { + "appid": 976940, + "normalized_name": "永冻之壳 the shell of permafrost" + }, + { + "appid": 976960, + "normalized_name": "heart of moon the mask of seasons" + }, + { + "appid": 976970, + "normalized_name": "a cheesy game" + }, + { + "appid": 976980, + "normalized_name": "the great emu war" + }, + { + "appid": 977050, + "normalized_name": "action source" + }, + { + "appid": 977080, + "normalized_name": "the clean up clyde collection" + }, + { + "appid": 977100, + "normalized_name": "unblock gridlock" + }, + { + "appid": 977110, + "normalized_name": "elite archery" + }, + { + "appid": 977160, + "normalized_name": "horse" + }, + { + "appid": 977210, + "normalized_name": "尘沙的选择 the choice of sand" + }, + { + "appid": 977230, + "normalized_name": "mars power industries deluxe" + }, + { + "appid": 977270, + "normalized_name": "rcracer vr" + }, + { + "appid": 977290, + "normalized_name": "thirty two" + }, + { + "appid": 977300, + "normalized_name": "fenimore fillmore 3 skulls of the toltecs" + }, + { + "appid": 977310, + "normalized_name": "sea birds end of an age" + }, + { + "appid": 977340, + "normalized_name": "skinny" + }, + { + "appid": 977380, + "normalized_name": "spice pirates in space a retro rpg" + }, + { + "appid": 977390, + "normalized_name": "tokyo warfare turbo" + }, + { + "appid": 977400, + "normalized_name": "cell to singularity evolution never ends" + }, + { + "appid": 977430, + "normalized_name": "money maker" + }, + { + "appid": 977460, + "normalized_name": "steam prison" + }, + { + "appid": 977490, + "normalized_name": "jigsaw masterpieces" + }, + { + "appid": 977500, + "normalized_name": "克苏鲁异闻录" + }, + { + "appid": 977510, + "normalized_name": "time to morp" + }, + { + "appid": 977540, + "normalized_name": "super hero fight club reloaded" + }, + { + "appid": 977560, + "normalized_name": "unbreaker" + }, + { + "appid": 977570, + "normalized_name": "the experiment escape room" + }, + { + "appid": 977580, + "normalized_name": "captain's tail" + }, + { + "appid": 977590, + "normalized_name": "バインドを解除する(unbind)" + }, + { + "appid": 977630, + "normalized_name": "shelter 3" + }, + { + "appid": 977640, + "normalized_name": "happy toys" + }, + { + "appid": 977670, + "normalized_name": "snow ash land" + }, + { + "appid": 977690, + "normalized_name": "skyworld kingdom brawl" + }, + { + "appid": 977720, + "normalized_name": "starpoint gemini 3" + }, + { + "appid": 977780, + "normalized_name": "tactics age of affliction" + }, + { + "appid": 977790, + "normalized_name": "fairground 2 the ride simulation" + }, + { + "appid": 977810, + "normalized_name": "the enigma machine" + }, + { + "appid": 977830, + "normalized_name": "lost bazaar" + }, + { + "appid": 977840, + "normalized_name": "emergency 2" + }, + { + "appid": 977880, + "normalized_name": "eastward" + }, + { + "appid": 977900, + "normalized_name": "kick the puppet" + }, + { + "appid": 977950, + "normalized_name": "a dance of fire and ice" + }, + { + "appid": 977980, + "normalized_name": "paintball chibis" + }, + { + "appid": 978010, + "normalized_name": "epic of serinor dawnshadow" + }, + { + "appid": 978040, + "normalized_name": "starquake academy" + }, + { + "appid": 978110, + "normalized_name": "mutland" + }, + { + "appid": 978120, + "normalized_name": "ballastic" + }, + { + "appid": 978190, + "normalized_name": "steel sword story s" + }, + { + "appid": 978200, + "normalized_name": "逗国科举 | douguo keju" + }, + { + "appid": 978210, + "normalized_name": "tal jungle" + }, + { + "appid": 978250, + "normalized_name": "matter" + }, + { + "appid": 978270, + "normalized_name": "sam & dan floaty flatmates" + }, + { + "appid": 978280, + "normalized_name": "damn zombies" + }, + { + "appid": 978300, + "normalized_name": "saints row the third" + }, + { + "appid": 978340, + "normalized_name": "rgb run" + }, + { + "appid": 978380, + "normalized_name": "spinheads" + }, + { + "appid": 978440, + "normalized_name": "mining rail" + }, + { + "appid": 978450, + "normalized_name": "data mining 3" + }, + { + "appid": 978460, + "normalized_name": "emily is away <3" + }, + { + "appid": 978470, + "normalized_name": "clicker glad valakas" + }, + { + "appid": 978510, + "normalized_name": "settlers of orion" + }, + { + "appid": 978520, + "normalized_name": "legend of keepers career of a dungeon manager" + }, + { + "appid": 978580, + "normalized_name": "oops!!! puzzles!!!" + }, + { + "appid": 978610, + "normalized_name": "★fallalypse ★ disconnect ❄" + }, + { + "appid": 978630, + "normalized_name": "juro janosik" + }, + { + "appid": 978640, + "normalized_name": "you have 10 seconds 3" + }, + { + "appid": 978650, + "normalized_name": "spacefrog vr" + }, + { + "appid": 978660, + "normalized_name": "parity" + }, + { + "appid": 978670, + "normalized_name": "christmas clicker idle gift builder" + }, + { + "appid": 978700, + "normalized_name": "ironsmith medieval simulator" + }, + { + "appid": 978710, + "normalized_name": "dinosaurus life vr" + }, + { + "appid": 978720, + "normalized_name": "nympho trainer vr" + }, + { + "appid": 978780, + "normalized_name": "story of seasons friends of mineral town" + }, + { + "appid": 978790, + "normalized_name": "frantic dimension" + }, + { + "appid": 978800, + "normalized_name": "rolling bird" + }, + { + "appid": 978870, + "normalized_name": "lilycle rainbow stage!!!" + }, + { + "appid": 978910, + "normalized_name": "necro defense" + }, + { + "appid": 978920, + "normalized_name": "wings of virtus" + }, + { + "appid": 978960, + "normalized_name": "starters orders 7 horse racing" + }, + { + "appid": 978970, + "normalized_name": "god hand" + }, + { + "appid": 978980, + "normalized_name": "paradigm blast" + }, + { + "appid": 979000, + "normalized_name": "abrakadaboom" + }, + { + "appid": 979060, + "normalized_name": "bloons adventure time td" + }, + { + "appid": 979070, + "normalized_name": "just die already" + }, + { + "appid": 979080, + "normalized_name": "rebel forces" + }, + { + "appid": 979090, + "normalized_name": "stunt simulator multiplayer" + }, + { + "appid": 979100, + "normalized_name": "experience colorblindness" + }, + { + "appid": 979110, + "normalized_name": "space haven" + }, + { + "appid": 979120, + "normalized_name": "autonauts" + }, + { + "appid": 979160, + "normalized_name": "moi mei" + }, + { + "appid": 979220, + "normalized_name": "girls and tests" + }, + { + "appid": 979260, + "normalized_name": "gizmo" + }, + { + "appid": 979290, + "normalized_name": "christmas defence" + }, + { + "appid": 979300, + "normalized_name": "allied nations" + }, + { + "appid": 979310, + "normalized_name": "disjunction" + }, + { + "appid": 979330, + "normalized_name": "hikari! clover rescue" + }, + { + "appid": 979350, + "normalized_name": "sunset giant" + }, + { + "appid": 979360, + "normalized_name": "super racha" + }, + { + "appid": 979390, + "normalized_name": "laser party" + }, + { + "appid": 979400, + "normalized_name": "last labyrinth" + }, + { + "appid": 979410, + "normalized_name": "lunar manor" + }, + { + "appid": 979450, + "normalized_name": "brick breaker halloween" + }, + { + "appid": 979480, + "normalized_name": "born punk" + }, + { + "appid": 979500, + "normalized_name": "雪策边境 bsp" + }, + { + "appid": 979530, + "normalized_name": "endless maneuver" + }, + { + "appid": 979550, + "normalized_name": "evolo.mine" + }, + { + "appid": 979580, + "normalized_name": "祭品的逆襲 the counterattack of sacrifice" + }, + { + "appid": 979600, + "normalized_name": "kaori after story" + }, + { + "appid": 979620, + "normalized_name": "atrocity" + }, + { + "appid": 979640, + "normalized_name": "cepheus protocol" + }, + { + "appid": 979680, + "normalized_name": "in your shadow" + }, + { + "appid": 979690, + "normalized_name": "the ascent" + }, + { + "appid": 979720, + "normalized_name": "big bash boom" + }, + { + "appid": 979740, + "normalized_name": "profundum" + }, + { + "appid": 979760, + "normalized_name": "paska battle style!" + }, + { + "appid": 979790, + "normalized_name": "change a little story" + }, + { + "appid": 979800, + "normalized_name": "haxity" + }, + { + "appid": 979810, + "normalized_name": "grave keeper" + }, + { + "appid": 979830, + "normalized_name": "zone anomaly" + }, + { + "appid": 979880, + "normalized_name": "fast food fighters" + }, + { + "appid": 979890, + "normalized_name": "allison's diary rebirth" + }, + { + "appid": 979900, + "normalized_name": "rrrr" + }, + { + "appid": 979910, + "normalized_name": "3d pinball hentai" + }, + { + "appid": 979920, + "normalized_name": "supremacy 1914" + }, + { + "appid": 979970, + "normalized_name": "imaze.exe" + }, + { + "appid": 980000, + "normalized_name": "modding tools for cross racing championship extreme" + }, + { + "appid": 980090, + "normalized_name": "hentai girl sets" + }, + { + "appid": 980160, + "normalized_name": "ubercold" + }, + { + "appid": 980170, + "normalized_name": "tenko's magical sword quest" + }, + { + "appid": 980190, + "normalized_name": "flaky bakery" + }, + { + "appid": 980210, + "normalized_name": "hordecore" + }, + { + "appid": 980300, + "normalized_name": "one finger death punch 2" + }, + { + "appid": 980320, + "normalized_name": "haunting hour" + }, + { + "appid": 980360, + "normalized_name": "melody flight" + }, + { + "appid": 980380, + "normalized_name": "helpthealien" + }, + { + "appid": 980440, + "normalized_name": "knights rubbish" + }, + { + "appid": 980470, + "normalized_name": "вкудахте симулятор соцсети" + }, + { + "appid": 980480, + "normalized_name": "towertale" + }, + { + "appid": 980490, + "normalized_name": "heaven & hell" + }, + { + "appid": 980520, + "normalized_name": "azurael's circle chapter 3" + }, + { + "appid": 980560, + "normalized_name": "overcraft" + }, + { + "appid": 980600, + "normalized_name": "maze 4d" + }, + { + "appid": 980610, + "normalized_name": "quaver" + }, + { + "appid": 980630, + "normalized_name": "mission evilguy" + }, + { + "appid": 980640, + "normalized_name": "empire of ember" + }, + { + "appid": 980690, + "normalized_name": "heavy memories" + }, + { + "appid": 980700, + "normalized_name": "unsung warriors" + }, + { + "appid": 980730, + "normalized_name": "underlight" + }, + { + "appid": 980770, + "normalized_name": "flying circus" + }, + { + "appid": 980800, + "normalized_name": "beak squadron" + }, + { + "appid": 980830, + "normalized_name": "spirit hunter death mark" + }, + { + "appid": 980850, + "normalized_name": "pixel battle royale" + }, + { + "appid": 980880, + "normalized_name": "twinfold" + }, + { + "appid": 980940, + "normalized_name": "my little blacksmith shop" + }, + { + "appid": 980950, + "normalized_name": "crome before purgatory" + }, + { + "appid": 981010, + "normalized_name": "unidentified" + }, + { + "appid": 981020, + "normalized_name": "clea" + }, + { + "appid": 981040, + "normalized_name": "comit in krater returns" + }, + { + "appid": 981050, + "normalized_name": "comit in cosmo knight's revenge" + }, + { + "appid": 981060, + "normalized_name": "one hell of a week" + }, + { + "appid": 981080, + "normalized_name": "burst drive" + }, + { + "appid": 981090, + "normalized_name": "outbreak story" + }, + { + "appid": 981120, + "normalized_name": "tiger soldier ⅰ" + }, + { + "appid": 981130, + "normalized_name": "lucky skiing" + }, + { + "appid": 981160, + "normalized_name": "woman's body" + }, + { + "appid": 981180, + "normalized_name": "mars wars" + }, + { + "appid": 981260, + "normalized_name": "love in drawing" + }, + { + "appid": 981270, + "normalized_name": "runa's school story" + }, + { + "appid": 981280, + "normalized_name": "reksarych's sudoku" + }, + { + "appid": 981290, + "normalized_name": "cgencore" + }, + { + "appid": 981300, + "normalized_name": "pussy" + }, + { + "appid": 981310, + "normalized_name": "ishmael" + }, + { + "appid": 981420, + "normalized_name": "game soup" + }, + { + "appid": 981430, + "normalized_name": "gordian quest" + }, + { + "appid": 981440, + "normalized_name": "the great emu war of 1932" + }, + { + "appid": 981450, + "normalized_name": "geminiarms" + }, + { + "appid": 981470, + "normalized_name": "※" + }, + { + "appid": 981500, + "normalized_name": "market dominion" + }, + { + "appid": 981540, + "normalized_name": "stellar sphere" + }, + { + "appid": 981550, + "normalized_name": "gachimuchi m♂nly puzzle" + }, + { + "appid": 981600, + "normalized_name": "eternium" + }, + { + "appid": 981620, + "normalized_name": "hexa" + }, + { + "appid": 981630, + "normalized_name": "guntastic" + }, + { + "appid": 981660, + "normalized_name": "the detective chapters part one" + }, + { + "appid": 981690, + "normalized_name": "gun chain" + }, + { + "appid": 981710, + "normalized_name": "just roll with it" + }, + { + "appid": 981720, + "normalized_name": "lore finder" + }, + { + "appid": 981750, + "normalized_name": "crystar" + }, + { + "appid": 981770, + "normalized_name": "senran kagura reflexions" + }, + { + "appid": 981790, + "normalized_name": "halloween girl" + }, + { + "appid": 981830, + "normalized_name": "gigabuster" + }, + { + "appid": 981870, + "normalized_name": "land of chaos online ii revolution" + }, + { + "appid": 981880, + "normalized_name": "growrilla vr" + }, + { + "appid": 981890, + "normalized_name": "olympic games tokyo 2020 – the official video game" + }, + { + "appid": 981900, + "normalized_name": "kings' cross" + }, + { + "appid": 981960, + "normalized_name": "horror girl puzzle" + }, + { + "appid": 981980, + "normalized_name": "panda hero" + }, + { + "appid": 981990, + "normalized_name": "don't shoot rabbit / 不要射中兔子" + }, + { + "appid": 982020, + "normalized_name": "eurobi racing" + }, + { + "appid": 982040, + "normalized_name": "don't die minerva!" + }, + { + "appid": 982050, + "normalized_name": "caracoland" + }, + { + "appid": 982060, + "normalized_name": "undholm" + }, + { + "appid": 982090, + "normalized_name": "noms the fish" + }, + { + "appid": 982100, + "normalized_name": "samozbor rebellion" + }, + { + "appid": 982120, + "normalized_name": "giant celebration" + }, + { + "appid": 982180, + "normalized_name": "slave ghost" + }, + { + "appid": 982220, + "normalized_name": "globesweeper" + }, + { + "appid": 982250, + "normalized_name": "spoils of plunder" + }, + { + "appid": 982270, + "normalized_name": "dealer's life" + }, + { + "appid": 982290, + "normalized_name": "airborne kingdom" + }, + { + "appid": 982300, + "normalized_name": "shop legends" + }, + { + "appid": 982320, + "normalized_name": "battle of the boros" + }, + { + "appid": 982350, + "normalized_name": "mon amour" + }, + { + "appid": 982370, + "normalized_name": "line dance virtual" + }, + { + "appid": 982380, + "normalized_name": "gods and kings" + }, + { + "appid": 982390, + "normalized_name": "boom boom bovine" + }, + { + "appid": 982400, + "normalized_name": "赫炎的印加诺克 fullvoice reborn" + }, + { + "appid": 982410, + "normalized_name": "bachata virtual" + }, + { + "appid": 982420, + "normalized_name": "preparation" + }, + { + "appid": 982450, + "normalized_name": "gemini disorder" + }, + { + "appid": 982480, + "normalized_name": "supreme casino city" + }, + { + "appid": 982540, + "normalized_name": "hyss" + }, + { + "appid": 982580, + "normalized_name": "女巫与六便士 the sibyl and sixpence" + }, + { + "appid": 982670, + "normalized_name": "clan n" + }, + { + "appid": 982690, + "normalized_name": "dataflow" + }, + { + "appid": 982700, + "normalized_name": "space battle vr" + }, + { + "appid": 982710, + "normalized_name": "cop academy" + }, + { + "appid": 982720, + "normalized_name": "paradise lost" + }, + { + "appid": 982750, + "normalized_name": "puzzles for smart underwater kingdom" + }, + { + "appid": 982800, + "normalized_name": "moon tycoon" + }, + { + "appid": 982840, + "normalized_name": "bomber barn" + }, + { + "appid": 982850, + "normalized_name": "tess elated" + }, + { + "appid": 982920, + "normalized_name": "hammerborn tears of mani" + }, + { + "appid": 982980, + "normalized_name": "project aeronaut" + }, + { + "appid": 982990, + "normalized_name": "muzzleloaded" + }, + { + "appid": 983030, + "normalized_name": "w.a.n.t.e.d" + }, + { + "appid": 983040, + "normalized_name": "koboomballs" + }, + { + "appid": 983070, + "normalized_name": "hyperborea" + }, + { + "appid": 983100, + "normalized_name": "walk on the ground simulator" + }, + { + "appid": 983120, + "normalized_name": "tendytrainer" + }, + { + "appid": 983140, + "normalized_name": "monster jaunt" + }, + { + "appid": 983150, + "normalized_name": "樱之杜†净梦者2" + }, + { + "appid": 983160, + "normalized_name": "junk on wheels" + }, + { + "appid": 983170, + "normalized_name": "infinite chili sauce 无尽的辣酱" + }, + { + "appid": 983190, + "normalized_name": "ganush" + }, + { + "appid": 983240, + "normalized_name": "boobs or [redacted]" + }, + { + "appid": 983260, + "normalized_name": "pixel ship shooter" + }, + { + "appid": 983280, + "normalized_name": "chocolate makes you happy new year" + }, + { + "appid": 983290, + "normalized_name": "lightstep chronicles" + }, + { + "appid": 983320, + "normalized_name": "morph pong" + }, + { + "appid": 983330, + "normalized_name": "colourful maze" + }, + { + "appid": 983340, + "normalized_name": "waifu hunter secret of pirates" + }, + { + "appid": 983350, + "normalized_name": "sea salt" + }, + { + "appid": 983360, + "normalized_name": "ancestors legacy dedicated server" + }, + { + "appid": 983380, + "normalized_name": "car manufacture" + }, + { + "appid": 983450, + "normalized_name": "astral towers" + }, + { + "appid": 983520, + "normalized_name": "bizango blast" + }, + { + "appid": 983590, + "normalized_name": "tank blazers" + }, + { + "appid": 983610, + "normalized_name": "burning out" + }, + { + "appid": 983640, + "normalized_name": "theseus journey to athens" + }, + { + "appid": 983650, + "normalized_name": "jumper tree" + }, + { + "appid": 983670, + "normalized_name": "pangeon" + }, + { + "appid": 983680, + "normalized_name": "silent doom" + }, + { + "appid": 983760, + "normalized_name": "chrono ghost" + }, + { + "appid": 983790, + "normalized_name": "arcane domains" + }, + { + "appid": 983830, + "normalized_name": "rogue" + }, + { + "appid": 983840, + "normalized_name": "hunting simulator vr" + }, + { + "appid": 983870, + "normalized_name": "foundry" + }, + { + "appid": 983900, + "normalized_name": "mojack quest of jackal puzzle game" + }, + { + "appid": 983920, + "normalized_name": "space takeover" + }, + { + "appid": 983970, + "normalized_name": "haven" + }, + { + "appid": 983980, + "normalized_name": "euclidean skies" + }, + { + "appid": 983990, + "normalized_name": "steel alcimus" + }, + { + "appid": 984020, + "normalized_name": "super ninja meow cat" + }, + { + "appid": 984030, + "normalized_name": "circus interstellar" + }, + { + "appid": 984070, + "normalized_name": "chaos theory" + }, + { + "appid": 984080, + "normalized_name": "christmas carol" + }, + { + "appid": 984110, + "normalized_name": "synthetik arena" + }, + { + "appid": 984150, + "normalized_name": "powerless" + }, + { + "appid": 984170, + "normalized_name": "seven chambers" + }, + { + "appid": 984230, + "normalized_name": "x archetype" + }, + { + "appid": 984240, + "normalized_name": "school grounds" + }, + { + "appid": 984250, + "normalized_name": "red tractor tycoon" + }, + { + "appid": 984260, + "normalized_name": "tora" + }, + { + "appid": 984300, + "normalized_name": "robozarro" + }, + { + "appid": 984360, + "normalized_name": "pocoman" + }, + { + "appid": 984450, + "normalized_name": "super crome bullet purgatory" + }, + { + "appid": 984470, + "normalized_name": "big dipper" + }, + { + "appid": 984510, + "normalized_name": "adventure boy cheapskate dx" + }, + { + "appid": 984520, + "normalized_name": "weightless an immersive and relaxing experience" + }, + { + "appid": 984540, + "normalized_name": "hostile user interface" + }, + { + "appid": 984560, + "normalized_name": "heartbeat" + }, + { + "appid": 984570, + "normalized_name": "chess sphere" + }, + { + "appid": 984600, + "normalized_name": "trinoline genesis" + }, + { + "appid": 984650, + "normalized_name": "renn um dein leben" + }, + { + "appid": 984660, + "normalized_name": "strike of horror" + }, + { + "appid": 984680, + "normalized_name": "interstellar space genesis" + }, + { + "appid": 984720, + "normalized_name": "hentai summer" + }, + { + "appid": 984730, + "normalized_name": "battles for spain" + }, + { + "appid": 984780, + "normalized_name": "motogp19" + }, + { + "appid": 984790, + "normalized_name": "it'sroachtime!" + }, + { + "appid": 984800, + "normalized_name": "automachef" + }, + { + "appid": 984810, + "normalized_name": "nightmare trails" + }, + { + "appid": 984830, + "normalized_name": "magician of fire" + }, + { + "appid": 984870, + "normalized_name": "tecroroid assault" + }, + { + "appid": 984880, + "normalized_name": "the pilgrimage i" + }, + { + "appid": 984910, + "normalized_name": "rocket golf" + }, + { + "appid": 984930, + "normalized_name": "the black widow" + }, + { + "appid": 984980, + "normalized_name": "ruinic" + }, + { + "appid": 984990, + "normalized_name": "alien jelly food for thought!" + }, + { + "appid": 985000, + "normalized_name": "potion paws" + }, + { + "appid": 985020, + "normalized_name": "three kingdoms:ancient battlefield | 三国古战略" + }, + { + "appid": 985070, + "normalized_name": "darkheart flight of the harpies" + }, + { + "appid": 985080, + "normalized_name": "食用系少女 food girls" + }, + { + "appid": 985090, + "normalized_name": "color knight" + }, + { + "appid": 985150, + "normalized_name": "scuba's ocean odyssey vr" + }, + { + "appid": 985240, + "normalized_name": "woodfel" + }, + { + "appid": 985260, + "normalized_name": "the morrigan" + }, + { + "appid": 985280, + "normalized_name": "the trials of olympus" + }, + { + "appid": 985340, + "normalized_name": "secret savings" + }, + { + "appid": 985400, + "normalized_name": "marle the labyrinth of the black sea" + }, + { + "appid": 985420, + "normalized_name": "esc from planet" + }, + { + "appid": 985430, + "normalized_name": "terrible laboratory" + }, + { + "appid": 985500, + "normalized_name": "ef universe reclaiming the world" + }, + { + "appid": 985510, + "normalized_name": "necken" + }, + { + "appid": 985530, + "normalized_name": "hunter" + }, + { + "appid": 985560, + "normalized_name": "magic mouse" + }, + { + "appid": 985580, + "normalized_name": "ultra pig" + }, + { + "appid": 985590, + "normalized_name": "necrolepsy" + }, + { + "appid": 985600, + "normalized_name": "the last aura" + }, + { + "appid": 985620, + "normalized_name": "space captain mccallery episode 2 pilgrims in purple moss" + }, + { + "appid": 985640, + "normalized_name": "amanda's sticker book" + }, + { + "appid": 985650, + "normalized_name": "olaguna chronicles 命运启示录 阿尔巴雷克战纪" + }, + { + "appid": 985660, + "normalized_name": "luna and cynthia" + }, + { + "appid": 985680, + "normalized_name": "过关攒将" + }, + { + "appid": 985690, + "normalized_name": "fall in love my billionaire boss" + }, + { + "appid": 985710, + "normalized_name": "wall street tycoon" + }, + { + "appid": 985720, + "normalized_name": "ruins survival" + }, + { + "appid": 985740, + "normalized_name": "同居指南 | cohabitation guide" + }, + { + "appid": 985760, + "normalized_name": "3d custom lady maker" + }, + { + "appid": 985770, + "normalized_name": "artillery globe" + }, + { + "appid": 985780, + "normalized_name": "jack axe" + }, + { + "appid": 985800, + "normalized_name": "battlloon バトルーン" + }, + { + "appid": 985810, + "normalized_name": "grandchase" + }, + { + "appid": 985830, + "normalized_name": "succubus" + }, + { + "appid": 985840, + "normalized_name": "greedy crush" + }, + { + "appid": 985870, + "normalized_name": "the tourist trap" + }, + { + "appid": 985890, + "normalized_name": "streets of rage 4" + }, + { + "appid": 985900, + "normalized_name": "young souls" + }, + { + "appid": 985930, + "normalized_name": "callback" + }, + { + "appid": 985940, + "normalized_name": "beat me!" + }, + { + "appid": 985950, + "normalized_name": "operencia the stolen sun" + }, + { + "appid": 986010, + "normalized_name": "fit in" + }, + { + "appid": 986020, + "normalized_name": "kunoichi botan" + }, + { + "appid": 986040, + "normalized_name": "the unliving" + }, + { + "appid": 986070, + "normalized_name": "spirit oath" + }, + { + "appid": 986080, + "normalized_name": "zombie apocalypse" + }, + { + "appid": 986130, + "normalized_name": "shadows of doubt" + }, + { + "appid": 986220, + "normalized_name": "lost islands / 失落之岛" + }, + { + "appid": 986280, + "normalized_name": "lingua fleur lily" + }, + { + "appid": 986310, + "normalized_name": "recompile" + }, + { + "appid": 986340, + "normalized_name": "raid on the ruhr" + }, + { + "appid": 986350, + "normalized_name": "nemezis mysterious journey iii" + }, + { + "appid": 986370, + "normalized_name": "try to reach 10" + }, + { + "appid": 986480, + "normalized_name": "sharknado vr (arcade edition)" + }, + { + "appid": 986490, + "normalized_name": "another bad day in the future" + }, + { + "appid": 986500, + "normalized_name": "gratuitous zombie cannon" + }, + { + "appid": 986520, + "normalized_name": "ultra strangeness" + }, + { + "appid": 986630, + "normalized_name": "captain contraband" + }, + { + "appid": 986660, + "normalized_name": "heated" + }, + { + "appid": 986670, + "normalized_name": "steady" + }, + { + "appid": 986680, + "normalized_name": "pagui打鬼" + }, + { + "appid": 986700, + "normalized_name": "moshpit" + }, + { + "appid": 986710, + "normalized_name": "nusantara legend of the winged ones" + }, + { + "appid": 986760, + "normalized_name": "paradise checkers vr" + }, + { + "appid": 986770, + "normalized_name": "16 planes return" + }, + { + "appid": 986780, + "normalized_name": "supersolar" + }, + { + "appid": 986790, + "normalized_name": "cyber city escape" + }, + { + "appid": 986800, + "normalized_name": "avicii invector" + }, + { + "appid": 986810, + "normalized_name": "pretty kitty fuzzy" + }, + { + "appid": 986820, + "normalized_name": "lost lands mistakes of the past collector's" + }, + { + "appid": 986830, + "normalized_name": "the legacy the tree of might collector's" + }, + { + "appid": 986860, + "normalized_name": "囚われの館" + }, + { + "appid": 986920, + "normalized_name": "exploding babies" + }, + { + "appid": 986930, + "normalized_name": "perchang" + }, + { + "appid": 986990, + "normalized_name": "amaze christmas" + }, + { + "appid": 987000, + "normalized_name": "shadow uprising" + }, + { + "appid": 987020, + "normalized_name": "drone the game" + }, + { + "appid": 987060, + "normalized_name": "auri's tales" + }, + { + "appid": 987140, + "normalized_name": "a grim tale of vices" + }, + { + "appid": 987150, + "normalized_name": "bmx the game" + }, + { + "appid": 987180, + "normalized_name": "black salt coreuption" + }, + { + "appid": 987190, + "normalized_name": "the aether life as a god" + }, + { + "appid": 987200, + "normalized_name": "dragon racer" + }, + { + "appid": 987210, + "normalized_name": "crossroads lucky" + }, + { + "appid": 987230, + "normalized_name": "shadow legend vr" + }, + { + "appid": 987240, + "normalized_name": "arcadia" + }, + { + "appid": 987250, + "normalized_name": "kalling kingdom" + }, + { + "appid": 987290, + "normalized_name": "dustnet" + }, + { + "appid": 987310, + "normalized_name": "little legend" + }, + { + "appid": 987330, + "normalized_name": "street outlaws the list" + }, + { + "appid": 987370, + "normalized_name": "ライフワン lifeone" + }, + { + "appid": 987400, + "normalized_name": "disney's hercules" + }, + { + "appid": 987410, + "normalized_name": "maui mallard in cold shadow" + }, + { + "appid": 987480, + "normalized_name": "花落冬陽 snowdreams lost in winter" + }, + { + "appid": 987490, + "normalized_name": "doka 2 guts out ninja" + }, + { + "appid": 987570, + "normalized_name": "chain reaction sexy hentai girls" + }, + { + "appid": 987580, + "normalized_name": "reach 50 sexy hentai girls" + }, + { + "appid": 987590, + "normalized_name": "dots pop sexy hentai girls" + }, + { + "appid": 987660, + "normalized_name": "astronest vr" + }, + { + "appid": 987670, + "normalized_name": "chocolat rush" + }, + { + "appid": 987710, + "normalized_name": "blask" + }, + { + "appid": 987720, + "normalized_name": "oninaki" + }, + { + "appid": 987740, + "normalized_name": "donald vs martians" + }, + { + "appid": 987770, + "normalized_name": "singularity 5" + }, + { + "appid": 987780, + "normalized_name": "dark shiny" + }, + { + "appid": 987790, + "normalized_name": "call of pixel close quarters" + }, + { + "appid": 987810, + "normalized_name": "ayre" + }, + { + "appid": 987820, + "normalized_name": "chrono" + }, + { + "appid": 987840, + "normalized_name": "expeditions rome" + }, + { + "appid": 987850, + "normalized_name": "2084" + }, + { + "appid": 987880, + "normalized_name": "moo moo move" + }, + { + "appid": 987900, + "normalized_name": "seeker" + }, + { + "appid": 987910, + "normalized_name": "warzone flashpoint" + }, + { + "appid": 987950, + "normalized_name": "eball" + }, + { + "appid": 987980, + "normalized_name": "王者战车" + }, + { + "appid": 987990, + "normalized_name": "hyperborean charter" + }, + { + "appid": 988000, + "normalized_name": "where's rascal~ラスカルはどこ?~" + }, + { + "appid": 988070, + "normalized_name": "all of zhem" + }, + { + "appid": 988080, + "normalized_name": "3 on 3 super robot hockey" + }, + { + "appid": 988090, + "normalized_name": "the secret ties of strandcliff" + }, + { + "appid": 988100, + "normalized_name": "super phantom cat" + }, + { + "appid": 988110, + "normalized_name": "breacher story" + }, + { + "appid": 988240, + "normalized_name": "urban trial playground" + }, + { + "appid": 988250, + "normalized_name": "towerhex" + }, + { + "appid": 988310, + "normalized_name": "viola the heroine's melody" + }, + { + "appid": 988330, + "normalized_name": "one minute of death" + }, + { + "appid": 988340, + "normalized_name": "mad hunting simulator vr" + }, + { + "appid": 988430, + "normalized_name": "lightseekers" + }, + { + "appid": 988490, + "normalized_name": "black powder red earth" + }, + { + "appid": 988530, + "normalized_name": "outrevenge" + }, + { + "appid": 988590, + "normalized_name": "shell_break" + }, + { + "appid": 988640, + "normalized_name": "christmas wonderland" + }, + { + "appid": 988650, + "normalized_name": "inclement" + }, + { + "appid": 988890, + "normalized_name": "the.thend.end" + }, + { + "appid": 988910, + "normalized_name": "super mega baseball 3" + }, + { + "appid": 988930, + "normalized_name": "alveole" + }, + { + "appid": 988940, + "normalized_name": "dark alley elf" + }, + { + "appid": 988960, + "normalized_name": "silenced" + }, + { + "appid": 988980, + "normalized_name": "glad valakas tower defence" + }, + { + "appid": 989010, + "normalized_name": "the scenic treasures japanese learning" + }, + { + "appid": 989030, + "normalized_name": "phantom detective" + }, + { + "appid": 989040, + "normalized_name": "after hours" + }, + { + "appid": 989080, + "normalized_name": "my goddess of love" + }, + { + "appid": 989110, + "normalized_name": "crystal chameleon" + }, + { + "appid": 989120, + "normalized_name": "crop dusta" + }, + { + "appid": 989140, + "normalized_name": "damnaze" + }, + { + "appid": 989150, + "normalized_name": "tales from galaxy 34" + }, + { + "appid": 989160, + "normalized_name": "throne quest deluxe" + }, + { + "appid": 989190, + "normalized_name": "slay all goblins" + }, + { + "appid": 989230, + "normalized_name": "smasher" + }, + { + "appid": 989240, + "normalized_name": "parallel world" + }, + { + "appid": 989250, + "normalized_name": "fight for love" + }, + { + "appid": 989260, + "normalized_name": "home plate baseball" + }, + { + "appid": 989270, + "normalized_name": "deep sea endurance" + }, + { + "appid": 989350, + "normalized_name": "running rogue" + }, + { + "appid": 989370, + "normalized_name": "more and more" + }, + { + "appid": 989380, + "normalized_name": "beard of stone" + }, + { + "appid": 989390, + "normalized_name": "nar not another royale" + }, + { + "appid": 989400, + "normalized_name": "wild ride" + }, + { + "appid": 989430, + "normalized_name": "随风而逝 story about times" + }, + { + "appid": 989440, + "normalized_name": "phantom abyss" + }, + { + "appid": 989450, + "normalized_name": "时之回廊/corridor of time" + }, + { + "appid": 989490, + "normalized_name": "the emulator" + }, + { + "appid": 989550, + "normalized_name": "million arthur arcana blood" + }, + { + "appid": 989580, + "normalized_name": "kamimachi site dating story" + }, + { + "appid": 989640, + "normalized_name": "the chronicles of king arthur episode 1 excalibur" + }, + { + "appid": 989650, + "normalized_name": "impossible tower defense 2d" + }, + { + "appid": 989690, + "normalized_name": "conan unconquered" + }, + { + "appid": 989710, + "normalized_name": "夕鬼 零 yuoni rises" + }, + { + "appid": 989720, + "normalized_name": "splash wars" + }, + { + "appid": 989750, + "normalized_name": "life in helsinki" + }, + { + "appid": 989770, + "normalized_name": "biker garage mechanic simulator" + }, + { + "appid": 989780, + "normalized_name": "paradise city vr" + }, + { + "appid": 989790, + "normalized_name": "the vale shadow of the crown" + }, + { + "appid": 989860, + "normalized_name": "stop cats" + }, + { + "appid": 990020, + "normalized_name": "sinners" + }, + { + "appid": 990030, + "normalized_name": "deep diving simulator" + }, + { + "appid": 990050, + "normalized_name": "death end re;quest" + }, + { + "appid": 990060, + "normalized_name": "war online pacific" + }, + { + "appid": 990080, + "normalized_name": "hogwarts legacy" + }, + { + "appid": 990090, + "normalized_name": "the dandelion girl don't you remember me?" + }, + { + "appid": 990110, + "normalized_name": "87 aftermath a rolling ball game" + }, + { + "appid": 990160, + "normalized_name": "toyshot vr" + }, + { + "appid": 990180, + "normalized_name": "the ghost of you" + }, + { + "appid": 990240, + "normalized_name": "anime vampire slayer" + }, + { + "appid": 990250, + "normalized_name": "darkness and flame the dark side f2p" + }, + { + "appid": 990260, + "normalized_name": "collapse a political simulator" + }, + { + "appid": 990280, + "normalized_name": "olimdal" + }, + { + "appid": 990360, + "normalized_name": "skyhill black mist" + }, + { + "appid": 990380, + "normalized_name": "metal eden" + }, + { + "appid": 990390, + "normalized_name": "riddles of the owls' kingdom. magic wings" + }, + { + "appid": 990400, + "normalized_name": "solitaire. dragon light" + }, + { + "appid": 990410, + "normalized_name": "slashvival action rpg roguelite" + }, + { + "appid": 990500, + "normalized_name": "panty slide vr" + }, + { + "appid": 990630, + "normalized_name": "the last campfire" + }, + { + "appid": 990640, + "normalized_name": "numgeon" + }, + { + "appid": 990720, + "normalized_name": "bookend" + }, + { + "appid": 990750, + "normalized_name": "robosnakes core wars legacy" + }, + { + "appid": 990770, + "normalized_name": "divided kingdoms" + }, + { + "appid": 990840, + "normalized_name": "running tadpoles" + }, + { + "appid": 990850, + "normalized_name": "yanpai simulator" + }, + { + "appid": 990890, + "normalized_name": "desktop soccer / 机でサッカー" + }, + { + "appid": 990900, + "normalized_name": "neon noodles" + }, + { + "appid": 990920, + "normalized_name": "sea of craft" + }, + { + "appid": 990940, + "normalized_name": "full of love" + }, + { + "appid": 990950, + "normalized_name": "indiana boy steam" + }, + { + "appid": 990970, + "normalized_name": "be the ruler britannia" + }, + { + "appid": 991070, + "normalized_name": "destroy the world" + }, + { + "appid": 991130, + "normalized_name": "gunsmoke" + }, + { + "appid": 991170, + "normalized_name": "barn finders" + }, + { + "appid": 991230, + "normalized_name": "highway of death" + }, + { + "appid": 991240, + "normalized_name": "trivia throwdown" + }, + { + "appid": 991250, + "normalized_name": "tentoria" + }, + { + "appid": 991260, + "normalized_name": "borderlands 2 vr" + }, + { + "appid": 991270, + "normalized_name": "the legend of heroes trails of cold steel iii" + }, + { + "appid": 991280, + "normalized_name": "air combat xf" + }, + { + "appid": 991290, + "normalized_name": "blinky rise to the top" + }, + { + "appid": 991430, + "normalized_name": "you're not special" + }, + { + "appid": 991450, + "normalized_name": "wild ranger gun x dragon" + }, + { + "appid": 991480, + "normalized_name": "santa simulator" + }, + { + "appid": 991490, + "normalized_name": "the black knight" + }, + { + "appid": 991500, + "normalized_name": "make a jigsaw puzzle" + }, + { + "appid": 991510, + "normalized_name": "epic food fight" + }, + { + "appid": 991530, + "normalized_name": "choice or fate" + }, + { + "appid": 991560, + "normalized_name": "one punch man a hero nobody knows" + }, + { + "appid": 991600, + "normalized_name": "rabbit burn" + }, + { + "appid": 991620, + "normalized_name": "repairbot" + }, + { + "appid": 991630, + "normalized_name": "metal fury 3000" + }, + { + "appid": 991660, + "normalized_name": "voxel sword" + }, + { + "appid": 991680, + "normalized_name": "炎之陨落 the fallen of the blaze empire" + }, + { + "appid": 991700, + "normalized_name": "噬魂围猎" + }, + { + "appid": 991710, + "normalized_name": "gunboundm" + }, + { + "appid": 991750, + "normalized_name": "super grower" + }, + { + "appid": 991760, + "normalized_name": "summer sports games" + }, + { + "appid": 991780, + "normalized_name": "探灵笔记/拾遗记 1v5(notes of soul)" + }, + { + "appid": 991790, + "normalized_name": "magnesia" + }, + { + "appid": 991800, + "normalized_name": "puzzle game for kids" + }, + { + "appid": 991810, + "normalized_name": "strategic mind the pacific" + }, + { + "appid": 991860, + "normalized_name": "imaze.exe 2" + }, + { + "appid": 991930, + "normalized_name": "psycho boys" + }, + { + "appid": 991960, + "normalized_name": "greed the mad scientist" + }, + { + "appid": 992000, + "normalized_name": "telekinetic" + }, + { + "appid": 992040, + "normalized_name": "moot district" + }, + { + "appid": 992050, + "normalized_name": "oik 5" + }, + { + "appid": 992070, + "normalized_name": "idle wizard" + }, + { + "appid": 992080, + "normalized_name": "spaberry vr experience" + }, + { + "appid": 992120, + "normalized_name": "inch by inch" + }, + { + "appid": 992200, + "normalized_name": "feathery ears 羽耳" + }, + { + "appid": 992210, + "normalized_name": "waves of the atlantide" + }, + { + "appid": 992240, + "normalized_name": "trawel" + }, + { + "appid": 992250, + "normalized_name": "space hockey" + }, + { + "appid": 992300, + "normalized_name": "嗜血印 bloody spell" + }, + { + "appid": 992310, + "normalized_name": "tails noir prologue" + }, + { + "appid": 992330, + "normalized_name": "nightmare (incubo)" + }, + { + "appid": 992360, + "normalized_name": "otiiz's adventure sushi champ" + }, + { + "appid": 992420, + "normalized_name": "cotropitorii" + }, + { + "appid": 992480, + "normalized_name": "sudoku3d" + }, + { + "appid": 992520, + "normalized_name": "meadow fun!!" + }, + { + "appid": 992560, + "normalized_name": "快乐蓝熊happybluebear" + }, + { + "appid": 992600, + "normalized_name": "snake path" + }, + { + "appid": 992610, + "normalized_name": "let's create! pottery vr" + }, + { + "appid": 992620, + "normalized_name": "妖怪俱乐部 demon club" + }, + { + "appid": 992640, + "normalized_name": "pagan absent gods" + }, + { + "appid": 992680, + "normalized_name": "the lovebirds" + }, + { + "appid": 992690, + "normalized_name": "we are the plague" + }, + { + "appid": 992700, + "normalized_name": "lighter" + }, + { + "appid": 992720, + "normalized_name": "東方苦粗芸物語 touhou ksg story" + }, + { + "appid": 992730, + "normalized_name": "neckbreak" + }, + { + "appid": 992740, + "normalized_name": "祈風 inorikaze" + }, + { + "appid": 992750, + "normalized_name": "社稷终于幻想 ~ a finality with sheji" + }, + { + "appid": 992790, + "normalized_name": "switch & ditch" + }, + { + "appid": 992840, + "normalized_name": "car wash simulator" + }, + { + "appid": 992860, + "normalized_name": "intrepid" + }, + { + "appid": 992870, + "normalized_name": "the secret of gillwood" + }, + { + "appid": 992880, + "normalized_name": "space cruise" + }, + { + "appid": 992890, + "normalized_name": "tank raid" + }, + { + "appid": 992910, + "normalized_name": "the black masses" + }, + { + "appid": 992930, + "normalized_name": "zarvot" + }, + { + "appid": 992950, + "normalized_name": "circle rally party" + }, + { + "appid": 992960, + "normalized_name": "a lullaby of colors vr" + }, + { + "appid": 992970, + "normalized_name": "super blackout" + }, + { + "appid": 992990, + "normalized_name": "beyond extinct" + }, + { + "appid": 993030, + "normalized_name": "rebots" + }, + { + "appid": 993110, + "normalized_name": "skinwalker hunt" + }, + { + "appid": 993170, + "normalized_name": "the devil haunts me" + }, + { + "appid": 993200, + "normalized_name": "calcul8²" + }, + { + "appid": 993210, + "normalized_name": "auto gui battler" + }, + { + "appid": 993220, + "normalized_name": "firstplanet" + }, + { + "appid": 993250, + "normalized_name": "cover sky" + }, + { + "appid": 993290, + "normalized_name": "jobu ki" + }, + { + "appid": 993330, + "normalized_name": "island 404" + }, + { + "appid": 993340, + "normalized_name": "virtual surfing" + }, + { + "appid": 993370, + "normalized_name": "killing trials" + }, + { + "appid": 993390, + "normalized_name": "oriza" + }, + { + "appid": 993400, + "normalized_name": "finding summer" + }, + { + "appid": 993490, + "normalized_name": "tower tank td reversal" + }, + { + "appid": 993500, + "normalized_name": "ritual of the moon" + }, + { + "appid": 993520, + "normalized_name": "the mars agenda" + }, + { + "appid": 993530, + "normalized_name": "codename nemesis" + }, + { + "appid": 993580, + "normalized_name": "enchanted path" + }, + { + "appid": 993600, + "normalized_name": "cyberdelic" + }, + { + "appid": 993630, + "normalized_name": "data mining 4" + }, + { + "appid": 993640, + "normalized_name": "boy teen dream" + }, + { + "appid": 993650, + "normalized_name": "bullynoid" + }, + { + "appid": 993680, + "normalized_name": "东方驾考模拟器|chinese driving license test" + }, + { + "appid": 993690, + "normalized_name": "transport services" + }, + { + "appid": 993740, + "normalized_name": "hentai mosaique puzzle" + }, + { + "appid": 993750, + "normalized_name": "girls & sweets" + }, + { + "appid": 993770, + "normalized_name": "lazergrrl" + }, + { + "appid": 993780, + "normalized_name": "jewel match solitaire winterscapes" + }, + { + "appid": 993790, + "normalized_name": "ancient enemy" + }, + { + "appid": 993810, + "normalized_name": "lost city of vampires" + }, + { + "appid": 993860, + "normalized_name": "圈圈工坊 oo.inc" + }, + { + "appid": 993890, + "normalized_name": "scribble plus" + }, + { + "appid": 993960, + "normalized_name": "the faceless double" + }, + { + "appid": 993990, + "normalized_name": "hunger apartment (蚀狱)" + }, + { + "appid": 994020, + "normalized_name": "tempest of the heavens and earth" + }, + { + "appid": 994030, + "normalized_name": "anime girl slide puzzle" + }, + { + "appid": 994040, + "normalized_name": "lichtspeer double speer" + }, + { + "appid": 994140, + "normalized_name": "lightmatter" + }, + { + "appid": 994160, + "normalized_name": "the seduction of shaqeera" + }, + { + "appid": 994170, + "normalized_name": "statue defender" + }, + { + "appid": 994180, + "normalized_name": "tennis fighters" + }, + { + "appid": 994190, + "normalized_name": "sound slide" + }, + { + "appid": 994200, + "normalized_name": "天际起源 the ark of horizon" + }, + { + "appid": 994220, + "normalized_name": "neoverse" + }, + { + "appid": 994230, + "normalized_name": "farming village" + }, + { + "appid": 994250, + "normalized_name": "肥肥大作战 fat battle" + }, + { + "appid": 994260, + "normalized_name": "accel" + }, + { + "appid": 994270, + "normalized_name": "where birds 鸟儿在哪里" + }, + { + "appid": 994280, + "normalized_name": "古剑奇谭三(gujian3)" + }, + { + "appid": 994290, + "normalized_name": "five day great escape 五日大逃亡" + }, + { + "appid": 994310, + "normalized_name": "let's sing 2019" + }, + { + "appid": 994320, + "normalized_name": "night city 2177" + }, + { + "appid": 994340, + "normalized_name": "cat and ghostly road" + }, + { + "appid": 994350, + "normalized_name": "the seduction of shaqeera vr" + }, + { + "appid": 994360, + "normalized_name": "coderbear" + }, + { + "appid": 994450, + "normalized_name": "steel fight" + }, + { + "appid": 994500, + "normalized_name": "sky racket" + }, + { + "appid": 994520, + "normalized_name": "oh trap!" + }, + { + "appid": 994560, + "normalized_name": "metal revolution / 金属对决" + }, + { + "appid": 994650, + "normalized_name": "space struck run" + }, + { + "appid": 994670, + "normalized_name": "threatgen red vs. blue" + }, + { + "appid": 994680, + "normalized_name": "the dungeon experience" + }, + { + "appid": 994700, + "normalized_name": "loco launcher" + }, + { + "appid": 994730, + "normalized_name": "圣女战旗 banner of the maid" + }, + { + "appid": 994750, + "normalized_name": "景行 | encourage" + }, + { + "appid": 994810, + "normalized_name": "parking master drive build manage" + }, + { + "appid": 994860, + "normalized_name": "gunpowder on the teeth arcade" + }, + { + "appid": 994870, + "normalized_name": "mysteries of neverville the runestone of light" + }, + { + "appid": 994900, + "normalized_name": "christmas wonderland 2" + }, + { + "appid": 994910, + "normalized_name": "poker master" + }, + { + "appid": 995000, + "normalized_name": "escape legacy vr" + }, + { + "appid": 995050, + "normalized_name": "havocado ragdoll fighter" + }, + { + "appid": 995060, + "normalized_name": "fant kids animated puzzle" + }, + { + "appid": 995070, + "normalized_name": "rise eterna" + }, + { + "appid": 995140, + "normalized_name": "hand to hand combat" + }, + { + "appid": 995160, + "normalized_name": "impulsow" + }, + { + "appid": 995170, + "normalized_name": "aim bot" + }, + { + "appid": 995210, + "normalized_name": "tale of fortune" + }, + { + "appid": 995230, + "normalized_name": "freediver triton down" + }, + { + "appid": 995240, + "normalized_name": "remilore lost girl in the lands of lore" + }, + { + "appid": 995270, + "normalized_name": "demagnete vr" + }, + { + "appid": 995280, + "normalized_name": "stary" + }, + { + "appid": 995310, + "normalized_name": "marble odyssey" + }, + { + "appid": 995330, + "normalized_name": "干支セトラ陰ノ卷|干支etc.陰之卷" + }, + { + "appid": 995340, + "normalized_name": "the magnet trials" + }, + { + "appid": 995450, + "normalized_name": "geeksos" + }, + { + "appid": 995460, + "normalized_name": "miracle snack shop" + }, + { + "appid": 995470, + "normalized_name": "threshold" + }, + { + "appid": 995480, + "normalized_name": "super president how to rule the country" + }, + { + "appid": 995490, + "normalized_name": "kadath" + }, + { + "appid": 995580, + "normalized_name": "show me the way" + }, + { + "appid": 995680, + "normalized_name": "truck mechanic dangerous paths" + }, + { + "appid": 995700, + "normalized_name": "jewel puzzle click" + }, + { + "appid": 995720, + "normalized_name": "coffee vendor" + }, + { + "appid": 995790, + "normalized_name": "dark sauce" + }, + { + "appid": 995850, + "normalized_name": "m.e.m.e.s." + }, + { + "appid": 995890, + "normalized_name": "echoes of the past the citadels of time collector's" + }, + { + "appid": 995900, + "normalized_name": "haunted hotel eclipse collector's" + }, + { + "appid": 995910, + "normalized_name": "redemption cemetery children's plight collector's" + }, + { + "appid": 995920, + "normalized_name": "myths of the world black rose collector's" + }, + { + "appid": 995930, + "normalized_name": "maestro dark talent collector's" + }, + { + "appid": 995980, + "normalized_name": "fae tactics" + }, + { + "appid": 995990, + "normalized_name": "death leak" + }, + { + "appid": 996000, + "normalized_name": "dark data" + }, + { + "appid": 996050, + "normalized_name": "chieftain" + }, + { + "appid": 996080, + "normalized_name": "king's league ii" + }, + { + "appid": 996140, + "normalized_name": "strange and weird museum" + }, + { + "appid": 996160, + "normalized_name": "quest for the golden duck" + }, + { + "appid": 996180, + "normalized_name": "cryptofall investor simulator" + }, + { + "appid": 996280, + "normalized_name": "buttle tank" + }, + { + "appid": 996370, + "normalized_name": "watch me stream my mental breakdown" + }, + { + "appid": 996380, + "normalized_name": "smartphone tycoon" + }, + { + "appid": 996430, + "normalized_name": "pilot sports" + }, + { + "appid": 996450, + "normalized_name": "7th sea a pirate's pact" + }, + { + "appid": 996550, + "normalized_name": "持猫少女凯蒂/kaidi armed with a cat" + }, + { + "appid": 996580, + "normalized_name": "spyro reignited trilogy" + }, + { + "appid": 996620, + "normalized_name": "lcd sports american football" + }, + { + "appid": 996650, + "normalized_name": "a christmas peril" + }, + { + "appid": 996690, + "normalized_name": "rocktop" + }, + { + "appid": 996710, + "normalized_name": "天火(tianhuo)" + }, + { + "appid": 996730, + "normalized_name": "unknown" + }, + { + "appid": 996770, + "normalized_name": "moving out" + }, + { + "appid": 996860, + "normalized_name": "planet nine" + }, + { + "appid": 996920, + "normalized_name": "continue" + }, + { + "appid": 996980, + "normalized_name": "dis pontibus" + }, + { + "appid": 997000, + "normalized_name": "osiris" + }, + { + "appid": 997010, + "normalized_name": "police simulator patrol officers" + }, + { + "appid": 997020, + "normalized_name": "aye aye captain" + }, + { + "appid": 997030, + "normalized_name": "earth atlantis" + }, + { + "appid": 997050, + "normalized_name": "hentai like a boss" + }, + { + "appid": 997060, + "normalized_name": "kotodama the 7 mysteries of fujisawa" + }, + { + "appid": 997090, + "normalized_name": "theflagship" + }, + { + "appid": 997170, + "normalized_name": "zombie scrapper" + }, + { + "appid": 997180, + "normalized_name": "be you" + }, + { + "appid": 997240, + "normalized_name": "siluman fantasy first half" + }, + { + "appid": 997260, + "normalized_name": "hyper scuffle" + }, + { + "appid": 997270, + "normalized_name": "傲皇忆剑诀" + }, + { + "appid": 997280, + "normalized_name": "final_sim" + }, + { + "appid": 997290, + "normalized_name": "hypergalaxy squad" + }, + { + "appid": 997310, + "normalized_name": "rolly's adventure" + }, + { + "appid": 997370, + "normalized_name": "simplemovie" + }, + { + "appid": 997380, + "normalized_name": "the sapling" + }, + { + "appid": 997430, + "normalized_name": "the mirum" + }, + { + "appid": 997480, + "normalized_name": "the far kingdoms age of solitaire" + }, + { + "appid": 997500, + "normalized_name": "ship fight" + }, + { + "appid": 997530, + "normalized_name": "caladria chronicles" + }, + { + "appid": 997560, + "normalized_name": "flash point online fps" + }, + { + "appid": 997640, + "normalized_name": "pixel life" + }, + { + "appid": 997650, + "normalized_name": "plague squad" + }, + { + "appid": 997670, + "normalized_name": "ninja power slasher" + }, + { + "appid": 997700, + "normalized_name": "瓶中精灵 fairy in a jar" + }, + { + "appid": 997710, + "normalized_name": "ravenland" + }, + { + "appid": 997720, + "normalized_name": "let's learn japanese! hiragana" + }, + { + "appid": 997730, + "normalized_name": "deez" + }, + { + "appid": 997760, + "normalized_name": "ggang!" + }, + { + "appid": 997770, + "normalized_name": "dungeon maze" + }, + { + "appid": 997810, + "normalized_name": "room escape mark's room" + }, + { + "appid": 997820, + "normalized_name": "battle box" + }, + { + "appid": 997870, + "normalized_name": "city defense" + }, + { + "appid": 997900, + "normalized_name": "ordinem" + }, + { + "appid": 997950, + "normalized_name": "folding edge" + }, + { + "appid": 998010, + "normalized_name": "chroma deluxe sexy hentai girls" + }, + { + "appid": 998020, + "normalized_name": "unearthing mars 2 the ancient war" + }, + { + "appid": 998150, + "normalized_name": "荒野大蛮神" + }, + { + "appid": 998220, + "normalized_name": "the dungeon of lulu farea" + }, + { + "appid": 998270, + "normalized_name": "the other airi's adventure" + }, + { + "appid": 998300, + "normalized_name": "欢乐块队" + }, + { + "appid": 998400, + "normalized_name": "trans siberian railway simulator" + }, + { + "appid": 998480, + "normalized_name": "gangsta sniper 2 revenge" + }, + { + "appid": 998530, + "normalized_name": "winter sports games" + }, + { + "appid": 998570, + "normalized_name": "de'vine card battles" + }, + { + "appid": 998590, + "normalized_name": "infernum" + }, + { + "appid": 998630, + "normalized_name": "fated era" + }, + { + "appid": 998660, + "normalized_name": "sopwith vr" + }, + { + "appid": 998690, + "normalized_name": "run away" + }, + { + "appid": 998730, + "normalized_name": "hail to the king" + }, + { + "appid": 998740, + "normalized_name": "ring of pain" + }, + { + "appid": 998760, + "normalized_name": "chewing" + }, + { + "appid": 998780, + "normalized_name": "ataque marino" + }, + { + "appid": 998790, + "normalized_name": "piczle lines dx+α" + }, + { + "appid": 998820, + "normalized_name": "cortex" + }, + { + "appid": 998830, + "normalized_name": "the last roman village" + }, + { + "appid": 998850, + "normalized_name": "knights of the card table" + }, + { + "appid": 998890, + "normalized_name": "the colony" + }, + { + "appid": 998930, + "normalized_name": "seek girl" + }, + { + "appid": 998940, + "normalized_name": "隐形守护者 the invisible guardian" + }, + { + "appid": 998950, + "normalized_name": "rhythm nights" + }, + { + "appid": 998990, + "normalized_name": "psyvariar delta" + }, + { + "appid": 999020, + "normalized_name": "mega man zero/zx legacy collection" + }, + { + "appid": 999030, + "normalized_name": "gamepad massage" + }, + { + "appid": 999040, + "normalized_name": "k.o.m.a" + }, + { + "appid": 999180, + "normalized_name": "hunter survive zero" + }, + { + "appid": 999190, + "normalized_name": "endz village" + }, + { + "appid": 999200, + "normalized_name": "offendron warrior" + }, + { + "appid": 999220, + "normalized_name": "amnesia rebirth" + }, + { + "appid": 999250, + "normalized_name": "chucky" + }, + { + "appid": 999270, + "normalized_name": "war builder league" + }, + { + "appid": 999280, + "normalized_name": "bahama conch n burger shack" + }, + { + "appid": 999290, + "normalized_name": "nine hentai babes" + }, + { + "appid": 999330, + "normalized_name": "juggernauts" + }, + { + "appid": 999340, + "normalized_name": "nature hunter" + }, + { + "appid": 999350, + "normalized_name": "epics of distant realm director's cut" + }, + { + "appid": 999360, + "normalized_name": "soul room" + }, + { + "appid": 999410, + "normalized_name": "magnibox" + }, + { + "appid": 999430, + "normalized_name": "santa tracker" + }, + { + "appid": 999450, + "normalized_name": "lukewarm ironclad" + }, + { + "appid": 999480, + "normalized_name": "hentai color by number" + }, + { + "appid": 999560, + "normalized_name": "fragile equilibrium" + }, + { + "appid": 999570, + "normalized_name": "latin simulator" + }, + { + "appid": 999640, + "normalized_name": "cube defense" + }, + { + "appid": 999660, + "normalized_name": "samurai shodown neogeo collection" + }, + { + "appid": 999760, + "normalized_name": "mobile wars x" + }, + { + "appid": 999830, + "normalized_name": "becalm" + }, + { + "appid": 999860, + "normalized_name": "enemy on board" + }, + { + "appid": 999890, + "normalized_name": "bruken" + }, + { + "appid": 999930, + "normalized_name": "fantasy sino japanese war 幻想甲午" + }, + { + "appid": 999990, + "normalized_name": "bouncing hero" + }, + { + "appid": 1000000, + "normalized_name": "ascenxion" + }, + { + "appid": 1000010, + "normalized_name": "crown trick / 不思议的皇冠" + }, + { + "appid": 1000020, + "normalized_name": "organ corruption" + }, + { + "appid": 1000030, + "normalized_name": "cook serve delicious! 3?!" + }, + { + "appid": 1000040, + "normalized_name": "细胞战争" + }, + { + "appid": 1000050, + "normalized_name": "我的一个多重人格朋友" + }, + { + "appid": 1000080, + "normalized_name": "zengeon" + }, + { + "appid": 1000100, + "normalized_name": "干支セトラ陽ノ卷|干支etc.陽之卷" + }, + { + "appid": 1000110, + "normalized_name": "jumping master(跳跳大咖)" + }, + { + "appid": 1000130, + "normalized_name": "cube defender" + }, + { + "appid": 1000280, + "normalized_name": "tower of origin2 worm's nest" + }, + { + "appid": 1000310, + "normalized_name": "人气动漫大乱斗" + }, + { + "appid": 1000360, + "normalized_name": "hellish quart" + }, + { + "appid": 1000380, + "normalized_name": "rogue reaper" + }, + { + "appid": 1000410, + "normalized_name": "wrath aeon of ruin" + }, + { + "appid": 1000440, + "normalized_name": "东方雪莲华 ~ abyss soul lotus." + }, + { + "appid": 1000460, + "normalized_name": "arsonist" + }, + { + "appid": 1000470, + "normalized_name": "drawngeon dungeons of ink and paper" + }, + { + "appid": 1000480, + "normalized_name": "battle motion" + }, + { + "appid": 1000500, + "normalized_name": "the undisputables online multiplayer shooter" + }, + { + "appid": 1000540, + "normalized_name": "tactical control" + }, + { + "appid": 1000550, + "normalized_name": "love hentai endgame" + }, + { + "appid": 1000600, + "normalized_name": "the screamaze" + }, + { + "appid": 1000640, + "normalized_name": "clam man" + }, + { + "appid": 1000650, + "normalized_name": "fist of heaven & hell" + }, + { + "appid": 1000700, + "normalized_name": "insomnis" + }, + { + "appid": 1000750, + "normalized_name": "rotund rebound" + }, + { + "appid": 1000760, + "normalized_name": "foregone" + }, + { + "appid": 1000770, + "normalized_name": "urban tale" + }, + { + "appid": 1000790, + "normalized_name": "flex apocalypse racing" + }, + { + "appid": 1000800, + "normalized_name": "beetle elf" + }, + { + "appid": 1000810, + "normalized_name": "roguecraft squadron" + }, + { + "appid": 1000830, + "normalized_name": "gachi finder 3000" + }, + { + "appid": 1000860, + "normalized_name": "allspace" + }, + { + "appid": 1000880, + "normalized_name": "reptomom" + }, + { + "appid": 1000900, + "normalized_name": "zero spring episode 3" + }, + { + "appid": 1000980, + "normalized_name": "kill tiger" + }, + { + "appid": 1000990, + "normalized_name": "gun beat" + }, + { + "appid": 1001010, + "normalized_name": "雪·疑 sknow" + }, + { + "appid": 1001040, + "normalized_name": "glorious companions" + }, + { + "appid": 1001070, + "normalized_name": "koi" + }, + { + "appid": 1001100, + "normalized_name": "kooring vr wonderland mecadino's attack" + }, + { + "appid": 1001120, + "normalized_name": "shadow of the groundhog" + }, + { + "appid": 1001140, + "normalized_name": "angry birds vr isle of pigs" + }, + { + "appid": 1001180, + "normalized_name": "cross the red line" + }, + { + "appid": 1001200, + "normalized_name": "rowrow" + }, + { + "appid": 1001220, + "normalized_name": "bonecraft" + }, + { + "appid": 1001230, + "normalized_name": "partial control" + }, + { + "appid": 1001240, + "normalized_name": "vr flight simulator new york cessna" + }, + { + "appid": 1001270, + "normalized_name": "kebab chefs! restaurant simulator" + }, + { + "appid": 1001390, + "normalized_name": "virefit" + }, + { + "appid": 1001430, + "normalized_name": "next stop 3" + }, + { + "appid": 1001450, + "normalized_name": "the town" + }, + { + "appid": 1001490, + "normalized_name": "tower behind the moon" + }, + { + "appid": 1001500, + "normalized_name": "chronicon apocalyptica" + }, + { + "appid": 1001520, + "normalized_name": "" + }, + { + "appid": 1001530, + "normalized_name": "chalkship" + }, + { + "appid": 1001550, + "normalized_name": "in orbit" + }, + { + "appid": 1001570, + "normalized_name": "guide" + }, + { + "appid": 1001590, + "normalized_name": "grab lab" + }, + { + "appid": 1001600, + "normalized_name": "diggerman" + }, + { + "appid": 1001640, + "normalized_name": "where the bees make honey" + }, + { + "appid": 1001660, + "normalized_name": "the demon crystal" + }, + { + "appid": 1001690, + "normalized_name": "mars flight vr" + }, + { + "appid": 1001730, + "normalized_name": "twisting mower" + }, + { + "appid": 1001740, + "normalized_name": "diamonds" + }, + { + "appid": 1001800, + "normalized_name": "kunai" + }, + { + "appid": 1001860, + "normalized_name": "casual desktop game" + }, + { + "appid": 1001870, + "normalized_name": "robovirus" + }, + { + "appid": 1001880, + "normalized_name": "amaze valentine" + }, + { + "appid": 1001910, + "normalized_name": "fused" + }, + { + "appid": 1001930, + "normalized_name": "tau cubis" + }, + { + "appid": 1001960, + "normalized_name": "zibbs alien survival" + }, + { + "appid": 1001970, + "normalized_name": "rhythmy" + }, + { + "appid": 1001980, + "normalized_name": "archeo shinar" + }, + { + "appid": 1001990, + "normalized_name": "wared" + }, + { + "appid": 1002000, + "normalized_name": "spitlings" + }, + { + "appid": 1002010, + "normalized_name": "cyber.one racing for souls" + }, + { + "appid": 1002030, + "normalized_name": "hentai beautiful girls" + }, + { + "appid": 1002040, + "normalized_name": "rebellion again" + }, + { + "appid": 1002100, + "normalized_name": "negligee love stories (all ages)" + }, + { + "appid": 1002180, + "normalized_name": "aussie battler tanks" + }, + { + "appid": 1002200, + "normalized_name": "vasilis" + }, + { + "appid": 1002210, + "normalized_name": "孤岛(isolated island)" + }, + { + "appid": 1002230, + "normalized_name": "war of three kingdoms" + }, + { + "appid": 1002260, + "normalized_name": "ruffy and the riverside" + }, + { + "appid": 1002270, + "normalized_name": "piisim" + }, + { + "appid": 1002280, + "normalized_name": "the far kingdoms elements" + }, + { + "appid": 1002290, + "normalized_name": "某1种青春" + }, + { + "appid": 1002300, + "normalized_name": "fear & hunger" + }, + { + "appid": 1002310, + "normalized_name": "the childs sight" + }, + { + "appid": 1002360, + "normalized_name": "バグダス デバッガー検定" + }, + { + "appid": 1002410, + "normalized_name": "the five cores" + }, + { + "appid": 1002420, + "normalized_name": "agartha" + }, + { + "appid": 1002430, + "normalized_name": "victory road" + }, + { + "appid": 1002440, + "normalized_name": "fantastic creatures" + }, + { + "appid": 1002450, + "normalized_name": "evening star 2 tide of chaos" + }, + { + "appid": 1002480, + "normalized_name": "condors vs ocelots" + }, + { + "appid": 1002490, + "normalized_name": "roulette simulator 2" + }, + { + "appid": 1002500, + "normalized_name": "m.c.i. escapes" + }, + { + "appid": 1002510, + "normalized_name": "the spell a kinetic novel" + }, + { + "appid": 1002520, + "normalized_name": "eggys games flash collection" + }, + { + "appid": 1002540, + "normalized_name": "ha/ck" + }, + { + "appid": 1002560, + "normalized_name": "tiny snow" + }, + { + "appid": 1002580, + "normalized_name": "cell defender" + }, + { + "appid": 1002590, + "normalized_name": "n gon" + }, + { + "appid": 1002600, + "normalized_name": "temple of pizza" + }, + { + "appid": 1002630, + "normalized_name": "awake" + }, + { + "appid": 1002650, + "normalized_name": "puttin' around" + }, + { + "appid": 1002670, + "normalized_name": "sof raiders" + }, + { + "appid": 1002690, + "normalized_name": "hand of horzasha" + }, + { + "appid": 1002750, + "normalized_name": "ordo et chao new world" + }, + { + "appid": 1002800, + "normalized_name": "tsumi" + }, + { + "appid": 1002820, + "normalized_name": "deathopolis" + }, + { + "appid": 1002830, + "normalized_name": "latte stand tycoon" + }, + { + "appid": 1002850, + "normalized_name": "古战三国 ancient war three kingdoms" + }, + { + "appid": 1002860, + "normalized_name": "magus over fool" + }, + { + "appid": 1002890, + "normalized_name": "galaxity beta vr" + }, + { + "appid": 1002910, + "normalized_name": "twisty puzzle simulator" + }, + { + "appid": 1002920, + "normalized_name": "the last dinner" + }, + { + "appid": 1002930, + "normalized_name": "坦克大战 war of tanks" + }, + { + "appid": 1002950, + "normalized_name": "gravity panda" + }, + { + "appid": 1002960, + "normalized_name": "hentai netwalk" + }, + { + "appid": 1002970, + "normalized_name": "freefall 3050ad" + }, + { + "appid": 1002980, + "normalized_name": "symploke legend of gustavo bueno (chapter 3)" + }, + { + "appid": 1003010, + "normalized_name": "clicker warriors" + }, + { + "appid": 1003020, + "normalized_name": "alluna and brie re tentacled" + }, + { + "appid": 1003070, + "normalized_name": "groomer" + }, + { + "appid": 1003090, + "normalized_name": "through the darkest of times" + }, + { + "appid": 1003120, + "normalized_name": "hitchhiker a mystery game" + }, + { + "appid": 1003150, + "normalized_name": "transit" + }, + { + "appid": 1003190, + "normalized_name": "alpacapaca double dash" + }, + { + "appid": 1003230, + "normalized_name": "aira vr" + }, + { + "appid": 1003260, + "normalized_name": "be a lord" + }, + { + "appid": 1003320, + "normalized_name": "nya nya nya girls 2 (ʻʻʻ)_(=^・ω・^=)_(ʻʻʻ)" + }, + { + "appid": 1003360, + "normalized_name": "шхд зима / it's winter" + }, + { + "appid": 1003370, + "normalized_name": "graywalkers purgatory" + }, + { + "appid": 1003400, + "normalized_name": "the lord of the rings journeys in middle earth" + }, + { + "appid": 1003450, + "normalized_name": "terrorarium" + }, + { + "appid": 1003460, + "normalized_name": "desolus" + }, + { + "appid": 1003480, + "normalized_name": "fireboy & watergirl elements" + }, + { + "appid": 1003490, + "normalized_name": "cat notebook" + }, + { + "appid": 1003520, + "normalized_name": "hentai crush" + }, + { + "appid": 1003530, + "normalized_name": "学院英雄梦 herodreamofschool" + }, + { + "appid": 1003560, + "normalized_name": "crumbling world" + }, + { + "appid": 1003590, + "normalized_name": "tetris effect connected" + }, + { + "appid": 1003600, + "normalized_name": "nashbored" + }, + { + "appid": 1003650, + "normalized_name": "abandonment" + }, + { + "appid": 1003670, + "normalized_name": "vacation adventures park ranger" + }, + { + "appid": 1003690, + "normalized_name": "crosstrix" + }, + { + "appid": 1003700, + "normalized_name": "sky labyrinth" + }, + { + "appid": 1003730, + "normalized_name": "soko loco deluxe" + }, + { + "appid": 1003750, + "normalized_name": "她2 我还想再见到你 her2 i want to see you again" + }, + { + "appid": 1003760, + "normalized_name": "aether way" + }, + { + "appid": 1003830, + "normalized_name": "cold silence" + }, + { + "appid": 1003840, + "normalized_name": "шпмл5 (shpml5)" + }, + { + "appid": 1003850, + "normalized_name": "dark sun pictures' dark sun the space shooter" + }, + { + "appid": 1003860, + "normalized_name": "gravity ace" + }, + { + "appid": 1003880, + "normalized_name": "sky of destruction" + }, + { + "appid": 1003890, + "normalized_name": "blacksad under the skin" + }, + { + "appid": 1003900, + "normalized_name": "chromatose" + }, + { + "appid": 1003940, + "normalized_name": "invasion zero" + }, + { + "appid": 1003950, + "normalized_name": "right to rule" + }, + { + "appid": 1003960, + "normalized_name": "de profundis" + }, + { + "appid": 1004000, + "normalized_name": "card brawl" + }, + { + "appid": 1004030, + "normalized_name": "rhythm overdrive" + }, + { + "appid": 1004040, + "normalized_name": "paizuri fantasies kinetic novel" + }, + { + "appid": 1004050, + "normalized_name": "time of the zombies" + }, + { + "appid": 1004090, + "normalized_name": "exurgo" + }, + { + "appid": 1004100, + "normalized_name": "chaos caves" + }, + { + "appid": 1004150, + "normalized_name": "madorica real estate" + }, + { + "appid": 1004160, + "normalized_name": "enadakina" + }, + { + "appid": 1004170, + "normalized_name": "the truck game" + }, + { + "appid": 1004180, + "normalized_name": "boundary vr" + }, + { + "appid": 1004200, + "normalized_name": "biathlon battle vr" + }, + { + "appid": 1004210, + "normalized_name": "pandamonia 潘德莫尼亚" + }, + { + "appid": 1004230, + "normalized_name": "the revenge of johnny bonasera episode 3" + }, + { + "appid": 1004240, + "normalized_name": "hentai girl karen" + }, + { + "appid": 1004270, + "normalized_name": "my island" + }, + { + "appid": 1004310, + "normalized_name": "maze 3d" + }, + { + "appid": 1004330, + "normalized_name": "my exercise" + }, + { + "appid": 1004350, + "normalized_name": "area cooperation economic simulation north korea (aces)" + }, + { + "appid": 1004370, + "normalized_name": "paper cut mansion" + }, + { + "appid": 1004490, + "normalized_name": "tools up!" + }, + { + "appid": 1004500, + "normalized_name": "the chronicles of jonah and the whale" + }, + { + "appid": 1004510, + "normalized_name": "downstream vr whitewater kayaking" + }, + { + "appid": 1004550, + "normalized_name": "stickman racer road draw 2" + }, + { + "appid": 1004560, + "normalized_name": "everpath" + }, + { + "appid": 1004570, + "normalized_name": "blocks" + }, + { + "appid": 1004580, + "normalized_name": "microwasp seekers" + }, + { + "appid": 1004600, + "normalized_name": "find life ep1" + }, + { + "appid": 1004610, + "normalized_name": "roombo first blood" + }, + { + "appid": 1004620, + "normalized_name": "kungfu kickball" + }, + { + "appid": 1004650, + "normalized_name": "unlock me" + }, + { + "appid": 1004710, + "normalized_name": "pocket car vrground" + }, + { + "appid": 1004750, + "normalized_name": "wrc 8 fia world rally championship" + }, + { + "appid": 1004770, + "normalized_name": "maiden and spell" + }, + { + "appid": 1004780, + "normalized_name": "noel's hope" + }, + { + "appid": 1004790, + "normalized_name": "psyops solutions" + }, + { + "appid": 1004800, + "normalized_name": "aquatica" + }, + { + "appid": 1004860, + "normalized_name": "the secret order 7 shadow breach" + }, + { + "appid": 1005000, + "normalized_name": "argonauts agency golden fleece" + }, + { + "appid": 1005050, + "normalized_name": "fabulous angela's true colors" + }, + { + "appid": 1005060, + "normalized_name": "fabulous new york to la" + }, + { + "appid": 1005080, + "normalized_name": "yukinas diary" + }, + { + "appid": 1005090, + "normalized_name": "传送到异世界开后宫" + }, + { + "appid": 1005120, + "normalized_name": "touhou genso wanderer lotus labyrinth r" + }, + { + "appid": 1005130, + "normalized_name": "delicious emily's road trip" + }, + { + "appid": 1005180, + "normalized_name": "sente" + }, + { + "appid": 1005210, + "normalized_name": "pixel puzzles trivia" + }, + { + "appid": 1005220, + "normalized_name": "pixel puzzles world war ii jigsaw puzzles" + }, + { + "appid": 1005230, + "normalized_name": "pixel puzzles musical" + }, + { + "appid": 1005240, + "normalized_name": "pixel puzzles illustrations & anime jigsaw puzzles" + }, + { + "appid": 1005250, + "normalized_name": "arkane rush multiverse mayhem" + }, + { + "appid": 1005300, + "normalized_name": "the jackbox party pack 6" + }, + { + "appid": 1005310, + "normalized_name": "snake vs snake" + }, + { + "appid": 1005320, + "normalized_name": "dragon's hope" + }, + { + "appid": 1005330, + "normalized_name": "the polynesian cultural center vr experience" + }, + { + "appid": 1005340, + "normalized_name": "myths and legends card game" + }, + { + "appid": 1005390, + "normalized_name": "anti grav bamboo copter" + }, + { + "appid": 1005400, + "normalized_name": "star drift evolution" + }, + { + "appid": 1005410, + "normalized_name": "freedom finger" + }, + { + "appid": 1005420, + "normalized_name": "mental house" + }, + { + "appid": 1005450, + "normalized_name": "vision soft reset" + }, + { + "appid": 1005460, + "normalized_name": "nationwar2" + }, + { + "appid": 1005470, + "normalized_name": "cubians combine" + }, + { + "appid": 1005480, + "normalized_name": "eliseisk 2074" + }, + { + "appid": 1005490, + "normalized_name": "the deep diving of flooddragon" + }, + { + "appid": 1005520, + "normalized_name": "harem girl alicia" + }, + { + "appid": 1005530, + "normalized_name": "club soccer director pro 2020" + }, + { + "appid": 1005560, + "normalized_name": "went 行界" + }, + { + "appid": 1005630, + "normalized_name": "hope for village" + }, + { + "appid": 1005730, + "normalized_name": "the first track" + }, + { + "appid": 1005780, + "normalized_name": "card adventures" + }, + { + "appid": 1005820, + "normalized_name": "chishiki runner" + }, + { + "appid": 1005870, + "normalized_name": "hyperfight" + }, + { + "appid": 1005890, + "normalized_name": "kaleido stella" + }, + { + "appid": 1005900, + "normalized_name": "christmas time 2019" + }, + { + "appid": 1005910, + "normalized_name": "takanaria" + }, + { + "appid": 1005920, + "normalized_name": "muscles and bullets" + }, + { + "appid": 1005930, + "normalized_name": "timeflow – life sim" + }, + { + "appid": 1005940, + "normalized_name": "thalu dreamtime is now" + }, + { + "appid": 1005950, + "normalized_name": "大老爷" + }, + { + "appid": 1005990, + "normalized_name": "swordbreaker back to the castle" + }, + { + "appid": 1006000, + "normalized_name": "дока 2 полное проникновение" + }, + { + "appid": 1006090, + "normalized_name": "retro space shooter" + }, + { + "appid": 1006120, + "normalized_name": "tetsumo party" + }, + { + "appid": 1006140, + "normalized_name": "heroes of a broken land 2" + }, + { + "appid": 1006150, + "normalized_name": "urban justice" + }, + { + "appid": 1006160, + "normalized_name": "dungeons of legend cast within" + }, + { + "appid": 1006170, + "normalized_name": "消灭魔王军 destroy the demon army" + }, + { + "appid": 1006190, + "normalized_name": "colorvore" + }, + { + "appid": 1006220, + "normalized_name": "type knight" + }, + { + "appid": 1006250, + "normalized_name": "love in the limelight" + }, + { + "appid": 1006270, + "normalized_name": "oldbi tyt ?" + }, + { + "appid": 1006400, + "normalized_name": "fantasia of the wind 2 风之幻想曲 第二部" + }, + { + "appid": 1006410, + "normalized_name": "tanks endeavor" + }, + { + "appid": 1006440, + "normalized_name": "the dame was loaded" + }, + { + "appid": 1006450, + "normalized_name": "eric the unready" + }, + { + "appid": 1006460, + "normalized_name": "mission critical" + }, + { + "appid": 1006470, + "normalized_name": "the legacy of music" + }, + { + "appid": 1006600, + "normalized_name": "hentai octoq puzzle" + }, + { + "appid": 1006620, + "normalized_name": "无尽深渊" + }, + { + "appid": 1006680, + "normalized_name": "expanse" + }, + { + "appid": 1006720, + "normalized_name": "puzzle birds" + }, + { + "appid": 1006730, + "normalized_name": "cantrip cafe" + }, + { + "appid": 1006760, + "normalized_name": "cyborg ninja vs. the third reich" + }, + { + "appid": 1006770, + "normalized_name": "the last letter" + }, + { + "appid": 1006830, + "normalized_name": "moonlight thief" + }, + { + "appid": 1006880, + "normalized_name": "chocolate makes you happy valentine's day" + }, + { + "appid": 1006900, + "normalized_name": "last line vr a zombie defense game" + }, + { + "appid": 1006920, + "normalized_name": "pull ball" + }, + { + "appid": 1006930, + "normalized_name": "hentai jigsaw puzzle" + }, + { + "appid": 1006950, + "normalized_name": "dragons be" + }, + { + "appid": 1007040, + "normalized_name": "earth defense force 5" + }, + { + "appid": 1007050, + "normalized_name": "dark hill museum of death" + }, + { + "appid": 1007070, + "normalized_name": "borderstrain" + }, + { + "appid": 1007080, + "normalized_name": "death rpg" + }, + { + "appid": 1007140, + "normalized_name": "future aero racing s ultra" + }, + { + "appid": 1007180, + "normalized_name": "retromancer" + }, + { + "appid": 1007200, + "normalized_name": "mutagen extinction" + }, + { + "appid": 1007210, + "normalized_name": "trouble travel tt" + }, + { + "appid": 1007230, + "normalized_name": "vrlab academy anatomy vr" + }, + { + "appid": 1007240, + "normalized_name": "stage of light" + }, + { + "appid": 1007260, + "normalized_name": "bubblegum push" + }, + { + "appid": 1007280, + "normalized_name": "the den of chaos 混沌の魔窟殿~アヒアハン19世の指令編~" + }, + { + "appid": 1007350, + "normalized_name": "mirror maker" + }, + { + "appid": 1007360, + "normalized_name": "szen" + }, + { + "appid": 1007380, + "normalized_name": "suchawira world traveler" + }, + { + "appid": 1007400, + "normalized_name": "alien shooter 2 the legend" + }, + { + "appid": 1007430, + "normalized_name": "sixcubes" + }, + { + "appid": 1007440, + "normalized_name": "solitaire learn chemistry" + }, + { + "appid": 1007470, + "normalized_name": "raven the last neko slayer" + }, + { + "appid": 1007490, + "normalized_name": "gladiator blades of fury" + }, + { + "appid": 1007540, + "normalized_name": "tankdestruction" + }, + { + "appid": 1007560, + "normalized_name": "fun vr farm" + }, + { + "appid": 1007630, + "normalized_name": "wraithslayer" + }, + { + "appid": 1007650, + "normalized_name": "real girl 3 virtual sex" + }, + { + "appid": 1007730, + "normalized_name": "greed 2 forbidden experiments" + }, + { + "appid": 1007740, + "normalized_name": "refight the last warship" + }, + { + "appid": 1007760, + "normalized_name": "omni axes" + }, + { + "appid": 1007800, + "normalized_name": "single diary fresh graduate" + }, + { + "appid": 1007810, + "normalized_name": "重明鸟 bright bird" + }, + { + "appid": 1007820, + "normalized_name": "brawl" + }, + { + "appid": 1007830, + "normalized_name": "edgar bokbok in boulzac" + }, + { + "appid": 1007840, + "normalized_name": "wanking simulator" + }, + { + "appid": 1007870, + "normalized_name": "b画少说" + }, + { + "appid": 1007880, + "normalized_name": "i am ball" + }, + { + "appid": 1007890, + "normalized_name": "vr paper star" + }, + { + "appid": 1007930, + "normalized_name": "space digger" + }, + { + "appid": 1007940, + "normalized_name": "classic jigsaw puzzles" + }, + { + "appid": 1007950, + "normalized_name": "birchian flight simulator" + }, + { + "appid": 1007970, + "normalized_name": "this side (early access game)" + }, + { + "appid": 1007980, + "normalized_name": "santa in search of toys" + }, + { + "appid": 1007990, + "normalized_name": "dodge dummy" + }, + { + "appid": 1008010, + "normalized_name": "spykebots" + }, + { + "appid": 1008020, + "normalized_name": "lust epidemic" + }, + { + "appid": 1008030, + "normalized_name": "consolation board meeting anthology" + }, + { + "appid": 1008060, + "normalized_name": "the hardest brickbreaker" + }, + { + "appid": 1008070, + "normalized_name": "i see you" + }, + { + "appid": 1008140, + "normalized_name": "the chills" + }, + { + "appid": 1008180, + "normalized_name": "puzzle girls celia" + }, + { + "appid": 1008210, + "normalized_name": "harem girl nikki" + }, + { + "appid": 1008230, + "normalized_name": "witches brew" + }, + { + "appid": 1008240, + "normalized_name": "puzzle girls cheryl" + }, + { + "appid": 1008260, + "normalized_name": "where is the beach?" + }, + { + "appid": 1008280, + "normalized_name": "fairy picturebook of hero and sorceress / 勇者と魔法使いとおとぎの絵本" + }, + { + "appid": 1008320, + "normalized_name": "epic adventures la jangada" + }, + { + "appid": 1008340, + "normalized_name": "insect worlds" + }, + { + "appid": 1008370, + "normalized_name": "achievement collector dog" + }, + { + "appid": 1008390, + "normalized_name": "crazy mosquito simulator" + }, + { + "appid": 1008430, + "normalized_name": "alpha command" + }, + { + "appid": 1008450, + "normalized_name": "maze quest 2 the desert" + }, + { + "appid": 1008510, + "normalized_name": "who is this man" + }, + { + "appid": 1008520, + "normalized_name": "mahjong strip solitaire harem guild" + }, + { + "appid": 1008580, + "normalized_name": "overstep" + }, + { + "appid": 1008590, + "normalized_name": "twaddle paddle" + }, + { + "appid": 1008600, + "normalized_name": "shadowy contracts" + }, + { + "appid": 1008610, + "normalized_name": "the trials of olympus ii wrath of the gods" + }, + { + "appid": 1008680, + "normalized_name": "crazy archery" + }, + { + "appid": 1008690, + "normalized_name": "lost daughter" + }, + { + "appid": 1008700, + "normalized_name": "golf pool vr" + }, + { + "appid": 1008710, + "normalized_name": "wet girl" + }, + { + "appid": 1008740, + "normalized_name": "cube mission" + }, + { + "appid": 1008800, + "normalized_name": "shards of infinity" + }, + { + "appid": 1008820, + "normalized_name": "lotus minigames united nations" + }, + { + "appid": 1008830, + "normalized_name": "孙悟空大战机器金刚 / sun wukong vs robot" + }, + { + "appid": 1008850, + "normalized_name": "bounty hunter" + }, + { + "appid": 1008860, + "normalized_name": "repella fella" + }, + { + "appid": 1008870, + "normalized_name": "excive a 1000" + }, + { + "appid": 1008890, + "normalized_name": "jetball arena" + }, + { + "appid": 1008910, + "normalized_name": "心塞男孩 sadboy" + }, + { + "appid": 1008920, + "normalized_name": "photographs" + }, + { + "appid": 1008950, + "normalized_name": "armored front tiger command" + }, + { + "appid": 1008970, + "normalized_name": "cavyrn" + }, + { + "appid": 1008990, + "normalized_name": "trinity.town monastery | martial arts and meditation" + }, + { + "appid": 1009030, + "normalized_name": "hello emoji drawing to solve puzzles" + }, + { + "appid": 1009040, + "normalized_name": "last days motel" + }, + { + "appid": 1009100, + "normalized_name": "zombie killer type to shoot!" + }, + { + "appid": 1009150, + "normalized_name": "choconoa" + }, + { + "appid": 1009180, + "normalized_name": "block of rum" + }, + { + "appid": 1009190, + "normalized_name": "燃烧的彩虹:绣球和你都会接住之姐姐中了老龄化病毒, 而看起来天然糊涂蛋的妹妹该如何对决拥有专属bgm的『shiti·孙咲川』&『tanke·桥碧萝』&『人间毒药·菜菜子』 ★还有人支持艺术吗★ burning rainbow!" + }, + { + "appid": 1009200, + "normalized_name": "💥tanks on the eastern front💥" + }, + { + "appid": 1009220, + "normalized_name": "esc 8 bit" + }, + { + "appid": 1009230, + "normalized_name": "live mince" + }, + { + "appid": 1009240, + "normalized_name": "again" + }, + { + "appid": 1009260, + "normalized_name": "grottonnia" + }, + { + "appid": 1009290, + "normalized_name": "sword art online alicization lycoris" + }, + { + "appid": 1009300, + "normalized_name": "achievement collector zombie" + }, + { + "appid": 1009350, + "normalized_name": "keepers dungeon" + }, + { + "appid": 1009360, + "normalized_name": "harold's walk" + }, + { + "appid": 1009370, + "normalized_name": "elephants can't jump" + }, + { + "appid": 1009390, + "normalized_name": "insanus express" + }, + { + "appid": 1009410, + "normalized_name": "eternal exodus" + }, + { + "appid": 1009450, + "normalized_name": "sankaku renai love triangle trouble" + }, + { + "appid": 1009460, + "normalized_name": "hello goodbye" + }, + { + "appid": 1009560, + "normalized_name": "the tenants" + }, + { + "appid": 1009570, + "normalized_name": "admin simulator" + }, + { + "appid": 1009580, + "normalized_name": "storage kings" + }, + { + "appid": 1009590, + "normalized_name": "little lost robots" + }, + { + "appid": 1009640, + "normalized_name": "lonely adventure" + }, + { + "appid": 1009690, + "normalized_name": "saving simon" + }, + { + "appid": 1009700, + "normalized_name": "jewel match solitaire l'amour" + }, + { + "appid": 1009750, + "normalized_name": "flappatron" + }, + { + "appid": 1009770, + "normalized_name": "one million worlds" + }, + { + "appid": 1009780, + "normalized_name": "tales of sorrow strawsbrough town" + }, + { + "appid": 1009870, + "normalized_name": "bet on man" + }, + { + "appid": 1009890, + "normalized_name": "rhyup" + }, + { + "appid": 1009900, + "normalized_name": "date write" + }, + { + "appid": 1009910, + "normalized_name": "ninja?" + }, + { + "appid": 1009920, + "normalized_name": "carrier trail" + }, + { + "appid": 1009940, + "normalized_name": "rival nation wars" + }, + { + "appid": 1009950, + "normalized_name": "once10" + }, + { + "appid": 1009960, + "normalized_name": "project hedra" + }, + { + "appid": 1009990, + "normalized_name": "scp022" + }, + { + "appid": 1010000, + "normalized_name": "super alpaca bros." + }, + { + "appid": 1010040, + "normalized_name": "hybrid minigolf beta" + }, + { + "appid": 1010070, + "normalized_name": "heroes of maidan 2" + }, + { + "appid": 1010100, + "normalized_name": "airborn" + }, + { + "appid": 1010120, + "normalized_name": "underwater stay alive" + }, + { + "appid": 1010150, + "normalized_name": "pashtet" + }, + { + "appid": 1010230, + "normalized_name": "bleep bloop" + }, + { + "appid": 1010240, + "normalized_name": "changeling" + }, + { + "appid": 1010260, + "normalized_name": "the coroner saga" + }, + { + "appid": 1010270, + "normalized_name": "nether the untold chapter" + }, + { + "appid": 1010290, + "normalized_name": "find the letter h" + }, + { + "appid": 1010330, + "normalized_name": "the tear" + }, + { + "appid": 1010380, + "normalized_name": "tales of ancient nights" + }, + { + "appid": 1010410, + "normalized_name": "dragon roller coaster hd" + }, + { + "appid": 1010420, + "normalized_name": "crash site conquest" + }, + { + "appid": 1010430, + "normalized_name": "meister" + }, + { + "appid": 1010450, + "normalized_name": "desire den" + }, + { + "appid": 1010480, + "normalized_name": "tre hun unity chan x action" + }, + { + "appid": 1010490, + "normalized_name": "spot girls difference" + }, + { + "appid": 1010520, + "normalized_name": "space journey" + }, + { + "appid": 1010540, + "normalized_name": "ancient anathema" + }, + { + "appid": 1010560, + "normalized_name": "here i come" + }, + { + "appid": 1010590, + "normalized_name": "train manager" + }, + { + "appid": 1010600, + "normalized_name": "the princess the stray cat and matters of the heart" + }, + { + "appid": 1010650, + "normalized_name": "t.a.p." + }, + { + "appid": 1010660, + "normalized_name": "gachimuchi rebirth" + }, + { + "appid": 1010670, + "normalized_name": "dungeon dreams" + }, + { + "appid": 1010710, + "normalized_name": "the pack" + }, + { + "appid": 1010730, + "normalized_name": "[grand prototype]" + }, + { + "appid": 1010740, + "normalized_name": "scrapyard robot rampage" + }, + { + "appid": 1010750, + "normalized_name": "blood fresh supply" + }, + { + "appid": 1010780, + "normalized_name": "wings of glass 玻璃の羽" + }, + { + "appid": 1010830, + "normalized_name": "mech chip" + }, + { + "appid": 1010840, + "normalized_name": "vr party pack" + }, + { + "appid": 1010850, + "normalized_name": "東方翠神廻廊 〜 faith in the goddess of suwa." + }, + { + "appid": 1010860, + "normalized_name": "hide and seek" + }, + { + "appid": 1010870, + "normalized_name": "最后的47小时 the last 47 hours" + }, + { + "appid": 1010890, + "normalized_name": "touhou fantasia / 东方梦想曲" + }, + { + "appid": 1010910, + "normalized_name": "empire patron" + }, + { + "appid": 1010920, + "normalized_name": "catalyst" + }, + { + "appid": 1010930, + "normalized_name": "aztec tower" + }, + { + "appid": 1010950, + "normalized_name": "smartytale 2d" + }, + { + "appid": 1010970, + "normalized_name": "dead wishes" + }, + { + "appid": 1010990, + "normalized_name": "supernatural story" + }, + { + "appid": 1011000, + "normalized_name": "infinite art museum" + }, + { + "appid": 1011030, + "normalized_name": "hentai minesweeper" + }, + { + "appid": 1011070, + "normalized_name": "nomads of the fallen star" + }, + { + "appid": 1011090, + "normalized_name": "andromalius" + }, + { + "appid": 1011120, + "normalized_name": "hero staff" + }, + { + "appid": 1011130, + "normalized_name": "life is pointless" + }, + { + "appid": 1011140, + "normalized_name": "border control" + }, + { + "appid": 1011190, + "normalized_name": "simulacra 2" + }, + { + "appid": 1011200, + "normalized_name": "yametei" + }, + { + "appid": 1011240, + "normalized_name": "dragon chase" + }, + { + "appid": 1011260, + "normalized_name": "settlement zero" + }, + { + "appid": 1011270, + "normalized_name": "bleeding hunt vr chap.1" + }, + { + "appid": 1011290, + "normalized_name": "hotel r'n'r" + }, + { + "appid": 1011300, + "normalized_name": "uni" + }, + { + "appid": 1011310, + "normalized_name": "parse ally" + }, + { + "appid": 1011320, + "normalized_name": "whiskey & zombies the great southern zombie escape" + }, + { + "appid": 1011370, + "normalized_name": "outliver redemption" + }, + { + "appid": 1011390, + "normalized_name": "field of glory empires" + }, + { + "appid": 1011420, + "normalized_name": "bus mechanic simulator" + }, + { + "appid": 1011440, + "normalized_name": "balloon girl" + }, + { + "appid": 1011460, + "normalized_name": "caverns of karvella" + }, + { + "appid": 1011470, + "normalized_name": "packetstorm" + }, + { + "appid": 1011510, + "normalized_name": "wizard and minion idle" + }, + { + "appid": 1011530, + "normalized_name": "super gerry" + }, + { + "appid": 1011550, + "normalized_name": "light the way" + }, + { + "appid": 1011590, + "normalized_name": "night is coming" + }, + { + "appid": 1011600, + "normalized_name": "dungeon cleaning express" + }, + { + "appid": 1011610, + "normalized_name": "radio general" + }, + { + "appid": 1011620, + "normalized_name": "electric sleep" + }, + { + "appid": 1011630, + "normalized_name": "border force" + }, + { + "appid": 1011670, + "normalized_name": "totally reliable delivery service" + }, + { + "appid": 1011700, + "normalized_name": "walden a game" + }, + { + "appid": 1011720, + "normalized_name": "eleven prophecies" + }, + { + "appid": 1011740, + "normalized_name": "doza 2 novogodniy peredoz" + }, + { + "appid": 1011760, + "normalized_name": "dragon iris" + }, + { + "appid": 1011810, + "normalized_name": "エルソード (elsword)" + }, + { + "appid": 1011820, + "normalized_name": "millionaire dancer" + }, + { + "appid": 1011830, + "normalized_name": "rocwood academy" + }, + { + "appid": 1011850, + "normalized_name": "tideturn" + }, + { + "appid": 1011860, + "normalized_name": "答题英雄——细胞生物学" + }, + { + "appid": 1011870, + "normalized_name": "萌盟大冒险 cute adventure 生存 survival 生き残ります sopravvivere überleben выживать survivre 생존하다 sobrevivir 冒險 avventura aventura 冒険 모험 aventure приключение abenteuer" + }, + { + "appid": 1011940, + "normalized_name": "ideology in friction" + }, + { + "appid": 1011960, + "normalized_name": "arena of shaelo" + }, + { + "appid": 1011970, + "normalized_name": "三国佣兵传奇" + }, + { + "appid": 1011990, + "normalized_name": "dies irae ~interview with kaziklu bey~" + }, + { + "appid": 1012030, + "normalized_name": "detective girl of the steam city" + }, + { + "appid": 1012070, + "normalized_name": "banzai hentai!" + }, + { + "appid": 1012110, + "normalized_name": "military conflict vietnam" + }, + { + "appid": 1012120, + "normalized_name": "the great mushroom hunt" + }, + { + "appid": 1012130, + "normalized_name": "神马江湖" + }, + { + "appid": 1012160, + "normalized_name": "skygamechanger aircombat ii" + }, + { + "appid": 1012180, + "normalized_name": "在线教育开发实习生 elearning development intern" + }, + { + "appid": 1012190, + "normalized_name": "cursed puppetry" + }, + { + "appid": 1012210, + "normalized_name": "waves of death vr" + }, + { + "appid": 1012240, + "normalized_name": "旅燕归航 swallow homing" + }, + { + "appid": 1012280, + "normalized_name": "beekyr" + }, + { + "appid": 1012290, + "normalized_name": "emotions" + }, + { + "appid": 1012330, + "normalized_name": "umichan sorani" + }, + { + "appid": 1012360, + "normalized_name": "gunslugs 3 rogue tactics" + }, + { + "appid": 1012370, + "normalized_name": "afterlife" + }, + { + "appid": 1012390, + "normalized_name": "fruitlockers reborn! 2" + }, + { + "appid": 1012410, + "normalized_name": "extraction valley" + }, + { + "appid": 1012430, + "normalized_name": "furs of fury" + }, + { + "appid": 1012450, + "normalized_name": "hopsquash!" + }, + { + "appid": 1012460, + "normalized_name": "through abandoned the refuge" + }, + { + "appid": 1012470, + "normalized_name": "detectivez" + }, + { + "appid": 1012490, + "normalized_name": "time to fight" + }, + { + "appid": 1012530, + "normalized_name": "soccering" + }, + { + "appid": 1012560, + "normalized_name": "snakeybus" + }, + { + "appid": 1012570, + "normalized_name": "knuckle sandwich" + }, + { + "appid": 1012580, + "normalized_name": "triumph in the skies" + }, + { + "appid": 1012600, + "normalized_name": "why chicken? why?" + }, + { + "appid": 1012610, + "normalized_name": "buoyancy" + }, + { + "appid": 1012630, + "normalized_name": "epido" + }, + { + "appid": 1012640, + "normalized_name": "mission ring possible" + }, + { + "appid": 1012650, + "normalized_name": "galactic tower defense" + }, + { + "appid": 1012670, + "normalized_name": "gnubbl" + }, + { + "appid": 1012720, + "normalized_name": "pix tower" + }, + { + "appid": 1012730, + "normalized_name": "九劫曲 诅咒之地 ninetrials test server" + }, + { + "appid": 1012790, + "normalized_name": "into the radius vr" + }, + { + "appid": 1012800, + "normalized_name": "whitaers gongren" + }, + { + "appid": 1012830, + "normalized_name": "poor stickman" + }, + { + "appid": 1012840, + "normalized_name": "moons of madness" + }, + { + "appid": 1012850, + "normalized_name": "anderson" + }, + { + "appid": 1012860, + "normalized_name": "data mining 5" + }, + { + "appid": 1012870, + "normalized_name": "backpack inspector" + }, + { + "appid": 1012880, + "normalized_name": "60 seconds! reatomized" + }, + { + "appid": 1012900, + "normalized_name": "deviant dungeon" + }, + { + "appid": 1012970, + "normalized_name": "extricate" + }, + { + "appid": 1012990, + "normalized_name": "mini pvp" + }, + { + "appid": 1013000, + "normalized_name": "kingdom heroes" + }, + { + "appid": 1013040, + "normalized_name": "planetoid pioneers online" + }, + { + "appid": 1013070, + "normalized_name": "estellium legends" + }, + { + "appid": 1013100, + "normalized_name": "mage" + }, + { + "appid": 1013120, + "normalized_name": "hotpuzzle video" + }, + { + "appid": 1013130, + "normalized_name": "happy anime puzzle" + }, + { + "appid": 1013140, + "normalized_name": "outcast a new beginning" + }, + { + "appid": 1013150, + "normalized_name": "the river" + }, + { + "appid": 1013180, + "normalized_name": "funbag fantasy" + }, + { + "appid": 1013190, + "normalized_name": "retro vision" + }, + { + "appid": 1013200, + "normalized_name": "truecolors" + }, + { + "appid": 1013220, + "normalized_name": "river city saga three kingdoms" + }, + { + "appid": 1013280, + "normalized_name": "ragtag" + }, + { + "appid": 1013290, + "normalized_name": "beat your meat" + }, + { + "appid": 1013320, + "normalized_name": "firestone online idle rpg" + }, + { + "appid": 1013340, + "normalized_name": "braincloud bombers" + }, + { + "appid": 1013350, + "normalized_name": "the voice from heaven" + }, + { + "appid": 1013400, + "normalized_name": "fanaticblader" + }, + { + "appid": 1013410, + "normalized_name": "redviil" + }, + { + "appid": 1013450, + "normalized_name": "triton survival" + }, + { + "appid": 1013540, + "normalized_name": "evospace" + }, + { + "appid": 1013560, + "normalized_name": "starxium 20xx" + }, + { + "appid": 1013570, + "normalized_name": "escape room academy" + }, + { + "appid": 1013580, + "normalized_name": "manna for our malices" + }, + { + "appid": 1013600, + "normalized_name": "rodent warriors" + }, + { + "appid": 1013630, + "normalized_name": "frigus i̇nferos" + }, + { + "appid": 1013650, + "normalized_name": "tiny dangerous dungeons" + }, + { + "appid": 1013660, + "normalized_name": "pursuer" + }, + { + "appid": 1013670, + "normalized_name": "mr boom's firework factory" + }, + { + "appid": 1013680, + "normalized_name": "saint paul pre alpha" + }, + { + "appid": 1013700, + "normalized_name": "draft day sports college football 2019" + }, + { + "appid": 1013710, + "normalized_name": "draft day sports college basketball 2019" + }, + { + "appid": 1013750, + "normalized_name": "legal dungeon" + }, + { + "appid": 1013810, + "normalized_name": "the legendary assassin kal" + }, + { + "appid": 1013820, + "normalized_name": "stars and snowdrops" + }, + { + "appid": 1013830, + "normalized_name": "agent of love josei otome visual novel" + }, + { + "appid": 1013870, + "normalized_name": "leanna's slice of life" + }, + { + "appid": 1013890, + "normalized_name": "青蛙跳模拟器" + }, + { + "appid": 1013910, + "normalized_name": "aron's adventure" + }, + { + "appid": 1013940, + "normalized_name": "bob and kuura lost in snowglobe" + }, + { + "appid": 1013950, + "normalized_name": "antipodal" + }, + { + "appid": 1013960, + "normalized_name": "open wheel manager" + }, + { + "appid": 1013970, + "normalized_name": "suwarudo" + }, + { + "appid": 1013980, + "normalized_name": "firefly" + }, + { + "appid": 1014010, + "normalized_name": "hotel ever after ella's wish" + }, + { + "appid": 1014030, + "normalized_name": "molly can you survive 100 nights?" + }, + { + "appid": 1014040, + "normalized_name": "pictoquest" + }, + { + "appid": 1014050, + "normalized_name": "hockey manager 20|20" + }, + { + "appid": 1014100, + "normalized_name": "shivering sky" + }, + { + "appid": 1014110, + "normalized_name": "fish simulator aquarium manager" + }, + { + "appid": 1014140, + "normalized_name": "snakebird primer" + }, + { + "appid": 1014180, + "normalized_name": "化者天狱 revenant in the paradise" + }, + { + "appid": 1014200, + "normalized_name": "markerboard jungle frogs" + }, + { + "appid": 1014240, + "normalized_name": "starship saboteur prototype" + }, + { + "appid": 1014260, + "normalized_name": "passageway of the ancients" + }, + { + "appid": 1014270, + "normalized_name": "plaguepunk justice" + }, + { + "appid": 1014280, + "normalized_name": "the devil's calculator" + }, + { + "appid": 1014310, + "normalized_name": "top torch" + }, + { + "appid": 1014350, + "normalized_name": "once a stray" + }, + { + "appid": 1014360, + "normalized_name": "adventures diary of merchant" + }, + { + "appid": 1014370, + "normalized_name": "bouncing dvd the game" + }, + { + "appid": 1014400, + "normalized_name": "notemon" + }, + { + "appid": 1014420, + "normalized_name": "blind date" + }, + { + "appid": 1014450, + "normalized_name": "spacelair" + }, + { + "appid": 1014460, + "normalized_name": "nothing!" + }, + { + "appid": 1014470, + "normalized_name": "fates 8 stories (f8s)" + }, + { + "appid": 1014540, + "normalized_name": "selling sunlight" + }, + { + "appid": 1014550, + "normalized_name": "one synth" + }, + { + "appid": 1014560, + "normalized_name": "creepy vision" + }, + { + "appid": 1014570, + "normalized_name": "alienafterlife" + }, + { + "appid": 1014580, + "normalized_name": "rb axolotl" + }, + { + "appid": 1014590, + "normalized_name": "time to parkour" + }, + { + "appid": 1014600, + "normalized_name": "crash landed" + }, + { + "appid": 1014610, + "normalized_name": "pub simulator" + }, + { + "appid": 1014620, + "normalized_name": "rollman" + }, + { + "appid": 1014660, + "normalized_name": "baby bee" + }, + { + "appid": 1014710, + "normalized_name": "scatter" + }, + { + "appid": 1014720, + "normalized_name": "asteroid navigation" + }, + { + "appid": 1014730, + "normalized_name": "cyndy" + }, + { + "appid": 1014750, + "normalized_name": "dupli_city" + }, + { + "appid": 1014790, + "normalized_name": "bewildebots" + }, + { + "appid": 1014810, + "normalized_name": "happy words" + }, + { + "appid": 1014820, + "normalized_name": "the angry banana" + }, + { + "appid": 1014840, + "normalized_name": "heart and axe" + }, + { + "appid": 1014850, + "normalized_name": "iridium" + }, + { + "appid": 1014880, + "normalized_name": "by moonlight" + }, + { + "appid": 1014890, + "normalized_name": "warforged" + }, + { + "appid": 1014900, + "normalized_name": "hex defense" + }, + { + "appid": 1014920, + "normalized_name": "favor chess" + }, + { + "appid": 1014960, + "normalized_name": "путин против инопланетян 2 на закате справедливости (linehot putin all stars)" + }, + { + "appid": 1014970, + "normalized_name": "saloon vr" + }, + { + "appid": 1014980, + "normalized_name": "n/a" + }, + { + "appid": 1014990, + "normalized_name": "aivolution" + }, + { + "appid": 1015020, + "normalized_name": "记忆重构/memories" + }, + { + "appid": 1015080, + "normalized_name": "vampire & monsters hidden object games" + }, + { + "appid": 1015090, + "normalized_name": "last day of rome" + }, + { + "appid": 1015100, + "normalized_name": "sloth heart to heart" + }, + { + "appid": 1015120, + "normalized_name": "hot earth invasion" + }, + { + "appid": 1015130, + "normalized_name": "wounded the beginning" + }, + { + "appid": 1015140, + "normalized_name": "10 miles to safety" + }, + { + "appid": 1015150, + "normalized_name": "princessguardians" + }, + { + "appid": 1015180, + "normalized_name": "malicious payload" + }, + { + "appid": 1015190, + "normalized_name": "double damnation" + }, + { + "appid": 1015240, + "normalized_name": "the expedition" + }, + { + "appid": 1015250, + "normalized_name": "caramel port" + }, + { + "appid": 1015290, + "normalized_name": "trapped in fear" + }, + { + "appid": 1015350, + "normalized_name": "your home" + }, + { + "appid": 1015370, + "normalized_name": "expansim" + }, + { + "appid": 1015430, + "normalized_name": "the dead tree of ranchiuna" + }, + { + "appid": 1015470, + "normalized_name": "i need spirit off road" + }, + { + "appid": 1015480, + "normalized_name": "drumbeats vr" + }, + { + "appid": 1015530, + "normalized_name": "bonds of the skies" + }, + { + "appid": 1015540, + "normalized_name": "sephirothic stories" + }, + { + "appid": 1015550, + "normalized_name": "asdivine dios" + }, + { + "appid": 1015580, + "normalized_name": "jungle z" + }, + { + "appid": 1015610, + "normalized_name": "the last player vr battle royale" + }, + { + "appid": 1015650, + "normalized_name": "the virtual reality museum of immersive experiences" + }, + { + "appid": 1015660, + "normalized_name": "hentai shooter 2 world tour" + }, + { + "appid": 1015700, + "normalized_name": "land of the void" + }, + { + "appid": 1015710, + "normalized_name": "holy road" + }, + { + "appid": 1015720, + "normalized_name": "alternate dimansion diary" + }, + { + "appid": 1015730, + "normalized_name": "apostle" + }, + { + "appid": 1015750, + "normalized_name": "escape from fortress lugohm" + }, + { + "appid": 1015770, + "normalized_name": "tina swordswoman of the scarlet prison" + }, + { + "appid": 1015790, + "normalized_name": "dark hero party" + }, + { + "appid": 1015800, + "normalized_name": "ordeal of princess eris" + }, + { + "appid": 1015890, + "normalized_name": "tasomachi behind the twilight" + }, + { + "appid": 1015920, + "normalized_name": "ynglet" + }, + { + "appid": 1015930, + "normalized_name": "blood rage digital" + }, + { + "appid": 1015940, + "normalized_name": "welcome to elk" + }, + { + "appid": 1016000, + "normalized_name": "nerve" + }, + { + "appid": 1016010, + "normalized_name": "w4rr i/o rs descent" + }, + { + "appid": 1016030, + "normalized_name": "wawa united" + }, + { + "appid": 1016100, + "normalized_name": "3rd invasion zombies vs. steel" + }, + { + "appid": 1016110, + "normalized_name": "self reliance 自我性赖" + }, + { + "appid": 1016180, + "normalized_name": "terror of hemasaurus" + }, + { + "appid": 1016250, + "normalized_name": "100$" + }, + { + "appid": 1016260, + "normalized_name": "magic combat vr" + }, + { + "appid": 1016330, + "normalized_name": "bot war" + }, + { + "appid": 1016360, + "normalized_name": "perish" + }, + { + "appid": 1016390, + "normalized_name": "perspectives paradise" + }, + { + "appid": 1016420, + "normalized_name": "tenebrous dungeon" + }, + { + "appid": 1016430, + "normalized_name": "tokyo snap" + }, + { + "appid": 1016440, + "normalized_name": "agenda 21" + }, + { + "appid": 1016600, + "normalized_name": "devil slayer raksasi 斩妖raksasi" + }, + { + "appid": 1016610, + "normalized_name": "four color fantasy" + }, + { + "appid": 1016630, + "normalized_name": "drag star!" + }, + { + "appid": 1016650, + "normalized_name": "dochka" + }, + { + "appid": 1016660, + "normalized_name": "age of omens" + }, + { + "appid": 1016690, + "normalized_name": "dust up" + }, + { + "appid": 1016700, + "normalized_name": "boy beats world" + }, + { + "appid": 1016720, + "normalized_name": "save koch" + }, + { + "appid": 1016730, + "normalized_name": "deck of ashes" + }, + { + "appid": 1016740, + "normalized_name": "god monster" + }, + { + "appid": 1016750, + "normalized_name": "tracker《追踪者》" + }, + { + "appid": 1016770, + "normalized_name": "interrogation you will be deceived" + }, + { + "appid": 1016780, + "normalized_name": "orange island" + }, + { + "appid": 1016790, + "normalized_name": "west of dead" + }, + { + "appid": 1016800, + "normalized_name": "chernobylite" + }, + { + "appid": 1016820, + "normalized_name": "miles of cubes" + }, + { + "appid": 1016830, + "normalized_name": "smashpunks" + }, + { + "appid": 1016850, + "normalized_name": "the enthralling realms an alchemist's tale" + }, + { + "appid": 1016860, + "normalized_name": "boiling steel" + }, + { + "appid": 1016890, + "normalized_name": "arch drift" + }, + { + "appid": 1016900, + "normalized_name": "gun and buckler" + }, + { + "appid": 1016920, + "normalized_name": "unrailed!" + }, + { + "appid": 1016930, + "normalized_name": "the great perhaps" + }, + { + "appid": 1016940, + "normalized_name": "the otterman empire" + }, + { + "appid": 1016950, + "normalized_name": "blood bowl 3" + }, + { + "appid": 1016960, + "normalized_name": "super neptunia rpg" + }, + { + "appid": 1016970, + "normalized_name": "ellen and the degenerates rpg" + }, + { + "appid": 1016980, + "normalized_name": "pirates of the asteroid belt vr" + }, + { + "appid": 1016990, + "normalized_name": "cinemapocalypse" + }, + { + "appid": 1017100, + "normalized_name": "territory idle" + }, + { + "appid": 1017130, + "normalized_name": "ikao the lost souls" + }, + { + "appid": 1017160, + "normalized_name": "gearshifters" + }, + { + "appid": 1017180, + "normalized_name": "the long drive" + }, + { + "appid": 1017240, + "normalized_name": "deep hole" + }, + { + "appid": 1017270, + "normalized_name": "trident barrage" + }, + { + "appid": 1017340, + "normalized_name": "fitnessvr" + }, + { + "appid": 1017350, + "normalized_name": "amaze st.patrick" + }, + { + "appid": 1017360, + "normalized_name": "igknight golf defender" + }, + { + "appid": 1017370, + "normalized_name": "dangerous orbit" + }, + { + "appid": 1017380, + "normalized_name": "天空傳説" + }, + { + "appid": 1017410, + "normalized_name": "tetra project 原石计划" + }, + { + "appid": 1017440, + "normalized_name": "vacation adventures cruise director" + }, + { + "appid": 1017480, + "normalized_name": "warground" + }, + { + "appid": 1017490, + "normalized_name": "mortadelo y filemón la banda de corvino" + }, + { + "appid": 1017520, + "normalized_name": "who wants to strip this babe? (hentai teacher)" + }, + { + "appid": 1017540, + "normalized_name": "light of gallery" + }, + { + "appid": 1017560, + "normalized_name": "falling bullets" + }, + { + "appid": 1017580, + "normalized_name": "the explorer of night" + }, + { + "appid": 1017600, + "normalized_name": "sophica temples of mystery" + }, + { + "appid": 1017610, + "normalized_name": "butterfly" + }, + { + "appid": 1017630, + "normalized_name": "robot king part 2 boss battles" + }, + { + "appid": 1017650, + "normalized_name": "it's a long way" + }, + { + "appid": 1017660, + "normalized_name": "don't go into the woods" + }, + { + "appid": 1017670, + "normalized_name": "new world horizon" + }, + { + "appid": 1017690, + "normalized_name": "élan vital" + }, + { + "appid": 1017750, + "normalized_name": "jump doper" + }, + { + "appid": 1017780, + "normalized_name": "hammer & anvil vr" + }, + { + "appid": 1017800, + "normalized_name": "airshock" + }, + { + "appid": 1017820, + "normalized_name": "cybershift" + }, + { + "appid": 1017880, + "normalized_name": "the dark side" + }, + { + "appid": 1017900, + "normalized_name": "age of empires" + }, + { + "appid": 1017940, + "normalized_name": "king of texas" + }, + { + "appid": 1017990, + "normalized_name": "negative_space" + }, + { + "appid": 1018000, + "normalized_name": "arcade classics anniversary collection" + }, + { + "appid": 1018010, + "normalized_name": "castlevania anniversary collection" + }, + { + "appid": 1018020, + "normalized_name": "contra anniversary collection" + }, + { + "appid": 1018040, + "normalized_name": "dirty education" + }, + { + "appid": 1018060, + "normalized_name": "the mercenary rise" + }, + { + "appid": 1018080, + "normalized_name": "sneaker" + }, + { + "appid": 1018090, + "normalized_name": "2100" + }, + { + "appid": 1018110, + "normalized_name": "dead" + }, + { + "appid": 1018130, + "normalized_name": "castle break" + }, + { + "appid": 1018160, + "normalized_name": "mxgp 2019 the official motocross videogame" + }, + { + "appid": 1018170, + "normalized_name": "光之迷城 / dawn of the lost castle" + }, + { + "appid": 1018220, + "normalized_name": "dank prank dopeville" + }, + { + "appid": 1018240, + "normalized_name": "hooklings" + }, + { + "appid": 1018270, + "normalized_name": "anthropomachy" + }, + { + "appid": 1018380, + "normalized_name": "怪獣綺譚 朧十夜 空狐万華鏡" + }, + { + "appid": 1018420, + "normalized_name": "uuu so smislom" + }, + { + "appid": 1018560, + "normalized_name": "emoji charades" + }, + { + "appid": 1018610, + "normalized_name": "dawn break origin" + }, + { + "appid": 1018640, + "normalized_name": "pixel happy game girls" + }, + { + "appid": 1018700, + "normalized_name": "kabitis 2 fire sword" + }, + { + "appid": 1018720, + "normalized_name": "x point" + }, + { + "appid": 1018730, + "normalized_name": "tobit" + }, + { + "appid": 1018740, + "normalized_name": "random raiders" + }, + { + "appid": 1018750, + "normalized_name": "rubble rush" + }, + { + "appid": 1018770, + "normalized_name": "lizardquest alien waters" + }, + { + "appid": 1018800, + "normalized_name": "deeeer simulator" + }, + { + "appid": 1018810, + "normalized_name": "drumpfy walls" + }, + { + "appid": 1018820, + "normalized_name": "fleet scrapper" + }, + { + "appid": 1018830, + "normalized_name": "element td 2 tower defense" + }, + { + "appid": 1018850, + "normalized_name": "smile for me" + }, + { + "appid": 1018860, + "normalized_name": "bombing quest" + }, + { + "appid": 1018870, + "normalized_name": "vr racing" + }, + { + "appid": 1018900, + "normalized_name": "let's learn japanese! katakana" + }, + { + "appid": 1018930, + "normalized_name": "【scp】器関ノ彷徨 the will of a single tale 第1部" + }, + { + "appid": 1018960, + "normalized_name": "thugs law" + }, + { + "appid": 1018990, + "normalized_name": "cherry creek" + }, + { + "appid": 1019020, + "normalized_name": "the abbey director's cut" + }, + { + "appid": 1019030, + "normalized_name": "project centauri" + }, + { + "appid": 1019040, + "normalized_name": "smash team" + }, + { + "appid": 1019050, + "normalized_name": "primal threat" + }, + { + "appid": 1019060, + "normalized_name": "5.84 wing" + }, + { + "appid": 1019070, + "normalized_name": "soft cookie" + }, + { + "appid": 1019080, + "normalized_name": "the toymaker's apprentice" + }, + { + "appid": 1019090, + "normalized_name": "king's lair" + }, + { + "appid": 1019150, + "normalized_name": "apolune" + }, + { + "appid": 1019170, + "normalized_name": "umbrella" + }, + { + "appid": 1019180, + "normalized_name": "恐龙大冒险" + }, + { + "appid": 1019190, + "normalized_name": "urizen shadows of the cold deluxe frosty plus the new warriors" + }, + { + "appid": 1019230, + "normalized_name": "mr.hack jack robot detective" + }, + { + "appid": 1019240, + "normalized_name": "nippon ecchi jigsaw" + }, + { + "appid": 1019260, + "normalized_name": "micro mayhem" + }, + { + "appid": 1019270, + "normalized_name": "strangers of the power 3" + }, + { + "appid": 1019310, + "normalized_name": "virtuaverse" + }, + { + "appid": 1019340, + "normalized_name": "7776 ii dwarven greed" + }, + { + "appid": 1019370, + "normalized_name": "radioactive" + }, + { + "appid": 1019400, + "normalized_name": "beatships" + }, + { + "appid": 1019450, + "normalized_name": "table manners physics based dating game" + }, + { + "appid": 1019500, + "normalized_name": "super beam" + }, + { + "appid": 1019550, + "normalized_name": "thief simulator vr" + }, + { + "appid": 1019580, + "normalized_name": "mortadelo y filemón una aventura de cine edición especial" + }, + { + "appid": 1019590, + "normalized_name": "lovely planet 2 april skies" + }, + { + "appid": 1019630, + "normalized_name": "ecchi neko girls puzzle" + }, + { + "appid": 1019670, + "normalized_name": "la douche" + }, + { + "appid": 1019690, + "normalized_name": "ghost buster 3d" + }, + { + "appid": 1019700, + "normalized_name": "fighting spree 3d" + }, + { + "appid": 1019710, + "normalized_name": "repel aliens 3d" + }, + { + "appid": 1019720, + "normalized_name": "balloon fiesta 3d" + }, + { + "appid": 1019730, + "normalized_name": "chipmonk!" + }, + { + "appid": 1019740, + "normalized_name": "korona nemesis" + }, + { + "appid": 1019790, + "normalized_name": "supernatural super squad fight!" + }, + { + "appid": 1019820, + "normalized_name": "galaxicus" + }, + { + "appid": 1019880, + "normalized_name": "deepstorm online" + }, + { + "appid": 1019910, + "normalized_name": "cube man" + }, + { + "appid": 1019920, + "normalized_name": "gensokyo defenders" + }, + { + "appid": 1019940, + "normalized_name": "race for tuning" + }, + { + "appid": 1020010, + "normalized_name": "fantasy island" + }, + { + "appid": 1020030, + "normalized_name": "quantum suicide" + }, + { + "appid": 1020050, + "normalized_name": "startup valley adventure" + }, + { + "appid": 1020080, + "normalized_name": "alicia quatermain 4 da vinci and the time machine" + }, + { + "appid": 1020090, + "normalized_name": "overcome" + }, + { + "appid": 1020120, + "normalized_name": "a giant problem" + }, + { + "appid": 1020210, + "normalized_name": "lab2 under ground" + }, + { + "appid": 1020250, + "normalized_name": "flying in labyrinth" + }, + { + "appid": 1020270, + "normalized_name": "demon hunter 5 ascendance" + }, + { + "appid": 1020310, + "normalized_name": "gravity heroes" + }, + { + "appid": 1020330, + "normalized_name": "khan vs kahn" + }, + { + "appid": 1020340, + "normalized_name": "audica rhythm shooter" + }, + { + "appid": 1020360, + "normalized_name": "魔杖战争 wand wars rise" + }, + { + "appid": 1020390, + "normalized_name": "beat blaster" + }, + { + "appid": 1020410, + "normalized_name": "narco strike" + }, + { + "appid": 1020420, + "normalized_name": "snowrifters vex" + }, + { + "appid": 1020440, + "normalized_name": "doodle creatures" + }, + { + "appid": 1020450, + "normalized_name": "there will be ink" + }, + { + "appid": 1020470, + "normalized_name": "evoland legendary" + }, + { + "appid": 1020480, + "normalized_name": "nasty" + }, + { + "appid": 1020490, + "normalized_name": "woman's body 2" + }, + { + "appid": 1020510, + "normalized_name": "supernatural shenanigans" + }, + { + "appid": 1020520, + "normalized_name": "hellink" + }, + { + "appid": 1020540, + "normalized_name": "contra rogue corps" + }, + { + "appid": 1020550, + "normalized_name": "chroma+elektron" + }, + { + "appid": 1020560, + "normalized_name": "theme park worker" + }, + { + "appid": 1020590, + "normalized_name": "space pilgrim academy reunion" + }, + { + "appid": 1020600, + "normalized_name": "extreme truck simulator" + }, + { + "appid": 1020610, + "normalized_name": "apoapsis" + }, + { + "appid": 1020640, + "normalized_name": "r.i.c.a" + }, + { + "appid": 1020650, + "normalized_name": "commando fodder war dogs" + }, + { + "appid": 1020660, + "normalized_name": "wrecked destruction simulator" + }, + { + "appid": 1020670, + "normalized_name": "beyond the veil" + }, + { + "appid": 1020730, + "normalized_name": "dark bestiary" + }, + { + "appid": 1020780, + "normalized_name": "darkstory online" + }, + { + "appid": 1020790, + "normalized_name": "naruto x boruto ninja storm connections" + }, + { + "appid": 1020800, + "normalized_name": "car tune project" + }, + { + "appid": 1020830, + "normalized_name": "something is wrong/有毛病" + }, + { + "appid": 1020840, + "normalized_name": "豆腐脑模拟器 tofu pudding simulator" + }, + { + "appid": 1020910, + "normalized_name": "sefirot shards" + }, + { + "appid": 1020930, + "normalized_name": "在末日前夕等待放晴" + }, + { + "appid": 1020940, + "normalized_name": "owyn's adventure" + }, + { + "appid": 1020980, + "normalized_name": "match three pirates! heir to davy jones" + }, + { + "appid": 1021060, + "normalized_name": "brix vr" + }, + { + "appid": 1021070, + "normalized_name": "spaceland sci fi indie tactics" + }, + { + "appid": 1021100, + "normalized_name": "aircraft carrier survival" + }, + { + "appid": 1021120, + "normalized_name": "praebot" + }, + { + "appid": 1021130, + "normalized_name": "trucking" + }, + { + "appid": 1021200, + "normalized_name": "column taker" + }, + { + "appid": 1021210, + "normalized_name": "cyber knights flashpoint" + }, + { + "appid": 1021220, + "normalized_name": "the seven deadly seas" + }, + { + "appid": 1021230, + "normalized_name": "ball bounce maze" + }, + { + "appid": 1021240, + "normalized_name": "spin evolution" + }, + { + "appid": 1021260, + "normalized_name": "chocolate makes you happy st.patrick's day" + }, + { + "appid": 1021290, + "normalized_name": "cuberace" + }, + { + "appid": 1021370, + "normalized_name": "slave rpg" + }, + { + "appid": 1021640, + "normalized_name": "fold" + }, + { + "appid": 1021650, + "normalized_name": "perhaps when we dream" + }, + { + "appid": 1021670, + "normalized_name": "机退怪兽" + }, + { + "appid": 1021680, + "normalized_name": "music escape" + }, + { + "appid": 1021690, + "normalized_name": "game studio simulator(我要做游戏)" + }, + { + "appid": 1021770, + "normalized_name": "wanba warriors" + }, + { + "appid": 1021780, + "normalized_name": "the region" + }, + { + "appid": 1021800, + "normalized_name": "妙连千军 million dungeon" + }, + { + "appid": 1021820, + "normalized_name": "dumb test check your teammates" + }, + { + "appid": 1021840, + "normalized_name": "asteroid hideout" + }, + { + "appid": 1021850, + "normalized_name": "blood memery|血色记忆" + }, + { + "appid": 1021860, + "normalized_name": "unravel cyndy" + }, + { + "appid": 1021880, + "normalized_name": "starwheels" + }, + { + "appid": 1021890, + "normalized_name": "hero swing vr" + }, + { + "appid": 1021940, + "normalized_name": "space warfare" + }, + { + "appid": 1021950, + "normalized_name": "when the darkness comes" + }, + { + "appid": 1022000, + "normalized_name": "lyantei" + }, + { + "appid": 1022010, + "normalized_name": "oliver's adventures in the fairyland" + }, + { + "appid": 1022040, + "normalized_name": "candy mandy" + }, + { + "appid": 1022130, + "normalized_name": "clash! battle arena" + }, + { + "appid": 1022150, + "normalized_name": "bios ex yami no wakusei" + }, + { + "appid": 1022160, + "normalized_name": "rollossus" + }, + { + "appid": 1022170, + "normalized_name": "vehicraft" + }, + { + "appid": 1022180, + "normalized_name": "and i must scream" + }, + { + "appid": 1022270, + "normalized_name": "cartacombs" + }, + { + "appid": 1022280, + "normalized_name": "cospuzzle" + }, + { + "appid": 1022310, + "normalized_name": "warhammer underworlds shadespire" + }, + { + "appid": 1022320, + "normalized_name": "crypto crisis education" + }, + { + "appid": 1022380, + "normalized_name": "neon slashers" + }, + { + "appid": 1022450, + "normalized_name": "war selection" + }, + { + "appid": 1022480, + "normalized_name": "kamiko" + }, + { + "appid": 1022530, + "normalized_name": "subaracity" + }, + { + "appid": 1022550, + "normalized_name": "neon infinity" + }, + { + "appid": 1022600, + "normalized_name": "metrixvr" + }, + { + "appid": 1022610, + "normalized_name": "alchemic dungeons dx" + }, + { + "appid": 1022630, + "normalized_name": "tankorama" + }, + { + "appid": 1022640, + "normalized_name": "lgnorant girl doll" + }, + { + "appid": 1022650, + "normalized_name": "leonwaan minesweeper" + }, + { + "appid": 1022710, + "normalized_name": "conglomerate 451" + }, + { + "appid": 1022770, + "normalized_name": "beyond enemy lines operation arctic hawk" + }, + { + "appid": 1022780, + "normalized_name": "animal fight club" + }, + { + "appid": 1022820, + "normalized_name": "steelpaw" + }, + { + "appid": 1022840, + "normalized_name": "the adventures of jason and the argonauts" + }, + { + "appid": 1022860, + "normalized_name": "tuber`s run" + }, + { + "appid": 1022920, + "normalized_name": "two clusters kain" + }, + { + "appid": 1022980, + "normalized_name": "ostranauts" + }, + { + "appid": 1022990, + "normalized_name": "dement" + }, + { + "appid": 1023010, + "normalized_name": "escargot" + }, + { + "appid": 1023030, + "normalized_name": "blood moon" + }, + { + "appid": 1023040, + "normalized_name": "hockey camp goaltender" + }, + { + "appid": 1023060, + "normalized_name": "yet another survival game" + }, + { + "appid": 1023090, + "normalized_name": "super agent drunk kent" + }, + { + "appid": 1023100, + "normalized_name": "vcuber" + }, + { + "appid": 1023110, + "normalized_name": "seven red lines" + }, + { + "appid": 1023130, + "normalized_name": "defection" + }, + { + "appid": 1023140, + "normalized_name": "artificiality 人造物" + }, + { + "appid": 1023150, + "normalized_name": "cyborg invasion shooter 3 savior of the world" + }, + { + "appid": 1023180, + "normalized_name": "combat overrun" + }, + { + "appid": 1023250, + "normalized_name": "因缘" + }, + { + "appid": 1023260, + "normalized_name": "yuki's tale" + }, + { + "appid": 1023280, + "normalized_name": "solitaire bliss collection" + }, + { + "appid": 1023310, + "normalized_name": "logical now!" + }, + { + "appid": 1023320, + "normalized_name": "clown thug cop zombies" + }, + { + "appid": 1023350, + "normalized_name": "dungeons & dropped things" + }, + { + "appid": 1023370, + "normalized_name": "hentai super girl" + }, + { + "appid": 1023390, + "normalized_name": "people" + }, + { + "appid": 1023410, + "normalized_name": "3 geeks 2012 (version gauloise pour français)" + }, + { + "appid": 1023420, + "normalized_name": "四国志でらっくす ~酒池肉うどん戦記~" + }, + { + "appid": 1023510, + "normalized_name": "matanga" + }, + { + "appid": 1023550, + "normalized_name": "rogue star rescue" + }, + { + "appid": 1023560, + "normalized_name": "cornflake crisis" + }, + { + "appid": 1023570, + "normalized_name": "puzzle animals" + }, + { + "appid": 1023610, + "normalized_name": "royale storm bowling" + }, + { + "appid": 1023640, + "normalized_name": "sweet galaxy adventure!" + }, + { + "appid": 1023650, + "normalized_name": "gun man" + }, + { + "appid": 1023680, + "normalized_name": "brass town wrestling" + }, + { + "appid": 1023690, + "normalized_name": "nurse love syndrome" + }, + { + "appid": 1023700, + "normalized_name": "palais de reine" + }, + { + "appid": 1023720, + "normalized_name": "hidden mysteries royal family secrets" + }, + { + "appid": 1023740, + "normalized_name": "7 sexy sins" + }, + { + "appid": 1023750, + "normalized_name": "invitation" + }, + { + "appid": 1023760, + "normalized_name": "creation and conquest:the future war" + }, + { + "appid": 1023790, + "normalized_name": "rick henderson" + }, + { + "appid": 1023840, + "normalized_name": "offroad driving simulator 4x4" + }, + { + "appid": 1023860, + "normalized_name": "gorsd" + }, + { + "appid": 1023870, + "normalized_name": "northern lights" + }, + { + "appid": 1023960, + "normalized_name": "easter!" + }, + { + "appid": 1023970, + "normalized_name": "gun gun pixies" + }, + { + "appid": 1023980, + "normalized_name": "v.l.a.d.i.k" + }, + { + "appid": 1024070, + "normalized_name": "ribbon racer next" + }, + { + "appid": 1024080, + "normalized_name": "the scuttle" + }, + { + "appid": 1024100, + "normalized_name": "adventures of isabelle fine murder on rails" + }, + { + "appid": 1024120, + "normalized_name": "túatha echoes the village" + }, + { + "appid": 1024150, + "normalized_name": "valentines cafe" + }, + { + "appid": 1024160, + "normalized_name": "lord winklebottom investigates" + }, + { + "appid": 1024210, + "normalized_name": "leowald" + }, + { + "appid": 1024220, + "normalized_name": "death waves" + }, + { + "appid": 1024250, + "normalized_name": "firon" + }, + { + "appid": 1024330, + "normalized_name": "bhavacakra grace" + }, + { + "appid": 1024400, + "normalized_name": "marenian tavern story patty and the hungry god" + }, + { + "appid": 1024430, + "normalized_name": "super arcade soccer" + }, + { + "appid": 1024450, + "normalized_name": "dino vr" + }, + { + "appid": 1024460, + "normalized_name": "destructive physics destruction simulator" + }, + { + "appid": 1024470, + "normalized_name": "la fuga" + }, + { + "appid": 1024480, + "normalized_name": "immortal realms vampire wars" + }, + { + "appid": 1024490, + "normalized_name": "super jigsaw puzzle anime reloaded" + }, + { + "appid": 1024520, + "normalized_name": "viking sigurd's adventure" + }, + { + "appid": 1024530, + "normalized_name": "art by numbers" + }, + { + "appid": 1024540, + "normalized_name": "alien league" + }, + { + "appid": 1024570, + "normalized_name": "hentai babes in public" + }, + { + "appid": 1024590, + "normalized_name": "hentai babes sport lovers" + }, + { + "appid": 1024600, + "normalized_name": "skydiver" + }, + { + "appid": 1024630, + "normalized_name": "fighters legacy" + }, + { + "appid": 1024650, + "normalized_name": "port royale 4" + }, + { + "appid": 1024670, + "normalized_name": "ruination" + }, + { + "appid": 1024690, + "normalized_name": "chaos village" + }, + { + "appid": 1024720, + "normalized_name": "pagans must die" + }, + { + "appid": 1024730, + "normalized_name": "murder machine mini" + }, + { + "appid": 1024780, + "normalized_name": "capture the planet cute war" + }, + { + "appid": 1024790, + "normalized_name": "kare wa kanojo" + }, + { + "appid": 1024800, + "normalized_name": "femdom waifu" + }, + { + "appid": 1024840, + "normalized_name": "all you can shoot" + }, + { + "appid": 1024850, + "normalized_name": "flow weaver" + }, + { + "appid": 1024860, + "normalized_name": "bfge (bartender flair game)" + }, + { + "appid": 1024950, + "normalized_name": "starship horizons bridge simulator" + }, + { + "appid": 1024960, + "normalized_name": "toytank" + }, + { + "appid": 1024970, + "normalized_name": "quantum legend vr experience" + }, + { + "appid": 1024980, + "normalized_name": "tornado!" + }, + { + "appid": 1024990, + "normalized_name": "worder" + }, + { + "appid": 1025000, + "normalized_name": "puzzle 101 edge of galaxy 宇宙边际" + }, + { + "appid": 1025010, + "normalized_name": "cursor by mr ilyn." + }, + { + "appid": 1025070, + "normalized_name": "淑女同萌! new division" + }, + { + "appid": 1025130, + "normalized_name": "oik memory 3" + }, + { + "appid": 1025140, + "normalized_name": "lamunation! international" + }, + { + "appid": 1025160, + "normalized_name": "xander the monster morpher universe breaker" + }, + { + "appid": 1025200, + "normalized_name": "the floor is really cheap lava" + }, + { + "appid": 1025230, + "normalized_name": "minda" + }, + { + "appid": 1025240, + "normalized_name": "glad valakas tower defence 2" + }, + { + "appid": 1025250, + "normalized_name": "shadow corridor" + }, + { + "appid": 1025270, + "normalized_name": "nogalious msx" + }, + { + "appid": 1025310, + "normalized_name": "money run" + }, + { + "appid": 1025330, + "normalized_name": "full pitch" + }, + { + "appid": 1025360, + "normalized_name": "woodcutter survival" + }, + { + "appid": 1025390, + "normalized_name": "my arctic farm" + }, + { + "appid": 1025410, + "normalized_name": "metamorphosis" + }, + { + "appid": 1025420, + "normalized_name": "homing shapes" + }, + { + "appid": 1025430, + "normalized_name": "delta squad" + }, + { + "appid": 1025440, + "normalized_name": "fantasy general ii" + }, + { + "appid": 1025460, + "normalized_name": "rift racoon" + }, + { + "appid": 1025480, + "normalized_name": "1 bit revival the residuals of null" + }, + { + "appid": 1025500, + "normalized_name": "age old cities vr" + }, + { + "appid": 1025510, + "normalized_name": "ancient battle successors" + }, + { + "appid": 1025520, + "normalized_name": "ancient battle alexander" + }, + { + "appid": 1025530, + "normalized_name": "100 years’ war" + }, + { + "appid": 1025540, + "normalized_name": "rebels & redcoats" + }, + { + "appid": 1025550, + "normalized_name": "great battles of the american civil war" + }, + { + "appid": 1025560, + "normalized_name": "flea madness" + }, + { + "appid": 1025600, + "normalized_name": "battle realms zen" + }, + { + "appid": 1025620, + "normalized_name": "untitled" + }, + { + "appid": 1025650, + "normalized_name": "astrog" + }, + { + "appid": 1025690, + "normalized_name": "dance reality" + }, + { + "appid": 1025710, + "normalized_name": "real al's humanity academy" + }, + { + "appid": 1025740, + "normalized_name": "the woods vr escape the room" + }, + { + "appid": 1025780, + "normalized_name": "axe prime" + }, + { + "appid": 1025870, + "normalized_name": "monsters survival" + }, + { + "appid": 1025890, + "normalized_name": "other submarine" + }, + { + "appid": 1025900, + "normalized_name": "battle balls" + }, + { + "appid": 1025960, + "normalized_name": "buried stars" + }, + { + "appid": 1026020, + "normalized_name": "zyphoid" + }, + { + "appid": 1026070, + "normalized_name": "12 labours of hercules ix a hero's moonwalk" + }, + { + "appid": 1026080, + "normalized_name": "the antidote" + }, + { + "appid": 1026100, + "normalized_name": "stranded sails prologue" + }, + { + "appid": 1026110, + "normalized_name": "racing classics drag race simulator" + }, + { + "appid": 1026130, + "normalized_name": "stab stab stab!" + }, + { + "appid": 1026160, + "normalized_name": "misadventures of laura silver" + }, + { + "appid": 1026180, + "normalized_name": "420 button clicker" + }, + { + "appid": 1026210, + "normalized_name": "bad billy 2d vr" + }, + { + "appid": 1026220, + "normalized_name": "knights province" + }, + { + "appid": 1026370, + "normalized_name": "my fair princess" + }, + { + "appid": 1026380, + "normalized_name": "overture music visualization" + }, + { + "appid": 1026390, + "normalized_name": "magic heart" + }, + { + "appid": 1026400, + "normalized_name": "tamashii" + }, + { + "appid": 1026420, + "normalized_name": "warsaw" + }, + { + "appid": 1026430, + "normalized_name": "book of eos" + }, + { + "appid": 1026560, + "normalized_name": "logistical 2 usa nevada" + }, + { + "appid": 1026610, + "normalized_name": "deathless dungeon" + }, + { + "appid": 1026670, + "normalized_name": "panchira concentration" + }, + { + "appid": 1026680, + "normalized_name": "final fantasy viii" + }, + { + "appid": 1026760, + "normalized_name": "depthqvr_aqua" + }, + { + "appid": 1026770, + "normalized_name": "lightmare castle" + }, + { + "appid": 1026810, + "normalized_name": "a story of us ep. 1 first memories" + }, + { + "appid": 1026820, + "normalized_name": "coloring game" + }, + { + "appid": 1026840, + "normalized_name": "ultra fight da ! kyanta 2" + }, + { + "appid": 1026880, + "normalized_name": "fireground modern war" + }, + { + "appid": 1026890, + "normalized_name": "yoba2d" + }, + { + "appid": 1026910, + "normalized_name": "memorise'n'run" + }, + { + "appid": 1026940, + "normalized_name": "hei" + }, + { + "appid": 1026960, + "normalized_name": "professional thief" + }, + { + "appid": 1027060, + "normalized_name": "creatorcrate" + }, + { + "appid": 1027120, + "normalized_name": "bravery network online" + }, + { + "appid": 1027130, + "normalized_name": "neko nin exheart 2 love +plus" + }, + { + "appid": 1027190, + "normalized_name": "hot squat 2 new glory" + }, + { + "appid": 1027230, + "normalized_name": "woman's body for adults" + }, + { + "appid": 1027250, + "normalized_name": "the alliance alive hd" + }, + { + "appid": 1027480, + "normalized_name": "birth of a hunter" + }, + { + "appid": 1027520, + "normalized_name": "hentai waifu vol.1" + }, + { + "appid": 1027530, + "normalized_name": "robohazard 2077" + }, + { + "appid": 1027550, + "normalized_name": "bikini surfer girl wild wahine" + }, + { + "appid": 1027570, + "normalized_name": "the deep deep" + }, + { + "appid": 1027600, + "normalized_name": "eli girls" + }, + { + "appid": 1027610, + "normalized_name": "wampee helicopters" + }, + { + "appid": 1027620, + "normalized_name": "the language of love" + }, + { + "appid": 1027650, + "normalized_name": "supernova tactics" + }, + { + "appid": 1027660, + "normalized_name": "it's fun to break things" + }, + { + "appid": 1027690, + "normalized_name": "mazania" + }, + { + "appid": 1027700, + "normalized_name": "shmup moments" + }, + { + "appid": 1027710, + "normalized_name": "fil" + }, + { + "appid": 1027720, + "normalized_name": "push pull" + }, + { + "appid": 1027780, + "normalized_name": "dwarf block" + }, + { + "appid": 1027790, + "normalized_name": "maze ninja" + }, + { + "appid": 1027800, + "normalized_name": "fly flew flown" + }, + { + "appid": 1027810, + "normalized_name": "zookeeper" + }, + { + "appid": 1027820, + "normalized_name": "hand simulator horror" + }, + { + "appid": 1027830, + "normalized_name": "sin; vengeance" + }, + { + "appid": 1027860, + "normalized_name": "iron naval battle" + }, + { + "appid": 1027900, + "normalized_name": "sexy heroine!" + }, + { + "appid": 1027910, + "normalized_name": "sex kills" + }, + { + "appid": 1027930, + "normalized_name": "keystones" + }, + { + "appid": 1027960, + "normalized_name": "world peace simulator 2019" + }, + { + "appid": 1027970, + "normalized_name": "leslove.club jessica and ashley" + }, + { + "appid": 1027990, + "normalized_name": "antenna dilemma" + }, + { + "appid": 1028010, + "normalized_name": "speedrun ninja" + }, + { + "appid": 1028030, + "normalized_name": "shuriken and aliens" + }, + { + "appid": 1028090, + "normalized_name": "eruption 爆发" + }, + { + "appid": 1028110, + "normalized_name": "cooking trip" + }, + { + "appid": 1028130, + "normalized_name": "gamble fight plus" + }, + { + "appid": 1028170, + "normalized_name": "tahko alpine ski" + }, + { + "appid": 1028250, + "normalized_name": "magic gun" + }, + { + "appid": 1028280, + "normalized_name": "bridge! 3" + }, + { + "appid": 1028300, + "normalized_name": "katana soul" + }, + { + "appid": 1028310, + "normalized_name": "book of hours" + }, + { + "appid": 1028320, + "normalized_name": "this is pool" + }, + { + "appid": 1028330, + "normalized_name": "fan club" + }, + { + "appid": 1028340, + "normalized_name": "spare teeth vr" + }, + { + "appid": 1028350, + "normalized_name": "pupperazzi the dog photography game" + }, + { + "appid": 1028360, + "normalized_name": "robo miner 2" + }, + { + "appid": 1028380, + "normalized_name": "data mining 6" + }, + { + "appid": 1028410, + "normalized_name": "don't look back vr" + }, + { + "appid": 1028440, + "normalized_name": "arrow tourney" + }, + { + "appid": 1028460, + "normalized_name": "spellcasting collection" + }, + { + "appid": 1028470, + "normalized_name": "dis the game" + }, + { + "appid": 1028480, + "normalized_name": "minskies" + }, + { + "appid": 1028490, + "normalized_name": "radical rex" + }, + { + "appid": 1028500, + "normalized_name": "nightshade" + }, + { + "appid": 1028510, + "normalized_name": "past fate" + }, + { + "appid": 1028520, + "normalized_name": "brave battle saga the legend of the magic warrior" + }, + { + "appid": 1028540, + "normalized_name": "taikovr" + }, + { + "appid": 1028550, + "normalized_name": "sinewave" + }, + { + "appid": 1028570, + "normalized_name": "lofi ping pong" + }, + { + "appid": 1028590, + "normalized_name": "the wilds" + }, + { + "appid": 1028610, + "normalized_name": "shift shaft" + }, + { + "appid": 1028630, + "normalized_name": "cricket 19" + }, + { + "appid": 1028660, + "normalized_name": "pirouette" + }, + { + "appid": 1028680, + "normalized_name": "our children escaping earth" + }, + { + "appid": 1028730, + "normalized_name": "creo god simulator" + }, + { + "appid": 1028740, + "normalized_name": "herd is coming" + }, + { + "appid": 1028750, + "normalized_name": "logic puzzle collection" + }, + { + "appid": 1028760, + "normalized_name": "snow battle princess sayuki | 雪ん娘大旋風" + }, + { + "appid": 1028770, + "normalized_name": "kanji in motion" + }, + { + "appid": 1028800, + "normalized_name": "survival camp" + }, + { + "appid": 1028820, + "normalized_name": "horror stories" + }, + { + "appid": 1028830, + "normalized_name": "destiny hunter" + }, + { + "appid": 1028840, + "normalized_name": "super toy cars 2" + }, + { + "appid": 1028850, + "normalized_name": "baldina's basis in education literary grammar" + }, + { + "appid": 1028860, + "normalized_name": "star chef cooking & restaurant game" + }, + { + "appid": 1028880, + "normalized_name": "mistero a villa milaflora" + }, + { + "appid": 1028900, + "normalized_name": "operation valderon" + }, + { + "appid": 1028910, + "normalized_name": "sparkle 4 tales" + }, + { + "appid": 1028930, + "normalized_name": "it moves" + }, + { + "appid": 1028990, + "normalized_name": "maze of time" + }, + { + "appid": 1029020, + "normalized_name": "bionicblitz" + }, + { + "appid": 1029030, + "normalized_name": "tree house survivors" + }, + { + "appid": 1029040, + "normalized_name": "baby redemption" + }, + { + "appid": 1029050, + "normalized_name": "dodge diego" + }, + { + "appid": 1029070, + "normalized_name": "spark of light" + }, + { + "appid": 1029080, + "normalized_name": "nowhere station" + }, + { + "appid": 1029100, + "normalized_name": "worse than death" + }, + { + "appid": 1029110, + "normalized_name": "trash time" + }, + { + "appid": 1029120, + "normalized_name": "space expand" + }, + { + "appid": 1029130, + "normalized_name": "sordwin the evertree saga" + }, + { + "appid": 1029150, + "normalized_name": "totem force" + }, + { + "appid": 1029160, + "normalized_name": "sunset planet" + }, + { + "appid": 1029170, + "normalized_name": "skautfold moonless knight" + }, + { + "appid": 1029190, + "normalized_name": "alone with a bunch of robots" + }, + { + "appid": 1029210, + "normalized_name": "30xx" + }, + { + "appid": 1029220, + "normalized_name": "terraforming earth" + }, + { + "appid": 1029230, + "normalized_name": "two for one" + }, + { + "appid": 1029240, + "normalized_name": "hentai survive island" + }, + { + "appid": 1029260, + "normalized_name": "unsung story" + }, + { + "appid": 1029340, + "normalized_name": "stream animals free for all" + }, + { + "appid": 1029380, + "normalized_name": "monster hunting... for love!" + }, + { + "appid": 1029470, + "normalized_name": "angry farm" + }, + { + "appid": 1029500, + "normalized_name": "中华三国志 the three kingdoms of china" + }, + { + "appid": 1029530, + "normalized_name": "aqua rally" + }, + { + "appid": 1029540, + "normalized_name": "super kittens" + }, + { + "appid": 1029550, + "normalized_name": "torque drift" + }, + { + "appid": 1029560, + "normalized_name": "bandits" + }, + { + "appid": 1029570, + "normalized_name": "perfect round disc golf" + }, + { + "appid": 1029630, + "normalized_name": "power & revolution 2019" + }, + { + "appid": 1029640, + "normalized_name": "reaktron" + }, + { + "appid": 1029650, + "normalized_name": "יום פתוח (open day)" + }, + { + "appid": 1029660, + "normalized_name": "athletics games vr" + }, + { + "appid": 1029690, + "normalized_name": "sniper elite 5" + }, + { + "appid": 1029730, + "normalized_name": "vr ping pong pro" + }, + { + "appid": 1029750, + "normalized_name": "voipas" + }, + { + "appid": 1029760, + "normalized_name": "tanknarok" + }, + { + "appid": 1029780, + "normalized_name": "going medieval" + }, + { + "appid": 1029790, + "normalized_name": "qubes" + }, + { + "appid": 1029830, + "normalized_name": "chip rescuer of kittens" + }, + { + "appid": 1029840, + "normalized_name": "ne touchez pas 5" + }, + { + "appid": 1029860, + "normalized_name": "amber's airline 7 wonders" + }, + { + "appid": 1029870, + "normalized_name": "unsung heroes the golden mask" + }, + { + "appid": 1029890, + "normalized_name": "layers of fear 2 (2019)" + }, + { + "appid": 1029900, + "normalized_name": "rummy 3d premium" + }, + { + "appid": 1029920, + "normalized_name": "twinship" + }, + { + "appid": 1029930, + "normalized_name": "bud blitz" + }, + { + "appid": 1029950, + "normalized_name": "big boot baseball" + }, + { + "appid": 1029970, + "normalized_name": "dig deep" + }, + { + "appid": 1029980, + "normalized_name": "ubermosh vol.7" + }, + { + "appid": 1029990, + "normalized_name": "wet beach pussies" + }, + { + "appid": 1030000, + "normalized_name": "neko neko rampage" + }, + { + "appid": 1030060, + "normalized_name": "seed of life" + }, + { + "appid": 1030100, + "normalized_name": "supreme courtship" + }, + { + "appid": 1030170, + "normalized_name": "fear for sale endless voyage collector's" + }, + { + "appid": 1030180, + "normalized_name": "dark tales edgar allan poe's the premature burial collector's" + }, + { + "appid": 1030190, + "normalized_name": "amaranthine voyage the orb of purity collector's" + }, + { + "appid": 1030210, + "normalized_name": "torchlight iii" + }, + { + "appid": 1030240, + "normalized_name": "dino tour vr" + }, + { + "appid": 1030300, + "normalized_name": "hollow knight silksong" + }, + { + "appid": 1030310, + "normalized_name": "table of tales the crooked crown" + }, + { + "appid": 1030330, + "normalized_name": "wolf or boy" + }, + { + "appid": 1030350, + "normalized_name": "kingdomfall" + }, + { + "appid": 1030360, + "normalized_name": "midnight evil" + }, + { + "appid": 1030380, + "normalized_name": "real fishing vr" + }, + { + "appid": 1030430, + "normalized_name": "arcade" + }, + { + "appid": 1030460, + "normalized_name": "hulala baby" + }, + { + "appid": 1030470, + "normalized_name": "with loneliness" + }, + { + "appid": 1030490, + "normalized_name": "harem girl isabella" + }, + { + "appid": 1030520, + "normalized_name": "grater" + }, + { + "appid": 1030530, + "normalized_name": "eleven islands" + }, + { + "appid": 1030580, + "normalized_name": "your future self" + }, + { + "appid": 1030730, + "normalized_name": "vip shuttle" + }, + { + "appid": 1030740, + "normalized_name": "salt the earth" + }, + { + "appid": 1030770, + "normalized_name": "mech game" + }, + { + "appid": 1030780, + "normalized_name": "afterconflict" + }, + { + "appid": 1030810, + "normalized_name": "steam and silk" + }, + { + "appid": 1030830, + "normalized_name": "mafia ii" + }, + { + "appid": 1030840, + "normalized_name": "mafia" + }, + { + "appid": 1030950, + "normalized_name": "seventh circle" + }, + { + "appid": 1030960, + "normalized_name": "land war" + }, + { + "appid": 1030970, + "normalized_name": "dream rose" + }, + { + "appid": 1031020, + "normalized_name": "hadaka shitsuji naked butlers" + }, + { + "appid": 1031080, + "normalized_name": "lunars" + }, + { + "appid": 1031090, + "normalized_name": "sword defense" + }, + { + "appid": 1031110, + "normalized_name": "unroaded" + }, + { + "appid": 1031120, + "normalized_name": "bakery simulator" + }, + { + "appid": 1031130, + "normalized_name": "bat hotel" + }, + { + "appid": 1031140, + "normalized_name": "warhammer the horus heresy legions" + }, + { + "appid": 1031160, + "normalized_name": "poly defense" + }, + { + "appid": 1031170, + "normalized_name": "elf enchanter arousing anima" + }, + { + "appid": 1031200, + "normalized_name": "mad gun range vr simulator" + }, + { + "appid": 1031210, + "normalized_name": "fantasy heroes" + }, + { + "appid": 1031220, + "normalized_name": "champions of thora" + }, + { + "appid": 1031230, + "normalized_name": "midnight's curse" + }, + { + "appid": 1031260, + "normalized_name": "sexy heroine! part 2" + }, + { + "appid": 1031270, + "normalized_name": "farming life" + }, + { + "appid": 1031290, + "normalized_name": "grove flowers" + }, + { + "appid": 1031320, + "normalized_name": "malevolence" + }, + { + "appid": 1031330, + "normalized_name": "lyratha labyrinth survival escape" + }, + { + "appid": 1031370, + "normalized_name": "space bound" + }, + { + "appid": 1031440, + "normalized_name": "tokyo chronos" + }, + { + "appid": 1031460, + "normalized_name": "sail forth" + }, + { + "appid": 1031470, + "normalized_name": "beasty karts" + }, + { + "appid": 1031480, + "normalized_name": "touhou makuka sai ~ fantastic danmaku festival part ii" + }, + { + "appid": 1031500, + "normalized_name": "super robot wars v" + }, + { + "appid": 1031510, + "normalized_name": "super robot wars x" + }, + { + "appid": 1031540, + "normalized_name": "amaze lunar" + }, + { + "appid": 1031560, + "normalized_name": "sudoku3d 2 the cube" + }, + { + "appid": 1031570, + "normalized_name": "hookshot" + }, + { + "appid": 1031580, + "normalized_name": "4dsnake" + }, + { + "appid": 1031590, + "normalized_name": "the adventures of perseus" + }, + { + "appid": 1031610, + "normalized_name": "up square" + }, + { + "appid": 1031630, + "normalized_name": "vaporspace" + }, + { + "appid": 1031640, + "normalized_name": "super orb collector" + }, + { + "appid": 1031650, + "normalized_name": "emu war!" + }, + { + "appid": 1031660, + "normalized_name": "mango cart" + }, + { + "appid": 1031670, + "normalized_name": "fpsbois" + }, + { + "appid": 1031700, + "normalized_name": "survivor" + }, + { + "appid": 1031730, + "normalized_name": "battlefall state of conflict" + }, + { + "appid": 1031770, + "normalized_name": "воин хинора" + }, + { + "appid": 1031790, + "normalized_name": "eternower" + }, + { + "appid": 1031800, + "normalized_name": "codex temondera lost vision" + }, + { + "appid": 1031830, + "normalized_name": "constructionary" + }, + { + "appid": 1031850, + "normalized_name": "the witchcraft of skysword 天翔と剣のウィッチクラフト" + }, + { + "appid": 1031860, + "normalized_name": "zenith frontier" + }, + { + "appid": 1031900, + "normalized_name": "you can kana learn japanese hiragana & katakana" + }, + { + "appid": 1031910, + "normalized_name": "the path to die" + }, + { + "appid": 1031920, + "normalized_name": "симулятор сидения у подъезда" + }, + { + "appid": 1031970, + "normalized_name": "wolfpack island" + }, + { + "appid": 1032040, + "normalized_name": "龍炎高校伝説2 the legend of the dragonflame high school 2" + }, + { + "appid": 1032060, + "normalized_name": "carreras de velocidad" + }, + { + "appid": 1032070, + "normalized_name": "mostly scared of spiders" + }, + { + "appid": 1032080, + "normalized_name": "boxed out" + }, + { + "appid": 1032090, + "normalized_name": "war of power the last fight" + }, + { + "appid": 1032120, + "normalized_name": "stellar survivor" + }, + { + "appid": 1032140, + "normalized_name": "let's worm" + }, + { + "appid": 1032170, + "normalized_name": "robo instructus" + }, + { + "appid": 1032210, + "normalized_name": "2014.aftermath" + }, + { + "appid": 1032220, + "normalized_name": "free the dragons" + }, + { + "appid": 1032230, + "normalized_name": "bob's cat challenge" + }, + { + "appid": 1032240, + "normalized_name": "line loops logic puzzles" + }, + { + "appid": 1032260, + "normalized_name": "dodge this!" + }, + { + "appid": 1032270, + "normalized_name": "kill the censored" + }, + { + "appid": 1032280, + "normalized_name": "the voice inside" + }, + { + "appid": 1032340, + "normalized_name": "gekido kintaro's revenge" + }, + { + "appid": 1032360, + "normalized_name": "the burned ground" + }, + { + "appid": 1032420, + "normalized_name": "it comes from hell (survive)" + }, + { + "appid": 1032430, + "normalized_name": "blood trail" + }, + { + "appid": 1032440, + "normalized_name": "board quizz adventure" + }, + { + "appid": 1032450, + "normalized_name": "fallen hearts" + }, + { + "appid": 1032510, + "normalized_name": "balance roll" + }, + { + "appid": 1032520, + "normalized_name": "jermaslots" + }, + { + "appid": 1032530, + "normalized_name": "crashcourse concussion education reimagined" + }, + { + "appid": 1032560, + "normalized_name": "faux" + }, + { + "appid": 1032570, + "normalized_name": "pilot unknown" + }, + { + "appid": 1032580, + "normalized_name": "eldritch academy" + }, + { + "appid": 1032590, + "normalized_name": "heaven dust 秘馆疑踪" + }, + { + "appid": 1032650, + "normalized_name": "jungle defense" + }, + { + "appid": 1032660, + "normalized_name": "romans from mars (free to play)" + }, + { + "appid": 1032670, + "normalized_name": "focus on you" + }, + { + "appid": 1032690, + "normalized_name": "once a tale" + }, + { + "appid": 1032700, + "normalized_name": "bus driving sim 22" + }, + { + "appid": 1032730, + "normalized_name": "sticks and bones" + }, + { + "appid": 1032740, + "normalized_name": "how to build a flying city" + }, + { + "appid": 1032750, + "normalized_name": "zombie shooter ares virus" + }, + { + "appid": 1032770, + "normalized_name": "haprokon" + }, + { + "appid": 1032790, + "normalized_name": "journey of greed" + }, + { + "appid": 1032830, + "normalized_name": "eldervale" + }, + { + "appid": 1032980, + "normalized_name": "wild life" + }, + { + "appid": 1033000, + "normalized_name": "shoot the zombirds vr" + }, + { + "appid": 1033030, + "normalized_name": "maszyna" + }, + { + "appid": 1033080, + "normalized_name": "letters a written adventure" + }, + { + "appid": 1033090, + "normalized_name": "age of darkness die suche nach relict" + }, + { + "appid": 1033100, + "normalized_name": "mobler" + }, + { + "appid": 1033110, + "normalized_name": "forgotten trace thanatos in nostalgia" + }, + { + "appid": 1033120, + "normalized_name": "sex motel" + }, + { + "appid": 1033130, + "normalized_name": "monovert dx" + }, + { + "appid": 1033140, + "normalized_name": "church era" + }, + { + "appid": 1033190, + "normalized_name": "spectral escape" + }, + { + "appid": 1033210, + "normalized_name": "winter fury the longest road" + }, + { + "appid": 1033220, + "normalized_name": "the amazing shrinking giraffe" + }, + { + "appid": 1033230, + "normalized_name": "sheep collision" + }, + { + "appid": 1033240, + "normalized_name": "nystagmus" + }, + { + "appid": 1033250, + "normalized_name": "bluboy the journey begins" + }, + { + "appid": 1033330, + "normalized_name": "primordium day zero" + }, + { + "appid": 1033340, + "normalized_name": "biorhythm" + }, + { + "appid": 1033360, + "normalized_name": "bears in tanks" + }, + { + "appid": 1033370, + "normalized_name": "fruit crawler" + }, + { + "appid": 1033380, + "normalized_name": "skate & date" + }, + { + "appid": 1033410, + "normalized_name": "fragsurf" + }, + { + "appid": 1033420, + "normalized_name": "9 nine episode 2" + }, + { + "appid": 1033450, + "normalized_name": "treasure chest corps 結界を維持するため、魔物を退治した" + }, + { + "appid": 1033510, + "normalized_name": "red room" + }, + { + "appid": 1033540, + "normalized_name": "arvita" + }, + { + "appid": 1033580, + "normalized_name": "nano driller" + }, + { + "appid": 1033590, + "normalized_name": "ultra gene code" + }, + { + "appid": 1033600, + "normalized_name": "cannon fire bloody sea" + }, + { + "appid": 1033630, + "normalized_name": "tiger tank 59 ⅰ break the fog" + }, + { + "appid": 1033640, + "normalized_name": "synaptic drive" + }, + { + "appid": 1033660, + "normalized_name": "destruction" + }, + { + "appid": 1033670, + "normalized_name": "defoliation" + }, + { + "appid": 1033700, + "normalized_name": "kingdoms of rhea" + }, + { + "appid": 1033710, + "normalized_name": "froggo" + }, + { + "appid": 1033720, + "normalized_name": "the psychiatrist major depression" + }, + { + "appid": 1033780, + "normalized_name": "lootbox lyfe" + }, + { + "appid": 1033810, + "normalized_name": "new age" + }, + { + "appid": 1033860, + "normalized_name": "art of horology" + }, + { + "appid": 1033880, + "normalized_name": "press f to pay respects" + }, + { + "appid": 1033910, + "normalized_name": "hyper mum ft adult gaming" + }, + { + "appid": 1033930, + "normalized_name": "animal doctor" + }, + { + "appid": 1033950, + "normalized_name": "lamentum" + }, + { + "appid": 1033960, + "normalized_name": "wet dog corp" + }, + { + "appid": 1034020, + "normalized_name": "corbid! a colorful adventure" + }, + { + "appid": 1034030, + "normalized_name": "bashed.os" + }, + { + "appid": 1034040, + "normalized_name": "causa voices of the dusk" + }, + { + "appid": 1034060, + "normalized_name": "samosbor" + }, + { + "appid": 1034120, + "normalized_name": "gachimuchi the card game" + }, + { + "appid": 1034130, + "normalized_name": "dungeon bosses" + }, + { + "appid": 1034140, + "normalized_name": "subverse" + }, + { + "appid": 1034150, + "normalized_name": "mosaic chronicles" + }, + { + "appid": 1034160, + "normalized_name": "extreme racing on highway" + }, + { + "appid": 1034170, + "normalized_name": "wild castle" + }, + { + "appid": 1034200, + "normalized_name": "its simple shoot" + }, + { + "appid": 1034230, + "normalized_name": "***" + }, + { + "appid": 1034240, + "normalized_name": "the far kingdoms awakening solitaire" + }, + { + "appid": 1034250, + "normalized_name": "the far kingdoms winter solitaire" + }, + { + "appid": 1034260, + "normalized_name": "the far kingdoms sacred grove solitaire" + }, + { + "appid": 1034270, + "normalized_name": "luxor solitaire" + }, + { + "appid": 1034280, + "normalized_name": "greed 3 old enemies returning" + }, + { + "appid": 1034370, + "normalized_name": "iron heart" + }, + { + "appid": 1034380, + "normalized_name": "alice's jigsaw. wonderland chronicles" + }, + { + "appid": 1034390, + "normalized_name": "alice's jigsaw. wonderland chronicles 2" + }, + { + "appid": 1034400, + "normalized_name": "mystery solitaire the black raven" + }, + { + "appid": 1034410, + "normalized_name": "strike solitaire" + }, + { + "appid": 1034430, + "normalized_name": "the perfect concept" + }, + { + "appid": 1034440, + "normalized_name": "roach killer" + }, + { + "appid": 1034540, + "normalized_name": "lorenzo il magnifico" + }, + { + "appid": 1034560, + "normalized_name": "tales of nebezem rpg red peril" + }, + { + "appid": 1034590, + "normalized_name": "what the duck" + }, + { + "appid": 1034610, + "normalized_name": "in.my.mind" + }, + { + "appid": 1034700, + "normalized_name": "gray" + }, + { + "appid": 1034740, + "normalized_name": "hard light vector" + }, + { + "appid": 1034750, + "normalized_name": "the flower collectors" + }, + { + "appid": 1034810, + "normalized_name": "pax romana romulus" + }, + { + "appid": 1034820, + "normalized_name": "puss in boots fear not hooman" + }, + { + "appid": 1034850, + "normalized_name": "best friend forever" + }, + { + "appid": 1034860, + "normalized_name": "grandia hd remaster" + }, + { + "appid": 1034870, + "normalized_name": "norman's night in" + }, + { + "appid": 1034880, + "normalized_name": "dorakone" + }, + { + "appid": 1034900, + "normalized_name": "blaster master zero" + }, + { + "appid": 1034910, + "normalized_name": "blaster master zero 2" + }, + { + "appid": 1034920, + "normalized_name": "whipseey and the lost atlas" + }, + { + "appid": 1034940, + "normalized_name": "higurashi when they cry hou ch.7 minagoroshi" + }, + { + "appid": 1034950, + "normalized_name": "mad princess the great gladiators" + }, + { + "appid": 1035010, + "normalized_name": "mini gal4xy" + }, + { + "appid": 1035030, + "normalized_name": "funbag fantasy sideboob story" + }, + { + "appid": 1035050, + "normalized_name": "alt frequencies" + }, + { + "appid": 1035110, + "normalized_name": "moonrise fall" + }, + { + "appid": 1035120, + "normalized_name": "lust from beyond" + }, + { + "appid": 1035190, + "normalized_name": "zombies in the forest" + }, + { + "appid": 1035220, + "normalized_name": "hentai puzzle party" + }, + { + "appid": 1035240, + "normalized_name": "forced termination" + }, + { + "appid": 1035260, + "normalized_name": "a game for you josh" + }, + { + "appid": 1035270, + "normalized_name": "furry chronicles" + }, + { + "appid": 1035280, + "normalized_name": "stoppa!" + }, + { + "appid": 1035300, + "normalized_name": "cockroach planet survival" + }, + { + "appid": 1035310, + "normalized_name": "outbreak lost hope" + }, + { + "appid": 1035320, + "normalized_name": "marineverse sailing club" + }, + { + "appid": 1035410, + "normalized_name": "xmoon" + }, + { + "appid": 1035430, + "normalized_name": "table games vr" + }, + { + "appid": 1035470, + "normalized_name": "takotan 星のタコ" + }, + { + "appid": 1035490, + "normalized_name": "eurgava tomb of senza" + }, + { + "appid": 1035500, + "normalized_name": "escape from the tomb tower" + }, + { + "appid": 1035510, + "normalized_name": "zombie defense" + }, + { + "appid": 1035530, + "normalized_name": "disobedient sheep" + }, + { + "appid": 1035550, + "normalized_name": "galaxy forces vr" + }, + { + "appid": 1035560, + "normalized_name": "struggling" + }, + { + "appid": 1035570, + "normalized_name": "whiffle blasters" + }, + { + "appid": 1035600, + "normalized_name": "the dawn sniper's way" + }, + { + "appid": 1035610, + "normalized_name": "hentai mosaique vip room" + }, + { + "appid": 1035660, + "normalized_name": "chromosome evil" + }, + { + "appid": 1035690, + "normalized_name": "great adventure in the world of sky" + }, + { + "appid": 1035700, + "normalized_name": "reflections ~dreams and reality~" + }, + { + "appid": 1035730, + "normalized_name": "渊噬" + }, + { + "appid": 1035750, + "normalized_name": "文字獄" + }, + { + "appid": 1035760, + "normalized_name": "glimmer in mirror" + }, + { + "appid": 1035770, + "normalized_name": "jewel match solitaire 2 collector's" + }, + { + "appid": 1035780, + "normalized_name": "pecker" + }, + { + "appid": 1035790, + "normalized_name": "laruaville 7 match 3 adventure" + }, + { + "appid": 1035800, + "normalized_name": "mistress of maids first castle" + }, + { + "appid": 1035830, + "normalized_name": "dracologic" + }, + { + "appid": 1035840, + "normalized_name": "cold hearts" + }, + { + "appid": 1035850, + "normalized_name": "balancelot" + }, + { + "appid": 1035860, + "normalized_name": "super space jump man" + }, + { + "appid": 1035880, + "normalized_name": "block dodge challenge" + }, + { + "appid": 1035890, + "normalized_name": "vape escape" + }, + { + "appid": 1035900, + "normalized_name": "prison escape" + }, + { + "appid": 1035920, + "normalized_name": "chocolate makes you happy lunar new year" + }, + { + "appid": 1035930, + "normalized_name": "nyasha" + }, + { + "appid": 1035950, + "normalized_name": "philophobia the fear of love" + }, + { + "appid": 1035960, + "normalized_name": "recycler's terminal" + }, + { + "appid": 1035990, + "normalized_name": "dialtown phone dating sim" + }, + { + "appid": 1036000, + "normalized_name": "the ploshers" + }, + { + "appid": 1036030, + "normalized_name": "escaperoute" + }, + { + "appid": 1036080, + "normalized_name": "机械星河" + }, + { + "appid": 1036120, + "normalized_name": "病毒恶化 viruscrisis" + }, + { + "appid": 1036190, + "normalized_name": "疑犯寻踪 in pursuit" + }, + { + "appid": 1036200, + "normalized_name": "song animals" + }, + { + "appid": 1036210, + "normalized_name": "puzzling languages german/english" + }, + { + "appid": 1036240, + "normalized_name": "definitely not fried chicken" + }, + { + "appid": 1036260, + "normalized_name": "journey for elysium" + }, + { + "appid": 1036270, + "normalized_name": "bug aviators in theme park" + }, + { + "appid": 1036310, + "normalized_name": "hockey strategy of success" + }, + { + "appid": 1036330, + "normalized_name": "battlecubes arena" + }, + { + "appid": 1036370, + "normalized_name": "flying red barrel the diary of a little aviator" + }, + { + "appid": 1036400, + "normalized_name": "mage vr the lost memories" + }, + { + "appid": 1036430, + "normalized_name": "neverdark" + }, + { + "appid": 1036440, + "normalized_name": "kingdom wars 2" + }, + { + "appid": 1036460, + "normalized_name": "similars climb" + }, + { + "appid": 1036490, + "normalized_name": "space smash" + }, + { + "appid": 1036530, + "normalized_name": "a way up!" + }, + { + "appid": 1036550, + "normalized_name": "levers & buttons" + }, + { + "appid": 1036570, + "normalized_name": "ascend" + }, + { + "appid": 1036580, + "normalized_name": "national park girls love our parks" + }, + { + "appid": 1036600, + "normalized_name": "junglex" + }, + { + "appid": 1036620, + "normalized_name": "alien cow farm" + }, + { + "appid": 1036660, + "normalized_name": "minigolf maker" + }, + { + "appid": 1036700, + "normalized_name": "my beautiful paper smile" + }, + { + "appid": 1036740, + "normalized_name": "metal dogs" + }, + { + "appid": 1036750, + "normalized_name": "hentai chicks" + }, + { + "appid": 1036780, + "normalized_name": "pokris" + }, + { + "appid": 1036800, + "normalized_name": "night island" + }, + { + "appid": 1036820, + "normalized_name": "marvin the hatter" + }, + { + "appid": 1036840, + "normalized_name": "cat defense" + }, + { + "appid": 1036850, + "normalized_name": "auf abwegen" + }, + { + "appid": 1036870, + "normalized_name": "night catcher" + }, + { + "appid": 1036890, + "normalized_name": "shadow warrior 3" + }, + { + "appid": 1036900, + "normalized_name": "seven bullets zombie apocalypse" + }, + { + "appid": 1036910, + "normalized_name": "€100" + }, + { + "appid": 1036920, + "normalized_name": "doom in the dark" + }, + { + "appid": 1036930, + "normalized_name": "pc fútbol stars" + }, + { + "appid": 1036950, + "normalized_name": "super jigsaw puzzle generations" + }, + { + "appid": 1036960, + "normalized_name": "阿津" + }, + { + "appid": 1036980, + "normalized_name": "mysteries of the undead" + }, + { + "appid": 1036990, + "normalized_name": "royal gems" + }, + { + "appid": 1037000, + "normalized_name": "where are my pipes?" + }, + { + "appid": 1037010, + "normalized_name": "mystery solitaire grimm's tales" + }, + { + "appid": 1037020, + "normalized_name": "scourgebringer" + }, + { + "appid": 1037080, + "normalized_name": "zedfest" + }, + { + "appid": 1037090, + "normalized_name": "green the life algorithm" + }, + { + "appid": 1037100, + "normalized_name": "you died but a necromancer revived you" + }, + { + "appid": 1037120, + "normalized_name": "mutropolis" + }, + { + "appid": 1037130, + "normalized_name": "dandy ace" + }, + { + "appid": 1037140, + "normalized_name": "mow problem" + }, + { + "appid": 1037150, + "normalized_name": "zakk hazard the deadly spawn" + }, + { + "appid": 1037190, + "normalized_name": "shipped" + }, + { + "appid": 1037240, + "normalized_name": "theworld" + }, + { + "appid": 1037250, + "normalized_name": "spellcard academy" + }, + { + "appid": 1037260, + "normalized_name": "diacrisis" + }, + { + "appid": 1037270, + "normalized_name": "酔いどれクイズshow 標鍛" + }, + { + "appid": 1037330, + "normalized_name": "senpai teaches me japanese" + }, + { + "appid": 1037340, + "normalized_name": "over the cloud lost planet" + }, + { + "appid": 1037350, + "normalized_name": "back to 1998" + }, + { + "appid": 1037380, + "normalized_name": "cradle of sins" + }, + { + "appid": 1037410, + "normalized_name": "captain starshot" + }, + { + "appid": 1037420, + "normalized_name": "hentai strawberry" + }, + { + "appid": 1037430, + "normalized_name": "hell hole" + }, + { + "appid": 1037460, + "normalized_name": "deep 8" + }, + { + "appid": 1037470, + "normalized_name": "jormungandr" + }, + { + "appid": 1037560, + "normalized_name": "fat prisoner simulator" + }, + { + "appid": 1037590, + "normalized_name": "neptunia shooter" + }, + { + "appid": 1037600, + "normalized_name": "lord democrat strikes out!" + }, + { + "appid": 1037690, + "normalized_name": "bioszard corporation" + }, + { + "appid": 1037750, + "normalized_name": "looking for heals" + }, + { + "appid": 1037760, + "normalized_name": "hold the fort" + }, + { + "appid": 1037810, + "normalized_name": "ping pong trick shot evolution" + }, + { + "appid": 1037820, + "normalized_name": "warsworn dragon of japan empire" + }, + { + "appid": 1037830, + "normalized_name": "rascal fight | 捣蛋大作战" + }, + { + "appid": 1037840, + "normalized_name": "running ninja" + }, + { + "appid": 1037850, + "normalized_name": "pirate cannons ahoy!" + }, + { + "appid": 1037900, + "normalized_name": "fight this" + }, + { + "appid": 1037910, + "normalized_name": "paw paw paw" + }, + { + "appid": 1037930, + "normalized_name": "era of miracles" + }, + { + "appid": 1037940, + "normalized_name": "dead monarchy" + }, + { + "appid": 1037950, + "normalized_name": "迷宫战争(maze wars)" + }, + { + "appid": 1037960, + "normalized_name": "grand dude simulator" + }, + { + "appid": 1037970, + "normalized_name": "i'm hungry" + }, + { + "appid": 1037980, + "normalized_name": "hell empire sinners flow" + }, + { + "appid": 1037990, + "normalized_name": "phageborn online card game" + }, + { + "appid": 1038070, + "normalized_name": "physics drop" + }, + { + "appid": 1038080, + "normalized_name": "fortresscraft phoenix" + }, + { + "appid": 1038100, + "normalized_name": "trap for winners" + }, + { + "appid": 1038110, + "normalized_name": "realm of virtuals" + }, + { + "appid": 1038120, + "normalized_name": "b.m.g 19 bike messenger go!" + }, + { + "appid": 1038250, + "normalized_name": "dirt 5" + }, + { + "appid": 1038280, + "normalized_name": "nobodies murder cleaner" + }, + { + "appid": 1038300, + "normalized_name": "new super lucky's tale" + }, + { + "appid": 1038370, + "normalized_name": "trials of fire" + }, + { + "appid": 1038380, + "normalized_name": "puppetshow porcelain smile collector's" + }, + { + "appid": 1038430, + "normalized_name": "dráscula the vampire strikes back" + }, + { + "appid": 1038440, + "normalized_name": "mortadelo y filemón el sulfato atómico" + }, + { + "appid": 1038450, + "normalized_name": "nancy drew midnight in salem" + }, + { + "appid": 1038620, + "normalized_name": "house of 1000 doors evil inside" + }, + { + "appid": 1038630, + "normalized_name": "eternal journey new atlantis" + }, + { + "appid": 1038640, + "normalized_name": "joan jade and the gates of xibalba" + }, + { + "appid": 1038650, + "normalized_name": "love alchemy a heart in winter" + }, + { + "appid": 1038670, + "normalized_name": "mind's eye secrets of the forgotten" + }, + { + "appid": 1038680, + "normalized_name": "凯旋岛" + }, + { + "appid": 1038690, + "normalized_name": "kakuro" + }, + { + "appid": 1038740, + "normalized_name": "fluffy store" + }, + { + "appid": 1038810, + "normalized_name": "god wars the legend" + }, + { + "appid": 1038820, + "normalized_name": "拯救大魔王2 逆流 falsemen2 upstream" + }, + { + "appid": 1038830, + "normalized_name": "author clicker" + }, + { + "appid": 1038850, + "normalized_name": "boom! boom!" + }, + { + "appid": 1039040, + "normalized_name": "copperbell" + }, + { + "appid": 1039060, + "normalized_name": "pepeizq's cities" + }, + { + "appid": 1039080, + "normalized_name": "brood" + }, + { + "appid": 1039100, + "normalized_name": "no place for bravery" + }, + { + "appid": 1039180, + "normalized_name": "flow space" + }, + { + "appid": 1039200, + "normalized_name": "poggers" + }, + { + "appid": 1039220, + "normalized_name": "realfighter" + }, + { + "appid": 1039280, + "normalized_name": "protocorgi" + }, + { + "appid": 1039290, + "normalized_name": "drumpf 2 lost but not forgotten!" + }, + { + "appid": 1039310, + "normalized_name": "regola" + }, + { + "appid": 1039320, + "normalized_name": "summer girl" + }, + { + "appid": 1039330, + "normalized_name": "note" + }, + { + "appid": 1039350, + "normalized_name": "stonetide age of pirates" + }, + { + "appid": 1039360, + "normalized_name": "eyes in the dark" + }, + { + "appid": 1039370, + "normalized_name": "draw with unknown" + }, + { + "appid": 1039380, + "normalized_name": "bunny parking" + }, + { + "appid": 1039400, + "normalized_name": "净土英雄 heroes of pure land" + }, + { + "appid": 1039430, + "normalized_name": "hyper flight" + }, + { + "appid": 1039440, + "normalized_name": "star fighters" + }, + { + "appid": 1039470, + "normalized_name": "over my dead pixel" + }, + { + "appid": 1039550, + "normalized_name": "礎の楯 aegis" + }, + { + "appid": 1039560, + "normalized_name": "amanda's sticker book 2 amazing wildlife" + }, + { + "appid": 1039570, + "normalized_name": "find the oil racing" + }, + { + "appid": 1039590, + "normalized_name": "snake a roni" + }, + { + "appid": 1039650, + "normalized_name": "apostatic revenge from hell" + }, + { + "appid": 1039800, + "normalized_name": "blueglow" + }, + { + "appid": 1039830, + "normalized_name": "彼岸画廊/nether gallery" + }, + { + "appid": 1039860, + "normalized_name": "lifeless vanguard" + }, + { + "appid": 1039880, + "normalized_name": "hellsplit arena" + }, + { + "appid": 1039890, + "normalized_name": "earth defense force iron rain" + }, + { + "appid": 1039910, + "normalized_name": "buckler 2" + }, + { + "appid": 1039940, + "normalized_name": "hashihime of the old book town" + }, + { + "appid": 1039960, + "normalized_name": "grisaia phantom trigger vol.5.5" + }, + { + "appid": 1039970, + "normalized_name": "grisaia phantom trigger vol.6" + }, + { + "appid": 1040000, + "normalized_name": "spacebullet" + }, + { + "appid": 1040070, + "normalized_name": "merchant of the skies" + }, + { + "appid": 1040080, + "normalized_name": "please the gods" + }, + { + "appid": 1040190, + "normalized_name": "sleepwalker" + }, + { + "appid": 1040200, + "normalized_name": "crime scene cleaner" + }, + { + "appid": 1040230, + "normalized_name": "curious expedition 2" + }, + { + "appid": 1040240, + "normalized_name": "transformice adventures" + }, + { + "appid": 1040250, + "normalized_name": "braceup vr" + }, + { + "appid": 1040260, + "normalized_name": "arouse" + }, + { + "appid": 1040310, + "normalized_name": "i know everything" + }, + { + "appid": 1040370, + "normalized_name": "thigh climbers" + }, + { + "appid": 1040390, + "normalized_name": "later daters premium" + }, + { + "appid": 1040420, + "normalized_name": "dreamscaper" + }, + { + "appid": 1040430, + "normalized_name": "adventure climb vr" + }, + { + "appid": 1040460, + "normalized_name": "space scavenger" + }, + { + "appid": 1040480, + "normalized_name": "daka dara" + }, + { + "appid": 1040490, + "normalized_name": "prologue for a vacant kingdom" + }, + { + "appid": 1040510, + "normalized_name": "princess of zeven" + }, + { + "appid": 1040550, + "normalized_name": "spring falls" + }, + { + "appid": 1040590, + "normalized_name": "killer chambers" + }, + { + "appid": 1040610, + "normalized_name": "zero one / 杀戮世界" + }, + { + "appid": 1040620, + "normalized_name": "tournament blood & steel" + }, + { + "appid": 1040630, + "normalized_name": "alchemy story" + }, + { + "appid": 1040720, + "normalized_name": "the color of the roses" + }, + { + "appid": 1040730, + "normalized_name": "zusi 3 aerosoft" + }, + { + "appid": 1040740, + "normalized_name": "legend of the tetrarchs" + }, + { + "appid": 1040750, + "normalized_name": "kim shooter" + }, + { + "appid": 1040810, + "normalized_name": "attack noids" + }, + { + "appid": 1040820, + "normalized_name": "rumble arena" + }, + { + "appid": 1040860, + "normalized_name": "lustlock labyrinth" + }, + { + "appid": 1040890, + "normalized_name": "slime simulator games" + }, + { + "appid": 1040900, + "normalized_name": "massive air combat" + }, + { + "appid": 1040910, + "normalized_name": "epic world" + }, + { + "appid": 1041020, + "normalized_name": "ufogen" + }, + { + "appid": 1041050, + "normalized_name": "tokyo re connect" + }, + { + "appid": 1041060, + "normalized_name": "future futures command z" + }, + { + "appid": 1041100, + "normalized_name": "locomotives" + }, + { + "appid": 1041120, + "normalized_name": "the lot" + }, + { + "appid": 1041130, + "normalized_name": "darkest depths" + }, + { + "appid": 1041140, + "normalized_name": "chill ii" + }, + { + "appid": 1041160, + "normalized_name": "observers" + }, + { + "appid": 1041210, + "normalized_name": "mission it's complicated" + }, + { + "appid": 1041270, + "normalized_name": "exogenesis ~perils of rebirth~" + }, + { + "appid": 1041320, + "normalized_name": "lords mobile" + }, + { + "appid": 1041330, + "normalized_name": "tiger fighter 1931 tora!" + }, + { + "appid": 1041390, + "normalized_name": "legend of cina" + }, + { + "appid": 1041450, + "normalized_name": "rrrr2" + }, + { + "appid": 1041470, + "normalized_name": "三魂vr/the spirits within" + }, + { + "appid": 1041500, + "normalized_name": "dead quest" + }, + { + "appid": 1041520, + "normalized_name": "world of aircraft glider simulator" + }, + { + "appid": 1041560, + "normalized_name": "z ops campus" + }, + { + "appid": 1041630, + "normalized_name": "jungle adventure" + }, + { + "appid": 1041650, + "normalized_name": "time warrior z vr" + }, + { + "appid": 1041660, + "normalized_name": "welcome to... chichester 3 plenty of time to live" + }, + { + "appid": 1041670, + "normalized_name": "money bath vr / 札束風呂vr" + }, + { + "appid": 1041690, + "normalized_name": "mace and grace action fight blood fitness arcade" + }, + { + "appid": 1041710, + "normalized_name": "模拟帝国" + }, + { + "appid": 1041720, + "normalized_name": "kingdoms of amalur re reckoning" + }, + { + "appid": 1041760, + "normalized_name": "brother & sister" + }, + { + "appid": 1041780, + "normalized_name": "soul valley" + }, + { + "appid": 1041840, + "normalized_name": "fight angel special" + }, + { + "appid": 1041910, + "normalized_name": "seeker soulrun" + }, + { + "appid": 1041920, + "normalized_name": "if found..." + }, + { + "appid": 1041940, + "normalized_name": "fort sumter the secession crisis" + }, + { + "appid": 1042000, + "normalized_name": "thinnest judgment" + }, + { + "appid": 1042010, + "normalized_name": "omega the beginning episode 1" + }, + { + "appid": 1042020, + "normalized_name": "trapped on monster island" + }, + { + "appid": 1042030, + "normalized_name": "nyasha winter" + }, + { + "appid": 1042080, + "normalized_name": "nyasha beach" + }, + { + "appid": 1042090, + "normalized_name": "melting pot." + }, + { + "appid": 1042100, + "normalized_name": "dimense chapter 1" + }, + { + "appid": 1042110, + "normalized_name": "breakfest" + }, + { + "appid": 1042130, + "normalized_name": "under water abyss survival vr" + }, + { + "appid": 1042150, + "normalized_name": "data mining 7" + }, + { + "appid": 1042160, + "normalized_name": "the islander town architect" + }, + { + "appid": 1042170, + "normalized_name": "summon of asmodeus" + }, + { + "appid": 1042210, + "normalized_name": "guts and goals" + }, + { + "appid": 1042230, + "normalized_name": "zeta complex" + }, + { + "appid": 1042290, + "normalized_name": "duckumentary" + }, + { + "appid": 1042310, + "normalized_name": "glacial" + }, + { + "appid": 1042320, + "normalized_name": "far from dead" + }, + { + "appid": 1042330, + "normalized_name": "tricky cat" + }, + { + "appid": 1042350, + "normalized_name": "ironlaw" + }, + { + "appid": 1042380, + "normalized_name": "hundred days winemaking simulator" + }, + { + "appid": 1042460, + "normalized_name": "newt's voyage" + }, + { + "appid": 1042490, + "normalized_name": "call of the sea" + }, + { + "appid": 1042500, + "normalized_name": "vast" + }, + { + "appid": 1042530, + "normalized_name": "power" + }, + { + "appid": 1042550, + "normalized_name": "digimon story cyber sleuth" + }, + { + "appid": 1042560, + "normalized_name": "城堡传说:魔王觉醒" + }, + { + "appid": 1042570, + "normalized_name": "human rights" + }, + { + "appid": 1042590, + "normalized_name": "新巨商" + }, + { + "appid": 1042600, + "normalized_name": "demon queen melissa" + }, + { + "appid": 1042620, + "normalized_name": "enersify" + }, + { + "appid": 1042670, + "normalized_name": "orangeblood" + }, + { + "appid": 1042750, + "normalized_name": "night shot" + }, + { + "appid": 1042780, + "normalized_name": "pine" + }, + { + "appid": 1042800, + "normalized_name": "warhammer 40 000 inquisitor prophecy" + }, + { + "appid": 1042820, + "normalized_name": "baobabs mausoleum ep.3 un pato en muertoburgo" + }, + { + "appid": 1042860, + "normalized_name": "golden war spirit" + }, + { + "appid": 1042910, + "normalized_name": "desdemona" + }, + { + "appid": 1042920, + "normalized_name": "unsouled" + }, + { + "appid": 1042930, + "normalized_name": "trackmaster" + }, + { + "appid": 1042960, + "normalized_name": "we are the caretakers" + }, + { + "appid": 1042980, + "normalized_name": "zen chess mate in two" + }, + { + "appid": 1042990, + "normalized_name": "zen chess mate in three" + }, + { + "appid": 1043000, + "normalized_name": "zen chess mate in four" + }, + { + "appid": 1043020, + "normalized_name": "dust on wheels" + }, + { + "appid": 1043030, + "normalized_name": "the long sky" + }, + { + "appid": 1043040, + "normalized_name": "picross floof" + }, + { + "appid": 1043060, + "normalized_name": "rupert and riley shipwrecked" + }, + { + "appid": 1043110, + "normalized_name": "kaiju fishing" + }, + { + "appid": 1043120, + "normalized_name": "bowling over it" + }, + { + "appid": 1043140, + "normalized_name": "灵界 sprites(测试版)" + }, + { + "appid": 1043150, + "normalized_name": "danger gazers" + }, + { + "appid": 1043160, + "normalized_name": "you versus 27 elves" + }, + { + "appid": 1043180, + "normalized_name": "lovers of aether" + }, + { + "appid": 1043200, + "normalized_name": "international affairs" + }, + { + "appid": 1043230, + "normalized_name": "東方神霊廟 〜 ten desires." + }, + { + "appid": 1043240, + "normalized_name": "東方輝針城 〜 double dealing character." + }, + { + "appid": 1043260, + "normalized_name": "gladiator guild manager" + }, + { + "appid": 1043340, + "normalized_name": "no time" + }, + { + "appid": 1043350, + "normalized_name": "1406" + }, + { + "appid": 1043360, + "normalized_name": "massive effect" + }, + { + "appid": 1043370, + "normalized_name": "sabat fight arena" + }, + { + "appid": 1043380, + "normalized_name": "the trials of olympus iii king of the world" + }, + { + "appid": 1043390, + "normalized_name": "flowscape" + }, + { + "appid": 1043430, + "normalized_name": "tidal tribe" + }, + { + "appid": 1043440, + "normalized_name": "eidolons netherflame" + }, + { + "appid": 1043450, + "normalized_name": "yinyang" + }, + { + "appid": 1043470, + "normalized_name": "弹幕那个恶人" + }, + { + "appid": 1043480, + "normalized_name": "destruction" + }, + { + "appid": 1043500, + "normalized_name": "tree simulator 2020" + }, + { + "appid": 1043510, + "normalized_name": "hotdog man" + }, + { + "appid": 1043520, + "normalized_name": "polterguys possession party" + }, + { + "appid": 1043560, + "normalized_name": "static" + }, + { + "appid": 1043580, + "normalized_name": "pipeworks" + }, + { + "appid": 1043590, + "normalized_name": "it's about the journey" + }, + { + "appid": 1043610, + "normalized_name": "cold cable lifeshift" + }, + { + "appid": 1043690, + "normalized_name": "investi gator the case of the big crime" + }, + { + "appid": 1043710, + "normalized_name": "unlanded" + }, + { + "appid": 1043760, + "normalized_name": "涅槃之路" + }, + { + "appid": 1043780, + "normalized_name": "super hamster havoc" + }, + { + "appid": 1043790, + "normalized_name": "ogrez" + }, + { + "appid": 1043800, + "normalized_name": "metal suit warrior vr" + }, + { + "appid": 1043810, + "normalized_name": "tactical breach wizards" + }, + { + "appid": 1043850, + "normalized_name": "project warlock lost chapters" + }, + { + "appid": 1043860, + "normalized_name": "glad valakas cyberban" + }, + { + "appid": 1043870, + "normalized_name": "dark forest" + }, + { + "appid": 1044010, + "normalized_name": "ugaris the legend recovered" + }, + { + "appid": 1044020, + "normalized_name": "potata fairy flower" + }, + { + "appid": 1044040, + "normalized_name": "survive the blackout" + }, + { + "appid": 1044060, + "normalized_name": "rust racers" + }, + { + "appid": 1044070, + "normalized_name": "monster crush c4 demolition" + }, + { + "appid": 1044080, + "normalized_name": "batteries included" + }, + { + "appid": 1044090, + "normalized_name": "undead shadow army" + }, + { + "appid": 1044110, + "normalized_name": "reforged td tower defense" + }, + { + "appid": 1044120, + "normalized_name": "changes" + }, + { + "appid": 1044130, + "normalized_name": "不惑英雄传(puzzled heroes)" + }, + { + "appid": 1044170, + "normalized_name": "lord of the click" + }, + { + "appid": 1044180, + "normalized_name": "planet" + }, + { + "appid": 1044210, + "normalized_name": "mahjong solitaire refresh" + }, + { + "appid": 1044220, + "normalized_name": "oik reloaded" + }, + { + "appid": 1044300, + "normalized_name": "human pinball iceage" + }, + { + "appid": 1044330, + "normalized_name": "legend of traveller" + }, + { + "appid": 1044340, + "normalized_name": "the 7th guest 25th anniversary" + }, + { + "appid": 1044350, + "normalized_name": "the crater" + }, + { + "appid": 1044410, + "normalized_name": "little gods of the abyss" + }, + { + "appid": 1044450, + "normalized_name": "hentai waifu" + }, + { + "appid": 1044460, + "normalized_name": "wild cats of wasteland" + }, + { + "appid": 1044470, + "normalized_name": "memory trees forget me not" + }, + { + "appid": 1044480, + "normalized_name": "alexio" + }, + { + "appid": 1044490, + "normalized_name": "the expression amrilato" + }, + { + "appid": 1044520, + "normalized_name": "inugami doggy dojo!" + }, + { + "appid": 1044620, + "normalized_name": "aokana four rhythms across the blue" + }, + { + "appid": 1044630, + "normalized_name": "choice of the dragon" + }, + { + "appid": 1044640, + "normalized_name": "mundus impossible universe" + }, + { + "appid": 1044690, + "normalized_name": "primal forge" + }, + { + "appid": 1044700, + "normalized_name": "forsaken realm" + }, + { + "appid": 1044720, + "normalized_name": "farthest frontier" + }, + { + "appid": 1044730, + "normalized_name": "unishroom" + }, + { + "appid": 1044740, + "normalized_name": "unknown garden" + }, + { + "appid": 1044750, + "normalized_name": "q&a a light roasted romance" + }, + { + "appid": 1044760, + "normalized_name": "garden of mooj" + }, + { + "appid": 1044770, + "normalized_name": "goddess of math 数学女神" + }, + { + "appid": 1044790, + "normalized_name": "gado fight" + }, + { + "appid": 1044800, + "normalized_name": "global fortune" + }, + { + "appid": 1044820, + "normalized_name": "agtnan monster shutdown sequence" + }, + { + "appid": 1044840, + "normalized_name": "moonstone crossroads" + }, + { + "appid": 1044870, + "normalized_name": "zero based world 从零开始" + }, + { + "appid": 1044900, + "normalized_name": "圣山shenshan" + }, + { + "appid": 1044920, + "normalized_name": "grand battle" + }, + { + "appid": 1044930, + "normalized_name": "恋爱公寓(my girl:love story)" + }, + { + "appid": 1044950, + "normalized_name": "picross hansel and gretel nonograms" + }, + { + "appid": 1044980, + "normalized_name": "mech mechanic simulator" + }, + { + "appid": 1045010, + "normalized_name": "russia roguelike" + }, + { + "appid": 1045020, + "normalized_name": "blanket heavy with nightmares" + }, + { + "appid": 1045060, + "normalized_name": "the copper canyon shoot out" + }, + { + "appid": 1045070, + "normalized_name": "please find me" + }, + { + "appid": 1045080, + "normalized_name": "curious cases" + }, + { + "appid": 1045110, + "normalized_name": "space ops vr reloaded" + }, + { + "appid": 1045120, + "normalized_name": "brunch club" + }, + { + "appid": 1045130, + "normalized_name": "raatihuone" + }, + { + "appid": 1045140, + "normalized_name": "esko" + }, + { + "appid": 1045150, + "normalized_name": "contort effect" + }, + { + "appid": 1045180, + "normalized_name": "shattered tale of the forgotten king" + }, + { + "appid": 1045220, + "normalized_name": "cyber rage retribution" + }, + { + "appid": 1045270, + "normalized_name": "shoot fighters" + }, + { + "appid": 1045280, + "normalized_name": "ecrossminton" + }, + { + "appid": 1045300, + "normalized_name": "prismatic maze" + }, + { + "appid": 1045340, + "normalized_name": "pussy 2" + }, + { + "appid": 1045350, + "normalized_name": "hentai pussy" + }, + { + "appid": 1045390, + "normalized_name": "d20 dungeons" + }, + { + "appid": 1045430, + "normalized_name": "circadian city" + }, + { + "appid": 1045510, + "normalized_name": "call of fries" + }, + { + "appid": 1045520, + "normalized_name": "acting lessons" + }, + { + "appid": 1045580, + "normalized_name": "deleveled" + }, + { + "appid": 1045590, + "normalized_name": "kaisuo" + }, + { + "appid": 1045610, + "normalized_name": "startup panic" + }, + { + "appid": 1045620, + "normalized_name": "atelier lulua ~the scion of arland~" + }, + { + "appid": 1045650, + "normalized_name": "my stunt life" + }, + { + "appid": 1045670, + "normalized_name": "adventure dream team" + }, + { + "appid": 1045720, + "normalized_name": "the coma 2 vicious sisters" + }, + { + "appid": 1045730, + "normalized_name": "hyperq the 4dimensional roguelike" + }, + { + "appid": 1045740, + "normalized_name": "hit&run vr baseball" + }, + { + "appid": 1045750, + "normalized_name": "" + }, + { + "appid": 1045840, + "normalized_name": "intruders hide and seek" + }, + { + "appid": 1045850, + "normalized_name": "the walsingham files chapter 1" + }, + { + "appid": 1045900, + "normalized_name": "outpost on syrinx" + }, + { + "appid": 1045920, + "normalized_name": "hentai beautiful girls 2" + }, + { + "appid": 1045930, + "normalized_name": "1vs1 battle royale for the throne" + }, + { + "appid": 1046030, + "normalized_name": "islanders" + }, + { + "appid": 1046040, + "normalized_name": "slime battles" + }, + { + "appid": 1046060, + "normalized_name": "dark romance hunchback of notre dame collector's" + }, + { + "appid": 1046070, + "normalized_name": "helltower" + }, + { + "appid": 1046110, + "normalized_name": "shadow runner" + }, + { + "appid": 1046150, + "normalized_name": "frikin the laser shark" + }, + { + "appid": 1046210, + "normalized_name": "munchie match" + }, + { + "appid": 1046230, + "normalized_name": "soccer player simulator" + }, + { + "appid": 1046240, + "normalized_name": "creature hunt" + }, + { + "appid": 1046300, + "normalized_name": "pirates outlaws" + }, + { + "appid": 1046350, + "normalized_name": "aerial raver" + }, + { + "appid": 1046370, + "normalized_name": "meaty mcskinbones" + }, + { + "appid": 1046400, + "normalized_name": "astalon tears of the earth" + }, + { + "appid": 1046410, + "normalized_name": "in my dream" + }, + { + "appid": 1046460, + "normalized_name": "quartermaster" + }, + { + "appid": 1046470, + "normalized_name": "deep the game" + }, + { + "appid": 1046480, + "normalized_name": "the idolm@ster starlit season" + }, + { + "appid": 1046530, + "normalized_name": "universe 24" + }, + { + "appid": 1046560, + "normalized_name": "sounds of talent kpop adventure" + }, + { + "appid": 1046570, + "normalized_name": "cardlings" + }, + { + "appid": 1046590, + "normalized_name": "antodon express" + }, + { + "appid": 1046600, + "normalized_name": "勇者有点太嚣张。g(no hero allowed no puzzle either!)" + }, + { + "appid": 1046630, + "normalized_name": "tank maniacs" + }, + { + "appid": 1046650, + "normalized_name": "hentai pair" + }, + { + "appid": 1046660, + "normalized_name": "charterstone digital" + }, + { + "appid": 1046670, + "normalized_name": "delirium vr" + }, + { + "appid": 1046700, + "normalized_name": "rubico" + }, + { + "appid": 1046740, + "normalized_name": "timetraveler" + }, + { + "appid": 1046750, + "normalized_name": "extinction alien invasion" + }, + { + "appid": 1046760, + "normalized_name": "hyperstacks" + }, + { + "appid": 1046790, + "normalized_name": "eternal threads" + }, + { + "appid": 1046820, + "normalized_name": "i'm on observation duty" + }, + { + "appid": 1046830, + "normalized_name": "infinite waves td" + }, + { + "appid": 1046920, + "normalized_name": "bushiden" + }, + { + "appid": 1046930, + "normalized_name": "dota underlords" + }, + { + "appid": 1046970, + "normalized_name": "bomb sworders" + }, + { + "appid": 1046980, + "normalized_name": "horgihugh (ホーギーヒュー)" + }, + { + "appid": 1047010, + "normalized_name": "synergia" + }, + { + "appid": 1047020, + "normalized_name": "dice keeper" + }, + { + "appid": 1047090, + "normalized_name": "catching" + }, + { + "appid": 1047110, + "normalized_name": "bondage nightmare" + }, + { + "appid": 1047120, + "normalized_name": "gorilla unko" + }, + { + "appid": 1047140, + "normalized_name": "the soul hunter" + }, + { + "appid": 1047160, + "normalized_name": "itazuravr safe for work" + }, + { + "appid": 1047170, + "normalized_name": "forgotten fables wolves on the westwind" + }, + { + "appid": 1047190, + "normalized_name": "lantern of worlds storybook" + }, + { + "appid": 1047220, + "normalized_name": "frog detective 2 the case of the invisible wizard" + }, + { + "appid": 1047240, + "normalized_name": "game club \"waka waka\"" + }, + { + "appid": 1047320, + "normalized_name": "beauty paradise" + }, + { + "appid": 1047340, + "normalized_name": "timefall" + }, + { + "appid": 1047350, + "normalized_name": "asteroid wars" + }, + { + "appid": 1047380, + "normalized_name": "mma arena" + }, + { + "appid": 1047430, + "normalized_name": "zulin time" + }, + { + "appid": 1047440, + "normalized_name": "date a live rio reincarnation" + }, + { + "appid": 1047470, + "normalized_name": "deep space delivery" + }, + { + "appid": 1047480, + "normalized_name": "miner lou" + }, + { + "appid": 1047490, + "normalized_name": "drift live" + }, + { + "appid": 1047560, + "normalized_name": "sovereign's will" + }, + { + "appid": 1047580, + "normalized_name": "ghost grab 3000" + }, + { + "appid": 1047600, + "normalized_name": "senity the game" + }, + { + "appid": 1047610, + "normalized_name": "revenis prologue 01" + }, + { + "appid": 1047620, + "normalized_name": "rasen no sora" + }, + { + "appid": 1047660, + "normalized_name": "undercovr" + }, + { + "appid": 1047680, + "normalized_name": "亚利利亚的精灵们 alilia" + }, + { + "appid": 1047720, + "normalized_name": "dolphin swim" + }, + { + "appid": 1047730, + "normalized_name": "drifted tales ancestor's isle" + }, + { + "appid": 1047750, + "normalized_name": "chili the chipmunk pinball adventure" + }, + { + "appid": 1047780, + "normalized_name": "die already" + }, + { + "appid": 1047800, + "normalized_name": "ladderhead" + }, + { + "appid": 1047810, + "normalized_name": "tropia" + }, + { + "appid": 1047830, + "normalized_name": "dark fable" + }, + { + "appid": 1047840, + "normalized_name": "the volcano" + }, + { + "appid": 1047850, + "normalized_name": "narwhal heist" + }, + { + "appid": 1047860, + "normalized_name": "dunrog" + }, + { + "appid": 1047870, + "normalized_name": "something ate my alien" + }, + { + "appid": 1047910, + "normalized_name": "slow.bullet vr" + }, + { + "appid": 1047920, + "normalized_name": "white sun" + }, + { + "appid": 1047930, + "normalized_name": "templum de malum" + }, + { + "appid": 1047950, + "normalized_name": "guilt the deathless" + }, + { + "appid": 1047960, + "normalized_name": "tok 2" + }, + { + "appid": 1048000, + "normalized_name": "monster girl fantasy" + }, + { + "appid": 1048020, + "normalized_name": "harvest moon mad dash" + }, + { + "appid": 1048040, + "normalized_name": "exosphere" + }, + { + "appid": 1048080, + "normalized_name": "amaze easter" + }, + { + "appid": 1048090, + "normalized_name": "the fifth horseman" + }, + { + "appid": 1048100, + "normalized_name": "peekaboo" + }, + { + "appid": 1048120, + "normalized_name": "genomon genetic monsters" + }, + { + "appid": 1048160, + "normalized_name": "skyward" + }, + { + "appid": 1048250, + "normalized_name": "bowlbo the quest for bing bing" + }, + { + "appid": 1048260, + "normalized_name": "super catscape" + }, + { + "appid": 1048270, + "normalized_name": "sexy breakout" + }, + { + "appid": 1048280, + "normalized_name": "unknown region" + }, + { + "appid": 1048300, + "normalized_name": "stumper" + }, + { + "appid": 1048350, + "normalized_name": "nigate tale" + }, + { + "appid": 1048370, + "normalized_name": "idle skilling" + }, + { + "appid": 1048410, + "normalized_name": "becoming a dandelion spore" + }, + { + "appid": 1048420, + "normalized_name": "vacation adventures park ranger 2" + }, + { + "appid": 1048470, + "normalized_name": "迷雾 the mist" + }, + { + "appid": 1048480, + "normalized_name": "time warp" + }, + { + "appid": 1048530, + "normalized_name": "rise of humanity" + }, + { + "appid": 1048540, + "normalized_name": "kao the kangaroo round 2 (2003 re release)" + }, + { + "appid": 1048560, + "normalized_name": "voidrun" + }, + { + "appid": 1048570, + "normalized_name": "in the pause between the ringing" + }, + { + "appid": 1048580, + "normalized_name": "terje haakonsen's powder vr" + }, + { + "appid": 1048610, + "normalized_name": "love mythos sanctuary island" + }, + { + "appid": 1048640, + "normalized_name": "at home" + }, + { + "appid": 1048660, + "normalized_name": "knight squad 2" + }, + { + "appid": 1048670, + "normalized_name": "parking lot royale" + }, + { + "appid": 1048690, + "normalized_name": "cosmic cash" + }, + { + "appid": 1048710, + "normalized_name": "hentai puzzle ? not again...." + }, + { + "appid": 1048740, + "normalized_name": "half past fate" + }, + { + "appid": 1048780, + "normalized_name": "city of edges" + }, + { + "appid": 1048790, + "normalized_name": "phantasmata" + }, + { + "appid": 1048830, + "normalized_name": "horse riding tales" + }, + { + "appid": 1048840, + "normalized_name": "苏维埃模拟器 soviet simulator" + }, + { + "appid": 1048850, + "normalized_name": "jelly blocks" + }, + { + "appid": 1048860, + "normalized_name": "crypterion" + }, + { + "appid": 1048880, + "normalized_name": "emberlight" + }, + { + "appid": 1048890, + "normalized_name": "paper fire rookie arcade" + }, + { + "appid": 1048900, + "normalized_name": "the fog trap for moths" + }, + { + "appid": 1048920, + "normalized_name": "the jolly gang's misadventures in africa / масяня в полной африке" + }, + { + "appid": 1048950, + "normalized_name": "desert skies" + }, + { + "appid": 1048960, + "normalized_name": "leaf" + }, + { + "appid": 1049000, + "normalized_name": "chronoraptor" + }, + { + "appid": 1049010, + "normalized_name": "out of frame / ノベルゲームの枠組みを変えるノベルゲーム。" + }, + { + "appid": 1049030, + "normalized_name": "day 40" + }, + { + "appid": 1049070, + "normalized_name": "fidelity" + }, + { + "appid": 1049080, + "normalized_name": "candy adventure" + }, + { + "appid": 1049090, + "normalized_name": "virtual arctic expedition" + }, + { + "appid": 1049100, + "normalized_name": "泡沫冬景" + }, + { + "appid": 1049130, + "normalized_name": "special force vr infinity war" + }, + { + "appid": 1049140, + "normalized_name": "the cinema rosa" + }, + { + "appid": 1049220, + "normalized_name": "naxia" + }, + { + "appid": 1049270, + "normalized_name": "the prison" + }, + { + "appid": 1049280, + "normalized_name": "pilgrims" + }, + { + "appid": 1049310, + "normalized_name": "backpack twins" + }, + { + "appid": 1049320, + "normalized_name": "river city girls" + }, + { + "appid": 1049360, + "normalized_name": "orbitron" + }, + { + "appid": 1049370, + "normalized_name": "f18 carrier landing" + }, + { + "appid": 1049380, + "normalized_name": "survivr castle defender" + }, + { + "appid": 1049400, + "normalized_name": "answer knot" + }, + { + "appid": 1049410, + "normalized_name": "superliminal" + }, + { + "appid": 1049420, + "normalized_name": "hotel tutwin" + }, + { + "appid": 1049510, + "normalized_name": "these lands" + }, + { + "appid": 1049530, + "normalized_name": "subs sharks and submarines" + }, + { + "appid": 1049560, + "normalized_name": "run for cover" + }, + { + "appid": 1049570, + "normalized_name": "bloodstream" + }, + { + "appid": 1049590, + "normalized_name": "eternal return" + }, + { + "appid": 1049630, + "normalized_name": "delivered!" + }, + { + "appid": 1049640, + "normalized_name": "qorena" + }, + { + "appid": 1049660, + "normalized_name": "stein.world" + }, + { + "appid": 1049670, + "normalized_name": "the final boss" + }, + { + "appid": 1049680, + "normalized_name": "snipiyo / スナイピヨ" + }, + { + "appid": 1049690, + "normalized_name": "catch the head" + }, + { + "appid": 1049710, + "normalized_name": "minute of islands" + }, + { + "appid": 1049720, + "normalized_name": "sqvishy" + }, + { + "appid": 1049730, + "normalized_name": "callisto" + }, + { + "appid": 1049740, + "normalized_name": "out of coverage" + }, + { + "appid": 1049800, + "normalized_name": "blockade" + }, + { + "appid": 1049820, + "normalized_name": "must dash amigos" + }, + { + "appid": 1049840, + "normalized_name": "haramatia" + }, + { + "appid": 1049850, + "normalized_name": "ufo2 extraterrestrials" + }, + { + "appid": 1049870, + "normalized_name": "blocksplode" + }, + { + "appid": 1049880, + "normalized_name": "my free farm" + }, + { + "appid": 1049890, + "normalized_name": "little witch nobeta" + }, + { + "appid": 1049910, + "normalized_name": "onslaught armoured assault" + }, + { + "appid": 1049920, + "normalized_name": "endangered proposition" + }, + { + "appid": 1049930, + "normalized_name": "frank and 10 roots" + }, + { + "appid": 1050000, + "normalized_name": "bear with me the lost robots" + }, + { + "appid": 1050010, + "normalized_name": "even for eternia" + }, + { + "appid": 1050080, + "normalized_name": "project skylab 3 a new frontier" + }, + { + "appid": 1050130, + "normalized_name": "sakura melody" + }, + { + "appid": 1050150, + "normalized_name": "sexy miss" + }, + { + "appid": 1050160, + "normalized_name": "sacrifice your friends" + }, + { + "appid": 1050170, + "normalized_name": "terramancer" + }, + { + "appid": 1050180, + "normalized_name": "life source episode one" + }, + { + "appid": 1050190, + "normalized_name": "fast travel loot delivery service" + }, + { + "appid": 1050210, + "normalized_name": "the superlatives shattered worlds" + }, + { + "appid": 1050230, + "normalized_name": "dodge bubble" + }, + { + "appid": 1050240, + "normalized_name": "minigolf" + }, + { + "appid": 1050260, + "normalized_name": "isle of pan" + }, + { + "appid": 1050270, + "normalized_name": "alight" + }, + { + "appid": 1050280, + "normalized_name": "kaion tale mmorpg" + }, + { + "appid": 1050290, + "normalized_name": "blob.io" + }, + { + "appid": 1050350, + "normalized_name": "poker" + }, + { + "appid": 1050370, + "normalized_name": "lunark" + }, + { + "appid": 1050430, + "normalized_name": "uni turret" + }, + { + "appid": 1050500, + "normalized_name": "feed a titanosaur" + }, + { + "appid": 1050510, + "normalized_name": "super tennis blast" + }, + { + "appid": 1050520, + "normalized_name": "super pig x" + }, + { + "appid": 1050540, + "normalized_name": "valley of the moon" + }, + { + "appid": 1050560, + "normalized_name": "tag war vr" + }, + { + "appid": 1050580, + "normalized_name": "adventure in aellion" + }, + { + "appid": 1050620, + "normalized_name": "hitchhiker" + }, + { + "appid": 1050660, + "normalized_name": "noodle jump" + }, + { + "appid": 1050670, + "normalized_name": "fear in hospital" + }, + { + "appid": 1050680, + "normalized_name": "survirus" + }, + { + "appid": 1050690, + "normalized_name": "火柴人和七色彩虹 stickman's rainbow" + }, + { + "appid": 1050700, + "normalized_name": "breaking bunny" + }, + { + "appid": 1050720, + "normalized_name": "s.c.a.r" + }, + { + "appid": 1050730, + "normalized_name": "uriel’s chasm 3 gelshock" + }, + { + "appid": 1050810, + "normalized_name": "the hunt in the forest" + }, + { + "appid": 1050850, + "normalized_name": "automaton arena" + }, + { + "appid": 1050880, + "normalized_name": "wavey the rocket" + }, + { + "appid": 1050900, + "normalized_name": "die bloody nazi die!" + }, + { + "appid": 1050910, + "normalized_name": "galaxy monster" + }, + { + "appid": 1051060, + "normalized_name": "cookie invaders" + }, + { + "appid": 1051070, + "normalized_name": "oni hunters" + }, + { + "appid": 1051130, + "normalized_name": "trial of the towers" + }, + { + "appid": 1051160, + "normalized_name": "snowball rush" + }, + { + "appid": 1051190, + "normalized_name": "reel fishing road trip adventure" + }, + { + "appid": 1051200, + "normalized_name": "trover saves the universe" + }, + { + "appid": 1051210, + "normalized_name": "sageball" + }, + { + "appid": 1051220, + "normalized_name": "busy spider" + }, + { + "appid": 1051250, + "normalized_name": "try to survive" + }, + { + "appid": 1051260, + "normalized_name": "forklift simulator" + }, + { + "appid": 1051270, + "normalized_name": "logistic expert" + }, + { + "appid": 1051280, + "normalized_name": "ballista legend" + }, + { + "appid": 1051290, + "normalized_name": "zic – zombies in city" + }, + { + "appid": 1051300, + "normalized_name": "parking 3d" + }, + { + "appid": 1051310, + "normalized_name": "paper dolls original / 纸人" + }, + { + "appid": 1051320, + "normalized_name": "mahjong magic chips" + }, + { + "appid": 1051330, + "normalized_name": "crossroads extreme" + }, + { + "appid": 1051350, + "normalized_name": "dead forest" + }, + { + "appid": 1051410, + "normalized_name": "wanderlust travel stories" + }, + { + "appid": 1051420, + "normalized_name": "jey's empire" + }, + { + "appid": 1051440, + "normalized_name": "ship builder" + }, + { + "appid": 1051470, + "normalized_name": "animal friends adventure" + }, + { + "appid": 1051500, + "normalized_name": "digital diamond baseball v8" + }, + { + "appid": 1051560, + "normalized_name": "monica's paradox" + }, + { + "appid": 1051570, + "normalized_name": "hockey player vr" + }, + { + "appid": 1051580, + "normalized_name": "skjoldur story" + }, + { + "appid": 1051590, + "normalized_name": "lulu & ennoi sacred suit girls" + }, + { + "appid": 1051600, + "normalized_name": "surface the soaring city collector's" + }, + { + "appid": 1051630, + "normalized_name": "memorial park of hypoxia" + }, + { + "appid": 1051670, + "normalized_name": "sex & gun vr" + }, + { + "appid": 1051690, + "normalized_name": "nightmare reaper" + }, + { + "appid": 1051710, + "normalized_name": "chuck" + }, + { + "appid": 1051830, + "normalized_name": "house of evil 2" + }, + { + "appid": 1051840, + "normalized_name": "paradox vector" + }, + { + "appid": 1051850, + "normalized_name": "free company vr" + }, + { + "appid": 1051870, + "normalized_name": "roboarena" + }, + { + "appid": 1051890, + "normalized_name": "blockade war stories" + }, + { + "appid": 1051900, + "normalized_name": "exit limbo opening" + }, + { + "appid": 1051920, + "normalized_name": "cd run" + }, + { + "appid": 1051940, + "normalized_name": "the artifacts" + }, + { + "appid": 1051950, + "normalized_name": "voyage" + }, + { + "appid": 1051960, + "normalized_name": "fly punch boom!" + }, + { + "appid": 1051990, + "normalized_name": "tars" + }, + { + "appid": 1052010, + "normalized_name": "heidentum" + }, + { + "appid": 1052030, + "normalized_name": "star impact" + }, + { + "appid": 1052040, + "normalized_name": "selatria" + }, + { + "appid": 1052070, + "normalized_name": "burning daylight" + }, + { + "appid": 1052080, + "normalized_name": "resistance is fruitile" + }, + { + "appid": 1052090, + "normalized_name": "easy hentai puzzle" + }, + { + "appid": 1052100, + "normalized_name": "heart of smoke" + }, + { + "appid": 1052120, + "normalized_name": "alternator tactical stealth operations" + }, + { + "appid": 1052140, + "normalized_name": "function world gym" + }, + { + "appid": 1052150, + "normalized_name": "woozyhero 乌贼英雄 欢乐联机版" + }, + { + "appid": 1052180, + "normalized_name": "心之克莱因瓶 the bottle of the heart" + }, + { + "appid": 1052210, + "normalized_name": "barney's dream cruise" + }, + { + "appid": 1052220, + "normalized_name": "glasssmash" + }, + { + "appid": 1052230, + "normalized_name": "concluse 2 the drifting prefecture" + }, + { + "appid": 1052250, + "normalized_name": "tiger tank 59 ⅰ black hill fortress" + }, + { + "appid": 1052310, + "normalized_name": "tubwt" + }, + { + "appid": 1052360, + "normalized_name": "combate monero" + }, + { + "appid": 1052370, + "normalized_name": "echo royale" + }, + { + "appid": 1052380, + "normalized_name": "ikeda the scrap hunter e.p." + }, + { + "appid": 1052390, + "normalized_name": "steel seraph" + }, + { + "appid": 1052420, + "normalized_name": "badland caravan" + }, + { + "appid": 1052440, + "normalized_name": "croixleur sigma deluxe" + }, + { + "appid": 1052450, + "normalized_name": "steamhounds" + }, + { + "appid": 1052470, + "normalized_name": "office escape" + }, + { + "appid": 1052480, + "normalized_name": "adecke cards games deluxe" + }, + { + "appid": 1052500, + "normalized_name": "御龙在天 平衡国战版" + }, + { + "appid": 1052510, + "normalized_name": "dragon city" + }, + { + "appid": 1052540, + "normalized_name": "toolboy" + }, + { + "appid": 1052550, + "normalized_name": "global soccer a management game 2019" + }, + { + "appid": 1052560, + "normalized_name": "murder on the island" + }, + { + "appid": 1052580, + "normalized_name": "farewell planet / おわかれのほし" + }, + { + "appid": 1052600, + "normalized_name": "amortizer off road" + }, + { + "appid": 1052640, + "normalized_name": "retrace" + }, + { + "appid": 1052650, + "normalized_name": "razortron 2084" + }, + { + "appid": 1052660, + "normalized_name": "hour of the snake" + }, + { + "appid": 1052670, + "normalized_name": "trainspotting simulator" + }, + { + "appid": 1052750, + "normalized_name": "the artefacts lost in the galaxy" + }, + { + "appid": 1052760, + "normalized_name": "hexa path" + }, + { + "appid": 1052850, + "normalized_name": "perplexity suburban home" + }, + { + "appid": 1052870, + "normalized_name": "pixel puzzles 2 paintings" + }, + { + "appid": 1052890, + "normalized_name": "the hunt sophie's journey" + }, + { + "appid": 1052900, + "normalized_name": "assault of the robots" + }, + { + "appid": 1052920, + "normalized_name": "caelus trident" + }, + { + "appid": 1052970, + "normalized_name": "soul of giga" + }, + { + "appid": 1052990, + "normalized_name": "a monster's expedition" + }, + { + "appid": 1053000, + "normalized_name": "planes attack" + }, + { + "appid": 1053020, + "normalized_name": "galak zed" + }, + { + "appid": 1053040, + "normalized_name": "zom bie or not zom bie" + }, + { + "appid": 1053090, + "normalized_name": "virtual skydiving" + }, + { + "appid": 1053160, + "normalized_name": "witch ring meister" + }, + { + "appid": 1053170, + "normalized_name": "idle cooking emperor" + }, + { + "appid": 1053190, + "normalized_name": "lover bands" + }, + { + "appid": 1053250, + "normalized_name": "tok hardcore" + }, + { + "appid": 1053270, + "normalized_name": "makeover desire henshin ganbo" + }, + { + "appid": 1053300, + "normalized_name": "archibald 2" + }, + { + "appid": 1053330, + "normalized_name": "scrap rush!!" + }, + { + "appid": 1053390, + "normalized_name": "kowloon high school chronicle origin of adventure" + }, + { + "appid": 1053510, + "normalized_name": "テクノス ザ・ワールド くにおくん & アーケードコレクション" + }, + { + "appid": 1053560, + "normalized_name": "saint hazel's horsepital" + }, + { + "appid": 1053600, + "normalized_name": "reactivated" + }, + { + "appid": 1053620, + "normalized_name": "midnight" + }, + { + "appid": 1053640, + "normalized_name": "rockabowling vr" + }, + { + "appid": 1053650, + "normalized_name": "drive for your life" + }, + { + "appid": 1053660, + "normalized_name": "chaos starter" + }, + { + "appid": 1053670, + "normalized_name": "afterlight" + }, + { + "appid": 1053680, + "normalized_name": "granny simulator" + }, + { + "appid": 1053700, + "normalized_name": "fishy dungeon delving" + }, + { + "appid": 1053710, + "normalized_name": "the red lantern" + }, + { + "appid": 1053720, + "normalized_name": "knife only" + }, + { + "appid": 1053730, + "normalized_name": "foxyland 2" + }, + { + "appid": 1053750, + "normalized_name": "the red reactor" + }, + { + "appid": 1053780, + "normalized_name": "pixel art monster color by number" + }, + { + "appid": 1053820, + "normalized_name": "eternal concord" + }, + { + "appid": 1053830, + "normalized_name": "ninja legends" + }, + { + "appid": 1053850, + "normalized_name": "last hope z vr" + }, + { + "appid": 1053870, + "normalized_name": "ruins to rumble" + }, + { + "appid": 1053900, + "normalized_name": "radio the universe" + }, + { + "appid": 1053920, + "normalized_name": "emergency water landing" + }, + { + "appid": 1053960, + "normalized_name": "bot battles" + }, + { + "appid": 1053970, + "normalized_name": "ecchi puzzles" + }, + { + "appid": 1054050, + "normalized_name": "hero must die. again" + }, + { + "appid": 1054080, + "normalized_name": "signals of outer space" + }, + { + "appid": 1054090, + "normalized_name": "technosphere reload" + }, + { + "appid": 1054110, + "normalized_name": "there the light" + }, + { + "appid": 1054120, + "normalized_name": "sexxxnator adult sandbox rpg" + }, + { + "appid": 1054150, + "normalized_name": "fantasy battles" + }, + { + "appid": 1054180, + "normalized_name": "cheeky beetle and the unlikely heroes" + }, + { + "appid": 1054190, + "normalized_name": "parkour bot" + }, + { + "appid": 1054240, + "normalized_name": "easy puzzle animals" + }, + { + "appid": 1054250, + "normalized_name": "krasava shot" + }, + { + "appid": 1054270, + "normalized_name": "rashlander" + }, + { + "appid": 1054290, + "normalized_name": "dezzan" + }, + { + "appid": 1054300, + "normalized_name": "the fairytale of death" + }, + { + "appid": 1054340, + "normalized_name": "logic world" + }, + { + "appid": 1054350, + "normalized_name": "lost and hound" + }, + { + "appid": 1054370, + "normalized_name": "sandbox anything" + }, + { + "appid": 1054430, + "normalized_name": "fling to the finish" + }, + { + "appid": 1054440, + "normalized_name": "super clash crossover for workshoppers" + }, + { + "appid": 1054450, + "normalized_name": "the raintime" + }, + { + "appid": 1054460, + "normalized_name": "tuition" + }, + { + "appid": 1054470, + "normalized_name": "agent lovesdick" + }, + { + "appid": 1054490, + "normalized_name": "wingspan" + }, + { + "appid": 1054500, + "normalized_name": "ducks in space" + }, + { + "appid": 1054510, + "normalized_name": "survivalist invisible strain" + }, + { + "appid": 1054520, + "normalized_name": "누가 그녀를 죽였나" + }, + { + "appid": 1054550, + "normalized_name": "phantom rose" + }, + { + "appid": 1054560, + "normalized_name": "alice in stardom a free idol visual novel" + }, + { + "appid": 1054570, + "normalized_name": "sushivr" + }, + { + "appid": 1054590, + "normalized_name": "moonlight warrior" + }, + { + "appid": 1054610, + "normalized_name": "chocolate makes you happy easter" + }, + { + "appid": 1054620, + "normalized_name": "vengeful bat dungeon crawler" + }, + { + "appid": 1054630, + "normalized_name": "tank battle" + }, + { + "appid": 1054640, + "normalized_name": "the tower of worth" + }, + { + "appid": 1054650, + "normalized_name": "jq cosmos" + }, + { + "appid": 1054660, + "normalized_name": "factory balls" + }, + { + "appid": 1054690, + "normalized_name": "dreadlands" + }, + { + "appid": 1054700, + "normalized_name": "back to ashes" + }, + { + "appid": 1054710, + "normalized_name": "driven out" + }, + { + "appid": 1054720, + "normalized_name": "dumb fight" + }, + { + "appid": 1054750, + "normalized_name": "magic farm 2 fairy lands (premium edition)" + }, + { + "appid": 1054770, + "normalized_name": "gear:治愈齿轮" + }, + { + "appid": 1054800, + "normalized_name": "变量 variables" + }, + { + "appid": 1054820, + "normalized_name": "kingslayer tactics" + }, + { + "appid": 1054860, + "normalized_name": "project voxel miami" + }, + { + "appid": 1054900, + "normalized_name": "devilshaft thetower" + }, + { + "appid": 1054930, + "normalized_name": "mine the gold" + }, + { + "appid": 1054950, + "normalized_name": "starstruck hands of time" + }, + { + "appid": 1054980, + "normalized_name": "the cat and the box" + }, + { + "appid": 1054990, + "normalized_name": "race with ryan" + }, + { + "appid": 1055000, + "normalized_name": "endlesshell" + }, + { + "appid": 1055020, + "normalized_name": "infinityvr" + }, + { + "appid": 1055030, + "normalized_name": "ghoul britannia land of hope and gorey" + }, + { + "appid": 1055040, + "normalized_name": "teleball" + }, + { + "appid": 1055090, + "normalized_name": "embark" + }, + { + "appid": 1055120, + "normalized_name": "coronaviruses" + }, + { + "appid": 1055140, + "normalized_name": "10 4 indirect contact" + }, + { + "appid": 1055150, + "normalized_name": "eva reynes" + }, + { + "appid": 1055160, + "normalized_name": "welcome to nightmare" + }, + { + "appid": 1055170, + "normalized_name": "sir lovelot" + }, + { + "appid": 1055180, + "normalized_name": "icarus prima regula" + }, + { + "appid": 1055210, + "normalized_name": "retrograde arena" + }, + { + "appid": 1055240, + "normalized_name": "hollow 2" + }, + { + "appid": 1055280, + "normalized_name": "wizardas" + }, + { + "appid": 1055310, + "normalized_name": "the myth seekers 2 the sunken city" + }, + { + "appid": 1055340, + "normalized_name": "flowmotion" + }, + { + "appid": 1055360, + "normalized_name": "infested inside multiplayer online" + }, + { + "appid": 1055380, + "normalized_name": "code s 44 episode 1" + }, + { + "appid": 1055420, + "normalized_name": "the highscore" + }, + { + "appid": 1055430, + "normalized_name": "swords and sandals classic collection" + }, + { + "appid": 1055460, + "normalized_name": "claw staff" + }, + { + "appid": 1055490, + "normalized_name": "weed farmer simulator" + }, + { + "appid": 1055540, + "normalized_name": "a short hike" + }, + { + "appid": 1055560, + "normalized_name": "wardens rising" + }, + { + "appid": 1055590, + "normalized_name": "shuttlecock h" + }, + { + "appid": 1055610, + "normalized_name": "deep space battle simulator" + }, + { + "appid": 1055620, + "normalized_name": "minions battle" + }, + { + "appid": 1055640, + "normalized_name": "novus campis" + }, + { + "appid": 1055660, + "normalized_name": "十日" + }, + { + "appid": 1055690, + "normalized_name": "awakening the dreamless castle" + }, + { + "appid": 1055760, + "normalized_name": "prince maker美少年梦工厂3:重生" + }, + { + "appid": 1055770, + "normalized_name": "metal country" + }, + { + "appid": 1055780, + "normalized_name": "plunger knight washers of truth" + }, + { + "appid": 1055850, + "normalized_name": "inspector waffles" + }, + { + "appid": 1055870, + "normalized_name": "siberian run vr" + }, + { + "appid": 1055890, + "normalized_name": "game of puzzles nature" + }, + { + "appid": 1055930, + "normalized_name": "the elemental heart" + }, + { + "appid": 1055940, + "normalized_name": "sentenced" + }, + { + "appid": 1055950, + "normalized_name": "feels" + }, + { + "appid": 1055960, + "normalized_name": "thistledown a tragedy of blood" + }, + { + "appid": 1055970, + "normalized_name": "argonauts agency pandora's box" + }, + { + "appid": 1055990, + "normalized_name": "erannorth reborn" + }, + { + "appid": 1056010, + "normalized_name": "ne padai!" + }, + { + "appid": 1056040, + "normalized_name": "maidesktop" + }, + { + "appid": 1056050, + "normalized_name": "longing ring of esca" + }, + { + "appid": 1056060, + "normalized_name": "eon" + }, + { + "appid": 1056070, + "normalized_name": "instinct rush 本能冲撞" + }, + { + "appid": 1056080, + "normalized_name": "epic adventures cursed onboard" + }, + { + "appid": 1056140, + "normalized_name": "lotus minigames berlin traffic" + }, + { + "appid": 1056170, + "normalized_name": "superverse" + }, + { + "appid": 1056180, + "normalized_name": "cathedral" + }, + { + "appid": 1056230, + "normalized_name": "medicinal herbs cannabis grow simulator" + }, + { + "appid": 1056280, + "normalized_name": "grotesque beauty a horror visual novel" + }, + { + "appid": 1056310, + "normalized_name": "biplane racer" + }, + { + "appid": 1056320, + "normalized_name": "island town zombie paradise" + }, + { + "appid": 1056330, + "normalized_name": "l.s.s ii" + }, + { + "appid": 1056350, + "normalized_name": "wizard warfare" + }, + { + "appid": 1056370, + "normalized_name": "rigo the movie" + }, + { + "appid": 1056420, + "normalized_name": "azure wing rising gale" + }, + { + "appid": 1056480, + "normalized_name": "the garden pub" + }, + { + "appid": 1056490, + "normalized_name": "the world is your weapon" + }, + { + "appid": 1056510, + "normalized_name": "root letter last answer" + }, + { + "appid": 1056520, + "normalized_name": "who we are now" + }, + { + "appid": 1056570, + "normalized_name": "taisho x alice episode 1" + }, + { + "appid": 1056580, + "normalized_name": "family hidden secret hidden objects puzzle adventure" + }, + { + "appid": 1056590, + "normalized_name": "梦乡 the dreamcatcher" + }, + { + "appid": 1056610, + "normalized_name": "heal" + }, + { + "appid": 1056640, + "normalized_name": "phantasy star online 2 new genesis" + }, + { + "appid": 1056650, + "normalized_name": "haunted jail alcatas" + }, + { + "appid": 1056660, + "normalized_name": "3x3 mini shogi" + }, + { + "appid": 1056680, + "normalized_name": "ode to a moon" + }, + { + "appid": 1056690, + "normalized_name": "drink more glurp" + }, + { + "appid": 1056710, + "normalized_name": "vtb basketball league vr" + }, + { + "appid": 1056720, + "normalized_name": "knight club +" + }, + { + "appid": 1056750, + "normalized_name": "shera and the three treasures" + }, + { + "appid": 1056840, + "normalized_name": "arcanium rise of akhan" + }, + { + "appid": 1056860, + "normalized_name": "time break" + }, + { + "appid": 1056960, + "normalized_name": "wolfenstein youngblood" + }, + { + "appid": 1056970, + "normalized_name": "wolfenstein cyberpilot" + }, + { + "appid": 1057030, + "normalized_name": "bounty hunter" + }, + { + "appid": 1057090, + "normalized_name": "ori and the will of the wisps" + }, + { + "appid": 1057130, + "normalized_name": "exogen vr" + }, + { + "appid": 1057150, + "normalized_name": "adventure in king caries land" + }, + { + "appid": 1057180, + "normalized_name": "border officer" + }, + { + "appid": 1057390, + "normalized_name": "the kaiju offensive" + }, + { + "appid": 1057420, + "normalized_name": "earthshakers" + }, + { + "appid": 1057430, + "normalized_name": "geometry may. i swear it's a nice free game" + }, + { + "appid": 1057460, + "normalized_name": "moon pool" + }, + { + "appid": 1057540, + "normalized_name": "cthulhu saves christmas" + }, + { + "appid": 1057560, + "normalized_name": "rebound dodgeball evolved" + }, + { + "appid": 1057570, + "normalized_name": "handyman" + }, + { + "appid": 1057580, + "normalized_name": "shopkeeper simulator" + }, + { + "appid": 1057590, + "normalized_name": "debt collector simulator" + }, + { + "appid": 1057600, + "normalized_name": "booze masters freezing moonshine" + }, + { + "appid": 1057610, + "normalized_name": "bus controller simulator" + }, + { + "appid": 1057630, + "normalized_name": "restaurant renovator" + }, + { + "appid": 1057640, + "normalized_name": "onirism" + }, + { + "appid": 1057680, + "normalized_name": "人间 the lost we lost" + }, + { + "appid": 1057700, + "normalized_name": "battle grounds iii" + }, + { + "appid": 1057710, + "normalized_name": "funny bunny adventures" + }, + { + "appid": 1057720, + "normalized_name": "shattered lights" + }, + { + "appid": 1057730, + "normalized_name": "vradventure" + }, + { + "appid": 1057740, + "normalized_name": "world of conquerors" + }, + { + "appid": 1057750, + "normalized_name": "the suicide of rachel foster" + }, + { + "appid": 1057770, + "normalized_name": "story of one night" + }, + { + "appid": 1057780, + "normalized_name": "jump off the bridge" + }, + { + "appid": 1057790, + "normalized_name": "ramen" + }, + { + "appid": 1057800, + "normalized_name": "floppy knights" + }, + { + "appid": 1057810, + "normalized_name": "wolfenstein youngblood deutsche version" + }, + { + "appid": 1057820, + "normalized_name": "wolfenstein cyberpilot deutsche version" + }, + { + "appid": 1057850, + "normalized_name": "neon boost" + }, + { + "appid": 1057980, + "normalized_name": "radiant arc" + }, + { + "appid": 1057990, + "normalized_name": "viking trickshot" + }, + { + "appid": 1058000, + "normalized_name": "rain's love memory 雨的恋记" + }, + { + "appid": 1058020, + "normalized_name": "star wars battlefront (classic 2004)" + }, + { + "appid": 1058030, + "normalized_name": "roskur's run" + }, + { + "appid": 1058060, + "normalized_name": "princesses never lose!" + }, + { + "appid": 1058110, + "normalized_name": "metro trip simulator" + }, + { + "appid": 1058130, + "normalized_name": "queen's wish the conqueror" + }, + { + "appid": 1058140, + "normalized_name": "yumeutsutsu re master" + }, + { + "appid": 1058200, + "normalized_name": "pixel puzzles traditional jigsaw puzzles" + }, + { + "appid": 1058210, + "normalized_name": "pixel puzzles 2 halloween" + }, + { + "appid": 1058220, + "normalized_name": "emoji td" + }, + { + "appid": 1058270, + "normalized_name": "客栈传说" + }, + { + "appid": 1058280, + "normalized_name": "speed limit" + }, + { + "appid": 1058290, + "normalized_name": "mortido" + }, + { + "appid": 1058320, + "normalized_name": "toki" + }, + { + "appid": 1058330, + "normalized_name": "fort boyard" + }, + { + "appid": 1058340, + "normalized_name": "tiara the deceiving crown" + }, + { + "appid": 1058350, + "normalized_name": "nyasha land of elves" + }, + { + "appid": 1058370, + "normalized_name": "bone voyage" + }, + { + "appid": 1058380, + "normalized_name": "streamer daily" + }, + { + "appid": 1058400, + "normalized_name": "四之石" + }, + { + "appid": 1058410, + "normalized_name": "physics optics table" + }, + { + "appid": 1058430, + "normalized_name": "a legionary's life" + }, + { + "appid": 1058450, + "normalized_name": "my hero one's justice 2" + }, + { + "appid": 1058470, + "normalized_name": "beyond a total loss" + }, + { + "appid": 1058490, + "normalized_name": "hobo living vr" + }, + { + "appid": 1058500, + "normalized_name": "muscle car robot" + }, + { + "appid": 1058510, + "normalized_name": "zunius" + }, + { + "appid": 1058530, + "normalized_name": "h rescue" + }, + { + "appid": 1058550, + "normalized_name": "rainbow hunter" + }, + { + "appid": 1058560, + "normalized_name": "deathbloom chapter 1" + }, + { + "appid": 1058570, + "normalized_name": "ride with the reaper" + }, + { + "appid": 1058590, + "normalized_name": "franchise wars" + }, + { + "appid": 1058600, + "normalized_name": "velm" + }, + { + "appid": 1058630, + "normalized_name": "crazy ball" + }, + { + "appid": 1058640, + "normalized_name": "red hot vengeance" + }, + { + "appid": 1058650, + "normalized_name": "beyond the wire" + }, + { + "appid": 1058660, + "normalized_name": "archmmo 2" + }, + { + "appid": 1058680, + "normalized_name": "vr emergency response sim" + }, + { + "appid": 1058690, + "normalized_name": "signs of the sojourner" + }, + { + "appid": 1058710, + "normalized_name": "中世纪君主 medieval monarch" + }, + { + "appid": 1058720, + "normalized_name": "war on paper" + }, + { + "appid": 1058730, + "normalized_name": "pirates are blanking awesome" + }, + { + "appid": 1058740, + "normalized_name": "antqueen 3d" + }, + { + "appid": 1058750, + "normalized_name": "无奇刀 wookie's blade" + }, + { + "appid": 1058760, + "normalized_name": "tiger tank 59 ⅰ rainstorm" + }, + { + "appid": 1058770, + "normalized_name": "我来自江湖 from jianghu" + }, + { + "appid": 1058800, + "normalized_name": "miner's mettle" + }, + { + "appid": 1058830, + "normalized_name": "spin rhythm xd" + }, + { + "appid": 1058840, + "normalized_name": "super web kittens act i" + }, + { + "appid": 1058860, + "normalized_name": "zero zion" + }, + { + "appid": 1058930, + "normalized_name": "top burger" + }, + { + "appid": 1058940, + "normalized_name": "treasure masters inc. the lost city" + }, + { + "appid": 1058980, + "normalized_name": "dinosaur bone digging" + }, + { + "appid": 1059000, + "normalized_name": "vertigo!" + }, + { + "appid": 1059010, + "normalized_name": "ai arcade" + }, + { + "appid": 1059040, + "normalized_name": "grunt1914" + }, + { + "appid": 1059080, + "normalized_name": "road homeward 2 river trip" + }, + { + "appid": 1059090, + "normalized_name": "the underground watcher/地下监察员" + }, + { + "appid": 1059110, + "normalized_name": "superball" + }, + { + "appid": 1059120, + "normalized_name": "kinoko" + }, + { + "appid": 1059150, + "normalized_name": "ritual crown of horns" + }, + { + "appid": 1059160, + "normalized_name": "deep race space" + }, + { + "appid": 1059190, + "normalized_name": "skully pinball" + }, + { + "appid": 1059220, + "normalized_name": "'83" + }, + { + "appid": 1059230, + "normalized_name": "when i was young" + }, + { + "appid": 1059240, + "normalized_name": "room 208" + }, + { + "appid": 1059260, + "normalized_name": "data mining 0" + }, + { + "appid": 1059280, + "normalized_name": "the renovator" + }, + { + "appid": 1059300, + "normalized_name": "gravitura" + }, + { + "appid": 1059310, + "normalized_name": "herald of the depths" + }, + { + "appid": 1059320, + "normalized_name": "hocus potions" + }, + { + "appid": 1059370, + "normalized_name": "impale your friends!" + }, + { + "appid": 1059390, + "normalized_name": "utll" + }, + { + "appid": 1059420, + "normalized_name": "5leaps (space tower defense)" + }, + { + "appid": 1059430, + "normalized_name": "pagan peak vr" + }, + { + "appid": 1059460, + "normalized_name": "drunken fist 🍺👊 totally accurate beat 'em up" + }, + { + "appid": 1059470, + "normalized_name": "wolfgate" + }, + { + "appid": 1059500, + "normalized_name": "puzzle ocean" + }, + { + "appid": 1059520, + "normalized_name": "daybringer" + }, + { + "appid": 1059620, + "normalized_name": "mystery trackers winterpoint tragedy collector's" + }, + { + "appid": 1059640, + "normalized_name": "deepsea salvor" + }, + { + "appid": 1059660, + "normalized_name": "life combinations" + }, + { + "appid": 1059690, + "normalized_name": "make route escape the police" + }, + { + "appid": 1059710, + "normalized_name": "new yankee 6 in pharaoh's court" + }, + { + "appid": 1059740, + "normalized_name": "gunslingers & zombies" + }, + { + "appid": 1059830, + "normalized_name": "magic encyclopedia moon light" + }, + { + "appid": 1059840, + "normalized_name": "continuum" + }, + { + "appid": 1059850, + "normalized_name": "vain riser | 空梦" + }, + { + "appid": 1059860, + "normalized_name": "打击者打字游戏集(striker a type game pack)" + }, + { + "appid": 1059880, + "normalized_name": "devious dungeon" + }, + { + "appid": 1059890, + "normalized_name": "devious dungeon 2" + }, + { + "appid": 1059900, + "normalized_name": "tribe primitive builder" + }, + { + "appid": 1059980, + "normalized_name": "just king" + }, + { + "appid": 1059990, + "normalized_name": "trombone champ" + }, + { + "appid": 1060000, + "normalized_name": "only after" + }, + { + "appid": 1060020, + "normalized_name": "boxwrecker arena" + }, + { + "appid": 1060060, + "normalized_name": "golf in paper" + }, + { + "appid": 1060100, + "normalized_name": "call of the void" + }, + { + "appid": 1060110, + "normalized_name": "space trade fleet 1.5" + }, + { + "appid": 1060160, + "normalized_name": "not dead yet" + }, + { + "appid": 1060170, + "normalized_name": "azurael's circle chapter 4" + }, + { + "appid": 1060180, + "normalized_name": "cyber driver" + }, + { + "appid": 1060210, + "normalized_name": "disaster report 4 summer memories" + }, + { + "appid": 1060220, + "normalized_name": "langrisser i & ii" + }, + { + "appid": 1060230, + "normalized_name": "sapiens" + }, + { + "appid": 1060240, + "normalized_name": "rumia in the darkness" + }, + { + "appid": 1060300, + "normalized_name": "homeless simulator" + }, + { + "appid": 1060310, + "normalized_name": "great toilet simulator" + }, + { + "appid": 1060320, + "normalized_name": "one drop bot" + }, + { + "appid": 1060350, + "normalized_name": "war of the seraphim" + }, + { + "appid": 1060360, + "normalized_name": "血腥之日228 vampire martina bloody day 2.28" + }, + { + "appid": 1060370, + "normalized_name": "crazy space pirate" + }, + { + "appid": 1060380, + "normalized_name": "slime adventure 2" + }, + { + "appid": 1060400, + "normalized_name": "mystic rus files" + }, + { + "appid": 1060450, + "normalized_name": "sky shepherd" + }, + { + "appid": 1060460, + "normalized_name": "apollo 17 moonbuggy vr" + }, + { + "appid": 1060470, + "normalized_name": "global infection" + }, + { + "appid": 1060490, + "normalized_name": "me os" + }, + { + "appid": 1060510, + "normalized_name": "heaven's voice feast of famine" + }, + { + "appid": 1060550, + "normalized_name": "lethal strike" + }, + { + "appid": 1060560, + "normalized_name": "gnrblex" + }, + { + "appid": 1060570, + "normalized_name": "hentai babes broken vows" + }, + { + "appid": 1060590, + "normalized_name": "pretty exotic" + }, + { + "appid": 1060600, + "normalized_name": "lair of the clockwork god" + }, + { + "appid": 1060620, + "normalized_name": "hentai girl run" + }, + { + "appid": 1060630, + "normalized_name": "ぶんまわしヒーロー / full swing hero" + }, + { + "appid": 1060670, + "normalized_name": "taboos cracks" + }, + { + "appid": 1060690, + "normalized_name": "mission xam" + }, + { + "appid": 1060770, + "normalized_name": "die zombie sausage die!" + }, + { + "appid": 1060810, + "normalized_name": "the sphere of abyss" + }, + { + "appid": 1060820, + "normalized_name": "dancop daniela on duty" + }, + { + "appid": 1060840, + "normalized_name": "maze of memories" + }, + { + "appid": 1060850, + "normalized_name": "spleen" + }, + { + "appid": 1060870, + "normalized_name": "hello world." + }, + { + "appid": 1060880, + "normalized_name": "first star down" + }, + { + "appid": 1060890, + "normalized_name": "get out" + }, + { + "appid": 1060900, + "normalized_name": "mural" + }, + { + "appid": 1060980, + "normalized_name": "scooter delivery vr" + }, + { + "appid": 1061010, + "normalized_name": "深海:即刻抉择" + }, + { + "appid": 1061090, + "normalized_name": "jump king" + }, + { + "appid": 1061120, + "normalized_name": "summer resort mogul" + }, + { + "appid": 1061130, + "normalized_name": "aye captain!" + }, + { + "appid": 1061150, + "normalized_name": "muscle magic" + }, + { + "appid": 1061160, + "normalized_name": "orc raid" + }, + { + "appid": 1061180, + "normalized_name": "crumble" + }, + { + "appid": 1061200, + "normalized_name": "domido" + }, + { + "appid": 1061210, + "normalized_name": "trucker's dynasty cuba libre" + }, + { + "appid": 1061220, + "normalized_name": "discontinue" + }, + { + "appid": 1061240, + "normalized_name": "quiet sleep" + }, + { + "appid": 1061250, + "normalized_name": "时间旅者(timewalker)" + }, + { + "appid": 1061260, + "normalized_name": "click space miner 2" + }, + { + "appid": 1061270, + "normalized_name": "blacklist brigade" + }, + { + "appid": 1061280, + "normalized_name": "plastic love" + }, + { + "appid": 1061300, + "normalized_name": "surprising my neighbors" + }, + { + "appid": 1061360, + "normalized_name": "time loop fighter" + }, + { + "appid": 1061390, + "normalized_name": "block run" + }, + { + "appid": 1061400, + "normalized_name": "yyds成神之路" + }, + { + "appid": 1061420, + "normalized_name": "obscure doubt" + }, + { + "appid": 1061430, + "normalized_name": "adagio" + }, + { + "appid": 1061460, + "normalized_name": "tiny mortals vr" + }, + { + "appid": 1061470, + "normalized_name": "nyasha valkyrie" + }, + { + "appid": 1061490, + "normalized_name": "breeding village" + }, + { + "appid": 1061530, + "normalized_name": "broadside perilous waters" + }, + { + "appid": 1061540, + "normalized_name": "mystery of the ancients three guardians collector's" + }, + { + "appid": 1061550, + "normalized_name": "sneak in a sphere matcher game" + }, + { + "appid": 1061600, + "normalized_name": "dodge the wall!" + }, + { + "appid": 1061610, + "normalized_name": "tenderfoot tactics" + }, + { + "appid": 1061620, + "normalized_name": "galaxy in peril" + }, + { + "appid": 1061640, + "normalized_name": "how to be a real dude" + }, + { + "appid": 1061650, + "normalized_name": "idle portal guardian" + }, + { + "appid": 1061670, + "normalized_name": "heroes of the multiverse" + }, + { + "appid": 1061680, + "normalized_name": "angela's odyssey" + }, + { + "appid": 1061730, + "normalized_name": "super monkey ball banana blitz hd" + }, + { + "appid": 1061790, + "normalized_name": "chopper to hell" + }, + { + "appid": 1061800, + "normalized_name": "automatica" + }, + { + "appid": 1061850, + "normalized_name": "hotel mogul las vegas" + }, + { + "appid": 1061880, + "normalized_name": "conan chop chop" + }, + { + "appid": 1061900, + "normalized_name": "thundergod" + }, + { + "appid": 1061910, + "normalized_name": "metal hellsinger" + }, + { + "appid": 1061920, + "normalized_name": "our secret below" + }, + { + "appid": 1061930, + "normalized_name": "cyber city" + }, + { + "appid": 1061970, + "normalized_name": "great ball of fire" + }, + { + "appid": 1061980, + "normalized_name": "orbitron space academy" + }, + { + "appid": 1061990, + "normalized_name": "relicmerge" + }, + { + "appid": 1062000, + "normalized_name": "starmancer" + }, + { + "appid": 1062020, + "normalized_name": "who are you mr. cooper?" + }, + { + "appid": 1062040, + "normalized_name": "dragon star varnir" + }, + { + "appid": 1062050, + "normalized_name": "secrets of war" + }, + { + "appid": 1062060, + "normalized_name": "rhome" + }, + { + "appid": 1062070, + "normalized_name": "tex mechs" + }, + { + "appid": 1062080, + "normalized_name": "goofballs" + }, + { + "appid": 1062090, + "normalized_name": "timberborn" + }, + { + "appid": 1062100, + "normalized_name": "haberdashers" + }, + { + "appid": 1062110, + "normalized_name": "unsighted" + }, + { + "appid": 1062120, + "normalized_name": "peas adventure" + }, + { + "appid": 1062130, + "normalized_name": "gun skaters" + }, + { + "appid": 1062140, + "normalized_name": "garden story" + }, + { + "appid": 1062160, + "normalized_name": "poly bridge 2" + }, + { + "appid": 1062200, + "normalized_name": "大时代:三国立志" + }, + { + "appid": 1062210, + "normalized_name": "spikes are dangerous" + }, + { + "appid": 1062220, + "normalized_name": "succubus contract" + }, + { + "appid": 1062260, + "normalized_name": "末法仙路" + }, + { + "appid": 1062330, + "normalized_name": "communityus" + }, + { + "appid": 1062340, + "normalized_name": "katana kami a way of the samurai story" + }, + { + "appid": 1062390, + "normalized_name": "triangle mania" + }, + { + "appid": 1062430, + "normalized_name": "real arcade bike" + }, + { + "appid": 1062470, + "normalized_name": "frank & the timetwister machine" + }, + { + "appid": 1062480, + "normalized_name": "songs of skydale" + }, + { + "appid": 1062520, + "normalized_name": "dinkum" + }, + { + "appid": 1062530, + "normalized_name": "obsidian crown" + }, + { + "appid": 1062540, + "normalized_name": "puzzletime lovely girls" + }, + { + "appid": 1062550, + "normalized_name": "nightlight secrets" + }, + { + "appid": 1062640, + "normalized_name": "castle of pixel skulls" + }, + { + "appid": 1062660, + "normalized_name": "ortolan" + }, + { + "appid": 1062670, + "normalized_name": "blacksmith run" + }, + { + "appid": 1062680, + "normalized_name": "crystallo" + }, + { + "appid": 1062690, + "normalized_name": "astronomy vr" + }, + { + "appid": 1062810, + "normalized_name": "inkbound" + }, + { + "appid": 1062830, + "normalized_name": "embr" + }, + { + "appid": 1062850, + "normalized_name": "sage mountain" + }, + { + "appid": 1062860, + "normalized_name": "battlecakes" + }, + { + "appid": 1062960, + "normalized_name": "under the sand redux a road trip simulator" + }, + { + "appid": 1063020, + "normalized_name": "elemental war 2" + }, + { + "appid": 1063030, + "normalized_name": "monaco 2" + }, + { + "appid": 1063040, + "normalized_name": "ben 10 power trip" + }, + { + "appid": 1063050, + "normalized_name": "lumina" + }, + { + "appid": 1063060, + "normalized_name": "montecube dodge" + }, + { + "appid": 1063070, + "normalized_name": "body discovery" + }, + { + "appid": 1063080, + "normalized_name": "genius! nazi girl goeppels chan ep2" + }, + { + "appid": 1063100, + "normalized_name": "re[map]" + }, + { + "appid": 1063110, + "normalized_name": "the nine lives of nim fortune's fool" + }, + { + "appid": 1063120, + "normalized_name": "damaged in transit" + }, + { + "appid": 1063130, + "normalized_name": "h chan" + }, + { + "appid": 1063140, + "normalized_name": "under spire 尖塔自走棋" + }, + { + "appid": 1063160, + "normalized_name": "the legends of class one 嗨哥一班大冒险" + }, + { + "appid": 1063170, + "normalized_name": "beyond the dawn 晨曦下の终点" + }, + { + "appid": 1063180, + "normalized_name": "flowerless gardenia 白花未咲" + }, + { + "appid": 1063190, + "normalized_name": "绽于枝垂樱下~flowering across the hakugyokurou" + }, + { + "appid": 1063210, + "normalized_name": "narazumono" + }, + { + "appid": 1063230, + "normalized_name": "6120" + }, + { + "appid": 1063280, + "normalized_name": "combat helicopter surgical strike" + }, + { + "appid": 1063300, + "normalized_name": "chipmunk's adventures" + }, + { + "appid": 1063310, + "normalized_name": "vane" + }, + { + "appid": 1063330, + "normalized_name": "麻神消消乐" + }, + { + "appid": 1063340, + "normalized_name": "灵幻先生 致敬一代僵尸道长!the exorcist" + }, + { + "appid": 1063350, + "normalized_name": "viking brothers 5" + }, + { + "appid": 1063380, + "normalized_name": "hentai oppai" + }, + { + "appid": 1063420, + "normalized_name": "void crew" + }, + { + "appid": 1063440, + "normalized_name": "homeless simulator 2" + }, + { + "appid": 1063470, + "normalized_name": "ski jumping pro vr" + }, + { + "appid": 1063490, + "normalized_name": "still there" + }, + { + "appid": 1063500, + "normalized_name": "shield of shalwend" + }, + { + "appid": 1063510, + "normalized_name": "unsweet" + }, + { + "appid": 1063530, + "normalized_name": "cartoon network journeys vr" + }, + { + "appid": 1063540, + "normalized_name": "space wreck" + }, + { + "appid": 1063560, + "normalized_name": "12 hours" + }, + { + "appid": 1063570, + "normalized_name": "dino lost" + }, + { + "appid": 1063580, + "normalized_name": "aeon's end" + }, + { + "appid": 1063590, + "normalized_name": "rogue masters" + }, + { + "appid": 1063660, + "normalized_name": "bendy and the dark revival" + }, + { + "appid": 1063700, + "normalized_name": "protodungeon episode iii" + }, + { + "appid": 1063710, + "normalized_name": "tubetastic world splashfest" + }, + { + "appid": 1063730, + "normalized_name": "new world aeternum" + }, + { + "appid": 1063740, + "normalized_name": "stick royale" + }, + { + "appid": 1063760, + "normalized_name": "gnomes and giants" + }, + { + "appid": 1063770, + "normalized_name": "pew dew redemption" + }, + { + "appid": 1063790, + "normalized_name": "citizen of rome dynasty ascendant" + }, + { + "appid": 1063800, + "normalized_name": "sexyhub ❤" + }, + { + "appid": 1063820, + "normalized_name": "疯狂西部/insane west" + }, + { + "appid": 1063830, + "normalized_name": "dreadborne drifters" + }, + { + "appid": 1063850, + "normalized_name": "jinxed" + }, + { + "appid": 1063860, + "normalized_name": "hentai saves australia" + }, + { + "appid": 1063870, + "normalized_name": "solstice" + }, + { + "appid": 1063890, + "normalized_name": "fat dude simulator" + }, + { + "appid": 1063910, + "normalized_name": "四圣传说之黑暗森林" + }, + { + "appid": 1063930, + "normalized_name": "the purge man" + }, + { + "appid": 1063940, + "normalized_name": "sigil" + }, + { + "appid": 1063950, + "normalized_name": "super recoilfight" + }, + { + "appid": 1063960, + "normalized_name": "ritual spellcasting rpg" + }, + { + "appid": 1063970, + "normalized_name": "元素战争 elemental war" + }, + { + "appid": 1063980, + "normalized_name": "hell architect" + }, + { + "appid": 1063990, + "normalized_name": "tank battle heroes esports war" + }, + { + "appid": 1064010, + "normalized_name": "escape until friday" + }, + { + "appid": 1064020, + "normalized_name": "ememories" + }, + { + "appid": 1064030, + "normalized_name": "king of the cul de sac" + }, + { + "appid": 1064050, + "normalized_name": "rick rack" + }, + { + "appid": 1064060, + "normalized_name": "the mystery of bikini island" + }, + { + "appid": 1064070, + "normalized_name": "oddballers" + }, + { + "appid": 1064080, + "normalized_name": "rhythm defender" + }, + { + "appid": 1064090, + "normalized_name": "lawnmower game 4 the final cut" + }, + { + "appid": 1064100, + "normalized_name": "krakout challenge" + }, + { + "appid": 1064110, + "normalized_name": "drill dash" + }, + { + "appid": 1064130, + "normalized_name": "sakura mmo 3" + }, + { + "appid": 1064140, + "normalized_name": "blood and lust" + }, + { + "appid": 1064150, + "normalized_name": "late city riders" + }, + { + "appid": 1064160, + "normalized_name": "holoception" + }, + { + "appid": 1064170, + "normalized_name": "avast ye" + }, + { + "appid": 1064200, + "normalized_name": "brewer" + }, + { + "appid": 1064250, + "normalized_name": "huni kuin beya xinã bena" + }, + { + "appid": 1064260, + "normalized_name": "spaceescapevr" + }, + { + "appid": 1064310, + "normalized_name": "a place for the unwilling" + }, + { + "appid": 1064320, + "normalized_name": "ferret scoundrels" + }, + { + "appid": 1064340, + "normalized_name": "chess evolved online" + }, + { + "appid": 1064360, + "normalized_name": "beatcrash" + }, + { + "appid": 1064420, + "normalized_name": "phucker in the gulag" + }, + { + "appid": 1064440, + "normalized_name": "xiu's supermarket" + }, + { + "appid": 1064450, + "normalized_name": "bl00" + }, + { + "appid": 1064460, + "normalized_name": "murder house" + }, + { + "appid": 1064480, + "normalized_name": "deadly path" + }, + { + "appid": 1064490, + "normalized_name": "night of the shrub part 3" + }, + { + "appid": 1064520, + "normalized_name": "helm realm" + }, + { + "appid": 1064540, + "normalized_name": "puzzle pelago a drag & drop economy" + }, + { + "appid": 1064580, + "normalized_name": "captainmarlene" + }, + { + "appid": 1064600, + "normalized_name": "battlesteam" + }, + { + "appid": 1064610, + "normalized_name": "neon beats" + }, + { + "appid": 1064620, + "normalized_name": "forest of evil" + }, + { + "appid": 1064650, + "normalized_name": "rogue slash" + }, + { + "appid": 1064660, + "normalized_name": "the death of erin myers" + }, + { + "appid": 1064670, + "normalized_name": "pathos" + }, + { + "appid": 1064690, + "normalized_name": "danger crew" + }, + { + "appid": 1064710, + "normalized_name": "wrath of the samurai" + }, + { + "appid": 1064730, + "normalized_name": "fantasy girl" + }, + { + "appid": 1064750, + "normalized_name": "space tower" + }, + { + "appid": 1064800, + "normalized_name": "hentai babes in costume" + }, + { + "appid": 1064840, + "normalized_name": "tamarin" + }, + { + "appid": 1064860, + "normalized_name": "约拍女神 private model" + }, + { + "appid": 1064900, + "normalized_name": "buzludzha vr" + }, + { + "appid": 1064910, + "normalized_name": "flyeeex" + }, + { + "appid": 1064920, + "normalized_name": "vr party pack" + }, + { + "appid": 1064950, + "normalized_name": "fluid lander フリュードランダー" + }, + { + "appid": 1064960, + "normalized_name": "the legion fringebound" + }, + { + "appid": 1064990, + "normalized_name": "thunder paw" + }, + { + "appid": 1065010, + "normalized_name": "barbarossa" + }, + { + "appid": 1065020, + "normalized_name": "micro mages" + }, + { + "appid": 1065030, + "normalized_name": "模拟家装修" + }, + { + "appid": 1065050, + "normalized_name": "gunship recon" + }, + { + "appid": 1065070, + "normalized_name": "été" + }, + { + "appid": 1065100, + "normalized_name": "golden treasure the great green" + }, + { + "appid": 1065110, + "normalized_name": "homeward duck" + }, + { + "appid": 1065180, + "normalized_name": "azure striker gunvolt 2" + }, + { + "appid": 1065200, + "normalized_name": "visitor2 / 来访者2" + }, + { + "appid": 1065210, + "normalized_name": "zic survival" + }, + { + "appid": 1065230, + "normalized_name": "room of pandora" + }, + { + "appid": 1065250, + "normalized_name": "第四空间fourth space" + }, + { + "appid": 1065260, + "normalized_name": "gensou skydrift" + }, + { + "appid": 1065270, + "normalized_name": "quitting simulator" + }, + { + "appid": 1065310, + "normalized_name": "evil west" + }, + { + "appid": 1065320, + "normalized_name": "rekt! high octane stunts" + }, + { + "appid": 1065350, + "normalized_name": "the grandmaster" + }, + { + "appid": 1065390, + "normalized_name": "virtual hero vr" + }, + { + "appid": 1065410, + "normalized_name": "that's pretty clever" + }, + { + "appid": 1065460, + "normalized_name": "rethink | evolved 3" + }, + { + "appid": 1065520, + "normalized_name": "autobahn police simulator 3" + }, + { + "appid": 1065550, + "normalized_name": "block busters" + }, + { + "appid": 1065570, + "normalized_name": "cyber gun" + }, + { + "appid": 1065580, + "normalized_name": "castle woodwarf 2" + }, + { + "appid": 1065630, + "normalized_name": "beats warrior nian" + }, + { + "appid": 1065650, + "normalized_name": "super star blast" + }, + { + "appid": 1065670, + "normalized_name": "4004 022" + }, + { + "appid": 1065680, + "normalized_name": "the chronicles of king arthur episode 2 knights of the round table" + }, + { + "appid": 1065690, + "normalized_name": "peku space dragon" + }, + { + "appid": 1065740, + "normalized_name": "repo man" + }, + { + "appid": 1065750, + "normalized_name": "spark and the digital daydream" + }, + { + "appid": 1065770, + "normalized_name": "home a drone" + }, + { + "appid": 1065780, + "normalized_name": "run gun die" + }, + { + "appid": 1065830, + "normalized_name": "forgotten in hell" + }, + { + "appid": 1065850, + "normalized_name": "giant bear rampage! ☢🐻" + }, + { + "appid": 1065860, + "normalized_name": "the heist" + }, + { + "appid": 1065870, + "normalized_name": "brg's alice in wonderland visual novel" + }, + { + "appid": 1065880, + "normalized_name": "dungeon scavenger" + }, + { + "appid": 1065890, + "normalized_name": "logistical 2 france" + }, + { + "appid": 1065900, + "normalized_name": "celtreos" + }, + { + "appid": 1065910, + "normalized_name": "samael" + }, + { + "appid": 1065920, + "normalized_name": "doomai" + }, + { + "appid": 1065930, + "normalized_name": "prototype cube" + }, + { + "appid": 1065940, + "normalized_name": "country girl keiko" + }, + { + "appid": 1065950, + "normalized_name": "cage of the succubi" + }, + { + "appid": 1065970, + "normalized_name": "狼と香辛料vr/spice&wolfvr" + }, + { + "appid": 1065990, + "normalized_name": "sethtek driving simulator" + }, + { + "appid": 1066010, + "normalized_name": "herakles and the princess of troy" + }, + { + "appid": 1066030, + "normalized_name": "heroland" + }, + { + "appid": 1066040, + "normalized_name": "simple dot" + }, + { + "appid": 1066090, + "normalized_name": "守护未来 guard the future" + }, + { + "appid": 1066130, + "normalized_name": "truck life" + }, + { + "appid": 1066140, + "normalized_name": "now you see a hand painted horror adventure" + }, + { + "appid": 1066160, + "normalized_name": "captain fly and sexy girls at the night club" + }, + { + "appid": 1066180, + "normalized_name": "crisis brigade 2 reloaded" + }, + { + "appid": 1066210, + "normalized_name": "soviet souls" + }, + { + "appid": 1066230, + "normalized_name": "project katharsis" + }, + { + "appid": 1066240, + "normalized_name": "tankex" + }, + { + "appid": 1066260, + "normalized_name": "devolver bootleg" + }, + { + "appid": 1066290, + "normalized_name": "猎魔者战纪" + }, + { + "appid": 1066310, + "normalized_name": "offside" + }, + { + "appid": 1066380, + "normalized_name": "the pit broken bones" + }, + { + "appid": 1066390, + "normalized_name": "chernobyl 1986" + }, + { + "appid": 1066400, + "normalized_name": "doctor who the runaway" + }, + { + "appid": 1066420, + "normalized_name": "clodhoppers" + }, + { + "appid": 1066430, + "normalized_name": "kwaidan" + }, + { + "appid": 1066440, + "normalized_name": "yggdrasil" + }, + { + "appid": 1066460, + "normalized_name": "the firelord" + }, + { + "appid": 1066470, + "normalized_name": "dextram" + }, + { + "appid": 1066490, + "normalized_name": "linklight" + }, + { + "appid": 1066520, + "normalized_name": "impossible road 2" + }, + { + "appid": 1066530, + "normalized_name": "neon kicks" + }, + { + "appid": 1066580, + "normalized_name": "rackham's shambala adventure" + }, + { + "appid": 1066630, + "normalized_name": "master magistrate" + }, + { + "appid": 1066660, + "normalized_name": "are you a wizard" + }, + { + "appid": 1066670, + "normalized_name": "pulsor" + }, + { + "appid": 1066680, + "normalized_name": "fleet commander pacific" + }, + { + "appid": 1066700, + "normalized_name": "new yankee 7 deer hunters" + }, + { + "appid": 1066730, + "normalized_name": "party bingo" + }, + { + "appid": 1066740, + "normalized_name": "mercyful flames the witches" + }, + { + "appid": 1066760, + "normalized_name": "moonshine inc." + }, + { + "appid": 1066780, + "normalized_name": "transport fever 2" + }, + { + "appid": 1066840, + "normalized_name": "r_sin" + }, + { + "appid": 1066890, + "normalized_name": "automobilista 2" + }, + { + "appid": 1066900, + "normalized_name": "qomp" + }, + { + "appid": 1066930, + "normalized_name": "eternal elements" + }, + { + "appid": 1066940, + "normalized_name": "they came from the sky" + }, + { + "appid": 1066950, + "normalized_name": "gorgeous elves of ganassa" + }, + { + "appid": 1067020, + "normalized_name": "pussy 3" + }, + { + "appid": 1067030, + "normalized_name": "meta revelations ring spirits" + }, + { + "appid": 1067040, + "normalized_name": "four seals" + }, + { + "appid": 1067050, + "normalized_name": "deep dungeon gym" + }, + { + "appid": 1067060, + "normalized_name": "jacob's fantastic sexxxual voyage" + }, + { + "appid": 1067080, + "normalized_name": "bh trials" + }, + { + "appid": 1067100, + "normalized_name": "smart gecko" + }, + { + "appid": 1067110, + "normalized_name": "idle chess story" + }, + { + "appid": 1067200, + "normalized_name": "plagueworld" + }, + { + "appid": 1067220, + "normalized_name": "roboco" + }, + { + "appid": 1067250, + "normalized_name": "dead castle / 不思议魔城" + }, + { + "appid": 1067270, + "normalized_name": "容身之地铁" + }, + { + "appid": 1067280, + "normalized_name": "reflexshot" + }, + { + "appid": 1067310, + "normalized_name": "gravitas" + }, + { + "appid": 1067320, + "normalized_name": "pathogenesis overcome" + }, + { + "appid": 1067350, + "normalized_name": "sophie's dice" + }, + { + "appid": 1067360, + "normalized_name": "earth from another sun" + }, + { + "appid": 1067380, + "normalized_name": "tiny world" + }, + { + "appid": 1067390, + "normalized_name": "churchgoers" + }, + { + "appid": 1067400, + "normalized_name": "drawn down" + }, + { + "appid": 1067410, + "normalized_name": "el remedio de aldorf" + }, + { + "appid": 1067430, + "normalized_name": "beam" + }, + { + "appid": 1067440, + "normalized_name": "rollingsky2" + }, + { + "appid": 1067450, + "normalized_name": "never let me awake" + }, + { + "appid": 1067520, + "normalized_name": "call of otechestvo donbass" + }, + { + "appid": 1067540, + "normalized_name": "röki" + }, + { + "appid": 1067560, + "normalized_name": "air battlefront" + }, + { + "appid": 1067580, + "normalized_name": "bonfire" + }, + { + "appid": 1067600, + "normalized_name": "the defender farm and castle" + }, + { + "appid": 1067650, + "normalized_name": "grafi" + }, + { + "appid": 1067700, + "normalized_name": "muspell" + }, + { + "appid": 1067720, + "normalized_name": "hellsinker." + }, + { + "appid": 1067730, + "normalized_name": "digital rose" + }, + { + "appid": 1067760, + "normalized_name": "gallic wars battle simulator" + }, + { + "appid": 1067780, + "normalized_name": "dungeon pain maniac" + }, + { + "appid": 1067810, + "normalized_name": "first day" + }, + { + "appid": 1067850, + "normalized_name": "kindergarten 2" + }, + { + "appid": 1067860, + "normalized_name": "newcity" + }, + { + "appid": 1067900, + "normalized_name": "home" + }, + { + "appid": 1067930, + "normalized_name": "this was for you." + }, + { + "appid": 1068020, + "normalized_name": "milo" + }, + { + "appid": 1068050, + "normalized_name": "enzbots" + }, + { + "appid": 1068070, + "normalized_name": "lords of the lockerroom" + }, + { + "appid": 1068100, + "normalized_name": "vinios" + }, + { + "appid": 1068110, + "normalized_name": "mpaliens" + }, + { + "appid": 1068120, + "normalized_name": "crunchtime" + }, + { + "appid": 1068150, + "normalized_name": "dual family i ix" + }, + { + "appid": 1068190, + "normalized_name": "重生轮回/reborn not again" + }, + { + "appid": 1068210, + "normalized_name": "the maze vr" + }, + { + "appid": 1068220, + "normalized_name": "my little army" + }, + { + "appid": 1068320, + "normalized_name": "extreme flight" + }, + { + "appid": 1068350, + "normalized_name": "battle life online" + }, + { + "appid": 1068360, + "normalized_name": "fearmonium" + }, + { + "appid": 1068410, + "normalized_name": "super intern story" + }, + { + "appid": 1068420, + "normalized_name": "iceroyds!" + }, + { + "appid": 1068460, + "normalized_name": "stuffo the puzzle bot" + }, + { + "appid": 1068480, + "normalized_name": "eldarune tides of existence" + }, + { + "appid": 1068490, + "normalized_name": "peanut" + }, + { + "appid": 1068500, + "normalized_name": "multiverse designer" + }, + { + "appid": 1068510, + "normalized_name": "stigfinnare" + }, + { + "appid": 1068520, + "normalized_name": "muppy the bunny the danger of wishes" + }, + { + "appid": 1068540, + "normalized_name": "aurora hex pattern puzzles" + }, + { + "appid": 1068580, + "normalized_name": "here and there" + }, + { + "appid": 1068600, + "normalized_name": "waking" + }, + { + "appid": 1068640, + "normalized_name": "village feud" + }, + { + "appid": 1068680, + "normalized_name": "looking back" + }, + { + "appid": 1068700, + "normalized_name": "mystery of the ancients deadly cold collector's" + }, + { + "appid": 1068720, + "normalized_name": "partition sector" + }, + { + "appid": 1068800, + "normalized_name": "alphaman" + }, + { + "appid": 1068830, + "normalized_name": "hyena dogs of war" + }, + { + "appid": 1068840, + "normalized_name": "carpoon" + }, + { + "appid": 1068860, + "normalized_name": "非正式警探 informal detective" + }, + { + "appid": 1068900, + "normalized_name": "dear ashely" + }, + { + "appid": 1068910, + "normalized_name": "submarine attack!" + }, + { + "appid": 1068980, + "normalized_name": "it runs red" + }, + { + "appid": 1068990, + "normalized_name": "magnetic pull" + }, + { + "appid": 1069000, + "normalized_name": "rescue bomber" + }, + { + "appid": 1069030, + "normalized_name": "earthx" + }, + { + "appid": 1069050, + "normalized_name": "little dungeon stories" + }, + { + "appid": 1069080, + "normalized_name": "player goes jump" + }, + { + "appid": 1069120, + "normalized_name": "失落的地下城 lost dungeon" + }, + { + "appid": 1069130, + "normalized_name": "kakwitene vr" + }, + { + "appid": 1069140, + "normalized_name": "cthulhu's catharsis" + }, + { + "appid": 1069150, + "normalized_name": "hieroglyph prologue" + }, + { + "appid": 1069160, + "normalized_name": "skald against the black priory" + }, + { + "appid": 1069180, + "normalized_name": "drop kick zombie!" + }, + { + "appid": 1069190, + "normalized_name": "flight of nova" + }, + { + "appid": 1069210, + "normalized_name": "pulang insanity director's cut" + }, + { + "appid": 1069220, + "normalized_name": "miniturn" + }, + { + "appid": 1069230, + "normalized_name": "月影魅像 解放之羽" + }, + { + "appid": 1069250, + "normalized_name": "eslander alpha" + }, + { + "appid": 1069270, + "normalized_name": "rotatex" + }, + { + "appid": 1069290, + "normalized_name": "elpida crônicas de uma guerreira" + }, + { + "appid": 1069360, + "normalized_name": "plasticity" + }, + { + "appid": 1069380, + "normalized_name": "flaws in the people we love" + }, + { + "appid": 1069390, + "normalized_name": "morningdew farms a gay farming game" + }, + { + "appid": 1069460, + "normalized_name": "rune lord" + }, + { + "appid": 1069480, + "normalized_name": "worldwide sports fishing" + }, + { + "appid": 1069490, + "normalized_name": "hentai babes fantasy" + }, + { + "appid": 1069500, + "normalized_name": "shotgun championship" + }, + { + "appid": 1069520, + "normalized_name": "green field silver tree / 绿野白银树" + }, + { + "appid": 1069530, + "normalized_name": "narita boy" + }, + { + "appid": 1069540, + "normalized_name": "super lumberjack" + }, + { + "appid": 1069610, + "normalized_name": "exile of the gods" + }, + { + "appid": 1069640, + "normalized_name": "this land is my land" + }, + { + "appid": 1069650, + "normalized_name": "admiral age of sail" + }, + { + "appid": 1069660, + "normalized_name": "admiral dreadnoughts" + }, + { + "appid": 1069670, + "normalized_name": "eilf" + }, + { + "appid": 1069690, + "normalized_name": "rogue lords" + }, + { + "appid": 1069710, + "normalized_name": "gear city against chaos" + }, + { + "appid": 1069720, + "normalized_name": "vacation adventures cruise director 2" + }, + { + "appid": 1069740, + "normalized_name": "seen" + }, + { + "appid": 1069750, + "normalized_name": "balance breakers a battle party game" + }, + { + "appid": 1069760, + "normalized_name": "ethereal enigma" + }, + { + "appid": 1069810, + "normalized_name": "mariachi undead" + }, + { + "appid": 1069820, + "normalized_name": "fog of war the battle for cerberus" + }, + { + "appid": 1069840, + "normalized_name": "grit overworld survival" + }, + { + "appid": 1069850, + "normalized_name": "crawlco block knockers" + }, + { + "appid": 1069900, + "normalized_name": "private dance vr" + }, + { + "appid": 1069910, + "normalized_name": "factory coin mining" + }, + { + "appid": 1069920, + "normalized_name": "to the stars and beyond!" + }, + { + "appid": 1069940, + "normalized_name": "blood brothers" + }, + { + "appid": 1069960, + "normalized_name": "pythagorean complex" + }, + { + "appid": 1069970, + "normalized_name": "gabbuchi" + }, + { + "appid": 1070020, + "normalized_name": "我的纸片人女友/make butter together!" + }, + { + "appid": 1070030, + "normalized_name": "under stranger stars" + }, + { + "appid": 1070100, + "normalized_name": "heal plz" + }, + { + "appid": 1070110, + "normalized_name": "elysion" + }, + { + "appid": 1070150, + "normalized_name": "slayers for hire" + }, + { + "appid": 1070160, + "normalized_name": "avis rapida aerobatic racing" + }, + { + "appid": 1070180, + "normalized_name": "rescue team 6" + }, + { + "appid": 1070190, + "normalized_name": "spellsword cards origins" + }, + { + "appid": 1070220, + "normalized_name": "detective kobayashi a visual novel" + }, + { + "appid": 1070230, + "normalized_name": "ethanol in dungeon" + }, + { + "appid": 1070240, + "normalized_name": "peace of evil" + }, + { + "appid": 1070250, + "normalized_name": "notes" + }, + { + "appid": 1070280, + "normalized_name": "endless defence 2" + }, + { + "appid": 1070300, + "normalized_name": "power brain trainer" + }, + { + "appid": 1070320, + "normalized_name": "ring the city" + }, + { + "appid": 1070330, + "normalized_name": "russian life simulator" + }, + { + "appid": 1070350, + "normalized_name": "captain hannon the belanzano" + }, + { + "appid": 1070390, + "normalized_name": "fakespearean overdramatic" + }, + { + "appid": 1070400, + "normalized_name": "maldrin journey" + }, + { + "appid": 1070410, + "normalized_name": "nevrosa primal ritual" + }, + { + "appid": 1070430, + "normalized_name": "space duke" + }, + { + "appid": 1070440, + "normalized_name": "dark miasma" + }, + { + "appid": 1070450, + "normalized_name": "goventure typing" + }, + { + "appid": 1070460, + "normalized_name": "plague of days" + }, + { + "appid": 1070500, + "normalized_name": "he who watches" + }, + { + "appid": 1070510, + "normalized_name": "militia 2" + }, + { + "appid": 1070550, + "normalized_name": "don't escape trilogy" + }, + { + "appid": 1070580, + "normalized_name": "drift86" + }, + { + "appid": 1070590, + "normalized_name": "butterfly 2" + }, + { + "appid": 1070690, + "normalized_name": "rollercoaster vr universe" + }, + { + "appid": 1070710, + "normalized_name": "kind words (lo fi chill beats to write to)" + }, + { + "appid": 1070770, + "normalized_name": "skat 3d premium" + }, + { + "appid": 1070780, + "normalized_name": "under pressure" + }, + { + "appid": 1070790, + "normalized_name": "freshly frosted" + }, + { + "appid": 1070800, + "normalized_name": "depths of madness" + }, + { + "appid": 1070840, + "normalized_name": "quest together" + }, + { + "appid": 1070850, + "normalized_name": "today is my birthday" + }, + { + "appid": 1070860, + "normalized_name": "serin fate" + }, + { + "appid": 1070890, + "normalized_name": "zombie rush extinction" + }, + { + "appid": 1070940, + "normalized_name": "aster" + }, + { + "appid": 1070980, + "normalized_name": "astro4x" + }, + { + "appid": 1070990, + "normalized_name": "flux" + }, + { + "appid": 1071030, + "normalized_name": "hilda bewildered" + }, + { + "appid": 1071060, + "normalized_name": "kumacure" + }, + { + "appid": 1071070, + "normalized_name": "adventure of great wolf" + }, + { + "appid": 1071080, + "normalized_name": "lapya" + }, + { + "appid": 1071090, + "normalized_name": "clean vr" + }, + { + "appid": 1071120, + "normalized_name": "mushroom cats" + }, + { + "appid": 1071130, + "normalized_name": "the procession to calvary" + }, + { + "appid": 1071140, + "normalized_name": "orx" + }, + { + "appid": 1071170, + "normalized_name": "claude monet the water lily obsession" + }, + { + "appid": 1071180, + "normalized_name": "midnight feast" + }, + { + "appid": 1071190, + "normalized_name": "mineralph" + }, + { + "appid": 1071220, + "normalized_name": "after i met that catgirl my questlist got too long!" + }, + { + "appid": 1071240, + "normalized_name": "earthlingo" + }, + { + "appid": 1071260, + "normalized_name": "horizon shift '81" + }, + { + "appid": 1071280, + "normalized_name": "q a neon platformer" + }, + { + "appid": 1071290, + "normalized_name": "wild west and wizards" + }, + { + "appid": 1071310, + "normalized_name": "1 2 3... bruegel!" + }, + { + "appid": 1071320, + "normalized_name": "isle of the dead" + }, + { + "appid": 1071330, + "normalized_name": "dark fantasy 2 jigsaw puzzle" + }, + { + "appid": 1071350, + "normalized_name": "little one a visual novel" + }, + { + "appid": 1071440, + "normalized_name": "our dear kingdom" + }, + { + "appid": 1071490, + "normalized_name": "miss lisette's assassin maid" + }, + { + "appid": 1071500, + "normalized_name": "the secret of fyndemoor park" + }, + { + "appid": 1071510, + "normalized_name": "and all would cry beware!" + }, + { + "appid": 1071550, + "normalized_name": "skylight racer" + }, + { + "appid": 1071580, + "normalized_name": "topdownfarter" + }, + { + "appid": 1071600, + "normalized_name": "jetlad" + }, + { + "appid": 1071610, + "normalized_name": "bad hombre" + }, + { + "appid": 1071620, + "normalized_name": "netherverse" + }, + { + "appid": 1071640, + "normalized_name": "open ocean" + }, + { + "appid": 1071660, + "normalized_name": "ruine" + }, + { + "appid": 1071680, + "normalized_name": "hentai energy" + }, + { + "appid": 1071700, + "normalized_name": "deathmatch" + }, + { + "appid": 1071740, + "normalized_name": "pirates of first star" + }, + { + "appid": 1071760, + "normalized_name": "idunn guardians" + }, + { + "appid": 1071770, + "normalized_name": "princess's peak" + }, + { + "appid": 1071800, + "normalized_name": "caterpillar royale" + }, + { + "appid": 1071870, + "normalized_name": "biped" + }, + { + "appid": 1071880, + "normalized_name": "new yankee in king arthur's court 4" + }, + { + "appid": 1071890, + "normalized_name": "new yankee in king arthur's court 5" + }, + { + "appid": 1071900, + "normalized_name": "后遗症/sequela" + }, + { + "appid": 1071920, + "normalized_name": "👾 foreign frugglers" + }, + { + "appid": 1071940, + "normalized_name": "streamer's life" + }, + { + "appid": 1071950, + "normalized_name": "escapeez" + }, + { + "appid": 1071970, + "normalized_name": "rayball" + }, + { + "appid": 1072000, + "normalized_name": "alice in cybercity" + }, + { + "appid": 1072030, + "normalized_name": "adventure in russia road to harvetsky" + }, + { + "appid": 1072040, + "normalized_name": "panzer corps 2" + }, + { + "appid": 1072050, + "normalized_name": "core of darkness" + }, + { + "appid": 1072070, + "normalized_name": "spheres the ancient fuses" + }, + { + "appid": 1072090, + "normalized_name": "the jester's revenge (demo)" + }, + { + "appid": 1072100, + "normalized_name": "action arcade wrestling" + }, + { + "appid": 1072110, + "normalized_name": "tartapolis" + }, + { + "appid": 1072120, + "normalized_name": "hentai pussy 2" + }, + { + "appid": 1072140, + "normalized_name": "rigid chess" + }, + { + "appid": 1072150, + "normalized_name": "hedon bloodrite" + }, + { + "appid": 1072170, + "normalized_name": "order up vr" + }, + { + "appid": 1072180, + "normalized_name": "grim facade hidden sins collector's" + }, + { + "appid": 1072190, + "normalized_name": "crossfire legion" + }, + { + "appid": 1072210, + "normalized_name": "strike master apocalypse" + }, + { + "appid": 1072250, + "normalized_name": "bot net" + }, + { + "appid": 1072270, + "normalized_name": "k 9 dog job" + }, + { + "appid": 1072280, + "normalized_name": "cossanox" + }, + { + "appid": 1072290, + "normalized_name": "ravenlok legendary" + }, + { + "appid": 1072300, + "normalized_name": "echo generation midnight" + }, + { + "appid": 1072310, + "normalized_name": "kurr snaga" + }, + { + "appid": 1072340, + "normalized_name": "vr takibi" + }, + { + "appid": 1072350, + "normalized_name": "america's retribution term 2" + }, + { + "appid": 1072390, + "normalized_name": "birdgut" + }, + { + "appid": 1072400, + "normalized_name": "outrider mako" + }, + { + "appid": 1072420, + "normalized_name": "dragon quest builders 2" + }, + { + "appid": 1072480, + "normalized_name": "the fisherman fishing planet" + }, + { + "appid": 1072500, + "normalized_name": "ao tennis 2" + }, + { + "appid": 1072530, + "normalized_name": "sheaf together ep" + }, + { + "appid": 1072550, + "normalized_name": "brassheart" + }, + { + "appid": 1072590, + "normalized_name": "game of puzzles dragons" + }, + { + "appid": 1072600, + "normalized_name": "until september" + }, + { + "appid": 1072610, + "normalized_name": "avocuddle" + }, + { + "appid": 1072620, + "normalized_name": "weakless" + }, + { + "appid": 1072640, + "normalized_name": "beat blast" + }, + { + "appid": 1072710, + "normalized_name": "soviet jump game" + }, + { + "appid": 1072720, + "normalized_name": "smysl 2 gravity" + }, + { + "appid": 1072750, + "normalized_name": "that flipping mountain" + }, + { + "appid": 1072760, + "normalized_name": "nick logic for kids" + }, + { + "appid": 1072790, + "normalized_name": "nekodeito" + }, + { + "appid": 1072840, + "normalized_name": "star shift legacy" + }, + { + "appid": 1072850, + "normalized_name": "riflerange" + }, + { + "appid": 1072860, + "normalized_name": "real scary" + }, + { + "appid": 1072870, + "normalized_name": "random war" + }, + { + "appid": 1072890, + "normalized_name": "oneironaut" + }, + { + "appid": 1072910, + "normalized_name": "drill man rumble" + }, + { + "appid": 1072920, + "normalized_name": "homework is crazy / 作业疯了" + }, + { + "appid": 1072930, + "normalized_name": "blood magic" + }, + { + "appid": 1073020, + "normalized_name": "in the beginning" + }, + { + "appid": 1073040, + "normalized_name": "retro pixel racers" + }, + { + "appid": 1073050, + "normalized_name": "happy geography fun" + }, + { + "appid": 1073060, + "normalized_name": "lonely skies" + }, + { + "appid": 1073080, + "normalized_name": "tutututu tea party" + }, + { + "appid": 1073100, + "normalized_name": "speedrun squad" + }, + { + "appid": 1073120, + "normalized_name": "humanoid huntress" + }, + { + "appid": 1073130, + "normalized_name": "rivals squad" + }, + { + "appid": 1073140, + "normalized_name": "castra" + }, + { + "appid": 1073210, + "normalized_name": "mermaid colony" + }, + { + "appid": 1073220, + "normalized_name": "teeth brushing simulator" + }, + { + "appid": 1073230, + "normalized_name": "hentai babes waifu" + }, + { + "appid": 1073280, + "normalized_name": "spy tactics" + }, + { + "appid": 1073310, + "normalized_name": "hentai zodiac puzzle" + }, + { + "appid": 1073320, + "normalized_name": "meteorfall krumit's tale" + }, + { + "appid": 1073350, + "normalized_name": "curves" + }, + { + "appid": 1073370, + "normalized_name": "inori's house" + }, + { + "appid": 1073380, + "normalized_name": "yellowtoy" + }, + { + "appid": 1073390, + "normalized_name": "aircar" + }, + { + "appid": 1073400, + "normalized_name": "tiger tank 59 ⅰ winter assault" + }, + { + "appid": 1073410, + "normalized_name": "boxing champs" + }, + { + "appid": 1073440, + "normalized_name": "コイカツ! / koikatsu party" + }, + { + "appid": 1073450, + "normalized_name": "an update is pending" + }, + { + "appid": 1073490, + "normalized_name": "monster x monster" + }, + { + "appid": 1073600, + "normalized_name": "地城蔷薇" + }, + { + "appid": 1073610, + "normalized_name": "miss cat" + }, + { + "appid": 1073620, + "normalized_name": "not so heart" + }, + { + "appid": 1073640, + "normalized_name": "jetx space" + }, + { + "appid": 1073710, + "normalized_name": "legion of scorn" + }, + { + "appid": 1073740, + "normalized_name": "cubito mayhem" + }, + { + "appid": 1073770, + "normalized_name": "xanarthraxia" + }, + { + "appid": 1073790, + "normalized_name": "the astrolarix" + }, + { + "appid": 1073810, + "normalized_name": "shapik the moon quest" + }, + { + "appid": 1073820, + "normalized_name": "love sam" + }, + { + "appid": 1073840, + "normalized_name": "nocked! true tales of robin hood" + }, + { + "appid": 1073860, + "normalized_name": "idle guardians" + }, + { + "appid": 1073870, + "normalized_name": "self shot" + }, + { + "appid": 1073890, + "normalized_name": "dragon fight vr" + }, + { + "appid": 1073900, + "normalized_name": "brukel" + }, + { + "appid": 1073910, + "normalized_name": "before we leave" + }, + { + "appid": 1073960, + "normalized_name": "exemption" + }, + { + "appid": 1073970, + "normalized_name": "global steel" + }, + { + "appid": 1073990, + "normalized_name": "the new universes ~ eine neue reise beginnt ~ chapter 1" + }, + { + "appid": 1074030, + "normalized_name": "melon journey bittersweet memories" + }, + { + "appid": 1074040, + "normalized_name": "the red prison" + }, + { + "appid": 1074060, + "normalized_name": "" + }, + { + "appid": 1074070, + "normalized_name": "dust to the end" + }, + { + "appid": 1074080, + "normalized_name": "senran kagura peach ball" + }, + { + "appid": 1074150, + "normalized_name": "little savior / リトルセイバー" + }, + { + "appid": 1074170, + "normalized_name": "self" + }, + { + "appid": 1074180, + "normalized_name": "smart city plan" + }, + { + "appid": 1074190, + "normalized_name": "dragon spirits 龙魂:学院奇闻" + }, + { + "appid": 1074220, + "normalized_name": "the cult marduk's longest night" + }, + { + "appid": 1074250, + "normalized_name": "kunoichi" + }, + { + "appid": 1074280, + "normalized_name": "oirbo" + }, + { + "appid": 1074300, + "normalized_name": "dragon castle the board game" + }, + { + "appid": 1074310, + "normalized_name": "the real man summer championship 2019" + }, + { + "appid": 1074330, + "normalized_name": "minesweeper peak vr" + }, + { + "appid": 1074340, + "normalized_name": "viking sisters" + }, + { + "appid": 1074350, + "normalized_name": "that red button" + }, + { + "appid": 1074370, + "normalized_name": "spherecraft" + }, + { + "appid": 1074390, + "normalized_name": "scikor final scale" + }, + { + "appid": 1074400, + "normalized_name": "herman 2" + }, + { + "appid": 1074440, + "normalized_name": "iron ruler" + }, + { + "appid": 1074490, + "normalized_name": "finger derpy" + }, + { + "appid": 1074500, + "normalized_name": "cranked up" + }, + { + "appid": 1074510, + "normalized_name": "beekeeper" + }, + { + "appid": 1074520, + "normalized_name": "a sceptic's guide to magic" + }, + { + "appid": 1074530, + "normalized_name": "後藤一家の孤島殺人事件 goto family's ''the island murder case''" + }, + { + "appid": 1074550, + "normalized_name": "pon para and the great southern labyrinth" + }, + { + "appid": 1074610, + "normalized_name": "collapsed" + }, + { + "appid": 1074620, + "normalized_name": "adore" + }, + { + "appid": 1074630, + "normalized_name": "call of unity" + }, + { + "appid": 1074640, + "normalized_name": "diorama dungeoncrawl" + }, + { + "appid": 1074670, + "normalized_name": "trial by teng a twilight path adventure" + }, + { + "appid": 1074690, + "normalized_name": "robot female hero 2" + }, + { + "appid": 1074700, + "normalized_name": "witches' legacy the charleston curse collector's" + }, + { + "appid": 1074740, + "normalized_name": "hostile takeover" + }, + { + "appid": 1074770, + "normalized_name": "the rescue of mermaids" + }, + { + "appid": 1074830, + "normalized_name": "alcyone the last city" + }, + { + "appid": 1074860, + "normalized_name": "click defense" + }, + { + "appid": 1074960, + "normalized_name": "zombie apocalypse mini golf (vr)" + }, + { + "appid": 1074990, + "normalized_name": "twisty tumble (vr)" + }, + { + "appid": 1075000, + "normalized_name": "beyond the stars vr" + }, + { + "appid": 1075080, + "normalized_name": "falcon age" + }, + { + "appid": 1075140, + "normalized_name": "super friends party" + }, + { + "appid": 1075170, + "normalized_name": "weaving tides" + }, + { + "appid": 1075190, + "normalized_name": "a game of thrones the board game digital" + }, + { + "appid": 1075200, + "normalized_name": "tohu" + }, + { + "appid": 1075350, + "normalized_name": "the cat in 14a" + }, + { + "appid": 1075370, + "normalized_name": "skywalk" + }, + { + "appid": 1075390, + "normalized_name": "cafe crush" + }, + { + "appid": 1075400, + "normalized_name": "doctor who the edge of time" + }, + { + "appid": 1075430, + "normalized_name": "cowpocalypse episode 0" + }, + { + "appid": 1075480, + "normalized_name": "summer rush" + }, + { + "appid": 1075550, + "normalized_name": "bite the bullet" + }, + { + "appid": 1075570, + "normalized_name": "transcender starship" + }, + { + "appid": 1075580, + "normalized_name": "queen city chaos" + }, + { + "appid": 1075740, + "normalized_name": "banners of ruin" + }, + { + "appid": 1075750, + "normalized_name": "reflections of life equilibrium collector's" + }, + { + "appid": 1075790, + "normalized_name": "fox and bunny" + }, + { + "appid": 1075830, + "normalized_name": "little medusa" + }, + { + "appid": 1075880, + "normalized_name": "elemental brawl" + }, + { + "appid": 1075900, + "normalized_name": "gator brigade" + }, + { + "appid": 1075910, + "normalized_name": "space bomb" + }, + { + "appid": 1075950, + "normalized_name": "disintegration technical beta" + }, + { + "appid": 1075960, + "normalized_name": "simple fear" + }, + { + "appid": 1075980, + "normalized_name": "ninnindays" + }, + { + "appid": 1076020, + "normalized_name": "viro move" + }, + { + "appid": 1076040, + "normalized_name": "welcome to... chichester ovn 1 the beach" + }, + { + "appid": 1076050, + "normalized_name": "run jump rabbit turtle" + }, + { + "appid": 1076060, + "normalized_name": "stick ninja" + }, + { + "appid": 1076070, + "normalized_name": "alice and you in the planet of numbers" + }, + { + "appid": 1076100, + "normalized_name": "illusion of l'phalcia" + }, + { + "appid": 1076110, + "normalized_name": "asdivine menace" + }, + { + "appid": 1076120, + "normalized_name": "dwarven skykeep" + }, + { + "appid": 1076130, + "normalized_name": "fox soldier" + }, + { + "appid": 1076140, + "normalized_name": "super indie square" + }, + { + "appid": 1076160, + "normalized_name": "command modern operations" + }, + { + "appid": 1076200, + "normalized_name": "roguebook" + }, + { + "appid": 1076210, + "normalized_name": "who wants to strip this babe? streamer girl" + }, + { + "appid": 1076230, + "normalized_name": "omnifootman" + }, + { + "appid": 1076300, + "normalized_name": "the battles of spwak" + }, + { + "appid": 1076350, + "normalized_name": "sky realm essences" + }, + { + "appid": 1076360, + "normalized_name": "square weapons dungeon" + }, + { + "appid": 1076410, + "normalized_name": "vrrcc" + }, + { + "appid": 1076450, + "normalized_name": "grimalkin solar defense force" + }, + { + "appid": 1076480, + "normalized_name": "dream flash" + }, + { + "appid": 1076500, + "normalized_name": "valgrave immortal plains" + }, + { + "appid": 1076530, + "normalized_name": "drop" + }, + { + "appid": 1076550, + "normalized_name": "samurai shodown v special / サムライスピリッツ零スペシャル" + }, + { + "appid": 1076600, + "normalized_name": "red gate" + }, + { + "appid": 1076610, + "normalized_name": "guardian of the future" + }, + { + "appid": 1076620, + "normalized_name": "svoboda 1945 liberation" + }, + { + "appid": 1076640, + "normalized_name": "cricket captain 2019" + }, + { + "appid": 1076720, + "normalized_name": "unleaving" + }, + { + "appid": 1076730, + "normalized_name": "attached" + }, + { + "appid": 1076750, + "normalized_name": "dream engines nomad cities" + }, + { + "appid": 1076770, + "normalized_name": "acardshooter" + }, + { + "appid": 1076790, + "normalized_name": "cube runner 2" + }, + { + "appid": 1076830, + "normalized_name": "quest for wartorn brotherhood" + }, + { + "appid": 1076880, + "normalized_name": "air marty" + }, + { + "appid": 1076920, + "normalized_name": "generals & rulers" + }, + { + "appid": 1076940, + "normalized_name": "contract work" + }, + { + "appid": 1076950, + "normalized_name": "sniper commando attack" + }, + { + "appid": 1076970, + "normalized_name": "the legend of paco the jungle duck" + }, + { + "appid": 1077010, + "normalized_name": "rock star simulator" + }, + { + "appid": 1077030, + "normalized_name": "chernomeat survival game" + }, + { + "appid": 1077080, + "normalized_name": "börnies journey" + }, + { + "appid": 1077090, + "normalized_name": "bucket knight" + }, + { + "appid": 1077110, + "normalized_name": "kill the censored 2" + }, + { + "appid": 1077130, + "normalized_name": "revenge" + }, + { + "appid": 1077150, + "normalized_name": "planet jump 2" + }, + { + "appid": 1077160, + "normalized_name": "game of puzzles animals" + }, + { + "appid": 1077200, + "normalized_name": "attack of the retro bots" + }, + { + "appid": 1077210, + "normalized_name": "c.h.a.s.e.d." + }, + { + "appid": 1077230, + "normalized_name": "dissolving" + }, + { + "appid": 1077250, + "normalized_name": "age of pixels" + }, + { + "appid": 1077270, + "normalized_name": "anilife an animal survival adventure" + }, + { + "appid": 1077290, + "normalized_name": "supersmash physics battle" + }, + { + "appid": 1077300, + "normalized_name": "cybermedic simulator" + }, + { + "appid": 1077320, + "normalized_name": "sarah you are way too heavy" + }, + { + "appid": 1077340, + "normalized_name": "downtown drift" + }, + { + "appid": 1077360, + "normalized_name": "sub chase online" + }, + { + "appid": 1077390, + "normalized_name": "cannibal chickens" + }, + { + "appid": 1077410, + "normalized_name": "hentai sweet girls" + }, + { + "appid": 1077420, + "normalized_name": "ambidangerous" + }, + { + "appid": 1077430, + "normalized_name": "there's a butcher around" + }, + { + "appid": 1077450, + "normalized_name": "wally and the fantastic predators" + }, + { + "appid": 1077470, + "normalized_name": "syntherapy" + }, + { + "appid": 1077490, + "normalized_name": "guns of midnight" + }, + { + "appid": 1077510, + "normalized_name": "breaking box" + }, + { + "appid": 1077520, + "normalized_name": "the light remake" + }, + { + "appid": 1077530, + "normalized_name": "super build" + }, + { + "appid": 1077540, + "normalized_name": "酒店二 the hotel 2" + }, + { + "appid": 1077550, + "normalized_name": "jump with friends" + }, + { + "appid": 1077560, + "normalized_name": "무연" + }, + { + "appid": 1077590, + "normalized_name": "esothe" + }, + { + "appid": 1077600, + "normalized_name": "song beater quite my tempo!" + }, + { + "appid": 1077630, + "normalized_name": "australian football coach 2020" + }, + { + "appid": 1077680, + "normalized_name": "madcowballs2" + }, + { + "appid": 1077730, + "normalized_name": "hrdina" + }, + { + "appid": 1077740, + "normalized_name": "anomaly hunter prologue" + }, + { + "appid": 1077760, + "normalized_name": "agent 00111" + }, + { + "appid": 1077850, + "normalized_name": "grave of the petrified" + }, + { + "appid": 1077860, + "normalized_name": "wardialler" + }, + { + "appid": 1077880, + "normalized_name": "hex kingdoms" + }, + { + "appid": 1077890, + "normalized_name": "catch a duck" + }, + { + "appid": 1077970, + "normalized_name": "dry drowning" + }, + { + "appid": 1078040, + "normalized_name": "brg's red riding hood" + }, + { + "appid": 1078060, + "normalized_name": "brg's the stonecutter" + }, + { + "appid": 1078080, + "normalized_name": "disonante" + }, + { + "appid": 1078130, + "normalized_name": "cannon arena" + }, + { + "appid": 1078140, + "normalized_name": "hijos del invierno" + }, + { + "appid": 1078200, + "normalized_name": "spirits abyss" + }, + { + "appid": 1078210, + "normalized_name": "extinction protocol" + }, + { + "appid": 1078240, + "normalized_name": "red star raider" + }, + { + "appid": 1078270, + "normalized_name": "sprocket rocket rumble" + }, + { + "appid": 1078280, + "normalized_name": "ruins seeker" + }, + { + "appid": 1078320, + "normalized_name": "public defense corp" + }, + { + "appid": 1078330, + "normalized_name": "liz ~the tower and the grimoire~" + }, + { + "appid": 1078340, + "normalized_name": "mongrel" + }, + { + "appid": 1078350, + "normalized_name": "ambrosia" + }, + { + "appid": 1078360, + "normalized_name": "to your stations!" + }, + { + "appid": 1078370, + "normalized_name": "succubus x saint" + }, + { + "appid": 1078380, + "normalized_name": "zefira" + }, + { + "appid": 1078390, + "normalized_name": "the inheritors of the new world" + }, + { + "appid": 1078420, + "normalized_name": "critters for sale" + }, + { + "appid": 1078450, + "normalized_name": "falnarion tactics ii" + }, + { + "appid": 1078460, + "normalized_name": "cops kissing each other" + }, + { + "appid": 1078490, + "normalized_name": "seed hunter 猎源" + }, + { + "appid": 1078500, + "normalized_name": "nocturnous" + }, + { + "appid": 1078510, + "normalized_name": "alluris" + }, + { + "appid": 1078520, + "normalized_name": "ghost stories" + }, + { + "appid": 1078570, + "normalized_name": "beat reality" + }, + { + "appid": 1078590, + "normalized_name": "虚幻深渊 dream abyss" + }, + { + "appid": 1078610, + "normalized_name": "4th era the runechild" + }, + { + "appid": 1078640, + "normalized_name": "eggoria" + }, + { + "appid": 1078670, + "normalized_name": "another dawn" + }, + { + "appid": 1078730, + "normalized_name": "soccer manager 2020" + }, + { + "appid": 1078750, + "normalized_name": "duskless the clockwork army" + }, + { + "appid": 1078760, + "normalized_name": "motorcycle mechanic simulator 2021" + }, + { + "appid": 1078770, + "normalized_name": "new day cataclysm" + }, + { + "appid": 1078780, + "normalized_name": "martians vs robots" + }, + { + "appid": 1078800, + "normalized_name": "u boot the board game" + }, + { + "appid": 1078820, + "normalized_name": "horresco referens" + }, + { + "appid": 1078870, + "normalized_name": "sheep.io" + }, + { + "appid": 1078920, + "normalized_name": "main assembly" + }, + { + "appid": 1078950, + "normalized_name": "打豹虎 spider derby" + }, + { + "appid": 1078960, + "normalized_name": "the saga of nino's transmigration (尼諾的異世界物語 ~ 光與影與各自的信仰 ~)" + }, + { + "appid": 1078970, + "normalized_name": "局外人 l'etranger" + }, + { + "appid": 1079000, + "normalized_name": "ord." + }, + { + "appid": 1079050, + "normalized_name": "laser paddles" + }, + { + "appid": 1079130, + "normalized_name": "hentai cowgirl" + }, + { + "appid": 1079160, + "normalized_name": "東方鬼形獣 〜 wily beast and weakest creature." + }, + { + "appid": 1079200, + "normalized_name": "piko piko" + }, + { + "appid": 1079210, + "normalized_name": "spark the electric jester 2" + }, + { + "appid": 1079230, + "normalized_name": "himno the silent melody" + }, + { + "appid": 1079260, + "normalized_name": "fireworks mania an explosive simulator" + }, + { + "appid": 1079290, + "normalized_name": "lust for lucre" + }, + { + "appid": 1079300, + "normalized_name": "goblin keep" + }, + { + "appid": 1079310, + "normalized_name": "elemental girls" + }, + { + "appid": 1079320, + "normalized_name": "dragon extinction" + }, + { + "appid": 1079330, + "normalized_name": "カナリアの幸福理論" + }, + { + "appid": 1079340, + "normalized_name": "homicide" + }, + { + "appid": 1079430, + "normalized_name": "surrounded by mice" + }, + { + "appid": 1079440, + "normalized_name": "bad business" + }, + { + "appid": 1079450, + "normalized_name": "escape lala 2 retro point and click adventure" + }, + { + "appid": 1079470, + "normalized_name": "chronac escape" + }, + { + "appid": 1079480, + "normalized_name": "beijing courier simulator" + }, + { + "appid": 1079500, + "normalized_name": "sky harrier alpha code" + }, + { + "appid": 1079510, + "normalized_name": "sumerians" + }, + { + "appid": 1079550, + "normalized_name": "escape again" + }, + { + "appid": 1079560, + "normalized_name": "zero strain" + }, + { + "appid": 1079570, + "normalized_name": "staden under gamlestaden" + }, + { + "appid": 1079600, + "normalized_name": "e06 anomaly" + }, + { + "appid": 1079610, + "normalized_name": "counterspell" + }, + { + "appid": 1079620, + "normalized_name": "infinity battlescape" + }, + { + "appid": 1079630, + "normalized_name": "death jump" + }, + { + "appid": 1079720, + "normalized_name": "puzzle" + }, + { + "appid": 1079730, + "normalized_name": "ehandcipation" + }, + { + "appid": 1079740, + "normalized_name": "to the dark tower" + }, + { + "appid": 1079790, + "normalized_name": "orc colony" + }, + { + "appid": 1079800, + "normalized_name": "pistol whip" + }, + { + "appid": 1079810, + "normalized_name": "kreisreise" + }, + { + "appid": 1079830, + "normalized_name": "cris tales" + }, + { + "appid": 1079860, + "normalized_name": "where shadows slumber" + }, + { + "appid": 1079870, + "normalized_name": "otiiz's adventure 2" + }, + { + "appid": 1079890, + "normalized_name": "happy world" + }, + { + "appid": 1079910, + "normalized_name": "bloxor" + }, + { + "appid": 1079940, + "normalized_name": "hippocampus" + }, + { + "appid": 1079970, + "normalized_name": "mundus impossible universe 2" + }, + { + "appid": 1080010, + "normalized_name": "witchtastic" + }, + { + "appid": 1080020, + "normalized_name": "electrician simulator" + }, + { + "appid": 1080040, + "normalized_name": "moo lander" + }, + { + "appid": 1080060, + "normalized_name": "axan ships low poly" + }, + { + "appid": 1080090, + "normalized_name": "project one プロジェクト・ワン ~ハロルドはつらいよ~" + }, + { + "appid": 1080120, + "normalized_name": "finaladventure" + }, + { + "appid": 1080130, + "normalized_name": "quietmansion2" + }, + { + "appid": 1080150, + "normalized_name": "rocket clicker" + }, + { + "appid": 1080180, + "normalized_name": "love is in the space" + }, + { + "appid": 1080200, + "normalized_name": "aries" + }, + { + "appid": 1080240, + "normalized_name": "it's raining fists and metal" + }, + { + "appid": 1080250, + "normalized_name": "fool!" + }, + { + "appid": 1080290, + "normalized_name": "tシミュレータ" + }, + { + "appid": 1080330, + "normalized_name": "super mega space blaster special" + }, + { + "appid": 1080360, + "normalized_name": "rampart tactics" + }, + { + "appid": 1080370, + "normalized_name": "dive with sylvia vr" + }, + { + "appid": 1080410, + "normalized_name": "bake 'n switch" + }, + { + "appid": 1080440, + "normalized_name": "dark blood" + }, + { + "appid": 1080450, + "normalized_name": "wayward strand" + }, + { + "appid": 1080630, + "normalized_name": "hero express" + }, + { + "appid": 1080680, + "normalized_name": "cold shell" + }, + { + "appid": 1080690, + "normalized_name": "lovely girl puzzle" + }, + { + "appid": 1080700, + "normalized_name": "swordbreaker origins" + }, + { + "appid": 1080750, + "normalized_name": "mutazione" + }, + { + "appid": 1080780, + "normalized_name": "reyal" + }, + { + "appid": 1080930, + "normalized_name": "the incredible adventures of super panda" + }, + { + "appid": 1080950, + "normalized_name": "kaos" + }, + { + "appid": 1080960, + "normalized_name": "nature zen" + }, + { + "appid": 1080990, + "normalized_name": "叙事曲2:星空下的诺言 / ballade2 the celestial promise" + }, + { + "appid": 1081020, + "normalized_name": "blockus' adventures" + }, + { + "appid": 1081030, + "normalized_name": "streetroyalez" + }, + { + "appid": 1081040, + "normalized_name": "twin peaks vr" + }, + { + "appid": 1081070, + "normalized_name": "gooberries" + }, + { + "appid": 1081090, + "normalized_name": "h chan girl" + }, + { + "appid": 1081110, + "normalized_name": "milly the dog" + }, + { + "appid": 1081120, + "normalized_name": "hovrboard" + }, + { + "appid": 1081140, + "normalized_name": "zombies war" + }, + { + "appid": 1081160, + "normalized_name": "into the core" + }, + { + "appid": 1081170, + "normalized_name": "strashilka" + }, + { + "appid": 1081190, + "normalized_name": "ninja roquinexu" + }, + { + "appid": 1081200, + "normalized_name": "truck the system" + }, + { + "appid": 1081240, + "normalized_name": "scarytales all hail king mongo" + }, + { + "appid": 1081250, + "normalized_name": "giant life" + }, + { + "appid": 1081260, + "normalized_name": "crisis of the middle ages" + }, + { + "appid": 1081300, + "normalized_name": "sacre bleu" + }, + { + "appid": 1081320, + "normalized_name": "aura" + }, + { + "appid": 1081340, + "normalized_name": "aliens and umbrellas" + }, + { + "appid": 1081350, + "normalized_name": "master cube" + }, + { + "appid": 1081410, + "normalized_name": "gourmelee" + }, + { + "appid": 1081420, + "normalized_name": "altorius" + }, + { + "appid": 1081430, + "normalized_name": "tale of starship" + }, + { + "appid": 1081450, + "normalized_name": "criminal dissidia" + }, + { + "appid": 1081460, + "normalized_name": "princessguardiansparodyh" + }, + { + "appid": 1081470, + "normalized_name": "born of fire" + }, + { + "appid": 1081490, + "normalized_name": "hyper bit chasm" + }, + { + "appid": 1081500, + "normalized_name": "side decide" + }, + { + "appid": 1081510, + "normalized_name": "she sees red interactive movie" + }, + { + "appid": 1081540, + "normalized_name": "crazy beat's junction" + }, + { + "appid": 1081550, + "normalized_name": "caliper 2" + }, + { + "appid": 1081560, + "normalized_name": "gold express" + }, + { + "appid": 1081590, + "normalized_name": "quest? quest!" + }, + { + "appid": 1081600, + "normalized_name": "fractal gallery vr" + }, + { + "appid": 1081630, + "normalized_name": "yet another level" + }, + { + "appid": 1081650, + "normalized_name": "celaria" + }, + { + "appid": 1081670, + "normalized_name": "fitforce" + }, + { + "appid": 1081710, + "normalized_name": "most correct football simulator" + }, + { + "appid": 1081720, + "normalized_name": "robo run" + }, + { + "appid": 1081740, + "normalized_name": "easter clicker idle manager" + }, + { + "appid": 1081760, + "normalized_name": "baff" + }, + { + "appid": 1081780, + "normalized_name": "aisu paradise" + }, + { + "appid": 1081800, + "normalized_name": "101010" + }, + { + "appid": 1081810, + "normalized_name": "时之扉" + }, + { + "appid": 1081820, + "normalized_name": "the plight" + }, + { + "appid": 1081830, + "normalized_name": "blood and mead" + }, + { + "appid": 1081840, + "normalized_name": "anonymous || agony" + }, + { + "appid": 1081850, + "normalized_name": "artemis god queen of the hunt" + }, + { + "appid": 1081870, + "normalized_name": "warforwards" + }, + { + "appid": 1081880, + "normalized_name": "死亡旅店 / death inn" + }, + { + "appid": 1081890, + "normalized_name": "bonvoyage!" + }, + { + "appid": 1081910, + "normalized_name": "fancy skiing speed" + }, + { + "appid": 1081960, + "normalized_name": "il sole e la luna" + }, + { + "appid": 1081990, + "normalized_name": "jwing the next puzzle game" + }, + { + "appid": 1082000, + "normalized_name": "a night at the races" + }, + { + "appid": 1082110, + "normalized_name": "hentainya" + }, + { + "appid": 1082180, + "normalized_name": "tt isle of man ride on the edge 2" + }, + { + "appid": 1082190, + "normalized_name": "elroy and the aliens" + }, + { + "appid": 1082200, + "normalized_name": "astro the beginning" + }, + { + "appid": 1082220, + "normalized_name": "outbreak epidemic" + }, + { + "appid": 1082340, + "normalized_name": "unrivaled" + }, + { + "appid": 1082410, + "normalized_name": "lost in tropics" + }, + { + "appid": 1082430, + "normalized_name": "before your eyes" + }, + { + "appid": 1082440, + "normalized_name": "hack.88" + }, + { + "appid": 1082450, + "normalized_name": "gold hunter" + }, + { + "appid": 1082460, + "normalized_name": "ninja turdle" + }, + { + "appid": 1082470, + "normalized_name": "mystery case files key to ravenhearst collector's" + }, + { + "appid": 1082480, + "normalized_name": "buzz kill zero (old version)" + }, + { + "appid": 1082490, + "normalized_name": "hentai girls christmas" + }, + { + "appid": 1082500, + "normalized_name": "grim tales the vengeance collector's" + }, + { + "appid": 1082520, + "normalized_name": "tower ascend" + }, + { + "appid": 1082620, + "normalized_name": "philgood" + }, + { + "appid": 1082650, + "normalized_name": "link the animals" + }, + { + "appid": 1082680, + "normalized_name": "the walking dead onslaught" + }, + { + "appid": 1082690, + "normalized_name": "army of tentacles (not) a cthulhu dating sim 2" + }, + { + "appid": 1082700, + "normalized_name": "dinosaur shakespeare to date or not to date?" + }, + { + "appid": 1082710, + "normalized_name": "bug fables the everlasting sapling" + }, + { + "appid": 1082720, + "normalized_name": "click legends" + }, + { + "appid": 1082730, + "normalized_name": "niara rebellion of the king visual novel rpg" + }, + { + "appid": 1082750, + "normalized_name": "wacktory" + }, + { + "appid": 1082760, + "normalized_name": "paper shakespeare cthulhu coriolanus" + }, + { + "appid": 1082770, + "normalized_name": "surviving medieval" + }, + { + "appid": 1082780, + "normalized_name": "adm 2(when worlds collide)" + }, + { + "appid": 1082860, + "normalized_name": "simgirls lovemore college rpg" + }, + { + "appid": 1082890, + "normalized_name": "viking vengeance" + }, + { + "appid": 1082930, + "normalized_name": "the signifier director's cut" + }, + { + "appid": 1082940, + "normalized_name": "pop'n'splat" + }, + { + "appid": 1082970, + "normalized_name": "archaelund" + }, + { + "appid": 1082990, + "normalized_name": "d.a.m.a.g.e" + }, + { + "appid": 1083000, + "normalized_name": "the last town" + }, + { + "appid": 1083070, + "normalized_name": "sapper defuse the bomb simulator" + }, + { + "appid": 1083190, + "normalized_name": "disc creatures" + }, + { + "appid": 1083210, + "normalized_name": "符文女孩/rune girl" + }, + { + "appid": 1083230, + "normalized_name": "pokeypoke" + }, + { + "appid": 1083240, + "normalized_name": "creep rides" + }, + { + "appid": 1083260, + "normalized_name": "wingsuit gudvangen" + }, + { + "appid": 1083270, + "normalized_name": "heroofmetal episode01" + }, + { + "appid": 1083290, + "normalized_name": "life of a capitalist" + }, + { + "appid": 1083300, + "normalized_name": "drill deal – oil tycoon" + }, + { + "appid": 1083310, + "normalized_name": "outbuddies dx" + }, + { + "appid": 1083350, + "normalized_name": "srx" + }, + { + "appid": 1083380, + "normalized_name": "the stars between us" + }, + { + "appid": 1083410, + "normalized_name": "coast team" + }, + { + "appid": 1083420, + "normalized_name": "commander babes" + }, + { + "appid": 1083430, + "normalized_name": "snow jewels" + }, + { + "appid": 1083450, + "normalized_name": "tricky fox" + }, + { + "appid": 1083460, + "normalized_name": "rencia" + }, + { + "appid": 1083480, + "normalized_name": "armadusa" + }, + { + "appid": 1083490, + "normalized_name": "presidential dating simulator" + }, + { + "appid": 1083500, + "normalized_name": "planetside 2 test" + }, + { + "appid": 1083580, + "normalized_name": "orr" + }, + { + "appid": 1083600, + "normalized_name": "grow defense" + }, + { + "appid": 1083610, + "normalized_name": "life ed" + }, + { + "appid": 1083650, + "normalized_name": "super naughty maid" + }, + { + "appid": 1083700, + "normalized_name": "3d text adventure" + }, + { + "appid": 1083750, + "normalized_name": "yet another hero legend 英雄传说又一则" + }, + { + "appid": 1083760, + "normalized_name": "knights of the chalice" + }, + { + "appid": 1083790, + "normalized_name": "deathbulge battle of the bands" + }, + { + "appid": 1083800, + "normalized_name": "glitch arena" + }, + { + "appid": 1083810, + "normalized_name": "war solution casual math game" + }, + { + "appid": 1083820, + "normalized_name": "eternal dread 2" + }, + { + "appid": 1083850, + "normalized_name": "fantasy hero manager" + }, + { + "appid": 1083870, + "normalized_name": "countryballs heroes" + }, + { + "appid": 1083880, + "normalized_name": "princess & conquest" + }, + { + "appid": 1083990, + "normalized_name": "yume puzzle" + }, + { + "appid": 1084010, + "normalized_name": "bombuzal" + }, + { + "appid": 1084020, + "normalized_name": "theotown" + }, + { + "appid": 1084080, + "normalized_name": "save daddy trump" + }, + { + "appid": 1084090, + "normalized_name": "kerfuffight" + }, + { + "appid": 1084120, + "normalized_name": "hindsight 20/20 wrath of the raakshasa" + }, + { + "appid": 1084130, + "normalized_name": "asterelis" + }, + { + "appid": 1084160, + "normalized_name": "jagged alliance 3" + }, + { + "appid": 1084220, + "normalized_name": "cavity busters" + }, + { + "appid": 1084350, + "normalized_name": "fear of dark" + }, + { + "appid": 1084360, + "normalized_name": "mister burnhouse" + }, + { + "appid": 1084380, + "normalized_name": "errand boy" + }, + { + "appid": 1084420, + "normalized_name": "the first day" + }, + { + "appid": 1084440, + "normalized_name": "earth rising" + }, + { + "appid": 1084480, + "normalized_name": "wanna survive" + }, + { + "appid": 1084520, + "normalized_name": "雀姬/姫麻雀" + }, + { + "appid": 1084530, + "normalized_name": "zone 10" + }, + { + "appid": 1084560, + "normalized_name": "cumulus" + }, + { + "appid": 1084570, + "normalized_name": "the lar" + }, + { + "appid": 1084600, + "normalized_name": "my time at sandrock" + }, + { + "appid": 1084640, + "normalized_name": "chicken police paint it red!" + }, + { + "appid": 1084710, + "normalized_name": "climbros" + }, + { + "appid": 1084730, + "normalized_name": "southbound" + }, + { + "appid": 1084770, + "normalized_name": "gregor hills haunted hospital" + }, + { + "appid": 1084790, + "normalized_name": "warplan" + }, + { + "appid": 1084810, + "normalized_name": "awesome jazz clicker" + }, + { + "appid": 1084830, + "normalized_name": "midknight story" + }, + { + "appid": 1084840, + "normalized_name": "living dead" + }, + { + "appid": 1084870, + "normalized_name": "osk the end of time" + }, + { + "appid": 1084910, + "normalized_name": "dark skeleton survival" + }, + { + "appid": 1084920, + "normalized_name": "fatal evidence cursed island collector's" + }, + { + "appid": 1084930, + "normalized_name": "sack of bots" + }, + { + "appid": 1084970, + "normalized_name": "bridge builder racer" + }, + { + "appid": 1084980, + "normalized_name": "front lines" + }, + { + "appid": 1084990, + "normalized_name": "old gods rising" + }, + { + "appid": 1085040, + "normalized_name": "raider kid and the ruby chest" + }, + { + "appid": 1085070, + "normalized_name": "strawhart" + }, + { + "appid": 1085080, + "normalized_name": "tiger tank 59 ⅰ volcano" + }, + { + "appid": 1085090, + "normalized_name": "彼得猪冒险 | piggy prter adventure | abenteuer von peter dem schweinchen" + }, + { + "appid": 1085110, + "normalized_name": "pleasure airlines" + }, + { + "appid": 1085150, + "normalized_name": "golf defied" + }, + { + "appid": 1085160, + "normalized_name": "palmyra orphanage" + }, + { + "appid": 1085180, + "normalized_name": "gunvolt chronicles luminous avenger ix" + }, + { + "appid": 1085190, + "normalized_name": "black baron" + }, + { + "appid": 1085210, + "normalized_name": "fruit mess" + }, + { + "appid": 1085220, + "normalized_name": "figment 2 creed valley" + }, + { + "appid": 1085230, + "normalized_name": "zumou battoru" + }, + { + "appid": 1085240, + "normalized_name": "park assault" + }, + { + "appid": 1085260, + "normalized_name": "ports of call classic" + }, + { + "appid": 1085270, + "normalized_name": "fat prisoner simulator 2" + }, + { + "appid": 1085280, + "normalized_name": "buoyant" + }, + { + "appid": 1085310, + "normalized_name": "your girl" + }, + { + "appid": 1085340, + "normalized_name": "flandre's dream. 36000 ft deep" + }, + { + "appid": 1085390, + "normalized_name": "angler's life" + }, + { + "appid": 1085510, + "normalized_name": "garfield kart furious racing" + }, + { + "appid": 1085520, + "normalized_name": "offroad racing buggy x atv x moto" + }, + { + "appid": 1085540, + "normalized_name": "purple noise echo" + }, + { + "appid": 1085560, + "normalized_name": "hentai energy ii" + }, + { + "appid": 1085570, + "normalized_name": "fables of talumos" + }, + { + "appid": 1085590, + "normalized_name": "steamworld quest hand of gilgamech soundtrack" + }, + { + "appid": 1085610, + "normalized_name": "love hentai fap fast die young" + }, + { + "appid": 1085630, + "normalized_name": "vasara collection" + }, + { + "appid": 1085640, + "normalized_name": "hentai waifu ii" + }, + { + "appid": 1085660, + "normalized_name": "destiny 2" + }, + { + "appid": 1085680, + "normalized_name": "true backrooms" + }, + { + "appid": 1085730, + "normalized_name": "breach point" + }, + { + "appid": 1085750, + "normalized_name": "sex with stalin" + }, + { + "appid": 1085790, + "normalized_name": "forever someday" + }, + { + "appid": 1085800, + "normalized_name": "zenkat" + }, + { + "appid": 1085820, + "normalized_name": "au fil de l'eau" + }, + { + "appid": 1085830, + "normalized_name": "knights of frontier valley" + }, + { + "appid": 1085840, + "normalized_name": "world leader card game" + }, + { + "appid": 1085860, + "normalized_name": "elusive verge" + }, + { + "appid": 1085880, + "normalized_name": "eclipse horde" + }, + { + "appid": 1085900, + "normalized_name": "ping redux" + }, + { + "appid": 1085930, + "normalized_name": "light tracer 2 ~the two worlds~" + }, + { + "appid": 1085940, + "normalized_name": "orders of the ruler" + }, + { + "appid": 1085950, + "normalized_name": "nyanfugirl" + }, + { + "appid": 1085970, + "normalized_name": "the makings of a lady purity yours to defile" + }, + { + "appid": 1085990, + "normalized_name": "xeyyex" + }, + { + "appid": 1086010, + "normalized_name": "198x" + }, + { + "appid": 1086030, + "normalized_name": "dating life miley x emily" + }, + { + "appid": 1086050, + "normalized_name": "you're fired!" + }, + { + "appid": 1086060, + "normalized_name": "tunnel vision" + }, + { + "appid": 1086070, + "normalized_name": "hot view ecchi girls" + }, + { + "appid": 1086140, + "normalized_name": "weaving" + }, + { + "appid": 1086150, + "normalized_name": "super blue square" + }, + { + "appid": 1086160, + "normalized_name": "space war infinity" + }, + { + "appid": 1086250, + "normalized_name": "civitas nova" + }, + { + "appid": 1086260, + "normalized_name": "deck box dungeons" + }, + { + "appid": 1086270, + "normalized_name": "space blox" + }, + { + "appid": 1086310, + "normalized_name": "lust selection episode one" + }, + { + "appid": 1086410, + "normalized_name": "golf around!" + }, + { + "appid": 1086450, + "normalized_name": "oik memory endgame" + }, + { + "appid": 1086460, + "normalized_name": "supermarket shriek" + }, + { + "appid": 1086470, + "normalized_name": "996的真实老板篇" + }, + { + "appid": 1086490, + "normalized_name": "first customer" + }, + { + "appid": 1086620, + "normalized_name": "selfloss" + }, + { + "appid": 1086630, + "normalized_name": "spelling quest online" + }, + { + "appid": 1086640, + "normalized_name": "dude simulator 3" + }, + { + "appid": 1086670, + "normalized_name": "roll+heart" + }, + { + "appid": 1086680, + "normalized_name": "violet re the final reexistence" + }, + { + "appid": 1086690, + "normalized_name": "c war 2" + }, + { + "appid": 1086710, + "normalized_name": "steel team academy" + }, + { + "appid": 1086750, + "normalized_name": "flux caves" + }, + { + "appid": 1086810, + "normalized_name": "hentai girls" + }, + { + "appid": 1086840, + "normalized_name": "operation sniff" + }, + { + "appid": 1086850, + "normalized_name": "garden of the sea (vr)" + }, + { + "appid": 1086860, + "normalized_name": "touhou sky arena matsuri climax" + }, + { + "appid": 1086900, + "normalized_name": "houdini redux" + }, + { + "appid": 1086940, + "normalized_name": "baldur's gate 3" + }, + { + "appid": 1086970, + "normalized_name": "battle bruise 2" + }, + { + "appid": 1086980, + "normalized_name": "nebulas lasso" + }, + { + "appid": 1086990, + "normalized_name": "commander '85" + }, + { + "appid": 1087020, + "normalized_name": "neko jump" + }, + { + "appid": 1087030, + "normalized_name": "cooking championship" + }, + { + "appid": 1087040, + "normalized_name": "alien invasion" + }, + { + "appid": 1087050, + "normalized_name": "mondrian plastic reality" + }, + { + "appid": 1087060, + "normalized_name": "duncan and the wisp" + }, + { + "appid": 1087070, + "normalized_name": "poly fishing" + }, + { + "appid": 1087100, + "normalized_name": "the last cowboy" + }, + { + "appid": 1087110, + "normalized_name": "football school" + }, + { + "appid": 1087190, + "normalized_name": "underture" + }, + { + "appid": 1087270, + "normalized_name": "franchise hockey manager 6" + }, + { + "appid": 1087310, + "normalized_name": "doomtank" + }, + { + "appid": 1087330, + "normalized_name": "royal merchant" + }, + { + "appid": 1087440, + "normalized_name": "jay and silent bob mall brawl" + }, + { + "appid": 1087460, + "normalized_name": "super life (rpg)" + }, + { + "appid": 1087480, + "normalized_name": "knighty night" + }, + { + "appid": 1087500, + "normalized_name": "groundhog day like father like son" + }, + { + "appid": 1087530, + "normalized_name": "crazy world" + }, + { + "appid": 1087540, + "normalized_name": "predimension" + }, + { + "appid": 1087600, + "normalized_name": "final archer vr" + }, + { + "appid": 1087610, + "normalized_name": "red death 8feet" + }, + { + "appid": 1087620, + "normalized_name": "life in yima / 依玛村生活" + }, + { + "appid": 1087640, + "normalized_name": "bludgeon" + }, + { + "appid": 1087700, + "normalized_name": "corpse killer 25th anniversary" + }, + { + "appid": 1087720, + "normalized_name": "your island kimi no sima" + }, + { + "appid": 1087760, + "normalized_name": "the gunk" + }, + { + "appid": 1087770, + "normalized_name": "card throw vr" + }, + { + "appid": 1087780, + "normalized_name": "sturmwind ex" + }, + { + "appid": 1087790, + "normalized_name": "そこへ向かう(go there)" + }, + { + "appid": 1087800, + "normalized_name": "arranged" + }, + { + "appid": 1087810, + "normalized_name": "forgetful dictator" + }, + { + "appid": 1087820, + "normalized_name": "bad mojos" + }, + { + "appid": 1087910, + "normalized_name": "mountain rescue simulator" + }, + { + "appid": 1087940, + "normalized_name": "incredible dracula 3 family secret" + }, + { + "appid": 1087950, + "normalized_name": ".fall" + }, + { + "appid": 1087960, + "normalized_name": "《鬼畜战记:金坷垃传说》" + }, + { + "appid": 1087970, + "normalized_name": "nevrosa spider song" + }, + { + "appid": 1088010, + "normalized_name": "ww2 zombie range vr" + }, + { + "appid": 1088030, + "normalized_name": "gunpowder on the teeth 2" + }, + { + "appid": 1088040, + "normalized_name": "mma executive" + }, + { + "appid": 1088060, + "normalized_name": "warpzone vs the dimension" + }, + { + "appid": 1088070, + "normalized_name": "hunters for your brain" + }, + { + "appid": 1088090, + "normalized_name": "day of dragons" + }, + { + "appid": 1088110, + "normalized_name": "meowk and frocco" + }, + { + "appid": 1088150, + "normalized_name": "scribble it!" + }, + { + "appid": 1088160, + "normalized_name": "led it rain vr" + }, + { + "appid": 1088190, + "normalized_name": "prison simulator vr" + }, + { + "appid": 1088420, + "normalized_name": "wings of bluestar" + }, + { + "appid": 1088440, + "normalized_name": "the panel remake" + }, + { + "appid": 1088540, + "normalized_name": "cat&rooms" + }, + { + "appid": 1088570, + "normalized_name": "crazy ball racing" + }, + { + "appid": 1088600, + "normalized_name": "space mercs" + }, + { + "appid": 1088610, + "normalized_name": "aurora the lost medallion the cave" + }, + { + "appid": 1088630, + "normalized_name": "萌萌2次大戰(略)3 moe moe world war ii 3" + }, + { + "appid": 1088710, + "normalized_name": "yakuza 3" + }, + { + "appid": 1088720, + "normalized_name": "all evil night 2" + }, + { + "appid": 1088750, + "normalized_name": "soda story brewing tycoon" + }, + { + "appid": 1088770, + "normalized_name": "car mechanic simulator vr" + }, + { + "appid": 1088790, + "normalized_name": "rebel inc escalation" + }, + { + "appid": 1088800, + "normalized_name": "horror ville maze escape" + }, + { + "appid": 1088830, + "normalized_name": "cls signal person" + }, + { + "appid": 1088850, + "normalized_name": "marvel's guardians of the galaxy" + }, + { + "appid": 1088870, + "normalized_name": "奇幻与砍杀 fantasy & blade" + }, + { + "appid": 1088880, + "normalized_name": "пацанский цитатник / russian test" + }, + { + "appid": 1088900, + "normalized_name": "flying slime!" + }, + { + "appid": 1088910, + "normalized_name": "destructopod" + }, + { + "appid": 1088950, + "normalized_name": "touring karts" + }, + { + "appid": 1088960, + "normalized_name": "psycocat" + }, + { + "appid": 1088980, + "normalized_name": "energy hunter boy" + }, + { + "appid": 1089030, + "normalized_name": "the prophecy lies!" + }, + { + "appid": 1089050, + "normalized_name": "speakerman" + }, + { + "appid": 1089080, + "normalized_name": "superstar hero" + }, + { + "appid": 1089090, + "normalized_name": "one piece pirate warriors 4" + }, + { + "appid": 1089100, + "normalized_name": "power block" + }, + { + "appid": 1089110, + "normalized_name": "musasabi" + }, + { + "appid": 1089130, + "normalized_name": "quake ii rtx" + }, + { + "appid": 1089140, + "normalized_name": "stroke fill" + }, + { + "appid": 1089250, + "normalized_name": "smush" + }, + { + "appid": 1089290, + "normalized_name": "truefish" + }, + { + "appid": 1089310, + "normalized_name": "nordlicht" + }, + { + "appid": 1089330, + "normalized_name": "life hutch vr" + }, + { + "appid": 1089430, + "normalized_name": "alpha king" + }, + { + "appid": 1089520, + "normalized_name": "nigel the minuscule adventure" + }, + { + "appid": 1089540, + "normalized_name": "911 fr" + }, + { + "appid": 1089570, + "normalized_name": "ao tennis 2 tools" + }, + { + "appid": 1089590, + "normalized_name": "ashes 2" + }, + { + "appid": 1089600, + "normalized_name": "lyser" + }, + { + "appid": 1089630, + "normalized_name": "奇迹一刻 surmount" + }, + { + "appid": 1089650, + "normalized_name": "project zero deaths" + }, + { + "appid": 1089660, + "normalized_name": "queen's quest 5 symphony of death" + }, + { + "appid": 1089690, + "normalized_name": "the outbreak" + }, + { + "appid": 1089710, + "normalized_name": "fruit postal service" + }, + { + "appid": 1089760, + "normalized_name": "mini transport" + }, + { + "appid": 1089770, + "normalized_name": "isotiles 2" + }, + { + "appid": 1089780, + "normalized_name": "tales of glory 2 retaliation" + }, + { + "appid": 1089790, + "normalized_name": "winter resort simulator" + }, + { + "appid": 1089800, + "normalized_name": "axan ships" + }, + { + "appid": 1089810, + "normalized_name": "下一层的封魔塔 forever war" + }, + { + "appid": 1089820, + "normalized_name": "reanimation inc." + }, + { + "appid": 1089830, + "normalized_name": "monster energy supercross the official videogame 3" + }, + { + "appid": 1089840, + "normalized_name": "armored brigade" + }, + { + "appid": 1089860, + "normalized_name": "blautopf vr geheimnis der lau" + }, + { + "appid": 1089880, + "normalized_name": "sudoku 9x16x25" + }, + { + "appid": 1089890, + "normalized_name": "3d life" + }, + { + "appid": 1089920, + "normalized_name": "meiro" + }, + { + "appid": 1089930, + "normalized_name": "aeon must die!" + }, + { + "appid": 1089980, + "normalized_name": "the henry stickmin collection" + }, + { + "appid": 1090020, + "normalized_name": "jetboy" + }, + { + "appid": 1090030, + "normalized_name": "asteroid run no questions asked" + }, + { + "appid": 1090060, + "normalized_name": "weapon hacker" + }, + { + "appid": 1090100, + "normalized_name": "scorchlands" + }, + { + "appid": 1090120, + "normalized_name": "dischord" + }, + { + "appid": 1090210, + "normalized_name": "hentai maido" + }, + { + "appid": 1090250, + "normalized_name": "crunch element" + }, + { + "appid": 1090300, + "normalized_name": "slime!!!" + }, + { + "appid": 1090340, + "normalized_name": "asteroid invaders" + }, + { + "appid": 1090380, + "normalized_name": "lilith m" + }, + { + "appid": 1090390, + "normalized_name": "house of 1000 doors serpent flame" + }, + { + "appid": 1090440, + "normalized_name": "kelipot / 形骸骑士" + }, + { + "appid": 1090470, + "normalized_name": "new england detective breakfast in boston" + }, + { + "appid": 1090480, + "normalized_name": "air combat fighter" + }, + { + "appid": 1090490, + "normalized_name": "tiktalec and the dino moonbase" + }, + { + "appid": 1090520, + "normalized_name": "scenner" + }, + { + "appid": 1090530, + "normalized_name": "pokka man blast" + }, + { + "appid": 1090540, + "normalized_name": "tiger tank 59 ⅰ air strike" + }, + { + "appid": 1090560, + "normalized_name": "boy vs genius 贫穷少年与校园名人的生死对决" + }, + { + "appid": 1090580, + "normalized_name": "gamehunt" + }, + { + "appid": 1090590, + "normalized_name": "alchemos" + }, + { + "appid": 1090630, + "normalized_name": "granblue fantasy versus" + }, + { + "appid": 1090650, + "normalized_name": "unknown castle" + }, + { + "appid": 1090660, + "normalized_name": "mok super space taxi" + }, + { + "appid": 1090670, + "normalized_name": "orbi universo" + }, + { + "appid": 1090680, + "normalized_name": "effigy the descent" + }, + { + "appid": 1090690, + "normalized_name": "sapper" + }, + { + "appid": 1090700, + "normalized_name": "lights orb" + }, + { + "appid": 1090750, + "normalized_name": "dirty jobs simulator" + }, + { + "appid": 1090760, + "normalized_name": "distant kingdoms" + }, + { + "appid": 1090790, + "normalized_name": "magicolors" + }, + { + "appid": 1090800, + "normalized_name": "northern lights" + }, + { + "appid": 1090900, + "normalized_name": "yes master!" + }, + { + "appid": 1090910, + "normalized_name": "rapture" + }, + { + "appid": 1090920, + "normalized_name": "gubble" + }, + { + "appid": 1090930, + "normalized_name": "endless rpg" + }, + { + "appid": 1090940, + "normalized_name": "blast axis" + }, + { + "appid": 1090960, + "normalized_name": "dunkratz" + }, + { + "appid": 1091010, + "normalized_name": "dark swords" + }, + { + "appid": 1091020, + "normalized_name": "brutal scales" + }, + { + "appid": 1091030, + "normalized_name": "lithobreak" + }, + { + "appid": 1091070, + "normalized_name": "venandi in silva" + }, + { + "appid": 1091090, + "normalized_name": "they are beasts" + }, + { + "appid": 1091110, + "normalized_name": "night of the scarecrows" + }, + { + "appid": 1091140, + "normalized_name": "nor'easter" + }, + { + "appid": 1091170, + "normalized_name": "face your demons" + }, + { + "appid": 1091180, + "normalized_name": "shadowland" + }, + { + "appid": 1091190, + "normalized_name": "web spice purple world" + }, + { + "appid": 1091200, + "normalized_name": "girl x" + }, + { + "appid": 1091210, + "normalized_name": "kissing simulator" + }, + { + "appid": 1091240, + "normalized_name": "loco railroad" + }, + { + "appid": 1091250, + "normalized_name": "total party kill" + }, + { + "appid": 1091270, + "normalized_name": "frequency garden" + }, + { + "appid": 1091320, + "normalized_name": "depo death epileptic pixel origins" + }, + { + "appid": 1091330, + "normalized_name": "good bear" + }, + { + "appid": 1091350, + "normalized_name": "valley run" + }, + { + "appid": 1091370, + "normalized_name": "quiver dick's epic book of fairy fails" + }, + { + "appid": 1091380, + "normalized_name": "dain squares" + }, + { + "appid": 1091390, + "normalized_name": "demonizer" + }, + { + "appid": 1091400, + "normalized_name": "online simulator" + }, + { + "appid": 1091460, + "normalized_name": "souls of blades" + }, + { + "appid": 1091470, + "normalized_name": "put in run out" + }, + { + "appid": 1091500, + "normalized_name": "cyberpunk 2077" + }, + { + "appid": 1091510, + "normalized_name": "dna" + }, + { + "appid": 1091520, + "normalized_name": "鸿门一宴(malicious dinner)" + }, + { + "appid": 1091540, + "normalized_name": "gratuitous animal massacre" + }, + { + "appid": 1091550, + "normalized_name": "attract fragments 5" + }, + { + "appid": 1091570, + "normalized_name": "transporter truck simulator" + }, + { + "appid": 1091580, + "normalized_name": "gamedevvr" + }, + { + "appid": 1091590, + "normalized_name": "cathedral 3 d" + }, + { + "appid": 1091640, + "normalized_name": "paths taken" + }, + { + "appid": 1091670, + "normalized_name": "absolute fall" + }, + { + "appid": 1091690, + "normalized_name": "timeless" + }, + { + "appid": 1091720, + "normalized_name": "叙事曲:难忘的回忆 / ballade with memories" + }, + { + "appid": 1091740, + "normalized_name": "梦塔防" + }, + { + "appid": 1091840, + "normalized_name": "disturbing forest" + }, + { + "appid": 1091860, + "normalized_name": "astrominer" + }, + { + "appid": 1091870, + "normalized_name": "theropods" + }, + { + "appid": 1091890, + "normalized_name": "hero syndrome" + }, + { + "appid": 1091910, + "normalized_name": "ponglow" + }, + { + "appid": 1091920, + "normalized_name": "plantera 2 golden acorn" + }, + { + "appid": 1091940, + "normalized_name": "game of puzzles furry" + }, + { + "appid": 1091950, + "normalized_name": "naughty girl" + }, + { + "appid": 1091960, + "normalized_name": "drowning cross" + }, + { + "appid": 1091980, + "normalized_name": "the bard's tale iv director's cut" + }, + { + "appid": 1092000, + "normalized_name": "naked story" + }, + { + "appid": 1092040, + "normalized_name": "bomjman" + }, + { + "appid": 1092050, + "normalized_name": "fire on fight online multiplayer shooter" + }, + { + "appid": 1092060, + "normalized_name": "hiscores! gold" + }, + { + "appid": 1092070, + "normalized_name": "pencil vs. eraser" + }, + { + "appid": 1092080, + "normalized_name": "pet puzzle" + }, + { + "appid": 1092140, + "normalized_name": "exit from" + }, + { + "appid": 1092150, + "normalized_name": "drainlive" + }, + { + "appid": 1092160, + "normalized_name": "identity sector" + }, + { + "appid": 1092170, + "normalized_name": "mythical boom party" + }, + { + "appid": 1092180, + "normalized_name": "vollun" + }, + { + "appid": 1092190, + "normalized_name": "astonishing baseball 2019" + }, + { + "appid": 1092210, + "normalized_name": "hentai house" + }, + { + "appid": 1092260, + "normalized_name": "come on baby!" + }, + { + "appid": 1092270, + "normalized_name": "hunt the thailand hidden" + }, + { + "appid": 1092300, + "normalized_name": "drone racer" + }, + { + "appid": 1092400, + "normalized_name": "月球坠落时 moon fall" + }, + { + "appid": 1092430, + "normalized_name": "budget cuts 2 mission insolvency" + }, + { + "appid": 1092510, + "normalized_name": "incredible dracula 4 games of gods" + }, + { + "appid": 1092530, + "normalized_name": "anthology of fear" + }, + { + "appid": 1092560, + "normalized_name": "still alive" + }, + { + "appid": 1092580, + "normalized_name": "bikerz" + }, + { + "appid": 1092590, + "normalized_name": "沙雕之路" + }, + { + "appid": 1092610, + "normalized_name": "末日機甲:戰術獵人" + }, + { + "appid": 1092630, + "normalized_name": "rogue glitch ultra" + }, + { + "appid": 1092650, + "normalized_name": "grafi 2" + }, + { + "appid": 1092660, + "normalized_name": "blair witch" + }, + { + "appid": 1092680, + "normalized_name": "capsize" + }, + { + "appid": 1092700, + "normalized_name": "hello neighbor pre alpha" + }, + { + "appid": 1092710, + "normalized_name": "hello neighbor alpha 1" + }, + { + "appid": 1092720, + "normalized_name": "hello neighbor alpha 2" + }, + { + "appid": 1092730, + "normalized_name": "hello neighbor alpha 3" + }, + { + "appid": 1092750, + "normalized_name": "boon boon" + }, + { + "appid": 1092770, + "normalized_name": "hacking with benefits" + }, + { + "appid": 1092780, + "normalized_name": "depixtion" + }, + { + "appid": 1092790, + "normalized_name": "inscryption" + }, + { + "appid": 1092800, + "normalized_name": "summit of the wolf" + }, + { + "appid": 1092830, + "normalized_name": "coffee runner black and mocha" + }, + { + "appid": 1092850, + "normalized_name": "zeus begins" + }, + { + "appid": 1092900, + "normalized_name": "story teller" + }, + { + "appid": 1092950, + "normalized_name": "piposh" + }, + { + "appid": 1092980, + "normalized_name": "mountain taxi driver" + }, + { + "appid": 1093020, + "normalized_name": "oika" + }, + { + "appid": 1093120, + "normalized_name": "box labyrinth" + }, + { + "appid": 1093130, + "normalized_name": "ms. holmes the monster of the baskervilles collector's" + }, + { + "appid": 1093150, + "normalized_name": "just sleep meditate focus relax" + }, + { + "appid": 1093180, + "normalized_name": "kill the moon" + }, + { + "appid": 1093220, + "normalized_name": "eat this!" + }, + { + "appid": 1093280, + "normalized_name": "ancient stories gods of egypt" + }, + { + "appid": 1093290, + "normalized_name": "the wild at heart" + }, + { + "appid": 1093300, + "normalized_name": "noyo !" + }, + { + "appid": 1093320, + "normalized_name": "devil's deck" + }, + { + "appid": 1093330, + "normalized_name": "conscious existence a journey within" + }, + { + "appid": 1093360, + "normalized_name": "ghost parade" + }, + { + "appid": 1093370, + "normalized_name": "hexelectric" + }, + { + "appid": 1093500, + "normalized_name": "vegetarian alliance | 素食联盟 |вегетарианский альянс" + }, + { + "appid": 1093520, + "normalized_name": "un pas fragile" + }, + { + "appid": 1093670, + "normalized_name": "attack of the evil poop" + }, + { + "appid": 1093690, + "normalized_name": "couch storm battle royale" + }, + { + "appid": 1093720, + "normalized_name": "slipslop world's hardest platformer game" + }, + { + "appid": 1093750, + "normalized_name": "john's wizard dungeon" + }, + { + "appid": 1093760, + "normalized_name": "shogun's empire hex commander" + }, + { + "appid": 1093770, + "normalized_name": "chlorophos" + }, + { + "appid": 1093790, + "normalized_name": "seals of the bygone" + }, + { + "appid": 1093800, + "normalized_name": "zeke's peak" + }, + { + "appid": 1093810, + "normalized_name": "savior" + }, + { + "appid": 1093830, + "normalized_name": "asterism" + }, + { + "appid": 1093840, + "normalized_name": "night signal" + }, + { + "appid": 1093850, + "normalized_name": "joustmania" + }, + { + "appid": 1093870, + "normalized_name": "block" + }, + { + "appid": 1093900, + "normalized_name": "神谋" + }, + { + "appid": 1093910, + "normalized_name": "tales of the black forest" + }, + { + "appid": 1093920, + "normalized_name": "orthoiso" + }, + { + "appid": 1093950, + "normalized_name": "inbound ufo" + }, + { + "appid": 1094000, + "normalized_name": "survive on raft" + }, + { + "appid": 1094010, + "normalized_name": "火柴人联盟2" + }, + { + "appid": 1094020, + "normalized_name": "天下往事 journey of the world" + }, + { + "appid": 1094030, + "normalized_name": "lurk in the dark prologue" + }, + { + "appid": 1094050, + "normalized_name": "interstellar rogue" + }, + { + "appid": 1094060, + "normalized_name": "escape first 2" + }, + { + "appid": 1094070, + "normalized_name": "fares" + }, + { + "appid": 1094080, + "normalized_name": "valley of decay" + }, + { + "appid": 1094110, + "normalized_name": "wejam" + }, + { + "appid": 1094120, + "normalized_name": "bepuzzled puppy dog jigsaw puzzle" + }, + { + "appid": 1094130, + "normalized_name": "bugs!" + }, + { + "appid": 1094170, + "normalized_name": "the hunter's journals pale harbour" + }, + { + "appid": 1094190, + "normalized_name": "故郷をさがす三姉妹/ the three sisters looking for their back home." + }, + { + "appid": 1094250, + "normalized_name": "it stares back" + }, + { + "appid": 1094290, + "normalized_name": "幻想异乡曲 butterfly~rin" + }, + { + "appid": 1094320, + "normalized_name": "莫比乌斯之环 不属于任何人的交响悲歌 mobius & elegy belongs to nobody" + }, + { + "appid": 1094340, + "normalized_name": "cardboard ground" + }, + { + "appid": 1094390, + "normalized_name": "waltz of the wizard" + }, + { + "appid": 1094400, + "normalized_name": "twin ruin" + }, + { + "appid": 1094410, + "normalized_name": "b.u.g. force" + }, + { + "appid": 1094420, + "normalized_name": "梅雨の日/rainy season" + }, + { + "appid": 1094440, + "normalized_name": "highball" + }, + { + "appid": 1094450, + "normalized_name": "spies & soldiers" + }, + { + "appid": 1094460, + "normalized_name": "tiger tank 59 ⅰ battleship" + }, + { + "appid": 1094520, + "normalized_name": "部落与弯刀 sands of salzaar" + }, + { + "appid": 1094530, + "normalized_name": "爱丽娅的明日盛典!" + }, + { + "appid": 1094540, + "normalized_name": "smelter" + }, + { + "appid": 1094580, + "normalized_name": "ecio" + }, + { + "appid": 1094590, + "normalized_name": "helvetii" + }, + { + "appid": 1094600, + "normalized_name": "kingdom of night" + }, + { + "appid": 1094630, + "normalized_name": "aircraft war" + }, + { + "appid": 1094640, + "normalized_name": "true love '95" + }, + { + "appid": 1094660, + "normalized_name": "ebola" + }, + { + "appid": 1094680, + "normalized_name": "hidden through time 2 discovery" + }, + { + "appid": 1094690, + "normalized_name": "imagination" + }, + { + "appid": 1094720, + "normalized_name": "clive 'n' wrench" + }, + { + "appid": 1094730, + "normalized_name": "black legend" + }, + { + "appid": 1094760, + "normalized_name": "stonedeep" + }, + { + "appid": 1094780, + "normalized_name": "fisher online" + }, + { + "appid": 1094820, + "normalized_name": "徒花異譚 / adabana odd tales" + }, + { + "appid": 1094870, + "normalized_name": "acron attack of the squirrels!" + }, + { + "appid": 1094880, + "normalized_name": "vegas slot" + }, + { + "appid": 1094920, + "normalized_name": "hazel sky" + }, + { + "appid": 1094930, + "normalized_name": "ninja girl and the mysterious army of urban legend monsters! ~hunt of the headless horseman~" + }, + { + "appid": 1094960, + "normalized_name": "soul scathe" + }, + { + "appid": 1095040, + "normalized_name": "unexplored 2 the wayfarer's legacy" + }, + { + "appid": 1095060, + "normalized_name": "jar wars" + }, + { + "appid": 1095070, + "normalized_name": "sideral" + }, + { + "appid": 1095080, + "normalized_name": "back home" + }, + { + "appid": 1095090, + "normalized_name": "the remission of sins" + }, + { + "appid": 1095120, + "normalized_name": "helheim hassle" + }, + { + "appid": 1095140, + "normalized_name": "primeorbial" + }, + { + "appid": 1095200, + "normalized_name": "cynoroid gentagelse" + }, + { + "appid": 1095260, + "normalized_name": "airtight city 密闭之城1.0" + }, + { + "appid": 1095280, + "normalized_name": "covid 2069" + }, + { + "appid": 1095290, + "normalized_name": "zombie soup" + }, + { + "appid": 1095300, + "normalized_name": "tiger tank 59 ⅰ super tank" + }, + { + "appid": 1095320, + "normalized_name": "revenge on the streets" + }, + { + "appid": 1095360, + "normalized_name": "lost" + }, + { + "appid": 1095370, + "normalized_name": "voxel bot" + }, + { + "appid": 1095380, + "normalized_name": "bepuzzled kittens jigsaw puzzle" + }, + { + "appid": 1095400, + "normalized_name": "cryptographer" + }, + { + "appid": 1095450, + "normalized_name": "puzzle walker (demo)" + }, + { + "appid": 1095460, + "normalized_name": "neko match" + }, + { + "appid": 1095480, + "normalized_name": "operation valor" + }, + { + "appid": 1095520, + "normalized_name": "the itch" + }, + { + "appid": 1095540, + "normalized_name": "原体" + }, + { + "appid": 1095550, + "normalized_name": "pumpkin dog islands" + }, + { + "appid": 1095560, + "normalized_name": "roguebotica" + }, + { + "appid": 1095590, + "normalized_name": "方解夢異聞 ~ avant garde discerning paralleler (東方二次創作stg)" + }, + { + "appid": 1095610, + "normalized_name": "just n" + }, + { + "appid": 1095650, + "normalized_name": "dinosaur island 1979" + }, + { + "appid": 1095680, + "normalized_name": "beyond the wizard" + }, + { + "appid": 1095700, + "normalized_name": "joyfess ep1 martin's secret recipe" + }, + { + "appid": 1095750, + "normalized_name": "faith of fate" + }, + { + "appid": 1095760, + "normalized_name": "大巫 great witcher" + }, + { + "appid": 1095790, + "normalized_name": "恋爱总动员/love date" + }, + { + "appid": 1095810, + "normalized_name": "whitebird 白鸟" + }, + { + "appid": 1095820, + "normalized_name": "boogie bot" + }, + { + "appid": 1095840, + "normalized_name": "fairytale solitaire red riding hood" + }, + { + "appid": 1095850, + "normalized_name": "1001 jigsaw. 6 magic elements (拼图)" + }, + { + "appid": 1095860, + "normalized_name": "mystery solitaire grimm's tales 2" + }, + { + "appid": 1095870, + "normalized_name": "1001 jigsaw. world tour france" + }, + { + "appid": 1095880, + "normalized_name": "a day in the life of maria" + }, + { + "appid": 1095980, + "normalized_name": "charge" + }, + { + "appid": 1096000, + "normalized_name": "too white basketball" + }, + { + "appid": 1096010, + "normalized_name": "hentai sudoku" + }, + { + "appid": 1096060, + "normalized_name": "teenage blob" + }, + { + "appid": 1096090, + "normalized_name": "among ripples shallow waters" + }, + { + "appid": 1096100, + "normalized_name": "skellboy refractured" + }, + { + "appid": 1096120, + "normalized_name": "fallen valiant loopy" + }, + { + "appid": 1096130, + "normalized_name": "rose riddle 2 werewolf shadow" + }, + { + "appid": 1096140, + "normalized_name": "timemelters" + }, + { + "appid": 1096180, + "normalized_name": "ato" + }, + { + "appid": 1096200, + "normalized_name": "the orville interactive fan experience" + }, + { + "appid": 1096210, + "normalized_name": "mekabolt" + }, + { + "appid": 1096230, + "normalized_name": "decker" + }, + { + "appid": 1096240, + "normalized_name": "7 lives" + }, + { + "appid": 1096290, + "normalized_name": "real man got 100 | 是男人上100层" + }, + { + "appid": 1096300, + "normalized_name": "九霄缳神记 jiu xiao" + }, + { + "appid": 1096310, + "normalized_name": "bombrigade battlegrounds" + }, + { + "appid": 1096330, + "normalized_name": "兽耳攻略 tfk faculty" + }, + { + "appid": 1096340, + "normalized_name": "noxiam miserable sinners" + }, + { + "appid": 1096360, + "normalized_name": "fate of windshift" + }, + { + "appid": 1096410, + "normalized_name": "vampire the masquerade coteries of new york" + }, + { + "appid": 1096420, + "normalized_name": "re painter" + }, + { + "appid": 1096430, + "normalized_name": "hunter" + }, + { + "appid": 1096510, + "normalized_name": "seven nations" + }, + { + "appid": 1096520, + "normalized_name": "venture seas" + }, + { + "appid": 1096530, + "normalized_name": "solasta crown of the magister" + }, + { + "appid": 1096560, + "normalized_name": "windy kingdom" + }, + { + "appid": 1096570, + "normalized_name": "song of horror" + }, + { + "appid": 1096590, + "normalized_name": "atma" + }, + { + "appid": 1096600, + "normalized_name": "quash" + }, + { + "appid": 1096610, + "normalized_name": "incident commander" + }, + { + "appid": 1096630, + "normalized_name": "space mercenary shooter episode 1" + }, + { + "appid": 1096640, + "normalized_name": "vital signs emergency department" + }, + { + "appid": 1096650, + "normalized_name": "cubg car unknown's battlegrounds" + }, + { + "appid": 1096690, + "normalized_name": "mighty fight federation" + }, + { + "appid": 1096710, + "normalized_name": "hello neighbor alpha 4" + }, + { + "appid": 1096720, + "normalized_name": "catgirl lover" + }, + { + "appid": 1096730, + "normalized_name": "hot & steamy knights" + }, + { + "appid": 1096750, + "normalized_name": "girls & dungeons 2" + }, + { + "appid": 1096760, + "normalized_name": "dadlympics" + }, + { + "appid": 1096930, + "normalized_name": "strategic command world war i" + }, + { + "appid": 1096950, + "normalized_name": "psycho train" + }, + { + "appid": 1096960, + "normalized_name": "amazing a house in kansas vr" + }, + { + "appid": 1096980, + "normalized_name": "timothy and the mysterious forest" + }, + { + "appid": 1096990, + "normalized_name": "nothing good can come of this" + }, + { + "appid": 1097000, + "normalized_name": "orpheus's dream" + }, + { + "appid": 1097050, + "normalized_name": "绝地反击 the fight of escaper" + }, + { + "appid": 1097090, + "normalized_name": "new colony" + }, + { + "appid": 1097100, + "normalized_name": "please touch the artwork" + }, + { + "appid": 1097110, + "normalized_name": "willy morgan and the curse of bone town" + }, + { + "appid": 1097120, + "normalized_name": "the scream" + }, + { + "appid": 1097130, + "normalized_name": "circuit superstars" + }, + { + "appid": 1097160, + "normalized_name": "run roll rumble" + }, + { + "appid": 1097170, + "normalized_name": "backspace bouken" + }, + { + "appid": 1097180, + "normalized_name": "time travelling navy seal ninja warrior" + }, + { + "appid": 1097200, + "normalized_name": "twelve minutes" + }, + { + "appid": 1097240, + "normalized_name": "crawling of the dead" + }, + { + "appid": 1097260, + "normalized_name": "mop boy" + }, + { + "appid": 1097270, + "normalized_name": "forgotten" + }, + { + "appid": 1097280, + "normalized_name": "chimeras wailing waters collector's" + }, + { + "appid": 1097300, + "normalized_name": "ostrofa" + }, + { + "appid": 1097330, + "normalized_name": "fork knights" + }, + { + "appid": 1097340, + "normalized_name": "night & day" + }, + { + "appid": 1097350, + "normalized_name": "weird west" + }, + { + "appid": 1097370, + "normalized_name": "パラディンリアス" + }, + { + "appid": 1097420, + "normalized_name": "no brainer heroes 挂机吧!勇者" + }, + { + "appid": 1097430, + "normalized_name": "book of yog idle rpg 依盖之书" + }, + { + "appid": 1097470, + "normalized_name": "roopocket" + }, + { + "appid": 1097480, + "normalized_name": "iragon 18+" + }, + { + "appid": 1097500, + "normalized_name": "colourful" + }, + { + "appid": 1097520, + "normalized_name": "hentai demon" + }, + { + "appid": 1097530, + "normalized_name": "mortal glory" + }, + { + "appid": 1097550, + "normalized_name": "王国幻境 fantastic kingdom" + }, + { + "appid": 1097560, + "normalized_name": "light of the locked world" + }, + { + "appid": 1097570, + "normalized_name": "the hunter's journals vile philosophy" + }, + { + "appid": 1097580, + "normalized_name": "custom order maid 3d2 it's a night magic" + }, + { + "appid": 1097600, + "normalized_name": "hardcore parkour" + }, + { + "appid": 1097620, + "normalized_name": "fast and low" + }, + { + "appid": 1097630, + "normalized_name": "c.a.t.s. carefully attempting not to screw up" + }, + { + "appid": 1097650, + "normalized_name": "insectipede" + }, + { + "appid": 1097670, + "normalized_name": "keeper of the sun and moon" + }, + { + "appid": 1097690, + "normalized_name": "gladiator road to the colosseum" + }, + { + "appid": 1097710, + "normalized_name": "the grim and i" + }, + { + "appid": 1097750, + "normalized_name": "ezaron defense" + }, + { + "appid": 1097760, + "normalized_name": "uh oh bartender" + }, + { + "appid": 1097770, + "normalized_name": "aeolis tournament" + }, + { + "appid": 1097780, + "normalized_name": "we met in may" + }, + { + "appid": 1097790, + "normalized_name": "the dark crystal age of resistance tactics" + }, + { + "appid": 1097810, + "normalized_name": "mi mi mi" + }, + { + "appid": 1097820, + "normalized_name": "the hunger games ensemble" + }, + { + "appid": 1097830, + "normalized_name": "banished monsters" + }, + { + "appid": 1097840, + "normalized_name": "gears 5" + }, + { + "appid": 1097860, + "normalized_name": "corrupted" + }, + { + "appid": 1097870, + "normalized_name": "polyrun" + }, + { + "appid": 1097880, + "normalized_name": "super naughty maid 2" + }, + { + "appid": 1097900, + "normalized_name": "everything is mayo" + }, + { + "appid": 1097960, + "normalized_name": "clickraid2" + }, + { + "appid": 1098000, + "normalized_name": "rifle storm" + }, + { + "appid": 1098040, + "normalized_name": "soulscape" + }, + { + "appid": 1098080, + "normalized_name": "3000th duel" + }, + { + "appid": 1098090, + "normalized_name": "bunny reversi" + }, + { + "appid": 1098100, + "normalized_name": "ohshape" + }, + { + "appid": 1098130, + "normalized_name": "get stuffed!" + }, + { + "appid": 1098140, + "normalized_name": "drawing path" + }, + { + "appid": 1098150, + "normalized_name": "trickster vr horde attack!" + }, + { + "appid": 1098170, + "normalized_name": "dark nights with poe and munro" + }, + { + "appid": 1098180, + "normalized_name": "charon's return" + }, + { + "appid": 1098190, + "normalized_name": "versaillesvr | the palace is yours" + }, + { + "appid": 1098200, + "normalized_name": "vaporwave drift" + }, + { + "appid": 1098210, + "normalized_name": "axis football 2019" + }, + { + "appid": 1098220, + "normalized_name": "making it home" + }, + { + "appid": 1098230, + "normalized_name": "eidolon adventure" + }, + { + "appid": 1098250, + "normalized_name": "grid magic" + }, + { + "appid": 1098270, + "normalized_name": "coldside" + }, + { + "appid": 1098280, + "normalized_name": "mago" + }, + { + "appid": 1098292, + "normalized_name": "doom eternal the ancient gods part one" + }, + { + "appid": 1098293, + "normalized_name": "doom eternal the ancient gods part two" + }, + { + "appid": 1098320, + "normalized_name": "guildbound" + }, + { + "appid": 1098340, + "normalized_name": "zup! 9" + }, + { + "appid": 1098370, + "normalized_name": "akash path of the five" + }, + { + "appid": 1098390, + "normalized_name": "project wasteland the mythiclands" + }, + { + "appid": 1098430, + "normalized_name": "dungeonepic" + }, + { + "appid": 1098440, + "normalized_name": "spider shooting bee" + }, + { + "appid": 1098470, + "normalized_name": "the gardener and the wild vines" + }, + { + "appid": 1098480, + "normalized_name": "fruit factory" + }, + { + "appid": 1098500, + "normalized_name": "astral battlefield / 星界战场" + }, + { + "appid": 1098510, + "normalized_name": "lost egg" + }, + { + "appid": 1098530, + "normalized_name": "zorromoro" + }, + { + "appid": 1098540, + "normalized_name": "monsters sandbox" + }, + { + "appid": 1098560, + "normalized_name": "dungeon crusher kiritan" + }, + { + "appid": 1098570, + "normalized_name": "layers of the machine" + }, + { + "appid": 1098610, + "normalized_name": "crush the industry" + }, + { + "appid": 1098620, + "normalized_name": "matter of the dreams" + }, + { + "appid": 1098640, + "normalized_name": "eormor shattered lands" + }, + { + "appid": 1098650, + "normalized_name": "madhouse" + }, + { + "appid": 1098660, + "normalized_name": "nekopugi" + }, + { + "appid": 1098670, + "normalized_name": "chain saw" + }, + { + "appid": 1098680, + "normalized_name": "世界尽头的蔷薇花园" + }, + { + "appid": 1098700, + "normalized_name": "escape from chernobyl" + }, + { + "appid": 1098720, + "normalized_name": "court of ashes" + }, + { + "appid": 1098730, + "normalized_name": "cursed roots" + }, + { + "appid": 1098750, + "normalized_name": "scutum phanti" + }, + { + "appid": 1098760, + "normalized_name": "the ring of truth" + }, + { + "appid": 1098770, + "normalized_name": "the crimson diamond" + }, + { + "appid": 1098790, + "normalized_name": "okay panic!" + }, + { + "appid": 1098840, + "normalized_name": "zach like" + }, + { + "appid": 1098870, + "normalized_name": "metro explosion simulator" + }, + { + "appid": 1098910, + "normalized_name": "lannath" + }, + { + "appid": 1098940, + "normalized_name": "home sweet home ep2" + }, + { + "appid": 1098980, + "normalized_name": "zomb" + }, + { + "appid": 1099010, + "normalized_name": "bocce vr" + }, + { + "appid": 1099070, + "normalized_name": "legendary gun" + }, + { + "appid": 1099090, + "normalized_name": "outpost delta" + }, + { + "appid": 1099110, + "normalized_name": "愚者地牢 up主的消失" + }, + { + "appid": 1099140, + "normalized_name": "她3 复乐园之曦 her3 the light of paradise regained" + }, + { + "appid": 1099170, + "normalized_name": "battle planet judgement day" + }, + { + "appid": 1099220, + "normalized_name": "the alien cube" + }, + { + "appid": 1099410, + "normalized_name": "a total war saga troy" + }, + { + "appid": 1099440, + "normalized_name": "rude racers 2d combat racing" + }, + { + "appid": 1099450, + "normalized_name": "the endless white" + }, + { + "appid": 1099460, + "normalized_name": "the forgotten land" + }, + { + "appid": 1099470, + "normalized_name": "karl boom" + }, + { + "appid": 1099500, + "normalized_name": "the curious tale of the stolen pets" + }, + { + "appid": 1099510, + "normalized_name": "rap simulator the rap game" + }, + { + "appid": 1099530, + "normalized_name": "hentai exotica" + }, + { + "appid": 1099630, + "normalized_name": "alive 2 survive tales from the zombie apocalypse" + }, + { + "appid": 1099640, + "normalized_name": "jack move" + }, + { + "appid": 1099660, + "normalized_name": "the lattice grimoire" + }, + { + "appid": 1099790, + "normalized_name": "protocol 11 episode 1" + }, + { + "appid": 1099830, + "normalized_name": "welcome to paradise" + }, + { + "appid": 1099840, + "normalized_name": "1000$" + }, + { + "appid": 1099860, + "normalized_name": "snowman builder" + }, + { + "appid": 1099900, + "normalized_name": "whispers from the rift" + }, + { + "appid": 1099910, + "normalized_name": "paradise" + }, + { + "appid": 1099920, + "normalized_name": "pro strategy football 2020" + }, + { + "appid": 1099960, + "normalized_name": "mini tone minimalist puzzle" + }, + { + "appid": 1100030, + "normalized_name": "伊勢志摩ミステリー案内 偽りの黒真珠" + }, + { + "appid": 1100050, + "normalized_name": "perfect" + }, + { + "appid": 1100070, + "normalized_name": "master of the forbidden sea" + }, + { + "appid": 1100140, + "normalized_name": "東方風神録 〜 mountain of faith." + }, + { + "appid": 1100150, + "normalized_name": "東方地霊殿 〜 subterranean animism." + }, + { + "appid": 1100160, + "normalized_name": "東方星蓮船 〜 undefined fantastic object." + }, + { + "appid": 1100170, + "normalized_name": "ダブルスポイラー 〜 東方文花帖" + }, + { + "appid": 1100180, + "normalized_name": "妖精大戦争 〜 東方三月精" + }, + { + "appid": 1100210, + "normalized_name": "everybody loves skeletons" + }, + { + "appid": 1100260, + "normalized_name": "circle empires rivals" + }, + { + "appid": 1100270, + "normalized_name": "the far rings a space opera visual novella" + }, + { + "appid": 1100290, + "normalized_name": "super space club" + }, + { + "appid": 1100300, + "normalized_name": "gamedev beatdown" + }, + { + "appid": 1100320, + "normalized_name": "rest" + }, + { + "appid": 1100340, + "normalized_name": "battle droid t1" + }, + { + "appid": 1100350, + "normalized_name": "#funtime" + }, + { + "appid": 1100360, + "normalized_name": "slot gun" + }, + { + "appid": 1100410, + "normalized_name": "commandos 2 hd remaster" + }, + { + "appid": 1100420, + "normalized_name": "praetorians hd remaster" + }, + { + "appid": 1100430, + "normalized_name": "spirit hunter ng" + }, + { + "appid": 1100500, + "normalized_name": "last contingency" + }, + { + "appid": 1100510, + "normalized_name": "diamonds" + }, + { + "appid": 1100560, + "normalized_name": "drones" + }, + { + "appid": 1100800, + "normalized_name": "i walk among zombies vol. 2 (adult version)" + }, + { + "appid": 1100830, + "normalized_name": "biohazard re 3 z version" + }, + { + "appid": 1100840, + "normalized_name": "everyone goes home" + }, + { + "appid": 1100860, + "normalized_name": "voxel printer" + }, + { + "appid": 1100880, + "normalized_name": "battle siege royale" + }, + { + "appid": 1100900, + "normalized_name": "artifact adventure gaiden dx" + }, + { + "appid": 1100910, + "normalized_name": "鬼哭岭" + }, + { + "appid": 1100920, + "normalized_name": "drummastervr" + }, + { + "appid": 1100930, + "normalized_name": "军团 legioncraft" + }, + { + "appid": 1100990, + "normalized_name": "aimbeast" + }, + { + "appid": 1101000, + "normalized_name": "nubla" + }, + { + "appid": 1101030, + "normalized_name": "noara the conspiracy" + }, + { + "appid": 1101050, + "normalized_name": "celestial" + }, + { + "appid": 1101060, + "normalized_name": "lumen" + }, + { + "appid": 1101080, + "normalized_name": "hidden" + }, + { + "appid": 1101100, + "normalized_name": "chaos dream retribution" + }, + { + "appid": 1101120, + "normalized_name": "gunsmith simulator" + }, + { + "appid": 1101130, + "normalized_name": "my typing skill" + }, + { + "appid": 1101140, + "normalized_name": "fishing adventure" + }, + { + "appid": 1101170, + "normalized_name": "mage mania" + }, + { + "appid": 1101180, + "normalized_name": "everstopped" + }, + { + "appid": 1101190, + "normalized_name": "dungeon defenders awakened" + }, + { + "appid": 1101200, + "normalized_name": "after the suns" + }, + { + "appid": 1101220, + "normalized_name": "anticorps vr" + }, + { + "appid": 1101260, + "normalized_name": "furry girl puzzle" + }, + { + "appid": 1101270, + "normalized_name": "anime artist" + }, + { + "appid": 1101290, + "normalized_name": "0gravity" + }, + { + "appid": 1101310, + "normalized_name": "vengeful heart" + }, + { + "appid": 1101330, + "normalized_name": "world's nicht" + }, + { + "appid": 1101340, + "normalized_name": "fighting frenzy swole simulator" + }, + { + "appid": 1101360, + "normalized_name": "rock of ages 3 make & break" + }, + { + "appid": 1101370, + "normalized_name": "wind runners" + }, + { + "appid": 1101400, + "normalized_name": "rune knights" + }, + { + "appid": 1101420, + "normalized_name": "dragon call" + }, + { + "appid": 1101450, + "normalized_name": "miss neko" + }, + { + "appid": 1101480, + "normalized_name": "turn me on" + }, + { + "appid": 1101530, + "normalized_name": "edge of time rise of the aeus" + }, + { + "appid": 1101580, + "normalized_name": "spooky starlets movie monsters" + }, + { + "appid": 1101620, + "normalized_name": "deichgraf" + }, + { + "appid": 1101630, + "normalized_name": "a maze in citadel" + }, + { + "appid": 1101660, + "normalized_name": "cooking trip back on the road" + }, + { + "appid": 1101670, + "normalized_name": "arisen chronicles of var'nagal" + }, + { + "appid": 1101760, + "normalized_name": "crazy driver" + }, + { + "appid": 1101770, + "normalized_name": "ancient knowledge" + }, + { + "appid": 1101780, + "normalized_name": "bakery biz tycoon" + }, + { + "appid": 1101790, + "normalized_name": "war mongrels" + }, + { + "appid": 1101800, + "normalized_name": "10mg always down" + }, + { + "appid": 1101850, + "normalized_name": "red 起始的旋转之音(the beginning of the melody)" + }, + { + "appid": 1101930, + "normalized_name": "monsters of little haven" + }, + { + "appid": 1101940, + "normalized_name": "victorian mysteries woman in white" + }, + { + "appid": 1101960, + "normalized_name": "wren" + }, + { + "appid": 1101980, + "normalized_name": "白石洲往事" + }, + { + "appid": 1102000, + "normalized_name": "pillowheads it's party time" + }, + { + "appid": 1102030, + "normalized_name": "klac" + }, + { + "appid": 1102040, + "normalized_name": "obversion" + }, + { + "appid": 1102060, + "normalized_name": "gun blaze" + }, + { + "appid": 1102080, + "normalized_name": "planaris 2+" + }, + { + "appid": 1102100, + "normalized_name": "tiny metal full metal rumble" + }, + { + "appid": 1102110, + "normalized_name": "orbitals" + }, + { + "appid": 1102130, + "normalized_name": "florence" + }, + { + "appid": 1102140, + "normalized_name": "glizzy gobbler" + }, + { + "appid": 1102150, + "normalized_name": "defending territory" + }, + { + "appid": 1102190, + "normalized_name": "monster train" + }, + { + "appid": 1102200, + "normalized_name": "oceans we make" + }, + { + "appid": 1102210, + "normalized_name": "the legend of viccess" + }, + { + "appid": 1102250, + "normalized_name": "tittilium" + }, + { + "appid": 1102260, + "normalized_name": "rank runner" + }, + { + "appid": 1102340, + "normalized_name": "funbag fantasy 2" + }, + { + "appid": 1102370, + "normalized_name": "dr. derk's mutant battlegrounds" + }, + { + "appid": 1102390, + "normalized_name": "neckbeardia" + }, + { + "appid": 1102410, + "normalized_name": "lost smile memories" + }, + { + "appid": 1102490, + "normalized_name": "the tree" + }, + { + "appid": 1102500, + "normalized_name": "a glider's journey" + }, + { + "appid": 1102510, + "normalized_name": "come back chapter 1" + }, + { + "appid": 1102580, + "normalized_name": "traffix" + }, + { + "appid": 1102650, + "normalized_name": "neon city riders" + }, + { + "appid": 1102680, + "normalized_name": "ash asylum" + }, + { + "appid": 1102700, + "normalized_name": "alpha dog" + }, + { + "appid": 1102720, + "normalized_name": "the unclearness" + }, + { + "appid": 1102740, + "normalized_name": "\"going up?\"" + }, + { + "appid": 1102750, + "normalized_name": "zorg the typing warrior" + }, + { + "appid": 1102780, + "normalized_name": "desert of the dead" + }, + { + "appid": 1102880, + "normalized_name": "kawaii deathu desu" + }, + { + "appid": 1102890, + "normalized_name": "square norm" + }, + { + "appid": 1102930, + "normalized_name": "koboldkare" + }, + { + "appid": 1102940, + "normalized_name": "mogh" + }, + { + "appid": 1102980, + "normalized_name": "英雄群侠传" + }, + { + "appid": 1103000, + "normalized_name": "qwerty's prison" + }, + { + "appid": 1103010, + "normalized_name": "混沌扳机(chaostrigger)" + }, + { + "appid": 1103040, + "normalized_name": "bepuzzled space jigsaw puzzle" + }, + { + "appid": 1103050, + "normalized_name": "bepuzzled jigsaw puzzle animals 103 puzzles" + }, + { + "appid": 1103060, + "normalized_name": "run thief" + }, + { + "appid": 1103070, + "normalized_name": "bepuzzled jigsaw puzzle japan" + }, + { + "appid": 1103080, + "normalized_name": "bepuzzled jigsaw puzzle nature" + }, + { + "appid": 1103100, + "normalized_name": "1000 days to escape" + }, + { + "appid": 1103120, + "normalized_name": "dune sea" + }, + { + "appid": 1103130, + "normalized_name": "trials of guinevere" + }, + { + "appid": 1103160, + "normalized_name": "beat boxing" + }, + { + "appid": 1103210, + "normalized_name": "we become what we behold [fan made port]" + }, + { + "appid": 1103250, + "normalized_name": "fort" + }, + { + "appid": 1103290, + "normalized_name": "mind trap" + }, + { + "appid": 1103300, + "normalized_name": "escape from classroom" + }, + { + "appid": 1103310, + "normalized_name": "sea bubble" + }, + { + "appid": 1103320, + "normalized_name": "snow arena" + }, + { + "appid": 1103330, + "normalized_name": "card story" + }, + { + "appid": 1103340, + "normalized_name": "yut yut" + }, + { + "appid": 1103390, + "normalized_name": "threestep" + }, + { + "appid": 1103400, + "normalized_name": "codemancer" + }, + { + "appid": 1103410, + "normalized_name": "the tower of tigerqiuqiu" + }, + { + "appid": 1103460, + "normalized_name": "break my body" + }, + { + "appid": 1103490, + "normalized_name": "sweet dream succubus nightmare" + }, + { + "appid": 1103510, + "normalized_name": "异世江湖录(jianghu record of another world)" + }, + { + "appid": 1103520, + "normalized_name": "foodie bear" + }, + { + "appid": 1103530, + "normalized_name": "cascadia quest" + }, + { + "appid": 1103540, + "normalized_name": "stupid bat" + }, + { + "appid": 1103550, + "normalized_name": "princess castle quest" + }, + { + "appid": 1103560, + "normalized_name": "airglow" + }, + { + "appid": 1103570, + "normalized_name": "龍鳳客棧" + }, + { + "appid": 1103590, + "normalized_name": "蹩脚的炼金术师(incompetent alchemist)" + }, + { + "appid": 1103610, + "normalized_name": "sailor simulator" + }, + { + "appid": 1103620, + "normalized_name": "青岚血枫" + }, + { + "appid": 1103630, + "normalized_name": "event horizon frontier" + }, + { + "appid": 1103640, + "normalized_name": "escape game cake" + }, + { + "appid": 1103650, + "normalized_name": "commando dog" + }, + { + "appid": 1103660, + "normalized_name": "jurassic snap" + }, + { + "appid": 1103690, + "normalized_name": "interregnum alpha" + }, + { + "appid": 1103730, + "normalized_name": "shing!" + }, + { + "appid": 1103770, + "normalized_name": "super arcade racing" + }, + { + "appid": 1103780, + "normalized_name": "top speed 2 racing legends" + }, + { + "appid": 1103790, + "normalized_name": "dave man" + }, + { + "appid": 1103800, + "normalized_name": "world war zero" + }, + { + "appid": 1103810, + "normalized_name": "my happy girls" + }, + { + "appid": 1103820, + "normalized_name": "siege of irdor" + }, + { + "appid": 1103860, + "normalized_name": "the wizards dark times brotherhood" + }, + { + "appid": 1103870, + "normalized_name": "space dance" + }, + { + "appid": 1103880, + "normalized_name": "bullet roulette vr" + }, + { + "appid": 1103890, + "normalized_name": "opening up" + }, + { + "appid": 1103920, + "normalized_name": "clickable coffee shop" + }, + { + "appid": 1103930, + "normalized_name": "shrine of the god ape" + }, + { + "appid": 1103940, + "normalized_name": "new zealand virtual debating chamber" + }, + { + "appid": 1103960, + "normalized_name": "the missing few" + }, + { + "appid": 1103970, + "normalized_name": "departure dash" + }, + { + "appid": 1103980, + "normalized_name": "six temples" + }, + { + "appid": 1104010, + "normalized_name": "save the biros vr" + }, + { + "appid": 1104030, + "normalized_name": "vermin hunter" + }, + { + "appid": 1104040, + "normalized_name": "hash line" + }, + { + "appid": 1104050, + "normalized_name": "deep diving vr" + }, + { + "appid": 1104100, + "normalized_name": "hentai cuties" + }, + { + "appid": 1104150, + "normalized_name": "ashi" + }, + { + "appid": 1104170, + "normalized_name": "cosmo chaser" + }, + { + "appid": 1104200, + "normalized_name": "ridiculous catapult simulator" + }, + { + "appid": 1104210, + "normalized_name": "voxel fly" + }, + { + "appid": 1104220, + "normalized_name": "kyle simulator" + }, + { + "appid": 1104230, + "normalized_name": "the last escape of yeti" + }, + { + "appid": 1104250, + "normalized_name": "poly mole" + }, + { + "appid": 1104280, + "normalized_name": "the slormancer" + }, + { + "appid": 1104320, + "normalized_name": "the treasure of the dragon" + }, + { + "appid": 1104330, + "normalized_name": "founders' fortune" + }, + { + "appid": 1104340, + "normalized_name": "get to work succubus chan!" + }, + { + "appid": 1104380, + "normalized_name": "the room vr a dark matter" + }, + { + "appid": 1104400, + "normalized_name": "我们的大学" + }, + { + "appid": 1104450, + "normalized_name": "bombergrounds reborn" + }, + { + "appid": 1104460, + "normalized_name": "gourmet warriors" + }, + { + "appid": 1104470, + "normalized_name": "super hero league of hoboken" + }, + { + "appid": 1104480, + "normalized_name": "soccer kid" + }, + { + "appid": 1104490, + "normalized_name": "water margin the tale of clouds and wind" + }, + { + "appid": 1104510, + "normalized_name": "rainbow run" + }, + { + "appid": 1104570, + "normalized_name": "shishi ballad of the oracle" + }, + { + "appid": 1104600, + "normalized_name": "rune fencer illyia" + }, + { + "appid": 1104610, + "normalized_name": "東方覚醒珠(※二次創作) ~ fan made virtual autography." + }, + { + "appid": 1104620, + "normalized_name": "the lost vr" + }, + { + "appid": 1104630, + "normalized_name": "pixocities" + }, + { + "appid": 1104660, + "normalized_name": "mo astray" + }, + { + "appid": 1104670, + "normalized_name": "baff 2" + }, + { + "appid": 1104690, + "normalized_name": "hard to be a king" + }, + { + "appid": 1104710, + "normalized_name": "a lazy magic teacher" + }, + { + "appid": 1104790, + "normalized_name": "pixel force 像素特攻队" + }, + { + "appid": 1104800, + "normalized_name": "radiance" + }, + { + "appid": 1104830, + "normalized_name": "mystery masterpiece the moonstone" + }, + { + "appid": 1104840, + "normalized_name": "vacation adventures park ranger 3" + }, + { + "appid": 1104870, + "normalized_name": "tkkg die feuerprobe" + }, + { + "appid": 1104890, + "normalized_name": "from head to toe" + }, + { + "appid": 1104910, + "normalized_name": "midnight grub session" + }, + { + "appid": 1104920, + "normalized_name": "the man came around" + }, + { + "appid": 1104930, + "normalized_name": "dots revamped!" + }, + { + "appid": 1104960, + "normalized_name": "alien kingdom" + }, + { + "appid": 1105040, + "normalized_name": "alchemist simulator" + }, + { + "appid": 1105110, + "normalized_name": "oxxo" + }, + { + "appid": 1105130, + "normalized_name": "arcadius" + }, + { + "appid": 1105140, + "normalized_name": "triangulum" + }, + { + "appid": 1105160, + "normalized_name": "sharpshooter plus" + }, + { + "appid": 1105210, + "normalized_name": "monstercastle 怪物城堡" + }, + { + "appid": 1105220, + "normalized_name": "infinity attackers" + }, + { + "appid": 1105240, + "normalized_name": "pakicetus" + }, + { + "appid": 1105300, + "normalized_name": "the cube" + }, + { + "appid": 1105330, + "normalized_name": "dark moon" + }, + { + "appid": 1105410, + "normalized_name": "shine's adventures 2 (zombie attack)" + }, + { + "appid": 1105420, + "normalized_name": "game of thrones winter is coming" + }, + { + "appid": 1105430, + "normalized_name": "bandit point" + }, + { + "appid": 1105460, + "normalized_name": "flight of the amazon queen 25th anniversary" + }, + { + "appid": 1105470, + "normalized_name": "fist of the forgotten" + }, + { + "appid": 1105480, + "normalized_name": "ggg collection" + }, + { + "appid": 1105490, + "normalized_name": "over sky" + }, + { + "appid": 1105500, + "normalized_name": "yakuza 4" + }, + { + "appid": 1105510, + "normalized_name": "yakuza 5" + }, + { + "appid": 1105530, + "normalized_name": "light hunters battalion of darkness" + }, + { + "appid": 1105550, + "normalized_name": "quizwitz" + }, + { + "appid": 1105560, + "normalized_name": "kra ken" + }, + { + "appid": 1105570, + "normalized_name": "final crash demo" + }, + { + "appid": 1105590, + "normalized_name": "dream cycle" + }, + { + "appid": 1105600, + "normalized_name": "welcome to... chichester 2 part ii no regrets for the future" + }, + { + "appid": 1105620, + "normalized_name": "exertus" + }, + { + "appid": 1105660, + "normalized_name": "stay safe labyrinth of the mad" + }, + { + "appid": 1105670, + "normalized_name": "the last spell" + }, + { + "appid": 1105710, + "normalized_name": "grind skateboarding" + }, + { + "appid": 1105730, + "normalized_name": "hangman" + }, + { + "appid": 1105740, + "normalized_name": "wheel of fate" + }, + { + "appid": 1105770, + "normalized_name": "thc" + }, + { + "appid": 1105810, + "normalized_name": "onset" + }, + { + "appid": 1105870, + "normalized_name": "hallway simulator 2020" + }, + { + "appid": 1105960, + "normalized_name": "togum" + }, + { + "appid": 1105970, + "normalized_name": "不死/immortal" + }, + { + "appid": 1105990, + "normalized_name": "outstation" + }, + { + "appid": 1106030, + "normalized_name": "road homeward 3 underwater world" + }, + { + "appid": 1106060, + "normalized_name": "attack it! devil legion" + }, + { + "appid": 1106140, + "normalized_name": "the drift challenge" + }, + { + "appid": 1106150, + "normalized_name": "yet another hero story" + }, + { + "appid": 1106200, + "normalized_name": "overseas" + }, + { + "appid": 1106340, + "normalized_name": "legend bowl" + }, + { + "appid": 1106350, + "normalized_name": "pyrax" + }, + { + "appid": 1106530, + "normalized_name": "gemcraft frostborn wrath" + }, + { + "appid": 1106660, + "normalized_name": "fire and thunder" + }, + { + "appid": 1106670, + "normalized_name": "diastone confusion" + }, + { + "appid": 1106680, + "normalized_name": "school of magic deck & slash" + }, + { + "appid": 1106690, + "normalized_name": "巫师超凡者 legend of the wizard" + }, + { + "appid": 1106700, + "normalized_name": "janga" + }, + { + "appid": 1106710, + "normalized_name": "on the verge ii" + }, + { + "appid": 1106720, + "normalized_name": "try 'n cry prologue" + }, + { + "appid": 1106730, + "normalized_name": "paradox escape route" + }, + { + "appid": 1106740, + "normalized_name": "the beast of gevaudan" + }, + { + "appid": 1106770, + "normalized_name": "shepherd of light" + }, + { + "appid": 1106790, + "normalized_name": "red horizon" + }, + { + "appid": 1106830, + "normalized_name": "rainbow billy the curse of the leviathan" + }, + { + "appid": 1106840, + "normalized_name": "hydroneer" + }, + { + "appid": 1106860, + "normalized_name": "ahegal seasons" + }, + { + "appid": 1106910, + "normalized_name": "nitroneers" + }, + { + "appid": 1106920, + "normalized_name": "nyanco" + }, + { + "appid": 1106930, + "normalized_name": "click commander" + }, + { + "appid": 1106940, + "normalized_name": "how to raise a wolf girl" + }, + { + "appid": 1106950, + "normalized_name": "furries & scalies friendswood" + }, + { + "appid": 1106980, + "normalized_name": "bulletorium" + }, + { + "appid": 1107040, + "normalized_name": "you don't have time" + }, + { + "appid": 1107050, + "normalized_name": "人工智能 阿尔法猫 ai alpha cat" + }, + { + "appid": 1107060, + "normalized_name": "lighthouse of guiding flames" + }, + { + "appid": 1107100, + "normalized_name": "second final" + }, + { + "appid": 1107130, + "normalized_name": "the way of cinnamon" + }, + { + "appid": 1107160, + "normalized_name": "pew pew puzzle defense" + }, + { + "appid": 1107190, + "normalized_name": "the fragment" + }, + { + "appid": 1107210, + "normalized_name": "jumping over it with kang kiyun" + }, + { + "appid": 1107230, + "normalized_name": "the 13th doll a fan game of the 7th guest" + }, + { + "appid": 1107300, + "normalized_name": "down in bermuda" + }, + { + "appid": 1107320, + "normalized_name": "outbrk" + }, + { + "appid": 1107340, + "normalized_name": "lonn" + }, + { + "appid": 1107350, + "normalized_name": "unsolved mystery club ancient astronauts (collector´s edition)" + }, + { + "appid": 1107370, + "normalized_name": "demoniaca everlasting night" + }, + { + "appid": 1107390, + "normalized_name": "project polygun" + }, + { + "appid": 1107440, + "normalized_name": "last warrior" + }, + { + "appid": 1107450, + "normalized_name": "dreams of solari chapter 1" + }, + { + "appid": 1107470, + "normalized_name": "applewood" + }, + { + "appid": 1107490, + "normalized_name": "the searchers of legends origin" + }, + { + "appid": 1107510, + "normalized_name": "favo!+" + }, + { + "appid": 1107520, + "normalized_name": "movie maven a tycoon game" + }, + { + "appid": 1107580, + "normalized_name": "main competition" + }, + { + "appid": 1107620, + "normalized_name": "mystery island hidden object games" + }, + { + "appid": 1107640, + "normalized_name": "turbo plane" + }, + { + "appid": 1107660, + "normalized_name": "round rooms" + }, + { + "appid": 1107720, + "normalized_name": "spider solitaire f" + }, + { + "appid": 1107730, + "normalized_name": "dahalo" + }, + { + "appid": 1107750, + "normalized_name": "faraday protocol" + }, + { + "appid": 1107790, + "normalized_name": "the complex" + }, + { + "appid": 1107800, + "normalized_name": "doku's noodle empire" + }, + { + "appid": 1107820, + "normalized_name": "pushy and pully in blockland" + }, + { + "appid": 1107860, + "normalized_name": "dofense" + }, + { + "appid": 1107920, + "normalized_name": "8bit pigeon hunter" + }, + { + "appid": 1107940, + "normalized_name": "rocket boy" + }, + { + "appid": 1108000, + "normalized_name": "children of silentown" + }, + { + "appid": 1108020, + "normalized_name": "bepuzzled jigsaw puzzle sweets" + }, + { + "appid": 1108030, + "normalized_name": "bepuzzled jigsaw puzzle paradise" + }, + { + "appid": 1108040, + "normalized_name": "bepuzzled jigsaw puzzle aquatic" + }, + { + "appid": 1108090, + "normalized_name": "climb with wheelbarrow" + }, + { + "appid": 1108110, + "normalized_name": "neonoen" + }, + { + "appid": 1108120, + "normalized_name": "the unseen fears stories untold collector's" + }, + { + "appid": 1108130, + "normalized_name": "the last antlion" + }, + { + "appid": 1108170, + "normalized_name": "plot of the druid" + }, + { + "appid": 1108190, + "normalized_name": "victorian mysteries the yellow room" + }, + { + "appid": 1108240, + "normalized_name": "code/the werewolf party" + }, + { + "appid": 1108250, + "normalized_name": "all systems operational" + }, + { + "appid": 1108270, + "normalized_name": "nova space armada" + }, + { + "appid": 1108310, + "normalized_name": "the demon nicolas eymerich inquisitor audiogame" + }, + { + "appid": 1108320, + "normalized_name": "妄想破绽 broken delusion" + }, + { + "appid": 1108350, + "normalized_name": "boet fighter" + }, + { + "appid": 1108370, + "normalized_name": "ratropolis" + }, + { + "appid": 1108380, + "normalized_name": "highlight" + }, + { + "appid": 1108390, + "normalized_name": "cartonfall fortress defend cardboard castle" + }, + { + "appid": 1108540, + "normalized_name": "zen chess champion's moves" + }, + { + "appid": 1108550, + "normalized_name": "zen chess blindfold masters" + }, + { + "appid": 1108560, + "normalized_name": "罪業狂襲frenzyretribution" + }, + { + "appid": 1108590, + "normalized_name": "eldest souls" + }, + { + "appid": 1108600, + "normalized_name": "last moon" + }, + { + "appid": 1108620, + "normalized_name": "gangsta woman" + }, + { + "appid": 1108630, + "normalized_name": "gythol granditti the crypt of darkness" + }, + { + "appid": 1108640, + "normalized_name": "omnimus" + }, + { + "appid": 1108680, + "normalized_name": "monster girl fantasy 2 exposed" + }, + { + "appid": 1108740, + "normalized_name": "stick em up" + }, + { + "appid": 1108780, + "normalized_name": "the pirate queen" + }, + { + "appid": 1108800, + "normalized_name": "android hunter a" + }, + { + "appid": 1108820, + "normalized_name": "polar jump" + }, + { + "appid": 1108940, + "normalized_name": "异星传奇/strange planet" + }, + { + "appid": 1108950, + "normalized_name": "copycat" + }, + { + "appid": 1109040, + "normalized_name": "fists of invokers" + }, + { + "appid": 1109070, + "normalized_name": "接头 / contact point" + }, + { + "appid": 1109080, + "normalized_name": "prison ball full blown" + }, + { + "appid": 1109100, + "normalized_name": "el tesoro de isla alcachofa" + }, + { + "appid": 1109110, + "normalized_name": "ghost land" + }, + { + "appid": 1109130, + "normalized_name": "逝去的回忆3:四叶草之梦" + }, + { + "appid": 1109160, + "normalized_name": "giants uprising" + }, + { + "appid": 1109170, + "normalized_name": "happy grumps" + }, + { + "appid": 1109220, + "normalized_name": "pencil fantastic" + }, + { + "appid": 1109280, + "normalized_name": "back to hell" + }, + { + "appid": 1109300, + "normalized_name": "volt patrol stealth driving" + }, + { + "appid": 1109310, + "normalized_name": "expansion" + }, + { + "appid": 1109340, + "normalized_name": "tennis. amazing tournament" + }, + { + "appid": 1109350, + "normalized_name": "ancient souls the governor" + }, + { + "appid": 1109360, + "normalized_name": "hentai mosaique fix it shoppe" + }, + { + "appid": 1109400, + "normalized_name": "dino delivery" + }, + { + "appid": 1109410, + "normalized_name": "perspective" + }, + { + "appid": 1109420, + "normalized_name": "the luminist" + }, + { + "appid": 1109460, + "normalized_name": "there is no greendam" + }, + { + "appid": 1109470, + "normalized_name": "lily's revenge broken" + }, + { + "appid": 1109490, + "normalized_name": "the cherry orchard" + }, + { + "appid": 1109550, + "normalized_name": "cricvrx vr cricket" + }, + { + "appid": 1109570, + "normalized_name": "《文字遊戲》" + }, + { + "appid": 1109650, + "normalized_name": "hentai girls mosaic" + }, + { + "appid": 1109660, + "normalized_name": "age of fear 5 the day of the rat" + }, + { + "appid": 1109680, + "normalized_name": "regiments" + }, + { + "appid": 1109690, + "normalized_name": "asterix & obelix xxl 3 the crystal menhir" + }, + { + "appid": 1109700, + "normalized_name": "last warrior" + }, + { + "appid": 1109720, + "normalized_name": "dotori" + }, + { + "appid": 1109740, + "normalized_name": "kakuro" + }, + { + "appid": 1109750, + "normalized_name": "terracotta shards of doom" + }, + { + "appid": 1109800, + "normalized_name": "love on paper" + }, + { + "appid": 1109820, + "normalized_name": "pile up! box by box" + }, + { + "appid": 1109840, + "normalized_name": "réussir code de la route nouvelle édition" + }, + { + "appid": 1109880, + "normalized_name": "just random squares" + }, + { + "appid": 1109890, + "normalized_name": "planet invasion" + }, + { + "appid": 1109940, + "normalized_name": "railroadvr" + }, + { + "appid": 1109960, + "normalized_name": "the tales of epicton kingdom" + }, + { + "appid": 1109980, + "normalized_name": "sare inception" + }, + { + "appid": 1110010, + "normalized_name": "the doulos study" + }, + { + "appid": 1110020, + "normalized_name": "image of perfection" + }, + { + "appid": 1110030, + "normalized_name": "heroes of myth" + }, + { + "appid": 1110050, + "normalized_name": "evan's remains" + }, + { + "appid": 1110090, + "normalized_name": "cyber ante" + }, + { + "appid": 1110100, + "normalized_name": "power rangers battle for the grid" + }, + { + "appid": 1110200, + "normalized_name": "spaceman defender" + }, + { + "appid": 1110210, + "normalized_name": "adam's ascending" + }, + { + "appid": 1110220, + "normalized_name": "shinobi spirits s legend of heroes/忍スピリッツs 真田獣勇士伝" + }, + { + "appid": 1110280, + "normalized_name": "royal life hard to be a queen" + }, + { + "appid": 1110340, + "normalized_name": "detective bot" + }, + { + "appid": 1110350, + "normalized_name": "fishman" + }, + { + "appid": 1110380, + "normalized_name": "fit for a king" + }, + { + "appid": 1110390, + "normalized_name": "unturned dedicated server" + }, + { + "appid": 1110430, + "normalized_name": "lapso" + }, + { + "appid": 1110460, + "normalized_name": "myoubouh catcher" + }, + { + "appid": 1110470, + "normalized_name": "this is space" + }, + { + "appid": 1110490, + "normalized_name": "lab defence" + }, + { + "appid": 1110560, + "normalized_name": "squad erotica" + }, + { + "appid": 1110600, + "normalized_name": "grayscale" + }, + { + "appid": 1110620, + "normalized_name": "way of rhea" + }, + { + "appid": 1110640, + "normalized_name": "double elf fantasy" + }, + { + "appid": 1110650, + "normalized_name": "别以为你是开发者我就不敢打你" + }, + { + "appid": 1110670, + "normalized_name": "under the ground" + }, + { + "appid": 1110690, + "normalized_name": "banter schooldays!!三〇一室无一人" + }, + { + "appid": 1110720, + "normalized_name": "the last companion 我与我行将离去的小友。" + }, + { + "appid": 1110770, + "normalized_name": "about love hate and the other ones 2" + }, + { + "appid": 1110780, + "normalized_name": "tractage aux portes 2 mob à la cafétéria" + }, + { + "appid": 1110840, + "normalized_name": "keika a puzzle adventure" + }, + { + "appid": 1110870, + "normalized_name": "alien shooter in space cradle virtual reality" + }, + { + "appid": 1110890, + "normalized_name": "my wolf desktop wild pet" + }, + { + "appid": 1110910, + "normalized_name": "mortal shell" + }, + { + "appid": 1110980, + "normalized_name": "warden of the isles" + }, + { + "appid": 1111030, + "normalized_name": "hentai bad girls" + }, + { + "appid": 1111040, + "normalized_name": "global aviation dream" + }, + { + "appid": 1111080, + "normalized_name": "ghost feed" + }, + { + "appid": 1111090, + "normalized_name": "alpha lyrae discovery" + }, + { + "appid": 1111100, + "normalized_name": "oasis shooting ops" + }, + { + "appid": 1111110, + "normalized_name": "euro numismatcy! coin collector" + }, + { + "appid": 1111120, + "normalized_name": "snares of ruin 2" + }, + { + "appid": 1111130, + "normalized_name": "song of a spirit" + }, + { + "appid": 1111150, + "normalized_name": "fault & fragment" + }, + { + "appid": 1111200, + "normalized_name": "car soccer world cup" + }, + { + "appid": 1111210, + "normalized_name": "the backrooms game free" + }, + { + "appid": 1111220, + "normalized_name": "genius! nazi girl goeppels chan ep3" + }, + { + "appid": 1111250, + "normalized_name": "corporate america" + }, + { + "appid": 1111270, + "normalized_name": "i wanna brother" + }, + { + "appid": 1111280, + "normalized_name": "9 games 2 buttons" + }, + { + "appid": 1111290, + "normalized_name": "moscow rush" + }, + { + "appid": 1111300, + "normalized_name": "aim ftw" + }, + { + "appid": 1111310, + "normalized_name": "duck in town a rising knight" + }, + { + "appid": 1111340, + "normalized_name": "dream jump adventure" + }, + { + "appid": 1111370, + "normalized_name": "a summer's end hong kong 1986" + }, + { + "appid": 1111380, + "normalized_name": "robotics;notes elite" + }, + { + "appid": 1111390, + "normalized_name": "robotics;notes dash" + }, + { + "appid": 1111410, + "normalized_name": "think_" + }, + { + "appid": 1111420, + "normalized_name": "infinite skyline superflight" + }, + { + "appid": 1111450, + "normalized_name": "youth feather" + }, + { + "appid": 1111460, + "normalized_name": "小白兔电商~bunny e shop" + }, + { + "appid": 1111540, + "normalized_name": "room 40" + }, + { + "appid": 1111590, + "normalized_name": "linked mask" + }, + { + "appid": 1111600, + "normalized_name": "klang 2" + }, + { + "appid": 1111620, + "normalized_name": "gloomy eyes vr" + }, + { + "appid": 1111650, + "normalized_name": "never breakup" + }, + { + "appid": 1111660, + "normalized_name": "c15" + }, + { + "appid": 1111730, + "normalized_name": "red ruin" + }, + { + "appid": 1111760, + "normalized_name": "world of guns vr" + }, + { + "appid": 1111770, + "normalized_name": "up up up up" + }, + { + "appid": 1111810, + "normalized_name": "sex simulator" + }, + { + "appid": 1111830, + "normalized_name": "sentenced vr" + }, + { + "appid": 1111840, + "normalized_name": "urban explorer" + }, + { + "appid": 1111870, + "normalized_name": "admiral stepinski" + }, + { + "appid": 1111880, + "normalized_name": "block granny horror survival" + }, + { + "appid": 1111910, + "normalized_name": "odezie" + }, + { + "appid": 1111920, + "normalized_name": "airlock arena profit or perish" + }, + { + "appid": 1111930, + "normalized_name": "underspace" + }, + { + "appid": 1111940, + "normalized_name": "quiplash 2 interlashional" + }, + { + "appid": 1111960, + "normalized_name": "tsuro the game of the path vr" + }, + { + "appid": 1111970, + "normalized_name": "zeminator" + }, + { + "appid": 1111990, + "normalized_name": "einn" + }, + { + "appid": 1112010, + "normalized_name": "afloat" + }, + { + "appid": 1112050, + "normalized_name": "time for quest" + }, + { + "appid": 1112100, + "normalized_name": "tarzan vr the trilogy" + }, + { + "appid": 1112110, + "normalized_name": "redemption cemetery dead park collector's" + }, + { + "appid": 1112120, + "normalized_name": "space viking raiders vr" + }, + { + "appid": 1112130, + "normalized_name": "cube doa" + }, + { + "appid": 1112150, + "normalized_name": "nekour" + }, + { + "appid": 1112200, + "normalized_name": "rize of the summonds" + }, + { + "appid": 1112230, + "normalized_name": "furries & scalies super scary halloween spooky times" + }, + { + "appid": 1112240, + "normalized_name": "wonder boy returns remix" + }, + { + "appid": 1112250, + "normalized_name": "umbraseal" + }, + { + "appid": 1112330, + "normalized_name": "norr part i ace shot" + }, + { + "appid": 1112340, + "normalized_name": "the dreadful whispers" + }, + { + "appid": 1112350, + "normalized_name": "荒凉城市" + }, + { + "appid": 1112360, + "normalized_name": "blind spot vr / 盲点 vr" + }, + { + "appid": 1112370, + "normalized_name": "now i am there" + }, + { + "appid": 1112380, + "normalized_name": "wer weiß denn sowas? das 2. spiel" + }, + { + "appid": 1112390, + "normalized_name": "hypercore rhythm bullet hell" + }, + { + "appid": 1112400, + "normalized_name": "project torque free 2 play mmo racing game" + }, + { + "appid": 1112430, + "normalized_name": "vivieon" + }, + { + "appid": 1112450, + "normalized_name": "arima" + }, + { + "appid": 1112570, + "normalized_name": "crime cities" + }, + { + "appid": 1112580, + "normalized_name": "a pirate quartermaster" + }, + { + "appid": 1112620, + "normalized_name": "isles of adalar" + }, + { + "appid": 1112630, + "normalized_name": "lost vulcan" + }, + { + "appid": 1112650, + "normalized_name": "overflo game" + }, + { + "appid": 1112670, + "normalized_name": "yet another waveshooter" + }, + { + "appid": 1112680, + "normalized_name": "sliding fantasy fantasy 1" + }, + { + "appid": 1112690, + "normalized_name": "coffin rot brewing co." + }, + { + "appid": 1112700, + "normalized_name": "guroopia!" + }, + { + "appid": 1112710, + "normalized_name": "neon tower blast" + }, + { + "appid": 1112760, + "normalized_name": "farrealm the prince of winds" + }, + { + "appid": 1112790, + "normalized_name": "automation empire" + }, + { + "appid": 1112830, + "normalized_name": "the watchers" + }, + { + "appid": 1112840, + "normalized_name": "shelter in place" + }, + { + "appid": 1112870, + "normalized_name": "cardaria" + }, + { + "appid": 1112880, + "normalized_name": "dungeon marauder" + }, + { + "appid": 1112890, + "normalized_name": "calico" + }, + { + "appid": 1112910, + "normalized_name": "alien fury" + }, + { + "appid": 1112930, + "normalized_name": "dredgers" + }, + { + "appid": 1112940, + "normalized_name": "大侠坛说" + }, + { + "appid": 1112950, + "normalized_name": "japocaliptyca/ япокалиптика" + }, + { + "appid": 1112960, + "normalized_name": "wildland" + }, + { + "appid": 1113000, + "normalized_name": "persona 4 golden" + }, + { + "appid": 1113010, + "normalized_name": "chornobyl liquidators" + }, + { + "appid": 1113030, + "normalized_name": "stellar warfare" + }, + { + "appid": 1113060, + "normalized_name": "magic farm 3 the ice danger" + }, + { + "appid": 1113070, + "normalized_name": "jail simulator" + }, + { + "appid": 1113080, + "normalized_name": "dog trainer" + }, + { + "appid": 1113090, + "normalized_name": "crown of the empire" + }, + { + "appid": 1113110, + "normalized_name": "the stranger interactive film" + }, + { + "appid": 1113120, + "normalized_name": "ixion" + }, + { + "appid": 1113210, + "normalized_name": "jomp the jumper" + }, + { + "appid": 1113220, + "normalized_name": "asciident" + }, + { + "appid": 1113230, + "normalized_name": "tertd" + }, + { + "appid": 1113240, + "normalized_name": "voxel crusade" + }, + { + "appid": 1113270, + "normalized_name": "my plushy shift" + }, + { + "appid": 1113290, + "normalized_name": "token game" + }, + { + "appid": 1113300, + "normalized_name": "to battle! hell's crusade" + }, + { + "appid": 1113310, + "normalized_name": "post soviet zombies" + }, + { + "appid": 1113340, + "normalized_name": "mr joshua carrot" + }, + { + "appid": 1113360, + "normalized_name": "last man" + }, + { + "appid": 1113370, + "normalized_name": "drone wars vr" + }, + { + "appid": 1113380, + "normalized_name": "deep sea tycoon diver's paradise" + }, + { + "appid": 1113390, + "normalized_name": "handy" + }, + { + "appid": 1113400, + "normalized_name": "alliance of the sacred suns" + }, + { + "appid": 1113490, + "normalized_name": "river legends a fly fishing adventure" + }, + { + "appid": 1113530, + "normalized_name": "samosbor 2d" + }, + { + "appid": 1113560, + "normalized_name": "nier replicant ver.1.22474487139..." + }, + { + "appid": 1113570, + "normalized_name": "voice of cards the isle dragon roars" + }, + { + "appid": 1113580, + "normalized_name": "シニサギ" + }, + { + "appid": 1113630, + "normalized_name": "for the night" + }, + { + "appid": 1113640, + "normalized_name": "escape from labyrinth" + }, + { + "appid": 1113650, + "normalized_name": "jaxon the thief" + }, + { + "appid": 1113670, + "normalized_name": "mini tekton" + }, + { + "appid": 1113680, + "normalized_name": "hentai girl division" + }, + { + "appid": 1113690, + "normalized_name": "senna and the forest" + }, + { + "appid": 1113730, + "normalized_name": "cubico" + }, + { + "appid": 1113750, + "normalized_name": "lost artifacts frozen queen" + }, + { + "appid": 1113760, + "normalized_name": "roads of time" + }, + { + "appid": 1113770, + "normalized_name": "lunch a palooza" + }, + { + "appid": 1113780, + "normalized_name": "uncharted tides port royal" + }, + { + "appid": 1113840, + "normalized_name": "tinselfly" + }, + { + "appid": 1113850, + "normalized_name": "sanguine soul" + }, + { + "appid": 1113860, + "normalized_name": "cyborgs attack" + }, + { + "appid": 1113870, + "normalized_name": "time travelling blues" + }, + { + "appid": 1113880, + "normalized_name": "best in the west" + }, + { + "appid": 1113930, + "normalized_name": "don't die" + }, + { + "appid": 1113940, + "normalized_name": "electronic super joy 2" + }, + { + "appid": 1113950, + "normalized_name": "puzzle fire sticks" + }, + { + "appid": 1113960, + "normalized_name": "pictures of life" + }, + { + "appid": 1113970, + "normalized_name": "little brother jim" + }, + { + "appid": 1114000, + "normalized_name": "king of dragon balls" + }, + { + "appid": 1114020, + "normalized_name": "zomb battlegrounds" + }, + { + "appid": 1114030, + "normalized_name": "the room syndrome" + }, + { + "appid": 1114080, + "normalized_name": "blazing war" + }, + { + "appid": 1114090, + "normalized_name": "life tastes like cardboard" + }, + { + "appid": 1114110, + "normalized_name": "nightmare game (噩梦游戏)" + }, + { + "appid": 1114130, + "normalized_name": "my koi" + }, + { + "appid": 1114140, + "normalized_name": "fortune telling" + }, + { + "appid": 1114150, + "normalized_name": "carx street" + }, + { + "appid": 1114170, + "normalized_name": "screen vr" + }, + { + "appid": 1114210, + "normalized_name": "colloc" + }, + { + "appid": 1114220, + "normalized_name": "gedonia" + }, + { + "appid": 1114230, + "normalized_name": "gear puzzle the inheritance of grandpa" + }, + { + "appid": 1114260, + "normalized_name": "under what?" + }, + { + "appid": 1114270, + "normalized_name": "1912 titanic mystery" + }, + { + "appid": 1114290, + "normalized_name": "windjammers 2" + }, + { + "appid": 1114340, + "normalized_name": "mortadelo y filemón operación moscú" + }, + { + "appid": 1114360, + "normalized_name": "hentai inumimi" + }, + { + "appid": 1114370, + "normalized_name": "little weasel" + }, + { + "appid": 1114380, + "normalized_name": "orgynizer" + }, + { + "appid": 1114390, + "normalized_name": "air combat mf" + }, + { + "appid": 1114430, + "normalized_name": "ballex" + }, + { + "appid": 1114460, + "normalized_name": "paranormal detective escape from the 80's" + }, + { + "appid": 1114480, + "normalized_name": "blood opera crescendo" + }, + { + "appid": 1114520, + "normalized_name": "hero among us" + }, + { + "appid": 1114530, + "normalized_name": "ttv3" + }, + { + "appid": 1114610, + "normalized_name": "hover tank arena" + }, + { + "appid": 1114620, + "normalized_name": "cloak and dasher" + }, + { + "appid": 1114630, + "normalized_name": "dr. tacocat" + }, + { + "appid": 1114640, + "normalized_name": "my days with the demoness" + }, + { + "appid": 1114650, + "normalized_name": "horrorvale" + }, + { + "appid": 1114660, + "normalized_name": "4k bricks breaker plus" + }, + { + "appid": 1114690, + "normalized_name": "arcadia the crystal wars" + }, + { + "appid": 1114700, + "normalized_name": "fight for freedom" + }, + { + "appid": 1114710, + "normalized_name": "kanna" + }, + { + "appid": 1114730, + "normalized_name": "femdom lines" + }, + { + "appid": 1114740, + "normalized_name": "red island" + }, + { + "appid": 1114760, + "normalized_name": "幻想战棋 明日帝国 srpg of world the empire" + }, + { + "appid": 1114830, + "normalized_name": "armor clash 3" + }, + { + "appid": 1114860, + "normalized_name": "hobs" + }, + { + "appid": 1114870, + "normalized_name": "lenna's inception" + }, + { + "appid": 1114880, + "normalized_name": "vibrator simulator" + }, + { + "appid": 1114900, + "normalized_name": "ayo the clown" + }, + { + "appid": 1114910, + "normalized_name": "alone in the war" + }, + { + "appid": 1114940, + "normalized_name": "i wanna maker" + }, + { + "appid": 1114950, + "normalized_name": "learn japanese rpg hiragana forbidden speech" + }, + { + "appid": 1114990, + "normalized_name": "it pays to be a winner" + }, + { + "appid": 1115020, + "normalized_name": "老板攻略" + }, + { + "appid": 1115030, + "normalized_name": "running black" + }, + { + "appid": 1115040, + "normalized_name": "sinceremen" + }, + { + "appid": 1115050, + "normalized_name": "will you snail?" + }, + { + "appid": 1115060, + "normalized_name": "trace of the past" + }, + { + "appid": 1115090, + "normalized_name": "my planet [rts]" + }, + { + "appid": 1115110, + "normalized_name": "airborne trials" + }, + { + "appid": 1115380, + "normalized_name": "ballboi" + }, + { + "appid": 1115400, + "normalized_name": "speed mazing" + }, + { + "appid": 1115420, + "normalized_name": "dickie a cumming" + }, + { + "appid": 1115450, + "normalized_name": "bastide" + }, + { + "appid": 1115470, + "normalized_name": "metronium" + }, + { + "appid": 1115540, + "normalized_name": "volume up" + }, + { + "appid": 1115570, + "normalized_name": "forest mage" + }, + { + "appid": 1115580, + "normalized_name": "grand brix shooter" + }, + { + "appid": 1115610, + "normalized_name": "the lost and the wicked" + }, + { + "appid": 1115620, + "normalized_name": "super pig" + }, + { + "appid": 1115630, + "normalized_name": "magnetic daydream" + }, + { + "appid": 1115640, + "normalized_name": "英雄群侠传ii" + }, + { + "appid": 1115650, + "normalized_name": "blind date 3d" + }, + { + "appid": 1115660, + "normalized_name": "apollo 11 vr hd first steps" + }, + { + "appid": 1115670, + "normalized_name": "c64 & amiga classix remakes sixpack 3" + }, + { + "appid": 1115690, + "normalized_name": "yes your grace" + }, + { + "appid": 1115780, + "normalized_name": "the almost gone" + }, + { + "appid": 1115830, + "normalized_name": "fun fantasy girls jigsaw" + }, + { + "appid": 1115860, + "normalized_name": "bomtiles" + }, + { + "appid": 1115870, + "normalized_name": "inner tao" + }, + { + "appid": 1115960, + "normalized_name": "struggle" + }, + { + "appid": 1115970, + "normalized_name": "victim cache the rpg an 80s jrpg parody" + }, + { + "appid": 1115980, + "normalized_name": "something for someone else" + }, + { + "appid": 1116010, + "normalized_name": "blockoid" + }, + { + "appid": 1116020, + "normalized_name": "witch college" + }, + { + "appid": 1116030, + "normalized_name": "oceanum mortis" + }, + { + "appid": 1116050, + "normalized_name": "starminer" + }, + { + "appid": 1116080, + "normalized_name": "所谓侠客 so called hero" + }, + { + "appid": 1116100, + "normalized_name": "beetles" + }, + { + "appid": 1116110, + "normalized_name": "raifu wars" + }, + { + "appid": 1116170, + "normalized_name": "cybercorp" + }, + { + "appid": 1116180, + "normalized_name": "amora crystal" + }, + { + "appid": 1116190, + "normalized_name": "flutter bombs" + }, + { + "appid": 1116200, + "normalized_name": "greetings from krampus" + }, + { + "appid": 1116210, + "normalized_name": "our world has not decayed" + }, + { + "appid": 1116230, + "normalized_name": "the story of henry bishop" + }, + { + "appid": 1116240, + "normalized_name": "android amazones" + }, + { + "appid": 1116260, + "normalized_name": "samudra" + }, + { + "appid": 1116280, + "normalized_name": "8 bit attack" + }, + { + "appid": 1116290, + "normalized_name": "alien escape" + }, + { + "appid": 1116300, + "normalized_name": "bounce" + }, + { + "appid": 1116340, + "normalized_name": "eleanor 3" + }, + { + "appid": 1116350, + "normalized_name": "exsys" + }, + { + "appid": 1116360, + "normalized_name": "jerry jobhopper" + }, + { + "appid": 1116390, + "normalized_name": "negative atmosphere" + }, + { + "appid": 1116430, + "normalized_name": "mostly intense monster defense" + }, + { + "appid": 1116460, + "normalized_name": "tactical bandits" + }, + { + "appid": 1116470, + "normalized_name": "real girl vr" + }, + { + "appid": 1116480, + "normalized_name": "slender threads" + }, + { + "appid": 1116490, + "normalized_name": "lie in my heart" + }, + { + "appid": 1116500, + "normalized_name": "hvac simulator" + }, + { + "appid": 1116520, + "normalized_name": "the backrooms" + }, + { + "appid": 1116530, + "normalized_name": "dithered" + }, + { + "appid": 1116540, + "normalized_name": "davigo vr vs. pc" + }, + { + "appid": 1116550, + "normalized_name": "elon simulator 2019" + }, + { + "appid": 1116560, + "normalized_name": "gates of a ruined empire" + }, + { + "appid": 1116570, + "normalized_name": "electric sheep a cyberpunk dystopia" + }, + { + "appid": 1116580, + "normalized_name": "shady part of me" + }, + { + "appid": 1116590, + "normalized_name": "full animal party" + }, + { + "appid": 1116600, + "normalized_name": "art of air war" + }, + { + "appid": 1116650, + "normalized_name": "capcom go! apollo vr planetarium" + }, + { + "appid": 1116660, + "normalized_name": "neon tide" + }, + { + "appid": 1116670, + "normalized_name": "simple railroad" + }, + { + "appid": 1116700, + "normalized_name": "vermillion watch parisian pursuit collector's" + }, + { + "appid": 1116750, + "normalized_name": "in blood" + }, + { + "appid": 1116770, + "normalized_name": "shovel knight showdown" + }, + { + "appid": 1116780, + "normalized_name": "shovel knight king of cards" + }, + { + "appid": 1116790, + "normalized_name": "sakura shadow monsters" + }, + { + "appid": 1116800, + "normalized_name": "play dog play tag" + }, + { + "appid": 1116810, + "normalized_name": "infinity wars" + }, + { + "appid": 1116860, + "normalized_name": "the gun knight" + }, + { + "appid": 1116870, + "normalized_name": "duel girl" + }, + { + "appid": 1116880, + "normalized_name": "伊格利亚战记/the heroic legend of eagarlnia" + }, + { + "appid": 1116890, + "normalized_name": "unsolved mystery club amelia earhart" + }, + { + "appid": 1116910, + "normalized_name": "drowning in her sea" + }, + { + "appid": 1116960, + "normalized_name": "undefeated" + }, + { + "appid": 1116990, + "normalized_name": "legend of cenama" + }, + { + "appid": 1117000, + "normalized_name": "cyberrunner" + }, + { + "appid": 1117020, + "normalized_name": "bolthalt" + }, + { + "appid": 1117040, + "normalized_name": "武道戰姬 女僕(武道戦姫 メイド / budo girl war maid)" + }, + { + "appid": 1117090, + "normalized_name": "purple place classic games" + }, + { + "appid": 1117120, + "normalized_name": "the cross horror game" + }, + { + "appid": 1117150, + "normalized_name": "garbageclassification" + }, + { + "appid": 1117160, + "normalized_name": "minds of nations" + }, + { + "appid": 1117210, + "normalized_name": "顶酱" + }, + { + "appid": 1117220, + "normalized_name": "wizardcraft colonies" + }, + { + "appid": 1117310, + "normalized_name": "sandwich sudoku" + }, + { + "appid": 1117330, + "normalized_name": "bouncy bob episode 2" + }, + { + "appid": 1117340, + "normalized_name": "gods of havoc into the void" + }, + { + "appid": 1117360, + "normalized_name": "word forward" + }, + { + "appid": 1117370, + "normalized_name": "super bearded dragons" + }, + { + "appid": 1117380, + "normalized_name": "project cappuccino" + }, + { + "appid": 1117420, + "normalized_name": "bryce's movement engine¹" + }, + { + "appid": 1117480, + "normalized_name": "dead hand" + }, + { + "appid": 1117490, + "normalized_name": "theater commander the coming wars modern war game" + }, + { + "appid": 1117500, + "normalized_name": "are you ready vr" + }, + { + "appid": 1117560, + "normalized_name": "南国育ち/nangoku sodachi" + }, + { + "appid": 1117590, + "normalized_name": "learn spanish! easy vocabulary" + }, + { + "appid": 1117600, + "normalized_name": "day of vaccination" + }, + { + "appid": 1117630, + "normalized_name": "i got a cat maid" + }, + { + "appid": 1117660, + "normalized_name": "mines of volantis" + }, + { + "appid": 1117670, + "normalized_name": "gonner2" + }, + { + "appid": 1117710, + "normalized_name": "contraptions" + }, + { + "appid": 1117730, + "normalized_name": "bepuzzled jigsaw puzzle mega bundle" + }, + { + "appid": 1117760, + "normalized_name": "deadly step" + }, + { + "appid": 1117810, + "normalized_name": "git gud or get rekt" + }, + { + "appid": 1117820, + "normalized_name": "idle adventurer" + }, + { + "appid": 1117840, + "normalized_name": "azurebreak heroes" + }, + { + "appid": 1117880, + "normalized_name": "biolab wars" + }, + { + "appid": 1117890, + "normalized_name": "tamiku" + }, + { + "appid": 1117900, + "normalized_name": "fantasy maid" + }, + { + "appid": 1117920, + "normalized_name": "daemonclaw origins of nnar" + }, + { + "appid": 1117930, + "normalized_name": "惊奇剑士" + }, + { + "appid": 1117970, + "normalized_name": "monochrome order" + }, + { + "appid": 1117980, + "normalized_name": "asdivine kamura" + }, + { + "appid": 1117990, + "normalized_name": "wizards of brandel" + }, + { + "appid": 1118000, + "normalized_name": "revenant march" + }, + { + "appid": 1118040, + "normalized_name": "the last king prologue" + }, + { + "appid": 1118050, + "normalized_name": "terminal squad sentinel" + }, + { + "appid": 1118070, + "normalized_name": "1976 back to midway" + }, + { + "appid": 1118100, + "normalized_name": "曲阿小将 minor leader" + }, + { + "appid": 1118110, + "normalized_name": "coal mining simulator" + }, + { + "appid": 1118200, + "normalized_name": "people playground" + }, + { + "appid": 1118220, + "normalized_name": "orchard simulator" + }, + { + "appid": 1118240, + "normalized_name": "lake" + }, + { + "appid": 1118310, + "normalized_name": "retroarch" + }, + { + "appid": 1118320, + "normalized_name": "nation breakers steam arena" + }, + { + "appid": 1118350, + "normalized_name": "meegah mem 2" + }, + { + "appid": 1118390, + "normalized_name": "dragon guide" + }, + { + "appid": 1118410, + "normalized_name": "gladium" + }, + { + "appid": 1118440, + "normalized_name": "poisoner's teacup" + }, + { + "appid": 1118470, + "normalized_name": "wood 'n stones" + }, + { + "appid": 1118500, + "normalized_name": "thugsters battle royale" + }, + { + "appid": 1118520, + "normalized_name": "paralives" + }, + { + "appid": 1118550, + "normalized_name": "fury's sky" + }, + { + "appid": 1118570, + "normalized_name": "erstwhile tower" + }, + { + "appid": 1118580, + "normalized_name": "wintercearig" + }, + { + "appid": 1118590, + "normalized_name": "orionide prologue" + }, + { + "appid": 1118600, + "normalized_name": "let's make... sports" + }, + { + "appid": 1118630, + "normalized_name": "hancho" + }, + { + "appid": 1118640, + "normalized_name": "meta assembled" + }, + { + "appid": 1118670, + "normalized_name": "space raven quest tiny planet" + }, + { + "appid": 1118680, + "normalized_name": "pliksim" + }, + { + "appid": 1118690, + "normalized_name": "radical gear" + }, + { + "appid": 1118700, + "normalized_name": "super demon boy" + }, + { + "appid": 1118730, + "normalized_name": "super lee world" + }, + { + "appid": 1118740, + "normalized_name": "cruel bands career 残酷乐队生涯" + }, + { + "appid": 1118790, + "normalized_name": "vqd platformer adventures" + }, + { + "appid": 1118820, + "normalized_name": "seraphic destroyer" + }, + { + "appid": 1118830, + "normalized_name": "awakening" + }, + { + "appid": 1118840, + "normalized_name": "my name is you and it's the only unusual thing in my life" + }, + { + "appid": 1118850, + "normalized_name": "lock; in final cut" + }, + { + "appid": 1118870, + "normalized_name": "sort battle dungeon" + }, + { + "appid": 1118880, + "normalized_name": "rituals in the dark" + }, + { + "appid": 1118910, + "normalized_name": "sunflower" + }, + { + "appid": 1118920, + "normalized_name": "trencheswip" + }, + { + "appid": 1118930, + "normalized_name": "frenzy plants" + }, + { + "appid": 1118940, + "normalized_name": "robot terminator" + }, + { + "appid": 1118950, + "normalized_name": "engineer arena" + }, + { + "appid": 1119010, + "normalized_name": "flippin kaktus" + }, + { + "appid": 1119060, + "normalized_name": "the designer's curse" + }, + { + "appid": 1119070, + "normalized_name": "shibui coliseum" + }, + { + "appid": 1119090, + "normalized_name": "island" + }, + { + "appid": 1119100, + "normalized_name": "hentai vampire" + }, + { + "appid": 1119110, + "normalized_name": "the creature" + }, + { + "appid": 1119380, + "normalized_name": "trump vs rocketman" + }, + { + "appid": 1119430, + "normalized_name": "the backrooms simulator" + }, + { + "appid": 1119500, + "normalized_name": "fight ball boxing vr" + }, + { + "appid": 1119530, + "normalized_name": "zhive" + }, + { + "appid": 1119590, + "normalized_name": "δ time" + }, + { + "appid": 1119600, + "normalized_name": "help will come tomorrow" + }, + { + "appid": 1119620, + "normalized_name": "beyond shattered isles" + }, + { + "appid": 1119630, + "normalized_name": "darkfairytales sleepingbeauty" + }, + { + "appid": 1119640, + "normalized_name": "hentai matchup" + }, + { + "appid": 1119670, + "normalized_name": "holosprint" + }, + { + "appid": 1119680, + "normalized_name": "jade's ascension" + }, + { + "appid": 1119700, + "normalized_name": "as far as the eye" + }, + { + "appid": 1119710, + "normalized_name": "look inside chapter 1" + }, + { + "appid": 1119730, + "normalized_name": "ranch simulator build hunt farm" + }, + { + "appid": 1119740, + "normalized_name": "the tower 2" + }, + { + "appid": 1119760, + "normalized_name": "rainbow jigsaw 彩虹拼图" + }, + { + "appid": 1119770, + "normalized_name": "vaporfly" + }, + { + "appid": 1119780, + "normalized_name": "setback" + }, + { + "appid": 1119790, + "normalized_name": "rtsm" + }, + { + "appid": 1119800, + "normalized_name": "brume" + }, + { + "appid": 1119820, + "normalized_name": "61 days" + }, + { + "appid": 1119830, + "normalized_name": "flunky farm" + }, + { + "appid": 1119840, + "normalized_name": "sands of aura" + }, + { + "appid": 1119890, + "normalized_name": "babylonia" + }, + { + "appid": 1119940, + "normalized_name": "storm tale" + }, + { + "appid": 1119970, + "normalized_name": "elf manor" + }, + { + "appid": 1119980, + "normalized_name": "in sound mind" + }, + { + "appid": 1120050, + "normalized_name": "hyacinthus" + }, + { + "appid": 1120090, + "normalized_name": "gobligeddon" + }, + { + "appid": 1120160, + "normalized_name": "tricky cow" + }, + { + "appid": 1120210, + "normalized_name": "make war" + }, + { + "appid": 1120220, + "normalized_name": "soyuz constructors" + }, + { + "appid": 1120240, + "normalized_name": "ded inside" + }, + { + "appid": 1120280, + "normalized_name": "treasure fleet" + }, + { + "appid": 1120320, + "normalized_name": "builder simulator" + }, + { + "appid": 1120330, + "normalized_name": "sky of tides" + }, + { + "appid": 1120340, + "normalized_name": "meu mundo" + }, + { + "appid": 1120360, + "normalized_name": "at home alone ii" + }, + { + "appid": 1120370, + "normalized_name": "場外人生" + }, + { + "appid": 1120390, + "normalized_name": "tri6 infinite" + }, + { + "appid": 1120400, + "normalized_name": "terra randoma" + }, + { + "appid": 1120410, + "normalized_name": "apollo 11 vr" + }, + { + "appid": 1120420, + "normalized_name": "infini" + }, + { + "appid": 1120480, + "normalized_name": "the anacrusis" + }, + { + "appid": 1120560, + "normalized_name": "sense 不祥的预感 a cyberpunk ghost story" + }, + { + "appid": 1120580, + "normalized_name": "clans to kingdoms" + }, + { + "appid": 1120600, + "normalized_name": "from the earth (프롬 더 어스)" + }, + { + "appid": 1120640, + "normalized_name": "kaiju kite attack" + }, + { + "appid": 1120680, + "normalized_name": "vivo" + }, + { + "appid": 1120690, + "normalized_name": "knock harder useless" + }, + { + "appid": 1120700, + "normalized_name": "rescue lucy 2" + }, + { + "appid": 1120750, + "normalized_name": "one way to exit 2" + }, + { + "appid": 1120770, + "normalized_name": "gods of havoc fall to earth" + }, + { + "appid": 1120790, + "normalized_name": "we are legion rome" + }, + { + "appid": 1120800, + "normalized_name": "alex hunter lord of the mind" + }, + { + "appid": 1120810, + "normalized_name": "斩妖行 eastern exorcist" + }, + { + "appid": 1120820, + "normalized_name": "n.e.o" + }, + { + "appid": 1120850, + "normalized_name": "old town stories" + }, + { + "appid": 1120880, + "normalized_name": "tech clash" + }, + { + "appid": 1120900, + "normalized_name": "hoodo" + }, + { + "appid": 1120920, + "normalized_name": "elon on mars" + }, + { + "appid": 1120940, + "normalized_name": "forgotten passages" + }, + { + "appid": 1120950, + "normalized_name": "chameleon run deluxe" + }, + { + "appid": 1120960, + "normalized_name": "crafting block world" + }, + { + "appid": 1120970, + "normalized_name": "dream keeper" + }, + { + "appid": 1120980, + "normalized_name": "bit dungeon" + }, + { + "appid": 1121000, + "normalized_name": "bhavacakra maco" + }, + { + "appid": 1121010, + "normalized_name": "together" + }, + { + "appid": 1121100, + "normalized_name": "color slayer" + }, + { + "appid": 1121120, + "normalized_name": "smooth mover" + }, + { + "appid": 1121140, + "normalized_name": "ionia" + }, + { + "appid": 1121160, + "normalized_name": "hollowhead's vr time machine" + }, + { + "appid": 1121170, + "normalized_name": "memory of psycho" + }, + { + "appid": 1121190, + "normalized_name": "hold your ground" + }, + { + "appid": 1121200, + "normalized_name": "silicon city" + }, + { + "appid": 1121220, + "normalized_name": "seas of fortune" + }, + { + "appid": 1121230, + "normalized_name": "bomb bowling" + }, + { + "appid": 1121260, + "normalized_name": "cannabis" + }, + { + "appid": 1121270, + "normalized_name": "impossible soaring" + }, + { + "appid": 1121290, + "normalized_name": "just another memory" + }, + { + "appid": 1121300, + "normalized_name": "mizuchi 白蛇心傳" + }, + { + "appid": 1121310, + "normalized_name": "viro playspace" + }, + { + "appid": 1121320, + "normalized_name": "chains of fury" + }, + { + "appid": 1121340, + "normalized_name": "secret city the human threat collector's" + }, + { + "appid": 1121400, + "normalized_name": "drums of war" + }, + { + "appid": 1121420, + "normalized_name": "kingdom under fire the crusaders" + }, + { + "appid": 1121460, + "normalized_name": "puzzle bear" + }, + { + "appid": 1121490, + "normalized_name": "time break 2121" + }, + { + "appid": 1121510, + "normalized_name": "shadows of kepler" + }, + { + "appid": 1121530, + "normalized_name": "globesweeper hex puzzler" + }, + { + "appid": 1121550, + "normalized_name": "prisoner 518" + }, + { + "appid": 1121560, + "normalized_name": "atelier ryza ever darkness & the secret hideout" + }, + { + "appid": 1121570, + "normalized_name": "avalo legends" + }, + { + "appid": 1121590, + "normalized_name": "adam lost memories" + }, + { + "appid": 1121630, + "normalized_name": "dwarven defender" + }, + { + "appid": 1121640, + "normalized_name": "the wandering village" + }, + { + "appid": 1121650, + "normalized_name": "dark zone defense" + }, + { + "appid": 1121670, + "normalized_name": "excavator simulator" + }, + { + "appid": 1121680, + "normalized_name": "remnants" + }, + { + "appid": 1121710, + "normalized_name": "total lockdown" + }, + { + "appid": 1121720, + "normalized_name": "monsters' den chronicles" + }, + { + "appid": 1121760, + "normalized_name": "survival ascension" + }, + { + "appid": 1121770, + "normalized_name": "animal war" + }, + { + "appid": 1121780, + "normalized_name": "astria ascending" + }, + { + "appid": 1121820, + "normalized_name": "go for a walk" + }, + { + "appid": 1121860, + "normalized_name": "flat earths!" + }, + { + "appid": 1121910, + "normalized_name": "i love you colonel sanders! a finger lickin’ good dating simulator" + }, + { + "appid": 1121980, + "normalized_name": "看不见的爱" + }, + { + "appid": 1122040, + "normalized_name": "kaede the eliminator / eliminator 小枫" + }, + { + "appid": 1122050, + "normalized_name": "gensokyo night festival" + }, + { + "appid": 1122090, + "normalized_name": "dancegirl swimwear" + }, + { + "appid": 1122100, + "normalized_name": "giraffe and annika" + }, + { + "appid": 1122110, + "normalized_name": "centralia" + }, + { + "appid": 1122120, + "normalized_name": "stationflow" + }, + { + "appid": 1122150, + "normalized_name": "elea" + }, + { + "appid": 1122160, + "normalized_name": "on air" + }, + { + "appid": 1122170, + "normalized_name": "mech hunter" + }, + { + "appid": 1122180, + "normalized_name": "curse of anabelle" + }, + { + "appid": 1122210, + "normalized_name": "guns craft" + }, + { + "appid": 1122230, + "normalized_name": "knights & outlaws" + }, + { + "appid": 1122240, + "normalized_name": "mandy's room 2 naughty by nature" + }, + { + "appid": 1122250, + "normalized_name": "the fate of the bully" + }, + { + "appid": 1122270, + "normalized_name": "hidden fears (moonlight edition)" + }, + { + "appid": 1122280, + "normalized_name": "witchcrafty" + }, + { + "appid": 1122290, + "normalized_name": "nyanco project" + }, + { + "appid": 1122310, + "normalized_name": "guildmaster story" + }, + { + "appid": 1122330, + "normalized_name": "you me" + }, + { + "appid": 1122340, + "normalized_name": "chef life a restaurant simulator" + }, + { + "appid": 1122360, + "normalized_name": "westwood shadows" + }, + { + "appid": 1122440, + "normalized_name": "proxyah v3.1" + }, + { + "appid": 1122460, + "normalized_name": "alien infection" + }, + { + "appid": 1122490, + "normalized_name": "battleheart legacy" + }, + { + "appid": 1122680, + "normalized_name": "the artful escape" + }, + { + "appid": 1122690, + "normalized_name": "last stop" + }, + { + "appid": 1122700, + "normalized_name": "hindsight" + }, + { + "appid": 1122710, + "normalized_name": "the werewolf hills" + }, + { + "appid": 1122720, + "normalized_name": "sayonara wild hearts" + }, + { + "appid": 1122730, + "normalized_name": "magna fortuna" + }, + { + "appid": 1122740, + "normalized_name": "to the hell" + }, + { + "appid": 1122750, + "normalized_name": "异化之恶〇abnormal treatment" + }, + { + "appid": 1122760, + "normalized_name": "xenos defense" + }, + { + "appid": 1122770, + "normalized_name": "from lamer to guru" + }, + { + "appid": 1122780, + "normalized_name": "highly likely" + }, + { + "appid": 1122810, + "normalized_name": "darkspace 暗宇战纪" + }, + { + "appid": 1122820, + "normalized_name": "locked & loaded" + }, + { + "appid": 1122830, + "normalized_name": "atomorf" + }, + { + "appid": 1122860, + "normalized_name": "stop it driving simulation" + }, + { + "appid": 1122870, + "normalized_name": "mini wars" + }, + { + "appid": 1122880, + "normalized_name": "stones of solace" + }, + { + "appid": 1122900, + "normalized_name": "sine wave city" + }, + { + "appid": 1122930, + "normalized_name": "mournful sword" + }, + { + "appid": 1122960, + "normalized_name": "horizon beyond" + }, + { + "appid": 1122970, + "normalized_name": "zombie island" + }, + { + "appid": 1122980, + "normalized_name": "hentai shojo" + }, + { + "appid": 1123020, + "normalized_name": "vrwiz" + }, + { + "appid": 1123030, + "normalized_name": "who is awesome" + }, + { + "appid": 1123050, + "normalized_name": "grime" + }, + { + "appid": 1123060, + "normalized_name": "alien creatures" + }, + { + "appid": 1123070, + "normalized_name": "reflaser" + }, + { + "appid": 1123080, + "normalized_name": "fadezone 消逝之地" + }, + { + "appid": 1123090, + "normalized_name": "langton's ant" + }, + { + "appid": 1123100, + "normalized_name": "banished castle vr" + }, + { + "appid": 1123140, + "normalized_name": "mother daughter pleasure pets" + }, + { + "appid": 1123150, + "normalized_name": "church art of sweden" + }, + { + "appid": 1123160, + "normalized_name": "voids adrift" + }, + { + "appid": 1123180, + "normalized_name": "story time plus" + }, + { + "appid": 1123190, + "normalized_name": "育种村" + }, + { + "appid": 1123210, + "normalized_name": "trap" + }, + { + "appid": 1123230, + "normalized_name": "hexterminate" + }, + { + "appid": 1123240, + "normalized_name": "greyskin" + }, + { + "appid": 1123300, + "normalized_name": "castle woodwarf" + }, + { + "appid": 1123310, + "normalized_name": "super lobster run" + }, + { + "appid": 1123340, + "normalized_name": "run! bunny 绿绿小先生" + }, + { + "appid": 1123360, + "normalized_name": "in retrospect" + }, + { + "appid": 1123400, + "normalized_name": "放逐之地:牢笼" + }, + { + "appid": 1123410, + "normalized_name": "tailypo the game" + }, + { + "appid": 1123450, + "normalized_name": "chicory a colorful tale" + }, + { + "appid": 1123460, + "normalized_name": "fateline(命运线)" + }, + { + "appid": 1123500, + "normalized_name": "hell of men blood brothers" + }, + { + "appid": 1123510, + "normalized_name": "самозванец" + }, + { + "appid": 1123520, + "normalized_name": "mithral gun biomechanical" + }, + { + "appid": 1123550, + "normalized_name": "desire gambling house/欲望赌馆" + }, + { + "appid": 1123570, + "normalized_name": "flycatcher" + }, + { + "appid": 1123590, + "normalized_name": "herogrinder tactical combat arenas" + }, + { + "appid": 1123600, + "normalized_name": "scp maintain & control" + }, + { + "appid": 1123610, + "normalized_name": "indiecalypse" + }, + { + "appid": 1123620, + "normalized_name": "woman's body 3" + }, + { + "appid": 1123640, + "normalized_name": "balloon fighter" + }, + { + "appid": 1123730, + "normalized_name": "rod" + }, + { + "appid": 1123770, + "normalized_name": "curse of the dead gods" + }, + { + "appid": 1123790, + "normalized_name": "girls on the beach" + }, + { + "appid": 1123820, + "normalized_name": "spark circuits vr" + }, + { + "appid": 1123830, + "normalized_name": "farm manager 2021" + }, + { + "appid": 1123850, + "normalized_name": "red black poker" + }, + { + "appid": 1123870, + "normalized_name": "the man with the ivory cane" + }, + { + "appid": 1123900, + "normalized_name": "dark tales edgar allan poe's ligeia collector's" + }, + { + "appid": 1123910, + "normalized_name": "the pointless car chase" + }, + { + "appid": 1123970, + "normalized_name": "the adventures of bruce flea" + }, + { + "appid": 1124000, + "normalized_name": "meu" + }, + { + "appid": 1124050, + "normalized_name": "ogre tale" + }, + { + "appid": 1124060, + "normalized_name": "touhou shoujo tale of beautiful memories / 東方少女綺想譚" + }, + { + "appid": 1124070, + "normalized_name": "tower vr" + }, + { + "appid": 1124080, + "normalized_name": "brave's rage" + }, + { + "appid": 1124090, + "normalized_name": "告死天使之言 death angel" + }, + { + "appid": 1124120, + "normalized_name": "drone tracks" + }, + { + "appid": 1124130, + "normalized_name": "streets of neotokio" + }, + { + "appid": 1124160, + "normalized_name": "vr giants" + }, + { + "appid": 1124170, + "normalized_name": "spiralagon" + }, + { + "appid": 1124180, + "normalized_name": "rail route" + }, + { + "appid": 1124190, + "normalized_name": "police stunt cars" + }, + { + "appid": 1124210, + "normalized_name": "heroes of shaola" + }, + { + "appid": 1124260, + "normalized_name": "snowtopia ski resort builder" + }, + { + "appid": 1124270, + "normalized_name": "cosmic monsters" + }, + { + "appid": 1124280, + "normalized_name": "bob and prickle" + }, + { + "appid": 1124300, + "normalized_name": "humankind" + }, + { + "appid": 1124310, + "normalized_name": "android helipad" + }, + { + "appid": 1124370, + "normalized_name": "traverse the void" + }, + { + "appid": 1124380, + "normalized_name": "one gun 2 stickman" + }, + { + "appid": 1124390, + "normalized_name": "paradigm city" + }, + { + "appid": 1124400, + "normalized_name": "zombien" + }, + { + "appid": 1124410, + "normalized_name": "tokyo wizard" + }, + { + "appid": 1124420, + "normalized_name": "a rat's quest the way back home" + }, + { + "appid": 1124430, + "normalized_name": "the adventures of sullivan" + }, + { + "appid": 1124510, + "normalized_name": "crosser" + }, + { + "appid": 1124520, + "normalized_name": "laranga" + }, + { + "appid": 1124530, + "normalized_name": "draft day sports pro football 2020" + }, + { + "appid": 1124550, + "normalized_name": "arc" + }, + { + "appid": 1124560, + "normalized_name": "fallen angel" + }, + { + "appid": 1124600, + "normalized_name": "naau the lost eye" + }, + { + "appid": 1124630, + "normalized_name": "lonepath" + }, + { + "appid": 1124640, + "normalized_name": "sacred siren" + }, + { + "appid": 1124660, + "normalized_name": "storm area 51 ayy lmao" + }, + { + "appid": 1124680, + "normalized_name": "slime lol" + }, + { + "appid": 1124710, + "normalized_name": "is infinite stratos versus colors" + }, + { + "appid": 1124740, + "normalized_name": "破碎法术" + }, + { + "appid": 1124790, + "normalized_name": "hentai lightup" + }, + { + "appid": 1124800, + "normalized_name": "aura shift" + }, + { + "appid": 1124810, + "normalized_name": "tower of the alchemist" + }, + { + "appid": 1124830, + "normalized_name": "东方华彩乱战 ~ touhou blooming chaos" + }, + { + "appid": 1124850, + "normalized_name": "閃電對決lightning wings ii" + }, + { + "appid": 1124860, + "normalized_name": "otter space rescue" + }, + { + "appid": 1124940, + "normalized_name": "super squad" + }, + { + "appid": 1124950, + "normalized_name": "hyperplex 3d" + }, + { + "appid": 1124960, + "normalized_name": "emma lost in memories" + }, + { + "appid": 1124970, + "normalized_name": "mazgeon" + }, + { + "appid": 1124990, + "normalized_name": "destructivator 2" + }, + { + "appid": 1125000, + "normalized_name": "touhou multi scroll shooting" + }, + { + "appid": 1125030, + "normalized_name": "hentai ninja garden" + }, + { + "appid": 1125110, + "normalized_name": "obsurity" + }, + { + "appid": 1125130, + "normalized_name": "area 51" + }, + { + "appid": 1125240, + "normalized_name": "ancient dungeon" + }, + { + "appid": 1125250, + "normalized_name": "hentai petting simulator" + }, + { + "appid": 1125290, + "normalized_name": "moofa" + }, + { + "appid": 1125330, + "normalized_name": "griefhelm" + }, + { + "appid": 1125340, + "normalized_name": "tales of lazo" + }, + { + "appid": 1125350, + "normalized_name": "geocells quadcells" + }, + { + "appid": 1125360, + "normalized_name": "fantasy little jobs" + }, + { + "appid": 1125370, + "normalized_name": "space grunts 2" + }, + { + "appid": 1125390, + "normalized_name": "atrio the dark wild" + }, + { + "appid": 1125420, + "normalized_name": "death and progress" + }, + { + "appid": 1125450, + "normalized_name": "sanitarium rush" + }, + { + "appid": 1125480, + "normalized_name": "初恋日记 school years" + }, + { + "appid": 1125490, + "normalized_name": "storm area 51 cute alien girl" + }, + { + "appid": 1125510, + "normalized_name": "snacko" + }, + { + "appid": 1125590, + "normalized_name": "lightman" + }, + { + "appid": 1125600, + "normalized_name": "tag war" + }, + { + "appid": 1125620, + "normalized_name": "wizhood the epic of freedom" + }, + { + "appid": 1125650, + "normalized_name": "rogue production facility" + }, + { + "appid": 1125670, + "normalized_name": "percy lancaster" + }, + { + "appid": 1125690, + "normalized_name": "eggness" + }, + { + "appid": 1125700, + "normalized_name": "endless void" + }, + { + "appid": 1125710, + "normalized_name": "gatewalkers" + }, + { + "appid": 1125730, + "normalized_name": "vr puzzle box" + }, + { + "appid": 1125770, + "normalized_name": "monoa city parking" + }, + { + "appid": 1125780, + "normalized_name": "laufen und raufen" + }, + { + "appid": 1125800, + "normalized_name": "endless ski" + }, + { + "appid": 1125820, + "normalized_name": "clearit5" + }, + { + "appid": 1125830, + "normalized_name": "we are screwed!" + }, + { + "appid": 1125860, + "normalized_name": "rabisco" + }, + { + "appid": 1125870, + "normalized_name": "public enemy revolution simulator" + }, + { + "appid": 1125880, + "normalized_name": "laserzone" + }, + { + "appid": 1125890, + "normalized_name": "party maker" + }, + { + "appid": 1125910, + "normalized_name": "crowns and pawns kingdom of deceit" + }, + { + "appid": 1125920, + "normalized_name": "forged" + }, + { + "appid": 1125930, + "normalized_name": "unfair" + }, + { + "appid": 1126020, + "normalized_name": "wizard battle" + }, + { + "appid": 1126040, + "normalized_name": "volhv memoir of the witch doctor" + }, + { + "appid": 1126060, + "normalized_name": "bunker" + }, + { + "appid": 1126070, + "normalized_name": "let's see what you got" + }, + { + "appid": 1126090, + "normalized_name": "booby and the booby trap" + }, + { + "appid": 1126100, + "normalized_name": "welcome" + }, + { + "appid": 1126110, + "normalized_name": "keep the keep" + }, + { + "appid": 1126130, + "normalized_name": "the pillar" + }, + { + "appid": 1126190, + "normalized_name": "disney classic games aladdin and the lion king" + }, + { + "appid": 1126210, + "normalized_name": "the machine that breathes" + }, + { + "appid": 1126220, + "normalized_name": "easypianogame" + }, + { + "appid": 1126230, + "normalized_name": "电筒侠" + }, + { + "appid": 1126240, + "normalized_name": "mahou mating" + }, + { + "appid": 1126260, + "normalized_name": "serpent fusion" + }, + { + "appid": 1126270, + "normalized_name": "neon tail" + }, + { + "appid": 1126290, + "normalized_name": "lost" + }, + { + "appid": 1126300, + "normalized_name": "dragonclash" + }, + { + "appid": 1126310, + "normalized_name": "风信楼" + }, + { + "appid": 1126320, + "normalized_name": "being a dik season 1" + }, + { + "appid": 1126340, + "normalized_name": "raid on area 51" + }, + { + "appid": 1126420, + "normalized_name": "remote life" + }, + { + "appid": 1126430, + "normalized_name": "香江之龙,dragon of hongkong" + }, + { + "appid": 1126440, + "normalized_name": "rogue rocks" + }, + { + "appid": 1126450, + "normalized_name": "simple game" + }, + { + "appid": 1126470, + "normalized_name": "jewel match atlantis solitaire collector's" + }, + { + "appid": 1126510, + "normalized_name": "sad ')" + }, + { + "appid": 1126520, + "normalized_name": "goodnight succubus" + }, + { + "appid": 1126550, + "normalized_name": "i'm from area 51" + }, + { + "appid": 1126580, + "normalized_name": "the captain is dead" + }, + { + "appid": 1126590, + "normalized_name": "alfelus" + }, + { + "appid": 1126600, + "normalized_name": "before i forget" + }, + { + "appid": 1126640, + "normalized_name": "the forgotten" + }, + { + "appid": 1126680, + "normalized_name": "neonis" + }, + { + "appid": 1126700, + "normalized_name": "shapewar" + }, + { + "appid": 1126710, + "normalized_name": "魔法使いハナビィ hanaby the witch" + }, + { + "appid": 1126750, + "normalized_name": "mr. driller drillland" + }, + { + "appid": 1126760, + "normalized_name": "whiteverse no country for old men" + }, + { + "appid": 1126770, + "normalized_name": "my bones" + }, + { + "appid": 1126820, + "normalized_name": "heroic mercenaries" + }, + { + "appid": 1126840, + "normalized_name": "12 hours 2" + }, + { + "appid": 1126850, + "normalized_name": "power" + }, + { + "appid": 1126860, + "normalized_name": "nauseous pines" + }, + { + "appid": 1126870, + "normalized_name": "get bento!" + }, + { + "appid": 1126880, + "normalized_name": "pixel puzzles 4k japan" + }, + { + "appid": 1126890, + "normalized_name": "urban cards" + }, + { + "appid": 1126950, + "normalized_name": "extreme tactical executioners" + }, + { + "appid": 1126970, + "normalized_name": "strazeal" + }, + { + "appid": 1126990, + "normalized_name": "pba pro bowling" + }, + { + "appid": 1127030, + "normalized_name": "throw the ball in the hole" + }, + { + "appid": 1127070, + "normalized_name": "familiar travels volume one" + }, + { + "appid": 1127100, + "normalized_name": "pampam kana students" + }, + { + "appid": 1127110, + "normalized_name": "outpost" + }, + { + "appid": 1127120, + "normalized_name": "r42" + }, + { + "appid": 1127130, + "normalized_name": "happy oshare time" + }, + { + "appid": 1127140, + "normalized_name": "初开在平安夜之花 the flower on christmas eve" + }, + { + "appid": 1127170, + "normalized_name": "dreamfly" + }, + { + "appid": 1127180, + "normalized_name": "robot vacuum simulator x" + }, + { + "appid": 1127200, + "normalized_name": "a wanderer's adventure" + }, + { + "appid": 1127210, + "normalized_name": "mystery at stonyford bridge" + }, + { + "appid": 1127230, + "normalized_name": "shooting blaster big bang boom" + }, + { + "appid": 1127250, + "normalized_name": "deadly maze phase 1" + }, + { + "appid": 1127270, + "normalized_name": "hentai xxx plus jigsaws vol 1" + }, + { + "appid": 1127290, + "normalized_name": "battle survive hentai" + }, + { + "appid": 1127330, + "normalized_name": "mechcube escape" + }, + { + "appid": 1127350, + "normalized_name": "mazes and mages 2" + }, + { + "appid": 1127360, + "normalized_name": "cup of ethanol" + }, + { + "appid": 1127370, + "normalized_name": "insignia" + }, + { + "appid": 1127390, + "normalized_name": "cute cute cuties" + }, + { + "appid": 1127400, + "normalized_name": "mindustry" + }, + { + "appid": 1127460, + "normalized_name": "mod and play" + }, + { + "appid": 1127470, + "normalized_name": "skater frog" + }, + { + "appid": 1127480, + "normalized_name": "what's left" + }, + { + "appid": 1127500, + "normalized_name": "mini motorways" + }, + { + "appid": 1127520, + "normalized_name": "tree house avocado mayhem" + }, + { + "appid": 1127530, + "normalized_name": "skycat" + }, + { + "appid": 1127540, + "normalized_name": "eden's ritter paladins of ecstasy" + }, + { + "appid": 1127560, + "normalized_name": "flip polygon" + }, + { + "appid": 1127580, + "normalized_name": "smaller" + }, + { + "appid": 1127610, + "normalized_name": "iris and the giant" + }, + { + "appid": 1127620, + "normalized_name": "bylo" + }, + { + "appid": 1127640, + "normalized_name": "father xmas" + }, + { + "appid": 1127660, + "normalized_name": "mask quest" + }, + { + "appid": 1127680, + "normalized_name": "hypnocult" + }, + { + "appid": 1127690, + "normalized_name": "winter magic factory" + }, + { + "appid": 1127700, + "normalized_name": "reverse collapse code name bakery" + }, + { + "appid": 1127730, + "normalized_name": "animal up!" + }, + { + "appid": 1127760, + "normalized_name": "grave days" + }, + { + "appid": 1127820, + "normalized_name": "repressed" + }, + { + "appid": 1127840, + "normalized_name": "landlord's super" + }, + { + "appid": 1127850, + "normalized_name": "apple slash" + }, + { + "appid": 1127900, + "normalized_name": "cyber furry girl" + }, + { + "appid": 1127920, + "normalized_name": "loser reborn" + }, + { + "appid": 1127930, + "normalized_name": "my bike" + }, + { + "appid": 1127940, + "normalized_name": "dimensions vip" + }, + { + "appid": 1127950, + "normalized_name": "gearwars" + }, + { + "appid": 1127970, + "normalized_name": "retro machina" + }, + { + "appid": 1127990, + "normalized_name": "hell firefighter" + }, + { + "appid": 1128000, + "normalized_name": "cube world" + }, + { + "appid": 1128010, + "normalized_name": "zoological era ii" + }, + { + "appid": 1128100, + "normalized_name": "zerozone2020" + }, + { + "appid": 1128140, + "normalized_name": "under depths of fear" + }, + { + "appid": 1128150, + "normalized_name": "祭壇の花/saidan no hana" + }, + { + "appid": 1128160, + "normalized_name": "saturday of piercing screams" + }, + { + "appid": 1128170, + "normalized_name": "power stealers" + }, + { + "appid": 1128180, + "normalized_name": "crossniq+" + }, + { + "appid": 1128190, + "normalized_name": "achievement simulator" + }, + { + "appid": 1128210, + "normalized_name": "orion13" + }, + { + "appid": 1128220, + "normalized_name": "zaam" + }, + { + "appid": 1128260, + "normalized_name": "the princess the stray cat and matters of the heart 2" + }, + { + "appid": 1128270, + "normalized_name": "whack a hoe" + }, + { + "appid": 1128280, + "normalized_name": "igor maks the meme lord" + }, + { + "appid": 1128310, + "normalized_name": "koi unleashed" + }, + { + "appid": 1128330, + "normalized_name": "celestial" + }, + { + "appid": 1128360, + "normalized_name": "如果一生只有三十岁before thirty" + }, + { + "appid": 1128370, + "normalized_name": "try again!" + }, + { + "appid": 1128420, + "normalized_name": "solitaire jack frost winter adventures" + }, + { + "appid": 1128430, + "normalized_name": "solitaire match 2 cards. valentine's day" + }, + { + "appid": 1128440, + "normalized_name": "solitaire legend of the pirates" + }, + { + "appid": 1128450, + "normalized_name": "光与暗之恋曲" + }, + { + "appid": 1128480, + "normalized_name": "nice jumper" + }, + { + "appid": 1128490, + "normalized_name": "general staff black powder" + }, + { + "appid": 1128520, + "normalized_name": "rezist tower defense" + }, + { + "appid": 1128570, + "normalized_name": "weeping willow detective visual novel" + }, + { + "appid": 1128610, + "normalized_name": "affinity" + }, + { + "appid": 1128650, + "normalized_name": "the refuge" + }, + { + "appid": 1128660, + "normalized_name": "roots of the woods" + }, + { + "appid": 1128670, + "normalized_name": "hentai sliding puzzle" + }, + { + "appid": 1128680, + "normalized_name": "double invasion!!" + }, + { + "appid": 1128690, + "normalized_name": "plunge" + }, + { + "appid": 1128740, + "normalized_name": "wissen heroes" + }, + { + "appid": 1128750, + "normalized_name": "失落的琴弦 the lost strings" + }, + { + "appid": 1128770, + "normalized_name": "use your brain!" + }, + { + "appid": 1128800, + "normalized_name": "hypnolab vr" + }, + { + "appid": 1128810, + "normalized_name": "risk global domination" + }, + { + "appid": 1128830, + "normalized_name": "1001 jigsaw world tour europe" + }, + { + "appid": 1128840, + "normalized_name": "solitaire victorian picnic" + }, + { + "appid": 1128860, + "normalized_name": "men of war ii" + }, + { + "appid": 1128900, + "normalized_name": "live desktop beauty" + }, + { + "appid": 1128920, + "normalized_name": "everspace 2" + }, + { + "appid": 1128950, + "normalized_name": "fringe planet" + }, + { + "appid": 1128960, + "normalized_name": "最后的巫后:众王纷争的年代 witch queen" + }, + { + "appid": 1128970, + "normalized_name": "eterna heroes fall" + }, + { + "appid": 1128980, + "normalized_name": "banana 2 fruit" + }, + { + "appid": 1129010, + "normalized_name": "dress up traveller" + }, + { + "appid": 1129030, + "normalized_name": "endless fables 4 shadow within" + }, + { + "appid": 1129080, + "normalized_name": "forex demo accelerator" + }, + { + "appid": 1129090, + "normalized_name": "sticky paws" + }, + { + "appid": 1129110, + "normalized_name": "magistrangers" + }, + { + "appid": 1129180, + "normalized_name": "glitch puzzle" + }, + { + "appid": 1129190, + "normalized_name": "our life beginnings & always" + }, + { + "appid": 1129200, + "normalized_name": "minesweep world" + }, + { + "appid": 1129210, + "normalized_name": "a million conquests" + }, + { + "appid": 1129220, + "normalized_name": "bears vodka balalaika! 🐻" + }, + { + "appid": 1129230, + "normalized_name": "luna sanctus" + }, + { + "appid": 1129240, + "normalized_name": "mystic mayhem unleashed" + }, + { + "appid": 1129250, + "normalized_name": "neko nin exheart 3" + }, + { + "appid": 1129260, + "normalized_name": "baseless" + }, + { + "appid": 1129310, + "normalized_name": "receiver 2" + }, + { + "appid": 1129330, + "normalized_name": "spark and sparkle" + }, + { + "appid": 1129340, + "normalized_name": "crazy cage" + }, + { + "appid": 1129350, + "normalized_name": "murgles" + }, + { + "appid": 1129360, + "normalized_name": "pocket wheels" + }, + { + "appid": 1129410, + "normalized_name": "the shattered blade" + }, + { + "appid": 1129480, + "normalized_name": "el culto" + }, + { + "appid": 1129520, + "normalized_name": "the lewd knight" + }, + { + "appid": 1129540, + "normalized_name": "orc massage" + }, + { + "appid": 1129550, + "normalized_name": "edataconsulting vr office" + }, + { + "appid": 1129570, + "normalized_name": "industry giant 4.0" + }, + { + "appid": 1129580, + "normalized_name": "medieval dynasty" + }, + { + "appid": 1129610, + "normalized_name": "寻书人 book seeker" + }, + { + "appid": 1129650, + "normalized_name": "lodestone the crazy cave adventures of mad stony tony and his encounter with the exploding rolling stones" + }, + { + "appid": 1129660, + "normalized_name": "runefall 2" + }, + { + "appid": 1129670, + "normalized_name": "they'll find you" + }, + { + "appid": 1129680, + "normalized_name": "grafi 3" + }, + { + "appid": 1129690, + "normalized_name": "3x64" + }, + { + "appid": 1129700, + "normalized_name": "synzzball" + }, + { + "appid": 1129710, + "normalized_name": "unreal drone racing" + }, + { + "appid": 1129720, + "normalized_name": "area 51 defense" + }, + { + "appid": 1129730, + "normalized_name": "lost existence" + }, + { + "appid": 1129760, + "normalized_name": "string theory" + }, + { + "appid": 1129810, + "normalized_name": "standball" + }, + { + "appid": 1129830, + "normalized_name": "barista rise and grind" + }, + { + "appid": 1129920, + "normalized_name": "tales from off peak city vol. 1" + }, + { + "appid": 1130380, + "normalized_name": "ozark" + }, + { + "appid": 1130400, + "normalized_name": "symmetry" + }, + { + "appid": 1130410, + "normalized_name": "cyber hook" + }, + { + "appid": 1130430, + "normalized_name": "escape from chernobyl jailbreak" + }, + { + "appid": 1130440, + "normalized_name": "10 second shuriken" + }, + { + "appid": 1130510, + "normalized_name": "floaty fighters" + }, + { + "appid": 1130560, + "normalized_name": "rpg npc simulator vr" + }, + { + "appid": 1130570, + "normalized_name": "the sword and the slime" + }, + { + "appid": 1130590, + "normalized_name": "aleesha's tower" + }, + { + "appid": 1130620, + "normalized_name": "[chilla's art] aka manto | 赤マント" + }, + { + "appid": 1130660, + "normalized_name": "tiger fighter 1931 tora!tora!" + }, + { + "appid": 1130700, + "normalized_name": "avabel online(steam版)" + }, + { + "appid": 1130710, + "normalized_name": "bookbound brigade" + }, + { + "appid": 1130760, + "normalized_name": "school of mythology" + }, + { + "appid": 1130820, + "normalized_name": "framing dawes" + }, + { + "appid": 1130880, + "normalized_name": "absolute territory" + }, + { + "appid": 1130900, + "normalized_name": "黎明霞光" + }, + { + "appid": 1130970, + "normalized_name": "the yellow ladder" + }, + { + "appid": 1130990, + "normalized_name": "roman adventures britons. season 2" + }, + { + "appid": 1131000, + "normalized_name": "astroplatformer" + }, + { + "appid": 1131060, + "normalized_name": "dungeon of eyden" + }, + { + "appid": 1131070, + "normalized_name": "pixel puzzles 3 ukiyo e jigsaws" + }, + { + "appid": 1131080, + "normalized_name": "deadswitch 3" + }, + { + "appid": 1131110, + "normalized_name": "orbitblazers" + }, + { + "appid": 1131140, + "normalized_name": "the moneymakers rallye" + }, + { + "appid": 1131190, + "normalized_name": "nerts! online" + }, + { + "appid": 1131210, + "normalized_name": "mage math" + }, + { + "appid": 1131230, + "normalized_name": "dominos!" + }, + { + "appid": 1131240, + "normalized_name": "dungeons of edera" + }, + { + "appid": 1131270, + "normalized_name": "zombie golf" + }, + { + "appid": 1131280, + "normalized_name": "叫我铸造师" + }, + { + "appid": 1131360, + "normalized_name": "tiger fighter 1931 tora!tora!tora!" + }, + { + "appid": 1131400, + "normalized_name": "project rip" + }, + { + "appid": 1131410, + "normalized_name": "sable's grimoire man and elf" + }, + { + "appid": 1131420, + "normalized_name": "for a better country" + }, + { + "appid": 1131430, + "normalized_name": "parachronism order of chaos" + }, + { + "appid": 1131450, + "normalized_name": "above earth" + }, + { + "appid": 1131460, + "normalized_name": "明日探险家" + }, + { + "appid": 1131470, + "normalized_name": "hentai cute" + }, + { + "appid": 1131490, + "normalized_name": "wandering gem jockeying" + }, + { + "appid": 1131520, + "normalized_name": "trial and terror" + }, + { + "appid": 1131530, + "normalized_name": "dum dum" + }, + { + "appid": 1131540, + "normalized_name": "my light in the dark" + }, + { + "appid": 1131550, + "normalized_name": "i walk among zombies vol. 3" + }, + { + "appid": 1131570, + "normalized_name": "dosk" + }, + { + "appid": 1131580, + "normalized_name": "penguins vs. bugs" + }, + { + "appid": 1131590, + "normalized_name": "aegis online" + }, + { + "appid": 1131620, + "normalized_name": "dominion" + }, + { + "appid": 1131640, + "normalized_name": "climatic survival northern storm" + }, + { + "appid": 1131650, + "normalized_name": "protest simulator" + }, + { + "appid": 1131660, + "normalized_name": "the ai games" + }, + { + "appid": 1131670, + "normalized_name": "justin wack and the big time hack" + }, + { + "appid": 1131680, + "normalized_name": "ppdd" + }, + { + "appid": 1131690, + "normalized_name": "xentripetal force" + }, + { + "appid": 1131740, + "normalized_name": "snowdome" + }, + { + "appid": 1131750, + "normalized_name": "alien squatter" + }, + { + "appid": 1131780, + "normalized_name": "mustache or revenge" + }, + { + "appid": 1131790, + "normalized_name": "injection π23 'no name no number'" + }, + { + "appid": 1131800, + "normalized_name": "pixel puzzle makeout league" + }, + { + "appid": 1131810, + "normalized_name": "gordon streaman" + }, + { + "appid": 1131820, + "normalized_name": "pixel monsters survival" + }, + { + "appid": 1131830, + "normalized_name": "gunk" + }, + { + "appid": 1131840, + "normalized_name": "pentaball" + }, + { + "appid": 1131870, + "normalized_name": "evergreen blues" + }, + { + "appid": 1131880, + "normalized_name": "henry mosse and the wormhole conspiracy" + }, + { + "appid": 1131900, + "normalized_name": "3rd eye" + }, + { + "appid": 1131920, + "normalized_name": "labyrinth of touhou gensokyo and the heaven piercing tree" + }, + { + "appid": 1131930, + "normalized_name": "barricadez" + }, + { + "appid": 1131940, + "normalized_name": "jailbreak simulator" + }, + { + "appid": 1131960, + "normalized_name": "云聚:失落的魔法 magic ganglia" + }, + { + "appid": 1131990, + "normalized_name": "hentai netpuzzle" + }, + { + "appid": 1132010, + "normalized_name": "hentai chessknight" + }, + { + "appid": 1132020, + "normalized_name": "immortal wanna" + }, + { + "appid": 1132030, + "normalized_name": "trash sailors co op trash raft simulator" + }, + { + "appid": 1132050, + "normalized_name": "themovingmaze" + }, + { + "appid": 1132070, + "normalized_name": "5.0" + }, + { + "appid": 1132080, + "normalized_name": "hentai dgirls" + }, + { + "appid": 1132090, + "normalized_name": "silk" + }, + { + "appid": 1132100, + "normalized_name": "samurai of hyuga book 4" + }, + { + "appid": 1132110, + "normalized_name": "heaven's grave" + }, + { + "appid": 1132120, + "normalized_name": "put in" + }, + { + "appid": 1132180, + "normalized_name": "persephone" + }, + { + "appid": 1132190, + "normalized_name": "coloring game little city" + }, + { + "appid": 1132220, + "normalized_name": "iridion 3d" + }, + { + "appid": 1132230, + "normalized_name": "iridion ii" + }, + { + "appid": 1132290, + "normalized_name": "eldritch university" + }, + { + "appid": 1132300, + "normalized_name": "ribbon" + }, + { + "appid": 1132410, + "normalized_name": "cyber outrun" + }, + { + "appid": 1132450, + "normalized_name": "unknown surge" + }, + { + "appid": 1132460, + "normalized_name": "codebreaker" + }, + { + "appid": 1132480, + "normalized_name": "overplasma" + }, + { + "appid": 1132490, + "normalized_name": "phucker in the woods" + }, + { + "appid": 1132530, + "normalized_name": "wolf ridge" + }, + { + "appid": 1132540, + "normalized_name": "colonies end" + }, + { + "appid": 1132600, + "normalized_name": "gyatm dragon" + }, + { + "appid": 1132620, + "normalized_name": "last knight" + }, + { + "appid": 1132630, + "normalized_name": "project io" + }, + { + "appid": 1132640, + "normalized_name": "platforms" + }, + { + "appid": 1132670, + "normalized_name": "metal heads" + }, + { + "appid": 1132690, + "normalized_name": "knights of messiah" + }, + { + "appid": 1132710, + "normalized_name": "hikari! love potion" + }, + { + "appid": 1132720, + "normalized_name": "i walk among zombies vol. 0" + }, + { + "appid": 1132730, + "normalized_name": "巅峰骑士团" + }, + { + "appid": 1132750, + "normalized_name": "buck zombies" + }, + { + "appid": 1132760, + "normalized_name": "dwerve" + }, + { + "appid": 1132770, + "normalized_name": "world war 2 craft (二战演义)" + }, + { + "appid": 1132830, + "normalized_name": "poppy's nightmare" + }, + { + "appid": 1132840, + "normalized_name": "rhythmsnake" + }, + { + "appid": 1132850, + "normalized_name": "try not to die" + }, + { + "appid": 1132860, + "normalized_name": "jera" + }, + { + "appid": 1132880, + "normalized_name": "the pilgrim" + }, + { + "appid": 1132900, + "normalized_name": "knife road" + }, + { + "appid": 1132910, + "normalized_name": "itorah" + }, + { + "appid": 1132930, + "normalized_name": "phantom 3d" + }, + { + "appid": 1132970, + "normalized_name": "time to stop time" + }, + { + "appid": 1132980, + "normalized_name": "there is no light enhanced" + }, + { + "appid": 1133040, + "normalized_name": "bandit brawler" + }, + { + "appid": 1133050, + "normalized_name": "good night knight" + }, + { + "appid": 1133060, + "normalized_name": "anarchy wolf's law" + }, + { + "appid": 1133070, + "normalized_name": "viking chess hnefatafl" + }, + { + "appid": 1133080, + "normalized_name": "devil slayer" + }, + { + "appid": 1133120, + "normalized_name": "ecosystem" + }, + { + "appid": 1133200, + "normalized_name": "escape zolstar" + }, + { + "appid": 1133210, + "normalized_name": "inner" + }, + { + "appid": 1133230, + "normalized_name": "little awesome dudes" + }, + { + "appid": 1133250, + "normalized_name": "cult" + }, + { + "appid": 1133260, + "normalized_name": "vole complexity" + }, + { + "appid": 1133300, + "normalized_name": "sisters royale five sisters under fire" + }, + { + "appid": 1133310, + "normalized_name": "laservasion" + }, + { + "appid": 1133320, + "normalized_name": "westworld awakening" + }, + { + "appid": 1133330, + "normalized_name": "helicopter simulator" + }, + { + "appid": 1133340, + "normalized_name": "dreamshard deckbuilding roguelike" + }, + { + "appid": 1133350, + "normalized_name": "gravity control" + }, + { + "appid": 1133360, + "normalized_name": "wall jump stuff" + }, + { + "appid": 1133420, + "normalized_name": "hero or villain genesis" + }, + { + "appid": 1133450, + "normalized_name": "hexa trains" + }, + { + "appid": 1133500, + "normalized_name": "overthrown" + }, + { + "appid": 1133510, + "normalized_name": "the legend of tobimaru" + }, + { + "appid": 1133520, + "normalized_name": "iconic" + }, + { + "appid": 1133530, + "normalized_name": "mythic pearls the legend of tirnanog" + }, + { + "appid": 1133540, + "normalized_name": "grid wars" + }, + { + "appid": 1133570, + "normalized_name": "shining starter" + }, + { + "appid": 1133580, + "normalized_name": "snapshot vr" + }, + { + "appid": 1133590, + "normalized_name": "stilt fella" + }, + { + "appid": 1133610, + "normalized_name": "落华居" + }, + { + "appid": 1133700, + "normalized_name": "curve fever" + }, + { + "appid": 1133730, + "normalized_name": "second galaxy" + }, + { + "appid": 1133760, + "normalized_name": "chrono cross the radical dreamers" + }, + { + "appid": 1133770, + "normalized_name": "witch halloween" + }, + { + "appid": 1133780, + "normalized_name": "bandit the game" + }, + { + "appid": 1133790, + "normalized_name": "armortale" + }, + { + "appid": 1133870, + "normalized_name": "space engineers 2" + }, + { + "appid": 1133890, + "normalized_name": "p1r4t3s" + }, + { + "appid": 1133910, + "normalized_name": "caravan chaos" + }, + { + "appid": 1133930, + "normalized_name": "forgotten hill disillusion" + }, + { + "appid": 1133950, + "normalized_name": "the castle" + }, + { + "appid": 1133970, + "normalized_name": "battle dome redux" + }, + { + "appid": 1133980, + "normalized_name": "spirit arena" + }, + { + "appid": 1133990, + "normalized_name": "calm down stalin vr" + }, + { + "appid": 1134020, + "normalized_name": "sons of ra" + }, + { + "appid": 1134030, + "normalized_name": "the paperman" + }, + { + "appid": 1134040, + "normalized_name": "labyrinths of the world fool's gold collector's" + }, + { + "appid": 1134070, + "normalized_name": "keeper 2119" + }, + { + "appid": 1134100, + "normalized_name": "frozenheim" + }, + { + "appid": 1134120, + "normalized_name": "brutal sports football" + }, + { + "appid": 1134130, + "normalized_name": "legends" + }, + { + "appid": 1134140, + "normalized_name": "daaang!" + }, + { + "appid": 1134150, + "normalized_name": "x wars deluxe" + }, + { + "appid": 1134180, + "normalized_name": "cyberpunk hentai memory leak" + }, + { + "appid": 1134190, + "normalized_name": "tri.attack();" + }, + { + "appid": 1134200, + "normalized_name": "chicks and tricks vr" + }, + { + "appid": 1134250, + "normalized_name": "hexadrift" + }, + { + "appid": 1134260, + "normalized_name": "o rei" + }, + { + "appid": 1134320, + "normalized_name": "gladom 2d pvp free & skill based" + }, + { + "appid": 1134370, + "normalized_name": "baron fur is gonna fly" + }, + { + "appid": 1134390, + "normalized_name": "voidlifted" + }, + { + "appid": 1134440, + "normalized_name": "hentai honeys slider" + }, + { + "appid": 1134450, + "normalized_name": "allblack phase 1" + }, + { + "appid": 1134470, + "normalized_name": "sleep paralysis mystery of the mountain village" + }, + { + "appid": 1134480, + "normalized_name": "yorg.io 3" + }, + { + "appid": 1134500, + "normalized_name": "follow the white rabbit vr (화이트래빗)" + }, + { + "appid": 1134520, + "normalized_name": "dark light" + }, + { + "appid": 1134550, + "normalized_name": "东方梦月谈~lunatic dreaming" + }, + { + "appid": 1134600, + "normalized_name": "forest of elf" + }, + { + "appid": 1134610, + "normalized_name": "dice hero the unoriginal story" + }, + { + "appid": 1134630, + "normalized_name": "pear quest" + }, + { + "appid": 1134640, + "normalized_name": "sushi wildlands" + }, + { + "appid": 1134650, + "normalized_name": "escape room sim" + }, + { + "appid": 1134700, + "normalized_name": "wild terra 2 new lands" + }, + { + "appid": 1134710, + "normalized_name": "nimby rails" + }, + { + "appid": 1134730, + "normalized_name": "wetpants" + }, + { + "appid": 1135030, + "normalized_name": "jut" + }, + { + "appid": 1135040, + "normalized_name": "bombini" + }, + { + "appid": 1135050, + "normalized_name": "dr. umgebung's school of life" + }, + { + "appid": 1135060, + "normalized_name": "king of the sandcastle" + }, + { + "appid": 1135070, + "normalized_name": "moeras" + }, + { + "appid": 1135090, + "normalized_name": "dino game" + }, + { + "appid": 1135100, + "normalized_name": "driftwood" + }, + { + "appid": 1135110, + "normalized_name": "hoco poco" + }, + { + "appid": 1135120, + "normalized_name": "tomscape" + }, + { + "appid": 1135130, + "normalized_name": "kamer" + }, + { + "appid": 1135140, + "normalized_name": "huts" + }, + { + "appid": 1135150, + "normalized_name": "zoo packs" + }, + { + "appid": 1135160, + "normalized_name": "botanik" + }, + { + "appid": 1135170, + "normalized_name": "spider ponds" + }, + { + "appid": 1135180, + "normalized_name": "llama villa" + }, + { + "appid": 1135190, + "normalized_name": "hoppa" + }, + { + "appid": 1135200, + "normalized_name": "soko loco" + }, + { + "appid": 1135210, + "normalized_name": "oh crab!" + }, + { + "appid": 1135220, + "normalized_name": "tidewoken" + }, + { + "appid": 1135230, + "normalized_name": "ember knights" + }, + { + "appid": 1135240, + "normalized_name": "men of war assault squad 2 cold war" + }, + { + "appid": 1135260, + "normalized_name": "the falconeer" + }, + { + "appid": 1135300, + "normalized_name": "king's bounty ii" + }, + { + "appid": 1135310, + "normalized_name": "pictoglyph" + }, + { + "appid": 1135320, + "normalized_name": "vr瓦割り / vr roof tile" + }, + { + "appid": 1135370, + "normalized_name": "star girl proxima" + }, + { + "appid": 1135380, + "normalized_name": "不可思议佣兵团" + }, + { + "appid": 1135400, + "normalized_name": "captain fly and sexy students" + }, + { + "appid": 1135440, + "normalized_name": "little green girl" + }, + { + "appid": 1135450, + "normalized_name": "psy high 2 high summer" + }, + { + "appid": 1135480, + "normalized_name": "protect your fool" + }, + { + "appid": 1135560, + "normalized_name": "the thing at the window" + }, + { + "appid": 1135570, + "normalized_name": "martian law" + }, + { + "appid": 1135680, + "normalized_name": "hard love darkest desire" + }, + { + "appid": 1135690, + "normalized_name": "unpacking" + }, + { + "appid": 1135700, + "normalized_name": "welcome to the dark place" + }, + { + "appid": 1135730, + "normalized_name": "zebra logic master" + }, + { + "appid": 1135740, + "normalized_name": "utopia" + }, + { + "appid": 1135750, + "normalized_name": "return to earth" + }, + { + "appid": 1135760, + "normalized_name": "grab the mask | 地牢假面" + }, + { + "appid": 1135800, + "normalized_name": "tiger fighter 1931 sunset" + }, + { + "appid": 1135810, + "normalized_name": "vault of the void" + }, + { + "appid": 1135830, + "normalized_name": "brave alchemist colette" + }, + { + "appid": 1135850, + "normalized_name": "nearprime vr net burn" + }, + { + "appid": 1135860, + "normalized_name": "corpoct" + }, + { + "appid": 1135890, + "normalized_name": "伊始之战" + }, + { + "appid": 1135900, + "normalized_name": "bootybuns 2" + }, + { + "appid": 1135910, + "normalized_name": "hunting simulator 2" + }, + { + "appid": 1136010, + "normalized_name": "fearea battle royale" + }, + { + "appid": 1136020, + "normalized_name": "cannibal cuisine" + }, + { + "appid": 1136040, + "normalized_name": "rethink 3" + }, + { + "appid": 1136070, + "normalized_name": "ultragoodness 2" + }, + { + "appid": 1136080, + "normalized_name": "8 eyes" + }, + { + "appid": 1136090, + "normalized_name": "the gadget twins" + }, + { + "appid": 1136100, + "normalized_name": "mousegun" + }, + { + "appid": 1136110, + "normalized_name": "hidden objects the mystery house" + }, + { + "appid": 1136160, + "normalized_name": "internet cafe simulator" + }, + { + "appid": 1136240, + "normalized_name": "crowd control" + }, + { + "appid": 1136250, + "normalized_name": "forep man" + }, + { + "appid": 1136290, + "normalized_name": "kick bot" + }, + { + "appid": 1136330, + "normalized_name": "hazumi and the pregnation" + }, + { + "appid": 1136370, + "normalized_name": "bear and breakfast" + }, + { + "appid": 1136380, + "normalized_name": "fishing simulator 2" + }, + { + "appid": 1136390, + "normalized_name": "strange passion my boss my mistress" + }, + { + "appid": 1136420, + "normalized_name": "gates of hell" + }, + { + "appid": 1136440, + "normalized_name": "hentai arena holy pussy" + }, + { + "appid": 1136470, + "normalized_name": "aspects of change" + }, + { + "appid": 1136680, + "normalized_name": "building killer" + }, + { + "appid": 1136690, + "normalized_name": "molc's daily life of s.p.r.i.t.e.s." + }, + { + "appid": 1136730, + "normalized_name": "defect process" + }, + { + "appid": 1136770, + "normalized_name": "maze" + }, + { + "appid": 1136790, + "normalized_name": "draconic route" + }, + { + "appid": 1136820, + "normalized_name": "someone cloned the president" + }, + { + "appid": 1136830, + "normalized_name": "deep race battle" + }, + { + "appid": 1136870, + "normalized_name": "nibiru voyage" + }, + { + "appid": 1136900, + "normalized_name": "ポエニ戦争地中海の稲妻" + }, + { + "appid": 1136910, + "normalized_name": "lily's handmaid" + }, + { + "appid": 1136930, + "normalized_name": "gekisou! benza race toilet shooting star" + }, + { + "appid": 1136960, + "normalized_name": "hentai crazy girls" + }, + { + "appid": 1137020, + "normalized_name": "my train arrives" + }, + { + "appid": 1137040, + "normalized_name": "cat & mouse" + }, + { + "appid": 1137050, + "normalized_name": "treater" + }, + { + "appid": 1137070, + "normalized_name": "anime girls jigsaw puzzles" + }, + { + "appid": 1137100, + "normalized_name": "twice reborn a vampire visual novel" + }, + { + "appid": 1137110, + "normalized_name": "ballistic craft" + }, + { + "appid": 1137160, + "normalized_name": "百花三国志(banner of the three kingdoms)" + }, + { + "appid": 1137170, + "normalized_name": "nekrotronic vr" + }, + { + "appid": 1137190, + "normalized_name": "medium rare" + }, + { + "appid": 1137210, + "normalized_name": "alien monopoly" + }, + { + "appid": 1137220, + "normalized_name": "elite soldier 3d shooter" + }, + { + "appid": 1137230, + "normalized_name": "derby extreme racing" + }, + { + "appid": 1137250, + "normalized_name": "classic hentai logic puzzle" + }, + { + "appid": 1137260, + "normalized_name": "tower defense defender of the kingdom" + }, + { + "appid": 1137270, + "normalized_name": "palladium adventure in greece" + }, + { + "appid": 1137300, + "normalized_name": "sherlock holmes chapter one" + }, + { + "appid": 1137320, + "normalized_name": "screeps arena" + }, + { + "appid": 1137330, + "normalized_name": "dreamo puzzle adventure" + }, + { + "appid": 1137350, + "normalized_name": "filament" + }, + { + "appid": 1137360, + "normalized_name": "down means up" + }, + { + "appid": 1137390, + "normalized_name": "kyber knights" + }, + { + "appid": 1137400, + "normalized_name": "the war for the west" + }, + { + "appid": 1137410, + "normalized_name": "depraved awakening" + }, + { + "appid": 1137420, + "normalized_name": "alternative reality" + }, + { + "appid": 1137450, + "normalized_name": "encodya" + }, + { + "appid": 1137460, + "normalized_name": "altf4" + }, + { + "appid": 1137480, + "normalized_name": "joel mayer's purgatory" + }, + { + "appid": 1137490, + "normalized_name": "invasion 2037" + }, + { + "appid": 1137550, + "normalized_name": "my only sunshine" + }, + { + "appid": 1137620, + "normalized_name": "sexy president" + }, + { + "appid": 1137650, + "normalized_name": "switchblade" + }, + { + "appid": 1137660, + "normalized_name": "impossamole" + }, + { + "appid": 1137670, + "normalized_name": "power punch ii" + }, + { + "appid": 1137680, + "normalized_name": "blender bros" + }, + { + "appid": 1137690, + "normalized_name": "tinhead" + }, + { + "appid": 1137700, + "normalized_name": "aaw wrestle lab" + }, + { + "appid": 1137730, + "normalized_name": "naughty girl 2" + }, + { + "appid": 1137750, + "normalized_name": "farmer's life" + }, + { + "appid": 1137810, + "normalized_name": "total ski jump" + }, + { + "appid": 1137820, + "normalized_name": "gem collector" + }, + { + "appid": 1137860, + "normalized_name": "fowl magic" + }, + { + "appid": 1137870, + "normalized_name": "mosh pit" + }, + { + "appid": 1137880, + "normalized_name": "beyond" + }, + { + "appid": 1137900, + "normalized_name": "i am gooey" + }, + { + "appid": 1137910, + "normalized_name": "perdition" + }, + { + "appid": 1137930, + "normalized_name": "second dimension retropak vol. 1" + }, + { + "appid": 1137970, + "normalized_name": "zombies ate my neighbors and ghoul patrol" + }, + { + "appid": 1137980, + "normalized_name": "spirit" + }, + { + "appid": 1138010, + "normalized_name": "aftermoor" + }, + { + "appid": 1138020, + "normalized_name": "merge" + }, + { + "appid": 1138030, + "normalized_name": "灵卡大师 master of lincard" + }, + { + "appid": 1138060, + "normalized_name": "diablo_island 暗黑破坏岛" + }, + { + "appid": 1138070, + "normalized_name": "leapoid" + }, + { + "appid": 1138100, + "normalized_name": "touhou ibunseki ayaria dawn recreation" + }, + { + "appid": 1138130, + "normalized_name": "shadows and dust" + }, + { + "appid": 1138150, + "normalized_name": "fiery catacombs" + }, + { + "appid": 1138190, + "normalized_name": "poker championship" + }, + { + "appid": 1138210, + "normalized_name": "esperia ~ uprising of the scarlet witch ~" + }, + { + "appid": 1138220, + "normalized_name": "dreamo vr" + }, + { + "appid": 1138250, + "normalized_name": "alula" + }, + { + "appid": 1138260, + "normalized_name": "figure simulator war" + }, + { + "appid": 1138280, + "normalized_name": "workhard" + }, + { + "appid": 1138290, + "normalized_name": "slime adventure legacy" + }, + { + "appid": 1138300, + "normalized_name": "i like the flowers" + }, + { + "appid": 1138310, + "normalized_name": "morbolbo enter the maze" + }, + { + "appid": 1138320, + "normalized_name": "area 51 defence" + }, + { + "appid": 1138360, + "normalized_name": "next hand master" + }, + { + "appid": 1138370, + "normalized_name": "motel bondage" + }, + { + "appid": 1138380, + "normalized_name": "rhythm mage vr" + }, + { + "appid": 1138410, + "normalized_name": "demons never lie" + }, + { + "appid": 1138440, + "normalized_name": "galactic ruler" + }, + { + "appid": 1138530, + "normalized_name": "jigoro" + }, + { + "appid": 1138580, + "normalized_name": "farmington county the farming tycoon simulator" + }, + { + "appid": 1138630, + "normalized_name": "heroes swipe right" + }, + { + "appid": 1138640, + "normalized_name": "hometopia" + }, + { + "appid": 1138650, + "normalized_name": "tower princess" + }, + { + "appid": 1138660, + "normalized_name": "black book" + }, + { + "appid": 1138780, + "normalized_name": "rotobrix" + }, + { + "appid": 1138800, + "normalized_name": "dark elf's adventure" + }, + { + "appid": 1138810, + "normalized_name": "super platformer gun" + }, + { + "appid": 1138850, + "normalized_name": "heavenly bodies" + }, + { + "appid": 1138900, + "normalized_name": "解梦事务所 (dream solutions)" + }, + { + "appid": 1138960, + "normalized_name": "biomass" + }, + { + "appid": 1138970, + "normalized_name": "dandy dungeon legend of brave yamada" + }, + { + "appid": 1138980, + "normalized_name": "wonder parade" + }, + { + "appid": 1138990, + "normalized_name": "block in the lock" + }, + { + "appid": 1139000, + "normalized_name": "幸存者 / the survivor" + }, + { + "appid": 1139020, + "normalized_name": "hentai evilgirls" + }, + { + "appid": 1139060, + "normalized_name": "battle arena" + }, + { + "appid": 1139070, + "normalized_name": "seed bash" + }, + { + "appid": 1139090, + "normalized_name": "demolition expert the simulation" + }, + { + "appid": 1139100, + "normalized_name": "an egg can dream" + }, + { + "appid": 1139130, + "normalized_name": "biomech" + }, + { + "appid": 1139140, + "normalized_name": "kimono girls" + }, + { + "appid": 1139160, + "normalized_name": "divided reigns" + }, + { + "appid": 1139190, + "normalized_name": "lethe broken memories" + }, + { + "appid": 1139200, + "normalized_name": "world left behind" + }, + { + "appid": 1139210, + "normalized_name": "slice back" + }, + { + "appid": 1139230, + "normalized_name": "pilotxross(パイロットクロス)" + }, + { + "appid": 1139240, + "normalized_name": "halloweenstory" + }, + { + "appid": 1139280, + "normalized_name": "the big con" + }, + { + "appid": 1139310, + "normalized_name": "ven vr adventure" + }, + { + "appid": 1139470, + "normalized_name": "the art metamorphosis" + }, + { + "appid": 1139480, + "normalized_name": "mask of sanity" + }, + { + "appid": 1139490, + "normalized_name": "summer daze tilly's tale" + }, + { + "appid": 1139660, + "normalized_name": "marburgh" + }, + { + "appid": 1139720, + "normalized_name": "pro cycling manager 2019 stage and database editor" + }, + { + "appid": 1139740, + "normalized_name": "tentacat the lost lineage" + }, + { + "appid": 1139760, + "normalized_name": "dedstress" + }, + { + "appid": 1139770, + "normalized_name": "super realistic autocross vr" + }, + { + "appid": 1139780, + "normalized_name": "serenest" + }, + { + "appid": 1139790, + "normalized_name": "asylum of the dead" + }, + { + "appid": 1139800, + "normalized_name": "chinatris" + }, + { + "appid": 1139830, + "normalized_name": "recyclomania" + }, + { + "appid": 1139840, + "normalized_name": "tiltit" + }, + { + "appid": 1139860, + "normalized_name": "cruel world" + }, + { + "appid": 1139870, + "normalized_name": "the dark eye book of heroes" + }, + { + "appid": 1139880, + "normalized_name": "chapeau" + }, + { + "appid": 1139890, + "normalized_name": "dictators no peace countryballs" + }, + { + "appid": 1139900, + "normalized_name": "ghostrunner" + }, + { + "appid": 1139910, + "normalized_name": "nyx the awakening" + }, + { + "appid": 1139920, + "normalized_name": "vr垃圾分类_refuse classification" + }, + { + "appid": 1139940, + "normalized_name": "atom rpg trudograd" + }, + { + "appid": 1139950, + "normalized_name": "two weeks in painland" + }, + { + "appid": 1139980, + "normalized_name": "travellers rest" + }, + { + "appid": 1140020, + "normalized_name": "cetetorius" + }, + { + "appid": 1140030, + "normalized_name": "amazing td" + }, + { + "appid": 1140050, + "normalized_name": "三国志·天下归心" + }, + { + "appid": 1140060, + "normalized_name": "war ghost" + }, + { + "appid": 1140070, + "normalized_name": "tractor cargo driving simulator" + }, + { + "appid": 1140100, + "normalized_name": "the persistence" + }, + { + "appid": 1140110, + "normalized_name": "141" + }, + { + "appid": 1140130, + "normalized_name": "survival vacancy" + }, + { + "appid": 1140140, + "normalized_name": "summer meetings" + }, + { + "appid": 1140150, + "normalized_name": "东方光耀夜 ~ lost branch of legend" + }, + { + "appid": 1140160, + "normalized_name": "catapult battle simulator!" + }, + { + "appid": 1140170, + "normalized_name": "arietta of spirits" + }, + { + "appid": 1140180, + "normalized_name": "mazeman" + }, + { + "appid": 1140260, + "normalized_name": "blade warrior" + }, + { + "appid": 1140270, + "normalized_name": "monster prom 2 monster camp" + }, + { + "appid": 1140290, + "normalized_name": "murder by numbers" + }, + { + "appid": 1140350, + "normalized_name": "shuttlecock h covered rematch" + }, + { + "appid": 1140390, + "normalized_name": "hyperspeed fragfest" + }, + { + "appid": 1140400, + "normalized_name": "gericonia 2" + }, + { + "appid": 1140410, + "normalized_name": "sex city" + }, + { + "appid": 1140440, + "normalized_name": "omon simulator" + }, + { + "appid": 1140460, + "normalized_name": "v1ruz" + }, + { + "appid": 1140490, + "normalized_name": "the fog" + }, + { + "appid": 1140500, + "normalized_name": "crimson hotel" + }, + { + "appid": 1140510, + "normalized_name": "fantasy gladiators" + }, + { + "appid": 1140520, + "normalized_name": "graviton" + }, + { + "appid": 1140530, + "normalized_name": "viper" + }, + { + "appid": 1140540, + "normalized_name": "lonely arts" + }, + { + "appid": 1140570, + "normalized_name": "a street cat's tale" + }, + { + "appid": 1140610, + "normalized_name": "death live 死亡直播间" + }, + { + "appid": 1140620, + "normalized_name": "cosmicbreak universal" + }, + { + "appid": 1140630, + "normalized_name": "red wings aces of the sky" + }, + { + "appid": 1140700, + "normalized_name": "godorevil.beta" + }, + { + "appid": 1140720, + "normalized_name": "ship happens" + }, + { + "appid": 1140730, + "normalized_name": "pixel sentry" + }, + { + "appid": 1140740, + "normalized_name": "chroma bloom and blight" + }, + { + "appid": 1140750, + "normalized_name": "chained" + }, + { + "appid": 1140790, + "normalized_name": "kung fu jesus" + }, + { + "appid": 1140870, + "normalized_name": "sensible blood rugby" + }, + { + "appid": 1140880, + "normalized_name": "only one burn" + }, + { + "appid": 1140890, + "normalized_name": "morbid the seven acolytes" + }, + { + "appid": 1140900, + "normalized_name": "the chasm mines of madness" + }, + { + "appid": 1140930, + "normalized_name": "you are apt" + }, + { + "appid": 1140940, + "normalized_name": "games" + }, + { + "appid": 1140950, + "normalized_name": "boardwalk carnival game" + }, + { + "appid": 1140970, + "normalized_name": "inside the park vr" + }, + { + "appid": 1141020, + "normalized_name": "adventure escape mysteries" + }, + { + "appid": 1141030, + "normalized_name": "last message" + }, + { + "appid": 1141050, + "normalized_name": "nour play with your food" + }, + { + "appid": 1141060, + "normalized_name": "spirit of midnight" + }, + { + "appid": 1141070, + "normalized_name": "ufo brawlers from beyond" + }, + { + "appid": 1141100, + "normalized_name": "lilitales" + }, + { + "appid": 1141120, + "normalized_name": "scarlet hood and the wicked wood" + }, + { + "appid": 1141130, + "normalized_name": "serious scramblers" + }, + { + "appid": 1141150, + "normalized_name": "the defender farm and castle 2" + }, + { + "appid": 1141160, + "normalized_name": "fractalis" + }, + { + "appid": 1141170, + "normalized_name": "risnuch" + }, + { + "appid": 1141180, + "normalized_name": "cocktail for beauty" + }, + { + "appid": 1141220, + "normalized_name": "demoncrawl" + }, + { + "appid": 1141250, + "normalized_name": "planet automata" + }, + { + "appid": 1141260, + "normalized_name": "1000 deaths (thousand deaths)" + }, + { + "appid": 1141270, + "normalized_name": "who stole my beard?" + }, + { + "appid": 1141280, + "normalized_name": "super space slayer 2" + }, + { + "appid": 1141290, + "normalized_name": "tactical nexus" + }, + { + "appid": 1141300, + "normalized_name": "sloth quest" + }, + { + "appid": 1141320, + "normalized_name": "idle campaign" + }, + { + "appid": 1141330, + "normalized_name": "monster breakout" + }, + { + "appid": 1141340, + "normalized_name": "wildisland" + }, + { + "appid": 1141360, + "normalized_name": "dungeon dreams (female protagonist)" + }, + { + "appid": 1141380, + "normalized_name": "ladies orders" + }, + { + "appid": 1141390, + "normalized_name": "the blitzkrieg weapons of war" + }, + { + "appid": 1141410, + "normalized_name": "emo simulator" + }, + { + "appid": 1141450, + "normalized_name": "dodge rocket" + }, + { + "appid": 1141510, + "normalized_name": "one fantasy shooter" + }, + { + "appid": 1141540, + "normalized_name": "the dark wish" + }, + { + "appid": 1141550, + "normalized_name": "cuckold simulator life as a beta male cuck" + }, + { + "appid": 1141570, + "normalized_name": "sky cannoneer" + }, + { + "appid": 1141580, + "normalized_name": "taiji" + }, + { + "appid": 1141600, + "normalized_name": "every day's different" + }, + { + "appid": 1141640, + "normalized_name": "slaveblade" + }, + { + "appid": 1141650, + "normalized_name": "crowd simulator" + }, + { + "appid": 1141660, + "normalized_name": "夢限ノ夜" + }, + { + "appid": 1141690, + "normalized_name": "raiders of chanyu" + }, + { + "appid": 1141700, + "normalized_name": "desert monsters" + }, + { + "appid": 1141740, + "normalized_name": "cures & curios" + }, + { + "appid": 1141750, + "normalized_name": "缸中之脑:谎言(brain in a vat lies)" + }, + { + "appid": 1141760, + "normalized_name": "westale peelgrimage" + }, + { + "appid": 1141770, + "normalized_name": "rage melee" + }, + { + "appid": 1141840, + "normalized_name": "escape the lab" + }, + { + "appid": 1141850, + "normalized_name": "radial" + }, + { + "appid": 1141860, + "normalized_name": "trial of destiny" + }, + { + "appid": 1141880, + "normalized_name": "crazy critters combat cats" + }, + { + "appid": 1141920, + "normalized_name": "flat form fighter" + }, + { + "appid": 1141930, + "normalized_name": "mondly learn languages in vr" + }, + { + "appid": 1141950, + "normalized_name": "sex & gun pc" + }, + { + "appid": 1141970, + "normalized_name": "yarbay" + }, + { + "appid": 1141990, + "normalized_name": "elite escape" + }, + { + "appid": 1142000, + "normalized_name": "challenging dogfights" + }, + { + "appid": 1142020, + "normalized_name": "parcel mania free multiplayer madness" + }, + { + "appid": 1142030, + "normalized_name": "emperium" + }, + { + "appid": 1142040, + "normalized_name": "情书 for stella" + }, + { + "appid": 1142050, + "normalized_name": "deadhaus sonata" + }, + { + "appid": 1142070, + "normalized_name": "paladin slayer" + }, + { + "appid": 1142080, + "normalized_name": "pawnbarian" + }, + { + "appid": 1142090, + "normalized_name": "playing both sides" + }, + { + "appid": 1142100, + "normalized_name": "wwe 2k battlegrounds" + }, + { + "appid": 1142130, + "normalized_name": "they can't stop all of us" + }, + { + "appid": 1142180, + "normalized_name": "se vr world demo" + }, + { + "appid": 1142200, + "normalized_name": "nightmare cave" + }, + { + "appid": 1142220, + "normalized_name": "beat aim rhythm fps trainer" + }, + { + "appid": 1142230, + "normalized_name": "the secrets of jesus" + }, + { + "appid": 1142240, + "normalized_name": "oda" + }, + { + "appid": 1142270, + "normalized_name": "catgirl & doggirl cafe" + }, + { + "appid": 1142280, + "normalized_name": "color +" + }, + { + "appid": 1142290, + "normalized_name": "haunted legends the scars of lamia collector's" + }, + { + "appid": 1142300, + "normalized_name": "hope; or how we survived" + }, + { + "appid": 1142320, + "normalized_name": "little helper" + }, + { + "appid": 1142360, + "normalized_name": "hope for city" + }, + { + "appid": 1142390, + "normalized_name": "remothered broken porcelain" + }, + { + "appid": 1142410, + "normalized_name": "kamile the fall" + }, + { + "appid": 1142440, + "normalized_name": "thanks for listening" + }, + { + "appid": 1142450, + "normalized_name": "grapplinghook" + }, + { + "appid": 1142460, + "normalized_name": "super monkey" + }, + { + "appid": 1142480, + "normalized_name": "anthophobia" + }, + { + "appid": 1142500, + "normalized_name": "fun with ragdolls the game" + }, + { + "appid": 1142510, + "normalized_name": "cucumber defense vr" + }, + { + "appid": 1142530, + "normalized_name": "dog clicker" + }, + { + "appid": 1142560, + "normalized_name": "princess and knight" + }, + { + "appid": 1142570, + "normalized_name": "we stay behind" + }, + { + "appid": 1142710, + "normalized_name": "total war warhammer iii" + }, + { + "appid": 1142730, + "normalized_name": "player power" + }, + { + "appid": 1142740, + "normalized_name": "逃離地獄邊緣" + }, + { + "appid": 1142750, + "normalized_name": "baff 3" + }, + { + "appid": 1142760, + "normalized_name": "racing angle" + }, + { + "appid": 1142810, + "normalized_name": "toasterball" + }, + { + "appid": 1142820, + "normalized_name": "exactamundo world trivia tour" + }, + { + "appid": 1142830, + "normalized_name": "9 nine episode 3" + }, + { + "appid": 1142850, + "normalized_name": "darkness rollercoaster shooter" + }, + { + "appid": 1142860, + "normalized_name": "机甲雄心:巡天者" + }, + { + "appid": 1142870, + "normalized_name": "hentai fight club" + }, + { + "appid": 1142890, + "normalized_name": "heart in the dark" + }, + { + "appid": 1143070, + "normalized_name": "dynasty of the sands" + }, + { + "appid": 1143140, + "normalized_name": "bierwagen rush" + }, + { + "appid": 1143170, + "normalized_name": "auto factory" + }, + { + "appid": 1143310, + "normalized_name": "perfect murder" + }, + { + "appid": 1143320, + "normalized_name": "gred" + }, + { + "appid": 1143330, + "normalized_name": "frustrate a ball" + }, + { + "appid": 1143340, + "normalized_name": "industriworks" + }, + { + "appid": 1143350, + "normalized_name": "flatland vol.1" + }, + { + "appid": 1143390, + "normalized_name": "ichor" + }, + { + "appid": 1143420, + "normalized_name": "70 seconds! adventure" + }, + { + "appid": 1143430, + "normalized_name": "shadow gangs" + }, + { + "appid": 1143440, + "normalized_name": "connor's desert adventure" + }, + { + "appid": 1143450, + "normalized_name": "deltablade 2700" + }, + { + "appid": 1143540, + "normalized_name": "endless rubber" + }, + { + "appid": 1143550, + "normalized_name": "elemetals death metal death match!" + }, + { + "appid": 1143570, + "normalized_name": "volticpistol" + }, + { + "appid": 1143610, + "normalized_name": "poly quest" + }, + { + "appid": 1143680, + "normalized_name": "ava" + }, + { + "appid": 1143710, + "normalized_name": "тёмное отражение (dark reflection)" + }, + { + "appid": 1143720, + "normalized_name": "alterity experience" + }, + { + "appid": 1143740, + "normalized_name": "puzzletime castle party" + }, + { + "appid": 1143770, + "normalized_name": "stressout" + }, + { + "appid": 1143780, + "normalized_name": "graveyard defender" + }, + { + "appid": 1143800, + "normalized_name": "jigsaw puzzle pro" + }, + { + "appid": 1143810, + "normalized_name": "black skylands" + }, + { + "appid": 1143860, + "normalized_name": "zombie admin" + }, + { + "appid": 1143870, + "normalized_name": "yasg" + }, + { + "appid": 1143900, + "normalized_name": "shapeshooter" + }, + { + "appid": 1143910, + "normalized_name": "deathtower" + }, + { + "appid": 1144000, + "normalized_name": "spock in the dama kingdom" + }, + { + "appid": 1144020, + "normalized_name": "golftopia" + }, + { + "appid": 1144030, + "normalized_name": "pesterquest" + }, + { + "appid": 1144060, + "normalized_name": "ten days to war" + }, + { + "appid": 1144070, + "normalized_name": "numb" + }, + { + "appid": 1144080, + "normalized_name": "overboard" + }, + { + "appid": 1144090, + "normalized_name": "artformer ancient stories" + }, + { + "appid": 1144100, + "normalized_name": "linea vr" + }, + { + "appid": 1144110, + "normalized_name": "open world game the open world game" + }, + { + "appid": 1144130, + "normalized_name": "smash dungeon" + }, + { + "appid": 1144140, + "normalized_name": "pillars of dust" + }, + { + "appid": 1144150, + "normalized_name": "singled out" + }, + { + "appid": 1144170, + "normalized_name": "warhammer chaos and conquest" + }, + { + "appid": 1144200, + "normalized_name": "ready or not" + }, + { + "appid": 1144240, + "normalized_name": "molamolaadventure" + }, + { + "appid": 1144250, + "normalized_name": "waifu hell" + }, + { + "appid": 1144260, + "normalized_name": "warships on the halloween night" + }, + { + "appid": 1144270, + "normalized_name": "救赎抉择resurrection" + }, + { + "appid": 1144280, + "normalized_name": "ain dodo" + }, + { + "appid": 1144290, + "normalized_name": "lucid nina" + }, + { + "appid": 1144300, + "normalized_name": "ef the first tale. (all ages)" + }, + { + "appid": 1144330, + "normalized_name": "marisa's marvelous magic shop" + }, + { + "appid": 1144350, + "normalized_name": "hunger tower" + }, + { + "appid": 1144370, + "normalized_name": "levi chronicles" + }, + { + "appid": 1144380, + "normalized_name": "玛斯卡的面具 maska's masks" + }, + { + "appid": 1144400, + "normalized_name": "senren*banka" + }, + { + "appid": 1144440, + "normalized_name": "underparty" + }, + { + "appid": 1144450, + "normalized_name": "rose riddle fairy tale detective" + }, + { + "appid": 1144460, + "normalized_name": "soundart" + }, + { + "appid": 1144470, + "normalized_name": "invisible" + }, + { + "appid": 1144510, + "normalized_name": "stratos" + }, + { + "appid": 1144520, + "normalized_name": "air" + }, + { + "appid": 1144550, + "normalized_name": "bride for the princess" + }, + { + "appid": 1144560, + "normalized_name": "chronoblast maximum force" + }, + { + "appid": 1144590, + "normalized_name": "blooding runner x" + }, + { + "appid": 1144620, + "normalized_name": "northern lights" + }, + { + "appid": 1144630, + "normalized_name": "beardy the digger" + }, + { + "appid": 1144670, + "normalized_name": "tactikk" + }, + { + "appid": 1144690, + "normalized_name": "project solarbot" + }, + { + "appid": 1144730, + "normalized_name": "fight or flight vr" + }, + { + "appid": 1144760, + "normalized_name": "vectrix" + }, + { + "appid": 1144770, + "normalized_name": "sludge life" + }, + { + "appid": 1144800, + "normalized_name": "drop in vr f2p" + }, + { + "appid": 1144810, + "normalized_name": "winter cometh" + }, + { + "appid": 1144820, + "normalized_name": "neighborhood" + }, + { + "appid": 1144850, + "normalized_name": "manic" + }, + { + "appid": 1144860, + "normalized_name": "flying sword" + }, + { + "appid": 1144900, + "normalized_name": "pension day" + }, + { + "appid": 1144910, + "normalized_name": "space gladiators" + }, + { + "appid": 1144970, + "normalized_name": "necronator dead wrong" + }, + { + "appid": 1145000, + "normalized_name": "the rainbow world" + }, + { + "appid": 1145020, + "normalized_name": "break arcade games out" + }, + { + "appid": 1145030, + "normalized_name": "ef the latter tale. (all ages)" + }, + { + "appid": 1145040, + "normalized_name": "princess guard" + }, + { + "appid": 1145050, + "normalized_name": "tonetaker vr" + }, + { + "appid": 1145060, + "normalized_name": "alchedungeon" + }, + { + "appid": 1145120, + "normalized_name": "last summer iteration" + }, + { + "appid": 1145130, + "normalized_name": "卖萌恶霸喵霸霸 cute bully nyanbaba" + }, + { + "appid": 1145180, + "normalized_name": "uznali ? soglasnbi ?" + }, + { + "appid": 1145200, + "normalized_name": "tomb typing" + }, + { + "appid": 1145210, + "normalized_name": "typing with sharks" + }, + { + "appid": 1145220, + "normalized_name": "xtreme typing" + }, + { + "appid": 1145240, + "normalized_name": "dawn of the dragons ascension" + }, + { + "appid": 1145270, + "normalized_name": "misfire" + }, + { + "appid": 1145280, + "normalized_name": "blockey block yeah!" + }, + { + "appid": 1145290, + "normalized_name": "out there oceans of time" + }, + { + "appid": 1145300, + "normalized_name": "ziggy" + }, + { + "appid": 1145330, + "normalized_name": "skeleton crew" + }, + { + "appid": 1145340, + "normalized_name": "rogue state revolution" + }, + { + "appid": 1145350, + "normalized_name": "hades ii" + }, + { + "appid": 1145360, + "normalized_name": "hades" + }, + { + "appid": 1145380, + "normalized_name": "kakatte koi yo!" + }, + { + "appid": 1145400, + "normalized_name": "talif's journey" + }, + { + "appid": 1145410, + "normalized_name": "knight swap" + }, + { + "appid": 1145430, + "normalized_name": "agross" + }, + { + "appid": 1145440, + "normalized_name": "bloom memories" + }, + { + "appid": 1145450, + "normalized_name": "mystery case files moths to a flame collector's" + }, + { + "appid": 1145460, + "normalized_name": "memories on the shoreline" + }, + { + "appid": 1145490, + "normalized_name": "operation armstrong" + }, + { + "appid": 1145520, + "normalized_name": "wall force" + }, + { + "appid": 1145530, + "normalized_name": "one day 一天" + }, + { + "appid": 1145550, + "normalized_name": "守护传说 guardian legend" + }, + { + "appid": 1145560, + "normalized_name": "marble trap" + }, + { + "appid": 1145570, + "normalized_name": "ortharion project" + }, + { + "appid": 1145580, + "normalized_name": "wolves team" + }, + { + "appid": 1145590, + "normalized_name": "kastle krush" + }, + { + "appid": 1145600, + "normalized_name": "ridiculous bombing game" + }, + { + "appid": 1145630, + "normalized_name": "beast false prophet" + }, + { + "appid": 1145660, + "normalized_name": "drift of the hill" + }, + { + "appid": 1145670, + "normalized_name": "the seven" + }, + { + "appid": 1145740, + "normalized_name": "in search of a home" + }, + { + "appid": 1145770, + "normalized_name": "cuties dungeon" + }, + { + "appid": 1145780, + "normalized_name": "angry golf" + }, + { + "appid": 1145800, + "normalized_name": "marisa's inconceivable journey" + }, + { + "appid": 1145810, + "normalized_name": "desert lost" + }, + { + "appid": 1145820, + "normalized_name": "infectis" + }, + { + "appid": 1145830, + "normalized_name": "clarevoyance" + }, + { + "appid": 1145860, + "normalized_name": "quantum multiverse" + }, + { + "appid": 1145910, + "normalized_name": "tabletop soccer redux" + }, + { + "appid": 1145950, + "normalized_name": "vector prospector" + }, + { + "appid": 1145960, + "normalized_name": "the white door" + }, + { + "appid": 1145970, + "normalized_name": "forest home" + }, + { + "appid": 1146000, + "normalized_name": "joe blunt up in smoke" + }, + { + "appid": 1146010, + "normalized_name": "art of boxing" + }, + { + "appid": 1146070, + "normalized_name": "terminal protocol" + }, + { + "appid": 1146090, + "normalized_name": "flint" + }, + { + "appid": 1146100, + "normalized_name": "the rising of the shield hero relive the animation" + }, + { + "appid": 1146120, + "normalized_name": "deepsea" + }, + { + "appid": 1146160, + "normalized_name": "the tomb of argazfell" + }, + { + "appid": 1146170, + "normalized_name": "kingsim" + }, + { + "appid": 1146210, + "normalized_name": "亚当:机器人世界 / adam robot world" + }, + { + "appid": 1146230, + "normalized_name": "dungeontop" + }, + { + "appid": 1146240, + "normalized_name": "the seven spells of destruction" + }, + { + "appid": 1146250, + "normalized_name": "seasons girls" + }, + { + "appid": 1146280, + "normalized_name": "horace first trip" + }, + { + "appid": 1146300, + "normalized_name": "land of war the beginning" + }, + { + "appid": 1146310, + "normalized_name": "beyond a steel sky" + }, + { + "appid": 1146330, + "normalized_name": "virulent addiction" + }, + { + "appid": 1146350, + "normalized_name": "urban riots" + }, + { + "appid": 1146360, + "normalized_name": "grey an alien dream" + }, + { + "appid": 1146370, + "normalized_name": "master of magic classic" + }, + { + "appid": 1146390, + "normalized_name": "where are we now" + }, + { + "appid": 1146420, + "normalized_name": "relic space" + }, + { + "appid": 1146430, + "normalized_name": "served!" + }, + { + "appid": 1146450, + "normalized_name": "stare block breaker" + }, + { + "appid": 1146500, + "normalized_name": "adventure slime" + }, + { + "appid": 1146510, + "normalized_name": "deep sleep trilogy" + }, + { + "appid": 1146560, + "normalized_name": "drawn down abyss" + }, + { + "appid": 1146570, + "normalized_name": "gacha pets" + }, + { + "appid": 1146590, + "normalized_name": "ultima defesa" + }, + { + "appid": 1146600, + "normalized_name": "for the people" + }, + { + "appid": 1146630, + "normalized_name": "yokai's secret" + }, + { + "appid": 1146660, + "normalized_name": "solar cram school/[太阳补习班]" + }, + { + "appid": 1146670, + "normalized_name": "beauty and violence valkyries" + }, + { + "appid": 1146700, + "normalized_name": "battle sorcerers" + }, + { + "appid": 1146710, + "normalized_name": "flight runner universe" + }, + { + "appid": 1146730, + "normalized_name": "void of heroes" + }, + { + "appid": 1146780, + "normalized_name": "monster planet" + }, + { + "appid": 1146810, + "normalized_name": "phantom astronaut lucid vr" + }, + { + "appid": 1146880, + "normalized_name": "rrrr3" + }, + { + "appid": 1146890, + "normalized_name": "mmx" + }, + { + "appid": 1146910, + "normalized_name": "atomorf2" + }, + { + "appid": 1146920, + "normalized_name": "xenociders" + }, + { + "appid": 1146940, + "normalized_name": "i will eat you" + }, + { + "appid": 1146950, + "normalized_name": "hentai girl fantasy" + }, + { + "appid": 1146970, + "normalized_name": "my vow to my liege" + }, + { + "appid": 1147000, + "normalized_name": "flirting with yasmine" + }, + { + "appid": 1147020, + "normalized_name": "quest for conquest" + }, + { + "appid": 1147030, + "normalized_name": "the terrible old man" + }, + { + "appid": 1147080, + "normalized_name": "laser arena online" + }, + { + "appid": 1147090, + "normalized_name": "a thousand years" + }, + { + "appid": 1147110, + "normalized_name": "the long gate" + }, + { + "appid": 1147130, + "normalized_name": "countryballs modern ballfare" + }, + { + "appid": 1147140, + "normalized_name": "funny road chase simulator" + }, + { + "appid": 1147170, + "normalized_name": "escoteiros espaciais" + }, + { + "appid": 1147200, + "normalized_name": "snl" + }, + { + "appid": 1147220, + "normalized_name": "grim tales guest from the future collector's" + }, + { + "appid": 1147240, + "normalized_name": "rogue waves" + }, + { + "appid": 1147270, + "normalized_name": "the lost island battle royale" + }, + { + "appid": 1147280, + "normalized_name": "column on the sea" + }, + { + "appid": 1147330, + "normalized_name": "lifeless moon" + }, + { + "appid": 1147360, + "normalized_name": "a boy and his blob retro collection" + }, + { + "appid": 1147370, + "normalized_name": "the empire's crisis" + }, + { + "appid": 1147390, + "normalized_name": "punchline!!" + }, + { + "appid": 1147450, + "normalized_name": "divine miko koyori" + }, + { + "appid": 1147460, + "normalized_name": "fail to win" + }, + { + "appid": 1147490, + "normalized_name": "frontline western front" + }, + { + "appid": 1147500, + "normalized_name": "a gay's life" + }, + { + "appid": 1147510, + "normalized_name": "hentai asmodeus" + }, + { + "appid": 1147520, + "normalized_name": "super bora dragon eyes" + }, + { + "appid": 1147550, + "normalized_name": "not for broadcast" + }, + { + "appid": 1147560, + "normalized_name": "skul the hero slayer" + }, + { + "appid": 1147600, + "normalized_name": "star police" + }, + { + "appid": 1147620, + "normalized_name": "the lost dungeon of knight" + }, + { + "appid": 1147640, + "normalized_name": "summer knights" + }, + { + "appid": 1147690, + "normalized_name": "ngu idle" + }, + { + "appid": 1147700, + "normalized_name": "forest adventure" + }, + { + "appid": 1147710, + "normalized_name": "cute blocks" + }, + { + "appid": 1147750, + "normalized_name": "fishy" + }, + { + "appid": 1147760, + "normalized_name": "the end of an actress" + }, + { + "appid": 1147840, + "normalized_name": "hyper storm" + }, + { + "appid": 1147850, + "normalized_name": "brother brother" + }, + { + "appid": 1147860, + "normalized_name": "ufo 50" + }, + { + "appid": 1147870, + "normalized_name": "vivid spirit" + }, + { + "appid": 1147880, + "normalized_name": "auto fire" + }, + { + "appid": 1147890, + "normalized_name": "bonfire peaks" + }, + { + "appid": 1147910, + "normalized_name": "origami ninja star" + }, + { + "appid": 1147940, + "normalized_name": "3dsen pc" + }, + { + "appid": 1147950, + "normalized_name": "shio and mysterious forest" + }, + { + "appid": 1147960, + "normalized_name": "[chilla's art] okaeri | おかえり" + }, + { + "appid": 1147970, + "normalized_name": "abode 2" + }, + { + "appid": 1147980, + "normalized_name": "gene rain wind tower" + }, + { + "appid": 1148000, + "normalized_name": "squirrel jump" + }, + { + "appid": 1148010, + "normalized_name": "love chan" + }, + { + "appid": 1148030, + "normalized_name": "esport test toolkit (ett)" + }, + { + "appid": 1148080, + "normalized_name": "rainbow pixel color by number" + }, + { + "appid": 1148090, + "normalized_name": "solitaire game halloween" + }, + { + "appid": 1148100, + "normalized_name": "life on the hook" + }, + { + "appid": 1148120, + "normalized_name": "this picture" + }, + { + "appid": 1148130, + "normalized_name": "divinum" + }, + { + "appid": 1148150, + "normalized_name": "man of the house" + }, + { + "appid": 1148160, + "normalized_name": "holiday mania" + }, + { + "appid": 1148200, + "normalized_name": "fadó chapter one" + }, + { + "appid": 1148230, + "normalized_name": "hexcross" + }, + { + "appid": 1148260, + "normalized_name": "king of halloween" + }, + { + "appid": 1148270, + "normalized_name": "the final battle" + }, + { + "appid": 1148290, + "normalized_name": "thy kingdom crumble" + }, + { + "appid": 1148300, + "normalized_name": "war battle royale battlegrounds" + }, + { + "appid": 1148310, + "normalized_name": "behind the beyond" + }, + { + "appid": 1148320, + "normalized_name": "masteroid" + }, + { + "appid": 1148330, + "normalized_name": "legend of the sword" + }, + { + "appid": 1148350, + "normalized_name": "the powder toy" + }, + { + "appid": 1148360, + "normalized_name": "alisa quest" + }, + { + "appid": 1148390, + "normalized_name": "alien earth" + }, + { + "appid": 1148400, + "normalized_name": "blooming nightshade" + }, + { + "appid": 1148410, + "normalized_name": "prison planet" + }, + { + "appid": 1148420, + "normalized_name": "kunoichi ninja" + }, + { + "appid": 1148430, + "normalized_name": "rescue team 8" + }, + { + "appid": 1148450, + "normalized_name": "detective jackie mystic case" + }, + { + "appid": 1148460, + "normalized_name": "inside the cubes" + }, + { + "appid": 1148470, + "normalized_name": "killjoy hunter yuuko" + }, + { + "appid": 1148480, + "normalized_name": "spacerift arcanum system" + }, + { + "appid": 1148490, + "normalized_name": "second front" + }, + { + "appid": 1148500, + "normalized_name": "pupaipo space deluxe" + }, + { + "appid": 1148510, + "normalized_name": "pretty angel" + }, + { + "appid": 1148530, + "normalized_name": "griddlers legend of the pirates" + }, + { + "appid": 1148540, + "normalized_name": "griddlers victorian picnic" + }, + { + "appid": 1148550, + "normalized_name": "terror squid" + }, + { + "appid": 1148560, + "normalized_name": "buccaneers!" + }, + { + "appid": 1148570, + "normalized_name": "blastworld" + }, + { + "appid": 1148590, + "normalized_name": "doom 64" + }, + { + "appid": 1148620, + "normalized_name": "plunder" + }, + { + "appid": 1148650, + "normalized_name": "the legend of bum bo" + }, + { + "appid": 1148670, + "normalized_name": "annals of rome" + }, + { + "appid": 1148680, + "normalized_name": "austerlitz" + }, + { + "appid": 1148700, + "normalized_name": "deadtime defenders" + }, + { + "appid": 1148710, + "normalized_name": "miriel saga" + }, + { + "appid": 1148730, + "normalized_name": "errant kingdom" + }, + { + "appid": 1148740, + "normalized_name": "far from orbit" + }, + { + "appid": 1148750, + "normalized_name": "advisors at the end of the universe" + }, + { + "appid": 1148760, + "normalized_name": "i was a teenage exocolonist" + }, + { + "appid": 1148770, + "normalized_name": "not an angels erotic puzzle" + }, + { + "appid": 1148880, + "normalized_name": "down in the dark" + }, + { + "appid": 1148890, + "normalized_name": "protect the campus" + }, + { + "appid": 1148920, + "normalized_name": "hentai pix" + }, + { + "appid": 1148930, + "normalized_name": "chuusotsu! 1.5th graduation the moving castle" + }, + { + "appid": 1148940, + "normalized_name": "hentai mizugi" + }, + { + "appid": 1148980, + "normalized_name": "occupational hazards episode 1" + }, + { + "appid": 1149000, + "normalized_name": "monster loves you too!" + }, + { + "appid": 1149010, + "normalized_name": "warden" + }, + { + "appid": 1149070, + "normalized_name": "skyrift" + }, + { + "appid": 1149080, + "normalized_name": "swords and sandals spartacus" + }, + { + "appid": 1149090, + "normalized_name": "hospital 9" + }, + { + "appid": 1149120, + "normalized_name": "drift 1969" + }, + { + "appid": 1149180, + "normalized_name": "the last promise" + }, + { + "appid": 1149190, + "normalized_name": "errant heart" + }, + { + "appid": 1149200, + "normalized_name": "spirit fighters" + }, + { + "appid": 1149210, + "normalized_name": "turtle rush" + }, + { + "appid": 1149220, + "normalized_name": "p.3" + }, + { + "appid": 1149280, + "normalized_name": "nudel tag" + }, + { + "appid": 1149290, + "normalized_name": "derpy conga" + }, + { + "appid": 1149340, + "normalized_name": "those crazy crows" + }, + { + "appid": 1149370, + "normalized_name": "broken spell" + }, + { + "appid": 1149400, + "normalized_name": "the yellow king" + }, + { + "appid": 1149440, + "normalized_name": "dragon marked for death" + }, + { + "appid": 1149450, + "normalized_name": "tree of life 2" + }, + { + "appid": 1149460, + "normalized_name": "icarus" + }, + { + "appid": 1149490, + "normalized_name": "bokube" + }, + { + "appid": 1149500, + "normalized_name": "arc vector" + }, + { + "appid": 1149510, + "normalized_name": "the leopard catgirl in miaoli" + }, + { + "appid": 1149550, + "normalized_name": "utawarerumono mask of deception" + }, + { + "appid": 1149570, + "normalized_name": "see" + }, + { + "appid": 1149580, + "normalized_name": "super korotama" + }, + { + "appid": 1149590, + "normalized_name": "dreamland solitaire" + }, + { + "appid": 1149620, + "normalized_name": "gas station simulator" + }, + { + "appid": 1149630, + "normalized_name": "project gemini" + }, + { + "appid": 1149660, + "normalized_name": "seek girl ⅱ" + }, + { + "appid": 1149690, + "normalized_name": "hexogin" + }, + { + "appid": 1149700, + "normalized_name": "dark veer" + }, + { + "appid": 1149710, + "normalized_name": "tesla force" + }, + { + "appid": 1149770, + "normalized_name": "trapper simulator" + }, + { + "appid": 1149800, + "normalized_name": "xenrai" + }, + { + "appid": 1149830, + "normalized_name": "josie's tank" + }, + { + "appid": 1149860, + "normalized_name": "arsenal demon" + }, + { + "appid": 1149900, + "normalized_name": "cheer and track" + }, + { + "appid": 1149910, + "normalized_name": "binky show" + }, + { + "appid": 1149930, + "normalized_name": "tale's casino escape" + }, + { + "appid": 1149940, + "normalized_name": "lock 'n load tactical digital core game" + }, + { + "appid": 1150010, + "normalized_name": "country clubbing" + }, + { + "appid": 1150040, + "normalized_name": "go all out free to play" + }, + { + "appid": 1150070, + "normalized_name": "mizari loves company" + }, + { + "appid": 1150080, + "normalized_name": "azur lane crosswave" + }, + { + "appid": 1150090, + "normalized_name": "learning factory" + }, + { + "appid": 1150130, + "normalized_name": "吾光笔记" + }, + { + "appid": 1150140, + "normalized_name": "just spin" + }, + { + "appid": 1150160, + "normalized_name": "kobberparty castle explorer" + }, + { + "appid": 1150260, + "normalized_name": "out of time" + }, + { + "appid": 1150270, + "normalized_name": "neon space war" + }, + { + "appid": 1150290, + "normalized_name": "qr code killer" + }, + { + "appid": 1150300, + "normalized_name": "maru" + }, + { + "appid": 1150310, + "normalized_name": "let's go! skiing vr" + }, + { + "appid": 1150390, + "normalized_name": "steel rain" + }, + { + "appid": 1150400, + "normalized_name": "the ancient labyrinth" + }, + { + "appid": 1150420, + "normalized_name": "junk" + }, + { + "appid": 1150440, + "normalized_name": "aliens dark descent" + }, + { + "appid": 1150460, + "normalized_name": "summer paws" + }, + { + "appid": 1150480, + "normalized_name": "micro car crash online le go!" + }, + { + "appid": 1150500, + "normalized_name": "voidspace" + }, + { + "appid": 1150530, + "normalized_name": "wizard with a gun" + }, + { + "appid": 1150540, + "normalized_name": "offcoast" + }, + { + "appid": 1150550, + "normalized_name": "winter polaris" + }, + { + "appid": 1150580, + "normalized_name": "history warriors" + }, + { + "appid": 1150610, + "normalized_name": "city gangs war in miami" + }, + { + "appid": 1150620, + "normalized_name": "bed lying simulator 2020" + }, + { + "appid": 1150640, + "normalized_name": "yu gi oh! legacy of the duelist link evolution" + }, + { + "appid": 1150650, + "normalized_name": "war theatre blood of winter" + }, + { + "appid": 1150670, + "normalized_name": "sorcerer lord" + }, + { + "appid": 1150690, + "normalized_name": "omori" + }, + { + "appid": 1150700, + "normalized_name": "dark arena" + }, + { + "appid": 1150720, + "normalized_name": "monster girl club bifrost" + }, + { + "appid": 1150730, + "normalized_name": "island saga" + }, + { + "appid": 1150760, + "normalized_name": "gloomwood" + }, + { + "appid": 1150790, + "normalized_name": "grafi 4" + }, + { + "appid": 1150800, + "normalized_name": "breeza budgie bill" + }, + { + "appid": 1150810, + "normalized_name": "slime slam" + }, + { + "appid": 1150820, + "normalized_name": "delphyq" + }, + { + "appid": 1150890, + "normalized_name": "the bunker 69" + }, + { + "appid": 1150900, + "normalized_name": "eagletalon vs. horde of the flies" + }, + { + "appid": 1150910, + "normalized_name": "book of beasts — the collectible card game ccg" + }, + { + "appid": 1150950, + "normalized_name": "timelie" + }, + { + "appid": 1150990, + "normalized_name": "cemetery warrior 4" + }, + { + "appid": 1151050, + "normalized_name": "golf gang" + }, + { + "appid": 1151060, + "normalized_name": "before arriving at the terminal" + }, + { + "appid": 1151080, + "normalized_name": "legend of keepers prologue" + }, + { + "appid": 1151090, + "normalized_name": "easter egg" + }, + { + "appid": 1151100, + "normalized_name": "hamster scramble" + }, + { + "appid": 1151120, + "normalized_name": "arrest of a stone buddha" + }, + { + "appid": 1151130, + "normalized_name": "dark chess" + }, + { + "appid": 1151160, + "normalized_name": "chaos theory pirates" + }, + { + "appid": 1151180, + "normalized_name": "super cucho" + }, + { + "appid": 1151200, + "normalized_name": "just drift it !" + }, + { + "appid": 1151250, + "normalized_name": "horror story hallowseed" + }, + { + "appid": 1151300, + "normalized_name": "lumbermill" + }, + { + "appid": 1151310, + "normalized_name": "blackbeard the cursed jungle" + }, + { + "appid": 1151320, + "normalized_name": "netsoccer" + }, + { + "appid": 1151330, + "normalized_name": "raven's point" + }, + { + "appid": 1151340, + "normalized_name": "fallout 76" + }, + { + "appid": 1151370, + "normalized_name": "night guardian" + }, + { + "appid": 1151380, + "normalized_name": "cowboy life simulator" + }, + { + "appid": 1151390, + "normalized_name": "putin life" + }, + { + "appid": 1151400, + "normalized_name": "furious goal" + }, + { + "appid": 1151410, + "normalized_name": "lovesick darlings" + }, + { + "appid": 1151430, + "normalized_name": "magnia" + }, + { + "appid": 1151440, + "normalized_name": "utawarerumono mask of truth" + }, + { + "appid": 1151450, + "normalized_name": "utawarerumono prelude to the fallen" + }, + { + "appid": 1151460, + "normalized_name": "obligation" + }, + { + "appid": 1151500, + "normalized_name": "fight wisdom" + }, + { + "appid": 1151530, + "normalized_name": "synthetic lover" + }, + { + "appid": 1151550, + "normalized_name": "quaterneon" + }, + { + "appid": 1151570, + "normalized_name": "ed it" + }, + { + "appid": 1151580, + "normalized_name": "1984 rewired" + }, + { + "appid": 1151600, + "normalized_name": "chernobyl road of death" + }, + { + "appid": 1151610, + "normalized_name": "活下去" + }, + { + "appid": 1151620, + "normalized_name": "磨难之间 suffering reincarnation of sins" + }, + { + "appid": 1151630, + "normalized_name": "house of 1000 doors family secrets" + }, + { + "appid": 1151640, + "normalized_name": "horizon zero dawn" + }, + { + "appid": 1151650, + "normalized_name": "shard" + }, + { + "appid": 1151670, + "normalized_name": "eep 16 expert eisenbahn aufbau und steuerungssimulation" + }, + { + "appid": 1151680, + "normalized_name": "galactic rangers vr" + }, + { + "appid": 1151720, + "normalized_name": "scp резонанс" + }, + { + "appid": 1151740, + "normalized_name": "prison princess" + }, + { + "appid": 1151750, + "normalized_name": "mmmmm donuts arhhh......" + }, + { + "appid": 1151770, + "normalized_name": "dragon slayer" + }, + { + "appid": 1151840, + "normalized_name": "sir'haxxx" + }, + { + "appid": 1151860, + "normalized_name": "last chance vr" + }, + { + "appid": 1151870, + "normalized_name": "wasard" + }, + { + "appid": 1151880, + "normalized_name": "those chosen by god" + }, + { + "appid": 1151920, + "normalized_name": "color defense" + }, + { + "appid": 1151930, + "normalized_name": "buissons" + }, + { + "appid": 1151940, + "normalized_name": "super minesweeper attack" + }, + { + "appid": 1151960, + "normalized_name": "commanders of valor" + }, + { + "appid": 1151980, + "normalized_name": "magnet fishing simulator" + }, + { + "appid": 1151990, + "normalized_name": "slip 'n slime" + }, + { + "appid": 1152000, + "normalized_name": "psihanul" + }, + { + "appid": 1152020, + "normalized_name": "return of the zombie king" + }, + { + "appid": 1152040, + "normalized_name": "dark romance the ethereal gardens collector's" + }, + { + "appid": 1152050, + "normalized_name": "sword of the slayer" + }, + { + "appid": 1152090, + "normalized_name": "elmarion dragon time" + }, + { + "appid": 1152100, + "normalized_name": "taimanin asagi trial/対魔忍アサギ・体験版" + }, + { + "appid": 1152120, + "normalized_name": "bowsette" + }, + { + "appid": 1152130, + "normalized_name": "lighted knights" + }, + { + "appid": 1152160, + "normalized_name": "might is right" + }, + { + "appid": 1152200, + "normalized_name": "furry shakespeare love's lizards lost" + }, + { + "appid": 1152210, + "normalized_name": "furry shakespeare dashing dinosaurs & sexy centaurs winter's tale" + }, + { + "appid": 1152230, + "normalized_name": "the void of desires" + }, + { + "appid": 1152260, + "normalized_name": "demonarch" + }, + { + "appid": 1152280, + "normalized_name": "escape from voyna aliens from arena 51" + }, + { + "appid": 1152300, + "normalized_name": "atelier ayesha the alchemist of dusk dx" + }, + { + "appid": 1152310, + "normalized_name": "atelier escha & logy alchemists of the dusk sky dx" + }, + { + "appid": 1152320, + "normalized_name": "atelier shallie alchemists of the dusk sea dx" + }, + { + "appid": 1152330, + "normalized_name": "the adventures of looppy" + }, + { + "appid": 1152340, + "normalized_name": "book of travels" + }, + { + "appid": 1152360, + "normalized_name": "climb out!" + }, + { + "appid": 1152380, + "normalized_name": "theology religion creator" + }, + { + "appid": 1152410, + "normalized_name": "karate cat" + }, + { + "appid": 1152440, + "normalized_name": "party pumper" + }, + { + "appid": 1152450, + "normalized_name": "creeps creeps? creeps!" + }, + { + "appid": 1152480, + "normalized_name": "death to the dragon lord" + }, + { + "appid": 1152540, + "normalized_name": "shark castle" + }, + { + "appid": 1152550, + "normalized_name": "who is you" + }, + { + "appid": 1152570, + "normalized_name": "timmy's adventures verbmon" + }, + { + "appid": 1152580, + "normalized_name": "ann achronist many happy returns" + }, + { + "appid": 1152620, + "normalized_name": "pixelforces.io" + }, + { + "appid": 1152640, + "normalized_name": "snake the elder forest" + }, + { + "appid": 1152660, + "normalized_name": "orbital shipyards" + }, + { + "appid": 1152670, + "normalized_name": "operation cheek clapper" + }, + { + "appid": 1152680, + "normalized_name": "gridcannon evolution" + }, + { + "appid": 1152690, + "normalized_name": "the inn between prologue" + }, + { + "appid": 1152710, + "normalized_name": "the house in the hollow" + }, + { + "appid": 1152740, + "normalized_name": "asterminer" + }, + { + "appid": 1152760, + "normalized_name": "四季 the four seasons" + }, + { + "appid": 1152800, + "normalized_name": "buggy bump" + }, + { + "appid": 1152810, + "normalized_name": "love with kadyrov" + }, + { + "appid": 1152820, + "normalized_name": "everslash" + }, + { + "appid": 1152830, + "normalized_name": "bounceball3d" + }, + { + "appid": 1152870, + "normalized_name": "little red riding hood" + }, + { + "appid": 1152890, + "normalized_name": "the delirium vacation" + }, + { + "appid": 1152910, + "normalized_name": "bloxicus" + }, + { + "appid": 1152920, + "normalized_name": "n.a.n industry vr" + }, + { + "appid": 1152940, + "normalized_name": "trails of the black sun" + }, + { + "appid": 1152950, + "normalized_name": "blackberry" + }, + { + "appid": 1152990, + "normalized_name": "one hour left" + }, + { + "appid": 1153030, + "normalized_name": "jigsaw puzzle evolution" + }, + { + "appid": 1153040, + "normalized_name": "primate signal" + }, + { + "appid": 1153060, + "normalized_name": "juicy army prologue" + }, + { + "appid": 1153070, + "normalized_name": "hentai zodiac puzzle 2" + }, + { + "appid": 1153100, + "normalized_name": "pixels can fight" + }, + { + "appid": 1153110, + "normalized_name": "rally drift cars" + }, + { + "appid": 1153120, + "normalized_name": "road homeward 4 last step" + }, + { + "appid": 1153130, + "normalized_name": "wurroom" + }, + { + "appid": 1153150, + "normalized_name": "para♰bellum ~ 魔弹帕菈" + }, + { + "appid": 1153170, + "normalized_name": "bomber bother" + }, + { + "appid": 1153200, + "normalized_name": "wormskull" + }, + { + "appid": 1153210, + "normalized_name": "bartender hustle" + }, + { + "appid": 1153220, + "normalized_name": "mahjong dimensions 3d fantasy anime" + }, + { + "appid": 1153250, + "normalized_name": "vvvvv" + }, + { + "appid": 1153260, + "normalized_name": "underponder" + }, + { + "appid": 1153300, + "normalized_name": "cube" + }, + { + "appid": 1153320, + "normalized_name": "roy cluse itsy bitsy" + }, + { + "appid": 1153330, + "normalized_name": "puzzle patrol" + }, + { + "appid": 1153370, + "normalized_name": "bumble butt" + }, + { + "appid": 1153410, + "normalized_name": "jdm japanese drift master" + }, + { + "appid": 1153430, + "normalized_name": "love wish" + }, + { + "appid": 1153470, + "normalized_name": "empire live" + }, + { + "appid": 1153520, + "normalized_name": "6souls" + }, + { + "appid": 1153530, + "normalized_name": "old school maze" + }, + { + "appid": 1153540, + "normalized_name": "concept destruction" + }, + { + "appid": 1153550, + "normalized_name": "dark fairy fantasy" + }, + { + "appid": 1153570, + "normalized_name": "hyperventila" + }, + { + "appid": 1153580, + "normalized_name": "happy stg" + }, + { + "appid": 1153640, + "normalized_name": "chorus" + }, + { + "appid": 1153650, + "normalized_name": "wreckout" + }, + { + "appid": 1153670, + "normalized_name": "hentai cosplay elf" + }, + { + "appid": 1153690, + "normalized_name": "hentai best girls" + }, + { + "appid": 1153710, + "normalized_name": "inspector 生化战警" + }, + { + "appid": 1153720, + "normalized_name": "fart fiasco premium" + }, + { + "appid": 1153730, + "normalized_name": "steamcity chronicles rise of the rose" + }, + { + "appid": 1153750, + "normalized_name": "food industry" + }, + { + "appid": 1153800, + "normalized_name": "dreamlight" + }, + { + "appid": 1153830, + "normalized_name": "indecent desires" + }, + { + "appid": 1153840, + "normalized_name": "snow island" + }, + { + "appid": 1153850, + "normalized_name": "super space towers" + }, + { + "appid": 1153860, + "normalized_name": "instacalm vr" + }, + { + "appid": 1153880, + "normalized_name": "werewolf voice werewolf party" + }, + { + "appid": 1153920, + "normalized_name": "glaivez" + }, + { + "appid": 1153930, + "normalized_name": "easy shooter" + }, + { + "appid": 1153950, + "normalized_name": "usagiri" + }, + { + "appid": 1153980, + "normalized_name": "darkness maze cube hardcore puzzle game" + }, + { + "appid": 1153990, + "normalized_name": "hacker evolution 2019 hd remaster" + }, + { + "appid": 1154010, + "normalized_name": "marshmallow madness" + }, + { + "appid": 1154030, + "normalized_name": "titan quest ii" + }, + { + "appid": 1154040, + "normalized_name": "spellforce 3 fallen god" + }, + { + "appid": 1154080, + "normalized_name": "rugby league team manager 3" + }, + { + "appid": 1154090, + "normalized_name": "kingdom shell" + }, + { + "appid": 1154110, + "normalized_name": "steamy sextet" + }, + { + "appid": 1154120, + "normalized_name": "ilysia" + }, + { + "appid": 1154140, + "normalized_name": "pity please!" + }, + { + "appid": 1154150, + "normalized_name": "evrisia art" + }, + { + "appid": 1154160, + "normalized_name": "cryptic" + }, + { + "appid": 1154170, + "normalized_name": "strip shooter" + }, + { + "appid": 1154210, + "normalized_name": "convenience store" + }, + { + "appid": 1154290, + "normalized_name": "rambunny" + }, + { + "appid": 1154300, + "normalized_name": "the equinox hunt" + }, + { + "appid": 1154340, + "normalized_name": "night road" + }, + { + "appid": 1154350, + "normalized_name": "zzzzz" + }, + { + "appid": 1154360, + "normalized_name": "for inco" + }, + { + "appid": 1154420, + "normalized_name": "tech support 2077" + }, + { + "appid": 1154450, + "normalized_name": "the last safe place" + }, + { + "appid": 1154470, + "normalized_name": "三国时代2" + }, + { + "appid": 1154480, + "normalized_name": "vicious gambling agreement" + }, + { + "appid": 1154490, + "normalized_name": "grid creeps" + }, + { + "appid": 1154540, + "normalized_name": "3d text adventure 2" + }, + { + "appid": 1154560, + "normalized_name": "counter terrorism minesweeper" + }, + { + "appid": 1154640, + "normalized_name": "safe climbing" + }, + { + "appid": 1154650, + "normalized_name": "gspot master" + }, + { + "appid": 1154670, + "normalized_name": "die by the blade" + }, + { + "appid": 1154680, + "normalized_name": "the guise" + }, + { + "appid": 1154690, + "normalized_name": "lucid a game about dreams" + }, + { + "appid": 1154720, + "normalized_name": "re gals panic" + }, + { + "appid": 1154730, + "normalized_name": "panic diet!!" + }, + { + "appid": 1154790, + "normalized_name": "xiii" + }, + { + "appid": 1154800, + "normalized_name": "isla test" + }, + { + "appid": 1154810, + "normalized_name": "going under" + }, + { + "appid": 1154830, + "normalized_name": "scathe" + }, + { + "appid": 1154840, + "normalized_name": "shadow empire" + }, + { + "appid": 1154850, + "normalized_name": "9th dawn iii" + }, + { + "appid": 1154860, + "normalized_name": "elite battle rio" + }, + { + "appid": 1154940, + "normalized_name": "swipe football football manager rpg game" + }, + { + "appid": 1154960, + "normalized_name": "ardenfall" + }, + { + "appid": 1155090, + "normalized_name": "shadows of time" + }, + { + "appid": 1155100, + "normalized_name": "latte stand tycoon +" + }, + { + "appid": 1155120, + "normalized_name": "the magician's research" + }, + { + "appid": 1155130, + "normalized_name": "block fall simulator 2019" + }, + { + "appid": 1155220, + "normalized_name": "meteora" + }, + { + "appid": 1155290, + "normalized_name": "cartoon kreedz christmas season" + }, + { + "appid": 1155300, + "normalized_name": "palallel" + }, + { + "appid": 1155330, + "normalized_name": "showgunners" + }, + { + "appid": 1155340, + "normalized_name": "rescue team evil genius" + }, + { + "appid": 1155390, + "normalized_name": "code tracer" + }, + { + "appid": 1155410, + "normalized_name": "trials of harmony ~ a found phone mystery visual novel" + }, + { + "appid": 1155420, + "normalized_name": "dino zoo transport simulator" + }, + { + "appid": 1155460, + "normalized_name": "the academy the first riddle" + }, + { + "appid": 1155470, + "normalized_name": "mythic ocean prologue" + }, + { + "appid": 1155480, + "normalized_name": "doors of silence the prologue" + }, + { + "appid": 1155490, + "normalized_name": "dual blade ~ battle of the female ninja ~" + }, + { + "appid": 1155500, + "normalized_name": "tower empire builder" + }, + { + "appid": 1155510, + "normalized_name": "9001" + }, + { + "appid": 1155540, + "normalized_name": "path of thalanos" + }, + { + "appid": 1155560, + "normalized_name": "hooks and shotguns" + }, + { + "appid": 1155580, + "normalized_name": "drone wars" + }, + { + "appid": 1155590, + "normalized_name": "warplanes ww1 sky aces" + }, + { + "appid": 1155600, + "normalized_name": "retro rpg online 2" + }, + { + "appid": 1155620, + "normalized_name": "vital" + }, + { + "appid": 1155650, + "normalized_name": "shady knight" + }, + { + "appid": 1155660, + "normalized_name": "the deed ii" + }, + { + "appid": 1155680, + "normalized_name": "through the dust" + }, + { + "appid": 1155720, + "normalized_name": "why is there a girl in my house?!" + }, + { + "appid": 1155730, + "normalized_name": "腾起之蛇" + }, + { + "appid": 1155790, + "normalized_name": "dreamland solitaire dragon's fury" + }, + { + "appid": 1155800, + "normalized_name": "voyagers" + }, + { + "appid": 1155810, + "normalized_name": "santa's visit" + }, + { + "appid": 1155830, + "normalized_name": "chernobyl the untold story" + }, + { + "appid": 1155840, + "normalized_name": "magnum opus" + }, + { + "appid": 1155850, + "normalized_name": "lost viking kingdom of women" + }, + { + "appid": 1155860, + "normalized_name": "metalarms" + }, + { + "appid": 1155870, + "normalized_name": "ww2 bunker simulator" + }, + { + "appid": 1155880, + "normalized_name": "the bonfire 2 uncharted shores" + }, + { + "appid": 1155900, + "normalized_name": "treehouse riddle" + }, + { + "appid": 1155910, + "normalized_name": "dice defenders" + }, + { + "appid": 1155920, + "normalized_name": "snow clearing driving simulator" + }, + { + "appid": 1155930, + "normalized_name": "harakatsu 2 / はらかつ 2" + }, + { + "appid": 1155940, + "normalized_name": "help! i am really horny!" + }, + { + "appid": 1155950, + "normalized_name": "treasure tomb vr" + }, + { + "appid": 1155960, + "normalized_name": "hentai exotica vol.2" + }, + { + "appid": 1155970, + "normalized_name": "roadwarden" + }, + { + "appid": 1155980, + "normalized_name": "princess maker ~faery tales come true~ (hd remake)" + }, + { + "appid": 1155990, + "normalized_name": "hentai eroshojo" + }, + { + "appid": 1156000, + "normalized_name": "raindancer" + }, + { + "appid": 1156030, + "normalized_name": "spectating simulator the racing" + }, + { + "appid": 1156050, + "normalized_name": "girl kill zombies" + }, + { + "appid": 1156060, + "normalized_name": "railroads & catacombs" + }, + { + "appid": 1156120, + "normalized_name": "doombringer" + }, + { + "appid": 1156130, + "normalized_name": "safari grounds the wilpattu leopard" + }, + { + "appid": 1156200, + "normalized_name": "virtualiron immersive yoga practice" + }, + { + "appid": 1156250, + "normalized_name": "the exorcist legion vr (deluxe edition)" + }, + { + "appid": 1156290, + "normalized_name": "home our journey" + }, + { + "appid": 1156320, + "normalized_name": "concept 20" + }, + { + "appid": 1156330, + "normalized_name": "dead simple 21" + }, + { + "appid": 1156350, + "normalized_name": "epifrog" + }, + { + "appid": 1156360, + "normalized_name": "peaceful days" + }, + { + "appid": 1156380, + "normalized_name": "one dreamer" + }, + { + "appid": 1156420, + "normalized_name": "temply girls" + }, + { + "appid": 1156470, + "normalized_name": "ghouls underground" + }, + { + "appid": 1156480, + "normalized_name": "my very own light" + }, + { + "appid": 1156490, + "normalized_name": "ring of fire" + }, + { + "appid": 1156500, + "normalized_name": "project apocalypse" + }, + { + "appid": 1156510, + "normalized_name": "peachleaf pirates" + }, + { + "appid": 1156550, + "normalized_name": "heroes of avranche" + }, + { + "appid": 1156570, + "normalized_name": "forest spiders" + }, + { + "appid": 1156590, + "normalized_name": "morels the hunt" + }, + { + "appid": 1156610, + "normalized_name": "dissension survival" + }, + { + "appid": 1156630, + "normalized_name": "a nightmare's trip" + }, + { + "appid": 1156640, + "normalized_name": "cube attack" + }, + { + "appid": 1156650, + "normalized_name": "hero of the forest" + }, + { + "appid": 1156670, + "normalized_name": "balls!🤬🍆" + }, + { + "appid": 1156680, + "normalized_name": "swinger man" + }, + { + "appid": 1156700, + "normalized_name": "breaktube" + }, + { + "appid": 1156730, + "normalized_name": "holy knight luviria" + }, + { + "appid": 1156760, + "normalized_name": "paralily" + }, + { + "appid": 1156770, + "normalized_name": "west ward" + }, + { + "appid": 1156780, + "normalized_name": "teragard" + }, + { + "appid": 1156790, + "normalized_name": "flavorspace" + }, + { + "appid": 1156820, + "normalized_name": "strike & resist" + }, + { + "appid": 1156900, + "normalized_name": "output pasture" + }, + { + "appid": 1156910, + "normalized_name": "galactic management" + }, + { + "appid": 1156950, + "normalized_name": "ink" + }, + { + "appid": 1156970, + "normalized_name": "我们的国" + }, + { + "appid": 1156980, + "normalized_name": "nijowari where angels fall" + }, + { + "appid": 1156990, + "normalized_name": "return to shironagasu island" + }, + { + "appid": 1157010, + "normalized_name": "him and i" + }, + { + "appid": 1157020, + "normalized_name": "1001 hugs" + }, + { + "appid": 1157040, + "normalized_name": "arkan the dog adventurer" + }, + { + "appid": 1157050, + "normalized_name": "flinger tactics" + }, + { + "appid": 1157070, + "normalized_name": "arabian stones the vr sudoku game" + }, + { + "appid": 1157080, + "normalized_name": "three of a fish" + }, + { + "appid": 1157090, + "normalized_name": "eidolon" + }, + { + "appid": 1157100, + "normalized_name": "starazius" + }, + { + "appid": 1157120, + "normalized_name": "zombie season" + }, + { + "appid": 1157190, + "normalized_name": "multi dimension conflict 冲突次元" + }, + { + "appid": 1157200, + "normalized_name": "magnesium_173" + }, + { + "appid": 1157220, + "normalized_name": "nebuchadnezzar" + }, + { + "appid": 1157250, + "normalized_name": "anomaly zone" + }, + { + "appid": 1157260, + "normalized_name": "geese vs cthulhu" + }, + { + "appid": 1157300, + "normalized_name": "last shark standing" + }, + { + "appid": 1157320, + "normalized_name": "hexagun" + }, + { + "appid": 1157340, + "normalized_name": "hentai killer" + }, + { + "appid": 1157390, + "normalized_name": "king arthur knight's tale" + }, + { + "appid": 1157600, + "normalized_name": "you never listen" + }, + { + "appid": 1157620, + "normalized_name": "magical milfs" + }, + { + "appid": 1157640, + "normalized_name": "sakura fox adventure" + }, + { + "appid": 1157650, + "normalized_name": "halloween pumpkin smasher vr" + }, + { + "appid": 1157670, + "normalized_name": "hepta beats" + }, + { + "appid": 1157700, + "normalized_name": "pro wrestling sim" + }, + { + "appid": 1157740, + "normalized_name": "iron meat" + }, + { + "appid": 1157750, + "normalized_name": "catgirl lover 2" + }, + { + "appid": 1157760, + "normalized_name": "children of the eclipse" + }, + { + "appid": 1157790, + "normalized_name": "i can't believe it's not gambling 2(k)" + }, + { + "appid": 1157800, + "normalized_name": "reina and jericho" + }, + { + "appid": 1157810, + "normalized_name": "dark city vienna collector's" + }, + { + "appid": 1157820, + "normalized_name": "runner heroes the curse of night and day" + }, + { + "appid": 1157830, + "normalized_name": "final frontier" + }, + { + "appid": 1157840, + "normalized_name": "firezone" + }, + { + "appid": 1157850, + "normalized_name": "interphase" + }, + { + "appid": 1157860, + "normalized_name": "waterloo" + }, + { + "appid": 1157870, + "normalized_name": "savage" + }, + { + "appid": 1157880, + "normalized_name": "power struggle" + }, + { + "appid": 1157900, + "normalized_name": "ten thousand coins the golden merchant" + }, + { + "appid": 1157910, + "normalized_name": "voxel scavenger" + }, + { + "appid": 1157920, + "normalized_name": "beach body bros" + }, + { + "appid": 1157940, + "normalized_name": "gnomes & goblins" + }, + { + "appid": 1157960, + "normalized_name": "blackout rugby world cup" + }, + { + "appid": 1157980, + "normalized_name": "ball pit simulator" + }, + { + "appid": 1158000, + "normalized_name": "我的兽耳后宫" + }, + { + "appid": 1158010, + "normalized_name": "unholy torturer" + }, + { + "appid": 1158040, + "normalized_name": "stay at home" + }, + { + "appid": 1158150, + "normalized_name": "viking brothers 6" + }, + { + "appid": 1158160, + "normalized_name": "coral island" + }, + { + "appid": 1158190, + "normalized_name": "do not buy this game" + }, + { + "appid": 1158220, + "normalized_name": "kraken academy!!" + }, + { + "appid": 1158230, + "normalized_name": "hunter's soul" + }, + { + "appid": 1158260, + "normalized_name": "heroes of hellas origins part one" + }, + { + "appid": 1158280, + "normalized_name": "legion 51" + }, + { + "appid": 1158290, + "normalized_name": "mini words minimalist puzzle" + }, + { + "appid": 1158310, + "normalized_name": "crusader kings iii" + }, + { + "appid": 1158320, + "normalized_name": "hentai memory leak" + }, + { + "appid": 1158370, + "normalized_name": "aragami 2" + }, + { + "appid": 1158390, + "normalized_name": "divan chronicles" + }, + { + "appid": 1158410, + "normalized_name": "mole game" + }, + { + "appid": 1158420, + "normalized_name": "simcasino" + }, + { + "appid": 1158430, + "normalized_name": "jane westlake adventures the mystery train" + }, + { + "appid": 1158450, + "normalized_name": "galaxium" + }, + { + "appid": 1158460, + "normalized_name": "sulver's journey" + }, + { + "appid": 1158470, + "normalized_name": "voxelgram" + }, + { + "appid": 1158480, + "normalized_name": "baff 4" + }, + { + "appid": 1158500, + "normalized_name": "between two castles digital" + }, + { + "appid": 1158600, + "normalized_name": "sayri the beginning" + }, + { + "appid": 1158650, + "normalized_name": "mindless" + }, + { + "appid": 1158660, + "normalized_name": "i (don't) hate hentai puzzles" + }, + { + "appid": 1158680, + "normalized_name": "夜孤城 · 何为侠义" + }, + { + "appid": 1158690, + "normalized_name": "uncharted ocean" + }, + { + "appid": 1158720, + "normalized_name": "causality" + }, + { + "appid": 1158740, + "normalized_name": "yuuki" + }, + { + "appid": 1158750, + "normalized_name": "tile conqueror" + }, + { + "appid": 1158770, + "normalized_name": "1bit castle" + }, + { + "appid": 1158820, + "normalized_name": "mahjong royal towers" + }, + { + "appid": 1158830, + "normalized_name": "1001 jigsaw castles and palaces" + }, + { + "appid": 1158850, + "normalized_name": "the great ace attorney chronicles" + }, + { + "appid": 1158860, + "normalized_name": "phenomenal car park adventure digital deluxe" + }, + { + "appid": 1158880, + "normalized_name": "nugget royale" + }, + { + "appid": 1158890, + "normalized_name": "white shadows" + }, + { + "appid": 1158900, + "normalized_name": "countershots 1.0" + }, + { + "appid": 1158910, + "normalized_name": "dream detective" + }, + { + "appid": 1158940, + "normalized_name": "blazing sails" + }, + { + "appid": 1158970, + "normalized_name": "westmark manor" + }, + { + "appid": 1158980, + "normalized_name": "放置大魔王" + }, + { + "appid": 1158990, + "normalized_name": "alan's attitude" + }, + { + "appid": 1159000, + "normalized_name": "我是键盘侠" + }, + { + "appid": 1159020, + "normalized_name": "your anime waifu" + }, + { + "appid": 1159070, + "normalized_name": "a vroom!" + }, + { + "appid": 1159090, + "normalized_name": "zoria age of shattering" + }, + { + "appid": 1159150, + "normalized_name": "boc birth of cultures" + }, + { + "appid": 1159160, + "normalized_name": "vreken" + }, + { + "appid": 1159240, + "normalized_name": "occultus command" + }, + { + "appid": 1159260, + "normalized_name": "pandara" + }, + { + "appid": 1159280, + "normalized_name": "realm lands" + }, + { + "appid": 1159290, + "normalized_name": "the bloodline" + }, + { + "appid": 1159340, + "normalized_name": "march forward" + }, + { + "appid": 1159350, + "normalized_name": "future simulation world" + }, + { + "appid": 1159390, + "normalized_name": "taxi simulator" + }, + { + "appid": 1159420, + "normalized_name": "robin hood sherwood builders" + }, + { + "appid": 1159430, + "normalized_name": "systematic insanity" + }, + { + "appid": 1159440, + "normalized_name": "olden card game" + }, + { + "appid": 1159450, + "normalized_name": "hayfever" + }, + { + "appid": 1159490, + "normalized_name": "lowpoly 3d art paint by number" + }, + { + "appid": 1159500, + "normalized_name": "ghost files 2 memory of a crime" + }, + { + "appid": 1159510, + "normalized_name": "village bus driver simulator" + }, + { + "appid": 1159520, + "normalized_name": "twists of my life" + }, + { + "appid": 1159540, + "normalized_name": "fear the dark unknown" + }, + { + "appid": 1159550, + "normalized_name": "supesu 2" + }, + { + "appid": 1159560, + "normalized_name": "ziggurat 2" + }, + { + "appid": 1159590, + "normalized_name": "lost in dungeon" + }, + { + "appid": 1159610, + "normalized_name": "neighbourhood loot" + }, + { + "appid": 1159640, + "normalized_name": "anime world war ii" + }, + { + "appid": 1159660, + "normalized_name": "moe era" + }, + { + "appid": 1159680, + "normalized_name": "silent sector" + }, + { + "appid": 1159690, + "normalized_name": "voidtrain" + }, + { + "appid": 1159700, + "normalized_name": "knights of light the prologue" + }, + { + "appid": 1159770, + "normalized_name": "racexxl space" + }, + { + "appid": 1159830, + "normalized_name": "scene investigators" + }, + { + "appid": 1159860, + "normalized_name": "dash dash world" + }, + { + "appid": 1159870, + "normalized_name": "successor of the key" + }, + { + "appid": 1159880, + "normalized_name": "quantumleaper" + }, + { + "appid": 1159890, + "normalized_name": "supercar drift" + }, + { + "appid": 1159940, + "normalized_name": "astrodition" + }, + { + "appid": 1159960, + "normalized_name": "gloam" + }, + { + "appid": 1159970, + "normalized_name": "bighardsun" + }, + { + "appid": 1160020, + "normalized_name": "ashenforest" + }, + { + "appid": 1160040, + "normalized_name": "human factory" + }, + { + "appid": 1160050, + "normalized_name": "there is a thief in my house vr" + }, + { + "appid": 1160060, + "normalized_name": "undead reality" + }, + { + "appid": 1160100, + "normalized_name": "pixel art hentai trap hot spring" + }, + { + "appid": 1160190, + "normalized_name": "player one" + }, + { + "appid": 1160220, + "normalized_name": "paradise killer" + }, + { + "appid": 1160330, + "normalized_name": "fight of animals" + }, + { + "appid": 1160360, + "normalized_name": "miscreation evolve your creature!" + }, + { + "appid": 1160410, + "normalized_name": "hentai balloons" + }, + { + "appid": 1160440, + "normalized_name": "paranoihell" + }, + { + "appid": 1160490, + "normalized_name": "master of pottery" + }, + { + "appid": 1160500, + "normalized_name": "astrontycoon2 ritual" + }, + { + "appid": 1160510, + "normalized_name": "如果成为勇者后只剩下一小时生命该如何打倒魔王活下去?" + }, + { + "appid": 1160550, + "normalized_name": "super smash the ball vr" + }, + { + "appid": 1160560, + "normalized_name": "ギャルモンフォークロア~女の子モンスターがいっぱい!~" + }, + { + "appid": 1160580, + "normalized_name": "model melissa" + }, + { + "appid": 1160610, + "normalized_name": "future girls" + }, + { + "appid": 1160620, + "normalized_name": "summer days" + }, + { + "appid": 1160670, + "normalized_name": "shrine to anubis" + }, + { + "appid": 1160690, + "normalized_name": "dragon blazers" + }, + { + "appid": 1160700, + "normalized_name": "particle wars" + }, + { + "appid": 1160730, + "normalized_name": "alien simulator" + }, + { + "appid": 1160750, + "normalized_name": "grim clicker" + }, + { + "appid": 1160770, + "normalized_name": "无限家园" + }, + { + "appid": 1160780, + "normalized_name": "lolitower" + }, + { + "appid": 1160790, + "normalized_name": "the legend of dark witch renovation" + }, + { + "appid": 1160800, + "normalized_name": "rainbow ro" + }, + { + "appid": 1160820, + "normalized_name": "bewitched part 1" + }, + { + "appid": 1160850, + "normalized_name": "black office entertainment department" + }, + { + "appid": 1160870, + "normalized_name": "dinosaur hunting patrol 3d multiplayer online" + }, + { + "appid": 1160880, + "normalized_name": "paul's world" + }, + { + "appid": 1160920, + "normalized_name": "food truck simulator" + }, + { + "appid": 1160950, + "normalized_name": "star alliance" + }, + { + "appid": 1160980, + "normalized_name": "legendary arcane 2 universe" + }, + { + "appid": 1161000, + "normalized_name": "discoverer" + }, + { + "appid": 1161020, + "normalized_name": "arbitology dei gratia rex" + }, + { + "appid": 1161110, + "normalized_name": "in sight" + }, + { + "appid": 1161120, + "normalized_name": "a ghostly tale" + }, + { + "appid": 1161140, + "normalized_name": "speakerman 2" + }, + { + "appid": 1161160, + "normalized_name": "talesshop puzzle" + }, + { + "appid": 1161170, + "normalized_name": "the rewinder" + }, + { + "appid": 1161180, + "normalized_name": "funbag fantasy sideboob story 2" + }, + { + "appid": 1161190, + "normalized_name": "追忆夏色年华" + }, + { + "appid": 1161200, + "normalized_name": "foreign" + }, + { + "appid": 1161210, + "normalized_name": "ray versus" + }, + { + "appid": 1161220, + "normalized_name": "time squared" + }, + { + "appid": 1161270, + "normalized_name": "freud gate" + }, + { + "appid": 1161300, + "normalized_name": "the legend of crystal valley" + }, + { + "appid": 1161320, + "normalized_name": "东方幻昼梦~ touhou fantasy day" + }, + { + "appid": 1161330, + "normalized_name": "record life" + }, + { + "appid": 1161360, + "normalized_name": "shisensho solitaire" + }, + { + "appid": 1161430, + "normalized_name": "noosphere" + }, + { + "appid": 1161440, + "normalized_name": "world war 2 winter gun range vr simulator" + }, + { + "appid": 1161490, + "normalized_name": "motogp20" + }, + { + "appid": 1161510, + "normalized_name": "lithium inmate 39 relapsed" + }, + { + "appid": 1161550, + "normalized_name": "dungeon chest" + }, + { + "appid": 1161570, + "normalized_name": "dark parables portrait of the stained princess collector's" + }, + { + "appid": 1161580, + "normalized_name": "hardspace shipbreaker" + }, + { + "appid": 1161590, + "normalized_name": "punch club 2 fast forward" + }, + { + "appid": 1161640, + "normalized_name": "kowloon's curse lost report" + }, + { + "appid": 1161650, + "normalized_name": "sakura gamer 2" + }, + { + "appid": 1161660, + "normalized_name": "puzzlection" + }, + { + "appid": 1161670, + "normalized_name": "crash the game" + }, + { + "appid": 1161680, + "normalized_name": "bomb bowling 2" + }, + { + "appid": 1161770, + "normalized_name": "breeders of the nephelym alpha" + }, + { + "appid": 1161780, + "normalized_name": "other her loving embrace" + }, + { + "appid": 1161790, + "normalized_name": "monster arena" + }, + { + "appid": 1161800, + "normalized_name": "uro2" + }, + { + "appid": 1161810, + "normalized_name": "sushiparty2" + }, + { + "appid": 1161820, + "normalized_name": "survived" + }, + { + "appid": 1161830, + "normalized_name": "age of reforging the freelands" + }, + { + "appid": 1161840, + "normalized_name": "funny archery" + }, + { + "appid": 1161870, + "normalized_name": "epiphyllum in love" + }, + { + "appid": 1161880, + "normalized_name": "vaporum lockdown" + }, + { + "appid": 1161900, + "normalized_name": "door2 key" + }, + { + "appid": 1161910, + "normalized_name": "exile squadron" + }, + { + "appid": 1161930, + "normalized_name": "東方幻夢箋 ~ touhou phantasm dream" + }, + { + "appid": 1162010, + "normalized_name": "奇幻与砍杀2 fantasy & blade ⅱ" + }, + { + "appid": 1162050, + "normalized_name": "knockout party" + }, + { + "appid": 1162070, + "normalized_name": "喵可莉的兔玩偶 nyakori's rabbit doll" + }, + { + "appid": 1162080, + "normalized_name": "东周拟战" + }, + { + "appid": 1162100, + "normalized_name": "[unannounced upcoming oddfellows software project no. 2]" + }, + { + "appid": 1162130, + "normalized_name": "windbound" + }, + { + "appid": 1162140, + "normalized_name": "rise of the overlords" + }, + { + "appid": 1162170, + "normalized_name": "below sunshade" + }, + { + "appid": 1162180, + "normalized_name": "warren the warlock" + }, + { + "appid": 1162280, + "normalized_name": "eternal hope" + }, + { + "appid": 1162290, + "normalized_name": "easy hentai puzzle 2" + }, + { + "appid": 1162310, + "normalized_name": "drift masters" + }, + { + "appid": 1162320, + "normalized_name": "ava dark history" + }, + { + "appid": 1162330, + "normalized_name": "earthlings must die" + }, + { + "appid": 1162370, + "normalized_name": "paper a game of folding" + }, + { + "appid": 1162390, + "normalized_name": "floody" + }, + { + "appid": 1162400, + "normalized_name": "the climate trail" + }, + { + "appid": 1162430, + "normalized_name": "salad fields" + }, + { + "appid": 1162440, + "normalized_name": "explosive jake" + }, + { + "appid": 1162470, + "normalized_name": "iislands of war" + }, + { + "appid": 1162480, + "normalized_name": "dimension reign roguelike deckbuilder" + }, + { + "appid": 1162520, + "normalized_name": "大富翁10 (richman 10)" + }, + { + "appid": 1162560, + "normalized_name": "ciconia when they cry phase 1 for you the replaceable ones" + }, + { + "appid": 1162570, + "normalized_name": "the protagonist ex 1" + }, + { + "appid": 1162580, + "normalized_name": "three little bears" + }, + { + "appid": 1162590, + "normalized_name": "halloween with veronica" + }, + { + "appid": 1162630, + "normalized_name": "solitaire call of honor" + }, + { + "appid": 1162640, + "normalized_name": "adventure mosaics. forest spirits" + }, + { + "appid": 1162650, + "normalized_name": "剑为君舞" + }, + { + "appid": 1162670, + "normalized_name": "blocks! julius caesar" + }, + { + "appid": 1162680, + "normalized_name": "[chilla's art] stigmatized property | 事故物件" + }, + { + "appid": 1162690, + "normalized_name": "house number 666" + }, + { + "appid": 1162700, + "normalized_name": "midnight protocol" + }, + { + "appid": 1162730, + "normalized_name": "deep ocean rush" + }, + { + "appid": 1162750, + "normalized_name": "songs of syx" + }, + { + "appid": 1162760, + "normalized_name": "mmy otherworld mystery" + }, + { + "appid": 1162820, + "normalized_name": "kings of wings" + }, + { + "appid": 1162860, + "normalized_name": "keepsake county" + }, + { + "appid": 1162880, + "normalized_name": "pax ruthenia" + }, + { + "appid": 1162900, + "normalized_name": "iron blood vr" + }, + { + "appid": 1162920, + "normalized_name": "time of the moon" + }, + { + "appid": 1162930, + "normalized_name": "split or steal" + }, + { + "appid": 1162940, + "normalized_name": "team switch vr experts burglary agency" + }, + { + "appid": 1162950, + "normalized_name": ">connect" + }, + { + "appid": 1162960, + "normalized_name": "angry video game nerd i & ii deluxe" + }, + { + "appid": 1162990, + "normalized_name": "zor pilgrimage of the slorfs" + }, + { + "appid": 1163020, + "normalized_name": "the looter" + }, + { + "appid": 1163040, + "normalized_name": "billion road" + }, + { + "appid": 1163060, + "normalized_name": "the making of karateka" + }, + { + "appid": 1163070, + "normalized_name": "raiohgar asuka and the king of steel" + }, + { + "appid": 1163080, + "normalized_name": "slashed" + }, + { + "appid": 1163090, + "normalized_name": "boot camp fitness" + }, + { + "appid": 1163100, + "normalized_name": "我是院长 模拟经营医院游戏" + }, + { + "appid": 1163130, + "normalized_name": "oasis vr" + }, + { + "appid": 1163150, + "normalized_name": "unfamiliar" + }, + { + "appid": 1163160, + "normalized_name": "ronin 2072" + }, + { + "appid": 1163290, + "normalized_name": "vortex attack ex" + }, + { + "appid": 1163300, + "normalized_name": "visser" + }, + { + "appid": 1163320, + "normalized_name": "zombie horde" + }, + { + "appid": 1163340, + "normalized_name": "carrier battles 4 guadalcanal" + }, + { + "appid": 1163350, + "normalized_name": "property tycoon" + }, + { + "appid": 1163460, + "normalized_name": "daenerys doesn’t want hentai" + }, + { + "appid": 1163470, + "normalized_name": "give up the dupe" + }, + { + "appid": 1163490, + "normalized_name": "gangsters 1920" + }, + { + "appid": 1163500, + "normalized_name": "warp drive" + }, + { + "appid": 1163550, + "normalized_name": "captain tsubasa rise of new champions" + }, + { + "appid": 1163560, + "normalized_name": "superepic the entertainment war" + }, + { + "appid": 1163570, + "normalized_name": "skidlocked" + }, + { + "appid": 1163590, + "normalized_name": "bullet girls phantasia" + }, + { + "appid": 1163600, + "normalized_name": "omega labyrinth life" + }, + { + "appid": 1163610, + "normalized_name": "biomagnet" + }, + { + "appid": 1163620, + "normalized_name": "haunted poppy's nightmare" + }, + { + "appid": 1163660, + "normalized_name": "soul reaper" + }, + { + "appid": 1163690, + "normalized_name": "wizards" + }, + { + "appid": 1163730, + "normalized_name": "motor assailant" + }, + { + "appid": 1163740, + "normalized_name": "card hog" + }, + { + "appid": 1163830, + "normalized_name": "sticky dildo man" + }, + { + "appid": 1163870, + "normalized_name": "mecha knights nightmare" + }, + { + "appid": 1163910, + "normalized_name": "brass brigade" + }, + { + "appid": 1163920, + "normalized_name": "time fragments rise of rebels" + }, + { + "appid": 1163930, + "normalized_name": "dragon forge" + }, + { + "appid": 1163960, + "normalized_name": "paranormal files hook man's legend collector's" + }, + { + "appid": 1163990, + "normalized_name": "starexcess" + }, + { + "appid": 1164000, + "normalized_name": "六阶谜题 six step mystery" + }, + { + "appid": 1164020, + "normalized_name": "iron sun" + }, + { + "appid": 1164040, + "normalized_name": "victoriana steampunk text adventure" + }, + { + "appid": 1164050, + "normalized_name": "when the past was around" + }, + { + "appid": 1164060, + "normalized_name": "the last show of mr. chardish" + }, + { + "appid": 1164100, + "normalized_name": "a random maze 某个迷宫" + }, + { + "appid": 1164250, + "normalized_name": "model builder" + }, + { + "appid": 1164290, + "normalized_name": "aluna sentinel of the shards" + }, + { + "appid": 1164300, + "normalized_name": "1001 jigsaw. ice age" + }, + { + "appid": 1164310, + "normalized_name": "fairytale solitaire. witch charms" + }, + { + "appid": 1164330, + "normalized_name": "smile to fly" + }, + { + "appid": 1164350, + "normalized_name": "anime otaku girl 二次元宅女" + }, + { + "appid": 1164390, + "normalized_name": "haunted gas station" + }, + { + "appid": 1164410, + "normalized_name": "restless hero" + }, + { + "appid": 1164440, + "normalized_name": "extreme offroad monster simulator" + }, + { + "appid": 1164460, + "normalized_name": "monospaced lovers" + }, + { + "appid": 1164470, + "normalized_name": "[misc] timelines" + }, + { + "appid": 1164480, + "normalized_name": "killer gin" + }, + { + "appid": 1164520, + "normalized_name": "the book of yorle save the church" + }, + { + "appid": 1164550, + "normalized_name": "disc golf adventure vr" + }, + { + "appid": 1164570, + "normalized_name": "phucker in the rome" + }, + { + "appid": 1164660, + "normalized_name": "shooting chicken brutal suckers" + }, + { + "appid": 1164690, + "normalized_name": "wigmund" + }, + { + "appid": 1164740, + "normalized_name": "salting the earth" + }, + { + "appid": 1164750, + "normalized_name": "hospitality vr" + }, + { + "appid": 1164760, + "normalized_name": "vugluskr zombie rampage" + }, + { + "appid": 1164830, + "normalized_name": "a long journey to an uncertain end" + }, + { + "appid": 1164850, + "normalized_name": "sinking simulator" + }, + { + "appid": 1164860, + "normalized_name": "darkour" + }, + { + "appid": 1164910, + "normalized_name": "doll" + }, + { + "appid": 1164920, + "normalized_name": "axeson's fury vr" + }, + { + "appid": 1164930, + "normalized_name": "lustful survival" + }, + { + "appid": 1164940, + "normalized_name": "trepang2" + }, + { + "appid": 1164970, + "normalized_name": "dogs of wallstreet" + }, + { + "appid": 1164990, + "normalized_name": "skin witch" + }, + { + "appid": 1165010, + "normalized_name": "lost home battle of island" + }, + { + "appid": 1165020, + "normalized_name": "legend of everything" + }, + { + "appid": 1165090, + "normalized_name": "restaurant solitaire pleasant dinner" + }, + { + "appid": 1165100, + "normalized_name": "tasty jigsaw happy hour (拼图)" + }, + { + "appid": 1165140, + "normalized_name": "picross love" + }, + { + "appid": 1165150, + "normalized_name": "technojuice" + }, + { + "appid": 1165170, + "normalized_name": "morok" + }, + { + "appid": 1165230, + "normalized_name": "elevenses the flask" + }, + { + "appid": 1165270, + "normalized_name": "synthesis universe episode 00" + }, + { + "appid": 1165280, + "normalized_name": "shuffle world" + }, + { + "appid": 1165380, + "normalized_name": "to be headed or not to be" + }, + { + "appid": 1165390, + "normalized_name": "伏龙 天元竞擂" + }, + { + "appid": 1165400, + "normalized_name": "stellar commanders" + }, + { + "appid": 1165420, + "normalized_name": "detective solitaire. butler story" + }, + { + "appid": 1165430, + "normalized_name": "1001 jigsaw. myths of ancient greece (拼图)" + }, + { + "appid": 1165450, + "normalized_name": "oco" + }, + { + "appid": 1165460, + "normalized_name": "unlit" + }, + { + "appid": 1165470, + "normalized_name": "tombstar" + }, + { + "appid": 1165490, + "normalized_name": "new tricks for old gods" + }, + { + "appid": 1165500, + "normalized_name": "gamelab ungaalborg" + }, + { + "appid": 1165520, + "normalized_name": "黎明生机 启示录 survival revelation" + }, + { + "appid": 1165530, + "normalized_name": "offroad truck simulator heavy duty challenge" + }, + { + "appid": 1165540, + "normalized_name": "mad maze" + }, + { + "appid": 1165560, + "normalized_name": "onar off world fighter" + }, + { + "appid": 1165570, + "normalized_name": "tsukai furushita kotoba ya uta wo mv" + }, + { + "appid": 1165590, + "normalized_name": "it will find you" + }, + { + "appid": 1165600, + "normalized_name": "lost in transit" + }, + { + "appid": 1165610, + "normalized_name": "titeuf mega party" + }, + { + "appid": 1165620, + "normalized_name": "meliora’s detective simulator" + }, + { + "appid": 1165640, + "normalized_name": "stitchcraft" + }, + { + "appid": 1165660, + "normalized_name": "homer's odyssey" + }, + { + "appid": 1165740, + "normalized_name": "match solitaire" + }, + { + "appid": 1165750, + "normalized_name": "pagan autogeny" + }, + { + "appid": 1165790, + "normalized_name": "answer campus" + }, + { + "appid": 1165800, + "normalized_name": "shadow of aya" + }, + { + "appid": 1165820, + "normalized_name": "super rebellion" + }, + { + "appid": 1165830, + "normalized_name": "final mission vr" + }, + { + "appid": 1165840, + "normalized_name": "the strange story of brian fisher chapter 1" + }, + { + "appid": 1165850, + "normalized_name": "il divino michelangelo's sistine ceiling in vr" + }, + { + "appid": 1165860, + "normalized_name": "6.0" + }, + { + "appid": 1165870, + "normalized_name": "mahou arms" + }, + { + "appid": 1165910, + "normalized_name": "humanity lost" + }, + { + "appid": 1165920, + "normalized_name": "lives so sweet" + }, + { + "appid": 1165930, + "normalized_name": "awk adventures of walker king" + }, + { + "appid": 1165960, + "normalized_name": "things that bounce and explode" + }, + { + "appid": 1166000, + "normalized_name": "battleships and carriers pacific war" + }, + { + "appid": 1166040, + "normalized_name": "battle round" + }, + { + "appid": 1166070, + "normalized_name": "凯旋行动" + }, + { + "appid": 1166090, + "normalized_name": "envirogolf" + }, + { + "appid": 1166100, + "normalized_name": "danger course vr" + }, + { + "appid": 1166110, + "normalized_name": "gods of love an otome visual novel" + }, + { + "appid": 1166120, + "normalized_name": "sisterfight" + }, + { + "appid": 1166130, + "normalized_name": "fighting moore" + }, + { + "appid": 1166140, + "normalized_name": "forbidden art" + }, + { + "appid": 1166230, + "normalized_name": "1812 napoleon wars" + }, + { + "appid": 1166240, + "normalized_name": "asian riddles" + }, + { + "appid": 1166250, + "normalized_name": "mahjong gold" + }, + { + "appid": 1166290, + "normalized_name": "death and taxes" + }, + { + "appid": 1166310, + "normalized_name": "tactical three kingdoms (t3k) strategy and war" + }, + { + "appid": 1166320, + "normalized_name": "hentai shiri" + }, + { + "appid": 1166350, + "normalized_name": "alexis almighty daughter of hercules" + }, + { + "appid": 1166400, + "normalized_name": "daemmerlicht" + }, + { + "appid": 1166430, + "normalized_name": "in the bag" + }, + { + "appid": 1166480, + "normalized_name": "towers of minimalism" + }, + { + "appid": 1166510, + "normalized_name": "nanoworld" + }, + { + "appid": 1166540, + "normalized_name": "beetle hunter" + }, + { + "appid": 1166550, + "normalized_name": "road to nowhere" + }, + { + "appid": 1166580, + "normalized_name": "best plumber" + }, + { + "appid": 1166600, + "normalized_name": "the fog knows your name" + }, + { + "appid": 1166660, + "normalized_name": "restaurant simulator" + }, + { + "appid": 1166680, + "normalized_name": "daraney guardian's rise" + }, + { + "appid": 1166710, + "normalized_name": "find the treasure" + }, + { + "appid": 1166730, + "normalized_name": "nothing & nowhere" + }, + { + "appid": 1166740, + "normalized_name": "centralia homecoming" + }, + { + "appid": 1166760, + "normalized_name": "jinga online" + }, + { + "appid": 1166780, + "normalized_name": "interactivity the interactive experience" + }, + { + "appid": 1166790, + "normalized_name": "hexterio" + }, + { + "appid": 1166800, + "normalized_name": "grand academy ii attack of the sequel" + }, + { + "appid": 1166830, + "normalized_name": "lost empire 2977" + }, + { + "appid": 1166840, + "normalized_name": "breach the archangel job" + }, + { + "appid": 1166860, + "normalized_name": "rival stars horse racing desktop" + }, + { + "appid": 1166890, + "normalized_name": "necrofugitive" + }, + { + "appid": 1166910, + "normalized_name": "swiss knife" + }, + { + "appid": 1166940, + "normalized_name": "dead static drive" + }, + { + "appid": 1166980, + "normalized_name": "hentai nekogirl" + }, + { + "appid": 1166990, + "normalized_name": "kukoro stream chat games" + }, + { + "appid": 1167090, + "normalized_name": "desert coachman" + }, + { + "appid": 1167100, + "normalized_name": "mind" + }, + { + "appid": 1167110, + "normalized_name": "rubi the wayward mira" + }, + { + "appid": 1167140, + "normalized_name": "siege survival gloria victis" + }, + { + "appid": 1167150, + "normalized_name": "zombies and keys" + }, + { + "appid": 1167170, + "normalized_name": "guilty parade" + }, + { + "appid": 1167180, + "normalized_name": "dinner etiquette vr" + }, + { + "appid": 1167190, + "normalized_name": "shot up!" + }, + { + "appid": 1167270, + "normalized_name": "tank impact" + }, + { + "appid": 1167300, + "normalized_name": "battle axe" + }, + { + "appid": 1167320, + "normalized_name": "artificial extinction" + }, + { + "appid": 1167350, + "normalized_name": "skyous" + }, + { + "appid": 1167370, + "normalized_name": "elevatorvr" + }, + { + "appid": 1167380, + "normalized_name": "neither day nor night" + }, + { + "appid": 1167430, + "normalized_name": "the loopholes chronicles" + }, + { + "appid": 1167450, + "normalized_name": "daemon x machina" + }, + { + "appid": 1167460, + "normalized_name": "hero hours contract" + }, + { + "appid": 1167470, + "normalized_name": "street jam the rise" + }, + { + "appid": 1167490, + "normalized_name": "link wars" + }, + { + "appid": 1167530, + "normalized_name": "ailment" + }, + { + "appid": 1167540, + "normalized_name": "kiki's adventure" + }, + { + "appid": 1167570, + "normalized_name": "project run" + }, + { + "appid": 1167590, + "normalized_name": "dimensionality 3.5" + }, + { + "appid": 1167610, + "normalized_name": "snow mercy" + }, + { + "appid": 1167630, + "normalized_name": "teardown" + }, + { + "appid": 1167640, + "normalized_name": "femida" + }, + { + "appid": 1167650, + "normalized_name": "context" + }, + { + "appid": 1167670, + "normalized_name": "undead eatery" + }, + { + "appid": 1167680, + "normalized_name": "orbital bullet – the 360° rogue lite" + }, + { + "appid": 1167700, + "normalized_name": "hallucination 幻觉" + }, + { + "appid": 1167710, + "normalized_name": "clutchball" + }, + { + "appid": 1167730, + "normalized_name": "a time paradox" + }, + { + "appid": 1167750, + "normalized_name": "the lamplighters league" + }, + { + "appid": 1167770, + "normalized_name": "more dark" + }, + { + "appid": 1167790, + "normalized_name": "绝望监牢 / 絶望プリズン" + }, + { + "appid": 1167800, + "normalized_name": "exphelius arena" + }, + { + "appid": 1167820, + "normalized_name": "airport contraband" + }, + { + "appid": 1167850, + "normalized_name": "penguin park 3d" + }, + { + "appid": 1167900, + "normalized_name": "friday 星期五部门" + }, + { + "appid": 1167930, + "normalized_name": "shooty mine" + }, + { + "appid": 1167940, + "normalized_name": "aesop’s fables a new approach" + }, + { + "appid": 1167950, + "normalized_name": "vampire's fall origins" + }, + { + "appid": 1168050, + "normalized_name": "fairytale mosaics beauty and beast" + }, + { + "appid": 1168060, + "normalized_name": "knight solitaire" + }, + { + "appid": 1168070, + "normalized_name": "mystery solitaire the arkham spirits" + }, + { + "appid": 1168160, + "normalized_name": "piping hot" + }, + { + "appid": 1168170, + "normalized_name": "waifu horror the eight pictures" + }, + { + "appid": 1168190, + "normalized_name": "hentai series classic" + }, + { + "appid": 1168210, + "normalized_name": "bubberknuckles" + }, + { + "appid": 1168250, + "normalized_name": "shades of heroes" + }, + { + "appid": 1168320, + "normalized_name": "zombie valley" + }, + { + "appid": 1168360, + "normalized_name": "detective solitaire inspector magic" + }, + { + "appid": 1168400, + "normalized_name": "festivals headliners" + }, + { + "appid": 1168420, + "normalized_name": "passenger seat" + }, + { + "appid": 1168430, + "normalized_name": "dairy princess" + }, + { + "appid": 1168470, + "normalized_name": "千面 melancholy love" + }, + { + "appid": 1168490, + "normalized_name": "rauniot" + }, + { + "appid": 1168530, + "normalized_name": "babel climbers" + }, + { + "appid": 1168540, + "normalized_name": "law of life(生命法则)" + }, + { + "appid": 1168550, + "normalized_name": "the hunter's journals blissful ignorance" + }, + { + "appid": 1168600, + "normalized_name": "infinite sparkles" + }, + { + "appid": 1168610, + "normalized_name": "natural instincts european forest" + }, + { + "appid": 1168630, + "normalized_name": "active neurons puzzle game" + }, + { + "appid": 1168640, + "normalized_name": "choco chef" + }, + { + "appid": 1168650, + "normalized_name": "angry bunny" + }, + { + "appid": 1168660, + "normalized_name": "barro 2020" + }, + { + "appid": 1168690, + "normalized_name": "hellseed all chapters" + }, + { + "appid": 1168740, + "normalized_name": "old school horror game bright day" + }, + { + "appid": 1168790, + "normalized_name": "ground war" + }, + { + "appid": 1168800, + "normalized_name": "mulite sword man" + }, + { + "appid": 1168820, + "normalized_name": "myths of the world the heart of desolation collector's" + }, + { + "appid": 1168830, + "normalized_name": "mystery case files ravenhearst unlocked collector's" + }, + { + "appid": 1168840, + "normalized_name": "绿洲计划" + }, + { + "appid": 1168850, + "normalized_name": "trix and the horny tower" + }, + { + "appid": 1168870, + "normalized_name": "mists of noyah" + }, + { + "appid": 1168880, + "normalized_name": "molek syntez" + }, + { + "appid": 1168960, + "normalized_name": "warbrush" + }, + { + "appid": 1168970, + "normalized_name": "drunk ride" + }, + { + "appid": 1168980, + "normalized_name": "buried alive the annihilation vr" + }, + { + "appid": 1168990, + "normalized_name": "planet destroyer" + }, + { + "appid": 1169000, + "normalized_name": "torinto" + }, + { + "appid": 1169020, + "normalized_name": "dark fall ghost vigil" + }, + { + "appid": 1169030, + "normalized_name": "monophobia" + }, + { + "appid": 1169040, + "normalized_name": "necesse" + }, + { + "appid": 1169050, + "normalized_name": "language worm" + }, + { + "appid": 1169060, + "normalized_name": "shield shock" + }, + { + "appid": 1169070, + "normalized_name": "red evil" + }, + { + "appid": 1169100, + "normalized_name": "gazillionaire" + }, + { + "appid": 1169110, + "normalized_name": "super bout champion's tour" + }, + { + "appid": 1169140, + "normalized_name": "friends for the apocalypse" + }, + { + "appid": 1169160, + "normalized_name": "echoria ancient echoes" + }, + { + "appid": 1169170, + "normalized_name": "the rest of our lives" + }, + { + "appid": 1169200, + "normalized_name": "space bear" + }, + { + "appid": 1169230, + "normalized_name": "r.u.b.y.寻常交织的日常" + }, + { + "appid": 1169310, + "normalized_name": "the chronicles of joseph of egypt" + }, + { + "appid": 1169420, + "normalized_name": "monstruous" + }, + { + "appid": 1169430, + "normalized_name": "ransomware dating sim" + }, + { + "appid": 1169460, + "normalized_name": "遠古大陸外傳 古道的盡頭" + }, + { + "appid": 1169490, + "normalized_name": "interactive horror stories" + }, + { + "appid": 1169500, + "normalized_name": "the valley" + }, + { + "appid": 1169510, + "normalized_name": "game breaker" + }, + { + "appid": 1169520, + "normalized_name": "guild of ascension" + }, + { + "appid": 1169540, + "normalized_name": "highrise" + }, + { + "appid": 1169630, + "normalized_name": "traps ahead!" + }, + { + "appid": 1169640, + "normalized_name": "最后的阳光 the last sunshine" + }, + { + "appid": 1169740, + "normalized_name": "danger scavenger" + }, + { + "appid": 1169760, + "normalized_name": "firing vibes" + }, + { + "appid": 1169770, + "normalized_name": "swordrite" + }, + { + "appid": 1169780, + "normalized_name": "ambienz" + }, + { + "appid": 1169870, + "normalized_name": "witch loraine's death game" + }, + { + "appid": 1169880, + "normalized_name": "hentai quilm" + }, + { + "appid": 1169920, + "normalized_name": "safehome" + }, + { + "appid": 1169940, + "normalized_name": "half fly3" + }, + { + "appid": 1170030, + "normalized_name": "eye of plunder" + }, + { + "appid": 1170050, + "normalized_name": "null drifter" + }, + { + "appid": 1170060, + "normalized_name": "boomerang x" + }, + { + "appid": 1170080, + "normalized_name": "foretales" + }, + { + "appid": 1170110, + "normalized_name": "puzzle game lee inside tv" + }, + { + "appid": 1170120, + "normalized_name": "outta gas" + }, + { + "appid": 1170160, + "normalized_name": "golf98" + }, + { + "appid": 1170170, + "normalized_name": "alfonzo's arctic adventure" + }, + { + "appid": 1170180, + "normalized_name": "beat.school dj simulator" + }, + { + "appid": 1170190, + "normalized_name": "bogatyr" + }, + { + "appid": 1170200, + "normalized_name": "ope" + }, + { + "appid": 1170210, + "normalized_name": "is the president a traitor?" + }, + { + "appid": 1170230, + "normalized_name": "below the stone" + }, + { + "appid": 1170250, + "normalized_name": "eutergeläuter" + }, + { + "appid": 1170290, + "normalized_name": "lovely heroines" + }, + { + "appid": 1170300, + "normalized_name": "glitchangels" + }, + { + "appid": 1170310, + "normalized_name": "logialand" + }, + { + "appid": 1170320, + "normalized_name": "hentai energy halloween" + }, + { + "appid": 1170330, + "normalized_name": "toz" + }, + { + "appid": 1170340, + "normalized_name": "hentai jigsaw puzzle 2" + }, + { + "appid": 1170350, + "normalized_name": "pirate popper vr" + }, + { + "appid": 1170370, + "normalized_name": "whimsy" + }, + { + "appid": 1170390, + "normalized_name": "gamebook" + }, + { + "appid": 1170400, + "normalized_name": "labyrinth of the witch" + }, + { + "appid": 1170420, + "normalized_name": "valor and glory napoleonic wars" + }, + { + "appid": 1170440, + "normalized_name": "the chains that bound me" + }, + { + "appid": 1170500, + "normalized_name": "sword and adventurer" + }, + { + "appid": 1170570, + "normalized_name": "the drifter" + }, + { + "appid": 1170580, + "normalized_name": "acid knife" + }, + { + "appid": 1170640, + "normalized_name": "when the past was around prologue" + }, + { + "appid": 1170660, + "normalized_name": "greed" + }, + { + "appid": 1170670, + "normalized_name": "military" + }, + { + "appid": 1170720, + "normalized_name": "pocket cars" + }, + { + "appid": 1170760, + "normalized_name": "xiii classic" + }, + { + "appid": 1170820, + "normalized_name": "lust from beyond prologue" + }, + { + "appid": 1170830, + "normalized_name": "zlm crafter" + }, + { + "appid": 1170840, + "normalized_name": "pamp quest" + }, + { + "appid": 1170870, + "normalized_name": "rain of fire" + }, + { + "appid": 1170880, + "normalized_name": "grimm's hollow" + }, + { + "appid": 1170900, + "normalized_name": "killbot general" + }, + { + "appid": 1170910, + "normalized_name": "sen seven eight nine" + }, + { + "appid": 1170920, + "normalized_name": "caste" + }, + { + "appid": 1170940, + "normalized_name": "outerstellar" + }, + { + "appid": 1170950, + "normalized_name": "mortal online 2" + }, + { + "appid": 1170960, + "normalized_name": "the eye of borrack" + }, + { + "appid": 1170970, + "normalized_name": "marbles on stream" + }, + { + "appid": 1170980, + "normalized_name": "a planet of mine" + }, + { + "appid": 1171030, + "normalized_name": "bock bock" + }, + { + "appid": 1171040, + "normalized_name": "eonica chess battle" + }, + { + "appid": 1171070, + "normalized_name": "medieval embers of war" + }, + { + "appid": 1171080, + "normalized_name": "diesel attack" + }, + { + "appid": 1171110, + "normalized_name": "kedemara the orphan's ballad (ch. 1 5)" + }, + { + "appid": 1171120, + "normalized_name": "nira" + }, + { + "appid": 1171130, + "normalized_name": "scraper gauntlet" + }, + { + "appid": 1171160, + "normalized_name": "nuvavult" + }, + { + "appid": 1171180, + "normalized_name": "averon rising" + }, + { + "appid": 1171230, + "normalized_name": "cubeland vr" + }, + { + "appid": 1171240, + "normalized_name": "reiko's fragments" + }, + { + "appid": 1171250, + "normalized_name": "suka's escape" + }, + { + "appid": 1171260, + "normalized_name": "hollow head director's cut" + }, + { + "appid": 1171270, + "normalized_name": "troubledays" + }, + { + "appid": 1171310, + "normalized_name": "valakas story" + }, + { + "appid": 1171320, + "normalized_name": "frog detective 3 corruption at cowboy county" + }, + { + "appid": 1171330, + "normalized_name": "reviser" + }, + { + "appid": 1171340, + "normalized_name": "a.i.m.3 war protocol" + }, + { + "appid": 1171350, + "normalized_name": "garden city" + }, + { + "appid": 1171370, + "normalized_name": "the supper" + }, + { + "appid": 1171410, + "normalized_name": "ninjapple" + }, + { + "appid": 1171440, + "normalized_name": "hentai halloween" + }, + { + "appid": 1171520, + "normalized_name": "gravity chase" + }, + { + "appid": 1171560, + "normalized_name": "adventureland xl" + }, + { + "appid": 1171570, + "normalized_name": "color soul memories" + }, + { + "appid": 1171600, + "normalized_name": "ghostball" + }, + { + "appid": 1171610, + "normalized_name": "neon district season one" + }, + { + "appid": 1171620, + "normalized_name": "remember lights out" + }, + { + "appid": 1171640, + "normalized_name": "man wreck" + }, + { + "appid": 1171660, + "normalized_name": "the ambassador fractured timelines" + }, + { + "appid": 1171690, + "normalized_name": "wayfinder" + }, + { + "appid": 1171700, + "normalized_name": "karma a visual novel about a dystopia." + }, + { + "appid": 1171710, + "normalized_name": "hellbound the awakening" + }, + { + "appid": 1171770, + "normalized_name": "super novel collector (speedrun edition)" + }, + { + "appid": 1171800, + "normalized_name": "vrtigo" + }, + { + "appid": 1171810, + "normalized_name": "immortal girl" + }, + { + "appid": 1171820, + "normalized_name": "creme de la creme" + }, + { + "appid": 1171840, + "normalized_name": "ironheart" + }, + { + "appid": 1171870, + "normalized_name": "魂之大陆 soultia" + }, + { + "appid": 1171880, + "normalized_name": "alpha" + }, + { + "appid": 1171950, + "normalized_name": "dragon little fighters 2" + }, + { + "appid": 1171970, + "normalized_name": "scrambled" + }, + { + "appid": 1171980, + "normalized_name": "neverlooted dungeon" + }, + { + "appid": 1171990, + "normalized_name": "aah halloween pie!" + }, + { + "appid": 1172000, + "normalized_name": "captain cook word puzzle" + }, + { + "appid": 1172050, + "normalized_name": "cockhead" + }, + { + "appid": 1172060, + "normalized_name": "rest in pieces" + }, + { + "appid": 1172070, + "normalized_name": "aq2 expanse" + }, + { + "appid": 1172080, + "normalized_name": "anonymous player" + }, + { + "appid": 1172090, + "normalized_name": "in passing" + }, + { + "appid": 1172100, + "normalized_name": "pathblasters" + }, + { + "appid": 1172150, + "normalized_name": "blue boy bleeding out" + }, + { + "appid": 1172170, + "normalized_name": "krystopia a puzzle journey" + }, + { + "appid": 1172180, + "normalized_name": "cosplay club" + }, + { + "appid": 1172190, + "normalized_name": "chinatown detective agency" + }, + { + "appid": 1172220, + "normalized_name": "space space" + }, + { + "appid": 1172280, + "normalized_name": "bus simulator" + }, + { + "appid": 1172340, + "normalized_name": "short scary stories zombie defense" + }, + { + "appid": 1172350, + "normalized_name": "bot net ramshackle robotics" + }, + { + "appid": 1172370, + "normalized_name": "dj beats waifus" + }, + { + "appid": 1172380, + "normalized_name": "star wars jedi fallen order" + }, + { + "appid": 1172390, + "normalized_name": "my waifu is a tank girl! 💕" + }, + { + "appid": 1172400, + "normalized_name": "battle mage card caster" + }, + { + "appid": 1172410, + "normalized_name": "rage among the stars" + }, + { + "appid": 1172430, + "normalized_name": "combat force" + }, + { + "appid": 1172450, + "normalized_name": "carto" + }, + { + "appid": 1172470, + "normalized_name": "apex legends" + }, + { + "appid": 1172480, + "normalized_name": "louie" + }, + { + "appid": 1172500, + "normalized_name": "hang the kings" + }, + { + "appid": 1172510, + "normalized_name": "unlock the king" + }, + { + "appid": 1172520, + "normalized_name": "colorgrid" + }, + { + "appid": 1172530, + "normalized_name": "daylife in japan pixel art jigsaw puzzle" + }, + { + "appid": 1172620, + "normalized_name": "sea of thieves 2025" + }, + { + "appid": 1172640, + "normalized_name": "parcel panic" + }, + { + "appid": 1172650, + "normalized_name": "industria" + }, + { + "appid": 1172660, + "normalized_name": "grafi halloween" + }, + { + "appid": 1172680, + "normalized_name": "heart in the cell rebirth" + }, + { + "appid": 1172710, + "normalized_name": "dune awakening" + }, + { + "appid": 1172720, + "normalized_name": "doubles hard" + }, + { + "appid": 1172730, + "normalized_name": "the handler of dragons" + }, + { + "appid": 1172750, + "normalized_name": "humanity remains" + }, + { + "appid": 1172760, + "normalized_name": "twilight's last gleaming" + }, + { + "appid": 1172790, + "normalized_name": "vega motions project unleashed" + }, + { + "appid": 1172800, + "normalized_name": "perfect tides" + }, + { + "appid": 1172820, + "normalized_name": "you only livez twice" + }, + { + "appid": 1172830, + "normalized_name": "peasants war" + }, + { + "appid": 1172850, + "normalized_name": "collector" + }, + { + "appid": 1172900, + "normalized_name": "fulfillment" + }, + { + "appid": 1172920, + "normalized_name": "super dungeon designer" + }, + { + "appid": 1172930, + "normalized_name": "silicomrades" + }, + { + "appid": 1172940, + "normalized_name": "cockwork industries" + }, + { + "appid": 1172980, + "normalized_name": "绮罗四时谭" + }, + { + "appid": 1173010, + "normalized_name": "flowers blooming at the end of summer" + }, + { + "appid": 1173070, + "normalized_name": "explosion magic firebolt vr" + }, + { + "appid": 1173100, + "normalized_name": "choppa rescue rivals" + }, + { + "appid": 1173110, + "normalized_name": "이 ai를 복구해주세요." + }, + { + "appid": 1173120, + "normalized_name": "markov alg" + }, + { + "appid": 1173130, + "normalized_name": "the battles of spwak 2" + }, + { + "appid": 1173150, + "normalized_name": "goosebumps dead of night" + }, + { + "appid": 1173170, + "normalized_name": "magicians legacy" + }, + { + "appid": 1173200, + "normalized_name": "metal unit" + }, + { + "appid": 1173220, + "normalized_name": "bleak faith forsaken" + }, + { + "appid": 1173230, + "normalized_name": "zapitalism" + }, + { + "appid": 1173240, + "normalized_name": "profitania" + }, + { + "appid": 1173250, + "normalized_name": "de void" + }, + { + "appid": 1173260, + "normalized_name": "gangsta sniper 3 final parody" + }, + { + "appid": 1173270, + "normalized_name": "big red hood halloween" + }, + { + "appid": 1173280, + "normalized_name": "fap queen 2" + }, + { + "appid": 1173310, + "normalized_name": "lab 7 cold nights" + }, + { + "appid": 1173330, + "normalized_name": "velvetist prototype" + }, + { + "appid": 1173340, + "normalized_name": "war trains" + }, + { + "appid": 1173350, + "normalized_name": "hentai climber" + }, + { + "appid": 1173370, + "normalized_name": "slapshot rebound" + }, + { + "appid": 1173380, + "normalized_name": "neko arena" + }, + { + "appid": 1173400, + "normalized_name": "futa fix dick dine and dash" + }, + { + "appid": 1173410, + "normalized_name": "my breast friend sally" + }, + { + "appid": 1173420, + "normalized_name": "wizardians in defence of magic" + }, + { + "appid": 1173500, + "normalized_name": "kira's contract" + }, + { + "appid": 1173550, + "normalized_name": "winning post 9 2020" + }, + { + "appid": 1173590, + "normalized_name": "dominus galaxia ks" + }, + { + "appid": 1173610, + "normalized_name": "mousewars" + }, + { + "appid": 1173640, + "normalized_name": "survivor jones" + }, + { + "appid": 1173650, + "normalized_name": "sweet milf" + }, + { + "appid": 1173700, + "normalized_name": "kontrol flow" + }, + { + "appid": 1173730, + "normalized_name": "hexia" + }, + { + "appid": 1173740, + "normalized_name": "woodle tree 2 deluxe+" + }, + { + "appid": 1173770, + "normalized_name": "final fantasy" + }, + { + "appid": 1173780, + "normalized_name": "final fantasy ii" + }, + { + "appid": 1173790, + "normalized_name": "final fantasy iii" + }, + { + "appid": 1173800, + "normalized_name": "final fantasy iv" + }, + { + "appid": 1173810, + "normalized_name": "final fantasy v" + }, + { + "appid": 1173820, + "normalized_name": "final fantasy vi" + }, + { + "appid": 1173830, + "normalized_name": "coloring game pixel" + }, + { + "appid": 1173850, + "normalized_name": "zombie panic in wonderland dx" + }, + { + "appid": 1173870, + "normalized_name": "endless knight" + }, + { + "appid": 1173910, + "normalized_name": "dreams of ylina" + }, + { + "appid": 1173940, + "normalized_name": "barrage musical ~ basic danmaku tutorial ~ / 弹幕音乐绘 ~ 基础教学篇 ~" + }, + { + "appid": 1173960, + "normalized_name": "metaspace" + }, + { + "appid": 1173980, + "normalized_name": "shadow of the road" + }, + { + "appid": 1173990, + "normalized_name": "monsters of kanji 2" + }, + { + "appid": 1174030, + "normalized_name": "hero lodge" + }, + { + "appid": 1174050, + "normalized_name": "uterine supremacy" + }, + { + "appid": 1174090, + "normalized_name": "unicorn tails" + }, + { + "appid": 1174100, + "normalized_name": "hentai girl beat" + }, + { + "appid": 1174120, + "normalized_name": "space road" + }, + { + "appid": 1174170, + "normalized_name": "earthshine" + }, + { + "appid": 1174180, + "normalized_name": "red dead redemption 2" + }, + { + "appid": 1174200, + "normalized_name": "lands of pharaoh episode 1" + }, + { + "appid": 1174230, + "normalized_name": "elementals" + }, + { + "appid": 1174260, + "normalized_name": "the lost cave of the ozarks" + }, + { + "appid": 1174270, + "normalized_name": "iko 39" + }, + { + "appid": 1174300, + "normalized_name": "shiki" + }, + { + "appid": 1174320, + "normalized_name": "travel mosaics 10 spooky halloween" + }, + { + "appid": 1174380, + "normalized_name": "espionage mafia evolved" + }, + { + "appid": 1174390, + "normalized_name": "annie last hope" + }, + { + "appid": 1174400, + "normalized_name": "togainu no chi ~lost blood~" + }, + { + "appid": 1174420, + "normalized_name": "libertad o muerte!" + }, + { + "appid": 1174430, + "normalized_name": "space shapes" + }, + { + "appid": 1174440, + "normalized_name": "a zone" + }, + { + "appid": 1174450, + "normalized_name": "the bad the worse & djanky" + }, + { + "appid": 1174460, + "normalized_name": "poker club" + }, + { + "appid": 1174490, + "normalized_name": "space carrot" + }, + { + "appid": 1174500, + "normalized_name": "yuletide legends who framed santa claus" + }, + { + "appid": 1174510, + "normalized_name": "call of saregnar" + }, + { + "appid": 1174550, + "normalized_name": "bird simulator" + }, + { + "appid": 1174560, + "normalized_name": "приключенията на музикалните тонове и техните ноти" + }, + { + "appid": 1174570, + "normalized_name": "build 'm up shoot 'm down!" + }, + { + "appid": 1174640, + "normalized_name": "arcadia fallen" + }, + { + "appid": 1174670, + "normalized_name": "nordic warriors" + }, + { + "appid": 1174680, + "normalized_name": "ashland dossier" + }, + { + "appid": 1174690, + "normalized_name": "love wish 2" + }, + { + "appid": 1174720, + "normalized_name": "swarmz" + }, + { + "appid": 1174770, + "normalized_name": "cry of athena battle simulator" + }, + { + "appid": 1174780, + "normalized_name": "money loves silence" + }, + { + "appid": 1174810, + "normalized_name": "curse of the dungeon" + }, + { + "appid": 1174820, + "normalized_name": "tower of heresy" + }, + { + "appid": 1174830, + "normalized_name": "the magician's workshop" + }, + { + "appid": 1174890, + "normalized_name": "no offence but" + }, + { + "appid": 1174900, + "normalized_name": "mimimishka" + }, + { + "appid": 1174920, + "normalized_name": "blank" + }, + { + "appid": 1174940, + "normalized_name": "kill or love" + }, + { + "appid": 1174970, + "normalized_name": "empty sharp" + }, + { + "appid": 1174990, + "normalized_name": "sushi pachi panic" + }, + { + "appid": 1175030, + "normalized_name": "plunkocity" + }, + { + "appid": 1175040, + "normalized_name": "cytoclash" + }, + { + "appid": 1175050, + "normalized_name": "queeny army" + }, + { + "appid": 1175060, + "normalized_name": "human simulator" + }, + { + "appid": 1175070, + "normalized_name": "survived" + }, + { + "appid": 1175100, + "normalized_name": "单词训练营 | word training camp" + }, + { + "appid": 1175120, + "normalized_name": "群星战纪 遗失的星辰 stars era lost stars" + }, + { + "appid": 1175140, + "normalized_name": "vecter" + }, + { + "appid": 1175150, + "normalized_name": "incredible dracula vargosi returns" + }, + { + "appid": 1175160, + "normalized_name": "house of 1000 doors the palm of zoroaster" + }, + { + "appid": 1175170, + "normalized_name": "incredible dracula the ice kingdom" + }, + { + "appid": 1175180, + "normalized_name": "妈妈,别走" + }, + { + "appid": 1175190, + "normalized_name": "natsuki chronicles" + }, + { + "appid": 1175200, + "normalized_name": "forbidden ingress" + }, + { + "appid": 1175210, + "normalized_name": "eternal kingdom battle peak" + }, + { + "appid": 1175240, + "normalized_name": "出门" + }, + { + "appid": 1175250, + "normalized_name": "finders reapers" + }, + { + "appid": 1175320, + "normalized_name": "黑暗之岛" + }, + { + "appid": 1175330, + "normalized_name": "troll control" + }, + { + "appid": 1175350, + "normalized_name": "archer the witch's wrath" + }, + { + "appid": 1175360, + "normalized_name": "doomsday hunters" + }, + { + "appid": 1175370, + "normalized_name": "peer gynt the game" + }, + { + "appid": 1175400, + "normalized_name": "the dreamwalkers" + }, + { + "appid": 1175420, + "normalized_name": "imbroglio" + }, + { + "appid": 1175430, + "normalized_name": "project starship x" + }, + { + "appid": 1175450, + "normalized_name": "humans took my neighbors!" + }, + { + "appid": 1175460, + "normalized_name": "revita" + }, + { + "appid": 1175470, + "normalized_name": "shine's adventures 6 (go! girls)" + }, + { + "appid": 1175480, + "normalized_name": "shadowrain" + }, + { + "appid": 1175490, + "normalized_name": "code zero" + }, + { + "appid": 1175500, + "normalized_name": "jack in town" + }, + { + "appid": 1175510, + "normalized_name": "cerberus orbital watch" + }, + { + "appid": 1175540, + "normalized_name": "cyberless online" + }, + { + "appid": 1175550, + "normalized_name": "merge towers" + }, + { + "appid": 1175570, + "normalized_name": "vector light" + }, + { + "appid": 1175590, + "normalized_name": "jagd lanzer" + }, + { + "appid": 1175600, + "normalized_name": "project grove" + }, + { + "appid": 1175640, + "normalized_name": "zombie road rider" + }, + { + "appid": 1175650, + "normalized_name": "upmove" + }, + { + "appid": 1175660, + "normalized_name": "depowerball" + }, + { + "appid": 1175690, + "normalized_name": "mystar" + }, + { + "appid": 1175700, + "normalized_name": "dark table ccg" + }, + { + "appid": 1175720, + "normalized_name": "gerritory" + }, + { + "appid": 1175730, + "normalized_name": "tree of savior (japanese ver.)" + }, + { + "appid": 1175770, + "normalized_name": "topplepop bungee blockbusters" + }, + { + "appid": 1175800, + "normalized_name": "command & control 3" + }, + { + "appid": 1175830, + "normalized_name": "legend of mana" + }, + { + "appid": 1175840, + "normalized_name": "whateverland" + }, + { + "appid": 1175870, + "normalized_name": "chronicles of galdurvale" + }, + { + "appid": 1175880, + "normalized_name": "war room" + }, + { + "appid": 1175890, + "normalized_name": "p.a.i.n.t." + }, + { + "appid": 1175900, + "normalized_name": "antares" + }, + { + "appid": 1175930, + "normalized_name": "ray eager" + }, + { + "appid": 1175950, + "normalized_name": "cyberpunk sex simulator" + }, + { + "appid": 1175960, + "normalized_name": "last joy" + }, + { + "appid": 1175970, + "normalized_name": "hibiscus red" + }, + { + "appid": 1175980, + "normalized_name": "城市生存计划 / city survival project" + }, + { + "appid": 1176000, + "normalized_name": "toy robot" + }, + { + "appid": 1176020, + "normalized_name": "rampage miami" + }, + { + "appid": 1176040, + "normalized_name": "i have low stats but my class is \"leader\" so i recruited everyone i know to fight the dark lord" + }, + { + "appid": 1176050, + "normalized_name": "秘封旅行 ~ secret sealing travel" + }, + { + "appid": 1176060, + "normalized_name": "wigged out" + }, + { + "appid": 1176090, + "normalized_name": "adventure galaxy" + }, + { + "appid": 1176160, + "normalized_name": "space wars" + }, + { + "appid": 1176170, + "normalized_name": "girls battlegrounds | 性感大逃杀" + }, + { + "appid": 1176190, + "normalized_name": "space candy" + }, + { + "appid": 1176330, + "normalized_name": "your principal" + }, + { + "appid": 1176360, + "normalized_name": "contract killers" + }, + { + "appid": 1176460, + "normalized_name": "they came from a communist planet" + }, + { + "appid": 1176470, + "normalized_name": "terra invicta" + }, + { + "appid": 1176480, + "normalized_name": "the city of time" + }, + { + "appid": 1176540, + "normalized_name": "sunny girl" + }, + { + "appid": 1176560, + "normalized_name": "the orphan a tale of an errant ghost hidden object game" + }, + { + "appid": 1176570, + "normalized_name": "golf on the moon (vr)" + }, + { + "appid": 1176580, + "normalized_name": "periodic deliveries" + }, + { + "appid": 1176590, + "normalized_name": "seek hearts" + }, + { + "appid": 1176710, + "normalized_name": "space crew legendary" + }, + { + "appid": 1176780, + "normalized_name": "nuclear arms race" + }, + { + "appid": 1176800, + "normalized_name": "useless box the game" + }, + { + "appid": 1176840, + "normalized_name": "the airship designer" + }, + { + "appid": 1176850, + "normalized_name": "goose.io" + }, + { + "appid": 1176860, + "normalized_name": "might online" + }, + { + "appid": 1176890, + "normalized_name": "datejournal russian girls dating sim" + }, + { + "appid": 1176970, + "normalized_name": "bolf" + }, + { + "appid": 1176990, + "normalized_name": "vectorlord" + }, + { + "appid": 1177000, + "normalized_name": "transformers battlegrounds" + }, + { + "appid": 1177020, + "normalized_name": "gigantosaurus the game" + }, + { + "appid": 1177030, + "normalized_name": "pong quest" + }, + { + "appid": 1177070, + "normalized_name": "highway game" + }, + { + "appid": 1177080, + "normalized_name": "geometry hero" + }, + { + "appid": 1177100, + "normalized_name": "末法时代" + }, + { + "appid": 1177110, + "normalized_name": "the sorrowvirus" + }, + { + "appid": 1177130, + "normalized_name": "naboki" + }, + { + "appid": 1177170, + "normalized_name": "pooplers" + }, + { + "appid": 1177190, + "normalized_name": "il sole e la luna 2" + }, + { + "appid": 1177250, + "normalized_name": "speak lies" + }, + { + "appid": 1177270, + "normalized_name": "imaginarium" + }, + { + "appid": 1177300, + "normalized_name": "space zone defender" + }, + { + "appid": 1177310, + "normalized_name": "future pool" + }, + { + "appid": 1177320, + "normalized_name": "hirt" + }, + { + "appid": 1177330, + "normalized_name": "billion beat" + }, + { + "appid": 1177340, + "normalized_name": "unification" + }, + { + "appid": 1177350, + "normalized_name": "molly fear of clowns" + }, + { + "appid": 1177370, + "normalized_name": "arachnosplat" + }, + { + "appid": 1177380, + "normalized_name": "memoirs of a battle brothel" + }, + { + "appid": 1177390, + "normalized_name": "future snooker" + }, + { + "appid": 1177400, + "normalized_name": "江湖余生:缘起" + }, + { + "appid": 1177420, + "normalized_name": "uncleneighbor uncle dating simulator" + }, + { + "appid": 1177430, + "normalized_name": "immanence" + }, + { + "appid": 1177460, + "normalized_name": "dangerous blaster" + }, + { + "appid": 1177480, + "normalized_name": "月牙楼风云" + }, + { + "appid": 1177490, + "normalized_name": "hovershift" + }, + { + "appid": 1177510, + "normalized_name": "gash" + }, + { + "appid": 1177540, + "normalized_name": "fabergegg" + }, + { + "appid": 1177550, + "normalized_name": "pumpkin breaker" + }, + { + "appid": 1177580, + "normalized_name": "dungeon slayer" + }, + { + "appid": 1177610, + "normalized_name": "katana kata" + }, + { + "appid": 1177640, + "normalized_name": "rocketron" + }, + { + "appid": 1177650, + "normalized_name": "paper shakespeare to date or not to date? 2" + }, + { + "appid": 1177660, + "normalized_name": "escape the ayuwoki" + }, + { + "appid": 1177690, + "normalized_name": "the summoning" + }, + { + "appid": 1177720, + "normalized_name": "yu escape / monday" + }, + { + "appid": 1177730, + "normalized_name": "w.h.a.l.e." + }, + { + "appid": 1177820, + "normalized_name": "shape cascade" + }, + { + "appid": 1177840, + "normalized_name": "makiomino" + }, + { + "appid": 1177850, + "normalized_name": "deadly night no escape" + }, + { + "appid": 1177890, + "normalized_name": "cave of illusions" + }, + { + "appid": 1177910, + "normalized_name": "non compliant" + }, + { + "appid": 1177940, + "normalized_name": "mass plus" + }, + { + "appid": 1177950, + "normalized_name": "craft elements" + }, + { + "appid": 1177960, + "normalized_name": "get me outta here deluxe/remastered" + }, + { + "appid": 1177970, + "normalized_name": "world of talesworth idle mmo simulator" + }, + { + "appid": 1177980, + "normalized_name": "little kitty big city" + }, + { + "appid": 1177990, + "normalized_name": "welcome to primrose lake" + }, + { + "appid": 1178000, + "normalized_name": "ghost dimension" + }, + { + "appid": 1178010, + "normalized_name": "under the rainbow prologue" + }, + { + "appid": 1178020, + "normalized_name": "shot the body" + }, + { + "appid": 1178030, + "normalized_name": "star fetchers" + }, + { + "appid": 1178050, + "normalized_name": "狐の旅路" + }, + { + "appid": 1178060, + "normalized_name": "spooky night 2" + }, + { + "appid": 1178130, + "normalized_name": "少女的求生之路" + }, + { + "appid": 1178140, + "normalized_name": "pixel ripped 1995" + }, + { + "appid": 1178150, + "normalized_name": "mazm jekyll and hyde" + }, + { + "appid": 1178160, + "normalized_name": "blackjack championship" + }, + { + "appid": 1178180, + "normalized_name": "batya" + }, + { + "appid": 1178200, + "normalized_name": "somewhere inside" + }, + { + "appid": 1178210, + "normalized_name": "stirring abyss" + }, + { + "appid": 1178220, + "normalized_name": "icbm" + }, + { + "appid": 1178230, + "normalized_name": "the wild case" + }, + { + "appid": 1178260, + "normalized_name": "the haunted house vr movie ep. 1 \"missing\"" + }, + { + "appid": 1178290, + "normalized_name": "dezatopia" + }, + { + "appid": 1178300, + "normalized_name": "color blocks relax puzzle" + }, + { + "appid": 1178310, + "normalized_name": "picross.io" + }, + { + "appid": 1178380, + "normalized_name": "resurrector" + }, + { + "appid": 1178390, + "normalized_name": "the source of the nightmare storms" + }, + { + "appid": 1178400, + "normalized_name": "pro cycling manager 2020" + }, + { + "appid": 1178430, + "normalized_name": "summer games heroes" + }, + { + "appid": 1178480, + "normalized_name": "space station invader vr" + }, + { + "appid": 1178490, + "normalized_name": "港詭實錄paranormalhk" + }, + { + "appid": 1178500, + "normalized_name": "crazy eights 3d premium" + }, + { + "appid": 1178510, + "normalized_name": "gin rummy 3d premium" + }, + { + "appid": 1178520, + "normalized_name": "hearts 3d premium" + }, + { + "appid": 1178530, + "normalized_name": "thirty one 3d premium" + }, + { + "appid": 1178590, + "normalized_name": "gods of fire" + }, + { + "appid": 1178680, + "normalized_name": "retrovamp" + }, + { + "appid": 1178690, + "normalized_name": "hyper casual hentai" + }, + { + "appid": 1178710, + "normalized_name": "the legend of arcadieu" + }, + { + "appid": 1178770, + "normalized_name": "twinora" + }, + { + "appid": 1178780, + "normalized_name": "battlegroupvr" + }, + { + "appid": 1178790, + "normalized_name": "shiren the wanderer the tower of fortune and the dice of fate" + }, + { + "appid": 1178820, + "normalized_name": "punke racing" + }, + { + "appid": 1178830, + "normalized_name": "bright memory infinite" + }, + { + "appid": 1178880, + "normalized_name": "panzer dragoon remake" + }, + { + "appid": 1178890, + "normalized_name": "taro a fluffy visual novel" + }, + { + "appid": 1179010, + "normalized_name": "rollers" + }, + { + "appid": 1179020, + "normalized_name": "red frost" + }, + { + "appid": 1179060, + "normalized_name": "有翼のフロイライン wing of darkness" + }, + { + "appid": 1179080, + "normalized_name": "faith the unholy trinity" + }, + { + "appid": 1179100, + "normalized_name": "oppaidius tropical cruise!" + }, + { + "appid": 1179110, + "normalized_name": "chrono's arena" + }, + { + "appid": 1179150, + "normalized_name": "romguns" + }, + { + "appid": 1179170, + "normalized_name": "super angling" + }, + { + "appid": 1179190, + "normalized_name": "dinodrifters" + }, + { + "appid": 1179210, + "normalized_name": "kill it with fire" + }, + { + "appid": 1179280, + "normalized_name": "project d human risen" + }, + { + "appid": 1179310, + "normalized_name": "drift alone" + }, + { + "appid": 1179320, + "normalized_name": "magnetic bonds" + }, + { + "appid": 1179340, + "normalized_name": "kōmori fruit rush" + }, + { + "appid": 1179350, + "normalized_name": "怪奇幻想夢物語 怪獣綺譚 誘宵地獄" + }, + { + "appid": 1179390, + "normalized_name": "victorian admirals caroline crisis 1885" + }, + { + "appid": 1179400, + "normalized_name": "basic car repair garage vr" + }, + { + "appid": 1179410, + "normalized_name": "lootcraft" + }, + { + "appid": 1179420, + "normalized_name": "brunswick pro billiards" + }, + { + "appid": 1179430, + "normalized_name": "laser z" + }, + { + "appid": 1179460, + "normalized_name": "ham master" + }, + { + "appid": 1179500, + "normalized_name": "star gods" + }, + { + "appid": 1179530, + "normalized_name": "kaja:追光者与秘境制造" + }, + { + "appid": 1179540, + "normalized_name": "sweet thomas" + }, + { + "appid": 1179560, + "normalized_name": "gachi heroes 2 flexboll" + }, + { + "appid": 1179570, + "normalized_name": "jazz lightning castle dungeons" + }, + { + "appid": 1179580, + "normalized_name": "kaku ancient seal" + }, + { + "appid": 1179620, + "normalized_name": "journey of the broken circle" + }, + { + "appid": 1179660, + "normalized_name": "prometheus omex rising" + }, + { + "appid": 1179680, + "normalized_name": "wurm online" + }, + { + "appid": 1179690, + "normalized_name": "ufo穿越 (ufo cross)" + }, + { + "appid": 1179750, + "normalized_name": "metrail" + }, + { + "appid": 1179810, + "normalized_name": "sowa vr" + }, + { + "appid": 1179880, + "normalized_name": "maverick" + }, + { + "appid": 1179890, + "normalized_name": "pull stay" + }, + { + "appid": 1179910, + "normalized_name": "人魔境共生譚" + }, + { + "appid": 1180000, + "normalized_name": "i will be your eyes" + }, + { + "appid": 1180020, + "normalized_name": "an occurrence at owl creek bridge" + }, + { + "appid": 1180030, + "normalized_name": "wardwell house" + }, + { + "appid": 1180070, + "normalized_name": "bangers & mash" + }, + { + "appid": 1180110, + "normalized_name": "deadshotz" + }, + { + "appid": 1180130, + "normalized_name": "the final earth 2" + }, + { + "appid": 1180190, + "normalized_name": "call of vii" + }, + { + "appid": 1180200, + "normalized_name": "传说之剑" + }, + { + "appid": 1180210, + "normalized_name": "super rhythm duel" + }, + { + "appid": 1180250, + "normalized_name": "divination" + }, + { + "appid": 1180270, + "normalized_name": "forbidden love with the ghost girl" + }, + { + "appid": 1180320, + "normalized_name": "三国杀" + }, + { + "appid": 1180330, + "normalized_name": "manor of mystic courtesans" + }, + { + "appid": 1180360, + "normalized_name": "two love" + }, + { + "appid": 1180370, + "normalized_name": "wienne" + }, + { + "appid": 1180380, + "normalized_name": "stay out" + }, + { + "appid": 1180420, + "normalized_name": "windmill kings" + }, + { + "appid": 1180450, + "normalized_name": "exitium" + }, + { + "appid": 1180520, + "normalized_name": "andromeda one" + }, + { + "appid": 1180530, + "normalized_name": "gates to terra ii" + }, + { + "appid": 1180540, + "normalized_name": "puddle knights" + }, + { + "appid": 1180550, + "normalized_name": "bruxinha luana" + }, + { + "appid": 1180610, + "normalized_name": "npc problems vertex coloring" + }, + { + "appid": 1180620, + "normalized_name": "bullet beat musical shoot'em up" + }, + { + "appid": 1180650, + "normalized_name": "bakemono demon brigade tenmen unit 01" + }, + { + "appid": 1180660, + "normalized_name": "tell me why" + }, + { + "appid": 1180670, + "normalized_name": "worldless mercenaries" + }, + { + "appid": 1180690, + "normalized_name": "spaceman" + }, + { + "appid": 1180700, + "normalized_name": "shooting star" + }, + { + "appid": 1180790, + "normalized_name": "imagestriker" + }, + { + "appid": 1180800, + "normalized_name": "don't kill the cow" + }, + { + "appid": 1180820, + "normalized_name": "escape!" + }, + { + "appid": 1180840, + "normalized_name": "soulfulland" + }, + { + "appid": 1180900, + "normalized_name": "sgs winter war" + }, + { + "appid": 1180940, + "normalized_name": "spellinkers" + }, + { + "appid": 1180960, + "normalized_name": "arktrum" + }, + { + "appid": 1180970, + "normalized_name": "phantom path" + }, + { + "appid": 1181000, + "normalized_name": "ubermosh omega" + }, + { + "appid": 1181010, + "normalized_name": "put in bad" + }, + { + "appid": 1181020, + "normalized_name": "squillamorph" + }, + { + "appid": 1181030, + "normalized_name": "forest guardian" + }, + { + "appid": 1181040, + "normalized_name": "lazr a clothformer" + }, + { + "appid": 1181070, + "normalized_name": "box" + }, + { + "appid": 1181120, + "normalized_name": "picture toys" + }, + { + "appid": 1181130, + "normalized_name": "play with neko" + }, + { + "appid": 1181140, + "normalized_name": "perfectlover" + }, + { + "appid": 1181160, + "normalized_name": "impossiball gamers challenge" + }, + { + "appid": 1181220, + "normalized_name": "amaze gears 2" + }, + { + "appid": 1181270, + "normalized_name": "god of gym" + }, + { + "appid": 1181280, + "normalized_name": "ebony" + }, + { + "appid": 1181290, + "normalized_name": "aria dating simulator" + }, + { + "appid": 1181300, + "normalized_name": "abda redeemer space alien invasion" + }, + { + "appid": 1181330, + "normalized_name": "d3d inside" + }, + { + "appid": 1181360, + "normalized_name": "elette fragments" + }, + { + "appid": 1181390, + "normalized_name": "id ego" + }, + { + "appid": 1181400, + "normalized_name": "path of giants" + }, + { + "appid": 1181430, + "normalized_name": "kiss upload" + }, + { + "appid": 1181440, + "normalized_name": "togather island" + }, + { + "appid": 1181470, + "normalized_name": "my haunted doll" + }, + { + "appid": 1181490, + "normalized_name": "blue lemon" + }, + { + "appid": 1181510, + "normalized_name": "os omega retro shooter" + }, + { + "appid": 1181520, + "normalized_name": "null & peta invasion of the queen bug" + }, + { + "appid": 1181550, + "normalized_name": "carnival hunt" + }, + { + "appid": 1181570, + "normalized_name": "feria d'arles" + }, + { + "appid": 1181600, + "normalized_name": "jetboard joust" + }, + { + "appid": 1181610, + "normalized_name": "roto force" + }, + { + "appid": 1181640, + "normalized_name": "project exhibited" + }, + { + "appid": 1181650, + "normalized_name": "have a blast" + }, + { + "appid": 1181690, + "normalized_name": "annum crossroads" + }, + { + "appid": 1181750, + "normalized_name": "the vr canyon" + }, + { + "appid": 1181780, + "normalized_name": "ascendants rising" + }, + { + "appid": 1181790, + "normalized_name": "circle of sumo online rumble!" + }, + { + "appid": 1181800, + "normalized_name": "playbound" + }, + { + "appid": 1181820, + "normalized_name": "colossal saga" + }, + { + "appid": 1181830, + "normalized_name": "urtuk the desolation" + }, + { + "appid": 1181840, + "normalized_name": "hiveswap act 2" + }, + { + "appid": 1181880, + "normalized_name": "draconic echoes the ardent war" + }, + { + "appid": 1181900, + "normalized_name": "cave confectioner" + }, + { + "appid": 1181910, + "normalized_name": "halloween chronicles evil behind a mask collector's" + }, + { + "appid": 1181940, + "normalized_name": "cursed pagoda" + }, + { + "appid": 1181970, + "normalized_name": "kamodo steve janitor on fire!" + }, + { + "appid": 1182020, + "normalized_name": "wgt golf" + }, + { + "appid": 1182040, + "normalized_name": "3 blind mice a remediation game for improper children" + }, + { + "appid": 1182060, + "normalized_name": "heavens tournament" + }, + { + "appid": 1182070, + "normalized_name": "majula frontier the offense" + }, + { + "appid": 1182090, + "normalized_name": "mr. pumpkin 2 kowloon walled city" + }, + { + "appid": 1182110, + "normalized_name": "weed shop 3" + }, + { + "appid": 1182200, + "normalized_name": "hidden world of art 2" + }, + { + "appid": 1182210, + "normalized_name": "space electrician" + }, + { + "appid": 1182260, + "normalized_name": "kukui 2" + }, + { + "appid": 1182280, + "normalized_name": "foodtruck arena" + }, + { + "appid": 1182310, + "normalized_name": "the excavation of hob's barrow" + }, + { + "appid": 1182370, + "normalized_name": "mr. hopp's playhouse" + }, + { + "appid": 1182410, + "normalized_name": "purgatory guardian" + }, + { + "appid": 1182420, + "normalized_name": "ved" + }, + { + "appid": 1182470, + "normalized_name": "reky" + }, + { + "appid": 1182530, + "normalized_name": "shadows on the vatican nightingale" + }, + { + "appid": 1182590, + "normalized_name": "hueor" + }, + { + "appid": 1182620, + "normalized_name": "impostor factory" + }, + { + "appid": 1182670, + "normalized_name": "haunted hotel room 18 collector's" + }, + { + "appid": 1182690, + "normalized_name": "a dark world the glowing city" + }, + { + "appid": 1182720, + "normalized_name": "go 4 soldier 1" + }, + { + "appid": 1182760, + "normalized_name": "starlight" + }, + { + "appid": 1182770, + "normalized_name": "caves and castles underworld" + }, + { + "appid": 1182790, + "normalized_name": "grudge tv" + }, + { + "appid": 1182820, + "normalized_name": "miracle calamity homeostasis" + }, + { + "appid": 1182830, + "normalized_name": "qt" + }, + { + "appid": 1182860, + "normalized_name": "aiyana" + }, + { + "appid": 1182890, + "normalized_name": "dunmakia kingdom" + }, + { + "appid": 1182900, + "normalized_name": "a plague tale requiem" + }, + { + "appid": 1182970, + "normalized_name": "vr katherine" + }, + { + "appid": 1183010, + "normalized_name": "listeria wars" + }, + { + "appid": 1183030, + "normalized_name": "layers of fear vr" + }, + { + "appid": 1183140, + "normalized_name": "planet lander" + }, + { + "appid": 1183160, + "normalized_name": "quantum runners" + }, + { + "appid": 1183170, + "normalized_name": "all world pro wrestling" + }, + { + "appid": 1183200, + "normalized_name": "portal dogs" + }, + { + "appid": 1183210, + "normalized_name": "through the unknown" + }, + { + "appid": 1183220, + "normalized_name": "stormborn" + }, + { + "appid": 1183230, + "normalized_name": "a pirate's pleasure" + }, + { + "appid": 1183260, + "normalized_name": "tryment ―献给渴望改变的你― alpha篇" + }, + { + "appid": 1183270, + "normalized_name": "cirrata" + }, + { + "appid": 1183280, + "normalized_name": "jazz age" + }, + { + "appid": 1183300, + "normalized_name": "dawnfall" + }, + { + "appid": 1183320, + "normalized_name": "bundle kitt" + }, + { + "appid": 1183350, + "normalized_name": "relivium" + }, + { + "appid": 1183410, + "normalized_name": "you are pig sitter" + }, + { + "appid": 1183420, + "normalized_name": "monochrome world" + }, + { + "appid": 1183470, + "normalized_name": "imperiums greek wars" + }, + { + "appid": 1183480, + "normalized_name": "bonsai castles" + }, + { + "appid": 1183500, + "normalized_name": "puppy cross" + }, + { + "appid": 1183510, + "normalized_name": "little town hero" + }, + { + "appid": 1183530, + "normalized_name": "go fight fantastic" + }, + { + "appid": 1183560, + "normalized_name": "go heroes" + }, + { + "appid": 1183580, + "normalized_name": "terra alia the language discovery rpg" + }, + { + "appid": 1183600, + "normalized_name": "king rocket" + }, + { + "appid": 1183650, + "normalized_name": "pm 1 inverse universe" + }, + { + "appid": 1183670, + "normalized_name": "angry zombies" + }, + { + "appid": 1183700, + "normalized_name": "biolum" + }, + { + "appid": 1183740, + "normalized_name": "散歩するキーボード使い" + }, + { + "appid": 1183750, + "normalized_name": "liquid space" + }, + { + "appid": 1183800, + "normalized_name": "shardpunk" + }, + { + "appid": 1183840, + "normalized_name": "dungeon of rikka" + }, + { + "appid": 1183850, + "normalized_name": "pneumata" + }, + { + "appid": 1183980, + "normalized_name": "escape from the lostmoon" + }, + { + "appid": 1184010, + "normalized_name": "monsters mall" + }, + { + "appid": 1184040, + "normalized_name": "d1896" + }, + { + "appid": 1184050, + "normalized_name": "gears tactics" + }, + { + "appid": 1184070, + "normalized_name": "overrun" + }, + { + "appid": 1184090, + "normalized_name": "belly dance girl" + }, + { + "appid": 1184110, + "normalized_name": "刀锋突袭" + }, + { + "appid": 1184150, + "normalized_name": "suez canal girl" + }, + { + "appid": 1184160, + "normalized_name": "russiaphobia" + }, + { + "appid": 1184190, + "normalized_name": "knockout bowling vr" + }, + { + "appid": 1184210, + "normalized_name": "fragile" + }, + { + "appid": 1184230, + "normalized_name": "cross border vr" + }, + { + "appid": 1184250, + "normalized_name": "finnish army simulator" + }, + { + "appid": 1184260, + "normalized_name": "warchasm" + }, + { + "appid": 1184310, + "normalized_name": "slippery sausage" + }, + { + "appid": 1184320, + "normalized_name": "fit food" + }, + { + "appid": 1184360, + "normalized_name": "heavy load" + }, + { + "appid": 1184370, + "normalized_name": "pathfinder wrath of the righteous enhanced" + }, + { + "appid": 1184400, + "normalized_name": "succubus waifu" + }, + { + "appid": 1184420, + "normalized_name": "天降锦鲤 ~ my lucky koi" + }, + { + "appid": 1184450, + "normalized_name": "magic of autumn" + }, + { + "appid": 1184460, + "normalized_name": "race! make 'm finish..." + }, + { + "appid": 1184470, + "normalized_name": "astropuppa" + }, + { + "appid": 1184480, + "normalized_name": "inertial drift" + }, + { + "appid": 1184500, + "normalized_name": "yuki space ranger" + }, + { + "appid": 1184530, + "normalized_name": "aurora cores ocultas" + }, + { + "appid": 1184550, + "normalized_name": "terminal vr" + }, + { + "appid": 1184560, + "normalized_name": "phantom breaker omnia" + }, + { + "appid": 1184570, + "normalized_name": "last neighbor" + }, + { + "appid": 1184590, + "normalized_name": "cubehub" + }, + { + "appid": 1184640, + "normalized_name": "hide and secret the lost world" + }, + { + "appid": 1184680, + "normalized_name": "cairo stark crocs hunter" + }, + { + "appid": 1184700, + "normalized_name": "whispered secrets dreadful beauty collector's" + }, + { + "appid": 1184710, + "normalized_name": "cosmo story" + }, + { + "appid": 1184720, + "normalized_name": "later" + }, + { + "appid": 1184750, + "normalized_name": "skeleton vs zombies" + }, + { + "appid": 1184760, + "normalized_name": "shovel knight pocket dungeon" + }, + { + "appid": 1184770, + "normalized_name": "the political process" + }, + { + "appid": 1184780, + "normalized_name": "bots" + }, + { + "appid": 1184790, + "normalized_name": "scp fragmented minds" + }, + { + "appid": 1184810, + "normalized_name": "mainframe defenders" + }, + { + "appid": 1184820, + "normalized_name": "poker quest swords and spades" + }, + { + "appid": 1184840, + "normalized_name": "chaos galaxy" + }, + { + "appid": 1184850, + "normalized_name": "craft the mapcrafter gathering magic words" + }, + { + "appid": 1184880, + "normalized_name": "puzzle girls" + }, + { + "appid": 1184890, + "normalized_name": "fleeting iris" + }, + { + "appid": 1184900, + "normalized_name": "unitied" + }, + { + "appid": 1184960, + "normalized_name": "aggressors" + }, + { + "appid": 1184990, + "normalized_name": "huuma mina the secret of immortality" + }, + { + "appid": 1185000, + "normalized_name": "bloody trains" + }, + { + "appid": 1185140, + "normalized_name": "the golden cross" + }, + { + "appid": 1185160, + "normalized_name": "[chilla's art] inunaki tunnel | 犬鳴トンネル" + }, + { + "appid": 1185190, + "normalized_name": "climb challenge" + }, + { + "appid": 1185230, + "normalized_name": "choose for me" + }, + { + "appid": 1185270, + "normalized_name": "经典扫雷" + }, + { + "appid": 1185280, + "normalized_name": "the innkeeper" + }, + { + "appid": 1185290, + "normalized_name": "cahertis" + }, + { + "appid": 1185330, + "normalized_name": "blades of gory" + }, + { + "appid": 1185340, + "normalized_name": "grace" + }, + { + "appid": 1185360, + "normalized_name": "alan sharp" + }, + { + "appid": 1185370, + "normalized_name": "parked in the dark" + }, + { + "appid": 1185380, + "normalized_name": "the season of the warlock" + }, + { + "appid": 1185390, + "normalized_name": "how to become a ninja part 1" + }, + { + "appid": 1185400, + "normalized_name": "kuniture" + }, + { + "appid": 1185410, + "normalized_name": "minigame blast" + }, + { + "appid": 1185470, + "normalized_name": "deathbloom chapter 2" + }, + { + "appid": 1185480, + "normalized_name": "doom of the clawn" + }, + { + "appid": 1185490, + "normalized_name": "dark quest 3" + }, + { + "appid": 1185500, + "normalized_name": "mega balls" + }, + { + "appid": 1185520, + "normalized_name": "love rhythm" + }, + { + "appid": 1185530, + "normalized_name": "my wet leto comic" + }, + { + "appid": 1185570, + "normalized_name": "stickman go" + }, + { + "appid": 1185580, + "normalized_name": "takkyu tournament re serve" + }, + { + "appid": 1185600, + "normalized_name": "神国:创造(the kingdom of god)" + }, + { + "appid": 1185620, + "normalized_name": "necroland undead corps" + }, + { + "appid": 1185630, + "normalized_name": "cubeparkour" + }, + { + "appid": 1185660, + "normalized_name": "sex adventure the board game" + }, + { + "appid": 1185680, + "normalized_name": "white wings ホワイトウィングス" + }, + { + "appid": 1185700, + "normalized_name": "arrog" + }, + { + "appid": 1185730, + "normalized_name": "lovely hentai" + }, + { + "appid": 1185740, + "normalized_name": "mira" + }, + { + "appid": 1185750, + "normalized_name": "мафия онлайн дикий запад (facemafia)" + }, + { + "appid": 1185780, + "normalized_name": "forest ranger simulator" + }, + { + "appid": 1185810, + "normalized_name": "cyborg mechanic" + }, + { + "appid": 1185820, + "normalized_name": "hollow island" + }, + { + "appid": 1185870, + "normalized_name": "skyland 1976" + }, + { + "appid": 1185940, + "normalized_name": "ashkeep" + }, + { + "appid": 1185950, + "normalized_name": "wars of the roses" + }, + { + "appid": 1185960, + "normalized_name": "napoleon in russia" + }, + { + "appid": 1186030, + "normalized_name": "death park" + }, + { + "appid": 1186040, + "normalized_name": "worms rumble" + }, + { + "appid": 1186050, + "normalized_name": "hero's spirit" + }, + { + "appid": 1186080, + "normalized_name": "the adventures of willow and ash" + }, + { + "appid": 1186100, + "normalized_name": "beast brigade" + }, + { + "appid": 1186160, + "normalized_name": "all day dying redux" + }, + { + "appid": 1186200, + "normalized_name": "时之终klock" + }, + { + "appid": 1186220, + "normalized_name": "wire lips" + }, + { + "appid": 1186260, + "normalized_name": "bondage girl" + }, + { + "appid": 1186270, + "normalized_name": "nosferatu lilinor" + }, + { + "appid": 1186280, + "normalized_name": "dodge if you can!" + }, + { + "appid": 1186290, + "normalized_name": "ballance the return" + }, + { + "appid": 1186300, + "normalized_name": "into the maze" + }, + { + "appid": 1186340, + "normalized_name": "action ball 2" + }, + { + "appid": 1186350, + "normalized_name": "lethal tempting girls" + }, + { + "appid": 1186390, + "normalized_name": "britannia vr out of your mind" + }, + { + "appid": 1186400, + "normalized_name": "west sweety" + }, + { + "appid": 1186430, + "normalized_name": "i.g.i. origins" + }, + { + "appid": 1186460, + "normalized_name": "songs of wuxia" + }, + { + "appid": 1186470, + "normalized_name": "marko beyond brave" + }, + { + "appid": 1186510, + "normalized_name": "land of ngoto" + }, + { + "appid": 1186530, + "normalized_name": "business wars the card game" + }, + { + "appid": 1186570, + "normalized_name": "die fantastischen vr fantaventura" + }, + { + "appid": 1186580, + "normalized_name": "new york mysteries the outbreak collector's" + }, + { + "appid": 1186590, + "normalized_name": "unnamed adventure/无名之旅" + }, + { + "appid": 1186600, + "normalized_name": "nympho monster domination" + }, + { + "appid": 1186630, + "normalized_name": "1971 project helios" + }, + { + "appid": 1186640, + "normalized_name": "pumpkin jack" + }, + { + "appid": 1186650, + "normalized_name": "madela" + }, + { + "appid": 1186660, + "normalized_name": "bare butt boxing" + }, + { + "appid": 1186670, + "normalized_name": "fateless" + }, + { + "appid": 1186680, + "normalized_name": "maximum momentum" + }, + { + "appid": 1186690, + "normalized_name": "timpu's treasure" + }, + { + "appid": 1186720, + "normalized_name": "the cruxis sword" + }, + { + "appid": 1186730, + "normalized_name": "terro lunkka adventures" + }, + { + "appid": 1186740, + "normalized_name": "kyle is famous" + }, + { + "appid": 1186760, + "normalized_name": "robot boy" + }, + { + "appid": 1186770, + "normalized_name": "disgrâce" + }, + { + "appid": 1186860, + "normalized_name": "反现实症候群γ counterrealstic syndrome γ" + }, + { + "appid": 1186880, + "normalized_name": "octofurry" + }, + { + "appid": 1186940, + "normalized_name": "underneath" + }, + { + "appid": 1186950, + "normalized_name": "astro combat" + }, + { + "appid": 1186960, + "normalized_name": "cowboys vs hipsters" + }, + { + "appid": 1187030, + "normalized_name": "星礼研究所 | sighchology research lab" + }, + { + "appid": 1187110, + "normalized_name": "investment hero" + }, + { + "appid": 1187130, + "normalized_name": "crimson colosseum" + }, + { + "appid": 1187190, + "normalized_name": "the knight of the crimson tower" + }, + { + "appid": 1187250, + "normalized_name": "consumed awakening" + }, + { + "appid": 1187270, + "normalized_name": "territory" + }, + { + "appid": 1187330, + "normalized_name": "tower tag" + }, + { + "appid": 1187410, + "normalized_name": "闪避大师 master of dodging" + }, + { + "appid": 1187420, + "normalized_name": "hasfax" + }, + { + "appid": 1187430, + "normalized_name": "spacevibes vr" + }, + { + "appid": 1187490, + "normalized_name": "phoenix tales" + }, + { + "appid": 1187510, + "normalized_name": "rock simulator" + }, + { + "appid": 1187520, + "normalized_name": "realms of darkness" + }, + { + "appid": 1187560, + "normalized_name": "the game we all have to play" + }, + { + "appid": 1187600, + "normalized_name": "wicked willow" + }, + { + "appid": 1187620, + "normalized_name": "hentai pazu" + }, + { + "appid": 1187640, + "normalized_name": "totemic" + }, + { + "appid": 1187650, + "normalized_name": "blaze revolutions" + }, + { + "appid": 1187740, + "normalized_name": "infinitebeat" + }, + { + "appid": 1187780, + "normalized_name": "displace" + }, + { + "appid": 1187790, + "normalized_name": "fullchoke clay shooting vr" + }, + { + "appid": 1187830, + "normalized_name": "incredible dracula witches' curse" + }, + { + "appid": 1187840, + "normalized_name": "vesper zero light" + }, + { + "appid": 1187850, + "normalized_name": "fairies vs bugs" + }, + { + "appid": 1187870, + "normalized_name": "forza polpo!" + }, + { + "appid": 1187900, + "normalized_name": "narwhar project hornwhale" + }, + { + "appid": 1187910, + "normalized_name": "third rule of universe." + }, + { + "appid": 1187920, + "normalized_name": "countrified" + }, + { + "appid": 1187940, + "normalized_name": "is it wrong to try to pick up girls in a dungeon? infinite combate" + }, + { + "appid": 1187950, + "normalized_name": "gaijin charenji 1 kiss or kill" + }, + { + "appid": 1187990, + "normalized_name": "horribunnies" + }, + { + "appid": 1188000, + "normalized_name": "pulstario" + }, + { + "appid": 1188020, + "normalized_name": "sir smedieval" + }, + { + "appid": 1188060, + "normalized_name": "my hot beach vacation" + }, + { + "appid": 1188070, + "normalized_name": "breadhead adventure" + }, + { + "appid": 1188080, + "normalized_name": "cats are liquid a better place" + }, + { + "appid": 1188100, + "normalized_name": "dragon stone legendary archer" + }, + { + "appid": 1188140, + "normalized_name": "country road vr" + }, + { + "appid": 1188160, + "normalized_name": "ground zero texas nuclear" + }, + { + "appid": 1188250, + "normalized_name": "glowcoma chapter 1" + }, + { + "appid": 1188260, + "normalized_name": "creature card idle" + }, + { + "appid": 1188270, + "normalized_name": "the curse of feldar vale" + }, + { + "appid": 1188280, + "normalized_name": "coffee rush" + }, + { + "appid": 1188290, + "normalized_name": "cover your eyes" + }, + { + "appid": 1188310, + "normalized_name": "mini island" + }, + { + "appid": 1188320, + "normalized_name": "minion mail" + }, + { + "appid": 1188330, + "normalized_name": "classic sudoku" + }, + { + "appid": 1188400, + "normalized_name": "warrior spirit" + }, + { + "appid": 1188420, + "normalized_name": "the lost throne 失落的王座" + }, + { + "appid": 1188430, + "normalized_name": "deep in the forest" + }, + { + "appid": 1188460, + "normalized_name": "gravity escape" + }, + { + "appid": 1188490, + "normalized_name": "vainplanet" + }, + { + "appid": 1188520, + "normalized_name": "hide and seek" + }, + { + "appid": 1188540, + "normalized_name": "apex aim trainer" + }, + { + "appid": 1188580, + "normalized_name": "classic snake adventures" + }, + { + "appid": 1188590, + "normalized_name": "云游志 the clouds travel notes" + }, + { + "appid": 1188630, + "normalized_name": "twitchoos run socks & stream" + }, + { + "appid": 1188660, + "normalized_name": "world of relish" + }, + { + "appid": 1188670, + "normalized_name": "castle commander" + }, + { + "appid": 1188690, + "normalized_name": "speed masters asd" + }, + { + "appid": 1188710, + "normalized_name": "bloodholic" + }, + { + "appid": 1188720, + "normalized_name": "drunken wrestlers" + }, + { + "appid": 1188760, + "normalized_name": "jef" + }, + { + "appid": 1188800, + "normalized_name": "in the service of mrs. claus" + }, + { + "appid": 1188850, + "normalized_name": "cyberpunk bar sim" + }, + { + "appid": 1188860, + "normalized_name": "人体图谱" + }, + { + "appid": 1188870, + "normalized_name": "earthbreakers" + }, + { + "appid": 1188900, + "normalized_name": "fire tonight" + }, + { + "appid": 1188930, + "normalized_name": "chrono ark" + }, + { + "appid": 1188950, + "normalized_name": "airhack hacking" + }, + { + "appid": 1188970, + "normalized_name": "ether loop" + }, + { + "appid": 1188990, + "normalized_name": "wrest" + }, + { + "appid": 1189020, + "normalized_name": "loga unexpected adventure" + }, + { + "appid": 1189030, + "normalized_name": "dodgeball unleashed" + }, + { + "appid": 1189040, + "normalized_name": "smart girl christmas" + }, + { + "appid": 1189050, + "normalized_name": "hot and lovely" + }, + { + "appid": 1189060, + "normalized_name": "the floor is still really cheap lava" + }, + { + "appid": 1189070, + "normalized_name": "slimy sextet" + }, + { + "appid": 1189080, + "normalized_name": "squirrel legacy" + }, + { + "appid": 1189090, + "normalized_name": "microscope madness" + }, + { + "appid": 1189100, + "normalized_name": "rise of the white sun" + }, + { + "appid": 1189120, + "normalized_name": "posibility" + }, + { + "appid": 1189130, + "normalized_name": "fright animatronics 2" + }, + { + "appid": 1189160, + "normalized_name": "re.poly server" + }, + { + "appid": 1189190, + "normalized_name": "battle map studio" + }, + { + "appid": 1189200, + "normalized_name": "moonlight basket" + }, + { + "appid": 1189210, + "normalized_name": "yuna and other troubles" + }, + { + "appid": 1189220, + "normalized_name": "exophobia" + }, + { + "appid": 1189230, + "normalized_name": "door in the woods" + }, + { + "appid": 1189250, + "normalized_name": "super space shooter arena" + }, + { + "appid": 1189290, + "normalized_name": "the black grimoire cursebreaker" + }, + { + "appid": 1189320, + "normalized_name": "to ash and ember" + }, + { + "appid": 1189350, + "normalized_name": "town defence" + }, + { + "appid": 1189360, + "normalized_name": "art of beauties" + }, + { + "appid": 1189380, + "normalized_name": "beat or die the minigames" + }, + { + "appid": 1189440, + "normalized_name": "venusblood frontier international" + }, + { + "appid": 1189460, + "normalized_name": "clickcells office lady" + }, + { + "appid": 1189470, + "normalized_name": "fox trot over run" + }, + { + "appid": 1189490, + "normalized_name": "觅长生" + }, + { + "appid": 1189520, + "normalized_name": "street hoop" + }, + { + "appid": 1189590, + "normalized_name": "deus ex machina stage zero" + }, + { + "appid": 1189600, + "normalized_name": "漫步者 the walker" + }, + { + "appid": 1189630, + "normalized_name": "俠之道(pathofwuxia)" + }, + { + "appid": 1189650, + "normalized_name": "post scriptum ctg collectible token game" + }, + { + "appid": 1189660, + "normalized_name": "草原恋语 蒙古族民俗非遗传承" + }, + { + "appid": 1189680, + "normalized_name": "degraman act i. vincent" + }, + { + "appid": 1189730, + "normalized_name": "tales of tomorrow experiment" + }, + { + "appid": 1189740, + "normalized_name": "juken jigoku | 受験地獄" + }, + { + "appid": 1189780, + "normalized_name": "wallachia reign of dracula" + }, + { + "appid": 1189800, + "normalized_name": "bleeding edge" + }, + { + "appid": 1189820, + "normalized_name": "lightale" + }, + { + "appid": 1189850, + "normalized_name": "鶴鄉戀旅" + }, + { + "appid": 1190000, + "normalized_name": "car mechanic simulator 2021" + }, + { + "appid": 1190060, + "normalized_name": "the last deathbound" + }, + { + "appid": 1190110, + "normalized_name": "h sniper middle east" + }, + { + "appid": 1190120, + "normalized_name": "good doktor" + }, + { + "appid": 1190130, + "normalized_name": "araha curse of yieun island" + }, + { + "appid": 1190150, + "normalized_name": "paint warfare" + }, + { + "appid": 1190160, + "normalized_name": "lit bend the light" + }, + { + "appid": 1190180, + "normalized_name": "arrow" + }, + { + "appid": 1190190, + "normalized_name": "nick reckless in the curse of the lost cause" + }, + { + "appid": 1190230, + "normalized_name": "robber's horror" + }, + { + "appid": 1190270, + "normalized_name": "long count" + }, + { + "appid": 1190310, + "normalized_name": "dancing arrow beat smash" + }, + { + "appid": 1190320, + "normalized_name": "food factory vr" + }, + { + "appid": 1190370, + "normalized_name": "tank hurricane" + }, + { + "appid": 1190380, + "normalized_name": "race race racer" + }, + { + "appid": 1190400, + "normalized_name": "the wonderful 101" + }, + { + "appid": 1190410, + "normalized_name": "crazy city" + }, + { + "appid": 1190480, + "normalized_name": "heebie jeebies the roller coaster" + }, + { + "appid": 1190540, + "normalized_name": "soona" + }, + { + "appid": 1190560, + "normalized_name": "scriptum vr the neighbor's house escape room" + }, + { + "appid": 1190590, + "normalized_name": "ice cream fantasy" + }, + { + "appid": 1190600, + "normalized_name": "captain hardcore" + }, + { + "appid": 1190630, + "normalized_name": "project j" + }, + { + "appid": 1190640, + "normalized_name": "memory match saga" + }, + { + "appid": 1190690, + "normalized_name": "iox" + }, + { + "appid": 1190710, + "normalized_name": "capsuleman" + }, + { + "appid": 1190720, + "normalized_name": "phantom hills" + }, + { + "appid": 1190740, + "normalized_name": "ruff 'n' tumble mayhem" + }, + { + "appid": 1190760, + "normalized_name": "tales of the deck" + }, + { + "appid": 1190780, + "normalized_name": "doom in the dark 2" + }, + { + "appid": 1190810, + "normalized_name": "ghetto conspiracy" + }, + { + "appid": 1190820, + "normalized_name": "booobjz" + }, + { + "appid": 1190840, + "normalized_name": "boomer remover" + }, + { + "appid": 1190900, + "normalized_name": "legend of the 9 swords side story" + }, + { + "appid": 1190910, + "normalized_name": "defend them !" + }, + { + "appid": 1190930, + "normalized_name": "scribbledude" + }, + { + "appid": 1190970, + "normalized_name": "house flipper 2" + }, + { + "appid": 1190980, + "normalized_name": "hoarding simulator" + }, + { + "appid": 1190990, + "normalized_name": "colormeleons" + }, + { + "appid": 1191000, + "normalized_name": "pick your poison" + }, + { + "appid": 1191070, + "normalized_name": "[chilla's art] yuki onna | 雪女" + }, + { + "appid": 1191080, + "normalized_name": "sanction" + }, + { + "appid": 1191100, + "normalized_name": "hentai waifu" + }, + { + "appid": 1191120, + "normalized_name": "growing up" + }, + { + "appid": 1191210, + "normalized_name": "seek girl ⅲ" + }, + { + "appid": 1191250, + "normalized_name": "sea salt" + }, + { + "appid": 1191260, + "normalized_name": "touken ranbu warriors" + }, + { + "appid": 1191270, + "normalized_name": "arzt simulator" + }, + { + "appid": 1191280, + "normalized_name": "12 labours of hercules x greed for speed" + }, + { + "appid": 1191330, + "normalized_name": "inferna" + }, + { + "appid": 1191420, + "normalized_name": "fake lay" + }, + { + "appid": 1191430, + "normalized_name": "help the minotaur" + }, + { + "appid": 1191440, + "normalized_name": "forgotten ways" + }, + { + "appid": 1191450, + "normalized_name": "plasmoid" + }, + { + "appid": 1191510, + "normalized_name": "pixhunter" + }, + { + "appid": 1191540, + "normalized_name": "streamer shall not pass!" + }, + { + "appid": 1191550, + "normalized_name": "fifo's night" + }, + { + "appid": 1191570, + "normalized_name": "hero soul i want to be a hero!" + }, + { + "appid": 1191580, + "normalized_name": "nexomon" + }, + { + "appid": 1191590, + "normalized_name": "end of war 1945" + }, + { + "appid": 1191610, + "normalized_name": "memory" + }, + { + "appid": 1191620, + "normalized_name": "spidersaurs" + }, + { + "appid": 1191630, + "normalized_name": "shantae and the seven sirens" + }, + { + "appid": 1191650, + "normalized_name": "time travel trainer" + }, + { + "appid": 1191660, + "normalized_name": "rebel transmute" + }, + { + "appid": 1191680, + "normalized_name": "境界 dice&fighter" + }, + { + "appid": 1191690, + "normalized_name": "skull head world" + }, + { + "appid": 1191700, + "normalized_name": "el culto edición completa" + }, + { + "appid": 1191730, + "normalized_name": "hogvalord" + }, + { + "appid": 1191770, + "normalized_name": "混世萌王喵霸霸 cute chaos demon nyanbaba" + }, + { + "appid": 1191800, + "normalized_name": "city block builder" + }, + { + "appid": 1191820, + "normalized_name": "spot the differences 2020 | 大家来找茬 2020" + }, + { + "appid": 1191830, + "normalized_name": "4story 2" + }, + { + "appid": 1191840, + "normalized_name": "legend creatures(传奇生物)" + }, + { + "appid": 1191860, + "normalized_name": "memody sindrel song" + }, + { + "appid": 1191870, + "normalized_name": "goblin times" + }, + { + "appid": 1191900, + "normalized_name": "say no! more" + }, + { + "appid": 1191930, + "normalized_name": "mcas simulation" + }, + { + "appid": 1191940, + "normalized_name": "deathtrap dungeon the interactive video adventure" + }, + { + "appid": 1191960, + "normalized_name": "detective simulator" + }, + { + "appid": 1192010, + "normalized_name": "open country" + }, + { + "appid": 1192020, + "normalized_name": "cyber fight challenge" + }, + { + "appid": 1192060, + "normalized_name": "virus l" + }, + { + "appid": 1192070, + "normalized_name": "trianglestorm" + }, + { + "appid": 1192160, + "normalized_name": "section six" + }, + { + "appid": 1192230, + "normalized_name": "octopus city blues" + }, + { + "appid": 1192260, + "normalized_name": "labyrinths of the world the wild side collector's" + }, + { + "appid": 1192270, + "normalized_name": "royal detective the last charm collector's" + }, + { + "appid": 1192310, + "normalized_name": "kawaii girls puzzle" + }, + { + "appid": 1192380, + "normalized_name": "totally baseball" + }, + { + "appid": 1192410, + "normalized_name": "room escape '1053'" + }, + { + "appid": 1192420, + "normalized_name": "shuttle commander" + }, + { + "appid": 1192440, + "normalized_name": "the monster breeder" + }, + { + "appid": 1192490, + "normalized_name": "burning sun" + }, + { + "appid": 1192500, + "normalized_name": "grafi christmas" + }, + { + "appid": 1192540, + "normalized_name": "love me forever" + }, + { + "appid": 1192550, + "normalized_name": "master of wills" + }, + { + "appid": 1192580, + "normalized_name": "nyanco dream" + }, + { + "appid": 1192610, + "normalized_name": "anime redemption" + }, + { + "appid": 1192630, + "normalized_name": "23ul" + }, + { + "appid": 1192640, + "normalized_name": "mosaique neko waifus" + }, + { + "appid": 1192700, + "normalized_name": "void eclipse" + }, + { + "appid": 1192730, + "normalized_name": "adult sheriff" + }, + { + "appid": 1192740, + "normalized_name": "woman's body for adults 2" + }, + { + "appid": 1192810, + "normalized_name": "romancelvania" + }, + { + "appid": 1192830, + "normalized_name": "the last roman village 2" + }, + { + "appid": 1192840, + "normalized_name": "the shenanigans of cherry and trix" + }, + { + "appid": 1192860, + "normalized_name": "winter snow | 冬雪" + }, + { + "appid": 1192880, + "normalized_name": "nostalgiarian" + }, + { + "appid": 1192890, + "normalized_name": "shoot them" + }, + { + "appid": 1192900, + "normalized_name": "iron rebellion" + }, + { + "appid": 1192910, + "normalized_name": "食用系少女:美食內戰 food girls:civil war" + }, + { + "appid": 1192940, + "normalized_name": "monkey go happy" + }, + { + "appid": 1192950, + "normalized_name": "砌墙 qi qiang" + }, + { + "appid": 1193040, + "normalized_name": "eternal battlefield" + }, + { + "appid": 1193070, + "normalized_name": "zom nom" + }, + { + "appid": 1193080, + "normalized_name": "abyss" + }, + { + "appid": 1193090, + "normalized_name": "bus world" + }, + { + "appid": 1193120, + "normalized_name": "the battles of spwak 3" + }, + { + "appid": 1193160, + "normalized_name": "bomber fox" + }, + { + "appid": 1193170, + "normalized_name": "deficit" + }, + { + "appid": 1193200, + "normalized_name": "k37 d" + }, + { + "appid": 1193210, + "normalized_name": "hunt the muglump" + }, + { + "appid": 1193290, + "normalized_name": "wonder cat" + }, + { + "appid": 1193300, + "normalized_name": "axe cop" + }, + { + "appid": 1193330, + "normalized_name": "together a wish no one remembers" + }, + { + "appid": 1193340, + "normalized_name": "zelter" + }, + { + "appid": 1193350, + "normalized_name": "生物知识格斗大赛" + }, + { + "appid": 1193380, + "normalized_name": "the visitors" + }, + { + "appid": 1193430, + "normalized_name": "vapormaze" + }, + { + "appid": 1193450, + "normalized_name": "stripper anya christmas special" + }, + { + "appid": 1193460, + "normalized_name": "bunny sudoku" + }, + { + "appid": 1193510, + "normalized_name": "antarctic heritage trust" + }, + { + "appid": 1193520, + "normalized_name": "space climber" + }, + { + "appid": 1193530, + "normalized_name": "black smith" + }, + { + "appid": 1193550, + "normalized_name": "ruthless conquest" + }, + { + "appid": 1193560, + "normalized_name": "roast party" + }, + { + "appid": 1193590, + "normalized_name": "abomi nation" + }, + { + "appid": 1193600, + "normalized_name": "meandering fiend" + }, + { + "appid": 1193620, + "normalized_name": "the aftermath unnatural selection" + }, + { + "appid": 1193630, + "normalized_name": "锋芒录" + }, + { + "appid": 1193660, + "normalized_name": "jack o lantern covers of darkness" + }, + { + "appid": 1193680, + "normalized_name": "alien invasion 3d part 2" + }, + { + "appid": 1193730, + "normalized_name": "piece of mind" + }, + { + "appid": 1193760, + "normalized_name": "warriorb prologue" + }, + { + "appid": 1193780, + "normalized_name": "tower climb" + }, + { + "appid": 1193790, + "normalized_name": "unherd" + }, + { + "appid": 1193830, + "normalized_name": "jeremiah" + }, + { + "appid": 1193900, + "normalized_name": "island marauder" + }, + { + "appid": 1193930, + "normalized_name": "ping pong space retro tennis" + }, + { + "appid": 1193950, + "normalized_name": "dashbot ninja" + }, + { + "appid": 1193990, + "normalized_name": "trapped" + }, + { + "appid": 1194050, + "normalized_name": "orange cast sci fi space action game" + }, + { + "appid": 1194100, + "normalized_name": "musical aim trainer" + }, + { + "appid": 1194130, + "normalized_name": "paradise away" + }, + { + "appid": 1194140, + "normalized_name": "blind justice" + }, + { + "appid": 1194160, + "normalized_name": "one eyed lee and the dinner party" + }, + { + "appid": 1194170, + "normalized_name": "foe frenzy" + }, + { + "appid": 1194190, + "normalized_name": "the ugly christmas sweater game" + }, + { + "appid": 1194200, + "normalized_name": "gem jam" + }, + { + "appid": 1194220, + "normalized_name": "zombie tag royale" + }, + { + "appid": 1194230, + "normalized_name": "sword story" + }, + { + "appid": 1194330, + "normalized_name": "drone combat" + }, + { + "appid": 1194380, + "normalized_name": "volleyball fever flat" + }, + { + "appid": 1194390, + "normalized_name": "the land of crows" + }, + { + "appid": 1194480, + "normalized_name": "cursed gem" + }, + { + "appid": 1194490, + "normalized_name": "dethcube" + }, + { + "appid": 1194520, + "normalized_name": "terra incognita" + }, + { + "appid": 1194560, + "normalized_name": "单身狗的最后机会" + }, + { + "appid": 1194590, + "normalized_name": "star dynasties" + }, + { + "appid": 1194600, + "normalized_name": "bronze hoof" + }, + { + "appid": 1194610, + "normalized_name": "knights of the temple infernal crusade" + }, + { + "appid": 1194620, + "normalized_name": "33 rounds" + }, + { + "appid": 1194630, + "normalized_name": "the dark pictures anthology little hope" + }, + { + "appid": 1194650, + "normalized_name": "reframe" + }, + { + "appid": 1194670, + "normalized_name": "fairyfail" + }, + { + "appid": 1194680, + "normalized_name": "zookeeper simulator" + }, + { + "appid": 1194700, + "normalized_name": "house flipper vr" + }, + { + "appid": 1194710, + "normalized_name": "playground heroes" + }, + { + "appid": 1194720, + "normalized_name": "no school no rules" + }, + { + "appid": 1194730, + "normalized_name": "space routine" + }, + { + "appid": 1194740, + "normalized_name": "metaware high school (demo)" + }, + { + "appid": 1194750, + "normalized_name": "neko ghost jump!" + }, + { + "appid": 1194790, + "normalized_name": "kessler effect" + }, + { + "appid": 1194800, + "normalized_name": "占星师astrologer" + }, + { + "appid": 1194810, + "normalized_name": "meet your maker" + }, + { + "appid": 1194830, + "normalized_name": "master bladesmith" + }, + { + "appid": 1194840, + "normalized_name": "frog fractions game of the decade" + }, + { + "appid": 1194870, + "normalized_name": "winter worm summer grass" + }, + { + "appid": 1194890, + "normalized_name": "star of lemutia reborn" + }, + { + "appid": 1194910, + "normalized_name": "celestial" + }, + { + "appid": 1194930, + "normalized_name": "blackthorn arena" + }, + { + "appid": 1194940, + "normalized_name": "tower of shades" + }, + { + "appid": 1194970, + "normalized_name": "lem amaze!" + }, + { + "appid": 1195020, + "normalized_name": "guardians of the ashes" + }, + { + "appid": 1195070, + "normalized_name": "ninja jajamaru the great yokai battle + hell" + }, + { + "appid": 1195080, + "normalized_name": "佣兵地下城/hell warriors" + }, + { + "appid": 1195090, + "normalized_name": "hippoboar rancher ~かばいの牧場物語~" + }, + { + "appid": 1195140, + "normalized_name": "urg" + }, + { + "appid": 1195170, + "normalized_name": "rebound ball" + }, + { + "appid": 1195220, + "normalized_name": "gunman and the witch" + }, + { + "appid": 1195230, + "normalized_name": "darkness and flame enemy in reflection collector's" + }, + { + "appid": 1195250, + "normalized_name": "gateball vr" + }, + { + "appid": 1195290, + "normalized_name": "moncage" + }, + { + "appid": 1195340, + "normalized_name": "hermes rescue mission" + }, + { + "appid": 1195350, + "normalized_name": "your little story winter" + }, + { + "appid": 1195360, + "normalized_name": "re turn one way trip" + }, + { + "appid": 1195380, + "normalized_name": "melvin finds home" + }, + { + "appid": 1195410, + "normalized_name": "trial of the gods siralim ccg" + }, + { + "appid": 1195420, + "normalized_name": "filthy animals | heist simulator" + }, + { + "appid": 1195430, + "normalized_name": "fight high" + }, + { + "appid": 1195450, + "normalized_name": "habitking rpg" + }, + { + "appid": 1195460, + "normalized_name": "last year" + }, + { + "appid": 1195530, + "normalized_name": "the tawashi" + }, + { + "appid": 1195550, + "normalized_name": "gamedev simulator" + }, + { + "appid": 1195560, + "normalized_name": "alek the lost kingdom" + }, + { + "appid": 1195570, + "normalized_name": "dark invasion vr" + }, + { + "appid": 1195610, + "normalized_name": "march of soldiers" + }, + { + "appid": 1195620, + "normalized_name": "ocean drive challenge" + }, + { + "appid": 1195710, + "normalized_name": "monster viator" + }, + { + "appid": 1195820, + "normalized_name": "devil threats" + }, + { + "appid": 1195830, + "normalized_name": "副作用之瞳 tlicolity eyes" + }, + { + "appid": 1195870, + "normalized_name": "零界战线" + }, + { + "appid": 1195910, + "normalized_name": "dead dreams" + }, + { + "appid": 1195920, + "normalized_name": "solar panic utter distress" + }, + { + "appid": 1196030, + "normalized_name": "the mystic" + }, + { + "appid": 1196080, + "normalized_name": "space simulation toolkit" + }, + { + "appid": 1196090, + "normalized_name": "scars above" + }, + { + "appid": 1196130, + "normalized_name": "top run" + }, + { + "appid": 1196160, + "normalized_name": "british gangsters" + }, + { + "appid": 1196170, + "normalized_name": "gang district" + }, + { + "appid": 1196190, + "normalized_name": "kumo the little robot" + }, + { + "appid": 1196230, + "normalized_name": "book of aliens" + }, + { + "appid": 1196240, + "normalized_name": "wizardpunk" + }, + { + "appid": 1196260, + "normalized_name": "draft day sports pro basketball 2020" + }, + { + "appid": 1196280, + "normalized_name": "pussy puzzle" + }, + { + "appid": 1196300, + "normalized_name": "rtx sweeper" + }, + { + "appid": 1196310, + "normalized_name": "fantasy grounds vtt" + }, + { + "appid": 1196320, + "normalized_name": "blood scrolls" + }, + { + "appid": 1196350, + "normalized_name": "atrofil the key" + }, + { + "appid": 1196390, + "normalized_name": "fairy godmother stories cinderella collector's" + }, + { + "appid": 1196400, + "normalized_name": "mystery case files black crown collector's" + }, + { + "appid": 1196440, + "normalized_name": "potion party" + }, + { + "appid": 1196450, + "normalized_name": "stop sign vr tools" + }, + { + "appid": 1196470, + "normalized_name": "we are football" + }, + { + "appid": 1196500, + "normalized_name": "party arena board game battler" + }, + { + "appid": 1196520, + "normalized_name": "the secret of hutton grammar school" + }, + { + "appid": 1196550, + "normalized_name": "days gone by" + }, + { + "appid": 1196570, + "normalized_name": "suzunaan on fire" + }, + { + "appid": 1196580, + "normalized_name": "the pale city" + }, + { + "appid": 1196590, + "normalized_name": "resident evil village" + }, + { + "appid": 1196600, + "normalized_name": "biohazard village z version" + }, + { + "appid": 1196620, + "normalized_name": "佣兵战歌" + }, + { + "appid": 1196630, + "normalized_name": "nexomon extinction" + }, + { + "appid": 1196660, + "normalized_name": "red sun raiders" + }, + { + "appid": 1196690, + "normalized_name": "octafight" + }, + { + "appid": 1196750, + "normalized_name": "hentai match fantasy stories" + }, + { + "appid": 1196760, + "normalized_name": "disposable heroes 2 the curse that killed a queen" + }, + { + "appid": 1196800, + "normalized_name": "taninani" + }, + { + "appid": 1196880, + "normalized_name": "world of conquerors origins" + }, + { + "appid": 1196890, + "normalized_name": "puzzle tower" + }, + { + "appid": 1196920, + "normalized_name": "volleybrawl" + }, + { + "appid": 1196940, + "normalized_name": "particulate" + }, + { + "appid": 1196970, + "normalized_name": "vile matter" + }, + { + "appid": 1196990, + "normalized_name": "faith" + }, + { + "appid": 1197010, + "normalized_name": "tal wizard's adventures" + }, + { + "appid": 1197020, + "normalized_name": "tale of the gallant jiraiya" + }, + { + "appid": 1197030, + "normalized_name": "mystic pillars a story based puzzle game" + }, + { + "appid": 1197060, + "normalized_name": "fungi" + }, + { + "appid": 1197100, + "normalized_name": "red mercenary" + }, + { + "appid": 1197110, + "normalized_name": "advancity" + }, + { + "appid": 1197150, + "normalized_name": "em a li" + }, + { + "appid": 1197160, + "normalized_name": "code 3 police response" + }, + { + "appid": 1197180, + "normalized_name": "spider queen cave" + }, + { + "appid": 1197210, + "normalized_name": "hentaiteachers" + }, + { + "appid": 1197220, + "normalized_name": "another try" + }, + { + "appid": 1197230, + "normalized_name": "biba`s adventures — hardcore platformer" + }, + { + "appid": 1197240, + "normalized_name": "r \\block" + }, + { + "appid": 1197260, + "normalized_name": "the perfect tower ii" + }, + { + "appid": 1197280, + "normalized_name": "cyber pussy 2020" + }, + { + "appid": 1197320, + "normalized_name": "a long stroll" + }, + { + "appid": 1197340, + "normalized_name": "dead territory" + }, + { + "appid": 1197350, + "normalized_name": "santa's big sack" + }, + { + "appid": 1197360, + "normalized_name": "the santa challenge" + }, + { + "appid": 1197370, + "normalized_name": "suite 776" + }, + { + "appid": 1197380, + "normalized_name": "flashover megasector" + }, + { + "appid": 1197390, + "normalized_name": "robot island" + }, + { + "appid": 1197440, + "normalized_name": "驱魔道人2 broken spell" + }, + { + "appid": 1197480, + "normalized_name": "cogret" + }, + { + "appid": 1197490, + "normalized_name": "sliding puzzle collection" + }, + { + "appid": 1197500, + "normalized_name": "groove runner" + }, + { + "appid": 1197520, + "normalized_name": "familia" + }, + { + "appid": 1197530, + "normalized_name": "planet modular td" + }, + { + "appid": 1197570, + "normalized_name": "until we die" + }, + { + "appid": 1197590, + "normalized_name": "waifu uncovered" + }, + { + "appid": 1197620, + "normalized_name": "dragonridevr" + }, + { + "appid": 1197670, + "normalized_name": "robin hood country heroes" + }, + { + "appid": 1197690, + "normalized_name": "of mist and shadows" + }, + { + "appid": 1197700, + "normalized_name": "hermes war of the gods" + }, + { + "appid": 1197710, + "normalized_name": "golden rails tales of the wild west" + }, + { + "appid": 1197730, + "normalized_name": "delayedsun" + }, + { + "appid": 1197750, + "normalized_name": "after gloom" + }, + { + "appid": 1197770, + "normalized_name": "lilly knight and the three cities of lust" + }, + { + "appid": 1197790, + "normalized_name": "arcade attack anthology" + }, + { + "appid": 1197820, + "normalized_name": "craftlands workshoppe" + }, + { + "appid": 1197840, + "normalized_name": "the incredible friends" + }, + { + "appid": 1197870, + "normalized_name": "underworld" + }, + { + "appid": 1197960, + "normalized_name": "gravity balls" + }, + { + "appid": 1197990, + "normalized_name": "shoot push portals" + }, + { + "appid": 1198020, + "normalized_name": "braverz" + }, + { + "appid": 1198040, + "normalized_name": "wide ocean big jacket" + }, + { + "appid": 1198050, + "normalized_name": "war remains dan carlin presents an immersive memory" + }, + { + "appid": 1198060, + "normalized_name": "christmas stories enchanted express collector's" + }, + { + "appid": 1198070, + "normalized_name": "the christmas spirit grimm tales collector's" + }, + { + "appid": 1198080, + "normalized_name": "westminster darkly" + }, + { + "appid": 1198090, + "normalized_name": "the legend of heroes trails of cold steel iv" + }, + { + "appid": 1198110, + "normalized_name": "fantasy realm td" + }, + { + "appid": 1198210, + "normalized_name": "dogworld" + }, + { + "appid": 1198240, + "normalized_name": "danger city" + }, + { + "appid": 1198250, + "normalized_name": "pirates on deck vr" + }, + { + "appid": 1198260, + "normalized_name": "beneath steel clouds" + }, + { + "appid": 1198270, + "normalized_name": "the button witch" + }, + { + "appid": 1198290, + "normalized_name": "space block buster" + }, + { + "appid": 1198310, + "normalized_name": "mr.king luo!don't be kidding" + }, + { + "appid": 1198320, + "normalized_name": "dotokoi / 像素男友" + }, + { + "appid": 1198340, + "normalized_name": "summoner vr" + }, + { + "appid": 1198370, + "normalized_name": "protect grass" + }, + { + "appid": 1198380, + "normalized_name": "cowboy yakuza" + }, + { + "appid": 1198390, + "normalized_name": "kawaii girl" + }, + { + "appid": 1198400, + "normalized_name": "节奏快打/rhythm fighter" + }, + { + "appid": 1198440, + "normalized_name": "the burning descent" + }, + { + "appid": 1198450, + "normalized_name": "the secret order 8 return to the buried kingdom" + }, + { + "appid": 1198490, + "normalized_name": "all that remains part 1" + }, + { + "appid": 1198510, + "normalized_name": "paperball" + }, + { + "appid": 1198520, + "normalized_name": "hro adventures of a humanoid resources officer" + }, + { + "appid": 1198570, + "normalized_name": "the amazing t.k's suburban nightmares" + }, + { + "appid": 1198590, + "normalized_name": "stonefly" + }, + { + "appid": 1198600, + "normalized_name": "pizza time explosion" + }, + { + "appid": 1198630, + "normalized_name": "customer cums first!" + }, + { + "appid": 1198690, + "normalized_name": "reborn survival" + }, + { + "appid": 1198700, + "normalized_name": "chained a victorian nightmare" + }, + { + "appid": 1198710, + "normalized_name": "typhoon unit ~ butterfly requiem" + }, + { + "appid": 1198730, + "normalized_name": "hentai police" + }, + { + "appid": 1198740, + "normalized_name": "colony siege" + }, + { + "appid": 1198760, + "normalized_name": "league of pixels 2d moba" + }, + { + "appid": 1198770, + "normalized_name": "syn" + }, + { + "appid": 1198810, + "normalized_name": "wolf and pigs" + }, + { + "appid": 1198820, + "normalized_name": "monster girl garden" + }, + { + "appid": 1198850, + "normalized_name": "how to build a magnificent kingdom" + }, + { + "appid": 1198860, + "normalized_name": "snowballs" + }, + { + "appid": 1198900, + "normalized_name": "the underground king" + }, + { + "appid": 1198920, + "normalized_name": "hordebreak" + }, + { + "appid": 1198970, + "normalized_name": "i am jesus christ" + }, + { + "appid": 1199010, + "normalized_name": "tower of god one wish" + }, + { + "appid": 1199030, + "normalized_name": "tainted grail conquest" + }, + { + "appid": 1199050, + "normalized_name": "crash autodrive" + }, + { + "appid": 1199060, + "normalized_name": "coin pickers" + }, + { + "appid": 1199110, + "normalized_name": "unexpected sequence" + }, + { + "appid": 1199140, + "normalized_name": "oh jeez oh no my rabbits are gone!" + }, + { + "appid": 1199150, + "normalized_name": "raccoon the orc invasion" + }, + { + "appid": 1199170, + "normalized_name": "gravity escape from the maze" + }, + { + "appid": 1199180, + "normalized_name": "edge of galaxy" + }, + { + "appid": 1199200, + "normalized_name": "canadian robot racing league" + }, + { + "appid": 1199220, + "normalized_name": "an odyssey echoes of war" + }, + { + "appid": 1199240, + "normalized_name": "galactic asteroids patrol" + }, + { + "appid": 1199360, + "normalized_name": "rat racer" + }, + { + "appid": 1199370, + "normalized_name": "gleamlight" + }, + { + "appid": 1199420, + "normalized_name": "bounce knight" + }, + { + "appid": 1199450, + "normalized_name": "dark raider" + }, + { + "appid": 1199520, + "normalized_name": "王牌班主任" + }, + { + "appid": 1199540, + "normalized_name": "spartan commander realtime" + }, + { + "appid": 1199560, + "normalized_name": "adrift arena" + }, + { + "appid": 1199610, + "normalized_name": "broken of darkness" + }, + { + "appid": 1199620, + "normalized_name": "unarmed area" + }, + { + "appid": 1199650, + "normalized_name": "cube smash" + }, + { + "appid": 1199660, + "normalized_name": "the answer is 42" + }, + { + "appid": 1199690, + "normalized_name": "cold war minister" + }, + { + "appid": 1199740, + "normalized_name": "piñata attack" + }, + { + "appid": 1199760, + "normalized_name": "light fairytale episode 2" + }, + { + "appid": 1199770, + "normalized_name": "taskforce gamma 13 an scp tale" + }, + { + "appid": 1199780, + "normalized_name": "santa's holiday" + }, + { + "appid": 1199790, + "normalized_name": "the shadow society" + }, + { + "appid": 1199800, + "normalized_name": "the winter's deal frosty" + }, + { + "appid": 1199830, + "normalized_name": "how to hack in?" + }, + { + "appid": 1199900, + "normalized_name": "hope's farm" + }, + { + "appid": 1199910, + "normalized_name": "s.w.a.n. chernobyl unexplored" + }, + { + "appid": 1199930, + "normalized_name": "prens cavid the game" + }, + { + "appid": 1199940, + "normalized_name": "the universe" + }, + { + "appid": 1199980, + "normalized_name": "mirrors of fear" + }, + { + "appid": 1200060, + "normalized_name": "乔乔的铁拳 joe's fists" + }, + { + "appid": 1200090, + "normalized_name": "dimension of dreams" + }, + { + "appid": 1200110, + "normalized_name": "メモリーズオフ innocent fille for dearest" + }, + { + "appid": 1200120, + "normalized_name": "armorgeddon" + }, + { + "appid": 1200140, + "normalized_name": "4x4 off road challenge" + }, + { + "appid": 1200150, + "normalized_name": "hyperwheel overdrive" + }, + { + "appid": 1200160, + "normalized_name": "pivot" + }, + { + "appid": 1200180, + "normalized_name": "fly fly tank" + }, + { + "appid": 1200200, + "normalized_name": "sin chess" + }, + { + "appid": 1200220, + "normalized_name": "fishing adventure vr" + }, + { + "appid": 1200230, + "normalized_name": "ludus" + }, + { + "appid": 1200250, + "normalized_name": "the time of awakening" + }, + { + "appid": 1200290, + "normalized_name": "flymanmissile" + }, + { + "appid": 1200300, + "normalized_name": "comet golf" + }, + { + "appid": 1200330, + "normalized_name": "strategic mind blitzkrieg" + }, + { + "appid": 1200350, + "normalized_name": "dead ground arcade" + }, + { + "appid": 1200400, + "normalized_name": "guardians of rings" + }, + { + "appid": 1200420, + "normalized_name": "awesome pea 2" + }, + { + "appid": 1200430, + "normalized_name": "sick way" + }, + { + "appid": 1200450, + "normalized_name": "hello player" + }, + { + "appid": 1200520, + "normalized_name": "ascent free roaming vr experience" + }, + { + "appid": 1200570, + "normalized_name": "acolony" + }, + { + "appid": 1200580, + "normalized_name": "one gun guy" + }, + { + "appid": 1200600, + "normalized_name": "nine circles of hell" + }, + { + "appid": 1200630, + "normalized_name": "fright" + }, + { + "appid": 1200650, + "normalized_name": "the disguiser of fate" + }, + { + "appid": 1200660, + "normalized_name": "my home vr" + }, + { + "appid": 1200700, + "normalized_name": "i have lived" + }, + { + "appid": 1200710, + "normalized_name": "badlads" + }, + { + "appid": 1200720, + "normalized_name": "making*lovers" + }, + { + "appid": 1200730, + "normalized_name": "shady lewd kart" + }, + { + "appid": 1200740, + "normalized_name": "logintoshootingrangeinserver00 vr" + }, + { + "appid": 1200770, + "normalized_name": "deathground" + }, + { + "appid": 1200780, + "normalized_name": "mini island night" + }, + { + "appid": 1200790, + "normalized_name": "necrowarp" + }, + { + "appid": 1200800, + "normalized_name": "pyroninja fire dodge" + }, + { + "appid": 1200860, + "normalized_name": "the good time garden" + }, + { + "appid": 1200870, + "normalized_name": "history racers 2" + }, + { + "appid": 1200900, + "normalized_name": "crypto against all odds tower defense" + }, + { + "appid": 1200910, + "normalized_name": "pet chan" + }, + { + "appid": 1200930, + "normalized_name": "art of deception" + }, + { + "appid": 1201000, + "normalized_name": "reincarnated as a monster" + }, + { + "appid": 1201090, + "normalized_name": "abstraction" + }, + { + "appid": 1201200, + "normalized_name": "mouse mayhem shooting & racing" + }, + { + "appid": 1201220, + "normalized_name": "afterbern democralypse" + }, + { + "appid": 1201230, + "normalized_name": "immortal life" + }, + { + "appid": 1201240, + "normalized_name": "bleach brave souls" + }, + { + "appid": 1201250, + "normalized_name": "ninja run" + }, + { + "appid": 1201260, + "normalized_name": "happy engine" + }, + { + "appid": 1201270, + "normalized_name": "a space for the unbound" + }, + { + "appid": 1201280, + "normalized_name": "a space for the unbound prologue" + }, + { + "appid": 1201310, + "normalized_name": "blocks! hammer of the scots" + }, + { + "appid": 1201330, + "normalized_name": "i am your president prologue" + }, + { + "appid": 1201350, + "normalized_name": "election simulator" + }, + { + "appid": 1201370, + "normalized_name": "hammy" + }, + { + "appid": 1201380, + "normalized_name": "puck buddies" + }, + { + "appid": 1201390, + "normalized_name": "hooligan simulator" + }, + { + "appid": 1201400, + "normalized_name": "not for broadcast prologue" + }, + { + "appid": 1201450, + "normalized_name": "easy hentai" + }, + { + "appid": 1201470, + "normalized_name": "solar baron" + }, + { + "appid": 1201500, + "normalized_name": "christmas cats revenge" + }, + { + "appid": 1201520, + "normalized_name": "lrrl or rllr" + }, + { + "appid": 1201530, + "normalized_name": "abandon02" + }, + { + "appid": 1201540, + "normalized_name": "hellcard" + }, + { + "appid": 1201550, + "normalized_name": "mad experiments escape room" + }, + { + "appid": 1201620, + "normalized_name": "fast food never more" + }, + { + "appid": 1201630, + "normalized_name": "mineirinho director's cut" + }, + { + "appid": 1201650, + "normalized_name": "mystic hammer" + }, + { + "appid": 1201700, + "normalized_name": "warnament" + }, + { + "appid": 1201730, + "normalized_name": "prison of son" + }, + { + "appid": 1201750, + "normalized_name": "taurus vr" + }, + { + "appid": 1201760, + "normalized_name": "kari" + }, + { + "appid": 1201770, + "normalized_name": "colossals" + }, + { + "appid": 1201790, + "normalized_name": "long loot the king" + }, + { + "appid": 1201800, + "normalized_name": "knight swap 2" + }, + { + "appid": 1201810, + "normalized_name": "unlock the king 2" + }, + { + "appid": 1201830, + "normalized_name": "for the warp" + }, + { + "appid": 1201840, + "normalized_name": "man standing" + }, + { + "appid": 1201850, + "normalized_name": "cubic chess" + }, + { + "appid": 1201870, + "normalized_name": "drinks with abbey" + }, + { + "appid": 1201880, + "normalized_name": "the north pole" + }, + { + "appid": 1201890, + "normalized_name": "desert armor" + }, + { + "appid": 1201910, + "normalized_name": "cook dungeon" + }, + { + "appid": 1201930, + "normalized_name": "末日临晓/the dawn" + }, + { + "appid": 1201940, + "normalized_name": "project speed" + }, + { + "appid": 1201950, + "normalized_name": "lust of the apartment wives" + }, + { + "appid": 1201960, + "normalized_name": "nakadashi banzai" + }, + { + "appid": 1202070, + "normalized_name": "gachi revenge" + }, + { + "appid": 1202090, + "normalized_name": "pieces of me northbound" + }, + { + "appid": 1202100, + "normalized_name": "bodyless" + }, + { + "appid": 1202120, + "normalized_name": "fateful end true case files" + }, + { + "appid": 1202130, + "normalized_name": "starship troopers terran command" + }, + { + "appid": 1202140, + "normalized_name": "portal dungeon goblin escape" + }, + { + "appid": 1202150, + "normalized_name": "spelunking the mine match" + }, + { + "appid": 1202160, + "normalized_name": "choco pixel" + }, + { + "appid": 1202170, + "normalized_name": "barbarous tavern of emyr" + }, + { + "appid": 1202200, + "normalized_name": "paleo pines" + }, + { + "appid": 1202220, + "normalized_name": "egypt solitaire. match 2 cards" + }, + { + "appid": 1202240, + "normalized_name": "fighters wizards" + }, + { + "appid": 1202250, + "normalized_name": "luxar" + }, + { + "appid": 1202280, + "normalized_name": "slave princess sarah" + }, + { + "appid": 1202300, + "normalized_name": "eternal liiivie ep1 liiivie isolated from the world" + }, + { + "appid": 1202310, + "normalized_name": "sakura succubus" + }, + { + "appid": 1202330, + "normalized_name": "frontier" + }, + { + "appid": 1202340, + "normalized_name": "paparazzi simulator" + }, + { + "appid": 1202390, + "normalized_name": "crystal compulsion" + }, + { + "appid": 1202400, + "normalized_name": "spermula 1" + }, + { + "appid": 1202410, + "normalized_name": "midjungard" + }, + { + "appid": 1202420, + "normalized_name": "moves" + }, + { + "appid": 1202430, + "normalized_name": "treis zoes" + }, + { + "appid": 1202440, + "normalized_name": "peasant uprise" + }, + { + "appid": 1202480, + "normalized_name": "36 apples" + }, + { + "appid": 1202510, + "normalized_name": "escape the ninja room" + }, + { + "appid": 1202540, + "normalized_name": "marco & the galaxy dragon" + }, + { + "appid": 1202550, + "normalized_name": "zombie busters vr" + }, + { + "appid": 1202560, + "normalized_name": "hero index" + }, + { + "appid": 1202570, + "normalized_name": "aquarius" + }, + { + "appid": 1202580, + "normalized_name": "beyond eden dear edward" + }, + { + "appid": 1202610, + "normalized_name": "stretchbot" + }, + { + "appid": 1202630, + "normalized_name": "the walsingham files chapter 2" + }, + { + "appid": 1202640, + "normalized_name": "hentai tights" + }, + { + "appid": 1202650, + "normalized_name": "gift girl" + }, + { + "appid": 1202660, + "normalized_name": "elizabeth" + }, + { + "appid": 1202690, + "normalized_name": "sex with the devil" + }, + { + "appid": 1202710, + "normalized_name": "santa's christmas solitaire 2" + }, + { + "appid": 1202730, + "normalized_name": "nstations" + }, + { + "appid": 1202770, + "normalized_name": "kirakira stars idol project ai" + }, + { + "appid": 1202780, + "normalized_name": "theme park simulator rollercoaster paradise" + }, + { + "appid": 1202790, + "normalized_name": "lost brothers" + }, + { + "appid": 1202810, + "normalized_name": "road homeward open world" + }, + { + "appid": 1202820, + "normalized_name": "melbits world" + }, + { + "appid": 1202830, + "normalized_name": "cyberception" + }, + { + "appid": 1202870, + "normalized_name": "the heiress of sorcery" + }, + { + "appid": 1202880, + "normalized_name": "spacer project" + }, + { + "appid": 1202900, + "normalized_name": "assemble with care" + }, + { + "appid": 1202920, + "normalized_name": "fallnation" + }, + { + "appid": 1202930, + "normalized_name": "boom boomerang" + }, + { + "appid": 1202970, + "normalized_name": "mad tracks" + }, + { + "appid": 1203050, + "normalized_name": "nordic storm solitaire" + }, + { + "appid": 1203140, + "normalized_name": "raidtitans" + }, + { + "appid": 1203160, + "normalized_name": "architac" + }, + { + "appid": 1203180, + "normalized_name": "breakwaters crystal tides" + }, + { + "appid": 1203190, + "normalized_name": "wreckfest 2" + }, + { + "appid": 1203220, + "normalized_name": "naraka bladepoint" + }, + { + "appid": 1203240, + "normalized_name": "remember" + }, + { + "appid": 1203280, + "normalized_name": "brawl hopper" + }, + { + "appid": 1203310, + "normalized_name": "tiles shooter puzzle cube" + }, + { + "appid": 1203320, + "normalized_name": "fix it the handyman simulator" + }, + { + "appid": 1203330, + "normalized_name": "maid cafe ~full service~" + }, + { + "appid": 1203360, + "normalized_name": "core defense" + }, + { + "appid": 1203370, + "normalized_name": "survival classic" + }, + { + "appid": 1203390, + "normalized_name": "winter break" + }, + { + "appid": 1203400, + "normalized_name": "witchcraft pandoras box" + }, + { + "appid": 1203420, + "normalized_name": "miss neko 2" + }, + { + "appid": 1203430, + "normalized_name": "rescuers2019" + }, + { + "appid": 1203450, + "normalized_name": "mechanicalfuture" + }, + { + "appid": 1203460, + "normalized_name": "koo & yuu" + }, + { + "appid": 1203470, + "normalized_name": "earth analog" + }, + { + "appid": 1203490, + "normalized_name": "planet colonization" + }, + { + "appid": 1203500, + "normalized_name": "dorky fork" + }, + { + "appid": 1203560, + "normalized_name": "everyone dies" + }, + { + "appid": 1203570, + "normalized_name": "hexon" + }, + { + "appid": 1203580, + "normalized_name": "photo quiz animals" + }, + { + "appid": 1203600, + "normalized_name": "zombie slayers" + }, + { + "appid": 1203620, + "normalized_name": "enshrouded" + }, + { + "appid": 1203630, + "normalized_name": "record of lodoss war deedlit in wonder labyrinth" + }, + { + "appid": 1203650, + "normalized_name": "blood metal" + }, + { + "appid": 1203670, + "normalized_name": "demolish & build 3" + }, + { + "appid": 1203680, + "normalized_name": "guiding light" + }, + { + "appid": 1203710, + "normalized_name": "unmetal" + }, + { + "appid": 1203750, + "normalized_name": "the girl of glass a summer bird's tale" + }, + { + "appid": 1203760, + "normalized_name": "builder vr" + }, + { + "appid": 1203770, + "normalized_name": "a moustache in the house" + }, + { + "appid": 1203780, + "normalized_name": "tiamat's drink" + }, + { + "appid": 1203810, + "normalized_name": "slay the bigies" + }, + { + "appid": 1203840, + "normalized_name": "whacky golf" + }, + { + "appid": 1203850, + "normalized_name": "infection / 传染" + }, + { + "appid": 1203890, + "normalized_name": "mirage online classic" + }, + { + "appid": 1203900, + "normalized_name": "九州仙玉 kyushu jade" + }, + { + "appid": 1203910, + "normalized_name": "arabian treasures midnight match" + }, + { + "appid": 1203930, + "normalized_name": "the last haven" + }, + { + "appid": 1203940, + "normalized_name": "zerone first encounter" + }, + { + "appid": 1203950, + "normalized_name": "mystic ruin a new dawn" + }, + { + "appid": 1203960, + "normalized_name": "other realms dwarves & more dwarves" + }, + { + "appid": 1203970, + "normalized_name": "the warmth between us" + }, + { + "appid": 1203990, + "normalized_name": "shine's adventures 5(world of box)" + }, + { + "appid": 1204010, + "normalized_name": "人偶馆绮幻夜 dreaming on the last light(doll)" + }, + { + "appid": 1204030, + "normalized_name": "night witch 588" + }, + { + "appid": 1204040, + "normalized_name": "shoot on sight" + }, + { + "appid": 1204080, + "normalized_name": "nightfall hacker" + }, + { + "appid": 1204110, + "normalized_name": "the dictatress" + }, + { + "appid": 1204210, + "normalized_name": "the big sokobang" + }, + { + "appid": 1204220, + "normalized_name": "mommy" + }, + { + "appid": 1204230, + "normalized_name": "4th generation warfare" + }, + { + "appid": 1204250, + "normalized_name": "cysma" + }, + { + "appid": 1204270, + "normalized_name": "new year's eve 2020" + }, + { + "appid": 1204280, + "normalized_name": "renegade grounds episode 2" + }, + { + "appid": 1204320, + "normalized_name": "ephemeral tale" + }, + { + "appid": 1204330, + "normalized_name": "fight to the last" + }, + { + "appid": 1204360, + "normalized_name": "blink cam" + }, + { + "appid": 1204370, + "normalized_name": "uifo defense hd" + }, + { + "appid": 1204380, + "normalized_name": "citywarheroes vr" + }, + { + "appid": 1204410, + "normalized_name": "kosmokrats" + }, + { + "appid": 1204440, + "normalized_name": "the god unit" + }, + { + "appid": 1204470, + "normalized_name": "space elite force ii" + }, + { + "appid": 1204480, + "normalized_name": "candera the forgotten realm" + }, + { + "appid": 1204490, + "normalized_name": "武儒绘卷 启示录" + }, + { + "appid": 1204520, + "normalized_name": "super domino effect 3d" + }, + { + "appid": 1204530, + "normalized_name": "cold wires" + }, + { + "appid": 1204540, + "normalized_name": "pictassembler" + }, + { + "appid": 1204550, + "normalized_name": "kamtris" + }, + { + "appid": 1204580, + "normalized_name": "first contact" + }, + { + "appid": 1204630, + "normalized_name": "firefight!" + }, + { + "appid": 1204650, + "normalized_name": "pirates treasure ii steam" + }, + { + "appid": 1204660, + "normalized_name": "better boyfriend" + }, + { + "appid": 1204670, + "normalized_name": "talshard" + }, + { + "appid": 1204690, + "normalized_name": "dead fury" + }, + { + "appid": 1204700, + "normalized_name": "pangea survival" + }, + { + "appid": 1204710, + "normalized_name": "void breach" + }, + { + "appid": 1204720, + "normalized_name": "yang2020 path to presidency" + }, + { + "appid": 1204740, + "normalized_name": "how stories die" + }, + { + "appid": 1204750, + "normalized_name": "swing & miss" + }, + { + "appid": 1204760, + "normalized_name": "james town courier frog md" + }, + { + "appid": 1204780, + "normalized_name": "hotaru" + }, + { + "appid": 1204790, + "normalized_name": "protagonism" + }, + { + "appid": 1204800, + "normalized_name": "spacebase19" + }, + { + "appid": 1204830, + "normalized_name": "tunnel vision" + }, + { + "appid": 1204840, + "normalized_name": "geowar 2" + }, + { + "appid": 1204860, + "normalized_name": "refuge" + }, + { + "appid": 1204880, + "normalized_name": "bionic hunter vr" + }, + { + "appid": 1204900, + "normalized_name": "wings vr" + }, + { + "appid": 1204930, + "normalized_name": "hop step sing! astral piece" + }, + { + "appid": 1204940, + "normalized_name": "shot in the dark" + }, + { + "appid": 1204950, + "normalized_name": "cecil run" + }, + { + "appid": 1204970, + "normalized_name": "地狱酒馆" + }, + { + "appid": 1204990, + "normalized_name": "milkcraft" + }, + { + "appid": 1205010, + "normalized_name": "trianglewingxxxx" + }, + { + "appid": 1205020, + "normalized_name": "jack troubles" + }, + { + "appid": 1205030, + "normalized_name": "not your eyes" + }, + { + "appid": 1205040, + "normalized_name": "granny chapter two" + }, + { + "appid": 1205060, + "normalized_name": "rock paper scissors simulator" + }, + { + "appid": 1205130, + "normalized_name": "dark gravity" + }, + { + "appid": 1205140, + "normalized_name": "kika & daigo a curious tale" + }, + { + "appid": 1205150, + "normalized_name": "calamari clash" + }, + { + "appid": 1205160, + "normalized_name": "decadent thinking" + }, + { + "appid": 1205170, + "normalized_name": "super magbot" + }, + { + "appid": 1205240, + "normalized_name": "tentacle girl" + }, + { + "appid": 1205250, + "normalized_name": "toy killer" + }, + { + "appid": 1205260, + "normalized_name": "defeated girl" + }, + { + "appid": 1205270, + "normalized_name": "magin the rat project stories" + }, + { + "appid": 1205390, + "normalized_name": "counter fall" + }, + { + "appid": 1205420, + "normalized_name": "birth to death" + }, + { + "appid": 1205450, + "normalized_name": "turnip boy commits tax evasion" + }, + { + "appid": 1205480, + "normalized_name": "monster jam steel titans 2" + }, + { + "appid": 1205520, + "normalized_name": "pentiment" + }, + { + "appid": 1205540, + "normalized_name": "shmup arena" + }, + { + "appid": 1205560, + "normalized_name": "taimanin yukikaze 1 trial/対魔忍ユキカゼ・体験版" + }, + { + "appid": 1205570, + "normalized_name": "露比兔冒险 / adventures of ruby rabbit" + }, + { + "appid": 1205590, + "normalized_name": "九霄仙阙" + }, + { + "appid": 1205610, + "normalized_name": "clones run" + }, + { + "appid": 1205640, + "normalized_name": "break through" + }, + { + "appid": 1205650, + "normalized_name": "i have powers!" + }, + { + "appid": 1205660, + "normalized_name": "wolfhound" + }, + { + "appid": 1205680, + "normalized_name": "game of the year" + }, + { + "appid": 1205690, + "normalized_name": "defending frontiers" + }, + { + "appid": 1205800, + "normalized_name": "hexon" + }, + { + "appid": 1205900, + "normalized_name": "alwa's legacy" + }, + { + "appid": 1205950, + "normalized_name": "seeds of chaos" + }, + { + "appid": 1205960, + "normalized_name": "my cute fuhrer" + }, + { + "appid": 1205970, + "normalized_name": "mx vs atv legends" + }, + { + "appid": 1206000, + "normalized_name": "hockeysplit" + }, + { + "appid": 1206010, + "normalized_name": "dondon busters!!" + }, + { + "appid": 1206020, + "normalized_name": "justice strikes" + }, + { + "appid": 1206040, + "normalized_name": "rhythm of the gods" + }, + { + "appid": 1206050, + "normalized_name": "sea king" + }, + { + "appid": 1206060, + "normalized_name": "happy game" + }, + { + "appid": 1206070, + "normalized_name": "phonopolis" + }, + { + "appid": 1206080, + "normalized_name": "zombie world coronavirus apocalypse vr" + }, + { + "appid": 1206090, + "normalized_name": "bore dome" + }, + { + "appid": 1206110, + "normalized_name": "frontline the great patriotic war" + }, + { + "appid": 1206140, + "normalized_name": "frog struggles" + }, + { + "appid": 1206180, + "normalized_name": "position" + }, + { + "appid": 1206230, + "normalized_name": "kart kids" + }, + { + "appid": 1206240, + "normalized_name": "talvisota winter war" + }, + { + "appid": 1206260, + "normalized_name": "pilfer" + }, + { + "appid": 1206270, + "normalized_name": "wrecker" + }, + { + "appid": 1206280, + "normalized_name": "thunderflash" + }, + { + "appid": 1206290, + "normalized_name": "goblin summer camp" + }, + { + "appid": 1206310, + "normalized_name": "tranject" + }, + { + "appid": 1206320, + "normalized_name": "primitive survival" + }, + { + "appid": 1206350, + "normalized_name": "jorry" + }, + { + "appid": 1206380, + "normalized_name": "tin & kuna" + }, + { + "appid": 1206410, + "normalized_name": "kristala" + }, + { + "appid": 1206430, + "normalized_name": "the unfinished swan" + }, + { + "appid": 1206470, + "normalized_name": "suspicious slide" + }, + { + "appid": 1206480, + "normalized_name": "swordsman vr" + }, + { + "appid": 1206490, + "normalized_name": "disc golf" + }, + { + "appid": 1206510, + "normalized_name": "the inside of a drawer" + }, + { + "appid": 1206550, + "normalized_name": "kick of dungeon" + }, + { + "appid": 1206560, + "normalized_name": "worldbox god simulator" + }, + { + "appid": 1206570, + "normalized_name": "逆光 sunwards" + }, + { + "appid": 1206590, + "normalized_name": "alchemelee" + }, + { + "appid": 1206600, + "normalized_name": "almighty kill your gods" + }, + { + "appid": 1206610, + "normalized_name": "rubber bandits" + }, + { + "appid": 1206620, + "normalized_name": "soul axiom rebooted" + }, + { + "appid": 1206660, + "normalized_name": "monster capture king" + }, + { + "appid": 1206670, + "normalized_name": "drive 4 survival" + }, + { + "appid": 1206700, + "normalized_name": "взлом жопы" + }, + { + "appid": 1206710, + "normalized_name": "my adventure(我的冒险)" + }, + { + "appid": 1206720, + "normalized_name": "kraken's curse" + }, + { + "appid": 1206770, + "normalized_name": "spaß taxi" + }, + { + "appid": 1206790, + "normalized_name": "infinite dronin" + }, + { + "appid": 1206810, + "normalized_name": "wamu wamu 2" + }, + { + "appid": 1206840, + "normalized_name": "lost roads" + }, + { + "appid": 1206850, + "normalized_name": "owata's action online" + }, + { + "appid": 1206870, + "normalized_name": "pinball universe" + }, + { + "appid": 1206900, + "normalized_name": "physical glitch" + }, + { + "appid": 1206910, + "normalized_name": "bizarre barber" + }, + { + "appid": 1206920, + "normalized_name": "flying shot" + }, + { + "appid": 1206930, + "normalized_name": "malediction" + }, + { + "appid": 1207010, + "normalized_name": "me and myself" + }, + { + "appid": 1207020, + "normalized_name": "flight league series" + }, + { + "appid": 1207090, + "normalized_name": "project stocks" + }, + { + "appid": 1207130, + "normalized_name": "many faces" + }, + { + "appid": 1207210, + "normalized_name": "异邦人 the foreigner" + }, + { + "appid": 1207230, + "normalized_name": "seduce me the story" + }, + { + "appid": 1207260, + "normalized_name": "flickermaze" + }, + { + "appid": 1207310, + "normalized_name": "gizmos steampunk nonograms" + }, + { + "appid": 1207320, + "normalized_name": "gray zone" + }, + { + "appid": 1207360, + "normalized_name": "medieval frontiers" + }, + { + "appid": 1207370, + "normalized_name": "primitive hunter" + }, + { + "appid": 1207380, + "normalized_name": "adventure boy jailbreak" + }, + { + "appid": 1207390, + "normalized_name": "ghosts'n djs" + }, + { + "appid": 1207400, + "normalized_name": "klym" + }, + { + "appid": 1207420, + "normalized_name": "chico" + }, + { + "appid": 1207480, + "normalized_name": "pupper park" + }, + { + "appid": 1207500, + "normalized_name": "coffee break" + }, + { + "appid": 1207520, + "normalized_name": "aigor escape from bishop" + }, + { + "appid": 1207540, + "normalized_name": "puzzle frame" + }, + { + "appid": 1207650, + "normalized_name": "suzerain" + }, + { + "appid": 1207690, + "normalized_name": "my work is not yet done" + }, + { + "appid": 1207710, + "normalized_name": "infinite beyond the mind" + }, + { + "appid": 1207770, + "normalized_name": "planet bounce" + }, + { + "appid": 1207780, + "normalized_name": "wish" + }, + { + "appid": 1207800, + "normalized_name": "mix sign girl with 3 signs" + }, + { + "appid": 1207820, + "normalized_name": "dimensions story mode" + }, + { + "appid": 1207840, + "normalized_name": "extragalactica" + }, + { + "appid": 1207850, + "normalized_name": "project rtd random tower defense pvp" + }, + { + "appid": 1207860, + "normalized_name": "brick blaster" + }, + { + "appid": 1207880, + "normalized_name": "nasty rogue" + }, + { + "appid": 1208030, + "normalized_name": "let's learn japanese! vocabulary" + }, + { + "appid": 1208040, + "normalized_name": "axiel" + }, + { + "appid": 1208050, + "normalized_name": "shine's adventures 3 (sea fight)" + }, + { + "appid": 1208090, + "normalized_name": "herbalist simulator" + }, + { + "appid": 1208110, + "normalized_name": "prometheus wept" + }, + { + "appid": 1208120, + "normalized_name": "hentai like a boss 2" + }, + { + "appid": 1208170, + "normalized_name": "samurai simulator" + }, + { + "appid": 1208180, + "normalized_name": "wooden nickel" + }, + { + "appid": 1208220, + "normalized_name": "escape from life inc" + }, + { + "appid": 1208240, + "normalized_name": "reach coin" + }, + { + "appid": 1208260, + "normalized_name": "hentai vs furries" + }, + { + "appid": 1208270, + "normalized_name": "rc service simulator" + }, + { + "appid": 1208330, + "normalized_name": "idle space" + }, + { + "appid": 1208370, + "normalized_name": "dumb infernal" + }, + { + "appid": 1208380, + "normalized_name": "phyxbox" + }, + { + "appid": 1208390, + "normalized_name": "deserted" + }, + { + "appid": 1208400, + "normalized_name": "path" + }, + { + "appid": 1208410, + "normalized_name": "small war" + }, + { + "appid": 1208420, + "normalized_name": "the war enders evolution" + }, + { + "appid": 1208460, + "normalized_name": "super crystal hunter" + }, + { + "appid": 1208470, + "normalized_name": "foxfall" + }, + { + "appid": 1208490, + "normalized_name": "taxidermy" + }, + { + "appid": 1208500, + "normalized_name": "former future" + }, + { + "appid": 1208510, + "normalized_name": "kingdom warrior" + }, + { + "appid": 1208520, + "normalized_name": "the alchemist's house" + }, + { + "appid": 1208550, + "normalized_name": "danielx.net paint composer" + }, + { + "appid": 1208560, + "normalized_name": "hiro's escape" + }, + { + "appid": 1208580, + "normalized_name": "red rush" + }, + { + "appid": 1208590, + "normalized_name": "temple of snek" + }, + { + "appid": 1208600, + "normalized_name": "bunny park" + }, + { + "appid": 1208620, + "normalized_name": "super 3 d crunk bros." + }, + { + "appid": 1208630, + "normalized_name": "yancy" + }, + { + "appid": 1208690, + "normalized_name": "ailuri" + }, + { + "appid": 1208760, + "normalized_name": "view from below" + }, + { + "appid": 1208770, + "normalized_name": "saber fight vr" + }, + { + "appid": 1208810, + "normalized_name": "green an orc's life" + }, + { + "appid": 1208830, + "normalized_name": "oil wars" + }, + { + "appid": 1208840, + "normalized_name": "firetry" + }, + { + "appid": 1208850, + "normalized_name": "kanojo x switch" + }, + { + "appid": 1208860, + "normalized_name": "the blackbird of amor" + }, + { + "appid": 1208870, + "normalized_name": "flagfights" + }, + { + "appid": 1208890, + "normalized_name": "civlands" + }, + { + "appid": 1208900, + "normalized_name": "bomberx" + }, + { + "appid": 1208950, + "normalized_name": "freight simulator" + }, + { + "appid": 1208980, + "normalized_name": "blazesky" + }, + { + "appid": 1209000, + "normalized_name": "风流刀客" + }, + { + "appid": 1209060, + "normalized_name": "cowboy" + }, + { + "appid": 1209080, + "normalized_name": "defense and revenge" + }, + { + "appid": 1209140, + "normalized_name": "peace data" + }, + { + "appid": 1209160, + "normalized_name": "the square game" + }, + { + "appid": 1209170, + "normalized_name": "匿名信:失心者 / stayer" + }, + { + "appid": 1209190, + "normalized_name": "steamliner" + }, + { + "appid": 1209200, + "normalized_name": "mompreneur pizza cooking life sim" + }, + { + "appid": 1209330, + "normalized_name": "sakura knight" + }, + { + "appid": 1209360, + "normalized_name": "monster truck championship" + }, + { + "appid": 1209410, + "normalized_name": "king of seas" + }, + { + "appid": 1209420, + "normalized_name": "spartrack vr firos" + }, + { + "appid": 1209430, + "normalized_name": "dungeon cards" + }, + { + "appid": 1209440, + "normalized_name": "capy hoky" + }, + { + "appid": 1209450, + "normalized_name": "potion commotion" + }, + { + "appid": 1209490, + "normalized_name": "exit the gungeon" + }, + { + "appid": 1209510, + "normalized_name": "hand in hand" + }, + { + "appid": 1209520, + "normalized_name": "smart moves" + }, + { + "appid": 1209570, + "normalized_name": "cosmos" + }, + { + "appid": 1209610, + "normalized_name": "virtually real life" + }, + { + "appid": 1209650, + "normalized_name": "the island story" + }, + { + "appid": 1209720, + "normalized_name": "machina of the planet tree unity unions" + }, + { + "appid": 1209740, + "normalized_name": "coloniam" + }, + { + "appid": 1209750, + "normalized_name": "flowstate" + }, + { + "appid": 1209760, + "normalized_name": "aloe and cal" + }, + { + "appid": 1209770, + "normalized_name": "子夜之章 历史的终局~midnights of desperado~" + }, + { + "appid": 1209790, + "normalized_name": "郡主别怕" + }, + { + "appid": 1209820, + "normalized_name": "cyndaria" + }, + { + "appid": 1209860, + "normalized_name": "bdsm big drunk satanic massacre demo" + }, + { + "appid": 1209870, + "normalized_name": "the gladhollow nasties" + }, + { + "appid": 1209910, + "normalized_name": "britannic" + }, + { + "appid": 1209950, + "normalized_name": "race condition" + }, + { + "appid": 1209960, + "normalized_name": "political kombat" + }, + { + "appid": 1209970, + "normalized_name": "blind descent" + }, + { + "appid": 1209990, + "normalized_name": "烈山海一(bms1)" + }, + { + "appid": 1210010, + "normalized_name": "sok stories" + }, + { + "appid": 1210030, + "normalized_name": "노베나 디아볼로스" + }, + { + "appid": 1210060, + "normalized_name": "submersed" + }, + { + "appid": 1210110, + "normalized_name": "midnight ride" + }, + { + "appid": 1210150, + "normalized_name": "ageless" + }, + { + "appid": 1210220, + "normalized_name": "circle" + }, + { + "appid": 1210230, + "normalized_name": "suits absolute power" + }, + { + "appid": 1210250, + "normalized_name": "island saver" + }, + { + "appid": 1210260, + "normalized_name": "purgatory overkill" + }, + { + "appid": 1210320, + "normalized_name": "potion craft alchemist simulator" + }, + { + "appid": 1210330, + "normalized_name": "thunder kid ii null mission" + }, + { + "appid": 1210340, + "normalized_name": "breakneck city" + }, + { + "appid": 1210380, + "normalized_name": "bingo vr" + }, + { + "appid": 1210470, + "normalized_name": "the adventures of bluke bifton chapter 1" + }, + { + "appid": 1210490, + "normalized_name": "yestermorrow" + }, + { + "appid": 1210530, + "normalized_name": "art heist" + }, + { + "appid": 1210540, + "normalized_name": "tcm racing 2" + }, + { + "appid": 1210550, + "normalized_name": "hohokum" + }, + { + "appid": 1210570, + "normalized_name": "rocket ghost aidan" + }, + { + "appid": 1210590, + "normalized_name": "大禹治水 pipeline of emperor yu" + }, + { + "appid": 1210610, + "normalized_name": "lithium city" + }, + { + "appid": 1210620, + "normalized_name": "lil' sherman" + }, + { + "appid": 1210640, + "normalized_name": "xylith hostile planet" + }, + { + "appid": 1210650, + "normalized_name": "escape room vr" + }, + { + "appid": 1210660, + "normalized_name": "daemonic runner" + }, + { + "appid": 1210670, + "normalized_name": "silent world" + }, + { + "appid": 1210680, + "normalized_name": "封神纪传奇" + }, + { + "appid": 1210700, + "normalized_name": "skull rogue" + }, + { + "appid": 1210740, + "normalized_name": "lumin's path" + }, + { + "appid": 1210780, + "normalized_name": "flatspace" + }, + { + "appid": 1210790, + "normalized_name": "rc plane vr" + }, + { + "appid": 1210800, + "normalized_name": "rum & gun" + }, + { + "appid": 1210830, + "normalized_name": "labyrinth" + }, + { + "appid": 1210850, + "normalized_name": "super kickers league" + }, + { + "appid": 1210880, + "normalized_name": "dusk warlocks" + }, + { + "appid": 1210910, + "normalized_name": "night of the living dead vr" + }, + { + "appid": 1210920, + "normalized_name": "paranoid" + }, + { + "appid": 1210930, + "normalized_name": "air wars" + }, + { + "appid": 1210960, + "normalized_name": "matrix brain twister" + }, + { + "appid": 1210970, + "normalized_name": "carpet bombing" + }, + { + "appid": 1211020, + "normalized_name": "wobbly life" + }, + { + "appid": 1211050, + "normalized_name": "once more" + }, + { + "appid": 1211070, + "normalized_name": "ephemera" + }, + { + "appid": 1211100, + "normalized_name": "universe quiz" + }, + { + "appid": 1211110, + "normalized_name": "petal crash" + }, + { + "appid": 1211120, + "normalized_name": "wujidaoren" + }, + { + "appid": 1211160, + "normalized_name": "catch your kitty" + }, + { + "appid": 1211180, + "normalized_name": "town of machine" + }, + { + "appid": 1211220, + "normalized_name": "breaking the 4th wall" + }, + { + "appid": 1211230, + "normalized_name": "legend of streets" + }, + { + "appid": 1211240, + "normalized_name": "trifox" + }, + { + "appid": 1211250, + "normalized_name": "berserk soccer" + }, + { + "appid": 1211270, + "normalized_name": "生物大冒险" + }, + { + "appid": 1211320, + "normalized_name": "journey to new atlantis" + }, + { + "appid": 1211340, + "normalized_name": "orbit of death" + }, + { + "appid": 1211350, + "normalized_name": "红魔事件簿 the note of red evil" + }, + { + "appid": 1211360, + "normalized_name": "neomorph" + }, + { + "appid": 1211370, + "normalized_name": "goonya fighter" + }, + { + "appid": 1211390, + "normalized_name": "world of voidia(虚亚世界)" + }, + { + "appid": 1211420, + "normalized_name": "find me horror game" + }, + { + "appid": 1211490, + "normalized_name": "math path" + }, + { + "appid": 1211540, + "normalized_name": "bobo robot" + }, + { + "appid": 1211600, + "normalized_name": "zed zone" + }, + { + "appid": 1211610, + "normalized_name": "tune the tone" + }, + { + "appid": 1211630, + "normalized_name": "the jackbox party pack 7" + }, + { + "appid": 1211640, + "normalized_name": "dead motherland zombie co op" + }, + { + "appid": 1211650, + "normalized_name": "cirno's perfect summer vacation" + }, + { + "appid": 1211700, + "normalized_name": "trantor the last stormtrooper" + }, + { + "appid": 1211710, + "normalized_name": "ufo escape" + }, + { + "appid": 1211720, + "normalized_name": "ruin hunters" + }, + { + "appid": 1211730, + "normalized_name": "infferno" + }, + { + "appid": 1211740, + "normalized_name": "guardian of lore" + }, + { + "appid": 1211780, + "normalized_name": "last in orbit" + }, + { + "appid": 1211790, + "normalized_name": "bad girl" + }, + { + "appid": 1211800, + "normalized_name": "live checkpoint" + }, + { + "appid": 1211830, + "normalized_name": "explorers of the abyss" + }, + { + "appid": 1211930, + "normalized_name": "ghost on the shore" + }, + { + "appid": 1211950, + "normalized_name": "sheol" + }, + { + "appid": 1211960, + "normalized_name": "food girls bubbles' drink stand" + }, + { + "appid": 1211970, + "normalized_name": "aurora" + }, + { + "appid": 1211980, + "normalized_name": "skopje '83" + }, + { + "appid": 1211990, + "normalized_name": "the clockworker" + }, + { + "appid": 1212020, + "normalized_name": "void's calling ep.1" + }, + { + "appid": 1212030, + "normalized_name": "arida 2 rise of the brave" + }, + { + "appid": 1212040, + "normalized_name": "paws & effect my dogs are human!" + }, + { + "appid": 1212100, + "normalized_name": "fishy" + }, + { + "appid": 1212110, + "normalized_name": "knockback the awakening" + }, + { + "appid": 1212120, + "normalized_name": "just shoot" + }, + { + "appid": 1212150, + "normalized_name": "diamond mirage" + }, + { + "appid": 1212170, + "normalized_name": "sokbots" + }, + { + "appid": 1212180, + "normalized_name": "ravesta racing" + }, + { + "appid": 1212190, + "normalized_name": "deer hunter ii" + }, + { + "appid": 1212250, + "normalized_name": "kony 2020" + }, + { + "appid": 1212290, + "normalized_name": "kubble star" + }, + { + "appid": 1212300, + "normalized_name": "reek" + }, + { + "appid": 1212320, + "normalized_name": "异星前线 alien frontline" + }, + { + "appid": 1212350, + "normalized_name": "ven adventure" + }, + { + "appid": 1212370, + "normalized_name": "boolean" + }, + { + "appid": 1212400, + "normalized_name": "heroines of swords & spells" + }, + { + "appid": 1212410, + "normalized_name": "hourglass" + }, + { + "appid": 1212430, + "normalized_name": "lucid aether" + }, + { + "appid": 1212440, + "normalized_name": "forest woodman" + }, + { + "appid": 1212450, + "normalized_name": "mineirinho shooter dc" + }, + { + "appid": 1212460, + "normalized_name": "caveman the game" + }, + { + "appid": 1212470, + "normalized_name": "fourthy" + }, + { + "appid": 1212480, + "normalized_name": "labirinto 3" + }, + { + "appid": 1212500, + "normalized_name": "beglov style" + }, + { + "appid": 1212510, + "normalized_name": "gaia's decision" + }, + { + "appid": 1212530, + "normalized_name": "the blueness of a wound" + }, + { + "appid": 1212550, + "normalized_name": "evector acid thirst" + }, + { + "appid": 1212580, + "normalized_name": "joan of arc:the beginning" + }, + { + "appid": 1212600, + "normalized_name": "budo war girl maid of desire" + }, + { + "appid": 1212610, + "normalized_name": "nijikoi no houkakou" + }, + { + "appid": 1212620, + "normalized_name": "pretty neko" + }, + { + "appid": 1212640, + "normalized_name": "a lanterns glow" + }, + { + "appid": 1212680, + "normalized_name": "construct" + }, + { + "appid": 1212710, + "normalized_name": "divine legacy" + }, + { + "appid": 1212720, + "normalized_name": "oh boy more cheese" + }, + { + "appid": 1212730, + "normalized_name": "トトのおもちゃばこ" + }, + { + "appid": 1212740, + "normalized_name": "chameleon | くるくるカメレオン" + }, + { + "appid": 1212750, + "normalized_name": "undead zombies" + }, + { + "appid": 1212760, + "normalized_name": "cyborg earthworm" + }, + { + "appid": 1212780, + "normalized_name": "ai no uta" + }, + { + "appid": 1212830, + "normalized_name": "seek girl ⅳ" + }, + { + "appid": 1212840, + "normalized_name": "パトルの軍事博物館3 超絶無敵究極兵器" + }, + { + "appid": 1212850, + "normalized_name": "monobot" + }, + { + "appid": 1212860, + "normalized_name": "flirt balls" + }, + { + "appid": 1212870, + "normalized_name": "run hare run" + }, + { + "appid": 1212930, + "normalized_name": "doler" + }, + { + "appid": 1212940, + "normalized_name": "ayahuasca" + }, + { + "appid": 1212960, + "normalized_name": "knight dice" + }, + { + "appid": 1212970, + "normalized_name": "cockhead big kahuna bar" + }, + { + "appid": 1213000, + "normalized_name": "in her eyes / 彼女之瞳" + }, + { + "appid": 1213050, + "normalized_name": "ink" + }, + { + "appid": 1213070, + "normalized_name": "pioneerz" + }, + { + "appid": 1213080, + "normalized_name": "java saga" + }, + { + "appid": 1213100, + "normalized_name": "gun miner" + }, + { + "appid": 1213110, + "normalized_name": "o.m.s" + }, + { + "appid": 1213140, + "normalized_name": "this is not the end" + }, + { + "appid": 1213150, + "normalized_name": "break" + }, + { + "appid": 1213210, + "normalized_name": "command & conquer collection" + }, + { + "appid": 1213220, + "normalized_name": "iron guard" + }, + { + "appid": 1213230, + "normalized_name": "rain on your parade" + }, + { + "appid": 1213250, + "normalized_name": "wagrrr" + }, + { + "appid": 1213300, + "normalized_name": "叛逆神魂godsoul🔥" + }, + { + "appid": 1213370, + "normalized_name": "mr. fast" + }, + { + "appid": 1213390, + "normalized_name": "starship inspector" + }, + { + "appid": 1213400, + "normalized_name": "vr fantasy island" + }, + { + "appid": 1213420, + "normalized_name": "solo king single player texas hold'em poker and calculators" + }, + { + "appid": 1213450, + "normalized_name": "craftica" + }, + { + "appid": 1213460, + "normalized_name": "deity driving" + }, + { + "appid": 1213530, + "normalized_name": "smerch battle arena" + }, + { + "appid": 1213550, + "normalized_name": "devil's kiss" + }, + { + "appid": 1213570, + "normalized_name": "cave quest" + }, + { + "appid": 1213600, + "normalized_name": "peppered" + }, + { + "appid": 1213640, + "normalized_name": "zombie claus" + }, + { + "appid": 1213650, + "normalized_name": "feb brazilian elite force" + }, + { + "appid": 1213660, + "normalized_name": "into the valley" + }, + { + "appid": 1213670, + "normalized_name": "solitaire forever ii" + }, + { + "appid": 1213680, + "normalized_name": "finding the soul orb" + }, + { + "appid": 1213700, + "normalized_name": "spirit of the north" + }, + { + "appid": 1213740, + "normalized_name": "she will punish them" + }, + { + "appid": 1213750, + "normalized_name": "fight crab" + }, + { + "appid": 1213760, + "normalized_name": "path of zen" + }, + { + "appid": 1213770, + "normalized_name": "blastboard" + }, + { + "appid": 1213780, + "normalized_name": "basic warfare" + }, + { + "appid": 1213810, + "normalized_name": "strings" + }, + { + "appid": 1213840, + "normalized_name": "eonblade" + }, + { + "appid": 1213860, + "normalized_name": "cut smash wrap" + }, + { + "appid": 1213870, + "normalized_name": "kill the santa" + }, + { + "appid": 1213890, + "normalized_name": "frostford" + }, + { + "appid": 1213910, + "normalized_name": "puzzle battler! mirai" + }, + { + "appid": 1213920, + "normalized_name": "lets go" + }, + { + "appid": 1213980, + "normalized_name": "cranky cannon" + }, + { + "appid": 1214000, + "normalized_name": "czar decision" + }, + { + "appid": 1214050, + "normalized_name": "science show vr the abyss" + }, + { + "appid": 1214060, + "normalized_name": "trios lofi beats / numbers to chill to" + }, + { + "appid": 1214130, + "normalized_name": "jumplord" + }, + { + "appid": 1214150, + "normalized_name": "accel x" + }, + { + "appid": 1214180, + "normalized_name": "mini countries" + }, + { + "appid": 1214200, + "normalized_name": "迷雾空城/the mist city" + }, + { + "appid": 1214210, + "normalized_name": "那美克星人" + }, + { + "appid": 1214280, + "normalized_name": "walking simulator" + }, + { + "appid": 1214330, + "normalized_name": "world seed classic" + }, + { + "appid": 1214360, + "normalized_name": "skye" + }, + { + "appid": 1214380, + "normalized_name": "zombie mutant dna" + }, + { + "appid": 1214400, + "normalized_name": "a percent of a pirate" + }, + { + "appid": 1214410, + "normalized_name": "zooma vr" + }, + { + "appid": 1214450, + "normalized_name": "featherfall" + }, + { + "appid": 1214460, + "normalized_name": "tank ball" + }, + { + "appid": 1214470, + "normalized_name": "hotel renovator" + }, + { + "appid": 1214490, + "normalized_name": "hentai breaker" + }, + { + "appid": 1214500, + "normalized_name": "grafi lunar" + }, + { + "appid": 1214520, + "normalized_name": "pro gymnast simulator" + }, + { + "appid": 1214530, + "normalized_name": "coin commander" + }, + { + "appid": 1214540, + "normalized_name": "super circuit breakers" + }, + { + "appid": 1214570, + "normalized_name": "drifton" + }, + { + "appid": 1214590, + "normalized_name": "the puzzle box society" + }, + { + "appid": 1214600, + "normalized_name": "bandapes" + }, + { + "appid": 1214630, + "normalized_name": "the hour of the rat" + }, + { + "appid": 1214650, + "normalized_name": "south park snow day!" + }, + { + "appid": 1214670, + "normalized_name": "mr. sun's hatbox" + }, + { + "appid": 1214680, + "normalized_name": "that lava escape game" + }, + { + "appid": 1214690, + "normalized_name": "rainy night" + }, + { + "appid": 1214710, + "normalized_name": "block assembly simulator" + }, + { + "appid": 1214720, + "normalized_name": "轻梦谭 瓮之篇" + }, + { + "appid": 1214740, + "normalized_name": "frequency sync" + }, + { + "appid": 1214760, + "normalized_name": "shine's adventures 4 (nightmare)" + }, + { + "appid": 1214850, + "normalized_name": "snaliens" + }, + { + "appid": 1214870, + "normalized_name": "my funeral home" + }, + { + "appid": 1214920, + "normalized_name": "slaughter 3 the rebels" + }, + { + "appid": 1214980, + "normalized_name": "the line" + }, + { + "appid": 1214990, + "normalized_name": "new planets" + }, + { + "appid": 1215000, + "normalized_name": "straylight" + }, + { + "appid": 1215020, + "normalized_name": "free agency" + }, + { + "appid": 1215030, + "normalized_name": "memeow & comodore reloaded" + }, + { + "appid": 1215060, + "normalized_name": "a.v.i" + }, + { + "appid": 1215090, + "normalized_name": "my friend is a raven" + }, + { + "appid": 1215120, + "normalized_name": "artemis:we are escape" + }, + { + "appid": 1215170, + "normalized_name": "dawnthorn" + }, + { + "appid": 1215180, + "normalized_name": "the beasts of 9500" + }, + { + "appid": 1215200, + "normalized_name": "shining song starnova idol empire" + }, + { + "appid": 1215260, + "normalized_name": "efflorescence of lust" + }, + { + "appid": 1215270, + "normalized_name": "down the rabbit hole" + }, + { + "appid": 1215280, + "normalized_name": "mask of mists" + }, + { + "appid": 1215310, + "normalized_name": "dragonscales 3 eternal prophecy of darkness" + }, + { + "appid": 1215320, + "normalized_name": "piczle cross adventure" + }, + { + "appid": 1215340, + "normalized_name": "danko and the mystery of the jungle" + }, + { + "appid": 1215350, + "normalized_name": "audiowizards" + }, + { + "appid": 1215380, + "normalized_name": "economica" + }, + { + "appid": 1215390, + "normalized_name": "animal revolt battle simulator" + }, + { + "appid": 1215400, + "normalized_name": "radio commander vr" + }, + { + "appid": 1215410, + "normalized_name": "sproots" + }, + { + "appid": 1215430, + "normalized_name": "make me lag" + }, + { + "appid": 1215500, + "normalized_name": "cattle admission challenge" + }, + { + "appid": 1215520, + "normalized_name": "aldred knight" + }, + { + "appid": 1215540, + "normalized_name": "data dream" + }, + { + "appid": 1215550, + "normalized_name": "realistic tower destruction" + }, + { + "appid": 1215580, + "normalized_name": "news agency simulator" + }, + { + "appid": 1215600, + "normalized_name": "the legend of eldridge scrolls woop" + }, + { + "appid": 1215650, + "normalized_name": "william's love prelude" + }, + { + "appid": 1215660, + "normalized_name": "clicker age" + }, + { + "appid": 1215690, + "normalized_name": "world war 2 zombie attack vr coronavirus simulator" + }, + { + "appid": 1215700, + "normalized_name": "haustoria" + }, + { + "appid": 1215710, + "normalized_name": "the spirits of kelley family" + }, + { + "appid": 1215720, + "normalized_name": "hero's journey" + }, + { + "appid": 1215740, + "normalized_name": "casina the forgotten comedy" + }, + { + "appid": 1215750, + "normalized_name": "just arms" + }, + { + "appid": 1215770, + "normalized_name": "naked story (sports festival ver)" + }, + { + "appid": 1215830, + "normalized_name": "banana for scale" + }, + { + "appid": 1215860, + "normalized_name": "model railway easily" + }, + { + "appid": 1215870, + "normalized_name": "the walking evil" + }, + { + "appid": 1215900, + "normalized_name": "the mysterious case of dr. jekyll and mr. hyde" + }, + { + "appid": 1215930, + "normalized_name": "ramiwo" + }, + { + "appid": 1215940, + "normalized_name": "forever ago" + }, + { + "appid": 1215950, + "normalized_name": "getaway storm" + }, + { + "appid": 1215960, + "normalized_name": "p bot" + }, + { + "appid": 1215970, + "normalized_name": "raven quest" + }, + { + "appid": 1215990, + "normalized_name": "rhythmdancevr" + }, + { + "appid": 1216030, + "normalized_name": "wildfire swap" + }, + { + "appid": 1216050, + "normalized_name": "last week" + }, + { + "appid": 1216060, + "normalized_name": "dnf duel" + }, + { + "appid": 1216080, + "normalized_name": "坦率的小红帽和爱说谎的狼" + }, + { + "appid": 1216150, + "normalized_name": "hell's pharma" + }, + { + "appid": 1216190, + "normalized_name": "color ball" + }, + { + "appid": 1216200, + "normalized_name": "coloring game 2" + }, + { + "appid": 1216220, + "normalized_name": "boiling steel preface" + }, + { + "appid": 1216230, + "normalized_name": "project heartbeat" + }, + { + "appid": 1216270, + "normalized_name": "asterook" + }, + { + "appid": 1216300, + "normalized_name": "my diggy dog 2" + }, + { + "appid": 1216310, + "normalized_name": "sweet holiday jigsaws halloween night" + }, + { + "appid": 1216320, + "normalized_name": "shieldwall" + }, + { + "appid": 1216340, + "normalized_name": "vampire vs devil" + }, + { + "appid": 1216350, + "normalized_name": "time hacker" + }, + { + "appid": 1216370, + "normalized_name": "darklight" + }, + { + "appid": 1216470, + "normalized_name": "zoria prologue (2020)" + }, + { + "appid": 1216480, + "normalized_name": "get the banana" + }, + { + "appid": 1216490, + "normalized_name": "knock harder" + }, + { + "appid": 1216530, + "normalized_name": "cat island" + }, + { + "appid": 1216540, + "normalized_name": "fishy2" + }, + { + "appid": 1216550, + "normalized_name": "player's eleven" + }, + { + "appid": 1216560, + "normalized_name": "slimey" + }, + { + "appid": 1216580, + "normalized_name": "zombase" + }, + { + "appid": 1216590, + "normalized_name": "lone land" + }, + { + "appid": 1216600, + "normalized_name": "quical" + }, + { + "appid": 1216610, + "normalized_name": "hentai pansuto" + }, + { + "appid": 1216660, + "normalized_name": "hentai sakyubus" + }, + { + "appid": 1216700, + "normalized_name": "匿名信:隐匿者 / anonymous letter :prowler" + }, + { + "appid": 1216710, + "normalized_name": "cyber manhunt" + }, + { + "appid": 1216720, + "normalized_name": "human delusion" + }, + { + "appid": 1216740, + "normalized_name": "military base war" + }, + { + "appid": 1216870, + "normalized_name": "only down!" + }, + { + "appid": 1216880, + "normalized_name": "risen kingdom" + }, + { + "appid": 1216930, + "normalized_name": "vikings wars" + }, + { + "appid": 1216940, + "normalized_name": "神柄の雫 (かみからのしずく)" + }, + { + "appid": 1216980, + "normalized_name": "vaster claws 3 dragon slayer of the god world" + }, + { + "appid": 1216990, + "normalized_name": "pawnshop tycoon" + }, + { + "appid": 1217050, + "normalized_name": "shaolin vs wutang 2" + }, + { + "appid": 1217060, + "normalized_name": "gunfire reborn" + }, + { + "appid": 1217070, + "normalized_name": "der geisterturm / the ghost tower" + }, + { + "appid": 1217100, + "normalized_name": "mega hasan" + }, + { + "appid": 1217110, + "normalized_name": "celestial crown" + }, + { + "appid": 1217160, + "normalized_name": "log 141" + }, + { + "appid": 1217170, + "normalized_name": "treasure hunting club" + }, + { + "appid": 1217180, + "normalized_name": "fantamon" + }, + { + "appid": 1217190, + "normalized_name": "浮世万千之前世今生" + }, + { + "appid": 1217200, + "normalized_name": "grimm 1865" + }, + { + "appid": 1217220, + "normalized_name": "immortal legacy the jade cipher" + }, + { + "appid": 1217230, + "normalized_name": "e.b." + }, + { + "appid": 1217260, + "normalized_name": "timeless paradox vr" + }, + { + "appid": 1217280, + "normalized_name": "mybot" + }, + { + "appid": 1217310, + "normalized_name": "one true cuddle" + }, + { + "appid": 1217330, + "normalized_name": "terminal squad swarmites" + }, + { + "appid": 1217340, + "normalized_name": "anime studio tycoon" + }, + { + "appid": 1217350, + "normalized_name": "pentasma" + }, + { + "appid": 1217370, + "normalized_name": "classic card game spades" + }, + { + "appid": 1217380, + "normalized_name": "encore classic puzzle & board games" + }, + { + "appid": 1217390, + "normalized_name": "some some convenience store" + }, + { + "appid": 1217410, + "normalized_name": "孟德大小姐与自爆少年three kingdom fantasy" + }, + { + "appid": 1217440, + "normalized_name": "cold winter morning" + }, + { + "appid": 1217480, + "normalized_name": "frontier trs" + }, + { + "appid": 1217490, + "normalized_name": "tyrania a kinetic visual novel" + }, + { + "appid": 1217510, + "normalized_name": "terminal singularity" + }, + { + "appid": 1217520, + "normalized_name": "beach bar vr" + }, + { + "appid": 1217530, + "normalized_name": "hybrid instinct" + }, + { + "appid": 1217550, + "normalized_name": "guardians of greyrock" + }, + { + "appid": 1217560, + "normalized_name": "gorilla town" + }, + { + "appid": 1217570, + "normalized_name": "lessons with chii chan" + }, + { + "appid": 1217580, + "normalized_name": "green elephant epilogue" + }, + { + "appid": 1217610, + "normalized_name": "pro player life" + }, + { + "appid": 1217630, + "normalized_name": "network e.l.e." + }, + { + "appid": 1217640, + "normalized_name": "god's challenge" + }, + { + "appid": 1217660, + "normalized_name": "往け!往け!マグロ the shooting maguro" + }, + { + "appid": 1217710, + "normalized_name": "lasting solstice" + }, + { + "appid": 1217720, + "normalized_name": "ily" + }, + { + "appid": 1217750, + "normalized_name": "beyond enemy lines" + }, + { + "appid": 1217820, + "normalized_name": "topfold" + }, + { + "appid": 1217830, + "normalized_name": "khimera puzzle island" + }, + { + "appid": 1217850, + "normalized_name": "angry food" + }, + { + "appid": 1217860, + "normalized_name": "royal rescue srpg" + }, + { + "appid": 1217870, + "normalized_name": "box kid adventures" + }, + { + "appid": 1217880, + "normalized_name": "recluses" + }, + { + "appid": 1217900, + "normalized_name": "chronostation" + }, + { + "appid": 1217930, + "normalized_name": "vr jetpack game" + }, + { + "appid": 1217950, + "normalized_name": "dr dick dong stripper underworld" + }, + { + "appid": 1217990, + "normalized_name": "bots & belts" + }, + { + "appid": 1218020, + "normalized_name": "factory rally madness" + }, + { + "appid": 1218030, + "normalized_name": "operation deep magic cryptanalysis" + }, + { + "appid": 1218090, + "normalized_name": "hellscape two brothers" + }, + { + "appid": 1218130, + "normalized_name": "spirit of the blade" + }, + { + "appid": 1218140, + "normalized_name": "marble computing" + }, + { + "appid": 1218150, + "normalized_name": "your little story valentine's day" + }, + { + "appid": 1218170, + "normalized_name": "回门 way back home" + }, + { + "appid": 1218200, + "normalized_name": "game of puzzles space" + }, + { + "appid": 1218210, + "normalized_name": "coromon" + }, + { + "appid": 1218220, + "normalized_name": "the mechanical world of dr. gearbox" + }, + { + "appid": 1218230, + "normalized_name": "rhythmic retro racer" + }, + { + "appid": 1218250, + "normalized_name": "we went back" + }, + { + "appid": 1218260, + "normalized_name": "sono" + }, + { + "appid": 1218280, + "normalized_name": "bad guys at school" + }, + { + "appid": 1218300, + "normalized_name": "gjana's world" + }, + { + "appid": 1218320, + "normalized_name": "zack 2 celestine's map" + }, + { + "appid": 1218360, + "normalized_name": "luna the dimension watcher" + }, + { + "appid": 1218400, + "normalized_name": "birds are real" + }, + { + "appid": 1218420, + "normalized_name": "rook" + }, + { + "appid": 1218440, + "normalized_name": "tanks 2020" + }, + { + "appid": 1218460, + "normalized_name": "chase" + }, + { + "appid": 1218470, + "normalized_name": "lightphobe" + }, + { + "appid": 1218480, + "normalized_name": "skyprimal" + }, + { + "appid": 1218500, + "normalized_name": "galactic mining corp" + }, + { + "appid": 1218510, + "normalized_name": "let it happen" + }, + { + "appid": 1218520, + "normalized_name": "neko neko" + }, + { + "appid": 1218530, + "normalized_name": "lastshot" + }, + { + "appid": 1218540, + "normalized_name": "solous" + }, + { + "appid": 1218550, + "normalized_name": "hassle 1977" + }, + { + "appid": 1218560, + "normalized_name": "bato treasures of tibet" + }, + { + "appid": 1218570, + "normalized_name": "the twins" + }, + { + "appid": 1218580, + "normalized_name": "zerograve" + }, + { + "appid": 1218590, + "normalized_name": "suppressor" + }, + { + "appid": 1218620, + "normalized_name": "church of shadows" + }, + { + "appid": 1218640, + "normalized_name": "draco knight" + }, + { + "appid": 1218670, + "normalized_name": "super orbit" + }, + { + "appid": 1218680, + "normalized_name": "beatdown brawler" + }, + { + "appid": 1218710, + "normalized_name": "逃离死亡堡(escape from the death castle)" + }, + { + "appid": 1218740, + "normalized_name": "rakion chaos force" + }, + { + "appid": 1218750, + "normalized_name": "orum's death run" + }, + { + "appid": 1218760, + "normalized_name": "moe moe world war ii 3 deluxe 萌萌2次大戰(略)3豪華限定版" + }, + { + "appid": 1218770, + "normalized_name": "classic card game canasta" + }, + { + "appid": 1218780, + "normalized_name": "little shop of junk" + }, + { + "appid": 1218790, + "normalized_name": "good goods incorporated" + }, + { + "appid": 1218830, + "normalized_name": "tropical air hockey" + }, + { + "appid": 1218850, + "normalized_name": "escape rebooted" + }, + { + "appid": 1218890, + "normalized_name": "ollie & bollie outdoor estate" + }, + { + "appid": 1218900, + "normalized_name": "zup! z" + }, + { + "appid": 1218920, + "normalized_name": "sunset kingdom" + }, + { + "appid": 1218930, + "normalized_name": "xecuter" + }, + { + "appid": 1218940, + "normalized_name": "eternal blood" + }, + { + "appid": 1219000, + "normalized_name": "pastel blind karma" + }, + { + "appid": 1219010, + "normalized_name": "no game no life" + }, + { + "appid": 1219020, + "normalized_name": "kili's treasure" + }, + { + "appid": 1219030, + "normalized_name": "infiniwordslide" + }, + { + "appid": 1219060, + "normalized_name": "missy's transformation tournament" + }, + { + "appid": 1219070, + "normalized_name": "hexihashi" + }, + { + "appid": 1219080, + "normalized_name": "dice tactics" + }, + { + "appid": 1219110, + "normalized_name": "friend sighting" + }, + { + "appid": 1219120, + "normalized_name": "retro pixel color palette color by number" + }, + { + "appid": 1219170, + "normalized_name": "mayhem masters" + }, + { + "appid": 1219180, + "normalized_name": "skull's solitude" + }, + { + "appid": 1219220, + "normalized_name": "ghost in the barn house" + }, + { + "appid": 1219240, + "normalized_name": "biogun" + }, + { + "appid": 1219280, + "normalized_name": "dark tunnels" + }, + { + "appid": 1219300, + "normalized_name": "contract" + }, + { + "appid": 1219310, + "normalized_name": "欢乐逗病毒td" + }, + { + "appid": 1219320, + "normalized_name": "pets sniper shooting" + }, + { + "appid": 1219340, + "normalized_name": "lisistrata rpg/visual novel" + }, + { + "appid": 1219370, + "normalized_name": "showtime! 2" + }, + { + "appid": 1219420, + "normalized_name": "millions of minions an underground adventure" + }, + { + "appid": 1219450, + "normalized_name": "inglorious pirate" + }, + { + "appid": 1219480, + "normalized_name": "poly squad" + }, + { + "appid": 1219500, + "normalized_name": "basketball madness" + }, + { + "appid": 1219520, + "normalized_name": "corvus" + }, + { + "appid": 1219530, + "normalized_name": "kickochet" + }, + { + "appid": 1219540, + "normalized_name": "last slice" + }, + { + "appid": 1219550, + "normalized_name": "doraijin" + }, + { + "appid": 1219570, + "normalized_name": "headache" + }, + { + "appid": 1219580, + "normalized_name": "prison forever" + }, + { + "appid": 1219590, + "normalized_name": "heat reborn" + }, + { + "appid": 1219600, + "normalized_name": "paradox" + }, + { + "appid": 1219610, + "normalized_name": "courage and honor" + }, + { + "appid": 1219620, + "normalized_name": "lovely overseer dating sim" + }, + { + "appid": 1219650, + "normalized_name": "k point ski jumping" + }, + { + "appid": 1219690, + "normalized_name": "helms of fury" + }, + { + "appid": 1219700, + "normalized_name": "catlandia crisis at fort pawprint" + }, + { + "appid": 1219730, + "normalized_name": "the manse on soracca" + }, + { + "appid": 1219740, + "normalized_name": "knockout daddy" + }, + { + "appid": 1219790, + "normalized_name": "intern pursuit game" + }, + { + "appid": 1219800, + "normalized_name": "galactic thunderdome" + }, + { + "appid": 1219810, + "normalized_name": "恆夜世界的魔法少女 magia knabino in the eternal night" + }, + { + "appid": 1219820, + "normalized_name": "pyramid defense" + }, + { + "appid": 1219860, + "normalized_name": "monster girls you ki chan" + }, + { + "appid": 1219890, + "normalized_name": "the last turret" + }, + { + "appid": 1219910, + "normalized_name": "spider fear" + }, + { + "appid": 1219940, + "normalized_name": "us spy mission in russia" + }, + { + "appid": 1219950, + "normalized_name": "evil democracy 1932" + }, + { + "appid": 1219980, + "normalized_name": "bloody ending" + }, + { + "appid": 1220010, + "normalized_name": "home behind 2" + }, + { + "appid": 1220040, + "normalized_name": "jumping mellow" + }, + { + "appid": 1220070, + "normalized_name": "underground miner" + }, + { + "appid": 1220080, + "normalized_name": "racing bike fight (corona virus lockdown special)" + }, + { + "appid": 1220100, + "normalized_name": "tentacular" + }, + { + "appid": 1220110, + "normalized_name": "albert's journey" + }, + { + "appid": 1220120, + "normalized_name": "dungeon origins" + }, + { + "appid": 1220140, + "normalized_name": "cartel tycoon" + }, + { + "appid": 1220150, + "normalized_name": "blue fire" + }, + { + "appid": 1220160, + "normalized_name": "virtual race car engineer 2020" + }, + { + "appid": 1220170, + "normalized_name": "eville" + }, + { + "appid": 1220190, + "normalized_name": "hentai darts" + }, + { + "appid": 1220200, + "normalized_name": "piracrash!" + }, + { + "appid": 1220300, + "normalized_name": "rogue tears" + }, + { + "appid": 1220330, + "normalized_name": "impressions" + }, + { + "appid": 1220340, + "normalized_name": "schizophrenia" + }, + { + "appid": 1220370, + "normalized_name": "ever forward" + }, + { + "appid": 1220390, + "normalized_name": "[chilla's art] jimmu | 神武" + }, + { + "appid": 1220410, + "normalized_name": "sea of leaves" + }, + { + "appid": 1220440, + "normalized_name": "pick shoot repeat!" + }, + { + "appid": 1220460, + "normalized_name": "naked little dude" + }, + { + "appid": 1220510, + "normalized_name": "your quest 2" + }, + { + "appid": 1220520, + "normalized_name": "chuhou joutai" + }, + { + "appid": 1220550, + "normalized_name": "bobby the gnome" + }, + { + "appid": 1220560, + "normalized_name": "hellpunk" + }, + { + "appid": 1220580, + "normalized_name": "sky pirates of actorius" + }, + { + "appid": 1220600, + "normalized_name": "edengrall" + }, + { + "appid": 1220650, + "normalized_name": "my forest home!" + }, + { + "appid": 1220670, + "normalized_name": "奥丁为什么没胡子" + }, + { + "appid": 1220680, + "normalized_name": "spooky spins casino slot simulations" + }, + { + "appid": 1220690, + "normalized_name": "respite 2.0" + }, + { + "appid": 1220710, + "normalized_name": "ace in space" + }, + { + "appid": 1220760, + "normalized_name": "novalance" + }, + { + "appid": 1220800, + "normalized_name": "eggman" + }, + { + "appid": 1220840, + "normalized_name": "退休模拟器" + }, + { + "appid": 1220850, + "normalized_name": "kingdom vs zombies" + }, + { + "appid": 1220880, + "normalized_name": "陆大迹神ⅱ" + }, + { + "appid": 1220890, + "normalized_name": "ghone is gone" + }, + { + "appid": 1220900, + "normalized_name": "astonia" + }, + { + "appid": 1220910, + "normalized_name": "dark zone" + }, + { + "appid": 1220920, + "normalized_name": "ero girl painter" + }, + { + "appid": 1220930, + "normalized_name": "metaphobia" + }, + { + "appid": 1220980, + "normalized_name": "where's home?" + }, + { + "appid": 1220990, + "normalized_name": "great utopia" + }, + { + "appid": 1221030, + "normalized_name": "clickcells winter lady" + }, + { + "appid": 1221070, + "normalized_name": "alien street battle" + }, + { + "appid": 1221080, + "normalized_name": "strip 4 classmate study" + }, + { + "appid": 1221230, + "normalized_name": "derange" + }, + { + "appid": 1221240, + "normalized_name": "tavern cards" + }, + { + "appid": 1221250, + "normalized_name": "norco" + }, + { + "appid": 1221260, + "normalized_name": "pope simulator" + }, + { + "appid": 1221280, + "normalized_name": "run dude" + }, + { + "appid": 1221300, + "normalized_name": "tire friend" + }, + { + "appid": 1221310, + "normalized_name": "kickrexing" + }, + { + "appid": 1221320, + "normalized_name": "self checkout unlimited" + }, + { + "appid": 1221330, + "normalized_name": "pointblank" + }, + { + "appid": 1221390, + "normalized_name": "voxel horizon" + }, + { + "appid": 1221400, + "normalized_name": "trusty brothers" + }, + { + "appid": 1221420, + "normalized_name": "零怨 the curse of the dead" + }, + { + "appid": 1221430, + "normalized_name": "wat a life" + }, + { + "appid": 1221440, + "normalized_name": "path of redemption" + }, + { + "appid": 1221460, + "normalized_name": "castle creator" + }, + { + "appid": 1221480, + "normalized_name": "big hops" + }, + { + "appid": 1221510, + "normalized_name": "imm defense 2" + }, + { + "appid": 1221520, + "normalized_name": "brimhelm" + }, + { + "appid": 1221540, + "normalized_name": "みんなで空気読み。" + }, + { + "appid": 1221560, + "normalized_name": "just chatting" + }, + { + "appid": 1221590, + "normalized_name": "formula car racing simulator" + }, + { + "appid": 1221600, + "normalized_name": "raccoon the miner" + }, + { + "appid": 1221620, + "normalized_name": "平妖奇谭 kungfu & monster" + }, + { + "appid": 1221630, + "normalized_name": "drifting in space" + }, + { + "appid": 1221640, + "normalized_name": "ultra foodmess" + }, + { + "appid": 1221650, + "normalized_name": "boulder dash deluxe" + }, + { + "appid": 1221660, + "normalized_name": "little tennis" + }, + { + "appid": 1221670, + "normalized_name": "stramedia injury plateau" + }, + { + "appid": 1221730, + "normalized_name": "anti science brigade" + }, + { + "appid": 1221800, + "normalized_name": "anime artist 2 lovely danya" + }, + { + "appid": 1221810, + "normalized_name": "astrocleaners" + }, + { + "appid": 1221830, + "normalized_name": "farmer pug dash" + }, + { + "appid": 1221860, + "normalized_name": "the revenge of johnny bonasera episode 4" + }, + { + "appid": 1221880, + "normalized_name": "frostfire planet" + }, + { + "appid": 1221890, + "normalized_name": "scp one more life" + }, + { + "appid": 1221950, + "normalized_name": "nighthawks" + }, + { + "appid": 1221990, + "normalized_name": "chronicle unit eight" + }, + { + "appid": 1222000, + "normalized_name": "lights camera reaction!" + }, + { + "appid": 1222020, + "normalized_name": "bustaship" + }, + { + "appid": 1222040, + "normalized_name": "offroad mania" + }, + { + "appid": 1222050, + "normalized_name": "touhou mechanical scrollery | 幻想討幻経" + }, + { + "appid": 1222060, + "normalized_name": "千里の棋譜 ~現代将棋ミステリー~" + }, + { + "appid": 1222080, + "normalized_name": "feeling square?" + }, + { + "appid": 1222090, + "normalized_name": "nevaeh" + }, + { + "appid": 1222120, + "normalized_name": "valentines desire casino slot simulations" + }, + { + "appid": 1222140, + "normalized_name": "detroit become human" + }, + { + "appid": 1222150, + "normalized_name": "her war" + }, + { + "appid": 1222160, + "normalized_name": "毛笔模拟器 / chinese brush simulator" + }, + { + "appid": 1222170, + "normalized_name": "cutish" + }, + { + "appid": 1222180, + "normalized_name": "retro drift" + }, + { + "appid": 1222200, + "normalized_name": "uldrevoid" + }, + { + "appid": 1222210, + "normalized_name": "extremely realistic siege warfare simulator" + }, + { + "appid": 1222220, + "normalized_name": "7worlds the dreaming dale" + }, + { + "appid": 1222230, + "normalized_name": "space ranger vr" + }, + { + "appid": 1222240, + "normalized_name": "mineirinho wildtides dc" + }, + { + "appid": 1222250, + "normalized_name": "la historia de" + }, + { + "appid": 1222260, + "normalized_name": "the lost brewery" + }, + { + "appid": 1222270, + "normalized_name": "gunbrick reloaded" + }, + { + "appid": 1222290, + "normalized_name": "heist simulator" + }, + { + "appid": 1222300, + "normalized_name": "into the flames" + }, + { + "appid": 1222330, + "normalized_name": "hentai puzzle simple" + }, + { + "appid": 1222340, + "normalized_name": "sockventure" + }, + { + "appid": 1222370, + "normalized_name": "necromunda hired gun" + }, + { + "appid": 1222380, + "normalized_name": "spookyard" + }, + { + "appid": 1222390, + "normalized_name": "shape arena" + }, + { + "appid": 1222400, + "normalized_name": "the soul stone war" + }, + { + "appid": 1222420, + "normalized_name": "ballsblastervr" + }, + { + "appid": 1222470, + "normalized_name": "18+ memory" + }, + { + "appid": 1222480, + "normalized_name": "slotracers vr" + }, + { + "appid": 1222490, + "normalized_name": "scp facility manager" + }, + { + "appid": 1222540, + "normalized_name": "gastova the witches of arkana" + }, + { + "appid": 1222550, + "normalized_name": "mercury prime" + }, + { + "appid": 1222560, + "normalized_name": "karmora" + }, + { + "appid": 1222570, + "normalized_name": "red ronin" + }, + { + "appid": 1222600, + "normalized_name": "stocksynd house" + }, + { + "appid": 1222610, + "normalized_name": "model kit simulator vr" + }, + { + "appid": 1222640, + "normalized_name": "cumming hotel a gay furry slice of life" + }, + { + "appid": 1222670, + "normalized_name": "the sims 4" + }, + { + "appid": 1222680, + "normalized_name": "need for speed heat" + }, + { + "appid": 1222690, + "normalized_name": "dragon age inquisition" + }, + { + "appid": 1222700, + "normalized_name": "a way out" + }, + { + "appid": 1222720, + "normalized_name": "journey to planet earth" + }, + { + "appid": 1222730, + "normalized_name": "star wars squadrons" + }, + { + "appid": 1222740, + "normalized_name": "_space_train" + }, + { + "appid": 1222750, + "normalized_name": "futadomworld" + }, + { + "appid": 1222800, + "normalized_name": "valkyrie connect" + }, + { + "appid": 1222830, + "normalized_name": "goalienator" + }, + { + "appid": 1222840, + "normalized_name": "super squash" + }, + { + "appid": 1222870, + "normalized_name": "黄河大合唱 song of yellow river" + }, + { + "appid": 1222930, + "normalized_name": "velucity" + }, + { + "appid": 1222940, + "normalized_name": "cragls" + }, + { + "appid": 1222960, + "normalized_name": "hotel afterlife" + }, + { + "appid": 1222980, + "normalized_name": "xenovaders" + }, + { + "appid": 1223020, + "normalized_name": "大家的幻想乡单机版" + }, + { + "appid": 1223030, + "normalized_name": "ami" + }, + { + "appid": 1223090, + "normalized_name": "emily archer and the curse of tutankhamun" + }, + { + "appid": 1223110, + "normalized_name": "balloonboybob" + }, + { + "appid": 1223140, + "normalized_name": "misshapen" + }, + { + "appid": 1223150, + "normalized_name": "dss war party" + }, + { + "appid": 1223200, + "normalized_name": "cardsweeper" + }, + { + "appid": 1223210, + "normalized_name": "zombie towns" + }, + { + "appid": 1223220, + "normalized_name": "ragamuffins feline fencers" + }, + { + "appid": 1223230, + "normalized_name": "escape from russia" + }, + { + "appid": 1223250, + "normalized_name": "hentai cosplay ussr" + }, + { + "appid": 1223260, + "normalized_name": "castle torgeath redux" + }, + { + "appid": 1223270, + "normalized_name": "dish life the game" + }, + { + "appid": 1223350, + "normalized_name": "war of the barrenlands" + }, + { + "appid": 1223360, + "normalized_name": "the harvest" + }, + { + "appid": 1223370, + "normalized_name": "beardy mcstrongarm" + }, + { + "appid": 1223380, + "normalized_name": "beyond the underworld" + }, + { + "appid": 1223390, + "normalized_name": "a player's heart" + }, + { + "appid": 1223440, + "normalized_name": "mhl" + }, + { + "appid": 1223500, + "normalized_name": "umurangi generation" + }, + { + "appid": 1223530, + "normalized_name": "mall craze" + }, + { + "appid": 1223550, + "normalized_name": "buddy bash" + }, + { + "appid": 1223660, + "normalized_name": "the savana" + }, + { + "appid": 1223670, + "normalized_name": "super rocket ride" + }, + { + "appid": 1223720, + "normalized_name": "light fingers" + }, + { + "appid": 1223750, + "normalized_name": "cloud meadow" + }, + { + "appid": 1223770, + "normalized_name": "relieve desolation" + }, + { + "appid": 1223810, + "normalized_name": "full service" + }, + { + "appid": 1223820, + "normalized_name": "dryad" + }, + { + "appid": 1223870, + "normalized_name": "sakura hime 2" + }, + { + "appid": 1223880, + "normalized_name": "manatech" + }, + { + "appid": 1223910, + "normalized_name": "tennis world tour 2" + }, + { + "appid": 1224010, + "normalized_name": "kiwaya" + }, + { + "appid": 1224020, + "normalized_name": "creepy tale" + }, + { + "appid": 1224030, + "normalized_name": "erra exordium" + }, + { + "appid": 1224050, + "normalized_name": "battle bandits" + }, + { + "appid": 1224070, + "normalized_name": "mira's tale" + }, + { + "appid": 1224120, + "normalized_name": "jerking off in class simulator" + }, + { + "appid": 1224160, + "normalized_name": "sisterly lust" + }, + { + "appid": 1224220, + "normalized_name": "xevorel the way of the feather" + }, + { + "appid": 1224250, + "normalized_name": "strtk1ng" + }, + { + "appid": 1224290, + "normalized_name": "horizon's gate" + }, + { + "appid": 1224320, + "normalized_name": "secret city chalk of fate collector's" + }, + { + "appid": 1224360, + "normalized_name": "grim ember" + }, + { + "appid": 1224380, + "normalized_name": "somewhere sect of relic" + }, + { + "appid": 1224420, + "normalized_name": "smashroom" + }, + { + "appid": 1224450, + "normalized_name": "my jigsaw adventures roads of life" + }, + { + "appid": 1224470, + "normalized_name": "psicose?" + }, + { + "appid": 1224480, + "normalized_name": "fire escape" + }, + { + "appid": 1224490, + "normalized_name": "inner worlds" + }, + { + "appid": 1224530, + "normalized_name": "naked news" + }, + { + "appid": 1224600, + "normalized_name": "g string" + }, + { + "appid": 1224630, + "normalized_name": "absolute zero" + }, + { + "appid": 1224640, + "normalized_name": "jump to die 2 bloody soul" + }, + { + "appid": 1224650, + "normalized_name": "super arcade boy in goodbye greenies" + }, + { + "appid": 1224690, + "normalized_name": "avaria chains of lust" + }, + { + "appid": 1224700, + "normalized_name": "kingpin reloaded" + }, + { + "appid": 1224710, + "normalized_name": "洞穴探险队 caver" + }, + { + "appid": 1224770, + "normalized_name": "wanking simulator vr" + }, + { + "appid": 1224840, + "normalized_name": "frozen memories" + }, + { + "appid": 1224900, + "normalized_name": "halo beats!" + }, + { + "appid": 1225040, + "normalized_name": "a mysterious gallery" + }, + { + "appid": 1225070, + "normalized_name": "family mysteries poisonous promises" + }, + { + "appid": 1225100, + "normalized_name": "sstr" + }, + { + "appid": 1225110, + "normalized_name": "flirt" + }, + { + "appid": 1225120, + "normalized_name": "krystopia nova´s journey" + }, + { + "appid": 1225130, + "normalized_name": "the adventures of ten and till" + }, + { + "appid": 1225200, + "normalized_name": "nairi rising tide" + }, + { + "appid": 1225240, + "normalized_name": "humble rumble" + }, + { + "appid": 1225250, + "normalized_name": "encycle" + }, + { + "appid": 1225260, + "normalized_name": "survive in russia" + }, + { + "appid": 1225290, + "normalized_name": "foam dart frenzy" + }, + { + "appid": 1225320, + "normalized_name": "hentai seek" + }, + { + "appid": 1225370, + "normalized_name": "blast rush classic" + }, + { + "appid": 1225380, + "normalized_name": "into the infinite" + }, + { + "appid": 1225410, + "normalized_name": "why neon lights again?" + }, + { + "appid": 1225550, + "normalized_name": "draft day sports college football 2020" + }, + { + "appid": 1225560, + "normalized_name": "unravel" + }, + { + "appid": 1225570, + "normalized_name": "unravel two" + }, + { + "appid": 1225580, + "normalized_name": "fe" + }, + { + "appid": 1225590, + "normalized_name": "sea of solitude" + }, + { + "appid": 1225600, + "normalized_name": "the amazing fantastics issue 1" + }, + { + "appid": 1225610, + "normalized_name": "∀kashicverse malicious wake" + }, + { + "appid": 1225640, + "normalized_name": "first day home defender" + }, + { + "appid": 1225660, + "normalized_name": "athena trivia" + }, + { + "appid": 1225680, + "normalized_name": "cube chase" + }, + { + "appid": 1225690, + "normalized_name": "doodle alive" + }, + { + "appid": 1225710, + "normalized_name": "escape the manor" + }, + { + "appid": 1225730, + "normalized_name": "dreamlander" + }, + { + "appid": 1225740, + "normalized_name": "naughty girl" + }, + { + "appid": 1225780, + "normalized_name": "他人世界末 on looker" + }, + { + "appid": 1225790, + "normalized_name": "heat and run" + }, + { + "appid": 1225810, + "normalized_name": "fos" + }, + { + "appid": 1225820, + "normalized_name": "hermitage strange case files" + }, + { + "appid": 1225840, + "normalized_name": "beatbeat" + }, + { + "appid": 1225850, + "normalized_name": "nonetensemble~魔法仕掛けの迷宮~" + }, + { + "appid": 1225870, + "normalized_name": "hentai girlfriend simulator" + }, + { + "appid": 1225880, + "normalized_name": "silent weapons for quiet wars" + }, + { + "appid": 1225890, + "normalized_name": "rotten utopia" + }, + { + "appid": 1225910, + "normalized_name": "desert of doitjma" + }, + { + "appid": 1225920, + "normalized_name": "pixelfence" + }, + { + "appid": 1225930, + "normalized_name": "pixel dominance" + }, + { + "appid": 1225940, + "normalized_name": "i'm calling the cops!" + }, + { + "appid": 1226000, + "normalized_name": "nations at war digital core game" + }, + { + "appid": 1226010, + "normalized_name": "storm chasers tornado islands" + }, + { + "appid": 1226020, + "normalized_name": "机忆" + }, + { + "appid": 1226030, + "normalized_name": "static vision" + }, + { + "appid": 1226070, + "normalized_name": "questinarium" + }, + { + "appid": 1226080, + "normalized_name": "hentai babes servants" + }, + { + "appid": 1226150, + "normalized_name": "space world 2020" + }, + { + "appid": 1226160, + "normalized_name": "college bowl" + }, + { + "appid": 1226170, + "normalized_name": "forest of math" + }, + { + "appid": 1226180, + "normalized_name": "bus parking 3d" + }, + { + "appid": 1226190, + "normalized_name": "isle vatra" + }, + { + "appid": 1226210, + "normalized_name": "fever ca" + }, + { + "appid": 1226230, + "normalized_name": "escape from the grim" + }, + { + "appid": 1226250, + "normalized_name": "synthesis mind body and soul" + }, + { + "appid": 1226420, + "normalized_name": "the tide intro" + }, + { + "appid": 1226480, + "normalized_name": "fire escape drill" + }, + { + "appid": 1226490, + "normalized_name": "迷失渡口vr" + }, + { + "appid": 1226510, + "normalized_name": "trigon space story" + }, + { + "appid": 1226530, + "normalized_name": "trap legend" + }, + { + "appid": 1226540, + "normalized_name": "luster" + }, + { + "appid": 1226550, + "normalized_name": "badland envoys" + }, + { + "appid": 1226560, + "normalized_name": "africa help" + }, + { + "appid": 1226580, + "normalized_name": "fashion designer" + }, + { + "appid": 1226610, + "normalized_name": "pandora galaxy" + }, + { + "appid": 1226640, + "normalized_name": "pieces of my heart" + }, + { + "appid": 1226670, + "normalized_name": "rosewater" + }, + { + "appid": 1226820, + "normalized_name": "vigil of glory part i" + }, + { + "appid": 1226840, + "normalized_name": "tribloos" + }, + { + "appid": 1226880, + "normalized_name": "hard fast & flashy" + }, + { + "appid": 1226890, + "normalized_name": "stellaxy" + }, + { + "appid": 1226910, + "normalized_name": "hentai resort dream paradise" + }, + { + "appid": 1226920, + "normalized_name": "riposte!" + }, + { + "appid": 1226940, + "normalized_name": "nonogram animal griddlers" + }, + { + "appid": 1226950, + "normalized_name": "captain macaw 2" + }, + { + "appid": 1226960, + "normalized_name": "my name is sarah" + }, + { + "appid": 1226970, + "normalized_name": "disco simulator" + }, + { + "appid": 1226990, + "normalized_name": "mechanica" + }, + { + "appid": 1227000, + "normalized_name": "black butterfly" + }, + { + "appid": 1227010, + "normalized_name": "die wolf" + }, + { + "appid": 1227040, + "normalized_name": "devastation annihilate the alien race" + }, + { + "appid": 1227050, + "normalized_name": "synonym" + }, + { + "appid": 1227070, + "normalized_name": "fly fly horse" + }, + { + "appid": 1227090, + "normalized_name": "crapht box" + }, + { + "appid": 1227100, + "normalized_name": "wildemist isle" + }, + { + "appid": 1227130, + "normalized_name": "space vanguard" + }, + { + "appid": 1227150, + "normalized_name": "jump boy" + }, + { + "appid": 1227190, + "normalized_name": "sotas/时空幽灵" + }, + { + "appid": 1227200, + "normalized_name": "magic academy estoria" + }, + { + "appid": 1227250, + "normalized_name": "小镇放置修仙" + }, + { + "appid": 1227260, + "normalized_name": "alder's blood prologue" + }, + { + "appid": 1227280, + "normalized_name": "despot's game dystopian battle simulator" + }, + { + "appid": 1227320, + "normalized_name": "shutter nyan! enhanced" + }, + { + "appid": 1227330, + "normalized_name": "the endless wyrd" + }, + { + "appid": 1227360, + "normalized_name": "fighting clans" + }, + { + "appid": 1227390, + "normalized_name": "mazovian adventure" + }, + { + "appid": 1227400, + "normalized_name": "over the alps" + }, + { + "appid": 1227490, + "normalized_name": "meowhalla" + }, + { + "appid": 1227530, + "normalized_name": "partisans 1941" + }, + { + "appid": 1227570, + "normalized_name": "lotus reverie first nexus" + }, + { + "appid": 1227580, + "normalized_name": "trasta" + }, + { + "appid": 1227590, + "normalized_name": "dominatrix hentai storytelling puzzle" + }, + { + "appid": 1227600, + "normalized_name": "villain project" + }, + { + "appid": 1227650, + "normalized_name": "bang on balls chronicles" + }, + { + "appid": 1227680, + "normalized_name": "berserker" + }, + { + "appid": 1227690, + "normalized_name": "severed steel" + }, + { + "appid": 1227750, + "normalized_name": "puzzle lines and knots" + }, + { + "appid": 1227760, + "normalized_name": "zip! speedster of valiant city" + }, + { + "appid": 1227780, + "normalized_name": "taur" + }, + { + "appid": 1227820, + "normalized_name": "unchained" + }, + { + "appid": 1227830, + "normalized_name": "mister shizz don't let the shizz hit the fan!" + }, + { + "appid": 1227860, + "normalized_name": "plastris" + }, + { + "appid": 1227890, + "normalized_name": "summer memories" + }, + { + "appid": 1227900, + "normalized_name": "s0" + }, + { + "appid": 1227930, + "normalized_name": "佣兵之旅" + }, + { + "appid": 1228320, + "normalized_name": "dungeon looter" + }, + { + "appid": 1228360, + "normalized_name": "megacopter blades of the goddess" + }, + { + "appid": 1228390, + "normalized_name": "noah" + }, + { + "appid": 1228410, + "normalized_name": "watch / 透视" + }, + { + "appid": 1228430, + "normalized_name": "pair a site" + }, + { + "appid": 1228440, + "normalized_name": "maritime hegemony: carrier travel 海上霸主:航空母舰之旅" + }, + { + "appid": 1228450, + "normalized_name": "speed and survive ball 速度与幸存之球" + }, + { + "appid": 1228460, + "normalized_name": "all hail temos" + }, + { + "appid": 1228490, + "normalized_name": "politicking" + }, + { + "appid": 1228500, + "normalized_name": "1428 shadows over silesia" + }, + { + "appid": 1228520, + "normalized_name": "[chilla's art] the convenience store | 夜勤事件" + }, + { + "appid": 1228560, + "normalized_name": "boxman's struggle" + }, + { + "appid": 1228570, + "normalized_name": "gamer shop simulator" + }, + { + "appid": 1228600, + "normalized_name": "blankspace" + }, + { + "appid": 1228610, + "normalized_name": "karlson" + }, + { + "appid": 1228630, + "normalized_name": "patched world" + }, + { + "appid": 1228670, + "normalized_name": "malvin`s prehistoric adventures" + }, + { + "appid": 1228680, + "normalized_name": "goblet cave" + }, + { + "appid": 1228700, + "normalized_name": "godorevil.1" + }, + { + "appid": 1228730, + "normalized_name": "zulup" + }, + { + "appid": 1228790, + "normalized_name": "dark judgement" + }, + { + "appid": 1228820, + "normalized_name": "blind battle championship" + }, + { + "appid": 1228840, + "normalized_name": "mission indeed 2.0 fps" + }, + { + "appid": 1228860, + "normalized_name": "the unseen fears ominous talent collector's" + }, + { + "appid": 1228870, + "normalized_name": "bartlow's dread machine" + }, + { + "appid": 1228880, + "normalized_name": "crisp cube" + }, + { + "appid": 1228910, + "normalized_name": "ragdoll party online" + }, + { + "appid": 1228920, + "normalized_name": "invaden" + }, + { + "appid": 1228950, + "normalized_name": "street sweeper" + }, + { + "appid": 1228960, + "normalized_name": "harolds harem the neckoning" + }, + { + "appid": 1228970, + "normalized_name": "elemental abyss 元素之渊" + }, + { + "appid": 1229010, + "normalized_name": "cast vr" + }, + { + "appid": 1229020, + "normalized_name": "kona ii brume" + }, + { + "appid": 1229030, + "normalized_name": "a hand with many fingers" + }, + { + "appid": 1229060, + "normalized_name": "dungeon and puzzles" + }, + { + "appid": 1229090, + "normalized_name": "黄昏印记" + }, + { + "appid": 1229190, + "normalized_name": "artpulse" + }, + { + "appid": 1229200, + "normalized_name": "dreamtopia" + }, + { + "appid": 1229240, + "normalized_name": "chained echoes" + }, + { + "appid": 1229250, + "normalized_name": "uniseas" + }, + { + "appid": 1229260, + "normalized_name": "monster girls and the mysterious adventure" + }, + { + "appid": 1229270, + "normalized_name": "onirike" + }, + { + "appid": 1229280, + "normalized_name": "hold 10 seconds" + }, + { + "appid": 1229310, + "normalized_name": "godking master of rituals" + }, + { + "appid": 1229380, + "normalized_name": "everhood" + }, + { + "appid": 1229390, + "normalized_name": "tomomi" + }, + { + "appid": 1229420, + "normalized_name": "company of crime" + }, + { + "appid": 1229450, + "normalized_name": "yuhha stolen treasure" + }, + { + "appid": 1229460, + "normalized_name": "dice legacy" + }, + { + "appid": 1229490, + "normalized_name": "ultrakill" + }, + { + "appid": 1229500, + "normalized_name": "shieldmaiden remix" + }, + { + "appid": 1229510, + "normalized_name": "hentai seek girl" + }, + { + "appid": 1229520, + "normalized_name": "the story of a chinese restaurant" + }, + { + "appid": 1229530, + "normalized_name": "tomomi denkitomodachi" + }, + { + "appid": 1229570, + "normalized_name": "imagine lifetimes" + }, + { + "appid": 1229580, + "normalized_name": "disc room" + }, + { + "appid": 1229590, + "normalized_name": "choco pixel 2" + }, + { + "appid": 1229640, + "normalized_name": "the search for deep loving" + }, + { + "appid": 1229650, + "normalized_name": "shitty cactus" + }, + { + "appid": 1229720, + "normalized_name": "little big rabbits" + }, + { + "appid": 1229730, + "normalized_name": "achievement clicker" + }, + { + "appid": 1229880, + "normalized_name": "koumajou remilia scarlet symphony" + }, + { + "appid": 1229890, + "normalized_name": "koumajou remilia ⅱ stranger's requiem" + }, + { + "appid": 1229900, + "normalized_name": "aria chronicle" + }, + { + "appid": 1229910, + "normalized_name": "eden" + }, + { + "appid": 1229920, + "normalized_name": "pizza time arcade" + }, + { + "appid": 1229960, + "normalized_name": "dark abyss" + }, + { + "appid": 1230000, + "normalized_name": "curse of eternity" + }, + { + "appid": 1230010, + "normalized_name": "a.r.m. absolutely reliable machine" + }, + { + "appid": 1230020, + "normalized_name": "straight battler vi" + }, + { + "appid": 1230050, + "normalized_name": "time of ashes" + }, + { + "appid": 1230100, + "normalized_name": "fantastic fishing" + }, + { + "appid": 1230120, + "normalized_name": "scan your heart \"愛情限時批\"" + }, + { + "appid": 1230140, + "normalized_name": "atri my dear moments" + }, + { + "appid": 1230170, + "normalized_name": "gunsmith simulator prologue" + }, + { + "appid": 1230200, + "normalized_name": "pendula swing the journey" + }, + { + "appid": 1230340, + "normalized_name": "the sperminator rescuing tzar vlad" + }, + { + "appid": 1230360, + "normalized_name": "bahamian beat down" + }, + { + "appid": 1230400, + "normalized_name": "bets on pets" + }, + { + "appid": 1230410, + "normalized_name": "chaos" + }, + { + "appid": 1230490, + "normalized_name": "bogs earth vs sea" + }, + { + "appid": 1230500, + "normalized_name": "isle of the conjured" + }, + { + "appid": 1230510, + "normalized_name": "beyond crimson stars" + }, + { + "appid": 1230530, + "normalized_name": "atlas fallen reign of sand" + }, + { + "appid": 1230540, + "normalized_name": "hidden histories the principality" + }, + { + "appid": 1230560, + "normalized_name": "cyber attack" + }, + { + "appid": 1230570, + "normalized_name": "shotgun n zombies" + }, + { + "appid": 1230640, + "normalized_name": "milvusx" + }, + { + "appid": 1230650, + "normalized_name": "proyecto flamingo x1" + }, + { + "appid": 1230660, + "normalized_name": "trf the race factory" + }, + { + "appid": 1230670, + "normalized_name": "loopbreaker" + }, + { + "appid": 1230800, + "normalized_name": "beach buggy racing 2 island adventure" + }, + { + "appid": 1230840, + "normalized_name": "matcha warriors" + }, + { + "appid": 1230860, + "normalized_name": "2md vr football evolution" + }, + { + "appid": 1230870, + "normalized_name": "parameter" + }, + { + "appid": 1230880, + "normalized_name": "gladii" + }, + { + "appid": 1230930, + "normalized_name": "inside the computer" + }, + { + "appid": 1230940, + "normalized_name": "ant detective" + }, + { + "appid": 1230980, + "normalized_name": "云巅" + }, + { + "appid": 1230990, + "normalized_name": "banzai escape 2" + }, + { + "appid": 1231000, + "normalized_name": "witchsword remake" + }, + { + "appid": 1231040, + "normalized_name": "blendy 2 dolls factory" + }, + { + "appid": 1231070, + "normalized_name": "starkheim tournament" + }, + { + "appid": 1231100, + "normalized_name": "breath of the forest" + }, + { + "appid": 1231120, + "normalized_name": "staying together" + }, + { + "appid": 1231130, + "normalized_name": "roko loko into ratozinger's castle" + }, + { + "appid": 1231150, + "normalized_name": "rosas are red" + }, + { + "appid": 1231210, + "normalized_name": "midair 2" + }, + { + "appid": 1231270, + "normalized_name": "dead's prison watcher" + }, + { + "appid": 1231410, + "normalized_name": "gravity pro" + }, + { + "appid": 1231440, + "normalized_name": "驱灵" + }, + { + "appid": 1231460, + "normalized_name": "candy disaster tower defense" + }, + { + "appid": 1231500, + "normalized_name": "secret admirer" + }, + { + "appid": 1231520, + "normalized_name": "farmtale" + }, + { + "appid": 1231530, + "normalized_name": "path of the sramana" + }, + { + "appid": 1231560, + "normalized_name": "aurelia" + }, + { + "appid": 1231570, + "normalized_name": "lonecastle" + }, + { + "appid": 1231580, + "normalized_name": "femdom stories findom simulator sex game" + }, + { + "appid": 1231590, + "normalized_name": "isle of ewe" + }, + { + "appid": 1231640, + "normalized_name": "galactic protection squad | episode 1" + }, + { + "appid": 1231710, + "normalized_name": "super foosball" + }, + { + "appid": 1231720, + "normalized_name": "freedom isn't free 资本之乱" + }, + { + "appid": 1231740, + "normalized_name": "sorbetta gravely in debt" + }, + { + "appid": 1231750, + "normalized_name": "classic card game euchre" + }, + { + "appid": 1231760, + "normalized_name": "classic card game gin rummy" + }, + { + "appid": 1231770, + "normalized_name": "classic card game go fish" + }, + { + "appid": 1231780, + "normalized_name": "classic card game hearts" + }, + { + "appid": 1231790, + "normalized_name": "classic card game old maid" + }, + { + "appid": 1231800, + "normalized_name": "classic card game pinochle" + }, + { + "appid": 1231810, + "normalized_name": "classic card game mahjong" + }, + { + "appid": 1231820, + "normalized_name": "classic card game poker pack" + }, + { + "appid": 1231840, + "normalized_name": "climber sky is the limit" + }, + { + "appid": 1231880, + "normalized_name": "haiku the robot" + }, + { + "appid": 1231900, + "normalized_name": "porsche hall of legends vr" + }, + { + "appid": 1231920, + "normalized_name": "convoy mod tools" + }, + { + "appid": 1231940, + "normalized_name": "cardnarok raid with gods" + }, + { + "appid": 1231950, + "normalized_name": "the innsmouth case" + }, + { + "appid": 1231970, + "normalized_name": "police response vr disturbance" + }, + { + "appid": 1231990, + "normalized_name": "gestalt steam & cinder" + }, + { + "appid": 1232010, + "normalized_name": "radical rabbit stew" + }, + { + "appid": 1232060, + "normalized_name": "chat champions" + }, + { + "appid": 1232100, + "normalized_name": "broodstar" + }, + { + "appid": 1232120, + "normalized_name": "aether field" + }, + { + "appid": 1232130, + "normalized_name": "bear vodka stalingrad!🐻" + }, + { + "appid": 1232140, + "normalized_name": "blue drifter" + }, + { + "appid": 1232150, + "normalized_name": "a little golf journey" + }, + { + "appid": 1232180, + "normalized_name": "sakuya izayoi gives you advice and dabs" + }, + { + "appid": 1232220, + "normalized_name": "professional fishing 2" + }, + { + "appid": 1232230, + "normalized_name": "relax simulator" + }, + { + "appid": 1232260, + "normalized_name": "space mega force man" + }, + { + "appid": 1232290, + "normalized_name": "oasis defense" + }, + { + "appid": 1232310, + "normalized_name": "bonfire" + }, + { + "appid": 1232330, + "normalized_name": "theyest thou" + }, + { + "appid": 1232420, + "normalized_name": "atlantica global" + }, + { + "appid": 1232450, + "normalized_name": "来上大学吧!" + }, + { + "appid": 1232460, + "normalized_name": "onee chanbara origin" + }, + { + "appid": 1232470, + "normalized_name": "the aloha bakery" + }, + { + "appid": 1232500, + "normalized_name": "super hiking simulator 2020" + }, + { + "appid": 1232510, + "normalized_name": "teleporter world of gamers (alpha)" + }, + { + "appid": 1232550, + "normalized_name": "the mermaid's secret remedy the love spell" + }, + { + "appid": 1232570, + "normalized_name": "paper beast" + }, + { + "appid": 1232580, + "normalized_name": "knock on the coffin lid" + }, + { + "appid": 1232590, + "normalized_name": "dreamgate" + }, + { + "appid": 1232610, + "normalized_name": "panic station vr" + }, + { + "appid": 1232640, + "normalized_name": "alpaca ball allstars" + }, + { + "appid": 1232650, + "normalized_name": "goblin treasure" + }, + { + "appid": 1232670, + "normalized_name": "mercenaries vr" + }, + { + "appid": 1232720, + "normalized_name": "ghosts 4 everybody" + }, + { + "appid": 1232730, + "normalized_name": "rune the first wanderer" + }, + { + "appid": 1232800, + "normalized_name": "connection haunted" + }, + { + "appid": 1232810, + "normalized_name": "savage halloween" + }, + { + "appid": 1232830, + "normalized_name": "boyandbox" + }, + { + "appid": 1232870, + "normalized_name": "changeling tale" + }, + { + "appid": 1232890, + "normalized_name": "dumbbots" + }, + { + "appid": 1232900, + "normalized_name": "metal banana" + }, + { + "appid": 1232940, + "normalized_name": "the under presents" + }, + { + "appid": 1232990, + "normalized_name": "[unannounced upcoming oddfellows software project no. 1]" + }, + { + "appid": 1233020, + "normalized_name": "betrayal" + }, + { + "appid": 1233030, + "normalized_name": "armorik the viking the eight conquests" + }, + { + "appid": 1233040, + "normalized_name": "wardens" + }, + { + "appid": 1233070, + "normalized_name": "isles of sea and sky" + }, + { + "appid": 1233120, + "normalized_name": "street racing 2020" + }, + { + "appid": 1233170, + "normalized_name": "utopia colony" + }, + { + "appid": 1233200, + "normalized_name": "wanko of marriage ~welcome to the dog's tail!~" + }, + { + "appid": 1233210, + "normalized_name": "hentai honeys jigsaw" + }, + { + "appid": 1233230, + "normalized_name": "you are a bird" + }, + { + "appid": 1233240, + "normalized_name": "墨游记 inkball adventures" + }, + { + "appid": 1233250, + "normalized_name": "abracadabrew" + }, + { + "appid": 1233260, + "normalized_name": "fairy tail" + }, + { + "appid": 1233270, + "normalized_name": "oshirabu waifus over husbandos" + }, + { + "appid": 1233300, + "normalized_name": "rush & command" + }, + { + "appid": 1233350, + "normalized_name": "random heroes gold" + }, + { + "appid": 1233380, + "normalized_name": "sex apartments" + }, + { + "appid": 1233410, + "normalized_name": "microworks" + }, + { + "appid": 1233420, + "normalized_name": "wanderlust transsiberian" + }, + { + "appid": 1233460, + "normalized_name": "star escape" + }, + { + "appid": 1233510, + "normalized_name": "juice mania" + }, + { + "appid": 1233530, + "normalized_name": "knights of the chalice 2" + }, + { + "appid": 1233540, + "normalized_name": "how buddy’s parents met a jigsaw puzzle tale" + }, + { + "appid": 1233560, + "normalized_name": "asterism online" + }, + { + "appid": 1233570, + "normalized_name": "mirror's edge catalyst" + }, + { + "appid": 1233580, + "normalized_name": "smile" + }, + { + "appid": 1233590, + "normalized_name": "warhammer age of sigmar storm ground" + }, + { + "appid": 1233600, + "normalized_name": "corporated robots wars" + }, + { + "appid": 1233610, + "normalized_name": "tactical warfare simulator" + }, + { + "appid": 1233640, + "normalized_name": "spirit of glace" + }, + { + "appid": 1233680, + "normalized_name": "legends of astravia" + }, + { + "appid": 1233690, + "normalized_name": "hypergalactic psychic table tennis 3000" + }, + { + "appid": 1233710, + "normalized_name": "elf breeding farm" + }, + { + "appid": 1233720, + "normalized_name": "the parenting simulator" + }, + { + "appid": 1233740, + "normalized_name": "torofun" + }, + { + "appid": 1233780, + "normalized_name": "balls royale" + }, + { + "appid": 1233790, + "normalized_name": "ducks' wrath" + }, + { + "appid": 1233800, + "normalized_name": "kandagawa jet girls" + }, + { + "appid": 1233810, + "normalized_name": "men busters" + }, + { + "appid": 1233820, + "normalized_name": "a ton of feathers" + }, + { + "appid": 1233850, + "normalized_name": "the aegis saga" + }, + { + "appid": 1233880, + "normalized_name": "disgaea 4 complete+" + }, + { + "appid": 1233900, + "normalized_name": "lustful valley" + }, + { + "appid": 1233950, + "normalized_name": "wayhaven chronicles book two" + }, + { + "appid": 1233990, + "normalized_name": "tinieblas jr's adventures" + }, + { + "appid": 1234020, + "normalized_name": "the epsilon outcome" + }, + { + "appid": 1234030, + "normalized_name": "ゴシックマーダー 運命を変えるアドベンチャー" + }, + { + "appid": 1234070, + "normalized_name": "wire flying maid" + }, + { + "appid": 1234110, + "normalized_name": "oh! mochi!" + }, + { + "appid": 1234120, + "normalized_name": "aeternoblade" + }, + { + "appid": 1234160, + "normalized_name": "numtate" + }, + { + "appid": 1234180, + "normalized_name": "moons of darsalon" + }, + { + "appid": 1234190, + "normalized_name": "anime war — modern campaign" + }, + { + "appid": 1234200, + "normalized_name": "super thrustforce orbital meat police" + }, + { + "appid": 1234220, + "normalized_name": "paper pirates" + }, + { + "appid": 1234240, + "normalized_name": "last farewell" + }, + { + "appid": 1234260, + "normalized_name": "deadly land" + }, + { + "appid": 1234280, + "normalized_name": "fighters' glory" + }, + { + "appid": 1234300, + "normalized_name": "duelglory" + }, + { + "appid": 1234320, + "normalized_name": "kingless land" + }, + { + "appid": 1234330, + "normalized_name": "into the backrooms" + }, + { + "appid": 1234340, + "normalized_name": "glowyjump" + }, + { + "appid": 1234360, + "normalized_name": "cancan the game" + }, + { + "appid": 1234380, + "normalized_name": "era of survival" + }, + { + "appid": 1234400, + "normalized_name": "handy dandy" + }, + { + "appid": 1234410, + "normalized_name": "valiant gears" + }, + { + "appid": 1234430, + "normalized_name": "ad infinitum" + }, + { + "appid": 1234450, + "normalized_name": "edge of dawn" + }, + { + "appid": 1234500, + "normalized_name": "the expedition" + }, + { + "appid": 1234520, + "normalized_name": "the escaper" + }, + { + "appid": 1234540, + "normalized_name": "bob wants to go home" + }, + { + "appid": 1234550, + "normalized_name": "quest rooms" + }, + { + "appid": 1234560, + "normalized_name": "rogue snow everwinter" + }, + { + "appid": 1234580, + "normalized_name": "fullybroken a unique mix of 4x / post apocalypse / rpg / roguelike" + }, + { + "appid": 1234590, + "normalized_name": "class kingdom" + }, + { + "appid": 1234600, + "normalized_name": "hollow remnant" + }, + { + "appid": 1234620, + "normalized_name": "tinker racers" + }, + { + "appid": 1234630, + "normalized_name": "enemy gates stealth war" + }, + { + "appid": 1234680, + "normalized_name": "volatile" + }, + { + "appid": 1234690, + "normalized_name": "gotcha" + }, + { + "appid": 1234700, + "normalized_name": "hornet virus steel alcimus ii" + }, + { + "appid": 1234750, + "normalized_name": "penguin's dogma|獄門ペンギン" + }, + { + "appid": 1234820, + "normalized_name": "mistaker" + }, + { + "appid": 1234830, + "normalized_name": "warmth" + }, + { + "appid": 1234840, + "normalized_name": "bone marrow" + }, + { + "appid": 1234850, + "normalized_name": "synthetic blood mind shift" + }, + { + "appid": 1234870, + "normalized_name": "psyhotel simulator" + }, + { + "appid": 1234880, + "normalized_name": "troll hunter vr" + }, + { + "appid": 1234890, + "normalized_name": "labyrinth" + }, + { + "appid": 1234900, + "normalized_name": "sheptun" + }, + { + "appid": 1234920, + "normalized_name": "trickshot" + }, + { + "appid": 1234930, + "normalized_name": "reach" + }, + { + "appid": 1234940, + "normalized_name": "astronarch" + }, + { + "appid": 1234960, + "normalized_name": "greed" + }, + { + "appid": 1234970, + "normalized_name": "holmgang memories of the forgotten" + }, + { + "appid": 1234980, + "normalized_name": "live to win" + }, + { + "appid": 1234990, + "normalized_name": "pry into the void" + }, + { + "appid": 1235090, + "normalized_name": "magical miri" + }, + { + "appid": 1235100, + "normalized_name": "rolling hills make sushi make friends" + }, + { + "appid": 1235110, + "normalized_name": "rising star 2" + }, + { + "appid": 1235120, + "normalized_name": "meme run 2" + }, + { + "appid": 1235130, + "normalized_name": "roboshark rampage" + }, + { + "appid": 1235140, + "normalized_name": "yakuza like a dragon" + }, + { + "appid": 1235160, + "normalized_name": "boom stick" + }, + { + "appid": 1235220, + "normalized_name": "there a no armadillos in this game" + }, + { + "appid": 1235340, + "normalized_name": "turbo boom!" + }, + { + "appid": 1235350, + "normalized_name": "weed county" + }, + { + "appid": 1235360, + "normalized_name": "epic conquest 2" + }, + { + "appid": 1235400, + "normalized_name": "catharsis" + }, + { + "appid": 1235430, + "normalized_name": "cubeka" + }, + { + "appid": 1235440, + "normalized_name": "长星 long star" + }, + { + "appid": 1235450, + "normalized_name": "treasure drifter nian" + }, + { + "appid": 1235460, + "normalized_name": "angry bunny 2 lost hole" + }, + { + "appid": 1235470, + "normalized_name": "lotus knight" + }, + { + "appid": 1235480, + "normalized_name": "abst clicker farm" + }, + { + "appid": 1235510, + "normalized_name": "晴空:未来的守望" + }, + { + "appid": 1235520, + "normalized_name": "hentai dance" + }, + { + "appid": 1235570, + "normalized_name": "indian army mission pok" + }, + { + "appid": 1235710, + "normalized_name": "oddventure" + }, + { + "appid": 1235770, + "normalized_name": "volleyballed" + }, + { + "appid": 1235790, + "normalized_name": "dancing chair" + }, + { + "appid": 1235800, + "normalized_name": "oneiro" + }, + { + "appid": 1235810, + "normalized_name": "retro" + }, + { + "appid": 1235830, + "normalized_name": "dark water slime invader" + }, + { + "appid": 1235910, + "normalized_name": "adventures of tara" + }, + { + "appid": 1235920, + "normalized_name": "swordball" + }, + { + "appid": 1235950, + "normalized_name": "introvert" + }, + { + "appid": 1235980, + "normalized_name": "nice try!" + }, + { + "appid": 1236000, + "normalized_name": "armoured onslaught" + }, + { + "appid": 1236020, + "normalized_name": "dig mania" + }, + { + "appid": 1236040, + "normalized_name": "mahasona" + }, + { + "appid": 1236050, + "normalized_name": "genius!" + }, + { + "appid": 1236070, + "normalized_name": "mission zigloton" + }, + { + "appid": 1236100, + "normalized_name": "of evil and darkness" + }, + { + "appid": 1236140, + "normalized_name": "hentai girl seek" + }, + { + "appid": 1236160, + "normalized_name": "the last archwing" + }, + { + "appid": 1236170, + "normalized_name": "the fold ingression" + }, + { + "appid": 1236180, + "normalized_name": "balkadia" + }, + { + "appid": 1236190, + "normalized_name": "korpus buried over the black soil" + }, + { + "appid": 1236240, + "normalized_name": "zero idle" + }, + { + "appid": 1236250, + "normalized_name": "cult达人极限攀岩" + }, + { + "appid": 1236270, + "normalized_name": "skyjump" + }, + { + "appid": 1236320, + "normalized_name": "phalanx of resistance" + }, + { + "appid": 1236330, + "normalized_name": "car tuner 2020" + }, + { + "appid": 1236400, + "normalized_name": "hentai hentai" + }, + { + "appid": 1236430, + "normalized_name": "fxxx me royally!! horny magical princess" + }, + { + "appid": 1236450, + "normalized_name": "incredible dracula ocean's call" + }, + { + "appid": 1236470, + "normalized_name": "vr summer sports" + }, + { + "appid": 1236480, + "normalized_name": "king of volleyball" + }, + { + "appid": 1236490, + "normalized_name": "bamerang" + }, + { + "appid": 1236530, + "normalized_name": "starters orders classic horse racing" + }, + { + "appid": 1236560, + "normalized_name": "the dawn of art" + }, + { + "appid": 1236580, + "normalized_name": "tritium" + }, + { + "appid": 1236620, + "normalized_name": "endurium" + }, + { + "appid": 1236630, + "normalized_name": "uedi shadow of the citadel" + }, + { + "appid": 1236670, + "normalized_name": "codename terranova" + }, + { + "appid": 1236700, + "normalized_name": "goddess of hentai" + }, + { + "appid": 1236720, + "normalized_name": "spirit island" + }, + { + "appid": 1236760, + "normalized_name": "rule the rail!" + }, + { + "appid": 1236770, + "normalized_name": "spacecraft brawl" + }, + { + "appid": 1236780, + "normalized_name": "akiba's trip hellbound & debriefed" + }, + { + "appid": 1236800, + "normalized_name": "wildland initial attack" + }, + { + "appid": 1236810, + "normalized_name": "hard2fly" + }, + { + "appid": 1236820, + "normalized_name": "where the clouds end" + }, + { + "appid": 1236860, + "normalized_name": "edge of reality" + }, + { + "appid": 1236880, + "normalized_name": "survival africa" + }, + { + "appid": 1236900, + "normalized_name": "verdant village" + }, + { + "appid": 1236920, + "normalized_name": "space exodus" + }, + { + "appid": 1236930, + "normalized_name": "outliver tribulation" + }, + { + "appid": 1236960, + "normalized_name": "living legends the crystal tear collector's" + }, + { + "appid": 1236990, + "normalized_name": "boris and the dark survival" + }, + { + "appid": 1237040, + "normalized_name": "alpha hole prison a yaoi gay bara visual novel" + }, + { + "appid": 1237050, + "normalized_name": "thewanderervr" + }, + { + "appid": 1237060, + "normalized_name": "wise escape from prison (현명한 감옥 탈출기)" + }, + { + "appid": 1237070, + "normalized_name": "the cyclist tactics" + }, + { + "appid": 1237080, + "normalized_name": "comic book tycoon" + }, + { + "appid": 1237090, + "normalized_name": "bounty for sharks" + }, + { + "appid": 1237110, + "normalized_name": "me and (my) cat's castle" + }, + { + "appid": 1237120, + "normalized_name": "me and (my) cat's castle x" + }, + { + "appid": 1237170, + "normalized_name": "qual" + }, + { + "appid": 1237190, + "normalized_name": "orbis fugae" + }, + { + "appid": 1237210, + "normalized_name": "empty" + }, + { + "appid": 1237220, + "normalized_name": "hentai thigh" + }, + { + "appid": 1237240, + "normalized_name": "crypt of shadows" + }, + { + "appid": 1237250, + "normalized_name": "cloudscape" + }, + { + "appid": 1237260, + "normalized_name": "evil cult" + }, + { + "appid": 1237310, + "normalized_name": "rocket shipment" + }, + { + "appid": 1237320, + "normalized_name": "sonic frontiers" + }, + { + "appid": 1237330, + "normalized_name": "grafi valentine" + }, + { + "appid": 1237370, + "normalized_name": "牛顿与苹果树" + }, + { + "appid": 1237400, + "normalized_name": "the watcher's pursuit" + }, + { + "appid": 1237410, + "normalized_name": "ve gsim crane simulator" + }, + { + "appid": 1237460, + "normalized_name": "phoenix strike" + }, + { + "appid": 1237480, + "normalized_name": "isle of spirits" + }, + { + "appid": 1237490, + "normalized_name": "redneck ed astro monsters show" + }, + { + "appid": 1237510, + "normalized_name": "dr livingstone i presume? reversed escape room" + }, + { + "appid": 1237530, + "normalized_name": "kinky fight club" + }, + { + "appid": 1237540, + "normalized_name": "mma" + }, + { + "appid": 1237550, + "normalized_name": "great alhcemist" + }, + { + "appid": 1237560, + "normalized_name": "hot steel" + }, + { + "appid": 1237570, + "normalized_name": "samozbor id heaven" + }, + { + "appid": 1237590, + "normalized_name": "attack of the alien thingies from lava!" + }, + { + "appid": 1237610, + "normalized_name": "the catch carp & coarse fishing" + }, + { + "appid": 1237660, + "normalized_name": "终回〇murder reservation" + }, + { + "appid": 1237670, + "normalized_name": "anti air" + }, + { + "appid": 1237690, + "normalized_name": "hvor" + }, + { + "appid": 1237700, + "normalized_name": "building the universe the beginning of time" + }, + { + "appid": 1237730, + "normalized_name": "catlateral damage remeowstered" + }, + { + "appid": 1237760, + "normalized_name": "the trud" + }, + { + "appid": 1237780, + "normalized_name": "area man lives" + }, + { + "appid": 1237800, + "normalized_name": "fields of glory" + }, + { + "appid": 1237820, + "normalized_name": "tower blitz" + }, + { + "appid": 1237840, + "normalized_name": "blood relation part1." + }, + { + "appid": 1237870, + "normalized_name": "boss rush mythology" + }, + { + "appid": 1237880, + "normalized_name": "red town" + }, + { + "appid": 1237890, + "normalized_name": "goomanuvr" + }, + { + "appid": 1237900, + "normalized_name": "legion's crawl 2" + }, + { + "appid": 1237950, + "normalized_name": "star wars battlefront ii" + }, + { + "appid": 1237970, + "normalized_name": "titanfall 2" + }, + { + "appid": 1237980, + "normalized_name": "star wars battlefront" + }, + { + "appid": 1238000, + "normalized_name": "mass effect andromeda" + }, + { + "appid": 1238020, + "normalized_name": "mass effect 3 (2012 edition)" + }, + { + "appid": 1238040, + "normalized_name": "dragon age ii" + }, + { + "appid": 1238060, + "normalized_name": "dead space 3" + }, + { + "appid": 1238080, + "normalized_name": "burnout paradise" + }, + { + "appid": 1238130, + "normalized_name": "禁忌" + }, + { + "appid": 1238180, + "normalized_name": "my universe school teacher" + }, + { + "appid": 1238190, + "normalized_name": "ant colony wild forest" + }, + { + "appid": 1238220, + "normalized_name": "unnamed" + }, + { + "appid": 1238250, + "normalized_name": "cave game" + }, + { + "appid": 1238280, + "normalized_name": "100 doors game escape from school" + }, + { + "appid": 1238330, + "normalized_name": "frontline panzer blitzkrieg!" + }, + { + "appid": 1238340, + "normalized_name": "terra lander ii rockslide rescue" + }, + { + "appid": 1238360, + "normalized_name": "into a dream" + }, + { + "appid": 1238390, + "normalized_name": "this dead winter" + }, + { + "appid": 1238400, + "normalized_name": "never date werewolves" + }, + { + "appid": 1238450, + "normalized_name": "interference dead air" + }, + { + "appid": 1238470, + "normalized_name": "com" + }, + { + "appid": 1238480, + "normalized_name": "mcspace colosseum" + }, + { + "appid": 1238490, + "normalized_name": "moonrun" + }, + { + "appid": 1238520, + "normalized_name": "dandelions in the sky" + }, + { + "appid": 1238540, + "normalized_name": "simple loto simulator" + }, + { + "appid": 1238620, + "normalized_name": "peg solitaire adventure" + }, + { + "appid": 1238630, + "normalized_name": "fatcat with hat reload the powergun" + }, + { + "appid": 1238650, + "normalized_name": "truck parking simulator" + }, + { + "appid": 1238680, + "normalized_name": "amairo chocolate" + }, + { + "appid": 1238710, + "normalized_name": "wonderland nights white rabbit's diary" + }, + { + "appid": 1238720, + "normalized_name": "wandering through the vines" + }, + { + "appid": 1238730, + "normalized_name": "flowers le volume sur automne" + }, + { + "appid": 1238780, + "normalized_name": "shark in aquarium" + }, + { + "appid": 1238810, + "normalized_name": "battlefield v" + }, + { + "appid": 1238820, + "normalized_name": "battlefield 3" + }, + { + "appid": 1238840, + "normalized_name": "battlefield 1" + }, + { + "appid": 1238860, + "normalized_name": "battlefield 4" + }, + { + "appid": 1238880, + "normalized_name": "battlefield hardline" + }, + { + "appid": 1238920, + "normalized_name": "future fragments" + }, + { + "appid": 1238940, + "normalized_name": "the songbird guild" + }, + { + "appid": 1238970, + "normalized_name": "sudd city adventures" + }, + { + "appid": 1238980, + "normalized_name": "pancake house" + }, + { + "appid": 1238990, + "normalized_name": "fractured core" + }, + { + "appid": 1239000, + "normalized_name": "relentless" + }, + { + "appid": 1239020, + "normalized_name": "together bnb" + }, + { + "appid": 1239030, + "normalized_name": "seven dunes curse on the golden sand" + }, + { + "appid": 1239050, + "normalized_name": "mists of aiden" + }, + { + "appid": 1239080, + "normalized_name": "door kickers 2 task force north" + }, + { + "appid": 1239120, + "normalized_name": "pyro the exterminator" + }, + { + "appid": 1239140, + "normalized_name": "cube" + }, + { + "appid": 1239180, + "normalized_name": "az oath of brotherhood prologue 1" + }, + { + "appid": 1239260, + "normalized_name": "barro f" + }, + { + "appid": 1239270, + "normalized_name": "yoren" + }, + { + "appid": 1239280, + "normalized_name": "black box map maker" + }, + { + "appid": 1239300, + "normalized_name": "gravewood high" + }, + { + "appid": 1239320, + "normalized_name": "animal shelter" + }, + { + "appid": 1239360, + "normalized_name": "genokids" + }, + { + "appid": 1239400, + "normalized_name": "death courier" + }, + { + "appid": 1239470, + "normalized_name": "raid" + }, + { + "appid": 1239490, + "normalized_name": "love a puzzle box filled with stories" + }, + { + "appid": 1239580, + "normalized_name": "fap simulator" + }, + { + "appid": 1239590, + "normalized_name": "t.a.r.s" + }, + { + "appid": 1239600, + "normalized_name": "pathseeker" + }, + { + "appid": 1239660, + "normalized_name": "formula retro racing" + }, + { + "appid": 1239690, + "normalized_name": "retrowave" + }, + { + "appid": 1239710, + "normalized_name": "draco vr dragon sim" + }, + { + "appid": 1239720, + "normalized_name": "pallas of vines" + }, + { + "appid": 1239740, + "normalized_name": "up on the rooftop" + }, + { + "appid": 1239780, + "normalized_name": "up on the rooftop soundtrack" + }, + { + "appid": 1239800, + "normalized_name": "cannon jump" + }, + { + "appid": 1239870, + "normalized_name": "memory player" + }, + { + "appid": 1239900, + "normalized_name": "infection point" + }, + { + "appid": 1239920, + "normalized_name": "xyla and the 'shrooms of doom" + }, + { + "appid": 1239930, + "normalized_name": "turtoa global rhythm" + }, + { + "appid": 1239940, + "normalized_name": "greed abandoned dogs" + }, + { + "appid": 1239950, + "normalized_name": "astronaut the best" + }, + { + "appid": 1239970, + "normalized_name": "the yolk street" + }, + { + "appid": 1239980, + "normalized_name": "luciform" + }, + { + "appid": 1239990, + "normalized_name": "dantes bullet inferno" + }, + { + "appid": 1240040, + "normalized_name": "sokobunny" + }, + { + "appid": 1240050, + "normalized_name": "pendragon narrative tactics" + }, + { + "appid": 1240060, + "normalized_name": "a highland song" + }, + { + "appid": 1240120, + "normalized_name": "typical cliche" + }, + { + "appid": 1240130, + "normalized_name": "dashing fire" + }, + { + "appid": 1240140, + "normalized_name": "unlord" + }, + { + "appid": 1240160, + "normalized_name": "koromu auto battler⭐202020" + }, + { + "appid": 1240180, + "normalized_name": "rocket panda panic" + }, + { + "appid": 1240210, + "normalized_name": "there is no game wrong dimension" + }, + { + "appid": 1240220, + "normalized_name": "eternal fighters" + }, + { + "appid": 1240230, + "normalized_name": "tony stewart's sprint car racing" + }, + { + "appid": 1240240, + "normalized_name": "legendary knight 傳奇騎士" + }, + { + "appid": 1240270, + "normalized_name": "the botanist" + }, + { + "appid": 1240290, + "normalized_name": "infestation battle royale" + }, + { + "appid": 1240350, + "normalized_name": "galactic center vr" + }, + { + "appid": 1240370, + "normalized_name": "shell corp" + }, + { + "appid": 1240440, + "normalized_name": "halo infinite" + }, + { + "appid": 1240450, + "normalized_name": "garden witch life" + }, + { + "appid": 1240460, + "normalized_name": "technotsunami" + }, + { + "appid": 1240480, + "normalized_name": "花园魔三国 thesacrificialgirlofthefantasy3kingdoms" + }, + { + "appid": 1240510, + "normalized_name": "witch and spirit" + }, + { + "appid": 1240530, + "normalized_name": "dungeon warriors" + }, + { + "appid": 1240550, + "normalized_name": "until the last plane" + }, + { + "appid": 1240590, + "normalized_name": "sir whoopass immortal death" + }, + { + "appid": 1240600, + "normalized_name": "beach anime day" + }, + { + "appid": 1240610, + "normalized_name": "武林鸡侠传" + }, + { + "appid": 1240620, + "normalized_name": "kosmickop" + }, + { + "appid": 1240630, + "normalized_name": "hex of steel" + }, + { + "appid": 1240680, + "normalized_name": "hades fighting ball" + }, + { + "appid": 1240690, + "normalized_name": "pivo" + }, + { + "appid": 1240730, + "normalized_name": "dark room" + }, + { + "appid": 1240770, + "normalized_name": "scorched islands" + }, + { + "appid": 1240790, + "normalized_name": "legacy of sin the father sacrifice" + }, + { + "appid": 1240810, + "normalized_name": "잭과 콩나무 숨겨진 이야기" + }, + { + "appid": 1240840, + "normalized_name": "shadow puppets & beijing opera" + }, + { + "appid": 1240890, + "normalized_name": "seek girl 2" + }, + { + "appid": 1240910, + "normalized_name": "已下架" + }, + { + "appid": 1241020, + "normalized_name": "idle warrior" + }, + { + "appid": 1241030, + "normalized_name": "jetpack stadium" + }, + { + "appid": 1241040, + "normalized_name": "deep despair" + }, + { + "appid": 1241050, + "normalized_name": "savekunkun" + }, + { + "appid": 1241100, + "normalized_name": "polygon" + }, + { + "appid": 1241110, + "normalized_name": "anarchy" + }, + { + "appid": 1241140, + "normalized_name": "return to sender" + }, + { + "appid": 1241160, + "normalized_name": "pulse forge vr v0.544" + }, + { + "appid": 1241180, + "normalized_name": "降神战役 a story of the usurpers" + }, + { + "appid": 1241230, + "normalized_name": "hack or die!" + }, + { + "appid": 1241370, + "normalized_name": "fiercewind decay" + }, + { + "appid": 1241380, + "normalized_name": "reborn in the android womb" + }, + { + "appid": 1241390, + "normalized_name": "haunted space" + }, + { + "appid": 1241400, + "normalized_name": "bomb fight" + }, + { + "appid": 1241500, + "normalized_name": "dirty harry's thunder drive" + }, + { + "appid": 1241510, + "normalized_name": "the test" + }, + { + "appid": 1241520, + "normalized_name": "the horrorscope" + }, + { + "appid": 1241540, + "normalized_name": "celestial reactors" + }, + { + "appid": 1241590, + "normalized_name": "tag.io" + }, + { + "appid": 1241630, + "normalized_name": "super console kid" + }, + { + "appid": 1241690, + "normalized_name": "fatal wings" + }, + { + "appid": 1241700, + "normalized_name": "there is no game jam 2015" + }, + { + "appid": 1241710, + "normalized_name": "energy island corp." + }, + { + "appid": 1241740, + "normalized_name": "endure" + }, + { + "appid": 1241760, + "normalized_name": "black cat adventures" + }, + { + "appid": 1241780, + "normalized_name": "catdog puzzle" + }, + { + "appid": 1241810, + "normalized_name": "bowmen" + }, + { + "appid": 1241860, + "normalized_name": "get good" + }, + { + "appid": 1241910, + "normalized_name": "victory and glory the american civil war" + }, + { + "appid": 1241950, + "normalized_name": "warzone 2100" + }, + { + "appid": 1242630, + "normalized_name": "skid cities" + }, + { + "appid": 1242670, + "normalized_name": "rollingsky" + }, + { + "appid": 1242730, + "normalized_name": "双子树 twintrees" + }, + { + "appid": 1242800, + "normalized_name": "tower of the approval" + }, + { + "appid": 1242820, + "normalized_name": "girland" + }, + { + "appid": 1242910, + "normalized_name": "the house in the forest" + }, + { + "appid": 1242960, + "normalized_name": "gun lady" + }, + { + "appid": 1242980, + "normalized_name": "keywe" + }, + { + "appid": 1243010, + "normalized_name": "james peris sin licencia ni control edición definitiva" + }, + { + "appid": 1243030, + "normalized_name": "send them to the sky" + }, + { + "appid": 1243040, + "normalized_name": "pixel pileup party" + }, + { + "appid": 1243050, + "normalized_name": "ostrova koshki" + }, + { + "appid": 1243060, + "normalized_name": "infiniball" + }, + { + "appid": 1243100, + "normalized_name": "galaxy warfighter" + }, + { + "appid": 1243130, + "normalized_name": "nimbatus drone creator" + }, + { + "appid": 1243140, + "normalized_name": "hellpoint the thespian feast" + }, + { + "appid": 1243150, + "normalized_name": "mr maker 3d level editor" + }, + { + "appid": 1243160, + "normalized_name": "the galactic junkers" + }, + { + "appid": 1243200, + "normalized_name": "stuffed" + }, + { + "appid": 1243220, + "normalized_name": "picklock" + }, + { + "appid": 1243240, + "normalized_name": "season match 4" + }, + { + "appid": 1243260, + "normalized_name": "mossen seikkailut" + }, + { + "appid": 1243290, + "normalized_name": "k'nife fight" + }, + { + "appid": 1243310, + "normalized_name": "turret" + }, + { + "appid": 1243320, + "normalized_name": "war for magincia" + }, + { + "appid": 1243360, + "normalized_name": "sigma draconis" + }, + { + "appid": 1243370, + "normalized_name": "rubicon" + }, + { + "appid": 1243410, + "normalized_name": "the adventures of spunk dodgers and splat" + }, + { + "appid": 1243420, + "normalized_name": "sanguine rose" + }, + { + "appid": 1243450, + "normalized_name": "detectives united iii timeless voyage collector's" + }, + { + "appid": 1243520, + "normalized_name": "kur" + }, + { + "appid": 1243530, + "normalized_name": "tobari 2 dream ocean" + }, + { + "appid": 1243540, + "normalized_name": "wayfarers edge" + }, + { + "appid": 1243550, + "normalized_name": "silkroad project" + }, + { + "appid": 1243560, + "normalized_name": "vaporwave world" + }, + { + "appid": 1243580, + "normalized_name": "stalker" + }, + { + "appid": 1243640, + "normalized_name": "entelechy" + }, + { + "appid": 1243670, + "normalized_name": "higurashi when they cry hou ch.8 matsuribayashi" + }, + { + "appid": 1243690, + "normalized_name": "gods will fall" + }, + { + "appid": 1243700, + "normalized_name": "长安夜明" + }, + { + "appid": 1243750, + "normalized_name": "sea fishing simulator" + }, + { + "appid": 1243790, + "normalized_name": "heart star" + }, + { + "appid": 1243820, + "normalized_name": "nyc bungee" + }, + { + "appid": 1243830, + "normalized_name": "overcooked! all you can eat" + }, + { + "appid": 1243850, + "normalized_name": "this bed we made" + }, + { + "appid": 1243880, + "normalized_name": "evil inside" + }, + { + "appid": 1243890, + "normalized_name": "sword of the necromancer" + }, + { + "appid": 1243900, + "normalized_name": "climb the tower" + }, + { + "appid": 1243930, + "normalized_name": "clipped" + }, + { + "appid": 1243960, + "normalized_name": "unspottable" + }, + { + "appid": 1244050, + "normalized_name": "realm hacker" + }, + { + "appid": 1244090, + "normalized_name": "sea of stars" + }, + { + "appid": 1244140, + "normalized_name": "bulk dominoes vr kinetic rush" + }, + { + "appid": 1244150, + "normalized_name": "secrets of moon island" + }, + { + "appid": 1244190, + "normalized_name": "maze burrow" + }, + { + "appid": 1244210, + "normalized_name": "fragile box" + }, + { + "appid": 1244260, + "normalized_name": "the fairy's song" + }, + { + "appid": 1244300, + "normalized_name": "the astro parcel service" + }, + { + "appid": 1244370, + "normalized_name": "electronic squash" + }, + { + "appid": 1244380, + "normalized_name": "pirates? pirates!" + }, + { + "appid": 1244410, + "normalized_name": "cloud miners" + }, + { + "appid": 1244450, + "normalized_name": "moghvr" + }, + { + "appid": 1244460, + "normalized_name": "jurassic world evolution 2" + }, + { + "appid": 1244470, + "normalized_name": "onejump" + }, + { + "appid": 1244520, + "normalized_name": "2d baseball duel" + }, + { + "appid": 1244530, + "normalized_name": "betelgeuse" + }, + { + "appid": 1244600, + "normalized_name": "let's drive learn driving simulator" + }, + { + "appid": 1244610, + "normalized_name": "beach games holidays flirt game find love or have fun" + }, + { + "appid": 1244620, + "normalized_name": "psycho simulator" + }, + { + "appid": 1244630, + "normalized_name": "house builder" + }, + { + "appid": 1244760, + "normalized_name": "美少女格斗学院/beautiful girl fight school" + }, + { + "appid": 1244770, + "normalized_name": "lilydeux 警告の黒き百合" + }, + { + "appid": 1244800, + "normalized_name": "terraformers" + }, + { + "appid": 1244830, + "normalized_name": "conflict europe" + }, + { + "appid": 1244850, + "normalized_name": "witch college 2" + }, + { + "appid": 1244890, + "normalized_name": "sunburnt" + }, + { + "appid": 1244910, + "normalized_name": "my supermarket" + }, + { + "appid": 1244930, + "normalized_name": "mask of the plague doctor" + }, + { + "appid": 1244950, + "normalized_name": "battletoads" + }, + { + "appid": 1244960, + "normalized_name": "moonlight mansion" + }, + { + "appid": 1245000, + "normalized_name": "poly duels" + }, + { + "appid": 1245060, + "normalized_name": "somny & yawn dream detectives" + }, + { + "appid": 1245080, + "normalized_name": "mutated muter's invasion" + }, + { + "appid": 1245090, + "normalized_name": "teacher lady" + }, + { + "appid": 1245140, + "normalized_name": "sidetracked!" + }, + { + "appid": 1245170, + "normalized_name": "f 117a stealth fighter (nes edition)" + }, + { + "appid": 1245220, + "normalized_name": "serial lover" + }, + { + "appid": 1245250, + "normalized_name": "thrive heavy lies the crown" + }, + { + "appid": 1245260, + "normalized_name": "battle for iwo jima" + }, + { + "appid": 1245280, + "normalized_name": "skeleton warrior" + }, + { + "appid": 1245350, + "normalized_name": "race maniacs" + }, + { + "appid": 1245360, + "normalized_name": "cubic juice" + }, + { + "appid": 1245370, + "normalized_name": "puzzle forge dungeon" + }, + { + "appid": 1245380, + "normalized_name": "neko girl play" + }, + { + "appid": 1245430, + "normalized_name": "golden light" + }, + { + "appid": 1245440, + "normalized_name": "ghosts and bureaucracy" + }, + { + "appid": 1245470, + "normalized_name": "ski jumping 2020" + }, + { + "appid": 1245480, + "normalized_name": "synduality echo of ada" + }, + { + "appid": 1245500, + "normalized_name": "break the web" + }, + { + "appid": 1245540, + "normalized_name": "东方夜光幻梦~touhou endless dream" + }, + { + "appid": 1245550, + "normalized_name": "zombie defense shelter" + }, + { + "appid": 1245560, + "normalized_name": "roots of pacha" + }, + { + "appid": 1245580, + "normalized_name": "rest house ii the wizard" + }, + { + "appid": 1245610, + "normalized_name": "achat" + }, + { + "appid": 1245620, + "normalized_name": "elden ring" + }, + { + "appid": 1245630, + "normalized_name": "virage rally" + }, + { + "appid": 1245640, + "normalized_name": "the book of distance" + }, + { + "appid": 1245660, + "normalized_name": "ballavita" + }, + { + "appid": 1245670, + "normalized_name": "blackstone academy for the magical arts" + }, + { + "appid": 1245730, + "normalized_name": "chuck meowrris" + }, + { + "appid": 1245780, + "normalized_name": "mirage" + }, + { + "appid": 1245800, + "normalized_name": "whites this" + }, + { + "appid": 1245810, + "normalized_name": "bitvault" + }, + { + "appid": 1245820, + "normalized_name": "life of a mercenary" + }, + { + "appid": 1245900, + "normalized_name": "comrade in arms" + }, + { + "appid": 1245910, + "normalized_name": "hentai most wanted" + }, + { + "appid": 1245920, + "normalized_name": "vaporball" + }, + { + "appid": 1245950, + "normalized_name": "ironlights" + }, + { + "appid": 1245980, + "normalized_name": "forest monster" + }, + { + "appid": 1246020, + "normalized_name": "noesis01_诉说谎言记忆物语" + }, + { + "appid": 1246050, + "normalized_name": "my ex is a ghost" + }, + { + "appid": 1246060, + "normalized_name": "三国梦之队" + }, + { + "appid": 1246120, + "normalized_name": "neonflight" + }, + { + "appid": 1246130, + "normalized_name": "powerslide legends" + }, + { + "appid": 1246140, + "normalized_name": "cybernetica" + }, + { + "appid": 1246160, + "normalized_name": "planisphere" + }, + { + "appid": 1246170, + "normalized_name": "zynet" + }, + { + "appid": 1246200, + "normalized_name": "super toxicboy" + }, + { + "appid": 1246230, + "normalized_name": "boom blaster" + }, + { + "appid": 1246250, + "normalized_name": "an airport for aliens currently run by dogs" + }, + { + "appid": 1246320, + "normalized_name": "euler wars" + }, + { + "appid": 1246390, + "normalized_name": "another_world" + }, + { + "appid": 1246420, + "normalized_name": "clown nightmare satan's joke" + }, + { + "appid": 1246460, + "normalized_name": "去死吧蝙蝠" + }, + { + "appid": 1246470, + "normalized_name": "my defense story" + }, + { + "appid": 1246490, + "normalized_name": "domino simulator" + }, + { + "appid": 1246540, + "normalized_name": "alice sisters" + }, + { + "appid": 1246600, + "normalized_name": "feed the horsebear" + }, + { + "appid": 1246620, + "normalized_name": "neon parasite" + }, + { + "appid": 1246650, + "normalized_name": "réel futur" + }, + { + "appid": 1246680, + "normalized_name": "two worlds the 3d art gallery" + }, + { + "appid": 1246710, + "normalized_name": "hooplord" + }, + { + "appid": 1246780, + "normalized_name": "hentai memory leak ii" + }, + { + "appid": 1246870, + "normalized_name": "harvest moon one world" + }, + { + "appid": 1246930, + "normalized_name": "encore classic card games" + }, + { + "appid": 1246940, + "normalized_name": "encore classic casino games" + }, + { + "appid": 1246950, + "normalized_name": "where in the world is carmen sandiego?" + }, + { + "appid": 1247020, + "normalized_name": "lovingly evil" + }, + { + "appid": 1247030, + "normalized_name": "perpetual dream" + }, + { + "appid": 1247040, + "normalized_name": "void monsters 2 the blight" + }, + { + "appid": 1247070, + "normalized_name": "rascallz tiki tiki" + }, + { + "appid": 1247100, + "normalized_name": "spellmaster the saga" + }, + { + "appid": 1247110, + "normalized_name": "chasing light" + }, + { + "appid": 1247160, + "normalized_name": "wardogs red's return" + }, + { + "appid": 1247170, + "normalized_name": "alien cat" + }, + { + "appid": 1247190, + "normalized_name": "family mysteries 2 echoes of tomorrow" + }, + { + "appid": 1247210, + "normalized_name": "invisible man" + }, + { + "appid": 1247250, + "normalized_name": "quick trivia" + }, + { + "appid": 1247360, + "normalized_name": "grand mountain adventure wonderlands" + }, + { + "appid": 1247370, + "normalized_name": "food chain" + }, + { + "appid": 1247400, + "normalized_name": "red zirion" + }, + { + "appid": 1247460, + "normalized_name": "to the edge of the sky" + }, + { + "appid": 1247470, + "normalized_name": "thirsty heroes" + }, + { + "appid": 1247490, + "normalized_name": "cube course" + }, + { + "appid": 1247570, + "normalized_name": "expedition zero" + }, + { + "appid": 1247580, + "normalized_name": "the dark heart of balor" + }, + { + "appid": 1247640, + "normalized_name": "dwarf shop" + }, + { + "appid": 1247650, + "normalized_name": "immortal love stone beauty collector's" + }, + { + "appid": 1247720, + "normalized_name": "pizza master vr" + }, + { + "appid": 1247730, + "normalized_name": "carrots and cream" + }, + { + "appid": 1247740, + "normalized_name": "your story" + }, + { + "appid": 1247830, + "normalized_name": "drive forward" + }, + { + "appid": 1247860, + "normalized_name": "藏梦 hidden dream" + }, + { + "appid": 1247870, + "normalized_name": "spectrum" + }, + { + "appid": 1247910, + "normalized_name": "dragon banner" + }, + { + "appid": 1247920, + "normalized_name": "被遺棄的雙子 gemini of the abandoned" + }, + { + "appid": 1247930, + "normalized_name": "lesbian voyeur simulator" + }, + { + "appid": 1247940, + "normalized_name": "greyhat a digital detective adventure" + }, + { + "appid": 1247950, + "normalized_name": "zombie variant" + }, + { + "appid": 1248030, + "normalized_name": "thrillgate" + }, + { + "appid": 1248060, + "normalized_name": "realpolitiks ii" + }, + { + "appid": 1248080, + "normalized_name": "cygni all guns blazing" + }, + { + "appid": 1248100, + "normalized_name": "protective clothing" + }, + { + "appid": 1248120, + "normalized_name": "higher critters 1v4" + }, + { + "appid": 1248130, + "normalized_name": "farming simulator 22" + }, + { + "appid": 1248140, + "normalized_name": "trailer trashers" + }, + { + "appid": 1248200, + "normalized_name": "the deadly facade" + }, + { + "appid": 1248220, + "normalized_name": "无上道" + }, + { + "appid": 1248230, + "normalized_name": "peakpoise" + }, + { + "appid": 1248240, + "normalized_name": "plugmax" + }, + { + "appid": 1248270, + "normalized_name": "spellbound spire" + }, + { + "appid": 1248350, + "normalized_name": "nyanco channel" + }, + { + "appid": 1248370, + "normalized_name": "quarter horse racing" + }, + { + "appid": 1248390, + "normalized_name": "aspiring light" + }, + { + "appid": 1248420, + "normalized_name": "hexahedra" + }, + { + "appid": 1248450, + "normalized_name": "totemlands" + }, + { + "appid": 1248460, + "normalized_name": "werewolves 2 pack mentality" + }, + { + "appid": 1248490, + "normalized_name": "senshi tank 2 space bots" + }, + { + "appid": 1248510, + "normalized_name": "performer" + }, + { + "appid": 1248520, + "normalized_name": "entertainment hero 2" + }, + { + "appid": 1248540, + "normalized_name": "all must fall" + }, + { + "appid": 1248550, + "normalized_name": "breaking gates" + }, + { + "appid": 1248570, + "normalized_name": "archaid" + }, + { + "appid": 1248590, + "normalized_name": "a squire's tale" + }, + { + "appid": 1248670, + "normalized_name": "stanga" + }, + { + "appid": 1248680, + "normalized_name": "speed sweeper" + }, + { + "appid": 1248710, + "normalized_name": "enefn" + }, + { + "appid": 1248730, + "normalized_name": "rattus" + }, + { + "appid": 1248740, + "normalized_name": "campgrounds iv collector's" + }, + { + "appid": 1248750, + "normalized_name": "the old war" + }, + { + "appid": 1248790, + "normalized_name": "rollback" + }, + { + "appid": 1248800, + "normalized_name": "the rule of land pioneers" + }, + { + "appid": 1248810, + "normalized_name": "离校日 the school leaving day" + }, + { + "appid": 1248820, + "normalized_name": "逝去的回忆3外传" + }, + { + "appid": 1248840, + "normalized_name": "sephonie" + }, + { + "appid": 1248860, + "normalized_name": "cuyo" + }, + { + "appid": 1248870, + "normalized_name": "イヌワシ ~うらぶれ探偵とお嬢様刑事の池袋事件ファイル~" + }, + { + "appid": 1248910, + "normalized_name": "chronicle of daneya" + }, + { + "appid": 1248960, + "normalized_name": "bigwig flint" + }, + { + "appid": 1248970, + "normalized_name": "hentai amazon girls" + }, + { + "appid": 1249010, + "normalized_name": "isoland3 dust of the universe" + }, + { + "appid": 1249040, + "normalized_name": "american arcadia" + }, + { + "appid": 1249060, + "normalized_name": "我的公司996" + }, + { + "appid": 1249070, + "normalized_name": "aeternoblade ii infinity" + }, + { + "appid": 1249080, + "normalized_name": "lynn the girl drawn on puzzles" + }, + { + "appid": 1249110, + "normalized_name": "skully" + }, + { + "appid": 1249130, + "normalized_name": "hero of the kingdom the lost tales 1" + }, + { + "appid": 1249150, + "normalized_name": "daedaluz" + }, + { + "appid": 1249170, + "normalized_name": "mine dungeon" + }, + { + "appid": 1249190, + "normalized_name": "the trivial dead" + }, + { + "appid": 1249260, + "normalized_name": "birth me code" + }, + { + "appid": 1249270, + "normalized_name": "physics based golf" + }, + { + "appid": 1249290, + "normalized_name": "the curse of zigoris" + }, + { + "appid": 1249300, + "normalized_name": "the indifferent wonder of an edible place" + }, + { + "appid": 1249390, + "normalized_name": "tales in the taxi" + }, + { + "appid": 1249400, + "normalized_name": "summon masks" + }, + { + "appid": 1249410, + "normalized_name": "bloodwych" + }, + { + "appid": 1249420, + "normalized_name": "steampunk genius" + }, + { + "appid": 1249430, + "normalized_name": "sarawak" + }, + { + "appid": 1249480, + "normalized_name": "ex zodiac" + }, + { + "appid": 1249490, + "normalized_name": "botty paper tales" + }, + { + "appid": 1249500, + "normalized_name": "apprehend;girlfriend" + }, + { + "appid": 1249510, + "normalized_name": "hnefatafl" + }, + { + "appid": 1249620, + "normalized_name": "adventures of jq jones \"isle of the serpent empress\"" + }, + { + "appid": 1249670, + "normalized_name": "transfer of essence" + }, + { + "appid": 1249680, + "normalized_name": "ninshi masuta" + }, + { + "appid": 1249700, + "normalized_name": "warspace" + }, + { + "appid": 1249730, + "normalized_name": "spacewalk defender" + }, + { + "appid": 1249740, + "normalized_name": "carnival games" + }, + { + "appid": 1249750, + "normalized_name": "touch typing home row speed grinder" + }, + { + "appid": 1249780, + "normalized_name": "iron disco" + }, + { + "appid": 1249800, + "normalized_name": "xuan yuan sword vii" + }, + { + "appid": 1249820, + "normalized_name": "crush zone demolition derby" + }, + { + "appid": 1249850, + "normalized_name": "king of vikings" + }, + { + "appid": 1249880, + "normalized_name": "tiny bunny prologue" + }, + { + "appid": 1249890, + "normalized_name": "survival denied" + }, + { + "appid": 1249970, + "normalized_name": "test drive unlimited solar crown" + }, + { + "appid": 1249980, + "normalized_name": "愛神餐館max" + }, + { + "appid": 1250030, + "normalized_name": "ourea" + }, + { + "appid": 1250040, + "normalized_name": "pasvan" + }, + { + "appid": 1250060, + "normalized_name": "法利恩戰記(furion chronicles)" + }, + { + "appid": 1250090, + "normalized_name": "housebreaker" + }, + { + "appid": 1250100, + "normalized_name": "space station manager" + }, + { + "appid": 1250120, + "normalized_name": "swamp castle" + }, + { + "appid": 1250160, + "normalized_name": "spellbind tactics" + }, + { + "appid": 1250180, + "normalized_name": "runaway demon bride" + }, + { + "appid": 1250210, + "normalized_name": "cyber battle 69" + }, + { + "appid": 1250220, + "normalized_name": "fallen region" + }, + { + "appid": 1250250, + "normalized_name": "namco museum archives vol 1" + }, + { + "appid": 1250260, + "normalized_name": "quarter dollar" + }, + { + "appid": 1250270, + "normalized_name": "laser heck" + }, + { + "appid": 1250280, + "normalized_name": "путешествие паладина" + }, + { + "appid": 1250290, + "normalized_name": "you are next" + }, + { + "appid": 1250300, + "normalized_name": "orders of magnitude" + }, + { + "appid": 1250350, + "normalized_name": "rhyme storm" + }, + { + "appid": 1250410, + "normalized_name": "microsoft flight simulator 40th anniversary" + }, + { + "appid": 1250420, + "normalized_name": "star seeker" + }, + { + "appid": 1250440, + "normalized_name": "garlic" + }, + { + "appid": 1250490, + "normalized_name": "retro vaders reloaded" + }, + { + "appid": 1250510, + "normalized_name": "2 times circles" + }, + { + "appid": 1250520, + "normalized_name": "love spell written in the stars a magical romantic comedy otome" + }, + { + "appid": 1250560, + "normalized_name": "chess sudoku" + }, + { + "appid": 1250590, + "normalized_name": "escape point" + }, + { + "appid": 1250610, + "normalized_name": "flash snooker game" + }, + { + "appid": 1250630, + "normalized_name": "recolit" + }, + { + "appid": 1250640, + "normalized_name": "apocalypse age destruction" + }, + { + "appid": 1250650, + "normalized_name": "ai*shoujo/ai*少女" + }, + { + "appid": 1250670, + "normalized_name": "厷雏grandnestling" + }, + { + "appid": 1250700, + "normalized_name": "jetpack guy" + }, + { + "appid": 1250760, + "normalized_name": "海沙风云 far away" + }, + { + "appid": 1250770, + "normalized_name": "前進吧!高捷少女initiating station plus" + }, + { + "appid": 1250790, + "normalized_name": "crafting idle clicker" + }, + { + "appid": 1250810, + "normalized_name": "festoon" + }, + { + "appid": 1250850, + "normalized_name": "spiritual calling" + }, + { + "appid": 1250870, + "normalized_name": "cyrano story" + }, + { + "appid": 1250900, + "normalized_name": "project beril / 贝丽尔养成计划" + }, + { + "appid": 1250940, + "normalized_name": "demon blast" + }, + { + "appid": 1250960, + "normalized_name": "space redemption" + }, + { + "appid": 1250990, + "normalized_name": "summoners mist" + }, + { + "appid": 1251040, + "normalized_name": "aegis descent" + }, + { + "appid": 1251060, + "normalized_name": "the fallen" + }, + { + "appid": 1251090, + "normalized_name": "wolfie's break out" + }, + { + "appid": 1251130, + "normalized_name": "brinkmanship" + }, + { + "appid": 1251200, + "normalized_name": "glitchy apocalypse simulator" + }, + { + "appid": 1251210, + "normalized_name": "dungeon no dungeon" + }, + { + "appid": 1251240, + "normalized_name": "vorlaw space opera" + }, + { + "appid": 1251250, + "normalized_name": "cock soccer" + }, + { + "appid": 1251270, + "normalized_name": "istoria" + }, + { + "appid": 1251290, + "normalized_name": "devil fight" + }, + { + "appid": 1251300, + "normalized_name": "last floor" + }, + { + "appid": 1251310, + "normalized_name": "wonder land" + }, + { + "appid": 1251320, + "normalized_name": "jumplose" + }, + { + "appid": 1251330, + "normalized_name": "frak!" + }, + { + "appid": 1251360, + "normalized_name": "hua mulan a chinese learning adventure" + }, + { + "appid": 1251380, + "normalized_name": "bottle journey" + }, + { + "appid": 1251400, + "normalized_name": "界仙 the world of xian" + }, + { + "appid": 1251410, + "normalized_name": "golf ace" + }, + { + "appid": 1251430, + "normalized_name": "box boxing" + }, + { + "appid": 1251460, + "normalized_name": "tanuki sunset" + }, + { + "appid": 1251520, + "normalized_name": "mystic escape diary of a prisoner" + }, + { + "appid": 1251550, + "normalized_name": "nagiq" + }, + { + "appid": 1251580, + "normalized_name": "dreamless the madness from the sea" + }, + { + "appid": 1251630, + "normalized_name": "brick breaker vr" + }, + { + "appid": 1251670, + "normalized_name": "divinoids" + }, + { + "appid": 1251680, + "normalized_name": "rescue elves" + }, + { + "appid": 1251690, + "normalized_name": "my hole is a mouth of dirt" + }, + { + "appid": 1251750, + "normalized_name": "family man prologue" + }, + { + "appid": 1251760, + "normalized_name": "colorful 3d ii" + }, + { + "appid": 1251770, + "normalized_name": "what the bear?" + }, + { + "appid": 1251780, + "normalized_name": "astralode" + }, + { + "appid": 1251790, + "normalized_name": "defend the circle" + }, + { + "appid": 1251800, + "normalized_name": "vault tomb of the king" + }, + { + "appid": 1251840, + "normalized_name": "roman way" + }, + { + "appid": 1251850, + "normalized_name": "inferno beyond the 7th circle" + }, + { + "appid": 1251910, + "normalized_name": "kill yourself" + }, + { + "appid": 1251930, + "normalized_name": "my lovely wife" + }, + { + "appid": 1251950, + "normalized_name": "escape of mari the polar ladybug" + }, + { + "appid": 1251960, + "normalized_name": "deathtrap dungeon the golden room" + }, + { + "appid": 1251970, + "normalized_name": "gladiator manager" + }, + { + "appid": 1251980, + "normalized_name": "jessika" + }, + { + "appid": 1252000, + "normalized_name": "goal! the club manager" + }, + { + "appid": 1252020, + "normalized_name": "ahlman mansion 2020" + }, + { + "appid": 1252030, + "normalized_name": "steel & bone" + }, + { + "appid": 1252040, + "normalized_name": "dreamstate racing" + }, + { + "appid": 1252050, + "normalized_name": "elliot and the musical journey" + }, + { + "appid": 1252070, + "normalized_name": "starhome" + }, + { + "appid": 1252100, + "normalized_name": "cosmos" + }, + { + "appid": 1252120, + "normalized_name": "go far away" + }, + { + "appid": 1252130, + "normalized_name": "voidspeed outlaw" + }, + { + "appid": 1252160, + "normalized_name": "pejes vs zombies" + }, + { + "appid": 1252170, + "normalized_name": "infinitecorp cyberpunk cards" + }, + { + "appid": 1252190, + "normalized_name": "sole iron tail" + }, + { + "appid": 1252210, + "normalized_name": "guile & glory firstborn" + }, + { + "appid": 1252230, + "normalized_name": "verz" + }, + { + "appid": 1252240, + "normalized_name": "aeon drive" + }, + { + "appid": 1252250, + "normalized_name": "rebornia mmorpg 2d" + }, + { + "appid": 1252300, + "normalized_name": "retromania wrestling" + }, + { + "appid": 1252320, + "normalized_name": "东方祈华梦~elegant impermanence of sakura" + }, + { + "appid": 1252330, + "normalized_name": "deathloop" + }, + { + "appid": 1252370, + "normalized_name": "walking simulator a month club (complete edition)" + }, + { + "appid": 1252380, + "normalized_name": "battle of orion 10 first contact" + }, + { + "appid": 1252390, + "normalized_name": "cyberhive" + }, + { + "appid": 1252400, + "normalized_name": "discord rich me! engine" + }, + { + "appid": 1252410, + "normalized_name": "alien scumbags" + }, + { + "appid": 1252450, + "normalized_name": "skin and bones" + }, + { + "appid": 1252480, + "normalized_name": "plasticalypse submarine adventures" + }, + { + "appid": 1252510, + "normalized_name": "火星计划" + }, + { + "appid": 1252560, + "normalized_name": "love breakout" + }, + { + "appid": 1252580, + "normalized_name": "rising hell prologue" + }, + { + "appid": 1252600, + "normalized_name": "another eden" + }, + { + "appid": 1252630, + "normalized_name": "flip tale" + }, + { + "appid": 1252650, + "normalized_name": "mini golf club" + }, + { + "appid": 1252680, + "normalized_name": "sentry" + }, + { + "appid": 1252710, + "normalized_name": "cardaclysm" + }, + { + "appid": 1252720, + "normalized_name": "visceratum" + }, + { + "appid": 1252730, + "normalized_name": "wwii partisanen" + }, + { + "appid": 1252780, + "normalized_name": "bloons monkey city" + }, + { + "appid": 1252810, + "normalized_name": "nave sos mars" + }, + { + "appid": 1252830, + "normalized_name": "a juggler's tale" + }, + { + "appid": 1252850, + "normalized_name": "primal dungeon" + }, + { + "appid": 1252920, + "normalized_name": "wire up!" + }, + { + "appid": 1253000, + "normalized_name": "no zero" + }, + { + "appid": 1253010, + "normalized_name": "stella pastoris" + }, + { + "appid": 1253030, + "normalized_name": "cubecois" + }, + { + "appid": 1253050, + "normalized_name": "city breaker" + }, + { + "appid": 1253110, + "normalized_name": "system invaders" + }, + { + "appid": 1253160, + "normalized_name": "virtual viking" + }, + { + "appid": 1253180, + "normalized_name": "dark disharmony" + }, + { + "appid": 1253190, + "normalized_name": "warhammer 40 000 dakka squadron flyboyz" + }, + { + "appid": 1253220, + "normalized_name": "the gold river project" + }, + { + "appid": 1253230, + "normalized_name": "lumberjack" + }, + { + "appid": 1253240, + "normalized_name": "super astreus 2" + }, + { + "appid": 1253270, + "normalized_name": "scoot kaboom and the tomb of doom" + }, + { + "appid": 1253320, + "normalized_name": "seconds in space" + }, + { + "appid": 1253390, + "normalized_name": "yukikoi melt" + }, + { + "appid": 1253400, + "normalized_name": "人格面具:陰影面積(persona:shadow)" + }, + { + "appid": 1253410, + "normalized_name": "hero team" + }, + { + "appid": 1253440, + "normalized_name": "galactic field 《银河领域》" + }, + { + "appid": 1253450, + "normalized_name": "gnomes & co the art of the build" + }, + { + "appid": 1253460, + "normalized_name": "colouration" + }, + { + "appid": 1253500, + "normalized_name": "" + }, + { + "appid": 1253520, + "normalized_name": "heidelberg 1693" + }, + { + "appid": 1253570, + "normalized_name": "futuball future football manager game" + }, + { + "appid": 1253580, + "normalized_name": "my dangerous life" + }, + { + "appid": 1253610, + "normalized_name": "knights of braveland" + }, + { + "appid": 1253620, + "normalized_name": "ve gsim tower crane simulator" + }, + { + "appid": 1253650, + "normalized_name": "birds with feelings" + }, + { + "appid": 1253680, + "normalized_name": "super soccer blast" + }, + { + "appid": 1253690, + "normalized_name": "teke teke テケテケ" + }, + { + "appid": 1253710, + "normalized_name": "garbage" + }, + { + "appid": 1253720, + "normalized_name": "blue fox" + }, + { + "appid": 1253730, + "normalized_name": "paradise girls" + }, + { + "appid": 1253760, + "normalized_name": "little adventures" + }, + { + "appid": 1253800, + "normalized_name": "the pope power & sin" + }, + { + "appid": 1253820, + "normalized_name": "oh my girl / 我的女孩" + }, + { + "appid": 1253860, + "normalized_name": "neurodeck psychological deckbuilder" + }, + { + "appid": 1253870, + "normalized_name": "anime standing" + }, + { + "appid": 1253880, + "normalized_name": "heart fragment" + }, + { + "appid": 1253900, + "normalized_name": "timestop volleyball" + }, + { + "appid": 1253920, + "normalized_name": "rogue legacy 2" + }, + { + "appid": 1253930, + "normalized_name": "seeker my shadow" + }, + { + "appid": 1253940, + "normalized_name": "good goliath" + }, + { + "appid": 1254070, + "normalized_name": "fusion shift" + }, + { + "appid": 1254110, + "normalized_name": "quarres" + }, + { + "appid": 1254120, + "normalized_name": "bless unleashed" + }, + { + "appid": 1254130, + "normalized_name": "phobies" + }, + { + "appid": 1254140, + "normalized_name": "spiderclimber" + }, + { + "appid": 1254150, + "normalized_name": "floppy heroes 2" + }, + { + "appid": 1254160, + "normalized_name": "sleeping beauty" + }, + { + "appid": 1254180, + "normalized_name": "sliptime sleuth" + }, + { + "appid": 1254200, + "normalized_name": "warp factor" + }, + { + "appid": 1254280, + "normalized_name": "locked" + }, + { + "appid": 1254320, + "normalized_name": "surviving the abyss" + }, + { + "appid": 1254370, + "normalized_name": "no one lives under the lighthouse director's cut" + }, + { + "appid": 1254390, + "normalized_name": "toxastra" + }, + { + "appid": 1254410, + "normalized_name": "破阵图(grids of world)" + }, + { + "appid": 1254430, + "normalized_name": "yatb:you are the best egypt chapter" + }, + { + "appid": 1254440, + "normalized_name": "glasses nightmare" + }, + { + "appid": 1254480, + "normalized_name": "beyond this side" + }, + { + "appid": 1254490, + "normalized_name": "the prodigal soul" + }, + { + "appid": 1254500, + "normalized_name": "bad lady" + }, + { + "appid": 1254530, + "normalized_name": "vixen wars" + }, + { + "appid": 1254590, + "normalized_name": "choco pixel 3" + }, + { + "appid": 1254610, + "normalized_name": "belote learn & play" + }, + { + "appid": 1254620, + "normalized_name": "namco museum archives vol 2" + }, + { + "appid": 1254630, + "normalized_name": "spacky's nightshift" + }, + { + "appid": 1254670, + "normalized_name": "night reverie" + }, + { + "appid": 1254720, + "normalized_name": "the last bee" + }, + { + "appid": 1254740, + "normalized_name": "twistedland vr" + }, + { + "appid": 1254770, + "normalized_name": "haulin' oats" + }, + { + "appid": 1254820, + "normalized_name": "tank game" + }, + { + "appid": 1254860, + "normalized_name": "world championship boxing manager" + }, + { + "appid": 1254870, + "normalized_name": "high strategy urukon" + }, + { + "appid": 1254930, + "normalized_name": "rain island" + }, + { + "appid": 1254950, + "normalized_name": "hell to raze" + }, + { + "appid": 1255010, + "normalized_name": "bloom the forest burns" + }, + { + "appid": 1255020, + "normalized_name": "an elaborate history of chess" + }, + { + "appid": 1255030, + "normalized_name": "bunny quest" + }, + { + "appid": 1255040, + "normalized_name": "let's learn korean! hangul" + }, + { + "appid": 1255050, + "normalized_name": "craft in abyss" + }, + { + "appid": 1255130, + "normalized_name": "unlock the king 3" + }, + { + "appid": 1255140, + "normalized_name": "squares story" + }, + { + "appid": 1255160, + "normalized_name": "oh so lucky doctor!" + }, + { + "appid": 1255170, + "normalized_name": "captain pegleg" + }, + { + "appid": 1255230, + "normalized_name": "saranity" + }, + { + "appid": 1255300, + "normalized_name": "space sergeants" + }, + { + "appid": 1255320, + "normalized_name": "strip card duel" + }, + { + "appid": 1255380, + "normalized_name": "roller riot" + }, + { + "appid": 1255410, + "normalized_name": "purple saturn day" + }, + { + "appid": 1255420, + "normalized_name": "murders in space" + }, + { + "appid": 1255460, + "normalized_name": "space station 14" + }, + { + "appid": 1255550, + "normalized_name": "strange creatures" + }, + { + "appid": 1255560, + "normalized_name": "myst" + }, + { + "appid": 1255640, + "normalized_name": "吞噬追踪" + }, + { + "appid": 1255650, + "normalized_name": "geometry arena" + }, + { + "appid": 1255660, + "normalized_name": "mya of the desert" + }, + { + "appid": 1255680, + "normalized_name": "hand cannon virtuoso" + }, + { + "appid": 1255720, + "normalized_name": "brooklyn sentai episode one" + }, + { + "appid": 1255740, + "normalized_name": "karma knight" + }, + { + "appid": 1255800, + "normalized_name": "animocity" + }, + { + "appid": 1255810, + "normalized_name": "幻想小镇危机" + }, + { + "appid": 1255820, + "normalized_name": "vip rebels" + }, + { + "appid": 1255830, + "normalized_name": "puzzle girls alexa" + }, + { + "appid": 1255840, + "normalized_name": "puzzle girls cute" + }, + { + "appid": 1255870, + "normalized_name": "jesus christ rpg lucifer" + }, + { + "appid": 1255880, + "normalized_name": "whisper" + }, + { + "appid": 1255890, + "normalized_name": "the painted forest" + }, + { + "appid": 1255910, + "normalized_name": "ganzworker" + }, + { + "appid": 1255920, + "normalized_name": "graviter" + }, + { + "appid": 1255990, + "normalized_name": "we should talk." + }, + { + "appid": 1256040, + "normalized_name": "hyper treasure the legend of macaron" + }, + { + "appid": 1256060, + "normalized_name": "cosmodread" + }, + { + "appid": 1256130, + "normalized_name": "anshi" + }, + { + "appid": 1256160, + "normalized_name": "robot fight" + }, + { + "appid": 1256190, + "normalized_name": "chickduck & catduck" + }, + { + "appid": 1256220, + "normalized_name": "幸存者 星星之火 | survivor spark" + }, + { + "appid": 1256230, + "normalized_name": "hyperbolica" + }, + { + "appid": 1256270, + "normalized_name": "kinstrife" + }, + { + "appid": 1256330, + "normalized_name": "zeliria sanctuary ii xinori asylum" + }, + { + "appid": 1256340, + "normalized_name": "insania" + }, + { + "appid": 1256360, + "normalized_name": "wild west steam loco" + }, + { + "appid": 1256380, + "normalized_name": "fps infinite" + }, + { + "appid": 1256400, + "normalized_name": "raiders run" + }, + { + "appid": 1256430, + "normalized_name": "last chick 最後のひよこ" + }, + { + "appid": 1256440, + "normalized_name": "bells 'n' whistles" + }, + { + "appid": 1256490, + "normalized_name": "othello let's go" + }, + { + "appid": 1256500, + "normalized_name": "ohayou! beginner's japanese" + }, + { + "appid": 1256520, + "normalized_name": "bone appetit" + }, + { + "appid": 1256530, + "normalized_name": "sentimental k" + }, + { + "appid": 1256550, + "normalized_name": "marshmallow tank" + }, + { + "appid": 1256610, + "normalized_name": "dream date" + }, + { + "appid": 1256650, + "normalized_name": "move it up" + }, + { + "appid": 1256660, + "normalized_name": "iwate mountain dance" + }, + { + "appid": 1256670, + "normalized_name": "library of ruina" + }, + { + "appid": 1256680, + "normalized_name": "chicaro dentistry" + }, + { + "appid": 1256690, + "normalized_name": "hot and lovely 2" + }, + { + "appid": 1256710, + "normalized_name": "super arcade soccer 2021" + }, + { + "appid": 1256730, + "normalized_name": "no life zombie survivor" + }, + { + "appid": 1256760, + "normalized_name": "贰负传" + }, + { + "appid": 1256830, + "normalized_name": "shelter manager" + }, + { + "appid": 1256870, + "normalized_name": "pirate island mini golf vr" + }, + { + "appid": 1256900, + "normalized_name": "outset" + }, + { + "appid": 1256920, + "normalized_name": "d3d inside 2 hell" + }, + { + "appid": 1256950, + "normalized_name": "draft day sports college basketball 2020" + }, + { + "appid": 1256970, + "normalized_name": "hero tower" + }, + { + "appid": 1256980, + "normalized_name": "bubble bounce" + }, + { + "appid": 1257000, + "normalized_name": "a week in the cold" + }, + { + "appid": 1257030, + "normalized_name": "heartworm" + }, + { + "appid": 1257170, + "normalized_name": "saint emiliana" + }, + { + "appid": 1257190, + "normalized_name": "vr mini bowling 2" + }, + { + "appid": 1257200, + "normalized_name": "false myth" + }, + { + "appid": 1257210, + "normalized_name": "rabbit simulator" + }, + { + "appid": 1257250, + "normalized_name": "metal gunner" + }, + { + "appid": 1257270, + "normalized_name": "the valley of super flowers" + }, + { + "appid": 1257280, + "normalized_name": "monuments renovator" + }, + { + "appid": 1257290, + "normalized_name": "atelier ryza 2 lost legends & the secret fairy" + }, + { + "appid": 1257300, + "normalized_name": "king of cooking" + }, + { + "appid": 1257310, + "normalized_name": "mechstermination force" + }, + { + "appid": 1257360, + "normalized_name": "bloodstained curse of the moon 2" + }, + { + "appid": 1257370, + "normalized_name": "duster" + }, + { + "appid": 1257410, + "normalized_name": "cat in the box" + }, + { + "appid": 1257430, + "normalized_name": "my harem" + }, + { + "appid": 1257480, + "normalized_name": "american motorcycle simulator" + }, + { + "appid": 1257520, + "normalized_name": "zatorski ph.d." + }, + { + "appid": 1257540, + "normalized_name": "resistance td" + }, + { + "appid": 1257550, + "normalized_name": "mercenary skirmish" + }, + { + "appid": 1257590, + "normalized_name": "spinner invaders" + }, + { + "appid": 1257600, + "normalized_name": "swordshot" + }, + { + "appid": 1257610, + "normalized_name": "prison architect 2" + }, + { + "appid": 1257620, + "normalized_name": "magicarnage" + }, + { + "appid": 1257660, + "normalized_name": "time rift" + }, + { + "appid": 1257670, + "normalized_name": "nyanco space" + }, + { + "appid": 1257700, + "normalized_name": "wacky golf land" + }, + { + "appid": 1257710, + "normalized_name": "tinker pilot" + }, + { + "appid": 1257720, + "normalized_name": "help me now" + }, + { + "appid": 1257800, + "normalized_name": "hats and hand grenades" + }, + { + "appid": 1257810, + "normalized_name": "i'm on observation duty 2" + }, + { + "appid": 1257840, + "normalized_name": "hentai splash" + }, + { + "appid": 1257850, + "normalized_name": "solas 128" + }, + { + "appid": 1257860, + "normalized_name": "clea 2" + }, + { + "appid": 1257870, + "normalized_name": "raivo" + }, + { + "appid": 1257880, + "normalized_name": "glover" + }, + { + "appid": 1257890, + "normalized_name": "the legacy realm of terror" + }, + { + "appid": 1257900, + "normalized_name": "hexplore" + }, + { + "appid": 1257910, + "normalized_name": "dethkarz" + }, + { + "appid": 1257920, + "normalized_name": "canon legend of the new gods" + }, + { + "appid": 1257930, + "normalized_name": "zero tolerance" + }, + { + "appid": 1257940, + "normalized_name": "shadow madness" + }, + { + "appid": 1257950, + "normalized_name": "motor mash" + }, + { + "appid": 1258000, + "normalized_name": "radarjam" + }, + { + "appid": 1258020, + "normalized_name": "sniks" + }, + { + "appid": 1258030, + "normalized_name": "paranormal precinct last copy of '99" + }, + { + "appid": 1258040, + "normalized_name": "super bernie world" + }, + { + "appid": 1258060, + "normalized_name": "monster gals!!" + }, + { + "appid": 1258070, + "normalized_name": "the travelyan home" + }, + { + "appid": 1258080, + "normalized_name": "shop titans" + }, + { + "appid": 1258090, + "normalized_name": "duck duck goose" + }, + { + "appid": 1258140, + "normalized_name": "secret house | 秘密房间 | 秘密の部屋" + }, + { + "appid": 1258190, + "normalized_name": "cyber lady" + }, + { + "appid": 1258200, + "normalized_name": "forsaken spire" + }, + { + "appid": 1258220, + "normalized_name": "song of iron" + }, + { + "appid": 1258230, + "normalized_name": "corpse castle" + }, + { + "appid": 1258290, + "normalized_name": "fantasy memory card game" + }, + { + "appid": 1258300, + "normalized_name": "metal knight" + }, + { + "appid": 1258310, + "normalized_name": "mushroom cats 2" + }, + { + "appid": 1258340, + "normalized_name": "kukkorodays" + }, + { + "appid": 1258370, + "normalized_name": "dragonscales 6 love and redemption" + }, + { + "appid": 1258410, + "normalized_name": "shinobi no okite/the three female ninjas" + }, + { + "appid": 1258420, + "normalized_name": "valkyrie's arrow | 瓦尔基丽的箭" + }, + { + "appid": 1258440, + "normalized_name": "blind quest the enchanted castle" + }, + { + "appid": 1258460, + "normalized_name": "escape first 3" + }, + { + "appid": 1258480, + "normalized_name": "aladdin hidden objects game" + }, + { + "appid": 1258520, + "normalized_name": "ast hero" + }, + { + "appid": 1258560, + "normalized_name": "vr mummy girl" + }, + { + "appid": 1258580, + "normalized_name": "star shaman" + }, + { + "appid": 1258590, + "normalized_name": "locked up" + }, + { + "appid": 1258620, + "normalized_name": "little machines world" + }, + { + "appid": 1258640, + "normalized_name": "victorian admirals marianas incident 1887" + }, + { + "appid": 1258650, + "normalized_name": "nyxx" + }, + { + "appid": 1258710, + "normalized_name": "bear vodka fall of berlin! 🐻" + }, + { + "appid": 1258730, + "normalized_name": "cyborg arena 2" + }, + { + "appid": 1258750, + "normalized_name": "jack 'n' hat" + }, + { + "appid": 1258770, + "normalized_name": "6 people" + }, + { + "appid": 1258780, + "normalized_name": "b100x auto dungeon rpg" + }, + { + "appid": 1258790, + "normalized_name": "videohole episode i" + }, + { + "appid": 1258800, + "normalized_name": "project dagger" + }, + { + "appid": 1258820, + "normalized_name": "planet morph" + }, + { + "appid": 1258830, + "normalized_name": "typing fingers enemy" + }, + { + "appid": 1258840, + "normalized_name": "stimuli" + }, + { + "appid": 1258900, + "normalized_name": "arcade redemption" + }, + { + "appid": 1258920, + "normalized_name": "the maze" + }, + { + "appid": 1258930, + "normalized_name": "the sunset that day あの日見た夕陽" + }, + { + "appid": 1258950, + "normalized_name": "swiscape" + }, + { + "appid": 1258960, + "normalized_name": "alpha particle" + }, + { + "appid": 1258980, + "normalized_name": "spellpunk vr" + }, + { + "appid": 1258990, + "normalized_name": "rushberry mercs" + }, + { + "appid": 1259000, + "normalized_name": "damascus" + }, + { + "appid": 1259020, + "normalized_name": "capybara carbonara" + }, + { + "appid": 1259050, + "normalized_name": "under shelter" + }, + { + "appid": 1259130, + "normalized_name": "rover wars" + }, + { + "appid": 1259140, + "normalized_name": "ashina the red witch" + }, + { + "appid": 1259180, + "normalized_name": "ashina the red witch prologue" + }, + { + "appid": 1259220, + "normalized_name": "torches of fate" + }, + { + "appid": 1259240, + "normalized_name": "//todo today" + }, + { + "appid": 1259290, + "normalized_name": "victorian admirals panama crisis 1885" + }, + { + "appid": 1259300, + "normalized_name": "spot sample witness simulator" + }, + { + "appid": 1259310, + "normalized_name": "knightroyale" + }, + { + "appid": 1259330, + "normalized_name": "stolen rage" + }, + { + "appid": 1259340, + "normalized_name": "victorian admirals samoan crisis 1889" + }, + { + "appid": 1259370, + "normalized_name": "worm jazz" + }, + { + "appid": 1259380, + "normalized_name": "submarine titans" + }, + { + "appid": 1259390, + "normalized_name": "military service" + }, + { + "appid": 1259420, + "normalized_name": "days gone" + }, + { + "appid": 1259430, + "normalized_name": "first snow" + }, + { + "appid": 1259440, + "normalized_name": "mist legacy" + }, + { + "appid": 1259460, + "normalized_name": "trendpoker 3d free online poker" + }, + { + "appid": 1259470, + "normalized_name": "casus" + }, + { + "appid": 1259510, + "normalized_name": "venge" + }, + { + "appid": 1259520, + "normalized_name": "topang" + }, + { + "appid": 1259530, + "normalized_name": "cherry kisses" + }, + { + "appid": 1259560, + "normalized_name": "britannic patroness of the mediterranean" + }, + { + "appid": 1259570, + "normalized_name": "around the fire" + }, + { + "appid": 1259580, + "normalized_name": "nonno lorenzo" + }, + { + "appid": 1259600, + "normalized_name": "there was the moon" + }, + { + "appid": 1259610, + "normalized_name": "virus buster" + }, + { + "appid": 1259640, + "normalized_name": "tiny room stories town mystery" + }, + { + "appid": 1259660, + "normalized_name": "netaboku a robot girl changes my life as a bedridden boy" + }, + { + "appid": 1259740, + "normalized_name": "escape dungeon" + }, + { + "appid": 1259760, + "normalized_name": "the sacred acorn" + }, + { + "appid": 1259790, + "normalized_name": "puyo puyo tetris 2" + }, + { + "appid": 1259800, + "normalized_name": "mxgp 2020 the official motocross videogame" + }, + { + "appid": 1259830, + "normalized_name": "turniej robotów" + }, + { + "appid": 1259840, + "normalized_name": "the house of da vinci 2" + }, + { + "appid": 1259860, + "normalized_name": "grafi st.patrick" + }, + { + "appid": 1259890, + "normalized_name": "northern tale 5 revival" + }, + { + "appid": 1259910, + "normalized_name": "supreme ai arena" + }, + { + "appid": 1259950, + "normalized_name": "darkest valley" + }, + { + "appid": 1259960, + "normalized_name": "the metamorphosis" + }, + { + "appid": 1259980, + "normalized_name": "ride 4" + }, + { + "appid": 1259990, + "normalized_name": "super dee" + }, + { + "appid": 1260020, + "normalized_name": "powerslave (dos classic edition)" + }, + { + "appid": 1260030, + "normalized_name": "revel rousers" + }, + { + "appid": 1260130, + "normalized_name": "banana hell" + }, + { + "appid": 1260150, + "normalized_name": "phos" + }, + { + "appid": 1260160, + "normalized_name": "down the hole" + }, + { + "appid": 1260170, + "normalized_name": "creator's chasm" + }, + { + "appid": 1260220, + "normalized_name": "hentai two girls" + }, + { + "appid": 1260240, + "normalized_name": "30 days of plague" + }, + { + "appid": 1260250, + "normalized_name": "sector 40 the soviet legacy" + }, + { + "appid": 1260300, + "normalized_name": "pity pit" + }, + { + "appid": 1260320, + "normalized_name": "party animals" + }, + { + "appid": 1260330, + "normalized_name": "stuck at home with my sister prologue" + }, + { + "appid": 1260340, + "normalized_name": "naturalist stories" + }, + { + "appid": 1260370, + "normalized_name": "deeproot manor" + }, + { + "appid": 1260390, + "normalized_name": "hentai furry" + }, + { + "appid": 1260400, + "normalized_name": "challenge speedball" + }, + { + "appid": 1260430, + "normalized_name": "truco" + }, + { + "appid": 1260440, + "normalized_name": "strip black jack manga" + }, + { + "appid": 1260450, + "normalized_name": "escaping atlantis" + }, + { + "appid": 1260470, + "normalized_name": "henchman for hire" + }, + { + "appid": 1260490, + "normalized_name": "astro g" + }, + { + "appid": 1260520, + "normalized_name": "patrick's parabox" + }, + { + "appid": 1260540, + "normalized_name": "china simulator | 中國模擬器" + }, + { + "appid": 1260550, + "normalized_name": "hot air balloon simulator" + }, + { + "appid": 1260560, + "normalized_name": "line simulator" + }, + { + "appid": 1260570, + "normalized_name": "симулятор посадки на бутылку" + }, + { + "appid": 1260580, + "normalized_name": "rethink | evolved 4" + }, + { + "appid": 1260590, + "normalized_name": "hadean tactics" + }, + { + "appid": 1260620, + "normalized_name": "hentai fantasy" + }, + { + "appid": 1260670, + "normalized_name": "mister versatile a gay superhero visual novel" + }, + { + "appid": 1260690, + "normalized_name": "man face spider i" + }, + { + "appid": 1260700, + "normalized_name": "hentai babes nations" + }, + { + "appid": 1260710, + "normalized_name": "lusitania the experience" + }, + { + "appid": 1260720, + "normalized_name": "elemental echoes" + }, + { + "appid": 1260730, + "normalized_name": "empty₁ first person adventure" + }, + { + "appid": 1260740, + "normalized_name": "dark adaption" + }, + { + "appid": 1260770, + "normalized_name": "radio station" + }, + { + "appid": 1260780, + "normalized_name": "the singularity trials" + }, + { + "appid": 1260790, + "normalized_name": "brain tester mind trick quiz" + }, + { + "appid": 1260800, + "normalized_name": "rocking legend" + }, + { + "appid": 1260810, + "normalized_name": "东方华彩乱战2 ~ touhou blooming chaos 2" + }, + { + "appid": 1260820, + "normalized_name": "third crisis" + }, + { + "appid": 1260830, + "normalized_name": "metallic metronome" + }, + { + "appid": 1260840, + "normalized_name": "the casebook of arkady smith" + }, + { + "appid": 1260860, + "normalized_name": "ninja scarf" + }, + { + "appid": 1260910, + "normalized_name": "demelia's isle" + }, + { + "appid": 1260920, + "normalized_name": "spirit of adventure" + }, + { + "appid": 1260930, + "normalized_name": "keep the balance" + }, + { + "appid": 1260940, + "normalized_name": "core decay" + }, + { + "appid": 1260960, + "normalized_name": "kairos'light" + }, + { + "appid": 1260970, + "normalized_name": "subdivided" + }, + { + "appid": 1260980, + "normalized_name": "escape from durka" + }, + { + "appid": 1261000, + "normalized_name": "spoon simulator 2020" + }, + { + "appid": 1261010, + "normalized_name": "neave" + }, + { + "appid": 1261020, + "normalized_name": "edge of dreams" + }, + { + "appid": 1261040, + "normalized_name": "streamer life simulator" + }, + { + "appid": 1261090, + "normalized_name": "hentai karada" + }, + { + "appid": 1261130, + "normalized_name": "shoot them 2" + }, + { + "appid": 1261170, + "normalized_name": "hangman ii" + }, + { + "appid": 1261180, + "normalized_name": "rebirth online" + }, + { + "appid": 1261200, + "normalized_name": "ace campus club" + }, + { + "appid": 1261220, + "normalized_name": "the neverland of the mountain and sea" + }, + { + "appid": 1261240, + "normalized_name": "ヴァルキリーコネクト" + }, + { + "appid": 1261280, + "normalized_name": "no exit torments of hell" + }, + { + "appid": 1261290, + "normalized_name": "fairy fire defender of the fairies" + }, + { + "appid": 1261300, + "normalized_name": "racingmaybe" + }, + { + "appid": 1261360, + "normalized_name": "anitons" + }, + { + "appid": 1261370, + "normalized_name": "wildlands" + }, + { + "appid": 1261390, + "normalized_name": "crown of the empire around the world" + }, + { + "appid": 1261430, + "normalized_name": "kandria" + }, + { + "appid": 1261490, + "normalized_name": "cork the volcano" + }, + { + "appid": 1261520, + "normalized_name": "asterix & obelix xxl romastered" + }, + { + "appid": 1261530, + "normalized_name": "ponpu" + }, + { + "appid": 1261570, + "normalized_name": "motion of the heart" + }, + { + "appid": 1261630, + "normalized_name": "mindframe the secret design collector's" + }, + { + "appid": 1261640, + "normalized_name": "fill all" + }, + { + "appid": 1261650, + "normalized_name": "berry mayhem" + }, + { + "appid": 1261660, + "normalized_name": "flatland prologue" + }, + { + "appid": 1261670, + "normalized_name": "poker hands" + }, + { + "appid": 1261700, + "normalized_name": "knight's retreat" + }, + { + "appid": 1261750, + "normalized_name": "em a zurvival" + }, + { + "appid": 1261760, + "normalized_name": "democratic socialism simulator" + }, + { + "appid": 1261770, + "normalized_name": "fairmoon museum" + }, + { + "appid": 1261820, + "normalized_name": "kernmantle" + }, + { + "appid": 1261880, + "normalized_name": "education" + }, + { + "appid": 1261900, + "normalized_name": "sunrise 7" + }, + { + "appid": 1261960, + "normalized_name": "strikers 1945" + }, + { + "appid": 1261970, + "normalized_name": "gunbird" + }, + { + "appid": 1261980, + "normalized_name": "samurai aces" + }, + { + "appid": 1261990, + "normalized_name": "horse racing rally" + }, + { + "appid": 1262040, + "normalized_name": "super mombo quest" + }, + { + "appid": 1262060, + "normalized_name": "battle ram" + }, + { + "appid": 1262070, + "normalized_name": "arc defence" + }, + { + "appid": 1262080, + "normalized_name": "black blood" + }, + { + "appid": 1262100, + "normalized_name": "borderus" + }, + { + "appid": 1262110, + "normalized_name": "ultimo reino" + }, + { + "appid": 1262120, + "normalized_name": "evil heart fever" + }, + { + "appid": 1262140, + "normalized_name": "rangok skies" + }, + { + "appid": 1262170, + "normalized_name": "sand to surf" + }, + { + "appid": 1262190, + "normalized_name": "without a voice" + }, + { + "appid": 1262240, + "normalized_name": "plants vs. zombies battle for neighborville" + }, + { + "appid": 1262260, + "normalized_name": "maze slider" + }, + { + "appid": 1262350, + "normalized_name": "signalis" + }, + { + "appid": 1262380, + "normalized_name": "hexagon heroes" + }, + { + "appid": 1262450, + "normalized_name": "blaster squad" + }, + { + "appid": 1262460, + "normalized_name": "zompiercer" + }, + { + "appid": 1262470, + "normalized_name": "straight on 8" + }, + { + "appid": 1262500, + "normalized_name": "mirastell" + }, + { + "appid": 1262530, + "normalized_name": "fire protection training simulator" + }, + { + "appid": 1262540, + "normalized_name": "need for speed" + }, + { + "appid": 1262560, + "normalized_name": "need for speed most wanted" + }, + { + "appid": 1262580, + "normalized_name": "need for speed payback" + }, + { + "appid": 1262600, + "normalized_name": "need for speed rivals" + }, + { + "appid": 1262640, + "normalized_name": "brittany home alone" + }, + { + "appid": 1262720, + "normalized_name": "ruin raiders" + }, + { + "appid": 1262730, + "normalized_name": "submarine adventure" + }, + { + "appid": 1262760, + "normalized_name": "digitizer" + }, + { + "appid": 1262770, + "normalized_name": "snake core" + }, + { + "appid": 1262780, + "normalized_name": "polary" + }, + { + "appid": 1262790, + "normalized_name": "crazy projectile" + }, + { + "appid": 1262800, + "normalized_name": "forest liberation" + }, + { + "appid": 1262830, + "normalized_name": "squatch" + }, + { + "appid": 1262880, + "normalized_name": "abacus finch" + }, + { + "appid": 1262890, + "normalized_name": "tidal shock off the hook" + }, + { + "appid": 1262900, + "normalized_name": "darkbolt" + }, + { + "appid": 1262910, + "normalized_name": "heart's medicine doctor's oath" + }, + { + "appid": 1262920, + "normalized_name": "horned knight" + }, + { + "appid": 1262930, + "normalized_name": "handball manager 2021" + }, + { + "appid": 1263000, + "normalized_name": "i saw the night" + }, + { + "appid": 1263060, + "normalized_name": "find me" + }, + { + "appid": 1263070, + "normalized_name": "blightbound" + }, + { + "appid": 1263090, + "normalized_name": "swatch out!" + }, + { + "appid": 1263100, + "normalized_name": "last kids on earth and the staff of doom" + }, + { + "appid": 1263110, + "normalized_name": "what makes us special" + }, + { + "appid": 1263120, + "normalized_name": "hecaton" + }, + { + "appid": 1263130, + "normalized_name": "porn pizza delivery boy" + }, + { + "appid": 1263160, + "normalized_name": "oppai muse" + }, + { + "appid": 1263170, + "normalized_name": "starseed" + }, + { + "appid": 1263200, + "normalized_name": "smashing spirits brazil's first boxer" + }, + { + "appid": 1263210, + "normalized_name": "deathpuddle choose violence?" + }, + { + "appid": 1263220, + "normalized_name": "尸灾 生还者(重置版)" + }, + { + "appid": 1263230, + "normalized_name": "cooking companions" + }, + { + "appid": 1263240, + "normalized_name": "skate story" + }, + { + "appid": 1263350, + "normalized_name": "the company man" + }, + { + "appid": 1263370, + "normalized_name": "seek girl fog ⅰ" + }, + { + "appid": 1263410, + "normalized_name": "the tide" + }, + { + "appid": 1263450, + "normalized_name": "蔚蓝月下" + }, + { + "appid": 1263490, + "normalized_name": "sweet solitaire school witch" + }, + { + "appid": 1263510, + "normalized_name": "spy story. the elusive evidence" + }, + { + "appid": 1263520, + "normalized_name": "dark solitaire. mystical circus" + }, + { + "appid": 1263530, + "normalized_name": "dangerous solitaire. zombie fever" + }, + { + "appid": 1263540, + "normalized_name": "mystery solitaire. dreamcatcher" + }, + { + "appid": 1263550, + "normalized_name": "combat arms the classic" + }, + { + "appid": 1263590, + "normalized_name": "microodyssey" + }, + { + "appid": 1263610, + "normalized_name": "aftlife 少女と猫と、失われた世界" + }, + { + "appid": 1263620, + "normalized_name": "yacht mechanic simulator" + }, + { + "appid": 1263630, + "normalized_name": "maggie's movies second shot" + }, + { + "appid": 1263650, + "normalized_name": "eat'n eaten" + }, + { + "appid": 1263680, + "normalized_name": "486" + }, + { + "appid": 1263700, + "normalized_name": "nightwalker" + }, + { + "appid": 1263720, + "normalized_name": "the long sky vr" + }, + { + "appid": 1263740, + "normalized_name": "elite tanks" + }, + { + "appid": 1263750, + "normalized_name": "the dark inside me chapter ii" + }, + { + "appid": 1263780, + "normalized_name": "last fantasy hentai" + }, + { + "appid": 1263800, + "normalized_name": "dockyard" + }, + { + "appid": 1263820, + "normalized_name": "sok worlds" + }, + { + "appid": 1263840, + "normalized_name": "the last hentai miku" + }, + { + "appid": 1263910, + "normalized_name": "primordial" + }, + { + "appid": 1263920, + "normalized_name": "dark space" + }, + { + "appid": 1263930, + "normalized_name": "wreck it! vr" + }, + { + "appid": 1263940, + "normalized_name": "humanless" + }, + { + "appid": 1263990, + "normalized_name": "floor 13 deep state" + }, + { + "appid": 1264000, + "normalized_name": "proxy" + }, + { + "appid": 1264010, + "normalized_name": "9 till void" + }, + { + "appid": 1264050, + "normalized_name": "unbinary" + }, + { + "appid": 1264080, + "normalized_name": "breaking blocks" + }, + { + "appid": 1264090, + "normalized_name": "once upon an electric dream" + }, + { + "appid": 1264140, + "normalized_name": "kyo's routine" + }, + { + "appid": 1264160, + "normalized_name": "からかい上手の高木さんvr 1学期" + }, + { + "appid": 1264180, + "normalized_name": "blueplanet vr v2" + }, + { + "appid": 1264200, + "normalized_name": "vipertrace" + }, + { + "appid": 1264220, + "normalized_name": "card blitz wwii" + }, + { + "appid": 1264230, + "normalized_name": "抵抗组织" + }, + { + "appid": 1264240, + "normalized_name": "infinite way" + }, + { + "appid": 1264250, + "normalized_name": "fishing north atlantic enhanced" + }, + { + "appid": 1264260, + "normalized_name": "mirror demo" + }, + { + "appid": 1264280, + "normalized_name": "slipways" + }, + { + "appid": 1264290, + "normalized_name": "what's inside??" + }, + { + "appid": 1264310, + "normalized_name": "viy" + }, + { + "appid": 1264350, + "normalized_name": "echoes of nocturnal chords 夜弦之音" + }, + { + "appid": 1264360, + "normalized_name": "goldfish brain" + }, + { + "appid": 1264390, + "normalized_name": "dreamjob programmer simulator learn programming games" + }, + { + "appid": 1264410, + "normalized_name": "code arcturus" + }, + { + "appid": 1264420, + "normalized_name": "archery simulator" + }, + { + "appid": 1264510, + "normalized_name": "get out..." + }, + { + "appid": 1264520, + "normalized_name": "vibrant venture" + }, + { + "appid": 1264550, + "normalized_name": "personal space" + }, + { + "appid": 1264590, + "normalized_name": "tit tap tingle" + }, + { + "appid": 1264610, + "normalized_name": "驱逐" + }, + { + "appid": 1264620, + "normalized_name": "lucen" + }, + { + "appid": 1264630, + "normalized_name": "茶 char01 vr" + }, + { + "appid": 1264650, + "normalized_name": "faircroft's antiques treasures of treffenburg" + }, + { + "appid": 1264670, + "normalized_name": "the wind road 紫塞秋风" + }, + { + "appid": 1264710, + "normalized_name": "love and sex second base" + }, + { + "appid": 1264720, + "normalized_name": "project 1942" + }, + { + "appid": 1264730, + "normalized_name": "total arcade racing" + }, + { + "appid": 1264740, + "normalized_name": "lucid dream" + }, + { + "appid": 1264760, + "normalized_name": "saturn quest shadow of planetus" + }, + { + "appid": 1264770, + "normalized_name": "coronavirus evolution" + }, + { + "appid": 1264790, + "normalized_name": "destiny of the world" + }, + { + "appid": 1264800, + "normalized_name": "radical solitaire" + }, + { + "appid": 1264820, + "normalized_name": "jade cicada" + }, + { + "appid": 1264830, + "normalized_name": "the cold war era 2" + }, + { + "appid": 1264840, + "normalized_name": "fantasy story" + }, + { + "appid": 1264850, + "normalized_name": "apastron" + }, + { + "appid": 1264880, + "normalized_name": "watcher chronicles" + }, + { + "appid": 1264890, + "normalized_name": "space force" + }, + { + "appid": 1264900, + "normalized_name": "simple farm" + }, + { + "appid": 1264920, + "normalized_name": "endgame road to salvation" + }, + { + "appid": 1264930, + "normalized_name": "king of the streets" + }, + { + "appid": 1264940, + "normalized_name": "two weeks game" + }, + { + "appid": 1264970, + "normalized_name": "the conquest of go" + }, + { + "appid": 1264980, + "normalized_name": "99 anime girls" + }, + { + "appid": 1264990, + "normalized_name": "ballclimbing" + }, + { + "appid": 1265010, + "normalized_name": "super swarmer survivors" + }, + { + "appid": 1265030, + "normalized_name": "moorhuhn kart 2" + }, + { + "appid": 1265040, + "normalized_name": "the abnormal place" + }, + { + "appid": 1265070, + "normalized_name": "escape from violet institute" + }, + { + "appid": 1265080, + "normalized_name": "溜冰的猪少" + }, + { + "appid": 1265090, + "normalized_name": "魔女秘药(witch elixir)" + }, + { + "appid": 1265110, + "normalized_name": "chessmates" + }, + { + "appid": 1265120, + "normalized_name": "freddy spaghetti" + }, + { + "appid": 1265130, + "normalized_name": "imemo" + }, + { + "appid": 1265140, + "normalized_name": "get gem" + }, + { + "appid": 1265170, + "normalized_name": "silver whistle(漠銀之音)" + }, + { + "appid": 1265200, + "normalized_name": "escort alia" + }, + { + "appid": 1265220, + "normalized_name": "cauldrons of war barbarossa" + }, + { + "appid": 1265230, + "normalized_name": "engine evolution 2020" + }, + { + "appid": 1265260, + "normalized_name": "space foes" + }, + { + "appid": 1265270, + "normalized_name": "madness fantasy" + }, + { + "appid": 1265280, + "normalized_name": "the 99" + }, + { + "appid": 1265300, + "normalized_name": "broll" + }, + { + "appid": 1265310, + "normalized_name": "evade" + }, + { + "appid": 1265360, + "normalized_name": "3d hentai blackjack" + }, + { + "appid": 1265380, + "normalized_name": "natural habitat" + }, + { + "appid": 1265390, + "normalized_name": "艾鲁大陆" + }, + { + "appid": 1265410, + "normalized_name": "computer physics simulator 2020" + }, + { + "appid": 1265430, + "normalized_name": "nova" + }, + { + "appid": 1265440, + "normalized_name": "fire guild" + }, + { + "appid": 1265460, + "normalized_name": "defenders survival and tower defense" + }, + { + "appid": 1265500, + "normalized_name": "mystiqa" + }, + { + "appid": 1265510, + "normalized_name": "machinist" + }, + { + "appid": 1265530, + "normalized_name": "survive 2 thrive" + }, + { + "appid": 1265570, + "normalized_name": "death match love comedy!" + }, + { + "appid": 1265580, + "normalized_name": "miden tower" + }, + { + "appid": 1265650, + "normalized_name": "the drained goddess" + }, + { + "appid": 1265660, + "normalized_name": "one more shot" + }, + { + "appid": 1265680, + "normalized_name": "detective march forward the missing will" + }, + { + "appid": 1265690, + "normalized_name": "horse riding deluxe 2" + }, + { + "appid": 1265720, + "normalized_name": "rico london" + }, + { + "appid": 1265770, + "normalized_name": "tunnel bird" + }, + { + "appid": 1265780, + "normalized_name": "the lord of the rings gollum" + }, + { + "appid": 1265800, + "normalized_name": "hubris" + }, + { + "appid": 1265810, + "normalized_name": "spacen the beginning" + }, + { + "appid": 1265820, + "normalized_name": "fights in tight spaces" + }, + { + "appid": 1265850, + "normalized_name": "chatventures" + }, + { + "appid": 1265870, + "normalized_name": "cave digger" + }, + { + "appid": 1265920, + "normalized_name": "life is strange" + }, + { + "appid": 1265930, + "normalized_name": "life is strange before the storm" + }, + { + "appid": 1265960, + "normalized_name": "kongfusion" + }, + { + "appid": 1265970, + "normalized_name": "dark city dublin collector's" + }, + { + "appid": 1265990, + "normalized_name": "quiz pro! general knowledge" + }, + { + "appid": 1266030, + "normalized_name": "the pale beyond" + }, + { + "appid": 1266050, + "normalized_name": "pixel fixer" + }, + { + "appid": 1266060, + "normalized_name": "lethal honor order of the apocalypse" + }, + { + "appid": 1266070, + "normalized_name": "smashing healthy vr" + }, + { + "appid": 1266100, + "normalized_name": "vampire the masquerade — parliament of knives" + }, + { + "appid": 1266120, + "normalized_name": "unoccupied" + }, + { + "appid": 1266140, + "normalized_name": "succubus domination" + }, + { + "appid": 1266210, + "normalized_name": "through the nightmares" + }, + { + "appid": 1266220, + "normalized_name": "death end re;quest 2" + }, + { + "appid": 1266260, + "normalized_name": "tribble troubles" + }, + { + "appid": 1266370, + "normalized_name": "real life plus ver. kaname komatsuzaki" + }, + { + "appid": 1266380, + "normalized_name": "super no crying in baseball" + }, + { + "appid": 1266390, + "normalized_name": "hooksharks" + }, + { + "appid": 1266400, + "normalized_name": "hentai harem" + }, + { + "appid": 1266410, + "normalized_name": "climb" + }, + { + "appid": 1266430, + "normalized_name": "迷失幻途 lost in fantaland" + }, + { + "appid": 1266440, + "normalized_name": "disarmed" + }, + { + "appid": 1266450, + "normalized_name": "match number panels" + }, + { + "appid": 1266470, + "normalized_name": "real vr fishing" + }, + { + "appid": 1266480, + "normalized_name": "minnade counter fight" + }, + { + "appid": 1266540, + "normalized_name": "ships at sea" + }, + { + "appid": 1266560, + "normalized_name": "鋼鉄戦記c21" + }, + { + "appid": 1266600, + "normalized_name": "亦春秋 power of seasons" + }, + { + "appid": 1266610, + "normalized_name": "zoe begone!" + }, + { + "appid": 1266630, + "normalized_name": "懒人修仙传2" + }, + { + "appid": 1266640, + "normalized_name": "sgs afrika korps" + }, + { + "appid": 1266650, + "normalized_name": "cyber driver vr" + }, + { + "appid": 1266680, + "normalized_name": "strobophagia | rave horror" + }, + { + "appid": 1266690, + "normalized_name": "dark deception monsters & mortals" + }, + { + "appid": 1266700, + "normalized_name": "destroy all humans! 2 reprobed" + }, + { + "appid": 1266720, + "normalized_name": "squirrel forest" + }, + { + "appid": 1266800, + "normalized_name": "adorable crush" + }, + { + "appid": 1266820, + "normalized_name": "adom caverns of chaos" + }, + { + "appid": 1266840, + "normalized_name": "the last stand aftermath" + }, + { + "appid": 1266890, + "normalized_name": "tactical troops anthracite shift" + }, + { + "appid": 1266900, + "normalized_name": "operation dogfight" + }, + { + "appid": 1266980, + "normalized_name": "madrun" + }, + { + "appid": 1267010, + "normalized_name": "dark fantasy epic jigsaw puzzle" + }, + { + "appid": 1267040, + "normalized_name": "superhero x [alpha edition]" + }, + { + "appid": 1267070, + "normalized_name": "monorail stories" + }, + { + "appid": 1267120, + "normalized_name": "sapper" + }, + { + "appid": 1267130, + "normalized_name": "axe girl" + }, + { + "appid": 1267170, + "normalized_name": "carestia" + }, + { + "appid": 1267210, + "normalized_name": "together in battle" + }, + { + "appid": 1267230, + "normalized_name": "labyrinth the exit is closer" + }, + { + "appid": 1267260, + "normalized_name": "yumeutsutsu re after" + }, + { + "appid": 1267270, + "normalized_name": "yumeutsutsu re idol" + }, + { + "appid": 1267280, + "normalized_name": "mystic isles" + }, + { + "appid": 1267290, + "normalized_name": "field of heroes" + }, + { + "appid": 1267310, + "normalized_name": "[chilla's art] onryo | 怨霊" + }, + { + "appid": 1267330, + "normalized_name": "group project simulator" + }, + { + "appid": 1267370, + "normalized_name": "blind spot" + }, + { + "appid": 1267400, + "normalized_name": "test of courage" + }, + { + "appid": 1267410, + "normalized_name": "kurogane of the sky" + }, + { + "appid": 1267470, + "normalized_name": "warriors of the nile" + }, + { + "appid": 1267540, + "normalized_name": "wrc 9 fia world rally championship" + }, + { + "appid": 1267560, + "normalized_name": "in space" + }, + { + "appid": 1267580, + "normalized_name": "classic sport driving" + }, + { + "appid": 1267670, + "normalized_name": "heartless reseller is roguelike" + }, + { + "appid": 1267680, + "normalized_name": "episode 1 missionkt" + }, + { + "appid": 1267690, + "normalized_name": "intergalactic transfer station" + }, + { + "appid": 1267770, + "normalized_name": "linda & joan prologue “four months earlier”" + }, + { + "appid": 1267810, + "normalized_name": "gutwhale" + }, + { + "appid": 1267830, + "normalized_name": "smartphone tycoon lite" + }, + { + "appid": 1267870, + "normalized_name": "xenogunner" + }, + { + "appid": 1267910, + "normalized_name": "melvor idle" + }, + { + "appid": 1267920, + "normalized_name": "stealth master" + }, + { + "appid": 1267930, + "normalized_name": "deadly dozen pacific theater" + }, + { + "appid": 1267940, + "normalized_name": "hunting unlimited 1" + }, + { + "appid": 1267950, + "normalized_name": "cosmic flow a relaxing vr experience" + }, + { + "appid": 1267960, + "normalized_name": "fotomuseo 3d" + }, + { + "appid": 1267970, + "normalized_name": "the last crusade" + }, + { + "appid": 1268000, + "normalized_name": "ragdoll laser battle" + }, + { + "appid": 1268100, + "normalized_name": "war islands a co op adventure" + }, + { + "appid": 1268110, + "normalized_name": "isekai quest" + }, + { + "appid": 1268140, + "normalized_name": "lair land story" + }, + { + "appid": 1268160, + "normalized_name": "seven horns from tilt" + }, + { + "appid": 1268190, + "normalized_name": "naked puzzle girls" + }, + { + "appid": 1268200, + "normalized_name": "espresso for the demon" + }, + { + "appid": 1268250, + "normalized_name": "gag" + }, + { + "appid": 1268280, + "normalized_name": "knockdown the ball twice" + }, + { + "appid": 1268290, + "normalized_name": "fantasy world online tycoon" + }, + { + "appid": 1268330, + "normalized_name": "enhance vr" + }, + { + "appid": 1268350, + "normalized_name": "a game of humans" + }, + { + "appid": 1268360, + "normalized_name": "trashed" + }, + { + "appid": 1268370, + "normalized_name": "holedown" + }, + { + "appid": 1268380, + "normalized_name": "endless rpg random map generator for d&d 2024 and 5e" + }, + { + "appid": 1268400, + "normalized_name": "pinball lockdown" + }, + { + "appid": 1268410, + "normalized_name": "hentai demon" + }, + { + "appid": 1268420, + "normalized_name": "britannia" + }, + { + "appid": 1268530, + "normalized_name": "outside the grid" + }, + { + "appid": 1268540, + "normalized_name": "dungeon of dark" + }, + { + "appid": 1268550, + "normalized_name": "crusaders arena" + }, + { + "appid": 1268590, + "normalized_name": "millennia" + }, + { + "appid": 1268700, + "normalized_name": "tuneria" + }, + { + "appid": 1268710, + "normalized_name": "skitt" + }, + { + "appid": 1268730, + "normalized_name": "impulse control" + }, + { + "appid": 1268750, + "normalized_name": "starship troopers extermination" + }, + { + "appid": 1268790, + "normalized_name": "dark fracture" + }, + { + "appid": 1268800, + "normalized_name": "divisadero" + }, + { + "appid": 1268830, + "normalized_name": "flappy hypership out of control" + }, + { + "appid": 1268840, + "normalized_name": "project toon tanks" + }, + { + "appid": 1268860, + "normalized_name": "raindrops" + }, + { + "appid": 1268870, + "normalized_name": "deskmate girl" + }, + { + "appid": 1268880, + "normalized_name": "方圈 square circle" + }, + { + "appid": 1268900, + "normalized_name": "nearly dead" + }, + { + "appid": 1268960, + "normalized_name": "pureya" + }, + { + "appid": 1268990, + "normalized_name": "amber time [rpg]" + }, + { + "appid": 1269020, + "normalized_name": "no plan b" + }, + { + "appid": 1269030, + "normalized_name": "fred3ric" + }, + { + "appid": 1269050, + "normalized_name": "告死天使的审判 death angel trial" + }, + { + "appid": 1269080, + "normalized_name": "alive" + }, + { + "appid": 1269110, + "normalized_name": "勇者的十日人生" + }, + { + "appid": 1269120, + "normalized_name": "freakshow episode 1" + }, + { + "appid": 1269150, + "normalized_name": "fly punch boom first impact!" + }, + { + "appid": 1269180, + "normalized_name": "fatal evidence the missing collector's" + }, + { + "appid": 1269190, + "normalized_name": "arko" + }, + { + "appid": 1269230, + "normalized_name": "dodo adventures" + }, + { + "appid": 1269240, + "normalized_name": "damn dolls" + }, + { + "appid": 1269250, + "normalized_name": "war smith" + }, + { + "appid": 1269300, + "normalized_name": "this means warp" + }, + { + "appid": 1269350, + "normalized_name": "neuronaut" + }, + { + "appid": 1269370, + "normalized_name": "171" + }, + { + "appid": 1269390, + "normalized_name": "re be" + }, + { + "appid": 1269400, + "normalized_name": "100 player twitch chat party pack" + }, + { + "appid": 1269450, + "normalized_name": "goofy golf steam" + }, + { + "appid": 1269500, + "normalized_name": "crowalt traces of the lost colony" + }, + { + "appid": 1269510, + "normalized_name": "underzone" + }, + { + "appid": 1269520, + "normalized_name": "let me out" + }, + { + "appid": 1269540, + "normalized_name": "slash roll" + }, + { + "appid": 1269550, + "normalized_name": "killsteel" + }, + { + "appid": 1269560, + "normalized_name": "square fast" + }, + { + "appid": 1269590, + "normalized_name": "get a grip chip" + }, + { + "appid": 1269620, + "normalized_name": "puzzle stone blocks" + }, + { + "appid": 1269630, + "normalized_name": "western sigil" + }, + { + "appid": 1269640, + "normalized_name": "beacon pines" + }, + { + "appid": 1269650, + "normalized_name": "amendium" + }, + { + "appid": 1269690, + "normalized_name": "attack on toys" + }, + { + "appid": 1269700, + "normalized_name": "4 minutes to the apocalypse" + }, + { + "appid": 1269710, + "normalized_name": "kainga seeds of civilization" + }, + { + "appid": 1269730, + "normalized_name": "legacies conservation and sabotage" + }, + { + "appid": 1269770, + "normalized_name": "bullet art" + }, + { + "appid": 1269810, + "normalized_name": "the curse of kubel" + }, + { + "appid": 1269820, + "normalized_name": "kozue's strange journey" + }, + { + "appid": 1269830, + "normalized_name": "knotbot" + }, + { + "appid": 1269850, + "normalized_name": "mazed and bemused" + }, + { + "appid": 1269890, + "normalized_name": "virus popper" + }, + { + "appid": 1269900, + "normalized_name": "snake reloaded" + }, + { + "appid": 1269910, + "normalized_name": "aria disconnect" + }, + { + "appid": 1269950, + "normalized_name": "buddy simulator 1984" + }, + { + "appid": 1269960, + "normalized_name": "inferno wizards" + }, + { + "appid": 1269990, + "normalized_name": "wishy washy" + }, + { + "appid": 1270010, + "normalized_name": "gone survival" + }, + { + "appid": 1270020, + "normalized_name": "powerbots retro" + }, + { + "appid": 1270030, + "normalized_name": "xracer 2 evolution" + }, + { + "appid": 1270050, + "normalized_name": "tales of war" + }, + { + "appid": 1270070, + "normalized_name": "gunslingers of the wasteland vs. the zombies from mars" + }, + { + "appid": 1270080, + "normalized_name": "magic twins" + }, + { + "appid": 1270100, + "normalized_name": "兵法:战国篇" + }, + { + "appid": 1270130, + "normalized_name": "planetation" + }, + { + "appid": 1270180, + "normalized_name": "unfound" + }, + { + "appid": 1270210, + "normalized_name": "love of magic" + }, + { + "appid": 1270230, + "normalized_name": "カモネギ号が魔法剣でいっぱいになる" + }, + { + "appid": 1270280, + "normalized_name": "pharao reloaded" + }, + { + "appid": 1270300, + "normalized_name": "carving fate to valhalla" + }, + { + "appid": 1270330, + "normalized_name": "mushroomonster" + }, + { + "appid": 1270360, + "normalized_name": "chicken testrooms" + }, + { + "appid": 1270370, + "normalized_name": "bat of dead" + }, + { + "appid": 1270380, + "normalized_name": "crystal raiders vr" + }, + { + "appid": 1270390, + "normalized_name": "the golem" + }, + { + "appid": 1270420, + "normalized_name": "box nation [] lets go build and fight" + }, + { + "appid": 1270440, + "normalized_name": "muscle power" + }, + { + "appid": 1270460, + "normalized_name": "toss!🍌" + }, + { + "appid": 1270500, + "normalized_name": "snow apocalypse" + }, + { + "appid": 1270520, + "normalized_name": "warehouse tycoon" + }, + { + "appid": 1270570, + "normalized_name": "all over" + }, + { + "appid": 1270580, + "normalized_name": "mind over magic" + }, + { + "appid": 1270620, + "normalized_name": "project chemistry" + }, + { + "appid": 1270650, + "normalized_name": "defend the village from goblins" + }, + { + "appid": 1270670, + "normalized_name": "ダブルフォーカス 文と椛の弾丸取材紀行" + }, + { + "appid": 1270680, + "normalized_name": "whalien unexpected guests" + }, + { + "appid": 1270720, + "normalized_name": "dreamworks spirit lucky's big adventure" + }, + { + "appid": 1270760, + "normalized_name": "linda & joan" + }, + { + "appid": 1270780, + "normalized_name": "elemental defenders td" + }, + { + "appid": 1270820, + "normalized_name": "brothers in blood ww2" + }, + { + "appid": 1270840, + "normalized_name": "new king" + }, + { + "appid": 1270850, + "normalized_name": "karma city police" + }, + { + "appid": 1270870, + "normalized_name": "gray platformer" + }, + { + "appid": 1270890, + "normalized_name": "whone" + }, + { + "appid": 1270910, + "normalized_name": "virtualcop" + }, + { + "appid": 1270930, + "normalized_name": "hentai vs virus i am waifu" + }, + { + "appid": 1270970, + "normalized_name": "burst planet" + }, + { + "appid": 1270980, + "normalized_name": "三国志天下布武" + }, + { + "appid": 1271030, + "normalized_name": "rainbows toilets & unicorns!" + }, + { + "appid": 1271050, + "normalized_name": "shrine" + }, + { + "appid": 1271070, + "normalized_name": "clickbox" + }, + { + "appid": 1271080, + "normalized_name": "car dealer" + }, + { + "appid": 1271090, + "normalized_name": "let's cook together" + }, + { + "appid": 1271100, + "normalized_name": "deadly premonition 2 a blessing in disguise" + }, + { + "appid": 1271110, + "normalized_name": "healing spree" + }, + { + "appid": 1271170, + "normalized_name": "the wizard and the slug" + }, + { + "appid": 1271190, + "normalized_name": "queen's glory" + }, + { + "appid": 1271250, + "normalized_name": "date night bowling" + }, + { + "appid": 1271260, + "normalized_name": "land of screens" + }, + { + "appid": 1271280, + "normalized_name": "rift wizard" + }, + { + "appid": 1271300, + "normalized_name": "methods the detective competition" + }, + { + "appid": 1271310, + "normalized_name": "the forest cathedral" + }, + { + "appid": 1271340, + "normalized_name": "cat president 2 purrlitical revolution" + }, + { + "appid": 1271380, + "normalized_name": "street cleaner the video game" + }, + { + "appid": 1271390, + "normalized_name": "desohunter" + }, + { + "appid": 1271400, + "normalized_name": "adios" + }, + { + "appid": 1271420, + "normalized_name": "chronicles of honor" + }, + { + "appid": 1271460, + "normalized_name": "woman's body for adults 3" + }, + { + "appid": 1271500, + "normalized_name": "legend of orion adventure" + }, + { + "appid": 1271510, + "normalized_name": "remnants of the dawn" + }, + { + "appid": 1271520, + "normalized_name": "speedfighter" + }, + { + "appid": 1271530, + "normalized_name": "night jackal" + }, + { + "appid": 1271540, + "normalized_name": "1 screen platformer prologue" + }, + { + "appid": 1271580, + "normalized_name": "good morning world" + }, + { + "appid": 1271600, + "normalized_name": "panzer crew vr" + }, + { + "appid": 1271620, + "normalized_name": "umihara kawase bazooka!" + }, + { + "appid": 1271630, + "normalized_name": "hentai i'm coming!" + }, + { + "appid": 1271690, + "normalized_name": "zombie derby pixel survival" + }, + { + "appid": 1271700, + "normalized_name": "hot wheels unleashed" + }, + { + "appid": 1271710, + "normalized_name": "lewdapocalypse hentai evil" + }, + { + "appid": 1271740, + "normalized_name": "magical swordmaiden" + }, + { + "appid": 1271750, + "normalized_name": "unferat" + }, + { + "appid": 1271760, + "normalized_name": "minoes" + }, + { + "appid": 1271820, + "normalized_name": "jaw breakers & the confection connection" + }, + { + "appid": 1271840, + "normalized_name": "sophie's cubes" + }, + { + "appid": 1271850, + "normalized_name": "grand casino tycoon" + }, + { + "appid": 1271870, + "normalized_name": "the jungle" + }, + { + "appid": 1271900, + "normalized_name": "aethyr" + }, + { + "appid": 1271910, + "normalized_name": "baby dino adventures" + }, + { + "appid": 1271920, + "normalized_name": "angels on tanks" + }, + { + "appid": 1271950, + "normalized_name": "shielta veil of stars" + }, + { + "appid": 1271980, + "normalized_name": "premier manager 10" + }, + { + "appid": 1271990, + "normalized_name": "premier manager 09" + }, + { + "appid": 1272000, + "normalized_name": "premier manager 08" + }, + { + "appid": 1272010, + "normalized_name": "destroyer the u boat hunter" + }, + { + "appid": 1272020, + "normalized_name": "premier manager 06/07" + }, + { + "appid": 1272030, + "normalized_name": "premier manager 05/06" + }, + { + "appid": 1272040, + "normalized_name": "premier manager 04/05" + }, + { + "appid": 1272050, + "normalized_name": "premier manager 03/04" + }, + { + "appid": 1272060, + "normalized_name": "premier manager 02/03" + }, + { + "appid": 1272070, + "normalized_name": "silicon dreams | cyberpunk interrogation" + }, + { + "appid": 1272080, + "normalized_name": "payday 3" + }, + { + "appid": 1272100, + "normalized_name": "geezer gus the meteorite motel" + }, + { + "appid": 1272110, + "normalized_name": "close combat wacht am rhein" + }, + { + "appid": 1272120, + "normalized_name": "darkanoid" + }, + { + "appid": 1272130, + "normalized_name": "close combat the longest day" + }, + { + "appid": 1272140, + "normalized_name": "floor is...what!?" + }, + { + "appid": 1272150, + "normalized_name": "sol hel" + }, + { + "appid": 1272160, + "normalized_name": "the life and suffering of sir brante" + }, + { + "appid": 1272200, + "normalized_name": "the informant chronicles chronicle 1 riverside danger part 1" + }, + { + "appid": 1272240, + "normalized_name": "beat the machine rebooted" + }, + { + "appid": 1272280, + "normalized_name": "down2die" + }, + { + "appid": 1272290, + "normalized_name": "space chef" + }, + { + "appid": 1272300, + "normalized_name": "zombusters" + }, + { + "appid": 1272320, + "normalized_name": "diplomacy is not an option" + }, + { + "appid": 1272330, + "normalized_name": "easy puzzle bridges" + }, + { + "appid": 1272340, + "normalized_name": "escape to sidious" + }, + { + "appid": 1272360, + "normalized_name": "vrdj" + }, + { + "appid": 1272390, + "normalized_name": "the last day of adolf" + }, + { + "appid": 1272450, + "normalized_name": "mahjong deluxe" + }, + { + "appid": 1272460, + "normalized_name": "人狼の仔" + }, + { + "appid": 1272470, + "normalized_name": "alien chip" + }, + { + "appid": 1272500, + "normalized_name": "paraiso island" + }, + { + "appid": 1272520, + "normalized_name": "puzzlekid" + }, + { + "appid": 1272530, + "normalized_name": "looking glass" + }, + { + "appid": 1272550, + "normalized_name": "phantom galaxies" + }, + { + "appid": 1272580, + "normalized_name": "nine witches family disruption" + }, + { + "appid": 1272660, + "normalized_name": "gan's matchstick men:deadly rhythm" + }, + { + "appid": 1272680, + "normalized_name": "umihara kawase fresh!" + }, + { + "appid": 1272690, + "normalized_name": "car crush racing simulator" + }, + { + "appid": 1272720, + "normalized_name": "the life of frederick sommer" + }, + { + "appid": 1272750, + "normalized_name": "the core message" + }, + { + "appid": 1272780, + "normalized_name": "cargo!" + }, + { + "appid": 1272820, + "normalized_name": "super worm 3d" + }, + { + "appid": 1272830, + "normalized_name": "cube projection" + }, + { + "appid": 1272840, + "normalized_name": "dordogne" + }, + { + "appid": 1272860, + "normalized_name": "absolute alchemical potion" + }, + { + "appid": 1272900, + "normalized_name": "【救世计划】红衣/salvationplan spiritevil" + }, + { + "appid": 1272920, + "normalized_name": "easy puzzle streets" + }, + { + "appid": 1272970, + "normalized_name": "nyanco card" + }, + { + "appid": 1273010, + "normalized_name": "astralode freeminers" + }, + { + "appid": 1273020, + "normalized_name": "dark side" + }, + { + "appid": 1273060, + "normalized_name": "aliens love beefs" + }, + { + "appid": 1273070, + "normalized_name": "infinite abyss" + }, + { + "appid": 1273080, + "normalized_name": "raptor boyfriend a high school romance" + }, + { + "appid": 1273100, + "normalized_name": "builders of greece" + }, + { + "appid": 1273110, + "normalized_name": "sir stretchalot the wenches in the well" + }, + { + "appid": 1273120, + "normalized_name": "eira echoes of adventure" + }, + { + "appid": 1273160, + "normalized_name": "fall of the mafia" + }, + { + "appid": 1273180, + "normalized_name": "glory horse racing" + }, + { + "appid": 1273220, + "normalized_name": "sphere flying cities" + }, + { + "appid": 1273250, + "normalized_name": "breakpoint" + }, + { + "appid": 1273260, + "normalized_name": "corpse party (2021)" + }, + { + "appid": 1273290, + "normalized_name": "blindblade2" + }, + { + "appid": 1273320, + "normalized_name": "tentacle manor" + }, + { + "appid": 1273350, + "normalized_name": "a night in kyosaka" + }, + { + "appid": 1273380, + "normalized_name": "weapons genius vr" + }, + { + "appid": 1273400, + "normalized_name": "construction simulator" + }, + { + "appid": 1273430, + "normalized_name": "iota" + }, + { + "appid": 1273440, + "normalized_name": "overdrift festival" + }, + { + "appid": 1273450, + "normalized_name": "selfless heroes" + }, + { + "appid": 1273470, + "normalized_name": "asdz" + }, + { + "appid": 1273480, + "normalized_name": "the highrise" + }, + { + "appid": 1273510, + "normalized_name": "mysterious world" + }, + { + "appid": 1273520, + "normalized_name": "the last day defense vr" + }, + { + "appid": 1273530, + "normalized_name": "endless savagery" + }, + { + "appid": 1273540, + "normalized_name": "mail mole + 'xpress deliveries" + }, + { + "appid": 1273550, + "normalized_name": "fred the rubber ducky" + }, + { + "appid": 1273560, + "normalized_name": "deathsprint 66" + }, + { + "appid": 1273570, + "normalized_name": "four rendezvous" + }, + { + "appid": 1273580, + "normalized_name": "燎刃 temper my blade" + }, + { + "appid": 1273590, + "normalized_name": "jumping joe! friends" + }, + { + "appid": 1273600, + "normalized_name": "space tow truck isaac newton's favorite puzzle game" + }, + { + "appid": 1273640, + "normalized_name": "bring you home" + }, + { + "appid": 1273690, + "normalized_name": "ashwalkers" + }, + { + "appid": 1273710, + "normalized_name": "king of crabs" + }, + { + "appid": 1273720, + "normalized_name": "sbx 5k" + }, + { + "appid": 1273740, + "normalized_name": "as aventuras do cueca listrada" + }, + { + "appid": 1273750, + "normalized_name": "button city" + }, + { + "appid": 1273780, + "normalized_name": "peekaboo collection 3 tales of horror" + }, + { + "appid": 1273790, + "normalized_name": "empires and tribes" + }, + { + "appid": 1273800, + "normalized_name": "vaccine" + }, + { + "appid": 1273820, + "normalized_name": "microman" + }, + { + "appid": 1273830, + "normalized_name": "deity" + }, + { + "appid": 1273890, + "normalized_name": "bastard little zombie" + }, + { + "appid": 1273920, + "normalized_name": "dark romance ashville collector's" + }, + { + "appid": 1273930, + "normalized_name": "hard rock pinball" + }, + { + "appid": 1273940, + "normalized_name": "fight with love deckbuilder datingsim" + }, + { + "appid": 1273980, + "normalized_name": "heatwave" + }, + { + "appid": 1274020, + "normalized_name": "castle fight" + }, + { + "appid": 1274060, + "normalized_name": "the ball adventure" + }, + { + "appid": 1274090, + "normalized_name": "hotfix" + }, + { + "appid": 1274110, + "normalized_name": "light a maze game" + }, + { + "appid": 1274140, + "normalized_name": "one dreamer prologue" + }, + { + "appid": 1274150, + "normalized_name": "shoot covid 19 | 消灭新冠肺炎" + }, + { + "appid": 1274180, + "normalized_name": "tower ships" + }, + { + "appid": 1274190, + "normalized_name": "南十字作战队" + }, + { + "appid": 1274200, + "normalized_name": "enamored risks" + }, + { + "appid": 1274210, + "normalized_name": "wizardchess" + }, + { + "appid": 1274230, + "normalized_name": "legend of kendor" + }, + { + "appid": 1274250, + "normalized_name": "fire for effect" + }, + { + "appid": 1274280, + "normalized_name": "blue flame" + }, + { + "appid": 1274290, + "normalized_name": "kidnapped girl" + }, + { + "appid": 1274300, + "normalized_name": "cyber agent" + }, + { + "appid": 1274310, + "normalized_name": "东方鬼神玉 ~ i wanna be the yin yang orb" + }, + { + "appid": 1274340, + "normalized_name": "colorsinvasion" + }, + { + "appid": 1274360, + "normalized_name": "幽灵高校(ghost college)" + }, + { + "appid": 1274380, + "normalized_name": "etheldia pepper" + }, + { + "appid": 1274390, + "normalized_name": "bud masters battle" + }, + { + "appid": 1274400, + "normalized_name": "prisoner breaker" + }, + { + "appid": 1274440, + "normalized_name": "jack walker ethereal" + }, + { + "appid": 1274470, + "normalized_name": "heim" + }, + { + "appid": 1274490, + "normalized_name": "green project" + }, + { + "appid": 1274530, + "normalized_name": "gorilla guerrillas" + }, + { + "appid": 1274550, + "normalized_name": "dragon storm" + }, + { + "appid": 1274560, + "normalized_name": "matergari below valesia" + }, + { + "appid": 1274570, + "normalized_name": "devour" + }, + { + "appid": 1274590, + "normalized_name": "squishy sports" + }, + { + "appid": 1274600, + "normalized_name": "the last faith" + }, + { + "appid": 1274610, + "normalized_name": "leslove.club emily and sarah" + }, + { + "appid": 1274620, + "normalized_name": "horizon springs" + }, + { + "appid": 1274630, + "normalized_name": "so may it be a witch dating simulator" + }, + { + "appid": 1274640, + "normalized_name": "nightvision drive forever" + }, + { + "appid": 1274670, + "normalized_name": "communion" + }, + { + "appid": 1274690, + "normalized_name": "sayonara electric" + }, + { + "appid": 1274700, + "normalized_name": "you alone can defeat evil" + }, + { + "appid": 1274710, + "normalized_name": "lullaby days" + }, + { + "appid": 1274720, + "normalized_name": "soulbound" + }, + { + "appid": 1274730, + "normalized_name": "pistol dancer" + }, + { + "appid": 1274800, + "normalized_name": "pancake sailor" + }, + { + "appid": 1274810, + "normalized_name": "armageddon onslaught" + }, + { + "appid": 1274830, + "normalized_name": "autopanic" + }, + { + "appid": 1274840, + "normalized_name": "escape from gulag" + }, + { + "appid": 1274850, + "normalized_name": "the sickle upon sekigahara" + }, + { + "appid": 1274860, + "normalized_name": "like old times" + }, + { + "appid": 1274910, + "normalized_name": "active neurons 2" + }, + { + "appid": 1274930, + "normalized_name": "planet 2000" + }, + { + "appid": 1274940, + "normalized_name": "strip 'em" + }, + { + "appid": 1274970, + "normalized_name": "zeroed" + }, + { + "appid": 1274980, + "normalized_name": "rogue party 2" + }, + { + "appid": 1274990, + "normalized_name": "living art" + }, + { + "appid": 1275030, + "normalized_name": "the king's magic" + }, + { + "appid": 1275060, + "normalized_name": "farm builder" + }, + { + "appid": 1275070, + "normalized_name": "a buttload of free games" + }, + { + "appid": 1275150, + "normalized_name": "aquadine" + }, + { + "appid": 1275180, + "normalized_name": "hunter x begin" + }, + { + "appid": 1275190, + "normalized_name": "inside the mirror" + }, + { + "appid": 1275210, + "normalized_name": "cross soul" + }, + { + "appid": 1275230, + "normalized_name": "strato's sylph asterism" + }, + { + "appid": 1275240, + "normalized_name": "pandoria" + }, + { + "appid": 1275250, + "normalized_name": "trump and virus" + }, + { + "appid": 1275260, + "normalized_name": "this will not go well" + }, + { + "appid": 1275290, + "normalized_name": "dream catcher" + }, + { + "appid": 1275300, + "normalized_name": "炽焰帝国 十字军东征" + }, + { + "appid": 1275320, + "normalized_name": "be coronavirus" + }, + { + "appid": 1275330, + "normalized_name": "viking heroes" + }, + { + "appid": 1275350, + "normalized_name": "ninja kiwi archive" + }, + { + "appid": 1275370, + "normalized_name": "sharded world" + }, + { + "appid": 1275390, + "normalized_name": "city destructor" + }, + { + "appid": 1275410, + "normalized_name": "only one rectangle" + }, + { + "appid": 1275450, + "normalized_name": "a letter to you!" + }, + { + "appid": 1275490, + "normalized_name": "martial arts brutality premium" + }, + { + "appid": 1275520, + "normalized_name": "choco pixel 4" + }, + { + "appid": 1275540, + "normalized_name": "go kart run!" + }, + { + "appid": 1275550, + "normalized_name": "arctic awakening" + }, + { + "appid": 1275590, + "normalized_name": "dieselpunk wars prologue" + }, + { + "appid": 1275600, + "normalized_name": "kevin's path to wizdom" + }, + { + "appid": 1275610, + "normalized_name": "grappling hook ball tournament" + }, + { + "appid": 1275630, + "normalized_name": "drug dealer simulator free sample" + }, + { + "appid": 1275640, + "normalized_name": "coloring game 3" + }, + { + "appid": 1275660, + "normalized_name": "sanity of morris" + }, + { + "appid": 1275670, + "normalized_name": "outcore desktop adventure" + }, + { + "appid": 1275760, + "normalized_name": "street power football" + }, + { + "appid": 1275770, + "normalized_name": "the narrator is a dick longer harder and uncut" + }, + { + "appid": 1275790, + "normalized_name": "space otter charlie" + }, + { + "appid": 1275810, + "normalized_name": "stan lee's verticus" + }, + { + "appid": 1275850, + "normalized_name": "frog space" + }, + { + "appid": 1275860, + "normalized_name": "kick the virus" + }, + { + "appid": 1275880, + "normalized_name": "happy birthday adolf!" + }, + { + "appid": 1275890, + "normalized_name": "baldi's basics plus" + }, + { + "appid": 1275960, + "normalized_name": "blured angel" + }, + { + "appid": 1275970, + "normalized_name": "digital dungeon tiles" + }, + { + "appid": 1275980, + "normalized_name": "probe" + }, + { + "appid": 1276040, + "normalized_name": "mini words top movies" + }, + { + "appid": 1276060, + "normalized_name": "fingertips mountain sea(指尖山海)" + }, + { + "appid": 1276070, + "normalized_name": "manufactoria 2022" + }, + { + "appid": 1276090, + "normalized_name": "creator adventure legend" + }, + { + "appid": 1276100, + "normalized_name": "clay game" + }, + { + "appid": 1276130, + "normalized_name": "twilight struggle red sea" + }, + { + "appid": 1276140, + "normalized_name": "核能步枪 nuclearrifle" + }, + { + "appid": 1276170, + "normalized_name": "pandemic panic!" + }, + { + "appid": 1276290, + "normalized_name": "pst vr (primary surgical treatment)" + }, + { + "appid": 1276300, + "normalized_name": "zerowood" + }, + { + "appid": 1276320, + "normalized_name": "naught" + }, + { + "appid": 1276330, + "normalized_name": "flying soldiers" + }, + { + "appid": 1276350, + "normalized_name": "evolution for beginners" + }, + { + "appid": 1276370, + "normalized_name": "elva the eco dragon" + }, + { + "appid": 1276390, + "normalized_name": "bloons td battles 2" + }, + { + "appid": 1276410, + "normalized_name": "sheltering with you" + }, + { + "appid": 1276430, + "normalized_name": "megalan 11" + }, + { + "appid": 1276450, + "normalized_name": "modest hero" + }, + { + "appid": 1276470, + "normalized_name": "arctic anxiety" + }, + { + "appid": 1276490, + "normalized_name": "cascading failure" + }, + { + "appid": 1276510, + "normalized_name": "human farm" + }, + { + "appid": 1276530, + "normalized_name": "an interesting journey of monsieur paf" + }, + { + "appid": 1276540, + "normalized_name": "persian nights 2 the moonlight veil" + }, + { + "appid": 1276550, + "normalized_name": "faefever" + }, + { + "appid": 1276590, + "normalized_name": "oddest sea" + }, + { + "appid": 1276600, + "normalized_name": "the chronicles of robin hood the king of thieves" + }, + { + "appid": 1276610, + "normalized_name": "my cute roommate" + }, + { + "appid": 1276660, + "normalized_name": "tinkertown" + }, + { + "appid": 1276690, + "normalized_name": "kira and the life stone" + }, + { + "appid": 1276710, + "normalized_name": "cosmotic blast" + }, + { + "appid": 1276720, + "normalized_name": "witching tower heroes" + }, + { + "appid": 1276740, + "normalized_name": "protodroid delta" + }, + { + "appid": 1276750, + "normalized_name": "negative nancy" + }, + { + "appid": 1276760, + "normalized_name": "dragon ball the breakers" + }, + { + "appid": 1276790, + "normalized_name": "ruined king a league of legends story" + }, + { + "appid": 1276800, + "normalized_name": "convergence a league of legends story" + }, + { + "appid": 1276810, + "normalized_name": "the outbound ghost" + }, + { + "appid": 1276820, + "normalized_name": "space war machine" + }, + { + "appid": 1276850, + "normalized_name": "kane's shadow" + }, + { + "appid": 1276890, + "normalized_name": "the lilliputian runner" + }, + { + "appid": 1277090, + "normalized_name": "toilet paper crisis simulator 2020" + }, + { + "appid": 1277100, + "normalized_name": "dungeon & derision" + }, + { + "appid": 1277130, + "normalized_name": "deathbound" + }, + { + "appid": 1277140, + "normalized_name": "underwater wars" + }, + { + "appid": 1277160, + "normalized_name": "aquarium life" + }, + { + "appid": 1277190, + "normalized_name": "how to make a killing" + }, + { + "appid": 1277210, + "normalized_name": "美足小屋 / beautiful feet ca" + }, + { + "appid": 1277230, + "normalized_name": "crying pony" + }, + { + "appid": 1277290, + "normalized_name": "c tas a virtual chinese learning game" + }, + { + "appid": 1277300, + "normalized_name": "cryptic rooms" + }, + { + "appid": 1277310, + "normalized_name": "saving you from yourself" + }, + { + "appid": 1277320, + "normalized_name": "firstqueen1 next" + }, + { + "appid": 1277340, + "normalized_name": "sunset fighter" + }, + { + "appid": 1277360, + "normalized_name": "异界大陆" + }, + { + "appid": 1277390, + "normalized_name": "death world" + }, + { + "appid": 1277400, + "normalized_name": "monster hunter stories 2 wings of ruin" + }, + { + "appid": 1277480, + "normalized_name": "the shepherd" + }, + { + "appid": 1277500, + "normalized_name": "skeletal avenger" + }, + { + "appid": 1277510, + "normalized_name": "re zero starting life in another world the prophecy of the throne" + }, + { + "appid": 1277520, + "normalized_name": "traffic storm" + }, + { + "appid": 1277530, + "normalized_name": "black stigma" + }, + { + "appid": 1277610, + "normalized_name": "move with ai" + }, + { + "appid": 1277630, + "normalized_name": "space lint" + }, + { + "appid": 1277640, + "normalized_name": "pixel fight" + }, + { + "appid": 1277650, + "normalized_name": "deadsigns" + }, + { + "appid": 1277660, + "normalized_name": "visualhacker" + }, + { + "appid": 1277710, + "normalized_name": "robodo" + }, + { + "appid": 1277840, + "normalized_name": "dustoff z" + }, + { + "appid": 1277870, + "normalized_name": "super ufo fighter" + }, + { + "appid": 1277880, + "normalized_name": "the adventures of kincaid" + }, + { + "appid": 1277920, + "normalized_name": "ethyrial echoes of yore" + }, + { + "appid": 1277930, + "normalized_name": "riddle joker" + }, + { + "appid": 1277940, + "normalized_name": "kinkoi golden loveriche" + }, + { + "appid": 1277950, + "normalized_name": "heart's medicine season one" + }, + { + "appid": 1277970, + "normalized_name": "i'mitation the eight suicide note" + }, + { + "appid": 1278040, + "normalized_name": "storynth" + }, + { + "appid": 1278060, + "normalized_name": "fpv skydive fpv drone simulator" + }, + { + "appid": 1278080, + "normalized_name": "snowrifters" + }, + { + "appid": 1278090, + "normalized_name": "collection quest" + }, + { + "appid": 1278100, + "normalized_name": "stabby cats" + }, + { + "appid": 1278110, + "normalized_name": "death taxi 3000" + }, + { + "appid": 1278140, + "normalized_name": "delirium" + }, + { + "appid": 1278150, + "normalized_name": "nayati river" + }, + { + "appid": 1278170, + "normalized_name": "big rumble boxing creed champions" + }, + { + "appid": 1278190, + "normalized_name": "jumpala" + }, + { + "appid": 1278200, + "normalized_name": "spacer legacies" + }, + { + "appid": 1278210, + "normalized_name": "space raiders in space" + }, + { + "appid": 1278230, + "normalized_name": "denial" + }, + { + "appid": 1278270, + "normalized_name": "fire rescue simulator" + }, + { + "appid": 1278290, + "normalized_name": "xdasher" + }, + { + "appid": 1278350, + "normalized_name": "jelly brawl" + }, + { + "appid": 1278360, + "normalized_name": "clam man 2 open mic" + }, + { + "appid": 1278370, + "normalized_name": "lost circus vr the prologue" + }, + { + "appid": 1278380, + "normalized_name": "clam man 2 headliner" + }, + { + "appid": 1278390, + "normalized_name": "succumate" + }, + { + "appid": 1278420, + "normalized_name": "blocklords" + }, + { + "appid": 1278430, + "normalized_name": "warehouse attack" + }, + { + "appid": 1278500, + "normalized_name": "tower! 3d" + }, + { + "appid": 1278520, + "normalized_name": "sky seeker" + }, + { + "appid": 1278540, + "normalized_name": "esports godfather" + }, + { + "appid": 1278580, + "normalized_name": "dungeons and undead" + }, + { + "appid": 1278690, + "normalized_name": "firefighters airport heroes" + }, + { + "appid": 1278710, + "normalized_name": "fps robot attack minigame" + }, + { + "appid": 1278720, + "normalized_name": "escape from durka" + }, + { + "appid": 1278750, + "normalized_name": "lost at sea" + }, + { + "appid": 1278760, + "normalized_name": "tinyshot" + }, + { + "appid": 1278860, + "normalized_name": "di[c]e" + }, + { + "appid": 1278880, + "normalized_name": "delight the journey home" + }, + { + "appid": 1278930, + "normalized_name": "math puzzle alpha challenge" + }, + { + "appid": 1278960, + "normalized_name": "super forklift 3000" + }, + { + "appid": 1279000, + "normalized_name": "glare fall" + }, + { + "appid": 1279240, + "normalized_name": "police shootout" + }, + { + "appid": 1279260, + "normalized_name": "lelie navigation!" + }, + { + "appid": 1279270, + "normalized_name": "7 girls war" + }, + { + "appid": 1279280, + "normalized_name": "welcome to the adventurer inn!" + }, + { + "appid": 1279310, + "normalized_name": "research and destroy" + }, + { + "appid": 1279320, + "normalized_name": "湛蓝星球 迷失·赛博之城" + }, + { + "appid": 1279330, + "normalized_name": "under lock" + }, + { + "appid": 1279360, + "normalized_name": "the amazing ball" + }, + { + "appid": 1279370, + "normalized_name": "tengai" + }, + { + "appid": 1279380, + "normalized_name": "strikers 1945 ii" + }, + { + "appid": 1279390, + "normalized_name": "samurai aces iii sengoku cannon" + }, + { + "appid": 1279400, + "normalized_name": "strikers 1945 iii" + }, + { + "appid": 1279410, + "normalized_name": "gunbird 2" + }, + { + "appid": 1279420, + "normalized_name": "dragon blaze" + }, + { + "appid": 1279440, + "normalized_name": "realm of heroes" + }, + { + "appid": 1279450, + "normalized_name": "sol divide sword of darkness" + }, + { + "appid": 1279480, + "normalized_name": "thomas scott" + }, + { + "appid": 1279500, + "normalized_name": "nine chronicles" + }, + { + "appid": 1279510, + "normalized_name": "screw drivers" + }, + { + "appid": 1279540, + "normalized_name": "mavr3d 八般武艺" + }, + { + "appid": 1279590, + "normalized_name": "fritz chess 17 steam" + }, + { + "appid": 1279620, + "normalized_name": "gem master" + }, + { + "appid": 1279630, + "normalized_name": "vampire the masquerade shadows of new york" + }, + { + "appid": 1279700, + "normalized_name": "midnight scenes the highway" + }, + { + "appid": 1279770, + "normalized_name": "tower of god" + }, + { + "appid": 1279800, + "normalized_name": "legend of towercraft" + }, + { + "appid": 1279810, + "normalized_name": "zeph" + }, + { + "appid": 1279920, + "normalized_name": "cobra kai the karate kid saga continues" + }, + { + "appid": 1279970, + "normalized_name": "swoosh" + }, + { + "appid": 1280010, + "normalized_name": "welcome to pussy paradise" + }, + { + "appid": 1280060, + "normalized_name": "hoverflow" + }, + { + "appid": 1280070, + "normalized_name": "ballad of the masked bandits" + }, + { + "appid": 1280080, + "normalized_name": "faeland" + }, + { + "appid": 1280090, + "normalized_name": "discreet" + }, + { + "appid": 1280100, + "normalized_name": "element battle royale" + }, + { + "appid": 1280160, + "normalized_name": "magikart retro kart racing" + }, + { + "appid": 1280180, + "normalized_name": "get over here!" + }, + { + "appid": 1280190, + "normalized_name": "falling frontier" + }, + { + "appid": 1280210, + "normalized_name": "void arena" + }, + { + "appid": 1280220, + "normalized_name": "floor 100" + }, + { + "appid": 1280260, + "normalized_name": "overgrown genesis" + }, + { + "appid": 1280270, + "normalized_name": "匠人物语craftsman story" + }, + { + "appid": 1280290, + "normalized_name": "ash of legends" + }, + { + "appid": 1280300, + "normalized_name": "steel assault" + }, + { + "appid": 1280310, + "normalized_name": "axizon labs zombies" + }, + { + "appid": 1280320, + "normalized_name": "eighteen gold" + }, + { + "appid": 1280370, + "normalized_name": "heavenworld" + }, + { + "appid": 1280380, + "normalized_name": "moolii's dreamland" + }, + { + "appid": 1280440, + "normalized_name": "infernal radiation (demo)" + }, + { + "appid": 1280490, + "normalized_name": "color crush" + }, + { + "appid": 1280500, + "normalized_name": "terracosmic" + }, + { + "appid": 1280550, + "normalized_name": "defense high" + }, + { + "appid": 1280570, + "normalized_name": "toasty ashes of dusk" + }, + { + "appid": 1280590, + "normalized_name": "race project" + }, + { + "appid": 1280610, + "normalized_name": "stack it" + }, + { + "appid": 1280630, + "normalized_name": "waifu breaker" + }, + { + "appid": 1280640, + "normalized_name": "boyfriend's rescue gay platform game" + }, + { + "appid": 1280660, + "normalized_name": "rollercoaster mechanic" + }, + { + "appid": 1280670, + "normalized_name": "covid quest 2077" + }, + { + "appid": 1280680, + "normalized_name": "little robot stories" + }, + { + "appid": 1280700, + "normalized_name": "drekirokr dusk of the dragon" + }, + { + "appid": 1280730, + "normalized_name": "lovely goddess" + }, + { + "appid": 1280750, + "normalized_name": "aquamarine explorer's" + }, + { + "appid": 1280760, + "normalized_name": "official wicked vixen whack a dick pro" + }, + { + "appid": 1280770, + "normalized_name": "redmatch 2" + }, + { + "appid": 1280780, + "normalized_name": "war on the sea" + }, + { + "appid": 1280840, + "normalized_name": "historica fantasia" + }, + { + "appid": 1280850, + "normalized_name": "swing striker" + }, + { + "appid": 1280890, + "normalized_name": "unreal paris 2020" + }, + { + "appid": 1280910, + "normalized_name": "80s escape" + }, + { + "appid": 1280920, + "normalized_name": "joe's quest" + }, + { + "appid": 1280930, + "normalized_name": "astral ascent" + }, + { + "appid": 1280940, + "normalized_name": "hard vacuum" + }, + { + "appid": 1280950, + "normalized_name": "interstate drifter 2000" + }, + { + "appid": 1280960, + "normalized_name": "dreamworld" + }, + { + "appid": 1280970, + "normalized_name": "pay me in colors" + }, + { + "appid": 1280980, + "normalized_name": "polarities" + }, + { + "appid": 1280990, + "normalized_name": "unknown ways" + }, + { + "appid": 1281030, + "normalized_name": "misuto" + }, + { + "appid": 1281040, + "normalized_name": "baby steps" + }, + { + "appid": 1281070, + "normalized_name": "finding brenda episode 1" + }, + { + "appid": 1281080, + "normalized_name": "train station renovation first job" + }, + { + "appid": 1281100, + "normalized_name": "murk" + }, + { + "appid": 1281130, + "normalized_name": "thrice in a row" + }, + { + "appid": 1281140, + "normalized_name": "my sweet confession" + }, + { + "appid": 1281150, + "normalized_name": "modiverse" + }, + { + "appid": 1281160, + "normalized_name": "castle in the clouds dx" + }, + { + "appid": 1281170, + "normalized_name": "pro strategy football 2021" + }, + { + "appid": 1281180, + "normalized_name": "jigsaw puzzles for kids and adults europe" + }, + { + "appid": 1281190, + "normalized_name": "the shadow government simulator" + }, + { + "appid": 1281200, + "normalized_name": "the walking fish 2 final frontier" + }, + { + "appid": 1281220, + "normalized_name": "task force admiral vol.1 american carrier battles" + }, + { + "appid": 1281250, + "normalized_name": "lammana the looe island mystery" + }, + { + "appid": 1281270, + "normalized_name": "fatum betula" + }, + { + "appid": 1281280, + "normalized_name": "therapy sheep vr" + }, + { + "appid": 1281320, + "normalized_name": "lucky heroes" + }, + { + "appid": 1281350, + "normalized_name": "pandemic crisis" + }, + { + "appid": 1281360, + "normalized_name": "new yankee 8 journey of odysseus" + }, + { + "appid": 1281370, + "normalized_name": "ploid saga" + }, + { + "appid": 1281380, + "normalized_name": "invasion" + }, + { + "appid": 1281390, + "normalized_name": "wasted world" + }, + { + "appid": 1281400, + "normalized_name": "good knight" + }, + { + "appid": 1281420, + "normalized_name": "dom rusalok" + }, + { + "appid": 1281470, + "normalized_name": "chessсakе" + }, + { + "appid": 1281480, + "normalized_name": "epica" + }, + { + "appid": 1281490, + "normalized_name": "the night is grey" + }, + { + "appid": 1281510, + "normalized_name": "kirakira stars idol project nagisa" + }, + { + "appid": 1281520, + "normalized_name": "god machine shogun cybermetal arena" + }, + { + "appid": 1281530, + "normalized_name": "bird missions" + }, + { + "appid": 1281560, + "normalized_name": "beyond solar" + }, + { + "appid": 1281580, + "normalized_name": "oh frog" + }, + { + "appid": 1281590, + "normalized_name": "the dark pictures anthology house of ashes" + }, + { + "appid": 1281600, + "normalized_name": "zen universe" + }, + { + "appid": 1281630, + "normalized_name": "anno 1404 history" + }, + { + "appid": 1281640, + "normalized_name": "medic pacific war" + }, + { + "appid": 1281690, + "normalized_name": "woody chopper" + }, + { + "appid": 1281760, + "normalized_name": "the dead of winter" + }, + { + "appid": 1281790, + "normalized_name": "sheepo" + }, + { + "appid": 1281800, + "normalized_name": "samsara room" + }, + { + "appid": 1281810, + "normalized_name": "reflections of life utopia collector's" + }, + { + "appid": 1281830, + "normalized_name": "project canopy" + }, + { + "appid": 1281860, + "normalized_name": "frogsong" + }, + { + "appid": 1281890, + "normalized_name": "defective holiday" + }, + { + "appid": 1281920, + "normalized_name": "iron reckoning" + }, + { + "appid": 1281980, + "normalized_name": "catovania" + }, + { + "appid": 1281990, + "normalized_name": "coronafighter" + }, + { + "appid": 1282000, + "normalized_name": "saint lary's hospital ay corona!" + }, + { + "appid": 1282040, + "normalized_name": "apocalypse survivor" + }, + { + "appid": 1282060, + "normalized_name": "rust raiders" + }, + { + "appid": 1282080, + "normalized_name": "chang'an the capital of tang dynasty" + }, + { + "appid": 1282090, + "normalized_name": "tree simulator 2021" + }, + { + "appid": 1282100, + "normalized_name": "remnant ii" + }, + { + "appid": 1282110, + "normalized_name": "escape initiative" + }, + { + "appid": 1282120, + "normalized_name": "a rabbit and the mystic fog" + }, + { + "appid": 1282140, + "normalized_name": "fires at midnight" + }, + { + "appid": 1282150, + "normalized_name": "spongebob squarepants the cosmic shake" + }, + { + "appid": 1282200, + "normalized_name": "the test hypothesis rising" + }, + { + "appid": 1282210, + "normalized_name": "deemo reborn" + }, + { + "appid": 1282220, + "normalized_name": "scooty shooty" + }, + { + "appid": 1282240, + "normalized_name": "泡泡三国" + }, + { + "appid": 1282270, + "normalized_name": "strinova" + }, + { + "appid": 1282320, + "normalized_name": "stilstand" + }, + { + "appid": 1282360, + "normalized_name": "escape from island" + }, + { + "appid": 1282370, + "normalized_name": "grafi easter" + }, + { + "appid": 1282380, + "normalized_name": "come bye a sheepdog simulator" + }, + { + "appid": 1282410, + "normalized_name": "hard west 2" + }, + { + "appid": 1282500, + "normalized_name": "prisme 7" + }, + { + "appid": 1282510, + "normalized_name": "cards & crystals" + }, + { + "appid": 1282540, + "normalized_name": "tales of kongfu" + }, + { + "appid": 1282580, + "normalized_name": "hunter of the disowned" + }, + { + "appid": 1282590, + "normalized_name": "train sim world 2" + }, + { + "appid": 1282610, + "normalized_name": "bitbattle" + }, + { + "appid": 1282630, + "normalized_name": "youcandoit?" + }, + { + "appid": 1282650, + "normalized_name": "180 files the aegis project" + }, + { + "appid": 1282670, + "normalized_name": "the most beautiful room in the world" + }, + { + "appid": 1282700, + "normalized_name": "woodsalt" + }, + { + "appid": 1282710, + "normalized_name": "sakura stars" + }, + { + "appid": 1282720, + "normalized_name": "swords of time" + }, + { + "appid": 1282730, + "normalized_name": "loop hero" + }, + { + "appid": 1282760, + "normalized_name": "mad streets" + }, + { + "appid": 1282770, + "normalized_name": "virtual presenter pro" + }, + { + "appid": 1282830, + "normalized_name": "battle for the kingdom" + }, + { + "appid": 1282850, + "normalized_name": "haunted by evil" + }, + { + "appid": 1282880, + "normalized_name": "puzzl" + }, + { + "appid": 1282890, + "normalized_name": "space mouse 2" + }, + { + "appid": 1282900, + "normalized_name": "bacon quest lovers' beef special" + }, + { + "appid": 1282920, + "normalized_name": "the roaring empire" + }, + { + "appid": 1283000, + "normalized_name": "hi score boi" + }, + { + "appid": 1283060, + "normalized_name": "furry shakespeare emperor penguin lear" + }, + { + "appid": 1283070, + "normalized_name": "3d jigsaw puzzle simulator" + }, + { + "appid": 1283100, + "normalized_name": "lowpolis" + }, + { + "appid": 1283110, + "normalized_name": "start heart thief | 出发吧!偷心盗贼 | 出撃 ルビー | 出擊 偷心盜賊" + }, + { + "appid": 1283130, + "normalized_name": "micro platformer" + }, + { + "appid": 1283140, + "normalized_name": "burn me twice" + }, + { + "appid": 1283180, + "normalized_name": "roball" + }, + { + "appid": 1283190, + "normalized_name": "neighbours back from hell" + }, + { + "appid": 1283210, + "normalized_name": "渡劫 x 魔女 ~ team up with a magician!" + }, + { + "appid": 1283220, + "normalized_name": "devolverland expo" + }, + { + "appid": 1283230, + "normalized_name": "autopsy simulator" + }, + { + "appid": 1283240, + "normalized_name": "center2048" + }, + { + "appid": 1283250, + "normalized_name": "audio party pack" + }, + { + "appid": 1283260, + "normalized_name": "coof attack" + }, + { + "appid": 1283270, + "normalized_name": "胆小鬼 coward" + }, + { + "appid": 1283280, + "normalized_name": "insexsity" + }, + { + "appid": 1283330, + "normalized_name": "my sail and my sea" + }, + { + "appid": 1283350, + "normalized_name": "我是熊孩子" + }, + { + "appid": 1283360, + "normalized_name": "geki yaba runner" + }, + { + "appid": 1283370, + "normalized_name": "a painter's tale curon 1950" + }, + { + "appid": 1283380, + "normalized_name": "spinzap" + }, + { + "appid": 1283400, + "normalized_name": "steelrising" + }, + { + "appid": 1283410, + "normalized_name": "tails of iron" + }, + { + "appid": 1283430, + "normalized_name": "fighting fiends" + }, + { + "appid": 1283450, + "normalized_name": "soundstrider" + }, + { + "appid": 1283500, + "normalized_name": "euphoria supreme mechanics" + }, + { + "appid": 1283520, + "normalized_name": "the odd neon void" + }, + { + "appid": 1283550, + "normalized_name": "rotatex 3" + }, + { + "appid": 1283580, + "normalized_name": "minimalist space war" + }, + { + "appid": 1283590, + "normalized_name": "azure" + }, + { + "appid": 1283620, + "normalized_name": "run!!!" + }, + { + "appid": 1283630, + "normalized_name": "frog bath" + }, + { + "appid": 1283640, + "normalized_name": "legends of the brawl" + }, + { + "appid": 1283660, + "normalized_name": "game kun input challenge" + }, + { + "appid": 1283680, + "normalized_name": "captive" + }, + { + "appid": 1283690, + "normalized_name": "music is the language" + }, + { + "appid": 1283700, + "normalized_name": "supervive" + }, + { + "appid": 1283720, + "normalized_name": "cube miners" + }, + { + "appid": 1283740, + "normalized_name": "dangerous lands 2 evil ascension" + }, + { + "appid": 1283760, + "normalized_name": "covid 19 (corona virus)" + }, + { + "appid": 1283770, + "normalized_name": "grey skies a war of the worlds story" + }, + { + "appid": 1283790, + "normalized_name": "the employee" + }, + { + "appid": 1283800, + "normalized_name": "the legend of cesar" + }, + { + "appid": 1283810, + "normalized_name": "solenars edge ii aurora of the seventh dawn" + }, + { + "appid": 1283820, + "normalized_name": "epic dumpster bear 2 he who bears wins" + }, + { + "appid": 1283830, + "normalized_name": "impact" + }, + { + "appid": 1283850, + "normalized_name": "marypark st." + }, + { + "appid": 1283860, + "normalized_name": "super bounce ball" + }, + { + "appid": 1283880, + "normalized_name": "pilapa boom" + }, + { + "appid": 1283890, + "normalized_name": "suspicious spaceroads" + }, + { + "appid": 1283900, + "normalized_name": "second star" + }, + { + "appid": 1283920, + "normalized_name": "advanced creator of labyrinths" + }, + { + "appid": 1283960, + "normalized_name": "东方幻灵录 ~ touhou hakanai cards" + }, + { + "appid": 1283980, + "normalized_name": "retro ride" + }, + { + "appid": 1284050, + "normalized_name": "dissection" + }, + { + "appid": 1284080, + "normalized_name": "legion gold" + }, + { + "appid": 1284090, + "normalized_name": "chariots of war" + }, + { + "appid": 1284100, + "normalized_name": "hookshotvr" + }, + { + "appid": 1284110, + "normalized_name": "amy's greenmart" + }, + { + "appid": 1284130, + "normalized_name": "sclash" + }, + { + "appid": 1284140, + "normalized_name": "dangerous plane" + }, + { + "appid": 1284150, + "normalized_name": "danger zombies" + }, + { + "appid": 1284160, + "normalized_name": "angstrom station vr" + }, + { + "appid": 1284180, + "normalized_name": "rock and girls" + }, + { + "appid": 1284190, + "normalized_name": "the planet crafter" + }, + { + "appid": 1284210, + "normalized_name": "guild wars 2" + }, + { + "appid": 1284230, + "normalized_name": "movie world" + }, + { + "appid": 1284260, + "normalized_name": "apprentice knight iona" + }, + { + "appid": 1284290, + "normalized_name": "ball of doom" + }, + { + "appid": 1284300, + "normalized_name": "king of spies" + }, + { + "appid": 1284350, + "normalized_name": "漏气宝大冒险 balloon man adventure" + }, + { + "appid": 1284360, + "normalized_name": "alien harvest leader" + }, + { + "appid": 1284380, + "normalized_name": "pipe dream" + }, + { + "appid": 1284390, + "normalized_name": "the elven educator ~another ver~" + }, + { + "appid": 1284410, + "normalized_name": "gwent the witcher card game" + }, + { + "appid": 1284430, + "normalized_name": "nazi labs" + }, + { + "appid": 1284460, + "normalized_name": "journey to the place of tomorrow" + }, + { + "appid": 1284480, + "normalized_name": "beatitas" + }, + { + "appid": 1284510, + "normalized_name": "in a search of a new home" + }, + { + "appid": 1284540, + "normalized_name": "yorna monster girl's secret" + }, + { + "appid": 1284550, + "normalized_name": "geometric feel the beats" + }, + { + "appid": 1284630, + "normalized_name": "送小鸡回家 sendchickenhome" + }, + { + "appid": 1284660, + "normalized_name": "ロストカラーズ/再装版 / lostcolors" + }, + { + "appid": 1284700, + "normalized_name": "panic timing (惊恐计时)" + }, + { + "appid": 1284730, + "normalized_name": "successor" + }, + { + "appid": 1284740, + "normalized_name": "不思議の鎮守府" + }, + { + "appid": 1284760, + "normalized_name": "hentai simulator" + }, + { + "appid": 1284790, + "normalized_name": "asura girls" + }, + { + "appid": 1284800, + "normalized_name": "my strange girlfriends" + }, + { + "appid": 1284820, + "normalized_name": "desktop kanojo" + }, + { + "appid": 1284850, + "normalized_name": "batu ta batu" + }, + { + "appid": 1284870, + "normalized_name": "ultreïa" + }, + { + "appid": 1284950, + "normalized_name": "witcheye" + }, + { + "appid": 1285000, + "normalized_name": "stayhome simulator" + }, + { + "appid": 1285010, + "normalized_name": "cyber protocol" + }, + { + "appid": 1285020, + "normalized_name": "flipon" + }, + { + "appid": 1285040, + "normalized_name": "d corp" + }, + { + "appid": 1285050, + "normalized_name": "noah's ark" + }, + { + "appid": 1285060, + "normalized_name": "winter falling battle tactics" + }, + { + "appid": 1285070, + "normalized_name": "bad run turbo" + }, + { + "appid": 1285080, + "normalized_name": "gordian rooms 1 a curious heritage" + }, + { + "appid": 1285090, + "normalized_name": "infinity" + }, + { + "appid": 1285100, + "normalized_name": "faking to dance" + }, + { + "appid": 1285130, + "normalized_name": "milk and cookies" + }, + { + "appid": 1285160, + "normalized_name": "depanneur nocturne" + }, + { + "appid": 1285180, + "normalized_name": "maneuver warfare" + }, + { + "appid": 1285190, + "normalized_name": "borderlands 4" + }, + { + "appid": 1285200, + "normalized_name": "bip" + }, + { + "appid": 1285210, + "normalized_name": "casinolife poker #1 free texas holdem 3d" + }, + { + "appid": 1285230, + "normalized_name": "racing 2d 2" + }, + { + "appid": 1285270, + "normalized_name": "farm your friends" + }, + { + "appid": 1285310, + "normalized_name": "old skool racer" + }, + { + "appid": 1285350, + "normalized_name": "easy puzzle landscape" + }, + { + "appid": 1285360, + "normalized_name": "alien hominid hd" + }, + { + "appid": 1285390, + "normalized_name": "i exist consciousness vr" + }, + { + "appid": 1285410, + "normalized_name": "world of mana" + }, + { + "appid": 1285430, + "normalized_name": "the link" + }, + { + "appid": 1285440, + "normalized_name": "hentai stories elven" + }, + { + "appid": 1285450, + "normalized_name": "生化工厂/biochemical factory" + }, + { + "appid": 1285500, + "normalized_name": "血潭江湖百里荣" + }, + { + "appid": 1285510, + "normalized_name": "a day without me" + }, + { + "appid": 1285520, + "normalized_name": "plant revenge" + }, + { + "appid": 1285530, + "normalized_name": "eagles expedition" + }, + { + "appid": 1285560, + "normalized_name": "three kingdoms story conussia" + }, + { + "appid": 1285580, + "normalized_name": "queens garden sakura season" + }, + { + "appid": 1285600, + "normalized_name": "daiichi dash" + }, + { + "appid": 1285610, + "normalized_name": "awe" + }, + { + "appid": 1285620, + "normalized_name": "alone journey" + }, + { + "appid": 1285630, + "normalized_name": "one try one kill" + }, + { + "appid": 1285660, + "normalized_name": "watch&run" + }, + { + "appid": 1285670, + "normalized_name": "post void" + }, + { + "appid": 1285690, + "normalized_name": "adrorium" + }, + { + "appid": 1285700, + "normalized_name": "mobocratic" + }, + { + "appid": 1285720, + "normalized_name": "the hauntings" + }, + { + "appid": 1285740, + "normalized_name": "the world's most impossible game" + }, + { + "appid": 1285750, + "normalized_name": "world of fundo" + }, + { + "appid": 1285820, + "normalized_name": "virus kombat" + }, + { + "appid": 1285830, + "normalized_name": "please hold me" + }, + { + "appid": 1285840, + "normalized_name": "jericho's prophecies" + }, + { + "appid": 1285860, + "normalized_name": "voxelotl garden" + }, + { + "appid": 1285870, + "normalized_name": "little bunny" + }, + { + "appid": 1285920, + "normalized_name": "vr skater" + }, + { + "appid": 1285930, + "normalized_name": "typical russian quarantine" + }, + { + "appid": 1285940, + "normalized_name": "briefcase inc." + }, + { + "appid": 1285960, + "normalized_name": "the ancient art of staying alive" + }, + { + "appid": 1285970, + "normalized_name": "dwarf slayer" + }, + { + "appid": 1286010, + "normalized_name": "godless tactics" + }, + { + "appid": 1286030, + "normalized_name": "mad bulldozer" + }, + { + "appid": 1286140, + "normalized_name": "dingletopia nation under siege (by orcs)" + }, + { + "appid": 1286150, + "normalized_name": "operation of north kingdom" + }, + { + "appid": 1286160, + "normalized_name": "mosquitoes and zombies" + }, + { + "appid": 1286170, + "normalized_name": "the broston saga" + }, + { + "appid": 1286180, + "normalized_name": "porn star island" + }, + { + "appid": 1286190, + "normalized_name": "art of the rail" + }, + { + "appid": 1286210, + "normalized_name": "the battle of angels" + }, + { + "appid": 1286220, + "normalized_name": "sea power naval combat in the missile age" + }, + { + "appid": 1286280, + "normalized_name": "pronty" + }, + { + "appid": 1286320, + "normalized_name": "exoprimal" + }, + { + "appid": 1286330, + "normalized_name": "whitelily 2:梦醒少女" + }, + { + "appid": 1286340, + "normalized_name": "daily wife" + }, + { + "appid": 1286350, + "normalized_name": "bpm bullets per minute" + }, + { + "appid": 1286360, + "normalized_name": "let's learn korean! vocabulary" + }, + { + "appid": 1286370, + "normalized_name": "project rtd random tower defense vr" + }, + { + "appid": 1286380, + "normalized_name": "best day ever" + }, + { + "appid": 1286420, + "normalized_name": "borneo a jungle nightmare" + }, + { + "appid": 1286470, + "normalized_name": "just like golf" + }, + { + "appid": 1286480, + "normalized_name": "fantasy general ii prologue" + }, + { + "appid": 1286560, + "normalized_name": "brother!!! save him! hardcore platformer" + }, + { + "appid": 1286580, + "normalized_name": "ship of fools" + }, + { + "appid": 1286600, + "normalized_name": "devilish girl" + }, + { + "appid": 1286650, + "normalized_name": "face on fire" + }, + { + "appid": 1286670, + "normalized_name": "spooky chase" + }, + { + "appid": 1286680, + "normalized_name": "tiny tina's wonderlands" + }, + { + "appid": 1286690, + "normalized_name": "jupiter moons mecha prologue🤖" + }, + { + "appid": 1286700, + "normalized_name": "sweet bumblebee days" + }, + { + "appid": 1286710, + "normalized_name": "hylics 2" + }, + { + "appid": 1286720, + "normalized_name": "war of ashird" + }, + { + "appid": 1286730, + "normalized_name": "epicinium" + }, + { + "appid": 1286770, + "normalized_name": "internet court" + }, + { + "appid": 1286810, + "normalized_name": "mission biotech" + }, + { + "appid": 1286830, + "normalized_name": "star wars the old republic" + }, + { + "appid": 1286860, + "normalized_name": "fraggin halls vr" + }, + { + "appid": 1286870, + "normalized_name": "nevertales hearthbridge cabinet collector's" + }, + { + "appid": 1286880, + "normalized_name": "ship graveyard simulator" + }, + { + "appid": 1286930, + "normalized_name": "business shark" + }, + { + "appid": 1286940, + "normalized_name": "tournament paintball vr" + }, + { + "appid": 1286950, + "normalized_name": "box voyage" + }, + { + "appid": 1286980, + "normalized_name": "string tyrant" + }, + { + "appid": 1286990, + "normalized_name": "conscript" + }, + { + "appid": 1287000, + "normalized_name": "covid the outbreak" + }, + { + "appid": 1287030, + "normalized_name": "bubble bobble 4 friends the baron's workshop" + }, + { + "appid": 1287040, + "normalized_name": "gun devil" + }, + { + "appid": 1287090, + "normalized_name": "qubo" + }, + { + "appid": 1287100, + "normalized_name": "ready? set. haiya!" + }, + { + "appid": 1287130, + "normalized_name": "island of penance" + }, + { + "appid": 1287140, + "normalized_name": "sonia and the hypnotic city" + }, + { + "appid": 1287150, + "normalized_name": "pulseball" + }, + { + "appid": 1287160, + "normalized_name": "the old forest" + }, + { + "appid": 1287170, + "normalized_name": "thief's roulette" + }, + { + "appid": 1287180, + "normalized_name": "squares" + }, + { + "appid": 1287210, + "normalized_name": "while (you) world.create()" + }, + { + "appid": 1287220, + "normalized_name": "doomsday hero" + }, + { + "appid": 1287230, + "normalized_name": "悟梦图 dreaming atlas" + }, + { + "appid": 1287250, + "normalized_name": "! wild russia !" + }, + { + "appid": 1287260, + "normalized_name": "barn finders the pilot" + }, + { + "appid": 1287280, + "normalized_name": "fly you fly" + }, + { + "appid": 1287310, + "normalized_name": "juiced!" + }, + { + "appid": 1287370, + "normalized_name": "colorful snake" + }, + { + "appid": 1287380, + "normalized_name": "party crasher simulator" + }, + { + "appid": 1287420, + "normalized_name": "pilko" + }, + { + "appid": 1287450, + "normalized_name": "chess" + }, + { + "appid": 1287500, + "normalized_name": "geisha world" + }, + { + "appid": 1287510, + "normalized_name": "wizard lady" + }, + { + "appid": 1287530, + "normalized_name": "lords and villeins" + }, + { + "appid": 1287540, + "normalized_name": "dino hazard chronos blackout" + }, + { + "appid": 1287590, + "normalized_name": "tour de france 2020" + }, + { + "appid": 1287610, + "normalized_name": "nirvana noir" + }, + { + "appid": 1287640, + "normalized_name": "cage face | case 1 the mine" + }, + { + "appid": 1287690, + "normalized_name": "astro pirates" + }, + { + "appid": 1287710, + "normalized_name": "rary" + }, + { + "appid": 1287750, + "normalized_name": "rc flight simulator 2020 vr" + }, + { + "appid": 1287790, + "normalized_name": "phaseworm" + }, + { + "appid": 1287800, + "normalized_name": "schwarzerblitz" + }, + { + "appid": 1287810, + "normalized_name": "shattered hourglass" + }, + { + "appid": 1287830, + "normalized_name": "forbidden pleasure" + }, + { + "appid": 1287840, + "normalized_name": "disciples liberation" + }, + { + "appid": 1287850, + "normalized_name": "guilded" + }, + { + "appid": 1287860, + "normalized_name": "the harrowed" + }, + { + "appid": 1287880, + "normalized_name": "in the search for revenge" + }, + { + "appid": 1287920, + "normalized_name": "brass birmingham" + }, + { + "appid": 1287930, + "normalized_name": "silent santicado" + }, + { + "appid": 1287940, + "normalized_name": "blaze" + }, + { + "appid": 1287970, + "normalized_name": "centauri dominion" + }, + { + "appid": 1288030, + "normalized_name": "boxxyquest the gathering storm" + }, + { + "appid": 1288040, + "normalized_name": "helicopter simulator 2020" + }, + { + "appid": 1288070, + "normalized_name": "lightball" + }, + { + "appid": 1288090, + "normalized_name": "wire" + }, + { + "appid": 1288110, + "normalized_name": "super ro" + }, + { + "appid": 1288130, + "normalized_name": "tp royale" + }, + { + "appid": 1288170, + "normalized_name": "red planet farming" + }, + { + "appid": 1288300, + "normalized_name": "adaptatank" + }, + { + "appid": 1288310, + "normalized_name": "firework" + }, + { + "appid": 1288320, + "normalized_name": "way of the hunter" + }, + { + "appid": 1288330, + "normalized_name": "xpcade" + }, + { + "appid": 1288370, + "normalized_name": "desert attack" + }, + { + "appid": 1288380, + "normalized_name": "two bit hero" + }, + { + "appid": 1288390, + "normalized_name": "memory lane" + }, + { + "appid": 1288400, + "normalized_name": "tale of a wolf" + }, + { + "appid": 1288410, + "normalized_name": "outshine" + }, + { + "appid": 1288420, + "normalized_name": "the secret of retropolis" + }, + { + "appid": 1288430, + "normalized_name": "tinshift" + }, + { + "appid": 1288510, + "normalized_name": "plunder pack" + }, + { + "appid": 1288540, + "normalized_name": "jupiter moons mecha🦾" + }, + { + "appid": 1288550, + "normalized_name": "extreme social distancing" + }, + { + "appid": 1288560, + "normalized_name": "my dear prince" + }, + { + "appid": 1288580, + "normalized_name": "vivid surf" + }, + { + "appid": 1288600, + "normalized_name": "twelve containers" + }, + { + "appid": 1288610, + "normalized_name": "wildcat gun machine" + }, + { + "appid": 1288640, + "normalized_name": "myth of future dimension" + }, + { + "appid": 1288650, + "normalized_name": "pon para and the unconquerable scorpion" + }, + { + "appid": 1288670, + "normalized_name": "antidote" + }, + { + "appid": 1288720, + "normalized_name": "war of velana" + }, + { + "appid": 1288760, + "normalized_name": "dude where is my beer?" + }, + { + "appid": 1288790, + "normalized_name": "beachhead" + }, + { + "appid": 1288830, + "normalized_name": "[ntrpg] wife punishment 妻子的惩罚!!~风情客栈的公交车~" + }, + { + "appid": 1288900, + "normalized_name": "title_pending" + }, + { + "appid": 1288910, + "normalized_name": "anord" + }, + { + "appid": 1288920, + "normalized_name": "element 174 part 1" + }, + { + "appid": 1288930, + "normalized_name": "hargrave" + }, + { + "appid": 1288940, + "normalized_name": "architectus" + }, + { + "appid": 1288960, + "normalized_name": "驱逐之剑(swordboy)" + }, + { + "appid": 1289010, + "normalized_name": "haypi monster 3" + }, + { + "appid": 1289060, + "normalized_name": "no one but you" + }, + { + "appid": 1289090, + "normalized_name": "memories of a spy" + }, + { + "appid": 1289100, + "normalized_name": "[ntrpg] xiu lu ji 修绿记" + }, + { + "appid": 1289120, + "normalized_name": "a.i mnemosyne 記憶女神" + }, + { + "appid": 1289170, + "normalized_name": "defenders of the west" + }, + { + "appid": 1289180, + "normalized_name": "trail of nanook" + }, + { + "appid": 1289240, + "normalized_name": "the ancient lands" + }, + { + "appid": 1289260, + "normalized_name": "就这消消乐" + }, + { + "appid": 1289280, + "normalized_name": "just a flu" + }, + { + "appid": 1289300, + "normalized_name": "bubble with djealy" + }, + { + "appid": 1289310, + "normalized_name": "helltaker" + }, + { + "appid": 1289320, + "normalized_name": "mvsm" + }, + { + "appid": 1289330, + "normalized_name": "angry bunny 3 virus" + }, + { + "appid": 1289340, + "normalized_name": "tastemaker" + }, + { + "appid": 1289380, + "normalized_name": "sheltered 2" + }, + { + "appid": 1289440, + "normalized_name": "queen's coast casino uncut" + }, + { + "appid": 1289470, + "normalized_name": "break robots vr" + }, + { + "appid": 1289480, + "normalized_name": "the hero with a thousand arms / 千手英雄" + }, + { + "appid": 1289490, + "normalized_name": "dungeon solver" + }, + { + "appid": 1289500, + "normalized_name": "battleparty" + }, + { + "appid": 1289510, + "normalized_name": "shuffled nightmares" + }, + { + "appid": 1289550, + "normalized_name": "synth war tactics" + }, + { + "appid": 1289570, + "normalized_name": "strain" + }, + { + "appid": 1289610, + "normalized_name": "traumatic syndrome investigative horror visual novel" + }, + { + "appid": 1289640, + "normalized_name": "the confession" + }, + { + "appid": 1289670, + "normalized_name": "ea play" + }, + { + "appid": 1289690, + "normalized_name": "midsummer night" + }, + { + "appid": 1289720, + "normalized_name": "neyyah" + }, + { + "appid": 1289750, + "normalized_name": "operation zeta" + }, + { + "appid": 1289770, + "normalized_name": "robot builder war" + }, + { + "appid": 1289810, + "normalized_name": "siralim" + }, + { + "appid": 1289830, + "normalized_name": "迅风的米斯特汀 windy mystletainn" + }, + { + "appid": 1289850, + "normalized_name": "astrozombies" + }, + { + "appid": 1289890, + "normalized_name": "2342342342dafad" + }, + { + "appid": 1289900, + "normalized_name": "nowaithero" + }, + { + "appid": 1289960, + "normalized_name": "core awaken ~jilelen and littlesnow~" + }, + { + "appid": 1289990, + "normalized_name": "alan's automaton workshop" + }, + { + "appid": 1290000, + "normalized_name": "powerwash simulator" + }, + { + "appid": 1290010, + "normalized_name": "spacefighter rukia" + }, + { + "appid": 1290040, + "normalized_name": "intemporel" + }, + { + "appid": 1290060, + "normalized_name": "anno rin" + }, + { + "appid": 1290070, + "normalized_name": "hot and lovely 3" + }, + { + "appid": 1290090, + "normalized_name": "the wicked days" + }, + { + "appid": 1290100, + "normalized_name": "draginsanity" + }, + { + "appid": 1290110, + "normalized_name": "ginseng hero" + }, + { + "appid": 1290160, + "normalized_name": "doudy" + }, + { + "appid": 1290170, + "normalized_name": "titan chaser" + }, + { + "appid": 1290190, + "normalized_name": "in plain sight" + }, + { + "appid": 1290200, + "normalized_name": "beautycopter" + }, + { + "appid": 1290220, + "normalized_name": "elasto mania" + }, + { + "appid": 1290230, + "normalized_name": "shoebill" + }, + { + "appid": 1290240, + "normalized_name": "apple pie bueno" + }, + { + "appid": 1290260, + "normalized_name": "dark roll free kick challenge" + }, + { + "appid": 1290270, + "normalized_name": "vampire the masquerade — night road" + }, + { + "appid": 1290330, + "normalized_name": "time wasters" + }, + { + "appid": 1290350, + "normalized_name": "vampire the masquerade — out for blood" + }, + { + "appid": 1290390, + "normalized_name": "pt+" + }, + { + "appid": 1290460, + "normalized_name": "light years apart" + }, + { + "appid": 1290480, + "normalized_name": "kavexplorer" + }, + { + "appid": 1290490, + "normalized_name": "unbeatable [white label]" + }, + { + "appid": 1290510, + "normalized_name": "your human is sick" + }, + { + "appid": 1290550, + "normalized_name": "curing covid" + }, + { + "appid": 1290620, + "normalized_name": "'member the alamo? vr" + }, + { + "appid": 1290650, + "normalized_name": "after crisis snowstorm" + }, + { + "appid": 1290670, + "normalized_name": "freedom! do or die" + }, + { + "appid": 1290680, + "normalized_name": "snowfighters" + }, + { + "appid": 1290710, + "normalized_name": "shiro" + }, + { + "appid": 1290720, + "normalized_name": "calm girls" + }, + { + "appid": 1290750, + "normalized_name": "crawl tactics" + }, + { + "appid": 1290760, + "normalized_name": "gecko gods" + }, + { + "appid": 1290770, + "normalized_name": "mushroom savior" + }, + { + "appid": 1290780, + "normalized_name": "residual" + }, + { + "appid": 1290790, + "normalized_name": "yardlings" + }, + { + "appid": 1290820, + "normalized_name": "project océara" + }, + { + "appid": 1290830, + "normalized_name": "逃出图书馆(escape from library)" + }, + { + "appid": 1290850, + "normalized_name": "kingdom of corrupts" + }, + { + "appid": 1290880, + "normalized_name": "coloring game girls" + }, + { + "appid": 1290920, + "normalized_name": "roll control" + }, + { + "appid": 1290960, + "normalized_name": "strange aeons" + }, + { + "appid": 1290980, + "normalized_name": "extra coin" + }, + { + "appid": 1291000, + "normalized_name": "payback time" + }, + { + "appid": 1291010, + "normalized_name": "warpips" + }, + { + "appid": 1291020, + "normalized_name": "replicated" + }, + { + "appid": 1291050, + "normalized_name": "pilots of darsalon" + }, + { + "appid": 1291060, + "normalized_name": "epicure" + }, + { + "appid": 1291090, + "normalized_name": "stozle solve the mystery" + }, + { + "appid": 1291100, + "normalized_name": "night spasm" + }, + { + "appid": 1291110, + "normalized_name": "poly party" + }, + { + "appid": 1291140, + "normalized_name": "重生 rebirth" + }, + { + "appid": 1291150, + "normalized_name": "taskforce the mutants of october morgane" + }, + { + "appid": 1291170, + "normalized_name": "terrordrome reign of the legends" + }, + { + "appid": 1291210, + "normalized_name": "justice.exe" + }, + { + "appid": 1291220, + "normalized_name": "crash the core" + }, + { + "appid": 1291230, + "normalized_name": "heaven vs hell" + }, + { + "appid": 1291240, + "normalized_name": "zamboni simulator 2019" + }, + { + "appid": 1291250, + "normalized_name": "故鄉戰爭 hometown war" + }, + { + "appid": 1291280, + "normalized_name": "pxl ship" + }, + { + "appid": 1291300, + "normalized_name": "ambardia" + }, + { + "appid": 1291310, + "normalized_name": "mine" + }, + { + "appid": 1291330, + "normalized_name": "wakamarina valley new zealand" + }, + { + "appid": 1291340, + "normalized_name": "townscaper" + }, + { + "appid": 1291370, + "normalized_name": "lotion samurai" + }, + { + "appid": 1291470, + "normalized_name": "robot paradise vr" + }, + { + "appid": 1291500, + "normalized_name": "kill it with fire ignition" + }, + { + "appid": 1291530, + "normalized_name": "arena" + }, + { + "appid": 1291540, + "normalized_name": "cartridge defense" + }, + { + "appid": 1291600, + "normalized_name": "mend arcade battle" + }, + { + "appid": 1291610, + "normalized_name": "space trains" + }, + { + "appid": 1291640, + "normalized_name": "stress explosion" + }, + { + "appid": 1291660, + "normalized_name": "deeply dark found footage" + }, + { + "appid": 1291670, + "normalized_name": "hentai girls 2" + }, + { + "appid": 1291680, + "normalized_name": "apocalypse 2.0" + }, + { + "appid": 1291710, + "normalized_name": "the watcher" + }, + { + "appid": 1291720, + "normalized_name": "neon beat rider" + }, + { + "appid": 1291740, + "normalized_name": "vertical runner" + }, + { + "appid": 1291790, + "normalized_name": "lakeview cabin 2" + }, + { + "appid": 1291800, + "normalized_name": "gotta date them all" + }, + { + "appid": 1291810, + "normalized_name": "deanswar game" + }, + { + "appid": 1291830, + "normalized_name": "outlaws corwin's treasure" + }, + { + "appid": 1291860, + "normalized_name": "rough justice '84" + }, + { + "appid": 1291970, + "normalized_name": "mythic dungeons" + }, + { + "appid": 1291990, + "normalized_name": "magic forms" + }, + { + "appid": 1292020, + "normalized_name": "armoured commander ii" + }, + { + "appid": 1292040, + "normalized_name": "stride" + }, + { + "appid": 1292050, + "normalized_name": "pure soul the journey of the witch emily" + }, + { + "appid": 1292060, + "normalized_name": "mall master" + }, + { + "appid": 1292070, + "normalized_name": "subdivide" + }, + { + "appid": 1292100, + "normalized_name": "traptionbakery" + }, + { + "appid": 1292120, + "normalized_name": "hunt primal reptiles" + }, + { + "appid": 1292140, + "normalized_name": "grim tales the generous gift collector's" + }, + { + "appid": 1292160, + "normalized_name": "launch break" + }, + { + "appid": 1292170, + "normalized_name": "krush kill 'n destroy xtreme" + }, + { + "appid": 1292180, + "normalized_name": "krush kill ‘n destroy 2 krossfire" + }, + { + "appid": 1292240, + "normalized_name": "the chess variants club" + }, + { + "appid": 1292250, + "normalized_name": "blackjack hands" + }, + { + "appid": 1292270, + "normalized_name": "late stage inferno" + }, + { + "appid": 1292280, + "normalized_name": "hentai beautiful girls 3" + }, + { + "appid": 1292310, + "normalized_name": "solar sails space pirates" + }, + { + "appid": 1292400, + "normalized_name": "taimumari 2" + }, + { + "appid": 1292410, + "normalized_name": "golden fall 2" + }, + { + "appid": 1292440, + "normalized_name": "night and day" + }, + { + "appid": 1292460, + "normalized_name": "tower of samsara hidden treasures" + }, + { + "appid": 1292480, + "normalized_name": "echo's esker" + }, + { + "appid": 1292490, + "normalized_name": "inside her (bedroom)" + }, + { + "appid": 1292500, + "normalized_name": "harvest island" + }, + { + "appid": 1292510, + "normalized_name": "everstorm extraction royale" + }, + { + "appid": 1292520, + "normalized_name": "crimson spires" + }, + { + "appid": 1292540, + "normalized_name": "escape the brother's saloon" + }, + { + "appid": 1292550, + "normalized_name": "lockdown" + }, + { + "appid": 1292560, + "normalized_name": "bikini alert" + }, + { + "appid": 1292610, + "normalized_name": "angle wars" + }, + { + "appid": 1292630, + "normalized_name": "3on3 freestyle rebound" + }, + { + "appid": 1292690, + "normalized_name": "corruption of champions ii" + }, + { + "appid": 1292700, + "normalized_name": "kings of streets" + }, + { + "appid": 1292710, + "normalized_name": "frame outsiders" + }, + { + "appid": 1292720, + "normalized_name": "type up" + }, + { + "appid": 1292750, + "normalized_name": "hunting moon depression & succubus" + }, + { + "appid": 1292760, + "normalized_name": "black dog bar" + }, + { + "appid": 1292770, + "normalized_name": "grisaia phantom trigger vol.7" + }, + { + "appid": 1292860, + "normalized_name": "for evelyn" + }, + { + "appid": 1292880, + "normalized_name": "hit zero chronos" + }, + { + "appid": 1292910, + "normalized_name": "accident the pilot" + }, + { + "appid": 1292920, + "normalized_name": "fatec's out school rage" + }, + { + "appid": 1292940, + "normalized_name": "cube escape collection" + }, + { + "appid": 1292950, + "normalized_name": "シルヴァリオ ラグナロク" + }, + { + "appid": 1292960, + "normalized_name": "the magic storm" + }, + { + "appid": 1292980, + "normalized_name": "professor lupo ocean" + }, + { + "appid": 1293000, + "normalized_name": "hyzer sky" + }, + { + "appid": 1293040, + "normalized_name": "风中之烛" + }, + { + "appid": 1293050, + "normalized_name": "crystal soul chambers" + }, + { + "appid": 1293110, + "normalized_name": "timeless adventure a journey to begin" + }, + { + "appid": 1293120, + "normalized_name": "silmaris dice kingdom 🎲" + }, + { + "appid": 1293130, + "normalized_name": "purry & panther lost in helsinki" + }, + { + "appid": 1293160, + "normalized_name": "the medium" + }, + { + "appid": 1293170, + "normalized_name": "bzzzt" + }, + { + "appid": 1293180, + "normalized_name": "suchart genius artist simulator" + }, + { + "appid": 1293190, + "normalized_name": "hunt planet bug" + }, + { + "appid": 1293220, + "normalized_name": "kaleidocraft" + }, + { + "appid": 1293230, + "normalized_name": "house of detention" + }, + { + "appid": 1293250, + "normalized_name": "回到2001买房子" + }, + { + "appid": 1293300, + "normalized_name": "space cats tactics" + }, + { + "appid": 1293370, + "normalized_name": "wc" + }, + { + "appid": 1293400, + "normalized_name": "software house simulator" + }, + { + "appid": 1293420, + "normalized_name": "roller drama" + }, + { + "appid": 1293430, + "normalized_name": "space junk" + }, + { + "appid": 1293440, + "normalized_name": "dark renaissance" + }, + { + "appid": 1293450, + "normalized_name": "launched!" + }, + { + "appid": 1293460, + "normalized_name": "ash of gods the way" + }, + { + "appid": 1293480, + "normalized_name": "red frontier 2" + }, + { + "appid": 1293510, + "normalized_name": "anicon animal complex rabbit's path" + }, + { + "appid": 1293520, + "normalized_name": "flatland vol.2" + }, + { + "appid": 1293530, + "normalized_name": "disc ninja" + }, + { + "appid": 1293540, + "normalized_name": "outerverse" + }, + { + "appid": 1293610, + "normalized_name": "escape planet 17" + }, + { + "appid": 1293650, + "normalized_name": "b 2" + }, + { + "appid": 1293660, + "normalized_name": "gemini binary conflict" + }, + { + "appid": 1293670, + "normalized_name": "oik 3d" + }, + { + "appid": 1293700, + "normalized_name": "r.e.e.l." + }, + { + "appid": 1293730, + "normalized_name": "broken pieces" + }, + { + "appid": 1293740, + "normalized_name": "ufo stalker" + }, + { + "appid": 1293780, + "normalized_name": "fear the dark unknown chloe" + }, + { + "appid": 1293820, + "normalized_name": "you and me and her a love story" + }, + { + "appid": 1293850, + "normalized_name": "the magic elevator" + }, + { + "appid": 1293860, + "normalized_name": "the riftbreaker prologue" + }, + { + "appid": 1293880, + "normalized_name": "boo's balloons" + }, + { + "appid": 1293900, + "normalized_name": "nomad" + }, + { + "appid": 1293910, + "normalized_name": "read only memories neurodiver" + }, + { + "appid": 1293920, + "normalized_name": "3d hentai checkers" + }, + { + "appid": 1293930, + "normalized_name": "jetpack vacation" + }, + { + "appid": 1293940, + "normalized_name": "m.u.s.t. repeat" + }, + { + "appid": 1293950, + "normalized_name": "masquerade of miasma" + }, + { + "appid": 1293980, + "normalized_name": "rozalin and the palace of flowers" + }, + { + "appid": 1293990, + "normalized_name": "nullum" + }, + { + "appid": 1294000, + "normalized_name": "krim the war in the crimea 1941 42" + }, + { + "appid": 1294020, + "normalized_name": "space mercenary shooter episode 2" + }, + { + "appid": 1294040, + "normalized_name": "best friend" + }, + { + "appid": 1294060, + "normalized_name": "铁道少女 梦想轨迹 2.0 railway to dream" + }, + { + "appid": 1294110, + "normalized_name": "deep in the woods" + }, + { + "appid": 1294120, + "normalized_name": "bragger's run" + }, + { + "appid": 1294150, + "normalized_name": "draw from earth" + }, + { + "appid": 1294160, + "normalized_name": "djiguli" + }, + { + "appid": 1294170, + "normalized_name": "tcstrikers3" + }, + { + "appid": 1294220, + "normalized_name": "learn game development unity code monkey" + }, + { + "appid": 1294230, + "normalized_name": "interrogation files port landsend" + }, + { + "appid": 1294260, + "normalized_name": "final frame" + }, + { + "appid": 1294280, + "normalized_name": "game of puzzles dinosaurs" + }, + { + "appid": 1294310, + "normalized_name": "unforgotten" + }, + { + "appid": 1294320, + "normalized_name": "syystem the phantom train" + }, + { + "appid": 1294340, + "normalized_name": "wonhon a vengeful spirit" + }, + { + "appid": 1294350, + "normalized_name": "imc" + }, + { + "appid": 1294360, + "normalized_name": "undead run" + }, + { + "appid": 1294380, + "normalized_name": "dark lord peacemaker" + }, + { + "appid": 1294450, + "normalized_name": "little witch academia vr broom racing" + }, + { + "appid": 1294480, + "normalized_name": "deranged park rangers" + }, + { + "appid": 1294500, + "normalized_name": "undead can dance" + }, + { + "appid": 1294590, + "normalized_name": "洛秋 fall autumn" + }, + { + "appid": 1294620, + "normalized_name": "crocapoca!! crocodile maiden at the end of the world" + }, + { + "appid": 1294630, + "normalized_name": "shape storm" + }, + { + "appid": 1294650, + "normalized_name": "the mansion" + }, + { + "appid": 1294720, + "normalized_name": "balloon blast" + }, + { + "appid": 1294740, + "normalized_name": "heliconian starship crew control" + }, + { + "appid": 1294750, + "normalized_name": "dr. atominus" + }, + { + "appid": 1294760, + "normalized_name": "hard bullet" + }, + { + "appid": 1294780, + "normalized_name": "pathfinders memories" + }, + { + "appid": 1294810, + "normalized_name": "redfall" + }, + { + "appid": 1294880, + "normalized_name": "blind fate edo no yami" + }, + { + "appid": 1294910, + "normalized_name": "under construction summer city" + }, + { + "appid": 1294920, + "normalized_name": "another fps game" + }, + { + "appid": 1294940, + "normalized_name": "resistance" + }, + { + "appid": 1294970, + "normalized_name": "undead darlings ~no cure for love~" + }, + { + "appid": 1295000, + "normalized_name": "the last shot" + }, + { + "appid": 1295030, + "normalized_name": "zagan must be rescued" + }, + { + "appid": 1295070, + "normalized_name": "minions of elden" + }, + { + "appid": 1295140, + "normalized_name": "battle for seattle" + }, + { + "appid": 1295210, + "normalized_name": "snack clearing" + }, + { + "appid": 1295220, + "normalized_name": "super buff hd" + }, + { + "appid": 1295230, + "normalized_name": "三国志猛将传" + }, + { + "appid": 1295250, + "normalized_name": "future fragments command z" + }, + { + "appid": 1295260, + "normalized_name": "clockwork calamity in mushroom world what would you do if the time stopped ticking?" + }, + { + "appid": 1295270, + "normalized_name": "saga frontier" + }, + { + "appid": 1295280, + "normalized_name": "wizdom" + }, + { + "appid": 1295290, + "normalized_name": "pulsar crash" + }, + { + "appid": 1295320, + "normalized_name": "can of wormholes" + }, + { + "appid": 1295390, + "normalized_name": "adverse" + }, + { + "appid": 1295420, + "normalized_name": "chaos party" + }, + { + "appid": 1295440, + "normalized_name": "boom slayer" + }, + { + "appid": 1295480, + "normalized_name": "ash of gods arena" + }, + { + "appid": 1295490, + "normalized_name": "beyond dawn" + }, + { + "appid": 1295500, + "normalized_name": "warhammer 40 000 battlesector" + }, + { + "appid": 1295510, + "normalized_name": "dragon quest xi s echoes of an elusive age" + }, + { + "appid": 1295560, + "normalized_name": "revolution path of a weaponsmith" + }, + { + "appid": 1295570, + "normalized_name": "amends vr" + }, + { + "appid": 1295630, + "normalized_name": "helskate" + }, + { + "appid": 1295660, + "normalized_name": "sid meier's civilization vii" + }, + { + "appid": 1295670, + "normalized_name": "my strong horse" + }, + { + "appid": 1295680, + "normalized_name": "north town" + }, + { + "appid": 1295700, + "normalized_name": "nitroverse" + }, + { + "appid": 1295730, + "normalized_name": "leveling up girls in another world" + }, + { + "appid": 1295740, + "normalized_name": "mine dungeon2 ~rurumu's trip~" + }, + { + "appid": 1295750, + "normalized_name": "jack hayes the lazarus sign" + }, + { + "appid": 1295760, + "normalized_name": "moonfall" + }, + { + "appid": 1295790, + "normalized_name": "the longest road on earth" + }, + { + "appid": 1295810, + "normalized_name": "a little shop in squirrel town" + }, + { + "appid": 1295860, + "normalized_name": "rip them off" + }, + { + "appid": 1295900, + "normalized_name": "draconia" + }, + { + "appid": 1295910, + "normalized_name": "the ninth way" + }, + { + "appid": 1295920, + "normalized_name": "the mortuary assistant" + }, + { + "appid": 1295990, + "normalized_name": "adriatic pizza" + }, + { + "appid": 1296010, + "normalized_name": "stay in the light" + }, + { + "appid": 1296180, + "normalized_name": "risky floors" + }, + { + "appid": 1296190, + "normalized_name": "what a cluster fight" + }, + { + "appid": 1296200, + "normalized_name": "astonishing baseball manager 20" + }, + { + "appid": 1296250, + "normalized_name": "the tau experiment" + }, + { + "appid": 1296260, + "normalized_name": "sakura knight 2" + }, + { + "appid": 1296280, + "normalized_name": "car trader simulator welcome to the business" + }, + { + "appid": 1296290, + "normalized_name": "what happened" + }, + { + "appid": 1296300, + "normalized_name": "queer quest all in a gay's work" + }, + { + "appid": 1296340, + "normalized_name": "undercat" + }, + { + "appid": 1296360, + "normalized_name": "archvale" + }, + { + "appid": 1296370, + "normalized_name": "thinkfast" + }, + { + "appid": 1296400, + "normalized_name": "architect life a house design simulator" + }, + { + "appid": 1296410, + "normalized_name": "underdog arena" + }, + { + "appid": 1296450, + "normalized_name": "dust & neon" + }, + { + "appid": 1296470, + "normalized_name": "1 screen platformer 2" + }, + { + "appid": 1296480, + "normalized_name": "surviving isolation" + }, + { + "appid": 1296490, + "normalized_name": "don't take it personally i just don't like you" + }, + { + "appid": 1296500, + "normalized_name": "super space galaxy" + }, + { + "appid": 1296510, + "normalized_name": "dread x collection" + }, + { + "appid": 1296530, + "normalized_name": "candy kombat" + }, + { + "appid": 1296540, + "normalized_name": "flatworld" + }, + { + "appid": 1296550, + "normalized_name": "altidudes" + }, + { + "appid": 1296560, + "normalized_name": "vectromirror 0" + }, + { + "appid": 1296580, + "normalized_name": "finger guessing king" + }, + { + "appid": 1296610, + "normalized_name": "peglin" + }, + { + "appid": 1296650, + "normalized_name": "the chronicles of confucius's journey" + }, + { + "appid": 1296660, + "normalized_name": "wartorn" + }, + { + "appid": 1296680, + "normalized_name": "cute triplets" + }, + { + "appid": 1296700, + "normalized_name": "headbangers in holiday hell" + }, + { + "appid": 1296720, + "normalized_name": "欢乐消消乐" + }, + { + "appid": 1296770, + "normalized_name": "her new memory hentai simulator" + }, + { + "appid": 1296810, + "normalized_name": "naturalealia forest determination" + }, + { + "appid": 1296830, + "normalized_name": "暖雪 warm snow" + }, + { + "appid": 1296860, + "normalized_name": "enter digiton" + }, + { + "appid": 1296880, + "normalized_name": "sausage hunter" + }, + { + "appid": 1296940, + "normalized_name": "sunblade" + }, + { + "appid": 1296970, + "normalized_name": "zombieland vr headshot fever" + }, + { + "appid": 1296980, + "normalized_name": "forgotten fields" + }, + { + "appid": 1297000, + "normalized_name": "coronator" + }, + { + "appid": 1297010, + "normalized_name": "rinlo" + }, + { + "appid": 1297030, + "normalized_name": "sycamore" + }, + { + "appid": 1297090, + "normalized_name": "stack up! (or dive trying)" + }, + { + "appid": 1297160, + "normalized_name": "a new life." + }, + { + "appid": 1297180, + "normalized_name": "plato shoot 柏拉图激射" + }, + { + "appid": 1297190, + "normalized_name": "one hundred courage" + }, + { + "appid": 1297200, + "normalized_name": "fantasy lands" + }, + { + "appid": 1297210, + "normalized_name": "tandis" + }, + { + "appid": 1297230, + "normalized_name": "my jigsaw adventures a lost story" + }, + { + "appid": 1297240, + "normalized_name": "now it's my turn" + }, + { + "appid": 1297250, + "normalized_name": "fluid vr" + }, + { + "appid": 1297270, + "normalized_name": "programmer dungeon knightress" + }, + { + "appid": 1297300, + "normalized_name": "the shore" + }, + { + "appid": 1297320, + "normalized_name": "act" + }, + { + "appid": 1297330, + "normalized_name": "olija" + }, + { + "appid": 1297340, + "normalized_name": "ryclaw hope" + }, + { + "appid": 1297390, + "normalized_name": "inexistence rebirth" + }, + { + "appid": 1297430, + "normalized_name": "deadly dozen reloaded" + }, + { + "appid": 1297440, + "normalized_name": "heroes must diee" + }, + { + "appid": 1297470, + "normalized_name": "inconsistencies" + }, + { + "appid": 1297480, + "normalized_name": "isorropia" + }, + { + "appid": 1297490, + "normalized_name": "superior vengeance" + }, + { + "appid": 1297530, + "normalized_name": "liar trick psychological crime mystery" + }, + { + "appid": 1297540, + "normalized_name": "blobkin blaster" + }, + { + "appid": 1297550, + "normalized_name": "tko" + }, + { + "appid": 1297560, + "normalized_name": "timequest" + }, + { + "appid": 1297640, + "normalized_name": "blackhill" + }, + { + "appid": 1297650, + "normalized_name": "about gretel" + }, + { + "appid": 1297660, + "normalized_name": "fragment's moonrise" + }, + { + "appid": 1297680, + "normalized_name": "hex gambit respawned" + }, + { + "appid": 1297710, + "normalized_name": "ultraball" + }, + { + "appid": 1297790, + "normalized_name": "sunday rivals" + }, + { + "appid": 1297800, + "normalized_name": "chronobreach ultra" + }, + { + "appid": 1297810, + "normalized_name": "kara legends" + }, + { + "appid": 1297820, + "normalized_name": "treasure hunter" + }, + { + "appid": 1297890, + "normalized_name": "rocky ride" + }, + { + "appid": 1297900, + "normalized_name": "gothic 1 remake" + }, + { + "appid": 1297950, + "normalized_name": "space farmers 2" + }, + { + "appid": 1298000, + "normalized_name": "hidden" + }, + { + "appid": 1298010, + "normalized_name": "tactical combat department" + }, + { + "appid": 1298020, + "normalized_name": "syzygy" + }, + { + "appid": 1298050, + "normalized_name": "boinihi the ki codex" + }, + { + "appid": 1298080, + "normalized_name": "almost my floor" + }, + { + "appid": 1298100, + "normalized_name": "the old west savior" + }, + { + "appid": 1298130, + "normalized_name": "mark one" + }, + { + "appid": 1298140, + "normalized_name": "fobia st. dinfna hotel" + }, + { + "appid": 1298170, + "normalized_name": "lux intacta" + }, + { + "appid": 1298180, + "normalized_name": "pair matching puzzle connect" + }, + { + "appid": 1298200, + "normalized_name": "crazy lemmings" + }, + { + "appid": 1298220, + "normalized_name": "hoop gawds" + }, + { + "appid": 1298260, + "normalized_name": "stay home and play with waifu!" + }, + { + "appid": 1298270, + "normalized_name": "四魂 x shikon x astro defense fortress" + }, + { + "appid": 1298280, + "normalized_name": "captain disaster in death has a million stomping boots" + }, + { + "appid": 1298310, + "normalized_name": "rhythm race" + }, + { + "appid": 1298320, + "normalized_name": "galaxy cat" + }, + { + "appid": 1298340, + "normalized_name": "bad meme" + }, + { + "appid": 1298360, + "normalized_name": "mibt" + }, + { + "appid": 1298380, + "normalized_name": "宇宙探索" + }, + { + "appid": 1298390, + "normalized_name": "rubble bubble" + }, + { + "appid": 1298410, + "normalized_name": "zodiac hellish memory" + }, + { + "appid": 1298420, + "normalized_name": "paris in 2000 years" + }, + { + "appid": 1298470, + "normalized_name": "project_escape" + }, + { + "appid": 1298480, + "normalized_name": "kardboard kings card shop simulator" + }, + { + "appid": 1298500, + "normalized_name": "fantasy mosaics 33 inventor's workshop" + }, + { + "appid": 1298510, + "normalized_name": "geologic" + }, + { + "appid": 1298520, + "normalized_name": "zac zac adventure" + }, + { + "appid": 1298530, + "normalized_name": "self isolation" + }, + { + "appid": 1298540, + "normalized_name": "candy reclaim" + }, + { + "appid": 1298550, + "normalized_name": "hell corp" + }, + { + "appid": 1298600, + "normalized_name": "dam busters" + }, + { + "appid": 1298620, + "normalized_name": "gamecine vr" + }, + { + "appid": 1298640, + "normalized_name": "buck bradley comic adventure 2" + }, + { + "appid": 1298670, + "normalized_name": "i ai" + }, + { + "appid": 1298680, + "normalized_name": "bang for your truck" + }, + { + "appid": 1298700, + "normalized_name": "patter warrior" + }, + { + "appid": 1298740, + "normalized_name": "hopebringers" + }, + { + "appid": 1298750, + "normalized_name": "lost knight" + }, + { + "appid": 1298770, + "normalized_name": "smugglers of cygnus alpha system" + }, + { + "appid": 1298820, + "normalized_name": "ad agency tycoon" + }, + { + "appid": 1298830, + "normalized_name": "don't fall" + }, + { + "appid": 1298850, + "normalized_name": "lihue" + }, + { + "appid": 1298880, + "normalized_name": "barrel blast" + }, + { + "appid": 1298890, + "normalized_name": "whispers from within moving on" + }, + { + "appid": 1298950, + "normalized_name": "the frog prince" + }, + { + "appid": 1298960, + "normalized_name": "peril" + }, + { + "appid": 1299000, + "normalized_name": "toasted!" + }, + { + "appid": 1299010, + "normalized_name": "overseer" + }, + { + "appid": 1299030, + "normalized_name": "hainya world" + }, + { + "appid": 1299040, + "normalized_name": "holy potatoes! i'm a hero?!" + }, + { + "appid": 1299060, + "normalized_name": "noroi kago the grudged domain" + }, + { + "appid": 1299070, + "normalized_name": "blacksmith bay" + }, + { + "appid": 1299120, + "normalized_name": "mosaique neko waifus 2" + }, + { + "appid": 1299150, + "normalized_name": "software engineering course / informatyka zrozum i zaprogramuj komputer" + }, + { + "appid": 1299170, + "normalized_name": "ova magica" + }, + { + "appid": 1299220, + "normalized_name": "rockytown" + }, + { + "appid": 1299230, + "normalized_name": "project thebe" + }, + { + "appid": 1299250, + "normalized_name": "o.r.b. offensive rolling bot" + }, + { + "appid": 1299260, + "normalized_name": "isolation story" + }, + { + "appid": 1299290, + "normalized_name": "somber echoes" + }, + { + "appid": 1299320, + "normalized_name": "midnight castle succubus dx" + }, + { + "appid": 1299330, + "normalized_name": "victory at sea ironclad" + }, + { + "appid": 1299340, + "normalized_name": "sausage dog tends to infinity" + }, + { + "appid": 1299360, + "normalized_name": "mighty goose" + }, + { + "appid": 1299370, + "normalized_name": "friendship with benefits" + }, + { + "appid": 1299400, + "normalized_name": "understand" + }, + { + "appid": 1299410, + "normalized_name": "my countless worlds ~enchanted cape~" + }, + { + "appid": 1299420, + "normalized_name": "touhou shooting star | 東方流星譚" + }, + { + "appid": 1299430, + "normalized_name": "extortion" + }, + { + "appid": 1299460, + "normalized_name": "wanderstop" + }, + { + "appid": 1299480, + "normalized_name": "the fabled woods" + }, + { + "appid": 1299510, + "normalized_name": "vampire the masquerade – swansong" + }, + { + "appid": 1299520, + "normalized_name": "the fallen" + }, + { + "appid": 1299540, + "normalized_name": "the zone stalker stories" + }, + { + "appid": 1299580, + "normalized_name": "agent 00" + }, + { + "appid": 1299600, + "normalized_name": "tinseltown tycoon" + }, + { + "appid": 1299620, + "normalized_name": "fabled lands" + }, + { + "appid": 1299650, + "normalized_name": "chemistry my love" + }, + { + "appid": 1299660, + "normalized_name": "wip" + }, + { + "appid": 1299680, + "normalized_name": "niconotes the whoo!" + }, + { + "appid": 1299690, + "normalized_name": "gori cuddly carnage" + }, + { + "appid": 1299710, + "normalized_name": "return of the phantom" + }, + { + "appid": 1299720, + "normalized_name": "les manley in search for the king" + }, + { + "appid": 1299730, + "normalized_name": "les manley in lost in l.a." + }, + { + "appid": 1299750, + "normalized_name": "wizodd" + }, + { + "appid": 1299760, + "normalized_name": "velvetist the city of machine guns" + }, + { + "appid": 1299790, + "normalized_name": "be hero" + }, + { + "appid": 1299800, + "normalized_name": "roses of love" + }, + { + "appid": 1299810, + "normalized_name": "kovox pitch" + }, + { + "appid": 1299820, + "normalized_name": "not their will" + }, + { + "appid": 1299840, + "normalized_name": "the legend of zuri" + }, + { + "appid": 1299860, + "normalized_name": "endlight" + }, + { + "appid": 1299880, + "normalized_name": "deep abyss" + }, + { + "appid": 1299890, + "normalized_name": "zombie slayer" + }, + { + "appid": 1299930, + "normalized_name": "vilset" + }, + { + "appid": 1299950, + "normalized_name": "unwalkable" + }, + { + "appid": 1299960, + "normalized_name": "ricochet bounce" + }, + { + "appid": 1299990, + "normalized_name": "whateverland prologue" + }, + { + "appid": 1300000, + "normalized_name": "mystery tales til death collector's" + }, + { + "appid": 1300010, + "normalized_name": "spectrum vr" + }, + { + "appid": 1300050, + "normalized_name": "a story in space" + }, + { + "appid": 1300060, + "normalized_name": "smib mission cure" + }, + { + "appid": 1300100, + "normalized_name": "spectacular sparky" + }, + { + "appid": 1300110, + "normalized_name": "the z land fps survival" + }, + { + "appid": 1300140, + "normalized_name": "异数os mr lab" + }, + { + "appid": 1300180, + "normalized_name": "the cubedex of brass and wood" + }, + { + "appid": 1300190, + "normalized_name": "crystal story the hero and the evil witch" + }, + { + "appid": 1300200, + "normalized_name": "express thru" + }, + { + "appid": 1300260, + "normalized_name": "mouse dream" + }, + { + "appid": 1300270, + "normalized_name": "blood price" + }, + { + "appid": 1300310, + "normalized_name": "move code lines" + }, + { + "appid": 1300330, + "normalized_name": "farmageddon a cattle royale" + }, + { + "appid": 1300350, + "normalized_name": "mike & tyler" + }, + { + "appid": 1300360, + "normalized_name": "neglected" + }, + { + "appid": 1300370, + "normalized_name": "kaboom 1 vs 1" + }, + { + "appid": 1300390, + "normalized_name": "sunset shapes" + }, + { + "appid": 1300430, + "normalized_name": "whiskey.mafia. leo's family" + }, + { + "appid": 1300490, + "normalized_name": "shooty skies overdrive" + }, + { + "appid": 1300550, + "normalized_name": "song of sheep gathering in philia" + }, + { + "appid": 1300560, + "normalized_name": "mars power industries first job" + }, + { + "appid": 1300570, + "normalized_name": "apollo lunar mission" + }, + { + "appid": 1300580, + "normalized_name": "battle baseball" + }, + { + "appid": 1300590, + "normalized_name": "delivery" + }, + { + "appid": 1300600, + "normalized_name": "blind drive" + }, + { + "appid": 1300610, + "normalized_name": "taxer inc" + }, + { + "appid": 1300620, + "normalized_name": "解药公司 救世行动" + }, + { + "appid": 1300650, + "normalized_name": "rodent and plank secret origin" + }, + { + "appid": 1300670, + "normalized_name": "ヤドカリサバイブ" + }, + { + "appid": 1300700, + "normalized_name": "kingdom wars 4" + }, + { + "appid": 1300720, + "normalized_name": "black noir" + }, + { + "appid": 1300760, + "normalized_name": "fluvstruck" + }, + { + "appid": 1300790, + "normalized_name": "dayscream" + }, + { + "appid": 1300840, + "normalized_name": "spacecrooks the end of time" + }, + { + "appid": 1300860, + "normalized_name": "strawberry chocolate miner 8ad 4ss" + }, + { + "appid": 1300880, + "normalized_name": "glitchphobia" + }, + { + "appid": 1300890, + "normalized_name": "tap a zombie" + }, + { + "appid": 1300900, + "normalized_name": "fourzy" + }, + { + "appid": 1300910, + "normalized_name": "you must mop" + }, + { + "appid": 1300920, + "normalized_name": "ghost of dragon" + }, + { + "appid": 1300940, + "normalized_name": "coronawhomp!" + }, + { + "appid": 1300950, + "normalized_name": "tiki tiki the tropical memory game" + }, + { + "appid": 1300960, + "normalized_name": "astrovity" + }, + { + "appid": 1301000, + "normalized_name": "mystery of the missing brigantine" + }, + { + "appid": 1301010, + "normalized_name": "world racing 2 champion" + }, + { + "appid": 1301060, + "normalized_name": "ereadrone fpv drone simulator" + }, + { + "appid": 1301100, + "normalized_name": "forking hell" + }, + { + "appid": 1301220, + "normalized_name": "dear devere" + }, + { + "appid": 1301230, + "normalized_name": "astrodogs" + }, + { + "appid": 1301250, + "normalized_name": "biscuitts" + }, + { + "appid": 1301260, + "normalized_name": "my personal world" + }, + { + "appid": 1301290, + "normalized_name": "granny kick neighbor" + }, + { + "appid": 1301310, + "normalized_name": "gems of fate the charmed king" + }, + { + "appid": 1301340, + "normalized_name": "super blood warriors" + }, + { + "appid": 1301370, + "normalized_name": "pyro fighters" + }, + { + "appid": 1301380, + "normalized_name": "rogue planet" + }, + { + "appid": 1301390, + "normalized_name": "no umbrellas allowed" + }, + { + "appid": 1301410, + "normalized_name": "solar rogue" + }, + { + "appid": 1301430, + "normalized_name": "dragon extinction vr" + }, + { + "appid": 1301470, + "normalized_name": "bishoujo battle hanafuda koi koi" + }, + { + "appid": 1301480, + "normalized_name": "bishoujo battle mahjong solitaire" + }, + { + "appid": 1301500, + "normalized_name": "quarry simulator 2021" + }, + { + "appid": 1301520, + "normalized_name": "wrestledunk sports" + }, + { + "appid": 1301560, + "normalized_name": "space roaming" + }, + { + "appid": 1301580, + "normalized_name": "qube qross" + }, + { + "appid": 1301590, + "normalized_name": "beyond mankind the awakening" + }, + { + "appid": 1301620, + "normalized_name": "cross princess" + }, + { + "appid": 1301650, + "normalized_name": "knight's destiny" + }, + { + "appid": 1301700, + "normalized_name": "羊教授:归来" + }, + { + "appid": 1301710, + "normalized_name": "decks & dungeons" + }, + { + "appid": 1301720, + "normalized_name": "escape room der kranke kollege" + }, + { + "appid": 1301730, + "normalized_name": "raid on the zone" + }, + { + "appid": 1301770, + "normalized_name": "machizzle" + }, + { + "appid": 1301820, + "normalized_name": "anomaly hunter" + }, + { + "appid": 1301830, + "normalized_name": "shatris infinite puzzles" + }, + { + "appid": 1301840, + "normalized_name": "maggie the magnet" + }, + { + "appid": 1301850, + "normalized_name": "meditation vr" + }, + { + "appid": 1301860, + "normalized_name": "farlight commanders" + }, + { + "appid": 1301880, + "normalized_name": "messticulous" + }, + { + "appid": 1301910, + "normalized_name": "winner's break" + }, + { + "appid": 1301930, + "normalized_name": "traffic jams" + }, + { + "appid": 1301950, + "normalized_name": "time loader" + }, + { + "appid": 1301970, + "normalized_name": "hentai collection memory" + }, + { + "appid": 1301980, + "normalized_name": "iteration factor" + }, + { + "appid": 1301990, + "normalized_name": "electro ride prologue" + }, + { + "appid": 1302000, + "normalized_name": "infectious" + }, + { + "appid": 1302030, + "normalized_name": "dig fest" + }, + { + "appid": 1302050, + "normalized_name": "milky way prince – the vampire star" + }, + { + "appid": 1302090, + "normalized_name": "the zone" + }, + { + "appid": 1302110, + "normalized_name": "inertial drift sunset prologue" + }, + { + "appid": 1302150, + "normalized_name": "magicademia" + }, + { + "appid": 1302160, + "normalized_name": "wall defense force" + }, + { + "appid": 1302180, + "normalized_name": "racing juke" + }, + { + "appid": 1302190, + "normalized_name": "pirates mystery of skeleton island" + }, + { + "appid": 1302200, + "normalized_name": "end of panduora" + }, + { + "appid": 1302220, + "normalized_name": "the prisoner of the night" + }, + { + "appid": 1302230, + "normalized_name": "dead containment" + }, + { + "appid": 1302240, + "normalized_name": "labyrinthine" + }, + { + "appid": 1302270, + "normalized_name": "f29 retaliator" + }, + { + "appid": 1302290, + "normalized_name": "elkabo selina's dark spirit" + }, + { + "appid": 1302300, + "normalized_name": "my very own lair" + }, + { + "appid": 1302310, + "normalized_name": "pursuit of the bookkeeper" + }, + { + "appid": 1302400, + "normalized_name": "breakout planet" + }, + { + "appid": 1302420, + "normalized_name": "the director's cut" + }, + { + "appid": 1302430, + "normalized_name": "close encounter vr" + }, + { + "appid": 1302440, + "normalized_name": "roguejack roguelike blackjack" + }, + { + "appid": 1302460, + "normalized_name": "turbo shot" + }, + { + "appid": 1302470, + "normalized_name": "saiku's endless labyrinth" + }, + { + "appid": 1302480, + "normalized_name": "slurkum" + }, + { + "appid": 1302490, + "normalized_name": "fractured atmosphere" + }, + { + "appid": 1302510, + "normalized_name": "vaporwave road vr" + }, + { + "appid": 1302530, + "normalized_name": "cairn mathair's curse" + }, + { + "appid": 1302540, + "normalized_name": "diamond giza" + }, + { + "appid": 1302550, + "normalized_name": "tanklike" + }, + { + "appid": 1302570, + "normalized_name": "vampirem" + }, + { + "appid": 1302590, + "normalized_name": "swords and sandals crusader redux" + }, + { + "appid": 1302600, + "normalized_name": "show for lovers" + }, + { + "appid": 1302610, + "normalized_name": "pictura" + }, + { + "appid": 1302620, + "normalized_name": "city of ragdolls" + }, + { + "appid": 1302700, + "normalized_name": "realm of the hero" + }, + { + "appid": 1302720, + "normalized_name": "diving city" + }, + { + "appid": 1302730, + "normalized_name": "nebula within" + }, + { + "appid": 1302750, + "normalized_name": "大明王朝1789 | ming dynasty 1789" + }, + { + "appid": 1302760, + "normalized_name": "tormans" + }, + { + "appid": 1302770, + "normalized_name": "hero.exe" + }, + { + "appid": 1302780, + "normalized_name": "zombo buster advance" + }, + { + "appid": 1302800, + "normalized_name": "chair f*cking simulator" + }, + { + "appid": 1302820, + "normalized_name": "telomere" + }, + { + "appid": 1302840, + "normalized_name": "kooring vr coding adventure" + }, + { + "appid": 1302850, + "normalized_name": "tails of trainspot" + }, + { + "appid": 1302860, + "normalized_name": "assembly planter" + }, + { + "appid": 1302910, + "normalized_name": "strike zero" + }, + { + "appid": 1302920, + "normalized_name": "yuldigard's fate" + }, + { + "appid": 1302930, + "normalized_name": "cricket captain 2020" + }, + { + "appid": 1302970, + "normalized_name": "tanky panky" + }, + { + "appid": 1302990, + "normalized_name": "mardek" + }, + { + "appid": 1303000, + "normalized_name": "proxy air force" + }, + { + "appid": 1303010, + "normalized_name": "vincemus air combat" + }, + { + "appid": 1303050, + "normalized_name": "ruggnar" + }, + { + "appid": 1303090, + "normalized_name": "doctor simulator" + }, + { + "appid": 1303130, + "normalized_name": "windfallers" + }, + { + "appid": 1303140, + "normalized_name": "escape game fort boyard" + }, + { + "appid": 1303160, + "normalized_name": "dig bombers" + }, + { + "appid": 1303170, + "normalized_name": "meldev power boat racing" + }, + { + "appid": 1303210, + "normalized_name": "small ball" + }, + { + "appid": 1303260, + "normalized_name": "drift racing rally" + }, + { + "appid": 1303270, + "normalized_name": "ungeon" + }, + { + "appid": 1303280, + "normalized_name": "dirt bike motocross stunts" + }, + { + "appid": 1303350, + "normalized_name": "rocky mayhem" + }, + { + "appid": 1303370, + "normalized_name": "a lot of universes" + }, + { + "appid": 1303390, + "normalized_name": "screamdown" + }, + { + "appid": 1303400, + "normalized_name": "whisker squadron untitled space game" + }, + { + "appid": 1303420, + "normalized_name": "cameo cctv detective" + }, + { + "appid": 1303440, + "normalized_name": "noise hunters" + }, + { + "appid": 1303460, + "normalized_name": "leftway 2" + }, + { + "appid": 1303470, + "normalized_name": "pandemia" + }, + { + "appid": 1303480, + "normalized_name": "radio viscera" + }, + { + "appid": 1303550, + "normalized_name": "runflexio" + }, + { + "appid": 1303590, + "normalized_name": "dura vita online" + }, + { + "appid": 1303620, + "normalized_name": "creep" + }, + { + "appid": 1303630, + "normalized_name": "rachael savage" + }, + { + "appid": 1303640, + "normalized_name": "parabolus two" + }, + { + "appid": 1303660, + "normalized_name": "geometric sniper" + }, + { + "appid": 1303670, + "normalized_name": "world of art jigsaw puzzles" + }, + { + "appid": 1303680, + "normalized_name": "alien egg ascent" + }, + { + "appid": 1303720, + "normalized_name": "charge blade hero" + }, + { + "appid": 1303740, + "normalized_name": "love n dream" + }, + { + "appid": 1303760, + "normalized_name": "knife quest" + }, + { + "appid": 1303790, + "normalized_name": "beware of the blob" + }, + { + "appid": 1303820, + "normalized_name": "aim master h" + }, + { + "appid": 1303850, + "normalized_name": "alchemic beasts" + }, + { + "appid": 1303860, + "normalized_name": "polter pals" + }, + { + "appid": 1303870, + "normalized_name": "mischance" + }, + { + "appid": 1303930, + "normalized_name": "skunkhunter 101" + }, + { + "appid": 1303940, + "normalized_name": "faraway lands rise of yokai" + }, + { + "appid": 1303950, + "normalized_name": "toodee and topdee" + }, + { + "appid": 1303990, + "normalized_name": "mini motor racing x" + }, + { + "appid": 1304050, + "normalized_name": "training lab" + }, + { + "appid": 1304070, + "normalized_name": "extra terrestrial nation" + }, + { + "appid": 1304090, + "normalized_name": "cannibal crossing" + }, + { + "appid": 1304100, + "normalized_name": "the adventures of fatman intergalactic indigestion" + }, + { + "appid": 1304120, + "normalized_name": "color game" + }, + { + "appid": 1304130, + "normalized_name": "reroad" + }, + { + "appid": 1304160, + "normalized_name": "spellbearers" + }, + { + "appid": 1304170, + "normalized_name": "drifter king online" + }, + { + "appid": 1304220, + "normalized_name": "the end of labyronia nerubis" + }, + { + "appid": 1304280, + "normalized_name": "elementallis" + }, + { + "appid": 1304290, + "normalized_name": "call of corona micro warfare" + }, + { + "appid": 1304300, + "normalized_name": "fantasy mosaics 34 zen garden" + }, + { + "appid": 1304310, + "normalized_name": "ace of space" + }, + { + "appid": 1304320, + "normalized_name": "重装无限·metal infinite" + }, + { + "appid": 1304340, + "normalized_name": "monster energy supercross the official videogame 4" + }, + { + "appid": 1304350, + "normalized_name": "urge" + }, + { + "appid": 1304360, + "normalized_name": "dumb roguelike like rpg" + }, + { + "appid": 1304390, + "normalized_name": "covid tale ignorance" + }, + { + "appid": 1304400, + "normalized_name": "the end of dyeus" + }, + { + "appid": 1304420, + "normalized_name": "super cable boy" + }, + { + "appid": 1304430, + "normalized_name": "viking frontiers" + }, + { + "appid": 1304470, + "normalized_name": "降妖神兵" + }, + { + "appid": 1304490, + "normalized_name": "worlds builder" + }, + { + "appid": 1304510, + "normalized_name": "scp nine tailed fox" + }, + { + "appid": 1304520, + "normalized_name": "phogbound" + }, + { + "appid": 1304530, + "normalized_name": "sling a thing" + }, + { + "appid": 1304550, + "normalized_name": "progressbar95" + }, + { + "appid": 1304560, + "normalized_name": "stolen recovery" + }, + { + "appid": 1304580, + "normalized_name": "big tiddy goth gf simulator" + }, + { + "appid": 1304610, + "normalized_name": "lab rat" + }, + { + "appid": 1304620, + "normalized_name": "the insider – interactive movie" + }, + { + "appid": 1304640, + "normalized_name": "related" + }, + { + "appid": 1304660, + "normalized_name": "vagrus the riven realms demo (prologue)" + }, + { + "appid": 1304680, + "normalized_name": "voidigo" + }, + { + "appid": 1304690, + "normalized_name": "push your family" + }, + { + "appid": 1304770, + "normalized_name": "the magister" + }, + { + "appid": 1304780, + "normalized_name": "nongunz doppelganger" + }, + { + "appid": 1304790, + "normalized_name": "罗马之链" + }, + { + "appid": 1304800, + "normalized_name": "forest of the dead" + }, + { + "appid": 1304810, + "normalized_name": "hani" + }, + { + "appid": 1304850, + "normalized_name": "gravity well" + }, + { + "appid": 1304870, + "normalized_name": "motel murder" + }, + { + "appid": 1304910, + "normalized_name": "my hidden things" + }, + { + "appid": 1304930, + "normalized_name": "the outlast trials" + }, + { + "appid": 1305050, + "normalized_name": "lightless" + }, + { + "appid": 1305060, + "normalized_name": "virus blast" + }, + { + "appid": 1305080, + "normalized_name": "gearblocks" + }, + { + "appid": 1305150, + "normalized_name": "uniduni" + }, + { + "appid": 1305180, + "normalized_name": "game director story" + }, + { + "appid": 1305190, + "normalized_name": "aria dragon eater" + }, + { + "appid": 1305220, + "normalized_name": "zomcade" + }, + { + "appid": 1305250, + "normalized_name": "grand theft rome" + }, + { + "appid": 1305260, + "normalized_name": "steamdolls order of chaos" + }, + { + "appid": 1305270, + "normalized_name": "my train world" + }, + { + "appid": 1305280, + "normalized_name": "ravenheart hospital a medical visual novel" + }, + { + "appid": 1305300, + "normalized_name": "love love school days" + }, + { + "appid": 1305310, + "normalized_name": "drox operative 2" + }, + { + "appid": 1305320, + "normalized_name": "belongings" + }, + { + "appid": 1305350, + "normalized_name": "c 4" + }, + { + "appid": 1305370, + "normalized_name": "pandemia virus outbreak" + }, + { + "appid": 1305380, + "normalized_name": "vr fitness gym (cycling marathon football etc)" + }, + { + "appid": 1305390, + "normalized_name": "軟体轟輪ゲルタンク" + }, + { + "appid": 1305420, + "normalized_name": "agrou" + }, + { + "appid": 1305430, + "normalized_name": "crystal valley" + }, + { + "appid": 1305440, + "normalized_name": "death tales" + }, + { + "appid": 1305450, + "normalized_name": "16bit vs reality" + }, + { + "appid": 1305470, + "normalized_name": "tower" + }, + { + "appid": 1305490, + "normalized_name": "up until the end otome/visual novel" + }, + { + "appid": 1305500, + "normalized_name": "captain disaster in the dark side of the moon" + }, + { + "appid": 1305530, + "normalized_name": "piroku" + }, + { + "appid": 1305540, + "normalized_name": "rusty gun" + }, + { + "appid": 1305570, + "normalized_name": "ピンボルアの勇者" + }, + { + "appid": 1305590, + "normalized_name": "wibbly witches" + }, + { + "appid": 1305610, + "normalized_name": "cosmodome" + }, + { + "appid": 1305640, + "normalized_name": "beyond hope" + }, + { + "appid": 1305660, + "normalized_name": "remedy" + }, + { + "appid": 1305690, + "normalized_name": "アルティメットダンジョン「紅」" + }, + { + "appid": 1305720, + "normalized_name": "delores a thimbleweed park mini adventure" + }, + { + "appid": 1305730, + "normalized_name": "way to yaatra" + }, + { + "appid": 1305760, + "normalized_name": "succubus throne" + }, + { + "appid": 1305780, + "normalized_name": "battle barn tactics" + }, + { + "appid": 1305820, + "normalized_name": "lunar axe" + }, + { + "appid": 1305880, + "normalized_name": "apparitions kotsmine hills" + }, + { + "appid": 1305890, + "normalized_name": "gunguru" + }, + { + "appid": 1305940, + "normalized_name": "ambush convoy strike" + }, + { + "appid": 1305960, + "normalized_name": "武林桃源乡 the arcadia of wulin" + }, + { + "appid": 1305970, + "normalized_name": "不二臣the only master" + }, + { + "appid": 1305990, + "normalized_name": "elphame" + }, + { + "appid": 1306010, + "normalized_name": "bada space station" + }, + { + "appid": 1306020, + "normalized_name": "the hostage" + }, + { + "appid": 1306060, + "normalized_name": "golf club architect" + }, + { + "appid": 1306110, + "normalized_name": "angkor celebrations match 3 puzzle" + }, + { + "appid": 1306160, + "normalized_name": "get over blood" + }, + { + "appid": 1306180, + "normalized_name": "retrocycles" + }, + { + "appid": 1306210, + "normalized_name": "boston ainamics" + }, + { + "appid": 1306240, + "normalized_name": "freelance trucker insurance fraud" + }, + { + "appid": 1306250, + "normalized_name": "light and embers" + }, + { + "appid": 1306260, + "normalized_name": "clickcells cpu girls" + }, + { + "appid": 1306570, + "normalized_name": "fadeout underground" + }, + { + "appid": 1306580, + "normalized_name": "left on read" + }, + { + "appid": 1306620, + "normalized_name": "[chilla's art] missing children | 行方不明" + }, + { + "appid": 1306630, + "normalized_name": "lost ruins" + }, + { + "appid": 1306720, + "normalized_name": "mayhem brawler" + }, + { + "appid": 1306750, + "normalized_name": "黑色花与红山羊 / black datura & red goat" + }, + { + "appid": 1306770, + "normalized_name": "revival recolonization" + }, + { + "appid": 1306780, + "normalized_name": "pledge extra credit" + }, + { + "appid": 1306790, + "normalized_name": "putin kills coronavirus" + }, + { + "appid": 1306840, + "normalized_name": "ancient world war" + }, + { + "appid": 1306850, + "normalized_name": "sea war" + }, + { + "appid": 1306860, + "normalized_name": "cemetery war" + }, + { + "appid": 1306900, + "normalized_name": "badbee" + }, + { + "appid": 1306910, + "normalized_name": "dichotomy" + }, + { + "appid": 1306950, + "normalized_name": "fireside hero" + }, + { + "appid": 1306970, + "normalized_name": "diluvian ultra" + }, + { + "appid": 1306990, + "normalized_name": "wanderlust bangkok prelude" + }, + { + "appid": 1307070, + "normalized_name": "vetrix" + }, + { + "appid": 1307080, + "normalized_name": "sex hentai vr" + }, + { + "appid": 1307090, + "normalized_name": "barro racing" + }, + { + "appid": 1307110, + "normalized_name": "snow blower idle game" + }, + { + "appid": 1307160, + "normalized_name": "bad night first incursion" + }, + { + "appid": 1307180, + "normalized_name": "operation harsh doorstop \"closed beta\"" + }, + { + "appid": 1307200, + "normalized_name": "sue's story" + }, + { + "appid": 1307220, + "normalized_name": "dodgeball vr" + }, + { + "appid": 1307230, + "normalized_name": "penguin slide" + }, + { + "appid": 1307240, + "normalized_name": "call of coronga" + }, + { + "appid": 1307250, + "normalized_name": "bordercollie game" + }, + { + "appid": 1307270, + "normalized_name": "demon keeper 2+" + }, + { + "appid": 1307300, + "normalized_name": "pizza heroes (closed beta)" + }, + { + "appid": 1307310, + "normalized_name": "arrowball" + }, + { + "appid": 1307330, + "normalized_name": "frop chronicles of the forged path" + }, + { + "appid": 1307370, + "normalized_name": "rain city" + }, + { + "appid": 1307380, + "normalized_name": "isoland the amusement park" + }, + { + "appid": 1307450, + "normalized_name": "the knight of queen" + }, + { + "appid": 1307460, + "normalized_name": "indoor sniper shooting alpha strike in corona virus lockdown" + }, + { + "appid": 1307480, + "normalized_name": "street sniper" + }, + { + "appid": 1307490, + "normalized_name": "not my president level 1" + }, + { + "appid": 1307530, + "normalized_name": "infection maze / 感染メイズ" + }, + { + "appid": 1307550, + "normalized_name": "craftopia" + }, + { + "appid": 1307560, + "normalized_name": "demon's sword snakes ~呪い蛇の甘き夢~" + }, + { + "appid": 1307580, + "normalized_name": "toem a photo adventure" + }, + { + "appid": 1307610, + "normalized_name": "魂之石/spirit stone" + }, + { + "appid": 1307640, + "normalized_name": "choco pixel 5" + }, + { + "appid": 1307660, + "normalized_name": "ravenbound" + }, + { + "appid": 1307670, + "normalized_name": "the unexpected quest" + }, + { + "appid": 1307690, + "normalized_name": "the darkest tales" + }, + { + "appid": 1307710, + "normalized_name": "grid legends" + }, + { + "appid": 1307730, + "normalized_name": "rogue robots" + }, + { + "appid": 1307740, + "normalized_name": "level 1 me & the final dungeon" + }, + { + "appid": 1307760, + "normalized_name": "fisherman classic" + }, + { + "appid": 1307780, + "normalized_name": "kinda heroes the cutest rpg ever!" + }, + { + "appid": 1307810, + "normalized_name": "cybxus heart" + }, + { + "appid": 1307850, + "normalized_name": "simple machines" + }, + { + "appid": 1307860, + "normalized_name": "queerskins a love story" + }, + { + "appid": 1307870, + "normalized_name": "sensorium" + }, + { + "appid": 1307880, + "normalized_name": "hanoi puzzles solid match" + }, + { + "appid": 1307890, + "normalized_name": "kingdoms reborn" + }, + { + "appid": 1307900, + "normalized_name": "dark sales" + }, + { + "appid": 1307960, + "normalized_name": "quartet" + }, + { + "appid": 1307980, + "normalized_name": "another earth gaming grid" + }, + { + "appid": 1308040, + "normalized_name": "agence" + }, + { + "appid": 1308060, + "normalized_name": "craft city" + }, + { + "appid": 1308130, + "normalized_name": "bust a date" + }, + { + "appid": 1308140, + "normalized_name": "drive & drift" + }, + { + "appid": 1308150, + "normalized_name": "orb overload" + }, + { + "appid": 1308170, + "normalized_name": "possession 1881" + }, + { + "appid": 1308220, + "normalized_name": "orbals" + }, + { + "appid": 1308240, + "normalized_name": "out of shapes" + }, + { + "appid": 1308250, + "normalized_name": "knight bewitched 2" + }, + { + "appid": 1308280, + "normalized_name": "empire of the wicked" + }, + { + "appid": 1308350, + "normalized_name": "deer hunter xtreme focal plane" + }, + { + "appid": 1308360, + "normalized_name": "gun jam" + }, + { + "appid": 1308410, + "normalized_name": "rolling cube" + }, + { + "appid": 1308420, + "normalized_name": "甜蜜岛" + }, + { + "appid": 1308450, + "normalized_name": "halloween horrors deluxe steam" + }, + { + "appid": 1308470, + "normalized_name": "journey to the centre of the cell" + }, + { + "appid": 1308500, + "normalized_name": "soul elegy" + }, + { + "appid": 1308510, + "normalized_name": "kalidazkoph" + }, + { + "appid": 1308520, + "normalized_name": "corona runner" + }, + { + "appid": 1308540, + "normalized_name": "cyberspace infinite/赛博空间:无限" + }, + { + "appid": 1308550, + "normalized_name": "speedrun" + }, + { + "appid": 1308560, + "normalized_name": "the legend of hyperstar" + }, + { + "appid": 1308570, + "normalized_name": "costa's classic cosmic pizzas" + }, + { + "appid": 1308630, + "normalized_name": "aphelion" + }, + { + "appid": 1308660, + "normalized_name": "gun master" + }, + { + "appid": 1308700, + "normalized_name": "wizardry the five ordeals" + }, + { + "appid": 1308740, + "normalized_name": "hentai roguelike" + }, + { + "appid": 1308750, + "normalized_name": "ruth's journey" + }, + { + "appid": 1308760, + "normalized_name": "mesmer" + }, + { + "appid": 1308770, + "normalized_name": "west legends" + }, + { + "appid": 1308780, + "normalized_name": "the medic" + }, + { + "appid": 1308790, + "normalized_name": "鲸走:前篇 whale left part 1" + }, + { + "appid": 1308800, + "normalized_name": "时间卡牌 timelinecard" + }, + { + "appid": 1308840, + "normalized_name": "consternation ii" + }, + { + "appid": 1308870, + "normalized_name": "cyber ops prologue" + }, + { + "appid": 1308880, + "normalized_name": "foreclosed" + }, + { + "appid": 1308920, + "normalized_name": "nightmare simulator 2 rebirth" + }, + { + "appid": 1308940, + "normalized_name": "misc. a tiny tale" + }, + { + "appid": 1308950, + "normalized_name": "bhop pro" + }, + { + "appid": 1308960, + "normalized_name": "rooster rampage" + }, + { + "appid": 1308980, + "normalized_name": "dungeon throne" + }, + { + "appid": 1309000, + "normalized_name": "escape dungeon 2" + }, + { + "appid": 1309040, + "normalized_name": "succubus hotel" + }, + { + "appid": 1309080, + "normalized_name": "infinite guitars" + }, + { + "appid": 1309090, + "normalized_name": "barold" + }, + { + "appid": 1309130, + "normalized_name": "lucky and a life worth living a jigsaw puzzle tale" + }, + { + "appid": 1309140, + "normalized_name": "space battle" + }, + { + "appid": 1309170, + "normalized_name": "way of heroes" + }, + { + "appid": 1309200, + "normalized_name": "3d math ultra" + }, + { + "appid": 1309280, + "normalized_name": "corners" + }, + { + "appid": 1309290, + "normalized_name": "shadow of valhalla" + }, + { + "appid": 1309300, + "normalized_name": "ominous" + }, + { + "appid": 1309340, + "normalized_name": "new homestead" + }, + { + "appid": 1309350, + "normalized_name": "the hilltop mansion" + }, + { + "appid": 1309430, + "normalized_name": "dungeon of trials" + }, + { + "appid": 1309440, + "normalized_name": "sweet house love" + }, + { + "appid": 1309460, + "normalized_name": "blow it up" + }, + { + "appid": 1309510, + "normalized_name": "西游 琉璃盏" + }, + { + "appid": 1309550, + "normalized_name": "far eastern federal university virtual expo" + }, + { + "appid": 1309590, + "normalized_name": "sqwark! a nutty adventure" + }, + { + "appid": 1309610, + "normalized_name": "line war" + }, + { + "appid": 1309620, + "normalized_name": "bears in space" + }, + { + "appid": 1309680, + "normalized_name": "fantastic petty" + }, + { + "appid": 1309700, + "normalized_name": "devil's dream" + }, + { + "appid": 1309710, + "normalized_name": "the stone of madness" + }, + { + "appid": 1309720, + "normalized_name": "everglory" + }, + { + "appid": 1309730, + "normalized_name": "infinity imperium" + }, + { + "appid": 1309760, + "normalized_name": "last gang standing" + }, + { + "appid": 1309780, + "normalized_name": "modern naval combat" + }, + { + "appid": 1309820, + "normalized_name": "remains" + }, + { + "appid": 1309850, + "normalized_name": "into the timeverse" + }, + { + "appid": 1309860, + "normalized_name": "family mysteries 3 criminal mindset" + }, + { + "appid": 1309870, + "normalized_name": "decently bad tower defense" + }, + { + "appid": 1309890, + "normalized_name": "logically" + }, + { + "appid": 1309910, + "normalized_name": "vacation adventures park ranger 10" + }, + { + "appid": 1309940, + "normalized_name": "lorera" + }, + { + "appid": 1309950, + "normalized_name": "children of the sun" + }, + { + "appid": 1309980, + "normalized_name": "space probes" + }, + { + "appid": 1309990, + "normalized_name": "creature lab" + }, + { + "appid": 1310050, + "normalized_name": "video editor tycoon" + }, + { + "appid": 1310080, + "normalized_name": "finding fido the journey" + }, + { + "appid": 1310120, + "normalized_name": "elliot" + }, + { + "appid": 1310150, + "normalized_name": "uranus" + }, + { + "appid": 1310210, + "normalized_name": "omicron coronavirus battlegrounds" + }, + { + "appid": 1310230, + "normalized_name": "cyber seraph" + }, + { + "appid": 1310270, + "normalized_name": "chromalition" + }, + { + "appid": 1310330, + "normalized_name": "goodbye volcano high" + }, + { + "appid": 1310350, + "normalized_name": "loco road" + }, + { + "appid": 1310390, + "normalized_name": "mine trap reborn" + }, + { + "appid": 1310410, + "normalized_name": "alone in the dark" + }, + { + "appid": 1310470, + "normalized_name": "tankfight" + }, + { + "appid": 1310480, + "normalized_name": "jumperbird" + }, + { + "appid": 1310500, + "normalized_name": "haymaker" + }, + { + "appid": 1310510, + "normalized_name": "handy harry's haunted house services" + }, + { + "appid": 1310520, + "normalized_name": "occupy mars prologue (2020)" + }, + { + "appid": 1310590, + "normalized_name": "tank battle" + }, + { + "appid": 1310620, + "normalized_name": "the sight in a mirror" + }, + { + "appid": 1310650, + "normalized_name": "hedera" + }, + { + "appid": 1310690, + "normalized_name": "disc party" + }, + { + "appid": 1310740, + "normalized_name": "mortarmen" + }, + { + "appid": 1310770, + "normalized_name": "valiantia" + }, + { + "appid": 1310790, + "normalized_name": "the adventures of eggbert" + }, + { + "appid": 1310840, + "normalized_name": "动绘(drawing)" + }, + { + "appid": 1310910, + "normalized_name": "sexual void" + }, + { + "appid": 1310950, + "normalized_name": "drazor" + }, + { + "appid": 1310970, + "normalized_name": "russianpunk 2007" + }, + { + "appid": 1310990, + "normalized_name": "美少女万华镜 理与迷宫的少女" + }, + { + "appid": 1311070, + "normalized_name": "greak memories of azur" + }, + { + "appid": 1311080, + "normalized_name": "dark existence" + }, + { + "appid": 1311140, + "normalized_name": "slime climb" + }, + { + "appid": 1311150, + "normalized_name": "long car journey a road trip game" + }, + { + "appid": 1311160, + "normalized_name": "apollon 88" + }, + { + "appid": 1311190, + "normalized_name": "hentai monster quiz" + }, + { + "appid": 1311210, + "normalized_name": "virus madness dungeons of your body" + }, + { + "appid": 1311220, + "normalized_name": "johann weiss" + }, + { + "appid": 1311240, + "normalized_name": "heretic's lot" + }, + { + "appid": 1311250, + "normalized_name": "don't be afraid the first toy" + }, + { + "appid": 1311300, + "normalized_name": "hive" + }, + { + "appid": 1311310, + "normalized_name": "escape from the hospital" + }, + { + "appid": 1311320, + "normalized_name": "their radiance" + }, + { + "appid": 1311400, + "normalized_name": "arena experiment" + }, + { + "appid": 1311440, + "normalized_name": "看白海豚的好日子 a perfect day for white dolphin" + }, + { + "appid": 1311460, + "normalized_name": "lost alone" + }, + { + "appid": 1311510, + "normalized_name": "embracelet" + }, + { + "appid": 1311540, + "normalized_name": "the wake mourning father mourning mother" + }, + { + "appid": 1311560, + "normalized_name": "drone zone" + }, + { + "appid": 1311570, + "normalized_name": "desecrators" + }, + { + "appid": 1311610, + "normalized_name": "the hunter's journals red ripper" + }, + { + "appid": 1311640, + "normalized_name": "swarm" + }, + { + "appid": 1311650, + "normalized_name": "helwyr" + }, + { + "appid": 1311660, + "normalized_name": "friendly fire" + }, + { + "appid": 1311670, + "normalized_name": "the forsaken ruins" + }, + { + "appid": 1311690, + "normalized_name": "bubble tea game for thinking and imagination" + }, + { + "appid": 1311700, + "normalized_name": "汉武大帝传 经典策略战棋" + }, + { + "appid": 1311710, + "normalized_name": "somber" + }, + { + "appid": 1311740, + "normalized_name": "boreal tenebrae act i “i stand before you a form undone”" + }, + { + "appid": 1311770, + "normalized_name": "zoo world vr" + }, + { + "appid": 1311780, + "normalized_name": "jackalope" + }, + { + "appid": 1311800, + "normalized_name": "beodara" + }, + { + "appid": 1311830, + "normalized_name": "music ball" + }, + { + "appid": 1311930, + "normalized_name": "robot invasion" + }, + { + "appid": 1311960, + "normalized_name": "couple in trouble" + }, + { + "appid": 1311990, + "normalized_name": "little terror" + }, + { + "appid": 1312000, + "normalized_name": "wrap it!" + }, + { + "appid": 1312050, + "normalized_name": "return to sector 9" + }, + { + "appid": 1312060, + "normalized_name": "zero g gunfight" + }, + { + "appid": 1312070, + "normalized_name": "pink island" + }, + { + "appid": 1312080, + "normalized_name": "guardians" + }, + { + "appid": 1312160, + "normalized_name": "astro dash" + }, + { + "appid": 1312190, + "normalized_name": "cruel galaxy discordia" + }, + { + "appid": 1312210, + "normalized_name": "autumn chess" + }, + { + "appid": 1312230, + "normalized_name": "shop tycoon" + }, + { + "appid": 1312240, + "normalized_name": "rubikingdom" + }, + { + "appid": 1312250, + "normalized_name": "odia" + }, + { + "appid": 1312270, + "normalized_name": "the passage of time" + }, + { + "appid": 1312290, + "normalized_name": "pengoroyale" + }, + { + "appid": 1312310, + "normalized_name": "golden moon" + }, + { + "appid": 1312380, + "normalized_name": "paper shakespeare very naked hamlet" + }, + { + "appid": 1312420, + "normalized_name": "the united space of america" + }, + { + "appid": 1312450, + "normalized_name": "eternity convergence" + }, + { + "appid": 1312470, + "normalized_name": "hyde and zeke" + }, + { + "appid": 1312480, + "normalized_name": "ratico puzzle adventure" + }, + { + "appid": 1312490, + "normalized_name": "backlighting war" + }, + { + "appid": 1312510, + "normalized_name": "spooky spins deluxe steam" + }, + { + "appid": 1312540, + "normalized_name": "omg one million guns" + }, + { + "appid": 1312570, + "normalized_name": "ハンターハーツ hunter hearts" + }, + { + "appid": 1312660, + "normalized_name": "be my mom maternity simulator take care of your child" + }, + { + "appid": 1312740, + "normalized_name": "schlag den star das 2. spiel" + }, + { + "appid": 1312760, + "normalized_name": "dreams keeper solitaire" + }, + { + "appid": 1312780, + "normalized_name": "rainbow hills" + }, + { + "appid": 1312880, + "normalized_name": "rompe" + }, + { + "appid": 1312900, + "normalized_name": "deep dark forest" + }, + { + "appid": 1312950, + "normalized_name": "world end echo" + }, + { + "appid": 1312960, + "normalized_name": "epic chef" + }, + { + "appid": 1312990, + "normalized_name": "awkward girls" + }, + { + "appid": 1313050, + "normalized_name": "cute lady" + }, + { + "appid": 1313090, + "normalized_name": "wwii rising" + }, + { + "appid": 1313110, + "normalized_name": "sky beneath" + }, + { + "appid": 1313120, + "normalized_name": "cannonship" + }, + { + "appid": 1313140, + "normalized_name": "cult of the lamb" + }, + { + "appid": 1313150, + "normalized_name": "enchantress" + }, + { + "appid": 1313200, + "normalized_name": "explode on contact" + }, + { + "appid": 1313210, + "normalized_name": "nimoyd survival sandbox" + }, + { + "appid": 1313230, + "normalized_name": "beautiful light" + }, + { + "appid": 1313290, + "normalized_name": "let them trade" + }, + { + "appid": 1313310, + "normalized_name": "election year knockout" + }, + { + "appid": 1313330, + "normalized_name": "hede game engine" + }, + { + "appid": 1313340, + "normalized_name": "epocria" + }, + { + "appid": 1313350, + "normalized_name": "living legends ice rose collector's" + }, + { + "appid": 1313360, + "normalized_name": "underfire" + }, + { + "appid": 1313400, + "normalized_name": "einsteins riddle" + }, + { + "appid": 1313470, + "normalized_name": "really trash game" + }, + { + "appid": 1313490, + "normalized_name": "slimes" + }, + { + "appid": 1313530, + "normalized_name": "fm" + }, + { + "appid": 1313580, + "normalized_name": "cryptoclickers crypto idle game" + }, + { + "appid": 1313600, + "normalized_name": "aternia deep" + }, + { + "appid": 1313630, + "normalized_name": "pursuit of redemption" + }, + { + "appid": 1313640, + "normalized_name": "the lost marble" + }, + { + "appid": 1313700, + "normalized_name": "covid kawaii!" + }, + { + "appid": 1313730, + "normalized_name": "hunt in town" + }, + { + "appid": 1313810, + "normalized_name": "her lie i tried to believe extended" + }, + { + "appid": 1313870, + "normalized_name": "orc's civil war" + }, + { + "appid": 1313880, + "normalized_name": "test tube titans taster trial" + }, + { + "appid": 1313940, + "normalized_name": "my holiday 2" + }, + { + "appid": 1313960, + "normalized_name": "detonation sauce university" + }, + { + "appid": 1313970, + "normalized_name": "planetariumvr" + }, + { + "appid": 1314000, + "normalized_name": "achilles legends untold" + }, + { + "appid": 1314010, + "normalized_name": "深入敵境 behind enemy line" + }, + { + "appid": 1314040, + "normalized_name": "wteruna" + }, + { + "appid": 1314090, + "normalized_name": "city sniper" + }, + { + "appid": 1314140, + "normalized_name": "tramsim vienna the tram simulator" + }, + { + "appid": 1314160, + "normalized_name": "rover mechanic simulator training day" + }, + { + "appid": 1314170, + "normalized_name": "地牢勇者(dungeon & heroes)" + }, + { + "appid": 1314190, + "normalized_name": "treasure islands" + }, + { + "appid": 1314230, + "normalized_name": "battle dawn 2 terra reborn" + }, + { + "appid": 1314270, + "normalized_name": "adventure mosaics. small islanders" + }, + { + "appid": 1314290, + "normalized_name": "how to punish a witch" + }, + { + "appid": 1314300, + "normalized_name": "flying hero vr" + }, + { + "appid": 1314410, + "normalized_name": "rugby union team manager 3" + }, + { + "appid": 1314460, + "normalized_name": "flicker of hope" + }, + { + "appid": 1314480, + "normalized_name": "don flatus poop hunter" + }, + { + "appid": 1314500, + "normalized_name": "improbable soccer" + }, + { + "appid": 1314540, + "normalized_name": "feylin" + }, + { + "appid": 1314590, + "normalized_name": "x fitness" + }, + { + "appid": 1314600, + "normalized_name": "the rogue cavern" + }, + { + "appid": 1314620, + "normalized_name": "coronavirus quarantine simulator" + }, + { + "appid": 1314630, + "normalized_name": "aristocunts" + }, + { + "appid": 1314670, + "normalized_name": "minesweeper x" + }, + { + "appid": 1314680, + "normalized_name": "defensive attacks" + }, + { + "appid": 1314690, + "normalized_name": "streamteam" + }, + { + "appid": 1314770, + "normalized_name": "three kingdom the journey" + }, + { + "appid": 1314820, + "normalized_name": "realflight trainer" + }, + { + "appid": 1314840, + "normalized_name": "encrypt." + }, + { + "appid": 1314870, + "normalized_name": "kitt.io" + }, + { + "appid": 1314880, + "normalized_name": "shoo box!" + }, + { + "appid": 1314930, + "normalized_name": "speed swing" + }, + { + "appid": 1314970, + "normalized_name": "galactic solo commander" + }, + { + "appid": 1314980, + "normalized_name": "mealmates" + }, + { + "appid": 1315000, + "normalized_name": "vacuulus" + }, + { + "appid": 1315040, + "normalized_name": "my unreal pet" + }, + { + "appid": 1315070, + "normalized_name": "vaccine19" + }, + { + "appid": 1315100, + "normalized_name": "jumping jax" + }, + { + "appid": 1315120, + "normalized_name": "field hospital dr. taylor's story" + }, + { + "appid": 1315130, + "normalized_name": "不返" + }, + { + "appid": 1315160, + "normalized_name": "鸢之歌 singing iris" + }, + { + "appid": 1315180, + "normalized_name": "spark in the dark" + }, + { + "appid": 1315200, + "normalized_name": "kingdom under fire heroes" + }, + { + "appid": 1315210, + "normalized_name": "ikai" + }, + { + "appid": 1315220, + "normalized_name": "memory illusions" + }, + { + "appid": 1315240, + "normalized_name": "blackstorm" + }, + { + "appid": 1315250, + "normalized_name": "escape from the cosmic abyss" + }, + { + "appid": 1315270, + "normalized_name": "pee war!!" + }, + { + "appid": 1315320, + "normalized_name": "the necromancer's tale" + }, + { + "appid": 1315360, + "normalized_name": "勇闯恶魔岛 crazy jump" + }, + { + "appid": 1315370, + "normalized_name": "way far home" + }, + { + "appid": 1315410, + "normalized_name": "mini maker make a thing" + }, + { + "appid": 1315610, + "normalized_name": "source of madness" + }, + { + "appid": 1315620, + "normalized_name": "endlessshinyblues" + }, + { + "appid": 1315630, + "normalized_name": "run or fight" + }, + { + "appid": 1315650, + "normalized_name": "auto kitchen" + }, + { + "appid": 1315660, + "normalized_name": "sausage fest" + }, + { + "appid": 1315670, + "normalized_name": "asteroids 44 (for four)" + }, + { + "appid": 1315680, + "normalized_name": "men bang" + }, + { + "appid": 1315710, + "normalized_name": "move 'n' bloom" + }, + { + "appid": 1315780, + "normalized_name": "the great art heist" + }, + { + "appid": 1315810, + "normalized_name": "united command" + }, + { + "appid": 1315840, + "normalized_name": "supermarket maker" + }, + { + "appid": 1315860, + "normalized_name": "work and girls" + }, + { + "appid": 1315890, + "normalized_name": "big city rigs garbage truck driver" + }, + { + "appid": 1315900, + "normalized_name": "3d maze in space" + }, + { + "appid": 1315910, + "normalized_name": "bop'n wrestle" + }, + { + "appid": 1315920, + "normalized_name": "the train escape to normandy" + }, + { + "appid": 1315940, + "normalized_name": "gravity oddity" + }, + { + "appid": 1315980, + "normalized_name": "tin can" + }, + { + "appid": 1316000, + "normalized_name": "honor and duty d day" + }, + { + "appid": 1316050, + "normalized_name": "rainy city pandemic" + }, + { + "appid": 1316060, + "normalized_name": "smelted kin" + }, + { + "appid": 1316100, + "normalized_name": "oval racecar builder" + }, + { + "appid": 1316130, + "normalized_name": "the village story" + }, + { + "appid": 1316150, + "normalized_name": "ivan poe" + }, + { + "appid": 1316160, + "normalized_name": "m.e.a.t. rpg" + }, + { + "appid": 1316200, + "normalized_name": "house sitter" + }, + { + "appid": 1316220, + "normalized_name": "rock star simulator" + }, + { + "appid": 1316230, + "normalized_name": "force of nature 2 ghost keeper" + }, + { + "appid": 1316280, + "normalized_name": "tekling 2 overdrive" + }, + { + "appid": 1316290, + "normalized_name": "we die" + }, + { + "appid": 1316310, + "normalized_name": "wave rider" + }, + { + "appid": 1316330, + "normalized_name": "quarantine cutz" + }, + { + "appid": 1316380, + "normalized_name": "graehart" + }, + { + "appid": 1316390, + "normalized_name": "thermo sudoku" + }, + { + "appid": 1316440, + "normalized_name": "lonefarm" + }, + { + "appid": 1316460, + "normalized_name": "bounty" + }, + { + "appid": 1316520, + "normalized_name": "flain tao force & cubes" + }, + { + "appid": 1316530, + "normalized_name": "buster's td" + }, + { + "appid": 1316560, + "normalized_name": "otaku's rage waifu strikes back" + }, + { + "appid": 1316570, + "normalized_name": "operation covid 19" + }, + { + "appid": 1316640, + "normalized_name": "ironsmith medieval simulator prologue" + }, + { + "appid": 1316680, + "normalized_name": "vladik brutal" + }, + { + "appid": 1316700, + "normalized_name": "escape from kyoto house" + }, + { + "appid": 1316720, + "normalized_name": "the 8ight" + }, + { + "appid": 1316740, + "normalized_name": "extreme escape" + }, + { + "appid": 1316760, + "normalized_name": "suicide guy vr" + }, + { + "appid": 1316770, + "normalized_name": "sol 705" + }, + { + "appid": 1316800, + "normalized_name": "destropolis" + }, + { + "appid": 1316830, + "normalized_name": "simply puzzles codewords" + }, + { + "appid": 1316870, + "normalized_name": "primordials battle of gods" + }, + { + "appid": 1316910, + "normalized_name": "super monkey ball banana mania" + }, + { + "appid": 1316950, + "normalized_name": "ve fpso tour in vr" + }, + { + "appid": 1316970, + "normalized_name": "遗落幻境" + }, + { + "appid": 1317020, + "normalized_name": "77p egg eggwife" + }, + { + "appid": 1317070, + "normalized_name": "shape shooter" + }, + { + "appid": 1317120, + "normalized_name": "yuri ogibalov's bizarre adventure" + }, + { + "appid": 1317240, + "normalized_name": "charge knight a duck's tale" + }, + { + "appid": 1317270, + "normalized_name": "walthros renewal" + }, + { + "appid": 1317310, + "normalized_name": "the machine's garden" + }, + { + "appid": 1317360, + "normalized_name": "dicking around" + }, + { + "appid": 1317500, + "normalized_name": "lucidscape" + }, + { + "appid": 1317800, + "normalized_name": "big city rigs bus driver" + }, + { + "appid": 1317850, + "normalized_name": "martian potato" + }, + { + "appid": 1317950, + "normalized_name": "eternal dreamers" + }, + { + "appid": 1318000, + "normalized_name": "htd" + }, + { + "appid": 1318020, + "normalized_name": "king witch and dragon" + }, + { + "appid": 1318060, + "normalized_name": "limen mooncity" + }, + { + "appid": 1318090, + "normalized_name": "vertigo" + }, + { + "appid": 1318110, + "normalized_name": "party mashup" + }, + { + "appid": 1318130, + "normalized_name": "robin hood winds of freedom" + }, + { + "appid": 1318140, + "normalized_name": "bookconverter" + }, + { + "appid": 1318150, + "normalized_name": "约拍女神2 / beautiful model2" + }, + { + "appid": 1318180, + "normalized_name": "wiccatrix" + }, + { + "appid": 1318190, + "normalized_name": "gladiators manager" + }, + { + "appid": 1318210, + "normalized_name": "dancing angel" + }, + { + "appid": 1318240, + "normalized_name": "shields of loyalty" + }, + { + "appid": 1318260, + "normalized_name": "hunker down" + }, + { + "appid": 1318280, + "normalized_name": "overshoot battle race" + }, + { + "appid": 1318420, + "normalized_name": "summer in mara prologue" + }, + { + "appid": 1318450, + "normalized_name": "spunky gangster simulator" + }, + { + "appid": 1318480, + "normalized_name": "rogue knight" + }, + { + "appid": 1318520, + "normalized_name": "dört model müzesi" + }, + { + "appid": 1318530, + "normalized_name": "my mud game" + }, + { + "appid": 1318550, + "normalized_name": "ardein.fall" + }, + { + "appid": 1318560, + "normalized_name": "husbandry" + }, + { + "appid": 1318610, + "normalized_name": "the sewers" + }, + { + "appid": 1318690, + "normalized_name": "shapez" + }, + { + "appid": 1318700, + "normalized_name": "a knight in the attic" + }, + { + "appid": 1318730, + "normalized_name": "axiom alternative" + }, + { + "appid": 1318740, + "normalized_name": "farlanders" + }, + { + "appid": 1318750, + "normalized_name": "18 wheels of steel hard truck" + }, + { + "appid": 1318790, + "normalized_name": "brok the investigator prologue" + }, + { + "appid": 1318800, + "normalized_name": "esc" + }, + { + "appid": 1318820, + "normalized_name": "cyberpulse" + }, + { + "appid": 1318840, + "normalized_name": "outlast journey of a gladiator" + }, + { + "appid": 1318870, + "normalized_name": "turkey hunting unlimited" + }, + { + "appid": 1318940, + "normalized_name": "forkdrift" + }, + { + "appid": 1318970, + "normalized_name": "this way madness lies" + }, + { + "appid": 1318980, + "normalized_name": "virtual exhibition" + }, + { + "appid": 1318990, + "normalized_name": "web host simulator" + }, + { + "appid": 1319060, + "normalized_name": "deadly maze" + }, + { + "appid": 1319100, + "normalized_name": "orbit outlaws" + }, + { + "appid": 1319160, + "normalized_name": "reverietale" + }, + { + "appid": 1319210, + "normalized_name": "little chick" + }, + { + "appid": 1319220, + "normalized_name": "don't fall asleep" + }, + { + "appid": 1319270, + "normalized_name": "our beautiful earth" + }, + { + "appid": 1319290, + "normalized_name": "damn what was yesterday?" + }, + { + "appid": 1319310, + "normalized_name": "meor" + }, + { + "appid": 1319320, + "normalized_name": "pangman" + }, + { + "appid": 1319400, + "normalized_name": "the sunny life" + }, + { + "appid": 1319420, + "normalized_name": "chasing static" + }, + { + "appid": 1319430, + "normalized_name": "vergjorn" + }, + { + "appid": 1319460, + "normalized_name": "fashion police squad" + }, + { + "appid": 1319480, + "normalized_name": "farmer time a magical farming adventure" + }, + { + "appid": 1319530, + "normalized_name": "dunar dimension two" + }, + { + "appid": 1319550, + "normalized_name": "power of ten" + }, + { + "appid": 1319570, + "normalized_name": "liminalphobia" + }, + { + "appid": 1319690, + "normalized_name": "freediving hunter spearfishing the world" + }, + { + "appid": 1319720, + "normalized_name": "obsolete souls" + }, + { + "appid": 1319790, + "normalized_name": "yogurt commercial 3" + }, + { + "appid": 1319850, + "normalized_name": "validate struggling singles in your area" + }, + { + "appid": 1319880, + "normalized_name": "cupcake an apartment adventure" + }, + { + "appid": 1319950, + "normalized_name": "lovely girls" + }, + { + "appid": 1319990, + "normalized_name": "stellar swing" + }, + { + "appid": 1320000, + "normalized_name": "punishment darkness online" + }, + { + "appid": 1320030, + "normalized_name": "oneteam soccer" + }, + { + "appid": 1320060, + "normalized_name": "living with demon lord chan" + }, + { + "appid": 1320100, + "normalized_name": "wanted raccoon" + }, + { + "appid": 1320110, + "normalized_name": "the adventurer episode 2 new dreams" + }, + { + "appid": 1320140, + "normalized_name": "small saga" + }, + { + "appid": 1320150, + "normalized_name": "vox battles" + }, + { + "appid": 1320170, + "normalized_name": "lifeguard simulator" + }, + { + "appid": 1320230, + "normalized_name": "curved space" + }, + { + "appid": 1320240, + "normalized_name": "続そのひぐらしvs東方universe2" + }, + { + "appid": 1320260, + "normalized_name": "swords of edo kinetic novel" + }, + { + "appid": 1320400, + "normalized_name": "phaser" + }, + { + "appid": 1320430, + "normalized_name": "lost in space the adventure game" + }, + { + "appid": 1320440, + "normalized_name": "world of towers" + }, + { + "appid": 1320490, + "normalized_name": "princess farmer" + }, + { + "appid": 1320500, + "normalized_name": "lauras tierklinik" + }, + { + "appid": 1320510, + "normalized_name": "rider's world i want to ride!" + }, + { + "appid": 1320520, + "normalized_name": "grand horse attraction" + }, + { + "appid": 1320530, + "normalized_name": "magnecord" + }, + { + "appid": 1320550, + "normalized_name": "the call of karen" + }, + { + "appid": 1320710, + "normalized_name": "glitch escape" + }, + { + "appid": 1320810, + "normalized_name": "externus path of the solari" + }, + { + "appid": 1320830, + "normalized_name": "электричка" + }, + { + "appid": 1320940, + "normalized_name": "the disappearance of the mitchells" + }, + { + "appid": 1320950, + "normalized_name": "the swine" + }, + { + "appid": 1320990, + "normalized_name": "horror adventure vr" + }, + { + "appid": 1321010, + "normalized_name": "labyrinth legend" + }, + { + "appid": 1321030, + "normalized_name": "no one lives in heaven" + }, + { + "appid": 1321040, + "normalized_name": "memory note" + }, + { + "appid": 1321070, + "normalized_name": "death come true" + }, + { + "appid": 1321080, + "normalized_name": "slams city. hitler's escape." + }, + { + "appid": 1321110, + "normalized_name": "monsterterritory" + }, + { + "appid": 1321120, + "normalized_name": "matsuro palette" + }, + { + "appid": 1321160, + "normalized_name": "wuppo breft festival (forever)" + }, + { + "appid": 1321220, + "normalized_name": "real farm – gold" + }, + { + "appid": 1321230, + "normalized_name": "angels of death episode.eddie" + }, + { + "appid": 1321270, + "normalized_name": "duck life 8 adventure" + }, + { + "appid": 1321350, + "normalized_name": "lv99 final fortress" + }, + { + "appid": 1321400, + "normalized_name": "diesel punch" + }, + { + "appid": 1321440, + "normalized_name": "cassette beasts" + }, + { + "appid": 1321450, + "normalized_name": "american theft 80s" + }, + { + "appid": 1321520, + "normalized_name": "monstaal" + }, + { + "appid": 1321590, + "normalized_name": "dark tales edgar allan poe's the bells collector's" + }, + { + "appid": 1321630, + "normalized_name": "super ubie island 2" + }, + { + "appid": 1321650, + "normalized_name": "rocket ghost aidan 2" + }, + { + "appid": 1321680, + "normalized_name": "hello neighbor 2" + }, + { + "appid": 1321840, + "normalized_name": "sword and spirit" + }, + { + "appid": 1321870, + "normalized_name": "banana slug beach" + }, + { + "appid": 1321890, + "normalized_name": "gravitators" + }, + { + "appid": 1321920, + "normalized_name": "sex office story" + }, + { + "appid": 1322010, + "normalized_name": "automata break" + }, + { + "appid": 1322080, + "normalized_name": "marshall mellow" + }, + { + "appid": 1322090, + "normalized_name": "taken away" + }, + { + "appid": 1322100, + "normalized_name": "battle bands rock & roll deckbuilder" + }, + { + "appid": 1322170, + "normalized_name": "pluviophile" + }, + { + "appid": 1322180, + "normalized_name": "driftz" + }, + { + "appid": 1322260, + "normalized_name": "santa monica paradise" + }, + { + "appid": 1322270, + "normalized_name": "harts island" + }, + { + "appid": 1322280, + "normalized_name": "time of special team(t.o.s.t)" + }, + { + "appid": 1322290, + "normalized_name": "the case book of arne" + }, + { + "appid": 1322300, + "normalized_name": "tsugunohi" + }, + { + "appid": 1322310, + "normalized_name": "guilty hell white goddess and the city of zombies" + }, + { + "appid": 1322370, + "normalized_name": "uphold the realm" + }, + { + "appid": 1322490, + "normalized_name": "the charm of love" + }, + { + "appid": 1322520, + "normalized_name": "the door of redemption" + }, + { + "appid": 1322540, + "normalized_name": "the lost labyrinth" + }, + { + "appid": 1322550, + "normalized_name": "fear the dark unknown james" + }, + { + "appid": 1322580, + "normalized_name": "dangerous degrees" + }, + { + "appid": 1322600, + "normalized_name": "pizza bike rider" + }, + { + "appid": 1322650, + "normalized_name": "rite" + }, + { + "appid": 1322730, + "normalized_name": "endless battle return of hero +1" + }, + { + "appid": 1322740, + "normalized_name": "vr nissage 3 john wentz art exhibition" + }, + { + "appid": 1322830, + "normalized_name": "disturbing forest demon's path" + }, + { + "appid": 1323000, + "normalized_name": "space court" + }, + { + "appid": 1323060, + "normalized_name": "wild planet" + }, + { + "appid": 1323080, + "normalized_name": "colour flux" + }, + { + "appid": 1323140, + "normalized_name": "ninja simulator" + }, + { + "appid": 1323190, + "normalized_name": "sbeve" + }, + { + "appid": 1323200, + "normalized_name": "hurry up!" + }, + { + "appid": 1323220, + "normalized_name": "hoops madness" + }, + { + "appid": 1323350, + "normalized_name": "corona simulator" + }, + { + "appid": 1323370, + "normalized_name": "delinquent community" + }, + { + "appid": 1323410, + "normalized_name": "quest 4 papa reloaded" + }, + { + "appid": 1323420, + "normalized_name": "h sniper world war ii" + }, + { + "appid": 1323470, + "normalized_name": "getsufumaden undying moon" + }, + { + "appid": 1323490, + "normalized_name": "the offering" + }, + { + "appid": 1323540, + "normalized_name": "aerial_knight's never yield" + }, + { + "appid": 1323600, + "normalized_name": "johnny mystery and the halloween killer" + }, + { + "appid": 1323610, + "normalized_name": "grit paintball" + }, + { + "appid": 1323620, + "normalized_name": "cherry vx" + }, + { + "appid": 1323710, + "normalized_name": "开学啦!王小米(semester begins! xiaomi)" + }, + { + "appid": 1323770, + "normalized_name": "roll the world" + }, + { + "appid": 1323800, + "normalized_name": "petra and the thylacine" + }, + { + "appid": 1323830, + "normalized_name": "shanghai summer" + }, + { + "appid": 1323860, + "normalized_name": "crowded blue dot" + }, + { + "appid": 1323870, + "normalized_name": "touch the floor" + }, + { + "appid": 1323880, + "normalized_name": "最后一个地球人" + }, + { + "appid": 1323900, + "normalized_name": "scrapnaut" + }, + { + "appid": 1323910, + "normalized_name": "wall ninja" + }, + { + "appid": 1323930, + "normalized_name": "dino dungeon" + }, + { + "appid": 1323950, + "normalized_name": "dungeons & bombs" + }, + { + "appid": 1324010, + "normalized_name": "disease hidden object" + }, + { + "appid": 1324030, + "normalized_name": "alien cat 2" + }, + { + "appid": 1324040, + "normalized_name": "bluevolution" + }, + { + "appid": 1324070, + "normalized_name": "monolight" + }, + { + "appid": 1324130, + "normalized_name": "stranded alien dawn" + }, + { + "appid": 1324150, + "normalized_name": "micetopia" + }, + { + "appid": 1324270, + "normalized_name": "space station tycoon" + }, + { + "appid": 1324320, + "normalized_name": "dark heart mansion" + }, + { + "appid": 1324340, + "normalized_name": "made in abyss binary star falling into darkness" + }, + { + "appid": 1324350, + "normalized_name": "turbo golf racing" + }, + { + "appid": 1324360, + "normalized_name": "brain please don't" + }, + { + "appid": 1324400, + "normalized_name": "crimepunk detective" + }, + { + "appid": 1324410, + "normalized_name": "car parking simulator vr" + }, + { + "appid": 1324420, + "normalized_name": "fox spirit a two tailed adventure" + }, + { + "appid": 1324490, + "normalized_name": "captain prosper" + }, + { + "appid": 1324510, + "normalized_name": "筑梦三国" + }, + { + "appid": 1324530, + "normalized_name": "warhammer 40 000 shootas blood & teef" + }, + { + "appid": 1324540, + "normalized_name": "project nyx" + }, + { + "appid": 1324560, + "normalized_name": "krum battle arena" + }, + { + "appid": 1324630, + "normalized_name": "drive by cop" + }, + { + "appid": 1324710, + "normalized_name": "twin stick heroes" + }, + { + "appid": 1324720, + "normalized_name": "elemental warriors" + }, + { + "appid": 1324730, + "normalized_name": "steam revolution vr" + }, + { + "appid": 1324760, + "normalized_name": "everest search and rescue" + }, + { + "appid": 1324780, + "normalized_name": "easy red 2" + }, + { + "appid": 1324830, + "normalized_name": "untale king of revinia" + }, + { + "appid": 1324840, + "normalized_name": "knitted and inflatable" + }, + { + "appid": 1324860, + "normalized_name": "heretic's lot prologue" + }, + { + "appid": 1324870, + "normalized_name": "ur game the game of ancient gods" + }, + { + "appid": 1324980, + "normalized_name": "egregor indoctrination" + }, + { + "appid": 1325000, + "normalized_name": "roller stars" + }, + { + "appid": 1325030, + "normalized_name": "fright chasers thrills chills and kills collector's" + }, + { + "appid": 1325040, + "normalized_name": "keylocker | turn based cyberpunk action" + }, + { + "appid": 1325080, + "normalized_name": "cyberborn" + }, + { + "appid": 1325200, + "normalized_name": "nioh 2 – the" + }, + { + "appid": 1325220, + "normalized_name": "chess of chains" + }, + { + "appid": 1325230, + "normalized_name": "ready set sumo!" + }, + { + "appid": 1325260, + "normalized_name": "kitsune tails" + }, + { + "appid": 1325270, + "normalized_name": "escapeworld dilemma" + }, + { + "appid": 1325310, + "normalized_name": "endless voyage / 无尽航线" + }, + { + "appid": 1325340, + "normalized_name": "brain sanguo" + }, + { + "appid": 1325370, + "normalized_name": "pandemic isolation" + }, + { + "appid": 1325380, + "normalized_name": "live empire" + }, + { + "appid": 1325420, + "normalized_name": "kooring vr wonderland heart castle crush" + }, + { + "appid": 1325430, + "normalized_name": "kooringvr wonderland red queen's black magic" + }, + { + "appid": 1325470, + "normalized_name": "pianistic" + }, + { + "appid": 1325520, + "normalized_name": "mezmeratu" + }, + { + "appid": 1325580, + "normalized_name": "the mighty eighth vr" + }, + { + "appid": 1325800, + "normalized_name": "viticulture essential" + }, + { + "appid": 1325870, + "normalized_name": "kotel ne gori a friend of lena boots" + }, + { + "appid": 1325890, + "normalized_name": "silt" + }, + { + "appid": 1325900, + "normalized_name": "demon turf queens" + }, + { + "appid": 1325910, + "normalized_name": "trainslation" + }, + { + "appid": 1325960, + "normalized_name": "pandemic the virus outbreak" + }, + { + "appid": 1325970, + "normalized_name": "ghost of tomorrow chapter 1" + }, + { + "appid": 1326000, + "normalized_name": "sakura succubus 2" + }, + { + "appid": 1326080, + "normalized_name": "alien defense unit" + }, + { + "appid": 1326110, + "normalized_name": "killer ricky" + }, + { + "appid": 1326170, + "normalized_name": "immortal hero" + }, + { + "appid": 1326220, + "normalized_name": "dynarog" + }, + { + "appid": 1326270, + "normalized_name": "festival tycoon 🎪" + }, + { + "appid": 1326290, + "normalized_name": "balrog" + }, + { + "appid": 1326330, + "normalized_name": "data mining 8" + }, + { + "appid": 1326470, + "normalized_name": "sons of the forest" + }, + { + "appid": 1326660, + "normalized_name": "cannon father" + }, + { + "appid": 1326760, + "normalized_name": "grand attrition" + }, + { + "appid": 1326870, + "normalized_name": "energysaber masta vr" + }, + { + "appid": 1326920, + "normalized_name": "astrowings space war" + }, + { + "appid": 1326930, + "normalized_name": "neurophobia 神经恐惧" + }, + { + "appid": 1327020, + "normalized_name": "亭上满月映西枝~the forever moon" + }, + { + "appid": 1327040, + "normalized_name": "truck world australia" + }, + { + "appid": 1327080, + "normalized_name": "tower and sword of succubus" + }, + { + "appid": 1327090, + "normalized_name": "solar system colonist" + }, + { + "appid": 1327100, + "normalized_name": "squaxel" + }, + { + "appid": 1327200, + "normalized_name": "redneck party" + }, + { + "appid": 1327260, + "normalized_name": "kojouji" + }, + { + "appid": 1327310, + "normalized_name": "aida" + }, + { + "appid": 1327370, + "normalized_name": "frag" + }, + { + "appid": 1327390, + "normalized_name": "sogo vego" + }, + { + "appid": 1327430, + "normalized_name": "pinku kult hex mortis" + }, + { + "appid": 1327440, + "normalized_name": "flewfie's adventure" + }, + { + "appid": 1327450, + "normalized_name": "valivictorian" + }, + { + "appid": 1327540, + "normalized_name": "cross the moon" + }, + { + "appid": 1327600, + "normalized_name": "logic electrons connect" + }, + { + "appid": 1327720, + "normalized_name": "earth 9000" + }, + { + "appid": 1327810, + "normalized_name": "moon raider" + }, + { + "appid": 1327820, + "normalized_name": "the lost art of innkeeping" + }, + { + "appid": 1327870, + "normalized_name": "sex wheel an erotic game" + }, + { + "appid": 1327920, + "normalized_name": "maestro vr" + }, + { + "appid": 1327970, + "normalized_name": "paco and the tumbling seed box" + }, + { + "appid": 1328000, + "normalized_name": "zombie shooting star" + }, + { + "appid": 1328050, + "normalized_name": "tornado driver" + }, + { + "appid": 1328220, + "normalized_name": "chalice" + }, + { + "appid": 1328350, + "normalized_name": "turbo overkill" + }, + { + "appid": 1328400, + "normalized_name": "fight'n'jokes" + }, + { + "appid": 1328410, + "normalized_name": "newton's cradle puzzle game" + }, + { + "appid": 1328430, + "normalized_name": "lost ed" + }, + { + "appid": 1328460, + "normalized_name": "the host" + }, + { + "appid": 1328470, + "normalized_name": "covid racing" + }, + { + "appid": 1328490, + "normalized_name": "rico jump" + }, + { + "appid": 1328500, + "normalized_name": "the adventures of crackhead jack overdose" + }, + { + "appid": 1328510, + "normalized_name": "save iron globe" + }, + { + "appid": 1328530, + "normalized_name": "quantum protocol" + }, + { + "appid": 1328540, + "normalized_name": "mechinus" + }, + { + "appid": 1328560, + "normalized_name": "tofu topple" + }, + { + "appid": 1328570, + "normalized_name": "lighton" + }, + { + "appid": 1328590, + "normalized_name": "darkair" + }, + { + "appid": 1328620, + "normalized_name": "desolate roads" + }, + { + "appid": 1328660, + "normalized_name": "need for speed hot pursuit" + }, + { + "appid": 1328670, + "normalized_name": "mass effect legendary" + }, + { + "appid": 1328710, + "normalized_name": "capsule hotel simulator" + }, + { + "appid": 1328720, + "normalized_name": "red sails" + }, + { + "appid": 1328750, + "normalized_name": "brdg" + }, + { + "appid": 1328760, + "normalized_name": "妙语连珠" + }, + { + "appid": 1328780, + "normalized_name": "cell defender" + }, + { + "appid": 1328810, + "normalized_name": "shoot. push. repeat." + }, + { + "appid": 1328830, + "normalized_name": "jumper starman" + }, + { + "appid": 1328840, + "normalized_name": "lost in play" + }, + { + "appid": 1328850, + "normalized_name": "trazz" + }, + { + "appid": 1328870, + "normalized_name": "techno chicken (ft. j.geco)" + }, + { + "appid": 1328890, + "normalized_name": "succubus affection" + }, + { + "appid": 1328900, + "normalized_name": "explorer of yggdrasil" + }, + { + "appid": 1328910, + "normalized_name": "otome the exorcist" + }, + { + "appid": 1328920, + "normalized_name": "mira and the mysteries of alchemy" + }, + { + "appid": 1328930, + "normalized_name": "power of language" + }, + { + "appid": 1328990, + "normalized_name": "godsworn" + }, + { + "appid": 1329000, + "normalized_name": "project human" + }, + { + "appid": 1329080, + "normalized_name": "boris the rocket 🚀" + }, + { + "appid": 1329110, + "normalized_name": "2econds to stδrlivht forever my diamond" + }, + { + "appid": 1329130, + "normalized_name": "枪炮派对" + }, + { + "appid": 1329170, + "normalized_name": "death trading card game" + }, + { + "appid": 1329180, + "normalized_name": "neon ride" + }, + { + "appid": 1329190, + "normalized_name": "fear of the dark" + }, + { + "appid": 1329210, + "normalized_name": "ole card game" + }, + { + "appid": 1329240, + "normalized_name": "spirit clash" + }, + { + "appid": 1329280, + "normalized_name": "number one customer service 1号客服" + }, + { + "appid": 1329320, + "normalized_name": "seven doors" + }, + { + "appid": 1329350, + "normalized_name": "蛊婆 lady in tomb" + }, + { + "appid": 1329360, + "normalized_name": "lords of exile" + }, + { + "appid": 1329390, + "normalized_name": "lands of raynar" + }, + { + "appid": 1329400, + "normalized_name": "space dogfight" + }, + { + "appid": 1329410, + "normalized_name": "雀魂麻將(mahjongsoul)" + }, + { + "appid": 1329420, + "normalized_name": "solitaire beach season sounds of waves" + }, + { + "appid": 1329430, + "normalized_name": "holiday mosaics christmas puzzles" + }, + { + "appid": 1329440, + "normalized_name": "detective solitaire inspector magic and the man without face" + }, + { + "appid": 1329450, + "normalized_name": "elly's cake cafe" + }, + { + "appid": 1329460, + "normalized_name": "strike solitaire 2" + }, + { + "appid": 1329470, + "normalized_name": "christmas patchwork frozen" + }, + { + "appid": 1329480, + "normalized_name": "olympus griddlers" + }, + { + "appid": 1329490, + "normalized_name": "virus remedium" + }, + { + "appid": 1329500, + "normalized_name": "spiderheck" + }, + { + "appid": 1329510, + "normalized_name": "big farm story" + }, + { + "appid": 1329530, + "normalized_name": "perv simulator vr" + }, + { + "appid": 1329540, + "normalized_name": "crossbow bloodnight" + }, + { + "appid": 1329600, + "normalized_name": "karting" + }, + { + "appid": 1329630, + "normalized_name": "chickamauga battles" + }, + { + "appid": 1329790, + "normalized_name": "override 2 super mech league" + }, + { + "appid": 1329800, + "normalized_name": "we surround you" + }, + { + "appid": 1329810, + "normalized_name": "nexagon deathmatch" + }, + { + "appid": 1329830, + "normalized_name": "ms. holmes five orange pips collector's" + }, + { + "appid": 1329850, + "normalized_name": "the battle of visby" + }, + { + "appid": 1329880, + "normalized_name": "wild west dynasty" + }, + { + "appid": 1329990, + "normalized_name": "my silly life" + }, + { + "appid": 1330000, + "normalized_name": "stolen realm" + }, + { + "appid": 1330010, + "normalized_name": "retrobound" + }, + { + "appid": 1330080, + "normalized_name": "the fantastic adventure of monsieur grape" + }, + { + "appid": 1330100, + "normalized_name": "the wishing stone" + }, + { + "appid": 1330120, + "normalized_name": "pitcher and the whale" + }, + { + "appid": 1330140, + "normalized_name": "the maze" + }, + { + "appid": 1330160, + "normalized_name": "maze" + }, + { + "appid": 1330170, + "normalized_name": "bishoujo battle cyber panic!" + }, + { + "appid": 1330180, + "normalized_name": "evil manor" + }, + { + "appid": 1330190, + "normalized_name": "a town uncovered" + }, + { + "appid": 1330250, + "normalized_name": "taimanin collection battle arena" + }, + { + "appid": 1330270, + "normalized_name": "factory defense" + }, + { + "appid": 1330290, + "normalized_name": "ready aim fire" + }, + { + "appid": 1330300, + "normalized_name": "roopit and boopit" + }, + { + "appid": 1330330, + "normalized_name": "let's journey" + }, + { + "appid": 1330360, + "normalized_name": "fata deum the god sim" + }, + { + "appid": 1330370, + "normalized_name": "one shell straight to hell" + }, + { + "appid": 1330390, + "normalized_name": "strike the striker z" + }, + { + "appid": 1330400, + "normalized_name": "narco tycoon" + }, + { + "appid": 1330430, + "normalized_name": "celestial empire" + }, + { + "appid": 1330460, + "normalized_name": "becastled" + }, + { + "appid": 1330470, + "normalized_name": "f.i.s.t. forged in shadow torch" + }, + { + "appid": 1330500, + "normalized_name": "libe" + }, + { + "appid": 1330550, + "normalized_name": "magic lessons in wand valley a jigsaw puzzle tale" + }, + { + "appid": 1330560, + "normalized_name": "hairdresser simulator" + }, + { + "appid": 1330570, + "normalized_name": "run! grandpa! run!" + }, + { + "appid": 1330620, + "normalized_name": "webcup.soccer" + }, + { + "appid": 1330630, + "normalized_name": "marcella moon secret on the hill" + }, + { + "appid": 1330660, + "normalized_name": "train life a railway simulator" + }, + { + "appid": 1330670, + "normalized_name": "dragimon dungeons" + }, + { + "appid": 1330690, + "normalized_name": "time patrol" + }, + { + "appid": 1330710, + "normalized_name": "少女洛璃~危险但合法的初体验~(fraulein lolita~first date with you~)" + }, + { + "appid": 1330730, + "normalized_name": "under domain alien invasion simulator" + }, + { + "appid": 1330760, + "normalized_name": "mind mirror" + }, + { + "appid": 1330770, + "normalized_name": "gogoo" + }, + { + "appid": 1330790, + "normalized_name": "hunting unlimited 2" + }, + { + "appid": 1330800, + "normalized_name": "nowhere new" + }, + { + "appid": 1330820, + "normalized_name": "hunting unlimited 3" + }, + { + "appid": 1330830, + "normalized_name": "cannabis farmer strain master" + }, + { + "appid": 1330850, + "normalized_name": "shutter heist" + }, + { + "appid": 1330890, + "normalized_name": "crystal caves hd" + }, + { + "appid": 1330920, + "normalized_name": "captain clive danger from dione" + }, + { + "appid": 1330930, + "normalized_name": "star seeker in the secret of the sorcerous standoff" + }, + { + "appid": 1330940, + "normalized_name": "sword slinger" + }, + { + "appid": 1330960, + "normalized_name": "the commission 1920 organized crime grand strategy" + }, + { + "appid": 1330990, + "normalized_name": "bacuri" + }, + { + "appid": 1331030, + "normalized_name": "vr king of battle cards" + }, + { + "appid": 1331040, + "normalized_name": "card apocalypse 旅人战记" + }, + { + "appid": 1331060, + "normalized_name": "my home poltergeist" + }, + { + "appid": 1331070, + "normalized_name": "no honor" + }, + { + "appid": 1331080, + "normalized_name": "ghost hammer" + }, + { + "appid": 1331090, + "normalized_name": "goblinattack / 进击的哥布林" + }, + { + "appid": 1331120, + "normalized_name": "kármán line the edge of war" + }, + { + "appid": 1331170, + "normalized_name": "mystery trails" + }, + { + "appid": 1331180, + "normalized_name": "destructive contraptions" + }, + { + "appid": 1331210, + "normalized_name": "wolfstride" + }, + { + "appid": 1331240, + "normalized_name": "摇摆地牢 swing dungeon" + }, + { + "appid": 1331290, + "normalized_name": "shattered soul" + }, + { + "appid": 1331310, + "normalized_name": "card escape plane crash" + }, + { + "appid": 1331330, + "normalized_name": "currykitten fpv simulator" + }, + { + "appid": 1331340, + "normalized_name": "break the loop" + }, + { + "appid": 1331370, + "normalized_name": "untitled video game" + }, + { + "appid": 1331390, + "normalized_name": "sfäre" + }, + { + "appid": 1331400, + "normalized_name": "the oort cloud 2020" + }, + { + "appid": 1331410, + "normalized_name": "rogue bots" + }, + { + "appid": 1331420, + "normalized_name": "rogue arrows" + }, + { + "appid": 1331460, + "normalized_name": "super gloves hero" + }, + { + "appid": 1331470, + "normalized_name": "sport shooter" + }, + { + "appid": 1331480, + "normalized_name": "pro table tennis vr" + }, + { + "appid": 1331510, + "normalized_name": "battle talent" + }, + { + "appid": 1331530, + "normalized_name": "paws and soul first step" + }, + { + "appid": 1331540, + "normalized_name": "ノンビリア(nonvilia)" + }, + { + "appid": 1331550, + "normalized_name": "big ambitions" + }, + { + "appid": 1331560, + "normalized_name": "pandorex" + }, + { + "appid": 1331590, + "normalized_name": "7 дней лета youth sky" + }, + { + "appid": 1331600, + "normalized_name": "holodeck arena" + }, + { + "appid": 1331610, + "normalized_name": "super neo tanks" + }, + { + "appid": 1331620, + "normalized_name": "the last survey" + }, + { + "appid": 1331650, + "normalized_name": "troll patrol" + }, + { + "appid": 1331660, + "normalized_name": "rony rise of new york" + }, + { + "appid": 1331670, + "normalized_name": "international space banana" + }, + { + "appid": 1331710, + "normalized_name": "pandemic violence" + }, + { + "appid": 1331860, + "normalized_name": "trident" + }, + { + "appid": 1331870, + "normalized_name": "real kart" + }, + { + "appid": 1331880, + "normalized_name": "maltiva" + }, + { + "appid": 1331900, + "normalized_name": "godfuck | ゴッドファック" + }, + { + "appid": 1331910, + "normalized_name": "morkredd" + }, + { + "appid": 1332010, + "normalized_name": "stray" + }, + { + "appid": 1332040, + "normalized_name": "damn endless orcs" + }, + { + "appid": 1332090, + "normalized_name": "void tyrant" + }, + { + "appid": 1332100, + "normalized_name": "starship simulator" + }, + { + "appid": 1332120, + "normalized_name": "vr aim trainer" + }, + { + "appid": 1332180, + "normalized_name": "cipher zero" + }, + { + "appid": 1332190, + "normalized_name": "truants" + }, + { + "appid": 1332200, + "normalized_name": "the lost planet zenox" + }, + { + "appid": 1332210, + "normalized_name": "signs of the sojourner prologue" + }, + { + "appid": 1332220, + "normalized_name": "mightyy's fps aim trainer" + }, + { + "appid": 1332250, + "normalized_name": "wire flying maid 2" + }, + { + "appid": 1332260, + "normalized_name": "cartridge the tiger" + }, + { + "appid": 1332280, + "normalized_name": "新冠防治" + }, + { + "appid": 1332290, + "normalized_name": "spish" + }, + { + "appid": 1332310, + "normalized_name": "new town needs tamer" + }, + { + "appid": 1332340, + "normalized_name": "disorder" + }, + { + "appid": 1332360, + "normalized_name": "first parsec" + }, + { + "appid": 1332370, + "normalized_name": "the shadow you" + }, + { + "appid": 1332380, + "normalized_name": "bring dad home" + }, + { + "appid": 1332430, + "normalized_name": "chip ‘n clawz vs. the brainioids" + }, + { + "appid": 1332440, + "normalized_name": "futbolín revolution" + }, + { + "appid": 1332450, + "normalized_name": "open the gates!" + }, + { + "appid": 1332460, + "normalized_name": "足球梦之队" + }, + { + "appid": 1332470, + "normalized_name": "gladiator guild manager prologue" + }, + { + "appid": 1332490, + "normalized_name": "chroma" + }, + { + "appid": 1332540, + "normalized_name": "order from caos" + }, + { + "appid": 1332570, + "normalized_name": "the floating city" + }, + { + "appid": 1332590, + "normalized_name": "hero or villain battle royale" + }, + { + "appid": 1332620, + "normalized_name": "ashmedai queen of lust" + }, + { + "appid": 1332630, + "normalized_name": "zombeer delivery mission" + }, + { + "appid": 1332660, + "normalized_name": "super punch patrol" + }, + { + "appid": 1332670, + "normalized_name": "shooter buddies" + }, + { + "appid": 1332690, + "normalized_name": "kill the humans" + }, + { + "appid": 1332720, + "normalized_name": "thief simulator 2" + }, + { + "appid": 1332730, + "normalized_name": "kargast" + }, + { + "appid": 1332760, + "normalized_name": "nienix cosmic warfare" + }, + { + "appid": 1332780, + "normalized_name": "a forever solitude" + }, + { + "appid": 1332790, + "normalized_name": "long distance" + }, + { + "appid": 1332800, + "normalized_name": "snake" + }, + { + "appid": 1332820, + "normalized_name": "liha" + }, + { + "appid": 1332830, + "normalized_name": "exile origin" + }, + { + "appid": 1332840, + "normalized_name": "rise and fall" + }, + { + "appid": 1332860, + "normalized_name": "stayhomer" + }, + { + "appid": 1332890, + "normalized_name": "hopbound" + }, + { + "appid": 1332940, + "normalized_name": "dungeons of clay" + }, + { + "appid": 1332950, + "normalized_name": "kinnikuneko super muscle cat" + }, + { + "appid": 1332970, + "normalized_name": "dab on darkness!" + }, + { + "appid": 1332990, + "normalized_name": "the hayseed knight" + }, + { + "appid": 1333020, + "normalized_name": "roundabout 3" + }, + { + "appid": 1333030, + "normalized_name": "block motion" + }, + { + "appid": 1333050, + "normalized_name": "born to kill" + }, + { + "appid": 1333090, + "normalized_name": "gravity" + }, + { + "appid": 1333100, + "normalized_name": "gray space" + }, + { + "appid": 1333110, + "normalized_name": "dudu kingdom" + }, + { + "appid": 1333120, + "normalized_name": "extreme stream power" + }, + { + "appid": 1333130, + "normalized_name": "flee" + }, + { + "appid": 1333150, + "normalized_name": "miracle warrior of mountains and seas" + }, + { + "appid": 1333160, + "normalized_name": "lurk and rouse" + }, + { + "appid": 1333190, + "normalized_name": "rescue team danger from outer space!" + }, + { + "appid": 1333200, + "normalized_name": "song of nunu a league of legends story" + }, + { + "appid": 1333270, + "normalized_name": "crazy derby racing" + }, + { + "appid": 1333280, + "normalized_name": "klomanager hochgewürgt" + }, + { + "appid": 1333300, + "normalized_name": "黑帮推币机" + }, + { + "appid": 1333330, + "normalized_name": "police hot tale" + }, + { + "appid": 1333340, + "normalized_name": "captains & dungeons" + }, + { + "appid": 1333350, + "normalized_name": "angel legion" + }, + { + "appid": 1333360, + "normalized_name": "jerez's arena" + }, + { + "appid": 1333380, + "normalized_name": "hunters all star battle" + }, + { + "appid": 1333410, + "normalized_name": "stream racer" + }, + { + "appid": 1333420, + "normalized_name": "silenthead ducks hunt" + }, + { + "appid": 1333430, + "normalized_name": "foxy's adventure" + }, + { + "appid": 1333460, + "normalized_name": "nino maze lofi" + }, + { + "appid": 1333470, + "normalized_name": "alex kidd in miracle world dx" + }, + { + "appid": 1333480, + "normalized_name": "dominus multiplayer sim turn based strategy" + }, + { + "appid": 1333490, + "normalized_name": "dead event" + }, + { + "appid": 1333500, + "normalized_name": "combat mech vr" + }, + { + "appid": 1333530, + "normalized_name": "acolyte prologue" + }, + { + "appid": 1333540, + "normalized_name": "tactical suppression" + }, + { + "appid": 1333560, + "normalized_name": "timestamps unconditional love" + }, + { + "appid": 1333590, + "normalized_name": "carnival vr orientation" + }, + { + "appid": 1333620, + "normalized_name": "project prison" + }, + { + "appid": 1333650, + "normalized_name": "kingdoms in chaos" + }, + { + "appid": 1333700, + "normalized_name": "real heroes firefighter hd" + }, + { + "appid": 1333720, + "normalized_name": "from hell" + }, + { + "appid": 1333800, + "normalized_name": "villa's blinds" + }, + { + "appid": 1333810, + "normalized_name": "space mining" + }, + { + "appid": 1333840, + "normalized_name": "overshadow" + }, + { + "appid": 1333860, + "normalized_name": "wild west survival" + }, + { + "appid": 1333870, + "normalized_name": "widgets and gidgets" + }, + { + "appid": 1333890, + "normalized_name": "crappy climber" + }, + { + "appid": 1333900, + "normalized_name": "maidens of the ocean solitaire" + }, + { + "appid": 1333910, + "normalized_name": "sizeable" + }, + { + "appid": 1333920, + "normalized_name": "a place forbidden" + }, + { + "appid": 1333930, + "normalized_name": "world's worst handyman" + }, + { + "appid": 1333940, + "normalized_name": "magirune" + }, + { + "appid": 1333950, + "normalized_name": "viral execution" + }, + { + "appid": 1333980, + "normalized_name": "flyist" + }, + { + "appid": 1333990, + "normalized_name": "saving animals" + }, + { + "appid": 1334000, + "normalized_name": "wordle" + }, + { + "appid": 1334010, + "normalized_name": "last room" + }, + { + "appid": 1334020, + "normalized_name": "aeon on mosaic anemone 时间碎片:奇迹" + }, + { + "appid": 1334040, + "normalized_name": "paper dolls 2 纸人贰" + }, + { + "appid": 1334050, + "normalized_name": "kwarn armada tactics" + }, + { + "appid": 1334070, + "normalized_name": "сон" + }, + { + "appid": 1334080, + "normalized_name": "breakout vr" + }, + { + "appid": 1334110, + "normalized_name": "freakout" + }, + { + "appid": 1334120, + "normalized_name": "goblin rush" + }, + { + "appid": 1334150, + "normalized_name": "sugarwinds" + }, + { + "appid": 1334170, + "normalized_name": "granduck" + }, + { + "appid": 1334200, + "normalized_name": "mülltrennungssimulator 2021" + }, + { + "appid": 1334230, + "normalized_name": "revolution the spark" + }, + { + "appid": 1334240, + "normalized_name": "sunset 20 drone racer" + }, + { + "appid": 1334280, + "normalized_name": "elaborate lands" + }, + { + "appid": 1334290, + "normalized_name": "fourthmotion" + }, + { + "appid": 1334300, + "normalized_name": "charge kid" + }, + { + "appid": 1334310, + "normalized_name": "uproar" + }, + { + "appid": 1334330, + "normalized_name": "rolling arcade" + }, + { + "appid": 1334360, + "normalized_name": "out of control" + }, + { + "appid": 1334420, + "normalized_name": "maze banquet" + }, + { + "appid": 1334440, + "normalized_name": "rise & reign" + }, + { + "appid": 1334500, + "normalized_name": "rp7 spin your own encounter" + }, + { + "appid": 1334510, + "normalized_name": "jane skriff" + }, + { + "appid": 1334530, + "normalized_name": "i am fly" + }, + { + "appid": 1334560, + "normalized_name": "goatshelter" + }, + { + "appid": 1334570, + "normalized_name": "hardship" + }, + { + "appid": 1334580, + "normalized_name": "october night games" + }, + { + "appid": 1334590, + "normalized_name": "furry love" + }, + { + "appid": 1334610, + "normalized_name": "takelshin" + }, + { + "appid": 1334620, + "normalized_name": "kanapocalypse" + }, + { + "appid": 1334630, + "normalized_name": "deja vu collector's" + }, + { + "appid": 1334650, + "normalized_name": "hell shuffle" + }, + { + "appid": 1334700, + "normalized_name": "tomorrow won't come for those without ██████" + }, + { + "appid": 1334730, + "normalized_name": "dread templar" + }, + { + "appid": 1334780, + "normalized_name": "onsen master" + }, + { + "appid": 1334800, + "normalized_name": "everything explosive" + }, + { + "appid": 1334830, + "normalized_name": "salubrious scales" + }, + { + "appid": 1334840, + "normalized_name": "gohome" + }, + { + "appid": 1334910, + "normalized_name": "space slurpies" + }, + { + "appid": 1334960, + "normalized_name": "purrseus" + }, + { + "appid": 1334970, + "normalized_name": "the neon mate" + }, + { + "appid": 1334980, + "normalized_name": "the perplexing orb 2" + }, + { + "appid": 1335020, + "normalized_name": "mind over melee radio" + }, + { + "appid": 1335030, + "normalized_name": "ginkgo" + }, + { + "appid": 1335200, + "normalized_name": "action taimanin" + }, + { + "appid": 1335230, + "normalized_name": "sumire" + }, + { + "appid": 1335240, + "normalized_name": "放置勇者:远征/idle heroes odyssey" + }, + { + "appid": 1335270, + "normalized_name": "cursed letters" + }, + { + "appid": 1335300, + "normalized_name": "野球拳 the warlin of heroes" + }, + { + "appid": 1335340, + "normalized_name": "painted legend 2" + }, + { + "appid": 1335350, + "normalized_name": "kaapelipeli the cable game" + }, + { + "appid": 1335360, + "normalized_name": "chef chen" + }, + { + "appid": 1335370, + "normalized_name": "dvr simulator" + }, + { + "appid": 1335400, + "normalized_name": "rangers" + }, + { + "appid": 1335410, + "normalized_name": "50 level survival" + }, + { + "appid": 1335440, + "normalized_name": "tyrgard archer vr" + }, + { + "appid": 1335480, + "normalized_name": "smart tracks think and run" + }, + { + "appid": 1335500, + "normalized_name": "ヘルズ・ハイ・ハーモナイザーズ" + }, + { + "appid": 1335510, + "normalized_name": "the escape from bungalow" + }, + { + "appid": 1335520, + "normalized_name": "tanima" + }, + { + "appid": 1335530, + "normalized_name": "alisa" + }, + { + "appid": 1335560, + "normalized_name": "unreal life" + }, + { + "appid": 1335570, + "normalized_name": "raven port" + }, + { + "appid": 1335580, + "normalized_name": "monsty corp" + }, + { + "appid": 1335610, + "normalized_name": "joy" + }, + { + "appid": 1335630, + "normalized_name": "imha" + }, + { + "appid": 1335680, + "normalized_name": "the kind camomille" + }, + { + "appid": 1335700, + "normalized_name": "marbleous blocks" + }, + { + "appid": 1335780, + "normalized_name": "flight attendant simulator" + }, + { + "appid": 1335790, + "normalized_name": "operation tango" + }, + { + "appid": 1335810, + "normalized_name": "bunny's maze" + }, + { + "appid": 1335820, + "normalized_name": "100 vacas" + }, + { + "appid": 1335830, + "normalized_name": "len's island" + }, + { + "appid": 1335880, + "normalized_name": "duo defenders tower defense" + }, + { + "appid": 1335890, + "normalized_name": "fractured voyage" + }, + { + "appid": 1335910, + "normalized_name": "droid guier" + }, + { + "appid": 1335940, + "normalized_name": "ball it hell" + }, + { + "appid": 1335970, + "normalized_name": "greedy maze" + }, + { + "appid": 1336020, + "normalized_name": "防衛の村長~mayor of defense~" + }, + { + "appid": 1336040, + "normalized_name": "easter pairs" + }, + { + "appid": 1336060, + "normalized_name": "taisho x alice episode 2" + }, + { + "appid": 1336070, + "normalized_name": "ynglet prologue" + }, + { + "appid": 1336100, + "normalized_name": "arcadium" + }, + { + "appid": 1336120, + "normalized_name": "bridge constructor the walking dead" + }, + { + "appid": 1336130, + "normalized_name": "inside the box" + }, + { + "appid": 1336150, + "normalized_name": "whispers of the ancients" + }, + { + "appid": 1336160, + "normalized_name": "chupa chupa vr" + }, + { + "appid": 1336170, + "normalized_name": "the ca" + }, + { + "appid": 1336180, + "normalized_name": "floodland" + }, + { + "appid": 1336210, + "normalized_name": "the er patient typhon" + }, + { + "appid": 1336230, + "normalized_name": "avrach resurrection" + }, + { + "appid": 1336290, + "normalized_name": "artha" + }, + { + "appid": 1336340, + "normalized_name": "sprout" + }, + { + "appid": 1336380, + "normalized_name": "gripper" + }, + { + "appid": 1336400, + "normalized_name": "heavy is the hand that holds the six shooter" + }, + { + "appid": 1336420, + "normalized_name": "breaking lockdown" + }, + { + "appid": 1336430, + "normalized_name": "waves of rotting flesh" + }, + { + "appid": 1336440, + "normalized_name": "enchanted kingdom the secret of the golden lamp collector's" + }, + { + "appid": 1336450, + "normalized_name": "poco in" + }, + { + "appid": 1336460, + "normalized_name": "moirs" + }, + { + "appid": 1336490, + "normalized_name": "against the storm" + }, + { + "appid": 1336560, + "normalized_name": "hashiriya drifter online drift racing multiplayer (drift/drag/racing)" + }, + { + "appid": 1336570, + "normalized_name": "i made a ..." + }, + { + "appid": 1336590, + "normalized_name": "sackgasse the last resort" + }, + { + "appid": 1336600, + "normalized_name": "cabin fever" + }, + { + "appid": 1336620, + "normalized_name": "shutter 2" + }, + { + "appid": 1336680, + "normalized_name": "wald & gutz under rocks" + }, + { + "appid": 1336690, + "normalized_name": "zombie mathters" + }, + { + "appid": 1336700, + "normalized_name": "space aliens invaders" + }, + { + "appid": 1336790, + "normalized_name": "mini words top games" + }, + { + "appid": 1336800, + "normalized_name": "cybershow" + }, + { + "appid": 1336830, + "normalized_name": "東方金株店 ~touhou money stocks shops~" + }, + { + "appid": 1336840, + "normalized_name": "naudrion fall of the empire" + }, + { + "appid": 1336880, + "normalized_name": "kebab simulator" + }, + { + "appid": 1336910, + "normalized_name": "space launch simulator" + }, + { + "appid": 1336940, + "normalized_name": "beast master" + }, + { + "appid": 1336950, + "normalized_name": "voxfox" + }, + { + "appid": 1336960, + "normalized_name": "keyboard piano ist" + }, + { + "appid": 1336970, + "normalized_name": "ashley the emptiness inside" + }, + { + "appid": 1336980, + "normalized_name": "nobunaga's ambition awakening" + }, + { + "appid": 1337000, + "normalized_name": "bugvasion td" + }, + { + "appid": 1337010, + "normalized_name": "alba a wildlife adventure" + }, + { + "appid": 1337020, + "normalized_name": "the last surface" + }, + { + "appid": 1337030, + "normalized_name": "en train" + }, + { + "appid": 1337070, + "normalized_name": "matrix blocks" + }, + { + "appid": 1337080, + "normalized_name": "blockicker" + }, + { + "appid": 1337170, + "normalized_name": "lords of the shattered kingdom" + }, + { + "appid": 1337200, + "normalized_name": "da! russian quiz" + }, + { + "appid": 1337210, + "normalized_name": "i wanna build a robot" + }, + { + "appid": 1337250, + "normalized_name": "arcane duel 術法亂鬥" + }, + { + "appid": 1337260, + "normalized_name": "revolution triumph" + }, + { + "appid": 1337270, + "normalized_name": "pirates girls" + }, + { + "appid": 1337280, + "normalized_name": "neon girls" + }, + { + "appid": 1337300, + "normalized_name": "free royale" + }, + { + "appid": 1337430, + "normalized_name": "personality dating sim" + }, + { + "appid": 1337520, + "normalized_name": "risk of rain returns" + }, + { + "appid": 1337530, + "normalized_name": "maskmaker" + }, + { + "appid": 1337590, + "normalized_name": "sexena arena tales" + }, + { + "appid": 1337600, + "normalized_name": "wetware" + }, + { + "appid": 1337610, + "normalized_name": "the last warrior" + }, + { + "appid": 1337640, + "normalized_name": "towers inc." + }, + { + "appid": 1337650, + "normalized_name": "flak" + }, + { + "appid": 1337660, + "normalized_name": "shikari rising" + }, + { + "appid": 1337710, + "normalized_name": "sanae toumaden x / 早苗討魔伝x" + }, + { + "appid": 1337720, + "normalized_name": "cityrunner" + }, + { + "appid": 1337760, + "normalized_name": "potion permit" + }, + { + "appid": 1337780, + "normalized_name": "卡牌游戏" + }, + { + "appid": 1337810, + "normalized_name": "finger fortress (指间堡垒)" + }, + { + "appid": 1337820, + "normalized_name": "emergence" + }, + { + "appid": 1337840, + "normalized_name": "klondike solitaire collection" + }, + { + "appid": 1337870, + "normalized_name": "argy bargy legends" + }, + { + "appid": 1337880, + "normalized_name": "foxen island" + }, + { + "appid": 1337890, + "normalized_name": "choice of life middle ages" + }, + { + "appid": 1337910, + "normalized_name": "dead earth zombies" + }, + { + "appid": 1337920, + "normalized_name": "serial cleaners" + }, + { + "appid": 1337930, + "normalized_name": "都广丹青录" + }, + { + "appid": 1338020, + "normalized_name": "super glitter rush" + }, + { + "appid": 1338030, + "normalized_name": "电视台模拟国 entertainment simulator" + }, + { + "appid": 1338090, + "normalized_name": "the zombie's horror" + }, + { + "appid": 1338100, + "normalized_name": "teratopia" + }, + { + "appid": 1338130, + "normalized_name": "popo's tower" + }, + { + "appid": 1338140, + "normalized_name": "vr zen garden & asmr playground" + }, + { + "appid": 1338160, + "normalized_name": "monster tower" + }, + { + "appid": 1338180, + "normalized_name": "dungeon scale" + }, + { + "appid": 1338220, + "normalized_name": "forsaken portals" + }, + { + "appid": 1338250, + "normalized_name": "nohra" + }, + { + "appid": 1338320, + "normalized_name": "do animals dream?" + }, + { + "appid": 1338330, + "normalized_name": "lemon cake" + }, + { + "appid": 1338360, + "normalized_name": "color security" + }, + { + "appid": 1338390, + "normalized_name": "tyrannis" + }, + { + "appid": 1338410, + "normalized_name": "para bellum" + }, + { + "appid": 1338420, + "normalized_name": "a night in berlin" + }, + { + "appid": 1338430, + "normalized_name": "isolation simulator" + }, + { + "appid": 1338460, + "normalized_name": "jiangshi x daoshi" + }, + { + "appid": 1338490, + "normalized_name": "afterblast" + }, + { + "appid": 1338520, + "normalized_name": "bouncy cat" + }, + { + "appid": 1338560, + "normalized_name": "kingdom of bees" + }, + { + "appid": 1338570, + "normalized_name": "sheng tian (升天) episode 1" + }, + { + "appid": 1338580, + "normalized_name": "mcpixel 3" + }, + { + "appid": 1338620, + "normalized_name": "troupe" + }, + { + "appid": 1338640, + "normalized_name": "a day in east europe" + }, + { + "appid": 1338660, + "normalized_name": "arcano" + }, + { + "appid": 1338730, + "normalized_name": "paramount hero" + }, + { + "appid": 1338770, + "normalized_name": "sniper ghost warrior contracts 2" + }, + { + "appid": 1338780, + "normalized_name": "nekopter" + }, + { + "appid": 1338790, + "normalized_name": "good mourning" + }, + { + "appid": 1338820, + "normalized_name": "vrspace" + }, + { + "appid": 1338830, + "normalized_name": "最后的大法师 光明之旅(last archmage journey of light)" + }, + { + "appid": 1338840, + "normalized_name": "death in the water 2" + }, + { + "appid": 1338880, + "normalized_name": "hentai xxx plus jigsaws vol 2" + }, + { + "appid": 1338920, + "normalized_name": "space fat to the core" + }, + { + "appid": 1338930, + "normalized_name": "invaliens" + }, + { + "appid": 1338940, + "normalized_name": "head as code" + }, + { + "appid": 1338950, + "normalized_name": "neon knight" + }, + { + "appid": 1338980, + "normalized_name": "chess knights viking lands" + }, + { + "appid": 1339000, + "normalized_name": "aquarium designer" + }, + { + "appid": 1339030, + "normalized_name": "final hope the plot" + }, + { + "appid": 1339080, + "normalized_name": "neon fusion" + }, + { + "appid": 1339110, + "normalized_name": "the maze humanity" + }, + { + "appid": 1339170, + "normalized_name": "mean while" + }, + { + "appid": 1339180, + "normalized_name": "xoo xeno xafari" + }, + { + "appid": 1339200, + "normalized_name": "dimension shift" + }, + { + "appid": 1339220, + "normalized_name": "matt's project zombies open world" + }, + { + "appid": 1339260, + "normalized_name": "末代侠客" + }, + { + "appid": 1339290, + "normalized_name": "zonex" + }, + { + "appid": 1339310, + "normalized_name": "solitaire 3d" + }, + { + "appid": 1339330, + "normalized_name": "samurai cooking" + }, + { + "appid": 1339340, + "normalized_name": "the unbeatable path" + }, + { + "appid": 1339360, + "normalized_name": "soulace" + }, + { + "appid": 1339370, + "normalized_name": "mv mazes" + }, + { + "appid": 1339380, + "normalized_name": "kabukicho story" + }, + { + "appid": 1339410, + "normalized_name": "雾之本境s" + }, + { + "appid": 1339420, + "normalized_name": "tommy's tragedy" + }, + { + "appid": 1339450, + "normalized_name": "choco pixel 6" + }, + { + "appid": 1339460, + "normalized_name": "dinosaur fossil hunter prologue" + }, + { + "appid": 1339490, + "normalized_name": "american camper simulator" + }, + { + "appid": 1339530, + "normalized_name": "the fall of eskaria" + }, + { + "appid": 1339550, + "normalized_name": "alien cat 3" + }, + { + "appid": 1339560, + "normalized_name": "count of hatchet" + }, + { + "appid": 1339580, + "normalized_name": "fox! hen! bag!" + }, + { + "appid": 1339590, + "normalized_name": "dextrissimi" + }, + { + "appid": 1339620, + "normalized_name": "action supercross" + }, + { + "appid": 1339640, + "normalized_name": "the ice caves" + }, + { + "appid": 1339650, + "normalized_name": "chv vr trunk escape" + }, + { + "appid": 1339670, + "normalized_name": "treasure of cutuma 3rd" + }, + { + "appid": 1339750, + "normalized_name": "home a quarantine story" + }, + { + "appid": 1339790, + "normalized_name": "battleground" + }, + { + "appid": 1339800, + "normalized_name": "seeker 2" + }, + { + "appid": 1339820, + "normalized_name": "flowers garden solitaire" + }, + { + "appid": 1339850, + "normalized_name": "karting grand prix minigame" + }, + { + "appid": 1339860, + "normalized_name": "lumione" + }, + { + "appid": 1339870, + "normalized_name": "the last saviour" + }, + { + "appid": 1339890, + "normalized_name": "hentai milf quiz" + }, + { + "appid": 1339900, + "normalized_name": "bot.vinnik chess combination lessons" + }, + { + "appid": 1339920, + "normalized_name": "freedom how i escaped" + }, + { + "appid": 1339960, + "normalized_name": "blu chronicles of talpa" + }, + { + "appid": 1340020, + "normalized_name": "aster fpv drone simulator" + }, + { + "appid": 1340050, + "normalized_name": "hand shadow" + }, + { + "appid": 1340080, + "normalized_name": "bunny memory" + }, + { + "appid": 1340120, + "normalized_name": "ixshe tell" + }, + { + "appid": 1340130, + "normalized_name": "aokana four rhythms across the blue extra1" + }, + { + "appid": 1340180, + "normalized_name": "sherwood extreme" + }, + { + "appid": 1340210, + "normalized_name": "inspector javert and the oath of blood" + }, + { + "appid": 1340240, + "normalized_name": "morte" + }, + { + "appid": 1340260, + "normalized_name": "labyrinth of the chaka king" + }, + { + "appid": 1340300, + "normalized_name": "crazy kung fu" + }, + { + "appid": 1340310, + "normalized_name": "nine lives" + }, + { + "appid": 1340320, + "normalized_name": "master vs slave" + }, + { + "appid": 1340330, + "normalized_name": "牝静的开端" + }, + { + "appid": 1340360, + "normalized_name": "polycalypse last bit of hope" + }, + { + "appid": 1340380, + "normalized_name": "kitori academy" + }, + { + "appid": 1340400, + "normalized_name": "solitaire. elemental wizards" + }, + { + "appid": 1340410, + "normalized_name": "carnage" + }, + { + "appid": 1340420, + "normalized_name": "slime up" + }, + { + "appid": 1340440, + "normalized_name": "忘川" + }, + { + "appid": 1340470, + "normalized_name": "wait! life is beautiful! prologue" + }, + { + "appid": 1340480, + "normalized_name": "the cosmic wheel sisterhood" + }, + { + "appid": 1340490, + "normalized_name": "demon tamer" + }, + { + "appid": 1340500, + "normalized_name": "little fire girl" + }, + { + "appid": 1340520, + "normalized_name": "chroma" + }, + { + "appid": 1340530, + "normalized_name": "mr. prepper prologue" + }, + { + "appid": 1340540, + "normalized_name": "chimeras cherished serpent collector's" + }, + { + "appid": 1340570, + "normalized_name": "golf on mars" + }, + { + "appid": 1340600, + "normalized_name": "ecchi jack" + }, + { + "appid": 1340640, + "normalized_name": "horror tales the wine" + }, + { + "appid": 1340690, + "normalized_name": "mythos party" + }, + { + "appid": 1340720, + "normalized_name": "state of decay 3" + }, + { + "appid": 1340730, + "normalized_name": "oath" + }, + { + "appid": 1340740, + "normalized_name": "kawaii memory" + }, + { + "appid": 1340760, + "normalized_name": "tusk of spirit" + }, + { + "appid": 1340770, + "normalized_name": "artifacts" + }, + { + "appid": 1340810, + "normalized_name": "the night fisherman" + }, + { + "appid": 1340820, + "normalized_name": "wreck the insects" + }, + { + "appid": 1340850, + "normalized_name": "韦弗利山 waverly hills" + }, + { + "appid": 1340860, + "normalized_name": "灰烬行星与填鸭少女" + }, + { + "appid": 1340870, + "normalized_name": "limiter!" + }, + { + "appid": 1340890, + "normalized_name": "calorie defenders" + }, + { + "appid": 1340910, + "normalized_name": "from the grave" + }, + { + "appid": 1340920, + "normalized_name": "piggy gambit" + }, + { + "appid": 1340950, + "normalized_name": "菜鸟社畜不会梦见老板的屁股" + }, + { + "appid": 1340980, + "normalized_name": "pop it! or don't.." + }, + { + "appid": 1340990, + "normalized_name": "rise of the ronin" + }, + { + "appid": 1341050, + "normalized_name": "balan wonderworld" + }, + { + "appid": 1341080, + "normalized_name": "marie antoinette's solitaire" + }, + { + "appid": 1341090, + "normalized_name": "space castle" + }, + { + "appid": 1341100, + "normalized_name": "demonic blade" + }, + { + "appid": 1341120, + "normalized_name": "oops! zombie swarm" + }, + { + "appid": 1341140, + "normalized_name": "enoma a new beginning" + }, + { + "appid": 1341160, + "normalized_name": "infinite tournament paintball" + }, + { + "appid": 1341170, + "normalized_name": "strategic mind spectre of communism" + }, + { + "appid": 1341190, + "normalized_name": "furry nya" + }, + { + "appid": 1341200, + "normalized_name": "dynasty warriors 9 empires" + }, + { + "appid": 1341210, + "normalized_name": "afterinfection" + }, + { + "appid": 1341220, + "normalized_name": "blackjack math" + }, + { + "appid": 1341240, + "normalized_name": "the great adventures of hemeko & ch0_ch0" + }, + { + "appid": 1341250, + "normalized_name": "reiterland meine rennpferde" + }, + { + "appid": 1341270, + "normalized_name": "die drei freunde von der reitschule" + }, + { + "appid": 1341280, + "normalized_name": "notre dame de paris journey back in time" + }, + { + "appid": 1341290, + "normalized_name": "we were here forever" + }, + { + "appid": 1341300, + "normalized_name": "cocaine dealer" + }, + { + "appid": 1341310, + "normalized_name": "space pioneer" + }, + { + "appid": 1341330, + "normalized_name": "gatewalkers (alpha)" + }, + { + "appid": 1341340, + "normalized_name": "contact spotted" + }, + { + "appid": 1341400, + "normalized_name": "oniria crimes" + }, + { + "appid": 1341430, + "normalized_name": "inexplicable deaths in damipolis inner thoughts" + }, + { + "appid": 1341440, + "normalized_name": "world process" + }, + { + "appid": 1341450, + "normalized_name": "yolo space hacker" + }, + { + "appid": 1341460, + "normalized_name": "touhou dolldraft" + }, + { + "appid": 1341470, + "normalized_name": "4ife" + }, + { + "appid": 1341490, + "normalized_name": "hellsweeper vr" + }, + { + "appid": 1341500, + "normalized_name": "the haunted exmone theatre" + }, + { + "appid": 1341550, + "normalized_name": "porn handyman vr" + }, + { + "appid": 1341570, + "normalized_name": "dohots" + }, + { + "appid": 1341620, + "normalized_name": "ancient evil" + }, + { + "appid": 1341630, + "normalized_name": "go go cowboy" + }, + { + "appid": 1341640, + "normalized_name": "hard driver" + }, + { + "appid": 1341650, + "normalized_name": "hard driver 2" + }, + { + "appid": 1341660, + "normalized_name": "clickmonster" + }, + { + "appid": 1341710, + "normalized_name": "nightmare zone" + }, + { + "appid": 1341720, + "normalized_name": "alt254" + }, + { + "appid": 1341740, + "normalized_name": "askold path of the shadow" + }, + { + "appid": 1341760, + "normalized_name": "solus sector tactics" + }, + { + "appid": 1341780, + "normalized_name": "super huey iii" + }, + { + "appid": 1341820, + "normalized_name": "as dusk falls" + }, + { + "appid": 1341830, + "normalized_name": "steel thunder" + }, + { + "appid": 1341890, + "normalized_name": "corridor 7 alien invasion" + }, + { + "appid": 1341900, + "normalized_name": "castle on the coast" + }, + { + "appid": 1341930, + "normalized_name": "furry woof" + }, + { + "appid": 1341960, + "normalized_name": "fuhrer in la special" + }, + { + "appid": 1341980, + "normalized_name": "coronavirus nano force" + }, + { + "appid": 1342020, + "normalized_name": "detour bus" + }, + { + "appid": 1342040, + "normalized_name": "sylphy and the sleepless island" + }, + { + "appid": 1342050, + "normalized_name": "lisa and the grimoire" + }, + { + "appid": 1342060, + "normalized_name": "the dead end" + }, + { + "appid": 1342070, + "normalized_name": "the triumphant return of diabolos" + }, + { + "appid": 1342080, + "normalized_name": "the maiden the butler and the witch" + }, + { + "appid": 1342090, + "normalized_name": "primitive hearts" + }, + { + "appid": 1342100, + "normalized_name": "evening starter" + }, + { + "appid": 1342110, + "normalized_name": "mage of the olekta desert" + }, + { + "appid": 1342120, + "normalized_name": "castaway of the ardusta sea" + }, + { + "appid": 1342130, + "normalized_name": "riders 2491" + }, + { + "appid": 1342150, + "normalized_name": "the cabbage effect" + }, + { + "appid": 1342180, + "normalized_name": "bugz!" + }, + { + "appid": 1342220, + "normalized_name": "jurassic fantasy" + }, + { + "appid": 1342240, + "normalized_name": "gunbarich" + }, + { + "appid": 1342250, + "normalized_name": "zero gunner 2" + }, + { + "appid": 1342260, + "normalized_name": "samurai shodown" + }, + { + "appid": 1342270, + "normalized_name": "nofrills solitaire" + }, + { + "appid": 1342290, + "normalized_name": "himeko maid" + }, + { + "appid": 1342330, + "normalized_name": "mad games tycoon 2" + }, + { + "appid": 1342340, + "normalized_name": "madguns" + }, + { + "appid": 1342360, + "normalized_name": "everlasting guilt" + }, + { + "appid": 1342400, + "normalized_name": "burning lands" + }, + { + "appid": 1342410, + "normalized_name": "muv luv unlimited the day after episode 02" + }, + { + "appid": 1342480, + "normalized_name": "hard night vr" + }, + { + "appid": 1342490, + "normalized_name": "daemon x machina titanic scion" + }, + { + "appid": 1342500, + "normalized_name": "psyber" + }, + { + "appid": 1342520, + "normalized_name": "bad apples" + }, + { + "appid": 1342540, + "normalized_name": "orb and the stars" + }, + { + "appid": 1342550, + "normalized_name": "dolphin trainer vr" + }, + { + "appid": 1342560, + "normalized_name": "hyperspace harvest" + }, + { + "appid": 1342600, + "normalized_name": "oneons prisoners" + }, + { + "appid": 1342620, + "normalized_name": "werewolf the apocalypse — heart of the forest" + }, + { + "appid": 1342630, + "normalized_name": "rappelz" + }, + { + "appid": 1342640, + "normalized_name": "relic guardians" + }, + { + "appid": 1342660, + "normalized_name": "cobots" + }, + { + "appid": 1342690, + "normalized_name": "radiolight" + }, + { + "appid": 1342730, + "normalized_name": "truzzle" + }, + { + "appid": 1342740, + "normalized_name": "moose life" + }, + { + "appid": 1342750, + "normalized_name": "forsaken barn" + }, + { + "appid": 1342770, + "normalized_name": "逃出囚笼 rush out of the room" + }, + { + "appid": 1342790, + "normalized_name": "gangv | vr & pc battle royale" + }, + { + "appid": 1342810, + "normalized_name": "united assault normandy '44" + }, + { + "appid": 1342850, + "normalized_name": "bright days in quarantine" + }, + { + "appid": 1342890, + "normalized_name": "who needs a hero?" + }, + { + "appid": 1342900, + "normalized_name": "basketing" + }, + { + "appid": 1342910, + "normalized_name": "winter's trumpet" + }, + { + "appid": 1342940, + "normalized_name": "hecatomb" + }, + { + "appid": 1343010, + "normalized_name": "antimatter" + }, + { + "appid": 1343040, + "normalized_name": "blocky ball" + }, + { + "appid": 1343050, + "normalized_name": "duality of doodles" + }, + { + "appid": 1343060, + "normalized_name": "big cock simulator" + }, + { + "appid": 1343090, + "normalized_name": "kiara and my ara ara adventure" + }, + { + "appid": 1343100, + "normalized_name": "life of food" + }, + { + "appid": 1343110, + "normalized_name": "realms of eternity" + }, + { + "appid": 1343140, + "normalized_name": "choices that matter and the sun went out" + }, + { + "appid": 1343150, + "normalized_name": "florida simulator 1986" + }, + { + "appid": 1343220, + "normalized_name": "lingering" + }, + { + "appid": 1343230, + "normalized_name": "rainycloud" + }, + { + "appid": 1343240, + "normalized_name": "thymesia" + }, + { + "appid": 1343260, + "normalized_name": "i dream of you and ice cream" + }, + { + "appid": 1343310, + "normalized_name": "space wave race" + }, + { + "appid": 1343330, + "normalized_name": "xendless" + }, + { + "appid": 1343340, + "normalized_name": "horror tales the beggar" + }, + { + "appid": 1343370, + "normalized_name": "old school runescape" + }, + { + "appid": 1343390, + "normalized_name": "detective boiled hard / case file death of the space dino hunter" + }, + { + "appid": 1343400, + "normalized_name": "runescape" + }, + { + "appid": 1343410, + "normalized_name": "yes brother" + }, + { + "appid": 1343450, + "normalized_name": "whiskers & tail" + }, + { + "appid": 1343460, + "normalized_name": "selenwald" + }, + { + "appid": 1343480, + "normalized_name": "flow gear racing" + }, + { + "appid": 1343510, + "normalized_name": "karakia shooter" + }, + { + "appid": 1343520, + "normalized_name": "survival lost way" + }, + { + "appid": 1343550, + "normalized_name": "conflict area" + }, + { + "appid": 1343580, + "normalized_name": "scary hospital horror game" + }, + { + "appid": 1343640, + "normalized_name": "polyville canyon" + }, + { + "appid": 1343660, + "normalized_name": "true detective solitaire" + }, + { + "appid": 1343670, + "normalized_name": "dealer's life 2" + }, + { + "appid": 1343680, + "normalized_name": "1001 jigsaw earth chronicles 2" + }, + { + "appid": 1343690, + "normalized_name": "santa's toy factory nonograms" + }, + { + "appid": 1343700, + "normalized_name": "break space out of bounds" + }, + { + "appid": 1343750, + "normalized_name": "z race" + }, + { + "appid": 1343810, + "normalized_name": "fallen hero retribution" + }, + { + "appid": 1343830, + "normalized_name": "kulan" + }, + { + "appid": 1343850, + "normalized_name": "dr milos revenge" + }, + { + "appid": 1343880, + "normalized_name": "afraid of the night" + }, + { + "appid": 1343920, + "normalized_name": "mighty fling" + }, + { + "appid": 1343950, + "normalized_name": "subell's abyss" + }, + { + "appid": 1343970, + "normalized_name": "the running man" + }, + { + "appid": 1343990, + "normalized_name": "dooria" + }, + { + "appid": 1344070, + "normalized_name": "trollhunters defenders of arcadia" + }, + { + "appid": 1344110, + "normalized_name": "the elf's lewd training" + }, + { + "appid": 1344120, + "normalized_name": "bistro days" + }, + { + "appid": 1344140, + "normalized_name": "viking chronicles tale of the lost queen" + }, + { + "appid": 1344170, + "normalized_name": "sudden way" + }, + { + "appid": 1344210, + "normalized_name": "mysteries of darkness" + }, + { + "appid": 1344340, + "normalized_name": "galsad galactic salvage and disposal" + }, + { + "appid": 1344350, + "normalized_name": "succubus prologue" + }, + { + "appid": 1344420, + "normalized_name": "teodoro and the evil machines" + }, + { + "appid": 1344430, + "normalized_name": "kosta projekt" + }, + { + "appid": 1344440, + "normalized_name": "spaceflux" + }, + { + "appid": 1344450, + "normalized_name": "black smith2" + }, + { + "appid": 1344520, + "normalized_name": "apprentice arriving" + }, + { + "appid": 1344530, + "normalized_name": "vrkshop" + }, + { + "appid": 1344550, + "normalized_name": "warspace 2" + }, + { + "appid": 1344570, + "normalized_name": "300k the game" + }, + { + "appid": 1344630, + "normalized_name": "retrowave hexon" + }, + { + "appid": 1344660, + "normalized_name": "substantia cana" + }, + { + "appid": 1344690, + "normalized_name": "crypt of the gods" + }, + { + "appid": 1344730, + "normalized_name": "evolution adventure" + }, + { + "appid": 1344740, + "normalized_name": "footsies rollback" + }, + { + "appid": 1344780, + "normalized_name": "throwing stone" + }, + { + "appid": 1344790, + "normalized_name": "unsung kingdom" + }, + { + "appid": 1344800, + "normalized_name": "twin turbo supercharged nitro fueled papamobile" + }, + { + "appid": 1344810, + "normalized_name": "homeland lay to rest" + }, + { + "appid": 1344820, + "normalized_name": "stargaze" + }, + { + "appid": 1344840, + "normalized_name": "aker fern visual novel" + }, + { + "appid": 1344860, + "normalized_name": "thrust legend" + }, + { + "appid": 1344880, + "normalized_name": "finders keepers" + }, + { + "appid": 1344890, + "normalized_name": "god game" + }, + { + "appid": 1344900, + "normalized_name": "omg one more goal!" + }, + { + "appid": 1344930, + "normalized_name": "magvigor" + }, + { + "appid": 1344950, + "normalized_name": "lone king" + }, + { + "appid": 1344970, + "normalized_name": "castle heck" + }, + { + "appid": 1344980, + "normalized_name": "gunpig firepower for hire" + }, + { + "appid": 1344990, + "normalized_name": "zefyr a thief's melody" + }, + { + "appid": 1345030, + "normalized_name": "bomber games" + }, + { + "appid": 1345040, + "normalized_name": "girabox" + }, + { + "appid": 1345050, + "normalized_name": "wotheguel" + }, + { + "appid": 1345080, + "normalized_name": "12 hours to die" + }, + { + "appid": 1345120, + "normalized_name": "creepwars td" + }, + { + "appid": 1345140, + "normalized_name": "claw crane company" + }, + { + "appid": 1345150, + "normalized_name": "mushroom challenge" + }, + { + "appid": 1345180, + "normalized_name": "no man is an island" + }, + { + "appid": 1345190, + "normalized_name": "super psy penguin" + }, + { + "appid": 1345200, + "normalized_name": "pokie the stickfigure" + }, + { + "appid": 1345220, + "normalized_name": "liveonidol" + }, + { + "appid": 1345240, + "normalized_name": "shuffs" + }, + { + "appid": 1345270, + "normalized_name": "road to hollow hills" + }, + { + "appid": 1345280, + "normalized_name": "slide animal race" + }, + { + "appid": 1345300, + "normalized_name": "item collector pirates" + }, + { + "appid": 1345320, + "normalized_name": "deep space gardening" + }, + { + "appid": 1345340, + "normalized_name": "oppaidius desert island!" + }, + { + "appid": 1345350, + "normalized_name": "simply puzzles junctions" + }, + { + "appid": 1345360, + "normalized_name": "strip black jack hot gym" + }, + { + "appid": 1345370, + "normalized_name": "promesa" + }, + { + "appid": 1345380, + "normalized_name": "biteville" + }, + { + "appid": 1345390, + "normalized_name": "batallas galacticas" + }, + { + "appid": 1345400, + "normalized_name": "群鹰之岛" + }, + { + "appid": 1345430, + "normalized_name": "sudoku dreams" + }, + { + "appid": 1345440, + "normalized_name": "toy tanks" + }, + { + "appid": 1345450, + "normalized_name": "phantom doctrine the cabal" + }, + { + "appid": 1345470, + "normalized_name": "lockheart indigo" + }, + { + "appid": 1345520, + "normalized_name": "quiet town" + }, + { + "appid": 1345720, + "normalized_name": "fbi agent simulator" + }, + { + "appid": 1345740, + "normalized_name": "恋爱绮谭~不存在的夏天~" + }, + { + "appid": 1345750, + "normalized_name": "映夢 dream" + }, + { + "appid": 1345760, + "normalized_name": "matchpoint tennis championships" + }, + { + "appid": 1345770, + "normalized_name": "adventure farm vr" + }, + { + "appid": 1345780, + "normalized_name": "funny bunny gun" + }, + { + "appid": 1345810, + "normalized_name": "mojica" + }, + { + "appid": 1345820, + "normalized_name": "ragnarock" + }, + { + "appid": 1345830, + "normalized_name": "迷宫:消灭机器人" + }, + { + "appid": 1345860, + "normalized_name": "grapple dog" + }, + { + "appid": 1345870, + "normalized_name": "franchise hockey manager 7" + }, + { + "appid": 1345890, + "normalized_name": "deliver us mars" + }, + { + "appid": 1345900, + "normalized_name": "space defense grid" + }, + { + "appid": 1345910, + "normalized_name": "the airline project next gen" + }, + { + "appid": 1345940, + "normalized_name": "anagrams" + }, + { + "appid": 1345950, + "normalized_name": "heptagon" + }, + { + "appid": 1346010, + "normalized_name": "rims racing" + }, + { + "appid": 1346020, + "normalized_name": "wargroove 2" + }, + { + "appid": 1346030, + "normalized_name": "a.t.o.m." + }, + { + "appid": 1346070, + "normalized_name": "sign of silence" + }, + { + "appid": 1346100, + "normalized_name": "social distancing simulator" + }, + { + "appid": 1346110, + "normalized_name": "rock paper shift ⌞redux⌝" + }, + { + "appid": 1346120, + "normalized_name": "my lil horror" + }, + { + "appid": 1346170, + "normalized_name": "puppetshow fatal mistake collector's" + }, + { + "appid": 1346210, + "normalized_name": "regrowth" + }, + { + "appid": 1346220, + "normalized_name": "meet girls" + }, + { + "appid": 1346240, + "normalized_name": "sporadic spire" + }, + { + "appid": 1346250, + "normalized_name": "slide stories neko's journey" + }, + { + "appid": 1346260, + "normalized_name": "another road" + }, + { + "appid": 1346270, + "normalized_name": "hentai jazz" + }, + { + "appid": 1346280, + "normalized_name": "stellaspella" + }, + { + "appid": 1346290, + "normalized_name": "jay and silent bob chronic blunt punch" + }, + { + "appid": 1346300, + "normalized_name": "realfit (vr fitness)" + }, + { + "appid": 1346310, + "normalized_name": "project senko" + }, + { + "appid": 1346320, + "normalized_name": "metal swarm infinity" + }, + { + "appid": 1346330, + "normalized_name": "flea!" + }, + { + "appid": 1346350, + "normalized_name": "the frosted" + }, + { + "appid": 1346360, + "normalized_name": "old skies" + }, + { + "appid": 1346390, + "normalized_name": "astro aqua kitty" + }, + { + "appid": 1346400, + "normalized_name": "battle engine aquila" + }, + { + "appid": 1346420, + "normalized_name": "transpire" + }, + { + "appid": 1346460, + "normalized_name": "dungeoneers" + }, + { + "appid": 1346480, + "normalized_name": "floor chess" + }, + { + "appid": 1346550, + "normalized_name": "elerena" + }, + { + "appid": 1346600, + "normalized_name": "elli" + }, + { + "appid": 1346620, + "normalized_name": "bubblebubbleball" + }, + { + "appid": 1346630, + "normalized_name": "astronomia" + }, + { + "appid": 1346660, + "normalized_name": "带摄影师" + }, + { + "appid": 1346700, + "normalized_name": "soccer adventures" + }, + { + "appid": 1346720, + "normalized_name": "wicked games" + }, + { + "appid": 1346740, + "normalized_name": "tiny light" + }, + { + "appid": 1346770, + "normalized_name": "yakimochi stream" + }, + { + "appid": 1346790, + "normalized_name": "fly fish" + }, + { + "appid": 1346800, + "normalized_name": "perfect matter" + }, + { + "appid": 1346830, + "normalized_name": "i saw black clouds" + }, + { + "appid": 1346840, + "normalized_name": "dead reset" + }, + { + "appid": 1346850, + "normalized_name": "vrworkout" + }, + { + "appid": 1346860, + "normalized_name": "spirit of dungeon" + }, + { + "appid": 1346870, + "normalized_name": "naughty memories" + }, + { + "appid": 1346890, + "normalized_name": "motoride rollercoaster vr" + }, + { + "appid": 1346960, + "normalized_name": "the divine invasion" + }, + { + "appid": 1346970, + "normalized_name": "lens life" + }, + { + "appid": 1346980, + "normalized_name": "lawnmower game next generation" + }, + { + "appid": 1347010, + "normalized_name": "dim glow" + }, + { + "appid": 1347030, + "normalized_name": "the corridor" + }, + { + "appid": 1347070, + "normalized_name": "mistia the kingdom of krasten" + }, + { + "appid": 1347080, + "normalized_name": "girls overboard" + }, + { + "appid": 1347110, + "normalized_name": "ice star" + }, + { + "appid": 1347130, + "normalized_name": "kinetic edge" + }, + { + "appid": 1347140, + "normalized_name": "near deadline" + }, + { + "appid": 1347170, + "normalized_name": "analog party sim" + }, + { + "appid": 1347230, + "normalized_name": "estranged arctic cold" + }, + { + "appid": 1347250, + "normalized_name": "space revenge prologue" + }, + { + "appid": 1347290, + "normalized_name": "splitfire" + }, + { + "appid": 1347310, + "normalized_name": "swarm" + }, + { + "appid": 1347350, + "normalized_name": "killing sun / 抗日大刀队:日军总部" + }, + { + "appid": 1347360, + "normalized_name": "midnight renegade" + }, + { + "appid": 1347390, + "normalized_name": "beaver fun river run steam" + }, + { + "appid": 1347420, + "normalized_name": "one way the elevator" + }, + { + "appid": 1347430, + "normalized_name": "cute honey" + }, + { + "appid": 1347450, + "normalized_name": "日日夜夜" + }, + { + "appid": 1347460, + "normalized_name": "dark cards" + }, + { + "appid": 1347490, + "normalized_name": "箱庭小相撲" + }, + { + "appid": 1347540, + "normalized_name": "sky fleet" + }, + { + "appid": 1347550, + "normalized_name": "tiny combat arena" + }, + { + "appid": 1347560, + "normalized_name": "let bions be bygones" + }, + { + "appid": 1347580, + "normalized_name": "シルヴァリオ トリニティ beyond the horizon" + }, + { + "appid": 1347590, + "normalized_name": "シルヴァリオ ヴェンデッタ verse of orpheus" + }, + { + "appid": 1347600, + "normalized_name": "dad's monster house" + }, + { + "appid": 1347630, + "normalized_name": "key to heaven" + }, + { + "appid": 1347690, + "normalized_name": "groove balls" + }, + { + "appid": 1347700, + "normalized_name": "spherical alliance" + }, + { + "appid": 1347710, + "normalized_name": "sink" + }, + { + "appid": 1347760, + "normalized_name": "clash ii" + }, + { + "appid": 1347780, + "normalized_name": "freedom fighters" + }, + { + "appid": 1347800, + "normalized_name": "escort simulator" + }, + { + "appid": 1347870, + "normalized_name": "stalin vs. martians 4" + }, + { + "appid": 1347880, + "normalized_name": "beholder's lair" + }, + { + "appid": 1347950, + "normalized_name": "goblin hunter wizard emona" + }, + { + "appid": 1347960, + "normalized_name": "enga extreme battle race" + }, + { + "appid": 1347970, + "normalized_name": "patch quest" + }, + { + "appid": 1348020, + "normalized_name": "streamline" + }, + { + "appid": 1348030, + "normalized_name": "planta" + }, + { + "appid": 1348040, + "normalized_name": "bumper boss" + }, + { + "appid": 1348060, + "normalized_name": "bug blast" + }, + { + "appid": 1348160, + "normalized_name": "turn on the light" + }, + { + "appid": 1348180, + "normalized_name": "来自边境 from frontier" + }, + { + "appid": 1348220, + "normalized_name": "colorize" + }, + { + "appid": 1348240, + "normalized_name": "snow trail" + }, + { + "appid": 1348250, + "normalized_name": "tank quest" + }, + { + "appid": 1348260, + "normalized_name": "this throne is mine the card game" + }, + { + "appid": 1348270, + "normalized_name": "fingers mini games" + }, + { + "appid": 1348300, + "normalized_name": "大千世界" + }, + { + "appid": 1348330, + "normalized_name": "什么垃圾?" + }, + { + "appid": 1348380, + "normalized_name": "god hates us" + }, + { + "appid": 1348390, + "normalized_name": "i am an air traffic controller 4" + }, + { + "appid": 1348400, + "normalized_name": "red dust" + }, + { + "appid": 1348430, + "normalized_name": "chicken bomb" + }, + { + "appid": 1348480, + "normalized_name": "viking butcher" + }, + { + "appid": 1348510, + "normalized_name": "问道仙途" + }, + { + "appid": 1348520, + "normalized_name": "saving mr. sparkles" + }, + { + "appid": 1348600, + "normalized_name": "2048 art" + }, + { + "appid": 1348640, + "normalized_name": "frozen flame dedicated server" + }, + { + "appid": 1348680, + "normalized_name": "meow pow" + }, + { + "appid": 1348690, + "normalized_name": "oaken" + }, + { + "appid": 1348700, + "normalized_name": "spice&wolf vr2" + }, + { + "appid": 1348750, + "normalized_name": "hearts of the dungeon list" + }, + { + "appid": 1348760, + "normalized_name": "karm" + }, + { + "appid": 1348770, + "normalized_name": "captain mayo" + }, + { + "appid": 1348800, + "normalized_name": "projections" + }, + { + "appid": 1348810, + "normalized_name": "down the river" + }, + { + "appid": 1348920, + "normalized_name": "wind peaks" + }, + { + "appid": 1348930, + "normalized_name": "rockjack" + }, + { + "appid": 1348960, + "normalized_name": "tetron" + }, + { + "appid": 1348970, + "normalized_name": "ego in a coma (自我、状態、昏睡。)" + }, + { + "appid": 1348980, + "normalized_name": "the surreal imaginarium" + }, + { + "appid": 1348990, + "normalized_name": "button lock" + }, + { + "appid": 1349000, + "normalized_name": "jigsaw puzzle animals" + }, + { + "appid": 1349030, + "normalized_name": "innocent girl" + }, + { + "appid": 1349040, + "normalized_name": "furry love 2" + }, + { + "appid": 1349060, + "normalized_name": "it steals" + }, + { + "appid": 1349070, + "normalized_name": "rollfall quest of acceleration" + }, + { + "appid": 1349100, + "normalized_name": "galaxy crisis" + }, + { + "appid": 1349120, + "normalized_name": "球球少女/pinball girls" + }, + { + "appid": 1349130, + "normalized_name": "fear of the unknown" + }, + { + "appid": 1349140, + "normalized_name": "大宋食货志" + }, + { + "appid": 1349170, + "normalized_name": "furries & scalies & bears oh my! 2 return to kale bay" + }, + { + "appid": 1349230, + "normalized_name": "5d chess with multiverse time travel" + }, + { + "appid": 1349290, + "normalized_name": "baff f" + }, + { + "appid": 1349300, + "normalized_name": "yakuza empire" + }, + { + "appid": 1349310, + "normalized_name": "白檀小町" + }, + { + "appid": 1349320, + "normalized_name": "sgs edit" + }, + { + "appid": 1349340, + "normalized_name": "alias" + }, + { + "appid": 1349390, + "normalized_name": "sweet love" + }, + { + "appid": 1349420, + "normalized_name": "egg rabbit" + }, + { + "appid": 1349460, + "normalized_name": "bravers" + }, + { + "appid": 1349540, + "normalized_name": "dps idle" + }, + { + "appid": 1349600, + "normalized_name": "slavania" + }, + { + "appid": 1349620, + "normalized_name": "humans v zombies" + }, + { + "appid": 1349640, + "normalized_name": "alien function" + }, + { + "appid": 1349670, + "normalized_name": "riding away" + }, + { + "appid": 1349680, + "normalized_name": "gunblocks" + }, + { + "appid": 1349720, + "normalized_name": "carom billiards" + }, + { + "appid": 1349730, + "normalized_name": "footy showdown" + }, + { + "appid": 1349740, + "normalized_name": "first floor" + }, + { + "appid": 1349760, + "normalized_name": "essential mayhem" + }, + { + "appid": 1349790, + "normalized_name": "corgix" + }, + { + "appid": 1349820, + "normalized_name": "the lost delinquents of rollings high" + }, + { + "appid": 1349830, + "normalized_name": "ronin two souls chapter 1" + }, + { + "appid": 1349850, + "normalized_name": "failed adventurer" + }, + { + "appid": 1349860, + "normalized_name": "anon hacker" + }, + { + "appid": 1349890, + "normalized_name": "最后一个地球人 the last earth man" + }, + { + "appid": 1349900, + "normalized_name": "feudal kingdoms" + }, + { + "appid": 1349910, + "normalized_name": "book of sophia" + }, + { + "appid": 1349920, + "normalized_name": "caterpillarnoid" + }, + { + "appid": 1349930, + "normalized_name": "cyber psychosis" + }, + { + "appid": 1349940, + "normalized_name": "hardbass clicker" + }, + { + "appid": 1349960, + "normalized_name": "[chilla's art] the ghost train | 幽霊列車" + }, + { + "appid": 1349970, + "normalized_name": "tomai" + }, + { + "appid": 1350010, + "normalized_name": "dinosaur hunting patrol 3d jurassic vr" + }, + { + "appid": 1350030, + "normalized_name": "wizards of the west" + }, + { + "appid": 1350050, + "normalized_name": "dreamshard prologue" + }, + { + "appid": 1350060, + "normalized_name": "eternal pain epiphany" + }, + { + "appid": 1350080, + "normalized_name": "abc audio reactive beat circle" + }, + { + "appid": 1350100, + "normalized_name": "runout" + }, + { + "appid": 1350120, + "normalized_name": "story" + }, + { + "appid": 1350170, + "normalized_name": "escapevr" + }, + { + "appid": 1350200, + "normalized_name": "immortality" + }, + { + "appid": 1350250, + "normalized_name": "queen's brothel" + }, + { + "appid": 1350280, + "normalized_name": "jonas willy online" + }, + { + "appid": 1350300, + "normalized_name": "purrfection! the cat tossing game!!" + }, + { + "appid": 1350310, + "normalized_name": "tachyons battles across the galaxy" + }, + { + "appid": 1350340, + "normalized_name": "simp simulator" + }, + { + "appid": 1350350, + "normalized_name": "touhou gensokyo visitor" + }, + { + "appid": 1350390, + "normalized_name": "power tester" + }, + { + "appid": 1350430, + "normalized_name": "ravensword undaunted" + }, + { + "appid": 1350440, + "normalized_name": "cardful planning" + }, + { + "appid": 1350470, + "normalized_name": "impossible target" + }, + { + "appid": 1350480, + "normalized_name": "robotic learn" + }, + { + "appid": 1350500, + "normalized_name": "last memory" + }, + { + "appid": 1350540, + "normalized_name": "rebel reenactment battle of the wilderness" + }, + { + "appid": 1350560, + "normalized_name": "catch it" + }, + { + "appid": 1350570, + "normalized_name": "missile tank" + }, + { + "appid": 1350580, + "normalized_name": "poly race" + }, + { + "appid": 1350590, + "normalized_name": "default unreal physics and assets aka dupa project" + }, + { + "appid": 1350610, + "normalized_name": "catventure" + }, + { + "appid": 1350630, + "normalized_name": "american isekai prologue" + }, + { + "appid": 1350650, + "normalized_name": "freshwomen season 1" + }, + { + "appid": 1350690, + "normalized_name": "흡혈귀의 연애방법" + }, + { + "appid": 1350710, + "normalized_name": "evenicle 2 clinical trial" + }, + { + "appid": 1350720, + "normalized_name": "paperklay" + }, + { + "appid": 1350780, + "normalized_name": "orbital strike vr" + }, + { + "appid": 1350820, + "normalized_name": "コモラ・リアルワールドエスケープ" + }, + { + "appid": 1350830, + "normalized_name": "straydoll conflict" + }, + { + "appid": 1350840, + "normalized_name": "song of the prairie" + }, + { + "appid": 1350850, + "normalized_name": "dreamland solitaire dark prophecy" + }, + { + "appid": 1350860, + "normalized_name": "归途" + }, + { + "appid": 1350920, + "normalized_name": "liege dragon" + }, + { + "appid": 1351000, + "normalized_name": "gangs of sherwood" + }, + { + "appid": 1351070, + "normalized_name": "pest control" + }, + { + "appid": 1351080, + "normalized_name": "pharaoh a new era" + }, + { + "appid": 1351120, + "normalized_name": "le voyage de toki" + }, + { + "appid": 1351140, + "normalized_name": "kapia" + }, + { + "appid": 1351170, + "normalized_name": "東方催狐譚 ~ servants of harvest wish" + }, + { + "appid": 1351180, + "normalized_name": "voyager" + }, + { + "appid": 1351200, + "normalized_name": "museum of war" + }, + { + "appid": 1351210, + "normalized_name": "gord" + }, + { + "appid": 1351220, + "normalized_name": "escape room vr inner voices" + }, + { + "appid": 1351240, + "normalized_name": "taxi life a city driving simulator" + }, + { + "appid": 1351250, + "normalized_name": "secrets of magic 3 happy halloween" + }, + { + "appid": 1351290, + "normalized_name": "accidenthouse" + }, + { + "appid": 1351300, + "normalized_name": "аlien cat 4" + }, + { + "appid": 1351310, + "normalized_name": "hungry boy" + }, + { + "appid": 1351350, + "normalized_name": "specimen 13" + }, + { + "appid": 1351360, + "normalized_name": "devlife" + }, + { + "appid": 1351370, + "normalized_name": "sakura knight 3" + }, + { + "appid": 1351380, + "normalized_name": "touch grass together" + }, + { + "appid": 1351400, + "normalized_name": "canvas hockey" + }, + { + "appid": 1351450, + "normalized_name": "steel fury kharkov 1942" + }, + { + "appid": 1351470, + "normalized_name": "chroma chronicles" + }, + { + "appid": 1351480, + "normalized_name": "barely racing" + }, + { + "appid": 1351500, + "normalized_name": "simpocalypse" + }, + { + "appid": 1351510, + "normalized_name": "kindred fates combat arena" + }, + { + "appid": 1351550, + "normalized_name": "haunted hotel lost time collector's" + }, + { + "appid": 1351560, + "normalized_name": "maze sinister play collector's" + }, + { + "appid": 1351610, + "normalized_name": "theogony crystal water blue" + }, + { + "appid": 1351630, + "normalized_name": "ys ix monstrum nox" + }, + { + "appid": 1351650, + "normalized_name": "no cure" + }, + { + "appid": 1351670, + "normalized_name": "student union" + }, + { + "appid": 1351710, + "normalized_name": "chaos" + }, + { + "appid": 1351720, + "normalized_name": "sharks of mars prologue" + }, + { + "appid": 1351780, + "normalized_name": "香肠派对" + }, + { + "appid": 1351820, + "normalized_name": "shivering hearts" + }, + { + "appid": 1351830, + "normalized_name": "hentai waifu 101" + }, + { + "appid": 1351840, + "normalized_name": "onmyoudou arcade" + }, + { + "appid": 1351870, + "normalized_name": "pick me up! rescue rangers" + }, + { + "appid": 1351880, + "normalized_name": "f.u.b.a.r" + }, + { + "appid": 1351900, + "normalized_name": "dungeon core" + }, + { + "appid": 1351950, + "normalized_name": "projectile dysfunction" + }, + { + "appid": 1351960, + "normalized_name": "pumpkin farmer" + }, + { + "appid": 1351970, + "normalized_name": "sex apocalypse" + }, + { + "appid": 1351980, + "normalized_name": "2945vr" + }, + { + "appid": 1352020, + "normalized_name": "yupitergrad 🚀(virtual reality adventure)" + }, + { + "appid": 1352080, + "normalized_name": "smash legends" + }, + { + "appid": 1352120, + "normalized_name": "黑塔战记" + }, + { + "appid": 1352130, + "normalized_name": "nonsense soccer" + }, + { + "appid": 1352140, + "normalized_name": "vup simulator" + }, + { + "appid": 1352180, + "normalized_name": "rugida" + }, + { + "appid": 1352200, + "normalized_name": "detective from the crypt" + }, + { + "appid": 1352230, + "normalized_name": "1917 the prologue" + }, + { + "appid": 1352270, + "normalized_name": "koshka" + }, + { + "appid": 1352280, + "normalized_name": "post soviet yandere" + }, + { + "appid": 1352290, + "normalized_name": "anime squad" + }, + { + "appid": 1352300, + "normalized_name": "jubeez" + }, + { + "appid": 1352330, + "normalized_name": "zoo 2 animal park" + }, + { + "appid": 1352340, + "normalized_name": "rolling hamster" + }, + { + "appid": 1352440, + "normalized_name": "brick building" + }, + { + "appid": 1352450, + "normalized_name": "caterva" + }, + { + "appid": 1352470, + "normalized_name": "carrot heart" + }, + { + "appid": 1352510, + "normalized_name": "farmageddon" + }, + { + "appid": 1352520, + "normalized_name": "soldier warfare" + }, + { + "appid": 1352530, + "normalized_name": "ronald's run" + }, + { + "appid": 1352540, + "normalized_name": "sentience" + }, + { + "appid": 1352560, + "normalized_name": "cartridge monsters" + }, + { + "appid": 1352590, + "normalized_name": "requiem aeternam eden" + }, + { + "appid": 1352650, + "normalized_name": "bomber" + }, + { + "appid": 1352660, + "normalized_name": "pufiweho" + }, + { + "appid": 1352670, + "normalized_name": "kid meat" + }, + { + "appid": 1352680, + "normalized_name": "winter war 1939" + }, + { + "appid": 1352690, + "normalized_name": "toys 'n' traps" + }, + { + "appid": 1352730, + "normalized_name": "twin horizons" + }, + { + "appid": 1352740, + "normalized_name": "df 41 simulator" + }, + { + "appid": 1352760, + "normalized_name": "arena of ruins" + }, + { + "appid": 1352770, + "normalized_name": "策魂三国" + }, + { + "appid": 1352830, + "normalized_name": "hoffnunigans" + }, + { + "appid": 1352840, + "normalized_name": "dystopia punk zero hour" + }, + { + "appid": 1352850, + "normalized_name": "citystate ii" + }, + { + "appid": 1352870, + "normalized_name": "stoirs vr" + }, + { + "appid": 1352890, + "normalized_name": "seekers alliance hero's journey" + }, + { + "appid": 1352910, + "normalized_name": "春と修羅|haru to shura" + }, + { + "appid": 1352930, + "normalized_name": "haak" + }, + { + "appid": 1353030, + "normalized_name": "eloquence" + }, + { + "appid": 1353040, + "normalized_name": "the first titans" + }, + { + "appid": 1353050, + "normalized_name": "my isekai after life is an rpg!?" + }, + { + "appid": 1353100, + "normalized_name": "scp the foundation" + }, + { + "appid": 1353130, + "normalized_name": "hoplichess" + }, + { + "appid": 1353140, + "normalized_name": "spellgroove" + }, + { + "appid": 1353150, + "normalized_name": "the path of calydra" + }, + { + "appid": 1353160, + "normalized_name": "the night of joe" + }, + { + "appid": 1353210, + "normalized_name": "capital" + }, + { + "appid": 1353230, + "normalized_name": "bomb rush cyberfunk" + }, + { + "appid": 1353250, + "normalized_name": "infected zone 感染之地" + }, + { + "appid": 1353270, + "normalized_name": "five dates" + }, + { + "appid": 1353300, + "normalized_name": "idle slayer" + }, + { + "appid": 1353310, + "normalized_name": "monster blast" + }, + { + "appid": 1353330, + "normalized_name": "super cosmojet" + }, + { + "appid": 1353350, + "normalized_name": "long live caesar" + }, + { + "appid": 1353370, + "normalized_name": "the peresmeshnik" + }, + { + "appid": 1353470, + "normalized_name": "super indie square fight against time" + }, + { + "appid": 1353550, + "normalized_name": "balacera brothers" + }, + { + "appid": 1353560, + "normalized_name": "beauty shooter" + }, + { + "appid": 1353650, + "normalized_name": "elisius" + }, + { + "appid": 1353660, + "normalized_name": "next earth the journey trilogy" + }, + { + "appid": 1353670, + "normalized_name": "throw it" + }, + { + "appid": 1353680, + "normalized_name": "三国吕布传说(legend of lv bu of the three kingdoms)" + }, + { + "appid": 1353690, + "normalized_name": "mini army tactics medieval" + }, + { + "appid": 1353730, + "normalized_name": "送外卖模拟器 delivery simulator" + }, + { + "appid": 1353830, + "normalized_name": "horrors of space" + }, + { + "appid": 1353900, + "normalized_name": "lockdown lewd up! ❤ new hope" + }, + { + "appid": 1353910, + "normalized_name": "ankh tower protect the fortress with dark magic" + }, + { + "appid": 1353920, + "normalized_name": "李雷和韩梅梅" + }, + { + "appid": 1353950, + "normalized_name": "ring of fire prologue" + }, + { + "appid": 1354000, + "normalized_name": "abyss of death" + }, + { + "appid": 1354020, + "normalized_name": "amber island" + }, + { + "appid": 1354060, + "normalized_name": "hentai girl clicker" + }, + { + "appid": 1354070, + "normalized_name": "bloodway infinity" + }, + { + "appid": 1354100, + "normalized_name": "a lozenge" + }, + { + "appid": 1354230, + "normalized_name": "love tavern" + }, + { + "appid": 1354240, + "normalized_name": "hunting moon vol.2" + }, + { + "appid": 1354260, + "normalized_name": "brave escape" + }, + { + "appid": 1354270, + "normalized_name": "match match mania!" + }, + { + "appid": 1354300, + "normalized_name": "club soccer director 2021" + }, + { + "appid": 1354370, + "normalized_name": "bound forest alpha" + }, + { + "appid": 1354420, + "normalized_name": "the protectors of deya" + }, + { + "appid": 1354450, + "normalized_name": "dragonfield" + }, + { + "appid": 1354460, + "normalized_name": "ministrike" + }, + { + "appid": 1354520, + "normalized_name": "wild honesty a party game for deeper conversations" + }, + { + "appid": 1354530, + "normalized_name": "ultikill" + }, + { + "appid": 1354540, + "normalized_name": "arcaxer" + }, + { + "appid": 1354570, + "normalized_name": "迷宫骑士" + }, + { + "appid": 1354580, + "normalized_name": "urban survival" + }, + { + "appid": 1354590, + "normalized_name": "edge of oblivion" + }, + { + "appid": 1354690, + "normalized_name": "girls' civilization 2" + }, + { + "appid": 1354750, + "normalized_name": "a star theft" + }, + { + "appid": 1354760, + "normalized_name": "room no. 9" + }, + { + "appid": 1354770, + "normalized_name": "cubox" + }, + { + "appid": 1354800, + "normalized_name": "really bad flying machine" + }, + { + "appid": 1354830, + "normalized_name": "cat cafe manager" + }, + { + "appid": 1354910, + "normalized_name": "tiny lands" + }, + { + "appid": 1354940, + "normalized_name": "outsider after life" + }, + { + "appid": 1354970, + "normalized_name": "dna farm" + }, + { + "appid": 1354980, + "normalized_name": "decimated" + }, + { + "appid": 1354990, + "normalized_name": "dungeons of voidria" + }, + { + "appid": 1355000, + "normalized_name": "off score a game of songs" + }, + { + "appid": 1355010, + "normalized_name": "girls memory card" + }, + { + "appid": 1355020, + "normalized_name": "human or virus" + }, + { + "appid": 1355050, + "normalized_name": "traurig secrets prologue" + }, + { + "appid": 1355060, + "normalized_name": "supermarket manager" + }, + { + "appid": 1355070, + "normalized_name": "aenaon" + }, + { + "appid": 1355090, + "normalized_name": "railgrade" + }, + { + "appid": 1355100, + "normalized_name": "witch please!" + }, + { + "appid": 1355140, + "normalized_name": "police chase" + }, + { + "appid": 1355160, + "normalized_name": "dad by the sword" + }, + { + "appid": 1355200, + "normalized_name": "uber destruction" + }, + { + "appid": 1355210, + "normalized_name": "fatal curse" + }, + { + "appid": 1355240, + "normalized_name": "being centered" + }, + { + "appid": 1355250, + "normalized_name": "sword of aragon" + }, + { + "appid": 1355290, + "normalized_name": "회사 키우기" + }, + { + "appid": 1355310, + "normalized_name": "nightmare puppeteer" + }, + { + "appid": 1355360, + "normalized_name": "trouble hunter chronicles the stolen creed" + }, + { + "appid": 1355370, + "normalized_name": "stories of submission learn your place" + }, + { + "appid": 1355390, + "normalized_name": "obreno chapter one" + }, + { + "appid": 1355400, + "normalized_name": "the line" + }, + { + "appid": 1355410, + "normalized_name": "five steps from hell" + }, + { + "appid": 1355420, + "normalized_name": "pixboy" + }, + { + "appid": 1355430, + "normalized_name": "the outcast lovers" + }, + { + "appid": 1355440, + "normalized_name": "开局一把剑" + }, + { + "appid": 1355450, + "normalized_name": "dungeon island" + }, + { + "appid": 1355470, + "normalized_name": "the importance of choosing second chance" + }, + { + "appid": 1355500, + "normalized_name": "ベオグラードメトロの子供たち / children of belgrade metro" + }, + { + "appid": 1355510, + "normalized_name": "rogue summoner" + }, + { + "appid": 1355560, + "normalized_name": "aloof" + }, + { + "appid": 1355570, + "normalized_name": "dungeons & guns" + }, + { + "appid": 1355580, + "normalized_name": "heist day" + }, + { + "appid": 1355590, + "normalized_name": "war machine" + }, + { + "appid": 1355610, + "normalized_name": "i_darkness" + }, + { + "appid": 1355620, + "normalized_name": "mage rage" + }, + { + "appid": 1355630, + "normalized_name": "connect x" + }, + { + "appid": 1355650, + "normalized_name": "filcher" + }, + { + "appid": 1355680, + "normalized_name": "ardent seas" + }, + { + "appid": 1355720, + "normalized_name": "henosis" + }, + { + "appid": 1355770, + "normalized_name": "battlecaster" + }, + { + "appid": 1355780, + "normalized_name": "crushed" + }, + { + "appid": 1355790, + "normalized_name": "luminous threads a visual novel" + }, + { + "appid": 1355810, + "normalized_name": "hentai beautiful girls 4" + }, + { + "appid": 1355820, + "normalized_name": "大话江湖" + }, + { + "appid": 1355830, + "normalized_name": "return to earth 2130" + }, + { + "appid": 1355880, + "normalized_name": "spermdash精疲力尽" + }, + { + "appid": 1355910, + "normalized_name": "wolf territory" + }, + { + "appid": 1355930, + "normalized_name": "escape the clinic" + }, + { + "appid": 1355960, + "normalized_name": "casting couch simulator" + }, + { + "appid": 1355970, + "normalized_name": "jungle house" + }, + { + "appid": 1355980, + "normalized_name": "minimal maze" + }, + { + "appid": 1356030, + "normalized_name": "page one" + }, + { + "appid": 1356040, + "normalized_name": "ampersat" + }, + { + "appid": 1356070, + "normalized_name": "模拟练枪" + }, + { + "appid": 1356080, + "normalized_name": "hot air vr balloon trip over russian primorye" + }, + { + "appid": 1356140, + "normalized_name": "112 operator call editor" + }, + { + "appid": 1356160, + "normalized_name": "andromeda one zombies" + }, + { + "appid": 1356180, + "normalized_name": "mahjong nagomi" + }, + { + "appid": 1356190, + "normalized_name": "warehouse simulator" + }, + { + "appid": 1356240, + "normalized_name": "who wants to be a millionaire" + }, + { + "appid": 1356250, + "normalized_name": "airport renovator" + }, + { + "appid": 1356260, + "normalized_name": "snack tick" + }, + { + "appid": 1356280, + "normalized_name": "kitaria fables" + }, + { + "appid": 1356300, + "normalized_name": "butterfly 3. funny twins." + }, + { + "appid": 1356360, + "normalized_name": "exploaris vermis story" + }, + { + "appid": 1356380, + "normalized_name": "pendelum" + }, + { + "appid": 1356440, + "normalized_name": "kidnapped! a royal birthday" + }, + { + "appid": 1356460, + "normalized_name": "commander '85 prologue" + }, + { + "appid": 1356480, + "normalized_name": "helionaut" + }, + { + "appid": 1356530, + "normalized_name": "mystery hotel hidden object detective game" + }, + { + "appid": 1356580, + "normalized_name": "guild of darksteel" + }, + { + "appid": 1356610, + "normalized_name": "hidden expedition the price of paradise collector's" + }, + { + "appid": 1356640, + "normalized_name": "魔法猫咖与英雄们" + }, + { + "appid": 1356670, + "normalized_name": "sakuna of rice and ruin" + }, + { + "appid": 1356710, + "normalized_name": "my creampie heaven" + }, + { + "appid": 1356760, + "normalized_name": "the spectre files deathstalker" + }, + { + "appid": 1356790, + "normalized_name": "exp parasite" + }, + { + "appid": 1356800, + "normalized_name": "keepers of the trees" + }, + { + "appid": 1356810, + "normalized_name": "hexarchy" + }, + { + "appid": 1356830, + "normalized_name": "stone it!" + }, + { + "appid": 1356840, + "normalized_name": "" + }, + { + "appid": 1356860, + "normalized_name": "project boost" + }, + { + "appid": 1356870, + "normalized_name": "catwink" + }, + { + "appid": 1356940, + "normalized_name": "cloud rack" + }, + { + "appid": 1356950, + "normalized_name": "edentopia" + }, + { + "appid": 1356970, + "normalized_name": "escape from poalet" + }, + { + "appid": 1357000, + "normalized_name": "above the stars" + }, + { + "appid": 1357020, + "normalized_name": "完美电路 electric circuit" + }, + { + "appid": 1357090, + "normalized_name": "button soccer league" + }, + { + "appid": 1357120, + "normalized_name": "block me." + }, + { + "appid": 1357150, + "normalized_name": "gassy man" + }, + { + "appid": 1357190, + "normalized_name": "conjurer andy's repeatable dungeon" + }, + { + "appid": 1357200, + "normalized_name": "zeko" + }, + { + "appid": 1357210, + "normalized_name": "galactic civilizations iv" + }, + { + "appid": 1357220, + "normalized_name": "pogochamp" + }, + { + "appid": 1357230, + "normalized_name": "color buster!" + }, + { + "appid": 1357270, + "normalized_name": "proto cuckoo 64" + }, + { + "appid": 1357280, + "normalized_name": "sheep island" + }, + { + "appid": 1357320, + "normalized_name": "cupid island" + }, + { + "appid": 1357390, + "normalized_name": "finding 21" + }, + { + "appid": 1357400, + "normalized_name": "skydom" + }, + { + "appid": 1357410, + "normalized_name": "road z the last drive" + }, + { + "appid": 1357430, + "normalized_name": "rocket rumble" + }, + { + "appid": 1357490, + "normalized_name": "gunboat" + }, + { + "appid": 1357520, + "normalized_name": "asterrunner" + }, + { + "appid": 1357540, + "normalized_name": "altered destiny" + }, + { + "appid": 1357550, + "normalized_name": "psi 5 trading company" + }, + { + "appid": 1357570, + "normalized_name": "guardians of infinity to save kennedy" + }, + { + "appid": 1357580, + "normalized_name": "xf5700 mantis experimental fighter" + }, + { + "appid": 1357590, + "normalized_name": "wastenauts" + }, + { + "appid": 1357610, + "normalized_name": "desktop farm" + }, + { + "appid": 1357640, + "normalized_name": "olympic boxing" + }, + { + "appid": 1357670, + "normalized_name": "picture perfect" + }, + { + "appid": 1357680, + "normalized_name": "dungeon dan" + }, + { + "appid": 1357700, + "normalized_name": "flap demon" + }, + { + "appid": 1357710, + "normalized_name": "excalibots" + }, + { + "appid": 1357750, + "normalized_name": "box factory" + }, + { + "appid": 1357830, + "normalized_name": "arcana heat and cold. season 1" + }, + { + "appid": 1357840, + "normalized_name": "salthe" + }, + { + "appid": 1357860, + "normalized_name": "fuga melodies of steel" + }, + { + "appid": 1357870, + "normalized_name": "metel horror escape" + }, + { + "appid": 1357890, + "normalized_name": "son of aral" + }, + { + "appid": 1357930, + "normalized_name": "whirlibird" + }, + { + "appid": 1357960, + "normalized_name": "the dragon sword / 蒼墨龍吟" + }, + { + "appid": 1357990, + "normalized_name": "unfolded camellia tales" + }, + { + "appid": 1358000, + "normalized_name": "_our_ _defense 2021" + }, + { + "appid": 1358010, + "normalized_name": "ebe" + }, + { + "appid": 1358020, + "normalized_name": "41 hours" + }, + { + "appid": 1358030, + "normalized_name": "shooting arena vr" + }, + { + "appid": 1358050, + "normalized_name": "sanatorium «anthropocene retreat»" + }, + { + "appid": 1358090, + "normalized_name": "open hexagon" + }, + { + "appid": 1358100, + "normalized_name": "directional isolation vr" + }, + { + "appid": 1358110, + "normalized_name": "zooconomy" + }, + { + "appid": 1358120, + "normalized_name": "paws on the sand lionessy sins" + }, + { + "appid": 1358140, + "normalized_name": "cooking simulator vr" + }, + { + "appid": 1358150, + "normalized_name": "measurement problem" + }, + { + "appid": 1358180, + "normalized_name": "gerrymander madness" + }, + { + "appid": 1358250, + "normalized_name": "city of broken dreamers book one" + }, + { + "appid": 1358260, + "normalized_name": "conqueror 940 ad" + }, + { + "appid": 1358270, + "normalized_name": "the benjamins" + }, + { + "appid": 1358320, + "normalized_name": "corg of the dead" + }, + { + "appid": 1358360, + "normalized_name": "stouthollow tales" + }, + { + "appid": 1358370, + "normalized_name": "hill agency puritydecay" + }, + { + "appid": 1358430, + "normalized_name": "war war" + }, + { + "appid": 1358440, + "normalized_name": "halver" + }, + { + "appid": 1358490, + "normalized_name": "ash & rust" + }, + { + "appid": 1358510, + "normalized_name": "snake in the cube" + }, + { + "appid": 1358530, + "normalized_name": "saint kotar" + }, + { + "appid": 1358540, + "normalized_name": "pink gum" + }, + { + "appid": 1358560, + "normalized_name": "light the world" + }, + { + "appid": 1358590, + "normalized_name": "gravity square グラビティ スクエア" + }, + { + "appid": 1358610, + "normalized_name": "make the burger" + }, + { + "appid": 1358630, + "normalized_name": "ski doom vr" + }, + { + "appid": 1358640, + "normalized_name": "penny's path" + }, + { + "appid": 1358650, + "normalized_name": "queen's conquest" + }, + { + "appid": 1358660, + "normalized_name": "re awaken" + }, + { + "appid": 1358700, + "normalized_name": "stranger of paradise final fantasy origin" + }, + { + "appid": 1358710, + "normalized_name": "battle cry of freedom" + }, + { + "appid": 1358730, + "normalized_name": "over'n over" + }, + { + "appid": 1358750, + "normalized_name": "ドラゴンクエストx目覚めし五つの種族オフライン" + }, + { + "appid": 1358760, + "normalized_name": "portability" + }, + { + "appid": 1358770, + "normalized_name": "the falling tower" + }, + { + "appid": 1358790, + "normalized_name": "tipston salvage" + }, + { + "appid": 1358810, + "normalized_name": "metal force tank games online" + }, + { + "appid": 1358830, + "normalized_name": "operator" + }, + { + "appid": 1358840, + "normalized_name": "flat eye" + }, + { + "appid": 1358880, + "normalized_name": "liberated free trial" + }, + { + "appid": 1358900, + "normalized_name": "annihilation" + }, + { + "appid": 1358930, + "normalized_name": "playing god" + }, + { + "appid": 1358940, + "normalized_name": "stormblades" + }, + { + "appid": 1358970, + "normalized_name": "spaceflight factory" + }, + { + "appid": 1358990, + "normalized_name": "space shooter" + }, + { + "appid": 1359000, + "normalized_name": "gun dog rock rapid" + }, + { + "appid": 1359020, + "normalized_name": "vermitron" + }, + { + "appid": 1359090, + "normalized_name": "zero hour" + }, + { + "appid": 1359110, + "normalized_name": "calturin and clone" + }, + { + "appid": 1359120, + "normalized_name": "the dungeon beneath" + }, + { + "appid": 1359160, + "normalized_name": "rocket bots" + }, + { + "appid": 1359170, + "normalized_name": "killer dog" + }, + { + "appid": 1359240, + "normalized_name": "zeriliah chronicles" + }, + { + "appid": 1359260, + "normalized_name": "my boyfriend's a werecat!" + }, + { + "appid": 1359270, + "normalized_name": "pirate commander" + }, + { + "appid": 1359280, + "normalized_name": "sex cruise vr" + }, + { + "appid": 1359300, + "normalized_name": "knights and dungeons" + }, + { + "appid": 1359310, + "normalized_name": "trenchlore" + }, + { + "appid": 1359340, + "normalized_name": "fairy bubble" + }, + { + "appid": 1359400, + "normalized_name": "primal hearts" + }, + { + "appid": 1359430, + "normalized_name": "criminal russia" + }, + { + "appid": 1359440, + "normalized_name": "the game of the playful" + }, + { + "appid": 1359450, + "normalized_name": "choco pixel 7" + }, + { + "appid": 1359470, + "normalized_name": "kawaii girl 2" + }, + { + "appid": 1359630, + "normalized_name": "play with gilbert a small tail" + }, + { + "appid": 1359640, + "normalized_name": "carmine impact" + }, + { + "appid": 1359650, + "normalized_name": "the last of waifus" + }, + { + "appid": 1359720, + "normalized_name": "turbo machines mini racing" + }, + { + "appid": 1359730, + "normalized_name": "artifice war tactics" + }, + { + "appid": 1359760, + "normalized_name": "hadr" + }, + { + "appid": 1359800, + "normalized_name": "the soldiers factory" + }, + { + "appid": 1359820, + "normalized_name": "the place i called home" + }, + { + "appid": 1359840, + "normalized_name": "lockdown hero" + }, + { + "appid": 1359850, + "normalized_name": "zombies must die" + }, + { + "appid": 1359890, + "normalized_name": "beach love shop" + }, + { + "appid": 1359900, + "normalized_name": "gone golfing" + }, + { + "appid": 1359910, + "normalized_name": "mad mosh" + }, + { + "appid": 1359920, + "normalized_name": "last days of lazarus" + }, + { + "appid": 1359950, + "normalized_name": "intra corpus" + }, + { + "appid": 1359970, + "normalized_name": "citadale the awakened spirit" + }, + { + "appid": 1359980, + "normalized_name": "postal brain damaged" + }, + { + "appid": 1359990, + "normalized_name": "false dichotomy" + }, + { + "appid": 1360000, + "normalized_name": "the infected" + }, + { + "appid": 1360040, + "normalized_name": "uvolley" + }, + { + "appid": 1360080, + "normalized_name": "space battle arena" + }, + { + "appid": 1360130, + "normalized_name": "power of the ancients" + }, + { + "appid": 1360140, + "normalized_name": "bird boxing" + }, + { + "appid": 1360150, + "normalized_name": "at the downstairs" + }, + { + "appid": 1360160, + "normalized_name": "reavers of new rome" + }, + { + "appid": 1360190, + "normalized_name": "曙光之诗" + }, + { + "appid": 1360210, + "normalized_name": "artificial life 2061 cybersys diva of the vrchatworld babel stardewitt proyect \"kodota komori 1416\" [made by joseph sanz]" + }, + { + "appid": 1360220, + "normalized_name": "tora tora!" + }, + { + "appid": 1360250, + "normalized_name": "zombie frenzy" + }, + { + "appid": 1360260, + "normalized_name": "strange lands" + }, + { + "appid": 1360270, + "normalized_name": "gem wizards tactics" + }, + { + "appid": 1360280, + "normalized_name": "catman gimmick action game" + }, + { + "appid": 1360290, + "normalized_name": "ayano the exorcist" + }, + { + "appid": 1360360, + "normalized_name": "the moon relax" + }, + { + "appid": 1360380, + "normalized_name": "wordding" + }, + { + "appid": 1360390, + "normalized_name": "cats and the other lives" + }, + { + "appid": 1360430, + "normalized_name": "lapso nimbo" + }, + { + "appid": 1360440, + "normalized_name": "the door" + }, + { + "appid": 1360480, + "normalized_name": "推箱子(push box)" + }, + { + "appid": 1360490, + "normalized_name": "peco" + }, + { + "appid": 1360500, + "normalized_name": "warrecs 2" + }, + { + "appid": 1360520, + "normalized_name": "hold the line" + }, + { + "appid": 1360530, + "normalized_name": "sex poker" + }, + { + "appid": 1360550, + "normalized_name": "summertime madness" + }, + { + "appid": 1360560, + "normalized_name": "pac vs ghosts" + }, + { + "appid": 1360570, + "normalized_name": "system intrusion" + }, + { + "appid": 1360580, + "normalized_name": "the fire" + }, + { + "appid": 1360600, + "normalized_name": "strike team gladius" + }, + { + "appid": 1360620, + "normalized_name": "20 000 miles under the sea" + }, + { + "appid": 1360660, + "normalized_name": "neon blight" + }, + { + "appid": 1360670, + "normalized_name": "minimap kingdom" + }, + { + "appid": 1360700, + "normalized_name": "dream time" + }, + { + "appid": 1360720, + "normalized_name": "aethernaut" + }, + { + "appid": 1360760, + "normalized_name": "dark maze" + }, + { + "appid": 1360780, + "normalized_name": "roll ball adventures" + }, + { + "appid": 1360790, + "normalized_name": "slip 'n dip" + }, + { + "appid": 1360810, + "normalized_name": "职场浮生记 office life" + }, + { + "appid": 1360820, + "normalized_name": "the chase" + }, + { + "appid": 1360850, + "normalized_name": "isles of yore" + }, + { + "appid": 1360870, + "normalized_name": "gude! jump n run" + }, + { + "appid": 1360880, + "normalized_name": "logic abuse" + }, + { + "appid": 1360890, + "normalized_name": "游戏而已" + }, + { + "appid": 1360900, + "normalized_name": "lost island atlantida advanture game" + }, + { + "appid": 1360960, + "normalized_name": "glum buster" + }, + { + "appid": 1360980, + "normalized_name": "fetish locator week one" + }, + { + "appid": 1361000, + "normalized_name": "in silence" + }, + { + "appid": 1361010, + "normalized_name": "vampires dawn 3 the crimson realm" + }, + { + "appid": 1361020, + "normalized_name": "living the nightmare" + }, + { + "appid": 1361050, + "normalized_name": "derailed" + }, + { + "appid": 1361060, + "normalized_name": "nano.wars" + }, + { + "appid": 1361070, + "normalized_name": "battle royale for your heart!" + }, + { + "appid": 1361090, + "normalized_name": "restitched" + }, + { + "appid": 1361100, + "normalized_name": "两体" + }, + { + "appid": 1361110, + "normalized_name": "karen an outrage simulator" + }, + { + "appid": 1361120, + "normalized_name": "element x" + }, + { + "appid": 1361150, + "normalized_name": "day island" + }, + { + "appid": 1361180, + "normalized_name": "gemini strategy origin" + }, + { + "appid": 1361190, + "normalized_name": "brain marmelade" + }, + { + "appid": 1361200, + "normalized_name": "forsaken flesh" + }, + { + "appid": 1361210, + "normalized_name": "warhammer 40 000 darktide" + }, + { + "appid": 1361230, + "normalized_name": "cleo a pirate's tale" + }, + { + "appid": 1361240, + "normalized_name": "teenage blob paperperson the first single" + }, + { + "appid": 1361260, + "normalized_name": "tequila sunrise" + }, + { + "appid": 1361270, + "normalized_name": "flying slime" + }, + { + "appid": 1361320, + "normalized_name": "the room 4 old sins" + }, + { + "appid": 1361330, + "normalized_name": "симулятор бухания online" + }, + { + "appid": 1361350, + "normalized_name": "dead or alive xtreme venus vacation" + }, + { + "appid": 1361360, + "normalized_name": "japan simulator" + }, + { + "appid": 1361390, + "normalized_name": "mafia gangster city" + }, + { + "appid": 1361400, + "normalized_name": "moonglow bay" + }, + { + "appid": 1361430, + "normalized_name": "magical stock princess" + }, + { + "appid": 1361440, + "normalized_name": "duelvox" + }, + { + "appid": 1361460, + "normalized_name": "星愿旅人 star wish traveler" + }, + { + "appid": 1361470, + "normalized_name": "illuminati simulator vr" + }, + { + "appid": 1361480, + "normalized_name": "robots death & venice" + }, + { + "appid": 1361490, + "normalized_name": "all hail the cook o tron" + }, + { + "appid": 1361500, + "normalized_name": "hentai swimming club" + }, + { + "appid": 1361510, + "normalized_name": "teenage mutant ninja turtles shredder's revenge" + }, + { + "appid": 1361520, + "normalized_name": "dondar" + }, + { + "appid": 1361540, + "normalized_name": "hentai monster quiz 2" + }, + { + "appid": 1361580, + "normalized_name": "armoured commander" + }, + { + "appid": 1361610, + "normalized_name": "fallen world" + }, + { + "appid": 1361630, + "normalized_name": "grandpurrents" + }, + { + "appid": 1361660, + "normalized_name": "alas astra" + }, + { + "appid": 1361670, + "normalized_name": "skate city" + }, + { + "appid": 1361680, + "normalized_name": "cyberpunkdreams" + }, + { + "appid": 1361690, + "normalized_name": "wish of abyss dungeon" + }, + { + "appid": 1361700, + "normalized_name": "half life alyx final hours" + }, + { + "appid": 1361720, + "normalized_name": "space fuel" + }, + { + "appid": 1361740, + "normalized_name": "die drei ??? fluch des flaschenteufels" + }, + { + "appid": 1361750, + "normalized_name": "the rebellion" + }, + { + "appid": 1361760, + "normalized_name": "cartomante" + }, + { + "appid": 1361810, + "normalized_name": "be you 2" + }, + { + "appid": 1361840, + "normalized_name": "tunnel of doom" + }, + { + "appid": 1361860, + "normalized_name": "toilet management simulator" + }, + { + "appid": 1361870, + "normalized_name": "the running man 2" + }, + { + "appid": 1361900, + "normalized_name": "outland rapture" + }, + { + "appid": 1361920, + "normalized_name": "bright paw" + }, + { + "appid": 1361950, + "normalized_name": "input out" + }, + { + "appid": 1361970, + "normalized_name": "millennium conflict" + }, + { + "appid": 1361980, + "normalized_name": "welcome to... chichester 2 part iii nightfall" + }, + { + "appid": 1361990, + "normalized_name": "forebears" + }, + { + "appid": 1362000, + "normalized_name": "skyclimbers" + }, + { + "appid": 1362010, + "normalized_name": "sex drugs and cyberpunk" + }, + { + "appid": 1362040, + "normalized_name": "dungeon swappers" + }, + { + "appid": 1362070, + "normalized_name": "maenovan" + }, + { + "appid": 1362120, + "normalized_name": "pigromance" + }, + { + "appid": 1362130, + "normalized_name": "hidden valley tower defense" + }, + { + "appid": 1362190, + "normalized_name": "endless escape" + }, + { + "appid": 1362260, + "normalized_name": "经天纪" + }, + { + "appid": 1362270, + "normalized_name": "alpha centauri space force" + }, + { + "appid": 1362290, + "normalized_name": "galaxyspace vr" + }, + { + "appid": 1362300, + "normalized_name": "abyssal agent alyss" + }, + { + "appid": 1362310, + "normalized_name": "zombie simulator" + }, + { + "appid": 1362340, + "normalized_name": "freelancer life simulator" + }, + { + "appid": 1362350, + "normalized_name": "empis" + }, + { + "appid": 1362390, + "normalized_name": "ties" + }, + { + "appid": 1362400, + "normalized_name": "critical zone" + }, + { + "appid": 1362420, + "normalized_name": "siege survival gloria victis prologue" + }, + { + "appid": 1362430, + "normalized_name": "lairchitect" + }, + { + "appid": 1362440, + "normalized_name": "lost in dungeon / 地牢迷失者" + }, + { + "appid": 1362460, + "normalized_name": "emberzone" + }, + { + "appid": 1362470, + "normalized_name": "1 bit astronaut" + }, + { + "appid": 1362480, + "normalized_name": "战地细胞(battlefield cell)" + }, + { + "appid": 1362510, + "normalized_name": "completely lar lar" + }, + { + "appid": 1362520, + "normalized_name": "the luminous underground" + }, + { + "appid": 1362550, + "normalized_name": "the ocean" + }, + { + "appid": 1362560, + "normalized_name": "fire commander" + }, + { + "appid": 1362580, + "normalized_name": "retro war" + }, + { + "appid": 1362620, + "normalized_name": "camper renovator" + }, + { + "appid": 1362650, + "normalized_name": "rolling adventure" + }, + { + "appid": 1362670, + "normalized_name": "khio" + }, + { + "appid": 1362690, + "normalized_name": "core disruption" + }, + { + "appid": 1362700, + "normalized_name": "demetria spirit" + }, + { + "appid": 1362720, + "normalized_name": "pillpop match 3" + }, + { + "appid": 1362750, + "normalized_name": "ziggy the chaser" + }, + { + "appid": 1362760, + "normalized_name": "galvatia" + }, + { + "appid": 1362780, + "normalized_name": "guildmaster gratuitous subtitle" + }, + { + "appid": 1362830, + "normalized_name": "bomber dudes" + }, + { + "appid": 1362840, + "normalized_name": "the fable of a rabbit" + }, + { + "appid": 1362850, + "normalized_name": "atlas falling" + }, + { + "appid": 1362860, + "normalized_name": "before nightfall summertime" + }, + { + "appid": 1362890, + "normalized_name": "mega roller ball" + }, + { + "appid": 1362910, + "normalized_name": "waterpark simulator" + }, + { + "appid": 1362940, + "normalized_name": "seasons of the samurai" + }, + { + "appid": 1362960, + "normalized_name": "project bullet" + }, + { + "appid": 1362980, + "normalized_name": "hanapon princess" + }, + { + "appid": 1362990, + "normalized_name": "waifu collector" + }, + { + "appid": 1363020, + "normalized_name": "100 level dungeon" + }, + { + "appid": 1363040, + "normalized_name": "hell heroes" + }, + { + "appid": 1363080, + "normalized_name": "manor lords" + }, + { + "appid": 1363090, + "normalized_name": "群星战纪 最终防卫线 stars era the final defence" + }, + { + "appid": 1363120, + "normalized_name": "幸存者之歌 the song of survivors" + }, + { + "appid": 1363140, + "normalized_name": "altwaldheim town in turmoil" + }, + { + "appid": 1363160, + "normalized_name": "a field of flowers and stars" + }, + { + "appid": 1363170, + "normalized_name": "lareissa everbright" + }, + { + "appid": 1363200, + "normalized_name": "wings of legends" + }, + { + "appid": 1363210, + "normalized_name": "live by the sword tactics" + }, + { + "appid": 1363230, + "normalized_name": "skyshards" + }, + { + "appid": 1363270, + "normalized_name": "beauty contest" + }, + { + "appid": 1363290, + "normalized_name": "signal" + }, + { + "appid": 1363310, + "normalized_name": "the headsman" + }, + { + "appid": 1363350, + "normalized_name": "monster harvest" + }, + { + "appid": 1363360, + "normalized_name": "noch" + }, + { + "appid": 1363380, + "normalized_name": "double sided" + }, + { + "appid": 1363390, + "normalized_name": "the darkest island" + }, + { + "appid": 1363400, + "normalized_name": "no more light" + }, + { + "appid": 1363430, + "normalized_name": "propagation vr" + }, + { + "appid": 1363490, + "normalized_name": "dragon spirits prologue" + }, + { + "appid": 1363560, + "normalized_name": "shattered worlds" + }, + { + "appid": 1363600, + "normalized_name": "momo.exe vr" + }, + { + "appid": 1363620, + "normalized_name": "yako" + }, + { + "appid": 1363660, + "normalized_name": "emerald lake" + }, + { + "appid": 1363680, + "normalized_name": "falling out" + }, + { + "appid": 1363690, + "normalized_name": "fantastic contraption classic 1 & 2" + }, + { + "appid": 1363730, + "normalized_name": "blorks the quest for magnesium" + }, + { + "appid": 1363740, + "normalized_name": "the troop" + }, + { + "appid": 1363770, + "normalized_name": "escape quest" + }, + { + "appid": 1363780, + "normalized_name": "oceanfall" + }, + { + "appid": 1363790, + "normalized_name": "deadly way" + }, + { + "appid": 1363810, + "normalized_name": "astra" + }, + { + "appid": 1363840, + "normalized_name": "saviors of sapphire wings / stranger of sword city revisited" + }, + { + "appid": 1363850, + "normalized_name": "the impossible" + }, + { + "appid": 1363860, + "normalized_name": "深陷迷宫" + }, + { + "appid": 1363900, + "normalized_name": "farworld pioneers" + }, + { + "appid": 1363940, + "normalized_name": "tenjutsu" + }, + { + "appid": 1363960, + "normalized_name": "sweetest thing" + }, + { + "appid": 1363980, + "normalized_name": "时之痕 trace of time" + }, + { + "appid": 1364010, + "normalized_name": "the librarian" + }, + { + "appid": 1364090, + "normalized_name": "lights camera slaughter" + }, + { + "appid": 1364100, + "normalized_name": "lacuna – a sci fi noir adventure" + }, + { + "appid": 1364130, + "normalized_name": "ber bausimulator" + }, + { + "appid": 1364150, + "normalized_name": "hide and shoot" + }, + { + "appid": 1364160, + "normalized_name": "flying sofa simulator" + }, + { + "appid": 1364170, + "normalized_name": "godless lands" + }, + { + "appid": 1364180, + "normalized_name": "counter operation online" + }, + { + "appid": 1364210, + "normalized_name": "city bus manager" + }, + { + "appid": 1364230, + "normalized_name": "nyako restaurant tycoon" + }, + { + "appid": 1364240, + "normalized_name": "farrock dodgeball" + }, + { + "appid": 1364290, + "normalized_name": "animalia survival" + }, + { + "appid": 1364330, + "normalized_name": "hellbreachers" + }, + { + "appid": 1364340, + "normalized_name": "operation serpens" + }, + { + "appid": 1364350, + "normalized_name": "crate wars" + }, + { + "appid": 1364360, + "normalized_name": "last space mission" + }, + { + "appid": 1364380, + "normalized_name": "rules of gravity" + }, + { + "appid": 1364400, + "normalized_name": "the holy city" + }, + { + "appid": 1364430, + "normalized_name": "gryphon knight epic" + }, + { + "appid": 1364450, + "normalized_name": "the ground division" + }, + { + "appid": 1364460, + "normalized_name": "keizudo" + }, + { + "appid": 1364490, + "normalized_name": "constellations beyond the edges" + }, + { + "appid": 1364500, + "normalized_name": "drive or die" + }, + { + "appid": 1364510, + "normalized_name": "'member the alamo?" + }, + { + "appid": 1364570, + "normalized_name": "starshot" + }, + { + "appid": 1364580, + "normalized_name": "nyanroo the supercat" + }, + { + "appid": 1364610, + "normalized_name": "take me home" + }, + { + "appid": 1364620, + "normalized_name": "worldstone chronicles" + }, + { + "appid": 1364690, + "normalized_name": "first racer" + }, + { + "appid": 1364710, + "normalized_name": "skycadia" + }, + { + "appid": 1364730, + "normalized_name": "endless bounty" + }, + { + "appid": 1364740, + "normalized_name": "brocula" + }, + { + "appid": 1364750, + "normalized_name": "pop and well" + }, + { + "appid": 1364760, + "normalized_name": "cotton rock'n'roll superlative night dreams" + }, + { + "appid": 1364780, + "normalized_name": "street fighter 6" + }, + { + "appid": 1364800, + "normalized_name": "the emperor's own alpha teaser" + }, + { + "appid": 1364830, + "normalized_name": "tinypoker" + }, + { + "appid": 1364940, + "normalized_name": "the backrooms | the garden" + }, + { + "appid": 1364960, + "normalized_name": "hello neighbor 2 alpha 1.5" + }, + { + "appid": 1364980, + "normalized_name": "projet blari" + }, + { + "appid": 1365010, + "normalized_name": "lost potato" + }, + { + "appid": 1365030, + "normalized_name": "cybershock future parkour" + }, + { + "appid": 1365140, + "normalized_name": "ex life" + }, + { + "appid": 1365380, + "normalized_name": "atria valkyrie" + }, + { + "appid": 1365390, + "normalized_name": "facility 47" + }, + { + "appid": 1365400, + "normalized_name": "my universe pet clinic cats & dogs" + }, + { + "appid": 1365410, + "normalized_name": "my universe fashion boutique" + }, + { + "appid": 1365490, + "normalized_name": "stellaren ii" + }, + { + "appid": 1365500, + "normalized_name": "vapor music tour" + }, + { + "appid": 1365510, + "normalized_name": "rainy neon" + }, + { + "appid": 1365530, + "normalized_name": "leaving" + }, + { + "appid": 1365540, + "normalized_name": "hot tiles" + }, + { + "appid": 1365550, + "normalized_name": "the grand lord" + }, + { + "appid": 1365590, + "normalized_name": "timewalk tower defense" + }, + { + "appid": 1365600, + "normalized_name": "reptrails" + }, + { + "appid": 1365620, + "normalized_name": "i'm a love interest in my childhood friend's reverse harem!!!" + }, + { + "appid": 1365630, + "normalized_name": "bal solid" + }, + { + "appid": 1365680, + "normalized_name": "insulated at the bottom" + }, + { + "appid": 1365700, + "normalized_name": "fleeting world" + }, + { + "appid": 1365720, + "normalized_name": "kujlevka" + }, + { + "appid": 1365750, + "normalized_name": "东方栖霞园 ~ blue devil in thebelvedere." + }, + { + "appid": 1365780, + "normalized_name": "tales of chandar" + }, + { + "appid": 1365800, + "normalized_name": "city of thugs" + }, + { + "appid": 1365810, + "normalized_name": "fate in the darkness" + }, + { + "appid": 1365900, + "normalized_name": "mystika 4 dark omens" + }, + { + "appid": 1365930, + "normalized_name": "shadow walls" + }, + { + "appid": 1365950, + "normalized_name": "vr hentai room" + }, + { + "appid": 1366000, + "normalized_name": "dream of salmon" + }, + { + "appid": 1366010, + "normalized_name": "bromeliad" + }, + { + "appid": 1366040, + "normalized_name": "trench simulator" + }, + { + "appid": 1366060, + "normalized_name": "refraction" + }, + { + "appid": 1366070, + "normalized_name": "push blox" + }, + { + "appid": 1366100, + "normalized_name": "azalea" + }, + { + "appid": 1366110, + "normalized_name": "child arms" + }, + { + "appid": 1366130, + "normalized_name": "floral town" + }, + { + "appid": 1366150, + "normalized_name": "greedy dungeon" + }, + { + "appid": 1366160, + "normalized_name": "top billiards" + }, + { + "appid": 1366180, + "normalized_name": "she is my sin" + }, + { + "appid": 1366200, + "normalized_name": "rog & roll" + }, + { + "appid": 1366230, + "normalized_name": "tower of origin/起源之塔~地底的欲望探险之旅~" + }, + { + "appid": 1366240, + "normalized_name": "dumblab" + }, + { + "appid": 1366260, + "normalized_name": "soul device" + }, + { + "appid": 1366270, + "normalized_name": "primal carnage extinction workshop tool" + }, + { + "appid": 1366280, + "normalized_name": "blood rite" + }, + { + "appid": 1366290, + "normalized_name": "kill it with fire heatwave" + }, + { + "appid": 1366310, + "normalized_name": "try to survive!" + }, + { + "appid": 1366320, + "normalized_name": "shine's adventures 0 (zombies reload)" + }, + { + "appid": 1366390, + "normalized_name": "lupr lunar post recruit" + }, + { + "appid": 1366420, + "normalized_name": "cellular harvest" + }, + { + "appid": 1366510, + "normalized_name": "炼器师" + }, + { + "appid": 1366520, + "normalized_name": "dungeon limbus" + }, + { + "appid": 1366530, + "normalized_name": "the good chicken" + }, + { + "appid": 1366540, + "normalized_name": "dyson sphere program" + }, + { + "appid": 1366550, + "normalized_name": "explore girl · rope sprite / 探险少女·缚姬索" + }, + { + "appid": 1366560, + "normalized_name": "mile high taxi" + }, + { + "appid": 1366570, + "normalized_name": "resonark x" + }, + { + "appid": 1366610, + "normalized_name": "fox simulator" + }, + { + "appid": 1366650, + "normalized_name": "cold depth" + }, + { + "appid": 1366680, + "normalized_name": "san diablos" + }, + { + "appid": 1366700, + "normalized_name": "quintus and the absent truth" + }, + { + "appid": 1366710, + "normalized_name": "memory battle" + }, + { + "appid": 1366720, + "normalized_name": "vidiot game" + }, + { + "appid": 1366730, + "normalized_name": "airline technician" + }, + { + "appid": 1366740, + "normalized_name": "magic chess online" + }, + { + "appid": 1366760, + "normalized_name": "the last wulin" + }, + { + "appid": 1366770, + "normalized_name": "pecaminosa" + }, + { + "appid": 1366810, + "normalized_name": "accro" + }, + { + "appid": 1366830, + "normalized_name": "quiz pro guess pictures" + }, + { + "appid": 1366850, + "normalized_name": "jected rivals" + }, + { + "appid": 1366930, + "normalized_name": "rainbow laser disco dungeon" + }, + { + "appid": 1366940, + "normalized_name": "time gap puppies" + }, + { + "appid": 1366960, + "normalized_name": "kotoba no puzzle mojipittan encore" + }, + { + "appid": 1366970, + "normalized_name": "saturday morning sandbox" + }, + { + "appid": 1366980, + "normalized_name": "community college hero all things end" + }, + { + "appid": 1367040, + "normalized_name": "kingdom of wreck business" + }, + { + "appid": 1367050, + "normalized_name": "becloudead" + }, + { + "appid": 1367080, + "normalized_name": "mobile suit gundam battle operation 2" + }, + { + "appid": 1367090, + "normalized_name": "i'm oh so busy... a week with yoshimi" + }, + { + "appid": 1367110, + "normalized_name": "child of abyss" + }, + { + "appid": 1367130, + "normalized_name": "foxvoltex" + }, + { + "appid": 1367160, + "normalized_name": "wetlands" + }, + { + "appid": 1367170, + "normalized_name": "planet's edge" + }, + { + "appid": 1367190, + "normalized_name": "allied ambush" + }, + { + "appid": 1367220, + "normalized_name": "wild gun" + }, + { + "appid": 1367230, + "normalized_name": "neon cyborg cat club" + }, + { + "appid": 1367240, + "normalized_name": "blue pill glitch" + }, + { + "appid": 1367250, + "normalized_name": "arabel" + }, + { + "appid": 1367270, + "normalized_name": "battlescar punk was invented by girls" + }, + { + "appid": 1367300, + "normalized_name": "blade assault" + }, + { + "appid": 1367320, + "normalized_name": "close combat cross of iron" + }, + { + "appid": 1367330, + "normalized_name": "close combat modern tactics" + }, + { + "appid": 1367340, + "normalized_name": "polygon life" + }, + { + "appid": 1367350, + "normalized_name": "destructive behavior" + }, + { + "appid": 1367360, + "normalized_name": "the cost of recovery" + }, + { + "appid": 1367380, + "normalized_name": "she salutes" + }, + { + "appid": 1367420, + "normalized_name": "one line coloring" + }, + { + "appid": 1367430, + "normalized_name": "furry woof and nya" + }, + { + "appid": 1367460, + "normalized_name": "perseverance part 2" + }, + { + "appid": 1367490, + "normalized_name": "a completely normal dating simulation that is definitely completely sweet innnocent and normal somethingeth aniversary" + }, + { + "appid": 1367520, + "normalized_name": "fake illusions" + }, + { + "appid": 1367530, + "normalized_name": "rekt crash test" + }, + { + "appid": 1367550, + "normalized_name": "kingdom rush vengeance tower defense" + }, + { + "appid": 1367580, + "normalized_name": "ギセイヒーロー体験版" + }, + { + "appid": 1367590, + "normalized_name": "tormented souls" + }, + { + "appid": 1367620, + "normalized_name": "domestic defense" + }, + { + "appid": 1367680, + "normalized_name": "charge!" + }, + { + "appid": 1367690, + "normalized_name": "tony stewart's all american racing" + }, + { + "appid": 1367710, + "normalized_name": "dixotomia" + }, + { + "appid": 1367720, + "normalized_name": "general war memories" + }, + { + "appid": 1367730, + "normalized_name": "plugged" + }, + { + "appid": 1367760, + "normalized_name": "aod art of defense" + }, + { + "appid": 1367770, + "normalized_name": "flying propeller" + }, + { + "appid": 1367780, + "normalized_name": "baby coyote" + }, + { + "appid": 1367860, + "normalized_name": "damned hand" + }, + { + "appid": 1367880, + "normalized_name": "critterland" + }, + { + "appid": 1367940, + "normalized_name": "chronomancer" + }, + { + "appid": 1367950, + "normalized_name": "aeloren tactics" + }, + { + "appid": 1367960, + "normalized_name": "百詰怪軼與金魚" + }, + { + "appid": 1367970, + "normalized_name": "motionless" + }, + { + "appid": 1367980, + "normalized_name": "battle jacked" + }, + { + "appid": 1368000, + "normalized_name": "secret agent allan martin in ... phoenix erupting" + }, + { + "appid": 1368010, + "normalized_name": "primal hearts 2" + }, + { + "appid": 1368030, + "normalized_name": "anno mutationem" + }, + { + "appid": 1368040, + "normalized_name": "the tideshell keeper" + }, + { + "appid": 1368050, + "normalized_name": "sea legends" + }, + { + "appid": 1368060, + "normalized_name": "dead run" + }, + { + "appid": 1368100, + "normalized_name": "necore warriors" + }, + { + "appid": 1368120, + "normalized_name": "messy room simulator" + }, + { + "appid": 1368130, + "normalized_name": "park beyond" + }, + { + "appid": 1368160, + "normalized_name": "heart of muriet" + }, + { + "appid": 1368230, + "normalized_name": "patient zero" + }, + { + "appid": 1368240, + "normalized_name": "isle of the crown" + }, + { + "appid": 1368260, + "normalized_name": "dark farm" + }, + { + "appid": 1368330, + "normalized_name": "vr marco polo's travelling in medieval asia (the far east chinese japanese shogun khitan...revisit a.d. 1290)" + }, + { + "appid": 1368340, + "normalized_name": "beneath a steel sky (1994)" + }, + { + "appid": 1368350, + "normalized_name": "instability" + }, + { + "appid": 1368400, + "normalized_name": "pombero the lord of the night" + }, + { + "appid": 1368410, + "normalized_name": "psycron" + }, + { + "appid": 1368420, + "normalized_name": "sokodice" + }, + { + "appid": 1368480, + "normalized_name": "voidwalkers astora's darkness" + }, + { + "appid": 1368540, + "normalized_name": "dead horizon" + }, + { + "appid": 1368560, + "normalized_name": "rogue randy" + }, + { + "appid": 1368580, + "normalized_name": "play with me 2 on the other side" + }, + { + "appid": 1368620, + "normalized_name": "healing movement" + }, + { + "appid": 1368640, + "normalized_name": "black knight milena" + }, + { + "appid": 1368670, + "normalized_name": "beach volleyball competition" + }, + { + "appid": 1368690, + "normalized_name": "蛊婆 东海地宫 lady in tomb beneath the ocean" + }, + { + "appid": 1368700, + "normalized_name": "cage(囚岛)" + }, + { + "appid": 1368750, + "normalized_name": "jigsaw puzzles master artists of old" + }, + { + "appid": 1368770, + "normalized_name": "the line" + }, + { + "appid": 1368780, + "normalized_name": "the mikado birdgirl in taichung" + }, + { + "appid": 1368820, + "normalized_name": "rollercoaster tycoon 3" + }, + { + "appid": 1368830, + "normalized_name": "回纹战棋" + }, + { + "appid": 1368850, + "normalized_name": "cursed treasure 2 tower defense" + }, + { + "appid": 1368860, + "normalized_name": "像素女友" + }, + { + "appid": 1368870, + "normalized_name": "field of glory ii medieval" + }, + { + "appid": 1368880, + "normalized_name": "corona kombat" + }, + { + "appid": 1368890, + "normalized_name": "hong kong obscure" + }, + { + "appid": 1368960, + "normalized_name": "fishing sim world bass pro shops" + }, + { + "appid": 1368970, + "normalized_name": "rover mechanic challenge erc competition" + }, + { + "appid": 1369050, + "normalized_name": "nurse me!" + }, + { + "appid": 1369090, + "normalized_name": "chibi wars kinetic novel" + }, + { + "appid": 1369320, + "normalized_name": "virtual cottage" + }, + { + "appid": 1369340, + "normalized_name": "cats organized neatly" + }, + { + "appid": 1369350, + "normalized_name": "speechless" + }, + { + "appid": 1369370, + "normalized_name": "combat mission shock force 2" + }, + { + "appid": 1369390, + "normalized_name": "tome rush" + }, + { + "appid": 1369400, + "normalized_name": "croppy boy" + }, + { + "appid": 1369410, + "normalized_name": "dream stone 2" + }, + { + "appid": 1369420, + "normalized_name": "millville" + }, + { + "appid": 1369430, + "normalized_name": "the light of the darkness renascence" + }, + { + "appid": 1369470, + "normalized_name": "pincremental" + }, + { + "appid": 1369480, + "normalized_name": "gnomonic" + }, + { + "appid": 1369510, + "normalized_name": "patagon" + }, + { + "appid": 1369520, + "normalized_name": "strangeland" + }, + { + "appid": 1369560, + "normalized_name": "obsolete" + }, + { + "appid": 1369570, + "normalized_name": "spirit messages" + }, + { + "appid": 1369580, + "normalized_name": "being mindful" + }, + { + "appid": 1369610, + "normalized_name": "wacky cartoon racers" + }, + { + "appid": 1369630, + "normalized_name": "ender lilies quietus of the knights" + }, + { + "appid": 1369670, + "normalized_name": "motor town behind the wheel" + }, + { + "appid": 1369690, + "normalized_name": "king's orders" + }, + { + "appid": 1369700, + "normalized_name": "solar expanse" + }, + { + "appid": 1369720, + "normalized_name": "innchanted" + }, + { + "appid": 1369730, + "normalized_name": "citizens unite! earth x space" + }, + { + "appid": 1369740, + "normalized_name": "dragon lapis" + }, + { + "appid": 1369760, + "normalized_name": "[ninja gaiden master collection] ninja gaiden 3 razor's edge" + }, + { + "appid": 1369770, + "normalized_name": "mannarites" + }, + { + "appid": 1369780, + "normalized_name": "opus ludum" + }, + { + "appid": 1369790, + "normalized_name": "marshmallow all the way home" + }, + { + "appid": 1369800, + "normalized_name": "spaceslingers" + }, + { + "appid": 1369830, + "normalized_name": "kaiju krashers" + }, + { + "appid": 1369950, + "normalized_name": "亡命尸潮惊魂夜 escape zombies at night" + }, + { + "appid": 1369970, + "normalized_name": "infinite mana" + }, + { + "appid": 1369980, + "normalized_name": "abyss the forgotten past" + }, + { + "appid": 1369990, + "normalized_name": "deep states story" + }, + { + "appid": 1370000, + "normalized_name": "max and the book of chaos" + }, + { + "appid": 1370040, + "normalized_name": "underlings" + }, + { + "appid": 1370050, + "normalized_name": "trek to yomi" + }, + { + "appid": 1370060, + "normalized_name": "琪露诺的信仰之战 ~ cirno's battle of faith" + }, + { + "appid": 1370110, + "normalized_name": "sarab 2 thalj mountains" + }, + { + "appid": 1370130, + "normalized_name": "rezzil index / lite" + }, + { + "appid": 1370140, + "normalized_name": "kao the kangaroo" + }, + { + "appid": 1370170, + "normalized_name": "diorama builder" + }, + { + "appid": 1370180, + "normalized_name": "alien cat 6" + }, + { + "appid": 1370220, + "normalized_name": "bao" + }, + { + "appid": 1370250, + "normalized_name": "super nate adventure" + }, + { + "appid": 1370300, + "normalized_name": "ultragun dreamland" + }, + { + "appid": 1370310, + "normalized_name": "jewel of kuru" + }, + { + "appid": 1370370, + "normalized_name": "lands of sorcery" + }, + { + "appid": 1370390, + "normalized_name": "offroad horizons arcade rock crawling" + }, + { + "appid": 1370400, + "normalized_name": "sir squire" + }, + { + "appid": 1370410, + "normalized_name": "progress game" + }, + { + "appid": 1370420, + "normalized_name": "bill hates videogames" + }, + { + "appid": 1370430, + "normalized_name": "police chase" + }, + { + "appid": 1370470, + "normalized_name": "paralax vr aim trainer" + }, + { + "appid": 1370510, + "normalized_name": "tahul" + }, + { + "appid": 1370550, + "normalized_name": "circles of hell" + }, + { + "appid": 1370560, + "normalized_name": "刷怪模拟器" + }, + { + "appid": 1370570, + "normalized_name": "first person shooter kit showcase" + }, + { + "appid": 1370580, + "normalized_name": "toilet paper unleashed" + }, + { + "appid": 1370600, + "normalized_name": "supercuponline" + }, + { + "appid": 1370610, + "normalized_name": "mushroom picker simulator" + }, + { + "appid": 1370620, + "normalized_name": "zodiac girls" + }, + { + "appid": 1370630, + "normalized_name": "sport girls" + }, + { + "appid": 1370640, + "normalized_name": "rewrite dyh" + }, + { + "appid": 1370660, + "normalized_name": "playz" + }, + { + "appid": 1370680, + "normalized_name": "lucid steam" + }, + { + "appid": 1370690, + "normalized_name": "how i learned to skate" + }, + { + "appid": 1370710, + "normalized_name": "7n7" + }, + { + "appid": 1370720, + "normalized_name": "starship intruder" + }, + { + "appid": 1370770, + "normalized_name": "let it go how to realize your dreams" + }, + { + "appid": 1370820, + "normalized_name": "welcome to the polyverse" + }, + { + "appid": 1370840, + "normalized_name": "fellatrain" + }, + { + "appid": 1370850, + "normalized_name": "elasto mania ii" + }, + { + "appid": 1370940, + "normalized_name": "novamundi" + }, + { + "appid": 1370950, + "normalized_name": "out of oblivion" + }, + { + "appid": 1370960, + "normalized_name": "nerg loves them" + }, + { + "appid": 1370970, + "normalized_name": "gamitate meditate relax feel better" + }, + { + "appid": 1370980, + "normalized_name": "end war rts 2" + }, + { + "appid": 1371000, + "normalized_name": "anotherone" + }, + { + "appid": 1371040, + "normalized_name": "коридоры их воспоминаний" + }, + { + "appid": 1371050, + "normalized_name": "illness in the east" + }, + { + "appid": 1371090, + "normalized_name": "illegal race tuning" + }, + { + "appid": 1371110, + "normalized_name": "labyrinth 2" + }, + { + "appid": 1371120, + "normalized_name": "the maze escaper" + }, + { + "appid": 1371160, + "normalized_name": "inmaze" + }, + { + "appid": 1371170, + "normalized_name": "3 min per day! improve your aged eyes(presbyopia)" + }, + { + "appid": 1371180, + "normalized_name": "star rover" + }, + { + "appid": 1371210, + "normalized_name": "guess pictures animals" + }, + { + "appid": 1371220, + "normalized_name": "death the ascension" + }, + { + "appid": 1371230, + "normalized_name": "4th dawn" + }, + { + "appid": 1371270, + "normalized_name": "la ultima comida" + }, + { + "appid": 1371280, + "normalized_name": "anetona" + }, + { + "appid": 1371300, + "normalized_name": "cuba2077" + }, + { + "appid": 1371320, + "normalized_name": "beat flip" + }, + { + "appid": 1371330, + "normalized_name": "vessels" + }, + { + "appid": 1371340, + "normalized_name": "the wicked sorceress" + }, + { + "appid": 1371350, + "normalized_name": "solenars edge ii champions" + }, + { + "appid": 1371380, + "normalized_name": "space soldier" + }, + { + "appid": 1371460, + "normalized_name": "alien cat 7" + }, + { + "appid": 1371470, + "normalized_name": "ant force" + }, + { + "appid": 1371500, + "normalized_name": "cargo company" + }, + { + "appid": 1371510, + "normalized_name": "this game might improve your memory" + }, + { + "appid": 1371520, + "normalized_name": "red colony uncensored" + }, + { + "appid": 1371540, + "normalized_name": "spartoi meadow" + }, + { + "appid": 1371550, + "normalized_name": "flight catastrophe" + }, + { + "appid": 1371560, + "normalized_name": "darknot" + }, + { + "appid": 1371570, + "normalized_name": "a fox tale" + }, + { + "appid": 1371580, + "normalized_name": "myth of empires" + }, + { + "appid": 1371600, + "normalized_name": "star puzzle" + }, + { + "appid": 1371610, + "normalized_name": "apple hopper" + }, + { + "appid": 1371620, + "normalized_name": "clash memory game" + }, + { + "appid": 1371630, + "normalized_name": "incremental adventures" + }, + { + "appid": 1371640, + "normalized_name": "amira" + }, + { + "appid": 1371660, + "normalized_name": "time for you chapter 01" + }, + { + "appid": 1371690, + "normalized_name": "graven" + }, + { + "appid": 1371700, + "normalized_name": "divinest light" + }, + { + "appid": 1371710, + "normalized_name": "rogue aces deluxe" + }, + { + "appid": 1371720, + "normalized_name": "card shark" + }, + { + "appid": 1371730, + "normalized_name": "a little bird" + }, + { + "appid": 1371740, + "normalized_name": "caste the secret of devon" + }, + { + "appid": 1371750, + "normalized_name": "t minus 30" + }, + { + "appid": 1371760, + "normalized_name": "birthright" + }, + { + "appid": 1371770, + "normalized_name": "宵闇ノ影" + }, + { + "appid": 1371780, + "normalized_name": "dungeons & cocks" + }, + { + "appid": 1371790, + "normalized_name": "the evil in the forest" + }, + { + "appid": 1371800, + "normalized_name": "my nuclear octopus" + }, + { + "appid": 1371810, + "normalized_name": "bamerang warm up duel" + }, + { + "appid": 1371860, + "normalized_name": "space cube racers" + }, + { + "appid": 1371880, + "normalized_name": "solar echoes the star legation" + }, + { + "appid": 1371900, + "normalized_name": "kyoki" + }, + { + "appid": 1371910, + "normalized_name": "worlds align deadly dream collector's" + }, + { + "appid": 1371930, + "normalized_name": "family quiz" + }, + { + "appid": 1371940, + "normalized_name": "milo's quest" + }, + { + "appid": 1371980, + "normalized_name": "no rest for the wicked" + }, + { + "appid": 1372000, + "normalized_name": "flowstone saga" + }, + { + "appid": 1372010, + "normalized_name": "cube shifter" + }, + { + "appid": 1372090, + "normalized_name": "hentai cyberpunk" + }, + { + "appid": 1372110, + "normalized_name": "jojo's bizarre adventure all star battle r" + }, + { + "appid": 1372120, + "normalized_name": "vr time machine travelling in history medieval castle fort and village life in 1071 1453 europe" + }, + { + "appid": 1372150, + "normalized_name": "fish game" + }, + { + "appid": 1372180, + "normalized_name": "the call of paperplane" + }, + { + "appid": 1372210, + "normalized_name": "dap" + }, + { + "appid": 1372260, + "normalized_name": "watch your helmet" + }, + { + "appid": 1372270, + "normalized_name": "boxfight" + }, + { + "appid": 1372280, + "normalized_name": "melty blood type lumina" + }, + { + "appid": 1372300, + "normalized_name": "iwaihime" + }, + { + "appid": 1372310, + "normalized_name": "love mystery club" + }, + { + "appid": 1372320, + "normalized_name": "cloud gardens" + }, + { + "appid": 1372350, + "normalized_name": "skylife voxelsurvival" + }, + { + "appid": 1372370, + "normalized_name": "last of ass" + }, + { + "appid": 1372380, + "normalized_name": "cynoroid gaiden" + }, + { + "appid": 1372390, + "normalized_name": "cosmic disco" + }, + { + "appid": 1372410, + "normalized_name": "desecration~褻渎" + }, + { + "appid": 1372430, + "normalized_name": "spells and fellas" + }, + { + "appid": 1372450, + "normalized_name": "iron reich" + }, + { + "appid": 1372460, + "normalized_name": "aaaaaaaaaaaaaaaaaaaaaaaaa!!!" + }, + { + "appid": 1372470, + "normalized_name": "quantum derelict" + }, + { + "appid": 1372480, + "normalized_name": "shots" + }, + { + "appid": 1372530, + "normalized_name": "fly corp" + }, + { + "appid": 1372550, + "normalized_name": "the nightmare" + }, + { + "appid": 1372560, + "normalized_name": "olympic basketball" + }, + { + "appid": 1372570, + "normalized_name": "domino house" + }, + { + "appid": 1372630, + "normalized_name": "whizz ball" + }, + { + "appid": 1372640, + "normalized_name": "candle in darkness" + }, + { + "appid": 1372650, + "normalized_name": "demons ate my neighbors!" + }, + { + "appid": 1372660, + "normalized_name": "an amazing wizard" + }, + { + "appid": 1372670, + "normalized_name": "86" + }, + { + "appid": 1372700, + "normalized_name": "off the chains disc golf" + }, + { + "appid": 1372730, + "normalized_name": "phaseshift" + }, + { + "appid": 1372800, + "normalized_name": "gloom and doom" + }, + { + "appid": 1372810, + "normalized_name": "teamfight manager" + }, + { + "appid": 1372820, + "normalized_name": "skyseeker" + }, + { + "appid": 1372830, + "normalized_name": "fantasy tavern sextet vol.1 new world days" + }, + { + "appid": 1372840, + "normalized_name": "curling on line" + }, + { + "appid": 1372870, + "normalized_name": "game" + }, + { + "appid": 1372910, + "normalized_name": "project crimson" + }, + { + "appid": 1372940, + "normalized_name": "behind closed doors a developer's tale" + }, + { + "appid": 1372990, + "normalized_name": "pba basketball slam arcade" + }, + { + "appid": 1373020, + "normalized_name": "fox's holiday / 狐の假期" + }, + { + "appid": 1373080, + "normalized_name": "twin breaker a sacred symbols adventure" + }, + { + "appid": 1373090, + "normalized_name": "yes your grace 2 snowfall" + }, + { + "appid": 1373100, + "normalized_name": "vr museum" + }, + { + "appid": 1373110, + "normalized_name": "reflect horizons" + }, + { + "appid": 1373170, + "normalized_name": "slimesphere" + }, + { + "appid": 1373180, + "normalized_name": "the sea hotel☆umineko tei" + }, + { + "appid": 1373230, + "normalized_name": "portals world" + }, + { + "appid": 1373240, + "normalized_name": "cube raiders" + }, + { + "appid": 1373250, + "normalized_name": "lonely birds" + }, + { + "appid": 1373260, + "normalized_name": "obsidian prince" + }, + { + "appid": 1373280, + "normalized_name": "offroad racing on line" + }, + { + "appid": 1373310, + "normalized_name": "oubey vr samurai" + }, + { + "appid": 1373320, + "normalized_name": "i'a i'a cofflhu fhtagnyaa" + }, + { + "appid": 1373350, + "normalized_name": "phobos" + }, + { + "appid": 1373380, + "normalized_name": "building 847" + }, + { + "appid": 1373390, + "normalized_name": "kapow pets" + }, + { + "appid": 1373400, + "normalized_name": "shutterbug stud" + }, + { + "appid": 1373410, + "normalized_name": "data mining x" + }, + { + "appid": 1373420, + "normalized_name": "dead or mad" + }, + { + "appid": 1373430, + "normalized_name": "leisure suit larry wet dreams dry twice" + }, + { + "appid": 1373440, + "normalized_name": "picross for a cause" + }, + { + "appid": 1373450, + "normalized_name": "misplaced" + }, + { + "appid": 1373460, + "normalized_name": "crown legion" + }, + { + "appid": 1373470, + "normalized_name": "magical strings" + }, + { + "appid": 1373500, + "normalized_name": "mist of the undead" + }, + { + "appid": 1373510, + "normalized_name": "bloodrayne terminal cut" + }, + { + "appid": 1373530, + "normalized_name": "militsioner" + }, + { + "appid": 1373550, + "normalized_name": "bloodrayne 2 terminal cut" + }, + { + "appid": 1373560, + "normalized_name": "super chopper" + }, + { + "appid": 1373580, + "normalized_name": "bor" + }, + { + "appid": 1373600, + "normalized_name": "day of the dead solitaire collection" + }, + { + "appid": 1373620, + "normalized_name": "depersonated" + }, + { + "appid": 1373630, + "normalized_name": "ragnar's chinese memory game" + }, + { + "appid": 1373670, + "normalized_name": "the roy game" + }, + { + "appid": 1373680, + "normalized_name": "small iron" + }, + { + "appid": 1373700, + "normalized_name": "barry the bunny" + }, + { + "appid": 1373710, + "normalized_name": "mina & michi" + }, + { + "appid": 1373740, + "normalized_name": "prehistoric dude" + }, + { + "appid": 1373750, + "normalized_name": "super box land demake" + }, + { + "appid": 1373760, + "normalized_name": "super wiloo demake" + }, + { + "appid": 1373770, + "normalized_name": "sea legends" + }, + { + "appid": 1373780, + "normalized_name": "bakery magnate beginning" + }, + { + "appid": 1373810, + "normalized_name": "orlando theme park vr roller coaster and rides" + }, + { + "appid": 1373830, + "normalized_name": "spl skilled pilots live" + }, + { + "appid": 1373850, + "normalized_name": "skin" + }, + { + "appid": 1373880, + "normalized_name": "hello neighbor 2 alpha 1" + }, + { + "appid": 1373890, + "normalized_name": "fight n' fall" + }, + { + "appid": 1373910, + "normalized_name": "anvil empires" + }, + { + "appid": 1373920, + "normalized_name": "sword rogue" + }, + { + "appid": 1373930, + "normalized_name": "dino nest" + }, + { + "appid": 1373950, + "normalized_name": "the divine speaker" + }, + { + "appid": 1373960, + "normalized_name": "indika" + }, + { + "appid": 1373980, + "normalized_name": "raccoon roller" + }, + { + "appid": 1373990, + "normalized_name": "the majesti" + }, + { + "appid": 1374010, + "normalized_name": "grand prix racing on line" + }, + { + "appid": 1374040, + "normalized_name": "ヨガって!奥様" + }, + { + "appid": 1374050, + "normalized_name": "kiro" + }, + { + "appid": 1374090, + "normalized_name": "divine adventure act one" + }, + { + "appid": 1374170, + "normalized_name": "camp canyonwood" + }, + { + "appid": 1374200, + "normalized_name": "lockdown vr kidnapped" + }, + { + "appid": 1374220, + "normalized_name": "gamerz castle rush!" + }, + { + "appid": 1374230, + "normalized_name": "flame keeper" + }, + { + "appid": 1374260, + "normalized_name": "letterbound" + }, + { + "appid": 1374280, + "normalized_name": "kor" + }, + { + "appid": 1374290, + "normalized_name": "palindrome syndrome escape room" + }, + { + "appid": 1374320, + "normalized_name": "regeneration" + }, + { + "appid": 1374330, + "normalized_name": "vr time travelling in medieval towns and islands magellan's life in ancient europe the great exploration age and a.d.1500 time machine" + }, + { + "appid": 1374350, + "normalized_name": "tiny troopers global ops" + }, + { + "appid": 1374370, + "normalized_name": "witchcrafter empire legends" + }, + { + "appid": 1374390, + "normalized_name": "code of superheroes" + }, + { + "appid": 1374400, + "normalized_name": "where is my parking spot" + }, + { + "appid": 1374410, + "normalized_name": "tcstrikers2" + }, + { + "appid": 1374430, + "normalized_name": "三国模拟器 three kingdoms simulator" + }, + { + "appid": 1374440, + "normalized_name": "medieval archery simulator" + }, + { + "appid": 1374460, + "normalized_name": "heaock" + }, + { + "appid": 1374470, + "normalized_name": "hentai cool girls" + }, + { + "appid": 1374480, + "normalized_name": "爱人 lover" + }, + { + "appid": 1374490, + "normalized_name": "runescape dragonwilds" + }, + { + "appid": 1374500, + "normalized_name": "sweet and cute" + }, + { + "appid": 1374580, + "normalized_name": "dirge" + }, + { + "appid": 1374590, + "normalized_name": "恶狼之舞 monsterwolf" + }, + { + "appid": 1374600, + "normalized_name": "rundrill" + }, + { + "appid": 1374630, + "normalized_name": "uploaded" + }, + { + "appid": 1374640, + "normalized_name": "hive mind" + }, + { + "appid": 1374700, + "normalized_name": "big bobby car – the big race" + }, + { + "appid": 1374740, + "normalized_name": "isolated life" + }, + { + "appid": 1374750, + "normalized_name": "out of place" + }, + { + "appid": 1374810, + "normalized_name": "ghost knight a dark tale" + }, + { + "appid": 1374820, + "normalized_name": "mbhl20" + }, + { + "appid": 1374840, + "normalized_name": "dark deity" + }, + { + "appid": 1374850, + "normalized_name": "eldrador creatures" + }, + { + "appid": 1374860, + "normalized_name": "nocturne" + }, + { + "appid": 1374890, + "normalized_name": "crossword city chronicles" + }, + { + "appid": 1374910, + "normalized_name": "distant transmission" + }, + { + "appid": 1374920, + "normalized_name": "storyarcana" + }, + { + "appid": 1374930, + "normalized_name": "black geyser couriers of darkness" + }, + { + "appid": 1374940, + "normalized_name": "bulldozer" + }, + { + "appid": 1374950, + "normalized_name": "a creature's journey" + }, + { + "appid": 1374960, + "normalized_name": "spaceventure" + }, + { + "appid": 1374970, + "normalized_name": "moonscars" + }, + { + "appid": 1374990, + "normalized_name": "paw patrol mighty pups save adventure bay" + }, + { + "appid": 1375000, + "normalized_name": "valletine against darkne" + }, + { + "appid": 1375020, + "normalized_name": "secret of dungeon" + }, + { + "appid": 1375030, + "normalized_name": "network e.l.e. pc" + }, + { + "appid": 1375040, + "normalized_name": "ice cream truck" + }, + { + "appid": 1375070, + "normalized_name": "furball" + }, + { + "appid": 1375090, + "normalized_name": "mecha destruction" + }, + { + "appid": 1375120, + "normalized_name": "insane creations" + }, + { + "appid": 1375140, + "normalized_name": "the bridgemancer" + }, + { + "appid": 1375160, + "normalized_name": "パクっちゃうぞ!!" + }, + { + "appid": 1375220, + "normalized_name": "supertanks" + }, + { + "appid": 1375230, + "normalized_name": "长生派对" + }, + { + "appid": 1375260, + "normalized_name": "strike force 2 terrorist hunt enhanced" + }, + { + "appid": 1375270, + "normalized_name": "shape" + }, + { + "appid": 1375280, + "normalized_name": "cosmodrive infinity" + }, + { + "appid": 1375290, + "normalized_name": "working zombies steam" + }, + { + "appid": 1375300, + "normalized_name": "polar" + }, + { + "appid": 1375400, + "normalized_name": "ghosts 'n goblins resurrection" + }, + { + "appid": 1375420, + "normalized_name": "messier111" + }, + { + "appid": 1375440, + "normalized_name": "avoidvania" + }, + { + "appid": 1375450, + "normalized_name": "7 roses a darkness rises" + }, + { + "appid": 1375460, + "normalized_name": "six paths" + }, + { + "appid": 1375480, + "normalized_name": "bunny's flowers" + }, + { + "appid": 1375510, + "normalized_name": "otti house keeper" + }, + { + "appid": 1375520, + "normalized_name": "bluebete" + }, + { + "appid": 1375530, + "normalized_name": "exo one prologue" + }, + { + "appid": 1375540, + "normalized_name": "omno prologue" + }, + { + "appid": 1375560, + "normalized_name": "stonebot adventures" + }, + { + "appid": 1375630, + "normalized_name": "pantomime" + }, + { + "appid": 1375640, + "normalized_name": "lost keys" + }, + { + "appid": 1375650, + "normalized_name": "crystal chasers league" + }, + { + "appid": 1375670, + "normalized_name": "orbit quest" + }, + { + "appid": 1375690, + "normalized_name": "arcanion tale of magi" + }, + { + "appid": 1375750, + "normalized_name": "regions of ruin 2" + }, + { + "appid": 1375760, + "normalized_name": "tropicalia" + }, + { + "appid": 1375780, + "normalized_name": "the scam" + }, + { + "appid": 1375790, + "normalized_name": "kakurenbo neko" + }, + { + "appid": 1375800, + "normalized_name": "toybox" + }, + { + "appid": 1375810, + "normalized_name": "legends of solitaire diamond relic" + }, + { + "appid": 1375820, + "normalized_name": "the ocean will have us all" + }, + { + "appid": 1375850, + "normalized_name": "ahh!!! mazezing" + }, + { + "appid": 1375860, + "normalized_name": "pin puck" + }, + { + "appid": 1375870, + "normalized_name": "川建国同志想要连任/comrade trump's re election" + }, + { + "appid": 1375880, + "normalized_name": "rave heart" + }, + { + "appid": 1375890, + "normalized_name": "dab's not dead" + }, + { + "appid": 1375900, + "normalized_name": "swarm grinder" + }, + { + "appid": 1375920, + "normalized_name": "ghost beat" + }, + { + "appid": 1375930, + "normalized_name": "minesweeper collector" + }, + { + "appid": 1375940, + "normalized_name": "pulsar" + }, + { + "appid": 1375950, + "normalized_name": "mesnakeman" + }, + { + "appid": 1375970, + "normalized_name": "korean adventures in russia" + }, + { + "appid": 1376010, + "normalized_name": "yrek lost in portals" + }, + { + "appid": 1376020, + "normalized_name": "battlemaster" + }, + { + "appid": 1376030, + "normalized_name": "dev bloodline" + }, + { + "appid": 1376040, + "normalized_name": "missing time" + }, + { + "appid": 1376070, + "normalized_name": "rushdown revolt" + }, + { + "appid": 1376090, + "normalized_name": "darkness eternal" + }, + { + "appid": 1376110, + "normalized_name": "liberty belle" + }, + { + "appid": 1376140, + "normalized_name": "counterblocks" + }, + { + "appid": 1376150, + "normalized_name": "roadkill" + }, + { + "appid": 1376180, + "normalized_name": "dark fairy tales the boogeyman" + }, + { + "appid": 1376200, + "normalized_name": "karma the dark world" + }, + { + "appid": 1376270, + "normalized_name": "小小愿景" + }, + { + "appid": 1376290, + "normalized_name": "jet set corps" + }, + { + "appid": 1376300, + "normalized_name": "our past" + }, + { + "appid": 1376320, + "normalized_name": "askara" + }, + { + "appid": 1376340, + "normalized_name": "this is my dungeon" + }, + { + "appid": 1376350, + "normalized_name": "poly pirates" + }, + { + "appid": 1376360, + "normalized_name": "avanti the joy of driving" + }, + { + "appid": 1376370, + "normalized_name": "hentai jigsaw emma" + }, + { + "appid": 1376390, + "normalized_name": "apocrypha" + }, + { + "appid": 1376420, + "normalized_name": "stopgate" + }, + { + "appid": 1376470, + "normalized_name": "hunted" + }, + { + "appid": 1376480, + "normalized_name": "lone wolf" + }, + { + "appid": 1376520, + "normalized_name": "stick knight takes over the universe" + }, + { + "appid": 1376550, + "normalized_name": "b side" + }, + { + "appid": 1376580, + "normalized_name": "alien dawn" + }, + { + "appid": 1376590, + "normalized_name": "sphere game" + }, + { + "appid": 1376630, + "normalized_name": "secretmission_produceforpresident" + }, + { + "appid": 1376640, + "normalized_name": "divine favor" + }, + { + "appid": 1376690, + "normalized_name": "蜀山幻剑录 sword of shushan" + }, + { + "appid": 1376730, + "normalized_name": "vacation dayoff" + }, + { + "appid": 1376760, + "normalized_name": "life of delta" + }, + { + "appid": 1376790, + "normalized_name": "pyramid runner" + }, + { + "appid": 1376800, + "normalized_name": "vaporwave" + }, + { + "appid": 1376830, + "normalized_name": "bankrupt heroines" + }, + { + "appid": 1376840, + "normalized_name": "lurkers" + }, + { + "appid": 1376870, + "normalized_name": "realm of alters" + }, + { + "appid": 1376880, + "normalized_name": "hunting" + }, + { + "appid": 1376890, + "normalized_name": "drill deal borehole (alpha)" + }, + { + "appid": 1376910, + "normalized_name": "super catboy" + }, + { + "appid": 1376940, + "normalized_name": "monster killer" + }, + { + "appid": 1376950, + "normalized_name": "fantasy friends" + }, + { + "appid": 1376960, + "normalized_name": "dead world la argentina muerta" + }, + { + "appid": 1377010, + "normalized_name": "sanctuary island" + }, + { + "appid": 1377030, + "normalized_name": "gunnhildr" + }, + { + "appid": 1377050, + "normalized_name": "knights of the fall" + }, + { + "appid": 1377060, + "normalized_name": "nightmar protocol" + }, + { + "appid": 1377110, + "normalized_name": "bake star vr" + }, + { + "appid": 1377120, + "normalized_name": "your music puzzle" + }, + { + "appid": 1377140, + "normalized_name": "don't look" + }, + { + "appid": 1377150, + "normalized_name": "operation tango friend pass" + }, + { + "appid": 1377160, + "normalized_name": "dragonium" + }, + { + "appid": 1377200, + "normalized_name": "zero wrath vendetta" + }, + { + "appid": 1377240, + "normalized_name": "five finger gunslinger" + }, + { + "appid": 1377260, + "normalized_name": "miracle sudoku" + }, + { + "appid": 1377280, + "normalized_name": "electioneering" + }, + { + "appid": 1377300, + "normalized_name": "sex summer seduction vr" + }, + { + "appid": 1377320, + "normalized_name": "new era" + }, + { + "appid": 1377350, + "normalized_name": "spinodrum" + }, + { + "appid": 1377360, + "normalized_name": "vampires' melody" + }, + { + "appid": 1377370, + "normalized_name": "fantasy gladiators" + }, + { + "appid": 1377380, + "normalized_name": "night of the dead" + }, + { + "appid": 1377410, + "normalized_name": "bountiful life" + }, + { + "appid": 1377420, + "normalized_name": "baking bustle" + }, + { + "appid": 1377430, + "normalized_name": "sword reverie" + }, + { + "appid": 1377450, + "normalized_name": "圣歌德嘉的晚钟" + }, + { + "appid": 1377540, + "normalized_name": "the viking way" + }, + { + "appid": 1377550, + "normalized_name": "~在魔界当女仆~恶魔天使与勇者的秘密喫茶店" + }, + { + "appid": 1377560, + "normalized_name": "к.о.р.о.в.а.н.ы | симулятор грабежа корованов" + }, + { + "appid": 1377580, + "normalized_name": "soulworker" + }, + { + "appid": 1377590, + "normalized_name": "the island" + }, + { + "appid": 1377600, + "normalized_name": "\"zieh eine karte\" simulator" + }, + { + "appid": 1377680, + "normalized_name": "crossfire ii (amiga)" + }, + { + "appid": 1377700, + "normalized_name": "empyreal" + }, + { + "appid": 1377710, + "normalized_name": "lawmage academy" + }, + { + "appid": 1377780, + "normalized_name": "tank shoot 2d battle to save city flag" + }, + { + "appid": 1377800, + "normalized_name": "fyrexr festival" + }, + { + "appid": 1377850, + "normalized_name": "server is down" + }, + { + "appid": 1377890, + "normalized_name": "professor rubik’s brain fitness" + }, + { + "appid": 1377900, + "normalized_name": "train train train" + }, + { + "appid": 1377920, + "normalized_name": "big mutha truckers 2" + }, + { + "appid": 1377930, + "normalized_name": "project pong" + }, + { + "appid": 1377970, + "normalized_name": "tales from evenfall" + }, + { + "appid": 1377980, + "normalized_name": "rx racing 2020 pro" + }, + { + "appid": 1377990, + "normalized_name": "something's wrong with sunny day jack" + }, + { + "appid": 1378020, + "normalized_name": "beasts of maravilla island" + }, + { + "appid": 1378040, + "normalized_name": "tear and the library of labyrinths" + }, + { + "appid": 1378060, + "normalized_name": "hidden lands spot the differences" + }, + { + "appid": 1378070, + "normalized_name": "drawn to life two realms" + }, + { + "appid": 1378080, + "normalized_name": "sex lady sonia" + }, + { + "appid": 1378100, + "normalized_name": "treasures of the roman empire" + }, + { + "appid": 1378120, + "normalized_name": "fairy godmother stories dark deal collector's" + }, + { + "appid": 1378180, + "normalized_name": "《curse of disaster spirit anecdotes of mansion》" + }, + { + "appid": 1378200, + "normalized_name": "rooftop renegade" + }, + { + "appid": 1378250, + "normalized_name": "px art" + }, + { + "appid": 1378260, + "normalized_name": "voodoo kid" + }, + { + "appid": 1378270, + "normalized_name": "wandervr" + }, + { + "appid": 1378280, + "normalized_name": "stream dogfighter" + }, + { + "appid": 1378290, + "normalized_name": "the citadel" + }, + { + "appid": 1378320, + "normalized_name": "killstreak" + }, + { + "appid": 1378330, + "normalized_name": "speedgunner ultra" + }, + { + "appid": 1378350, + "normalized_name": "《drifting weight of feathers》" + }, + { + "appid": 1378360, + "normalized_name": "white hell" + }, + { + "appid": 1378370, + "normalized_name": "fallen knight" + }, + { + "appid": 1378380, + "normalized_name": "dream home simulator" + }, + { + "appid": 1378390, + "normalized_name": "endurance space action" + }, + { + "appid": 1378470, + "normalized_name": "now there be goblins tower defense vr" + }, + { + "appid": 1378500, + "normalized_name": "knights of legends" + }, + { + "appid": 1378570, + "normalized_name": "crazy music tennis" + }, + { + "appid": 1378580, + "normalized_name": "ninjas busters whack a ninja" + }, + { + "appid": 1378660, + "normalized_name": "nyaf" + }, + { + "appid": 1378670, + "normalized_name": "adapted adventures crystal cave" + }, + { + "appid": 1378690, + "normalized_name": "combat cobras" + }, + { + "appid": 1378710, + "normalized_name": "placebo love" + }, + { + "appid": 1378730, + "normalized_name": "ドトコイ" + }, + { + "appid": 1378750, + "normalized_name": "world of asgabas" + }, + { + "appid": 1378780, + "normalized_name": "bloodblast vr" + }, + { + "appid": 1378800, + "normalized_name": "squad 51 vs. the flying saucers" + }, + { + "appid": 1378820, + "normalized_name": "escaping hell" + }, + { + "appid": 1378840, + "normalized_name": "learn spanish vr" + }, + { + "appid": 1378850, + "normalized_name": "escape from monsterland" + }, + { + "appid": 1378860, + "normalized_name": "cubic currency" + }, + { + "appid": 1378870, + "normalized_name": "in the house of silence" + }, + { + "appid": 1378890, + "normalized_name": "indoorlands" + }, + { + "appid": 1378940, + "normalized_name": "verdungo" + }, + { + "appid": 1378990, + "normalized_name": "crash bandicoot 4 it’s about time" + }, + { + "appid": 1379020, + "normalized_name": "the horrorscope fatal awakening" + }, + { + "appid": 1379040, + "normalized_name": "pixel ninja" + }, + { + "appid": 1379050, + "normalized_name": "mystical mayhem" + }, + { + "appid": 1379110, + "normalized_name": "anime feet" + }, + { + "appid": 1379120, + "normalized_name": "mechnest" + }, + { + "appid": 1379130, + "normalized_name": "league of angels heaven's fury" + }, + { + "appid": 1379150, + "normalized_name": "kebab house" + }, + { + "appid": 1379160, + "normalized_name": "blocklock" + }, + { + "appid": 1379200, + "normalized_name": "escape from skull dungeon" + }, + { + "appid": 1379270, + "normalized_name": "first session" + }, + { + "appid": 1379320, + "normalized_name": "anime play life unlimited" + }, + { + "appid": 1379350, + "normalized_name": "frogworld" + }, + { + "appid": 1379370, + "normalized_name": "4 civilizations" + }, + { + "appid": 1379380, + "normalized_name": "burger joint" + }, + { + "appid": 1379450, + "normalized_name": "turtle vs. portal" + }, + { + "appid": 1379460, + "normalized_name": "terramartis4x" + }, + { + "appid": 1379470, + "normalized_name": "commissar catlov" + }, + { + "appid": 1379510, + "normalized_name": "algebra ridge" + }, + { + "appid": 1379550, + "normalized_name": "the usb stick found in the grass" + }, + { + "appid": 1379570, + "normalized_name": "project knight" + }, + { + "appid": 1379580, + "normalized_name": "arosia" + }, + { + "appid": 1379590, + "normalized_name": "adventures in morality an interactive case study" + }, + { + "appid": 1379600, + "normalized_name": "pandemic train" + }, + { + "appid": 1379610, + "normalized_name": "first hero epic of gilgamesh" + }, + { + "appid": 1379640, + "normalized_name": "amazed" + }, + { + "appid": 1379660, + "normalized_name": "the developer" + }, + { + "appid": 1379670, + "normalized_name": "crash'em derby" + }, + { + "appid": 1379680, + "normalized_name": "poliplanet" + }, + { + "appid": 1379830, + "normalized_name": "cyber crush 2069" + }, + { + "appid": 1379870, + "normalized_name": "tribal hunter" + }, + { + "appid": 1379880, + "normalized_name": "red machina" + }, + { + "appid": 1379900, + "normalized_name": "四国志 ~酒池肉面战记~" + }, + { + "appid": 1379930, + "normalized_name": "power & revolution 2020" + }, + { + "appid": 1379940, + "normalized_name": "dinky dungeon" + }, + { + "appid": 1379960, + "normalized_name": "grid force mask of the goddess" + }, + { + "appid": 1379970, + "normalized_name": "solar system vr" + }, + { + "appid": 1379980, + "normalized_name": "unscripted" + }, + { + "appid": 1380010, + "normalized_name": "waiting for the raven" + }, + { + "appid": 1380060, + "normalized_name": "urban trial tricky deluxe" + }, + { + "appid": 1380070, + "normalized_name": "slaves of rome" + }, + { + "appid": 1380120, + "normalized_name": "fate of the storm gods" + }, + { + "appid": 1380150, + "normalized_name": "sword game" + }, + { + "appid": 1380160, + "normalized_name": "inner light" + }, + { + "appid": 1380190, + "normalized_name": "lore" + }, + { + "appid": 1380200, + "normalized_name": "chemistris" + }, + { + "appid": 1380220, + "normalized_name": "starsand" + }, + { + "appid": 1380230, + "normalized_name": "monocity" + }, + { + "appid": 1380250, + "normalized_name": "timber jump vr" + }, + { + "appid": 1380260, + "normalized_name": "space empires starfury" + }, + { + "appid": 1380280, + "normalized_name": "crazy fun ball" + }, + { + "appid": 1380290, + "normalized_name": "new witch in town" + }, + { + "appid": 1380310, + "normalized_name": "lost remnant the end tides" + }, + { + "appid": 1380320, + "normalized_name": "city 13" + }, + { + "appid": 1380340, + "normalized_name": "jetpackin' heat++" + }, + { + "appid": 1380360, + "normalized_name": "battle sweeper" + }, + { + "appid": 1380370, + "normalized_name": "last shot" + }, + { + "appid": 1380390, + "normalized_name": "dread x collection 2" + }, + { + "appid": 1380400, + "normalized_name": "saving grace" + }, + { + "appid": 1380410, + "normalized_name": "puzzle quest 3" + }, + { + "appid": 1380420, + "normalized_name": "grow song of the evertree" + }, + { + "appid": 1380430, + "normalized_name": "pummel paladins" + }, + { + "appid": 1380470, + "normalized_name": "water rain" + }, + { + "appid": 1380480, + "normalized_name": "blobert" + }, + { + "appid": 1380490, + "normalized_name": "winter wastelands" + }, + { + "appid": 1380500, + "normalized_name": "president's sniper shooting" + }, + { + "appid": 1380510, + "normalized_name": "shark attack" + }, + { + "appid": 1380520, + "normalized_name": "racing outlaws" + }, + { + "appid": 1380600, + "normalized_name": "anxiety.exe" + }, + { + "appid": 1380620, + "normalized_name": "sex prison vr" + }, + { + "appid": 1380650, + "normalized_name": "draft of darkness" + }, + { + "appid": 1380660, + "normalized_name": "soulpath the final journey" + }, + { + "appid": 1380690, + "normalized_name": "mp5" + }, + { + "appid": 1380720, + "normalized_name": "tales of esferia araxis" + }, + { + "appid": 1380750, + "normalized_name": "art of space" + }, + { + "appid": 1380760, + "normalized_name": "color crush 2" + }, + { + "appid": 1380820, + "normalized_name": "helixian" + }, + { + "appid": 1380830, + "normalized_name": "space kettle" + }, + { + "appid": 1380840, + "normalized_name": "august of august" + }, + { + "appid": 1380850, + "normalized_name": "virtual vacations" + }, + { + "appid": 1380860, + "normalized_name": "this legion kills" + }, + { + "appid": 1380880, + "normalized_name": "one time in space" + }, + { + "appid": 1380890, + "normalized_name": "方块给爷爬" + }, + { + "appid": 1380900, + "normalized_name": "epsilon wars" + }, + { + "appid": 1380910, + "normalized_name": "stardeus" + }, + { + "appid": 1380970, + "normalized_name": "sklime a difficult climbing adventure" + }, + { + "appid": 1380980, + "normalized_name": "sonzai" + }, + { + "appid": 1380990, + "normalized_name": "hyper team recon" + }, + { + "appid": 1381030, + "normalized_name": "subject relictus" + }, + { + "appid": 1381070, + "normalized_name": "unyielding" + }, + { + "appid": 1381130, + "normalized_name": "その首輪を離さないで ~狼を食べたい赤ずきんと赤ずきんを食べたい猟師~" + }, + { + "appid": 1381150, + "normalized_name": "desirable" + }, + { + "appid": 1381200, + "normalized_name": "anime desktop girls" + }, + { + "appid": 1381260, + "normalized_name": "lost century" + }, + { + "appid": 1381270, + "normalized_name": "休止符 stopsign" + }, + { + "appid": 1381280, + "normalized_name": "cheat or die" + }, + { + "appid": 1381290, + "normalized_name": "viking fight" + }, + { + "appid": 1381350, + "normalized_name": "chatteract" + }, + { + "appid": 1381360, + "normalized_name": "lair hockey" + }, + { + "appid": 1381370, + "normalized_name": "lloyd the monkey 2" + }, + { + "appid": 1381440, + "normalized_name": "80's overdrive" + }, + { + "appid": 1381450, + "normalized_name": "dreadful shadows" + }, + { + "appid": 1381460, + "normalized_name": "path of the martyrs" + }, + { + "appid": 1381480, + "normalized_name": "nudist beach survival simulator 2" + }, + { + "appid": 1381490, + "normalized_name": "cosmosapiens" + }, + { + "appid": 1381500, + "normalized_name": "mimicry" + }, + { + "appid": 1381520, + "normalized_name": "cricket jae's really peculiar game" + }, + { + "appid": 1381530, + "normalized_name": "mess adventures" + }, + { + "appid": 1381590, + "normalized_name": "tokyo re connect prologue" + }, + { + "appid": 1381610, + "normalized_name": "aeon blood" + }, + { + "appid": 1381630, + "normalized_name": "pumpkin dog xtreme" + }, + { + "appid": 1381640, + "normalized_name": "captain frogger" + }, + { + "appid": 1381650, + "normalized_name": "action sandbox" + }, + { + "appid": 1381690, + "normalized_name": "sainthum 圣颂" + }, + { + "appid": 1381720, + "normalized_name": "oubey vr – reise der monaden" + }, + { + "appid": 1381770, + "normalized_name": "フォーチュンサモナーズ アルチェの精霊石" + }, + { + "appid": 1381850, + "normalized_name": "strategic mind fight for freedom" + }, + { + "appid": 1381880, + "normalized_name": "the square key" + }, + { + "appid": 1381980, + "normalized_name": "mother" + }, + { + "appid": 1381990, + "normalized_name": "island games" + }, + { + "appid": 1382020, + "normalized_name": "the struggles of stefan" + }, + { + "appid": 1382070, + "normalized_name": "viewfinder" + }, + { + "appid": 1382080, + "normalized_name": "the ways of uron" + }, + { + "appid": 1382160, + "normalized_name": "monolithic" + }, + { + "appid": 1382180, + "normalized_name": "escape knox manor" + }, + { + "appid": 1382190, + "normalized_name": "killer in the ca" + }, + { + "appid": 1382200, + "normalized_name": "liquidators" + }, + { + "appid": 1382290, + "normalized_name": "betrayer curse of the spine" + }, + { + "appid": 1382310, + "normalized_name": "splinter" + }, + { + "appid": 1382320, + "normalized_name": "antonball deluxe" + }, + { + "appid": 1382330, + "normalized_name": "persona 5 strikers" + }, + { + "appid": 1382350, + "normalized_name": "the beast of stormy forest" + }, + { + "appid": 1382370, + "normalized_name": "projectteo" + }, + { + "appid": 1382380, + "normalized_name": "aurora" + }, + { + "appid": 1382390, + "normalized_name": "dirty land" + }, + { + "appid": 1382450, + "normalized_name": "my first date rpg (presented by projectsummerice.com)" + }, + { + "appid": 1382490, + "normalized_name": "treasure hunting" + }, + { + "appid": 1382530, + "normalized_name": "bitchy boss bimbofication" + }, + { + "appid": 1382630, + "normalized_name": "fruit clicker" + }, + { + "appid": 1382670, + "normalized_name": "fire trump air combat vr" + }, + { + "appid": 1382710, + "normalized_name": "oubey vr – cosmic voyage" + }, + { + "appid": 1382730, + "normalized_name": "midnight scenes the goodbye note" + }, + { + "appid": 1382770, + "normalized_name": "knightczech the beginning" + }, + { + "appid": 1382790, + "normalized_name": "demons of asteborg" + }, + { + "appid": 1382800, + "normalized_name": "a winding path" + }, + { + "appid": 1382840, + "normalized_name": "space bar at the end of the galaxy" + }, + { + "appid": 1382860, + "normalized_name": "heroes of dungeon" + }, + { + "appid": 1382870, + "normalized_name": "world war academy commander 1" + }, + { + "appid": 1382890, + "normalized_name": "mystic midway rest in pieces" + }, + { + "appid": 1382910, + "normalized_name": "hell architect prologue" + }, + { + "appid": 1382920, + "normalized_name": "caravan trade tycoon" + }, + { + "appid": 1382980, + "normalized_name": "fech the ferret" + }, + { + "appid": 1383010, + "normalized_name": "balconing simulator 2020" + }, + { + "appid": 1383020, + "normalized_name": "germany at war soviet dawn" + }, + { + "appid": 1383030, + "normalized_name": "hentai girls vr" + }, + { + "appid": 1383040, + "normalized_name": "delivery company clicker" + }, + { + "appid": 1383050, + "normalized_name": "chess knights shinobi" + }, + { + "appid": 1383060, + "normalized_name": "eyedash" + }, + { + "appid": 1383090, + "normalized_name": "project 44 enlightenment" + }, + { + "appid": 1383120, + "normalized_name": "louvesystems' trackmasters" + }, + { + "appid": 1383140, + "normalized_name": "subteralien rescue" + }, + { + "appid": 1383150, + "normalized_name": "final factory" + }, + { + "appid": 1383160, + "normalized_name": "endless firepower" + }, + { + "appid": 1383170, + "normalized_name": "100 rub operation global denomination" + }, + { + "appid": 1383200, + "normalized_name": "clouds of rain" + }, + { + "appid": 1383220, + "normalized_name": "space crisis" + }, + { + "appid": 1383250, + "normalized_name": "please fix the road" + }, + { + "appid": 1383270, + "normalized_name": "pre shave" + }, + { + "appid": 1383280, + "normalized_name": "josh journey darkness totems" + }, + { + "appid": 1383290, + "normalized_name": "kidgilantes" + }, + { + "appid": 1383310, + "normalized_name": "reborn in sin" + }, + { + "appid": 1383340, + "normalized_name": "hexonex" + }, + { + "appid": 1383370, + "normalized_name": "trail of ayash" + }, + { + "appid": 1383400, + "normalized_name": "crystal ortha" + }, + { + "appid": 1383410, + "normalized_name": "gravitaze one" + }, + { + "appid": 1383450, + "normalized_name": "心境 vr / mind vr exploration" + }, + { + "appid": 1383480, + "normalized_name": "annoying ball game" + }, + { + "appid": 1383490, + "normalized_name": "run for your life" + }, + { + "appid": 1383500, + "normalized_name": "客栈江湖 vagabond inn" + }, + { + "appid": 1383510, + "normalized_name": "dark stone the lightseeker" + }, + { + "appid": 1383520, + "normalized_name": "alpha one" + }, + { + "appid": 1383570, + "normalized_name": "ballex² the hanging gardens" + }, + { + "appid": 1383580, + "normalized_name": "mechone" + }, + { + "appid": 1383620, + "normalized_name": "lifesigns" + }, + { + "appid": 1383630, + "normalized_name": "antarctica 88" + }, + { + "appid": 1383640, + "normalized_name": "attack at dawn north africa" + }, + { + "appid": 1383650, + "normalized_name": "drone vr" + }, + { + "appid": 1383660, + "normalized_name": "guinea pig parkour" + }, + { + "appid": 1383670, + "normalized_name": "king god domain" + }, + { + "appid": 1383680, + "normalized_name": "isekai succubus ~my genderbent saga in another world~" + }, + { + "appid": 1383690, + "normalized_name": "a wake inn" + }, + { + "appid": 1383700, + "normalized_name": "jet kave adventure" + }, + { + "appid": 1383720, + "normalized_name": "cyber doge 2077 meme runner" + }, + { + "appid": 1383740, + "normalized_name": "my cute commissar" + }, + { + "appid": 1383760, + "normalized_name": "fortification tower defence" + }, + { + "appid": 1383770, + "normalized_name": "interstate drifter 1999" + }, + { + "appid": 1383780, + "normalized_name": "coffee with prescilla" + }, + { + "appid": 1383830, + "normalized_name": "breadbox" + }, + { + "appid": 1383850, + "normalized_name": "gurobu" + }, + { + "appid": 1383880, + "normalized_name": "paradise lofts" + }, + { + "appid": 1383910, + "normalized_name": "town squared" + }, + { + "appid": 1383920, + "normalized_name": "shattering obsidian" + }, + { + "appid": 1383930, + "normalized_name": "swordian hero" + }, + { + "appid": 1383960, + "normalized_name": "nickelodeon kart racers 2 grand prix" + }, + { + "appid": 1383970, + "normalized_name": "captain sabertooth and the magic diamond" + }, + { + "appid": 1383980, + "normalized_name": "unlimited world 1" + }, + { + "appid": 1383990, + "normalized_name": "our way" + }, + { + "appid": 1384000, + "normalized_name": "anchor up" + }, + { + "appid": 1384010, + "normalized_name": "soarocity" + }, + { + "appid": 1384030, + "normalized_name": "boppio" + }, + { + "appid": 1384060, + "normalized_name": "battlejuice alchemist" + }, + { + "appid": 1384090, + "normalized_name": "autoland" + }, + { + "appid": 1384110, + "normalized_name": "cascade cafe" + }, + { + "appid": 1384130, + "normalized_name": "yolka" + }, + { + "appid": 1384160, + "normalized_name": "guilty gear strive" + }, + { + "appid": 1384170, + "normalized_name": "天虹书店 tian hong bookstore" + }, + { + "appid": 1384180, + "normalized_name": "cloud exiles" + }, + { + "appid": 1384290, + "normalized_name": "dinoscape" + }, + { + "appid": 1384310, + "normalized_name": "airplane arena" + }, + { + "appid": 1384320, + "normalized_name": "grapple tournament" + }, + { + "appid": 1384330, + "normalized_name": "princess daphne and the orcs" + }, + { + "appid": 1384350, + "normalized_name": "bricks frenzy" + }, + { + "appid": 1384380, + "normalized_name": "みんなで空気読み。2 ~令和~" + }, + { + "appid": 1384390, + "normalized_name": "photo studio" + }, + { + "appid": 1384400, + "normalized_name": "la monsters" + }, + { + "appid": 1384420, + "normalized_name": "android lode runner" + }, + { + "appid": 1384440, + "normalized_name": "the call centre" + }, + { + "appid": 1384450, + "normalized_name": "jungles of maxtheria" + }, + { + "appid": 1384480, + "normalized_name": "pathfinder puzzle" + }, + { + "appid": 1384490, + "normalized_name": "i hope she's ok" + }, + { + "appid": 1384500, + "normalized_name": "the owl quest" + }, + { + "appid": 1384510, + "normalized_name": "异界浮尘录" + }, + { + "appid": 1384520, + "normalized_name": "woods part i" + }, + { + "appid": 1384530, + "normalized_name": "lion quest infinity" + }, + { + "appid": 1384540, + "normalized_name": "opec idle" + }, + { + "appid": 1384550, + "normalized_name": "school of magic deck and slash prologue" + }, + { + "appid": 1384570, + "normalized_name": "kanały '44" + }, + { + "appid": 1384620, + "normalized_name": "ninja hanrei" + }, + { + "appid": 1384630, + "normalized_name": "sword x hime" + }, + { + "appid": 1384660, + "normalized_name": "up to par" + }, + { + "appid": 1384670, + "normalized_name": "dark tales edgar allan poe's the devil in the belfry collector's" + }, + { + "appid": 1384680, + "normalized_name": "todd's spider dream" + }, + { + "appid": 1384700, + "normalized_name": "a gay love story about gay love" + }, + { + "appid": 1384740, + "normalized_name": "skeletoon forgotten memories" + }, + { + "appid": 1384760, + "normalized_name": "in the dark" + }, + { + "appid": 1384770, + "normalized_name": "scrutinized" + }, + { + "appid": 1384790, + "normalized_name": "d100 dungeon computer companion" + }, + { + "appid": 1384820, + "normalized_name": "psychocat the door" + }, + { + "appid": 1384840, + "normalized_name": "xol" + }, + { + "appid": 1384880, + "normalized_name": "frontier quest" + }, + { + "appid": 1384890, + "normalized_name": "flag collection" + }, + { + "appid": 1384910, + "normalized_name": "shinobi breaker" + }, + { + "appid": 1384940, + "normalized_name": "egression" + }, + { + "appid": 1384960, + "normalized_name": "unit 404" + }, + { + "appid": 1384970, + "normalized_name": "lightbreak" + }, + { + "appid": 1384990, + "normalized_name": "魔法考核冒险" + }, + { + "appid": 1385050, + "normalized_name": "this game is trash" + }, + { + "appid": 1385090, + "normalized_name": "grand father island" + }, + { + "appid": 1385100, + "normalized_name": "insurmountable" + }, + { + "appid": 1385130, + "normalized_name": "cyberpunk naughty girls xxx" + }, + { + "appid": 1385180, + "normalized_name": "kingso" + }, + { + "appid": 1385190, + "normalized_name": "after the war" + }, + { + "appid": 1385210, + "normalized_name": "impulse from here!" + }, + { + "appid": 1385260, + "normalized_name": "if it please the court" + }, + { + "appid": 1385280, + "normalized_name": "crimson core" + }, + { + "appid": 1385290, + "normalized_name": "pizza slice" + }, + { + "appid": 1385320, + "normalized_name": "pipe mania" + }, + { + "appid": 1385340, + "normalized_name": "orbyss" + }, + { + "appid": 1385350, + "normalized_name": "clowns" + }, + { + "appid": 1385370, + "normalized_name": "midget kricket fantasy" + }, + { + "appid": 1385380, + "normalized_name": "across the obelisk" + }, + { + "appid": 1385480, + "normalized_name": "gangster empire vendetta" + }, + { + "appid": 1385500, + "normalized_name": "wtc relentless protagonist [sxs]" + }, + { + "appid": 1385540, + "normalized_name": "beat me if you can" + }, + { + "appid": 1385570, + "normalized_name": "fateholder quest" + }, + { + "appid": 1385580, + "normalized_name": "bullets are fatal!" + }, + { + "appid": 1385590, + "normalized_name": "spark the battle dog" + }, + { + "appid": 1385620, + "normalized_name": "model sisters / 模特姐妹" + }, + { + "appid": 1385650, + "normalized_name": "hot pot for one" + }, + { + "appid": 1385660, + "normalized_name": "video game library simulator" + }, + { + "appid": 1385670, + "normalized_name": "the mutineer" + }, + { + "appid": 1385680, + "normalized_name": "corpse box racers" + }, + { + "appid": 1385690, + "normalized_name": "battletronics" + }, + { + "appid": 1385700, + "normalized_name": "true hate" + }, + { + "appid": 1385730, + "normalized_name": "mosaique neko waifus 3" + }, + { + "appid": 1385750, + "normalized_name": "waste x" + }, + { + "appid": 1385760, + "normalized_name": "super marble brothers" + }, + { + "appid": 1385780, + "normalized_name": "my village life" + }, + { + "appid": 1385790, + "normalized_name": "snow vale" + }, + { + "appid": 1385810, + "normalized_name": "naked warrior" + }, + { + "appid": 1385820, + "normalized_name": "ninja kunoichi" + }, + { + "appid": 1385830, + "normalized_name": "magicalgirl mimi" + }, + { + "appid": 1385840, + "normalized_name": "cube worlds survival" + }, + { + "appid": 1385880, + "normalized_name": "五五午时书" + }, + { + "appid": 1385910, + "normalized_name": "魔王救世劍" + }, + { + "appid": 1385920, + "normalized_name": "impossible pixels" + }, + { + "appid": 1385940, + "normalized_name": "panty&demons" + }, + { + "appid": 1385950, + "normalized_name": "guilt free" + }, + { + "appid": 1385960, + "normalized_name": "bird path" + }, + { + "appid": 1385970, + "normalized_name": "robowork" + }, + { + "appid": 1385990, + "normalized_name": "the light at the end of the ocean" + }, + { + "appid": 1386000, + "normalized_name": "i'm russia" + }, + { + "appid": 1386020, + "normalized_name": "lost remnant roaches to riches" + }, + { + "appid": 1386040, + "normalized_name": "jelly brawl classic" + }, + { + "appid": 1386090, + "normalized_name": "ants" + }, + { + "appid": 1386110, + "normalized_name": "xentron attack" + }, + { + "appid": 1386140, + "normalized_name": "johnny lionface" + }, + { + "appid": 1386160, + "normalized_name": "pier pressure" + }, + { + "appid": 1386190, + "normalized_name": "fishhead blueprint" + }, + { + "appid": 1386200, + "normalized_name": "sex lesson" + }, + { + "appid": 1386210, + "normalized_name": "queen's garden 2" + }, + { + "appid": 1386220, + "normalized_name": "froggy destroyer" + }, + { + "appid": 1386280, + "normalized_name": "the game is on" + }, + { + "appid": 1386290, + "normalized_name": "mort's dream jump" + }, + { + "appid": 1386300, + "normalized_name": "animal trainer" + }, + { + "appid": 1386310, + "normalized_name": "airplane racer 2021" + }, + { + "appid": 1386320, + "normalized_name": "table top turrets" + }, + { + "appid": 1386330, + "normalized_name": "funanigans party games" + }, + { + "appid": 1386340, + "normalized_name": "monads ii" + }, + { + "appid": 1386360, + "normalized_name": "a dark ice saga the rescue" + }, + { + "appid": 1386440, + "normalized_name": "b67" + }, + { + "appid": 1386460, + "normalized_name": "zodiakalik" + }, + { + "appid": 1386500, + "normalized_name": "cyan" + }, + { + "appid": 1386510, + "normalized_name": "how to win season one" + }, + { + "appid": 1386520, + "normalized_name": "attic" + }, + { + "appid": 1386530, + "normalized_name": "vr travelling in the roman empire (vr rome time machine travel in history)" + }, + { + "appid": 1386550, + "normalized_name": "outpost vikings" + }, + { + "appid": 1386560, + "normalized_name": "fancy skiing ⅲ pro" + }, + { + "appid": 1386620, + "normalized_name": "anuchard" + }, + { + "appid": 1386630, + "normalized_name": "shujinkou" + }, + { + "appid": 1386650, + "normalized_name": "zcrew" + }, + { + "appid": 1386680, + "normalized_name": "rain leak life" + }, + { + "appid": 1386700, + "normalized_name": "venkazoid blast" + }, + { + "appid": 1386710, + "normalized_name": "the heartbeat" + }, + { + "appid": 1386720, + "normalized_name": "domynyo" + }, + { + "appid": 1386730, + "normalized_name": "wordle 2" + }, + { + "appid": 1386750, + "normalized_name": "spindle" + }, + { + "appid": 1386770, + "normalized_name": "blip (open alpha)" + }, + { + "appid": 1386780, + "normalized_name": "city of gangsters" + }, + { + "appid": 1386790, + "normalized_name": "gordian rooms a curious heritage prologue" + }, + { + "appid": 1386810, + "normalized_name": "man in gravity" + }, + { + "appid": 1386830, + "normalized_name": "daffodil yellow a few poems from an insect collector" + }, + { + "appid": 1386870, + "normalized_name": "wraith the oblivion afterlife" + }, + { + "appid": 1386890, + "normalized_name": "hyper dash" + }, + { + "appid": 1386900, + "normalized_name": "observer system redux" + }, + { + "appid": 1386910, + "normalized_name": "サチ江 死道 /sachie death road" + }, + { + "appid": 1386940, + "normalized_name": "uebernatural the video game prologue" + }, + { + "appid": 1386950, + "normalized_name": "heavy metal babes" + }, + { + "appid": 1386980, + "normalized_name": "panic station" + }, + { + "appid": 1386990, + "normalized_name": "vectromirror" + }, + { + "appid": 1387000, + "normalized_name": "island of the lost" + }, + { + "appid": 1387010, + "normalized_name": "kings town" + }, + { + "appid": 1387030, + "normalized_name": "sly slime" + }, + { + "appid": 1387110, + "normalized_name": "capture the flag ctf 1" + }, + { + "appid": 1387120, + "normalized_name": "e.x.p.l.o.r. a new world" + }, + { + "appid": 1387150, + "normalized_name": "a case of the crabs rehash" + }, + { + "appid": 1387170, + "normalized_name": "similo the card game" + }, + { + "appid": 1387190, + "normalized_name": "our america" + }, + { + "appid": 1387200, + "normalized_name": "covert commando" + }, + { + "appid": 1387210, + "normalized_name": "a short tale of solitude" + }, + { + "appid": 1387230, + "normalized_name": "crisis on nova 2" + }, + { + "appid": 1387250, + "normalized_name": "discovery yard investigation" + }, + { + "appid": 1387260, + "normalized_name": "wizard's quest" + }, + { + "appid": 1387290, + "normalized_name": "shohei's adult streaming channel" + }, + { + "appid": 1387300, + "normalized_name": "joy the pug" + }, + { + "appid": 1387320, + "normalized_name": "left dex" + }, + { + "appid": 1387350, + "normalized_name": "剑为君舞 百夜缀" + }, + { + "appid": 1387400, + "normalized_name": "a story of merchant" + }, + { + "appid": 1387410, + "normalized_name": "invaders" + }, + { + "appid": 1387430, + "normalized_name": "前往天堂to heaven" + }, + { + "appid": 1387450, + "normalized_name": "ninja castle escape" + }, + { + "appid": 1387460, + "normalized_name": "melancholy love" + }, + { + "appid": 1387480, + "normalized_name": "老农种树" + }, + { + "appid": 1387500, + "normalized_name": "offroad mechanic simulator" + }, + { + "appid": 1387510, + "normalized_name": "last mortem" + }, + { + "appid": 1387560, + "normalized_name": "educational games for kids" + }, + { + "appid": 1387570, + "normalized_name": "orbitect" + }, + { + "appid": 1387580, + "normalized_name": "absentedage アブセンテッドエイジ ~亡霊少女のローグライクアクションsrpg 幽玄の章" + }, + { + "appid": 1387590, + "normalized_name": "列传:革新战争" + }, + { + "appid": 1387610, + "normalized_name": "cowboys n' stuff" + }, + { + "appid": 1387620, + "normalized_name": "save aisha" + }, + { + "appid": 1387640, + "normalized_name": "where birds go to sleep" + }, + { + "appid": 1387650, + "normalized_name": "ekorella vol 1" + }, + { + "appid": 1387810, + "normalized_name": "soup pot" + }, + { + "appid": 1387830, + "normalized_name": "hate wave" + }, + { + "appid": 1387870, + "normalized_name": "alien cat 8" + }, + { + "appid": 1387900, + "normalized_name": "duru – about mole rats and depression" + }, + { + "appid": 1387910, + "normalized_name": "boom bound" + }, + { + "appid": 1387940, + "normalized_name": "far light" + }, + { + "appid": 1387950, + "normalized_name": "crossroads of helmia" + }, + { + "appid": 1387970, + "normalized_name": "hello teacher" + }, + { + "appid": 1387980, + "normalized_name": "rock'n cow" + }, + { + "appid": 1388010, + "normalized_name": "easy puzzle animals 2" + }, + { + "appid": 1388030, + "normalized_name": "bocce vr simulator" + }, + { + "appid": 1388110, + "normalized_name": "glitch war" + }, + { + "appid": 1388130, + "normalized_name": "religion inc." + }, + { + "appid": 1388140, + "normalized_name": "arwinia" + }, + { + "appid": 1388150, + "normalized_name": "dispersion" + }, + { + "appid": 1388160, + "normalized_name": "rad rocket" + }, + { + "appid": 1388170, + "normalized_name": "rise against the invaders" + }, + { + "appid": 1388190, + "normalized_name": "falafel tycoon" + }, + { + "appid": 1388230, + "normalized_name": "danmakai red forbidden fruit" + }, + { + "appid": 1388240, + "normalized_name": "savage steel" + }, + { + "appid": 1388260, + "normalized_name": "p.i.d." + }, + { + "appid": 1388270, + "normalized_name": "effigy" + }, + { + "appid": 1388280, + "normalized_name": "country discoverer" + }, + { + "appid": 1388310, + "normalized_name": "tumbled" + }, + { + "appid": 1388320, + "normalized_name": "老板,游戏凉了! game company simulator back to 2000" + }, + { + "appid": 1388330, + "normalized_name": "hermes sibyls' prophecy" + }, + { + "appid": 1388350, + "normalized_name": "parallel" + }, + { + "appid": 1388370, + "normalized_name": "heroic armored company" + }, + { + "appid": 1388390, + "normalized_name": "impossible maze" + }, + { + "appid": 1388400, + "normalized_name": "cuberpunk 2090" + }, + { + "appid": 1388420, + "normalized_name": "buildmark" + }, + { + "appid": 1388430, + "normalized_name": "история бомжа" + }, + { + "appid": 1388490, + "normalized_name": "capital simulator" + }, + { + "appid": 1388510, + "normalized_name": "トラウマーメイド" + }, + { + "appid": 1388520, + "normalized_name": "きみとぼくとかくしごと" + }, + { + "appid": 1388530, + "normalized_name": "背徳シレネ" + }, + { + "appid": 1388550, + "normalized_name": "human fall flat 2" + }, + { + "appid": 1388570, + "normalized_name": "seduction" + }, + { + "appid": 1388580, + "normalized_name": "blooming business casino" + }, + { + "appid": 1388590, + "normalized_name": "yakuza 6 the song of life" + }, + { + "appid": 1388650, + "normalized_name": "league of enthusiastic losers" + }, + { + "appid": 1388670, + "normalized_name": "modern puzzle" + }, + { + "appid": 1388690, + "normalized_name": "taivas" + }, + { + "appid": 1388700, + "normalized_name": "gunderdome" + }, + { + "appid": 1388720, + "normalized_name": "japanese romaji adventure" + }, + { + "appid": 1388740, + "normalized_name": "シーフガールズカルテット" + }, + { + "appid": 1388760, + "normalized_name": "chess++" + }, + { + "appid": 1388770, + "normalized_name": "cruelty squad" + }, + { + "appid": 1388860, + "normalized_name": "unmemory" + }, + { + "appid": 1388870, + "normalized_name": "arcade paradise" + }, + { + "appid": 1388880, + "normalized_name": "doki doki literature club plus!" + }, + { + "appid": 1388890, + "normalized_name": "i told you" + }, + { + "appid": 1388900, + "normalized_name": "the banana saved the world" + }, + { + "appid": 1388910, + "normalized_name": "deadly forest" + }, + { + "appid": 1388940, + "normalized_name": "城塞騎士/jousai kishi" + }, + { + "appid": 1389000, + "normalized_name": "boom dojo" + }, + { + "appid": 1389010, + "normalized_name": "deathroids" + }, + { + "appid": 1389020, + "normalized_name": "the cleaner" + }, + { + "appid": 1389030, + "normalized_name": "end reach" + }, + { + "appid": 1389040, + "normalized_name": "drift racer" + }, + { + "appid": 1389070, + "normalized_name": "holy quran vr experi̇ence" + }, + { + "appid": 1389090, + "normalized_name": "robot female hero 3" + }, + { + "appid": 1389130, + "normalized_name": "folkloric excursion" + }, + { + "appid": 1389140, + "normalized_name": "jury trial" + }, + { + "appid": 1389160, + "normalized_name": "dark fracture prologue" + }, + { + "appid": 1389170, + "normalized_name": "the lost artifacts" + }, + { + "appid": 1389180, + "normalized_name": "the perfect shape" + }, + { + "appid": 1389190, + "normalized_name": "rear of business" + }, + { + "appid": 1389200, + "normalized_name": "cramped room of death" + }, + { + "appid": 1389260, + "normalized_name": "isles of limbo" + }, + { + "appid": 1389270, + "normalized_name": "don't crash the political game" + }, + { + "appid": 1389300, + "normalized_name": "soulcaster" + }, + { + "appid": 1389360, + "normalized_name": "mech armada" + }, + { + "appid": 1389380, + "normalized_name": "故乡的记忆:味缘篇" + }, + { + "appid": 1389410, + "normalized_name": "record of battle 3d maiden wars" + }, + { + "appid": 1389420, + "normalized_name": "luise and secret basement rooms" + }, + { + "appid": 1389430, + "normalized_name": "trash can dungeon battle against the zoo" + }, + { + "appid": 1389450, + "normalized_name": "the spirit" + }, + { + "appid": 1389510, + "normalized_name": "souls lore" + }, + { + "appid": 1389530, + "normalized_name": "happy marriage project starting from 9 years old" + }, + { + "appid": 1389540, + "normalized_name": "wesprau senki" + }, + { + "appid": 1389550, + "normalized_name": "mind scanners" + }, + { + "appid": 1389560, + "normalized_name": "paint girl" + }, + { + "appid": 1389580, + "normalized_name": "kitty rainbow" + }, + { + "appid": 1389610, + "normalized_name": "hell road vr" + }, + { + "appid": 1389630, + "normalized_name": "high entropy challenges" + }, + { + "appid": 1389650, + "normalized_name": "escape hospital 脫出 失憶病棟" + }, + { + "appid": 1389690, + "normalized_name": "battle blocks" + }, + { + "appid": 1389700, + "normalized_name": "sweet and hot" + }, + { + "appid": 1389710, + "normalized_name": "magical girl" + }, + { + "appid": 1389730, + "normalized_name": "abiko the miko" + }, + { + "appid": 1389740, + "normalized_name": "accel magician mimi" + }, + { + "appid": 1389750, + "normalized_name": "robophobik" + }, + { + "appid": 1389760, + "normalized_name": "impower" + }, + { + "appid": 1389780, + "normalized_name": "running challenge" + }, + { + "appid": 1389820, + "normalized_name": "animal rescue" + }, + { + "appid": 1389830, + "normalized_name": "electronic world z" + }, + { + "appid": 1389840, + "normalized_name": "hotel a resort simulator" + }, + { + "appid": 1389850, + "normalized_name": "digital janitors" + }, + { + "appid": 1389870, + "normalized_name": "artificial selection" + }, + { + "appid": 1389890, + "normalized_name": "10mg you are such a soft and round kitten." + }, + { + "appid": 1389900, + "normalized_name": "大鹏 the roc" + }, + { + "appid": 1389930, + "normalized_name": "l e p o z h d i a n . v i b e" + }, + { + "appid": 1389980, + "normalized_name": "zombies!" + }, + { + "appid": 1389990, + "normalized_name": "oblivity find your perfect sensitivity" + }, + { + "appid": 1390000, + "normalized_name": "antadin dx" + }, + { + "appid": 1390010, + "normalized_name": "pyramida" + }, + { + "appid": 1390020, + "normalized_name": "活体三国" + }, + { + "appid": 1390040, + "normalized_name": "hentai babe buffy" + }, + { + "appid": 1390060, + "normalized_name": "ghosty" + }, + { + "appid": 1390070, + "normalized_name": "ad infernum" + }, + { + "appid": 1390080, + "normalized_name": "tank rampage" + }, + { + "appid": 1390120, + "normalized_name": "nodes" + }, + { + "appid": 1390140, + "normalized_name": "nia" + }, + { + "appid": 1390190, + "normalized_name": "apico" + }, + { + "appid": 1390290, + "normalized_name": "retroshooti" + }, + { + "appid": 1390300, + "normalized_name": "stream arenas" + }, + { + "appid": 1390340, + "normalized_name": "hentai fighter" + }, + { + "appid": 1390350, + "normalized_name": "webbed" + }, + { + "appid": 1390370, + "normalized_name": "winds rhapsody" + }, + { + "appid": 1390380, + "normalized_name": "wolf's gang" + }, + { + "appid": 1390390, + "normalized_name": "shu's misfortune" + }, + { + "appid": 1390410, + "normalized_name": "midnight fight express" + }, + { + "appid": 1390420, + "normalized_name": "billy saves the world" + }, + { + "appid": 1390490, + "normalized_name": "kohate" + }, + { + "appid": 1390560, + "normalized_name": "jumping platform minigame" + }, + { + "appid": 1390580, + "normalized_name": "curse lsland" + }, + { + "appid": 1390600, + "normalized_name": "shachibato! president it's time for battle! maju wars" + }, + { + "appid": 1390650, + "normalized_name": "alien abduction experience" + }, + { + "appid": 1390670, + "normalized_name": "escape from naraka" + }, + { + "appid": 1390690, + "normalized_name": "machineryworld" + }, + { + "appid": 1390700, + "normalized_name": "the crackpet show" + }, + { + "appid": 1390740, + "normalized_name": "yogurt!" + }, + { + "appid": 1390760, + "normalized_name": "nanzou the divine court" + }, + { + "appid": 1390810, + "normalized_name": "project serotonin" + }, + { + "appid": 1390830, + "normalized_name": "flower challenge" + }, + { + "appid": 1390850, + "normalized_name": "target practice" + }, + { + "appid": 1390860, + "normalized_name": "re award" + }, + { + "appid": 1390870, + "normalized_name": "simply hard platformer" + }, + { + "appid": 1390880, + "normalized_name": "castle wonders a castle tale" + }, + { + "appid": 1390920, + "normalized_name": "marbles razor's wrath" + }, + { + "appid": 1390960, + "normalized_name": "lab chaos" + }, + { + "appid": 1390970, + "normalized_name": "abstractanks" + }, + { + "appid": 1391050, + "normalized_name": "kraken smash volleyball" + }, + { + "appid": 1391070, + "normalized_name": "stallion squad" + }, + { + "appid": 1391090, + "normalized_name": "bugworld online presents mitch maker" + }, + { + "appid": 1391130, + "normalized_name": "asteroad" + }, + { + "appid": 1391200, + "normalized_name": "pixel with your friends" + }, + { + "appid": 1391250, + "normalized_name": "wksp rumble" + }, + { + "appid": 1391280, + "normalized_name": "3d hentai chess" + }, + { + "appid": 1391340, + "normalized_name": "necromancer" + }, + { + "appid": 1391350, + "normalized_name": "happy summer holiday(愉快的暑假)" + }, + { + "appid": 1391370, + "normalized_name": "backyard pirates!" + }, + { + "appid": 1391380, + "normalized_name": "tank off" + }, + { + "appid": 1391400, + "normalized_name": "halloween world" + }, + { + "appid": 1391430, + "normalized_name": "the outbreak guardian" + }, + { + "appid": 1391450, + "normalized_name": "case 00 the cannibal boy" + }, + { + "appid": 1391490, + "normalized_name": "deep maze" + }, + { + "appid": 1391530, + "normalized_name": "mud and blood" + }, + { + "appid": 1391540, + "normalized_name": "uberlaufer" + }, + { + "appid": 1391550, + "normalized_name": "amusemos" + }, + { + "appid": 1391570, + "normalized_name": "two by one" + }, + { + "appid": 1391580, + "normalized_name": "escape condition" + }, + { + "appid": 1391600, + "normalized_name": "anime jigsaw puzzles" + }, + { + "appid": 1391610, + "normalized_name": "drifters don't brake" + }, + { + "appid": 1391620, + "normalized_name": "astero" + }, + { + "appid": 1391630, + "normalized_name": "breeders" + }, + { + "appid": 1391640, + "normalized_name": "shrouded mind" + }, + { + "appid": 1391650, + "normalized_name": "loch mess" + }, + { + "appid": 1391680, + "normalized_name": "sondro gomez a sunova story" + }, + { + "appid": 1391690, + "normalized_name": "war identity" + }, + { + "appid": 1391710, + "normalized_name": "東方蒼月闘" + }, + { + "appid": 1391720, + "normalized_name": "hang in ! monkey bars robot" + }, + { + "appid": 1391740, + "normalized_name": "s h r i m p" + }, + { + "appid": 1391790, + "normalized_name": "hentai milf quiz 2" + }, + { + "appid": 1391800, + "normalized_name": "succubuses love creampie" + }, + { + "appid": 1391940, + "normalized_name": "dogfight" + }, + { + "appid": 1391960, + "normalized_name": "star island" + }, + { + "appid": 1391990, + "normalized_name": "berries challenge" + }, + { + "appid": 1392030, + "normalized_name": "draft day sports pro football 2021" + }, + { + "appid": 1392040, + "normalized_name": "グランドインテンション・アジャストメント" + }, + { + "appid": 1392060, + "normalized_name": "erzurum" + }, + { + "appid": 1392070, + "normalized_name": "b.d.k" + }, + { + "appid": 1392080, + "normalized_name": "dimetrosaur 2" + }, + { + "appid": 1392130, + "normalized_name": "game of puzzles slavic mythology" + }, + { + "appid": 1392140, + "normalized_name": "project gravity" + }, + { + "appid": 1392150, + "normalized_name": "hover attack" + }, + { + "appid": 1392170, + "normalized_name": "schastye" + }, + { + "appid": 1392190, + "normalized_name": "rock paper sock" + }, + { + "appid": 1392230, + "normalized_name": "road home" + }, + { + "appid": 1392240, + "normalized_name": "floathink" + }, + { + "appid": 1392280, + "normalized_name": "cyber drive" + }, + { + "appid": 1392340, + "normalized_name": "shop tycoon prepare your wallet" + }, + { + "appid": 1392390, + "normalized_name": "reincarnation asura zalandara journey of carnage and redemption" + }, + { + "appid": 1392410, + "normalized_name": "seeking revenge" + }, + { + "appid": 1392430, + "normalized_name": "わんこの恩返し" + }, + { + "appid": 1392450, + "normalized_name": "deadlane" + }, + { + "appid": 1392460, + "normalized_name": "誅神計畫" + }, + { + "appid": 1392480, + "normalized_name": "protocol endfall" + }, + { + "appid": 1392490, + "normalized_name": "forklift load" + }, + { + "appid": 1392510, + "normalized_name": "the logic inside" + }, + { + "appid": 1392520, + "normalized_name": "life of trophy" + }, + { + "appid": 1392540, + "normalized_name": "缄默星空 silent space" + }, + { + "appid": 1392560, + "normalized_name": "serious fun football" + }, + { + "appid": 1392570, + "normalized_name": "dream knights" + }, + { + "appid": 1392590, + "normalized_name": "vietnam war platoon 越战排 (ai war game)" + }, + { + "appid": 1392600, + "normalized_name": "kazakh drive" + }, + { + "appid": 1392650, + "normalized_name": "blastronaut" + }, + { + "appid": 1392660, + "normalized_name": "ice star chapter 2" + }, + { + "appid": 1392670, + "normalized_name": "unbeliever" + }, + { + "appid": 1392690, + "normalized_name": "gravitational" + }, + { + "appid": 1392700, + "normalized_name": "agos a game of space" + }, + { + "appid": 1392750, + "normalized_name": "lost patrol" + }, + { + "appid": 1392760, + "normalized_name": "furry heroes" + }, + { + "appid": 1392770, + "normalized_name": "practical shooting simulator" + }, + { + "appid": 1392780, + "normalized_name": "the companion" + }, + { + "appid": 1392790, + "normalized_name": "asteroids... but roguelite" + }, + { + "appid": 1392820, + "normalized_name": "milk inside a bag of milk inside a bag of milk" + }, + { + "appid": 1392860, + "normalized_name": "little nightmares iii" + }, + { + "appid": 1392940, + "normalized_name": "day of the worms" + }, + { + "appid": 1392960, + "normalized_name": "story of seasons pioneers of olive town" + }, + { + "appid": 1392980, + "normalized_name": "leif's adventure netherworld hero" + }, + { + "appid": 1393080, + "normalized_name": "labyrinths of the world hearts of the planet collector's" + }, + { + "appid": 1393100, + "normalized_name": "block arena" + }, + { + "appid": 1393120, + "normalized_name": "get out! snakes!" + }, + { + "appid": 1393210, + "normalized_name": "dashie's puh ranormal activity" + }, + { + "appid": 1393220, + "normalized_name": "electrify" + }, + { + "appid": 1393270, + "normalized_name": "12 bananas" + }, + { + "appid": 1393310, + "normalized_name": "space hole 2020" + }, + { + "appid": 1393320, + "normalized_name": "keyword a spider's thread" + }, + { + "appid": 1393340, + "normalized_name": "battle hunters" + }, + { + "appid": 1393350, + "normalized_name": "swaying girl" + }, + { + "appid": 1393360, + "normalized_name": "onder" + }, + { + "appid": 1393370, + "normalized_name": "actraiser renaissance" + }, + { + "appid": 1393380, + "normalized_name": "reverse defenders" + }, + { + "appid": 1393410, + "normalized_name": "seek girl v" + }, + { + "appid": 1393420, + "normalized_name": "tokoyo the tower of perpetuity" + }, + { + "appid": 1393430, + "normalized_name": "banality wars carridin" + }, + { + "appid": 1393440, + "normalized_name": "hillside" + }, + { + "appid": 1393460, + "normalized_name": "mythicard" + }, + { + "appid": 1393480, + "normalized_name": "union" + }, + { + "appid": 1393490, + "normalized_name": "cheesecube" + }, + { + "appid": 1393500, + "normalized_name": "time break chronicles" + }, + { + "appid": 1393550, + "normalized_name": "サブリミナルレジオン" + }, + { + "appid": 1393560, + "normalized_name": "self gunsbase 2d history shooter" + }, + { + "appid": 1393570, + "normalized_name": "superbugs awaken" + }, + { + "appid": 1393580, + "normalized_name": "the amulet of amunrun" + }, + { + "appid": 1393610, + "normalized_name": "classic tanks 2020" + }, + { + "appid": 1393620, + "normalized_name": "sand witch adventures" + }, + { + "appid": 1393630, + "normalized_name": "xgamex" + }, + { + "appid": 1393640, + "normalized_name": "home designer living room" + }, + { + "appid": 1393650, + "normalized_name": "blockbustersvr" + }, + { + "appid": 1393670, + "normalized_name": "los cops" + }, + { + "appid": 1393680, + "normalized_name": "supreme fighters" + }, + { + "appid": 1393690, + "normalized_name": "waver a typing adventure" + }, + { + "appid": 1393740, + "normalized_name": "vincula" + }, + { + "appid": 1393750, + "normalized_name": "ocean's heart" + }, + { + "appid": 1393770, + "normalized_name": "fury knight" + }, + { + "appid": 1393800, + "normalized_name": "loofy" + }, + { + "appid": 1393810, + "normalized_name": "surabaya inferno" + }, + { + "appid": 1393820, + "normalized_name": "prodigal" + }, + { + "appid": 1393830, + "normalized_name": "influxis" + }, + { + "appid": 1393850, + "normalized_name": "outer frontier" + }, + { + "appid": 1393910, + "normalized_name": "jolly good cakes and ale" + }, + { + "appid": 1393950, + "normalized_name": "rem cycles" + }, + { + "appid": 1393960, + "normalized_name": "battle command" + }, + { + "appid": 1393970, + "normalized_name": "my jigsaw adventures the source of power" + }, + { + "appid": 1394030, + "normalized_name": "cesspool" + }, + { + "appid": 1394040, + "normalized_name": "flixy cats" + }, + { + "appid": 1394060, + "normalized_name": "viking idle" + }, + { + "appid": 1394070, + "normalized_name": "brock crocodile" + }, + { + "appid": 1394090, + "normalized_name": "power of ten demo" + }, + { + "appid": 1394100, + "normalized_name": "s.h.e.l.t.e.r. an apocalyptic tale" + }, + { + "appid": 1394130, + "normalized_name": "breach wanderers" + }, + { + "appid": 1394140, + "normalized_name": "you can pet the dog vr" + }, + { + "appid": 1394150, + "normalized_name": "official wicked vixen silicone scramble" + }, + { + "appid": 1394210, + "normalized_name": "strike vr" + }, + { + "appid": 1394240, + "normalized_name": "virtuacreature" + }, + { + "appid": 1394250, + "normalized_name": "ryewood town" + }, + { + "appid": 1394270, + "normalized_name": "scp escape together" + }, + { + "appid": 1394320, + "normalized_name": "magic trick" + }, + { + "appid": 1394330, + "normalized_name": "乱世奇谋stratagem in troubled times" + }, + { + "appid": 1394340, + "normalized_name": "dreamdasher" + }, + { + "appid": 1394370, + "normalized_name": "super symbol boys" + }, + { + "appid": 1394400, + "normalized_name": "gump" + }, + { + "appid": 1394410, + "normalized_name": "mysterica" + }, + { + "appid": 1394420, + "normalized_name": "dallen clicker" + }, + { + "appid": 1394440, + "normalized_name": "game over" + }, + { + "appid": 1394460, + "normalized_name": "rxc rally cross challenge" + }, + { + "appid": 1394470, + "normalized_name": "umami grove" + }, + { + "appid": 1394480, + "normalized_name": "rocco's island ring to end the pain" + }, + { + "appid": 1394490, + "normalized_name": "galactic trooper armada" + }, + { + "appid": 1394500, + "normalized_name": "frontline world war ii" + }, + { + "appid": 1394510, + "normalized_name": "emurinoo" + }, + { + "appid": 1394520, + "normalized_name": "path to prosperity" + }, + { + "appid": 1394540, + "normalized_name": "niko and the cubic curse" + }, + { + "appid": 1394550, + "normalized_name": "tales from the under realm hazel" + }, + { + "appid": 1394570, + "normalized_name": "pass to hell" + }, + { + "appid": 1394580, + "normalized_name": "鹿易想要活到世界尽头" + }, + { + "appid": 1394600, + "normalized_name": "invasion resistance 2" + }, + { + "appid": 1394640, + "normalized_name": "dark room vr" + }, + { + "appid": 1394650, + "normalized_name": "detained too good for school" + }, + { + "appid": 1394660, + "normalized_name": "isometric world frame of mind" + }, + { + "appid": 1394680, + "normalized_name": "soul catcher" + }, + { + "appid": 1394700, + "normalized_name": "takorita meets fries" + }, + { + "appid": 1394720, + "normalized_name": "block dungeon" + }, + { + "appid": 1394750, + "normalized_name": "mahjong world contest 2" + }, + { + "appid": 1394760, + "normalized_name": "mahjong carnaval" + }, + { + "appid": 1394780, + "normalized_name": "pop pixie" + }, + { + "appid": 1394800, + "normalized_name": "rebirth mr wang" + }, + { + "appid": 1394810, + "normalized_name": "colossus down" + }, + { + "appid": 1394830, + "normalized_name": "locis" + }, + { + "appid": 1394880, + "normalized_name": "wild baffo" + }, + { + "appid": 1394930, + "normalized_name": "mamiya" + }, + { + "appid": 1394940, + "normalized_name": "nak sim fallen warriors" + }, + { + "appid": 1394960, + "normalized_name": "winter survival" + }, + { + "appid": 1394990, + "normalized_name": "heart of summer" + }, + { + "appid": 1395000, + "normalized_name": "egypt picross pharaohs riddles" + }, + { + "appid": 1395010, + "normalized_name": "magic griddlers" + }, + { + "appid": 1395020, + "normalized_name": "picross beach paradise" + }, + { + "appid": 1395030, + "normalized_name": "kathy rain director's cut" + }, + { + "appid": 1395040, + "normalized_name": "cyberthreat" + }, + { + "appid": 1395080, + "normalized_name": "the disaster" + }, + { + "appid": 1395120, + "normalized_name": "at eve’s wake" + }, + { + "appid": 1395170, + "normalized_name": "stones of the revenant" + }, + { + "appid": 1395180, + "normalized_name": "raid!" + }, + { + "appid": 1395190, + "normalized_name": "blask 2" + }, + { + "appid": 1395230, + "normalized_name": "almost my floor prologue" + }, + { + "appid": 1395250, + "normalized_name": "cube crisis" + }, + { + "appid": 1395270, + "normalized_name": "haiki" + }, + { + "appid": 1395310, + "normalized_name": "world of soccer reloaded" + }, + { + "appid": 1395330, + "normalized_name": "venture valley" + }, + { + "appid": 1395380, + "normalized_name": "evolutis duality" + }, + { + "appid": 1395400, + "normalized_name": "the corruption within" + }, + { + "appid": 1395410, + "normalized_name": "jetscout mystery of the valunians" + }, + { + "appid": 1395420, + "normalized_name": "human diaspora" + }, + { + "appid": 1395450, + "normalized_name": "shell shuffle" + }, + { + "appid": 1395470, + "normalized_name": "glory" + }, + { + "appid": 1395480, + "normalized_name": "a midnight village story" + }, + { + "appid": 1395510, + "normalized_name": "solar scion" + }, + { + "appid": 1395520, + "normalized_name": "the séance of blake manor" + }, + { + "appid": 1395540, + "normalized_name": "bot.vinnik chess winning patterns" + }, + { + "appid": 1395560, + "normalized_name": "kandidatos" + }, + { + "appid": 1395600, + "normalized_name": "party parkade" + }, + { + "appid": 1395630, + "normalized_name": "cute dragon yongyong" + }, + { + "appid": 1395660, + "normalized_name": "sphere invasion" + }, + { + "appid": 1395710, + "normalized_name": "daisy flies to the moon" + }, + { + "appid": 1395750, + "normalized_name": "dasher" + }, + { + "appid": 1395760, + "normalized_name": "reshaping mars" + }, + { + "appid": 1395780, + "normalized_name": "punchout music" + }, + { + "appid": 1395830, + "normalized_name": "hoplegs" + }, + { + "appid": 1395850, + "normalized_name": "home & dungeon" + }, + { + "appid": 1395890, + "normalized_name": "super dango" + }, + { + "appid": 1395900, + "normalized_name": "bouncer story" + }, + { + "appid": 1395920, + "normalized_name": "grapplewell" + }, + { + "appid": 1396010, + "normalized_name": "asian riddles 2" + }, + { + "appid": 1396020, + "normalized_name": "fill and cross royal riddles" + }, + { + "appid": 1396050, + "normalized_name": "kirakira stars idol project reika" + }, + { + "appid": 1396140, + "normalized_name": "hexagroove tactical dj" + }, + { + "appid": 1396150, + "normalized_name": "素敵な彼女の作り方" + }, + { + "appid": 1396160, + "normalized_name": "saltyfishgo" + }, + { + "appid": 1396170, + "normalized_name": "paint royale" + }, + { + "appid": 1396190, + "normalized_name": "de exit eternal matters" + }, + { + "appid": 1396290, + "normalized_name": "chess mega bundle" + }, + { + "appid": 1396310, + "normalized_name": "orcs and outlaws" + }, + { + "appid": 1396350, + "normalized_name": "anamnesis" + }, + { + "appid": 1396380, + "normalized_name": "anime world" + }, + { + "appid": 1396390, + "normalized_name": "jump hero beginning" + }, + { + "appid": 1396450, + "normalized_name": "最末行程:胜利路19号" + }, + { + "appid": 1396480, + "normalized_name": "monstersoft" + }, + { + "appid": 1396490, + "normalized_name": "all for nought tic tac toe" + }, + { + "appid": 1396500, + "normalized_name": "thyra adventure" + }, + { + "appid": 1396540, + "normalized_name": "twilight wars" + }, + { + "appid": 1396580, + "normalized_name": "hey ma i'm a dragon now" + }, + { + "appid": 1396610, + "normalized_name": "do it with hay" + }, + { + "appid": 1396630, + "normalized_name": "hollow mind the lost puppy" + }, + { + "appid": 1396870, + "normalized_name": "enchain" + }, + { + "appid": 1396890, + "normalized_name": "boss of this gym" + }, + { + "appid": 1396950, + "normalized_name": "the mouse and the cheese" + }, + { + "appid": 1396970, + "normalized_name": "chess on ice" + }, + { + "appid": 1396980, + "normalized_name": "the sealed ampoule" + }, + { + "appid": 1397000, + "normalized_name": "zodiac dx" + }, + { + "appid": 1397010, + "normalized_name": "1980" + }, + { + "appid": 1397030, + "normalized_name": "survive or thrive" + }, + { + "appid": 1397040, + "normalized_name": "sanguine melancholia" + }, + { + "appid": 1397050, + "normalized_name": "square vs triangles" + }, + { + "appid": 1397060, + "normalized_name": "little brother's turn" + }, + { + "appid": 1397110, + "normalized_name": "harthorn" + }, + { + "appid": 1397130, + "normalized_name": "primateria" + }, + { + "appid": 1397140, + "normalized_name": "the last show of mr. chardish act i" + }, + { + "appid": 1397160, + "normalized_name": "pulut adventure rpg" + }, + { + "appid": 1397170, + "normalized_name": "anime wave simulator" + }, + { + "appid": 1397180, + "normalized_name": "three dimension" + }, + { + "appid": 1397230, + "normalized_name": "vr time machine travelling in history visit ancient egypt babylon and greece in b.c. 400" + }, + { + "appid": 1397240, + "normalized_name": "megajump" + }, + { + "appid": 1397280, + "normalized_name": "slime pandemic td" + }, + { + "appid": 1397290, + "normalized_name": "comet 64" + }, + { + "appid": 1397300, + "normalized_name": "kyma" + }, + { + "appid": 1397350, + "normalized_name": "好久不见 long time no see" + }, + { + "appid": 1397360, + "normalized_name": "shattered runes" + }, + { + "appid": 1397390, + "normalized_name": "the break in" + }, + { + "appid": 1397410, + "normalized_name": "烈焰天下" + }, + { + "appid": 1397470, + "normalized_name": "tsuro the game of the path" + }, + { + "appid": 1397500, + "normalized_name": "combat league" + }, + { + "appid": 1397530, + "normalized_name": "monochro" + }, + { + "appid": 1397540, + "normalized_name": "on pixels a lights out game" + }, + { + "appid": 1397580, + "normalized_name": "eidols" + }, + { + "appid": 1397620, + "normalized_name": "flat earth simulator" + }, + { + "appid": 1397650, + "normalized_name": "jetborne racing" + }, + { + "appid": 1397680, + "normalized_name": "glory hold" + }, + { + "appid": 1397690, + "normalized_name": "riot at world" + }, + { + "appid": 1397710, + "normalized_name": "operation tp" + }, + { + "appid": 1397720, + "normalized_name": "red sector" + }, + { + "appid": 1397760, + "normalized_name": "pulse jumper" + }, + { + "appid": 1397790, + "normalized_name": "samurai gunn 2" + }, + { + "appid": 1397800, + "normalized_name": "please wake up" + }, + { + "appid": 1397810, + "normalized_name": "ducktopia" + }, + { + "appid": 1397820, + "normalized_name": "sky mirror · strolling" + }, + { + "appid": 1397830, + "normalized_name": "presidential running games" + }, + { + "appid": 1397840, + "normalized_name": "cult of dawn" + }, + { + "appid": 1397850, + "normalized_name": "circle tank" + }, + { + "appid": 1397880, + "normalized_name": "the weald" + }, + { + "appid": 1397920, + "normalized_name": "mr.mine" + }, + { + "appid": 1397940, + "normalized_name": "prototype zordi mi lé" + }, + { + "appid": 1397950, + "normalized_name": "the scarlet capital 绯红之都" + }, + { + "appid": 1397960, + "normalized_name": "one night on halloween" + }, + { + "appid": 1397980, + "normalized_name": "the normal thing" + }, + { + "appid": 1398070, + "normalized_name": "the book of bondmaids" + }, + { + "appid": 1398080, + "normalized_name": "seaside cafe story" + }, + { + "appid": 1398100, + "normalized_name": "orwell's animal farm" + }, + { + "appid": 1398110, + "normalized_name": "space pirate king" + }, + { + "appid": 1398120, + "normalized_name": "the hardest thing ever" + }, + { + "appid": 1398130, + "normalized_name": "head bumper editcraft" + }, + { + "appid": 1398170, + "normalized_name": "mourning inc." + }, + { + "appid": 1398180, + "normalized_name": "porcini" + }, + { + "appid": 1398200, + "normalized_name": "ada além d' aventura" + }, + { + "appid": 1398210, + "normalized_name": "selene ~apoptosis~" + }, + { + "appid": 1398220, + "normalized_name": "impavidvm" + }, + { + "appid": 1398270, + "normalized_name": "furgal's jetpack" + }, + { + "appid": 1398290, + "normalized_name": "crônicas de landulph" + }, + { + "appid": 1398300, + "normalized_name": "suspicious shuffle" + }, + { + "appid": 1398340, + "normalized_name": "paintball with friends" + }, + { + "appid": 1398390, + "normalized_name": "space / mech / pilot" + }, + { + "appid": 1398400, + "normalized_name": "florida man hurricane hijinks" + }, + { + "appid": 1398410, + "normalized_name": "reginald's death arena" + }, + { + "appid": 1398420, + "normalized_name": "one last dungeon" + }, + { + "appid": 1398440, + "normalized_name": "transcender" + }, + { + "appid": 1398460, + "normalized_name": "line leader" + }, + { + "appid": 1398470, + "normalized_name": "pop up blaster" + }, + { + "appid": 1398500, + "normalized_name": "mechblaze" + }, + { + "appid": 1398510, + "normalized_name": "galaxy in peril time trouble" + }, + { + "appid": 1398570, + "normalized_name": "last escape" + }, + { + "appid": 1398590, + "normalized_name": "1001 jigsaw world tour asia" + }, + { + "appid": 1398600, + "normalized_name": "fill and cross world contest" + }, + { + "appid": 1398630, + "normalized_name": "无限次元" + }, + { + "appid": 1398660, + "normalized_name": "camgirls sophie x rias" + }, + { + "appid": 1398670, + "normalized_name": "dating life 2 emily x miley" + }, + { + "appid": 1398680, + "normalized_name": "negligee girls night" + }, + { + "appid": 1398690, + "normalized_name": "negligee opposites attract" + }, + { + "appid": 1398700, + "normalized_name": "animal cafe" + }, + { + "appid": 1398710, + "normalized_name": "fairy glade" + }, + { + "appid": 1398720, + "normalized_name": "water girls" + }, + { + "appid": 1398730, + "normalized_name": "winter wonderland" + }, + { + "appid": 1398740, + "normalized_name": "the chrono jotter" + }, + { + "appid": 1398750, + "normalized_name": "sunset mall" + }, + { + "appid": 1398790, + "normalized_name": "boobs vr" + }, + { + "appid": 1398820, + "normalized_name": "compost" + }, + { + "appid": 1398860, + "normalized_name": "rocket squad" + }, + { + "appid": 1398890, + "normalized_name": "fast jump" + }, + { + "appid": 1398900, + "normalized_name": "lost into dolor" + }, + { + "appid": 1398910, + "normalized_name": "jorel’s brother and the most important game of the galaxy" + }, + { + "appid": 1398920, + "normalized_name": "virtuverse" + }, + { + "appid": 1398950, + "normalized_name": "savage tower defense" + }, + { + "appid": 1398990, + "normalized_name": "ancient souls starship renata" + }, + { + "appid": 1399030, + "normalized_name": "wacky wizarding dungeon" + }, + { + "appid": 1399040, + "normalized_name": "this is not chess" + }, + { + "appid": 1399080, + "normalized_name": "the diofield chronicle" + }, + { + "appid": 1399090, + "normalized_name": "life simulator" + }, + { + "appid": 1399140, + "normalized_name": "boxing coach" + }, + { + "appid": 1399150, + "normalized_name": "vr time machine travelling in ancient civilizations mayan kingdom inca empire indians and aztecs before conquest a.d.1000" + }, + { + "appid": 1399160, + "normalized_name": "御剑飞行射击训练空间" + }, + { + "appid": 1399170, + "normalized_name": "nimbus infinity" + }, + { + "appid": 1399180, + "normalized_name": "lone wolf world war 2" + }, + { + "appid": 1399190, + "normalized_name": "blood oath when the sword rises" + }, + { + "appid": 1399200, + "normalized_name": "world's worst handyman prologue" + }, + { + "appid": 1399210, + "normalized_name": "lumiland" + }, + { + "appid": 1399220, + "normalized_name": "raw april day" + }, + { + "appid": 1399230, + "normalized_name": "hoovernauts" + }, + { + "appid": 1399240, + "normalized_name": "yotsume god reunion" + }, + { + "appid": 1399250, + "normalized_name": "red cap zombie hunter" + }, + { + "appid": 1399270, + "normalized_name": "the arena guy" + }, + { + "appid": 1399280, + "normalized_name": "the lost cube" + }, + { + "appid": 1399300, + "normalized_name": "sok pro" + }, + { + "appid": 1399370, + "normalized_name": "cute honey 2" + }, + { + "appid": 1399380, + "normalized_name": "nui" + }, + { + "appid": 1399400, + "normalized_name": "vr historical journey to the buddhist civilizations vr ancient india and asia" + }, + { + "appid": 1399440, + "normalized_name": "pets vr" + }, + { + "appid": 1399460, + "normalized_name": "museum of extravagance" + }, + { + "appid": 1399480, + "normalized_name": "california games (c64/dos/atari/lynx/nes/sms/genesis)" + }, + { + "appid": 1399530, + "normalized_name": "walden horde" + }, + { + "appid": 1399540, + "normalized_name": "a forgetful loop" + }, + { + "appid": 1399600, + "normalized_name": "district 99" + }, + { + "appid": 1399620, + "normalized_name": "the caretaker" + }, + { + "appid": 1399630, + "normalized_name": "lactea volleyball" + }, + { + "appid": 1399660, + "normalized_name": "my little prince a jigsaw puzzle tale" + }, + { + "appid": 1399670, + "normalized_name": "instant farmer logic puzzle" + }, + { + "appid": 1399690, + "normalized_name": "reverie knights tactics" + }, + { + "appid": 1399700, + "normalized_name": "kapital sparks of revolution" + }, + { + "appid": 1399720, + "normalized_name": "antimatter dimensions" + }, + { + "appid": 1399750, + "normalized_name": "beholgar" + }, + { + "appid": 1399760, + "normalized_name": "randomlands" + }, + { + "appid": 1399800, + "normalized_name": "silver squad age of the vortex" + }, + { + "appid": 1399840, + "normalized_name": "neptunia virtual stars" + }, + { + "appid": 1399850, + "normalized_name": "squares rage" + }, + { + "appid": 1399870, + "normalized_name": "bedtime horror stories" + }, + { + "appid": 1399900, + "normalized_name": "the intergalactic trail" + }, + { + "appid": 1399910, + "normalized_name": "crisis arcana" + }, + { + "appid": 1399930, + "normalized_name": "furry shades of gay" + }, + { + "appid": 1399940, + "normalized_name": "batsu!" + }, + { + "appid": 1399990, + "normalized_name": "don't die! douche!" + }, + { + "appid": 1400000, + "normalized_name": "mint works" + }, + { + "appid": 1400030, + "normalized_name": "dragon acres" + }, + { + "appid": 1400040, + "normalized_name": "the cubedex of boxes and lines" + }, + { + "appid": 1400060, + "normalized_name": "what's the matter?" + }, + { + "appid": 1400070, + "normalized_name": "don't cheat on me" + }, + { + "appid": 1400080, + "normalized_name": "pre strike" + }, + { + "appid": 1400110, + "normalized_name": "sightbringer" + }, + { + "appid": 1400140, + "normalized_name": "way in the stars" + }, + { + "appid": 1400150, + "normalized_name": "pandemic bunny" + }, + { + "appid": 1400170, + "normalized_name": "tinycrack" + }, + { + "appid": 1400180, + "normalized_name": "monster girl breeder" + }, + { + "appid": 1400190, + "normalized_name": "human like" + }, + { + "appid": 1400200, + "normalized_name": "mystery case files the harbinger collector's" + }, + { + "appid": 1400210, + "normalized_name": "death drives a bus" + }, + { + "appid": 1400260, + "normalized_name": "legendary journeys" + }, + { + "appid": 1400270, + "normalized_name": "fox face kills!" + }, + { + "appid": 1400290, + "normalized_name": "[chilla's art] hanako | 花子さん" + }, + { + "appid": 1400320, + "normalized_name": "그 어느 여름날의 이야기" + }, + { + "appid": 1400350, + "normalized_name": "rescue rina" + }, + { + "appid": 1400360, + "normalized_name": "lemwars" + }, + { + "appid": 1400390, + "normalized_name": "the first confrontation" + }, + { + "appid": 1400480, + "normalized_name": "lost gems" + }, + { + "appid": 1400520, + "normalized_name": "nomads of driftland" + }, + { + "appid": 1400560, + "normalized_name": "priest vs. poltergeist" + }, + { + "appid": 1400610, + "normalized_name": "one drunken knight" + }, + { + "appid": 1400620, + "normalized_name": "ballsy! world cup 2020" + }, + { + "appid": 1400630, + "normalized_name": "afterthought" + }, + { + "appid": 1400650, + "normalized_name": "万人割草塔防" + }, + { + "appid": 1400660, + "normalized_name": "rise of piracy" + }, + { + "appid": 1400680, + "normalized_name": "impossible mission ii" + }, + { + "appid": 1400700, + "normalized_name": "confessions" + }, + { + "appid": 1400710, + "normalized_name": "gowf a golf adventure" + }, + { + "appid": 1400740, + "normalized_name": "petrol blood" + }, + { + "appid": 1400750, + "normalized_name": "cartridge monsters rebirth" + }, + { + "appid": 1400760, + "normalized_name": "my universe my baby" + }, + { + "appid": 1400830, + "normalized_name": "billie bust up" + }, + { + "appid": 1400850, + "normalized_name": "aza" + }, + { + "appid": 1400870, + "normalized_name": "when the night comes" + }, + { + "appid": 1400910, + "normalized_name": "soundodger 2" + }, + { + "appid": 1400920, + "normalized_name": "flood fill" + }, + { + "appid": 1400930, + "normalized_name": "save the date" + }, + { + "appid": 1400940, + "normalized_name": "revolution diabolique" + }, + { + "appid": 1400980, + "normalized_name": "my neighborhood arcade" + }, + { + "appid": 1401020, + "normalized_name": "where is my vodka?" + }, + { + "appid": 1401070, + "normalized_name": "quest for runia" + }, + { + "appid": 1401110, + "normalized_name": "near sol" + }, + { + "appid": 1401130, + "normalized_name": "jajazinho e as delicias de cristais" + }, + { + "appid": 1401150, + "normalized_name": "black hole simulator" + }, + { + "appid": 1401170, + "normalized_name": "world war 2 strategy simulator" + }, + { + "appid": 1401200, + "normalized_name": "shadows of soldiers" + }, + { + "appid": 1401220, + "normalized_name": "冷血症骰子" + }, + { + "appid": 1401320, + "normalized_name": "破镜恐惧" + }, + { + "appid": 1401340, + "normalized_name": "tea garden simulator" + }, + { + "appid": 1401360, + "normalized_name": "friendly find" + }, + { + "appid": 1401370, + "normalized_name": "viking city builder" + }, + { + "appid": 1401400, + "normalized_name": "lovecraft's untold stories 2" + }, + { + "appid": 1401500, + "normalized_name": "keep the lights on" + }, + { + "appid": 1401560, + "normalized_name": "kilta" + }, + { + "appid": 1401570, + "normalized_name": "cold call" + }, + { + "appid": 1401590, + "normalized_name": "disney dreamlight valley" + }, + { + "appid": 1401610, + "normalized_name": "leons identität" + }, + { + "appid": 1401620, + "normalized_name": "chesstle" + }, + { + "appid": 1401630, + "normalized_name": "stellar wanderer dx" + }, + { + "appid": 1401670, + "normalized_name": "handy machines vr" + }, + { + "appid": 1401680, + "normalized_name": "lust from beyond scarlet" + }, + { + "appid": 1401730, + "normalized_name": "crashlands 2" + }, + { + "appid": 1401750, + "normalized_name": "mission z" + }, + { + "appid": 1401840, + "normalized_name": "silk roads caravan kings" + }, + { + "appid": 1401870, + "normalized_name": "dark dealings" + }, + { + "appid": 1401880, + "normalized_name": "midnight bike" + }, + { + "appid": 1401890, + "normalized_name": "glorious tournius" + }, + { + "appid": 1401910, + "normalized_name": "spellstorm" + }, + { + "appid": 1401930, + "normalized_name": "battlewars" + }, + { + "appid": 1401940, + "normalized_name": "露露寻犬记" + }, + { + "appid": 1401970, + "normalized_name": "galaxy kart vr" + }, + { + "appid": 1401990, + "normalized_name": "missing features 2d" + }, + { + "appid": 1402000, + "normalized_name": "trapped guys" + }, + { + "appid": 1402010, + "normalized_name": "table soccer club" + }, + { + "appid": 1402020, + "normalized_name": "scp labrat" + }, + { + "appid": 1402030, + "normalized_name": "strings theory" + }, + { + "appid": 1402060, + "normalized_name": "dung beetle strike" + }, + { + "appid": 1402090, + "normalized_name": "crisis wing" + }, + { + "appid": 1402110, + "normalized_name": "eternights" + }, + { + "appid": 1402120, + "normalized_name": "9 years of shadows" + }, + { + "appid": 1402130, + "normalized_name": "archery arena" + }, + { + "appid": 1402280, + "normalized_name": "sensual slots" + }, + { + "appid": 1402290, + "normalized_name": "monochrome rpg episode 1 the maniacal morning" + }, + { + "appid": 1402320, + "normalized_name": "medal of honor above and beyond" + }, + { + "appid": 1402350, + "normalized_name": "12 labours of hercules xi painted adventure" + }, + { + "appid": 1402380, + "normalized_name": "hogogeist" + }, + { + "appid": 1402400, + "normalized_name": "arcanbreak" + }, + { + "appid": 1402410, + "normalized_name": "funny business with my precious coach (anipuzzle series)" + }, + { + "appid": 1402420, + "normalized_name": "demon strikes back" + }, + { + "appid": 1402440, + "normalized_name": "time to go home" + }, + { + "appid": 1402460, + "normalized_name": "battlestick 2" + }, + { + "appid": 1402580, + "normalized_name": "no place for the dissident" + }, + { + "appid": 1402600, + "normalized_name": "super bloo kid adventure" + }, + { + "appid": 1402650, + "normalized_name": "birding simulator bird photographer" + }, + { + "appid": 1402700, + "normalized_name": "red falcon" + }, + { + "appid": 1402740, + "normalized_name": "the prabbits happy dogfights !" + }, + { + "appid": 1402780, + "normalized_name": "forever night" + }, + { + "appid": 1402790, + "normalized_name": "shopping empire tycoon" + }, + { + "appid": 1402820, + "normalized_name": "hostile mars" + }, + { + "appid": 1402880, + "normalized_name": "food war td" + }, + { + "appid": 1402900, + "normalized_name": "twilight memoria" + }, + { + "appid": 1402940, + "normalized_name": "graveless" + }, + { + "appid": 1402960, + "normalized_name": "speedily" + }, + { + "appid": 1403020, + "normalized_name": "scp strategy" + }, + { + "appid": 1403030, + "normalized_name": "wanderlost" + }, + { + "appid": 1403040, + "normalized_name": "physics sandbox vr" + }, + { + "appid": 1403080, + "normalized_name": "radioactive dwarfs evil from the sewers" + }, + { + "appid": 1403110, + "normalized_name": "primeval" + }, + { + "appid": 1403130, + "normalized_name": "pixel art mash up" + }, + { + "appid": 1403190, + "normalized_name": "throne of fate" + }, + { + "appid": 1403230, + "normalized_name": "penny rpg shadows of the lost a blood city tale" + }, + { + "appid": 1403250, + "normalized_name": "underworld memories" + }, + { + "appid": 1403270, + "normalized_name": "genetic fluff" + }, + { + "appid": 1403280, + "normalized_name": "struggle offensive" + }, + { + "appid": 1403310, + "normalized_name": "garden simulator" + }, + { + "appid": 1403350, + "normalized_name": "supfly delivery simulator" + }, + { + "appid": 1403370, + "normalized_name": "zenith nexus" + }, + { + "appid": 1403400, + "normalized_name": "sky squadron" + }, + { + "appid": 1403440, + "normalized_name": "broken roads" + }, + { + "appid": 1403450, + "normalized_name": "畏光" + }, + { + "appid": 1403460, + "normalized_name": "flavortown" + }, + { + "appid": 1403520, + "normalized_name": "forest farm" + }, + { + "appid": 1403550, + "normalized_name": "planet blood" + }, + { + "appid": 1403570, + "normalized_name": "the message" + }, + { + "appid": 1403590, + "normalized_name": "kingdom of force" + }, + { + "appid": 1403650, + "normalized_name": "everdream valley" + }, + { + "appid": 1403680, + "normalized_name": "bob mazzolini racing" + }, + { + "appid": 1403710, + "normalized_name": "platzkart simulator" + }, + { + "appid": 1403720, + "normalized_name": "medulla" + }, + { + "appid": 1403740, + "normalized_name": "space architect" + }, + { + "appid": 1403750, + "normalized_name": "街机金蟾捕鱼2" + }, + { + "appid": 1403830, + "normalized_name": "paper beast folded" + }, + { + "appid": 1403850, + "normalized_name": "mars colony builder" + }, + { + "appid": 1403890, + "normalized_name": "smfly gravity adventure" + }, + { + "appid": 1403940, + "normalized_name": "grim" + }, + { + "appid": 1403960, + "normalized_name": "attack of the evil poop vr" + }, + { + "appid": 1403990, + "normalized_name": "paths & danger" + }, + { + "appid": 1404010, + "normalized_name": "a knight never yields" + }, + { + "appid": 1404030, + "normalized_name": "fighting for justice episode 1" + }, + { + "appid": 1404050, + "normalized_name": "10mg stroke" + }, + { + "appid": 1404070, + "normalized_name": "save the astronaut" + }, + { + "appid": 1404080, + "normalized_name": "rotund takeoff" + }, + { + "appid": 1404090, + "normalized_name": "trivia tricks" + }, + { + "appid": 1404100, + "normalized_name": "国产游戏公司模拟" + }, + { + "appid": 1404130, + "normalized_name": "gothic murder adventure that changes destiny" + }, + { + "appid": 1404150, + "normalized_name": "escape the city" + }, + { + "appid": 1404160, + "normalized_name": "mega capital" + }, + { + "appid": 1404180, + "normalized_name": "6th dimension" + }, + { + "appid": 1404190, + "normalized_name": "chess brain" + }, + { + "appid": 1404210, + "normalized_name": "red dead online" + }, + { + "appid": 1404240, + "normalized_name": "путин против инопланетян финал (cyberputin 2077 endgame)" + }, + { + "appid": 1404300, + "normalized_name": "drops of death" + }, + { + "appid": 1404330, + "normalized_name": "vr quiet life" + }, + { + "appid": 1404360, + "normalized_name": "a shopping trip to eklan tor" + }, + { + "appid": 1404450, + "normalized_name": "godo" + }, + { + "appid": 1404490, + "normalized_name": "cursed weekend" + }, + { + "appid": 1404520, + "normalized_name": "death blonde" + }, + { + "appid": 1404530, + "normalized_name": "roboskate" + }, + { + "appid": 1404550, + "normalized_name": "legend of xion royal story 赛恩传说:皇家物语" + }, + { + "appid": 1404560, + "normalized_name": "yerba mate tycoon" + }, + { + "appid": 1404630, + "normalized_name": "all hit all her" + }, + { + "appid": 1404660, + "normalized_name": "psych" + }, + { + "appid": 1404710, + "normalized_name": "kosmos connections" + }, + { + "appid": 1404750, + "normalized_name": "mind muscle vr" + }, + { + "appid": 1404770, + "normalized_name": "cube" + }, + { + "appid": 1404790, + "normalized_name": "pathmaker" + }, + { + "appid": 1404800, + "normalized_name": "juicy army" + }, + { + "appid": 1404840, + "normalized_name": "liberation special forces" + }, + { + "appid": 1404850, + "normalized_name": "luck be a landlord" + }, + { + "appid": 1404870, + "normalized_name": "couplinked" + }, + { + "appid": 1404930, + "normalized_name": "snowman saves christmas" + }, + { + "appid": 1404960, + "normalized_name": "the last sunshine rekindled" + }, + { + "appid": 1404970, + "normalized_name": "sponsor a planet" + }, + { + "appid": 1404980, + "normalized_name": "nena" + }, + { + "appid": 1405010, + "normalized_name": "exotic kosmos" + }, + { + "appid": 1405050, + "normalized_name": "ninmaki" + }, + { + "appid": 1405090, + "normalized_name": "star maidens chronicle" + }, + { + "appid": 1405130, + "normalized_name": "cubia" + }, + { + "appid": 1405170, + "normalized_name": "vr historical journey to the age of crusaders medieval jerusalem saracen cities arabic culture east land" + }, + { + "appid": 1405180, + "normalized_name": "wilderness" + }, + { + "appid": 1405220, + "normalized_name": "trump loves waifus" + }, + { + "appid": 1405260, + "normalized_name": "rebellion" + }, + { + "appid": 1405270, + "normalized_name": "inseparable" + }, + { + "appid": 1405320, + "normalized_name": "the adventures of maximus" + }, + { + "appid": 1405360, + "normalized_name": "brutal dinosaur" + }, + { + "appid": 1405380, + "normalized_name": "haters" + }, + { + "appid": 1405390, + "normalized_name": "synthwave glider" + }, + { + "appid": 1405440, + "normalized_name": "the horror of salazar house" + }, + { + "appid": 1405470, + "normalized_name": "scars of summer" + }, + { + "appid": 1405480, + "normalized_name": "swing lord" + }, + { + "appid": 1405500, + "normalized_name": "angel at dusk" + }, + { + "appid": 1405660, + "normalized_name": "shoot shoot my waifu" + }, + { + "appid": 1405670, + "normalized_name": "the forgotten island v1.0" + }, + { + "appid": 1405730, + "normalized_name": "alchemy emporium" + }, + { + "appid": 1405740, + "normalized_name": "p0" + }, + { + "appid": 1405780, + "normalized_name": "interactive empathy" + }, + { + "appid": 1405790, + "normalized_name": "john wick hex" + }, + { + "appid": 1405810, + "normalized_name": "party maker farm fest" + }, + { + "appid": 1405930, + "normalized_name": "marscape" + }, + { + "appid": 1405950, + "normalized_name": "pear potion🍐" + }, + { + "appid": 1405960, + "normalized_name": "vr travelling in 18th 19th century europe" + }, + { + "appid": 1405970, + "normalized_name": "once upon a time in the gold rush vr shoot and ride" + }, + { + "appid": 1405980, + "normalized_name": "astronomy lab on pc relativity lunar landing space flight and interstellar travelling" + }, + { + "appid": 1406000, + "normalized_name": "bigchick" + }, + { + "appid": 1406020, + "normalized_name": "sakura succubus 3" + }, + { + "appid": 1406030, + "normalized_name": "powamo" + }, + { + "appid": 1406080, + "normalized_name": "arc wizards" + }, + { + "appid": 1406090, + "normalized_name": "control override" + }, + { + "appid": 1406110, + "normalized_name": "nova odessa" + }, + { + "appid": 1406140, + "normalized_name": "wiggly boy" + }, + { + "appid": 1406150, + "normalized_name": "delta light" + }, + { + "appid": 1406160, + "normalized_name": "polyforce ww2" + }, + { + "appid": 1406200, + "normalized_name": "in my shadow" + }, + { + "appid": 1406240, + "normalized_name": "memories of fireflies" + }, + { + "appid": 1406260, + "normalized_name": "bram the toymaker" + }, + { + "appid": 1406270, + "normalized_name": "gothic girls" + }, + { + "appid": 1406280, + "normalized_name": "tattoo and girls" + }, + { + "appid": 1406340, + "normalized_name": "black maou and rainbow kingdom" + }, + { + "appid": 1406350, + "normalized_name": "guns n stuff" + }, + { + "appid": 1406490, + "normalized_name": "quester" + }, + { + "appid": 1406560, + "normalized_name": "delivery guy" + }, + { + "appid": 1406570, + "normalized_name": "sokoban (boxman) classic" + }, + { + "appid": 1406610, + "normalized_name": "fatal evidence art of murder collector's" + }, + { + "appid": 1406630, + "normalized_name": "star mine" + }, + { + "appid": 1406670, + "normalized_name": "wipeouters" + }, + { + "appid": 1406690, + "normalized_name": "kasi" + }, + { + "appid": 1406700, + "normalized_name": "m1 tank platoon ii" + }, + { + "appid": 1406720, + "normalized_name": "dire wolf game room" + }, + { + "appid": 1406740, + "normalized_name": "dumbbots hello world" + }, + { + "appid": 1406750, + "normalized_name": "virtual ricochet" + }, + { + "appid": 1406770, + "normalized_name": "evil icebox" + }, + { + "appid": 1406780, + "normalized_name": "viscerafest" + }, + { + "appid": 1406810, + "normalized_name": "after us" + }, + { + "appid": 1406850, + "normalized_name": "the legend of tianding" + }, + { + "appid": 1406860, + "normalized_name": "勇闯地下城 crossing dungeon" + }, + { + "appid": 1406900, + "normalized_name": "のっぺらぼう" + }, + { + "appid": 1406930, + "normalized_name": "space travel jigsaw puzzles" + }, + { + "appid": 1406990, + "normalized_name": "nekopara vol. 4" + }, + { + "appid": 1407000, + "normalized_name": "deios i // directors cut" + }, + { + "appid": 1407050, + "normalized_name": "batterneers" + }, + { + "appid": 1407060, + "normalized_name": "crimson ranch" + }, + { + "appid": 1407080, + "normalized_name": "fisti fluffs" + }, + { + "appid": 1407090, + "normalized_name": "muv luv unlimited the day after episode 01" + }, + { + "appid": 1407100, + "normalized_name": "muv luv unlimited the day after episode 00" + }, + { + "appid": 1407140, + "normalized_name": "furry house" + }, + { + "appid": 1407150, + "normalized_name": "syder reloaded" + }, + { + "appid": 1407160, + "normalized_name": "what happens in space" + }, + { + "appid": 1407180, + "normalized_name": "lawgivers ii" + }, + { + "appid": 1407190, + "normalized_name": "my universe cooking star restaurant" + }, + { + "appid": 1407200, + "normalized_name": "world of tanks" + }, + { + "appid": 1407210, + "normalized_name": "space rescue code pink" + }, + { + "appid": 1407240, + "normalized_name": "landing" + }, + { + "appid": 1407300, + "normalized_name": "hirilun" + }, + { + "appid": 1407340, + "normalized_name": "discount paranormal" + }, + { + "appid": 1407420, + "normalized_name": "milo and the magpies" + }, + { + "appid": 1407430, + "normalized_name": "hocus defenders" + }, + { + "appid": 1407450, + "normalized_name": "the world of kungfu dragon and eagle" + }, + { + "appid": 1407460, + "normalized_name": "kabochafarm" + }, + { + "appid": 1407520, + "normalized_name": "television trivia" + }, + { + "appid": 1407530, + "normalized_name": "剑决" + }, + { + "appid": 1407540, + "normalized_name": "flying things" + }, + { + "appid": 1407620, + "normalized_name": "last hope on earth" + }, + { + "appid": 1407640, + "normalized_name": "rascal's escape" + }, + { + "appid": 1407750, + "normalized_name": "midnight laundry" + }, + { + "appid": 1407760, + "normalized_name": "intergalactic pawn shop" + }, + { + "appid": 1407790, + "normalized_name": "earth attack" + }, + { + "appid": 1407850, + "normalized_name": "holidays" + }, + { + "appid": 1407860, + "normalized_name": "space travel idle" + }, + { + "appid": 1407870, + "normalized_name": "infinity coloring pixel" + }, + { + "appid": 1407890, + "normalized_name": "hexurb" + }, + { + "appid": 1407920, + "normalized_name": "bloat" + }, + { + "appid": 1407950, + "normalized_name": "sir war a lot" + }, + { + "appid": 1408000, + "normalized_name": "shot of rhythm" + }, + { + "appid": 1408040, + "normalized_name": "wordherd" + }, + { + "appid": 1408050, + "normalized_name": "our hero! two" + }, + { + "appid": 1408060, + "normalized_name": "idle armada" + }, + { + "appid": 1408070, + "normalized_name": "midnight manor" + }, + { + "appid": 1408080, + "normalized_name": "minigame madness" + }, + { + "appid": 1408090, + "normalized_name": "the office type" + }, + { + "appid": 1408100, + "normalized_name": "penimorta" + }, + { + "appid": 1408110, + "normalized_name": "the grounding" + }, + { + "appid": 1408130, + "normalized_name": "quarked up omnibus clean fix escape" + }, + { + "appid": 1408150, + "normalized_name": "魔法召唤大冒险" + }, + { + "appid": 1408160, + "normalized_name": "sweet pea" + }, + { + "appid": 1408200, + "normalized_name": "the seven keys escape room" + }, + { + "appid": 1408220, + "normalized_name": "破坏效应" + }, + { + "appid": 1408230, + "normalized_name": "walkabout mini golf vr" + }, + { + "appid": 1408240, + "normalized_name": "the hive pandemic" + }, + { + "appid": 1408260, + "normalized_name": "hentai vs evil back 4 waifus" + }, + { + "appid": 1408300, + "normalized_name": "blue sabers early mission" + }, + { + "appid": 1408310, + "normalized_name": "怪物传奇/monster legend" + }, + { + "appid": 1408350, + "normalized_name": "hex slayer" + }, + { + "appid": 1408370, + "normalized_name": "人类vs怪物(human vs monster)" + }, + { + "appid": 1408380, + "normalized_name": "rgb simulator" + }, + { + "appid": 1408400, + "normalized_name": "adventures of megara demeter's cat astrophe" + }, + { + "appid": 1408410, + "normalized_name": "eyeb" + }, + { + "appid": 1408420, + "normalized_name": "ancient worlds egypt" + }, + { + "appid": 1408430, + "normalized_name": "ekstase" + }, + { + "appid": 1408450, + "normalized_name": "1x! space adventure" + }, + { + "appid": 1408470, + "normalized_name": "hardest harvest" + }, + { + "appid": 1408480, + "normalized_name": "sneaky kitten" + }, + { + "appid": 1408490, + "normalized_name": "historical games chariot racing" + }, + { + "appid": 1408530, + "normalized_name": "sudoku starry sky" + }, + { + "appid": 1408550, + "normalized_name": "spooky speedrun" + }, + { + "appid": 1408570, + "normalized_name": "stand 'em up" + }, + { + "appid": 1408580, + "normalized_name": "voxel tactics" + }, + { + "appid": 1408590, + "normalized_name": "rogueria roguelikes x tactics" + }, + { + "appid": 1408610, + "normalized_name": "call of the wild the angler" + }, + { + "appid": 1408630, + "normalized_name": "hungry horace revisited" + }, + { + "appid": 1408700, + "normalized_name": "osman gazi" + }, + { + "appid": 1408710, + "normalized_name": "regain earth first strike" + }, + { + "appid": 1408720, + "normalized_name": "krunker" + }, + { + "appid": 1408730, + "normalized_name": "kindfolx" + }, + { + "appid": 1408760, + "normalized_name": "star tank" + }, + { + "appid": 1408810, + "normalized_name": "manalith" + }, + { + "appid": 1408850, + "normalized_name": "bay lynx" + }, + { + "appid": 1408860, + "normalized_name": "silence channel" + }, + { + "appid": 1408890, + "normalized_name": "starboard" + }, + { + "appid": 1408930, + "normalized_name": "greedy corgi" + }, + { + "appid": 1408960, + "normalized_name": "the good book vn" + }, + { + "appid": 1409020, + "normalized_name": "mana maker" + }, + { + "appid": 1409030, + "normalized_name": "eat more vegetables!" + }, + { + "appid": 1409070, + "normalized_name": "pwk trivia collection" + }, + { + "appid": 1409160, + "normalized_name": "plasma" + }, + { + "appid": 1409170, + "normalized_name": "dragon trails" + }, + { + "appid": 1409180, + "normalized_name": "of mice and moggies" + }, + { + "appid": 1409190, + "normalized_name": "super walrus entertainment system" + }, + { + "appid": 1409200, + "normalized_name": "hyperviolent" + }, + { + "appid": 1409250, + "normalized_name": "harmless demons" + }, + { + "appid": 1409260, + "normalized_name": "project entertainment system" + }, + { + "appid": 1409270, + "normalized_name": "call of myth" + }, + { + "appid": 1409300, + "normalized_name": "rendezvous" + }, + { + "appid": 1409320, + "normalized_name": "vr travelling towards world war iii scenario post nuclear war earth fantasy" + }, + { + "appid": 1409330, + "normalized_name": "vr travelling back to our childhoods vr 1980s" + }, + { + "appid": 1409340, + "normalized_name": "pray in vr medieval christian churches" + }, + { + "appid": 1409350, + "normalized_name": "brushlings pale moon" + }, + { + "appid": 1409360, + "normalized_name": "roots of the mind" + }, + { + "appid": 1409370, + "normalized_name": "psych" + }, + { + "appid": 1409410, + "normalized_name": "abandoned" + }, + { + "appid": 1409460, + "normalized_name": "brutal fate" + }, + { + "appid": 1409470, + "normalized_name": "encounter the light / 邂逅光明" + }, + { + "appid": 1409510, + "normalized_name": "survival simulator 生存模拟器" + }, + { + "appid": 1409520, + "normalized_name": "the worst game ever" + }, + { + "appid": 1409530, + "normalized_name": "neophyte" + }, + { + "appid": 1409550, + "normalized_name": "creepslore" + }, + { + "appid": 1409560, + "normalized_name": "wasting away" + }, + { + "appid": 1409570, + "normalized_name": "goblin takes no argument[s]" + }, + { + "appid": 1409600, + "normalized_name": "回纹平台跳跃" + }, + { + "appid": 1409610, + "normalized_name": "without romance" + }, + { + "appid": 1409630, + "normalized_name": "halloween rhythm" + }, + { + "appid": 1409640, + "normalized_name": "tomato way 3" + }, + { + "appid": 1409650, + "normalized_name": "necromancer's gift" + }, + { + "appid": 1409680, + "normalized_name": "1day一天" + }, + { + "appid": 1409700, + "normalized_name": "a way to die" + }, + { + "appid": 1409710, + "normalized_name": "escape from tatris" + }, + { + "appid": 1409730, + "normalized_name": "hero of not our time" + }, + { + "appid": 1409740, + "normalized_name": "cybernetic fault" + }, + { + "appid": 1409760, + "normalized_name": "gardens of celestial globes" + }, + { + "appid": 1409770, + "normalized_name": "cat's kiss" + }, + { + "appid": 1409780, + "normalized_name": "mycityandarmy" + }, + { + "appid": 1409810, + "normalized_name": "月之泪 ~ tears of luna" + }, + { + "appid": 1409820, + "normalized_name": "detective stories (logical hardcore)" + }, + { + "appid": 1409830, + "normalized_name": "sons of valhalla" + }, + { + "appid": 1409840, + "normalized_name": "aztecs the last sun" + }, + { + "appid": 1409910, + "normalized_name": "mr. magic" + }, + { + "appid": 1409930, + "normalized_name": "memory card monsters" + }, + { + "appid": 1410000, + "normalized_name": "skydive sim skydiving simulator" + }, + { + "appid": 1410070, + "normalized_name": "bunny hop" + }, + { + "appid": 1410080, + "normalized_name": "naked erotic dance girls" + }, + { + "appid": 1410090, + "normalized_name": "hellscreen" + }, + { + "appid": 1410100, + "normalized_name": "saving punyville" + }, + { + "appid": 1410110, + "normalized_name": "renegade" + }, + { + "appid": 1410140, + "normalized_name": "load roll die" + }, + { + "appid": 1410160, + "normalized_name": "robospierre" + }, + { + "appid": 1410200, + "normalized_name": "uranus" + }, + { + "appid": 1410210, + "normalized_name": "the bible exodus" + }, + { + "appid": 1410260, + "normalized_name": "the last king's archer" + }, + { + "appid": 1410300, + "normalized_name": "space debris" + }, + { + "appid": 1410320, + "normalized_name": "lost dunes" + }, + { + "appid": 1410330, + "normalized_name": "love shore" + }, + { + "appid": 1410360, + "normalized_name": "euclyca" + }, + { + "appid": 1410370, + "normalized_name": "非常魔王(beelzebub)" + }, + { + "appid": 1410380, + "normalized_name": "星尘战区 stardust theater" + }, + { + "appid": 1410400, + "normalized_name": "kejora" + }, + { + "appid": 1410430, + "normalized_name": "upward" + }, + { + "appid": 1410440, + "normalized_name": "sophstar" + }, + { + "appid": 1410470, + "normalized_name": "sauna2000" + }, + { + "appid": 1410490, + "normalized_name": "超僧大戦z" + }, + { + "appid": 1410500, + "normalized_name": "legacy witch island" + }, + { + "appid": 1410560, + "normalized_name": "control over" + }, + { + "appid": 1410580, + "normalized_name": "wave of time" + }, + { + "appid": 1410600, + "normalized_name": "miray" + }, + { + "appid": 1410620, + "normalized_name": "minimum wage influence the election" + }, + { + "appid": 1410640, + "normalized_name": "syberia the world before" + }, + { + "appid": 1410660, + "normalized_name": "legendary boxing belt" + }, + { + "appid": 1410680, + "normalized_name": "biscuitts 2" + }, + { + "appid": 1410700, + "normalized_name": "upwakening" + }, + { + "appid": 1410710, + "normalized_name": "democracy 4" + }, + { + "appid": 1410740, + "normalized_name": "idiot" + }, + { + "appid": 1410770, + "normalized_name": "五重塔" + }, + { + "appid": 1410790, + "normalized_name": "lifespawn" + }, + { + "appid": 1410800, + "normalized_name": "bloody cruise" + }, + { + "appid": 1410810, + "normalized_name": "the legend of the black wizard" + }, + { + "appid": 1410830, + "normalized_name": "curse that magic cat!" + }, + { + "appid": 1410840, + "normalized_name": "crystal call" + }, + { + "appid": 1410850, + "normalized_name": "space smack!" + }, + { + "appid": 1410860, + "normalized_name": "puzzle box palace" + }, + { + "appid": 1410870, + "normalized_name": "trikaya" + }, + { + "appid": 1410980, + "normalized_name": "serafina and the key to the egg" + }, + { + "appid": 1411000, + "normalized_name": "bean climb" + }, + { + "appid": 1411010, + "normalized_name": "方舟军团 ark legion" + }, + { + "appid": 1411020, + "normalized_name": "perennial order" + }, + { + "appid": 1411030, + "normalized_name": "square game" + }, + { + "appid": 1411040, + "normalized_name": "thrustlander" + }, + { + "appid": 1411090, + "normalized_name": "zombie spectre" + }, + { + "appid": 1411140, + "normalized_name": "stak atak" + }, + { + "appid": 1411160, + "normalized_name": "crusader's dynasty" + }, + { + "appid": 1411170, + "normalized_name": "boston nursing home" + }, + { + "appid": 1411180, + "normalized_name": "touhou block fall ~ yukari" + }, + { + "appid": 1411200, + "normalized_name": "critter clicker" + }, + { + "appid": 1411260, + "normalized_name": "chiaroscuro" + }, + { + "appid": 1411330, + "normalized_name": "谁说奶妈不能拯救世界!" + }, + { + "appid": 1411360, + "normalized_name": "spacecrash" + }, + { + "appid": 1411370, + "normalized_name": "astrotester" + }, + { + "appid": 1411380, + "normalized_name": "the story of the flood" + }, + { + "appid": 1411400, + "normalized_name": "cyberspace vr" + }, + { + "appid": 1411410, + "normalized_name": "paddle combat" + }, + { + "appid": 1411420, + "normalized_name": "ordeal" + }, + { + "appid": 1411460, + "normalized_name": "z arena" + }, + { + "appid": 1411480, + "normalized_name": "microfactory" + }, + { + "appid": 1411490, + "normalized_name": "lost in time" + }, + { + "appid": 1411550, + "normalized_name": "divilixa" + }, + { + "appid": 1411580, + "normalized_name": "zi survival" + }, + { + "appid": 1411630, + "normalized_name": "ice star tribes" + }, + { + "appid": 1411660, + "normalized_name": "bitroom" + }, + { + "appid": 1411670, + "normalized_name": "whiteboyz wit attitude the pursuit of money" + }, + { + "appid": 1411700, + "normalized_name": "doko roko" + }, + { + "appid": 1411710, + "normalized_name": "forklift & box" + }, + { + "appid": 1411740, + "normalized_name": "urbek city builder" + }, + { + "appid": 1411750, + "normalized_name": "your fear" + }, + { + "appid": 1411770, + "normalized_name": "redd's runaway" + }, + { + "appid": 1411780, + "normalized_name": "seedless light" + }, + { + "appid": 1411800, + "normalized_name": "goodnight lily" + }, + { + "appid": 1411810, + "normalized_name": "dark tides" + }, + { + "appid": 1411840, + "normalized_name": "who are you?" + }, + { + "appid": 1411860, + "normalized_name": "invasion lost in time" + }, + { + "appid": 1411880, + "normalized_name": "travelsolar" + }, + { + "appid": 1411890, + "normalized_name": "c.l.a.y. the last redemption" + }, + { + "appid": 1411900, + "normalized_name": "mictlan an ancient mythical tale" + }, + { + "appid": 1411910, + "normalized_name": "fallen aces" + }, + { + "appid": 1411920, + "normalized_name": "get ogre it" + }, + { + "appid": 1411940, + "normalized_name": "silence in the dark" + }, + { + "appid": 1411970, + "normalized_name": "avian knights" + }, + { + "appid": 1412000, + "normalized_name": "agoraphobia" + }, + { + "appid": 1412010, + "normalized_name": "trust me not her" + }, + { + "appid": 1412020, + "normalized_name": "protorunner" + }, + { + "appid": 1412040, + "normalized_name": "gangsta magic" + }, + { + "appid": 1412070, + "normalized_name": "siege the day" + }, + { + "appid": 1412080, + "normalized_name": "mixology" + }, + { + "appid": 1412120, + "normalized_name": "shiny summer" + }, + { + "appid": 1412150, + "normalized_name": "silent sadie" + }, + { + "appid": 1412170, + "normalized_name": "janosik" + }, + { + "appid": 1412180, + "normalized_name": "the last act" + }, + { + "appid": 1412190, + "normalized_name": "beached" + }, + { + "appid": 1412220, + "normalized_name": "the cursed revenant" + }, + { + "appid": 1412240, + "normalized_name": "lombardi's world" + }, + { + "appid": 1412250, + "normalized_name": "path maker" + }, + { + "appid": 1412260, + "normalized_name": "kombo king" + }, + { + "appid": 1412310, + "normalized_name": "girls! girls! girls!?" + }, + { + "appid": 1412370, + "normalized_name": "东方修仙传" + }, + { + "appid": 1412380, + "normalized_name": "lightbox" + }, + { + "appid": 1412390, + "normalized_name": "马戏团之夜" + }, + { + "appid": 1412400, + "normalized_name": "zoxel" + }, + { + "appid": 1412420, + "normalized_name": "迷雾竞技场 mist arena" + }, + { + "appid": 1412440, + "normalized_name": "aquatics hentai babes" + }, + { + "appid": 1412470, + "normalized_name": "granage" + }, + { + "appid": 1412500, + "normalized_name": "paralyzed" + }, + { + "appid": 1412560, + "normalized_name": "death rattle hell unleashed" + }, + { + "appid": 1412580, + "normalized_name": "sword of destiny" + }, + { + "appid": 1412610, + "normalized_name": "couch installation service" + }, + { + "appid": 1412620, + "normalized_name": "sweet time" + }, + { + "appid": 1412630, + "normalized_name": "kristallijn" + }, + { + "appid": 1412640, + "normalized_name": "ribby rocket" + }, + { + "appid": 1412650, + "normalized_name": "conspiracy!" + }, + { + "appid": 1412660, + "normalized_name": "rivals" + }, + { + "appid": 1412680, + "normalized_name": "the origin blind maid l" + }, + { + "appid": 1412740, + "normalized_name": "angelwood" + }, + { + "appid": 1412780, + "normalized_name": "axis football 2020" + }, + { + "appid": 1412810, + "normalized_name": "kokopa's atlas" + }, + { + "appid": 1412820, + "normalized_name": "grimace run" + }, + { + "appid": 1412840, + "normalized_name": "chesslocke" + }, + { + "appid": 1412850, + "normalized_name": "spacelines from the far out" + }, + { + "appid": 1412870, + "normalized_name": "block smash" + }, + { + "appid": 1412880, + "normalized_name": "village businessman" + }, + { + "appid": 1412890, + "normalized_name": "frail hearts versicorae domlion" + }, + { + "appid": 1412900, + "normalized_name": "ftp" + }, + { + "appid": 1412950, + "normalized_name": "dark romance vampire origins collector's" + }, + { + "appid": 1412960, + "normalized_name": "metroplex zero sci fi card battler" + }, + { + "appid": 1412970, + "normalized_name": "楚漢女子" + }, + { + "appid": 1412980, + "normalized_name": "ironseed 25th anniversary" + }, + { + "appid": 1412990, + "normalized_name": "r.a.v.e real time audio visual experience" + }, + { + "appid": 1413000, + "normalized_name": "jurisdiction" + }, + { + "appid": 1413010, + "normalized_name": "cube gothic" + }, + { + "appid": 1413020, + "normalized_name": "superfly" + }, + { + "appid": 1413070, + "normalized_name": "hentai! zombie! defense!" + }, + { + "appid": 1413090, + "normalized_name": "yoli" + }, + { + "appid": 1413170, + "normalized_name": "droneglitch" + }, + { + "appid": 1413210, + "normalized_name": "the cassir simulator" + }, + { + "appid": 1413250, + "normalized_name": "republic of jungle" + }, + { + "appid": 1413260, + "normalized_name": "traveler of artcaster" + }, + { + "appid": 1413290, + "normalized_name": "plummet" + }, + { + "appid": 1413300, + "normalized_name": "dezinsector" + }, + { + "appid": 1413310, + "normalized_name": "幻刃录" + }, + { + "appid": 1413350, + "normalized_name": "flipper volcano" + }, + { + "appid": 1413370, + "normalized_name": "power to the people" + }, + { + "appid": 1413440, + "normalized_name": "run die jump" + }, + { + "appid": 1413470, + "normalized_name": "s.o.l search of light" + }, + { + "appid": 1413480, + "normalized_name": "shin megami tensei iii nocturne hd remaster" + }, + { + "appid": 1413500, + "normalized_name": "infectra" + }, + { + "appid": 1413540, + "normalized_name": "amarok dreams demo" + }, + { + "appid": 1413550, + "normalized_name": "赛博侦探:艾尔塔特" + }, + { + "appid": 1413560, + "normalized_name": "mages and treasures" + }, + { + "appid": 1413570, + "normalized_name": "signs of zodiac" + }, + { + "appid": 1413580, + "normalized_name": "the dragoness command of the flame" + }, + { + "appid": 1413590, + "normalized_name": "la foret de pago la vengeance du dragon" + }, + { + "appid": 1413600, + "normalized_name": "m.a.i.d.s" + }, + { + "appid": 1413610, + "normalized_name": "sheep cutter" + }, + { + "appid": 1413630, + "normalized_name": "woodland saga" + }, + { + "appid": 1413650, + "normalized_name": "the civil war" + }, + { + "appid": 1413660, + "normalized_name": "elderand" + }, + { + "appid": 1413670, + "normalized_name": "u27ra r3z0nanc3" + }, + { + "appid": 1413680, + "normalized_name": "danger! escape lab" + }, + { + "appid": 1413780, + "normalized_name": "techpack" + }, + { + "appid": 1413790, + "normalized_name": "10mg handmadedeathlabyrinth issue 0" + }, + { + "appid": 1413820, + "normalized_name": "balloon saga" + }, + { + "appid": 1413870, + "normalized_name": "shadow man" + }, + { + "appid": 1413890, + "normalized_name": "nice to no you" + }, + { + "appid": 1413900, + "normalized_name": "hazy" + }, + { + "appid": 1413930, + "normalized_name": "letter loops pro" + }, + { + "appid": 1413960, + "normalized_name": "chevalier historie" + }, + { + "appid": 1413970, + "normalized_name": "fox girls never play dirty" + }, + { + "appid": 1413980, + "normalized_name": "the demon lord is new in town!" + }, + { + "appid": 1413990, + "normalized_name": "the heart of darkness" + }, + { + "appid": 1414000, + "normalized_name": "obscurite magie the city of sin" + }, + { + "appid": 1414020, + "normalized_name": "mixolumia" + }, + { + "appid": 1414030, + "normalized_name": "valley of shadow" + }, + { + "appid": 1414060, + "normalized_name": "lone archer" + }, + { + "appid": 1414070, + "normalized_name": "sokoban bunny tales" + }, + { + "appid": 1414080, + "normalized_name": "kalt" + }, + { + "appid": 1414090, + "normalized_name": "buddi bot your machine learning ai helper with advanced neural networking!" + }, + { + "appid": 1414180, + "normalized_name": "motesolo no girlfriend since birth" + }, + { + "appid": 1414210, + "normalized_name": "rainy" + }, + { + "appid": 1414220, + "normalized_name": "poppin' donuts" + }, + { + "appid": 1414240, + "normalized_name": "evolution of a mini world physics wonderland" + }, + { + "appid": 1414250, + "normalized_name": "corpse factory" + }, + { + "appid": 1414270, + "normalized_name": "hexdoku" + }, + { + "appid": 1414280, + "normalized_name": "fishing together" + }, + { + "appid": 1414290, + "normalized_name": "vr maze" + }, + { + "appid": 1414300, + "normalized_name": "beetlequest" + }, + { + "appid": 1414320, + "normalized_name": "여우불" + }, + { + "appid": 1414380, + "normalized_name": "monty kong" + }, + { + "appid": 1414400, + "normalized_name": "unnatural disaster" + }, + { + "appid": 1414410, + "normalized_name": "desert war wwii" + }, + { + "appid": 1414430, + "normalized_name": "project morpheus prologue" + }, + { + "appid": 1414440, + "normalized_name": "hotel renovation 2" + }, + { + "appid": 1414470, + "normalized_name": "yeomna the legend of dongbaek" + }, + { + "appid": 1414480, + "normalized_name": "zof" + }, + { + "appid": 1414490, + "normalized_name": "kasmo" + }, + { + "appid": 1414500, + "normalized_name": "voyeur" + }, + { + "appid": 1414520, + "normalized_name": "gates of mirnah" + }, + { + "appid": 1414530, + "normalized_name": "kavel" + }, + { + "appid": 1414550, + "normalized_name": "tunnel blast" + }, + { + "appid": 1414570, + "normalized_name": "expiration" + }, + { + "appid": 1414610, + "normalized_name": "peaceful soul" + }, + { + "appid": 1414640, + "normalized_name": "early quest" + }, + { + "appid": 1414650, + "normalized_name": "edengate the edge of life" + }, + { + "appid": 1414660, + "normalized_name": "luxury girls" + }, + { + "appid": 1414680, + "normalized_name": "geometry rocket" + }, + { + "appid": 1414700, + "normalized_name": "the imagined leviathan prologue" + }, + { + "appid": 1414710, + "normalized_name": "arc wizards 2" + }, + { + "appid": 1414720, + "normalized_name": "desktop man" + }, + { + "appid": 1414770, + "normalized_name": "quinterra" + }, + { + "appid": 1414790, + "normalized_name": "diarrhea don" + }, + { + "appid": 1414800, + "normalized_name": "wet steps" + }, + { + "appid": 1414840, + "normalized_name": "zombie rush heroes" + }, + { + "appid": 1414850, + "normalized_name": "nickelodeon all star brawl" + }, + { + "appid": 1414900, + "normalized_name": "rage jump" + }, + { + "appid": 1414910, + "normalized_name": "the shimmering horizon and cursed blacksmith" + }, + { + "appid": 1414920, + "normalized_name": "knightmare" + }, + { + "appid": 1414930, + "normalized_name": "tenami" + }, + { + "appid": 1414990, + "normalized_name": "quarantine simulator" + }, + { + "appid": 1415010, + "normalized_name": "lynium" + }, + { + "appid": 1415020, + "normalized_name": "bloody service" + }, + { + "appid": 1415030, + "normalized_name": "typo" + }, + { + "appid": 1415110, + "normalized_name": "second chance" + }, + { + "appid": 1415120, + "normalized_name": "finger breaker" + }, + { + "appid": 1415140, + "normalized_name": "kandidatos kart" + }, + { + "appid": 1415150, + "normalized_name": "bordercide" + }, + { + "appid": 1415200, + "normalized_name": "pitched battle" + }, + { + "appid": 1415220, + "normalized_name": "it's only money" + }, + { + "appid": 1415230, + "normalized_name": "for the stars" + }, + { + "appid": 1415250, + "normalized_name": "re get to schol on time" + }, + { + "appid": 1415270, + "normalized_name": "detective tycoon" + }, + { + "appid": 1415280, + "normalized_name": "faerie afterlight" + }, + { + "appid": 1415300, + "normalized_name": "escaping maze" + }, + { + "appid": 1415320, + "normalized_name": "palmride" + }, + { + "appid": 1415330, + "normalized_name": "spellario fantasy clicker" + }, + { + "appid": 1415370, + "normalized_name": "grandmother" + }, + { + "appid": 1415410, + "normalized_name": "farm manager 2021 prologue" + }, + { + "appid": 1415470, + "normalized_name": "team z" + }, + { + "appid": 1415480, + "normalized_name": "10mg locked in" + }, + { + "appid": 1415520, + "normalized_name": "high speed cataclysm" + }, + { + "appid": 1415540, + "normalized_name": "elementalsfight" + }, + { + "appid": 1415570, + "normalized_name": "tell me your story" + }, + { + "appid": 1415580, + "normalized_name": "heart world" + }, + { + "appid": 1415590, + "normalized_name": "dex survival" + }, + { + "appid": 1415600, + "normalized_name": "frequency chernobyl" + }, + { + "appid": 1415620, + "normalized_name": "sudoku forever" + }, + { + "appid": 1415630, + "normalized_name": "river attack" + }, + { + "appid": 1415670, + "normalized_name": "high school of memories" + }, + { + "appid": 1415750, + "normalized_name": "gravity_kid" + }, + { + "appid": 1415830, + "normalized_name": "necrosis" + }, + { + "appid": 1415840, + "normalized_name": "stringtropy" + }, + { + "appid": 1415870, + "normalized_name": "knight`s pride" + }, + { + "appid": 1415890, + "normalized_name": "hot robot" + }, + { + "appid": 1415920, + "normalized_name": "pba pro bowling 2021" + }, + { + "appid": 1415950, + "normalized_name": "a fox and his robot" + }, + { + "appid": 1416000, + "normalized_name": "the dark survival rpg" + }, + { + "appid": 1416020, + "normalized_name": "ally gory the great mushroom hunt" + }, + { + "appid": 1416050, + "normalized_name": "shovel knight dig" + }, + { + "appid": 1416060, + "normalized_name": "mechamates" + }, + { + "appid": 1416070, + "normalized_name": "beta decay" + }, + { + "appid": 1416120, + "normalized_name": "armored cavalry metalline" + }, + { + "appid": 1416130, + "normalized_name": "perfect vermin" + }, + { + "appid": 1416140, + "normalized_name": "gododo" + }, + { + "appid": 1416150, + "normalized_name": "drilly willis" + }, + { + "appid": 1416160, + "normalized_name": "安堂的心理咨询室:杯中之心〈andou:pulse of cup〉" + }, + { + "appid": 1416180, + "normalized_name": "deco block simulator" + }, + { + "appid": 1416200, + "normalized_name": "this starry void" + }, + { + "appid": 1416210, + "normalized_name": "丝袜测评师 / pantyhose test girl" + }, + { + "appid": 1416220, + "normalized_name": "second person secret laboratory" + }, + { + "appid": 1416230, + "normalized_name": "panzer knights" + }, + { + "appid": 1416240, + "normalized_name": "夜永 eternal love" + }, + { + "appid": 1416260, + "normalized_name": "spellforce 3 versus" + }, + { + "appid": 1416290, + "normalized_name": "ghost run 3d" + }, + { + "appid": 1416300, + "normalized_name": "the dam nation" + }, + { + "appid": 1416340, + "normalized_name": "impostor inside us" + }, + { + "appid": 1416350, + "normalized_name": "nictheroy" + }, + { + "appid": 1416360, + "normalized_name": "dissident frostland escape" + }, + { + "appid": 1416380, + "normalized_name": "luna's adventure the overlord" + }, + { + "appid": 1416430, + "normalized_name": "new yankee 9 the evil spellbook" + }, + { + "appid": 1416450, + "normalized_name": "quest escape room" + }, + { + "appid": 1416460, + "normalized_name": "horror globes" + }, + { + "appid": 1416480, + "normalized_name": "daycare manager" + }, + { + "appid": 1416520, + "normalized_name": "drive 21" + }, + { + "appid": 1416600, + "normalized_name": "evil ritual horror escape" + }, + { + "appid": 1416690, + "normalized_name": "4x4 masters" + }, + { + "appid": 1416700, + "normalized_name": "grimm shuffle" + }, + { + "appid": 1416710, + "normalized_name": "strip black jack at the pub" + }, + { + "appid": 1416720, + "normalized_name": "brain games" + }, + { + "appid": 1416730, + "normalized_name": "ball at work the speedrun platformer!" + }, + { + "appid": 1416760, + "normalized_name": "bark" + }, + { + "appid": 1416770, + "normalized_name": "modulo" + }, + { + "appid": 1416780, + "normalized_name": "cataclysms and catastrophes" + }, + { + "appid": 1416800, + "normalized_name": "heroes raid" + }, + { + "appid": 1416820, + "normalized_name": "brutal wizardry" + }, + { + "appid": 1416850, + "normalized_name": "astrotour vr" + }, + { + "appid": 1416900, + "normalized_name": "run die run again (rdra)" + }, + { + "appid": 1416920, + "normalized_name": "中国式网游" + }, + { + "appid": 1416930, + "normalized_name": "infected prison" + }, + { + "appid": 1416940, + "normalized_name": "zagamihara" + }, + { + "appid": 1416960, + "normalized_name": "everafter falls" + }, + { + "appid": 1416970, + "normalized_name": "elise's peepshow" + }, + { + "appid": 1416980, + "normalized_name": "reimu's weird little adventure" + }, + { + "appid": 1417000, + "normalized_name": "golf party" + }, + { + "appid": 1417010, + "normalized_name": "shrine ii" + }, + { + "appid": 1417020, + "normalized_name": "toad on fire" + }, + { + "appid": 1417050, + "normalized_name": "忍の娘" + }, + { + "appid": 1417090, + "normalized_name": "neon struct carrion carrier" + }, + { + "appid": 1417130, + "normalized_name": "planet lev matadero" + }, + { + "appid": 1417150, + "normalized_name": "world of pets match 3 and decorate" + }, + { + "appid": 1417160, + "normalized_name": "titris affection" + }, + { + "appid": 1417170, + "normalized_name": "don't miss the king" + }, + { + "appid": 1417180, + "normalized_name": "mechanode" + }, + { + "appid": 1417200, + "normalized_name": "hentai students love puzzle" + }, + { + "appid": 1417230, + "normalized_name": "toupei55" + }, + { + "appid": 1417250, + "normalized_name": "three kingdoms 21" + }, + { + "appid": 1417270, + "normalized_name": "mind blowing girls" + }, + { + "appid": 1417280, + "normalized_name": "zombie hills" + }, + { + "appid": 1417310, + "normalized_name": "dead td" + }, + { + "appid": 1417320, + "normalized_name": "inheritors2078" + }, + { + "appid": 1417340, + "normalized_name": "werewolves online" + }, + { + "appid": 1417360, + "normalized_name": "kingdom chess" + }, + { + "appid": 1417400, + "normalized_name": "escape dinosaur island" + }, + { + "appid": 1417420, + "normalized_name": "endless furry killer 2020" + }, + { + "appid": 1417450, + "normalized_name": "grilled" + }, + { + "appid": 1417460, + "normalized_name": "friendly arena" + }, + { + "appid": 1417490, + "normalized_name": "fractal fury" + }, + { + "appid": 1417500, + "normalized_name": "planet station" + }, + { + "appid": 1417520, + "normalized_name": "jumbo jewel of realms" + }, + { + "appid": 1417540, + "normalized_name": "gravity block" + }, + { + "appid": 1417570, + "normalized_name": "gerel against the corvus empire" + }, + { + "appid": 1417590, + "normalized_name": "the legends of tynedale" + }, + { + "appid": 1417610, + "normalized_name": "after you" + }, + { + "appid": 1417620, + "normalized_name": "brightblood" + }, + { + "appid": 1417640, + "normalized_name": "stella voyager" + }, + { + "appid": 1417650, + "normalized_name": "jaeger" + }, + { + "appid": 1417670, + "normalized_name": "zombie camping" + }, + { + "appid": 1417690, + "normalized_name": "12 minibattles" + }, + { + "appid": 1417720, + "normalized_name": "gemini" + }, + { + "appid": 1417730, + "normalized_name": "coffin mall" + }, + { + "appid": 1417740, + "normalized_name": "reality end" + }, + { + "appid": 1417750, + "normalized_name": "moondrop" + }, + { + "appid": 1417770, + "normalized_name": "primeval planet angimanation" + }, + { + "appid": 1417870, + "normalized_name": "scribblequest" + }, + { + "appid": 1417880, + "normalized_name": "winter ember" + }, + { + "appid": 1417890, + "normalized_name": "catie in meowmeowland" + }, + { + "appid": 1417930, + "normalized_name": "lorn's lure" + }, + { + "appid": 1417940, + "normalized_name": "捕鱼炸翻天" + }, + { + "appid": 1417950, + "normalized_name": "simon the sorcerer 3d" + }, + { + "appid": 1417960, + "normalized_name": "timeline traveler" + }, + { + "appid": 1417970, + "normalized_name": "surprise party!" + }, + { + "appid": 1418010, + "normalized_name": "black chapter" + }, + { + "appid": 1418020, + "normalized_name": "tavern of gods" + }, + { + "appid": 1418090, + "normalized_name": "cafe deux femmes" + }, + { + "appid": 1418140, + "normalized_name": "invasion 2 doomed" + }, + { + "appid": 1418160, + "normalized_name": "happy quest" + }, + { + "appid": 1418180, + "normalized_name": "musicus!" + }, + { + "appid": 1418190, + "normalized_name": "a ninja in training" + }, + { + "appid": 1418290, + "normalized_name": "a small favor" + }, + { + "appid": 1418310, + "normalized_name": "breakblast" + }, + { + "appid": 1418320, + "normalized_name": "puerto viejo" + }, + { + "appid": 1418330, + "normalized_name": "sweet halloween" + }, + { + "appid": 1418350, + "normalized_name": "california games ii" + }, + { + "appid": 1418360, + "normalized_name": "lonesome village" + }, + { + "appid": 1418380, + "normalized_name": "forester simulator" + }, + { + "appid": 1418390, + "normalized_name": "antipaint" + }, + { + "appid": 1418420, + "normalized_name": "thief dog" + }, + { + "appid": 1418430, + "normalized_name": "zombie bar simulator" + }, + { + "appid": 1418460, + "normalized_name": "mygnar dungeon survivors" + }, + { + "appid": 1418470, + "normalized_name": "franky the bumwalker reborn" + }, + { + "appid": 1418490, + "normalized_name": "the storm" + }, + { + "appid": 1418520, + "normalized_name": "109" + }, + { + "appid": 1418540, + "normalized_name": "search party director's cut" + }, + { + "appid": 1418570, + "normalized_name": "zen trails" + }, + { + "appid": 1418610, + "normalized_name": "fever fight the fever" + }, + { + "appid": 1418650, + "normalized_name": "shooting type" + }, + { + "appid": 1418670, + "normalized_name": "fire survival" + }, + { + "appid": 1418680, + "normalized_name": "pretty girls mahjong solitaire [blue]" + }, + { + "appid": 1418720, + "normalized_name": "fleshcult" + }, + { + "appid": 1418750, + "normalized_name": "paws and leaves a last tale" + }, + { + "appid": 1418760, + "normalized_name": "claire's quest gold" + }, + { + "appid": 1418820, + "normalized_name": "aquapark renovator" + }, + { + "appid": 1418830, + "normalized_name": "sayonara golden days" + }, + { + "appid": 1418870, + "normalized_name": "winning post 9 2021" + }, + { + "appid": 1418990, + "normalized_name": "unicorns on unicycles" + }, + { + "appid": 1419040, + "normalized_name": "road maintenance simulator" + }, + { + "appid": 1419060, + "normalized_name": "retchid" + }, + { + "appid": 1419070, + "normalized_name": "mython island" + }, + { + "appid": 1419100, + "normalized_name": "the unexpected quest prologue" + }, + { + "appid": 1419110, + "normalized_name": "vr hentai girl" + }, + { + "appid": 1419130, + "normalized_name": "airstrife assault of the aviators" + }, + { + "appid": 1419140, + "normalized_name": "monster portal" + }, + { + "appid": 1419150, + "normalized_name": "woodland empire" + }, + { + "appid": 1419160, + "normalized_name": "souldiers" + }, + { + "appid": 1419170, + "normalized_name": "my singing monsters" + }, + { + "appid": 1419180, + "normalized_name": "mystica" + }, + { + "appid": 1419190, + "normalized_name": "way walkers university" + }, + { + "appid": 1419200, + "normalized_name": "way walkers university 2" + }, + { + "appid": 1419290, + "normalized_name": "out of line" + }, + { + "appid": 1419300, + "normalized_name": "turf battles" + }, + { + "appid": 1419310, + "normalized_name": "streamgods streamer tycoon" + }, + { + "appid": 1419320, + "normalized_name": "system control" + }, + { + "appid": 1419330, + "normalized_name": "horizon odyssey" + }, + { + "appid": 1419350, + "normalized_name": "outbreak endless nightmares" + }, + { + "appid": 1419360, + "normalized_name": "hyper psychic gauntlets" + }, + { + "appid": 1419370, + "normalized_name": "cooking companions appetizer" + }, + { + "appid": 1419380, + "normalized_name": "invisible wings chapter one" + }, + { + "appid": 1419390, + "normalized_name": "we survive tonight" + }, + { + "appid": 1419440, + "normalized_name": "truck truck" + }, + { + "appid": 1419480, + "normalized_name": "love's sweet garnish 2" + }, + { + "appid": 1419510, + "normalized_name": "ultra lmad" + }, + { + "appid": 1419580, + "normalized_name": "tover defense" + }, + { + "appid": 1419620, + "normalized_name": "saltsea chronicles" + }, + { + "appid": 1419640, + "normalized_name": "project f" + }, + { + "appid": 1419670, + "normalized_name": "reality" + }, + { + "appid": 1419680, + "normalized_name": "ursa" + }, + { + "appid": 1419730, + "normalized_name": "seek girl ⅵ" + }, + { + "appid": 1419740, + "normalized_name": "the witch in the forest" + }, + { + "appid": 1419750, + "normalized_name": "apostle rebellion" + }, + { + "appid": 1419760, + "normalized_name": "zombie's cool" + }, + { + "appid": 1419770, + "normalized_name": "jumpjumpball" + }, + { + "appid": 1419850, + "normalized_name": "saleblazers" + }, + { + "appid": 1419860, + "normalized_name": "tukoni prologue" + }, + { + "appid": 1419870, + "normalized_name": "the book of shadows" + }, + { + "appid": 1419880, + "normalized_name": "the summoner" + }, + { + "appid": 1419980, + "normalized_name": "interastra planet survival" + }, + { + "appid": 1420050, + "normalized_name": "loot grind simulator" + }, + { + "appid": 1420060, + "normalized_name": "helix slider" + }, + { + "appid": 1420080, + "normalized_name": "wonder boy asha in monster world" + }, + { + "appid": 1420120, + "normalized_name": "robot lord rising" + }, + { + "appid": 1420160, + "normalized_name": "paranormal stories" + }, + { + "appid": 1420180, + "normalized_name": "clerk hot tale" + }, + { + "appid": 1420290, + "normalized_name": "no more heroes" + }, + { + "appid": 1420300, + "normalized_name": "no more heroes 2 desperate struggle" + }, + { + "appid": 1420320, + "normalized_name": "let's learn japanese! kanji sudoku" + }, + { + "appid": 1420330, + "normalized_name": "business simulator" + }, + { + "appid": 1420350, + "normalized_name": "fraymakers" + }, + { + "appid": 1420400, + "normalized_name": "heterodox" + }, + { + "appid": 1420420, + "normalized_name": "fret smasher" + }, + { + "appid": 1420490, + "normalized_name": "beyond the shadow" + }, + { + "appid": 1420510, + "normalized_name": "usurper soulbound" + }, + { + "appid": 1420540, + "normalized_name": "catch the stars" + }, + { + "appid": 1420580, + "normalized_name": "daikaiju daikessen versus" + }, + { + "appid": 1420630, + "normalized_name": "edge of elsewhere" + }, + { + "appid": 1420650, + "normalized_name": "東方文花帖 ~ shoot the bullet." + }, + { + "appid": 1420680, + "normalized_name": "shards of feyra" + }, + { + "appid": 1420700, + "normalized_name": "defensia" + }, + { + "appid": 1420720, + "normalized_name": "无名录" + }, + { + "appid": 1420730, + "normalized_name": "save the planet" + }, + { + "appid": 1420740, + "normalized_name": "your amazing t gotchi!" + }, + { + "appid": 1420770, + "normalized_name": "winter resort simulator 2" + }, + { + "appid": 1420780, + "normalized_name": "校长模拟器" + }, + { + "appid": 1420810, + "normalized_name": "東方花映塚 ~ phantasmagoria of flower view." + }, + { + "appid": 1420830, + "normalized_name": "happy numbers" + }, + { + "appid": 1420850, + "normalized_name": "cybertaxi" + }, + { + "appid": 1420860, + "normalized_name": "deception" + }, + { + "appid": 1420950, + "normalized_name": "spinning_kid" + }, + { + "appid": 1420960, + "normalized_name": "hentai milf quiz 3" + }, + { + "appid": 1420970, + "normalized_name": "fantasy heroes 2" + }, + { + "appid": 1420980, + "normalized_name": "丧尸之城 epidemic" + }, + { + "appid": 1420990, + "normalized_name": "creepy girls" + }, + { + "appid": 1421020, + "normalized_name": "simple fps aim trainer" + }, + { + "appid": 1421100, + "normalized_name": "binaural odyssey" + }, + { + "appid": 1421120, + "normalized_name": "montezuma's revenge" + }, + { + "appid": 1421130, + "normalized_name": "gunjump before dinner" + }, + { + "appid": 1421140, + "normalized_name": "power washer hero" + }, + { + "appid": 1421190, + "normalized_name": "security guard" + }, + { + "appid": 1421200, + "normalized_name": "conflict of the universe" + }, + { + "appid": 1421240, + "normalized_name": "sou'wester winds" + }, + { + "appid": 1421250, + "normalized_name": "tiny bunny" + }, + { + "appid": 1421280, + "normalized_name": "bugworld online" + }, + { + "appid": 1421290, + "normalized_name": "battle shapers" + }, + { + "appid": 1421310, + "normalized_name": "secret of harrow manor 2" + }, + { + "appid": 1421320, + "normalized_name": "lust vessel" + }, + { + "appid": 1421350, + "normalized_name": "angstrage" + }, + { + "appid": 1421380, + "normalized_name": "air fleet" + }, + { + "appid": 1421390, + "normalized_name": "tichu" + }, + { + "appid": 1421410, + "normalized_name": "nectar of the gods" + }, + { + "appid": 1421420, + "normalized_name": "atomic souls" + }, + { + "appid": 1421490, + "normalized_name": "rise of the triad ludicrous" + }, + { + "appid": 1421520, + "normalized_name": "i am mouse" + }, + { + "appid": 1421600, + "normalized_name": "safari zone" + }, + { + "appid": 1421610, + "normalized_name": "deus ex machina episode 1" + }, + { + "appid": 1421630, + "normalized_name": "stars force" + }, + { + "appid": 1421690, + "normalized_name": "panmorphia" + }, + { + "appid": 1421700, + "normalized_name": "begieade" + }, + { + "appid": 1421710, + "normalized_name": "epic palace knossos" + }, + { + "appid": 1421730, + "normalized_name": "dead hope" + }, + { + "appid": 1421760, + "normalized_name": "what comes after" + }, + { + "appid": 1421770, + "normalized_name": "last ops" + }, + { + "appid": 1421790, + "normalized_name": "labyrinth city pierre the maze detective" + }, + { + "appid": 1421900, + "normalized_name": "sword's soul duel" + }, + { + "appid": 1421930, + "normalized_name": "blind quest the frost demon" + }, + { + "appid": 1422000, + "normalized_name": "space alliance frontier" + }, + { + "appid": 1422020, + "normalized_name": "sentient noir" + }, + { + "appid": 1422080, + "normalized_name": "oraiah" + }, + { + "appid": 1422130, + "normalized_name": "simrail the railway simulator" + }, + { + "appid": 1422180, + "normalized_name": "galactic crew ii" + }, + { + "appid": 1422190, + "normalized_name": "fuzz force spook squad" + }, + { + "appid": 1422200, + "normalized_name": "rev" + }, + { + "appid": 1422210, + "normalized_name": "throw me in the river" + }, + { + "appid": 1422220, + "normalized_name": "cardinal chains" + }, + { + "appid": 1422240, + "normalized_name": "sex simulator 2020" + }, + { + "appid": 1422260, + "normalized_name": "the last element looking for tomorrow" + }, + { + "appid": 1422270, + "normalized_name": "rank warmaster" + }, + { + "appid": 1422280, + "normalized_name": "torqued up legends" + }, + { + "appid": 1422290, + "normalized_name": "jardinains!" + }, + { + "appid": 1422360, + "normalized_name": "the woodworker" + }, + { + "appid": 1422380, + "normalized_name": "witches x warlocks" + }, + { + "appid": 1422410, + "normalized_name": "into the pit" + }, + { + "appid": 1422420, + "normalized_name": "dodgeball academia" + }, + { + "appid": 1422430, + "normalized_name": "next space rebels" + }, + { + "appid": 1422440, + "normalized_name": "cataclismo" + }, + { + "appid": 1422450, + "normalized_name": "deadlock" + }, + { + "appid": 1422520, + "normalized_name": "divide and conquer the board game" + }, + { + "appid": 1422540, + "normalized_name": "云端之约" + }, + { + "appid": 1422550, + "normalized_name": "hemp co. the tycoon game" + }, + { + "appid": 1422570, + "normalized_name": "echoblade" + }, + { + "appid": 1422580, + "normalized_name": "sekrets of the dungeon" + }, + { + "appid": 1422600, + "normalized_name": "chick invasion" + }, + { + "appid": 1422610, + "normalized_name": "aurora" + }, + { + "appid": 1422620, + "normalized_name": "lazarus trials trial 101" + }, + { + "appid": 1422630, + "normalized_name": "active neurons wonders of the world" + }, + { + "appid": 1422650, + "normalized_name": "chicken hill" + }, + { + "appid": 1422670, + "normalized_name": "son savaşçı" + }, + { + "appid": 1422730, + "normalized_name": "hijacker jack arcade fmv" + }, + { + "appid": 1422740, + "normalized_name": "diery heaven" + }, + { + "appid": 1422750, + "normalized_name": "aery sky castle" + }, + { + "appid": 1422760, + "normalized_name": "hole punch" + }, + { + "appid": 1422780, + "normalized_name": "gizmos spooky adventures" + }, + { + "appid": 1422790, + "normalized_name": "门 the door" + }, + { + "appid": 1422810, + "normalized_name": "adventure minesweeper" + }, + { + "appid": 1422820, + "normalized_name": "hidden shelter" + }, + { + "appid": 1422880, + "normalized_name": "frisbee for fun" + }, + { + "appid": 1422910, + "normalized_name": "agent klutz" + }, + { + "appid": 1422930, + "normalized_name": "aripi" + }, + { + "appid": 1422940, + "normalized_name": "glider sim – flight simulator" + }, + { + "appid": 1422950, + "normalized_name": "worm adventure 4 into the wormhole" + }, + { + "appid": 1422980, + "normalized_name": "structura" + }, + { + "appid": 1423000, + "normalized_name": "neuronet mendax proxy" + }, + { + "appid": 1423010, + "normalized_name": "zephyr" + }, + { + "appid": 1423030, + "normalized_name": "evolution" + }, + { + "appid": 1423050, + "normalized_name": "tesseractive" + }, + { + "appid": 1423060, + "normalized_name": "wonshot" + }, + { + "appid": 1423090, + "normalized_name": "monster collector" + }, + { + "appid": 1423140, + "normalized_name": "assimilate! (a party game)" + }, + { + "appid": 1423150, + "normalized_name": "破碎忍者 shattered ninja" + }, + { + "appid": 1423180, + "normalized_name": "rock 'n roll g.e.o.s. wars" + }, + { + "appid": 1423200, + "normalized_name": "legacy witch island 2" + }, + { + "appid": 1423230, + "normalized_name": "skade" + }, + { + "appid": 1423260, + "normalized_name": "rock'n'roll card wargame" + }, + { + "appid": 1423270, + "normalized_name": "ghost stories 2" + }, + { + "appid": 1423280, + "normalized_name": "synthwave hop" + }, + { + "appid": 1423330, + "normalized_name": "ancient warfare the han dynasty" + }, + { + "appid": 1423340, + "normalized_name": "polygonduty" + }, + { + "appid": 1423360, + "normalized_name": "太古未来" + }, + { + "appid": 1423370, + "normalized_name": "noesis02_羽化" + }, + { + "appid": 1423400, + "normalized_name": "the cartesian project" + }, + { + "appid": 1423410, + "normalized_name": "zone of death" + }, + { + "appid": 1423420, + "normalized_name": "sublunar" + }, + { + "appid": 1423450, + "normalized_name": "tactical force" + }, + { + "appid": 1423480, + "normalized_name": "secrets of a campfire" + }, + { + "appid": 1423500, + "normalized_name": "darklands awakening" + }, + { + "appid": 1423540, + "normalized_name": "air gun fighter" + }, + { + "appid": 1423590, + "normalized_name": "wardroid" + }, + { + "appid": 1423600, + "normalized_name": "blue reflection second light" + }, + { + "appid": 1423610, + "normalized_name": "tales from zilmurik" + }, + { + "appid": 1423620, + "normalized_name": "exspire" + }, + { + "appid": 1423670, + "normalized_name": "autopanic zero" + }, + { + "appid": 1423680, + "normalized_name": "dogfighter ww2" + }, + { + "appid": 1423720, + "normalized_name": "antiprism" + }, + { + "appid": 1423780, + "normalized_name": "plague m.d." + }, + { + "appid": 1423790, + "normalized_name": "far fetched" + }, + { + "appid": 1423820, + "normalized_name": "miner's hell" + }, + { + "appid": 1423830, + "normalized_name": "cave crawl" + }, + { + "appid": 1423970, + "normalized_name": "hunt the lights" + }, + { + "appid": 1423980, + "normalized_name": "streatham hill stories" + }, + { + "appid": 1424020, + "normalized_name": "wrath of the violent vicar interactive film" + }, + { + "appid": 1424050, + "normalized_name": "chess'extra" + }, + { + "appid": 1424070, + "normalized_name": "blocks stacking" + }, + { + "appid": 1424080, + "normalized_name": "roads of rome new generation 3 collector's" + }, + { + "appid": 1424120, + "normalized_name": "synth swinger" + }, + { + "appid": 1424130, + "normalized_name": "cave path" + }, + { + "appid": 1424190, + "normalized_name": "curious alice" + }, + { + "appid": 1424250, + "normalized_name": "puzzzle" + }, + { + "appid": 1424270, + "normalized_name": "brew & brawl gnomes vs. dwarves" + }, + { + "appid": 1424290, + "normalized_name": "mars 2120" + }, + { + "appid": 1424300, + "normalized_name": "jester / king" + }, + { + "appid": 1424330, + "normalized_name": "wobbledogs" + }, + { + "appid": 1424350, + "normalized_name": "bunny hill" + }, + { + "appid": 1424360, + "normalized_name": "pillow simulator" + }, + { + "appid": 1424380, + "normalized_name": "bunker down" + }, + { + "appid": 1424400, + "normalized_name": "furniture world" + }, + { + "appid": 1424420, + "normalized_name": "warchief" + }, + { + "appid": 1424500, + "normalized_name": "secret of the lost keys episode i the attack on disred" + }, + { + "appid": 1424520, + "normalized_name": "astria" + }, + { + "appid": 1424540, + "normalized_name": "the boo croo" + }, + { + "appid": 1424560, + "normalized_name": "warriors defense" + }, + { + "appid": 1424570, + "normalized_name": "delta0" + }, + { + "appid": 1424590, + "normalized_name": "墨武群侠(tale of mowu)" + }, + { + "appid": 1424600, + "normalized_name": "verne the shape of fantasy" + }, + { + "appid": 1424610, + "normalized_name": "自西徂东" + }, + { + "appid": 1424630, + "normalized_name": "cosmodreamer" + }, + { + "appid": 1424640, + "normalized_name": "余烬" + }, + { + "appid": 1424650, + "normalized_name": "flicker" + }, + { + "appid": 1424660, + "normalized_name": "9 nine episode 4" + }, + { + "appid": 1424690, + "normalized_name": "hatchwell" + }, + { + "appid": 1424700, + "normalized_name": "the secret of the stone" + }, + { + "appid": 1424710, + "normalized_name": "geneforge 1 mutagen" + }, + { + "appid": 1424720, + "normalized_name": "墨心:波云诡船" + }, + { + "appid": 1424770, + "normalized_name": "aery little bird adventure" + }, + { + "appid": 1424780, + "normalized_name": "my little dog adventure" + }, + { + "appid": 1424790, + "normalized_name": "aery broken memories" + }, + { + "appid": 1424800, + "normalized_name": "uncharted waters iv hd version" + }, + { + "appid": 1424850, + "normalized_name": "hentai vs orcs" + }, + { + "appid": 1424860, + "normalized_name": "bish bash bots" + }, + { + "appid": 1424870, + "normalized_name": "cross maid" + }, + { + "appid": 1424890, + "normalized_name": "天仙变" + }, + { + "appid": 1424900, + "normalized_name": "air attack" + }, + { + "appid": 1424910, + "normalized_name": "keo" + }, + { + "appid": 1424960, + "normalized_name": "random(platformer)" + }, + { + "appid": 1424980, + "normalized_name": "the solitaire conspiracy" + }, + { + "appid": 1425000, + "normalized_name": "endless alice" + }, + { + "appid": 1425010, + "normalized_name": "forkjump" + }, + { + "appid": 1425030, + "normalized_name": "cyberwinter" + }, + { + "appid": 1425050, + "normalized_name": "erazer devise & destroy" + }, + { + "appid": 1425070, + "normalized_name": "golden force" + }, + { + "appid": 1425090, + "normalized_name": "exotium episode 1" + }, + { + "appid": 1425110, + "normalized_name": "space empires i" + }, + { + "appid": 1425120, + "normalized_name": "clutter evolution beyond xtreme" + }, + { + "appid": 1425130, + "normalized_name": "forgotten hill first steps" + }, + { + "appid": 1425140, + "normalized_name": "until last breath" + }, + { + "appid": 1425160, + "normalized_name": "humans vs ghouls" + }, + { + "appid": 1425170, + "normalized_name": "car jump" + }, + { + "appid": 1425180, + "normalized_name": "vessels of decay" + }, + { + "appid": 1425190, + "normalized_name": "abducted the night hunters" + }, + { + "appid": 1425220, + "normalized_name": "farm mechanic simulator" + }, + { + "appid": 1425240, + "normalized_name": "match it!" + }, + { + "appid": 1425250, + "normalized_name": "gravity field" + }, + { + "appid": 1425260, + "normalized_name": "chibi horror the school" + }, + { + "appid": 1425270, + "normalized_name": "pago forest tower defense" + }, + { + "appid": 1425280, + "normalized_name": "tantal" + }, + { + "appid": 1425300, + "normalized_name": "factorization" + }, + { + "appid": 1425330, + "normalized_name": "eye of the beholder" + }, + { + "appid": 1425350, + "normalized_name": "botany manor" + }, + { + "appid": 1425360, + "normalized_name": "arkadianax" + }, + { + "appid": 1425370, + "normalized_name": "razenroth 2" + }, + { + "appid": 1425380, + "normalized_name": "10mg )" + }, + { + "appid": 1425390, + "normalized_name": "eat or die!" + }, + { + "appid": 1425410, + "normalized_name": "castlehold" + }, + { + "appid": 1425510, + "normalized_name": "clown in a house" + }, + { + "appid": 1425550, + "normalized_name": "who is the liar?" + }, + { + "appid": 1425580, + "normalized_name": "last soul prologue" + }, + { + "appid": 1425590, + "normalized_name": "hyper meteor" + }, + { + "appid": 1425620, + "normalized_name": "赤蛮奇的头头大冒险 ~ sekibanki head adventure" + }, + { + "appid": 1425630, + "normalized_name": "space crusaders" + }, + { + "appid": 1425640, + "normalized_name": "minestrife" + }, + { + "appid": 1425660, + "normalized_name": "scp forgotten facility" + }, + { + "appid": 1425670, + "normalized_name": "shadow eclipse" + }, + { + "appid": 1425690, + "normalized_name": "eden's lair" + }, + { + "appid": 1425720, + "normalized_name": "human constructor vr" + }, + { + "appid": 1425730, + "normalized_name": "gal*gun returns" + }, + { + "appid": 1425760, + "normalized_name": "pulling no punches" + }, + { + "appid": 1425770, + "normalized_name": "再苟一步 one more step" + }, + { + "appid": 1425780, + "normalized_name": "fishkeeper" + }, + { + "appid": 1425790, + "normalized_name": "刺沙" + }, + { + "appid": 1425830, + "normalized_name": "halley's dream" + }, + { + "appid": 1425920, + "normalized_name": "crazy engineer" + }, + { + "appid": 1425980, + "normalized_name": "stone simulator – just be a rock" + }, + { + "appid": 1425990, + "normalized_name": "from day to day" + }, + { + "appid": 1426010, + "normalized_name": "stasis bone totem" + }, + { + "appid": 1426050, + "normalized_name": "fractured online" + }, + { + "appid": 1426060, + "normalized_name": "永恒沉眠:统治者降临 permanent sleep the dominant has come" + }, + { + "appid": 1426090, + "normalized_name": "my yandere sister loves me too much!" + }, + { + "appid": 1426100, + "normalized_name": "boingboingouch" + }, + { + "appid": 1426110, + "normalized_name": "love n dream virtual happiness" + }, + { + "appid": 1426120, + "normalized_name": "re destiny" + }, + { + "appid": 1426130, + "normalized_name": "mayor madness" + }, + { + "appid": 1426160, + "normalized_name": "the den of worms" + }, + { + "appid": 1426190, + "normalized_name": "bloody horde" + }, + { + "appid": 1426210, + "normalized_name": "it takes two" + }, + { + "appid": 1426230, + "normalized_name": "it's not about the end" + }, + { + "appid": 1426280, + "normalized_name": "hello puppets! vr" + }, + { + "appid": 1426310, + "normalized_name": "dee 6 dice defenders" + }, + { + "appid": 1426330, + "normalized_name": "mega veg man" + }, + { + "appid": 1426340, + "normalized_name": "super dream weaver" + }, + { + "appid": 1426350, + "normalized_name": "the depths prehistoric survival" + }, + { + "appid": 1426370, + "normalized_name": "cat attack" + }, + { + "appid": 1426400, + "normalized_name": "beat 'em up" + }, + { + "appid": 1426440, + "normalized_name": "microvolts recharged" + }, + { + "appid": 1426450, + "normalized_name": "age of darkness final stand" + }, + { + "appid": 1426480, + "normalized_name": "fate of kai" + }, + { + "appid": 1426490, + "normalized_name": "lost epic" + }, + { + "appid": 1426500, + "normalized_name": "reboot" + }, + { + "appid": 1426530, + "normalized_name": "sid classic" + }, + { + "appid": 1426540, + "normalized_name": "angry cat" + }, + { + "appid": 1426560, + "normalized_name": "the ghost soprano" + }, + { + "appid": 1426570, + "normalized_name": "space station 51" + }, + { + "appid": 1426580, + "normalized_name": "situation normal" + }, + { + "appid": 1426740, + "normalized_name": "aveliana" + }, + { + "appid": 1426870, + "normalized_name": "dune mechanic survive the steampunk era" + }, + { + "appid": 1426890, + "normalized_name": "jewel match solitaire collector's" + }, + { + "appid": 1426900, + "normalized_name": "dread nautical" + }, + { + "appid": 1426930, + "normalized_name": "ona a mystical art experience" + }, + { + "appid": 1426950, + "normalized_name": "heart of dungeon" + }, + { + "appid": 1426980, + "normalized_name": "hidden memory nature" + }, + { + "appid": 1426990, + "normalized_name": "anime space sniper" + }, + { + "appid": 1427030, + "normalized_name": "inukari chase of deception" + }, + { + "appid": 1427040, + "normalized_name": "into the light" + }, + { + "appid": 1427080, + "normalized_name": "cinema manager" + }, + { + "appid": 1427100, + "normalized_name": "eat fish 3d" + }, + { + "appid": 1427120, + "normalized_name": "consequence" + }, + { + "appid": 1427130, + "normalized_name": "elusive world" + }, + { + "appid": 1427140, + "normalized_name": "among school girls" + }, + { + "appid": 1427150, + "normalized_name": "the episodic" + }, + { + "appid": 1427210, + "normalized_name": "from the shadows" + }, + { + "appid": 1427240, + "normalized_name": "sinvr 2 forbidden world" + }, + { + "appid": 1427290, + "normalized_name": "jiguland" + }, + { + "appid": 1427300, + "normalized_name": "detours" + }, + { + "appid": 1427320, + "normalized_name": "decamped" + }, + { + "appid": 1427340, + "normalized_name": "witchy life story" + }, + { + "appid": 1427400, + "normalized_name": "sky journey jigsaw landscapes" + }, + { + "appid": 1427420, + "normalized_name": "bloodland" + }, + { + "appid": 1427450, + "normalized_name": "dino drink" + }, + { + "appid": 1427480, + "normalized_name": "miner ultra rag smash" + }, + { + "appid": 1427510, + "normalized_name": "overdose ww2" + }, + { + "appid": 1427540, + "normalized_name": "attack from planet smiley" + }, + { + "appid": 1427570, + "normalized_name": "pepe's revenge" + }, + { + "appid": 1427620, + "normalized_name": "caapora adventure ojibe's revenge" + }, + { + "appid": 1427640, + "normalized_name": "all time battle" + }, + { + "appid": 1427680, + "normalized_name": "magia x" + }, + { + "appid": 1427700, + "normalized_name": "realm engine | virtual tabletop" + }, + { + "appid": 1427710, + "normalized_name": "emptybottle" + }, + { + "appid": 1427740, + "normalized_name": "sinistrous" + }, + { + "appid": 1427760, + "normalized_name": "robosquare" + }, + { + "appid": 1427780, + "normalized_name": "a marble's muse" + }, + { + "appid": 1427800, + "normalized_name": "mutant ops" + }, + { + "appid": 1427810, + "normalized_name": "求闻手账 ~ gensokyo recollection" + }, + { + "appid": 1427860, + "normalized_name": "paradise lust" + }, + { + "appid": 1427880, + "normalized_name": "beat me! puppetonia tournament" + }, + { + "appid": 1427890, + "normalized_name": "blaston" + }, + { + "appid": 1427900, + "normalized_name": "1001 jigsaw world tour africa" + }, + { + "appid": 1427910, + "normalized_name": "gem legends" + }, + { + "appid": 1427920, + "normalized_name": "griddlers ted and pet" + }, + { + "appid": 1427930, + "normalized_name": "fairytale mosaics cinderella" + }, + { + "appid": 1427940, + "normalized_name": "pirate jigsaw" + }, + { + "appid": 1427950, + "normalized_name": "solitaire halloween story" + }, + { + "appid": 1427960, + "normalized_name": "jigsaw boom" + }, + { + "appid": 1427970, + "normalized_name": "asian riddles 3" + }, + { + "appid": 1427980, + "normalized_name": "strike solitaire 3" + }, + { + "appid": 1427990, + "normalized_name": "jigsaw tour" + }, + { + "appid": 1428030, + "normalized_name": "prince of wallachia" + }, + { + "appid": 1428040, + "normalized_name": "gizmos spirit of the christmas" + }, + { + "appid": 1428060, + "normalized_name": "aquamariner" + }, + { + "appid": 1428080, + "normalized_name": "house with puzzles" + }, + { + "appid": 1428090, + "normalized_name": "kreaturekind" + }, + { + "appid": 1428100, + "normalized_name": "instruments of destruction" + }, + { + "appid": 1428130, + "normalized_name": "dark magic" + }, + { + "appid": 1428140, + "normalized_name": "riding seas" + }, + { + "appid": 1428150, + "normalized_name": "savage" + }, + { + "appid": 1428160, + "normalized_name": "nosferatu's butler" + }, + { + "appid": 1428180, + "normalized_name": "death box" + }, + { + "appid": 1428270, + "normalized_name": "good puzzle animals" + }, + { + "appid": 1428290, + "normalized_name": "anime match the memory" + }, + { + "appid": 1428300, + "normalized_name": "chronodojo" + }, + { + "appid": 1428310, + "normalized_name": "the test final revelation" + }, + { + "appid": 1428320, + "normalized_name": "achievement killer" + }, + { + "appid": 1428340, + "normalized_name": "virtual escape digital world" + }, + { + "appid": 1428360, + "normalized_name": "too much water" + }, + { + "appid": 1428370, + "normalized_name": "times infinity" + }, + { + "appid": 1428420, + "normalized_name": "nucleares" + }, + { + "appid": 1428440, + "normalized_name": "change the world" + }, + { + "appid": 1428460, + "normalized_name": "bisque doll" + }, + { + "appid": 1428470, + "normalized_name": "stowaway" + }, + { + "appid": 1428480, + "normalized_name": "adventures of bruce" + }, + { + "appid": 1428520, + "normalized_name": "mech engineer" + }, + { + "appid": 1428530, + "normalized_name": "blr80" + }, + { + "appid": 1428550, + "normalized_name": "one night with clara" + }, + { + "appid": 1428560, + "normalized_name": "life with mary" + }, + { + "appid": 1428570, + "normalized_name": "godland the fire quest" + }, + { + "appid": 1428580, + "normalized_name": "quiet valley" + }, + { + "appid": 1428600, + "normalized_name": "stormrite" + }, + { + "appid": 1428610, + "normalized_name": "animal rescuer prologue" + }, + { + "appid": 1428630, + "normalized_name": "diamond hunt" + }, + { + "appid": 1428650, + "normalized_name": "gladiators tale" + }, + { + "appid": 1428660, + "normalized_name": "lewdquest" + }, + { + "appid": 1428680, + "normalized_name": "abiko the miko 2" + }, + { + "appid": 1428700, + "normalized_name": "under the hood" + }, + { + "appid": 1428710, + "normalized_name": "the tarnishing of juxtia" + }, + { + "appid": 1428730, + "normalized_name": "bros battle royale of survival" + }, + { + "appid": 1428770, + "normalized_name": "kingdom gun" + }, + { + "appid": 1428780, + "normalized_name": "animal rescuer" + }, + { + "appid": 1428790, + "normalized_name": "madhack" + }, + { + "appid": 1428800, + "normalized_name": "nukepath" + }, + { + "appid": 1428820, + "normalized_name": "wordle 3" + }, + { + "appid": 1428840, + "normalized_name": "10mg snaaak" + }, + { + "appid": 1428870, + "normalized_name": "grapple" + }, + { + "appid": 1428880, + "normalized_name": "consortium vr" + }, + { + "appid": 1428900, + "normalized_name": "tadpole tales" + }, + { + "appid": 1428920, + "normalized_name": "gravity (working title)" + }, + { + "appid": 1428960, + "normalized_name": "lore the hunt" + }, + { + "appid": 1428980, + "normalized_name": "the count of monte carlo" + }, + { + "appid": 1429040, + "normalized_name": "kaputte kranz chap1" + }, + { + "appid": 1429080, + "normalized_name": "business heroes street grub" + }, + { + "appid": 1429100, + "normalized_name": "siren head the siren's forest" + }, + { + "appid": 1429130, + "normalized_name": "disquiet fields" + }, + { + "appid": 1429150, + "normalized_name": "dungeon tavern" + }, + { + "appid": 1429160, + "normalized_name": "prairie survival" + }, + { + "appid": 1429200, + "normalized_name": "симулятор купания в фонтане" + }, + { + "appid": 1429210, + "normalized_name": "gelldonia" + }, + { + "appid": 1429220, + "normalized_name": "mark twain's tom sawyer survival game" + }, + { + "appid": 1429260, + "normalized_name": "robot rogue" + }, + { + "appid": 1429350, + "normalized_name": "mh zombie" + }, + { + "appid": 1429400, + "normalized_name": "mousebound" + }, + { + "appid": 1429440, + "normalized_name": "hammer sandbox" + }, + { + "appid": 1429480, + "normalized_name": "honeyland" + }, + { + "appid": 1429500, + "normalized_name": "frontier hunter erza’s wheel of fortune" + }, + { + "appid": 1429530, + "normalized_name": "azlan rise of the burlpups" + }, + { + "appid": 1429610, + "normalized_name": "~府城少女~ 以妳為名的府城情書" + }, + { + "appid": 1429620, + "normalized_name": "tales of herring lake" + }, + { + "appid": 1429630, + "normalized_name": "the king of warriors battle in the three kingdoms" + }, + { + "appid": 1429640, + "normalized_name": "hinge vr" + }, + { + "appid": 1429670, + "normalized_name": "dungeon lord" + }, + { + "appid": 1429680, + "normalized_name": "space plane" + }, + { + "appid": 1429700, + "normalized_name": "arcadeon vr" + }, + { + "appid": 1429730, + "normalized_name": "project mirror" + }, + { + "appid": 1429740, + "normalized_name": "raji prologue" + }, + { + "appid": 1429780, + "normalized_name": "marble maid" + }, + { + "appid": 1429820, + "normalized_name": "neko nyaa~" + }, + { + "appid": 1429850, + "normalized_name": "sumerian six" + }, + { + "appid": 1429870, + "normalized_name": "vectro blast" + }, + { + "appid": 1429880, + "normalized_name": "little sim world" + }, + { + "appid": 1429890, + "normalized_name": "singularity" + }, + { + "appid": 1429950, + "normalized_name": "apotheker" + }, + { + "appid": 1430010, + "normalized_name": "迷途" + }, + { + "appid": 1430020, + "normalized_name": "downfall hearts" + }, + { + "appid": 1430030, + "normalized_name": "the monster of memory destiny" + }, + { + "appid": 1430040, + "normalized_name": "jump again!" + }, + { + "appid": 1430050, + "normalized_name": "soldiers inc." + }, + { + "appid": 1430070, + "normalized_name": "too different" + }, + { + "appid": 1430100, + "normalized_name": "fade" + }, + { + "appid": 1430120, + "normalized_name": "moving letters" + }, + { + "appid": 1430140, + "normalized_name": "space empires ii" + }, + { + "appid": 1430160, + "normalized_name": "lineart jigsaw puzzle erotica" + }, + { + "appid": 1430170, + "normalized_name": "inferno" + }, + { + "appid": 1430180, + "normalized_name": "musical balls" + }, + { + "appid": 1430190, + "normalized_name": "killing floor 3" + }, + { + "appid": 1430200, + "normalized_name": "space empires iii" + }, + { + "appid": 1430220, + "normalized_name": "biomorph" + }, + { + "appid": 1430240, + "normalized_name": "the space in between" + }, + { + "appid": 1430280, + "normalized_name": "angry emoji the game" + }, + { + "appid": 1430310, + "normalized_name": "netgunner" + }, + { + "appid": 1430320, + "normalized_name": "boom face" + }, + { + "appid": 1430330, + "normalized_name": "freerunners" + }, + { + "appid": 1430340, + "normalized_name": "vocal space shooter" + }, + { + "appid": 1430350, + "normalized_name": "zakumba astraia" + }, + { + "appid": 1430420, + "normalized_name": "cbt with yuuka kazami" + }, + { + "appid": 1430530, + "normalized_name": "horizon heat" + }, + { + "appid": 1430540, + "normalized_name": "黃易群俠傳m" + }, + { + "appid": 1430570, + "normalized_name": "universe apart" + }, + { + "appid": 1430640, + "normalized_name": "into the haze" + }, + { + "appid": 1430670, + "normalized_name": "hexzle" + }, + { + "appid": 1430680, + "normalized_name": "clash artifacts of chaos" + }, + { + "appid": 1430690, + "normalized_name": "stay safe 2020" + }, + { + "appid": 1430720, + "normalized_name": "策马三国志之霸王大陆 clash of warlords" + }, + { + "appid": 1430740, + "normalized_name": "mine crazy the korean grinder" + }, + { + "appid": 1430760, + "normalized_name": "aquarist" + }, + { + "appid": 1430810, + "normalized_name": "world of wonder" + }, + { + "appid": 1430820, + "normalized_name": "monstermonger" + }, + { + "appid": 1430930, + "normalized_name": "thief's shelter" + }, + { + "appid": 1430970, + "normalized_name": "astatos" + }, + { + "appid": 1430980, + "normalized_name": "space love delta" + }, + { + "appid": 1431020, + "normalized_name": "blurple food wars" + }, + { + "appid": 1431040, + "normalized_name": "golazo! soccer league" + }, + { + "appid": 1431100, + "normalized_name": "rollerballer" + }, + { + "appid": 1431150, + "normalized_name": "longpath" + }, + { + "appid": 1431170, + "normalized_name": "pepo" + }, + { + "appid": 1431180, + "normalized_name": "don't wake the night" + }, + { + "appid": 1431190, + "normalized_name": "bunny's trail" + }, + { + "appid": 1431210, + "normalized_name": "mahjong medieval fantasy" + }, + { + "appid": 1431220, + "normalized_name": "10mg slasher interrupted" + }, + { + "appid": 1431230, + "normalized_name": "gods of sand" + }, + { + "appid": 1431240, + "normalized_name": "coloring book for adults" + }, + { + "appid": 1431250, + "normalized_name": "wrestling with emotions new kid on the block" + }, + { + "appid": 1431270, + "normalized_name": "arcana sands of destiny" + }, + { + "appid": 1431290, + "normalized_name": "sam & max this time it's virtual!" + }, + { + "appid": 1431300, + "normalized_name": "sand" + }, + { + "appid": 1431350, + "normalized_name": "santa claus in trouble (hd)" + }, + { + "appid": 1431370, + "normalized_name": "thrustworks" + }, + { + "appid": 1431380, + "normalized_name": "mage world the wizard's stone" + }, + { + "appid": 1431420, + "normalized_name": "10mg cover me in leaves" + }, + { + "appid": 1431430, + "normalized_name": "tiny island" + }, + { + "appid": 1431440, + "normalized_name": "flappy person" + }, + { + "appid": 1431450, + "normalized_name": "do i smell pizza?" + }, + { + "appid": 1431470, + "normalized_name": "mythos ever after a cthulhu dating sim" + }, + { + "appid": 1431540, + "normalized_name": "your dead majesty" + }, + { + "appid": 1431550, + "normalized_name": "secure the skies" + }, + { + "appid": 1431570, + "normalized_name": "glass" + }, + { + "appid": 1431610, + "normalized_name": "prison simulator prologue" + }, + { + "appid": 1431620, + "normalized_name": "cybercube battle" + }, + { + "appid": 1431630, + "normalized_name": "gallic wars battle simulator prologue" + }, + { + "appid": 1431690, + "normalized_name": "mr. hibbl" + }, + { + "appid": 1431720, + "normalized_name": "evergate ki's awakening" + }, + { + "appid": 1431730, + "normalized_name": "try to win 2" + }, + { + "appid": 1431750, + "normalized_name": "the henchmen" + }, + { + "appid": 1431770, + "normalized_name": "jungleknight" + }, + { + "appid": 1431780, + "normalized_name": "the black heart" + }, + { + "appid": 1431790, + "normalized_name": "剑与羁绊" + }, + { + "appid": 1431840, + "normalized_name": "murder by moonlight call of the wolf" + }, + { + "appid": 1431850, + "normalized_name": "the tartarus key" + }, + { + "appid": 1431890, + "normalized_name": "starfighter renegade" + }, + { + "appid": 1431900, + "normalized_name": "煦风新笺 once upon a breeze" + }, + { + "appid": 1431910, + "normalized_name": "puppets party friendship destroyer" + }, + { + "appid": 1431920, + "normalized_name": "first person shooter" + }, + { + "appid": 1431930, + "normalized_name": "recurring dreams" + }, + { + "appid": 1431940, + "normalized_name": "outwars" + }, + { + "appid": 1431950, + "normalized_name": "decks & daggers" + }, + { + "appid": 1432000, + "normalized_name": "timeline traveler ii dream" + }, + { + "appid": 1432020, + "normalized_name": "jay schilling's edge of chaos" + }, + { + "appid": 1432050, + "normalized_name": "nobody saves the world" + }, + { + "appid": 1432100, + "normalized_name": "the bookwalker thief of tales" + }, + { + "appid": 1432110, + "normalized_name": "puzzle bowling" + }, + { + "appid": 1432200, + "normalized_name": "not another weekend" + }, + { + "appid": 1432250, + "normalized_name": "6 takes!" + }, + { + "appid": 1432260, + "normalized_name": "the surfeit episode 1" + }, + { + "appid": 1432280, + "normalized_name": "zodiac angel" + }, + { + "appid": 1432290, + "normalized_name": "spot the dot" + }, + { + "appid": 1432310, + "normalized_name": "look and find curiosity" + }, + { + "appid": 1432320, + "normalized_name": "liftoff micro drones" + }, + { + "appid": 1432330, + "normalized_name": "hentai nureta puzzle power girls" + }, + { + "appid": 1432340, + "normalized_name": "loveland" + }, + { + "appid": 1432350, + "normalized_name": "hentai nureta puzzle college" + }, + { + "appid": 1432360, + "normalized_name": "rmaze" + }, + { + "appid": 1432380, + "normalized_name": "lichenvale" + }, + { + "appid": 1432390, + "normalized_name": "sonority" + }, + { + "appid": 1432400, + "normalized_name": "ozone guardian" + }, + { + "appid": 1432410, + "normalized_name": "shape quiz" + }, + { + "appid": 1432430, + "normalized_name": "rixer" + }, + { + "appid": 1432480, + "normalized_name": "luminous plume" + }, + { + "appid": 1432500, + "normalized_name": "the sekimeiya spun glass" + }, + { + "appid": 1432560, + "normalized_name": "sweet honey" + }, + { + "appid": 1432570, + "normalized_name": "狼牙传(legendary assassin)" + }, + { + "appid": 1432590, + "normalized_name": "chibits" + }, + { + "appid": 1432610, + "normalized_name": "royale archer vr" + }, + { + "appid": 1432620, + "normalized_name": "aimi" + }, + { + "appid": 1432630, + "normalized_name": "space defense" + }, + { + "appid": 1432650, + "normalized_name": "max's big bust 2 max's bigger bust" + }, + { + "appid": 1432670, + "normalized_name": "pretty girls mahjong solitaire [green]" + }, + { + "appid": 1432680, + "normalized_name": "mechanic 8230 escape from ilgrot" + }, + { + "appid": 1432710, + "normalized_name": "新魔剑(new magic sword)" + }, + { + "appid": 1432750, + "normalized_name": "chionophile" + }, + { + "appid": 1432760, + "normalized_name": "a comfortable burden" + }, + { + "appid": 1432810, + "normalized_name": "poster sticker" + }, + { + "appid": 1432840, + "normalized_name": "resthedex" + }, + { + "appid": 1432850, + "normalized_name": "farewell north" + }, + { + "appid": 1432860, + "normalized_name": "sun haven" + }, + { + "appid": 1432880, + "normalized_name": "4line" + }, + { + "appid": 1432890, + "normalized_name": "ninjagirlarune" + }, + { + "appid": 1432910, + "normalized_name": "godlike burger" + }, + { + "appid": 1432930, + "normalized_name": "cybernetica fallen city" + }, + { + "appid": 1432960, + "normalized_name": "eight" + }, + { + "appid": 1432970, + "normalized_name": "assault shell" + }, + { + "appid": 1432980, + "normalized_name": "moai 6 unexpected guests collector's" + }, + { + "appid": 1433000, + "normalized_name": "chronicles of cyberpunk deep sleep" + }, + { + "appid": 1433010, + "normalized_name": "tennis manager 2021" + }, + { + "appid": 1433020, + "normalized_name": "the first backrooms" + }, + { + "appid": 1433030, + "normalized_name": "moai 7 mystery coast" + }, + { + "appid": 1433040, + "normalized_name": "dragon fury vr" + }, + { + "appid": 1433070, + "normalized_name": "into the pyramid" + }, + { + "appid": 1433090, + "normalized_name": "the schizophrenic dynasty of müller" + }, + { + "appid": 1433110, + "normalized_name": "disturbed r.i.p." + }, + { + "appid": 1433130, + "normalized_name": "ravished realms" + }, + { + "appid": 1433140, + "normalized_name": "the texas chain saw massacre" + }, + { + "appid": 1433190, + "normalized_name": "welcome to emba" + }, + { + "appid": 1433210, + "normalized_name": "notebook artillery" + }, + { + "appid": 1433240, + "normalized_name": "whiskey island" + }, + { + "appid": 1433310, + "normalized_name": "horror movie bingo" + }, + { + "appid": 1433320, + "normalized_name": "mortal decay" + }, + { + "appid": 1433340, + "normalized_name": "happy's humble burger farm" + }, + { + "appid": 1433390, + "normalized_name": "to my best friend" + }, + { + "appid": 1433420, + "normalized_name": "love n war hero by chance" + }, + { + "appid": 1433430, + "normalized_name": "level 20" + }, + { + "appid": 1433460, + "normalized_name": "决奕duel" + }, + { + "appid": 1433470, + "normalized_name": "outpost engineer" + }, + { + "appid": 1433480, + "normalized_name": "poop on 2020 simulator" + }, + { + "appid": 1433490, + "normalized_name": "pristiq tash's trilogy" + }, + { + "appid": 1433500, + "normalized_name": "hotel transylvania scary tale adventures" + }, + { + "appid": 1433520, + "normalized_name": "big mushroom rpg" + }, + { + "appid": 1433530, + "normalized_name": "bilal go!" + }, + { + "appid": 1433550, + "normalized_name": "space gladiators the hole" + }, + { + "appid": 1433570, + "normalized_name": "car detailing simulator" + }, + { + "appid": 1433750, + "normalized_name": "绿色缪斯" + }, + { + "appid": 1433770, + "normalized_name": "chesnakisnak" + }, + { + "appid": 1433830, + "normalized_name": "peg adventure solo noble" + }, + { + "appid": 1433860, + "normalized_name": "the amazing american circus" + }, + { + "appid": 1433870, + "normalized_name": "bricky to me" + }, + { + "appid": 1433890, + "normalized_name": "lawnmower game racing" + }, + { + "appid": 1433900, + "normalized_name": "narrow escape" + }, + { + "appid": 1433910, + "normalized_name": "dragu's puzzle adventure" + }, + { + "appid": 1433940, + "normalized_name": "adventure of bears" + }, + { + "appid": 1433950, + "normalized_name": "duck life retro pack" + }, + { + "appid": 1433960, + "normalized_name": "fast food simulator" + }, + { + "appid": 1433970, + "normalized_name": "cake shop simulator" + }, + { + "appid": 1433980, + "normalized_name": "farm & puzzle" + }, + { + "appid": 1433990, + "normalized_name": "ngu industries" + }, + { + "appid": 1434000, + "normalized_name": "bo020880" + }, + { + "appid": 1434010, + "normalized_name": "beyond the thaw" + }, + { + "appid": 1434040, + "normalized_name": "slide stars" + }, + { + "appid": 1434050, + "normalized_name": "selini" + }, + { + "appid": 1434140, + "normalized_name": "toy chase" + }, + { + "appid": 1434160, + "normalized_name": "my empire" + }, + { + "appid": 1434200, + "normalized_name": "always surrender" + }, + { + "appid": 1434230, + "normalized_name": "cat sudoku🐱" + }, + { + "appid": 1434260, + "normalized_name": "painting werther" + }, + { + "appid": 1434270, + "normalized_name": "ante" + }, + { + "appid": 1434300, + "normalized_name": "block wizard" + }, + { + "appid": 1434310, + "normalized_name": "paw patrol the movie adventure city calls" + }, + { + "appid": 1434320, + "normalized_name": "fast & furious spy racers rise of sh1ft3r" + }, + { + "appid": 1434330, + "normalized_name": "blaze and the monster machines axle city racers" + }, + { + "appid": 1434340, + "normalized_name": "insect adventure demo" + }, + { + "appid": 1434350, + "normalized_name": "celestial hearts" + }, + { + "appid": 1434440, + "normalized_name": "the missing link" + }, + { + "appid": 1434470, + "normalized_name": "ragdoll maddoll" + }, + { + "appid": 1434480, + "normalized_name": "maitetsu last run!!" + }, + { + "appid": 1434490, + "normalized_name": "farm day 2021" + }, + { + "appid": 1434510, + "normalized_name": "park the car" + }, + { + "appid": 1434540, + "normalized_name": "zoeti" + }, + { + "appid": 1434550, + "normalized_name": "zeltrus" + }, + { + "appid": 1434620, + "normalized_name": "emberlight" + }, + { + "appid": 1434650, + "normalized_name": "monster girl incursion" + }, + { + "appid": 1434720, + "normalized_name": "mystical lights" + }, + { + "appid": 1434730, + "normalized_name": "epic diavolo" + }, + { + "appid": 1434750, + "normalized_name": "tripill" + }, + { + "appid": 1434760, + "normalized_name": "heroine for hire" + }, + { + "appid": 1434770, + "normalized_name": "mughaan" + }, + { + "appid": 1434840, + "normalized_name": "dungeons & kingdoms prologue" + }, + { + "appid": 1434850, + "normalized_name": "lumpy" + }, + { + "appid": 1434880, + "normalized_name": "robo oh" + }, + { + "appid": 1434890, + "normalized_name": "portable farm" + }, + { + "appid": 1434900, + "normalized_name": "hardpunch sex plague" + }, + { + "appid": 1434910, + "normalized_name": "last visit" + }, + { + "appid": 1434940, + "normalized_name": "gravkitten" + }, + { + "appid": 1434950, + "normalized_name": "highfleet" + }, + { + "appid": 1434970, + "normalized_name": "social distancing" + }, + { + "appid": 1435010, + "normalized_name": "succubus★connect!" + }, + { + "appid": 1435020, + "normalized_name": "photoworld" + }, + { + "appid": 1435090, + "normalized_name": "bloody rally show prologue" + }, + { + "appid": 1435100, + "normalized_name": "club werewolf" + }, + { + "appid": 1435160, + "normalized_name": "nyanco mine" + }, + { + "appid": 1435210, + "normalized_name": "highlaundry" + }, + { + "appid": 1435220, + "normalized_name": "super laser fury" + }, + { + "appid": 1435250, + "normalized_name": "sodastar 0" + }, + { + "appid": 1435310, + "normalized_name": "shotgun witch" + }, + { + "appid": 1435330, + "normalized_name": "costume kingdom" + }, + { + "appid": 1435370, + "normalized_name": "space mining company" + }, + { + "appid": 1435410, + "normalized_name": "shrine's legacy" + }, + { + "appid": 1435420, + "normalized_name": "godslayer|one" + }, + { + "appid": 1435440, + "normalized_name": "dark dragonkin" + }, + { + "appid": 1435470, + "normalized_name": "space bandit" + }, + { + "appid": 1435480, + "normalized_name": "10mg sealed estate" + }, + { + "appid": 1435540, + "normalized_name": "yachu dice" + }, + { + "appid": 1435560, + "normalized_name": "the poisoned roots" + }, + { + "appid": 1435590, + "normalized_name": "candy bear 2" + }, + { + "appid": 1435660, + "normalized_name": "orbital invaders" + }, + { + "appid": 1435670, + "normalized_name": "song of farca" + }, + { + "appid": 1435680, + "normalized_name": "poultry parade" + }, + { + "appid": 1435750, + "normalized_name": "godspeed" + }, + { + "appid": 1435770, + "normalized_name": "wanderfar" + }, + { + "appid": 1435780, + "normalized_name": "farm frenzy refreshed" + }, + { + "appid": 1435790, + "normalized_name": "escape simulator" + }, + { + "appid": 1435840, + "normalized_name": "dig the ground" + }, + { + "appid": 1435900, + "normalized_name": "route 66 simulator" + }, + { + "appid": 1435950, + "normalized_name": "creeper goo" + }, + { + "appid": 1435960, + "normalized_name": "potato party hash it out" + }, + { + "appid": 1435970, + "normalized_name": "anomalous" + }, + { + "appid": 1435980, + "normalized_name": "sloth tales" + }, + { + "appid": 1436000, + "normalized_name": "freya's potion shop" + }, + { + "appid": 1436190, + "normalized_name": "wark & wimble" + }, + { + "appid": 1436210, + "normalized_name": "requiem" + }, + { + "appid": 1436220, + "normalized_name": "xibalba" + }, + { + "appid": 1436240, + "normalized_name": "krakatoa" + }, + { + "appid": 1436370, + "normalized_name": "lucidus mortem" + }, + { + "appid": 1436390, + "normalized_name": "text russia" + }, + { + "appid": 1436410, + "normalized_name": "rethink 4" + }, + { + "appid": 1436450, + "normalized_name": "fish glutton" + }, + { + "appid": 1436490, + "normalized_name": "stacker puzzle" + }, + { + "appid": 1436570, + "normalized_name": "the enthralling realms the blacksmith's revenge" + }, + { + "appid": 1436590, + "normalized_name": "phoenotopia awakening" + }, + { + "appid": 1436600, + "normalized_name": "holiday time" + }, + { + "appid": 1436620, + "normalized_name": "agony online" + }, + { + "appid": 1436680, + "normalized_name": "gachi run running of the slaves" + }, + { + "appid": 1436700, + "normalized_name": "trine 5 a clockwork conspiracy" + }, + { + "appid": 1436810, + "normalized_name": "the door in the basement" + }, + { + "appid": 1436870, + "normalized_name": "the tool" + }, + { + "appid": 1436910, + "normalized_name": "troy the malware fight" + }, + { + "appid": 1436920, + "normalized_name": "tandem a tale of shadows" + }, + { + "appid": 1436930, + "normalized_name": "temple of apshai trilogy" + }, + { + "appid": 1436940, + "normalized_name": "de press" + }, + { + "appid": 1436990, + "normalized_name": "feign" + }, + { + "appid": 1437020, + "normalized_name": "monster seek ep.1" + }, + { + "appid": 1437030, + "normalized_name": "silent mansion part2" + }, + { + "appid": 1437040, + "normalized_name": "starshot space circus fever" + }, + { + "appid": 1437050, + "normalized_name": "ebola 2" + }, + { + "appid": 1437060, + "normalized_name": "outcast on mars" + }, + { + "appid": 1437080, + "normalized_name": "titan78" + }, + { + "appid": 1437100, + "normalized_name": "blue fencer resurrection" + }, + { + "appid": 1437120, + "normalized_name": "gizmos interstellar voyage" + }, + { + "appid": 1437160, + "normalized_name": "awesome mix tape" + }, + { + "appid": 1437170, + "normalized_name": "stranded 2" + }, + { + "appid": 1437200, + "normalized_name": "zavod conveyor logic" + }, + { + "appid": 1437210, + "normalized_name": "bring back the sun by daniel da silva" + }, + { + "appid": 1437220, + "normalized_name": "codename mallow" + }, + { + "appid": 1437270, + "normalized_name": "pleiades a subversion saga game" + }, + { + "appid": 1437280, + "normalized_name": "project terminus vr" + }, + { + "appid": 1437290, + "normalized_name": "befall" + }, + { + "appid": 1437340, + "normalized_name": "my name is mayo 2" + }, + { + "appid": 1437370, + "normalized_name": "the game" + }, + { + "appid": 1437400, + "normalized_name": "salt and sacrifice" + }, + { + "appid": 1437410, + "normalized_name": "crosskrush" + }, + { + "appid": 1437420, + "normalized_name": "two parsecs from earth" + }, + { + "appid": 1437430, + "normalized_name": "mixx island" + }, + { + "appid": 1437480, + "normalized_name": "cultus" + }, + { + "appid": 1437490, + "normalized_name": "灵气复苏" + }, + { + "appid": 1437500, + "normalized_name": "dread x collection 3" + }, + { + "appid": 1437520, + "normalized_name": "marcella moon saboteurs on the river" + }, + { + "appid": 1437550, + "normalized_name": "the debug" + }, + { + "appid": 1437580, + "normalized_name": "solicitude wake up" + }, + { + "appid": 1437600, + "normalized_name": "biscuitts 3" + }, + { + "appid": 1437650, + "normalized_name": "forest and girls" + }, + { + "appid": 1437680, + "normalized_name": "ambient channels" + }, + { + "appid": 1437700, + "normalized_name": "autumn and girls" + }, + { + "appid": 1437710, + "normalized_name": "cave explorers" + }, + { + "appid": 1437720, + "normalized_name": "dances and girls" + }, + { + "appid": 1437750, + "normalized_name": "stellar monarch 2" + }, + { + "appid": 1437760, + "normalized_name": "peripeteia" + }, + { + "appid": 1437790, + "normalized_name": "fields of fear" + }, + { + "appid": 1437820, + "normalized_name": "三国群英传" + }, + { + "appid": 1437830, + "normalized_name": "三国群英传2" + }, + { + "appid": 1437840, + "normalized_name": "三国群英传3" + }, + { + "appid": 1437850, + "normalized_name": "三国群英传4" + }, + { + "appid": 1437860, + "normalized_name": "三国群英传5" + }, + { + "appid": 1437870, + "normalized_name": "三国群英传6" + }, + { + "appid": 1437880, + "normalized_name": "三国群英传7" + }, + { + "appid": 1437890, + "normalized_name": "mexican train dominoes gold" + }, + { + "appid": 1437940, + "normalized_name": "glasses and girls" + }, + { + "appid": 1437950, + "normalized_name": "queen's revolution ~ the romance in upheavals ~" + }, + { + "appid": 1437980, + "normalized_name": "cyberforge first light" + }, + { + "appid": 1438060, + "normalized_name": "rolls and girls" + }, + { + "appid": 1438090, + "normalized_name": "hobo cat adventures" + }, + { + "appid": 1438100, + "normalized_name": "qbio" + }, + { + "appid": 1438110, + "normalized_name": "angel tears" + }, + { + "appid": 1438190, + "normalized_name": "shut in" + }, + { + "appid": 1438260, + "normalized_name": "golf monster" + }, + { + "appid": 1438280, + "normalized_name": "super match! the matching game" + }, + { + "appid": 1438430, + "normalized_name": "ralf's adventure aztec mystery" + }, + { + "appid": 1438440, + "normalized_name": "aurora a child's journey" + }, + { + "appid": 1438450, + "normalized_name": "woten dx traveller's dream" + }, + { + "appid": 1438480, + "normalized_name": "saviorless" + }, + { + "appid": 1438680, + "normalized_name": "techno tower defense" + }, + { + "appid": 1438700, + "normalized_name": "silicon valley investor" + }, + { + "appid": 1438710, + "normalized_name": "modern arena" + }, + { + "appid": 1438750, + "normalized_name": "halloween decoration sandbox" + }, + { + "appid": 1438760, + "normalized_name": "recruit one" + }, + { + "appid": 1438800, + "normalized_name": "safari park ranger" + }, + { + "appid": 1438830, + "normalized_name": "dark asteroids" + }, + { + "appid": 1438850, + "normalized_name": "bikes and girls" + }, + { + "appid": 1438870, + "normalized_name": "feel up a sexy lifeguard!" + }, + { + "appid": 1438940, + "normalized_name": "game localization" + }, + { + "appid": 1438950, + "normalized_name": "half blood rpg" + }, + { + "appid": 1439010, + "normalized_name": "phantom typist" + }, + { + "appid": 1439030, + "normalized_name": "brain off" + }, + { + "appid": 1439040, + "normalized_name": "squingle" + }, + { + "appid": 1439070, + "normalized_name": "stranded b" + }, + { + "appid": 1439100, + "normalized_name": "space force squadron" + }, + { + "appid": 1439120, + "normalized_name": "crashtest" + }, + { + "appid": 1439130, + "normalized_name": "abh" + }, + { + "appid": 1439150, + "normalized_name": "great journey" + }, + { + "appid": 1439170, + "normalized_name": "smart thief" + }, + { + "appid": 1439180, + "normalized_name": "elite commander" + }, + { + "appid": 1439220, + "normalized_name": "conquest medieval kingdoms" + }, + { + "appid": 1439270, + "normalized_name": "full circle" + }, + { + "appid": 1439310, + "normalized_name": "if fusion were that easy" + }, + { + "appid": 1439320, + "normalized_name": "overtime" + }, + { + "appid": 1439340, + "normalized_name": "kittens of fear" + }, + { + "appid": 1439400, + "normalized_name": "bananarun" + }, + { + "appid": 1439420, + "normalized_name": "ayoub episode 0" + }, + { + "appid": 1439440, + "normalized_name": "gravels of endless war" + }, + { + "appid": 1439460, + "normalized_name": "hellcraze" + }, + { + "appid": 1439550, + "normalized_name": "vagrant sword" + }, + { + "appid": 1439630, + "normalized_name": "mad devils damned finitive" + }, + { + "appid": 1439700, + "normalized_name": "alchemy absorption melody" + }, + { + "appid": 1439710, + "normalized_name": "theo's world" + }, + { + "appid": 1439750, + "normalized_name": "9 bit armies a bit too far" + }, + { + "appid": 1439790, + "normalized_name": "keep wall" + }, + { + "appid": 1439800, + "normalized_name": "asmr journey animated jigsaw puzzle" + }, + { + "appid": 1439840, + "normalized_name": "fright night sex fest" + }, + { + "appid": 1439900, + "normalized_name": "star matter" + }, + { + "appid": 1439920, + "normalized_name": "绝世千金 unique lady" + }, + { + "appid": 1439930, + "normalized_name": "brother wake up" + }, + { + "appid": 1439960, + "normalized_name": "the doomed knight" + }, + { + "appid": 1439970, + "normalized_name": "broken sky" + }, + { + "appid": 1439980, + "normalized_name": "outrunner neon nights" + }, + { + "appid": 1440010, + "normalized_name": "die after sunset" + }, + { + "appid": 1440020, + "normalized_name": "artifact hunter" + }, + { + "appid": 1440030, + "normalized_name": "xenotype" + }, + { + "appid": 1440050, + "normalized_name": "объемная история" + }, + { + "appid": 1440110, + "normalized_name": "arabia palace builder" + }, + { + "appid": 1440130, + "normalized_name": "escape2088" + }, + { + "appid": 1440150, + "normalized_name": "pixel survivor pixel up!" + }, + { + "appid": 1440220, + "normalized_name": "train ride simulator" + }, + { + "appid": 1440280, + "normalized_name": "killer inside us" + }, + { + "appid": 1440290, + "normalized_name": "psycho" + }, + { + "appid": 1440330, + "normalized_name": "in it together" + }, + { + "appid": 1440340, + "normalized_name": "cannon foundry simulator" + }, + { + "appid": 1440350, + "normalized_name": "staff only" + }, + { + "appid": 1440360, + "normalized_name": "tanks in labyrinth" + }, + { + "appid": 1440370, + "normalized_name": "before dark" + }, + { + "appid": 1440440, + "normalized_name": "sam & max save the world" + }, + { + "appid": 1440470, + "normalized_name": "synthetic hazard" + }, + { + "appid": 1440500, + "normalized_name": "東方剛欲異聞~ 水没した沈愁地獄" + }, + { + "appid": 1440510, + "normalized_name": "tombo survivor" + }, + { + "appid": 1440530, + "normalized_name": "good puzzle" + }, + { + "appid": 1440570, + "normalized_name": "angelic the chaos theatre" + }, + { + "appid": 1440670, + "normalized_name": "zeepkist" + }, + { + "appid": 1440680, + "normalized_name": "side" + }, + { + "appid": 1440720, + "normalized_name": "the 22nd is serda. f0a178" + }, + { + "appid": 1440730, + "normalized_name": "the ghost" + }, + { + "appid": 1440750, + "normalized_name": "splash" + }, + { + "appid": 1440780, + "normalized_name": "nerm the worm" + }, + { + "appid": 1440790, + "normalized_name": "fled fierce city" + }, + { + "appid": 1440810, + "normalized_name": "enthrean radiance prologue" + }, + { + "appid": 1440840, + "normalized_name": "breathing fear" + }, + { + "appid": 1440850, + "normalized_name": "lp" + }, + { + "appid": 1440870, + "normalized_name": "corrupted hospital part1" + }, + { + "appid": 1440890, + "normalized_name": "fear protocol codename omega starring agent jack banger" + }, + { + "appid": 1440910, + "normalized_name": "gogte" + }, + { + "appid": 1440940, + "normalized_name": "spooky speakeasy" + }, + { + "appid": 1440950, + "normalized_name": "death architect" + }, + { + "appid": 1441090, + "normalized_name": "metal strike" + }, + { + "appid": 1441100, + "normalized_name": "anatine" + }, + { + "appid": 1441120, + "normalized_name": "beatbox runner" + }, + { + "appid": 1441130, + "normalized_name": "emma adventure" + }, + { + "appid": 1441160, + "normalized_name": "haunted experiment" + }, + { + "appid": 1441180, + "normalized_name": "dofamine" + }, + { + "appid": 1441210, + "normalized_name": "beat the nightmare – evil dreams simulator vr" + }, + { + "appid": 1441230, + "normalized_name": "tanto cuore" + }, + { + "appid": 1441240, + "normalized_name": "paradiso guardian" + }, + { + "appid": 1441280, + "normalized_name": "elizabeth's score" + }, + { + "appid": 1441300, + "normalized_name": "huuma mina the secret of immortality (censored)" + }, + { + "appid": 1441340, + "normalized_name": "sunflower code" + }, + { + "appid": 1441400, + "normalized_name": "mason building bricks" + }, + { + "appid": 1441430, + "normalized_name": "wordeous" + }, + { + "appid": 1441480, + "normalized_name": "adventures of megara antigone and the living toys" + }, + { + "appid": 1441500, + "normalized_name": "traceur's dreamlab vr" + }, + { + "appid": 1441520, + "normalized_name": "the jovian system" + }, + { + "appid": 1441530, + "normalized_name": "prepaladin wars" + }, + { + "appid": 1441550, + "normalized_name": "regular human workshop" + }, + { + "appid": 1441560, + "normalized_name": "beast nature" + }, + { + "appid": 1441570, + "normalized_name": "cubiscape 2" + }, + { + "appid": 1441590, + "normalized_name": "hentai maid club" + }, + { + "appid": 1441630, + "normalized_name": "мистер вселенная" + }, + { + "appid": 1441670, + "normalized_name": "sj 19 learns to love!" + }, + { + "appid": 1441680, + "normalized_name": "tree trunk brook" + }, + { + "appid": 1441690, + "normalized_name": "zendovr" + }, + { + "appid": 1441740, + "normalized_name": "frick frack" + }, + { + "appid": 1441750, + "normalized_name": "chasing demons" + }, + { + "appid": 1441760, + "normalized_name": "my business" + }, + { + "appid": 1441770, + "normalized_name": "moonlight in garland" + }, + { + "appid": 1441790, + "normalized_name": "miner dig deep" + }, + { + "appid": 1441830, + "normalized_name": "the wizard game" + }, + { + "appid": 1441840, + "normalized_name": "fall in labyrinth" + }, + { + "appid": 1441850, + "normalized_name": "arcade games collection" + }, + { + "appid": 1442020, + "normalized_name": "essex the whale hunter" + }, + { + "appid": 1442040, + "normalized_name": "我反对这门亲事 i'm against this marriage" + }, + { + "appid": 1442050, + "normalized_name": "super space arcade" + }, + { + "appid": 1442070, + "normalized_name": "claire's cruisin' cafe" + }, + { + "appid": 1442080, + "normalized_name": "conet|コネット" + }, + { + "appid": 1442090, + "normalized_name": "tanasurga" + }, + { + "appid": 1442150, + "normalized_name": "raidfield 2" + }, + { + "appid": 1442160, + "normalized_name": "abyss of the sacrifice" + }, + { + "appid": 1442170, + "normalized_name": "killrun" + }, + { + "appid": 1442190, + "normalized_name": "rise of zombies" + }, + { + "appid": 1442240, + "normalized_name": "save the pirate sea story" + }, + { + "appid": 1442300, + "normalized_name": "rags to dishes" + }, + { + "appid": 1442350, + "normalized_name": "space runner anime" + }, + { + "appid": 1442360, + "normalized_name": "don't get lost" + }, + { + "appid": 1442380, + "normalized_name": "book of shadows" + }, + { + "appid": 1442390, + "normalized_name": "grey scout" + }, + { + "appid": 1442410, + "normalized_name": "pingers" + }, + { + "appid": 1442430, + "normalized_name": "storage hunter simulator" + }, + { + "appid": 1442450, + "normalized_name": "monsters domain" + }, + { + "appid": 1442460, + "normalized_name": "cars and girls" + }, + { + "appid": 1442470, + "normalized_name": "velocityloop zero to lightspeed" + }, + { + "appid": 1442480, + "normalized_name": "prank call" + }, + { + "appid": 1442520, + "normalized_name": "akatori" + }, + { + "appid": 1442530, + "normalized_name": "outbreak island" + }, + { + "appid": 1442590, + "normalized_name": "letter vetter" + }, + { + "appid": 1442610, + "normalized_name": "slaves of magic" + }, + { + "appid": 1442630, + "normalized_name": "entropy" + }, + { + "appid": 1442650, + "normalized_name": "white day vr the courage test" + }, + { + "appid": 1442670, + "normalized_name": "hamster playground" + }, + { + "appid": 1442750, + "normalized_name": "invasion vill" + }, + { + "appid": 1442770, + "normalized_name": "friend fighters" + }, + { + "appid": 1442820, + "normalized_name": "r type final 2" + }, + { + "appid": 1442840, + "normalized_name": "dig deep in galaxies" + }, + { + "appid": 1442850, + "normalized_name": "mortem fallen kingdom" + }, + { + "appid": 1443030, + "normalized_name": "chronotecture the eprologue" + }, + { + "appid": 1443100, + "normalized_name": "rogueslide" + }, + { + "appid": 1443120, + "normalized_name": "beckoned" + }, + { + "appid": 1443160, + "normalized_name": "stratez" + }, + { + "appid": 1443170, + "normalized_name": "rhythm stars climbing" + }, + { + "appid": 1443190, + "normalized_name": "knights of grumthorr" + }, + { + "appid": 1443200, + "normalized_name": "class of '09" + }, + { + "appid": 1443250, + "normalized_name": "training grounds" + }, + { + "appid": 1443260, + "normalized_name": "endless" + }, + { + "appid": 1443300, + "normalized_name": "martha" + }, + { + "appid": 1443310, + "normalized_name": "mr. walker's basement" + }, + { + "appid": 1443330, + "normalized_name": "speedy golf" + }, + { + "appid": 1443360, + "normalized_name": "arcante" + }, + { + "appid": 1443370, + "normalized_name": "the skylia prophecy" + }, + { + "appid": 1443400, + "normalized_name": "coronarun" + }, + { + "appid": 1443430, + "normalized_name": "rogue" + }, + { + "appid": 1443450, + "normalized_name": "neo commanders" + }, + { + "appid": 1443470, + "normalized_name": "hauma a detective noir story" + }, + { + "appid": 1443490, + "normalized_name": "siren head awakening" + }, + { + "appid": 1443500, + "normalized_name": "frog's princess" + }, + { + "appid": 1443600, + "normalized_name": "amazething" + }, + { + "appid": 1443620, + "normalized_name": "pirates vr jolly roger" + }, + { + "appid": 1443630, + "normalized_name": "turbo sloths" + }, + { + "appid": 1443640, + "normalized_name": "horace goes skiing revisited" + }, + { + "appid": 1443650, + "normalized_name": "dubbing time" + }, + { + "appid": 1443680, + "normalized_name": "coloree" + }, + { + "appid": 1443690, + "normalized_name": "wirtschaftswoche virtual reality" + }, + { + "appid": 1443700, + "normalized_name": "go gold castle" + }, + { + "appid": 1443760, + "normalized_name": "snaaker & friends" + }, + { + "appid": 1443810, + "normalized_name": "round 99" + }, + { + "appid": 1443820, + "normalized_name": "bustybiz" + }, + { + "appid": 1443850, + "normalized_name": "social services of the doomed" + }, + { + "appid": 1443910, + "normalized_name": "lamplighter" + }, + { + "appid": 1443920, + "normalized_name": "wizards knights & archers" + }, + { + "appid": 1443950, + "normalized_name": "last hope" + }, + { + "appid": 1443960, + "normalized_name": "spacebus" + }, + { + "appid": 1443980, + "normalized_name": "roman empire wars" + }, + { + "appid": 1443990, + "normalized_name": "strange midnight" + }, + { + "appid": 1444020, + "normalized_name": "reactor tech²" + }, + { + "appid": 1444080, + "normalized_name": "dewdrop dynasty" + }, + { + "appid": 1444090, + "normalized_name": "colorful colore" + }, + { + "appid": 1444110, + "normalized_name": "summerland" + }, + { + "appid": 1444130, + "normalized_name": "typing hearts" + }, + { + "appid": 1444150, + "normalized_name": "blink the last night" + }, + { + "appid": 1444170, + "normalized_name": "dogman" + }, + { + "appid": 1444190, + "normalized_name": "death becomes you mystery visual novel" + }, + { + "appid": 1444300, + "normalized_name": "teacup" + }, + { + "appid": 1444320, + "normalized_name": "cat saves halloween" + }, + { + "appid": 1444350, + "normalized_name": "house" + }, + { + "appid": 1444360, + "normalized_name": "aisling and the tavern of elves" + }, + { + "appid": 1444370, + "normalized_name": "escape the tank" + }, + { + "appid": 1444390, + "normalized_name": "ladder box" + }, + { + "appid": 1444410, + "normalized_name": "yuoni" + }, + { + "appid": 1444420, + "normalized_name": "womg lite version" + }, + { + "appid": 1444430, + "normalized_name": "3d hentai puzzle" + }, + { + "appid": 1444480, + "normalized_name": "turing" + }, + { + "appid": 1444490, + "normalized_name": "why pizza?" + }, + { + "appid": 1444510, + "normalized_name": "task men" + }, + { + "appid": 1444540, + "normalized_name": "deadly desert" + }, + { + "appid": 1444550, + "normalized_name": "waronoi" + }, + { + "appid": 1444570, + "normalized_name": "fantasy royal vr" + }, + { + "appid": 1444580, + "normalized_name": "evil below" + }, + { + "appid": 1444610, + "normalized_name": "knuckers test fight" + }, + { + "appid": 1444650, + "normalized_name": "haydee 2" + }, + { + "appid": 1444670, + "normalized_name": "greed knights" + }, + { + "appid": 1444700, + "normalized_name": "zen! slider" + }, + { + "appid": 1444710, + "normalized_name": "firejumpers inferno" + }, + { + "appid": 1444730, + "normalized_name": "my sweet washing machine!" + }, + { + "appid": 1444740, + "normalized_name": "maniac path" + }, + { + "appid": 1444750, + "normalized_name": "dreamwatcher" + }, + { + "appid": 1444760, + "normalized_name": "exotium episode 2" + }, + { + "appid": 1444770, + "normalized_name": "astro ace" + }, + { + "appid": 1444780, + "normalized_name": "the vaults" + }, + { + "appid": 1444800, + "normalized_name": "sticc" + }, + { + "appid": 1444820, + "normalized_name": "scarenoid" + }, + { + "appid": 1444860, + "normalized_name": "waifu love" + }, + { + "appid": 1444870, + "normalized_name": "ostatni dzien w pracy" + }, + { + "appid": 1444890, + "normalized_name": "crazy mafioso" + }, + { + "appid": 1444920, + "normalized_name": "doctor who the edge of reality" + }, + { + "appid": 1444940, + "normalized_name": "galaxy guardian royale" + }, + { + "appid": 1444950, + "normalized_name": "demon purge saga" + }, + { + "appid": 1444980, + "normalized_name": "playhear square paper city" + }, + { + "appid": 1445010, + "normalized_name": "rocket explorer" + }, + { + "appid": 1445040, + "normalized_name": "space choice data analyzer" + }, + { + "appid": 1445070, + "normalized_name": "specular stranded" + }, + { + "appid": 1445090, + "normalized_name": "ero shooter" + }, + { + "appid": 1445110, + "normalized_name": "the legend of arcadieu 2" + }, + { + "appid": 1445120, + "normalized_name": "fast typing master" + }, + { + "appid": 1445150, + "normalized_name": "leo the unexpected journey" + }, + { + "appid": 1445190, + "normalized_name": "doubleshake" + }, + { + "appid": 1445240, + "normalized_name": "tempo" + }, + { + "appid": 1445250, + "normalized_name": "lab escape" + }, + { + "appid": 1445260, + "normalized_name": "hoards of glory" + }, + { + "appid": 1445360, + "normalized_name": "muzegate" + }, + { + "appid": 1445370, + "normalized_name": "imposters countdown" + }, + { + "appid": 1445400, + "normalized_name": "eternal dungeon" + }, + { + "appid": 1445410, + "normalized_name": "aka ninja vr" + }, + { + "appid": 1445430, + "normalized_name": "ruinverse" + }, + { + "appid": 1445440, + "normalized_name": "blacksmith of the sand kingdom" + }, + { + "appid": 1445480, + "normalized_name": "determinant" + }, + { + "appid": 1445500, + "normalized_name": "city 909" + }, + { + "appid": 1445540, + "normalized_name": "the chronicles of moses and the exodus" + }, + { + "appid": 1445580, + "normalized_name": "good puzzle music" + }, + { + "appid": 1445600, + "normalized_name": "taurion" + }, + { + "appid": 1445650, + "normalized_name": "vylan" + }, + { + "appid": 1445670, + "normalized_name": "依澪 zero plan" + }, + { + "appid": 1445720, + "normalized_name": "life of fly" + }, + { + "appid": 1445740, + "normalized_name": "carpathian night starring bela lugosi" + }, + { + "appid": 1445750, + "normalized_name": "gaia 2 ancient mysteries" + }, + { + "appid": 1445790, + "normalized_name": "make way" + }, + { + "appid": 1445810, + "normalized_name": "draft day sports pro basketball 2021" + }, + { + "appid": 1445850, + "normalized_name": "bomb squad" + }, + { + "appid": 1445860, + "normalized_name": "fabulous place" + }, + { + "appid": 1445870, + "normalized_name": "terra bomber" + }, + { + "appid": 1445880, + "normalized_name": "rockbeasts" + }, + { + "appid": 1445890, + "normalized_name": "lithoi trials of memory" + }, + { + "appid": 1445980, + "normalized_name": "tiny traffic" + }, + { + "appid": 1446000, + "normalized_name": "fishy 3d" + }, + { + "appid": 1446050, + "normalized_name": "revel" + }, + { + "appid": 1446090, + "normalized_name": "pago forest dragon's revenge" + }, + { + "appid": 1446100, + "normalized_name": "pole of cold" + }, + { + "appid": 1446160, + "normalized_name": "toy soldiers hd" + }, + { + "appid": 1446180, + "normalized_name": "leak elite" + }, + { + "appid": 1446200, + "normalized_name": "cybloc" + }, + { + "appid": 1446230, + "normalized_name": "chasing tail" + }, + { + "appid": 1446250, + "normalized_name": "virtual girl sex simulatorvr" + }, + { + "appid": 1446280, + "normalized_name": "alice in wonderland a jigsaw puzzle tale" + }, + { + "appid": 1446310, + "normalized_name": "super/human identity" + }, + { + "appid": 1446320, + "normalized_name": "harvest island beginnings" + }, + { + "appid": 1446330, + "normalized_name": "100 hidden snails" + }, + { + "appid": 1446340, + "normalized_name": "shaype" + }, + { + "appid": 1446350, + "normalized_name": "you will die here tonight" + }, + { + "appid": 1446370, + "normalized_name": "super marxist twins" + }, + { + "appid": 1446410, + "normalized_name": "slime with a sword" + }, + { + "appid": 1446420, + "normalized_name": "otherside" + }, + { + "appid": 1446450, + "normalized_name": "pretty girls klondike solitaire" + }, + { + "appid": 1446460, + "normalized_name": "sovereign" + }, + { + "appid": 1446470, + "normalized_name": "dome discover" + }, + { + "appid": 1446480, + "normalized_name": "atelier tia" + }, + { + "appid": 1446510, + "normalized_name": "hyforge" + }, + { + "appid": 1446530, + "normalized_name": "girauden strike force" + }, + { + "appid": 1446540, + "normalized_name": "fillit" + }, + { + "appid": 1446560, + "normalized_name": "grub gauntlet" + }, + { + "appid": 1446640, + "normalized_name": "rifle dodger" + }, + { + "appid": 1446650, + "normalized_name": "bravely default ii" + }, + { + "appid": 1446670, + "normalized_name": "tin tandem" + }, + { + "appid": 1446690, + "normalized_name": "super ultimatum quiz" + }, + { + "appid": 1446720, + "normalized_name": "is it wrong to try to shoot 'em up girls in a dungeon?" + }, + { + "appid": 1446750, + "normalized_name": "healing animal" + }, + { + "appid": 1446780, + "normalized_name": "monster hunter rise" + }, + { + "appid": 1446790, + "normalized_name": "crude" + }, + { + "appid": 1446830, + "normalized_name": "ガリア戦記雄篇アンナーレス" + }, + { + "appid": 1446840, + "normalized_name": "broken memories" + }, + { + "appid": 1446850, + "normalized_name": "hentai furry 2" + }, + { + "appid": 1446860, + "normalized_name": "gonne wrong" + }, + { + "appid": 1446880, + "normalized_name": "space revenge" + }, + { + "appid": 1446890, + "normalized_name": "shadow fight arena" + }, + { + "appid": 1446900, + "normalized_name": "fallen tear the ascension" + }, + { + "appid": 1446930, + "normalized_name": "merge & blade" + }, + { + "appid": 1446950, + "normalized_name": "frontline grunt" + }, + { + "appid": 1446980, + "normalized_name": "quick square" + }, + { + "appid": 1447000, + "normalized_name": "motogp21" + }, + { + "appid": 1447020, + "normalized_name": "vortex escape" + }, + { + "appid": 1447050, + "normalized_name": "enoki" + }, + { + "appid": 1447060, + "normalized_name": "jad" + }, + { + "appid": 1447070, + "normalized_name": "spinning_kid_2" + }, + { + "appid": 1447080, + "normalized_name": "smfly ice age" + }, + { + "appid": 1447090, + "normalized_name": "tarek" + }, + { + "appid": 1447140, + "normalized_name": "lost & round" + }, + { + "appid": 1447160, + "normalized_name": "difficult platformer game" + }, + { + "appid": 1447190, + "normalized_name": "владимир 2021" + }, + { + "appid": 1447210, + "normalized_name": "obey the law" + }, + { + "appid": 1447240, + "normalized_name": "deadfright" + }, + { + "appid": 1447250, + "normalized_name": "junxions" + }, + { + "appid": 1447260, + "normalized_name": "mystical echoes" + }, + { + "appid": 1447280, + "normalized_name": "my pets maze" + }, + { + "appid": 1447290, + "normalized_name": "tactical operations force" + }, + { + "appid": 1447300, + "normalized_name": "anarchyfield infinite euphoric level destruction" + }, + { + "appid": 1447310, + "normalized_name": "invisible cock they never saw it cumming!" + }, + { + "appid": 1447330, + "normalized_name": "born race" + }, + { + "appid": 1447350, + "normalized_name": "arcus chroma classic" + }, + { + "appid": 1447400, + "normalized_name": "samurai slaughter house" + }, + { + "appid": 1447410, + "normalized_name": "mandew vs the colorless curse" + }, + { + "appid": 1447470, + "normalized_name": "全战天下" + }, + { + "appid": 1447490, + "normalized_name": "hentai chicks 2" + }, + { + "appid": 1447540, + "normalized_name": "enypnion" + }, + { + "appid": 1447570, + "normalized_name": "monkey king vs transformers" + }, + { + "appid": 1447590, + "normalized_name": "rogue cards" + }, + { + "appid": 1447600, + "normalized_name": "pandemos" + }, + { + "appid": 1447640, + "normalized_name": "deadly cosmic" + }, + { + "appid": 1447650, + "normalized_name": "space station designer" + }, + { + "appid": 1447700, + "normalized_name": "zpellcatz" + }, + { + "appid": 1447710, + "normalized_name": "death by frostbyte" + }, + { + "appid": 1447730, + "normalized_name": "town fall zombie" + }, + { + "appid": 1447740, + "normalized_name": "queerskins ark" + }, + { + "appid": 1447800, + "normalized_name": "christmas rampage" + }, + { + "appid": 1447820, + "normalized_name": "the girl from arkanya" + }, + { + "appid": 1447830, + "normalized_name": "battlemetal" + }, + { + "appid": 1447870, + "normalized_name": "鬼王~oni" + }, + { + "appid": 1447900, + "normalized_name": "gold dust" + }, + { + "appid": 1447920, + "normalized_name": "video world" + }, + { + "appid": 1447970, + "normalized_name": "spacebug" + }, + { + "appid": 1448000, + "normalized_name": "迷离诡夜 blurred weird night" + }, + { + "appid": 1448030, + "normalized_name": "press any button" + }, + { + "appid": 1448040, + "normalized_name": "the rebels prologue" + }, + { + "appid": 1448060, + "normalized_name": "radminton" + }, + { + "appid": 1448070, + "normalized_name": "kosmosquad" + }, + { + "appid": 1448090, + "normalized_name": "retention a love story" + }, + { + "appid": 1448110, + "normalized_name": "exotium episode 3" + }, + { + "appid": 1448120, + "normalized_name": "exotium episode 4" + }, + { + "appid": 1448130, + "normalized_name": "exotium episode 5" + }, + { + "appid": 1448140, + "normalized_name": "beat bolt city" + }, + { + "appid": 1448150, + "normalized_name": "exotium episode 6" + }, + { + "appid": 1448160, + "normalized_name": "exotium episode 7" + }, + { + "appid": 1448170, + "normalized_name": "exotium episode 8" + }, + { + "appid": 1448180, + "normalized_name": "runlancer" + }, + { + "appid": 1448190, + "normalized_name": "fighties 2" + }, + { + "appid": 1448200, + "normalized_name": "laser skirmish" + }, + { + "appid": 1448220, + "normalized_name": "konsairi" + }, + { + "appid": 1448230, + "normalized_name": "avalom ancestral heroes" + }, + { + "appid": 1448260, + "normalized_name": "下一站江湖ⅰ" + }, + { + "appid": 1448290, + "normalized_name": "羅斯之旅 roce's journey" + }, + { + "appid": 1448300, + "normalized_name": "nuri vr coding" + }, + { + "appid": 1448310, + "normalized_name": "_keyboardkommander" + }, + { + "appid": 1448320, + "normalized_name": "boat warfare" + }, + { + "appid": 1448330, + "normalized_name": "elios vr" + }, + { + "appid": 1448350, + "normalized_name": "quantaar" + }, + { + "appid": 1448400, + "normalized_name": "蓝实战队" + }, + { + "appid": 1448440, + "normalized_name": "wo long fallen dynasty" + }, + { + "appid": 1448450, + "normalized_name": "super power rising of a.i." + }, + { + "appid": 1448520, + "normalized_name": "magicians' legacy prologue" + }, + { + "appid": 1448530, + "normalized_name": "soccer manager 2021" + }, + { + "appid": 1448540, + "normalized_name": "my poodle's diary visual novel" + }, + { + "appid": 1448560, + "normalized_name": "scrapbooking" + }, + { + "appid": 1448590, + "normalized_name": "brawl chess gambit" + }, + { + "appid": 1448600, + "normalized_name": "sheepy" + }, + { + "appid": 1448610, + "normalized_name": "niro" + }, + { + "appid": 1448620, + "normalized_name": "be witches" + }, + { + "appid": 1448630, + "normalized_name": "neighbor watching" + }, + { + "appid": 1448640, + "normalized_name": "busty maid creampie heaven!" + }, + { + "appid": 1448650, + "normalized_name": "close contact" + }, + { + "appid": 1448740, + "normalized_name": "jumpy paws world adventures" + }, + { + "appid": 1448750, + "normalized_name": "hentai beach" + }, + { + "appid": 1448760, + "normalized_name": "the plane effect" + }, + { + "appid": 1448780, + "normalized_name": "jewel match origins palais imperial collector's" + }, + { + "appid": 1448790, + "normalized_name": "hentai aim practice" + }, + { + "appid": 1448800, + "normalized_name": "biocrisis" + }, + { + "appid": 1448820, + "normalized_name": "hydrofoil generation" + }, + { + "appid": 1448840, + "normalized_name": "very very valet" + }, + { + "appid": 1448850, + "normalized_name": "an absolutely not suspicious cabin in the woods" + }, + { + "appid": 1448880, + "normalized_name": "unity invaders" + }, + { + "appid": 1448910, + "normalized_name": "guild hall adventures" + }, + { + "appid": 1448940, + "normalized_name": "warlock bentspine toilet" + }, + { + "appid": 1448950, + "normalized_name": "glitch assassin" + }, + { + "appid": 1448960, + "normalized_name": "dicey krime traveler of time" + }, + { + "appid": 1448970, + "normalized_name": "cipher 61" + }, + { + "appid": 1448990, + "normalized_name": "spearmint goose" + }, + { + "appid": 1449000, + "normalized_name": "call of ldpr" + }, + { + "appid": 1449010, + "normalized_name": "exotium episode 9" + }, + { + "appid": 1449020, + "normalized_name": "exotium episode 10" + }, + { + "appid": 1449040, + "normalized_name": "exotium episode 11" + }, + { + "appid": 1449060, + "normalized_name": "rundom" + }, + { + "appid": 1449070, + "normalized_name": "divinity chronicles journey to the west" + }, + { + "appid": 1449100, + "normalized_name": "kore" + }, + { + "appid": 1449110, + "normalized_name": "the outer worlds 2" + }, + { + "appid": 1449140, + "normalized_name": "foglight" + }, + { + "appid": 1449180, + "normalized_name": "traxion" + }, + { + "appid": 1449190, + "normalized_name": "seafarer" + }, + { + "appid": 1449200, + "normalized_name": "ai the somnium files nirvana initiative" + }, + { + "appid": 1449230, + "normalized_name": "glitchhikers the spaces between" + }, + { + "appid": 1449250, + "normalized_name": "狂潮 staggering through the dark" + }, + { + "appid": 1449270, + "normalized_name": "night of the video dead prelude" + }, + { + "appid": 1449280, + "normalized_name": "ghostbusters the video game" + }, + { + "appid": 1449320, + "normalized_name": "alfred hitchcock vertigo" + }, + { + "appid": 1449330, + "normalized_name": "drink bar maid regression" + }, + { + "appid": 1449370, + "normalized_name": "the benza rpg" + }, + { + "appid": 1449380, + "normalized_name": "colored shapes" + }, + { + "appid": 1449400, + "normalized_name": "the games winter" + }, + { + "appid": 1449420, + "normalized_name": "hentai dates" + }, + { + "appid": 1449430, + "normalized_name": "jendo origins" + }, + { + "appid": 1449470, + "normalized_name": "bubble gun 3d" + }, + { + "appid": 1449480, + "normalized_name": "impossible mission revisited" + }, + { + "appid": 1449500, + "normalized_name": "bassmaster fishing" + }, + { + "appid": 1449510, + "normalized_name": "henchman story" + }, + { + "appid": 1449550, + "normalized_name": "chinese empire" + }, + { + "appid": 1449570, + "normalized_name": "the godkiller chapter 1" + }, + { + "appid": 1449580, + "normalized_name": "the gurion mountains" + }, + { + "appid": 1449590, + "normalized_name": "leonardo's island" + }, + { + "appid": 1449620, + "normalized_name": "squirmish the videogame of brawling beasties" + }, + { + "appid": 1449630, + "normalized_name": "crash dive 2" + }, + { + "appid": 1449640, + "normalized_name": "revenge on the streets 2" + }, + { + "appid": 1449650, + "normalized_name": "casual challenge players club anime bilhar game" + }, + { + "appid": 1449660, + "normalized_name": "bric à brac" + }, + { + "appid": 1449670, + "normalized_name": "relics of the lost age" + }, + { + "appid": 1449690, + "normalized_name": "the walking dead the telltale series" + }, + { + "appid": 1449700, + "normalized_name": "soul machine" + }, + { + "appid": 1449730, + "normalized_name": "scarlet city of devils" + }, + { + "appid": 1449750, + "normalized_name": "space commander war and trade" + }, + { + "appid": 1449760, + "normalized_name": "project summit" + }, + { + "appid": 1449780, + "normalized_name": "cyberwar neon city" + }, + { + "appid": 1449820, + "normalized_name": "police interceptors" + }, + { + "appid": 1449840, + "normalized_name": "escape together" + }, + { + "appid": 1449850, + "normalized_name": "yu gi oh! master duel" + }, + { + "appid": 1449920, + "normalized_name": "grunnd" + }, + { + "appid": 1449940, + "normalized_name": "diamond hunter" + }, + { + "appid": 1449960, + "normalized_name": "crazy rabbit antilogic" + }, + { + "appid": 1449980, + "normalized_name": "alien animals sandbox" + }, + { + "appid": 1450000, + "normalized_name": "safe squares" + }, + { + "appid": 1450020, + "normalized_name": "ellie's travel diary" + }, + { + "appid": 1450050, + "normalized_name": "rescue team planet savers" + }, + { + "appid": 1450060, + "normalized_name": "down and out" + }, + { + "appid": 1450070, + "normalized_name": "dark blocks" + }, + { + "appid": 1450080, + "normalized_name": "the legend of heroes sen no kiseki iii" + }, + { + "appid": 1450090, + "normalized_name": "the legend of heroes sen no kiseki ii kai the erebonian civil war" + }, + { + "appid": 1450100, + "normalized_name": "luna" + }, + { + "appid": 1450120, + "normalized_name": "the legend of heroes sen no kiseki i kai thors military academy 1204" + }, + { + "appid": 1450150, + "normalized_name": "durka simulator" + }, + { + "appid": 1450160, + "normalized_name": "vladiators" + }, + { + "appid": 1450170, + "normalized_name": "打工人的十日女友 my ten day girlfriend" + }, + { + "appid": 1450180, + "normalized_name": "haunt chaser" + }, + { + "appid": 1450190, + "normalized_name": "super whiplash" + }, + { + "appid": 1450200, + "normalized_name": "space squadron" + }, + { + "appid": 1450210, + "normalized_name": "the game of squids parody game" + }, + { + "appid": 1450240, + "normalized_name": "summoner apprentice" + }, + { + "appid": 1450250, + "normalized_name": "distant bloom" + }, + { + "appid": 1450270, + "normalized_name": "kill fish" + }, + { + "appid": 1450280, + "normalized_name": "chill z" + }, + { + "appid": 1450290, + "normalized_name": "metal tales overkill" + }, + { + "appid": 1450300, + "normalized_name": "battleships command of the sea" + }, + { + "appid": 1450310, + "normalized_name": "hidden shapes animals jigsaw puzzle game" + }, + { + "appid": 1450330, + "normalized_name": "concordia digital" + }, + { + "appid": 1450410, + "normalized_name": "scrap games" + }, + { + "appid": 1450530, + "normalized_name": "allotropy" + }, + { + "appid": 1450590, + "normalized_name": "vrkraft" + }, + { + "appid": 1450620, + "normalized_name": "alien duel elements" + }, + { + "appid": 1450640, + "normalized_name": "plague doctor contagion 430 bce–2020 ad" + }, + { + "appid": 1450650, + "normalized_name": "osteoblasts" + }, + { + "appid": 1450660, + "normalized_name": "brick breaker premium 2" + }, + { + "appid": 1450720, + "normalized_name": "street massacre" + }, + { + "appid": 1450730, + "normalized_name": "kuro neko" + }, + { + "appid": 1450750, + "normalized_name": "deva|the haunted game" + }, + { + "appid": 1450760, + "normalized_name": "girls on puzzle" + }, + { + "appid": 1450780, + "normalized_name": "gael's quest" + }, + { + "appid": 1450790, + "normalized_name": "crazy wheels" + }, + { + "appid": 1450800, + "normalized_name": "lilith odyssey" + }, + { + "appid": 1450830, + "normalized_name": "at dead of night" + }, + { + "appid": 1450880, + "normalized_name": "wound of the west" + }, + { + "appid": 1450900, + "normalized_name": "desynced" + }, + { + "appid": 1451010, + "normalized_name": "pop bowling vr" + }, + { + "appid": 1451030, + "normalized_name": "star hunter dx" + }, + { + "appid": 1451040, + "normalized_name": "bliss" + }, + { + "appid": 1451050, + "normalized_name": "sherman commander" + }, + { + "appid": 1451080, + "normalized_name": "dungeon encounters" + }, + { + "appid": 1451090, + "normalized_name": "tactics ogre reborn" + }, + { + "appid": 1451110, + "normalized_name": "lawyer guy defender of justice" + }, + { + "appid": 1451120, + "normalized_name": "sunlight" + }, + { + "appid": 1451160, + "normalized_name": "bakumatsu renka shinsengumi" + }, + { + "appid": 1451190, + "normalized_name": "undisputed" + }, + { + "appid": 1451200, + "normalized_name": "召唤与合体" + }, + { + "appid": 1451210, + "normalized_name": "construction worker simulator" + }, + { + "appid": 1451220, + "normalized_name": "heistfest" + }, + { + "appid": 1451230, + "normalized_name": "blood of titans" + }, + { + "appid": 1451240, + "normalized_name": "barbarian simulator" + }, + { + "appid": 1451300, + "normalized_name": "gridmath" + }, + { + "appid": 1451360, + "normalized_name": "despatch entity astray" + }, + { + "appid": 1451410, + "normalized_name": "watch your ride bicycle game" + }, + { + "appid": 1451420, + "normalized_name": "construction playground" + }, + { + "appid": 1451430, + "normalized_name": "survival sisters:2048+1" + }, + { + "appid": 1451440, + "normalized_name": "void encounter" + }, + { + "appid": 1451470, + "normalized_name": "el dorado the golden city builder" + }, + { + "appid": 1451480, + "normalized_name": "the greatest penguin heist of all time" + }, + { + "appid": 1451490, + "normalized_name": "guns and waifus" + }, + { + "appid": 1451500, + "normalized_name": "the curse of fafnir" + }, + { + "appid": 1451540, + "normalized_name": "blade flash death" + }, + { + "appid": 1451560, + "normalized_name": "bascatball mars basketball & cat" + }, + { + "appid": 1451570, + "normalized_name": "cosmic magus" + }, + { + "appid": 1451580, + "normalized_name": "hypercide" + }, + { + "appid": 1451650, + "normalized_name": "demon turf trials" + }, + { + "appid": 1451680, + "normalized_name": "game master engine" + }, + { + "appid": 1451720, + "normalized_name": "minesweeper classy" + }, + { + "appid": 1451740, + "normalized_name": "children of silentown prologue" + }, + { + "appid": 1451760, + "normalized_name": "titankin prologue" + }, + { + "appid": 1451770, + "normalized_name": "outranked" + }, + { + "appid": 1451800, + "normalized_name": "super vs. world" + }, + { + "appid": 1451810, + "normalized_name": "lego 2k drive" + }, + { + "appid": 1451830, + "normalized_name": "obscury the last" + }, + { + "appid": 1451840, + "normalized_name": "heart of metal" + }, + { + "appid": 1451860, + "normalized_name": "cyber badminton 2020" + }, + { + "appid": 1451870, + "normalized_name": "sunset drive 1986" + }, + { + "appid": 1451880, + "normalized_name": "color breakers" + }, + { + "appid": 1451890, + "normalized_name": "unknown planet" + }, + { + "appid": 1451920, + "normalized_name": "逃离地球" + }, + { + "appid": 1451940, + "normalized_name": "needy girl overdose" + }, + { + "appid": 1451950, + "normalized_name": "street outlaws 2 winner takes all" + }, + { + "appid": 1451970, + "normalized_name": "satori" + }, + { + "appid": 1451980, + "normalized_name": "taiwan richman" + }, + { + "appid": 1452000, + "normalized_name": "it's six random characters and a single floor dungeon that's the whole game" + }, + { + "appid": 1452020, + "normalized_name": "百合婚姻介紹所 yuri dating agency" + }, + { + "appid": 1452070, + "normalized_name": "lone ruin" + }, + { + "appid": 1452110, + "normalized_name": "dominium mundi" + }, + { + "appid": 1452130, + "normalized_name": "my jigsaw adventures forgotten destiny" + }, + { + "appid": 1452200, + "normalized_name": "waifu discovered 2" + }, + { + "appid": 1452210, + "normalized_name": "input6" + }, + { + "appid": 1452220, + "normalized_name": "freddy spaghetti 2.0" + }, + { + "appid": 1452250, + "normalized_name": "underground garage" + }, + { + "appid": 1452260, + "normalized_name": "8 bit space" + }, + { + "appid": 1452270, + "normalized_name": "魔物警戒" + }, + { + "appid": 1452280, + "normalized_name": "devastator" + }, + { + "appid": 1452300, + "normalized_name": "snakenpon" + }, + { + "appid": 1452320, + "normalized_name": "hell invades heaven" + }, + { + "appid": 1452350, + "normalized_name": "tsukisas arena" + }, + { + "appid": 1452360, + "normalized_name": "the tides of time" + }, + { + "appid": 1452410, + "normalized_name": "case kovacs agent 228" + }, + { + "appid": 1452500, + "normalized_name": "the good life" + }, + { + "appid": 1452540, + "normalized_name": "frincess&cnight" + }, + { + "appid": 1452600, + "normalized_name": "potato's dream" + }, + { + "appid": 1452630, + "normalized_name": "toast defense" + }, + { + "appid": 1452670, + "normalized_name": "simp attack" + }, + { + "appid": 1452700, + "normalized_name": "宥蘿的奇幻冒險 yuro's fantasy adventure" + }, + { + "appid": 1452770, + "normalized_name": "super neat cat" + }, + { + "appid": 1452790, + "normalized_name": "izbot 2" + }, + { + "appid": 1452830, + "normalized_name": "disc space" + }, + { + "appid": 1452850, + "normalized_name": "tiny toy tanks" + }, + { + "appid": 1452860, + "normalized_name": "orlando the fireman" + }, + { + "appid": 1452870, + "normalized_name": "roads of time 2 odyssey" + }, + { + "appid": 1452890, + "normalized_name": "the quiet void" + }, + { + "appid": 1452900, + "normalized_name": "xeno shooter" + }, + { + "appid": 1452910, + "normalized_name": "soul shifter" + }, + { + "appid": 1452950, + "normalized_name": "seditionis tower defense" + }, + { + "appid": 1452990, + "normalized_name": "hero allstars void invasion" + }, + { + "appid": 1453000, + "normalized_name": "adrpan" + }, + { + "appid": 1453010, + "normalized_name": "battle arena robot apocalypse" + }, + { + "appid": 1453030, + "normalized_name": "hellworld!" + }, + { + "appid": 1453080, + "normalized_name": "drumidia" + }, + { + "appid": 1453130, + "normalized_name": "lightsmith" + }, + { + "appid": 1453140, + "normalized_name": "abyss the forgotten past prologue" + }, + { + "appid": 1453160, + "normalized_name": "tricky typing" + }, + { + "appid": 1453200, + "normalized_name": "metu caligine" + }, + { + "appid": 1453220, + "normalized_name": "be a pirate" + }, + { + "appid": 1453230, + "normalized_name": "hiis" + }, + { + "appid": 1453250, + "normalized_name": "cinema simulator" + }, + { + "appid": 1453270, + "normalized_name": "craftout" + }, + { + "appid": 1453280, + "normalized_name": "fists of fire 美鈴伝説" + }, + { + "appid": 1453350, + "normalized_name": "veiled basilisk" + }, + { + "appid": 1453400, + "normalized_name": "towermancer" + }, + { + "appid": 1453430, + "normalized_name": "behind the horizon" + }, + { + "appid": 1453440, + "normalized_name": "hentai vr 18+" + }, + { + "appid": 1453450, + "normalized_name": "myth bearer" + }, + { + "appid": 1453460, + "normalized_name": "trials of argolis" + }, + { + "appid": 1453480, + "normalized_name": "dimensions" + }, + { + "appid": 1453490, + "normalized_name": "deducto" + }, + { + "appid": 1453600, + "normalized_name": "night reverie prologue" + }, + { + "appid": 1453640, + "normalized_name": "valthirian arc hero school story 2" + }, + { + "appid": 1453660, + "normalized_name": "mana gloom" + }, + { + "appid": 1453670, + "normalized_name": "in search of fon vitae" + }, + { + "appid": 1453680, + "normalized_name": "pocket and zooom" + }, + { + "appid": 1453710, + "normalized_name": "castle formers" + }, + { + "appid": 1453740, + "normalized_name": "dungeon of nazarick" + }, + { + "appid": 1453790, + "normalized_name": "the serpent rogue" + }, + { + "appid": 1453840, + "normalized_name": "killer infected one of us" + }, + { + "appid": 1453850, + "normalized_name": "pro cycling manager 2021" + }, + { + "appid": 1453870, + "normalized_name": "flow" + }, + { + "appid": 1453900, + "normalized_name": "curse of the sea rats" + }, + { + "appid": 1453920, + "normalized_name": "圣三国英杰传" + }, + { + "appid": 1453940, + "normalized_name": "deep space" + }, + { + "appid": 1453960, + "normalized_name": "no more surffer" + }, + { + "appid": 1453990, + "normalized_name": "inspire" + }, + { + "appid": 1454000, + "normalized_name": "shattered heaven" + }, + { + "appid": 1454010, + "normalized_name": "diary of lucie" + }, + { + "appid": 1454030, + "normalized_name": "lotharus bacon ale & repeat" + }, + { + "appid": 1454050, + "normalized_name": "tour de france 2021" + }, + { + "appid": 1454060, + "normalized_name": "shooty" + }, + { + "appid": 1454080, + "normalized_name": "dino galaxy tennis" + }, + { + "appid": 1454090, + "normalized_name": "army of numbers" + }, + { + "appid": 1454100, + "normalized_name": "project hive" + }, + { + "appid": 1454110, + "normalized_name": "desolation end of days" + }, + { + "appid": 1454130, + "normalized_name": "ezra's legacy" + }, + { + "appid": 1454140, + "normalized_name": "superchicos" + }, + { + "appid": 1454150, + "normalized_name": "battle alchemy" + }, + { + "appid": 1454160, + "normalized_name": "one more island" + }, + { + "appid": 1454220, + "normalized_name": "reign and ruin" + }, + { + "appid": 1454270, + "normalized_name": "desert pirates" + }, + { + "appid": 1454320, + "normalized_name": "labrat" + }, + { + "appid": 1454340, + "normalized_name": "auto island" + }, + { + "appid": 1454360, + "normalized_name": "super star shooter 16" + }, + { + "appid": 1454370, + "normalized_name": "starseeker astroneer expeditions" + }, + { + "appid": 1454380, + "normalized_name": "confined vr" + }, + { + "appid": 1454390, + "normalized_name": "the farm" + }, + { + "appid": 1454400, + "normalized_name": "cookie clicker" + }, + { + "appid": 1454410, + "normalized_name": "dato of srivijaya" + }, + { + "appid": 1454430, + "normalized_name": "arc apellago" + }, + { + "appid": 1454480, + "normalized_name": "mystic fate" + }, + { + "appid": 1454490, + "normalized_name": "riot operator" + }, + { + "appid": 1454520, + "normalized_name": "monolisk" + }, + { + "appid": 1454540, + "normalized_name": "lapin" + }, + { + "appid": 1454550, + "normalized_name": "goop loop" + }, + { + "appid": 1454570, + "normalized_name": "lost voice" + }, + { + "appid": 1454580, + "normalized_name": "trump vs covid save the world clicker" + }, + { + "appid": 1454600, + "normalized_name": "doctor bunny" + }, + { + "appid": 1454640, + "normalized_name": "a tale of paper refolded" + }, + { + "appid": 1454650, + "normalized_name": "kanso" + }, + { + "appid": 1454660, + "normalized_name": "knight of the parking lot" + }, + { + "appid": 1454690, + "normalized_name": "stupid stories" + }, + { + "appid": 1454700, + "normalized_name": "cube conflict" + }, + { + "appid": 1454720, + "normalized_name": "international tennis open" + }, + { + "appid": 1454730, + "normalized_name": "chenso club" + }, + { + "appid": 1454800, + "normalized_name": "light for plants" + }, + { + "appid": 1454930, + "normalized_name": "technorunner" + }, + { + "appid": 1454950, + "normalized_name": "xob" + }, + { + "appid": 1454960, + "normalized_name": "dark sky" + }, + { + "appid": 1454970, + "normalized_name": "new tales from the borderlands" + }, + { + "appid": 1455000, + "normalized_name": "the last relic" + }, + { + "appid": 1455020, + "normalized_name": "tormenta do tempo" + }, + { + "appid": 1455040, + "normalized_name": "mindmist" + }, + { + "appid": 1455060, + "normalized_name": "terminus" + }, + { + "appid": 1455070, + "normalized_name": "countess in crimson" + }, + { + "appid": 1455080, + "normalized_name": "minesweeper ng" + }, + { + "appid": 1455090, + "normalized_name": "good puzzle castles" + }, + { + "appid": 1455100, + "normalized_name": "superhero" + }, + { + "appid": 1455120, + "normalized_name": "pumping simulator" + }, + { + "appid": 1455130, + "normalized_name": "number one rich" + }, + { + "appid": 1455140, + "normalized_name": "super donald world 2024 🦅" + }, + { + "appid": 1455200, + "normalized_name": "dreams of fear" + }, + { + "appid": 1455220, + "normalized_name": "succubus farm" + }, + { + "appid": 1455230, + "normalized_name": "dungeon slime puzzle's adventure" + }, + { + "appid": 1455290, + "normalized_name": "lava escape mine" + }, + { + "appid": 1455300, + "normalized_name": "glory of rome" + }, + { + "appid": 1455380, + "normalized_name": "quiet godo" + }, + { + "appid": 1455390, + "normalized_name": "uboat the silent wolf vr" + }, + { + "appid": 1455420, + "normalized_name": "choco pixel s" + }, + { + "appid": 1455430, + "normalized_name": "harvest green" + }, + { + "appid": 1455450, + "normalized_name": "to hell with the ugly" + }, + { + "appid": 1455460, + "normalized_name": "enthrean radiance the first strike" + }, + { + "appid": 1455490, + "normalized_name": "deadzone exodus" + }, + { + "appid": 1455510, + "normalized_name": "dragon's hoard" + }, + { + "appid": 1455540, + "normalized_name": "smash track drifters" + }, + { + "appid": 1455560, + "normalized_name": "cyberpunica 2.0.2.0" + }, + { + "appid": 1455590, + "normalized_name": "sword of the necromancer prologue" + }, + { + "appid": 1455610, + "normalized_name": "little martian" + }, + { + "appid": 1455630, + "normalized_name": "the game of life 2" + }, + { + "appid": 1455650, + "normalized_name": "facing" + }, + { + "appid": 1455680, + "normalized_name": "be hunted" + }, + { + "appid": 1455730, + "normalized_name": "mahjong worlds" + }, + { + "appid": 1455740, + "normalized_name": "outlaw driver simulator" + }, + { + "appid": 1455750, + "normalized_name": "growbots battle academy" + }, + { + "appid": 1455760, + "normalized_name": "moki" + }, + { + "appid": 1455780, + "normalized_name": "big larry" + }, + { + "appid": 1455790, + "normalized_name": "horroyale" + }, + { + "appid": 1455840, + "normalized_name": "dorfromantik" + }, + { + "appid": 1455900, + "normalized_name": "plunder panic" + }, + { + "appid": 1455910, + "normalized_name": "territory farming and fighting" + }, + { + "appid": 1455920, + "normalized_name": "eqi" + }, + { + "appid": 1455930, + "normalized_name": "bringit to mom" + }, + { + "appid": 1456000, + "normalized_name": "goodbye dr. sanchez" + }, + { + "appid": 1456020, + "normalized_name": "lovely warriors" + }, + { + "appid": 1456040, + "normalized_name": "retribution universal requiem" + }, + { + "appid": 1456060, + "normalized_name": "strip black jack santa babe" + }, + { + "appid": 1456080, + "normalized_name": "abyss delvers" + }, + { + "appid": 1456200, + "normalized_name": "initial drift online" + }, + { + "appid": 1456220, + "normalized_name": "don't stare" + }, + { + "appid": 1456230, + "normalized_name": "cthulhu death escape / 克苏鲁 死亡逃脱 prototype" + }, + { + "appid": 1456250, + "normalized_name": "monstermoerder" + }, + { + "appid": 1456260, + "normalized_name": "flashlight" + }, + { + "appid": 1456280, + "normalized_name": "battle arena vr" + }, + { + "appid": 1456290, + "normalized_name": "boltbreak" + }, + { + "appid": 1456340, + "normalized_name": "pocket penguin dx ( ポケットペンギン) a retro style adventure" + }, + { + "appid": 1456380, + "normalized_name": "remote knights online" + }, + { + "appid": 1456410, + "normalized_name": "paper shooter!" + }, + { + "appid": 1456430, + "normalized_name": "human vs evil" + }, + { + "appid": 1456440, + "normalized_name": "pixel game maker series steos sorrow song of bounty hunter" + }, + { + "appid": 1456470, + "normalized_name": "rolling gunner" + }, + { + "appid": 1456490, + "normalized_name": "formosa night market vr arcade(by taiwan)" + }, + { + "appid": 1456560, + "normalized_name": "dungeon voxel" + }, + { + "appid": 1456570, + "normalized_name": "pixeljunk eden 2" + }, + { + "appid": 1456580, + "normalized_name": "set for the battle" + }, + { + "appid": 1456630, + "normalized_name": "dawn of the mexica" + }, + { + "appid": 1456640, + "normalized_name": "nobleescape" + }, + { + "appid": 1456650, + "normalized_name": "pascal's wager" + }, + { + "appid": 1456710, + "normalized_name": "blood knot" + }, + { + "appid": 1456720, + "normalized_name": "into the abyss" + }, + { + "appid": 1456760, + "normalized_name": "robobeat" + }, + { + "appid": 1456770, + "normalized_name": "sketchbots" + }, + { + "appid": 1456810, + "normalized_name": "don´t spill" + }, + { + "appid": 1456820, + "normalized_name": "溶鉄のマルフーシャ" + }, + { + "appid": 1456830, + "normalized_name": "sea dogs legendary" + }, + { + "appid": 1456880, + "normalized_name": "elechead" + }, + { + "appid": 1456900, + "normalized_name": "labyrinth" + }, + { + "appid": 1456940, + "normalized_name": "level zero extraction" + }, + { + "appid": 1456980, + "normalized_name": "drema" + }, + { + "appid": 1457020, + "normalized_name": "temptations x" + }, + { + "appid": 1457030, + "normalized_name": "casino resort tower" + }, + { + "appid": 1457070, + "normalized_name": "elmo's kangaroo of the damned punishment" + }, + { + "appid": 1457080, + "normalized_name": "the mageseeker a league of legends story" + }, + { + "appid": 1457130, + "normalized_name": "forgotten soundscape" + }, + { + "appid": 1457140, + "normalized_name": "we're all going to die" + }, + { + "appid": 1457160, + "normalized_name": "underworld dreams" + }, + { + "appid": 1457180, + "normalized_name": "honkstory 2 there was no 1" + }, + { + "appid": 1457220, + "normalized_name": "robin morningwood adventure a gay rpg" + }, + { + "appid": 1457230, + "normalized_name": "melrose café" + }, + { + "appid": 1457320, + "normalized_name": "techtonica" + }, + { + "appid": 1457330, + "normalized_name": "routine racers" + }, + { + "appid": 1457340, + "normalized_name": "vulgord's tower" + }, + { + "appid": 1457360, + "normalized_name": "agents of the outcaste" + }, + { + "appid": 1457370, + "normalized_name": "victoria clair and the mystery express" + }, + { + "appid": 1457430, + "normalized_name": "斗罗大陆 王国印记" + }, + { + "appid": 1457470, + "normalized_name": "diamond sun" + }, + { + "appid": 1457480, + "normalized_name": "the dream of shadowlands episode 1" + }, + { + "appid": 1457490, + "normalized_name": "chuckle phrase builder" + }, + { + "appid": 1457500, + "normalized_name": "time freeze" + }, + { + "appid": 1457510, + "normalized_name": "the legend of heroes sen no kiseki iv the end of saga" + }, + { + "appid": 1457520, + "normalized_name": "the legend of heroes zero no kiseki kai" + }, + { + "appid": 1457540, + "normalized_name": "beautiful masseuse / 美足按摩师" + }, + { + "appid": 1457550, + "normalized_name": "melody/心跳旋律" + }, + { + "appid": 1457570, + "normalized_name": "taxi chaos" + }, + { + "appid": 1457580, + "normalized_name": "speed 3 grand prix" + }, + { + "appid": 1457600, + "normalized_name": "amazing joes journey" + }, + { + "appid": 1457620, + "normalized_name": "幻想三国志" + }, + { + "appid": 1457630, + "normalized_name": "幻想三国志2" + }, + { + "appid": 1457640, + "normalized_name": "幻想三国志3" + }, + { + "appid": 1457650, + "normalized_name": "幻想三国志4" + }, + { + "appid": 1457660, + "normalized_name": "幻想三国志4外传" + }, + { + "appid": 1457690, + "normalized_name": "dwarves & dungeons" + }, + { + "appid": 1457710, + "normalized_name": "ignatius" + }, + { + "appid": 1457730, + "normalized_name": "farmer's life prologue" + }, + { + "appid": 1457740, + "normalized_name": "stars die" + }, + { + "appid": 1457820, + "normalized_name": "cybergeist" + }, + { + "appid": 1457840, + "normalized_name": "fishticuffs" + }, + { + "appid": 1457870, + "normalized_name": "peasants" + }, + { + "appid": 1457920, + "normalized_name": "vitatio 3" + }, + { + "appid": 1457930, + "normalized_name": "red rage" + }, + { + "appid": 1457940, + "normalized_name": "yuha's nightmares" + }, + { + "appid": 1457980, + "normalized_name": "house of god" + }, + { + "appid": 1457990, + "normalized_name": "yuligans christmas is coming!" + }, + { + "appid": 1458000, + "normalized_name": "air bounce the jump 'n' run challenge" + }, + { + "appid": 1458020, + "normalized_name": "hyperstar" + }, + { + "appid": 1458090, + "normalized_name": "hapland trilogy" + }, + { + "appid": 1458100, + "normalized_name": "cozy grove" + }, + { + "appid": 1458140, + "normalized_name": "pacific drive" + }, + { + "appid": 1458210, + "normalized_name": "christmas movie bingo" + }, + { + "appid": 1458250, + "normalized_name": "christmas rhythm" + }, + { + "appid": 1458300, + "normalized_name": "the gap" + }, + { + "appid": 1458330, + "normalized_name": "mythlands flappy dragon" + }, + { + "appid": 1458340, + "normalized_name": "legend of krannia cursed fate" + }, + { + "appid": 1458350, + "normalized_name": "overslept" + }, + { + "appid": 1458370, + "normalized_name": "shuzzler the word game" + }, + { + "appid": 1458390, + "normalized_name": "rule no. 1" + }, + { + "appid": 1458420, + "normalized_name": "nightfall" + }, + { + "appid": 1458460, + "normalized_name": "island raft survival 2021 ocean escape" + }, + { + "appid": 1458480, + "normalized_name": "travellers" + }, + { + "appid": 1458530, + "normalized_name": "ronister adventure" + }, + { + "appid": 1458540, + "normalized_name": "velocity legends action racing game" + }, + { + "appid": 1458550, + "normalized_name": "simulators2021" + }, + { + "appid": 1458560, + "normalized_name": "i'm on observation duty 3" + }, + { + "appid": 1458590, + "normalized_name": "anime artist 3 harem" + }, + { + "appid": 1458600, + "normalized_name": "junk architect" + }, + { + "appid": 1458620, + "normalized_name": "hentai animation puzzle" + }, + { + "appid": 1458650, + "normalized_name": "game dev company" + }, + { + "appid": 1458690, + "normalized_name": "mango" + }, + { + "appid": 1458810, + "normalized_name": "dismantled" + }, + { + "appid": 1458880, + "normalized_name": "the dark stares back" + }, + { + "appid": 1458900, + "normalized_name": "meridian 157 prologue" + }, + { + "appid": 1458920, + "normalized_name": "meridian 157 chapter 1" + }, + { + "appid": 1458930, + "normalized_name": "meridian 157 chapter 2" + }, + { + "appid": 1458950, + "normalized_name": "brox" + }, + { + "appid": 1458960, + "normalized_name": "tip top" + }, + { + "appid": 1458970, + "normalized_name": "entrapment" + }, + { + "appid": 1458980, + "normalized_name": "misery mansion" + }, + { + "appid": 1459000, + "normalized_name": "afterthecloud" + }, + { + "appid": 1459010, + "normalized_name": "fallen leaf" + }, + { + "appid": 1459020, + "normalized_name": "memories of tomorrow" + }, + { + "appid": 1459070, + "normalized_name": "fade" + }, + { + "appid": 1459160, + "normalized_name": "dark cave" + }, + { + "appid": 1459170, + "normalized_name": "military crusaders" + }, + { + "appid": 1459210, + "normalized_name": "l'intrépide le futur de l'imparfait" + }, + { + "appid": 1459240, + "normalized_name": "prione" + }, + { + "appid": 1459250, + "normalized_name": "temple hunters" + }, + { + "appid": 1459260, + "normalized_name": "techlie" + }, + { + "appid": 1459280, + "normalized_name": "attaboy!" + }, + { + "appid": 1459300, + "normalized_name": "glittering sword" + }, + { + "appid": 1459340, + "normalized_name": "lilulu" + }, + { + "appid": 1459360, + "normalized_name": "brain break" + }, + { + "appid": 1459370, + "normalized_name": "battlebox pre launch music application" + }, + { + "appid": 1459410, + "normalized_name": "sex quest" + }, + { + "appid": 1459500, + "normalized_name": "atlas architect" + }, + { + "appid": 1459510, + "normalized_name": "the seasons collection spring" + }, + { + "appid": 1459530, + "normalized_name": "elastic fantastic" + }, + { + "appid": 1459540, + "normalized_name": "elephantasy" + }, + { + "appid": 1459550, + "normalized_name": "overland weekend" + }, + { + "appid": 1459560, + "normalized_name": "untitled space game" + }, + { + "appid": 1459570, + "normalized_name": "27 pages" + }, + { + "appid": 1459580, + "normalized_name": "uktena" + }, + { + "appid": 1459590, + "normalized_name": "speed empire" + }, + { + "appid": 1459630, + "normalized_name": "dustland" + }, + { + "appid": 1459640, + "normalized_name": "vr zeppelin airship trips flying hotel experiences in vr" + }, + { + "appid": 1459650, + "normalized_name": "pull" + }, + { + "appid": 1459660, + "normalized_name": "become a gladiator vr 1v1 pvp" + }, + { + "appid": 1459690, + "normalized_name": "fear & fury" + }, + { + "appid": 1459700, + "normalized_name": "peasant simulator" + }, + { + "appid": 1459710, + "normalized_name": "seiga kaku uses her amazing taoist arts and gives you a life lesson" + }, + { + "appid": 1459720, + "normalized_name": "borderus angels & demons" + }, + { + "appid": 1459740, + "normalized_name": "cubiya" + }, + { + "appid": 1459760, + "normalized_name": "mickey storm and the cursed mask" + }, + { + "appid": 1459790, + "normalized_name": "angry alligator" + }, + { + "appid": 1459800, + "normalized_name": "fakutori" + }, + { + "appid": 1459810, + "normalized_name": "魅魔的冒险生活" + }, + { + "appid": 1459870, + "normalized_name": "king pins" + }, + { + "appid": 1459890, + "normalized_name": "cold harvest" + }, + { + "appid": 1459910, + "normalized_name": "isolomus" + }, + { + "appid": 1459930, + "normalized_name": "just take your left" + }, + { + "appid": 1459960, + "normalized_name": "glitchpunk" + }, + { + "appid": 1459980, + "normalized_name": "buried in ice" + }, + { + "appid": 1459990, + "normalized_name": "celebrity life" + }, + { + "appid": 1460000, + "normalized_name": "racing djani 2" + }, + { + "appid": 1460010, + "normalized_name": "cryospace survival horror in space" + }, + { + "appid": 1460040, + "normalized_name": "love fantasy" + }, + { + "appid": 1460050, + "normalized_name": "adventure bit" + }, + { + "appid": 1460070, + "normalized_name": "is it wrong to try to rescue monster girls from the inquisition?" + }, + { + "appid": 1460080, + "normalized_name": "stasis valley" + }, + { + "appid": 1460090, + "normalized_name": "the life and suffering of sir brante — chapter 1&2" + }, + { + "appid": 1460100, + "normalized_name": "distorted" + }, + { + "appid": 1460120, + "normalized_name": "torchance 6" + }, + { + "appid": 1460200, + "normalized_name": "merge nymphs" + }, + { + "appid": 1460210, + "normalized_name": "compound fracture" + }, + { + "appid": 1460220, + "normalized_name": "evil nun the broken mask" + }, + { + "appid": 1460230, + "normalized_name": "javols vr" + }, + { + "appid": 1460250, + "normalized_name": "redex" + }, + { + "appid": 1460290, + "normalized_name": "loop" + }, + { + "appid": 1460300, + "normalized_name": "kittens' maze" + }, + { + "appid": 1460310, + "normalized_name": "the cat banny" + }, + { + "appid": 1460440, + "normalized_name": "ruby heart [visual novel / otome]" + }, + { + "appid": 1460480, + "normalized_name": "on key up a game for keyboards" + }, + { + "appid": 1460490, + "normalized_name": "majikoi! love me seriously!" + }, + { + "appid": 1460510, + "normalized_name": "caedes" + }, + { + "appid": 1460520, + "normalized_name": "junior solutions" + }, + { + "appid": 1460530, + "normalized_name": "kilemol" + }, + { + "appid": 1460540, + "normalized_name": "farlanders prologue" + }, + { + "appid": 1460550, + "normalized_name": "ring of titans" + }, + { + "appid": 1460600, + "normalized_name": "what's left behind" + }, + { + "appid": 1460610, + "normalized_name": "hocus 2" + }, + { + "appid": 1460650, + "normalized_name": "lodestar" + }, + { + "appid": 1460670, + "normalized_name": "jungle town birthday quest" + }, + { + "appid": 1460700, + "normalized_name": "おんがくしつ / music room" + }, + { + "appid": 1460710, + "normalized_name": "updive" + }, + { + "appid": 1460750, + "normalized_name": "super drink bros." + }, + { + "appid": 1460770, + "normalized_name": "boring game" + }, + { + "appid": 1460790, + "normalized_name": "bartender simulator" + }, + { + "appid": 1460820, + "normalized_name": "aldriak the advent of a new world" + }, + { + "appid": 1460830, + "normalized_name": "6 seasons and a game" + }, + { + "appid": 1460870, + "normalized_name": "amazing pyramids rebirth" + }, + { + "appid": 1460910, + "normalized_name": "flippen run mike" + }, + { + "appid": 1460930, + "normalized_name": "the life of bally" + }, + { + "appid": 1460950, + "normalized_name": "schrodinger's catgirl" + }, + { + "appid": 1460970, + "normalized_name": "fish and groove" + }, + { + "appid": 1461000, + "normalized_name": "space craft" + }, + { + "appid": 1461020, + "normalized_name": "attack of the mechadonk the donkey" + }, + { + "appid": 1461030, + "normalized_name": "carnivores dinosaur hunt" + }, + { + "appid": 1461040, + "normalized_name": "flying hero x" + }, + { + "appid": 1461060, + "normalized_name": "法利恩戰記2 (furion chronicles 2)" + }, + { + "appid": 1461090, + "normalized_name": "喰人記" + }, + { + "appid": 1461100, + "normalized_name": "international basketball manager 22" + }, + { + "appid": 1461110, + "normalized_name": "ussr chan hentai puzzle game" + }, + { + "appid": 1461130, + "normalized_name": "lavalamp" + }, + { + "appid": 1461140, + "normalized_name": "crazy chicken xtreme" + }, + { + "appid": 1461150, + "normalized_name": "shade" + }, + { + "appid": 1461190, + "normalized_name": "jetpin" + }, + { + "appid": 1461200, + "normalized_name": "duck life 4" + }, + { + "appid": 1461230, + "normalized_name": "sexy match" + }, + { + "appid": 1461320, + "normalized_name": "yami" + }, + { + "appid": 1461360, + "normalized_name": "eggnog incorporated" + }, + { + "appid": 1461370, + "normalized_name": "just read the instructions" + }, + { + "appid": 1461400, + "normalized_name": "kris kringle's christmas village vr" + }, + { + "appid": 1461410, + "normalized_name": "ring miner" + }, + { + "appid": 1461420, + "normalized_name": "subway train simulator 2d" + }, + { + "appid": 1461470, + "normalized_name": "airborne ranger fightout" + }, + { + "appid": 1461480, + "normalized_name": "the chase" + }, + { + "appid": 1461490, + "normalized_name": "hoppup!" + }, + { + "appid": 1461500, + "normalized_name": "cookie store" + }, + { + "appid": 1461540, + "normalized_name": "corridor amount of fear" + }, + { + "appid": 1461570, + "normalized_name": "odenavirus online" + }, + { + "appid": 1461580, + "normalized_name": "molecule builder" + }, + { + "appid": 1461600, + "normalized_name": "project sparrow" + }, + { + "appid": 1461630, + "normalized_name": "magic potion millionaire" + }, + { + "appid": 1461680, + "normalized_name": "第五件遗留物" + }, + { + "appid": 1461710, + "normalized_name": "kagura's dreamland 神樂夢境" + }, + { + "appid": 1461730, + "normalized_name": "undercover brother" + }, + { + "appid": 1461740, + "normalized_name": "画师" + }, + { + "appid": 1461770, + "normalized_name": "fantasy tavern sextet vol.2 adventurer's days" + }, + { + "appid": 1461800, + "normalized_name": "eggs catcher vr" + }, + { + "appid": 1461810, + "normalized_name": "《蜀山:初章》买断版" + }, + { + "appid": 1461900, + "normalized_name": "survival instinct" + }, + { + "appid": 1461910, + "normalized_name": "rogue command" + }, + { + "appid": 1461920, + "normalized_name": "the legend of heroes ao no kiseki kai" + }, + { + "appid": 1461930, + "normalized_name": "robotry!" + }, + { + "appid": 1461960, + "normalized_name": "baby goat billy" + }, + { + "appid": 1461980, + "normalized_name": "九州:立志" + }, + { + "appid": 1461990, + "normalized_name": "傲剑情缘" + }, + { + "appid": 1462010, + "normalized_name": "wiener wars" + }, + { + "appid": 1462020, + "normalized_name": "elon tycoon" + }, + { + "appid": 1462030, + "normalized_name": "duil" + }, + { + "appid": 1462040, + "normalized_name": "final fantasy vii remake intergrade" + }, + { + "appid": 1462060, + "normalized_name": "escape from hospital" + }, + { + "appid": 1462120, + "normalized_name": "dum dum dinos" + }, + { + "appid": 1462160, + "normalized_name": "arclands" + }, + { + "appid": 1462170, + "normalized_name": "dragon ninja clan sword of destiny game" + }, + { + "appid": 1462180, + "normalized_name": "first adventure" + }, + { + "appid": 1462190, + "normalized_name": "corpse mansion" + }, + { + "appid": 1462200, + "normalized_name": "speyarranoth" + }, + { + "appid": 1462210, + "normalized_name": "battle bugs" + }, + { + "appid": 1462220, + "normalized_name": "mini war three kingdoms" + }, + { + "appid": 1462260, + "normalized_name": "guild of dragons" + }, + { + "appid": 1462290, + "normalized_name": "domains of dusk" + }, + { + "appid": 1462330, + "normalized_name": "deus lo veult" + }, + { + "appid": 1462340, + "normalized_name": "the never ending game" + }, + { + "appid": 1462420, + "normalized_name": "twwwr" + }, + { + "appid": 1462430, + "normalized_name": "ms.director" + }, + { + "appid": 1462440, + "normalized_name": "the lost shrine escape room" + }, + { + "appid": 1462470, + "normalized_name": "vectorio classic" + }, + { + "appid": 1462510, + "normalized_name": "catafalque" + }, + { + "appid": 1462520, + "normalized_name": "brink traveler" + }, + { + "appid": 1462540, + "normalized_name": "dvg conquering giants" + }, + { + "appid": 1462550, + "normalized_name": "conquer and breed the demon queen" + }, + { + "appid": 1462560, + "normalized_name": "holostar command quantum alliance" + }, + { + "appid": 1462570, + "normalized_name": "lost in random" + }, + { + "appid": 1462580, + "normalized_name": "space station sprint" + }, + { + "appid": 1462600, + "normalized_name": "onnanoko keeper" + }, + { + "appid": 1462620, + "normalized_name": "odd adventure of chub color 23 and you" + }, + { + "appid": 1462640, + "normalized_name": "异界大富翁" + }, + { + "appid": 1462650, + "normalized_name": "last embryo either of brave to story" + }, + { + "appid": 1462680, + "normalized_name": "asdivine cross" + }, + { + "appid": 1462700, + "normalized_name": "the dark method" + }, + { + "appid": 1462720, + "normalized_name": "the orangerice" + }, + { + "appid": 1462730, + "normalized_name": "atomic girls" + }, + { + "appid": 1462740, + "normalized_name": "your way" + }, + { + "appid": 1462750, + "normalized_name": "soldier" + }, + { + "appid": 1462760, + "normalized_name": "neon wings air race" + }, + { + "appid": 1462780, + "normalized_name": "outta this kingdom" + }, + { + "appid": 1462790, + "normalized_name": "fight of animals arena" + }, + { + "appid": 1462810, + "normalized_name": "wrc 10 fia world rally championship" + }, + { + "appid": 1462830, + "normalized_name": "super sketchy party" + }, + { + "appid": 1462860, + "normalized_name": "dots!" + }, + { + "appid": 1462870, + "normalized_name": "legends of gondwana" + }, + { + "appid": 1462910, + "normalized_name": "twisted a dark fairytale" + }, + { + "appid": 1462960, + "normalized_name": "evade zero" + }, + { + "appid": 1462970, + "normalized_name": "jumpman (c64/msdos)" + }, + { + "appid": 1462990, + "normalized_name": "rushaug feline warfare" + }, + { + "appid": 1463010, + "normalized_name": "tank mechanic simulator vr" + }, + { + "appid": 1463020, + "normalized_name": "aim academy" + }, + { + "appid": 1463030, + "normalized_name": "jump with dragons" + }, + { + "appid": 1463040, + "normalized_name": "the legend of eratus dragonlord" + }, + { + "appid": 1463050, + "normalized_name": "the purification" + }, + { + "appid": 1463080, + "normalized_name": "snow survival" + }, + { + "appid": 1463100, + "normalized_name": "idol keeper" + }, + { + "appid": 1463120, + "normalized_name": "college kings the season" + }, + { + "appid": 1463130, + "normalized_name": "robobo tm" + }, + { + "appid": 1463140, + "normalized_name": "destructo" + }, + { + "appid": 1463170, + "normalized_name": "marble parkour" + }, + { + "appid": 1463180, + "normalized_name": "九个世界(nine worlds)" + }, + { + "appid": 1463320, + "normalized_name": "residuum" + }, + { + "appid": 1463350, + "normalized_name": "wordtactics" + }, + { + "appid": 1463360, + "normalized_name": "eugene's dream the daily ins and outs of a sane robot in an insane world" + }, + { + "appid": 1463380, + "normalized_name": "big cat rescue vr" + }, + { + "appid": 1463420, + "normalized_name": "indicted" + }, + { + "appid": 1463450, + "normalized_name": "fallstreak requiem for my homeland" + }, + { + "appid": 1463470, + "normalized_name": "ruff night at the gallery" + }, + { + "appid": 1463500, + "normalized_name": "conrun virtual gym" + }, + { + "appid": 1463510, + "normalized_name": "英雄坛说x之宗门风云" + }, + { + "appid": 1463530, + "normalized_name": "escape the underground" + }, + { + "appid": 1463570, + "normalized_name": "eternal liiivie ep2 hiding in the dark" + }, + { + "appid": 1463730, + "normalized_name": "arid" + }, + { + "appid": 1463760, + "normalized_name": "the beardless wizard" + }, + { + "appid": 1463780, + "normalized_name": "mohism battle of words" + }, + { + "appid": 1463830, + "normalized_name": "vostok 2061" + }, + { + "appid": 1463840, + "normalized_name": "warp out" + }, + { + "appid": 1463870, + "normalized_name": "jumping knight" + }, + { + "appid": 1463880, + "normalized_name": "black blade" + }, + { + "appid": 1463890, + "normalized_name": "slay the dragon!" + }, + { + "appid": 1463900, + "normalized_name": "pretty girls and dark witch. a simple story" + }, + { + "appid": 1463920, + "normalized_name": "hexceed" + }, + { + "appid": 1463930, + "normalized_name": "fly away baseball" + }, + { + "appid": 1463960, + "normalized_name": "psweet" + }, + { + "appid": 1463970, + "normalized_name": "the dark way" + }, + { + "appid": 1463980, + "normalized_name": "proven a math rpg" + }, + { + "appid": 1464000, + "normalized_name": "ascent" + }, + { + "appid": 1464010, + "normalized_name": "yolked the egg game" + }, + { + "appid": 1464050, + "normalized_name": "dual guns fantasy" + }, + { + "appid": 1464090, + "normalized_name": "devastation 2 repatriation" + }, + { + "appid": 1464100, + "normalized_name": "unlife" + }, + { + "appid": 1464120, + "normalized_name": "600seconds ~the deep church~" + }, + { + "appid": 1464130, + "normalized_name": "archons of doom" + }, + { + "appid": 1464150, + "normalized_name": "宅配勇者" + }, + { + "appid": 1464170, + "normalized_name": "东方永恒符卡" + }, + { + "appid": 1464190, + "normalized_name": "demon heart" + }, + { + "appid": 1464200, + "normalized_name": "divine stone" + }, + { + "appid": 1464220, + "normalized_name": "netherguild" + }, + { + "appid": 1464250, + "normalized_name": "pixkeeper" + }, + { + "appid": 1464290, + "normalized_name": "splash cars" + }, + { + "appid": 1464320, + "normalized_name": "callparin 2" + }, + { + "appid": 1464330, + "normalized_name": "i am your lawyer" + }, + { + "appid": 1464350, + "normalized_name": "fear in the modern house ch2" + }, + { + "appid": 1464370, + "normalized_name": "lazy gang" + }, + { + "appid": 1464380, + "normalized_name": "eclipse" + }, + { + "appid": 1464390, + "normalized_name": "moonlit" + }, + { + "appid": 1464400, + "normalized_name": "mead crafter" + }, + { + "appid": 1464410, + "normalized_name": "末日杀 might & trap apocalypse" + }, + { + "appid": 1464420, + "normalized_name": "tower" + }, + { + "appid": 1464480, + "normalized_name": "vr hentai cat" + }, + { + "appid": 1464500, + "normalized_name": "ruvato original complex" + }, + { + "appid": 1464520, + "normalized_name": "blewie" + }, + { + "appid": 1464540, + "normalized_name": "anime collector evo" + }, + { + "appid": 1464550, + "normalized_name": "ragingblasters" + }, + { + "appid": 1464610, + "normalized_name": "dark side of war" + }, + { + "appid": 1464620, + "normalized_name": "oona the druid's path" + }, + { + "appid": 1464630, + "normalized_name": "gravity in space" + }, + { + "appid": 1464650, + "normalized_name": "planet cracker" + }, + { + "appid": 1464700, + "normalized_name": "white wall" + }, + { + "appid": 1464730, + "normalized_name": "metal commando" + }, + { + "appid": 1464840, + "normalized_name": "monolith" + }, + { + "appid": 1464850, + "normalized_name": "closecall" + }, + { + "appid": 1464910, + "normalized_name": "quest escape room 2" + }, + { + "appid": 1464930, + "normalized_name": "seek girl ⅶ" + }, + { + "appid": 1464940, + "normalized_name": "farmclicky" + }, + { + "appid": 1465010, + "normalized_name": "end of the world ntr" + }, + { + "appid": 1465020, + "normalized_name": "隐秘世界" + }, + { + "appid": 1465030, + "normalized_name": "清洗屋:帮助邻居人妻" + }, + { + "appid": 1465040, + "normalized_name": "tcstrikers1" + }, + { + "appid": 1465050, + "normalized_name": "haremkingdom" + }, + { + "appid": 1465060, + "normalized_name": "tetrogue dragons" + }, + { + "appid": 1465070, + "normalized_name": "legendary tales" + }, + { + "appid": 1465110, + "normalized_name": "nihariely’s spatial adventure" + }, + { + "appid": 1465120, + "normalized_name": "skelets" + }, + { + "appid": 1465130, + "normalized_name": "dead hearts" + }, + { + "appid": 1465140, + "normalized_name": "lucid soul" + }, + { + "appid": 1465170, + "normalized_name": "seasons with furry" + }, + { + "appid": 1465190, + "normalized_name": "古代人生 ancient life" + }, + { + "appid": 1465200, + "normalized_name": "broken ecchi gallery" + }, + { + "appid": 1465210, + "normalized_name": "gravulse experimental" + }, + { + "appid": 1465220, + "normalized_name": "magna regna" + }, + { + "appid": 1465260, + "normalized_name": "cyberpunk sfx" + }, + { + "appid": 1465300, + "normalized_name": "the thought police hotline episode 1" + }, + { + "appid": 1465310, + "normalized_name": "gun mage" + }, + { + "appid": 1465330, + "normalized_name": "bird pro skater" + }, + { + "appid": 1465340, + "normalized_name": "free spirit vr meditation" + }, + { + "appid": 1465350, + "normalized_name": "model city" + }, + { + "appid": 1465360, + "normalized_name": "snowrunner" + }, + { + "appid": 1465370, + "normalized_name": "detective notes. lighthouse mystery solitaire" + }, + { + "appid": 1465380, + "normalized_name": "hello from darkness" + }, + { + "appid": 1465390, + "normalized_name": "hentai asmr" + }, + { + "appid": 1465400, + "normalized_name": "kaverini nuuk adventures" + }, + { + "appid": 1465410, + "normalized_name": "spinny's journey" + }, + { + "appid": 1465440, + "normalized_name": "obscurant" + }, + { + "appid": 1465450, + "normalized_name": "jetpack city action vr" + }, + { + "appid": 1465460, + "normalized_name": "infection free zone" + }, + { + "appid": 1465470, + "normalized_name": "the crust" + }, + { + "appid": 1465500, + "normalized_name": "hero puzzle" + }, + { + "appid": 1465510, + "normalized_name": "dusk '82" + }, + { + "appid": 1465550, + "normalized_name": "one lonely outpost" + }, + { + "appid": 1465560, + "normalized_name": "against all odds" + }, + { + "appid": 1465580, + "normalized_name": "trapmania" + }, + { + "appid": 1465610, + "normalized_name": "world fighting soccer 22" + }, + { + "appid": 1465620, + "normalized_name": "moses from egypt to the promised land" + }, + { + "appid": 1465640, + "normalized_name": "dead man's rest" + }, + { + "appid": 1465710, + "normalized_name": "白昼梦 · 心象病院" + }, + { + "appid": 1465740, + "normalized_name": "wicked rails vr" + }, + { + "appid": 1465780, + "normalized_name": "silver vault" + }, + { + "appid": 1465790, + "normalized_name": "dark moonlight" + }, + { + "appid": 1465830, + "normalized_name": "torto cursed divine" + }, + { + "appid": 1465860, + "normalized_name": "*new* scuffed epic bhop simulator 2023 (pog champ)" + }, + { + "appid": 1465890, + "normalized_name": "武林志2 (wushu chronicles 2)" + }, + { + "appid": 1465900, + "normalized_name": "a robot's journey" + }, + { + "appid": 1465910, + "normalized_name": "idle gog endless war" + }, + { + "appid": 1465950, + "normalized_name": "phoenix hope" + }, + { + "appid": 1466010, + "normalized_name": "fpv speed drone" + }, + { + "appid": 1466030, + "normalized_name": "pamir saga" + }, + { + "appid": 1466060, + "normalized_name": "tainted grail the fall of avalon" + }, + { + "appid": 1466070, + "normalized_name": "fool's paradise" + }, + { + "appid": 1466090, + "normalized_name": "gothic 1881" + }, + { + "appid": 1466100, + "normalized_name": "ravenweald" + }, + { + "appid": 1466110, + "normalized_name": "orbiterrion" + }, + { + "appid": 1466140, + "normalized_name": "sluggy jean takes a hike" + }, + { + "appid": 1466170, + "normalized_name": "merchant of phenistoria" + }, + { + "appid": 1466180, + "normalized_name": "devil girl" + }, + { + "appid": 1466190, + "normalized_name": "you arrive in a town" + }, + { + "appid": 1466230, + "normalized_name": "the holy gosh darn" + }, + { + "appid": 1466240, + "normalized_name": "月下にて舞う | dancing in the moonlight" + }, + { + "appid": 1466260, + "normalized_name": "two die" + }, + { + "appid": 1466290, + "normalized_name": "the change architect" + }, + { + "appid": 1466300, + "normalized_name": "stack defense" + }, + { + "appid": 1466310, + "normalized_name": "ac 130 gunship operator" + }, + { + "appid": 1466350, + "normalized_name": "jennifer wilde unlikely revolutionaries" + }, + { + "appid": 1466360, + "normalized_name": "shinies call of light" + }, + { + "appid": 1466390, + "normalized_name": "kathy rain 2 soothsayer" + }, + { + "appid": 1466400, + "normalized_name": "edge of dead under a uranium sky" + }, + { + "appid": 1466450, + "normalized_name": "puzzle lines and knots 2" + }, + { + "appid": 1466490, + "normalized_name": "tokyo love +" + }, + { + "appid": 1466500, + "normalized_name": "akuma cyberpunk rhythm action" + }, + { + "appid": 1466520, + "normalized_name": "omen exitio hunger" + }, + { + "appid": 1466530, + "normalized_name": "escape from covid" + }, + { + "appid": 1466550, + "normalized_name": "did you hear that?" + }, + { + "appid": 1466560, + "normalized_name": "exmortalis" + }, + { + "appid": 1466570, + "normalized_name": "the clot thickens" + }, + { + "appid": 1466580, + "normalized_name": "tempus bound" + }, + { + "appid": 1466610, + "normalized_name": "combined arms operations series" + }, + { + "appid": 1466640, + "normalized_name": "road 96 🛣" + }, + { + "appid": 1466650, + "normalized_name": "tasty arena" + }, + { + "appid": 1466660, + "normalized_name": "project space hunter fear in space" + }, + { + "appid": 1466680, + "normalized_name": "sakura mmo extra" + }, + { + "appid": 1466690, + "normalized_name": "sakura succubus 4" + }, + { + "appid": 1466700, + "normalized_name": "a monster the mauler" + }, + { + "appid": 1466750, + "normalized_name": "hentai queens" + }, + { + "appid": 1466840, + "normalized_name": "hyperblade" + }, + { + "appid": 1466860, + "normalized_name": "age of empires iv anniversary" + }, + { + "appid": 1466870, + "normalized_name": "hannah" + }, + { + "appid": 1466950, + "normalized_name": "hangoutgame" + }, + { + "appid": 1466970, + "normalized_name": "elementowers" + }, + { + "appid": 1467020, + "normalized_name": "aefen fall" + }, + { + "appid": 1467060, + "normalized_name": "secrets of magic 4 potion master" + }, + { + "appid": 1467070, + "normalized_name": "time trap 2 search and find objects game" + }, + { + "appid": 1467090, + "normalized_name": "the dark side of ceclon" + }, + { + "appid": 1467110, + "normalized_name": "treasure hunter simulator 2" + }, + { + "appid": 1467130, + "normalized_name": "white dandelion" + }, + { + "appid": 1467140, + "normalized_name": "specialist's vengeance" + }, + { + "appid": 1467190, + "normalized_name": "plushie dungeon" + }, + { + "appid": 1467200, + "normalized_name": "soliterix" + }, + { + "appid": 1467230, + "normalized_name": "toi" + }, + { + "appid": 1467250, + "normalized_name": "cosmic dawn" + }, + { + "appid": 1467260, + "normalized_name": "psionic" + }, + { + "appid": 1467270, + "normalized_name": "beyond enemy lines vietnam" + }, + { + "appid": 1467330, + "normalized_name": "endline" + }, + { + "appid": 1467340, + "normalized_name": "quintaesencia" + }, + { + "appid": 1467360, + "normalized_name": "shotgun dungeons laser traps" + }, + { + "appid": 1467380, + "normalized_name": "ancient warriors casino jackpot" + }, + { + "appid": 1467390, + "normalized_name": "starprey" + }, + { + "appid": 1467410, + "normalized_name": "isekai eternal alpha" + }, + { + "appid": 1467530, + "normalized_name": "eye of ouroboros" + }, + { + "appid": 1467550, + "normalized_name": "cute as hell" + }, + { + "appid": 1467580, + "normalized_name": "genius at work!" + }, + { + "appid": 1467590, + "normalized_name": "frontiers reach" + }, + { + "appid": 1467600, + "normalized_name": "." + }, + { + "appid": 1467620, + "normalized_name": "clown" + }, + { + "appid": 1467670, + "normalized_name": "bulkhead" + }, + { + "appid": 1467740, + "normalized_name": "pocket plants" + }, + { + "appid": 1467780, + "normalized_name": "geminism" + }, + { + "appid": 1467810, + "normalized_name": "house in the village by the river v2.0" + }, + { + "appid": 1467830, + "normalized_name": "siimi" + }, + { + "appid": 1467850, + "normalized_name": "azure domain" + }, + { + "appid": 1467870, + "normalized_name": "mystery case files crossfade collector's" + }, + { + "appid": 1467920, + "normalized_name": "a guidebook of babel" + }, + { + "appid": 1467970, + "normalized_name": "dragon dash division" + }, + { + "appid": 1468000, + "normalized_name": "these nights alone" + }, + { + "appid": 1468040, + "normalized_name": "elmarion dragon's princess" + }, + { + "appid": 1468060, + "normalized_name": "the island of dr. yepstein" + }, + { + "appid": 1468110, + "normalized_name": "elements" + }, + { + "appid": 1468160, + "normalized_name": "cube racer 2" + }, + { + "appid": 1468180, + "normalized_name": "bring me a man santa" + }, + { + "appid": 1468190, + "normalized_name": "hikeshi fireman" + }, + { + "appid": 1468220, + "normalized_name": "sacrificial lighthouse" + }, + { + "appid": 1468240, + "normalized_name": "carebotz" + }, + { + "appid": 1468250, + "normalized_name": "kukoos lost pets" + }, + { + "appid": 1468260, + "normalized_name": "leaf blower revolution idle game" + }, + { + "appid": 1468280, + "normalized_name": "inland" + }, + { + "appid": 1468340, + "normalized_name": "space mavericks" + }, + { + "appid": 1468370, + "normalized_name": "snow strike" + }, + { + "appid": 1468380, + "normalized_name": "the sundew" + }, + { + "appid": 1468400, + "normalized_name": "dreamhouse the game" + }, + { + "appid": 1468420, + "normalized_name": "sexcraft sofiya and the lewd clan" + }, + { + "appid": 1468430, + "normalized_name": "freezer pops" + }, + { + "appid": 1468470, + "normalized_name": "slime time td" + }, + { + "appid": 1468500, + "normalized_name": "the cure" + }, + { + "appid": 1468600, + "normalized_name": "matias candia lord doomer" + }, + { + "appid": 1468610, + "normalized_name": "platformory" + }, + { + "appid": 1468680, + "normalized_name": "liftair ski jump" + }, + { + "appid": 1468720, + "normalized_name": "epic battle simulator 2" + }, + { + "appid": 1468750, + "normalized_name": "fox in the woods" + }, + { + "appid": 1468800, + "normalized_name": "portal defect" + }, + { + "appid": 1468810, + "normalized_name": "鬼谷八荒 tale of immortal" + }, + { + "appid": 1468820, + "normalized_name": "the king is gone" + }, + { + "appid": 1468950, + "normalized_name": "devil edge" + }, + { + "appid": 1468960, + "normalized_name": "pro arena alpha" + }, + { + "appid": 1469000, + "normalized_name": "don't crash the zombie game" + }, + { + "appid": 1469090, + "normalized_name": "bounce" + }, + { + "appid": 1469160, + "normalized_name": "wartune reborn" + }, + { + "appid": 1469170, + "normalized_name": "commandos 3 hd remaster" + }, + { + "appid": 1469220, + "normalized_name": "cat simulator meow" + }, + { + "appid": 1469230, + "normalized_name": "angry fugu" + }, + { + "appid": 1469260, + "normalized_name": "childstory" + }, + { + "appid": 1469280, + "normalized_name": "suchart creative space" + }, + { + "appid": 1469290, + "normalized_name": "target acquired" + }, + { + "appid": 1469300, + "normalized_name": "leap of love" + }, + { + "appid": 1469310, + "normalized_name": "梦幻江湖" + }, + { + "appid": 1469330, + "normalized_name": "unlimited fight" + }, + { + "appid": 1469340, + "normalized_name": "gyroblade" + }, + { + "appid": 1469350, + "normalized_name": "save the planet" + }, + { + "appid": 1469360, + "normalized_name": "fold stories" + }, + { + "appid": 1469370, + "normalized_name": "lighthouse keeper" + }, + { + "appid": 1469390, + "normalized_name": "catacombia" + }, + { + "appid": 1469430, + "normalized_name": "backyard beans" + }, + { + "appid": 1469450, + "normalized_name": "moon caves" + }, + { + "appid": 1469460, + "normalized_name": "gone upstate" + }, + { + "appid": 1469490, + "normalized_name": "awakened dark space" + }, + { + "appid": 1469540, + "normalized_name": "maximus 2 street gladiators" + }, + { + "appid": 1469550, + "normalized_name": "plokoth" + }, + { + "appid": 1469610, + "normalized_name": "last train home" + }, + { + "appid": 1469620, + "normalized_name": "epic battle fantasy collection" + }, + { + "appid": 1469660, + "normalized_name": "dontdy" + }, + { + "appid": 1469690, + "normalized_name": "drift king" + }, + { + "appid": 1469750, + "normalized_name": "3x3 the immersive fiction chapter one math awakening" + }, + { + "appid": 1469800, + "normalized_name": "koma" + }, + { + "appid": 1469830, + "normalized_name": "the happy little virus" + }, + { + "appid": 1469840, + "normalized_name": "yummy nuts" + }, + { + "appid": 1469860, + "normalized_name": "hollow destiny" + }, + { + "appid": 1469890, + "normalized_name": "neocube" + }, + { + "appid": 1469910, + "normalized_name": "slobbish dragon princess" + }, + { + "appid": 1469920, + "normalized_name": "einar loki's traps" + }, + { + "appid": 1469960, + "normalized_name": "explosive candy world" + }, + { + "appid": 1470030, + "normalized_name": "funtime with buffy" + }, + { + "appid": 1470060, + "normalized_name": "ghostwinter" + }, + { + "appid": 1470120, + "normalized_name": "atopes" + }, + { + "appid": 1470130, + "normalized_name": "dominate square" + }, + { + "appid": 1470150, + "normalized_name": "low story" + }, + { + "appid": 1470220, + "normalized_name": "movie tycoon simulator 2020" + }, + { + "appid": 1470270, + "normalized_name": "powerboat vr" + }, + { + "appid": 1470280, + "normalized_name": "the last of anime" + }, + { + "appid": 1470300, + "normalized_name": "paper tales catch up games" + }, + { + "appid": 1470310, + "normalized_name": "witch 2 hell adventure" + }, + { + "appid": 1470320, + "normalized_name": "malmyr" + }, + { + "appid": 1470350, + "normalized_name": "quasar" + }, + { + "appid": 1470360, + "normalized_name": "bitpunky" + }, + { + "appid": 1470380, + "normalized_name": "a pretty odd bunny" + }, + { + "appid": 1470390, + "normalized_name": "city of beats" + }, + { + "appid": 1470420, + "normalized_name": "re turn 2 runaway" + }, + { + "appid": 1470430, + "normalized_name": "voenkomat" + }, + { + "appid": 1470480, + "normalized_name": "guns blazing" + }, + { + "appid": 1470540, + "normalized_name": "aleya's ascent" + }, + { + "appid": 1470550, + "normalized_name": "stranded" + }, + { + "appid": 1470650, + "normalized_name": "宠物王国" + }, + { + "appid": 1470660, + "normalized_name": "amborettio" + }, + { + "appid": 1470670, + "normalized_name": "squirrelmageddon!" + }, + { + "appid": 1470680, + "normalized_name": "seiso master ken" + }, + { + "appid": 1470690, + "normalized_name": "ritum bitum" + }, + { + "appid": 1470720, + "normalized_name": "misery street" + }, + { + "appid": 1470730, + "normalized_name": "russian reality" + }, + { + "appid": 1470740, + "normalized_name": "fizz quiz" + }, + { + "appid": 1470750, + "normalized_name": "magic pot&ter battlegrounds" + }, + { + "appid": 1470790, + "normalized_name": "doug flutie's maximum football 2020" + }, + { + "appid": 1470800, + "normalized_name": "bear vodka balalaika call of chernobyl" + }, + { + "appid": 1470860, + "normalized_name": "sun warriors" + }, + { + "appid": 1470870, + "normalized_name": "because its hot! prologue" + }, + { + "appid": 1470880, + "normalized_name": "bakumari" + }, + { + "appid": 1470910, + "normalized_name": "blind_" + }, + { + "appid": 1470920, + "normalized_name": "howdy jacob!" + }, + { + "appid": 1470930, + "normalized_name": "space captain mccallery episode 3 the weaponmaster's challenge" + }, + { + "appid": 1470940, + "normalized_name": "star fleet ii krellan commander version 2.0" + }, + { + "appid": 1470970, + "normalized_name": "gravifire" + }, + { + "appid": 1471040, + "normalized_name": "base one" + }, + { + "appid": 1471080, + "normalized_name": "deep night detective chapter one" + }, + { + "appid": 1471120, + "normalized_name": "弹幕大修仙 开篇" + }, + { + "appid": 1471180, + "normalized_name": "梦江湖" + }, + { + "appid": 1471200, + "normalized_name": "yume" + }, + { + "appid": 1471220, + "normalized_name": "timothy ティモシー 神秘の森" + }, + { + "appid": 1471250, + "normalized_name": "orion the eternal punishment" + }, + { + "appid": 1471270, + "normalized_name": "seablip" + }, + { + "appid": 1471320, + "normalized_name": "devi a light in the dark" + }, + { + "appid": 1471410, + "normalized_name": "synthetik 2" + }, + { + "appid": 1471430, + "normalized_name": "somewhen" + }, + { + "appid": 1471450, + "normalized_name": "x遊戲" + }, + { + "appid": 1471460, + "normalized_name": "dualism" + }, + { + "appid": 1471470, + "normalized_name": "tales of lagoona" + }, + { + "appid": 1471480, + "normalized_name": "theomachiae" + }, + { + "appid": 1471490, + "normalized_name": "bob help them" + }, + { + "appid": 1471500, + "normalized_name": "tales of lagoona 2 peril at poseidon park" + }, + { + "appid": 1471510, + "normalized_name": "tales of lagoona 3 frauds forgeries and fishsticks" + }, + { + "appid": 1471530, + "normalized_name": "100 hidden gnomes" + }, + { + "appid": 1471550, + "normalized_name": "variable" + }, + { + "appid": 1471570, + "normalized_name": "industrial firefighters" + }, + { + "appid": 1471580, + "normalized_name": "death run" + }, + { + "appid": 1471600, + "normalized_name": "wardrive prologue" + }, + { + "appid": 1471610, + "normalized_name": "bdsm vr" + }, + { + "appid": 1471620, + "normalized_name": "bryant's freeski" + }, + { + "appid": 1471630, + "normalized_name": "megaramp" + }, + { + "appid": 1471650, + "normalized_name": "the knightling" + }, + { + "appid": 1471680, + "normalized_name": "cyclemania" + }, + { + "appid": 1471700, + "normalized_name": "minicology" + }, + { + "appid": 1471730, + "normalized_name": "kick it bunny!" + }, + { + "appid": 1471830, + "normalized_name": "wolfsbane" + }, + { + "appid": 1471850, + "normalized_name": "spike match" + }, + { + "appid": 1471900, + "normalized_name": "castle of the land" + }, + { + "appid": 1471910, + "normalized_name": "killer sudoku" + }, + { + "appid": 1471940, + "normalized_name": "bahamian rhapsody" + }, + { + "appid": 1471950, + "normalized_name": "yakuza cats" + }, + { + "appid": 1471960, + "normalized_name": "room to grow" + }, + { + "appid": 1471990, + "normalized_name": "rave asylum" + }, + { + "appid": 1472010, + "normalized_name": "black lilies eternal summer" + }, + { + "appid": 1472040, + "normalized_name": "cat's cradle" + }, + { + "appid": 1472060, + "normalized_name": "apollyon river of life" + }, + { + "appid": 1472160, + "normalized_name": "neko papala" + }, + { + "appid": 1472180, + "normalized_name": "attack tactic" + }, + { + "appid": 1472250, + "normalized_name": "rog citadel xv" + }, + { + "appid": 1472260, + "normalized_name": "macro golf" + }, + { + "appid": 1472320, + "normalized_name": "silver cats" + }, + { + "appid": 1472330, + "normalized_name": "nomad revisited" + }, + { + "appid": 1472380, + "normalized_name": "怪盗探偵ブロンドレディ" + }, + { + "appid": 1472430, + "normalized_name": "sketchy fables" + }, + { + "appid": 1472540, + "normalized_name": "save me mr tako" + }, + { + "appid": 1472550, + "normalized_name": "track" + }, + { + "appid": 1472560, + "normalized_name": "i am fish" + }, + { + "appid": 1472570, + "normalized_name": "world war battle simulator" + }, + { + "appid": 1472600, + "normalized_name": "terrene an evidence of life game" + }, + { + "appid": 1472620, + "normalized_name": "hot hentai puzzle vol.1" + }, + { + "appid": 1472660, + "normalized_name": "no place like home" + }, + { + "appid": 1472730, + "normalized_name": "simbus" + }, + { + "appid": 1472740, + "normalized_name": "das balkonzimmer" + }, + { + "appid": 1472810, + "normalized_name": "slime fantasy the search for the lost sword" + }, + { + "appid": 1472820, + "normalized_name": "pokoh" + }, + { + "appid": 1472930, + "normalized_name": "flock" + }, + { + "appid": 1472950, + "normalized_name": "hentai forever" + }, + { + "appid": 1472960, + "normalized_name": "chill iv" + }, + { + "appid": 1472970, + "normalized_name": "tinyattack" + }, + { + "appid": 1473000, + "normalized_name": "lumber party" + }, + { + "appid": 1473050, + "normalized_name": "100 hidden birds" + }, + { + "appid": 1473060, + "normalized_name": "reality break" + }, + { + "appid": 1473070, + "normalized_name": "nova genetics" + }, + { + "appid": 1473100, + "normalized_name": "guess colors" + }, + { + "appid": 1473130, + "normalized_name": "the chaser's voyage" + }, + { + "appid": 1473170, + "normalized_name": "aircraft sketch shooter" + }, + { + "appid": 1473180, + "normalized_name": "this is timmy" + }, + { + "appid": 1473220, + "normalized_name": "hundred chances the fortress" + }, + { + "appid": 1473250, + "normalized_name": "cafe owner simulator prologue" + }, + { + "appid": 1473260, + "normalized_name": "black gold" + }, + { + "appid": 1473270, + "normalized_name": "are you smarter than the crowd?" + }, + { + "appid": 1473350, + "normalized_name": "(the) gnorp apologue" + }, + { + "appid": 1473380, + "normalized_name": "g.nom" + }, + { + "appid": 1473420, + "normalized_name": "hanami" + }, + { + "appid": 1473480, + "normalized_name": "a.v.a global" + }, + { + "appid": 1473490, + "normalized_name": "gold diggers" + }, + { + "appid": 1473500, + "normalized_name": "rise of the samurai in vr" + }, + { + "appid": 1473540, + "normalized_name": "gondola's adventure" + }, + { + "appid": 1473550, + "normalized_name": "habroxia 2" + }, + { + "appid": 1473630, + "normalized_name": "elrit clover a forest in the rut is full of dangers" + }, + { + "appid": 1473640, + "normalized_name": "space nations battlearena" + }, + { + "appid": 1473650, + "normalized_name": "the fang" + }, + { + "appid": 1473660, + "normalized_name": "mrs. santa's gift hunt" + }, + { + "appid": 1473740, + "normalized_name": "maritime calling" + }, + { + "appid": 1473750, + "normalized_name": "tales of finariel card based rpg" + }, + { + "appid": 1473760, + "normalized_name": "beyond the storm" + }, + { + "appid": 1473780, + "normalized_name": "superstore rush" + }, + { + "appid": 1473790, + "normalized_name": "life of ocean" + }, + { + "appid": 1473820, + "normalized_name": "kitty tactics" + }, + { + "appid": 1473830, + "normalized_name": "space colonizer" + }, + { + "appid": 1473840, + "normalized_name": "one circle" + }, + { + "appid": 1473850, + "normalized_name": "golems td" + }, + { + "appid": 1473870, + "normalized_name": "hell loop" + }, + { + "appid": 1473880, + "normalized_name": "the humbling of a holy maiden" + }, + { + "appid": 1473900, + "normalized_name": "zealot" + }, + { + "appid": 1473920, + "normalized_name": "hentai it's my life" + }, + { + "appid": 1473930, + "normalized_name": "head worms" + }, + { + "appid": 1473940, + "normalized_name": "multiverse" + }, + { + "appid": 1474000, + "normalized_name": "age of ilcoin vr retribution" + }, + { + "appid": 1474050, + "normalized_name": "spellthief erinn" + }, + { + "appid": 1474060, + "normalized_name": "pitbots" + }, + { + "appid": 1474100, + "normalized_name": "angel sex pet" + }, + { + "appid": 1474120, + "normalized_name": "night/shade you're the drug" + }, + { + "appid": 1474130, + "normalized_name": "girls on puzzle 2" + }, + { + "appid": 1474190, + "normalized_name": "project bloom" + }, + { + "appid": 1474200, + "normalized_name": "sudoku rpg" + }, + { + "appid": 1474220, + "normalized_name": "wonder defense chapter earth" + }, + { + "appid": 1474280, + "normalized_name": "last kingdom the card game" + }, + { + "appid": 1474300, + "normalized_name": "moncon" + }, + { + "appid": 1474390, + "normalized_name": "broken paranormal investigation" + }, + { + "appid": 1474420, + "normalized_name": "honour runs" + }, + { + "appid": 1474440, + "normalized_name": "bog lord" + }, + { + "appid": 1474480, + "normalized_name": "antibody" + }, + { + "appid": 1474500, + "normalized_name": "flow's island" + }, + { + "appid": 1474550, + "normalized_name": "hexteria" + }, + { + "appid": 1474570, + "normalized_name": "cyber tennis" + }, + { + "appid": 1474580, + "normalized_name": "happy new hentai" + }, + { + "appid": 1474700, + "normalized_name": "monopoly poker" + }, + { + "appid": 1474740, + "normalized_name": "horse tales emerald valley ranch" + }, + { + "appid": 1474770, + "normalized_name": "strategic mind spirit of liberty" + }, + { + "appid": 1474790, + "normalized_name": "booom slang!" + }, + { + "appid": 1474840, + "normalized_name": "among stars and robots" + }, + { + "appid": 1474850, + "normalized_name": "black ido" + }, + { + "appid": 1474860, + "normalized_name": "rotatex 2" + }, + { + "appid": 1474880, + "normalized_name": "cash horse match 3 puzzle adventure" + }, + { + "appid": 1474900, + "normalized_name": "desolatium" + }, + { + "appid": 1474910, + "normalized_name": "frequency chernobyl — first signal" + }, + { + "appid": 1474930, + "normalized_name": "heavy cargo the truck simulator" + }, + { + "appid": 1474940, + "normalized_name": "royal roads 2 the magic box" + }, + { + "appid": 1474950, + "normalized_name": "torchway" + }, + { + "appid": 1474990, + "normalized_name": "deceased" + }, + { + "appid": 1475000, + "normalized_name": "laser burst" + }, + { + "appid": 1475080, + "normalized_name": "relaxing kite" + }, + { + "appid": 1475100, + "normalized_name": "double jump" + }, + { + "appid": 1475120, + "normalized_name": "call me under" + }, + { + "appid": 1475140, + "normalized_name": "green marquis" + }, + { + "appid": 1475150, + "normalized_name": "white rabbit" + }, + { + "appid": 1475160, + "normalized_name": "moi mei 2" + }, + { + "appid": 1475170, + "normalized_name": "boots vs plants" + }, + { + "appid": 1475180, + "normalized_name": "xpock" + }, + { + "appid": 1475200, + "normalized_name": "pickup basketball vr" + }, + { + "appid": 1475250, + "normalized_name": "tiny strife" + }, + { + "appid": 1475260, + "normalized_name": "a murmur in the trees" + }, + { + "appid": 1475300, + "normalized_name": "barbarian" + }, + { + "appid": 1475310, + "normalized_name": "factory magnate" + }, + { + "appid": 1475330, + "normalized_name": "peak darkness" + }, + { + "appid": 1475350, + "normalized_name": "breath" + }, + { + "appid": 1475370, + "normalized_name": "gretchen queen of crows" + }, + { + "appid": 1475380, + "normalized_name": "thedawn" + }, + { + "appid": 1475400, + "normalized_name": "run prop run! puropu pursuit" + }, + { + "appid": 1475420, + "normalized_name": "puzzling peaks exe" + }, + { + "appid": 1475430, + "normalized_name": "天师" + }, + { + "appid": 1475440, + "normalized_name": "revisitor" + }, + { + "appid": 1475450, + "normalized_name": "monsters briefcase and road" + }, + { + "appid": 1475460, + "normalized_name": "3 minute heroes" + }, + { + "appid": 1475470, + "normalized_name": "space sprinter vr" + }, + { + "appid": 1475600, + "normalized_name": "the santa paradox" + }, + { + "appid": 1475650, + "normalized_name": "12 labours of hercules xii timeless adventure" + }, + { + "appid": 1475670, + "normalized_name": "invincible cleopatra caesar's dreams" + }, + { + "appid": 1475700, + "normalized_name": "arcade machine basketball" + }, + { + "appid": 1475730, + "normalized_name": "" + }, + { + "appid": 1475740, + "normalized_name": "wonder cave" + }, + { + "appid": 1475760, + "normalized_name": "pig skater simulator" + }, + { + "appid": 1475770, + "normalized_name": "大正ゾンビろまん(プラス)" + }, + { + "appid": 1475780, + "normalized_name": "battle strike world war" + }, + { + "appid": 1475810, + "normalized_name": "ghostwire tokyo" + }, + { + "appid": 1475840, + "normalized_name": "rhythm sprout sick beats & bad sweets" + }, + { + "appid": 1475850, + "normalized_name": "rugby 22" + }, + { + "appid": 1475860, + "normalized_name": "pulsar they listen" + }, + { + "appid": 1475890, + "normalized_name": "mandinga a tale of banzo" + }, + { + "appid": 1475900, + "normalized_name": "snowball fight at christmas" + }, + { + "appid": 1475940, + "normalized_name": "electrodash" + }, + { + "appid": 1475960, + "normalized_name": "shindig" + }, + { + "appid": 1475970, + "normalized_name": "defentron" + }, + { + "appid": 1476000, + "normalized_name": "wreak the havoc" + }, + { + "appid": 1476020, + "normalized_name": "home safe and silent" + }, + { + "appid": 1476040, + "normalized_name": "far north" + }, + { + "appid": 1476080, + "normalized_name": "grow big (or go home)" + }, + { + "appid": 1476100, + "normalized_name": "a rogue escape" + }, + { + "appid": 1476130, + "normalized_name": "pacific life" + }, + { + "appid": 1476140, + "normalized_name": "night stalkers" + }, + { + "appid": 1476160, + "normalized_name": "adventures of sadukar chapter i" + }, + { + "appid": 1476170, + "normalized_name": "godstrike" + }, + { + "appid": 1476220, + "normalized_name": "catch a cat for 60 seconds" + }, + { + "appid": 1476230, + "normalized_name": "elmarion the lost temple" + }, + { + "appid": 1476290, + "normalized_name": "welcome to graystone" + }, + { + "appid": 1476330, + "normalized_name": "古龙传说" + }, + { + "appid": 1476340, + "normalized_name": "the adventure of nayu" + }, + { + "appid": 1476350, + "normalized_name": "brain meltdown into despair" + }, + { + "appid": 1476360, + "normalized_name": "挂机一条街" + }, + { + "appid": 1476380, + "normalized_name": "东方时裂空 ~ numerology of artifacts" + }, + { + "appid": 1476390, + "normalized_name": "the king of the oceans" + }, + { + "appid": 1476400, + "normalized_name": "northwind" + }, + { + "appid": 1476410, + "normalized_name": "slidungeon" + }, + { + "appid": 1476420, + "normalized_name": "anime street fight" + }, + { + "appid": 1476430, + "normalized_name": "s.u.m. slay uncool monsters" + }, + { + "appid": 1476450, + "normalized_name": "cyber hentai" + }, + { + "appid": 1476520, + "normalized_name": "gunsoul girl" + }, + { + "appid": 1476680, + "normalized_name": "a world of little legends" + }, + { + "appid": 1476690, + "normalized_name": "15 puzzle" + }, + { + "appid": 1476710, + "normalized_name": "ouija" + }, + { + "appid": 1476720, + "normalized_name": "retro run" + }, + { + "appid": 1476750, + "normalized_name": "you are alone" + }, + { + "appid": 1476760, + "normalized_name": "amazing fix" + }, + { + "appid": 1476790, + "normalized_name": "bear vodka balalaika cyberpunk" + }, + { + "appid": 1476800, + "normalized_name": "existensis" + }, + { + "appid": 1476830, + "normalized_name": "guillotine" + }, + { + "appid": 1476850, + "normalized_name": "sea of blood" + }, + { + "appid": 1476870, + "normalized_name": "robo gauntlet" + }, + { + "appid": 1476880, + "normalized_name": "spectral" + }, + { + "appid": 1476920, + "normalized_name": "football girl" + }, + { + "appid": 1476930, + "normalized_name": "political fight club" + }, + { + "appid": 1476940, + "normalized_name": "skinwalkers" + }, + { + "appid": 1476950, + "normalized_name": "planetary control!" + }, + { + "appid": 1476970, + "normalized_name": "idleon the idle rpg" + }, + { + "appid": 1477000, + "normalized_name": "starship turd nugget too cool for stool" + }, + { + "appid": 1477010, + "normalized_name": "醉梦传说 ~ tales of heroes in gensoukyo" + }, + { + "appid": 1477020, + "normalized_name": "wordle 4" + }, + { + "appid": 1477040, + "normalized_name": "nature's element" + }, + { + "appid": 1477050, + "normalized_name": "grim wanderings 2" + }, + { + "appid": 1477060, + "normalized_name": "among ass" + }, + { + "appid": 1477070, + "normalized_name": "depersonalization" + }, + { + "appid": 1477080, + "normalized_name": "autoparts simulator" + }, + { + "appid": 1477120, + "normalized_name": "revenger" + }, + { + "appid": 1477130, + "normalized_name": "trouble comes twice" + }, + { + "appid": 1477170, + "normalized_name": "empires shall fall" + }, + { + "appid": 1477200, + "normalized_name": "syndication cyberpunk" + }, + { + "appid": 1477250, + "normalized_name": "puff puff the magic pipe" + }, + { + "appid": 1477290, + "normalized_name": "poet squad" + }, + { + "appid": 1477300, + "normalized_name": "ninja blast" + }, + { + "appid": 1477310, + "normalized_name": "blue energy" + }, + { + "appid": 1477320, + "normalized_name": "warring states" + }, + { + "appid": 1477330, + "normalized_name": "魂之归宿 soulestination" + }, + { + "appid": 1477380, + "normalized_name": "exotic cars vi standard" + }, + { + "appid": 1477420, + "normalized_name": "neo zero" + }, + { + "appid": 1477450, + "normalized_name": "一人之下之寻炁迷踪" + }, + { + "appid": 1477460, + "normalized_name": "league of angels pact" + }, + { + "appid": 1477470, + "normalized_name": "relentless ranger" + }, + { + "appid": 1477480, + "normalized_name": "ciel nosurge ushinawareta hoshi e sasagu uta dx" + }, + { + "appid": 1477490, + "normalized_name": "ar nosurge ode to an unborn star deluxe" + }, + { + "appid": 1477560, + "normalized_name": "petrifactionunderruin" + }, + { + "appid": 1477570, + "normalized_name": "gunspell 2 – match 3 puzzle rpg" + }, + { + "appid": 1477590, + "normalized_name": "ez2on reboot r" + }, + { + "appid": 1477640, + "normalized_name": "the last islands of man" + }, + { + "appid": 1477650, + "normalized_name": "vr jurassic escape" + }, + { + "appid": 1477660, + "normalized_name": "vr atlantis search with deep diving" + }, + { + "appid": 1477700, + "normalized_name": "project wunderwaffe" + }, + { + "appid": 1477710, + "normalized_name": "the last pirate adventure drake's treasure" + }, + { + "appid": 1477770, + "normalized_name": "shokuo shoujo" + }, + { + "appid": 1477790, + "normalized_name": "luna's fishing garden" + }, + { + "appid": 1477810, + "normalized_name": "robolife days with aino" + }, + { + "appid": 1477850, + "normalized_name": "millennium atoll" + }, + { + "appid": 1477870, + "normalized_name": "elemental" + }, + { + "appid": 1477880, + "normalized_name": "super tanks rpg" + }, + { + "appid": 1477890, + "normalized_name": "anti jump man" + }, + { + "appid": 1477900, + "normalized_name": "ricky did nothing wrong" + }, + { + "appid": 1477920, + "normalized_name": "night book" + }, + { + "appid": 1477930, + "normalized_name": "bike messenger" + }, + { + "appid": 1477940, + "normalized_name": "unknown 9 awakening" + }, + { + "appid": 1477950, + "normalized_name": "lazy galaxy 2" + }, + { + "appid": 1477970, + "normalized_name": "my little village" + }, + { + "appid": 1477980, + "normalized_name": "freud's bones the game" + }, + { + "appid": 1478030, + "normalized_name": "mambo wave" + }, + { + "appid": 1478050, + "normalized_name": "tomb rumble" + }, + { + "appid": 1478070, + "normalized_name": "fights in tight spaces (prologue)" + }, + { + "appid": 1478080, + "normalized_name": "omi domini" + }, + { + "appid": 1478140, + "normalized_name": "gravity shifter" + }, + { + "appid": 1478160, + "normalized_name": "咸鱼喵喵" + }, + { + "appid": 1478180, + "normalized_name": "the legion of maelstrom" + }, + { + "appid": 1478200, + "normalized_name": "hvor confrontation" + }, + { + "appid": 1478210, + "normalized_name": "scramble" + }, + { + "appid": 1478220, + "normalized_name": "puzzle together multiplayer jigsaw puzzles" + }, + { + "appid": 1478230, + "normalized_name": "love cooking at home? turn your hobby into a business!" + }, + { + "appid": 1478240, + "normalized_name": "the wormaid" + }, + { + "appid": 1478260, + "normalized_name": "city of rampage" + }, + { + "appid": 1478270, + "normalized_name": "gênese" + }, + { + "appid": 1478310, + "normalized_name": "alone in the stars survivor" + }, + { + "appid": 1478320, + "normalized_name": "parallel shift" + }, + { + "appid": 1478340, + "normalized_name": "turbo sliders unlimited" + }, + { + "appid": 1478350, + "normalized_name": "game dev masters" + }, + { + "appid": 1478380, + "normalized_name": "paradaice shock arena" + }, + { + "appid": 1478400, + "normalized_name": "hellist" + }, + { + "appid": 1478410, + "normalized_name": "像素男友 语音完整版" + }, + { + "appid": 1478420, + "normalized_name": "poco in dungeon" + }, + { + "appid": 1478440, + "normalized_name": "完美决策 perfect decision" + }, + { + "appid": 1478470, + "normalized_name": "fishy but in 2.5d" + }, + { + "appid": 1478480, + "normalized_name": "fizik" + }, + { + "appid": 1478500, + "normalized_name": "big walk" + }, + { + "appid": 1478590, + "normalized_name": "enemy remains" + }, + { + "appid": 1478600, + "normalized_name": "amulet of time shadow of la rochelle" + }, + { + "appid": 1478620, + "normalized_name": "return of the heir" + }, + { + "appid": 1478630, + "normalized_name": "brutality club" + }, + { + "appid": 1478650, + "normalized_name": "diggles the myth of fenris" + }, + { + "appid": 1478670, + "normalized_name": "smashing time" + }, + { + "appid": 1478700, + "normalized_name": "motherboard" + }, + { + "appid": 1478710, + "normalized_name": "affectus" + }, + { + "appid": 1478730, + "normalized_name": "tune my car" + }, + { + "appid": 1478780, + "normalized_name": "you are weak" + }, + { + "appid": 1478830, + "normalized_name": "baobabs mausoleum grindhouse country of woods and creepy tales" + }, + { + "appid": 1478850, + "normalized_name": "vendir plague of lies" + }, + { + "appid": 1478880, + "normalized_name": "sep's diner" + }, + { + "appid": 1478910, + "normalized_name": "summer camp" + }, + { + "appid": 1478960, + "normalized_name": "ring racer" + }, + { + "appid": 1478970, + "normalized_name": "ai olympius" + }, + { + "appid": 1478980, + "normalized_name": "pinball" + }, + { + "appid": 1479000, + "normalized_name": "shredded secrets" + }, + { + "appid": 1479010, + "normalized_name": "christmas day" + }, + { + "appid": 1479020, + "normalized_name": "life of a yandere simp" + }, + { + "appid": 1479030, + "normalized_name": "2econds to stδrlivht my heart's reflection" + }, + { + "appid": 1479080, + "normalized_name": "oceanarium" + }, + { + "appid": 1479090, + "normalized_name": "the cruel dreamer marchosias" + }, + { + "appid": 1479100, + "normalized_name": "worst nightmare" + }, + { + "appid": 1479120, + "normalized_name": "pokon factory survival" + }, + { + "appid": 1479140, + "normalized_name": "ak xolotl together" + }, + { + "appid": 1479210, + "normalized_name": "hustomten" + }, + { + "appid": 1479300, + "normalized_name": "vr hentai" + }, + { + "appid": 1479310, + "normalized_name": "spare parts episode 1" + }, + { + "appid": 1479320, + "normalized_name": "bedroom blackjack" + }, + { + "appid": 1479330, + "normalized_name": "the infinite trial of a hopeless man running" + }, + { + "appid": 1479340, + "normalized_name": "derelict void" + }, + { + "appid": 1479360, + "normalized_name": "button lock 2 star carrier" + }, + { + "appid": 1479370, + "normalized_name": "pixel game maker series werewolf princess kaguya" + }, + { + "appid": 1479390, + "normalized_name": "alekon" + }, + { + "appid": 1479400, + "normalized_name": "riffle effect" + }, + { + "appid": 1479460, + "normalized_name": "naginata" + }, + { + "appid": 1479470, + "normalized_name": "maniac path 2" + }, + { + "appid": 1479480, + "normalized_name": "polity online role playing" + }, + { + "appid": 1479490, + "normalized_name": "terminal" + }, + { + "appid": 1479500, + "normalized_name": "湛藍牢籠 rail of möbius" + }, + { + "appid": 1479530, + "normalized_name": "on closer inspection" + }, + { + "appid": 1479540, + "normalized_name": "dragon mission" + }, + { + "appid": 1479610, + "normalized_name": "planeta" + }, + { + "appid": 1479730, + "normalized_name": "commandos origins" + }, + { + "appid": 1479750, + "normalized_name": "kinesis" + }, + { + "appid": 1479760, + "normalized_name": "na.no" + }, + { + "appid": 1479780, + "normalized_name": "our apartment" + }, + { + "appid": 1479810, + "normalized_name": "legendary hoplite" + }, + { + "appid": 1479830, + "normalized_name": "gem deeps" + }, + { + "appid": 1479840, + "normalized_name": "vidya poker" + }, + { + "appid": 1479850, + "normalized_name": "chompy chomp chomp party" + }, + { + "appid": 1479870, + "normalized_name": "schoolmates the mystery of the magical bracelet" + }, + { + "appid": 1479880, + "normalized_name": "role of hex" + }, + { + "appid": 1479890, + "normalized_name": "inua a story in ice and time" + }, + { + "appid": 1479910, + "normalized_name": "monstrous molecules" + }, + { + "appid": 1479930, + "normalized_name": "enyla x" + }, + { + "appid": 1479940, + "normalized_name": "fragments" + }, + { + "appid": 1479960, + "normalized_name": "arcus" + }, + { + "appid": 1479970, + "normalized_name": "half cat" + }, + { + "appid": 1479990, + "normalized_name": "power of two" + }, + { + "appid": 1480010, + "normalized_name": "christmas stories the christmas tree forest collector's" + }, + { + "appid": 1480030, + "normalized_name": "a way to be dead" + }, + { + "appid": 1480040, + "normalized_name": "touhou multi scroll shooting 2" + }, + { + "appid": 1480050, + "normalized_name": "survival rpg the lost treasure" + }, + { + "appid": 1480060, + "normalized_name": "poly gangs" + }, + { + "appid": 1480090, + "normalized_name": "basement dweller" + }, + { + "appid": 1480110, + "normalized_name": "bladam topaz" + }, + { + "appid": 1480120, + "normalized_name": "100 hidden eternals" + }, + { + "appid": 1480130, + "normalized_name": "free bees" + }, + { + "appid": 1480190, + "normalized_name": "salyut π" + }, + { + "appid": 1480210, + "normalized_name": "the garden of orilon" + }, + { + "appid": 1480220, + "normalized_name": "blob person" + }, + { + "appid": 1480240, + "normalized_name": "you pilot a piece of s*** gaiden" + }, + { + "appid": 1480260, + "normalized_name": "rathe the beginning" + }, + { + "appid": 1480370, + "normalized_name": "love puzzle" + }, + { + "appid": 1480400, + "normalized_name": "ramses rise of empire" + }, + { + "appid": 1480410, + "normalized_name": "sentinel cursed knight" + }, + { + "appid": 1480440, + "normalized_name": "desktop neko girl" + }, + { + "appid": 1480470, + "normalized_name": "go! birdie" + }, + { + "appid": 1480480, + "normalized_name": "desktopmmd3 miss fish" + }, + { + "appid": 1480520, + "normalized_name": "faye/sleepwalker" + }, + { + "appid": 1480540, + "normalized_name": "fiction.colors" + }, + { + "appid": 1480560, + "normalized_name": "lawn mowing simulator" + }, + { + "appid": 1480570, + "normalized_name": "finding alina" + }, + { + "appid": 1480600, + "normalized_name": "red hands – 2 player game" + }, + { + "appid": 1480630, + "normalized_name": "memory maze" + }, + { + "appid": 1480650, + "normalized_name": "a very bad christmas eve" + }, + { + "appid": 1480690, + "normalized_name": "pangea" + }, + { + "appid": 1480700, + "normalized_name": "侠行天下" + }, + { + "appid": 1480730, + "normalized_name": "whiteside" + }, + { + "appid": 1480740, + "normalized_name": "doomsday room" + }, + { + "appid": 1480810, + "normalized_name": "crimson tactics the rise of the white banner" + }, + { + "appid": 1480830, + "normalized_name": "evil tonight" + }, + { + "appid": 1480860, + "normalized_name": "tortuga" + }, + { + "appid": 1480870, + "normalized_name": "lightning fast" + }, + { + "appid": 1480910, + "normalized_name": "tomb of the lost sentry" + }, + { + "appid": 1480930, + "normalized_name": "monkey split" + }, + { + "appid": 1480960, + "normalized_name": "godsbane" + }, + { + "appid": 1480970, + "normalized_name": "brandins buttons" + }, + { + "appid": 1480990, + "normalized_name": "mother hub" + }, + { + "appid": 1481000, + "normalized_name": "triversal" + }, + { + "appid": 1481020, + "normalized_name": "without my arms" + }, + { + "appid": 1481060, + "normalized_name": "the dark world edge of eternity" + }, + { + "appid": 1481070, + "normalized_name": "max raider" + }, + { + "appid": 1481080, + "normalized_name": "dramatical murder" + }, + { + "appid": 1481120, + "normalized_name": "re nullum" + }, + { + "appid": 1481140, + "normalized_name": "lost astronaut" + }, + { + "appid": 1481150, + "normalized_name": "weltreich political strategy simulator" + }, + { + "appid": 1481160, + "normalized_name": "the astronomy game" + }, + { + "appid": 1481170, + "normalized_name": "zephon" + }, + { + "appid": 1481210, + "normalized_name": "psychoscopy" + }, + { + "appid": 1481310, + "normalized_name": "teamjumpers new reality" + }, + { + "appid": 1481330, + "normalized_name": "vr funhouse christmas" + }, + { + "appid": 1481340, + "normalized_name": "飄流幻境m" + }, + { + "appid": 1481360, + "normalized_name": "move forward" + }, + { + "appid": 1481370, + "normalized_name": "gopogo" + }, + { + "appid": 1481400, + "normalized_name": "dagon by h. p. lovecraft" + }, + { + "appid": 1481440, + "normalized_name": "guardians frontline" + }, + { + "appid": 1481480, + "normalized_name": "tank firing" + }, + { + "appid": 1481500, + "normalized_name": "return to sender" + }, + { + "appid": 1481550, + "normalized_name": "resistance the 8th wave" + }, + { + "appid": 1481580, + "normalized_name": "milkyway funland" + }, + { + "appid": 1481600, + "normalized_name": "fake racing" + }, + { + "appid": 1481620, + "normalized_name": "secred foot art" + }, + { + "appid": 1481630, + "normalized_name": "command line pilot" + }, + { + "appid": 1481660, + "normalized_name": "sun girls" + }, + { + "appid": 1481680, + "normalized_name": "lab craft survival" + }, + { + "appid": 1481700, + "normalized_name": "private property" + }, + { + "appid": 1481710, + "normalized_name": "plexus vr" + }, + { + "appid": 1481720, + "normalized_name": "shemhamephorash" + }, + { + "appid": 1481730, + "normalized_name": "cosmo clash" + }, + { + "appid": 1481740, + "normalized_name": "training space station" + }, + { + "appid": 1481760, + "normalized_name": "levaluhta" + }, + { + "appid": 1481780, + "normalized_name": "dragon fist vr kung fu" + }, + { + "appid": 1481810, + "normalized_name": "ostrich runner" + }, + { + "appid": 1481820, + "normalized_name": "dreamscript" + }, + { + "appid": 1481830, + "normalized_name": "地下室" + }, + { + "appid": 1481840, + "normalized_name": "frisbros" + }, + { + "appid": 1481860, + "normalized_name": "hanoi puzzles magnetrix" + }, + { + "appid": 1481870, + "normalized_name": "emanate" + }, + { + "appid": 1481880, + "normalized_name": "invincible fins" + }, + { + "appid": 1481900, + "normalized_name": "morstairs part i oath of fealty" + }, + { + "appid": 1481910, + "normalized_name": "time bandit – part 1 appendages of the machine" + }, + { + "appid": 1481930, + "normalized_name": "trajectory fracture" + }, + { + "appid": 1481940, + "normalized_name": "medium the psychic party game" + }, + { + "appid": 1481960, + "normalized_name": "death off the cuff" + }, + { + "appid": 1481970, + "normalized_name": "drugs and crime idle" + }, + { + "appid": 1481990, + "normalized_name": "soul recursion" + }, + { + "appid": 1482000, + "normalized_name": "lineart jigsaw puzzle erotica 2" + }, + { + "appid": 1482050, + "normalized_name": "space ship infinity" + }, + { + "appid": 1482060, + "normalized_name": "lands of peace legends chapter 1" + }, + { + "appid": 1482090, + "normalized_name": "la légende des diamétis la quête de chloé" + }, + { + "appid": 1482130, + "normalized_name": "teodoro" + }, + { + "appid": 1482150, + "normalized_name": "made marion" + }, + { + "appid": 1482240, + "normalized_name": "caroline's abyss" + }, + { + "appid": 1482320, + "normalized_name": "琉隐" + }, + { + "appid": 1482330, + "normalized_name": "机甲坦克大乱斗/mecha and tank fighting" + }, + { + "appid": 1482340, + "normalized_name": "battle bears 1" + }, + { + "appid": 1482360, + "normalized_name": "rio warzone" + }, + { + "appid": 1482380, + "normalized_name": "maniac" + }, + { + "appid": 1482400, + "normalized_name": "infinite voyager" + }, + { + "appid": 1482420, + "normalized_name": "insect bombardier beetle" + }, + { + "appid": 1482430, + "normalized_name": "simona's requiem" + }, + { + "appid": 1482450, + "normalized_name": "rosy manga" + }, + { + "appid": 1482470, + "normalized_name": "pirates republic" + }, + { + "appid": 1482480, + "normalized_name": "fall in duty" + }, + { + "appid": 1482490, + "normalized_name": "seiken manifestia" + }, + { + "appid": 1482500, + "normalized_name": "build fight game" + }, + { + "appid": 1482510, + "normalized_name": "tap tap adventure" + }, + { + "appid": 1482530, + "normalized_name": "geometrybricks" + }, + { + "appid": 1482540, + "normalized_name": "kang's adventures the escape" + }, + { + "appid": 1482550, + "normalized_name": "i am the captain now" + }, + { + "appid": 1482580, + "normalized_name": "chill x" + }, + { + "appid": 1482600, + "normalized_name": "dark tree" + }, + { + "appid": 1482610, + "normalized_name": "critical damage" + }, + { + "appid": 1482620, + "normalized_name": "slappyball" + }, + { + "appid": 1482640, + "normalized_name": "nurose" + }, + { + "appid": 1482660, + "normalized_name": "match talk date! a modern dating sim!" + }, + { + "appid": 1482670, + "normalized_name": "oscillate" + }, + { + "appid": 1482680, + "normalized_name": "the day they came" + }, + { + "appid": 1482690, + "normalized_name": "the inspector" + }, + { + "appid": 1482700, + "normalized_name": "speed stars" + }, + { + "appid": 1482720, + "normalized_name": "the scary square" + }, + { + "appid": 1482740, + "normalized_name": "atomic guardians" + }, + { + "appid": 1482750, + "normalized_name": "waves of steel" + }, + { + "appid": 1482770, + "normalized_name": "terra firma" + }, + { + "appid": 1482780, + "normalized_name": "eggineer" + }, + { + "appid": 1482790, + "normalized_name": "zoosim" + }, + { + "appid": 1482800, + "normalized_name": "faraway qualia" + }, + { + "appid": 1482820, + "normalized_name": "void marauders" + }, + { + "appid": 1482830, + "normalized_name": "ho ho home invasion" + }, + { + "appid": 1482840, + "normalized_name": "come with me" + }, + { + "appid": 1482850, + "normalized_name": "big adventure of fighting chicken" + }, + { + "appid": 1482860, + "normalized_name": "idle research" + }, + { + "appid": 1482870, + "normalized_name": "midnight legends" + }, + { + "appid": 1482880, + "normalized_name": "hentai gothic girl" + }, + { + "appid": 1482890, + "normalized_name": "sputnik" + }, + { + "appid": 1482910, + "normalized_name": "idle monster td" + }, + { + "appid": 1482920, + "normalized_name": "dance waifu" + }, + { + "appid": 1482940, + "normalized_name": "rumours from elsewhere" + }, + { + "appid": 1482970, + "normalized_name": "limb hunter" + }, + { + "appid": 1482980, + "normalized_name": "theater of carnage" + }, + { + "appid": 1482990, + "normalized_name": "unseen" + }, + { + "appid": 1483000, + "normalized_name": "phantom beasts redemption" + }, + { + "appid": 1483010, + "normalized_name": "fight for eden" + }, + { + "appid": 1483020, + "normalized_name": "redneck rift" + }, + { + "appid": 1483030, + "normalized_name": "debatto delivery battle" + }, + { + "appid": 1483040, + "normalized_name": "hexagon puzzle" + }, + { + "appid": 1483060, + "normalized_name": "cube paradox" + }, + { + "appid": 1483090, + "normalized_name": "hentai neon" + }, + { + "appid": 1483100, + "normalized_name": "one more dungeon 2" + }, + { + "appid": 1483110, + "normalized_name": "alien ai" + }, + { + "appid": 1483130, + "normalized_name": "puzlkind jigsaw puzzles" + }, + { + "appid": 1483140, + "normalized_name": "the trap" + }, + { + "appid": 1483190, + "normalized_name": "memory lost" + }, + { + "appid": 1483300, + "normalized_name": "mazm the phantom of the opera" + }, + { + "appid": 1483310, + "normalized_name": "大禹治水 flood fighting hero" + }, + { + "appid": 1483320, + "normalized_name": "railroad engineer" + }, + { + "appid": 1483330, + "normalized_name": "dice rollers" + }, + { + "appid": 1483340, + "normalized_name": "极限挑战:登录星球" + }, + { + "appid": 1483350, + "normalized_name": "diving disorder 下潜症" + }, + { + "appid": 1483370, + "normalized_name": "いのちのつかいかた / the use of life" + }, + { + "appid": 1483380, + "normalized_name": "vertigo rush" + }, + { + "appid": 1483390, + "normalized_name": "dragon's tower" + }, + { + "appid": 1483430, + "normalized_name": "seena vr (beta)" + }, + { + "appid": 1483440, + "normalized_name": "minigun vs swarms of the zombie apocalypse simulator" + }, + { + "appid": 1483470, + "normalized_name": "catty & batty the spirit guide" + }, + { + "appid": 1483550, + "normalized_name": "axe gang" + }, + { + "appid": 1483570, + "normalized_name": "lost lands redemption collector's" + }, + { + "appid": 1483580, + "normalized_name": "death ski" + }, + { + "appid": 1483600, + "normalized_name": "逢魔之時" + }, + { + "appid": 1483610, + "normalized_name": "gravitrex arcade" + }, + { + "appid": 1483750, + "normalized_name": "druta cinta" + }, + { + "appid": 1483770, + "normalized_name": "primal man simulator" + }, + { + "appid": 1483780, + "normalized_name": "tested on humans escape room" + }, + { + "appid": 1483800, + "normalized_name": "adventure llama" + }, + { + "appid": 1483830, + "normalized_name": "cyberpunk fighter" + }, + { + "appid": 1483850, + "normalized_name": "high poly rise of the machines" + }, + { + "appid": 1483860, + "normalized_name": "super space serpent se" + }, + { + "appid": 1483870, + "normalized_name": "draw & guess" + }, + { + "appid": 1483890, + "normalized_name": "loopomotive" + }, + { + "appid": 1483940, + "normalized_name": "slide stories bonds & memories" + }, + { + "appid": 1483970, + "normalized_name": "nullmaze" + }, + { + "appid": 1483980, + "normalized_name": "phi" + }, + { + "appid": 1483990, + "normalized_name": "death of the rising sun" + }, + { + "appid": 1484010, + "normalized_name": "farty bird" + }, + { + "appid": 1484050, + "normalized_name": "made interactive movie – 01. run away!" + }, + { + "appid": 1484070, + "normalized_name": "the drifting woods" + }, + { + "appid": 1484100, + "normalized_name": "matt's project zombies endless" + }, + { + "appid": 1484130, + "normalized_name": "s in" + }, + { + "appid": 1484140, + "normalized_name": "multimind challengers" + }, + { + "appid": 1484150, + "normalized_name": "vr museum tour grand collection" + }, + { + "appid": 1484170, + "normalized_name": "prayerplay order of knowledge" + }, + { + "appid": 1484180, + "normalized_name": "goons legends & mayhem" + }, + { + "appid": 1484210, + "normalized_name": "lost remnant wherehouse" + }, + { + "appid": 1484250, + "normalized_name": "all is fair in dust and air" + }, + { + "appid": 1484280, + "normalized_name": "demeo" + }, + { + "appid": 1484320, + "normalized_name": "岛与工厂 island and factories" + }, + { + "appid": 1484340, + "normalized_name": "nightshift" + }, + { + "appid": 1484560, + "normalized_name": "ecchi spirit" + }, + { + "appid": 1484580, + "normalized_name": "the first friend" + }, + { + "appid": 1484600, + "normalized_name": "stand by me" + }, + { + "appid": 1484610, + "normalized_name": "yabai mantis vr" + }, + { + "appid": 1484620, + "normalized_name": "arcade spirits the new challengers" + }, + { + "appid": 1484660, + "normalized_name": "drabidiboo" + }, + { + "appid": 1484720, + "normalized_name": "dead estate" + }, + { + "appid": 1484730, + "normalized_name": "papa's quiz" + }, + { + "appid": 1484740, + "normalized_name": "space abyss" + }, + { + "appid": 1484750, + "normalized_name": "maze escape" + }, + { + "appid": 1484760, + "normalized_name": "tamarindos freaking dinner" + }, + { + "appid": 1484790, + "normalized_name": "grave knight" + }, + { + "appid": 1484800, + "normalized_name": "zardy's maze" + }, + { + "appid": 1484830, + "normalized_name": "last days" + }, + { + "appid": 1484890, + "normalized_name": "seekers aeterna" + }, + { + "appid": 1484900, + "normalized_name": "hoa" + }, + { + "appid": 1484940, + "normalized_name": "marmoreal" + }, + { + "appid": 1484950, + "normalized_name": "ejected star" + }, + { + "appid": 1484960, + "normalized_name": "escape to moscow" + }, + { + "appid": 1484970, + "normalized_name": "shoot your friends" + }, + { + "appid": 1484980, + "normalized_name": "super huey 1 & 2 airdrop" + }, + { + "appid": 1485010, + "normalized_name": "worshippers of the gain" + }, + { + "appid": 1485030, + "normalized_name": "tobari 2 nightmare" + }, + { + "appid": 1485050, + "normalized_name": "nanocells mission back home" + }, + { + "appid": 1485070, + "normalized_name": "esse proxy" + }, + { + "appid": 1485080, + "normalized_name": "just act natural" + }, + { + "appid": 1485100, + "normalized_name": "hentai femdom sim femdom university" + }, + { + "appid": 1485110, + "normalized_name": "scigirl the internship" + }, + { + "appid": 1485120, + "normalized_name": "boombox" + }, + { + "appid": 1485140, + "normalized_name": "ultrawings 2" + }, + { + "appid": 1485160, + "normalized_name": "black noise" + }, + { + "appid": 1485190, + "normalized_name": "maelstrom a yaoi visual novel" + }, + { + "appid": 1485200, + "normalized_name": "the vision" + }, + { + "appid": 1485210, + "normalized_name": "blackstar" + }, + { + "appid": 1485230, + "normalized_name": "moloko" + }, + { + "appid": 1485240, + "normalized_name": "virt u mate" + }, + { + "appid": 1485250, + "normalized_name": "frame of mind" + }, + { + "appid": 1485260, + "normalized_name": "visitations" + }, + { + "appid": 1485270, + "normalized_name": "老房子" + }, + { + "appid": 1485280, + "normalized_name": "demian the ritual" + }, + { + "appid": 1485340, + "normalized_name": "game of mafia" + }, + { + "appid": 1485350, + "normalized_name": "mech mechanic simulator prologue" + }, + { + "appid": 1485370, + "normalized_name": "futuclass education" + }, + { + "appid": 1485380, + "normalized_name": "iguide knossos vr" + }, + { + "appid": 1485450, + "normalized_name": "free kick x" + }, + { + "appid": 1485460, + "normalized_name": "gladiators vr tournament" + }, + { + "appid": 1485580, + "normalized_name": "chess valley" + }, + { + "appid": 1485590, + "normalized_name": "endless dungeon" + }, + { + "appid": 1485600, + "normalized_name": "pipo park" + }, + { + "appid": 1485630, + "normalized_name": "colonials programme" + }, + { + "appid": 1485640, + "normalized_name": "the day after" + }, + { + "appid": 1485650, + "normalized_name": "zen world" + }, + { + "appid": 1485690, + "normalized_name": "potion tycoon" + }, + { + "appid": 1485730, + "normalized_name": "dash hale" + }, + { + "appid": 1485860, + "normalized_name": "isekai reincarnation in a new world" + }, + { + "appid": 1485870, + "normalized_name": "evil inside prologue" + }, + { + "appid": 1485900, + "normalized_name": "eye caramba!" + }, + { + "appid": 1485940, + "normalized_name": "cattch" + }, + { + "appid": 1485970, + "normalized_name": "sik space invader kreature" + }, + { + "appid": 1485980, + "normalized_name": "orpheus fall for eurydice" + }, + { + "appid": 1485990, + "normalized_name": "scp 455" + }, + { + "appid": 1486000, + "normalized_name": "retexo mori" + }, + { + "appid": 1486030, + "normalized_name": "hollow witch" + }, + { + "appid": 1486050, + "normalized_name": "let's learn shogi" + }, + { + "appid": 1486060, + "normalized_name": "the lustful champion" + }, + { + "appid": 1486070, + "normalized_name": "dark zodiac" + }, + { + "appid": 1486080, + "normalized_name": "time master" + }, + { + "appid": 1486120, + "normalized_name": "2020 the ride" + }, + { + "appid": 1486140, + "normalized_name": "microcosmum 2" + }, + { + "appid": 1486180, + "normalized_name": "weatherworn the adventure of pap & pup" + }, + { + "appid": 1486190, + "normalized_name": "streamsavers" + }, + { + "appid": 1486200, + "normalized_name": "eves drop" + }, + { + "appid": 1486270, + "normalized_name": "agent of chaos" + }, + { + "appid": 1486280, + "normalized_name": "the backrooms mass extinction" + }, + { + "appid": 1486290, + "normalized_name": "polyleague manager 2026 football evolution" + }, + { + "appid": 1486300, + "normalized_name": "death cube" + }, + { + "appid": 1486330, + "normalized_name": "vr探索梅西爾" + }, + { + "appid": 1486340, + "normalized_name": "naughty memories asian beauty" + }, + { + "appid": 1486370, + "normalized_name": "phase ninja" + }, + { + "appid": 1486410, + "normalized_name": "forsaken champions" + }, + { + "appid": 1486430, + "normalized_name": "约会模拟器:原型" + }, + { + "appid": 1486440, + "normalized_name": "graze counter gm" + }, + { + "appid": 1486450, + "normalized_name": "the lonesome guild" + }, + { + "appid": 1486520, + "normalized_name": "mermaid adventures the magic pearl" + }, + { + "appid": 1486540, + "normalized_name": "vr skydiving" + }, + { + "appid": 1486600, + "normalized_name": "contract killer simulator mafia" + }, + { + "appid": 1486620, + "normalized_name": "live inc." + }, + { + "appid": 1486630, + "normalized_name": "intravenous" + }, + { + "appid": 1486660, + "normalized_name": "dragon vr" + }, + { + "appid": 1486670, + "normalized_name": "shadow lost" + }, + { + "appid": 1486690, + "normalized_name": "flower in the snow resurrection" + }, + { + "appid": 1486720, + "normalized_name": "handson" + }, + { + "appid": 1486730, + "normalized_name": "ragdoll racers" + }, + { + "appid": 1486750, + "normalized_name": "传奇世界之仗剑天涯h5" + }, + { + "appid": 1486790, + "normalized_name": "portal mortal" + }, + { + "appid": 1486800, + "normalized_name": "chess knights high noon" + }, + { + "appid": 1486810, + "normalized_name": "firesoul" + }, + { + "appid": 1486840, + "normalized_name": "santacraft" + }, + { + "appid": 1486860, + "normalized_name": "penelope" + }, + { + "appid": 1486870, + "normalized_name": "hiddenverse ominous opus" + }, + { + "appid": 1486890, + "normalized_name": "mini slide animal race" + }, + { + "appid": 1486900, + "normalized_name": "18 есть?" + }, + { + "appid": 1486910, + "normalized_name": "console simulator" + }, + { + "appid": 1486920, + "normalized_name": "tempest rising" + }, + { + "appid": 1486940, + "normalized_name": "earthx 2" + }, + { + "appid": 1486950, + "normalized_name": "the underground man 2" + }, + { + "appid": 1486970, + "normalized_name": "petdrivr" + }, + { + "appid": 1486980, + "normalized_name": "灵钟" + }, + { + "appid": 1486990, + "normalized_name": "rubber" + }, + { + "appid": 1487000, + "normalized_name": "plastic blue [lofi beats to study and sleep to]" + }, + { + "appid": 1487030, + "normalized_name": "cygnus pizza race" + }, + { + "appid": 1487060, + "normalized_name": "locksmith simulator" + }, + { + "appid": 1487100, + "normalized_name": "lost to time" + }, + { + "appid": 1487120, + "normalized_name": "monkey doomsday" + }, + { + "appid": 1487140, + "normalized_name": "ochitsubaki" + }, + { + "appid": 1487160, + "normalized_name": "battle" + }, + { + "appid": 1487180, + "normalized_name": "parkour with friends" + }, + { + "appid": 1487190, + "normalized_name": "neverfix station" + }, + { + "appid": 1487200, + "normalized_name": "the parrot that summons demons" + }, + { + "appid": 1487210, + "normalized_name": "super mega baseball 4" + }, + { + "appid": 1487220, + "normalized_name": "carrot&islands" + }, + { + "appid": 1487230, + "normalized_name": "futurekreate" + }, + { + "appid": 1487240, + "normalized_name": "romanticized dreams of a post apocalyptic cowpoke" + }, + { + "appid": 1487270, + "normalized_name": "last command" + }, + { + "appid": 1487280, + "normalized_name": "zombies wars" + }, + { + "appid": 1487300, + "normalized_name": "follow my steps" + }, + { + "appid": 1487320, + "normalized_name": "astro sentai jarbonder" + }, + { + "appid": 1487360, + "normalized_name": "dstnce." + }, + { + "appid": 1487380, + "normalized_name": "chora" + }, + { + "appid": 1487390, + "normalized_name": "anvil" + }, + { + "appid": 1487420, + "normalized_name": "wilhelm gustloff's death" + }, + { + "appid": 1487430, + "normalized_name": "muse night out" + }, + { + "appid": 1487440, + "normalized_name": "live labyrinth" + }, + { + "appid": 1487450, + "normalized_name": "迷禁 lost in abyss" + }, + { + "appid": 1487460, + "normalized_name": "battle bears 1 zombies" + }, + { + "appid": 1487470, + "normalized_name": "秋田・男鹿ミステリー案内 凍える銀鈴花" + }, + { + "appid": 1487480, + "normalized_name": "koi land" + }, + { + "appid": 1487520, + "normalized_name": "蘑菇的冒险 mogu's adventure" + }, + { + "appid": 1487560, + "normalized_name": "starcrawlers chimera" + }, + { + "appid": 1487570, + "normalized_name": "far north survival" + }, + { + "appid": 1487590, + "normalized_name": "吉原彼岸花" + }, + { + "appid": 1487630, + "normalized_name": "tracks of thought" + }, + { + "appid": 1487640, + "normalized_name": "16 bit soccer" + }, + { + "appid": 1487650, + "normalized_name": "vr plant journey" + }, + { + "appid": 1487680, + "normalized_name": "broken universe tower defense" + }, + { + "appid": 1487710, + "normalized_name": "rite of titans" + }, + { + "appid": 1487730, + "normalized_name": "carperation" + }, + { + "appid": 1487740, + "normalized_name": "mobile soldiers plastic army" + }, + { + "appid": 1487750, + "normalized_name": "space alpha" + }, + { + "appid": 1487760, + "normalized_name": "polter guest" + }, + { + "appid": 1487790, + "normalized_name": "tikrace" + }, + { + "appid": 1487800, + "normalized_name": "little hats" + }, + { + "appid": 1487840, + "normalized_name": "chess destroyer" + }, + { + "appid": 1487860, + "normalized_name": "toxik aim trainer" + }, + { + "appid": 1487870, + "normalized_name": "putin kills christmas" + }, + { + "appid": 1487900, + "normalized_name": "beastie land fast paced 2d platformer adventure" + }, + { + "appid": 1487940, + "normalized_name": "nuumonsters" + }, + { + "appid": 1487970, + "normalized_name": "velarune" + }, + { + "appid": 1487990, + "normalized_name": "relax memory game" + }, + { + "appid": 1488000, + "normalized_name": "zone of war" + }, + { + "appid": 1488050, + "normalized_name": "beyond the diorama caribou world" + }, + { + "appid": 1488060, + "normalized_name": "lasertron" + }, + { + "appid": 1488070, + "normalized_name": "vesper ether saga episode 1" + }, + { + "appid": 1488080, + "normalized_name": "hentai nureta puzzle cyberpunk" + }, + { + "appid": 1488100, + "normalized_name": "incredimarble" + }, + { + "appid": 1488110, + "normalized_name": "puzzle box" + }, + { + "appid": 1488150, + "normalized_name": "twinstick arcade" + }, + { + "appid": 1488160, + "normalized_name": "the deed of deception" + }, + { + "appid": 1488170, + "normalized_name": "mediterranean assault 1943" + }, + { + "appid": 1488200, + "normalized_name": "symphony of war the nephilim saga" + }, + { + "appid": 1488220, + "normalized_name": "vr brewing simulator" + }, + { + "appid": 1488240, + "normalized_name": "doggo quest" + }, + { + "appid": 1488250, + "normalized_name": "幻想啟示錄" + }, + { + "appid": 1488310, + "normalized_name": "renown" + }, + { + "appid": 1488320, + "normalized_name": "tengam" + }, + { + "appid": 1488400, + "normalized_name": "mo" + }, + { + "appid": 1488430, + "normalized_name": "fueled up" + }, + { + "appid": 1488440, + "normalized_name": "bullet shot" + }, + { + "appid": 1488490, + "normalized_name": "nivalis" + }, + { + "appid": 1488500, + "normalized_name": "the adventures on uranus" + }, + { + "appid": 1488510, + "normalized_name": "vrnoid" + }, + { + "appid": 1488530, + "normalized_name": "the host cataclysm" + }, + { + "appid": 1488540, + "normalized_name": "decaying delicacy" + }, + { + "appid": 1488560, + "normalized_name": "football simulator" + }, + { + "appid": 1488620, + "normalized_name": "blind shot" + }, + { + "appid": 1488640, + "normalized_name": "wholesome slaughter" + }, + { + "appid": 1488650, + "normalized_name": "velocity noodle" + }, + { + "appid": 1488670, + "normalized_name": "physics cake" + }, + { + "appid": 1488700, + "normalized_name": "cabaret 4 card" + }, + { + "appid": 1488720, + "normalized_name": "vr mad asylum" + }, + { + "appid": 1488730, + "normalized_name": "vr basketball hoops" + }, + { + "appid": 1488740, + "normalized_name": "the best bj" + }, + { + "appid": 1488750, + "normalized_name": "vr immortal fight" + }, + { + "appid": 1488760, + "normalized_name": "vr treasure raider" + }, + { + "appid": 1488810, + "normalized_name": "rabbit hole" + }, + { + "appid": 1488820, + "normalized_name": "dark fantasy warriors" + }, + { + "appid": 1488860, + "normalized_name": "insiders" + }, + { + "appid": 1488960, + "normalized_name": "something strange in the woods" + }, + { + "appid": 1489000, + "normalized_name": "the world's hardest game 3d" + }, + { + "appid": 1489010, + "normalized_name": "the picture in the house" + }, + { + "appid": 1489020, + "normalized_name": "eternal secret" + }, + { + "appid": 1489110, + "normalized_name": "zapling bygone" + }, + { + "appid": 1489120, + "normalized_name": "sunny place" + }, + { + "appid": 1489130, + "normalized_name": "buildodge" + }, + { + "appid": 1489140, + "normalized_name": "infected" + }, + { + "appid": 1489150, + "normalized_name": "don't give up not ready to die" + }, + { + "appid": 1489160, + "normalized_name": "destinata red" + }, + { + "appid": 1489220, + "normalized_name": "four course combat" + }, + { + "appid": 1489290, + "normalized_name": "dice and the tower of the reanimator glorious princess" + }, + { + "appid": 1489300, + "normalized_name": "operation steel" + }, + { + "appid": 1489310, + "normalized_name": "necrocity" + }, + { + "appid": 1489330, + "normalized_name": "tower defence hero 塔防英雄" + }, + { + "appid": 1489340, + "normalized_name": "retailer tycoon" + }, + { + "appid": 1489380, + "normalized_name": "bad boy simulator" + }, + { + "appid": 1489390, + "normalized_name": "lost angel" + }, + { + "appid": 1489400, + "normalized_name": "fortuito lost history" + }, + { + "appid": 1489410, + "normalized_name": "alice escaped!" + }, + { + "appid": 1489470, + "normalized_name": "do you see the waving cape" + }, + { + "appid": 1489480, + "normalized_name": "mummmaster!" + }, + { + "appid": 1489490, + "normalized_name": "war link 2111 ad" + }, + { + "appid": 1489500, + "normalized_name": "crowhille detective case files vr" + }, + { + "appid": 1489520, + "normalized_name": "gun reviper" + }, + { + "appid": 1489590, + "normalized_name": "astronite" + }, + { + "appid": 1489600, + "normalized_name": "nix umbra" + }, + { + "appid": 1489610, + "normalized_name": "saturn quest blast effect" + }, + { + "appid": 1489620, + "normalized_name": "dynablaster" + }, + { + "appid": 1489630, + "normalized_name": "carrier command 2" + }, + { + "appid": 1489660, + "normalized_name": "copy editor a regex puzzle" + }, + { + "appid": 1489680, + "normalized_name": "pixross" + }, + { + "appid": 1489780, + "normalized_name": "mysterious" + }, + { + "appid": 1489810, + "normalized_name": "i want to fly" + }, + { + "appid": 1489830, + "normalized_name": "bouboum" + }, + { + "appid": 1489840, + "normalized_name": "fortoresse" + }, + { + "appid": 1489850, + "normalized_name": "dispersio 2" + }, + { + "appid": 1489880, + "normalized_name": "orange cast prologue" + }, + { + "appid": 1489900, + "normalized_name": "outsp4ce" + }, + { + "appid": 1489970, + "normalized_name": "highrise city" + }, + { + "appid": 1489980, + "normalized_name": "bravest burden" + }, + { + "appid": 1490020, + "normalized_name": "tic tac twelve o'clock" + }, + { + "appid": 1490030, + "normalized_name": "cyber dodge" + }, + { + "appid": 1490050, + "normalized_name": "gnome tournament" + }, + { + "appid": 1490060, + "normalized_name": "disillusion" + }, + { + "appid": 1490130, + "normalized_name": "crashmetal cyberpunk" + }, + { + "appid": 1490180, + "normalized_name": "for sparta" + }, + { + "appid": 1490190, + "normalized_name": "happy new year zeliria!" + }, + { + "appid": 1490240, + "normalized_name": "the creation of a self" + }, + { + "appid": 1490250, + "normalized_name": "harem hunter sex ray vision" + }, + { + "appid": 1490290, + "normalized_name": "ultra imposer" + }, + { + "appid": 1490310, + "normalized_name": "gladiators idle" + }, + { + "appid": 1490330, + "normalized_name": "content creator's internet adventure" + }, + { + "appid": 1490340, + "normalized_name": "we are ofk" + }, + { + "appid": 1490400, + "normalized_name": "disc golf adventure 2 vr" + }, + { + "appid": 1490410, + "normalized_name": "the fairy tale you don't know" + }, + { + "appid": 1490430, + "normalized_name": "the enemy below" + }, + { + "appid": 1490460, + "normalized_name": "玄女诛魔录" + }, + { + "appid": 1490490, + "normalized_name": "kingslayer the first assassin" + }, + { + "appid": 1490500, + "normalized_name": "in between" + }, + { + "appid": 1490550, + "normalized_name": "the expanse" + }, + { + "appid": 1490570, + "normalized_name": "git gud" + }, + { + "appid": 1490580, + "normalized_name": "starforge" + }, + { + "appid": 1490590, + "normalized_name": "we are eva" + }, + { + "appid": 1490600, + "normalized_name": "arcade legend" + }, + { + "appid": 1490610, + "normalized_name": "metallic child" + }, + { + "appid": 1490620, + "normalized_name": "pray and spray" + }, + { + "appid": 1490670, + "normalized_name": "shooting star" + }, + { + "appid": 1490680, + "normalized_name": "god sword" + }, + { + "appid": 1490770, + "normalized_name": "crossabout crosswords in reverse (300★)" + }, + { + "appid": 1490790, + "normalized_name": "christmas adventures a winter night's dream" + }, + { + "appid": 1490800, + "normalized_name": "volcanic core" + }, + { + "appid": 1490830, + "normalized_name": "dying 1983" + }, + { + "appid": 1490840, + "normalized_name": "bloodshore" + }, + { + "appid": 1490850, + "normalized_name": "killing a superstar" + }, + { + "appid": 1490860, + "normalized_name": "til nord" + }, + { + "appid": 1490870, + "normalized_name": "pale night" + }, + { + "appid": 1490880, + "normalized_name": "2d owen" + }, + { + "appid": 1490890, + "normalized_name": "demon slayer kimetsu no yaiba the hinokami chronicles" + }, + { + "appid": 1490900, + "normalized_name": "timelab" + }, + { + "appid": 1490910, + "normalized_name": "fast cubes" + }, + { + "appid": 1490930, + "normalized_name": "capital command" + }, + { + "appid": 1490950, + "normalized_name": "zenorost realm" + }, + { + "appid": 1490970, + "normalized_name": "freaky clown town mystery" + }, + { + "appid": 1490980, + "normalized_name": "mirror layers" + }, + { + "appid": 1490990, + "normalized_name": "isles of krom" + }, + { + "appid": 1491000, + "normalized_name": "war robots frontiers" + }, + { + "appid": 1491040, + "normalized_name": "binarystar infinity" + }, + { + "appid": 1491050, + "normalized_name": "altarage" + }, + { + "appid": 1491060, + "normalized_name": "snowflake s.o.s" + }, + { + "appid": 1491070, + "normalized_name": "ray & stoic gronk" + }, + { + "appid": 1491090, + "normalized_name": "downslope" + }, + { + "appid": 1491120, + "normalized_name": "galaxy's extreme" + }, + { + "appid": 1491150, + "normalized_name": "100 worlds escape room game" + }, + { + "appid": 1491170, + "normalized_name": "游戏开发的二三事" + }, + { + "appid": 1491180, + "normalized_name": "survival rpg 2 temple ruins" + }, + { + "appid": 1491190, + "normalized_name": "survival rpg 3 lost in time" + }, + { + "appid": 1491200, + "normalized_name": "few nights more" + }, + { + "appid": 1491280, + "normalized_name": "jane angel 2 fallen heaven" + }, + { + "appid": 1491320, + "normalized_name": "blessing quest" + }, + { + "appid": 1491340, + "normalized_name": "marble world" + }, + { + "appid": 1491380, + "normalized_name": "xagonia colony" + }, + { + "appid": 1491390, + "normalized_name": "forest grove" + }, + { + "appid": 1491400, + "normalized_name": "sucker punch vr" + }, + { + "appid": 1491410, + "normalized_name": "eternal strands" + }, + { + "appid": 1491460, + "normalized_name": "tor eternum" + }, + { + "appid": 1491480, + "normalized_name": "grave complex" + }, + { + "appid": 1491490, + "normalized_name": "cosmonious high" + }, + { + "appid": 1491500, + "normalized_name": "lord bullfrog" + }, + { + "appid": 1491510, + "normalized_name": "recon control" + }, + { + "appid": 1491520, + "normalized_name": "the realm of order arisen" + }, + { + "appid": 1491530, + "normalized_name": "mastermine" + }, + { + "appid": 1491540, + "normalized_name": "map game or something" + }, + { + "appid": 1491570, + "normalized_name": "pesky humans" + }, + { + "appid": 1491640, + "normalized_name": "understanding the game" + }, + { + "appid": 1491650, + "normalized_name": "last resort" + }, + { + "appid": 1491660, + "normalized_name": "nefasto's misadventure meeting noeroze" + }, + { + "appid": 1491670, + "normalized_name": "venba" + }, + { + "appid": 1491680, + "normalized_name": "fiendish thieves" + }, + { + "appid": 1491720, + "normalized_name": "frick inc." + }, + { + "appid": 1491730, + "normalized_name": "cosmotronik" + }, + { + "appid": 1491770, + "normalized_name": "keep out" + }, + { + "appid": 1491780, + "normalized_name": "bloody paws unleashed" + }, + { + "appid": 1491790, + "normalized_name": "atom" + }, + { + "appid": 1491800, + "normalized_name": "magnet jack & roxanne" + }, + { + "appid": 1491810, + "normalized_name": "afterland" + }, + { + "appid": 1491850, + "normalized_name": "zombiewave unlimitedchallenges" + }, + { + "appid": 1491910, + "normalized_name": "andromeda 2 zombies" + }, + { + "appid": 1491920, + "normalized_name": "book of coin" + }, + { + "appid": 1491950, + "normalized_name": "brightseeker" + }, + { + "appid": 1491960, + "normalized_name": "time storm" + }, + { + "appid": 1491980, + "normalized_name": "towards the stars" + }, + { + "appid": 1492000, + "normalized_name": "unfolded camellia tales prologue" + }, + { + "appid": 1492050, + "normalized_name": "arcane wilds" + }, + { + "appid": 1492070, + "normalized_name": "sker ritual" + }, + { + "appid": 1492080, + "normalized_name": "idlecoin" + }, + { + "appid": 1492090, + "normalized_name": "forgotten fragments" + }, + { + "appid": 1492100, + "normalized_name": "fantasy network" + }, + { + "appid": 1492120, + "normalized_name": "summit" + }, + { + "appid": 1492130, + "normalized_name": "nightclub 69 bunny girls" + }, + { + "appid": 1492140, + "normalized_name": "club hentai girls love sex" + }, + { + "appid": 1492150, + "normalized_name": "primal survivors" + }, + { + "appid": 1492160, + "normalized_name": "doll explorer prologue" + }, + { + "appid": 1492190, + "normalized_name": "orbi's chronicles" + }, + { + "appid": 1492200, + "normalized_name": "soviet hentai" + }, + { + "appid": 1492210, + "normalized_name": "starlight eye of the storm" + }, + { + "appid": 1492220, + "normalized_name": "aether heist" + }, + { + "appid": 1492230, + "normalized_name": "zaacar" + }, + { + "appid": 1492240, + "normalized_name": "holo arena death league" + }, + { + "appid": 1492250, + "normalized_name": "44 minutes in nightmare" + }, + { + "appid": 1492260, + "normalized_name": "reconnect the heart of darkness" + }, + { + "appid": 1492280, + "normalized_name": "anesthesia" + }, + { + "appid": 1492290, + "normalized_name": "boulders puzzle" + }, + { + "appid": 1492300, + "normalized_name": "invirium" + }, + { + "appid": 1492310, + "normalized_name": "asterix & obelix slap them all!" + }, + { + "appid": 1492320, + "normalized_name": "new joe & mac caveman ninja" + }, + { + "appid": 1492360, + "normalized_name": "recipe for disaster" + }, + { + "appid": 1492370, + "normalized_name": "retis tormentum" + }, + { + "appid": 1492380, + "normalized_name": "jumping over it with neko girl" + }, + { + "appid": 1492420, + "normalized_name": "equaline" + }, + { + "appid": 1492430, + "normalized_name": "rift world" + }, + { + "appid": 1492440, + "normalized_name": "zero point" + }, + { + "appid": 1492450, + "normalized_name": "pixel poops" + }, + { + "appid": 1492470, + "normalized_name": "song of the tides" + }, + { + "appid": 1492480, + "normalized_name": "half past fate romantic distancing" + }, + { + "appid": 1492510, + "normalized_name": "intelligence operation" + }, + { + "appid": 1492540, + "normalized_name": "swing game" + }, + { + "appid": 1492550, + "normalized_name": "nenneman the game" + }, + { + "appid": 1492570, + "normalized_name": "race to sanity" + }, + { + "appid": 1492590, + "normalized_name": "let's learn japanese deluxe" + }, + { + "appid": 1492610, + "normalized_name": "moonshot the great espionage" + }, + { + "appid": 1492620, + "normalized_name": "jelly is sticky" + }, + { + "appid": 1492640, + "normalized_name": "mixx island remix" + }, + { + "appid": 1492650, + "normalized_name": "crooks like us" + }, + { + "appid": 1492680, + "normalized_name": "the pathless" + }, + { + "appid": 1492720, + "normalized_name": "gunblocks prologue" + }, + { + "appid": 1492730, + "normalized_name": "doraemon story of seasons friends of the great kingdom" + }, + { + "appid": 1492750, + "normalized_name": "mega knockdown" + }, + { + "appid": 1492780, + "normalized_name": "monolith vr" + }, + { + "appid": 1492810, + "normalized_name": "no cure 2" + }, + { + "appid": 1492830, + "normalized_name": "lightward" + }, + { + "appid": 1492840, + "normalized_name": "glory of the arena" + }, + { + "appid": 1492850, + "normalized_name": "mulligans golf game" + }, + { + "appid": 1492860, + "normalized_name": "三国志奇侠传" + }, + { + "appid": 1492870, + "normalized_name": "堕星之乱" + }, + { + "appid": 1492900, + "normalized_name": "the alien trials" + }, + { + "appid": 1492910, + "normalized_name": "云端堡垒td" + }, + { + "appid": 1492930, + "normalized_name": "imugi" + }, + { + "appid": 1492940, + "normalized_name": "break sky" + }, + { + "appid": 1492980, + "normalized_name": "shut your teeth" + }, + { + "appid": 1492990, + "normalized_name": "fission" + }, + { + "appid": 1493000, + "normalized_name": "vr bike tour/exercise in 22nd century world" + }, + { + "appid": 1493020, + "normalized_name": "song of farca prologue" + }, + { + "appid": 1493050, + "normalized_name": "forest battle 森林战斗" + }, + { + "appid": 1493060, + "normalized_name": "immortal legacy the jade cipher[vr]" + }, + { + "appid": 1493070, + "normalized_name": "vr world war ii battlefield experience" + }, + { + "appid": 1493160, + "normalized_name": "dark minute kira's adventure" + }, + { + "appid": 1493220, + "normalized_name": "tiny fight" + }, + { + "appid": 1493230, + "normalized_name": "kiiroi hana" + }, + { + "appid": 1493240, + "normalized_name": "la porte des fauconniers guerre médiévale" + }, + { + "appid": 1493280, + "normalized_name": "elemancer" + }, + { + "appid": 1493290, + "normalized_name": "bring me hope" + }, + { + "appid": 1493300, + "normalized_name": "100 hidden aliens" + }, + { + "appid": 1493310, + "normalized_name": "brave hero" + }, + { + "appid": 1493320, + "normalized_name": "魔帝1 magic emperor1" + }, + { + "appid": 1493360, + "normalized_name": "clouzy!" + }, + { + "appid": 1493380, + "normalized_name": "hell's revenge 3d" + }, + { + "appid": 1493400, + "normalized_name": "jack's labyrinth" + }, + { + "appid": 1493410, + "normalized_name": "mini car money chase" + }, + { + "appid": 1493430, + "normalized_name": "agony lords of hell" + }, + { + "appid": 1493440, + "normalized_name": "tormentor" + }, + { + "appid": 1493450, + "normalized_name": "save daddy trump 2 the final triumph" + }, + { + "appid": 1493460, + "normalized_name": "rebels under the spell of magic (chapter 1)" + }, + { + "appid": 1493490, + "normalized_name": "demonicute" + }, + { + "appid": 1493520, + "normalized_name": "beat hazard 3" + }, + { + "appid": 1493560, + "normalized_name": "journey on" + }, + { + "appid": 1493570, + "normalized_name": "arboreal" + }, + { + "appid": 1493590, + "normalized_name": "hell pages" + }, + { + "appid": 1493640, + "normalized_name": "banishers ghosts of new eden" + }, + { + "appid": 1493650, + "normalized_name": "tap tap beer arcade" + }, + { + "appid": 1493660, + "normalized_name": "spiky" + }, + { + "appid": 1493690, + "normalized_name": "seeds of friendship" + }, + { + "appid": 1493720, + "normalized_name": "hentai coloring game" + }, + { + "appid": 1493730, + "normalized_name": "secret summer" + }, + { + "appid": 1493760, + "normalized_name": "youtubers life 2" + }, + { + "appid": 1493800, + "normalized_name": "aircraft carrier survival tutorial" + }, + { + "appid": 1493810, + "normalized_name": "sillyfun valley" + }, + { + "appid": 1493820, + "normalized_name": "ship shifters" + }, + { + "appid": 1493840, + "normalized_name": "bot.vinnik chess opening traps" + }, + { + "appid": 1493860, + "normalized_name": "mayhem space cinema" + }, + { + "appid": 1493870, + "normalized_name": "sak'd" + }, + { + "appid": 1493880, + "normalized_name": "mira's brush" + }, + { + "appid": 1493910, + "normalized_name": "coropata" + }, + { + "appid": 1493920, + "normalized_name": "look alive" + }, + { + "appid": 1493930, + "normalized_name": "jankbrain" + }, + { + "appid": 1493940, + "normalized_name": "airoheart" + }, + { + "appid": 1493950, + "normalized_name": "subterene" + }, + { + "appid": 1493960, + "normalized_name": "move 78" + }, + { + "appid": 1493970, + "normalized_name": "the chameleon" + }, + { + "appid": 1494050, + "normalized_name": "the deepest" + }, + { + "appid": 1494070, + "normalized_name": "抉择 性转传说" + }, + { + "appid": 1494090, + "normalized_name": "blasten!!" + }, + { + "appid": 1494100, + "normalized_name": "virtual soldiers" + }, + { + "appid": 1494110, + "normalized_name": "qv" + }, + { + "appid": 1494140, + "normalized_name": "7days origins" + }, + { + "appid": 1494150, + "normalized_name": "hentai breakout city" + }, + { + "appid": 1494180, + "normalized_name": "night silent killer" + }, + { + "appid": 1494190, + "normalized_name": "秘密舞会" + }, + { + "appid": 1494220, + "normalized_name": "soft wind" + }, + { + "appid": 1494230, + "normalized_name": "a western drama" + }, + { + "appid": 1494260, + "normalized_name": "loot river" + }, + { + "appid": 1494280, + "normalized_name": "beat stickman beyond" + }, + { + "appid": 1494310, + "normalized_name": "panmorphia enchanted" + }, + { + "appid": 1494320, + "normalized_name": "jei vr" + }, + { + "appid": 1494370, + "normalized_name": "insights maniac vortex" + }, + { + "appid": 1494390, + "normalized_name": "nostalgici anonimi" + }, + { + "appid": 1494400, + "normalized_name": "vr japan" + }, + { + "appid": 1494420, + "normalized_name": "silica" + }, + { + "appid": 1494440, + "normalized_name": "garbage hobo prophecy" + }, + { + "appid": 1494450, + "normalized_name": "oakenfold" + }, + { + "appid": 1494470, + "normalized_name": "bustafellows" + }, + { + "appid": 1494500, + "normalized_name": "fwsim fireworks display simulator" + }, + { + "appid": 1494510, + "normalized_name": "demon killer vr" + }, + { + "appid": 1494530, + "normalized_name": "cubo ao topo" + }, + { + "appid": 1494560, + "normalized_name": "rogue voltage" + }, + { + "appid": 1494570, + "normalized_name": "path of memory" + }, + { + "appid": 1494580, + "normalized_name": "refuge for troubles. episode 1 dear stranger" + }, + { + "appid": 1494650, + "normalized_name": "floating islands of nucifera" + }, + { + "appid": 1494670, + "normalized_name": "space dance harmony" + }, + { + "appid": 1494680, + "normalized_name": "bascatball jupiter basketball & cat" + }, + { + "appid": 1494720, + "normalized_name": "mini moves among stars" + }, + { + "appid": 1494780, + "normalized_name": "mage mountain" + }, + { + "appid": 1494810, + "normalized_name": "mortal sin" + }, + { + "appid": 1494840, + "normalized_name": "scoot" + }, + { + "appid": 1494910, + "normalized_name": "pemsa" + }, + { + "appid": 1494920, + "normalized_name": "星帷之瓣" + }, + { + "appid": 1494960, + "normalized_name": "nationwar annals" + }, + { + "appid": 1494990, + "normalized_name": "stop the war" + }, + { + "appid": 1495000, + "normalized_name": "succubus research diary" + }, + { + "appid": 1495010, + "normalized_name": "ghost ship" + }, + { + "appid": 1495040, + "normalized_name": "library game" + }, + { + "appid": 1495050, + "normalized_name": "1001 jigsaw earth chronicles 3" + }, + { + "appid": 1495060, + "normalized_name": "1001 jigsaw home sweet home wedding ceremony" + }, + { + "appid": 1495070, + "normalized_name": "alice's jigsaw time travel" + }, + { + "appid": 1495080, + "normalized_name": "asian riddles 4" + }, + { + "appid": 1495090, + "normalized_name": "christmas mosaic puzzle" + }, + { + "appid": 1495100, + "normalized_name": "detective solitaire inspector magic and the forbidden magic" + }, + { + "appid": 1495110, + "normalized_name": "fairytale mosaics beauty and the beast 2" + }, + { + "appid": 1495120, + "normalized_name": "fairytale mosaics cinderella 2" + }, + { + "appid": 1495130, + "normalized_name": "fill and cross christmas riddles" + }, + { + "appid": 1495140, + "normalized_name": "halloween night mahjong" + }, + { + "appid": 1495170, + "normalized_name": "mac biskwi adventures" + }, + { + "appid": 1495240, + "normalized_name": "deep enigma" + }, + { + "appid": 1495250, + "normalized_name": "linevox" + }, + { + "appid": 1495260, + "normalized_name": "fly the cloud" + }, + { + "appid": 1495270, + "normalized_name": "the unmarked" + }, + { + "appid": 1495280, + "normalized_name": "mouse hero" + }, + { + "appid": 1495290, + "normalized_name": "non sucky numbers" + }, + { + "appid": 1495320, + "normalized_name": "carnal instinct" + }, + { + "appid": 1495360, + "normalized_name": "guardians of lumen" + }, + { + "appid": 1495370, + "normalized_name": "fun christmas santa vr" + }, + { + "appid": 1495380, + "normalized_name": "tricky machines" + }, + { + "appid": 1495400, + "normalized_name": "制服少女" + }, + { + "appid": 1495420, + "normalized_name": "dragon creek" + }, + { + "appid": 1495460, + "normalized_name": "orange santa" + }, + { + "appid": 1495500, + "normalized_name": "nextera" + }, + { + "appid": 1495510, + "normalized_name": "mey rescuer" + }, + { + "appid": 1495560, + "normalized_name": "oben" + }, + { + "appid": 1495570, + "normalized_name": "hentai gif puzzle" + }, + { + "appid": 1495580, + "normalized_name": "aquarelle" + }, + { + "appid": 1495610, + "normalized_name": "seven demons" + }, + { + "appid": 1495620, + "normalized_name": "crypto shooter" + }, + { + "appid": 1495640, + "normalized_name": "estigma [steam edition]" + }, + { + "appid": 1495670, + "normalized_name": "leaper" + }, + { + "appid": 1495760, + "normalized_name": "karen" + }, + { + "appid": 1495780, + "normalized_name": "isometric nonogram" + }, + { + "appid": 1495800, + "normalized_name": "moon defence" + }, + { + "appid": 1495830, + "normalized_name": "rokka" + }, + { + "appid": 1495860, + "normalized_name": "what the dub?!" + }, + { + "appid": 1495900, + "normalized_name": "bone n soul" + }, + { + "appid": 1495910, + "normalized_name": "omega blade" + }, + { + "appid": 1495920, + "normalized_name": "bulletgarden" + }, + { + "appid": 1495940, + "normalized_name": "whiteclothes" + }, + { + "appid": 1495970, + "normalized_name": "eternity online" + }, + { + "appid": 1495990, + "normalized_name": "clickcells summer" + }, + { + "appid": 1496000, + "normalized_name": "many worlds vr" + }, + { + "appid": 1496060, + "normalized_name": "project rayssus" + }, + { + "appid": 1496090, + "normalized_name": "urban street fighter" + }, + { + "appid": 1496110, + "normalized_name": "run!!!" + }, + { + "appid": 1496120, + "normalized_name": "phantast" + }, + { + "appid": 1496150, + "normalized_name": "fury fight" + }, + { + "appid": 1496170, + "normalized_name": "ink studio tattoo artist simulator" + }, + { + "appid": 1496180, + "normalized_name": "cinderella phenomenon evermore" + }, + { + "appid": 1496210, + "normalized_name": "centrifugal" + }, + { + "appid": 1496220, + "normalized_name": "laser cup" + }, + { + "appid": 1496240, + "normalized_name": "grace online" + }, + { + "appid": 1496250, + "normalized_name": "mary skelter 2" + }, + { + "appid": 1496260, + "normalized_name": "pigeon simulator" + }, + { + "appid": 1496290, + "normalized_name": "lab 83" + }, + { + "appid": 1496310, + "normalized_name": "poached hunt the hunter" + }, + { + "appid": 1496320, + "normalized_name": "time machine hidden object game" + }, + { + "appid": 1496350, + "normalized_name": "hamster logic 3d" + }, + { + "appid": 1496380, + "normalized_name": "艾斯菲尔的谎言" + }, + { + "appid": 1496450, + "normalized_name": "kill the pineapple" + }, + { + "appid": 1496470, + "normalized_name": "fall balance ball" + }, + { + "appid": 1496490, + "normalized_name": "a story of vaccines & zombie" + }, + { + "appid": 1496530, + "normalized_name": "cinders of hades" + }, + { + "appid": 1496590, + "normalized_name": "tchia" + }, + { + "appid": 1496620, + "normalized_name": "color cube" + }, + { + "appid": 1496640, + "normalized_name": "scrapping simulator" + }, + { + "appid": 1496680, + "normalized_name": "a token war" + }, + { + "appid": 1496710, + "normalized_name": "zombie alert" + }, + { + "appid": 1496770, + "normalized_name": "rtd road to desolace" + }, + { + "appid": 1496790, + "normalized_name": "gotham knights" + }, + { + "appid": 1496900, + "normalized_name": "among waifus" + }, + { + "appid": 1496930, + "normalized_name": "rotten tide" + }, + { + "appid": 1496970, + "normalized_name": "impostors" + }, + { + "appid": 1496990, + "normalized_name": "barrage fantasia" + }, + { + "appid": 1497000, + "normalized_name": "oceancraft" + }, + { + "appid": 1497110, + "normalized_name": "melodramatica" + }, + { + "appid": 1497140, + "normalized_name": "hot honey" + }, + { + "appid": 1497170, + "normalized_name": "onnanoko keeper 2" + }, + { + "appid": 1497180, + "normalized_name": "nemesis race against the pandemic" + }, + { + "appid": 1497230, + "normalized_name": "cauldrons of war stalingrad" + }, + { + "appid": 1497250, + "normalized_name": "执谕者:坠月之兆(archenemy lunafall)" + }, + { + "appid": 1497290, + "normalized_name": "personal rocket" + }, + { + "appid": 1497330, + "normalized_name": "bad way" + }, + { + "appid": 1497360, + "normalized_name": "open roads" + }, + { + "appid": 1497430, + "normalized_name": "bounty star" + }, + { + "appid": 1497440, + "normalized_name": "cocoon" + }, + { + "appid": 1497450, + "normalized_name": "a memoir blue" + }, + { + "appid": 1497460, + "normalized_name": "wheel world" + }, + { + "appid": 1497510, + "normalized_name": "final winter" + }, + { + "appid": 1497520, + "normalized_name": "tenebris" + }, + { + "appid": 1497530, + "normalized_name": "starpicker" + }, + { + "appid": 1497590, + "normalized_name": "saints and sinners" + }, + { + "appid": 1497600, + "normalized_name": "poker squadrons" + }, + { + "appid": 1497630, + "normalized_name": "where's samantha?" + }, + { + "appid": 1497640, + "normalized_name": "traitors in salem" + }, + { + "appid": 1497650, + "normalized_name": "squareometry" + }, + { + "appid": 1497700, + "normalized_name": "景安区奇案 jing 'an district copstories" + }, + { + "appid": 1497710, + "normalized_name": "galaxy tales story of rapunzel" + }, + { + "appid": 1497740, + "normalized_name": "dating advice from the apocalypse" + }, + { + "appid": 1497770, + "normalized_name": "keylogger a sci fi visual novel" + }, + { + "appid": 1497780, + "normalized_name": "无眠夜曲" + }, + { + "appid": 1497790, + "normalized_name": "faircroft’s antiques home for christmas" + }, + { + "appid": 1497820, + "normalized_name": "golden rails small town story" + }, + { + "appid": 1497830, + "normalized_name": "apsis" + }, + { + "appid": 1497910, + "normalized_name": "eastern tactics" + }, + { + "appid": 1497940, + "normalized_name": "massage salon story spring breeze" + }, + { + "appid": 1497950, + "normalized_name": "earth defense force world brothers" + }, + { + "appid": 1498060, + "normalized_name": "nanomon virtual pet" + }, + { + "appid": 1498070, + "normalized_name": "cursed travels sunken city" + }, + { + "appid": 1498110, + "normalized_name": "the byte" + }, + { + "appid": 1498120, + "normalized_name": "lewd island" + }, + { + "appid": 1498130, + "normalized_name": "tank squad" + }, + { + "appid": 1498140, + "normalized_name": "cafe owner simulator" + }, + { + "appid": 1498190, + "normalized_name": "挣脱:十三号站点" + }, + { + "appid": 1498220, + "normalized_name": "myhousemyrules" + }, + { + "appid": 1498250, + "normalized_name": "gun duel" + }, + { + "appid": 1498280, + "normalized_name": "the christmas spirit journey before christmas collector's" + }, + { + "appid": 1498290, + "normalized_name": "青鳥樂園 blue bird land ep.1 上篇" + }, + { + "appid": 1498300, + "normalized_name": "chop shop simulator" + }, + { + "appid": 1498380, + "normalized_name": "learning jigsaw animals" + }, + { + "appid": 1498400, + "normalized_name": "jigsaw puzzle pixel art master" + }, + { + "appid": 1498410, + "normalized_name": "clash of command campaign of 1863" + }, + { + "appid": 1498440, + "normalized_name": "experimental" + }, + { + "appid": 1498450, + "normalized_name": "happy funtime labs" + }, + { + "appid": 1498460, + "normalized_name": "bridge to another world secrets of the nutcracker collector's" + }, + { + "appid": 1498490, + "normalized_name": "dead herring vr" + }, + { + "appid": 1498550, + "normalized_name": "infinity hexadome tactics" + }, + { + "appid": 1498570, + "normalized_name": "the king of fighters xv" + }, + { + "appid": 1498590, + "normalized_name": "fat prisoner simulator 3" + }, + { + "appid": 1498600, + "normalized_name": "neko chan" + }, + { + "appid": 1498630, + "normalized_name": "click on their heads" + }, + { + "appid": 1498660, + "normalized_name": "star ships" + }, + { + "appid": 1498680, + "normalized_name": "poker pretty girls battle fantasy world" + }, + { + "appid": 1498690, + "normalized_name": "one shot" + }, + { + "appid": 1498710, + "normalized_name": "recycle my world" + }, + { + "appid": 1498740, + "normalized_name": "troublemaker" + }, + { + "appid": 1498790, + "normalized_name": "black lazar" + }, + { + "appid": 1498820, + "normalized_name": "burkov point of contact" + }, + { + "appid": 1498840, + "normalized_name": "rushing beat of rage" + }, + { + "appid": 1498850, + "normalized_name": "highway builder" + }, + { + "appid": 1498900, + "normalized_name": "chef's tail" + }, + { + "appid": 1498940, + "normalized_name": "binky's trash service" + }, + { + "appid": 1498980, + "normalized_name": "cyberpunk messenger" + }, + { + "appid": 1499010, + "normalized_name": "project hypnagogia" + }, + { + "appid": 1499030, + "normalized_name": "3d辉针城" + }, + { + "appid": 1499060, + "normalized_name": "horses.io horse herd racing" + }, + { + "appid": 1499120, + "normalized_name": "i expect you to die 2 the spy and the liar" + }, + { + "appid": 1499150, + "normalized_name": "runner" + }, + { + "appid": 1499180, + "normalized_name": "don't get bit" + }, + { + "appid": 1499190, + "normalized_name": "lost caves" + }, + { + "appid": 1499210, + "normalized_name": "rorschach plus" + }, + { + "appid": 1499220, + "normalized_name": "kungfu cowboy" + }, + { + "appid": 1499230, + "normalized_name": "what is wrong with you?" + }, + { + "appid": 1499240, + "normalized_name": "brookhaven grimoire" + }, + { + "appid": 1499280, + "normalized_name": "retro space ball" + }, + { + "appid": 1499300, + "normalized_name": "dogpet" + }, + { + "appid": 1499310, + "normalized_name": "the shadows lengthen" + }, + { + "appid": 1499410, + "normalized_name": "deep sea" + }, + { + "appid": 1499420, + "normalized_name": "vr wonderland mini civilizations in a forest" + }, + { + "appid": 1499430, + "normalized_name": "what we pretend to be" + }, + { + "appid": 1499450, + "normalized_name": "earth warrior" + }, + { + "appid": 1499470, + "normalized_name": "obliviverse idle adventures" + }, + { + "appid": 1499500, + "normalized_name": "sailor strike" + }, + { + "appid": 1499520, + "normalized_name": "spiritwish" + }, + { + "appid": 1499540, + "normalized_name": "リアルタイムバトル将棋オンライン" + }, + { + "appid": 1499550, + "normalized_name": "vr luxury life (be a billionaire)" + }, + { + "appid": 1499560, + "normalized_name": "lastcloudia" + }, + { + "appid": 1499640, + "normalized_name": "y.e.t.i" + }, + { + "appid": 1499660, + "normalized_name": "cute animal jigsaw puzzle" + }, + { + "appid": 1499680, + "normalized_name": "ertugrul gazi" + }, + { + "appid": 1499690, + "normalized_name": "夢游仙境ロマネスク chronicles of refugia" + }, + { + "appid": 1499700, + "normalized_name": "golazo! 2" + }, + { + "appid": 1499710, + "normalized_name": "cavatus" + }, + { + "appid": 1499720, + "normalized_name": "era of defense" + }, + { + "appid": 1499750, + "normalized_name": "the frost rebirth" + }, + { + "appid": 1499770, + "normalized_name": "echoes of mayhem" + }, + { + "appid": 1499780, + "normalized_name": "beat the moles" + }, + { + "appid": 1499800, + "normalized_name": "geometric sniper blood in paris" + }, + { + "appid": 1499820, + "normalized_name": "vr graffiti world" + }, + { + "appid": 1499830, + "normalized_name": "vr titanic find the rose" + }, + { + "appid": 1499880, + "normalized_name": "grayland" + }, + { + "appid": 1499890, + "normalized_name": "into the eternal" + }, + { + "appid": 1499900, + "normalized_name": "chat millions stream quiz game" + }, + { + "appid": 1499930, + "normalized_name": "draft day sports college football 2021" + }, + { + "appid": 1499940, + "normalized_name": "my low poly city" + }, + { + "appid": 1499960, + "normalized_name": "poor lucas and the evil duke" + }, + { + "appid": 1499980, + "normalized_name": "road to adventure!" + }, + { + "appid": 1499990, + "normalized_name": "forgetter" + }, + { + "appid": 1500030, + "normalized_name": "the snowman's journey" + }, + { + "appid": 1500060, + "normalized_name": "fluid simulator" + }, + { + "appid": 1500100, + "normalized_name": "spheria's familiar" + }, + { + "appid": 1500110, + "normalized_name": "knight slave" + }, + { + "appid": 1500120, + "normalized_name": "dark sphere" + }, + { + "appid": 1500180, + "normalized_name": "decline's drops" + }, + { + "appid": 1500220, + "normalized_name": "arcane eyes" + }, + { + "appid": 1500230, + "normalized_name": "pour there" + }, + { + "appid": 1500240, + "normalized_name": "connected towers" + }, + { + "appid": 1500250, + "normalized_name": "der blaue diamant" + }, + { + "appid": 1500260, + "normalized_name": "desert mystery" + }, + { + "appid": 1500280, + "normalized_name": "spellbound the magic within" + }, + { + "appid": 1500290, + "normalized_name": "desktop honey" + }, + { + "appid": 1500300, + "normalized_name": "dosoland snake man's adventure" + }, + { + "appid": 1500310, + "normalized_name": "choco pixel d" + }, + { + "appid": 1500320, + "normalized_name": "flykt" + }, + { + "appid": 1500350, + "normalized_name": "until sunset" + }, + { + "appid": 1500370, + "normalized_name": "crewin the wrath of athys" + }, + { + "appid": 1500380, + "normalized_name": "night in riverager" + }, + { + "appid": 1500390, + "normalized_name": "happy bones" + }, + { + "appid": 1500400, + "normalized_name": "sokoban gianta" + }, + { + "appid": 1500410, + "normalized_name": "don't mess with nanny" + }, + { + "appid": 1500470, + "normalized_name": "angel made" + }, + { + "appid": 1500480, + "normalized_name": "yeminj" + }, + { + "appid": 1500490, + "normalized_name": "teslapunk" + }, + { + "appid": 1500500, + "normalized_name": "chinese architect" + }, + { + "appid": 1500530, + "normalized_name": "ripshot" + }, + { + "appid": 1500540, + "normalized_name": "hardwar" + }, + { + "appid": 1500580, + "normalized_name": "cyber defense 2088" + }, + { + "appid": 1500590, + "normalized_name": "hawthorn park" + }, + { + "appid": 1500600, + "normalized_name": "demonpact clarice" + }, + { + "appid": 1500620, + "normalized_name": "tavern tales tabletop adventures" + }, + { + "appid": 1500650, + "normalized_name": "cyberwaifu" + }, + { + "appid": 1500660, + "normalized_name": "block destruction" + }, + { + "appid": 1500740, + "normalized_name": "snail simulator" + }, + { + "appid": 1500750, + "normalized_name": "tauren maze" + }, + { + "appid": 1500760, + "normalized_name": "scraplers" + }, + { + "appid": 1500780, + "normalized_name": "champoo club" + }, + { + "appid": 1500800, + "normalized_name": "瓶子先生和他的梦想/mr.bottle and his dream" + }, + { + "appid": 1500810, + "normalized_name": "necrojacks" + }, + { + "appid": 1500820, + "normalized_name": "caravaneer 2" + }, + { + "appid": 1500870, + "normalized_name": "madness robots" + }, + { + "appid": 1500880, + "normalized_name": "random racing" + }, + { + "appid": 1500910, + "normalized_name": "old lands winrinthia" + }, + { + "appid": 1500940, + "normalized_name": "far lands" + }, + { + "appid": 1500960, + "normalized_name": "aeris&zack" + }, + { + "appid": 1500970, + "normalized_name": "blackchain" + }, + { + "appid": 1500980, + "normalized_name": "doomsday vault" + }, + { + "appid": 1501100, + "normalized_name": "key escape" + }, + { + "appid": 1501110, + "normalized_name": "aim warmup" + }, + { + "appid": 1501120, + "normalized_name": "samurai cat" + }, + { + "appid": 1501140, + "normalized_name": "taekwondo demonstration team simulator" + }, + { + "appid": 1501150, + "normalized_name": "pebble witch" + }, + { + "appid": 1501160, + "normalized_name": "closer anagnorisis" + }, + { + "appid": 1501210, + "normalized_name": "arenix" + }, + { + "appid": 1501310, + "normalized_name": "the ranchers" + }, + { + "appid": 1501320, + "normalized_name": "prison girl / 狱中少女" + }, + { + "appid": 1501340, + "normalized_name": "sprint racer" + }, + { + "appid": 1501390, + "normalized_name": "king pong" + }, + { + "appid": 1501410, + "normalized_name": "dwarf journey" + }, + { + "appid": 1501420, + "normalized_name": "novena diabolos" + }, + { + "appid": 1501470, + "normalized_name": "tanxy" + }, + { + "appid": 1501480, + "normalized_name": "hachi hachi mystery" + }, + { + "appid": 1501490, + "normalized_name": "ship handling simulator" + }, + { + "appid": 1501510, + "normalized_name": "parallel olympus" + }, + { + "appid": 1501520, + "normalized_name": "let's hobbee" + }, + { + "appid": 1501540, + "normalized_name": "paladin's lance" + }, + { + "appid": 1501610, + "normalized_name": "nova lands" + }, + { + "appid": 1501640, + "normalized_name": "fallen rebellion" + }, + { + "appid": 1501650, + "normalized_name": "whisperwind" + }, + { + "appid": 1501690, + "normalized_name": "dice kingdoms" + }, + { + "appid": 1501720, + "normalized_name": "bobsleighx" + }, + { + "appid": 1501730, + "normalized_name": "villagedom" + }, + { + "appid": 1501740, + "normalized_name": "cardbot" + }, + { + "appid": 1501750, + "normalized_name": "lords of the fallen" + }, + { + "appid": 1501760, + "normalized_name": "rogun arena" + }, + { + "appid": 1501780, + "normalized_name": "superspec rallycross" + }, + { + "appid": 1501790, + "normalized_name": "forge squad" + }, + { + "appid": 1501800, + "normalized_name": "rope cow rope it to the cow" + }, + { + "appid": 1501820, + "normalized_name": "ziggy's cosmic adventures" + }, + { + "appid": 1501830, + "normalized_name": "coveneth" + }, + { + "appid": 1501900, + "normalized_name": "tube tussle" + }, + { + "appid": 1501910, + "normalized_name": "fox stories" + }, + { + "appid": 1501920, + "normalized_name": "toewr le fence [discontinued]" + }, + { + "appid": 1501950, + "normalized_name": "eia a short story" + }, + { + "appid": 1501960, + "normalized_name": "monster x" + }, + { + "appid": 1501970, + "normalized_name": "白马非马 a white horse is not a horse" + }, + { + "appid": 1502010, + "normalized_name": "friki" + }, + { + "appid": 1502040, + "normalized_name": "大衍江湖 evolution of jianghu" + }, + { + "appid": 1502050, + "normalized_name": "dracula's castle" + }, + { + "appid": 1502060, + "normalized_name": "boxed in" + }, + { + "appid": 1502070, + "normalized_name": "survival in africa" + }, + { + "appid": 1502080, + "normalized_name": "altdeus beyond chronos" + }, + { + "appid": 1502110, + "normalized_name": "r18plus monster girl you ki chan" + }, + { + "appid": 1502140, + "normalized_name": "sengoku shadow strikers" + }, + { + "appid": 1502160, + "normalized_name": "faun air フォーンアイル" + }, + { + "appid": 1502170, + "normalized_name": "orbisia" + }, + { + "appid": 1502180, + "normalized_name": "gnomes garden return of the queen" + }, + { + "appid": 1502190, + "normalized_name": "from space" + }, + { + "appid": 1502220, + "normalized_name": "幻灵岛(fantasy sprite island)" + }, + { + "appid": 1502230, + "normalized_name": "tower of waifus" + }, + { + "appid": 1502240, + "normalized_name": "lineart jigsaw puzzle erotica christmas" + }, + { + "appid": 1502260, + "normalized_name": "figment 2 creed valley prologue" + }, + { + "appid": 1502270, + "normalized_name": "skythrone" + }, + { + "appid": 1502290, + "normalized_name": "my neighbor alice" + }, + { + "appid": 1502380, + "normalized_name": "combat mission black sea" + }, + { + "appid": 1502400, + "normalized_name": "who killed mr. white?" + }, + { + "appid": 1502410, + "normalized_name": "clt" + }, + { + "appid": 1502430, + "normalized_name": "controller king" + }, + { + "appid": 1502460, + "normalized_name": "b 17 squadron" + }, + { + "appid": 1502480, + "normalized_name": "z blood mission" + }, + { + "appid": 1502490, + "normalized_name": "corona samurai" + }, + { + "appid": 1502520, + "normalized_name": "the mermaid of zennor" + }, + { + "appid": 1502530, + "normalized_name": "slime sprint" + }, + { + "appid": 1502540, + "normalized_name": "the sisters party of the year" + }, + { + "appid": 1502550, + "normalized_name": "winter sleigh" + }, + { + "appid": 1502560, + "normalized_name": "the smurfs mission vileaf" + }, + { + "appid": 1502570, + "normalized_name": "story of a tiny earth the symbolic ages" + }, + { + "appid": 1502600, + "normalized_name": "alien x" + }, + { + "appid": 1502610, + "normalized_name": "darkest hour" + }, + { + "appid": 1502620, + "normalized_name": "security guy vs ai the dawn of ai" + }, + { + "appid": 1502630, + "normalized_name": "neon parkour" + }, + { + "appid": 1502660, + "normalized_name": "untrusted" + }, + { + "appid": 1502670, + "normalized_name": "crazy party" + }, + { + "appid": 1502680, + "normalized_name": "dobo's heroes" + }, + { + "appid": 1502710, + "normalized_name": "agent intercept" + }, + { + "appid": 1502730, + "normalized_name": "street football" + }, + { + "appid": 1502750, + "normalized_name": "my familiar" + }, + { + "appid": 1502760, + "normalized_name": "dungeon delver" + }, + { + "appid": 1502770, + "normalized_name": "re;lord 2 ~the witch of cologne and black cat~" + }, + { + "appid": 1502790, + "normalized_name": "gun witch" + }, + { + "appid": 1502800, + "normalized_name": "escape machine city airborne" + }, + { + "appid": 1502810, + "normalized_name": "whiskey bravo" + }, + { + "appid": 1502820, + "normalized_name": "probably tuesday" + }, + { + "appid": 1502890, + "normalized_name": "dna episode 1" + }, + { + "appid": 1502900, + "normalized_name": "prison x chapter 1 the devil and the sun" + }, + { + "appid": 1502910, + "normalized_name": "the nightmare begins" + }, + { + "appid": 1502920, + "normalized_name": "jack axe the trial" + }, + { + "appid": 1502950, + "normalized_name": "quarantine global pandemic" + }, + { + "appid": 1502960, + "normalized_name": "joe kowalski chronicles murder in a flat" + }, + { + "appid": 1502970, + "normalized_name": "atelier sophie the alchemist of the mysterious book dx" + }, + { + "appid": 1502980, + "normalized_name": "atelier firis the alchemist and the mysterious journey dx" + }, + { + "appid": 1502990, + "normalized_name": "atelier lydie & suelle the alchemists and the mysterious paintings dx" + }, + { + "appid": 1503000, + "normalized_name": "the chaos gene" + }, + { + "appid": 1503040, + "normalized_name": "purplis sandbox" + }, + { + "appid": 1503060, + "normalized_name": "ダリアの惑溺~団地妻・亜希子が堕ちる事情~" + }, + { + "appid": 1503110, + "normalized_name": "don't be a baby!" + }, + { + "appid": 1503170, + "normalized_name": "liegecraft" + }, + { + "appid": 1503180, + "normalized_name": "elementite" + }, + { + "appid": 1503240, + "normalized_name": "brickmasters" + }, + { + "appid": 1503250, + "normalized_name": "muslim 3d" + }, + { + "appid": 1503270, + "normalized_name": "pepibo peregrino pinata bowling" + }, + { + "appid": 1503280, + "normalized_name": "octarina" + }, + { + "appid": 1503350, + "normalized_name": "cyberpunch" + }, + { + "appid": 1503370, + "normalized_name": "francisca 2" + }, + { + "appid": 1503390, + "normalized_name": "drunk soccer is the best soccer" + }, + { + "appid": 1503400, + "normalized_name": "temporal purge z" + }, + { + "appid": 1503410, + "normalized_name": "children's jigsaw puzzles" + }, + { + "appid": 1503430, + "normalized_name": "groov" + }, + { + "appid": 1503440, + "normalized_name": "dreamscapes dimensions" + }, + { + "appid": 1503470, + "normalized_name": "lacuna/draft" + }, + { + "appid": 1503480, + "normalized_name": "paradigm shift" + }, + { + "appid": 1503490, + "normalized_name": "farmzone" + }, + { + "appid": 1503530, + "normalized_name": "minit fun racer" + }, + { + "appid": 1503540, + "normalized_name": "mission idle" + }, + { + "appid": 1503580, + "normalized_name": "epic city builder 4" + }, + { + "appid": 1503590, + "normalized_name": "range is hot!" + }, + { + "appid": 1503630, + "normalized_name": "arm of revenge re" + }, + { + "appid": 1503670, + "normalized_name": "[chilla's art] the caregiver | 終焉介護" + }, + { + "appid": 1503700, + "normalized_name": "rules of alchemy" + }, + { + "appid": 1503750, + "normalized_name": "inglorious aztecs" + }, + { + "appid": 1503790, + "normalized_name": "nordicandia" + }, + { + "appid": 1503820, + "normalized_name": "ballfrog" + }, + { + "appid": 1503850, + "normalized_name": "中年失业模拟器when a man lose his job" + }, + { + "appid": 1503880, + "normalized_name": "the alpha 001" + }, + { + "appid": 1503900, + "normalized_name": "teamplay" + }, + { + "appid": 1503920, + "normalized_name": "aery a journey beyond time" + }, + { + "appid": 1503930, + "normalized_name": "glam's incredible run escape from dukha" + }, + { + "appid": 1503990, + "normalized_name": "tomorrow" + }, + { + "appid": 1504010, + "normalized_name": "negative the way of shinobi" + }, + { + "appid": 1504020, + "normalized_name": "mosaique neko waifus 4" + }, + { + "appid": 1504030, + "normalized_name": "hover ship" + }, + { + "appid": 1504050, + "normalized_name": "jab!" + }, + { + "appid": 1504090, + "normalized_name": "ascendum" + }, + { + "appid": 1504100, + "normalized_name": "playground vr" + }, + { + "appid": 1504110, + "normalized_name": "grandiose" + }, + { + "appid": 1504150, + "normalized_name": "hello guest hello neighbor 2 pre alpha" + }, + { + "appid": 1504210, + "normalized_name": "ink shapes book one" + }, + { + "appid": 1504220, + "normalized_name": "the penguin iq test" + }, + { + "appid": 1504230, + "normalized_name": "skyratz" + }, + { + "appid": 1504250, + "normalized_name": "paper planet" + }, + { + "appid": 1504260, + "normalized_name": "my last memories about you" + }, + { + "appid": 1504310, + "normalized_name": "azure sky" + }, + { + "appid": 1504320, + "normalized_name": "goc royale" + }, + { + "appid": 1504340, + "normalized_name": "crushborgs" + }, + { + "appid": 1504350, + "normalized_name": "anime catgirl runner" + }, + { + "appid": 1504360, + "normalized_name": "happy day" + }, + { + "appid": 1504450, + "normalized_name": "lost assassin a tale of ai corruption" + }, + { + "appid": 1504460, + "normalized_name": "fruit girls hentai jigsaw photo studio" + }, + { + "appid": 1504480, + "normalized_name": "through the helios" + }, + { + "appid": 1504490, + "normalized_name": "bridg" + }, + { + "appid": 1504500, + "normalized_name": "opus echo of starsong full bloom" + }, + { + "appid": 1504550, + "normalized_name": "循环世界" + }, + { + "appid": 1504570, + "normalized_name": "太荒初境" + }, + { + "appid": 1504580, + "normalized_name": "maze party" + }, + { + "appid": 1504610, + "normalized_name": "vr wonderland 2:adventures in a fruit boat" + }, + { + "appid": 1504630, + "normalized_name": "zero g revolution" + }, + { + "appid": 1504660, + "normalized_name": "arc wizards 3" + }, + { + "appid": 1504670, + "normalized_name": "vr plane crash" + }, + { + "appid": 1504740, + "normalized_name": "find yourself" + }, + { + "appid": 1504760, + "normalized_name": "그랑 엠파이어" + }, + { + "appid": 1504820, + "normalized_name": "cloud jumper" + }, + { + "appid": 1504840, + "normalized_name": "surprising my neighbors 2" + }, + { + "appid": 1504870, + "normalized_name": "harpy star" + }, + { + "appid": 1504890, + "normalized_name": "fractal evolution" + }, + { + "appid": 1504910, + "normalized_name": "sakura mochi" + }, + { + "appid": 1504940, + "normalized_name": "we can make it" + }, + { + "appid": 1505010, + "normalized_name": "blockdown" + }, + { + "appid": 1505220, + "normalized_name": "roboggled sokoban game" + }, + { + "appid": 1505230, + "normalized_name": "mothercore" + }, + { + "appid": 1505270, + "normalized_name": "荣光的见证 glory's witness" + }, + { + "appid": 1505310, + "normalized_name": "risu" + }, + { + "appid": 1505380, + "normalized_name": "a hermit crab is finding a house" + }, + { + "appid": 1505390, + "normalized_name": "librarian" + }, + { + "appid": 1505400, + "normalized_name": "robot robert" + }, + { + "appid": 1505420, + "normalized_name": "run ralph run" + }, + { + "appid": 1505430, + "normalized_name": "inversion" + }, + { + "appid": 1505440, + "normalized_name": "neon warrior" + }, + { + "appid": 1505450, + "normalized_name": "oscar & gems puzzle quest" + }, + { + "appid": 1505460, + "normalized_name": "neon" + }, + { + "appid": 1505470, + "normalized_name": "arnold" + }, + { + "appid": 1505480, + "normalized_name": "dream of tomorrow" + }, + { + "appid": 1505500, + "normalized_name": "fluffy gore" + }, + { + "appid": 1505520, + "normalized_name": "defender of kuiper belt" + }, + { + "appid": 1505540, + "normalized_name": "get together a coop adventure" + }, + { + "appid": 1505560, + "normalized_name": "little lives" + }, + { + "appid": 1505570, + "normalized_name": "labyrinth 3" + }, + { + "appid": 1505600, + "normalized_name": "retris" + }, + { + "appid": 1505620, + "normalized_name": "waifu secret" + }, + { + "appid": 1505650, + "normalized_name": "renovators" + }, + { + "appid": 1505670, + "normalized_name": "crafty" + }, + { + "appid": 1505680, + "normalized_name": "band of brothers" + }, + { + "appid": 1505690, + "normalized_name": "lux mina" + }, + { + "appid": 1505700, + "normalized_name": "berzerk flashback" + }, + { + "appid": 1505720, + "normalized_name": "apostle 3d" + }, + { + "appid": 1505740, + "normalized_name": "lunar base camp 2030+" + }, + { + "appid": 1505750, + "normalized_name": "astro zip vr" + }, + { + "appid": 1505770, + "normalized_name": "meow lab" + }, + { + "appid": 1505790, + "normalized_name": "edifice of fiends" + }, + { + "appid": 1505830, + "normalized_name": "evil shogun" + }, + { + "appid": 1505840, + "normalized_name": "hexacore" + }, + { + "appid": 1505850, + "normalized_name": "frigid vr" + }, + { + "appid": 1505860, + "normalized_name": "the sol device 2" + }, + { + "appid": 1505910, + "normalized_name": "recontact london cyber puzzle" + }, + { + "appid": 1505920, + "normalized_name": "bleak end" + }, + { + "appid": 1505940, + "normalized_name": "orc warchief strategy city builder" + }, + { + "appid": 1505960, + "normalized_name": "kuguru" + }, + { + "appid": 1505980, + "normalized_name": "cat go! challenge" + }, + { + "appid": 1506020, + "normalized_name": "mark i mission pilot" + }, + { + "appid": 1506040, + "normalized_name": "the land of shadows asylum" + }, + { + "appid": 1506060, + "normalized_name": "qfield" + }, + { + "appid": 1506080, + "normalized_name": "fuzz dungeon" + }, + { + "appid": 1506100, + "normalized_name": "languish" + }, + { + "appid": 1506170, + "normalized_name": "solitons" + }, + { + "appid": 1506230, + "normalized_name": "bigfoot forest" + }, + { + "appid": 1506250, + "normalized_name": "my mistress" + }, + { + "appid": 1506260, + "normalized_name": "funbag fantasy 3if" + }, + { + "appid": 1506300, + "normalized_name": "scribble fight" + }, + { + "appid": 1506320, + "normalized_name": "tiger girl hill breaker" + }, + { + "appid": 1506400, + "normalized_name": "women's quiz" + }, + { + "appid": 1506410, + "normalized_name": "moon base" + }, + { + "appid": 1506420, + "normalized_name": "agent x" + }, + { + "appid": 1506430, + "normalized_name": "asteroids belt try to survive!" + }, + { + "appid": 1506440, + "normalized_name": "batora lost haven" + }, + { + "appid": 1506450, + "normalized_name": "diy my lady in vr world" + }, + { + "appid": 1506460, + "normalized_name": "eliminate drips 消灭水滴" + }, + { + "appid": 1506480, + "normalized_name": "absurbia a trashy satire of suburban outcries" + }, + { + "appid": 1506490, + "normalized_name": "white shirts red blood" + }, + { + "appid": 1506510, + "normalized_name": "the ramp" + }, + { + "appid": 1506520, + "normalized_name": "green world catharsis" + }, + { + "appid": 1506550, + "normalized_name": "doomsday fodder" + }, + { + "appid": 1506600, + "normalized_name": "my boss is weird" + }, + { + "appid": 1506610, + "normalized_name": "king's cup the online multiplayer drinking game" + }, + { + "appid": 1506620, + "normalized_name": "horror squad" + }, + { + "appid": 1506630, + "normalized_name": "minicraft shooter" + }, + { + "appid": 1506640, + "normalized_name": "hatchpunk" + }, + { + "appid": 1506660, + "normalized_name": "battle cube" + }, + { + "appid": 1506680, + "normalized_name": "horror tycoon" + }, + { + "appid": 1506710, + "normalized_name": "nemesis rpg" + }, + { + "appid": 1506720, + "normalized_name": "smoked gun" + }, + { + "appid": 1506730, + "normalized_name": "what never was chapter ii" + }, + { + "appid": 1506750, + "normalized_name": "waterpolo inter nation" + }, + { + "appid": 1506760, + "normalized_name": "a house of thieves" + }, + { + "appid": 1506770, + "normalized_name": "crawler" + }, + { + "appid": 1506810, + "normalized_name": "poop" + }, + { + "appid": 1506820, + "normalized_name": "kiki & ana the child" + }, + { + "appid": 1506830, + "normalized_name": "fifa 22" + }, + { + "appid": 1506850, + "normalized_name": "cards & tankards" + }, + { + "appid": 1506900, + "normalized_name": "the epic of inanna" + }, + { + "appid": 1506930, + "normalized_name": "hana's campus life!" + }, + { + "appid": 1506940, + "normalized_name": "muffin fight" + }, + { + "appid": 1506960, + "normalized_name": "beat biome" + }, + { + "appid": 1506970, + "normalized_name": "symphony of delights" + }, + { + "appid": 1506980, + "normalized_name": "葬花·暗黑桃花源" + }, + { + "appid": 1506990, + "normalized_name": "grimoire of syvnta" + }, + { + "appid": 1507080, + "normalized_name": "弗洛伊斯(freus)" + }, + { + "appid": 1507110, + "normalized_name": "kill the emperor" + }, + { + "appid": 1507120, + "normalized_name": "the spirit of the samurai" + }, + { + "appid": 1507180, + "normalized_name": "math hero minimalist puzzle" + }, + { + "appid": 1507190, + "normalized_name": "machinika museum" + }, + { + "appid": 1507220, + "normalized_name": "my lust wish" + }, + { + "appid": 1507260, + "normalized_name": "cannon lab 13" + }, + { + "appid": 1507270, + "normalized_name": "grab toy" + }, + { + "appid": 1507280, + "normalized_name": "rowfall" + }, + { + "appid": 1507310, + "normalized_name": "to the snowland platformer game" + }, + { + "appid": 1507390, + "normalized_name": "hentai ヘンタイ c gum vaccination" + }, + { + "appid": 1507400, + "normalized_name": "soobmarinno" + }, + { + "appid": 1507410, + "normalized_name": "coloring book for kids" + }, + { + "appid": 1507420, + "normalized_name": "wanderlust" + }, + { + "appid": 1507430, + "normalized_name": "mayhem fortress" + }, + { + "appid": 1507440, + "normalized_name": "apollo 3000 wild space" + }, + { + "appid": 1507490, + "normalized_name": "hentai killer girls & chess" + }, + { + "appid": 1507510, + "normalized_name": "horus idle" + }, + { + "appid": 1507530, + "normalized_name": "stellar mess the princess conundrum (chapter 1)" + }, + { + "appid": 1507580, + "normalized_name": "enigma of fear" + }, + { + "appid": 1507600, + "normalized_name": "tail trail" + }, + { + "appid": 1507620, + "normalized_name": "endo" + }, + { + "appid": 1507630, + "normalized_name": "hypoxia one last breath" + }, + { + "appid": 1507640, + "normalized_name": "mage hunters" + }, + { + "appid": 1507650, + "normalized_name": "the lodge" + }, + { + "appid": 1507710, + "normalized_name": "childkin tiny adventures" + }, + { + "appid": 1507720, + "normalized_name": "märchen forest" + }, + { + "appid": 1507740, + "normalized_name": "vamp night" + }, + { + "appid": 1507760, + "normalized_name": "cold wind" + }, + { + "appid": 1507770, + "normalized_name": "bloomee" + }, + { + "appid": 1507780, + "normalized_name": "space warlord organ trading simulator" + }, + { + "appid": 1507790, + "normalized_name": "witch strandings" + }, + { + "appid": 1507800, + "normalized_name": "base defense vr" + }, + { + "appid": 1507820, + "normalized_name": "gobutiko" + }, + { + "appid": 1507850, + "normalized_name": "gospel of abaddon" + }, + { + "appid": 1507860, + "normalized_name": "endocrisis" + }, + { + "appid": 1507890, + "normalized_name": "the demon rush legends corrupt" + }, + { + "appid": 1507910, + "normalized_name": "survival engine" + }, + { + "appid": 1507930, + "normalized_name": "oculux" + }, + { + "appid": 1507950, + "normalized_name": "dying flame" + }, + { + "appid": 1507970, + "normalized_name": "《文字遊戲》第零章" + }, + { + "appid": 1507980, + "normalized_name": "leap of love safe" + }, + { + "appid": 1507990, + "normalized_name": "a day to bring them happiness" + }, + { + "appid": 1508000, + "normalized_name": "venice 2089" + }, + { + "appid": 1508010, + "normalized_name": "suspicious" + }, + { + "appid": 1508030, + "normalized_name": "object n" + }, + { + "appid": 1508040, + "normalized_name": "assemble" + }, + { + "appid": 1508050, + "normalized_name": "not another princess game" + }, + { + "appid": 1508060, + "normalized_name": "snowy love" + }, + { + "appid": 1508170, + "normalized_name": "magical waifus academy" + }, + { + "appid": 1508190, + "normalized_name": "finding words a fantasy book" + }, + { + "appid": 1508200, + "normalized_name": "cyber rider" + }, + { + "appid": 1508220, + "normalized_name": "broken thorns west gate" + }, + { + "appid": 1508250, + "normalized_name": "box and ball" + }, + { + "appid": 1508260, + "normalized_name": "tortured hearts or how i saved the universe. again." + }, + { + "appid": 1508270, + "normalized_name": "doctor who the lonely assassins" + }, + { + "appid": 1508280, + "normalized_name": "2076 midway multiverse" + }, + { + "appid": 1508340, + "normalized_name": "forsaken universe" + }, + { + "appid": 1508360, + "normalized_name": "town of the dead life 死寂之城" + }, + { + "appid": 1508370, + "normalized_name": "hisato no saku" + }, + { + "appid": 1508400, + "normalized_name": "kaiju wars" + }, + { + "appid": 1508410, + "normalized_name": "pirate of madagascar island" + }, + { + "appid": 1508420, + "normalized_name": "vlorp" + }, + { + "appid": 1508430, + "normalized_name": "kemono mahjong" + }, + { + "appid": 1508440, + "normalized_name": "rage chicken 2" + }, + { + "appid": 1508450, + "normalized_name": "she doesn't walk" + }, + { + "appid": 1508460, + "normalized_name": "annalynn" + }, + { + "appid": 1508500, + "normalized_name": "last hour" + }, + { + "appid": 1508510, + "normalized_name": "miyu's cursed store" + }, + { + "appid": 1508530, + "normalized_name": "epiphany city" + }, + { + "appid": 1508570, + "normalized_name": "summer~life in the countryside~" + }, + { + "appid": 1508620, + "normalized_name": "av company | av会社大冒险" + }, + { + "appid": 1508630, + "normalized_name": "star melody yumemi dreamer" + }, + { + "appid": 1508640, + "normalized_name": "leave the red" + }, + { + "appid": 1508650, + "normalized_name": "正宗台灣十六張麻將" + }, + { + "appid": 1508660, + "normalized_name": "正宗台灣十六張麻將2" + }, + { + "appid": 1508670, + "normalized_name": "正宗台湾十六张麻将3" + }, + { + "appid": 1508680, + "normalized_name": "love n war warlord by chance" + }, + { + "appid": 1508740, + "normalized_name": "軒轅劍貳" + }, + { + "appid": 1508750, + "normalized_name": "軒轅劍外傳楓之舞" + }, + { + "appid": 1508770, + "normalized_name": "selfpolis" + }, + { + "appid": 1508800, + "normalized_name": "find a way" + }, + { + "appid": 1508840, + "normalized_name": "great exploration vr new colony beyond viking raiders" + }, + { + "appid": 1508860, + "normalized_name": "minforiga" + }, + { + "appid": 1508890, + "normalized_name": "desirable dream hotel" + }, + { + "appid": 1508900, + "normalized_name": "mahjong school" + }, + { + "appid": 1508920, + "normalized_name": "coffee flavor of love 咖啡甜恋" + }, + { + "appid": 1508950, + "normalized_name": "megacraft hentai survival" + }, + { + "appid": 1508960, + "normalized_name": "warage" + }, + { + "appid": 1508980, + "normalized_name": "cheese runner" + }, + { + "appid": 1509000, + "normalized_name": "mighty vikings" + }, + { + "appid": 1509010, + "normalized_name": "curiosaurios club. un viaje espacial" + }, + { + "appid": 1509040, + "normalized_name": "lonely catgirl is the purrfect pussy" + }, + { + "appid": 1509050, + "normalized_name": "space of retaliation" + }, + { + "appid": 1509060, + "normalized_name": "dungeon team" + }, + { + "appid": 1509070, + "normalized_name": "warfront 2020" + }, + { + "appid": 1509080, + "normalized_name": "nox archaist" + }, + { + "appid": 1509090, + "normalized_name": "seek girl ⅷ" + }, + { + "appid": 1509110, + "normalized_name": "nympho wife" + }, + { + "appid": 1509130, + "normalized_name": "corona frustration elimination" + }, + { + "appid": 1509150, + "normalized_name": "the holy silence" + }, + { + "appid": 1509160, + "normalized_name": "spynames" + }, + { + "appid": 1509180, + "normalized_name": "sqr(2)" + }, + { + "appid": 1509220, + "normalized_name": "hentai nureta puzzle mythica" + }, + { + "appid": 1509230, + "normalized_name": "prop hunt" + }, + { + "appid": 1509260, + "normalized_name": "l.s.d. (lasting spiritual derangement)" + }, + { + "appid": 1509360, + "normalized_name": "pinball groupies" + }, + { + "appid": 1509400, + "normalized_name": "cargo transportation low poly" + }, + { + "appid": 1509450, + "normalized_name": "elysium above 履云录" + }, + { + "appid": 1509460, + "normalized_name": "retrowave drive" + }, + { + "appid": 1509510, + "normalized_name": "settlement survival" + }, + { + "appid": 1509520, + "normalized_name": "white girl" + }, + { + "appid": 1509530, + "normalized_name": "black infinity" + }, + { + "appid": 1509590, + "normalized_name": "fujiwara bittersweet" + }, + { + "appid": 1509630, + "normalized_name": "during before and after covid 19" + }, + { + "appid": 1509640, + "normalized_name": "viking warrior" + }, + { + "appid": 1509650, + "normalized_name": "i am jesus christ prologue" + }, + { + "appid": 1509660, + "normalized_name": "重生战士" + }, + { + "appid": 1509670, + "normalized_name": "vhaip" + }, + { + "appid": 1509700, + "normalized_name": "marble ball racing" + }, + { + "appid": 1509710, + "normalized_name": "city retreat" + }, + { + "appid": 1509720, + "normalized_name": "hot dodge!" + }, + { + "appid": 1509730, + "normalized_name": "legends of valhalla" + }, + { + "appid": 1509750, + "normalized_name": "cold heart" + }, + { + "appid": 1509780, + "normalized_name": "bombagun" + }, + { + "appid": 1509790, + "normalized_name": "the other rosie's road of love" + }, + { + "appid": 1509800, + "normalized_name": "mak survival" + }, + { + "appid": 1509810, + "normalized_name": "hazordhu" + }, + { + "appid": 1509820, + "normalized_name": "cloud climber" + }, + { + "appid": 1509830, + "normalized_name": "superstorm melon date" + }, + { + "appid": 1509840, + "normalized_name": "tower of doom" + }, + { + "appid": 1509850, + "normalized_name": "swallow the blue" + }, + { + "appid": 1509870, + "normalized_name": "lead rally" + }, + { + "appid": 1509880, + "normalized_name": "ponder" + }, + { + "appid": 1509920, + "normalized_name": "chaos crown" + }, + { + "appid": 1509950, + "normalized_name": "empire idle" + }, + { + "appid": 1509960, + "normalized_name": "pico park" + }, + { + "appid": 1509970, + "normalized_name": "celestial empire prologue" + }, + { + "appid": 1510010, + "normalized_name": "《述梦》" + }, + { + "appid": 1510030, + "normalized_name": "knights college" + }, + { + "appid": 1510040, + "normalized_name": "swingy boy" + }, + { + "appid": 1510070, + "normalized_name": "cliff & field tower defense" + }, + { + "appid": 1510090, + "normalized_name": "quantum project" + }, + { + "appid": 1510150, + "normalized_name": "survival draw" + }, + { + "appid": 1510210, + "normalized_name": "prizefighters 2" + }, + { + "appid": 1510240, + "normalized_name": "supa birdie boi" + }, + { + "appid": 1510250, + "normalized_name": "aliens in paradise" + }, + { + "appid": 1510280, + "normalized_name": "isles of cubes" + }, + { + "appid": 1510290, + "normalized_name": "arid jared" + }, + { + "appid": 1510310, + "normalized_name": "dream escape" + }, + { + "appid": 1510330, + "normalized_name": "dragonhold" + }, + { + "appid": 1510370, + "normalized_name": "made vr interactive movie 01. run away!" + }, + { + "appid": 1510380, + "normalized_name": "burst squad" + }, + { + "appid": 1510390, + "normalized_name": "wind wind" + }, + { + "appid": 1510410, + "normalized_name": "inkslinger" + }, + { + "appid": 1510440, + "normalized_name": "honeycomb the world beyond" + }, + { + "appid": 1510450, + "normalized_name": "art syndicate" + }, + { + "appid": 1510460, + "normalized_name": "chicken invaders universe" + }, + { + "appid": 1510470, + "normalized_name": "prim" + }, + { + "appid": 1510520, + "normalized_name": "immune simulator type z" + }, + { + "appid": 1510570, + "normalized_name": "toy tinker simulator prologue" + }, + { + "appid": 1510580, + "normalized_name": "toy tinker simulator" + }, + { + "appid": 1510590, + "normalized_name": "buried under rocks" + }, + { + "appid": 1510600, + "normalized_name": "anime arena infinite war" + }, + { + "appid": 1510620, + "normalized_name": "pocket watch" + }, + { + "appid": 1510630, + "normalized_name": "everybody wham wham" + }, + { + "appid": 1510670, + "normalized_name": "zadette" + }, + { + "appid": 1510710, + "normalized_name": "dev_hell" + }, + { + "appid": 1510720, + "normalized_name": "hajji tours" + }, + { + "appid": 1510730, + "normalized_name": "auto world tycoon" + }, + { + "appid": 1510740, + "normalized_name": "the virus" + }, + { + "appid": 1510780, + "normalized_name": "hollow ghost" + }, + { + "appid": 1510800, + "normalized_name": "the great plague exodus" + }, + { + "appid": 1510810, + "normalized_name": "卡通魔法世界" + }, + { + "appid": 1510820, + "normalized_name": "briddle" + }, + { + "appid": 1510840, + "normalized_name": "guardians of gridvale" + }, + { + "appid": 1510860, + "normalized_name": "out of sight" + }, + { + "appid": 1510880, + "normalized_name": "hentai gif puzzle x" + }, + { + "appid": 1510890, + "normalized_name": "micro annihilation" + }, + { + "appid": 1510900, + "normalized_name": "pilfered liberty" + }, + { + "appid": 1510930, + "normalized_name": "cyber emoji tale 2099" + }, + { + "appid": 1510950, + "normalized_name": "nkodice" + }, + { + "appid": 1511000, + "normalized_name": "collapse" + }, + { + "appid": 1511040, + "normalized_name": "love bakudan" + }, + { + "appid": 1511090, + "normalized_name": "great paintings vr" + }, + { + "appid": 1511130, + "normalized_name": "decabristov street" + }, + { + "appid": 1511140, + "normalized_name": "laser attraction" + }, + { + "appid": 1511190, + "normalized_name": "super toy cars offroad" + }, + { + "appid": 1511240, + "normalized_name": "spacenet a space adventure" + }, + { + "appid": 1511250, + "normalized_name": "vector race" + }, + { + "appid": 1511260, + "normalized_name": "ragnarra might of muskets" + }, + { + "appid": 1511270, + "normalized_name": "ann" + }, + { + "appid": 1511280, + "normalized_name": "dread days" + }, + { + "appid": 1511310, + "normalized_name": "数值魔王猫 numeric demon cat" + }, + { + "appid": 1511320, + "normalized_name": "心灵噩梦" + }, + { + "appid": 1511330, + "normalized_name": "digital zoo gallery" + }, + { + "appid": 1511360, + "normalized_name": "飞花令 春饼" + }, + { + "appid": 1511400, + "normalized_name": "stream quest" + }, + { + "appid": 1511410, + "normalized_name": "grass cutters academy idle game" + }, + { + "appid": 1511450, + "normalized_name": "two brain sides" + }, + { + "appid": 1511460, + "normalized_name": "infraspace" + }, + { + "appid": 1511480, + "normalized_name": "alterlife" + }, + { + "appid": 1511490, + "normalized_name": "happy valentine's day" + }, + { + "appid": 1511500, + "normalized_name": "elven truth" + }, + { + "appid": 1511540, + "normalized_name": "dw" + }, + { + "appid": 1511560, + "normalized_name": "vittorio corbo's un beatable game" + }, + { + "appid": 1511610, + "normalized_name": "gang wars" + }, + { + "appid": 1511620, + "normalized_name": "dark spot" + }, + { + "appid": 1511630, + "normalized_name": "trackdayr" + }, + { + "appid": 1511650, + "normalized_name": "andromeda rebirth of humanity" + }, + { + "appid": 1511660, + "normalized_name": "woo wop da bam" + }, + { + "appid": 1511670, + "normalized_name": "enter the backrooms" + }, + { + "appid": 1511690, + "normalized_name": "fragmented mind" + }, + { + "appid": 1511740, + "normalized_name": "alek" + }, + { + "appid": 1511780, + "normalized_name": "last call bbs" + }, + { + "appid": 1511790, + "normalized_name": "brutalist" + }, + { + "appid": 1511800, + "normalized_name": "botbrawl" + }, + { + "appid": 1511830, + "normalized_name": "shadows behind the throne 2" + }, + { + "appid": 1511850, + "normalized_name": "dungeons of the deep" + }, + { + "appid": 1511860, + "normalized_name": "swallow the sea" + }, + { + "appid": 1511870, + "normalized_name": "末日竟在我身边 zombies everywhere" + }, + { + "appid": 1511880, + "normalized_name": "slime heroes" + }, + { + "appid": 1511940, + "normalized_name": "boom shocketa rocket storm" + }, + { + "appid": 1511950, + "normalized_name": "magellania" + }, + { + "appid": 1511970, + "normalized_name": "最后的守护者之虚幻的梦" + }, + { + "appid": 1512050, + "normalized_name": "world turtles" + }, + { + "appid": 1512070, + "normalized_name": "vr hiroshima 1945" + }, + { + "appid": 1512100, + "normalized_name": "tiny escape" + }, + { + "appid": 1512170, + "normalized_name": "infected town" + }, + { + "appid": 1512190, + "normalized_name": "hunternet starfighter" + }, + { + "appid": 1512200, + "normalized_name": "pythian" + }, + { + "appid": 1512240, + "normalized_name": "记得我" + }, + { + "appid": 1512280, + "normalized_name": "escape from darkness" + }, + { + "appid": 1512290, + "normalized_name": "ufopilot the phadt menace steam" + }, + { + "appid": 1512300, + "normalized_name": "quick race" + }, + { + "appid": 1512320, + "normalized_name": "yabgits haunted cemetery" + }, + { + "appid": 1512350, + "normalized_name": "as fast as possible" + }, + { + "appid": 1512370, + "normalized_name": "furry shakespeare dreamin' of one lazy dead midsummer" + }, + { + "appid": 1512380, + "normalized_name": "dead zone" + }, + { + "appid": 1512390, + "normalized_name": "the whispering valley | la vallée qui murmure" + }, + { + "appid": 1512450, + "normalized_name": "monkeypox the plague" + }, + { + "appid": 1512470, + "normalized_name": "incel syndrome" + }, + { + "appid": 1512480, + "normalized_name": "gunlocked" + }, + { + "appid": 1512510, + "normalized_name": "unlitten" + }, + { + "appid": 1512520, + "normalized_name": "4096" + }, + { + "appid": 1512530, + "normalized_name": "极限求生" + }, + { + "appid": 1512540, + "normalized_name": "beyond the waterfalls" + }, + { + "appid": 1512550, + "normalized_name": "amnon's beginning" + }, + { + "appid": 1512570, + "normalized_name": "she turned me into a newt!" + }, + { + "appid": 1512590, + "normalized_name": "punch a bunch" + }, + { + "appid": 1512610, + "normalized_name": "furries & scalies super scary halloween spooky times part ii" + }, + { + "appid": 1512660, + "normalized_name": "the light of summer" + }, + { + "appid": 1512710, + "normalized_name": "阿貓阿狗" + }, + { + "appid": 1512720, + "normalized_name": "stardom" + }, + { + "appid": 1512730, + "normalized_name": "relax it's aqua" + }, + { + "appid": 1512750, + "normalized_name": "lehweng lehweng" + }, + { + "appid": 1512780, + "normalized_name": "ワニワニアタック" + }, + { + "appid": 1512790, + "normalized_name": "reach the summit" + }, + { + "appid": 1512800, + "normalized_name": "mars quest" + }, + { + "appid": 1512830, + "normalized_name": "黑巢姐妹" + }, + { + "appid": 1512860, + "normalized_name": "pixelot" + }, + { + "appid": 1512910, + "normalized_name": "power ball 2021" + }, + { + "appid": 1512920, + "normalized_name": "the devil's shoes" + }, + { + "appid": 1512940, + "normalized_name": "malody v" + }, + { + "appid": 1512950, + "normalized_name": "bullyball" + }, + { + "appid": 1512960, + "normalized_name": "parkalien a ludo in the space" + }, + { + "appid": 1513000, + "normalized_name": "vicious vine" + }, + { + "appid": 1513030, + "normalized_name": "soar pillars of tasneem" + }, + { + "appid": 1513090, + "normalized_name": "blimps" + }, + { + "appid": 1513110, + "normalized_name": "shapeneon chaos" + }, + { + "appid": 1513120, + "normalized_name": "the zodiac trial" + }, + { + "appid": 1513130, + "normalized_name": "no lights" + }, + { + "appid": 1513150, + "normalized_name": "warriors heaven" + }, + { + "appid": 1513160, + "normalized_name": "home domes" + }, + { + "appid": 1513180, + "normalized_name": "lo fi lounge" + }, + { + "appid": 1513190, + "normalized_name": "fresh milk for mars" + }, + { + "appid": 1513250, + "normalized_name": "溪风谷之战(roguelike moba game)" + }, + { + "appid": 1513260, + "normalized_name": "bluravity" + }, + { + "appid": 1513300, + "normalized_name": "marswar td" + }, + { + "appid": 1513310, + "normalized_name": "blockee sliding puzzle" + }, + { + "appid": 1513330, + "normalized_name": "knockdown" + }, + { + "appid": 1513370, + "normalized_name": "angkor runefall" + }, + { + "appid": 1513390, + "normalized_name": "夏日的回忆" + }, + { + "appid": 1513400, + "normalized_name": "karma chapter 1" + }, + { + "appid": 1513420, + "normalized_name": "escalation!" + }, + { + "appid": 1513430, + "normalized_name": "saghala heroes of the last world" + }, + { + "appid": 1513450, + "normalized_name": "two months" + }, + { + "appid": 1513460, + "normalized_name": "antimatter elevator" + }, + { + "appid": 1513480, + "normalized_name": "shutter stroll" + }, + { + "appid": 1513490, + "normalized_name": "overworld map keeper's realm" + }, + { + "appid": 1513500, + "normalized_name": "plumber" + }, + { + "appid": 1513530, + "normalized_name": "phucker in the ashes" + }, + { + "appid": 1513550, + "normalized_name": "table tennis pro" + }, + { + "appid": 1513570, + "normalized_name": "safe cracker" + }, + { + "appid": 1513580, + "normalized_name": "transporter manager tycoon" + }, + { + "appid": 1513640, + "normalized_name": "feeet" + }, + { + "appid": 1513650, + "normalized_name": "gun bots" + }, + { + "appid": 1513660, + "normalized_name": "stalked" + }, + { + "appid": 1513670, + "normalized_name": "fono" + }, + { + "appid": 1513680, + "normalized_name": "wizardry squared" + }, + { + "appid": 1513690, + "normalized_name": "elly" + }, + { + "appid": 1513700, + "normalized_name": "pond scum" + }, + { + "appid": 1513710, + "normalized_name": "crystal sword" + }, + { + "appid": 1513740, + "normalized_name": "warriors of titus f2p" + }, + { + "appid": 1513780, + "normalized_name": "strange nightmares" + }, + { + "appid": 1513790, + "normalized_name": "the unbreakable chain" + }, + { + "appid": 1513800, + "normalized_name": "jpn burst" + }, + { + "appid": 1513810, + "normalized_name": "sporadic fear" + }, + { + "appid": 1513820, + "normalized_name": "御寇三世:星图" + }, + { + "appid": 1513840, + "normalized_name": "v.o.d.k.a. open world survival shooter" + }, + { + "appid": 1513860, + "normalized_name": "raptor territory" + }, + { + "appid": 1513910, + "normalized_name": "i will be there" + }, + { + "appid": 1513930, + "normalized_name": "fallen" + }, + { + "appid": 1513940, + "normalized_name": "roadside assistance simulator" + }, + { + "appid": 1513950, + "normalized_name": "motor assailant betrayal" + }, + { + "appid": 1513960, + "normalized_name": "franz fury" + }, + { + "appid": 1514000, + "normalized_name": "anime holidays" + }, + { + "appid": 1514010, + "normalized_name": "cannibal coast!" + }, + { + "appid": 1514030, + "normalized_name": "hentaisland lost pantsu" + }, + { + "appid": 1514040, + "normalized_name": "oasis the great / 超世界绿洲" + }, + { + "appid": 1514070, + "normalized_name": "video realms" + }, + { + "appid": 1514090, + "normalized_name": "defend till sunshine" + }, + { + "appid": 1514100, + "normalized_name": "adventure war battlefield" + }, + { + "appid": 1514140, + "normalized_name": "cursed night" + }, + { + "appid": 1514160, + "normalized_name": "doctor xenophon's laboratory" + }, + { + "appid": 1514170, + "normalized_name": "birbout!" + }, + { + "appid": 1514190, + "normalized_name": "this rain will never end noir adventure detective" + }, + { + "appid": 1514200, + "normalized_name": "tap those targets" + }, + { + "appid": 1514240, + "normalized_name": "between them" + }, + { + "appid": 1514250, + "normalized_name": "freed soft" + }, + { + "appid": 1514280, + "normalized_name": "轻点江湖水" + }, + { + "appid": 1514290, + "normalized_name": "kazakh 'jack" + }, + { + "appid": 1514300, + "normalized_name": "the tower of tigerqiuqiu 2" + }, + { + "appid": 1514360, + "normalized_name": "laid back camp virtual lake motosu" + }, + { + "appid": 1514370, + "normalized_name": "laid back camp virtual fumoto campsite" + }, + { + "appid": 1514380, + "normalized_name": "cogen sword of rewind / cogen 大鳥こはくと刻の剣" + }, + { + "appid": 1514390, + "normalized_name": "7d maze" + }, + { + "appid": 1514430, + "normalized_name": "reek n' havok" + }, + { + "appid": 1514460, + "normalized_name": "perseverance part 3" + }, + { + "appid": 1514470, + "normalized_name": "feed the pets fall animals" + }, + { + "appid": 1514480, + "normalized_name": "lucid cycle" + }, + { + "appid": 1514490, + "normalized_name": "hippoxxus" + }, + { + "appid": 1514550, + "normalized_name": "gun spartan" + }, + { + "appid": 1514560, + "normalized_name": "faustian bargain" + }, + { + "appid": 1514580, + "normalized_name": "short stories" + }, + { + "appid": 1514610, + "normalized_name": "rising mist" + }, + { + "appid": 1514620, + "normalized_name": "quiet thoughts" + }, + { + "appid": 1514640, + "normalized_name": "scrapshoot" + }, + { + "appid": 1514650, + "normalized_name": "waifu's spooky space station" + }, + { + "appid": 1514660, + "normalized_name": "battle ball" + }, + { + "appid": 1514690, + "normalized_name": "peekaboo lite" + }, + { + "appid": 1514730, + "normalized_name": "the dream of shadowlands episode 2" + }, + { + "appid": 1514740, + "normalized_name": "chaos road" + }, + { + "appid": 1514780, + "normalized_name": "battle for esturia" + }, + { + "appid": 1514840, + "normalized_name": "all in one sports vr" + }, + { + "appid": 1514850, + "normalized_name": "furtive" + }, + { + "appid": 1514880, + "normalized_name": "zigglox" + }, + { + "appid": 1514890, + "normalized_name": "vr shark" + }, + { + "appid": 1514900, + "normalized_name": "true virus" + }, + { + "appid": 1514920, + "normalized_name": "base jump" + }, + { + "appid": 1514930, + "normalized_name": "erica" + }, + { + "appid": 1514950, + "normalized_name": "neodash" + }, + { + "appid": 1514970, + "normalized_name": "the sabotage" + }, + { + "appid": 1515000, + "normalized_name": "wild country" + }, + { + "appid": 1515040, + "normalized_name": "bloks" + }, + { + "appid": 1515140, + "normalized_name": "huntfeast" + }, + { + "appid": 1515160, + "normalized_name": "craft beer tycoon" + }, + { + "appid": 1515170, + "normalized_name": "maze escape" + }, + { + "appid": 1515200, + "normalized_name": "mission in snowdriftland" + }, + { + "appid": 1515210, + "normalized_name": "the past within" + }, + { + "appid": 1515220, + "normalized_name": "virtual driving school" + }, + { + "appid": 1515230, + "normalized_name": "lollipop!" + }, + { + "appid": 1515260, + "normalized_name": "circle empires tactics" + }, + { + "appid": 1515280, + "normalized_name": "detective story" + }, + { + "appid": 1515290, + "normalized_name": "boodunnit" + }, + { + "appid": 1515320, + "normalized_name": "harvest days my dream farm" + }, + { + "appid": 1515330, + "normalized_name": "monster tribe" + }, + { + "appid": 1515370, + "normalized_name": "smuggler simulator" + }, + { + "appid": 1515400, + "normalized_name": "a kiss from death" + }, + { + "appid": 1515420, + "normalized_name": "the vampire regent" + }, + { + "appid": 1515450, + "normalized_name": "galactic pick up artist" + }, + { + "appid": 1515460, + "normalized_name": "prison tycoon under new management" + }, + { + "appid": 1515470, + "normalized_name": "calturin" + }, + { + "appid": 1515490, + "normalized_name": "system purge" + }, + { + "appid": 1515540, + "normalized_name": "ocean riders" + }, + { + "appid": 1515570, + "normalized_name": "elsie" + }, + { + "appid": 1515580, + "normalized_name": "dice of olympus" + }, + { + "appid": 1515590, + "normalized_name": "super snow tubes" + }, + { + "appid": 1515600, + "normalized_name": "space station cargo simulator" + }, + { + "appid": 1515640, + "normalized_name": "arcadegeddon" + }, + { + "appid": 1515710, + "normalized_name": "anna the series test" + }, + { + "appid": 1515730, + "normalized_name": "yellowlooper" + }, + { + "appid": 1515740, + "normalized_name": "super sports blast" + }, + { + "appid": 1515750, + "normalized_name": "star squadron student driver" + }, + { + "appid": 1515760, + "normalized_name": "op. after mass n1" + }, + { + "appid": 1515800, + "normalized_name": "welcome back" + }, + { + "appid": 1515820, + "normalized_name": "guns of succubus" + }, + { + "appid": 1515830, + "normalized_name": "no.l85" + }, + { + "appid": 1515870, + "normalized_name": "hentai balloons 2" + }, + { + "appid": 1515890, + "normalized_name": "taisho x alice episode 3" + }, + { + "appid": 1515900, + "normalized_name": "heaven dust 2" + }, + { + "appid": 1515920, + "normalized_name": "tomb of pharaohs" + }, + { + "appid": 1515950, + "normalized_name": "capcom arcade stadium" + }, + { + "appid": 1515970, + "normalized_name": "spin & roll" + }, + { + "appid": 1515980, + "normalized_name": "伏魔记" + }, + { + "appid": 1515990, + "normalized_name": "dizzy two" + }, + { + "appid": 1516080, + "normalized_name": "that time i got reincarnated as an orc" + }, + { + "appid": 1516120, + "normalized_name": "immunity tales" + }, + { + "appid": 1516130, + "normalized_name": "delares" + }, + { + "appid": 1516150, + "normalized_name": "dorpie" + }, + { + "appid": 1516190, + "normalized_name": "a hole in space" + }, + { + "appid": 1516240, + "normalized_name": "mitoza" + }, + { + "appid": 1516250, + "normalized_name": "memories of fireflies" + }, + { + "appid": 1516320, + "normalized_name": "skeleton king" + }, + { + "appid": 1516330, + "normalized_name": "acolyte" + }, + { + "appid": 1516340, + "normalized_name": "necore tower redux" + }, + { + "appid": 1516350, + "normalized_name": "textreme 2" + }, + { + "appid": 1516360, + "normalized_name": "red galaxy" + }, + { + "appid": 1516400, + "normalized_name": "gaia project" + }, + { + "appid": 1516440, + "normalized_name": "atc infinite" + }, + { + "appid": 1516450, + "normalized_name": "red mist rivers of blood" + }, + { + "appid": 1516490, + "normalized_name": "compacto idle game" + }, + { + "appid": 1516530, + "normalized_name": "super retro world" + }, + { + "appid": 1516550, + "normalized_name": "vectors" + }, + { + "appid": 1516560, + "normalized_name": "ministry of pandemic" + }, + { + "appid": 1516580, + "normalized_name": "unknown woods" + }, + { + "appid": 1516600, + "normalized_name": "hypershot" + }, + { + "appid": 1516610, + "normalized_name": "rc airplane challenge" + }, + { + "appid": 1516680, + "normalized_name": "de'vine heavenly acres" + }, + { + "appid": 1516730, + "normalized_name": "zombie groove" + }, + { + "appid": 1516750, + "normalized_name": "alien marauder" + }, + { + "appid": 1516760, + "normalized_name": "cat colony crisis" + }, + { + "appid": 1516820, + "normalized_name": "春秋" + }, + { + "appid": 1516870, + "normalized_name": "eshina princess cultivator" + }, + { + "appid": 1516900, + "normalized_name": "raspberry mash" + }, + { + "appid": 1516910, + "normalized_name": "exigent" + }, + { + "appid": 1516920, + "normalized_name": "warhaos" + }, + { + "appid": 1516940, + "normalized_name": "evil seal" + }, + { + "appid": 1516950, + "normalized_name": "beyond horror episode one a father's journey" + }, + { + "appid": 1516960, + "normalized_name": "flying frags world tour" + }, + { + "appid": 1516970, + "normalized_name": "shard of kronos" + }, + { + "appid": 1517050, + "normalized_name": "the fun of asmodius" + }, + { + "appid": 1517110, + "normalized_name": "after meeting" + }, + { + "appid": 1517120, + "normalized_name": "tiny defender" + }, + { + "appid": 1517140, + "normalized_name": "box the beat vr" + }, + { + "appid": 1517150, + "normalized_name": "vedelem the golden horde" + }, + { + "appid": 1517160, + "normalized_name": "under the ghost mountain" + }, + { + "appid": 1517170, + "normalized_name": "ancient rituals stonehenge" + }, + { + "appid": 1517180, + "normalized_name": "mindcop" + }, + { + "appid": 1517190, + "normalized_name": "the daunting house" + }, + { + "appid": 1517220, + "normalized_name": "crazy factory" + }, + { + "appid": 1517230, + "normalized_name": "visiting a celebrity" + }, + { + "appid": 1517240, + "normalized_name": "chess with lasers" + }, + { + "appid": 1517290, + "normalized_name": "battlefield 2042" + }, + { + "appid": 1517320, + "normalized_name": "1000 shards" + }, + { + "appid": 1517340, + "normalized_name": "from the darkness" + }, + { + "appid": 1517350, + "normalized_name": "hidden memory neko's life" + }, + { + "appid": 1517380, + "normalized_name": "everplant" + }, + { + "appid": 1517390, + "normalized_name": "mars mission" + }, + { + "appid": 1517440, + "normalized_name": "star aegis" + }, + { + "appid": 1517470, + "normalized_name": "daughter of essence" + }, + { + "appid": 1517490, + "normalized_name": "peaceful gunner" + }, + { + "appid": 1517510, + "normalized_name": "horatama" + }, + { + "appid": 1517520, + "normalized_name": "foglight online" + }, + { + "appid": 1517530, + "normalized_name": "sparkles & gems" + }, + { + "appid": 1517560, + "normalized_name": "droplet states of matter" + }, + { + "appid": 1517610, + "normalized_name": "space 'n lasers" + }, + { + "appid": 1517770, + "normalized_name": "astrokicker" + }, + { + "appid": 1517800, + "normalized_name": "anarkade" + }, + { + "appid": 1517810, + "normalized_name": "反图灵测试/anti turingtest" + }, + { + "appid": 1517830, + "normalized_name": "miska's cave" + }, + { + "appid": 1517850, + "normalized_name": "quickie a love hotel story" + }, + { + "appid": 1517870, + "normalized_name": "stalakminer" + }, + { + "appid": 1517930, + "normalized_name": "bonkey trek quimdung" + }, + { + "appid": 1517960, + "normalized_name": "rebirth beware of mr.wang" + }, + { + "appid": 1517970, + "normalized_name": "aeterna noctis" + }, + { + "appid": 1518000, + "normalized_name": "cooking around the world" + }, + { + "appid": 1518020, + "normalized_name": "tales from the cache" + }, + { + "appid": 1518030, + "normalized_name": "run tank run" + }, + { + "appid": 1518090, + "normalized_name": "freelancer life simulator prologue" + }, + { + "appid": 1518100, + "normalized_name": "build em' faster" + }, + { + "appid": 1518120, + "normalized_name": "dystopians" + }, + { + "appid": 1518140, + "normalized_name": "dear mom" + }, + { + "appid": 1518180, + "normalized_name": "car mechanic manager 2023" + }, + { + "appid": 1518190, + "normalized_name": "evil mansion" + }, + { + "appid": 1518200, + "normalized_name": "agent murphy" + }, + { + "appid": 1518210, + "normalized_name": "my father my son" + }, + { + "appid": 1518220, + "normalized_name": "spells & secrets" + }, + { + "appid": 1518240, + "normalized_name": "pathfinder 08" + }, + { + "appid": 1518300, + "normalized_name": "two guys one ca" + }, + { + "appid": 1518320, + "normalized_name": "minesweeper versus" + }, + { + "appid": 1518330, + "normalized_name": "pirate simulator" + }, + { + "appid": 1518350, + "normalized_name": "higgs boson minimal puzzle" + }, + { + "appid": 1518360, + "normalized_name": "unearthu" + }, + { + "appid": 1518370, + "normalized_name": "theme park mystery" + }, + { + "appid": 1518380, + "normalized_name": "the killing cloud" + }, + { + "appid": 1518430, + "normalized_name": "eiyu*senki gold – a new conquest" + }, + { + "appid": 1518440, + "normalized_name": "makerking" + }, + { + "appid": 1518480, + "normalized_name": "essence of time" + }, + { + "appid": 1518530, + "normalized_name": "system zero" + }, + { + "appid": 1518560, + "normalized_name": "chaincards" + }, + { + "appid": 1518610, + "normalized_name": "revertia" + }, + { + "appid": 1518630, + "normalized_name": "pretty girls panic! plus" + }, + { + "appid": 1518640, + "normalized_name": "vr girls’ room in darkness" + }, + { + "appid": 1518650, + "normalized_name": "exodition" + }, + { + "appid": 1518690, + "normalized_name": "nevermore the chamber door" + }, + { + "appid": 1518770, + "normalized_name": "re lief ~ shin'ainaru anata e~" + }, + { + "appid": 1518800, + "normalized_name": "maru and her make believe world" + }, + { + "appid": 1518810, + "normalized_name": "koi farm" + }, + { + "appid": 1518820, + "normalized_name": "horse club adventures" + }, + { + "appid": 1518860, + "normalized_name": "gravel gang" + }, + { + "appid": 1518870, + "normalized_name": "across" + }, + { + "appid": 1518890, + "normalized_name": "triblock" + }, + { + "appid": 1518910, + "normalized_name": "fun forbidden" + }, + { + "appid": 1518940, + "normalized_name": "conductor creative joy engine" + }, + { + "appid": 1518990, + "normalized_name": "degradation(alpha)" + }, + { + "appid": 1519000, + "normalized_name": "confusing game" + }, + { + "appid": 1519010, + "normalized_name": "kamikaze veggies" + }, + { + "appid": 1519020, + "normalized_name": "boom" + }, + { + "appid": 1519040, + "normalized_name": "kombi travels jigsaw landscapes" + }, + { + "appid": 1519050, + "normalized_name": "sgs heia safari" + }, + { + "appid": 1519060, + "normalized_name": "sgs taipings" + }, + { + "appid": 1519070, + "normalized_name": "sgs halls of montezuma" + }, + { + "appid": 1519090, + "normalized_name": "welcome to paradize" + }, + { + "appid": 1519110, + "normalized_name": "chillaxvr" + }, + { + "appid": 1519140, + "normalized_name": "[neolithic]to the end" + }, + { + "appid": 1519150, + "normalized_name": "симулятор русской зимы" + }, + { + "appid": 1519180, + "normalized_name": "president rocket game" + }, + { + "appid": 1519190, + "normalized_name": "duck flight simulator 2021" + }, + { + "appid": 1519200, + "normalized_name": "dashing dinos 2" + }, + { + "appid": 1519230, + "normalized_name": "the last from mars" + }, + { + "appid": 1519240, + "normalized_name": "box ninja" + }, + { + "appid": 1519280, + "normalized_name": "zombie neighborhood" + }, + { + "appid": 1519340, + "normalized_name": "lashek" + }, + { + "appid": 1519360, + "normalized_name": "the legends in kylamar" + }, + { + "appid": 1519420, + "normalized_name": "dmn7" + }, + { + "appid": 1519470, + "normalized_name": "endless furry killer 3d" + }, + { + "appid": 1519490, + "normalized_name": "the doors of trithius" + }, + { + "appid": 1519550, + "normalized_name": "rebellion gaia" + }, + { + "appid": 1519570, + "normalized_name": "starter pack" + }, + { + "appid": 1519590, + "normalized_name": "sentimental trickster yaoi bl gay visual novel" + }, + { + "appid": 1519610, + "normalized_name": "assault (2023)" + }, + { + "appid": 1519620, + "normalized_name": "x air combat" + }, + { + "appid": 1519630, + "normalized_name": "失楽園カルタ" + }, + { + "appid": 1519640, + "normalized_name": "simulation world" + }, + { + "appid": 1519650, + "normalized_name": "haunted nightmares" + }, + { + "appid": 1519660, + "normalized_name": "goat over it" + }, + { + "appid": 1519670, + "normalized_name": "super brain cube" + }, + { + "appid": 1519680, + "normalized_name": "ultimatum casting" + }, + { + "appid": 1519690, + "normalized_name": "stay" + }, + { + "appid": 1519710, + "normalized_name": "schim" + }, + { + "appid": 1519730, + "normalized_name": "wildfire ticket to rock" + }, + { + "appid": 1519770, + "normalized_name": "n body" + }, + { + "appid": 1519780, + "normalized_name": "citor3 santa's elf vr adult xxx game" + }, + { + "appid": 1519790, + "normalized_name": "fast food manager" + }, + { + "appid": 1519800, + "normalized_name": "halloween trouble 2" + }, + { + "appid": 1519820, + "normalized_name": "slime crown" + }, + { + "appid": 1519850, + "normalized_name": "stop and move" + }, + { + "appid": 1519880, + "normalized_name": "skullbangers!" + }, + { + "appid": 1519890, + "normalized_name": "tiny space academy" + }, + { + "appid": 1519900, + "normalized_name": "真砂楼 | masagoro" + }, + { + "appid": 1519910, + "normalized_name": "utopia process" + }, + { + "appid": 1519920, + "normalized_name": "1m84" + }, + { + "appid": 1519940, + "normalized_name": "restoration master" + }, + { + "appid": 1519950, + "normalized_name": "escape from the badtrip episode 1" + }, + { + "appid": 1520000, + "normalized_name": "ragdoll game" + }, + { + "appid": 1520010, + "normalized_name": "roach raid" + }, + { + "appid": 1520060, + "normalized_name": "sheep love" + }, + { + "appid": 1520090, + "normalized_name": "jin conception" + }, + { + "appid": 1520110, + "normalized_name": "etched memories demo" + }, + { + "appid": 1520120, + "normalized_name": "death dream" + }, + { + "appid": 1520130, + "normalized_name": "midnight memories sonata of the soul" + }, + { + "appid": 1520150, + "normalized_name": "witch's reign" + }, + { + "appid": 1520160, + "normalized_name": "chrono sword" + }, + { + "appid": 1520170, + "normalized_name": "sexy sniper" + }, + { + "appid": 1520200, + "normalized_name": "challenge racing" + }, + { + "appid": 1520240, + "normalized_name": "cleaning robot match \"scatter battlers\"" + }, + { + "appid": 1520250, + "normalized_name": "gnome jigsaw puzzles" + }, + { + "appid": 1520270, + "normalized_name": "kyvir rebirth" + }, + { + "appid": 1520280, + "normalized_name": "hentai climbing" + }, + { + "appid": 1520290, + "normalized_name": "crumbling city" + }, + { + "appid": 1520310, + "normalized_name": "we'll always have paris" + }, + { + "appid": 1520330, + "normalized_name": "techbeat heart" + }, + { + "appid": 1520360, + "normalized_name": "divine dust" + }, + { + "appid": 1520370, + "normalized_name": "mon bazou" + }, + { + "appid": 1520380, + "normalized_name": "half dead 3" + }, + { + "appid": 1520390, + "normalized_name": "hotel paris" + }, + { + "appid": 1520420, + "normalized_name": "the hopebringer" + }, + { + "appid": 1520440, + "normalized_name": "himig" + }, + { + "appid": 1520460, + "normalized_name": "adventure field 4" + }, + { + "appid": 1520470, + "normalized_name": "灵境奇谈" + }, + { + "appid": 1520500, + "normalized_name": "succubus cafe" + }, + { + "appid": 1520510, + "normalized_name": "itadaki smash" + }, + { + "appid": 1520520, + "normalized_name": "live long z" + }, + { + "appid": 1520570, + "normalized_name": "dreamcatcher reflections volume 1" + }, + { + "appid": 1520580, + "normalized_name": "blood of the alchemists" + }, + { + "appid": 1520590, + "normalized_name": "slap it together!" + }, + { + "appid": 1520600, + "normalized_name": "build and discover america" + }, + { + "appid": 1520610, + "normalized_name": "blackjack math cross numbers" + }, + { + "appid": 1520640, + "normalized_name": "bumper cars dodgems" + }, + { + "appid": 1520660, + "normalized_name": "crystorld" + }, + { + "appid": 1520680, + "normalized_name": "tetra cube" + }, + { + "appid": 1520690, + "normalized_name": "die rangliste" + }, + { + "appid": 1520710, + "normalized_name": "entodrive" + }, + { + "appid": 1520740, + "normalized_name": "reanimation scheme" + }, + { + "appid": 1520760, + "normalized_name": "tyrant's blessing" + }, + { + "appid": 1520780, + "normalized_name": "witch club" + }, + { + "appid": 1520790, + "normalized_name": "chaos kart" + }, + { + "appid": 1520810, + "normalized_name": "flatline" + }, + { + "appid": 1520830, + "normalized_name": "casual commando" + }, + { + "appid": 1520840, + "normalized_name": "ms. han's after school tutoring" + }, + { + "appid": 1520850, + "normalized_name": "mess adventures 2" + }, + { + "appid": 1520880, + "normalized_name": "the last bastion" + }, + { + "appid": 1520900, + "normalized_name": "castle cardians" + }, + { + "appid": 1521010, + "normalized_name": "pigglet in mrs. big bad werewolf" + }, + { + "appid": 1521020, + "normalized_name": "the clinic of depravity a wife reveals her true nature in front of her husband" + }, + { + "appid": 1521040, + "normalized_name": "nature treks together" + }, + { + "appid": 1521050, + "normalized_name": "zombievan drive" + }, + { + "appid": 1521070, + "normalized_name": "the pegasus expedition" + }, + { + "appid": 1521100, + "normalized_name": "casual pro wrestling" + }, + { + "appid": 1521110, + "normalized_name": "black baby" + }, + { + "appid": 1521160, + "normalized_name": "are you smarter than a 5th grader" + }, + { + "appid": 1521190, + "normalized_name": "love in the distance" + }, + { + "appid": 1521230, + "normalized_name": "blade's legacy" + }, + { + "appid": 1521250, + "normalized_name": "offroad delivery service" + }, + { + "appid": 1521260, + "normalized_name": "yummy" + }, + { + "appid": 1521290, + "normalized_name": "condition zero" + }, + { + "appid": 1521330, + "normalized_name": "the trolley problem game" + }, + { + "appid": 1521360, + "normalized_name": "mainframes" + }, + { + "appid": 1521390, + "normalized_name": "the cow game" + }, + { + "appid": 1521410, + "normalized_name": "manic archers" + }, + { + "appid": 1521490, + "normalized_name": "my dream sport dating simulator" + }, + { + "appid": 1521520, + "normalized_name": "skiiiiiiiiiiiiiiid" + }, + { + "appid": 1521580, + "normalized_name": "perfect heist 2" + }, + { + "appid": 1521600, + "normalized_name": "the runaway feijoão" + }, + { + "appid": 1521670, + "normalized_name": "flesh eating geriatric internet predator" + }, + { + "appid": 1521690, + "normalized_name": "lost robot" + }, + { + "appid": 1521750, + "normalized_name": "garage ninja" + }, + { + "appid": 1521760, + "normalized_name": "dodge dancer" + }, + { + "appid": 1521770, + "normalized_name": "ero tennis" + }, + { + "appid": 1521780, + "normalized_name": "ruin" + }, + { + "appid": 1521810, + "normalized_name": "salamander county public television" + }, + { + "appid": 1521820, + "normalized_name": "lightwave" + }, + { + "appid": 1521870, + "normalized_name": "riddle of the sphinx the awakening (enhanced edition)" + }, + { + "appid": 1521900, + "normalized_name": "rome 2077 space wars" + }, + { + "appid": 1521920, + "normalized_name": "merchants of the caribbean" + }, + { + "appid": 1521930, + "normalized_name": "a tale for anna" + }, + { + "appid": 1521960, + "normalized_name": "just shake it" + }, + { + "appid": 1521970, + "normalized_name": "goblin stone" + }, + { + "appid": 1522020, + "normalized_name": "the interview you know what you've got to do to get the job" + }, + { + "appid": 1522030, + "normalized_name": "sukakko" + }, + { + "appid": 1522040, + "normalized_name": "messiahend refrain" + }, + { + "appid": 1522070, + "normalized_name": "zenith into maronarium" + }, + { + "appid": 1522080, + "normalized_name": "jitsu squad" + }, + { + "appid": 1522100, + "normalized_name": "stellar war" + }, + { + "appid": 1522120, + "normalized_name": "thrilling triple treat" + }, + { + "appid": 1522140, + "normalized_name": "demon skin" + }, + { + "appid": 1522160, + "normalized_name": "disney epic mickey rebrushed" + }, + { + "appid": 1522170, + "normalized_name": "koloss" + }, + { + "appid": 1522180, + "normalized_name": "destiny island" + }, + { + "appid": 1522220, + "normalized_name": "war gene" + }, + { + "appid": 1522230, + "normalized_name": "wild west crops" + }, + { + "appid": 1522260, + "normalized_name": "iragon prologue 18+" + }, + { + "appid": 1522280, + "normalized_name": "grim realms" + }, + { + "appid": 1522300, + "normalized_name": "cozy blocks undersea adventure" + }, + { + "appid": 1522350, + "normalized_name": "zombie drift" + }, + { + "appid": 1522360, + "normalized_name": "dinos reborn" + }, + { + "appid": 1522470, + "normalized_name": "deck adventurers origins" + }, + { + "appid": 1522490, + "normalized_name": "boring in paradise" + }, + { + "appid": 1522530, + "normalized_name": "ero snooker" + }, + { + "appid": 1522540, + "normalized_name": "little obedient robot" + }, + { + "appid": 1522560, + "normalized_name": "100 hidden mice" + }, + { + "appid": 1522570, + "normalized_name": "mauri mursu's hangover" + }, + { + "appid": 1522620, + "normalized_name": "thumb fighter" + }, + { + "appid": 1522630, + "normalized_name": "dark treasury" + }, + { + "appid": 1522640, + "normalized_name": "short fuse" + }, + { + "appid": 1522660, + "normalized_name": "introvert a teenager simulator" + }, + { + "appid": 1522690, + "normalized_name": "in my defense" + }, + { + "appid": 1522700, + "normalized_name": "roswell's journey" + }, + { + "appid": 1522710, + "normalized_name": "lx patterns" + }, + { + "appid": 1522770, + "normalized_name": "the sych story" + }, + { + "appid": 1522800, + "normalized_name": "imercyve living with intellectual disability" + }, + { + "appid": 1522810, + "normalized_name": "shield cat the lost conductor" + }, + { + "appid": 1522820, + "normalized_name": "orcs must die! 3" + }, + { + "appid": 1522850, + "normalized_name": "watermelon blocks" + }, + { + "appid": 1522860, + "normalized_name": "flaming/million" + }, + { + "appid": 1522870, + "normalized_name": "supraland six inches under" + }, + { + "appid": 1522900, + "normalized_name": "pizza shop manager" + }, + { + "appid": 1522930, + "normalized_name": "transiruby" + }, + { + "appid": 1522940, + "normalized_name": "turn right" + }, + { + "appid": 1522950, + "normalized_name": "dadish" + }, + { + "appid": 1522960, + "normalized_name": "anemoiapolis chapter 1" + }, + { + "appid": 1522970, + "normalized_name": "amihero" + }, + { + "appid": 1522980, + "normalized_name": "cavebound" + }, + { + "appid": 1522990, + "normalized_name": "krampus night of horror" + }, + { + "appid": 1523010, + "normalized_name": "puppy pipy" + }, + { + "appid": 1523040, + "normalized_name": "volleygon" + }, + { + "appid": 1523100, + "normalized_name": "isolationist nightclub simulator" + }, + { + "appid": 1523130, + "normalized_name": "神启神落" + }, + { + "appid": 1523150, + "normalized_name": "ascension transition and silver" + }, + { + "appid": 1523170, + "normalized_name": "aladdin save the princess" + }, + { + "appid": 1523220, + "normalized_name": "overpower" + }, + { + "appid": 1523240, + "normalized_name": "grandmother's tale" + }, + { + "appid": 1523260, + "normalized_name": "迷霧國度 傳承 myth of mist:legacy" + }, + { + "appid": 1523330, + "normalized_name": "wayfarers call of osiris" + }, + { + "appid": 1523350, + "normalized_name": "rocket drift" + }, + { + "appid": 1523360, + "normalized_name": "vr parallel world" + }, + { + "appid": 1523370, + "normalized_name": "a.d. 2047" + }, + { + "appid": 1523390, + "normalized_name": "fantasy tavern sextet vol.3 postlude days" + }, + { + "appid": 1523400, + "normalized_name": "livestream escape from hotel izanami" + }, + { + "appid": 1523420, + "normalized_name": "spacelandia" + }, + { + "appid": 1523460, + "normalized_name": "dstroy 2" + }, + { + "appid": 1523500, + "normalized_name": "3 tactical lines" + }, + { + "appid": 1523510, + "normalized_name": "cave digger 2 dig harder" + }, + { + "appid": 1523520, + "normalized_name": "galaversal supremacy" + }, + { + "appid": 1523630, + "normalized_name": "world of fantasy zero" + }, + { + "appid": 1523640, + "normalized_name": "emberglass" + }, + { + "appid": 1523650, + "normalized_name": "stargate timekeepers" + }, + { + "appid": 1523670, + "normalized_name": "eggy" + }, + { + "appid": 1523680, + "normalized_name": "jigsaw pieces sweet times" + }, + { + "appid": 1523690, + "normalized_name": "escape prison" + }, + { + "appid": 1523720, + "normalized_name": "cook out" + }, + { + "appid": 1523750, + "normalized_name": "strip black jack sex teacher" + }, + { + "appid": 1523780, + "normalized_name": "hajji vr" + }, + { + "appid": 1523790, + "normalized_name": "hope's journey a therapeutic experience" + }, + { + "appid": 1523800, + "normalized_name": "mighty forest" + }, + { + "appid": 1523870, + "normalized_name": "call me cera" + }, + { + "appid": 1523890, + "normalized_name": "bunny ribbit" + }, + { + "appid": 1523900, + "normalized_name": "warfield" + }, + { + "appid": 1523940, + "normalized_name": "a trail of ooze" + }, + { + "appid": 1523990, + "normalized_name": "vampire the masquerade — sins of the sires" + }, + { + "appid": 1524010, + "normalized_name": "the game of nothing" + }, + { + "appid": 1524020, + "normalized_name": "escape from terror city" + }, + { + "appid": 1524110, + "normalized_name": "stories of liane" + }, + { + "appid": 1524150, + "normalized_name": "tales of farhollow" + }, + { + "appid": 1524170, + "normalized_name": "pixel game maker series remote bomber" + }, + { + "appid": 1524190, + "normalized_name": "possessed bloody asylum" + }, + { + "appid": 1524230, + "normalized_name": "mori's nightmare hide and seek" + }, + { + "appid": 1524250, + "normalized_name": "survivor dieland" + }, + { + "appid": 1524290, + "normalized_name": "留白(whitewash)" + }, + { + "appid": 1524340, + "normalized_name": "street karate 3" + }, + { + "appid": 1524350, + "normalized_name": "reversestory" + }, + { + "appid": 1524380, + "normalized_name": "dr. oil" + }, + { + "appid": 1524400, + "normalized_name": "ragdoll fall simulator" + }, + { + "appid": 1524470, + "normalized_name": "strip fighter 5 chimpocon" + }, + { + "appid": 1524530, + "normalized_name": "fantasy town regional manager" + }, + { + "appid": 1524550, + "normalized_name": "madshot" + }, + { + "appid": 1524580, + "normalized_name": "dual cars" + }, + { + "appid": 1524620, + "normalized_name": "chriss cross" + }, + { + "appid": 1524630, + "normalized_name": "keepup survival" + }, + { + "appid": 1524650, + "normalized_name": "sakura forest girls" + }, + { + "appid": 1524690, + "normalized_name": "chess brain dark troops" + }, + { + "appid": 1524710, + "normalized_name": "dark flowers" + }, + { + "appid": 1524750, + "normalized_name": "dude simulator 4" + }, + { + "appid": 1524790, + "normalized_name": "loneliness" + }, + { + "appid": 1524810, + "normalized_name": "carotic academic version" + }, + { + "appid": 1524840, + "normalized_name": "space duels" + }, + { + "appid": 1524920, + "normalized_name": "throughhelltoheaven" + }, + { + "appid": 1524930, + "normalized_name": "to be with you" + }, + { + "appid": 1524990, + "normalized_name": "survive after hell" + }, + { + "appid": 1525040, + "normalized_name": "citybeat the sorority shuffle" + }, + { + "appid": 1525050, + "normalized_name": "jerry wanker and the quest to get laid" + }, + { + "appid": 1525060, + "normalized_name": "unplugged" + }, + { + "appid": 1525160, + "normalized_name": "d.w. dagger chapter one" + }, + { + "appid": 1525190, + "normalized_name": "monster outbreak" + }, + { + "appid": 1525210, + "normalized_name": "steel graves" + }, + { + "appid": 1525250, + "normalized_name": "two coins" + }, + { + "appid": 1525270, + "normalized_name": "sports paradise vr" + }, + { + "appid": 1525290, + "normalized_name": "oddfauna secret of the terrabeast" + }, + { + "appid": 1525320, + "normalized_name": "dadish 2" + }, + { + "appid": 1525330, + "normalized_name": "guardians of hyelore" + }, + { + "appid": 1525350, + "normalized_name": "sif and the labyrinth" + }, + { + "appid": 1525390, + "normalized_name": "eternity protectors" + }, + { + "appid": 1525410, + "normalized_name": "天下为棋" + }, + { + "appid": 1525420, + "normalized_name": "heads will roll" + }, + { + "appid": 1525440, + "normalized_name": "vr shooting range multiple weapons" + }, + { + "appid": 1525460, + "normalized_name": "wild journey" + }, + { + "appid": 1525490, + "normalized_name": "异世界攻略组 another world adventure" + }, + { + "appid": 1525530, + "normalized_name": "cipher pilot" + }, + { + "appid": 1525540, + "normalized_name": "双重次元、穴曲堡double world. cave song castle" + }, + { + "appid": 1525560, + "normalized_name": "a knights adventure" + }, + { + "appid": 1525570, + "normalized_name": "剑侠图" + }, + { + "appid": 1525580, + "normalized_name": "kabaret" + }, + { + "appid": 1525600, + "normalized_name": "sensual adventures the game" + }, + { + "appid": 1525620, + "normalized_name": "the architect paris" + }, + { + "appid": 1525640, + "normalized_name": "the build and race hotrod game" + }, + { + "appid": 1525650, + "normalized_name": "solo fox" + }, + { + "appid": 1525660, + "normalized_name": "sunblaze" + }, + { + "appid": 1525700, + "normalized_name": "tavern master" + }, + { + "appid": 1525740, + "normalized_name": "hirt lamb" + }, + { + "appid": 1525750, + "normalized_name": "role of remains" + }, + { + "appid": 1525760, + "normalized_name": "taxi driver the simulation" + }, + { + "appid": 1525770, + "normalized_name": "the dark side of the moon an interactive fmv thriller" + }, + { + "appid": 1525810, + "normalized_name": "boomxr" + }, + { + "appid": 1525890, + "normalized_name": "death park 2" + }, + { + "appid": 1525900, + "normalized_name": "infinite dungeon crawler" + }, + { + "appid": 1525910, + "normalized_name": "strike force 3" + }, + { + "appid": 1525920, + "normalized_name": "sns" + }, + { + "appid": 1525970, + "normalized_name": "typed82" + }, + { + "appid": 1525990, + "normalized_name": "cubiti parti" + }, + { + "appid": 1526000, + "normalized_name": "folding maze" + }, + { + "appid": 1526020, + "normalized_name": "bullet time" + }, + { + "appid": 1526090, + "normalized_name": "rising noracam" + }, + { + "appid": 1526120, + "normalized_name": "hard tapes" + }, + { + "appid": 1526160, + "normalized_name": "four kings video poker" + }, + { + "appid": 1526170, + "normalized_name": "dig deep race to the core!" + }, + { + "appid": 1526180, + "normalized_name": "hide and seek" + }, + { + "appid": 1526190, + "normalized_name": "mysteries of shaola the cave" + }, + { + "appid": 1526220, + "normalized_name": "spacegirl" + }, + { + "appid": 1526230, + "normalized_name": "vr hentai date" + }, + { + "appid": 1526260, + "normalized_name": "days of heroes d day" + }, + { + "appid": 1526300, + "normalized_name": "deadly fight" + }, + { + "appid": 1526320, + "normalized_name": "midnight cipher" + }, + { + "appid": 1526330, + "normalized_name": "lilith was dead" + }, + { + "appid": 1526340, + "normalized_name": "jetscout boot camp" + }, + { + "appid": 1526350, + "normalized_name": "harlow" + }, + { + "appid": 1526360, + "normalized_name": "customers from hell game for retail workers (zombie survival game)" + }, + { + "appid": 1526370, + "normalized_name": "bilkins' folly" + }, + { + "appid": 1526380, + "normalized_name": "excavator simulator vr" + }, + { + "appid": 1526430, + "normalized_name": "carth" + }, + { + "appid": 1526490, + "normalized_name": "恐惧之间 fear surrounds" + }, + { + "appid": 1526500, + "normalized_name": "spell beats" + }, + { + "appid": 1526540, + "normalized_name": "dungeons and cat" + }, + { + "appid": 1526550, + "normalized_name": "project microchip" + }, + { + "appid": 1526580, + "normalized_name": "zombie dungeon" + }, + { + "appid": 1526600, + "normalized_name": "majiang" + }, + { + "appid": 1526650, + "normalized_name": "fugitive 3d" + }, + { + "appid": 1526680, + "normalized_name": "russian prison tattoo simulator" + }, + { + "appid": 1526690, + "normalized_name": "chinese bull" + }, + { + "appid": 1526700, + "normalized_name": "my step sisters" + }, + { + "appid": 1526730, + "normalized_name": "palmi retold tale" + }, + { + "appid": 1526750, + "normalized_name": "remember when" + }, + { + "appid": 1526780, + "normalized_name": "dark podval" + }, + { + "appid": 1526790, + "normalized_name": "soldier in the darkness" + }, + { + "appid": 1526870, + "normalized_name": "otherwar" + }, + { + "appid": 1526890, + "normalized_name": "valiant saga" + }, + { + "appid": 1526900, + "normalized_name": "sapphire safari" + }, + { + "appid": 1526920, + "normalized_name": "forest dash" + }, + { + "appid": 1526930, + "normalized_name": "polycore defense" + }, + { + "appid": 1527010, + "normalized_name": "beyond the pines" + }, + { + "appid": 1527040, + "normalized_name": "eager for den" + }, + { + "appid": 1527060, + "normalized_name": "cat gets medieval" + }, + { + "appid": 1527080, + "normalized_name": "xthrust" + }, + { + "appid": 1527090, + "normalized_name": "cat's menace" + }, + { + "appid": 1527120, + "normalized_name": "hyper strike" + }, + { + "appid": 1527160, + "normalized_name": "ascended" + }, + { + "appid": 1527230, + "normalized_name": "uc kart" + }, + { + "appid": 1527240, + "normalized_name": "ferris wheel simulator" + }, + { + "appid": 1527260, + "normalized_name": "the last town excape" + }, + { + "appid": 1527270, + "normalized_name": "raging ball" + }, + { + "appid": 1527280, + "normalized_name": "starship tunnel" + }, + { + "appid": 1527350, + "normalized_name": "dad's coming" + }, + { + "appid": 1527380, + "normalized_name": "引力魔方(gravity rubik's cube)" + }, + { + "appid": 1527420, + "normalized_name": "miss you" + }, + { + "appid": 1527460, + "normalized_name": "shadow of azrael" + }, + { + "appid": 1527470, + "normalized_name": "dying byte survival" + }, + { + "appid": 1527500, + "normalized_name": "pro strategy football 2022" + }, + { + "appid": 1527510, + "normalized_name": "romeow in the cracked world" + }, + { + "appid": 1527520, + "normalized_name": "bombing!! a graffiti sandbox" + }, + { + "appid": 1527540, + "normalized_name": "the amazing mail game" + }, + { + "appid": 1527620, + "normalized_name": "the little trashmaid puzzletime" + }, + { + "appid": 1527630, + "normalized_name": "重回哩世界" + }, + { + "appid": 1527640, + "normalized_name": "the lost game royal game of ur" + }, + { + "appid": 1527650, + "normalized_name": "ciphercell" + }, + { + "appid": 1527670, + "normalized_name": "goblin dungeoneer" + }, + { + "appid": 1527710, + "normalized_name": "earth elements" + }, + { + "appid": 1527780, + "normalized_name": "crossbow crusade" + }, + { + "appid": 1527820, + "normalized_name": "my wet leto comic a day of green" + }, + { + "appid": 1527830, + "normalized_name": "gate to site 8" + }, + { + "appid": 1527880, + "normalized_name": "darkness under my bed" + }, + { + "appid": 1527890, + "normalized_name": "dysterra" + }, + { + "appid": 1527910, + "normalized_name": "gladio and glory" + }, + { + "appid": 1527920, + "normalized_name": "biotech samurai" + }, + { + "appid": 1527930, + "normalized_name": "rhem iii se" + }, + { + "appid": 1527950, + "normalized_name": "wartales" + }, + { + "appid": 1527960, + "normalized_name": "the help desk" + }, + { + "appid": 1527980, + "normalized_name": "woman's prison" + }, + { + "appid": 1528000, + "normalized_name": "natsuki's life in prison" + }, + { + "appid": 1528010, + "normalized_name": "faylinn's quest" + }, + { + "appid": 1528020, + "normalized_name": "afterlife vr" + }, + { + "appid": 1528030, + "normalized_name": "imagined leviathans" + }, + { + "appid": 1528050, + "normalized_name": "underland" + }, + { + "appid": 1528060, + "normalized_name": "dreamers" + }, + { + "appid": 1528080, + "normalized_name": "gas station simulator prologue early days" + }, + { + "appid": 1528090, + "normalized_name": "hyper catch" + }, + { + "appid": 1528100, + "normalized_name": "star dust a journey through space" + }, + { + "appid": 1528110, + "normalized_name": "athena the rabbit jigsaw puzzle" + }, + { + "appid": 1528120, + "normalized_name": "compressure" + }, + { + "appid": 1528130, + "normalized_name": "距离男主自杀还剩七天" + }, + { + "appid": 1528200, + "normalized_name": "endurance labyrinth" + }, + { + "appid": 1528220, + "normalized_name": "gordian rooms 2 a curious island" + }, + { + "appid": 1528230, + "normalized_name": "tabbris yor" + }, + { + "appid": 1528240, + "normalized_name": "super dirt racers" + }, + { + "appid": 1528260, + "normalized_name": "advent neon" + }, + { + "appid": 1528280, + "normalized_name": "the highlands" + }, + { + "appid": 1528290, + "normalized_name": "across the demon realm" + }, + { + "appid": 1528300, + "normalized_name": "mythic zombies" + }, + { + "appid": 1528330, + "normalized_name": "mages defense" + }, + { + "appid": 1528370, + "normalized_name": "chacal" + }, + { + "appid": 1528430, + "normalized_name": "rolf" + }, + { + "appid": 1528470, + "normalized_name": "starlight defence command" + }, + { + "appid": 1528520, + "normalized_name": "fenrir's prelude" + }, + { + "appid": 1528530, + "normalized_name": "my sister's secret" + }, + { + "appid": 1528540, + "normalized_name": "holy whore emily" + }, + { + "appid": 1528550, + "normalized_name": "imprisoned queen" + }, + { + "appid": 1528560, + "normalized_name": "living together with fox demon" + }, + { + "appid": 1528570, + "normalized_name": "royale island showdown" + }, + { + "appid": 1528580, + "normalized_name": "neon ships the type'em up shooter" + }, + { + "appid": 1528590, + "normalized_name": "vscs ii" + }, + { + "appid": 1528610, + "normalized_name": "zombie jack" + }, + { + "appid": 1528680, + "normalized_name": "inn mage" + }, + { + "appid": 1528710, + "normalized_name": "cyber cat" + }, + { + "appid": 1528780, + "normalized_name": "aberration town" + }, + { + "appid": 1528800, + "normalized_name": "nakadashi banzai 4" + }, + { + "appid": 1528810, + "normalized_name": "exodus borealis" + }, + { + "appid": 1528820, + "normalized_name": "unconventional ragdoll game" + }, + { + "appid": 1528860, + "normalized_name": "the legend of karl" + }, + { + "appid": 1528880, + "normalized_name": "time to golf" + }, + { + "appid": 1528900, + "normalized_name": "charge champs" + }, + { + "appid": 1528910, + "normalized_name": "cradle 18" + }, + { + "appid": 1528920, + "normalized_name": "andromeda zombies colonies" + }, + { + "appid": 1528950, + "normalized_name": "主播模拟器(streamer simulator)" + }, + { + "appid": 1528960, + "normalized_name": "abyss signal expedition" + }, + { + "appid": 1528970, + "normalized_name": "gods of the twilight" + }, + { + "appid": 1528980, + "normalized_name": "pit of ascension" + }, + { + "appid": 1529040, + "normalized_name": "color war" + }, + { + "appid": 1529100, + "normalized_name": "what the maze" + }, + { + "appid": 1529140, + "normalized_name": "hero park" + }, + { + "appid": 1529160, + "normalized_name": "gunborg dark matters" + }, + { + "appid": 1529180, + "normalized_name": "deck rx the deckbuilding racing game" + }, + { + "appid": 1529220, + "normalized_name": "block'em!" + }, + { + "appid": 1529250, + "normalized_name": "wolf peak the case of ruth choi" + }, + { + "appid": 1529260, + "normalized_name": "postapo mechanic simulator" + }, + { + "appid": 1529290, + "normalized_name": "prison wars" + }, + { + "appid": 1529350, + "normalized_name": "astral ascension" + }, + { + "appid": 1529410, + "normalized_name": "jigsaw pieces romance" + }, + { + "appid": 1529430, + "normalized_name": "panic mode" + }, + { + "appid": 1529440, + "normalized_name": "bomb escape" + }, + { + "appid": 1529470, + "normalized_name": "ethereal estate" + }, + { + "appid": 1529530, + "normalized_name": "into the darkness vr" + }, + { + "appid": 1529550, + "normalized_name": "the magnificent trufflepigs" + }, + { + "appid": 1529560, + "normalized_name": "knight squad 2 trials" + }, + { + "appid": 1529640, + "normalized_name": "hanako's flower shop" + }, + { + "appid": 1529710, + "normalized_name": "симулятор прыгания по гаражам" + }, + { + "appid": 1529730, + "normalized_name": "doomer simulator" + }, + { + "appid": 1529750, + "normalized_name": "snusoed" + }, + { + "appid": 1529770, + "normalized_name": "tezz" + }, + { + "appid": 1529780, + "normalized_name": "quant" + }, + { + "appid": 1529800, + "normalized_name": "spacepom" + }, + { + "appid": 1529810, + "normalized_name": "psycholonials" + }, + { + "appid": 1529860, + "normalized_name": "ulna online" + }, + { + "appid": 1529910, + "normalized_name": "reticent retribution" + }, + { + "appid": 1529990, + "normalized_name": "super idol" + }, + { + "appid": 1530000, + "normalized_name": "the menacing" + }, + { + "appid": 1530020, + "normalized_name": "broken dungeon" + }, + { + "appid": 1530040, + "normalized_name": "creas" + }, + { + "appid": 1530070, + "normalized_name": "#snake2 dx reawakening" + }, + { + "appid": 1530120, + "normalized_name": "you must survive" + }, + { + "appid": 1530130, + "normalized_name": "billiards dungeon" + }, + { + "appid": 1530140, + "normalized_name": "aventura copilului albastru și urât" + }, + { + "appid": 1530150, + "normalized_name": "worn thin" + }, + { + "appid": 1530160, + "normalized_name": "digimon world next order" + }, + { + "appid": 1530190, + "normalized_name": "one rainy night" + }, + { + "appid": 1530230, + "normalized_name": "restless night" + }, + { + "appid": 1530240, + "normalized_name": "toodles & toddlers" + }, + { + "appid": 1530250, + "normalized_name": "operation desolate void" + }, + { + "appid": 1530260, + "normalized_name": "zahhak" + }, + { + "appid": 1530280, + "normalized_name": "pixel game maker series puzzle pedestrians" + }, + { + "appid": 1530290, + "normalized_name": "nonestory p1" + }, + { + "appid": 1530300, + "normalized_name": "auto chess" + }, + { + "appid": 1530340, + "normalized_name": "incremental epic hero" + }, + { + "appid": 1530360, + "normalized_name": "endlesscorona" + }, + { + "appid": 1530370, + "normalized_name": "speedy gun savage" + }, + { + "appid": 1530440, + "normalized_name": "balance ball" + }, + { + "appid": 1530450, + "normalized_name": "scramble battle of britain" + }, + { + "appid": 1530470, + "normalized_name": "daymare 1994 sandcastle" + }, + { + "appid": 1530530, + "normalized_name": "discovery" + }, + { + "appid": 1530540, + "normalized_name": "lake resort simulator" + }, + { + "appid": 1530580, + "normalized_name": "lame defenders" + }, + { + "appid": 1530630, + "normalized_name": "couch monsters" + }, + { + "appid": 1530650, + "normalized_name": "hentaicraft" + }, + { + "appid": 1530660, + "normalized_name": "painting thief" + }, + { + "appid": 1530670, + "normalized_name": "buyhads" + }, + { + "appid": 1530690, + "normalized_name": "dirty cop simulator" + }, + { + "appid": 1530710, + "normalized_name": "viking survival" + }, + { + "appid": 1530720, + "normalized_name": "sport mode" + }, + { + "appid": 1530750, + "normalized_name": "everslaught" + }, + { + "appid": 1530760, + "normalized_name": "kaigrad" + }, + { + "appid": 1530770, + "normalized_name": "star wars pinball vr" + }, + { + "appid": 1530790, + "normalized_name": "paper jam!" + }, + { + "appid": 1530800, + "normalized_name": "frank and drake" + }, + { + "appid": 1530860, + "normalized_name": "mental hospital vr" + }, + { + "appid": 1530890, + "normalized_name": "car constructor" + }, + { + "appid": 1530980, + "normalized_name": "beat quest" + }, + { + "appid": 1530990, + "normalized_name": "phoenix dust" + }, + { + "appid": 1531000, + "normalized_name": "crime stories 2 in the shadows" + }, + { + "appid": 1531010, + "normalized_name": "collisus" + }, + { + "appid": 1531020, + "normalized_name": "spectre" + }, + { + "appid": 1531030, + "normalized_name": "norsk epistle" + }, + { + "appid": 1531040, + "normalized_name": "pavlov's house" + }, + { + "appid": 1531070, + "normalized_name": "sixth extinction" + }, + { + "appid": 1531140, + "normalized_name": "victoria's body" + }, + { + "appid": 1531180, + "normalized_name": "lost isle" + }, + { + "appid": 1531190, + "normalized_name": "paper glider" + }, + { + "appid": 1531200, + "normalized_name": "pixelstar hero" + }, + { + "appid": 1531230, + "normalized_name": "match puzzle" + }, + { + "appid": 1531250, + "normalized_name": "defend the rook" + }, + { + "appid": 1531270, + "normalized_name": "少妇白洁 人妻の秘めごと" + }, + { + "appid": 1531290, + "normalized_name": "nebuli" + }, + { + "appid": 1531300, + "normalized_name": "galaxy x" + }, + { + "appid": 1531340, + "normalized_name": "seasonspree" + }, + { + "appid": 1531460, + "normalized_name": "distorted world" + }, + { + "appid": 1531490, + "normalized_name": "harmony's odyssey" + }, + { + "appid": 1531540, + "normalized_name": "distant worlds 2" + }, + { + "appid": 1531550, + "normalized_name": "megacraft hentai battlegrounds" + }, + { + "appid": 1531580, + "normalized_name": "dimensions puzzle" + }, + { + "appid": 1531590, + "normalized_name": "singles' generation" + }, + { + "appid": 1531610, + "normalized_name": "home designer home sweet home" + }, + { + "appid": 1531620, + "normalized_name": "reiterate()" + }, + { + "appid": 1531650, + "normalized_name": "senators praetorians and qualified gladiators" + }, + { + "appid": 1531680, + "normalized_name": "修真之路" + }, + { + "appid": 1531690, + "normalized_name": "gore tears" + }, + { + "appid": 1531780, + "normalized_name": "废土黄昏 dusk of the wasteland age" + }, + { + "appid": 1531790, + "normalized_name": "silent earth" + }, + { + "appid": 1531800, + "normalized_name": "retro racer" + }, + { + "appid": 1531930, + "normalized_name": "rubicon a conspiracy of silence" + }, + { + "appid": 1531940, + "normalized_name": "connect" + }, + { + "appid": 1532060, + "normalized_name": "gone upstate 2 big sky country" + }, + { + "appid": 1532080, + "normalized_name": "headcount" + }, + { + "appid": 1532110, + "normalized_name": "curatours" + }, + { + "appid": 1532120, + "normalized_name": "spaceteam the second dimension" + }, + { + "appid": 1532150, + "normalized_name": "lineart jigsaw puzzle erotica 3" + }, + { + "appid": 1532170, + "normalized_name": "veneficium" + }, + { + "appid": 1532180, + "normalized_name": "evo\\wave" + }, + { + "appid": 1532190, + "normalized_name": "halo ce mod tools mcc" + }, + { + "appid": 1532200, + "normalized_name": "mars first logistics" + }, + { + "appid": 1532240, + "normalized_name": "pocketciv" + }, + { + "appid": 1532250, + "normalized_name": "the catacombs of solaris revisited" + }, + { + "appid": 1532260, + "normalized_name": "sliko" + }, + { + "appid": 1532270, + "normalized_name": "the maker way" + }, + { + "appid": 1532300, + "normalized_name": "sugar story" + }, + { + "appid": 1532350, + "normalized_name": "rogue explorer" + }, + { + "appid": 1532360, + "normalized_name": "joyspring" + }, + { + "appid": 1532380, + "normalized_name": "大头侏罗纪" + }, + { + "appid": 1532400, + "normalized_name": "4 witch seasons & convenant" + }, + { + "appid": 1532410, + "normalized_name": "vanillabeast ace in the hole" + }, + { + "appid": 1532440, + "normalized_name": "tournament of armistice preliminaries" + }, + { + "appid": 1532460, + "normalized_name": "the fridge is red" + }, + { + "appid": 1532510, + "normalized_name": "purrfect apawcalypse love at furst bite" + }, + { + "appid": 1532520, + "normalized_name": "day repeat day" + }, + { + "appid": 1532640, + "normalized_name": "el mucho" + }, + { + "appid": 1532650, + "normalized_name": "fishy" + }, + { + "appid": 1532680, + "normalized_name": "the damathos clan" + }, + { + "appid": 1532690, + "normalized_name": "blacktail" + }, + { + "appid": 1532710, + "normalized_name": "lucy dreaming" + }, + { + "appid": 1532750, + "normalized_name": "jigsaw pieces 2 shades of mood" + }, + { + "appid": 1532760, + "normalized_name": "jigsaw pieces 3 fantasy" + }, + { + "appid": 1532770, + "normalized_name": "sex and the furry titty" + }, + { + "appid": 1532780, + "normalized_name": "the magnets" + }, + { + "appid": 1532790, + "normalized_name": "pizza empire" + }, + { + "appid": 1532830, + "normalized_name": "red laser z" + }, + { + "appid": 1532870, + "normalized_name": "your city in 3d" + }, + { + "appid": 1532910, + "normalized_name": "supermarket simulator" + }, + { + "appid": 1532920, + "normalized_name": "clutter ix clutter ixtreme" + }, + { + "appid": 1533050, + "normalized_name": "press ctrl" + }, + { + "appid": 1533060, + "normalized_name": "winery simulator" + }, + { + "appid": 1533070, + "normalized_name": "oracle trials" + }, + { + "appid": 1533080, + "normalized_name": "lumexa" + }, + { + "appid": 1533090, + "normalized_name": "pleasure climb" + }, + { + "appid": 1533120, + "normalized_name": "shonen adventure the dual blades hero" + }, + { + "appid": 1533160, + "normalized_name": "glitcheon" + }, + { + "appid": 1533280, + "normalized_name": "eternal cave escape" + }, + { + "appid": 1533300, + "normalized_name": "t. b. p." + }, + { + "appid": 1533370, + "normalized_name": "undiscovered house" + }, + { + "appid": 1533380, + "normalized_name": "keridwen" + }, + { + "appid": 1533390, + "normalized_name": "gorilla tag" + }, + { + "appid": 1533410, + "normalized_name": "mollycoddle mayhem" + }, + { + "appid": 1533420, + "normalized_name": "neon white" + }, + { + "appid": 1533470, + "normalized_name": "timeshifters" + }, + { + "appid": 1533500, + "normalized_name": "orkana conflict vr" + }, + { + "appid": 1533520, + "normalized_name": "vr black hole travel hypothesis" + }, + { + "appid": 1533530, + "normalized_name": "pixel heroes" + }, + { + "appid": 1533550, + "normalized_name": "equan the watchful guardian" + }, + { + "appid": 1533560, + "normalized_name": "守卫魔兽 guardian of warcraft" + }, + { + "appid": 1533570, + "normalized_name": "word wise" + }, + { + "appid": 1533580, + "normalized_name": "dots n lines" + }, + { + "appid": 1533590, + "normalized_name": "三妖精のぴょこぴょこ討伐大作戦!" + }, + { + "appid": 1533600, + "normalized_name": "the 2020 trail" + }, + { + "appid": 1533610, + "normalized_name": "across killzone" + }, + { + "appid": 1533650, + "normalized_name": "knight throde" + }, + { + "appid": 1533680, + "normalized_name": "dead grid" + }, + { + "appid": 1533720, + "normalized_name": "over the phone" + }, + { + "appid": 1533750, + "normalized_name": "小小精灵塔防(little elf tower defense)" + }, + { + "appid": 1533770, + "normalized_name": "the thief girl ~ 盗賊少女 ~" + }, + { + "appid": 1533780, + "normalized_name": "a walk through echoes" + }, + { + "appid": 1533860, + "normalized_name": "ecoplanet" + }, + { + "appid": 1533870, + "normalized_name": "atrius star" + }, + { + "appid": 1533880, + "normalized_name": "hunter girl" + }, + { + "appid": 1533910, + "normalized_name": "il" + }, + { + "appid": 1533940, + "normalized_name": "轮回修真ol" + }, + { + "appid": 1533960, + "normalized_name": "liars village" + }, + { + "appid": 1533970, + "normalized_name": "break it down" + }, + { + "appid": 1533980, + "normalized_name": "swiss alps jigsaw puzzles" + }, + { + "appid": 1533990, + "normalized_name": "startelf der fußballmanager" + }, + { + "appid": 1534000, + "normalized_name": "asteroid arena" + }, + { + "appid": 1534040, + "normalized_name": "baby racer" + }, + { + "appid": 1534050, + "normalized_name": "scp breakout" + }, + { + "appid": 1534180, + "normalized_name": "super woden gp" + }, + { + "appid": 1534200, + "normalized_name": "nothing" + }, + { + "appid": 1534240, + "normalized_name": "drop blox" + }, + { + "appid": 1534250, + "normalized_name": "appease the spider" + }, + { + "appid": 1534260, + "normalized_name": "tittok" + }, + { + "appid": 1534270, + "normalized_name": "bard harder!" + }, + { + "appid": 1534290, + "normalized_name": "space mages dimension 33" + }, + { + "appid": 1534300, + "normalized_name": "heart of siam" + }, + { + "appid": 1534340, + "normalized_name": "fida puti samurai" + }, + { + "appid": 1534350, + "normalized_name": "vampire's slave" + }, + { + "appid": 1534420, + "normalized_name": "kicking the ball over mountains of stuff" + }, + { + "appid": 1534430, + "normalized_name": "play the fox" + }, + { + "appid": 1534450, + "normalized_name": "last judgment vr" + }, + { + "appid": 1534460, + "normalized_name": "forest hunt vr" + }, + { + "appid": 1534480, + "normalized_name": "cellar" + }, + { + "appid": 1534510, + "normalized_name": "thalassophobia" + }, + { + "appid": 1534520, + "normalized_name": "stray kitten" + }, + { + "appid": 1534550, + "normalized_name": "sovietpunk chapter one" + }, + { + "appid": 1534590, + "normalized_name": "農場ダンジョンrpg ファームダンジョンズ" + }, + { + "appid": 1534610, + "normalized_name": "zombieswaves" + }, + { + "appid": 1534620, + "normalized_name": "heart seals" + }, + { + "appid": 1534630, + "normalized_name": "the sound of fireworks the haiku" + }, + { + "appid": 1534640, + "normalized_name": "demonblood" + }, + { + "appid": 1534660, + "normalized_name": "burn" + }, + { + "appid": 1534690, + "normalized_name": "burger night" + }, + { + "appid": 1534700, + "normalized_name": "swords & bones" + }, + { + "appid": 1534720, + "normalized_name": "space boat" + }, + { + "appid": 1534840, + "normalized_name": "hyper light breaker" + }, + { + "appid": 1534850, + "normalized_name": "floor plan 2" + }, + { + "appid": 1534860, + "normalized_name": "behold the dark" + }, + { + "appid": 1534870, + "normalized_name": "风之界限 the border of wind" + }, + { + "appid": 1534900, + "normalized_name": "vr guardians" + }, + { + "appid": 1534930, + "normalized_name": "ascii the brave cat" + }, + { + "appid": 1534950, + "normalized_name": "rushmore" + }, + { + "appid": 1534980, + "normalized_name": "terminus zombie survivors" + }, + { + "appid": 1535000, + "normalized_name": "bird by example" + }, + { + "appid": 1535030, + "normalized_name": "go home" + }, + { + "appid": 1535040, + "normalized_name": "the great unborn" + }, + { + "appid": 1535060, + "normalized_name": "incremental epic breakers" + }, + { + "appid": 1535090, + "normalized_name": "vr kyoto beauty of japan" + }, + { + "appid": 1535100, + "normalized_name": "nadir a grimdark deckbuilder" + }, + { + "appid": 1535110, + "normalized_name": "lust for speed" + }, + { + "appid": 1535170, + "normalized_name": "mobile mechanic road service" + }, + { + "appid": 1535190, + "normalized_name": "middle age conquest" + }, + { + "appid": 1535200, + "normalized_name": "rocket skates vr" + }, + { + "appid": 1535210, + "normalized_name": "nadir a grimdark deck builder prologue" + }, + { + "appid": 1535240, + "normalized_name": "sonucido the mage a dungeon crawler by daniel da silva" + }, + { + "appid": 1535270, + "normalized_name": "vacation adventures park ranger 4" + }, + { + "appid": 1535290, + "normalized_name": "venus improbable dream" + }, + { + "appid": 1535320, + "normalized_name": "virtuxy" + }, + { + "appid": 1535360, + "normalized_name": "ein abend im großen schauspielhaus berlin 1927" + }, + { + "appid": 1535420, + "normalized_name": "stream toys by zokya" + }, + { + "appid": 1535460, + "normalized_name": "divided dungeon" + }, + { + "appid": 1535490, + "normalized_name": "eggcelerate!" + }, + { + "appid": 1535500, + "normalized_name": "mini car racing tiny split screen tournament" + }, + { + "appid": 1535520, + "normalized_name": "cybertown" + }, + { + "appid": 1535550, + "normalized_name": "the bits that saved the galaxy" + }, + { + "appid": 1535560, + "normalized_name": "farmer against potatoes idle" + }, + { + "appid": 1535590, + "normalized_name": "flchess 2" + }, + { + "appid": 1535610, + "normalized_name": "soul nomad & the world eaters" + }, + { + "appid": 1535630, + "normalized_name": "under the counter" + }, + { + "appid": 1535660, + "normalized_name": "the alchemist alekki" + }, + { + "appid": 1535780, + "normalized_name": "imp of the sun" + }, + { + "appid": 1535790, + "normalized_name": "sword of hypotenuse" + }, + { + "appid": 1535810, + "normalized_name": "scrap seas" + }, + { + "appid": 1535880, + "normalized_name": "the curse of illmoore bay" + }, + { + "appid": 1535900, + "normalized_name": "hunt n cloak" + }, + { + "appid": 1535910, + "normalized_name": "kakuro blend" + }, + { + "appid": 1535960, + "normalized_name": "pixel game maker series osyaberi! horijyo! holin slash" + }, + { + "appid": 1536000, + "normalized_name": "breath of spirits" + }, + { + "appid": 1536070, + "normalized_name": "sword and fairy 3" + }, + { + "appid": 1536080, + "normalized_name": "sword and fairy 3 ex" + }, + { + "appid": 1536090, + "normalized_name": "echoes of the plum grove" + }, + { + "appid": 1536110, + "normalized_name": "pixel combat" + }, + { + "appid": 1536120, + "normalized_name": "blueberry" + }, + { + "appid": 1536180, + "normalized_name": "vanilla click" + }, + { + "appid": 1536190, + "normalized_name": "firefighter" + }, + { + "appid": 1536210, + "normalized_name": "ira" + }, + { + "appid": 1536260, + "normalized_name": "odenavirus zombie invasion" + }, + { + "appid": 1536420, + "normalized_name": "clip maker" + }, + { + "appid": 1536440, + "normalized_name": "platoon commander" + }, + { + "appid": 1536470, + "normalized_name": "a guard walks into a tavern" + }, + { + "appid": 1536520, + "normalized_name": "equinoxe" + }, + { + "appid": 1536570, + "normalized_name": "the last alchemist" + }, + { + "appid": 1536590, + "normalized_name": "cyclotronica" + }, + { + "appid": 1536600, + "normalized_name": "digital diamond baseball v9" + }, + { + "appid": 1536610, + "normalized_name": "openttd" + }, + { + "appid": 1536620, + "normalized_name": "galactic glitch" + }, + { + "appid": 1536660, + "normalized_name": "ancient arenas chariots" + }, + { + "appid": 1536690, + "normalized_name": "foxpaww a furry breakout lite adventure" + }, + { + "appid": 1536720, + "normalized_name": "deep sea valentine" + }, + { + "appid": 1536730, + "normalized_name": "chaos chain" + }, + { + "appid": 1536740, + "normalized_name": "trackmaster free for all motorsport" + }, + { + "appid": 1536750, + "normalized_name": "holy chick!" + }, + { + "appid": 1536770, + "normalized_name": "learn programming python retro" + }, + { + "appid": 1536830, + "normalized_name": "41 hours prologue" + }, + { + "appid": 1536870, + "normalized_name": "high smileson" + }, + { + "appid": 1536890, + "normalized_name": "godbeast mk.ii" + }, + { + "appid": 1536910, + "normalized_name": "snow plow" + }, + { + "appid": 1536980, + "normalized_name": "glass masquerade 3 honeylines" + }, + { + "appid": 1537010, + "normalized_name": "player city" + }, + { + "appid": 1537030, + "normalized_name": "conquer the universe" + }, + { + "appid": 1537080, + "normalized_name": "return" + }, + { + "appid": 1537090, + "normalized_name": "flying flogger" + }, + { + "appid": 1537160, + "normalized_name": "icarus" + }, + { + "appid": 1537320, + "normalized_name": "black cat" + }, + { + "appid": 1537330, + "normalized_name": "endothermic" + }, + { + "appid": 1537340, + "normalized_name": "nano fighter anti disease" + }, + { + "appid": 1537410, + "normalized_name": "twilight drive" + }, + { + "appid": 1537430, + "normalized_name": "mask up" + }, + { + "appid": 1537440, + "normalized_name": "bosslords" + }, + { + "appid": 1537470, + "normalized_name": "velocity vector" + }, + { + "appid": 1537480, + "normalized_name": "玉言·离光" + }, + { + "appid": 1537490, + "normalized_name": "tentacle typer" + }, + { + "appid": 1537530, + "normalized_name": "koh lanta les aventuriers" + }, + { + "appid": 1537540, + "normalized_name": "dichotomy" + }, + { + "appid": 1537570, + "normalized_name": "my first convention is a trap" + }, + { + "appid": 1537590, + "normalized_name": "line hold" + }, + { + "appid": 1537600, + "normalized_name": "spring flower" + }, + { + "appid": 1537630, + "normalized_name": "icorp" + }, + { + "appid": 1537700, + "normalized_name": "plasma spheres" + }, + { + "appid": 1537740, + "normalized_name": "hentai day ringsel in trouble" + }, + { + "appid": 1537800, + "normalized_name": "at your feet" + }, + { + "appid": 1537810, + "normalized_name": "warpedspace" + }, + { + "appid": 1537820, + "normalized_name": "super clown adventures" + }, + { + "appid": 1537830, + "normalized_name": "disney speedstorm" + }, + { + "appid": 1537850, + "normalized_name": "smart moves 2" + }, + { + "appid": 1537910, + "normalized_name": "chaos galaxy 2" + }, + { + "appid": 1537920, + "normalized_name": "solys" + }, + { + "appid": 1537930, + "normalized_name": "dacapo delivers" + }, + { + "appid": 1537940, + "normalized_name": "bow & crystal tower defense" + }, + { + "appid": 1537950, + "normalized_name": "chaos battle universe" + }, + { + "appid": 1537960, + "normalized_name": "click and relax" + }, + { + "appid": 1537970, + "normalized_name": "death box" + }, + { + "appid": 1537980, + "normalized_name": "myriavora" + }, + { + "appid": 1538010, + "normalized_name": "shoresy legends of the north" + }, + { + "appid": 1538030, + "normalized_name": "steinstern" + }, + { + "appid": 1538040, + "normalized_name": "horde slayer" + }, + { + "appid": 1538170, + "normalized_name": "a sleeper's quest a labyrinth to thee" + }, + { + "appid": 1538240, + "normalized_name": "youmu konpaku & dungeon of lewd creatures" + }, + { + "appid": 1538260, + "normalized_name": "covid chaos" + }, + { + "appid": 1538270, + "normalized_name": "kuro tactics" + }, + { + "appid": 1538300, + "normalized_name": "haste real time card combat" + }, + { + "appid": 1538340, + "normalized_name": "field survivor" + }, + { + "appid": 1538350, + "normalized_name": "unit down" + }, + { + "appid": 1538370, + "normalized_name": "奇迹之旅" + }, + { + "appid": 1538380, + "normalized_name": "animal babysister fighter zombie coming!" + }, + { + "appid": 1538400, + "normalized_name": "orbatron" + }, + { + "appid": 1538420, + "normalized_name": "missing" + }, + { + "appid": 1538460, + "normalized_name": "仙劍奇俠傳二" + }, + { + "appid": 1538470, + "normalized_name": "isdds drone vr simulator" + }, + { + "appid": 1538480, + "normalized_name": "redeliver" + }, + { + "appid": 1538490, + "normalized_name": "carved out" + }, + { + "appid": 1538570, + "normalized_name": "patron" + }, + { + "appid": 1538580, + "normalized_name": "astro to the rescue" + }, + { + "appid": 1538600, + "normalized_name": "incarna r•ai•d" + }, + { + "appid": 1538610, + "normalized_name": "legacy witch island 3" + }, + { + "appid": 1538620, + "normalized_name": "zoo cleaner" + }, + { + "appid": 1538640, + "normalized_name": "void dementia" + }, + { + "appid": 1538650, + "normalized_name": "the chronicles of hercules the 12 labours" + }, + { + "appid": 1538670, + "normalized_name": "ual universal aim league" + }, + { + "appid": 1538680, + "normalized_name": "blake the visual novel" + }, + { + "appid": 1538710, + "normalized_name": "stellagale the trials of faith" + }, + { + "appid": 1538730, + "normalized_name": "pirates golden tits chapter 1" + }, + { + "appid": 1538750, + "normalized_name": "master of pieces © jigsaw puzzle" + }, + { + "appid": 1538770, + "normalized_name": "food comes from above" + }, + { + "appid": 1538840, + "normalized_name": "dissension" + }, + { + "appid": 1538850, + "normalized_name": "grotto" + }, + { + "appid": 1538890, + "normalized_name": "rusa odyssey" + }, + { + "appid": 1538900, + "normalized_name": "untamed tactics" + }, + { + "appid": 1538910, + "normalized_name": "old evil" + }, + { + "appid": 1538920, + "normalized_name": "starcaller" + }, + { + "appid": 1538970, + "normalized_name": "hammerwatch ii" + }, + { + "appid": 1538990, + "normalized_name": "tuned turtle" + }, + { + "appid": 1539040, + "normalized_name": "multidimensional 4 in a row" + }, + { + "appid": 1539050, + "normalized_name": "fire boy" + }, + { + "appid": 1539060, + "normalized_name": "architects of shangri la" + }, + { + "appid": 1539070, + "normalized_name": "super hunchback" + }, + { + "appid": 1539080, + "normalized_name": "the immortal" + }, + { + "appid": 1539090, + "normalized_name": "attack of the mutant penguins" + }, + { + "appid": 1539100, + "normalized_name": "noah's ark" + }, + { + "appid": 1539140, + "normalized_name": "stonks 9800 stock market simulator" + }, + { + "appid": 1539160, + "normalized_name": "horny warp hentai fantasy" + }, + { + "appid": 1539180, + "normalized_name": "dojo" + }, + { + "appid": 1539240, + "normalized_name": "volot red odyssey" + }, + { + "appid": 1539250, + "normalized_name": "karakuri kun a japanese tale" + }, + { + "appid": 1539270, + "normalized_name": "yōso warriors" + }, + { + "appid": 1539360, + "normalized_name": "charlie the roach" + }, + { + "appid": 1539510, + "normalized_name": "temptations x darkest fantasy" + }, + { + "appid": 1539540, + "normalized_name": "death wish" + }, + { + "appid": 1539580, + "normalized_name": "bird" + }, + { + "appid": 1539590, + "normalized_name": "omniblast" + }, + { + "appid": 1539600, + "normalized_name": "astrobike" + }, + { + "appid": 1539620, + "normalized_name": "monark" + }, + { + "appid": 1539640, + "normalized_name": "vr walking simulator" + }, + { + "appid": 1539650, + "normalized_name": "weird simulator" + }, + { + "appid": 1539680, + "normalized_name": "project kuragava" + }, + { + "appid": 1539710, + "normalized_name": "deadblitz" + }, + { + "appid": 1539720, + "normalized_name": "navin in search of the light" + }, + { + "appid": 1539740, + "normalized_name": "the faded" + }, + { + "appid": 1539750, + "normalized_name": "realms of antiquity the shattered crown" + }, + { + "appid": 1539760, + "normalized_name": "cartels" + }, + { + "appid": 1539770, + "normalized_name": "six f and six 0" + }, + { + "appid": 1539780, + "normalized_name": "winning love by daylight [ep 1 demo]" + }, + { + "appid": 1539800, + "normalized_name": "baldy bounce" + }, + { + "appid": 1539810, + "normalized_name": "freedraw" + }, + { + "appid": 1539860, + "normalized_name": "the machines arena" + }, + { + "appid": 1539870, + "normalized_name": "cats in space" + }, + { + "appid": 1539890, + "normalized_name": "avoid!" + }, + { + "appid": 1539950, + "normalized_name": "slav dangerous" + }, + { + "appid": 1539970, + "normalized_name": "the haunted tunnel" + }, + { + "appid": 1540000, + "normalized_name": "mocap fusion [ vr ]" + }, + { + "appid": 1540010, + "normalized_name": "cumbersome" + }, + { + "appid": 1540060, + "normalized_name": "angry putin" + }, + { + "appid": 1540100, + "normalized_name": "shy eye labyrinth the incredible mystery" + }, + { + "appid": 1540130, + "normalized_name": "vaccine delivery simulator" + }, + { + "appid": 1540140, + "normalized_name": "tower of portal" + }, + { + "appid": 1540150, + "normalized_name": "crazy flasher series 2021" + }, + { + "appid": 1540190, + "normalized_name": "rush!!!" + }, + { + "appid": 1540200, + "normalized_name": "fell" + }, + { + "appid": 1540210, + "normalized_name": "arizona sunshine 2" + }, + { + "appid": 1540220, + "normalized_name": "sugar * style" + }, + { + "appid": 1540250, + "normalized_name": "red trains" + }, + { + "appid": 1540330, + "normalized_name": "mumba iv egypt jewels" + }, + { + "appid": 1540340, + "normalized_name": "sand castles" + }, + { + "appid": 1540350, + "normalized_name": "the fabulous fear machine" + }, + { + "appid": 1540360, + "normalized_name": "carrier battles ww2 admiral of the fleet" + }, + { + "appid": 1540370, + "normalized_name": "hans in the internetz" + }, + { + "appid": 1540480, + "normalized_name": "the bar fight vr" + }, + { + "appid": 1540490, + "normalized_name": "lost harem" + }, + { + "appid": 1540570, + "normalized_name": "fractal block world" + }, + { + "appid": 1540600, + "normalized_name": "ballistic m.a.d.ness" + }, + { + "appid": 1540650, + "normalized_name": "evasive maneuvers" + }, + { + "appid": 1540670, + "normalized_name": "n31" + }, + { + "appid": 1540680, + "normalized_name": "talking kiteboards by flexifoil" + }, + { + "appid": 1540690, + "normalized_name": "fate of persephone" + }, + { + "appid": 1540700, + "normalized_name": "ortheo" + }, + { + "appid": 1540720, + "normalized_name": "forgery craft" + }, + { + "appid": 1540730, + "normalized_name": "tales of skiora" + }, + { + "appid": 1540740, + "normalized_name": "dungen" + }, + { + "appid": 1540760, + "normalized_name": "the death wizard's tower" + }, + { + "appid": 1540780, + "normalized_name": "灭顶之灾—救赎" + }, + { + "appid": 1540790, + "normalized_name": "voidout parkour" + }, + { + "appid": 1540830, + "normalized_name": "conspiracy girls" + }, + { + "appid": 1540840, + "normalized_name": "sausage fiesta" + }, + { + "appid": 1540890, + "normalized_name": "stock car usa" + }, + { + "appid": 1540900, + "normalized_name": "东方信仰战 ~ gensokyo duel" + }, + { + "appid": 1540910, + "normalized_name": "city maker" + }, + { + "appid": 1540920, + "normalized_name": "neonverse defenders" + }, + { + "appid": 1540960, + "normalized_name": "underworld idle" + }, + { + "appid": 1540990, + "normalized_name": "just a memory!" + }, + { + "appid": 1541020, + "normalized_name": "kakele online mmorpg" + }, + { + "appid": 1541030, + "normalized_name": "ocak" + }, + { + "appid": 1541040, + "normalized_name": "formula bit racing" + }, + { + "appid": 1541050, + "normalized_name": "black somnia" + }, + { + "appid": 1541100, + "normalized_name": "蕾米的挑战 remilia's challenge" + }, + { + "appid": 1541110, + "normalized_name": "demon zombie outpost" + }, + { + "appid": 1541150, + "normalized_name": "rocha´s golem" + }, + { + "appid": 1541160, + "normalized_name": "animal game" + }, + { + "appid": 1541200, + "normalized_name": "panels" + }, + { + "appid": 1541210, + "normalized_name": "the flawless cup" + }, + { + "appid": 1541220, + "normalized_name": "bouncy goat climb" + }, + { + "appid": 1541250, + "normalized_name": "super raft boat classic" + }, + { + "appid": 1541280, + "normalized_name": "the lost dog" + }, + { + "appid": 1541340, + "normalized_name": "chronicles of cascadia" + }, + { + "appid": 1541370, + "normalized_name": "theater simulator" + }, + { + "appid": 1541400, + "normalized_name": "cutthroat cove" + }, + { + "appid": 1541410, + "normalized_name": "one pixel" + }, + { + "appid": 1541420, + "normalized_name": "the farmthis gallery" + }, + { + "appid": 1541520, + "normalized_name": "bad guy adventure" + }, + { + "appid": 1541530, + "normalized_name": "animal drop safari" + }, + { + "appid": 1541590, + "normalized_name": "intergalactic rescue" + }, + { + "appid": 1541650, + "normalized_name": "unwanted visitors" + }, + { + "appid": 1541670, + "normalized_name": "giant blobs from mars" + }, + { + "appid": 1541690, + "normalized_name": "concealment" + }, + { + "appid": 1541710, + "normalized_name": "wyvern" + }, + { + "appid": 1541720, + "normalized_name": "where's my phone?!" + }, + { + "appid": 1541730, + "normalized_name": "candy fall" + }, + { + "appid": 1541750, + "normalized_name": "toggle" + }, + { + "appid": 1541790, + "normalized_name": "punk wars" + }, + { + "appid": 1541830, + "normalized_name": "biphase" + }, + { + "appid": 1541840, + "normalized_name": "古剑奇谭网络版 海外版" + }, + { + "appid": 1541850, + "normalized_name": "endless furry clicker" + }, + { + "appid": 1541860, + "normalized_name": "nullore beginning" + }, + { + "appid": 1541890, + "normalized_name": "private agent" + }, + { + "appid": 1542000, + "normalized_name": "thearchy" + }, + { + "appid": 1542010, + "normalized_name": "mariuccha alchemy queen" + }, + { + "appid": 1542060, + "normalized_name": "forgotten spirits" + }, + { + "appid": 1542080, + "normalized_name": "super crazy nynja" + }, + { + "appid": 1542110, + "normalized_name": "daydream forgotten sorrow" + }, + { + "appid": 1542120, + "normalized_name": "tanky tanks" + }, + { + "appid": 1542140, + "normalized_name": "mage noir infinity" + }, + { + "appid": 1542160, + "normalized_name": "vacation adventures park ranger 5" + }, + { + "appid": 1542170, + "normalized_name": "vissekom" + }, + { + "appid": 1542280, + "normalized_name": "明星志願2" + }, + { + "appid": 1542290, + "normalized_name": "girls and dragons" + }, + { + "appid": 1542330, + "normalized_name": "assimilation x" + }, + { + "appid": 1542350, + "normalized_name": "betaverse" + }, + { + "appid": 1542370, + "normalized_name": "football academy clicker" + }, + { + "appid": 1542390, + "normalized_name": "monolith" + }, + { + "appid": 1542430, + "normalized_name": "netorare sankaku kankei" + }, + { + "appid": 1542440, + "normalized_name": "kosmonavtes escape reality" + }, + { + "appid": 1542450, + "normalized_name": "kosmonavtes academy escape" + }, + { + "appid": 1542460, + "normalized_name": "zenfarm" + }, + { + "appid": 1542490, + "normalized_name": "laser chess (prologue)" + }, + { + "appid": 1542510, + "normalized_name": "the midnight eater" + }, + { + "appid": 1542530, + "normalized_name": "shootin' gallery vr" + }, + { + "appid": 1542550, + "normalized_name": "scrap riders" + }, + { + "appid": 1542580, + "normalized_name": "the hustle" + }, + { + "appid": 1542610, + "normalized_name": "mof" + }, + { + "appid": 1542630, + "normalized_name": "locomotorica staggering ragdoll" + }, + { + "appid": 1542640, + "normalized_name": "xenoscape online" + }, + { + "appid": 1542670, + "normalized_name": "gachi dungeon master" + }, + { + "appid": 1542710, + "normalized_name": "dreams of an exile" + }, + { + "appid": 1542760, + "normalized_name": "cyber cult city" + }, + { + "appid": 1542770, + "normalized_name": "pandemic by prisms" + }, + { + "appid": 1542790, + "normalized_name": "srx the game" + }, + { + "appid": 1542810, + "normalized_name": "sunshine heavy industries" + }, + { + "appid": 1542820, + "normalized_name": "roguely" + }, + { + "appid": 1542840, + "normalized_name": "puzzlepet feed your cat" + }, + { + "appid": 1542850, + "normalized_name": "destroy the cubes" + }, + { + "appid": 1542860, + "normalized_name": "dungeon slime 2 puzzle in the dark forest" + }, + { + "appid": 1542870, + "normalized_name": "gaggle brains!" + }, + { + "appid": 1542910, + "normalized_name": "zombie in town" + }, + { + "appid": 1542930, + "normalized_name": "red man" + }, + { + "appid": 1542970, + "normalized_name": "vr spaceship battle" + }, + { + "appid": 1542980, + "normalized_name": "siege of the swine" + }, + { + "appid": 1542990, + "normalized_name": "airplane shooting spree" + }, + { + "appid": 1543000, + "normalized_name": "心魔" + }, + { + "appid": 1543020, + "normalized_name": "rise 2.0" + }, + { + "appid": 1543030, + "normalized_name": "sword and fairy 7" + }, + { + "appid": 1543040, + "normalized_name": "轮回修仙决" + }, + { + "appid": 1543080, + "normalized_name": "cute honey 3" + }, + { + "appid": 1543090, + "normalized_name": "liber" + }, + { + "appid": 1543100, + "normalized_name": "farmers co op out of this world" + }, + { + "appid": 1543150, + "normalized_name": "the fermi paradox" + }, + { + "appid": 1543210, + "normalized_name": "quest escape room 3" + }, + { + "appid": 1543240, + "normalized_name": "gigapocalypse" + }, + { + "appid": 1543270, + "normalized_name": "clash of irons" + }, + { + "appid": 1543280, + "normalized_name": "espresso tycoon" + }, + { + "appid": 1543290, + "normalized_name": "hack grid" + }, + { + "appid": 1543320, + "normalized_name": "the road to gelendzhik palace" + }, + { + "appid": 1543330, + "normalized_name": "揭谛/gate" + }, + { + "appid": 1543340, + "normalized_name": "sheriff exam" + }, + { + "appid": 1543380, + "normalized_name": "i fetch rocks" + }, + { + "appid": 1543430, + "normalized_name": "terrain of magical expertise" + }, + { + "appid": 1543460, + "normalized_name": "the sin" + }, + { + "appid": 1543470, + "normalized_name": "amaze gears 3" + }, + { + "appid": 1543520, + "normalized_name": "devil inside us roots of evil" + }, + { + "appid": 1543530, + "normalized_name": "path of insanity" + }, + { + "appid": 1543550, + "normalized_name": "eviron's chronicles" + }, + { + "appid": 1543590, + "normalized_name": "wildshape map editor (free demo)" + }, + { + "appid": 1543610, + "normalized_name": "see you a brief exile" + }, + { + "appid": 1543620, + "normalized_name": "paintings jigsaw puzzles" + }, + { + "appid": 1543630, + "normalized_name": "mind lock" + }, + { + "appid": 1543650, + "normalized_name": "car looper" + }, + { + "appid": 1543690, + "normalized_name": "bara giants" + }, + { + "appid": 1543710, + "normalized_name": "beyond galaxyland" + }, + { + "appid": 1543720, + "normalized_name": "sunrise tragedy" + }, + { + "appid": 1543730, + "normalized_name": "pets and girls" + }, + { + "appid": 1543750, + "normalized_name": "jewel match atlantis solitaire 2 collector's" + }, + { + "appid": 1543760, + "normalized_name": "steep slopes" + }, + { + "appid": 1543790, + "normalized_name": "the last friend first bite" + }, + { + "appid": 1543800, + "normalized_name": "eminus" + }, + { + "appid": 1543810, + "normalized_name": "darker episode i" + }, + { + "appid": 1543830, + "normalized_name": "the addams family mansion mayhem" + }, + { + "appid": 1543890, + "normalized_name": "everpixel valley" + }, + { + "appid": 1543930, + "normalized_name": "retro wars" + }, + { + "appid": 1543940, + "normalized_name": "tapeworm disco puzzle" + }, + { + "appid": 1543960, + "normalized_name": "squiggle football" + }, + { + "appid": 1543970, + "normalized_name": "heart of enya" + }, + { + "appid": 1543980, + "normalized_name": "adorable girls" + }, + { + "appid": 1543990, + "normalized_name": "project blue book hidden mysteries" + }, + { + "appid": 1544000, + "normalized_name": "for a vast future" + }, + { + "appid": 1544020, + "normalized_name": "the callisto protocol" + }, + { + "appid": 1544040, + "normalized_name": "medieval shop simulator" + }, + { + "appid": 1544090, + "normalized_name": "冒险的路上总在为爱鼓掌 adventure road" + }, + { + "appid": 1544110, + "normalized_name": "darkened glory" + }, + { + "appid": 1544120, + "normalized_name": "beat survival" + }, + { + "appid": 1544140, + "normalized_name": "the great empire relic of egypt" + }, + { + "appid": 1544150, + "normalized_name": "harmoney" + }, + { + "appid": 1544220, + "normalized_name": "project death wish" + }, + { + "appid": 1544240, + "normalized_name": "vr pianist" + }, + { + "appid": 1544250, + "normalized_name": "权谋韬略 trickery&strategy" + }, + { + "appid": 1544300, + "normalized_name": "super can cannon" + }, + { + "appid": 1544360, + "normalized_name": "lego builder's journey" + }, + { + "appid": 1544370, + "normalized_name": "treasure tile" + }, + { + "appid": 1544380, + "normalized_name": "vr galactic roller coaster" + }, + { + "appid": 1544390, + "normalized_name": "untitled rhythm puzzle game" + }, + { + "appid": 1544420, + "normalized_name": "the death of zoe" + }, + { + "appid": 1544430, + "normalized_name": "golf with your grandmother" + }, + { + "appid": 1544450, + "normalized_name": "pixel game maker series dragon peak" + }, + { + "appid": 1544460, + "normalized_name": "the third day" + }, + { + "appid": 1544470, + "normalized_name": "princess tier part 1" + }, + { + "appid": 1544480, + "normalized_name": "book of the old" + }, + { + "appid": 1544500, + "normalized_name": "sensual adventures episode 5" + }, + { + "appid": 1544510, + "normalized_name": "симулятор сидения на крыше" + }, + { + "appid": 1544530, + "normalized_name": "starlight alliance" + }, + { + "appid": 1544540, + "normalized_name": "alone" + }, + { + "appid": 1544560, + "normalized_name": "death in sands" + }, + { + "appid": 1544570, + "normalized_name": "plot of the druid nightwatch" + }, + { + "appid": 1544580, + "normalized_name": "would you like to run an idol café?" + }, + { + "appid": 1544630, + "normalized_name": "bow & quiver" + }, + { + "appid": 1544640, + "normalized_name": "king of sweets" + }, + { + "appid": 1544700, + "normalized_name": "evolver" + }, + { + "appid": 1544720, + "normalized_name": "4th & inches" + }, + { + "appid": 1544730, + "normalized_name": "fast break" + }, + { + "appid": 1544740, + "normalized_name": "microprose soccer" + }, + { + "appid": 1544810, + "normalized_name": "handmade carprogram" + }, + { + "appid": 1544820, + "normalized_name": "a nasty farm" + }, + { + "appid": 1544850, + "normalized_name": "the holy orange" + }, + { + "appid": 1544860, + "normalized_name": "8874" + }, + { + "appid": 1544890, + "normalized_name": "ship simulator realistic" + }, + { + "appid": 1545000, + "normalized_name": "island herders" + }, + { + "appid": 1545010, + "normalized_name": "exzeus the collection" + }, + { + "appid": 1545020, + "normalized_name": "vr war lab" + }, + { + "appid": 1545040, + "normalized_name": "jump/die/live" + }, + { + "appid": 1545080, + "normalized_name": "arran the book of heroes" + }, + { + "appid": 1545240, + "normalized_name": "この学園からスタート(start from school)" + }, + { + "appid": 1545250, + "normalized_name": "echolocaution" + }, + { + "appid": 1545260, + "normalized_name": "火柴人大逃亡" + }, + { + "appid": 1545270, + "normalized_name": "power of slide" + }, + { + "appid": 1545280, + "normalized_name": "garetto" + }, + { + "appid": 1545290, + "normalized_name": "仙劍奇俠傳五前傳" + }, + { + "appid": 1545340, + "normalized_name": "asian mahjong" + }, + { + "appid": 1545350, + "normalized_name": "caribbean jigsaw" + }, + { + "appid": 1545360, + "normalized_name": "christmas griddlers" + }, + { + "appid": 1545370, + "normalized_name": "christmas griddlers journey to santa" + }, + { + "appid": 1545380, + "normalized_name": "boxoku! 99 battle royale" + }, + { + "appid": 1545430, + "normalized_name": "inward" + }, + { + "appid": 1545450, + "normalized_name": "incredibox" + }, + { + "appid": 1545500, + "normalized_name": "ignis universia spa of destiny" + }, + { + "appid": 1545510, + "normalized_name": "camping builder" + }, + { + "appid": 1545520, + "normalized_name": "over circle" + }, + { + "appid": 1545560, + "normalized_name": "shadow gambit the cursed crew" + }, + { + "appid": 1545570, + "normalized_name": "wolf adventures" + }, + { + "appid": 1545590, + "normalized_name": "world splitter" + }, + { + "appid": 1545600, + "normalized_name": "grapple hoops" + }, + { + "appid": 1545610, + "normalized_name": "scott whiskers in the search for mr. fumbleclaw" + }, + { + "appid": 1545620, + "normalized_name": "arcane arts academy" + }, + { + "appid": 1545690, + "normalized_name": "immunity adventures" + }, + { + "appid": 1545700, + "normalized_name": "guns n' runs" + }, + { + "appid": 1545710, + "normalized_name": "snowpainters" + }, + { + "appid": 1545780, + "normalized_name": "post cards" + }, + { + "appid": 1545810, + "normalized_name": "count the dead" + }, + { + "appid": 1545820, + "normalized_name": "pixel art coloring book" + }, + { + "appid": 1545830, + "normalized_name": "yaengard" + }, + { + "appid": 1545850, + "normalized_name": "tetragon" + }, + { + "appid": 1545880, + "normalized_name": "herman electro" + }, + { + "appid": 1545970, + "normalized_name": "wall street bets" + }, + { + "appid": 1545990, + "normalized_name": "deadeye deepfake simulacrum" + }, + { + "appid": 1546000, + "normalized_name": "kid detective" + }, + { + "appid": 1546010, + "normalized_name": "堕落千金—黑蔷薇与欲望之火" + }, + { + "appid": 1546060, + "normalized_name": "my summer adventure memories of another life" + }, + { + "appid": 1546070, + "normalized_name": "human within" + }, + { + "appid": 1546080, + "normalized_name": "every day we fight" + }, + { + "appid": 1546090, + "normalized_name": "raidborn" + }, + { + "appid": 1546100, + "normalized_name": "a musical story" + }, + { + "appid": 1546120, + "normalized_name": "void explorer" + }, + { + "appid": 1546140, + "normalized_name": "soccer vr football" + }, + { + "appid": 1546160, + "normalized_name": "la mora a journey in time" + }, + { + "appid": 1546190, + "normalized_name": "life is sad" + }, + { + "appid": 1546210, + "normalized_name": "destroy it" + }, + { + "appid": 1546240, + "normalized_name": "mitossis" + }, + { + "appid": 1546270, + "normalized_name": "vulto" + }, + { + "appid": 1546280, + "normalized_name": "mad pack" + }, + { + "appid": 1546310, + "normalized_name": "el paso elsewhere" + }, + { + "appid": 1546320, + "normalized_name": "your chronicle" + }, + { + "appid": 1546340, + "normalized_name": "detective riddles sherlock's heritage" + }, + { + "appid": 1546350, + "normalized_name": "detective riddles sherlock's heritage 2" + }, + { + "appid": 1546360, + "normalized_name": "easter riddles" + }, + { + "appid": 1546370, + "normalized_name": "fill and cross magic journey" + }, + { + "appid": 1546380, + "normalized_name": "fill and cross pirate riddles" + }, + { + "appid": 1546400, + "normalized_name": "gigabash" + }, + { + "appid": 1546440, + "normalized_name": "lycanthorn ii rain of beasts" + }, + { + "appid": 1546450, + "normalized_name": "horns of justice" + }, + { + "appid": 1546500, + "normalized_name": "warplanes ww1 fighters" + }, + { + "appid": 1546520, + "normalized_name": "serene" + }, + { + "appid": 1546550, + "normalized_name": "chickenman" + }, + { + "appid": 1546570, + "normalized_name": "sword and fairy" + }, + { + "appid": 1546600, + "normalized_name": "anoyo zero" + }, + { + "appid": 1546620, + "normalized_name": "alone in a dream" + }, + { + "appid": 1546630, + "normalized_name": "tank war nexus" + }, + { + "appid": 1546640, + "normalized_name": "plunderers adventures sea of whores" + }, + { + "appid": 1546690, + "normalized_name": "keys of fury" + }, + { + "appid": 1546710, + "normalized_name": "vernal edge" + }, + { + "appid": 1546750, + "normalized_name": "girl next door" + }, + { + "appid": 1546760, + "normalized_name": "scarleth" + }, + { + "appid": 1546770, + "normalized_name": "the vagabond emperor" + }, + { + "appid": 1546790, + "normalized_name": "peace death! 2" + }, + { + "appid": 1546820, + "normalized_name": "that which rises" + }, + { + "appid": 1546830, + "normalized_name": "tiani" + }, + { + "appid": 1546860, + "normalized_name": "saiko no sutoka" + }, + { + "appid": 1546870, + "normalized_name": "horny girls hentai" + }, + { + "appid": 1546890, + "normalized_name": "kargo a neo noir adventure" + }, + { + "appid": 1546900, + "normalized_name": "escape from my turrets" + }, + { + "appid": 1546910, + "normalized_name": "sophistry love & despair" + }, + { + "appid": 1546920, + "normalized_name": "overboard!" + }, + { + "appid": 1546930, + "normalized_name": "angry angry shark" + }, + { + "appid": 1546940, + "normalized_name": "beard blade" + }, + { + "appid": 1546950, + "normalized_name": "d3l3t3.exe aplicativo do mal a origem" + }, + { + "appid": 1546960, + "normalized_name": "escape the ordinary tales of romina manor" + }, + { + "appid": 1546970, + "normalized_name": "grand theft auto iii – the" + }, + { + "appid": 1546990, + "normalized_name": "grand theft auto vice city – the" + }, + { + "appid": 1547000, + "normalized_name": "grand theft auto san andreas – the" + }, + { + "appid": 1547010, + "normalized_name": "neet" + }, + { + "appid": 1547030, + "normalized_name": "outcasts of orion" + }, + { + "appid": 1547040, + "normalized_name": "被封印的历史" + }, + { + "appid": 1547060, + "normalized_name": "回纹集换卡牌tcg" + }, + { + "appid": 1547070, + "normalized_name": "wow dance" + }, + { + "appid": 1547090, + "normalized_name": "fantasma" + }, + { + "appid": 1547110, + "normalized_name": "commandos pro simulator" + }, + { + "appid": 1547130, + "normalized_name": "keeper" + }, + { + "appid": 1547150, + "normalized_name": "combat cycle" + }, + { + "appid": 1547160, + "normalized_name": "infinite jump" + }, + { + "appid": 1547170, + "normalized_name": "斗魂大陆" + }, + { + "appid": 1547220, + "normalized_name": "no going back" + }, + { + "appid": 1547230, + "normalized_name": "glutton" + }, + { + "appid": 1547280, + "normalized_name": "steampunk timer" + }, + { + "appid": 1547290, + "normalized_name": "nina aquila legal eagle season one" + }, + { + "appid": 1547300, + "normalized_name": "drawy" + }, + { + "appid": 1547310, + "normalized_name": "number game 24 points" + }, + { + "appid": 1547320, + "normalized_name": "escape underground" + }, + { + "appid": 1547330, + "normalized_name": "sorrowself" + }, + { + "appid": 1547340, + "normalized_name": "puzzle car" + }, + { + "appid": 1547350, + "normalized_name": "toru" + }, + { + "appid": 1547360, + "normalized_name": "mastodonte" + }, + { + "appid": 1547370, + "normalized_name": "dark pathways" + }, + { + "appid": 1547380, + "normalized_name": "kingdom of the dead" + }, + { + "appid": 1547410, + "normalized_name": "dnd adventure wizard's choice" + }, + { + "appid": 1547420, + "normalized_name": "siphonophore" + }, + { + "appid": 1547430, + "normalized_name": "endro" + }, + { + "appid": 1547440, + "normalized_name": "let them fall" + }, + { + "appid": 1547470, + "normalized_name": "pewpew!" + }, + { + "appid": 1547480, + "normalized_name": "present danger" + }, + { + "appid": 1547490, + "normalized_name": "black cat" + }, + { + "appid": 1547500, + "normalized_name": "snowboard" + }, + { + "appid": 1547540, + "normalized_name": "they are here alien abduction horror" + }, + { + "appid": 1547580, + "normalized_name": "welcome to... chichester 2 part ii no extra regrets for the future" + }, + { + "appid": 1547590, + "normalized_name": "astro knight" + }, + { + "appid": 1547620, + "normalized_name": "jezzball atomic" + }, + { + "appid": 1547630, + "normalized_name": "bridge2code" + }, + { + "appid": 1547670, + "normalized_name": "a day out" + }, + { + "appid": 1547730, + "normalized_name": "xanguito aventura" + }, + { + "appid": 1547780, + "normalized_name": "焚魂之梦" + }, + { + "appid": 1547790, + "normalized_name": "roze blud" + }, + { + "appid": 1547820, + "normalized_name": "top truck driver" + }, + { + "appid": 1547860, + "normalized_name": "ebola 3" + }, + { + "appid": 1547870, + "normalized_name": "stream madness" + }, + { + "appid": 1547880, + "normalized_name": "aurascope" + }, + { + "appid": 1547890, + "normalized_name": "let's build a zoo" + }, + { + "appid": 1547900, + "normalized_name": "active mummy" + }, + { + "appid": 1547910, + "normalized_name": "plasma attack" + }, + { + "appid": 1547930, + "normalized_name": "romeo must live" + }, + { + "appid": 1547970, + "normalized_name": "lightblue" + }, + { + "appid": 1547980, + "normalized_name": "paco" + }, + { + "appid": 1548010, + "normalized_name": "flipol" + }, + { + "appid": 1548020, + "normalized_name": "七彩航行 colorful trip" + }, + { + "appid": 1548030, + "normalized_name": "tatarian aster" + }, + { + "appid": 1548050, + "normalized_name": "presence" + }, + { + "appid": 1548060, + "normalized_name": "nocko" + }, + { + "appid": 1548090, + "normalized_name": "nether nightmare" + }, + { + "appid": 1548110, + "normalized_name": "the depths" + }, + { + "appid": 1548130, + "normalized_name": "{undefined}" + }, + { + "appid": 1548180, + "normalized_name": "worship" + }, + { + "appid": 1548190, + "normalized_name": "yarne" + }, + { + "appid": 1548240, + "normalized_name": "therais book" + }, + { + "appid": 1548270, + "normalized_name": "darkilson" + }, + { + "appid": 1548280, + "normalized_name": "great battles of carolus xii" + }, + { + "appid": 1548300, + "normalized_name": "lorcan legends of the fae" + }, + { + "appid": 1548320, + "normalized_name": "get out!" + }, + { + "appid": 1548350, + "normalized_name": "weirdlands" + }, + { + "appid": 1548400, + "normalized_name": "roll a ball with your friends" + }, + { + "appid": 1548430, + "normalized_name": "sacrifice of the spirit" + }, + { + "appid": 1548520, + "normalized_name": "darkest days" + }, + { + "appid": 1548540, + "normalized_name": "z.o.m.b.i.e." + }, + { + "appid": 1548590, + "normalized_name": "cold breath" + }, + { + "appid": 1548600, + "normalized_name": "citor3 hallucinations vr adult xxx game" + }, + { + "appid": 1548620, + "normalized_name": "infected spaceship generator" + }, + { + "appid": 1548630, + "normalized_name": "grappling ball" + }, + { + "appid": 1548640, + "normalized_name": "football betting 足彩上岸记" + }, + { + "appid": 1548660, + "normalized_name": "bunker down" + }, + { + "appid": 1548680, + "normalized_name": "untitled crossing record" + }, + { + "appid": 1548750, + "normalized_name": "dahlia view" + }, + { + "appid": 1548780, + "normalized_name": "the village of eri" + }, + { + "appid": 1548800, + "normalized_name": "wizard of walls" + }, + { + "appid": 1548810, + "normalized_name": "illegal transporter simulator" + }, + { + "appid": 1548820, + "normalized_name": "happy puzzle" + }, + { + "appid": 1548830, + "normalized_name": "tal arctic 4" + }, + { + "appid": 1548850, + "normalized_name": "six days in fallujah" + }, + { + "appid": 1548860, + "normalized_name": "farlight commanders prologue" + }, + { + "appid": 1548870, + "normalized_name": "moento modular environment toolkit" + }, + { + "appid": 1548880, + "normalized_name": "breakoutforce" + }, + { + "appid": 1548890, + "normalized_name": "colossus mission adventure in space arcade game" + }, + { + "appid": 1548910, + "normalized_name": "life in willowdale farm adventures" + }, + { + "appid": 1548920, + "normalized_name": "fire opal" + }, + { + "appid": 1548930, + "normalized_name": "viking story" + }, + { + "appid": 1548940, + "normalized_name": "run the world in between" + }, + { + "appid": 1549030, + "normalized_name": "100 hidden snails 2" + }, + { + "appid": 1549060, + "normalized_name": "waifu impact" + }, + { + "appid": 1549070, + "normalized_name": "sugarwinds prologue" + }, + { + "appid": 1549120, + "normalized_name": "ludo tactics" + }, + { + "appid": 1549130, + "normalized_name": "quick packer 2" + }, + { + "appid": 1549140, + "normalized_name": "apolune 2" + }, + { + "appid": 1549160, + "normalized_name": "childhood friends" + }, + { + "appid": 1549200, + "normalized_name": "anachronism\\>" + }, + { + "appid": 1549210, + "normalized_name": "wheeled warriors destruction" + }, + { + "appid": 1549220, + "normalized_name": "storyblocks the king" + }, + { + "appid": 1549240, + "normalized_name": "扫雷冒险谭2 ~露露姆的冒险~" + }, + { + "appid": 1549250, + "normalized_name": "undecember" + }, + { + "appid": 1549270, + "normalized_name": "marooned" + }, + { + "appid": 1549280, + "normalized_name": "demon arc" + }, + { + "appid": 1549370, + "normalized_name": "qube saga" + }, + { + "appid": 1549420, + "normalized_name": "メンヘラフレシアフラワリングアビス" + }, + { + "appid": 1549440, + "normalized_name": "meiqi 2019" + }, + { + "appid": 1549520, + "normalized_name": "cute! asmr" + }, + { + "appid": 1549540, + "normalized_name": "异端。" + }, + { + "appid": 1549550, + "normalized_name": "haven park" + }, + { + "appid": 1549570, + "normalized_name": "halloween sweetplechase" + }, + { + "appid": 1549580, + "normalized_name": "stealth fighter dex" + }, + { + "appid": 1549600, + "normalized_name": "complex sky" + }, + { + "appid": 1549620, + "normalized_name": "push the box 3d" + }, + { + "appid": 1549630, + "normalized_name": "expressway rally 首都高速路霸" + }, + { + "appid": 1549640, + "normalized_name": "hook only" + }, + { + "appid": 1549690, + "normalized_name": "sprawl" + }, + { + "appid": 1549700, + "normalized_name": "fusion" + }, + { + "appid": 1549710, + "normalized_name": "cybernetica final" + }, + { + "appid": 1549720, + "normalized_name": "adventure of tuck" + }, + { + "appid": 1549750, + "normalized_name": "vomitoreum" + }, + { + "appid": 1549760, + "normalized_name": "undone mind" + }, + { + "appid": 1549780, + "normalized_name": "shleepy time catching z's" + }, + { + "appid": 1549830, + "normalized_name": "cyberpunk sex tower" + }, + { + "appid": 1549850, + "normalized_name": "virtual hunter" + }, + { + "appid": 1549870, + "normalized_name": "human defense [rts]" + }, + { + "appid": 1549950, + "normalized_name": "domino killer" + }, + { + "appid": 1549970, + "normalized_name": "aliens fireteam elite" + }, + { + "appid": 1549980, + "normalized_name": "dairy dave" + }, + { + "appid": 1549990, + "normalized_name": "oaths of light chapter i" + }, + { + "appid": 1550010, + "normalized_name": "the witch of fern island" + }, + { + "appid": 1550020, + "normalized_name": "fastest hands in the wasd" + }, + { + "appid": 1550030, + "normalized_name": "problem here" + }, + { + "appid": 1550050, + "normalized_name": "raptors of southedge" + }, + { + "appid": 1550080, + "normalized_name": "lootlite" + }, + { + "appid": 1550100, + "normalized_name": "nova odessa the strange tower" + }, + { + "appid": 1550110, + "normalized_name": "here goes muffin" + }, + { + "appid": 1550130, + "normalized_name": "visions of evil" + }, + { + "appid": 1550150, + "normalized_name": "biomes survival era" + }, + { + "appid": 1550180, + "normalized_name": "9th dawn remake" + }, + { + "appid": 1550190, + "normalized_name": "post apo builder" + }, + { + "appid": 1550230, + "normalized_name": "arden's wake" + }, + { + "appid": 1550260, + "normalized_name": "bloodrayne betrayal fresh bites" + }, + { + "appid": 1550270, + "normalized_name": "togges" + }, + { + "appid": 1550280, + "normalized_name": "jamie's toy box" + }, + { + "appid": 1550330, + "normalized_name": "poly synth gunner" + }, + { + "appid": 1550340, + "normalized_name": "the hardest game in the universe" + }, + { + "appid": 1550380, + "normalized_name": "faircroft's antiques the heir of glen kinnoch" + }, + { + "appid": 1550400, + "normalized_name": "rocket cave adventure" + }, + { + "appid": 1550430, + "normalized_name": "shooty" + }, + { + "appid": 1550450, + "normalized_name": "cyjin the cyborg ninja" + }, + { + "appid": 1550460, + "normalized_name": "my dear frankenstein" + }, + { + "appid": 1550480, + "normalized_name": "side effect" + }, + { + "appid": 1550510, + "normalized_name": "creepy tale 2" + }, + { + "appid": 1550520, + "normalized_name": "sons of shadows" + }, + { + "appid": 1550560, + "normalized_name": "delivery boy" + }, + { + "appid": 1550600, + "normalized_name": "living with temptation classic" + }, + { + "appid": 1550630, + "normalized_name": "radon blast" + }, + { + "appid": 1550650, + "normalized_name": "lords of solgrund" + }, + { + "appid": 1550660, + "normalized_name": "oakrot it's literally a book" + }, + { + "appid": 1550680, + "normalized_name": "feudalia" + }, + { + "appid": 1550710, + "normalized_name": "warbox" + }, + { + "appid": 1550730, + "normalized_name": "ikonei island an earthlock adventure" + }, + { + "appid": 1550740, + "normalized_name": "ignited steel mech tactics" + }, + { + "appid": 1550750, + "normalized_name": "light head hentai" + }, + { + "appid": 1550760, + "normalized_name": "blast brigade vs. the evil legion of dr. cread" + }, + { + "appid": 1550780, + "normalized_name": "reskue" + }, + { + "appid": 1550800, + "normalized_name": "omega altro" + }, + { + "appid": 1550810, + "normalized_name": "puzzle challengers" + }, + { + "appid": 1550820, + "normalized_name": "quantum echo" + }, + { + "appid": 1550830, + "normalized_name": "dangerous sea area" + }, + { + "appid": 1550840, + "normalized_name": "ratuz" + }, + { + "appid": 1550850, + "normalized_name": "my retail store" + }, + { + "appid": 1550870, + "normalized_name": "the indigo parallel" + }, + { + "appid": 1550880, + "normalized_name": "sword and stone" + }, + { + "appid": 1550890, + "normalized_name": "escape within" + }, + { + "appid": 1550920, + "normalized_name": "slime alchemy" + }, + { + "appid": 1550950, + "normalized_name": "pirates of the asteroid belt" + }, + { + "appid": 1550990, + "normalized_name": "jurassic attack" + }, + { + "appid": 1551000, + "normalized_name": "captain pawsome" + }, + { + "appid": 1551010, + "normalized_name": "starlight shores" + }, + { + "appid": 1551020, + "normalized_name": "i borrow" + }, + { + "appid": 1551030, + "normalized_name": "涨粉二维码" + }, + { + "appid": 1551050, + "normalized_name": "unsung knight" + }, + { + "appid": 1551080, + "normalized_name": "age of legion" + }, + { + "appid": 1551110, + "normalized_name": "mythic prelude concept demo" + }, + { + "appid": 1551120, + "normalized_name": "victor" + }, + { + "appid": 1551150, + "normalized_name": "dream big 2" + }, + { + "appid": 1551160, + "normalized_name": "combat mission cold war" + }, + { + "appid": 1551190, + "normalized_name": "mad chess" + }, + { + "appid": 1551200, + "normalized_name": "adeona" + }, + { + "appid": 1551220, + "normalized_name": "king and kingdoms" + }, + { + "appid": 1551230, + "normalized_name": "demon slayer akagi" + }, + { + "appid": 1551260, + "normalized_name": "solid river" + }, + { + "appid": 1551270, + "normalized_name": "thwak infinite forest" + }, + { + "appid": 1551290, + "normalized_name": "rohoen rumble" + }, + { + "appid": 1551330, + "normalized_name": "skyfall" + }, + { + "appid": 1551340, + "normalized_name": "unlikely heroes" + }, + { + "appid": 1551360, + "normalized_name": "forza horizon 5" + }, + { + "appid": 1551370, + "normalized_name": "air vr" + }, + { + "appid": 1551460, + "normalized_name": "skelost" + }, + { + "appid": 1551470, + "normalized_name": "voidwalkers the gates of hell" + }, + { + "appid": 1551480, + "normalized_name": "the girl who sees" + }, + { + "appid": 1551510, + "normalized_name": "psychic guardian super splendor" + }, + { + "appid": 1551520, + "normalized_name": "kamikaze kommittee ouka 2" + }, + { + "appid": 1551530, + "normalized_name": "pray game" + }, + { + "appid": 1551540, + "normalized_name": "tower of ardia" + }, + { + "appid": 1551550, + "normalized_name": "philana and the elixir of life" + }, + { + "appid": 1551560, + "normalized_name": "into the nightmare" + }, + { + "appid": 1551570, + "normalized_name": "kung fu grand king" + }, + { + "appid": 1551590, + "normalized_name": "loretta's brand new job" + }, + { + "appid": 1551600, + "normalized_name": "nifa's first mission" + }, + { + "appid": 1551620, + "normalized_name": "letina's odyssey" + }, + { + "appid": 1551630, + "normalized_name": "sujimon quest" + }, + { + "appid": 1551640, + "normalized_name": "mai and the legendary treasure" + }, + { + "appid": 1551650, + "normalized_name": "sword princess sistina" + }, + { + "appid": 1551660, + "normalized_name": "gravity mastery" + }, + { + "appid": 1551670, + "normalized_name": "samurai vandalism" + }, + { + "appid": 1551680, + "normalized_name": "sleeping dragon" + }, + { + "appid": 1551700, + "normalized_name": "fractium" + }, + { + "appid": 1551720, + "normalized_name": "disaster drive" + }, + { + "appid": 1551730, + "normalized_name": "place for hero" + }, + { + "appid": 1551750, + "normalized_name": "gumball warrior" + }, + { + "appid": 1551760, + "normalized_name": "struggling ball" + }, + { + "appid": 1551770, + "normalized_name": "too many zombies!" + }, + { + "appid": 1551810, + "normalized_name": "block n load 2" + }, + { + "appid": 1551820, + "normalized_name": "twin mind murderous jealousy collector's" + }, + { + "appid": 1551830, + "normalized_name": "passengers of execution" + }, + { + "appid": 1551890, + "normalized_name": "pachi pachi 2 on a roll" + }, + { + "appid": 1551910, + "normalized_name": "race on ice 2021 pro" + }, + { + "appid": 1551920, + "normalized_name": "whisper trip" + }, + { + "appid": 1551990, + "normalized_name": "home creator" + }, + { + "appid": 1552020, + "normalized_name": "mirrored pawns" + }, + { + "appid": 1552040, + "normalized_name": "dominant mind" + }, + { + "appid": 1552050, + "normalized_name": "gilles" + }, + { + "appid": 1552060, + "normalized_name": "sockpuppet noire" + }, + { + "appid": 1552080, + "normalized_name": "deepest chamber resurrection" + }, + { + "appid": 1552090, + "normalized_name": "cursed house 9 match 3 puzzle" + }, + { + "appid": 1552130, + "normalized_name": "forgotten hope" + }, + { + "appid": 1552140, + "normalized_name": "suzukuri dungeon karin in the mountain" + }, + { + "appid": 1552160, + "normalized_name": "countdown final zone" + }, + { + "appid": 1552210, + "normalized_name": "scary buddies" + }, + { + "appid": 1552220, + "normalized_name": "lakeside" + }, + { + "appid": 1552240, + "normalized_name": "lux city of secrets" + }, + { + "appid": 1552250, + "normalized_name": "세 장의 카드" + }, + { + "appid": 1552260, + "normalized_name": "apsis online" + }, + { + "appid": 1552270, + "normalized_name": "minesweeper match" + }, + { + "appid": 1552300, + "normalized_name": "inbox unbox" + }, + { + "appid": 1552310, + "normalized_name": "janitor bleeds" + }, + { + "appid": 1552350, + "normalized_name": "the jackbox party pack 8" + }, + { + "appid": 1552430, + "normalized_name": "keeper of the day and night" + }, + { + "appid": 1552460, + "normalized_name": "sinking inn" + }, + { + "appid": 1552490, + "normalized_name": "bouncyboi in puzzle land" + }, + { + "appid": 1552500, + "normalized_name": "slimekeep" + }, + { + "appid": 1552510, + "normalized_name": "zhiel's mystery" + }, + { + "appid": 1552520, + "normalized_name": "escherion" + }, + { + "appid": 1552530, + "normalized_name": "silverwing" + }, + { + "appid": 1552550, + "normalized_name": "castlevania advance collection" + }, + { + "appid": 1552600, + "normalized_name": "joon shining" + }, + { + "appid": 1552620, + "normalized_name": "expedition agartha" + }, + { + "appid": 1552650, + "normalized_name": "rowdy rascals" + }, + { + "appid": 1552680, + "normalized_name": "escape fishstop 3d" + }, + { + "appid": 1552730, + "normalized_name": "fireworks simulator realistic" + }, + { + "appid": 1552740, + "normalized_name": "first days of atlantis" + }, + { + "appid": 1552760, + "normalized_name": "ghostist" + }, + { + "appid": 1552790, + "normalized_name": "destroy the dummies" + }, + { + "appid": 1552810, + "normalized_name": "twin mirror" + }, + { + "appid": 1552830, + "normalized_name": "veg out crew" + }, + { + "appid": 1552840, + "normalized_name": "pointy ends" + }, + { + "appid": 1552890, + "normalized_name": "gorit" + }, + { + "appid": 1552920, + "normalized_name": "bmx vice" + }, + { + "appid": 1552930, + "normalized_name": "evasilix" + }, + { + "appid": 1552940, + "normalized_name": "minigolf" + }, + { + "appid": 1552950, + "normalized_name": "pollute & conquer" + }, + { + "appid": 1552960, + "normalized_name": "john christian" + }, + { + "appid": 1553000, + "normalized_name": "war hospital" + }, + { + "appid": 1553080, + "normalized_name": "nikola tesla war of the currents" + }, + { + "appid": 1553110, + "normalized_name": "meteoroids 3d" + }, + { + "appid": 1553120, + "normalized_name": "the inheritance of crimson manor" + }, + { + "appid": 1553130, + "normalized_name": "i am dictator" + }, + { + "appid": 1553150, + "normalized_name": "anima reaver" + }, + { + "appid": 1553160, + "normalized_name": "project f.a.l.s.e." + }, + { + "appid": 1553170, + "normalized_name": "quest for cathrinite" + }, + { + "appid": 1553180, + "normalized_name": "save 2020" + }, + { + "appid": 1553190, + "normalized_name": "arcana noir" + }, + { + "appid": 1553200, + "normalized_name": "all inn" + }, + { + "appid": 1553210, + "normalized_name": "tamed chapter 1" + }, + { + "appid": 1553230, + "normalized_name": "trailer shop simulator" + }, + { + "appid": 1553260, + "normalized_name": "scarlet deer inn" + }, + { + "appid": 1553320, + "normalized_name": "inside depth 6" + }, + { + "appid": 1553360, + "normalized_name": "王国英雄志 kingdom and hero" + }, + { + "appid": 1553390, + "normalized_name": "destiny's divide" + }, + { + "appid": 1553400, + "normalized_name": "smash crates" + }, + { + "appid": 1553420, + "normalized_name": "rifle strike" + }, + { + "appid": 1553460, + "normalized_name": "rated mutant" + }, + { + "appid": 1553480, + "normalized_name": "the architect's game" + }, + { + "appid": 1553500, + "normalized_name": "katalyst" + }, + { + "appid": 1553520, + "normalized_name": "clan wars" + }, + { + "appid": 1553530, + "normalized_name": "allan" + }, + { + "appid": 1553540, + "normalized_name": "path to etinway" + }, + { + "appid": 1553560, + "normalized_name": "i wish michael phantomino were here" + }, + { + "appid": 1553570, + "normalized_name": "minesweeper 3d 三维扫雷" + }, + { + "appid": 1553580, + "normalized_name": "束缚女孩" + }, + { + "appid": 1553590, + "normalized_name": "saveseeker" + }, + { + "appid": 1553640, + "normalized_name": "there's no way that tsundere girl i met in the infirmary will be my girlfriend" + }, + { + "appid": 1553650, + "normalized_name": "viruz" + }, + { + "appid": 1553660, + "normalized_name": "twisted draw" + }, + { + "appid": 1553690, + "normalized_name": "how does it work!?" + }, + { + "appid": 1553710, + "normalized_name": "dreadhunter" + }, + { + "appid": 1553740, + "normalized_name": "cat’s princess visual novel / otome" + }, + { + "appid": 1553800, + "normalized_name": "ninja fights puzzle platformer action" + }, + { + "appid": 1553810, + "normalized_name": "wrecked! unfair car stunts" + }, + { + "appid": 1553840, + "normalized_name": "super bombinhas" + }, + { + "appid": 1553850, + "normalized_name": "tartaron" + }, + { + "appid": 1553870, + "normalized_name": "shargad first blood" + }, + { + "appid": 1553880, + "normalized_name": "greats of the gridiron" + }, + { + "appid": 1553890, + "normalized_name": "lewd girls leave me alone! i just want to play video games and watch anime! hentai" + }, + { + "appid": 1553910, + "normalized_name": "my friend stalin" + }, + { + "appid": 1553940, + "normalized_name": "space cube tower defense" + }, + { + "appid": 1553950, + "normalized_name": "bamboo forest" + }, + { + "appid": 1553960, + "normalized_name": "root out" + }, + { + "appid": 1553970, + "normalized_name": "gold challenge" + }, + { + "appid": 1553980, + "normalized_name": "gear tunnel" + }, + { + "appid": 1553990, + "normalized_name": "thelasthope" + }, + { + "appid": 1554010, + "normalized_name": "我的变色龙女友my chameleon girlfriend" + }, + { + "appid": 1554020, + "normalized_name": "混沌核心/hundun" + }, + { + "appid": 1554030, + "normalized_name": "我要成为铸剑师" + }, + { + "appid": 1554050, + "normalized_name": "ad wars" + }, + { + "appid": 1554070, + "normalized_name": "fore score" + }, + { + "appid": 1554080, + "normalized_name": "the stonks market" + }, + { + "appid": 1554110, + "normalized_name": "disaster crisis/灾难危机" + }, + { + "appid": 1554130, + "normalized_name": "draft day sports college basketball 2021" + }, + { + "appid": 1554140, + "normalized_name": "jetpack astronaut" + }, + { + "appid": 1554160, + "normalized_name": "lire" + }, + { + "appid": 1554170, + "normalized_name": "coonwood" + }, + { + "appid": 1554220, + "normalized_name": "paleon" + }, + { + "appid": 1554260, + "normalized_name": "knightly passions" + }, + { + "appid": 1554270, + "normalized_name": "the cold white" + }, + { + "appid": 1554280, + "normalized_name": "asteroids maneuvers" + }, + { + "appid": 1554320, + "normalized_name": "freedom physics" + }, + { + "appid": 1554380, + "normalized_name": "cyberpunk madness" + }, + { + "appid": 1554400, + "normalized_name": "paint chips" + }, + { + "appid": 1554440, + "normalized_name": "avalon sacred crusade" + }, + { + "appid": 1554460, + "normalized_name": "bibou quest" + }, + { + "appid": 1554470, + "normalized_name": "dragon island" + }, + { + "appid": 1554500, + "normalized_name": "sept jours sept lieux sept vies" + }, + { + "appid": 1554510, + "normalized_name": "zenbones" + }, + { + "appid": 1554520, + "normalized_name": "smackball" + }, + { + "appid": 1554530, + "normalized_name": "dreams and nightmares" + }, + { + "appid": 1554550, + "normalized_name": "unlock the cat" + }, + { + "appid": 1554590, + "normalized_name": "zed patrol" + }, + { + "appid": 1554600, + "normalized_name": "wife quest" + }, + { + "appid": 1554610, + "normalized_name": "hexonomy" + }, + { + "appid": 1554640, + "normalized_name": "super sami roll" + }, + { + "appid": 1554650, + "normalized_name": "dros" + }, + { + "appid": 1554660, + "normalized_name": "cat way domino" + }, + { + "appid": 1554670, + "normalized_name": "voidwalkers soul hunters" + }, + { + "appid": 1554680, + "normalized_name": "北斗将星录" + }, + { + "appid": 1554700, + "normalized_name": "inglorious waifu vs nazi zombies" + }, + { + "appid": 1554760, + "normalized_name": "blessings of no more" + }, + { + "appid": 1554770, + "normalized_name": "last standing" + }, + { + "appid": 1554780, + "normalized_name": "trekking and camping | 远足与露营" + }, + { + "appid": 1554790, + "normalized_name": "coloring game 4" + }, + { + "appid": 1554840, + "normalized_name": "toree 3d" + }, + { + "appid": 1554850, + "normalized_name": "one try tower" + }, + { + "appid": 1554860, + "normalized_name": "cognition method initiation" + }, + { + "appid": 1554920, + "normalized_name": "neon shooter" + }, + { + "appid": 1554970, + "normalized_name": "rogue spirit" + }, + { + "appid": 1555070, + "normalized_name": "another derby!" + }, + { + "appid": 1555080, + "normalized_name": "sniper ships shoot'em up on rails" + }, + { + "appid": 1555110, + "normalized_name": "chasing tails ~a promise in the snow~" + }, + { + "appid": 1555140, + "normalized_name": "born of bread" + }, + { + "appid": 1555150, + "normalized_name": "pocket bravery" + }, + { + "appid": 1555160, + "normalized_name": "frog story" + }, + { + "appid": 1555230, + "normalized_name": "starvoly" + }, + { + "appid": 1555290, + "normalized_name": "hormone wars tower defense" + }, + { + "appid": 1555300, + "normalized_name": "family" + }, + { + "appid": 1555310, + "normalized_name": "castle constructor" + }, + { + "appid": 1555330, + "normalized_name": "forever and ever" + }, + { + "appid": 1555380, + "normalized_name": "rpg idle" + }, + { + "appid": 1555400, + "normalized_name": "gomoku let's go" + }, + { + "appid": 1555410, + "normalized_name": "superzgun" + }, + { + "appid": 1555420, + "normalized_name": "little shell's adventure" + }, + { + "appid": 1555470, + "normalized_name": "zombie blender" + }, + { + "appid": 1555500, + "normalized_name": "placefront" + }, + { + "appid": 1555540, + "normalized_name": "codewalkers" + }, + { + "appid": 1555570, + "normalized_name": "legacy of vane" + }, + { + "appid": 1555580, + "normalized_name": "invisible services pixel art jigsaw puzzle" + }, + { + "appid": 1555590, + "normalized_name": "fish person shooter" + }, + { + "appid": 1555640, + "normalized_name": "time jumper" + }, + { + "appid": 1555650, + "normalized_name": "hexcraft harlequin fair" + }, + { + "appid": 1555660, + "normalized_name": "卢沟桥事变" + }, + { + "appid": 1555710, + "normalized_name": "omfg one million fatal guns" + }, + { + "appid": 1555770, + "normalized_name": "rogue sentry" + }, + { + "appid": 1555780, + "normalized_name": "鸭子达奇 duck duchy" + }, + { + "appid": 1555790, + "normalized_name": "wild dose" + }, + { + "appid": 1555800, + "normalized_name": "the war enders first strike | 终战:初击" + }, + { + "appid": 1555900, + "normalized_name": "life is not the end!" + }, + { + "appid": 1555910, + "normalized_name": "wet nightmares" + }, + { + "appid": 1555920, + "normalized_name": "can androids survive" + }, + { + "appid": 1555930, + "normalized_name": "beyond horizon" + }, + { + "appid": 1555940, + "normalized_name": "b1nary" + }, + { + "appid": 1555950, + "normalized_name": "typo" + }, + { + "appid": 1555960, + "normalized_name": "crime scene technician" + }, + { + "appid": 1555980, + "normalized_name": "mother machine" + }, + { + "appid": 1556010, + "normalized_name": "drivecrazy" + }, + { + "appid": 1556040, + "normalized_name": "aritana and the twin masks" + }, + { + "appid": 1556070, + "normalized_name": "nihongo quest" + }, + { + "appid": 1556100, + "normalized_name": "killer klowns from outer space the game" + }, + { + "appid": 1556150, + "normalized_name": "uph!" + }, + { + "appid": 1556160, + "normalized_name": "techno tanks" + }, + { + "appid": 1556170, + "normalized_name": "survive the night" + }, + { + "appid": 1556180, + "normalized_name": "chessality" + }, + { + "appid": 1556190, + "normalized_name": "my married cousin's need for seed" + }, + { + "appid": 1556200, + "normalized_name": "predator hunting grounds" + }, + { + "appid": 1556230, + "normalized_name": "gobs of glory" + }, + { + "appid": 1556250, + "normalized_name": "tezz portals" + }, + { + "appid": 1556270, + "normalized_name": "pixel punk" + }, + { + "appid": 1556290, + "normalized_name": "tiime" + }, + { + "appid": 1556340, + "normalized_name": "jamir" + }, + { + "appid": 1556350, + "normalized_name": "math castle" + }, + { + "appid": 1556360, + "normalized_name": "watchman" + }, + { + "appid": 1556370, + "normalized_name": "space ark" + }, + { + "appid": 1556400, + "normalized_name": "highpoint" + }, + { + "appid": 1556420, + "normalized_name": "wide open" + }, + { + "appid": 1556430, + "normalized_name": "deep therapy" + }, + { + "appid": 1556480, + "normalized_name": "karma" + }, + { + "appid": 1556490, + "normalized_name": "retreat to enen" + }, + { + "appid": 1556540, + "normalized_name": "the tales of redbox an escape from desire" + }, + { + "appid": 1556550, + "normalized_name": "chiasm" + }, + { + "appid": 1556560, + "normalized_name": "death tale pandora's box" + }, + { + "appid": 1556610, + "normalized_name": "a conversation with mister rabbit" + }, + { + "appid": 1556650, + "normalized_name": "castle of shikigami 2" + }, + { + "appid": 1556660, + "normalized_name": "shell out showdown" + }, + { + "appid": 1556670, + "normalized_name": "i'm a king" + }, + { + "appid": 1556680, + "normalized_name": "overstars" + }, + { + "appid": 1556770, + "normalized_name": "mutant alley do the dinosaur" + }, + { + "appid": 1556790, + "normalized_name": "isonzo" + }, + { + "appid": 1556850, + "normalized_name": "the lunar effect" + }, + { + "appid": 1556860, + "normalized_name": "role player full immersion" + }, + { + "appid": 1556870, + "normalized_name": "golf club nostalgia" + }, + { + "appid": 1556920, + "normalized_name": "1 2 blame!" + }, + { + "appid": 1556930, + "normalized_name": "being loved" + }, + { + "appid": 1556960, + "normalized_name": "red frozen" + }, + { + "appid": 1556980, + "normalized_name": "互联网原住民 internet generation" + }, + { + "appid": 1557040, + "normalized_name": "terraformers first steps on mars" + }, + { + "appid": 1557050, + "normalized_name": "combat chess" + }, + { + "appid": 1557060, + "normalized_name": "wonhon prologue" + }, + { + "appid": 1557070, + "normalized_name": "cut them up" + }, + { + "appid": 1557100, + "normalized_name": "out of the shelter" + }, + { + "appid": 1557140, + "normalized_name": "what lives below" + }, + { + "appid": 1557180, + "normalized_name": "ex natura nature corrupted" + }, + { + "appid": 1557190, + "normalized_name": "reficul 666" + }, + { + "appid": 1557200, + "normalized_name": "my eyes" + }, + { + "appid": 1557230, + "normalized_name": "rabbit riot" + }, + { + "appid": 1557240, + "normalized_name": "sheriff rage" + }, + { + "appid": 1557300, + "normalized_name": "binger ninja" + }, + { + "appid": 1557340, + "normalized_name": "skycraft" + }, + { + "appid": 1557350, + "normalized_name": "wanderlust the bermuda secret collector's" + }, + { + "appid": 1557360, + "normalized_name": "iterria zone" + }, + { + "appid": 1557400, + "normalized_name": "a museum of self & space" + }, + { + "appid": 1557410, + "normalized_name": "black witchcraft" + }, + { + "appid": 1557420, + "normalized_name": "ships at war" + }, + { + "appid": 1557430, + "normalized_name": "midnight is lost" + }, + { + "appid": 1557460, + "normalized_name": "slave fighter x" + }, + { + "appid": 1557470, + "normalized_name": "baby dragon rancher" + }, + { + "appid": 1557480, + "normalized_name": "project mikhail a muv luv war story" + }, + { + "appid": 1557510, + "normalized_name": "myastere ruins of deazniff" + }, + { + "appid": 1557540, + "normalized_name": "cutie bear" + }, + { + "appid": 1557550, + "normalized_name": "rogues adventure" + }, + { + "appid": 1557580, + "normalized_name": "don't look away" + }, + { + "appid": 1557670, + "normalized_name": "outright" + }, + { + "appid": 1557690, + "normalized_name": "三国演义之蜀汉传奇" + }, + { + "appid": 1557700, + "normalized_name": "the world after" + }, + { + "appid": 1557710, + "normalized_name": "academy of magic lair of the beast" + }, + { + "appid": 1557720, + "normalized_name": "robodunk" + }, + { + "appid": 1557740, + "normalized_name": "rounds" + }, + { + "appid": 1557760, + "normalized_name": "6 feet behind" + }, + { + "appid": 1557820, + "normalized_name": "mixed guns" + }, + { + "appid": 1557840, + "normalized_name": "maze" + }, + { + "appid": 1557860, + "normalized_name": "gear.club unlimited 2" + }, + { + "appid": 1557870, + "normalized_name": "红鸟 help" + }, + { + "appid": 1557880, + "normalized_name": "wood killer" + }, + { + "appid": 1557990, + "normalized_name": "retail royale" + }, + { + "appid": 1558000, + "normalized_name": "[echostasis]" + }, + { + "appid": 1558020, + "normalized_name": "lazy chess" + }, + { + "appid": 1558030, + "normalized_name": "tales of anturia farathan" + }, + { + "appid": 1558060, + "normalized_name": "club lipstick vr" + }, + { + "appid": 1558070, + "normalized_name": "dragon blast crazy action super hero game" + }, + { + "appid": 1558090, + "normalized_name": "rodent people origins" + }, + { + "appid": 1558100, + "normalized_name": "pixphys" + }, + { + "appid": 1558110, + "normalized_name": "challenge party" + }, + { + "appid": 1558130, + "normalized_name": "raige" + }, + { + "appid": 1558180, + "normalized_name": "u evade" + }, + { + "appid": 1558200, + "normalized_name": "dash out" + }, + { + "appid": 1558210, + "normalized_name": "fortresscraft chapter 1" + }, + { + "appid": 1558360, + "normalized_name": "mystery tales master of puppets collector's" + }, + { + "appid": 1558380, + "normalized_name": "tribes of tis'te" + }, + { + "appid": 1558420, + "normalized_name": "galaxy arena" + }, + { + "appid": 1558430, + "normalized_name": "sgyuinbaldo" + }, + { + "appid": 1558440, + "normalized_name": "spy escape" + }, + { + "appid": 1558480, + "normalized_name": "my territory was witches' island!?" + }, + { + "appid": 1558490, + "normalized_name": "firelight fantasy resistance" + }, + { + "appid": 1558510, + "normalized_name": "mechanica a ballad of the rabbit and mercury" + }, + { + "appid": 1558530, + "normalized_name": "brawler" + }, + { + "appid": 1558570, + "normalized_name": "hank's voyage" + }, + { + "appid": 1558600, + "normalized_name": "godkiller" + }, + { + "appid": 1558630, + "normalized_name": "limitless bit" + }, + { + "appid": 1558650, + "normalized_name": "alphadeck" + }, + { + "appid": 1558670, + "normalized_name": "survive the dark" + }, + { + "appid": 1558710, + "normalized_name": "generals. positional warfare" + }, + { + "appid": 1558720, + "normalized_name": "bioid" + }, + { + "appid": 1558730, + "normalized_name": "alexey's winter night adventure" + }, + { + "appid": 1558740, + "normalized_name": "planetary defense" + }, + { + "appid": 1558750, + "normalized_name": "let's learn xiangqi (chinese chess)" + }, + { + "appid": 1558760, + "normalized_name": "dread the cold case" + }, + { + "appid": 1558790, + "normalized_name": "the king's guard" + }, + { + "appid": 1558800, + "normalized_name": "forgot" + }, + { + "appid": 1558830, + "normalized_name": "ripout" + }, + { + "appid": 1558840, + "normalized_name": "path of kami journey begins" + }, + { + "appid": 1558850, + "normalized_name": "geekwords" + }, + { + "appid": 1558900, + "normalized_name": "pandemic love" + }, + { + "appid": 1558920, + "normalized_name": "la dimensione interna" + }, + { + "appid": 1558930, + "normalized_name": "little orpheus" + }, + { + "appid": 1558970, + "normalized_name": "hair of the dog" + }, + { + "appid": 1558980, + "normalized_name": "ancient souls tamag" + }, + { + "appid": 1558990, + "normalized_name": "siege of avalon anthology" + }, + { + "appid": 1559040, + "normalized_name": "project elysium" + }, + { + "appid": 1559060, + "normalized_name": "ultra bushwick" + }, + { + "appid": 1559070, + "normalized_name": "yet another hard game" + }, + { + "appid": 1559100, + "normalized_name": "miguelshroom first day at school" + }, + { + "appid": 1559160, + "normalized_name": "vr hentai 18+" + }, + { + "appid": 1559180, + "normalized_name": "survival on amazonia" + }, + { + "appid": 1559190, + "normalized_name": "mt force aliens uprising" + }, + { + "appid": 1559260, + "normalized_name": "kong's wrath city of mayhem" + }, + { + "appid": 1559270, + "normalized_name": "infinity square" + }, + { + "appid": 1559280, + "normalized_name": "the animal bash" + }, + { + "appid": 1559300, + "normalized_name": "流言侦探" + }, + { + "appid": 1559330, + "normalized_name": "destroy the hexons" + }, + { + "appid": 1559340, + "normalized_name": "qubie invader of worlds" + }, + { + "appid": 1559370, + "normalized_name": "goblins!" + }, + { + "appid": 1559390, + "normalized_name": "天命奇御二 fate seeker ii" + }, + { + "appid": 1559410, + "normalized_name": "birfia" + }, + { + "appid": 1559430, + "normalized_name": "purrfect apawcalypse purrgatory furever" + }, + { + "appid": 1559450, + "normalized_name": "veneficium a witch's tale" + }, + { + "appid": 1559460, + "normalized_name": "hero's everyday life" + }, + { + "appid": 1559500, + "normalized_name": "happy halloween" + }, + { + "appid": 1559570, + "normalized_name": "hellstuck rage with your friends" + }, + { + "appid": 1559580, + "normalized_name": "gladihaters" + }, + { + "appid": 1559590, + "normalized_name": "trapped" + }, + { + "appid": 1559600, + "normalized_name": "the ranch of rivershine" + }, + { + "appid": 1559620, + "normalized_name": "gooper" + }, + { + "appid": 1559650, + "normalized_name": "許願readygo!" + }, + { + "appid": 1559660, + "normalized_name": "trap arena" + }, + { + "appid": 1559680, + "normalized_name": "amazing frog? 2" + }, + { + "appid": 1559700, + "normalized_name": "dreamer" + }, + { + "appid": 1559720, + "normalized_name": "we harvest shadows" + }, + { + "appid": 1559740, + "normalized_name": "剑与园丨sword and space" + }, + { + "appid": 1559750, + "normalized_name": "dracula vs the ninja on the moon" + }, + { + "appid": 1559760, + "normalized_name": "island diary" + }, + { + "appid": 1559770, + "normalized_name": "microgravity" + }, + { + "appid": 1559790, + "normalized_name": "slash of bullet" + }, + { + "appid": 1559810, + "normalized_name": "salto" + }, + { + "appid": 1559840, + "normalized_name": "只是一座楼" + }, + { + "appid": 1559850, + "normalized_name": "space survival" + }, + { + "appid": 1559870, + "normalized_name": "orbtrain slot racing" + }, + { + "appid": 1559900, + "normalized_name": "heroic tale value!+" + }, + { + "appid": 1559910, + "normalized_name": "nanocorp" + }, + { + "appid": 1559920, + "normalized_name": "the game for skippers" + }, + { + "appid": 1559930, + "normalized_name": "dialogue box the road less traveled" + }, + { + "appid": 1559960, + "normalized_name": "grey bones" + }, + { + "appid": 1559970, + "normalized_name": "froggerty arcade (triple game pack)" + }, + { + "appid": 1559980, + "normalized_name": "落日镇" + }, + { + "appid": 1559990, + "normalized_name": "exorcised" + }, + { + "appid": 1560010, + "normalized_name": "neon nights" + }, + { + "appid": 1560050, + "normalized_name": "a snake in a maze" + }, + { + "appid": 1560060, + "normalized_name": "封神外传" + }, + { + "appid": 1560100, + "normalized_name": "super stupid game" + }, + { + "appid": 1560110, + "normalized_name": "piratecraft" + }, + { + "appid": 1560130, + "normalized_name": "joe and the gun" + }, + { + "appid": 1560140, + "normalized_name": "atak angry tusslin' awesome knights" + }, + { + "appid": 1560150, + "normalized_name": "mythren" + }, + { + "appid": 1560160, + "normalized_name": "ila a frosty glide" + }, + { + "appid": 1560170, + "normalized_name": "beachousex" + }, + { + "appid": 1560200, + "normalized_name": "dzombz" + }, + { + "appid": 1560250, + "normalized_name": "rising front" + }, + { + "appid": 1560260, + "normalized_name": "leyline knights" + }, + { + "appid": 1560320, + "normalized_name": "endless furry pinball 2d" + }, + { + "appid": 1560330, + "normalized_name": "utopos" + }, + { + "appid": 1560390, + "normalized_name": "archer master" + }, + { + "appid": 1560400, + "normalized_name": "重叠·前夜谭:猫与少女" + }, + { + "appid": 1560450, + "normalized_name": "the sequence [2]" + }, + { + "appid": 1560480, + "normalized_name": "huckleberry fields forever" + }, + { + "appid": 1560510, + "normalized_name": "hardcop 2" + }, + { + "appid": 1560520, + "normalized_name": "the patcher" + }, + { + "appid": 1560530, + "normalized_name": "vr boxing master" + }, + { + "appid": 1560540, + "normalized_name": "little moneybags" + }, + { + "appid": 1560560, + "normalized_name": "村庄 the village" + }, + { + "appid": 1560580, + "normalized_name": "lineart jigsaw puzzle erotica valentines" + }, + { + "appid": 1560590, + "normalized_name": "reality's reverse side" + }, + { + "appid": 1560640, + "normalized_name": "ninja lexx" + }, + { + "appid": 1560730, + "normalized_name": "replay a puzzle game" + }, + { + "appid": 1560770, + "normalized_name": "tower of waifus 2" + }, + { + "appid": 1560790, + "normalized_name": "romance after dark" + }, + { + "appid": 1560830, + "normalized_name": "sea wolf tactics" + }, + { + "appid": 1560840, + "normalized_name": "death by refund" + }, + { + "appid": 1560850, + "normalized_name": "piozila" + }, + { + "appid": 1560860, + "normalized_name": "necromancer winter" + }, + { + "appid": 1560880, + "normalized_name": "automatrons tower defense" + }, + { + "appid": 1560890, + "normalized_name": "morkredd prøve (demo)" + }, + { + "appid": 1560940, + "normalized_name": "puzzle & chess" + }, + { + "appid": 1560970, + "normalized_name": "islandville a new home" + }, + { + "appid": 1561000, + "normalized_name": "kubberz" + }, + { + "appid": 1561010, + "normalized_name": "space ape" + }, + { + "appid": 1561020, + "normalized_name": "island domination" + }, + { + "appid": 1561030, + "normalized_name": "rhythm towers" + }, + { + "appid": 1561040, + "normalized_name": "diluvian winds" + }, + { + "appid": 1561060, + "normalized_name": "love colors paint with friends" + }, + { + "appid": 1561080, + "normalized_name": "a frog's tale" + }, + { + "appid": 1561090, + "normalized_name": "sweet dreams alex" + }, + { + "appid": 1561100, + "normalized_name": "another warfare" + }, + { + "appid": 1561340, + "normalized_name": "berserk boy" + }, + { + "appid": 1561350, + "normalized_name": "gladia" + }, + { + "appid": 1561370, + "normalized_name": "citor3 sex villa vr adult xxx game" + }, + { + "appid": 1561380, + "normalized_name": "re call" + }, + { + "appid": 1561390, + "normalized_name": "starstruck" + }, + { + "appid": 1561430, + "normalized_name": "urban mage" + }, + { + "appid": 1561470, + "normalized_name": "world of stalkers" + }, + { + "appid": 1561480, + "normalized_name": "duty in the forest" + }, + { + "appid": 1561500, + "normalized_name": "子非猫" + }, + { + "appid": 1561510, + "normalized_name": "immortal space god" + }, + { + "appid": 1561520, + "normalized_name": "extended stay" + }, + { + "appid": 1561530, + "normalized_name": "project solace" + }, + { + "appid": 1561540, + "normalized_name": "ship of theseus" + }, + { + "appid": 1561560, + "normalized_name": "deadly daycare vr" + }, + { + "appid": 1561570, + "normalized_name": "fiend's isle" + }, + { + "appid": 1561590, + "normalized_name": "修仙重生记" + }, + { + "appid": 1561600, + "normalized_name": "coeus plan" + }, + { + "appid": 1561610, + "normalized_name": "sweep" + }, + { + "appid": 1561660, + "normalized_name": "the lightbringer" + }, + { + "appid": 1561670, + "normalized_name": "dominating the skies" + }, + { + "appid": 1561720, + "normalized_name": "wisdom" + }, + { + "appid": 1561740, + "normalized_name": "kriegsfront tactics" + }, + { + "appid": 1561780, + "normalized_name": "zombie friday" + }, + { + "appid": 1561800, + "normalized_name": "rough kuts night of the living dead" + }, + { + "appid": 1561850, + "normalized_name": "sefir mafia story" + }, + { + "appid": 1561860, + "normalized_name": "marble muse arcade" + }, + { + "appid": 1561870, + "normalized_name": "falco axe" + }, + { + "appid": 1561880, + "normalized_name": "hell's gate slide puzzle" + }, + { + "appid": 1561890, + "normalized_name": "recursive ruin" + }, + { + "appid": 1561910, + "normalized_name": "凯尔文 kelvin and the chateau" + }, + { + "appid": 1561920, + "normalized_name": "rosemary's fate life worth living" + }, + { + "appid": 1561960, + "normalized_name": "yield! fall of rome" + }, + { + "appid": 1561970, + "normalized_name": "新世界" + }, + { + "appid": 1561980, + "normalized_name": "paintball war 2" + }, + { + "appid": 1561990, + "normalized_name": "r.t.o. tales of the dark lands deluxe" + }, + { + "appid": 1562020, + "normalized_name": "abyss of neptune" + }, + { + "appid": 1562030, + "normalized_name": "ronin samurai redemption" + }, + { + "appid": 1562060, + "normalized_name": "dotstrike" + }, + { + "appid": 1562100, + "normalized_name": "celtic warfare" + }, + { + "appid": 1562120, + "normalized_name": "set café" + }, + { + "appid": 1562140, + "normalized_name": "sophie starlight whispers" + }, + { + "appid": 1562150, + "normalized_name": "hive p v. s" + }, + { + "appid": 1562180, + "normalized_name": "baby bear's big day out" + }, + { + "appid": 1562230, + "normalized_name": "entity researchers" + }, + { + "appid": 1562240, + "normalized_name": "toothy history" + }, + { + "appid": 1562260, + "normalized_name": "camping simulator the squad" + }, + { + "appid": 1562270, + "normalized_name": "small town robot" + }, + { + "appid": 1562340, + "normalized_name": "traxworld" + }, + { + "appid": 1562380, + "normalized_name": "no more inputs" + }, + { + "appid": 1562400, + "normalized_name": "sprite sequence chapter 1" + }, + { + "appid": 1562410, + "normalized_name": "slime 64" + }, + { + "appid": 1562420, + "normalized_name": "forewarned" + }, + { + "appid": 1562430, + "normalized_name": "dredge" + }, + { + "appid": 1562440, + "normalized_name": "sunsensim" + }, + { + "appid": 1562470, + "normalized_name": "瑠璃樱" + }, + { + "appid": 1562510, + "normalized_name": "falnarion tactics oathbreaker" + }, + { + "appid": 1562550, + "normalized_name": "little monkeys eat bananas" + }, + { + "appid": 1562620, + "normalized_name": "velocity vr battle royale" + }, + { + "appid": 1562690, + "normalized_name": "つぐのひ 彁名縛りの部屋" + }, + { + "appid": 1562700, + "normalized_name": "sanabi" + }, + { + "appid": 1562740, + "normalized_name": "helix" + }, + { + "appid": 1562760, + "normalized_name": "音符之光传说" + }, + { + "appid": 1562780, + "normalized_name": "broilers" + }, + { + "appid": 1562800, + "normalized_name": "photographer" + }, + { + "appid": 1562830, + "normalized_name": "wake out of twilight" + }, + { + "appid": 1562860, + "normalized_name": "distancing" + }, + { + "appid": 1562870, + "normalized_name": "mind rite" + }, + { + "appid": 1562880, + "normalized_name": "ponk's jam" + }, + { + "appid": 1562910, + "normalized_name": "makoto wakaido’s case files trilogy deluxe" + }, + { + "appid": 1562920, + "normalized_name": "7 years from now" + }, + { + "appid": 1562930, + "normalized_name": "world for two" + }, + { + "appid": 1562940, + "normalized_name": "英雄伝説 創の軌跡 / the legend of heroes hajimari no kiseki" + }, + { + "appid": 1562970, + "normalized_name": "hyperspace andy's adventure" + }, + { + "appid": 1563010, + "normalized_name": "bunny's ban" + }, + { + "appid": 1563030, + "normalized_name": "dangerous lands" + }, + { + "appid": 1563070, + "normalized_name": "outside the box" + }, + { + "appid": 1563100, + "normalized_name": "nightmare survival" + }, + { + "appid": 1563110, + "normalized_name": "boom faster" + }, + { + "appid": 1563130, + "normalized_name": "superpower 3" + }, + { + "appid": 1563150, + "normalized_name": "cataplexy" + }, + { + "appid": 1563160, + "normalized_name": "lust for darkness vr" + }, + { + "appid": 1563170, + "normalized_name": "kitchen island vr" + }, + { + "appid": 1563180, + "normalized_name": "internet cafe simulator 2" + }, + { + "appid": 1563210, + "normalized_name": "nitrojet" + }, + { + "appid": 1563240, + "normalized_name": "veterinary clinic simulator" + }, + { + "appid": 1563250, + "normalized_name": "beast hour" + }, + { + "appid": 1563300, + "normalized_name": "the tower" + }, + { + "appid": 1563310, + "normalized_name": "you you n music" + }, + { + "appid": 1563320, + "normalized_name": "sleep tight" + }, + { + "appid": 1563340, + "normalized_name": "the most boring game ever" + }, + { + "appid": 1563360, + "normalized_name": "slayer cat" + }, + { + "appid": 1563370, + "normalized_name": "zombie hustle" + }, + { + "appid": 1563380, + "normalized_name": "cpt.balloney painful days at home" + }, + { + "appid": 1563410, + "normalized_name": "ascension to bheaven" + }, + { + "appid": 1563420, + "normalized_name": "crazy christmas" + }, + { + "appid": 1563460, + "normalized_name": "star salvager" + }, + { + "appid": 1563490, + "normalized_name": "doggone hungry" + }, + { + "appid": 1563500, + "normalized_name": "octavian" + }, + { + "appid": 1563520, + "normalized_name": "galaxy drift" + }, + { + "appid": 1563530, + "normalized_name": "dracula frames" + }, + { + "appid": 1563550, + "normalized_name": "childhood fears" + }, + { + "appid": 1563610, + "normalized_name": "slime islands" + }, + { + "appid": 1563670, + "normalized_name": "dracula a gothic rpg" + }, + { + "appid": 1563700, + "normalized_name": "当火车鸣笛三秒" + }, + { + "appid": 1563710, + "normalized_name": "cybergrid tower defense" + }, + { + "appid": 1563720, + "normalized_name": "captain coffer 2d" + }, + { + "appid": 1563730, + "normalized_name": "witching hour" + }, + { + "appid": 1563760, + "normalized_name": "monster girl dungeon" + }, + { + "appid": 1563770, + "normalized_name": "new yankee under the genie's thumb" + }, + { + "appid": 1563780, + "normalized_name": "bok bok a chicken dating sim" + }, + { + "appid": 1563820, + "normalized_name": "inside my mind" + }, + { + "appid": 1563830, + "normalized_name": "battle cat vs treacherous mice" + }, + { + "appid": 1563840, + "normalized_name": "蚂蚁模拟器(ant simulator)" + }, + { + "appid": 1563850, + "normalized_name": "diy my lady" + }, + { + "appid": 1563860, + "normalized_name": "christmas stories the gift of the magi collector's" + }, + { + "appid": 1563870, + "normalized_name": "lesson learned" + }, + { + "appid": 1563880, + "normalized_name": "dismantled 2" + }, + { + "appid": 1563940, + "normalized_name": "atlantica europe" + }, + { + "appid": 1563950, + "normalized_name": "머준이의 사건파일 ~쌍둥이 저택의 비밀~" + }, + { + "appid": 1563970, + "normalized_name": "surviving west" + }, + { + "appid": 1564010, + "normalized_name": "closed hands" + }, + { + "appid": 1564020, + "normalized_name": "the dark" + }, + { + "appid": 1564030, + "normalized_name": "antstream arcade" + }, + { + "appid": 1564060, + "normalized_name": "lighthouse of madness" + }, + { + "appid": 1564080, + "normalized_name": "add" + }, + { + "appid": 1564090, + "normalized_name": "landlord of the woods" + }, + { + "appid": 1564100, + "normalized_name": "synth drift" + }, + { + "appid": 1564110, + "normalized_name": "beside myself" + }, + { + "appid": 1564130, + "normalized_name": "adam the storyteller" + }, + { + "appid": 1564140, + "normalized_name": "白玉的幻梦 dream of hakugyokurou" + }, + { + "appid": 1564150, + "normalized_name": "lost in blindness" + }, + { + "appid": 1564190, + "normalized_name": "legacy bites" + }, + { + "appid": 1564210, + "normalized_name": "fort craft" + }, + { + "appid": 1564220, + "normalized_name": "q.u.b.e. 10th anniversary" + }, + { + "appid": 1564230, + "normalized_name": "raze 2070" + }, + { + "appid": 1564240, + "normalized_name": "gob" + }, + { + "appid": 1564280, + "normalized_name": "augury" + }, + { + "appid": 1564350, + "normalized_name": "bot loop" + }, + { + "appid": 1564400, + "normalized_name": "symbol sudoku" + }, + { + "appid": 1564430, + "normalized_name": "stroll" + }, + { + "appid": 1564450, + "normalized_name": "the gorcs' forge" + }, + { + "appid": 1564520, + "normalized_name": "star pilot" + }, + { + "appid": 1564540, + "normalized_name": "10 dead doves" + }, + { + "appid": 1564550, + "normalized_name": "mini words polyglot" + }, + { + "appid": 1564560, + "normalized_name": "island farmer jigsaw puzzle" + }, + { + "appid": 1564580, + "normalized_name": "nevertales faryon collector's" + }, + { + "appid": 1564590, + "normalized_name": "easy quiz" + }, + { + "appid": 1564600, + "normalized_name": "the last plague blight" + }, + { + "appid": 1564620, + "normalized_name": "dungeonman" + }, + { + "appid": 1564630, + "normalized_name": "find girl | 发现女孩" + }, + { + "appid": 1564660, + "normalized_name": "bongo arena" + }, + { + "appid": 1564670, + "normalized_name": "合成大西瓜 | big watermelon" + }, + { + "appid": 1564690, + "normalized_name": "cherry blossom fleet" + }, + { + "appid": 1564700, + "normalized_name": "house cleaning survival" + }, + { + "appid": 1564720, + "normalized_name": "先民的遗迹relics of ancestors" + }, + { + "appid": 1564760, + "normalized_name": "bro where's my head???" + }, + { + "appid": 1564790, + "normalized_name": "submachine legacy" + }, + { + "appid": 1564830, + "normalized_name": "jixxaw" + }, + { + "appid": 1564840, + "normalized_name": "dreams of adventure" + }, + { + "appid": 1564870, + "normalized_name": "humanity first woman in space" + }, + { + "appid": 1564900, + "normalized_name": "crixus life of free gladiator" + }, + { + "appid": 1564920, + "normalized_name": "shots fired in the dark forest" + }, + { + "appid": 1564930, + "normalized_name": "angry space bees" + }, + { + "appid": 1564940, + "normalized_name": "a strange city" + }, + { + "appid": 1564950, + "normalized_name": "two legs" + }, + { + "appid": 1564970, + "normalized_name": "雪糕猫" + }, + { + "appid": 1564980, + "normalized_name": "diego mission red tomato" + }, + { + "appid": 1565020, + "normalized_name": "tableau vivant" + }, + { + "appid": 1565030, + "normalized_name": "wind of shuriken" + }, + { + "appid": 1565060, + "normalized_name": "revenants spirit & mind" + }, + { + "appid": 1565070, + "normalized_name": "aletheia return of odysseus" + }, + { + "appid": 1565080, + "normalized_name": "femboys of the phalanx" + }, + { + "appid": 1565090, + "normalized_name": "gearhead caramel" + }, + { + "appid": 1565110, + "normalized_name": "临 第一部分“假作真”篇" + }, + { + "appid": 1565130, + "normalized_name": "gotc siege on the lightorder citadel" + }, + { + "appid": 1565140, + "normalized_name": "godsbane idle" + }, + { + "appid": 1565150, + "normalized_name": "maya's dice" + }, + { + "appid": 1565180, + "normalized_name": "insanium" + }, + { + "appid": 1565200, + "normalized_name": "road flash" + }, + { + "appid": 1565210, + "normalized_name": "buildest" + }, + { + "appid": 1565220, + "normalized_name": "gamer girls (18+)" + }, + { + "appid": 1565240, + "normalized_name": "skillsworn" + }, + { + "appid": 1565250, + "normalized_name": "rising spire" + }, + { + "appid": 1565290, + "normalized_name": "survival horror #8 436 (discontinued)" + }, + { + "appid": 1565320, + "normalized_name": "total havoc" + }, + { + "appid": 1565420, + "normalized_name": "mysticism" + }, + { + "appid": 1565430, + "normalized_name": "hentai royale" + }, + { + "appid": 1565440, + "normalized_name": "timeless dual" + }, + { + "appid": 1565450, + "normalized_name": "stern" + }, + { + "appid": 1565500, + "normalized_name": "somewhere in a clay nowhere" + }, + { + "appid": 1565530, + "normalized_name": "避雨2🌧" + }, + { + "appid": 1565560, + "normalized_name": "kaikatana" + }, + { + "appid": 1565580, + "normalized_name": "mini island spring" + }, + { + "appid": 1565610, + "normalized_name": "rilla shotgun" + }, + { + "appid": 1565630, + "normalized_name": "doge to the moon" + }, + { + "appid": 1565650, + "normalized_name": "pokitaire" + }, + { + "appid": 1565660, + "normalized_name": "s.p.a.t." + }, + { + "appid": 1565670, + "normalized_name": "five nations" + }, + { + "appid": 1565680, + "normalized_name": "the dark prophecy" + }, + { + "appid": 1565710, + "normalized_name": "dragon's bane" + }, + { + "appid": 1565720, + "normalized_name": "to save humanity from virus" + }, + { + "appid": 1565740, + "normalized_name": "sea battle annihilation" + }, + { + "appid": 1565760, + "normalized_name": "survival rpg alisa x desperate city" + }, + { + "appid": 1565770, + "normalized_name": "butt naked & big guns" + }, + { + "appid": 1565780, + "normalized_name": "scaper dash" + }, + { + "appid": 1565790, + "normalized_name": "astro fighters 2178" + }, + { + "appid": 1565800, + "normalized_name": "tower attack" + }, + { + "appid": 1565830, + "normalized_name": "expert on domestication" + }, + { + "appid": 1565840, + "normalized_name": "puppetnetik speedrun challenge" + }, + { + "appid": 1565850, + "normalized_name": "fluff labs" + }, + { + "appid": 1565860, + "normalized_name": "rotate to find the difference" + }, + { + "appid": 1565870, + "normalized_name": "fight for that ball" + }, + { + "appid": 1565880, + "normalized_name": "turbo shell" + }, + { + "appid": 1565890, + "normalized_name": "raceleague" + }, + { + "appid": 1565900, + "normalized_name": "space junk heroes" + }, + { + "appid": 1565910, + "normalized_name": "craftsman" + }, + { + "appid": 1565940, + "normalized_name": "maya treasures" + }, + { + "appid": 1565960, + "normalized_name": "lost sector" + }, + { + "appid": 1565970, + "normalized_name": "flirtatious" + }, + { + "appid": 1565990, + "normalized_name": "across the demon realm 2" + }, + { + "appid": 1566040, + "normalized_name": "last soul" + }, + { + "appid": 1566050, + "normalized_name": "gb rober" + }, + { + "appid": 1566060, + "normalized_name": "miss furry" + }, + { + "appid": 1566070, + "normalized_name": "the radiants" + }, + { + "appid": 1566090, + "normalized_name": "malice & greed" + }, + { + "appid": 1566120, + "normalized_name": "russian drunken boxers" + }, + { + "appid": 1566150, + "normalized_name": "nox terrorem lost souls" + }, + { + "appid": 1566200, + "normalized_name": "tape to tape" + }, + { + "appid": 1566220, + "normalized_name": "terafall survival" + }, + { + "appid": 1566230, + "normalized_name": "turn on all the lights" + }, + { + "appid": 1566250, + "normalized_name": "lighton duo" + }, + { + "appid": 1566340, + "normalized_name": "dark around you" + }, + { + "appid": 1566350, + "normalized_name": "re kuroi" + }, + { + "appid": 1566360, + "normalized_name": "gallantry" + }, + { + "appid": 1566370, + "normalized_name": "contrast tunnel" + }, + { + "appid": 1566390, + "normalized_name": "seed of the dead sweet home" + }, + { + "appid": 1566410, + "normalized_name": "東方虹龍洞 ~ unconnected marketeers." + }, + { + "appid": 1566430, + "normalized_name": "aspen: uncanny home" + }, + { + "appid": 1566440, + "normalized_name": "lords of nether" + }, + { + "appid": 1566450, + "normalized_name": "setteeh" + }, + { + "appid": 1566460, + "normalized_name": "freyr's love" + }, + { + "appid": 1566490, + "normalized_name": "loner" + }, + { + "appid": 1566500, + "normalized_name": "strife the expanse" + }, + { + "appid": 1566510, + "normalized_name": "maze workout lost urban exit game trials1" + }, + { + "appid": 1566540, + "normalized_name": "new york rat simulator" + }, + { + "appid": 1566550, + "normalized_name": "a walk with my dog" + }, + { + "appid": 1566560, + "normalized_name": "ritual" + }, + { + "appid": 1566570, + "normalized_name": "retroninjacyberassassin" + }, + { + "appid": 1566580, + "normalized_name": "neocense" + }, + { + "appid": 1566610, + "normalized_name": "the sand dunes" + }, + { + "appid": 1566620, + "normalized_name": "puzzletronics analog eletronics" + }, + { + "appid": 1566670, + "normalized_name": "attack of the karens" + }, + { + "appid": 1566680, + "normalized_name": "still model 3 / 约拍女神3" + }, + { + "appid": 1566690, + "normalized_name": "outpost infinity siege" + }, + { + "appid": 1566700, + "normalized_name": "vr prison escape" + }, + { + "appid": 1566710, + "normalized_name": "anisto" + }, + { + "appid": 1566740, + "normalized_name": "prisoner 17" + }, + { + "appid": 1566810, + "normalized_name": "emerland solitaire 2 collector's" + }, + { + "appid": 1566820, + "normalized_name": "cooking trip new challenge" + }, + { + "appid": 1566830, + "normalized_name": "magna graecia" + }, + { + "appid": 1566840, + "normalized_name": "eden's ritter 1 2 priestess of pleasure" + }, + { + "appid": 1566870, + "normalized_name": "the moon 2050" + }, + { + "appid": 1566880, + "normalized_name": "sword art online last recollection" + }, + { + "appid": 1566910, + "normalized_name": "riddle girl" + }, + { + "appid": 1566920, + "normalized_name": "booble h" + }, + { + "appid": 1566990, + "normalized_name": "a" + }, + { + "appid": 1567000, + "normalized_name": "illwill" + }, + { + "appid": 1567020, + "normalized_name": "the dark pictures anthology the devil in me" + }, + { + "appid": 1567050, + "normalized_name": "operation sexy sudoku" + }, + { + "appid": 1567060, + "normalized_name": "wild 9" + }, + { + "appid": 1567080, + "normalized_name": "furry sexytails" + }, + { + "appid": 1567100, + "normalized_name": "repeat" + }, + { + "appid": 1567190, + "normalized_name": "shores of plunder" + }, + { + "appid": 1567200, + "normalized_name": "the wolf" + }, + { + "appid": 1567260, + "normalized_name": "crowalt traces of the lost colony prologue" + }, + { + "appid": 1567270, + "normalized_name": "castle survival" + }, + { + "appid": 1567310, + "normalized_name": "dark facets" + }, + { + "appid": 1567370, + "normalized_name": "just a game to test your lq" + }, + { + "appid": 1567380, + "normalized_name": "try to remember" + }, + { + "appid": 1567400, + "normalized_name": "yakyosho terror and escape at school" + }, + { + "appid": 1567410, + "normalized_name": "dreams of valhalla" + }, + { + "appid": 1567420, + "normalized_name": "dinner with an owl" + }, + { + "appid": 1567440, + "normalized_name": "inbento" + }, + { + "appid": 1567450, + "normalized_name": "rise of hegemony" + }, + { + "appid": 1567480, + "normalized_name": "realtime mining simulator" + }, + { + "appid": 1567490, + "normalized_name": "alien death mob" + }, + { + "appid": 1567520, + "normalized_name": "blackwind" + }, + { + "appid": 1567530, + "normalized_name": "vlad circus curse of asmodeus" + }, + { + "appid": 1567550, + "normalized_name": "protostone" + }, + { + "appid": 1567570, + "normalized_name": "wilbur's quest" + }, + { + "appid": 1567580, + "normalized_name": "7 years war" + }, + { + "appid": 1567650, + "normalized_name": "attic transit authority wooden train simulator" + }, + { + "appid": 1567670, + "normalized_name": "雪国の少女" + }, + { + "appid": 1567680, + "normalized_name": "cosmic tank" + }, + { + "appid": 1567690, + "normalized_name": "canary in a crater" + }, + { + "appid": 1567720, + "normalized_name": "streamer dancefloor" + }, + { + "appid": 1567740, + "normalized_name": "to hell with it" + }, + { + "appid": 1567770, + "normalized_name": "【iq3でできるエロrpg】トレジャーハンターアンナ~新米アンナと処女の穴~" + }, + { + "appid": 1567800, + "normalized_name": "星空列车与白的旅行" + }, + { + "appid": 1567830, + "normalized_name": "蛋蛋掌门日志" + }, + { + "appid": 1567840, + "normalized_name": "farming tractor simulator 2021 farmer life" + }, + { + "appid": 1567850, + "normalized_name": "primula" + }, + { + "appid": 1567860, + "normalized_name": "femboy bangers pub & grill" + }, + { + "appid": 1567870, + "normalized_name": "kingdomdefense" + }, + { + "appid": 1567880, + "normalized_name": "sex rhythm onsen" + }, + { + "appid": 1567890, + "normalized_name": "date z" + }, + { + "appid": 1567910, + "normalized_name": "brobot" + }, + { + "appid": 1567920, + "normalized_name": "heart of mithras" + }, + { + "appid": 1567930, + "normalized_name": "war tank combat" + }, + { + "appid": 1567950, + "normalized_name": "disco ball" + }, + { + "appid": 1567980, + "normalized_name": "tachyon wars" + }, + { + "appid": 1567990, + "normalized_name": "the test of beauty | 小姐姐的考验" + }, + { + "appid": 1568010, + "normalized_name": "crescent overload" + }, + { + "appid": 1568030, + "normalized_name": "too many cooks" + }, + { + "appid": 1568040, + "normalized_name": "vacation adventures park ranger 11" + }, + { + "appid": 1568060, + "normalized_name": "killer 19" + }, + { + "appid": 1568070, + "normalized_name": "burning ball" + }, + { + "appid": 1568130, + "normalized_name": "spaceship for newbies" + }, + { + "appid": 1568190, + "normalized_name": "cat's life jigsaw puzzles" + }, + { + "appid": 1568210, + "normalized_name": "mantle" + }, + { + "appid": 1568240, + "normalized_name": "castle itter the strangest battle of wwii" + }, + { + "appid": 1568260, + "normalized_name": "terra earth" + }, + { + "appid": 1568310, + "normalized_name": "penguin climbing" + }, + { + "appid": 1568320, + "normalized_name": "combohead" + }, + { + "appid": 1568330, + "normalized_name": "samurai chess" + }, + { + "appid": 1568400, + "normalized_name": "sheepy a short adventure" + }, + { + "appid": 1568420, + "normalized_name": "sol blanka" + }, + { + "appid": 1568430, + "normalized_name": "discoveries of the deep" + }, + { + "appid": 1568440, + "normalized_name": "sands of fire" + }, + { + "appid": 1568450, + "normalized_name": "search for the titanic" + }, + { + "appid": 1568460, + "normalized_name": "nios" + }, + { + "appid": 1568470, + "normalized_name": "potion meister" + }, + { + "appid": 1568480, + "normalized_name": "knighted" + }, + { + "appid": 1568490, + "normalized_name": "the survivor after" + }, + { + "appid": 1568500, + "normalized_name": "traversing traveler" + }, + { + "appid": 1568520, + "normalized_name": "blue june" + }, + { + "appid": 1568530, + "normalized_name": "realife simulator" + }, + { + "appid": 1568540, + "normalized_name": "smithworks" + }, + { + "appid": 1568550, + "normalized_name": "first" + }, + { + "appid": 1568560, + "normalized_name": "faction wars" + }, + { + "appid": 1568570, + "normalized_name": "retro tank party" + }, + { + "appid": 1568580, + "normalized_name": "hands of wisp" + }, + { + "appid": 1568590, + "normalized_name": "goose goose duck" + }, + { + "appid": 1568600, + "normalized_name": "assault sector" + }, + { + "appid": 1568620, + "normalized_name": "metaphysical" + }, + { + "appid": 1568650, + "normalized_name": "*new* scuffed epic visual novel" + }, + { + "appid": 1568720, + "normalized_name": "plague breaker" + }, + { + "appid": 1568730, + "normalized_name": "heroes of eldemor" + }, + { + "appid": 1568790, + "normalized_name": "red white yellow" + }, + { + "appid": 1568880, + "normalized_name": "秘封フラグメント" + }, + { + "appid": 1568890, + "normalized_name": "finsterwald" + }, + { + "appid": 1568900, + "normalized_name": "肉牛养殖计划" + }, + { + "appid": 1568920, + "normalized_name": "clean slate" + }, + { + "appid": 1568940, + "normalized_name": "花妖物语/flower girl" + }, + { + "appid": 1568960, + "normalized_name": "true spring love" + }, + { + "appid": 1568970, + "normalized_name": "torn away" + }, + { + "appid": 1569090, + "normalized_name": "vivid knight" + }, + { + "appid": 1569100, + "normalized_name": "war of kosovo 2033" + }, + { + "appid": 1569130, + "normalized_name": "asset flip" + }, + { + "appid": 1569140, + "normalized_name": "p3tt" + }, + { + "appid": 1569150, + "normalized_name": "glyph☀" + }, + { + "appid": 1569170, + "normalized_name": "a way back" + }, + { + "appid": 1569180, + "normalized_name": "琴葉姉妹とライサント島の伝説" + }, + { + "appid": 1569200, + "normalized_name": "brewmaster beer brewing simulator" + }, + { + "appid": 1569210, + "normalized_name": "stickman clans" + }, + { + "appid": 1569220, + "normalized_name": "abermore" + }, + { + "appid": 1569240, + "normalized_name": "evolve lab" + }, + { + "appid": 1569290, + "normalized_name": "why it's empty here the game" + }, + { + "appid": 1569340, + "normalized_name": "dwarves craft. father's home" + }, + { + "appid": 1569350, + "normalized_name": "i make saints (steam edition)" + }, + { + "appid": 1569380, + "normalized_name": "triple dungeon" + }, + { + "appid": 1569420, + "normalized_name": "spellfarers" + }, + { + "appid": 1569470, + "normalized_name": "teocida" + }, + { + "appid": 1569520, + "normalized_name": "irmão grande & brasileiro 2" + }, + { + "appid": 1569540, + "normalized_name": "top gang" + }, + { + "appid": 1569550, + "normalized_name": "dread x collection 4 the hunt" + }, + { + "appid": 1569560, + "normalized_name": "the simplest game" + }, + { + "appid": 1569580, + "normalized_name": "blue prince" + }, + { + "appid": 1569590, + "normalized_name": "onlyfuck ruru's adventures" + }, + { + "appid": 1569620, + "normalized_name": "lab rags" + }, + { + "appid": 1569650, + "normalized_name": "palladise island" + }, + { + "appid": 1569660, + "normalized_name": "tank side story" + }, + { + "appid": 1569690, + "normalized_name": "snapshot" + }, + { + "appid": 1569700, + "normalized_name": "hero realms" + }, + { + "appid": 1569720, + "normalized_name": "attack of undo zai" + }, + { + "appid": 1569730, + "normalized_name": "a shiba story" + }, + { + "appid": 1569750, + "normalized_name": "忍者明:悟" + }, + { + "appid": 1569760, + "normalized_name": "lab breakout" + }, + { + "appid": 1569780, + "normalized_name": "betray me not" + }, + { + "appid": 1569790, + "normalized_name": "魔法师要学治愈魔法" + }, + { + "appid": 1569810, + "normalized_name": "24 solar terms" + }, + { + "appid": 1569820, + "normalized_name": "shades of rayna" + }, + { + "appid": 1569880, + "normalized_name": "westerlands girly runaways story" + }, + { + "appid": 1569890, + "normalized_name": "mumbai gullies" + }, + { + "appid": 1569900, + "normalized_name": "fried chicken in wonderland" + }, + { + "appid": 1569920, + "normalized_name": "saphyro" + }, + { + "appid": 1569930, + "normalized_name": "sword and fairy 5" + }, + { + "appid": 1569970, + "normalized_name": "fireball wizard" + }, + { + "appid": 1569990, + "normalized_name": "choco pixel x" + }, + { + "appid": 1570000, + "normalized_name": "space ninja simulator" + }, + { + "appid": 1570010, + "normalized_name": "far changing tides" + }, + { + "appid": 1570020, + "normalized_name": "world's end club" + }, + { + "appid": 1570050, + "normalized_name": "冲击五十关" + }, + { + "appid": 1570070, + "normalized_name": "beholder 3" + }, + { + "appid": 1570080, + "normalized_name": "dead seater" + }, + { + "appid": 1570100, + "normalized_name": "angler's world" + }, + { + "appid": 1570120, + "normalized_name": "bunker" + }, + { + "appid": 1570150, + "normalized_name": "flowcubes" + }, + { + "appid": 1570160, + "normalized_name": "skip lake" + }, + { + "appid": 1570200, + "normalized_name": "girls on puzzle 3" + }, + { + "appid": 1570220, + "normalized_name": "mythos build & survive" + }, + { + "appid": 1570240, + "normalized_name": "smash circuit" + }, + { + "appid": 1570260, + "normalized_name": "time loop nibiru" + }, + { + "appid": 1570290, + "normalized_name": "hyper dungeon crawler" + }, + { + "appid": 1570310, + "normalized_name": "scoot scoot" + }, + { + "appid": 1570320, + "normalized_name": "battle star asteroids" + }, + { + "appid": 1570330, + "normalized_name": "west hunt" + }, + { + "appid": 1570340, + "normalized_name": "dawn of the falkonir" + }, + { + "appid": 1570350, + "normalized_name": "statik" + }, + { + "appid": 1570360, + "normalized_name": "rainy day roommate" + }, + { + "appid": 1570420, + "normalized_name": "clan of death" + }, + { + "appid": 1570450, + "normalized_name": "artificial extinction 2" + }, + { + "appid": 1570480, + "normalized_name": "retrograde" + }, + { + "appid": 1570490, + "normalized_name": "perikoto" + }, + { + "appid": 1570500, + "normalized_name": "space moth lunar" + }, + { + "appid": 1570510, + "normalized_name": "undernauts labyrinth of yomi" + }, + { + "appid": 1570600, + "normalized_name": "slimejumper jump" + }, + { + "appid": 1570610, + "normalized_name": "herbis" + }, + { + "appid": 1570620, + "normalized_name": "universe 25" + }, + { + "appid": 1570630, + "normalized_name": "racing bros online" + }, + { + "appid": 1570650, + "normalized_name": "the last order dungeons" + }, + { + "appid": 1570660, + "normalized_name": "medieval apocalypse" + }, + { + "appid": 1570680, + "normalized_name": "slayers inc." + }, + { + "appid": 1570700, + "normalized_name": "slaughterhouse" + }, + { + "appid": 1570720, + "normalized_name": "praesidium" + }, + { + "appid": 1570730, + "normalized_name": "super totally dad showdown" + }, + { + "appid": 1570740, + "normalized_name": "sacred cubes" + }, + { + "appid": 1570750, + "normalized_name": "hextones" + }, + { + "appid": 1570760, + "normalized_name": "变量2" + }, + { + "appid": 1570790, + "normalized_name": "2d platformer game (toy factory)" + }, + { + "appid": 1570800, + "normalized_name": "thistledown marrowroot" + }, + { + "appid": 1570830, + "normalized_name": "mori carta" + }, + { + "appid": 1570840, + "normalized_name": "tides of tethys" + }, + { + "appid": 1570850, + "normalized_name": "frauki's adventure!" + }, + { + "appid": 1570860, + "normalized_name": "little wolf" + }, + { + "appid": 1570940, + "normalized_name": "mana launcher" + }, + { + "appid": 1570960, + "normalized_name": "grey instinct" + }, + { + "appid": 1570980, + "normalized_name": "love of magic book 2 the war" + }, + { + "appid": 1570990, + "normalized_name": "chroma quaternion" + }, + { + "appid": 1571000, + "normalized_name": "alphadia genesis 2" + }, + { + "appid": 1571010, + "normalized_name": "物理世界" + }, + { + "appid": 1571020, + "normalized_name": "underland ambush" + }, + { + "appid": 1571030, + "normalized_name": "龙骑战歌" + }, + { + "appid": 1571040, + "normalized_name": "恶搞赛车 湿身吧! splash to wild kids" + }, + { + "appid": 1571070, + "normalized_name": "felix the toy" + }, + { + "appid": 1571090, + "normalized_name": "beast crimes" + }, + { + "appid": 1571100, + "normalized_name": "passpartout 2 the lost artist" + }, + { + "appid": 1571120, + "normalized_name": "crucible" + }, + { + "appid": 1571130, + "normalized_name": "captains of the wacky waters" + }, + { + "appid": 1571140, + "normalized_name": "东方十昊狱 ~ hella dazzling hell!!" + }, + { + "appid": 1571160, + "normalized_name": "lost scavenger" + }, + { + "appid": 1571170, + "normalized_name": "summer with mia" + }, + { + "appid": 1571180, + "normalized_name": "eos" + }, + { + "appid": 1571190, + "normalized_name": "royal revolt ii" + }, + { + "appid": 1571200, + "normalized_name": "project qt" + }, + { + "appid": 1571210, + "normalized_name": "scientific shutdown" + }, + { + "appid": 1571220, + "normalized_name": "chessplosion" + }, + { + "appid": 1571230, + "normalized_name": "lineart jigsaw puzzle erotica 4" + }, + { + "appid": 1571260, + "normalized_name": "fault milestone two side below" + }, + { + "appid": 1571280, + "normalized_name": "street legal 1 revision" + }, + { + "appid": 1571330, + "normalized_name": "battle royale craft" + }, + { + "appid": 1571340, + "normalized_name": "vr hot" + }, + { + "appid": 1571360, + "normalized_name": "puzzle pieces" + }, + { + "appid": 1571380, + "normalized_name": "startenders intergalactic bartending" + }, + { + "appid": 1571430, + "normalized_name": "ten 2 ten poker" + }, + { + "appid": 1571440, + "normalized_name": "lunch lady" + }, + { + "appid": 1571450, + "normalized_name": "bear haven nights 2" + }, + { + "appid": 1571460, + "normalized_name": "zorro the chronicles" + }, + { + "appid": 1571480, + "normalized_name": "tiger tank 俯视坦克" + }, + { + "appid": 1571540, + "normalized_name": "gimmick in the chaos dimension" + }, + { + "appid": 1571560, + "normalized_name": "the lady puppet" + }, + { + "appid": 1571570, + "normalized_name": "cult of the sons" + }, + { + "appid": 1571600, + "normalized_name": "dark romance sleepy hollow collector's" + }, + { + "appid": 1571640, + "normalized_name": "stardust" + }, + { + "appid": 1571660, + "normalized_name": "au delà" + }, + { + "appid": 1571690, + "normalized_name": "sexorcist academy" + }, + { + "appid": 1571700, + "normalized_name": "command heroes" + }, + { + "appid": 1571730, + "normalized_name": "castle of collapse" + }, + { + "appid": 1571750, + "normalized_name": "gun game" + }, + { + "appid": 1571770, + "normalized_name": "ever fallen empire" + }, + { + "appid": 1571780, + "normalized_name": "techno prank" + }, + { + "appid": 1571820, + "normalized_name": "life with college girl" + }, + { + "appid": 1571840, + "normalized_name": "小邦迪的奇妙冒险" + }, + { + "appid": 1571860, + "normalized_name": "little ruin" + }, + { + "appid": 1571880, + "normalized_name": "god of the arena dungeon" + }, + { + "appid": 1571890, + "normalized_name": "jam gods" + }, + { + "appid": 1571910, + "normalized_name": "dear althea" + }, + { + "appid": 1571930, + "normalized_name": "hot pink" + }, + { + "appid": 1571940, + "normalized_name": "ctrl alt ego" + }, + { + "appid": 1571950, + "normalized_name": "slick racing game" + }, + { + "appid": 1571960, + "normalized_name": "the corpsmen" + }, + { + "appid": 1571990, + "normalized_name": "galaxy pass station" + }, + { + "appid": 1572000, + "normalized_name": "derelicts" + }, + { + "appid": 1572020, + "normalized_name": "thumbelina" + }, + { + "appid": 1572040, + "normalized_name": "through the fragmentation" + }, + { + "appid": 1572050, + "normalized_name": "crash race" + }, + { + "appid": 1572080, + "normalized_name": "home wind" + }, + { + "appid": 1572100, + "normalized_name": "girls on puzzle 4" + }, + { + "appid": 1572120, + "normalized_name": "unblock me car" + }, + { + "appid": 1572140, + "normalized_name": "get a grip chip and the body bugs" + }, + { + "appid": 1572150, + "normalized_name": "the monster mole" + }, + { + "appid": 1572170, + "normalized_name": "pandemic pandemonium" + }, + { + "appid": 1572180, + "normalized_name": "lionfish reef patrol" + }, + { + "appid": 1572190, + "normalized_name": "hyposphere z" + }, + { + "appid": 1572220, + "normalized_name": "guns and grapples" + }, + { + "appid": 1572230, + "normalized_name": "nami" + }, + { + "appid": 1572260, + "normalized_name": "wild ice" + }, + { + "appid": 1572270, + "normalized_name": "f.i.s.h." + }, + { + "appid": 1572320, + "normalized_name": "malfunction ii" + }, + { + "appid": 1572330, + "normalized_name": "hero of the demon" + }, + { + "appid": 1572340, + "normalized_name": "ark of artemis" + }, + { + "appid": 1572380, + "normalized_name": "future fortune" + }, + { + "appid": 1572420, + "normalized_name": "leenie boog" + }, + { + "appid": 1572450, + "normalized_name": "femboy besties" + }, + { + "appid": 1572460, + "normalized_name": "my simple puzzle" + }, + { + "appid": 1572470, + "normalized_name": "höll space 5d6" + }, + { + "appid": 1572790, + "normalized_name": "gustavo kingdom rebirth" + }, + { + "appid": 1572800, + "normalized_name": "neon snake" + }, + { + "appid": 1572810, + "normalized_name": "мемология" + }, + { + "appid": 1572830, + "normalized_name": "before the battery´s over" + }, + { + "appid": 1572850, + "normalized_name": "lotto life" + }, + { + "appid": 1572880, + "normalized_name": "gentle club" + }, + { + "appid": 1572910, + "normalized_name": "bouncy cloud" + }, + { + "appid": 1572920, + "normalized_name": "supertux" + }, + { + "appid": 1572930, + "normalized_name": "void's blight" + }, + { + "appid": 1572950, + "normalized_name": "cat interstellar episode ii" + }, + { + "appid": 1572960, + "normalized_name": "train 113" + }, + { + "appid": 1572970, + "normalized_name": "liberation mutagenix" + }, + { + "appid": 1572990, + "normalized_name": "twilight town a cyberpunk day in life" + }, + { + "appid": 1573060, + "normalized_name": "nejicomisimulator vol.1 (gapping amputee sex slave petrify time stop)" + }, + { + "appid": 1573070, + "normalized_name": "endless furry blackjack" + }, + { + "appid": 1573080, + "normalized_name": "recoiled" + }, + { + "appid": 1573090, + "normalized_name": "impaler gold" + }, + { + "appid": 1573100, + "normalized_name": "subterrain mines of titan" + }, + { + "appid": 1573110, + "normalized_name": "azy" + }, + { + "appid": 1573130, + "normalized_name": "vr chinese garden tour (hd) flying as a dragonfly" + }, + { + "appid": 1573160, + "normalized_name": "just defense" + }, + { + "appid": 1573170, + "normalized_name": "games and girls" + }, + { + "appid": 1573180, + "normalized_name": "injoku furin" + }, + { + "appid": 1573190, + "normalized_name": "unite" + }, + { + "appid": 1573220, + "normalized_name": "low key a dope game" + }, + { + "appid": 1573240, + "normalized_name": "onnanoko keeper 3" + }, + { + "appid": 1573250, + "normalized_name": "allura the three realms" + }, + { + "appid": 1573280, + "normalized_name": "ww2 rebuilder" + }, + { + "appid": 1573290, + "normalized_name": "communication breakdown" + }, + { + "appid": 1573300, + "normalized_name": "wish paradise high" + }, + { + "appid": 1573330, + "normalized_name": "unreal sandbox" + }, + { + "appid": 1573350, + "normalized_name": "coastline flight simulator" + }, + { + "appid": 1573360, + "normalized_name": "infinity kingdom" + }, + { + "appid": 1573390, + "normalized_name": "lila’s sky ark" + }, + { + "appid": 1573410, + "normalized_name": "malone in nightmares" + }, + { + "appid": 1573420, + "normalized_name": "photo life rina's journey" + }, + { + "appid": 1573430, + "normalized_name": "carnival and girls" + }, + { + "appid": 1573460, + "normalized_name": "car scrapyard simulator" + }, + { + "appid": 1573500, + "normalized_name": "red measures" + }, + { + "appid": 1573540, + "normalized_name": "spaceship simulator" + }, + { + "appid": 1573560, + "normalized_name": "dungeons & drivers" + }, + { + "appid": 1573580, + "normalized_name": "catch the stars japan" + }, + { + "appid": 1573590, + "normalized_name": "colonize" + }, + { + "appid": 1573620, + "normalized_name": "bit orchard" + }, + { + "appid": 1573630, + "normalized_name": "choice of life middle ages 2" + }, + { + "appid": 1573700, + "normalized_name": "dropshipping simulator" + }, + { + "appid": 1573710, + "normalized_name": "monster in the dark" + }, + { + "appid": 1573720, + "normalized_name": "agatha christie hercule poirot the first cases" + }, + { + "appid": 1573730, + "normalized_name": "helicopter simulator vr 2021 rescue missions" + }, + { + "appid": 1573750, + "normalized_name": "100 hidden mushrooms" + }, + { + "appid": 1573760, + "normalized_name": "battle in the city" + }, + { + "appid": 1573770, + "normalized_name": "contingency creatures" + }, + { + "appid": 1573790, + "normalized_name": "click quest" + }, + { + "appid": 1573800, + "normalized_name": "the steps as we know them" + }, + { + "appid": 1573860, + "normalized_name": "back then" + }, + { + "appid": 1573890, + "normalized_name": "the tower between us" + }, + { + "appid": 1573950, + "normalized_name": "wonderland the forgotten isles" + }, + { + "appid": 1573970, + "normalized_name": "souls of the wind" + }, + { + "appid": 1573980, + "normalized_name": "ruin" + }, + { + "appid": 1574000, + "normalized_name": "industry idle" + }, + { + "appid": 1574010, + "normalized_name": "shattered slime" + }, + { + "appid": 1574020, + "normalized_name": "automation* of sorts" + }, + { + "appid": 1574030, + "normalized_name": "war of freedom" + }, + { + "appid": 1574060, + "normalized_name": "anotherquizzgame" + }, + { + "appid": 1574110, + "normalized_name": "lying souls" + }, + { + "appid": 1574130, + "normalized_name": "the ruins of vagastia" + }, + { + "appid": 1574190, + "normalized_name": "legacy of datura" + }, + { + "appid": 1574200, + "normalized_name": "lucid parables of the ubermensch" + }, + { + "appid": 1574240, + "normalized_name": "dread delusion" + }, + { + "appid": 1574250, + "normalized_name": "spookware" + }, + { + "appid": 1574260, + "normalized_name": "my friendly neighborhood" + }, + { + "appid": 1574270, + "normalized_name": "sucker for love first date" + }, + { + "appid": 1574310, + "normalized_name": "oxenfree ii lost signals" + }, + { + "appid": 1574320, + "normalized_name": "神秘世界 mysterious world" + }, + { + "appid": 1574330, + "normalized_name": "魔法少女は自由に変身できない。" + }, + { + "appid": 1574360, + "normalized_name": "uncharted waters origin" + }, + { + "appid": 1574370, + "normalized_name": "catsperience" + }, + { + "appid": 1574390, + "normalized_name": "converter" + }, + { + "appid": 1574400, + "normalized_name": "mirror land" + }, + { + "appid": 1574420, + "normalized_name": "chunkers" + }, + { + "appid": 1574450, + "normalized_name": "o.v.n.i. abduction" + }, + { + "appid": 1574470, + "normalized_name": "hop step sing! vr live 《hop★summer tour 2020》" + }, + { + "appid": 1574480, + "normalized_name": "agent 64 spies never die" + }, + { + "appid": 1574500, + "normalized_name": "nobody's quest" + }, + { + "appid": 1574510, + "normalized_name": "kartoffl" + }, + { + "appid": 1574530, + "normalized_name": "just get in through the door" + }, + { + "appid": 1574540, + "normalized_name": "pixel game maker series isekai quartet adventure action game" + }, + { + "appid": 1574570, + "normalized_name": "choice of life new centurion" + }, + { + "appid": 1574580, + "normalized_name": "strange horticulture" + }, + { + "appid": 1574590, + "normalized_name": "pandu" + }, + { + "appid": 1574610, + "normalized_name": "drone gladiator" + }, + { + "appid": 1574620, + "normalized_name": "a cat in dungeons" + }, + { + "appid": 1574670, + "normalized_name": "kaboom!" + }, + { + "appid": 1574690, + "normalized_name": "extreme peg solitaire" + }, + { + "appid": 1574700, + "normalized_name": "motorcycle mechanic simulator 2021 prologue" + }, + { + "appid": 1574720, + "normalized_name": "diorama tower defense tiny kingdom (prologue)" + }, + { + "appid": 1574750, + "normalized_name": "super retro fighter" + }, + { + "appid": 1574770, + "normalized_name": "a furry tale a night in havena" + }, + { + "appid": 1574780, + "normalized_name": "skaramazuzu" + }, + { + "appid": 1574800, + "normalized_name": "among ass 2 butt warfare" + }, + { + "appid": 1574820, + "normalized_name": "until then" + }, + { + "appid": 1574830, + "normalized_name": "full pawer" + }, + { + "appid": 1574850, + "normalized_name": "music95" + }, + { + "appid": 1574870, + "normalized_name": "usc counterforce" + }, + { + "appid": 1574900, + "normalized_name": "salt 2 shores of gold" + }, + { + "appid": 1574910, + "normalized_name": "the bart bonte collection" + }, + { + "appid": 1574990, + "normalized_name": "pushing the limit" + }, + { + "appid": 1575030, + "normalized_name": "slime dungeon escape" + }, + { + "appid": 1575040, + "normalized_name": "starlight x 2 space sudoku" + }, + { + "appid": 1575060, + "normalized_name": "ahri and bear" + }, + { + "appid": 1575070, + "normalized_name": "ticklish tessa" + }, + { + "appid": 1575100, + "normalized_name": "ziode shadow" + }, + { + "appid": 1575160, + "normalized_name": "one4" + }, + { + "appid": 1575230, + "normalized_name": "paid trade" + }, + { + "appid": 1575240, + "normalized_name": "neon dimension" + }, + { + "appid": 1575260, + "normalized_name": "pandemic heart" + }, + { + "appid": 1575290, + "normalized_name": "haunting at cliffhouse" + }, + { + "appid": 1575300, + "normalized_name": "no parachute" + }, + { + "appid": 1575310, + "normalized_name": "rotego" + }, + { + "appid": 1575320, + "normalized_name": "curiosity/любопытство" + }, + { + "appid": 1575330, + "normalized_name": "friendly fire arena" + }, + { + "appid": 1575380, + "normalized_name": "in the wild" + }, + { + "appid": 1575430, + "normalized_name": "the bounty huntress" + }, + { + "appid": 1575450, + "normalized_name": "dark siren" + }, + { + "appid": 1575470, + "normalized_name": "frogun" + }, + { + "appid": 1575480, + "normalized_name": "once upon a sea" + }, + { + "appid": 1575510, + "normalized_name": "seedlings" + }, + { + "appid": 1575520, + "normalized_name": "fruit ninja vr 2" + }, + { + "appid": 1575540, + "normalized_name": "symbiotic love yuri visual novel" + }, + { + "appid": 1575580, + "normalized_name": "the royal game of ur 3d" + }, + { + "appid": 1575590, + "normalized_name": "alder forge" + }, + { + "appid": 1575640, + "normalized_name": "sol cresta" + }, + { + "appid": 1575650, + "normalized_name": "love decision" + }, + { + "appid": 1575670, + "normalized_name": "snk vs. capcom the match of the millennium" + }, + { + "appid": 1575680, + "normalized_name": "blasterbeat" + }, + { + "appid": 1575690, + "normalized_name": "super maze labyrinth" + }, + { + "appid": 1575710, + "normalized_name": "幻想乡自走棋 ~ autochess of gensokyo" + }, + { + "appid": 1575730, + "normalized_name": "descending i house of nightmares" + }, + { + "appid": 1575750, + "normalized_name": "shapevs" + }, + { + "appid": 1575790, + "normalized_name": "flawless abbey" + }, + { + "appid": 1575810, + "normalized_name": "wander stars" + }, + { + "appid": 1575830, + "normalized_name": "arcrunner" + }, + { + "appid": 1575860, + "normalized_name": "bascatball saturn basketball & cat" + }, + { + "appid": 1575870, + "normalized_name": "upgun" + }, + { + "appid": 1575900, + "normalized_name": "old stories fireheart" + }, + { + "appid": 1575920, + "normalized_name": "cyberdunk anime" + }, + { + "appid": 1575940, + "normalized_name": "sins of a solar empire ii" + }, + { + "appid": 1575950, + "normalized_name": "wisly and the chickens!" + }, + { + "appid": 1575960, + "normalized_name": "the exaggerated epoch of edward o'hare" + }, + { + "appid": 1575980, + "normalized_name": "usonatsu ~the summer romance bloomed from a lie~" + }, + { + "appid": 1575990, + "normalized_name": "twisted tower" + }, + { + "appid": 1576000, + "normalized_name": "pain party" + }, + { + "appid": 1576020, + "normalized_name": "saighead" + }, + { + "appid": 1576050, + "normalized_name": "super pixel world" + }, + { + "appid": 1576080, + "normalized_name": "superoffice" + }, + { + "appid": 1576110, + "normalized_name": "heisen bay" + }, + { + "appid": 1576130, + "normalized_name": "idoldays" + }, + { + "appid": 1576140, + "normalized_name": "2002xx" + }, + { + "appid": 1576150, + "normalized_name": "junk the legend of junichi kato" + }, + { + "appid": 1576190, + "normalized_name": "mir" + }, + { + "appid": 1576210, + "normalized_name": "lumberqwaxes" + }, + { + "appid": 1576220, + "normalized_name": "原体:出逃" + }, + { + "appid": 1576230, + "normalized_name": "an un epic story the adventure of enki and tiny freddie" + }, + { + "appid": 1576240, + "normalized_name": "the shadow of yidhra" + }, + { + "appid": 1576280, + "normalized_name": "moviehouse – the film studio tycoon" + }, + { + "appid": 1576300, + "normalized_name": "dr iwan evolution" + }, + { + "appid": 1576350, + "normalized_name": "blair witch vr" + }, + { + "appid": 1576370, + "normalized_name": "replikator" + }, + { + "appid": 1576400, + "normalized_name": "blightseeker" + }, + { + "appid": 1576420, + "normalized_name": "black trail vr" + }, + { + "appid": 1576470, + "normalized_name": "memento vivere" + }, + { + "appid": 1576480, + "normalized_name": "ultima adventum" + }, + { + "appid": 1576490, + "normalized_name": "dark sheep" + }, + { + "appid": 1576500, + "normalized_name": "clockwork pussy" + }, + { + "appid": 1576530, + "normalized_name": "sociopat" + }, + { + "appid": 1576540, + "normalized_name": "wavetiles" + }, + { + "appid": 1576550, + "normalized_name": "otaku club" + }, + { + "appid": 1576560, + "normalized_name": "downhillvr" + }, + { + "appid": 1576570, + "normalized_name": "legend of maratha warriors" + }, + { + "appid": 1576590, + "normalized_name": "stories of submission enter the cuck" + }, + { + "appid": 1576600, + "normalized_name": "matraquinha pair" + }, + { + "appid": 1576620, + "normalized_name": "mission mars" + }, + { + "appid": 1576640, + "normalized_name": "left alone rebirth" + }, + { + "appid": 1576660, + "normalized_name": "playbook" + }, + { + "appid": 1576720, + "normalized_name": "armageddon empires" + }, + { + "appid": 1576740, + "normalized_name": "one escape" + }, + { + "appid": 1576750, + "normalized_name": "gravity run" + }, + { + "appid": 1576770, + "normalized_name": "superhero recruitment simulator" + }, + { + "appid": 1576780, + "normalized_name": "wwii online chokepoint" + }, + { + "appid": 1576790, + "normalized_name": "fps tactics" + }, + { + "appid": 1576840, + "normalized_name": "ball challenge" + }, + { + "appid": 1576850, + "normalized_name": "vr masturbate" + }, + { + "appid": 1576860, + "normalized_name": "last dance" + }, + { + "appid": 1576880, + "normalized_name": "synthbiotic dungeon" + }, + { + "appid": 1576900, + "normalized_name": "spirit bounce" + }, + { + "appid": 1576910, + "normalized_name": "hellgate vr" + }, + { + "appid": 1576920, + "normalized_name": "spawn kings" + }, + { + "appid": 1576930, + "normalized_name": "man of the world" + }, + { + "appid": 1576950, + "normalized_name": "legend of heroes eternal arena" + }, + { + "appid": 1576960, + "normalized_name": "world order" + }, + { + "appid": 1576970, + "normalized_name": "the lost king of avallon" + }, + { + "appid": 1576980, + "normalized_name": "answer me" + }, + { + "appid": 1576990, + "normalized_name": "super metboy!" + }, + { + "appid": 1577050, + "normalized_name": "hijack overdrive" + }, + { + "appid": 1577080, + "normalized_name": "classic racers elite" + }, + { + "appid": 1577120, + "normalized_name": "the quarry" + }, + { + "appid": 1577140, + "normalized_name": "tetrix 3d" + }, + { + "appid": 1577150, + "normalized_name": "tafl champions ancient chess" + }, + { + "appid": 1577160, + "normalized_name": "hentai princess" + }, + { + "appid": 1577180, + "normalized_name": "everless" + }, + { + "appid": 1577230, + "normalized_name": "city of atlantis" + }, + { + "appid": 1577240, + "normalized_name": "cions of vega" + }, + { + "appid": 1577250, + "normalized_name": "the chant" + }, + { + "appid": 1577260, + "normalized_name": "dininho adventures" + }, + { + "appid": 1577280, + "normalized_name": "chicken holmes the mystery of bartolomeu" + }, + { + "appid": 1577320, + "normalized_name": "somewhere in the shadow" + }, + { + "appid": 1577350, + "normalized_name": "the black hole" + }, + { + "appid": 1577380, + "normalized_name": "maze workout lost urban exit game trials2" + }, + { + "appid": 1577410, + "normalized_name": "knights of grumthorr 2" + }, + { + "appid": 1577420, + "normalized_name": "love sucks night one" + }, + { + "appid": 1577450, + "normalized_name": "nyaa kuza!!" + }, + { + "appid": 1577460, + "normalized_name": "gamble tower" + }, + { + "appid": 1577470, + "normalized_name": "straya" + }, + { + "appid": 1577510, + "normalized_name": "the wickie journey of a lighthouse keeper" + }, + { + "appid": 1577530, + "normalized_name": "spider robots war" + }, + { + "appid": 1577560, + "normalized_name": "rogue north" + }, + { + "appid": 1577570, + "normalized_name": "juno's journey" + }, + { + "appid": 1577590, + "normalized_name": "pineapple island" + }, + { + "appid": 1577610, + "normalized_name": "浓缩的人生模拟器" + }, + { + "appid": 1577620, + "normalized_name": "the signal state" + }, + { + "appid": 1577630, + "normalized_name": "speed" + }, + { + "appid": 1577660, + "normalized_name": "trash quest" + }, + { + "appid": 1577680, + "normalized_name": "neon gravel" + }, + { + "appid": 1577690, + "normalized_name": "video game fables" + }, + { + "appid": 1577700, + "normalized_name": "soul challenge" + }, + { + "appid": 1577730, + "normalized_name": "knight princess eris" + }, + { + "appid": 1577750, + "normalized_name": "hamster all stars" + }, + { + "appid": 1577810, + "normalized_name": "shootout(systemd)" + }, + { + "appid": 1577860, + "normalized_name": "code lab(代码实验室)" + }, + { + "appid": 1577880, + "normalized_name": "lunar lich/月球巫妖" + }, + { + "appid": 1577900, + "normalized_name": "contact me" + }, + { + "appid": 1577910, + "normalized_name": "ghost cash collect" + }, + { + "appid": 1577940, + "normalized_name": "redaxium" + }, + { + "appid": 1577970, + "normalized_name": "gordon adventure" + }, + { + "appid": 1577990, + "normalized_name": "robo worms" + }, + { + "appid": 1578020, + "normalized_name": "rat race" + }, + { + "appid": 1578050, + "normalized_name": "fatal core" + }, + { + "appid": 1578060, + "normalized_name": "mastho is together" + }, + { + "appid": 1578070, + "normalized_name": "fish feast" + }, + { + "appid": 1578080, + "normalized_name": "deadluck" + }, + { + "appid": 1578100, + "normalized_name": "百合籠" + }, + { + "appid": 1578110, + "normalized_name": "god of riffs battle for the metalverse" + }, + { + "appid": 1578150, + "normalized_name": "all the king's men" + }, + { + "appid": 1578160, + "normalized_name": "bots are stupid" + }, + { + "appid": 1578170, + "normalized_name": "brytag studio" + }, + { + "appid": 1578220, + "normalized_name": "mister furry hot muscles" + }, + { + "appid": 1578240, + "normalized_name": "sex instructor yoga vice city" + }, + { + "appid": 1578250, + "normalized_name": "warplane inc." + }, + { + "appid": 1578270, + "normalized_name": "love notes" + }, + { + "appid": 1578280, + "normalized_name": "纸上谈兵模拟器" + }, + { + "appid": 1578290, + "normalized_name": "pixel fixel" + }, + { + "appid": 1578300, + "normalized_name": "race total toon race" + }, + { + "appid": 1578330, + "normalized_name": "doki doki ragnarok" + }, + { + "appid": 1578340, + "normalized_name": "bule form" + }, + { + "appid": 1578380, + "normalized_name": "10k & the kriminal world sammy's attack" + }, + { + "appid": 1578390, + "normalized_name": "my garage" + }, + { + "appid": 1578410, + "normalized_name": "aviano" + }, + { + "appid": 1578430, + "normalized_name": "chat with yu" + }, + { + "appid": 1578440, + "normalized_name": "quietmansion1" + }, + { + "appid": 1578450, + "normalized_name": "with last breath" + }, + { + "appid": 1578470, + "normalized_name": "hide seek survive" + }, + { + "appid": 1578500, + "normalized_name": "starless" + }, + { + "appid": 1578520, + "normalized_name": "samurai zero" + }, + { + "appid": 1578540, + "normalized_name": "a night before the deadline" + }, + { + "appid": 1578550, + "normalized_name": "aero battle" + }, + { + "appid": 1578570, + "normalized_name": "destroy geometric shapes" + }, + { + "appid": 1578650, + "normalized_name": "citizen sleeper" + }, + { + "appid": 1578660, + "normalized_name": "80s volleyball" + }, + { + "appid": 1578700, + "normalized_name": "fruit row" + }, + { + "appid": 1578710, + "normalized_name": "reditum" + }, + { + "appid": 1578720, + "normalized_name": "scrabdackle" + }, + { + "appid": 1578730, + "normalized_name": "particulights" + }, + { + "appid": 1578750, + "normalized_name": "endless furry asteroids" + }, + { + "appid": 1578760, + "normalized_name": "ember knight solitaire" + }, + { + "appid": 1578860, + "normalized_name": "亿万恋人 billionaire lovers" + }, + { + "appid": 1578870, + "normalized_name": "shadowman darque legacy" + }, + { + "appid": 1578880, + "normalized_name": "grammarian ltd" + }, + { + "appid": 1578890, + "normalized_name": "murder at midnight" + }, + { + "appid": 1578900, + "normalized_name": "jelly party fire" + }, + { + "appid": 1578920, + "normalized_name": "cratetastrophe" + }, + { + "appid": 1578940, + "normalized_name": "vampire clans" + }, + { + "appid": 1578950, + "normalized_name": "lady in mystery" + }, + { + "appid": 1578960, + "normalized_name": "var exterminate" + }, + { + "appid": 1578970, + "normalized_name": "just a guy" + }, + { + "appid": 1578990, + "normalized_name": "midnight girl" + }, + { + "appid": 1579000, + "normalized_name": "super head ball" + }, + { + "appid": 1579010, + "normalized_name": "狗蛋神冒险 搞笑的声控冒险" + }, + { + "appid": 1579020, + "normalized_name": "golfie" + }, + { + "appid": 1579030, + "normalized_name": "caveman" + }, + { + "appid": 1579100, + "normalized_name": "dungeon and gravestone" + }, + { + "appid": 1579120, + "normalized_name": "yupitergrad 🚀 sneaki peaki (virtual reality adventure)" + }, + { + "appid": 1579140, + "normalized_name": "trolley simulator" + }, + { + "appid": 1579170, + "normalized_name": "hentai muse" + }, + { + "appid": 1579190, + "normalized_name": "daenerys miracle" + }, + { + "appid": 1579200, + "normalized_name": "renova" + }, + { + "appid": 1579210, + "normalized_name": "riot control simulator" + }, + { + "appid": 1579250, + "normalized_name": "tactical battle chronicles prelude to a war" + }, + { + "appid": 1579260, + "normalized_name": "disc golf valley vr" + }, + { + "appid": 1579270, + "normalized_name": "triadino" + }, + { + "appid": 1579280, + "normalized_name": "the last worker" + }, + { + "appid": 1579300, + "normalized_name": "birb café" + }, + { + "appid": 1579310, + "normalized_name": "light infantry" + }, + { + "appid": 1579320, + "normalized_name": "futanari of the amazon" + }, + { + "appid": 1579330, + "normalized_name": "of pawns & kings" + }, + { + "appid": 1579340, + "normalized_name": "survive the fall" + }, + { + "appid": 1579380, + "normalized_name": "shadow tactics aiko's choice" + }, + { + "appid": 1579390, + "normalized_name": "spiral" + }, + { + "appid": 1579450, + "normalized_name": "dvorec" + }, + { + "appid": 1579490, + "normalized_name": "dangerous chris" + }, + { + "appid": 1579530, + "normalized_name": "rebound raver" + }, + { + "appid": 1579550, + "normalized_name": "deerstalker" + }, + { + "appid": 1579570, + "normalized_name": "champion battlegrounds" + }, + { + "appid": 1579610, + "normalized_name": "ragdoll funhouse" + }, + { + "appid": 1579650, + "normalized_name": "nullptr" + }, + { + "appid": 1579660, + "normalized_name": "wyvia" + }, + { + "appid": 1579680, + "normalized_name": "host 714" + }, + { + "appid": 1579690, + "normalized_name": "void surfer" + }, + { + "appid": 1579710, + "normalized_name": "naàra contos de resistência" + }, + { + "appid": 1579720, + "normalized_name": "sol dorado heist" + }, + { + "appid": 1579780, + "normalized_name": "brave deeds of rescue team" + }, + { + "appid": 1579800, + "normalized_name": "hundreds of mysteries wendy's home2" + }, + { + "appid": 1579850, + "normalized_name": "夏まつりのハナビィ hanaby's summer festival" + }, + { + "appid": 1579880, + "normalized_name": "the light brigade" + }, + { + "appid": 1579890, + "normalized_name": "无限世界 轮回小队" + }, + { + "appid": 1579920, + "normalized_name": "opportunity a sugar baby story" + }, + { + "appid": 1579950, + "normalized_name": "mythos ever after a cthulhu dating sim rx" + }, + { + "appid": 1580010, + "normalized_name": "humans connect" + }, + { + "appid": 1580020, + "normalized_name": "mimesis prop hunt hide and seek" + }, + { + "appid": 1580030, + "normalized_name": "gnomepunk" + }, + { + "appid": 1580040, + "normalized_name": "trial of two" + }, + { + "appid": 1580090, + "normalized_name": "galaxy one" + }, + { + "appid": 1580140, + "normalized_name": "tiddy bounce" + }, + { + "appid": 1580150, + "normalized_name": "between time escape room" + }, + { + "appid": 1580180, + "normalized_name": "gunbrella" + }, + { + "appid": 1580210, + "normalized_name": "cute dark elves" + }, + { + "appid": 1580240, + "normalized_name": "rune factory 4 special" + }, + { + "appid": 1580250, + "normalized_name": "pearls of the oceans" + }, + { + "appid": 1580260, + "normalized_name": "agoraphobia \"knock knock\"" + }, + { + "appid": 1580290, + "normalized_name": "mad cart" + }, + { + "appid": 1580300, + "normalized_name": "witchcraft u" + }, + { + "appid": 1580330, + "normalized_name": "cosmica" + }, + { + "appid": 1580340, + "normalized_name": "aventura pisicului pierdut" + }, + { + "appid": 1580380, + "normalized_name": "descent vector space runner" + }, + { + "appid": 1580420, + "normalized_name": "ambidextrous psychopath" + }, + { + "appid": 1580430, + "normalized_name": "seaport tycoon" + }, + { + "appid": 1580440, + "normalized_name": "the lastonesleft" + }, + { + "appid": 1580460, + "normalized_name": "godspell defender" + }, + { + "appid": 1580480, + "normalized_name": "girls guns and zombies" + }, + { + "appid": 1580500, + "normalized_name": "cardlike" + }, + { + "appid": 1580510, + "normalized_name": "vr fighter jets war" + }, + { + "appid": 1580520, + "normalized_name": "lost eidolons" + }, + { + "appid": 1580560, + "normalized_name": "puzzledorf" + }, + { + "appid": 1580570, + "normalized_name": "blokker" + }, + { + "appid": 1580600, + "normalized_name": "hunted kobayashi tower" + }, + { + "appid": 1580640, + "normalized_name": "银魂:silver soul" + }, + { + "appid": 1580750, + "normalized_name": "g modeアーカイブス01 フライハイトクラウディア" + }, + { + "appid": 1580770, + "normalized_name": "high&low~めざせ!26連勝!5000兆円への道~" + }, + { + "appid": 1580780, + "normalized_name": "[ninja gaiden master collection] ninja gaiden σ" + }, + { + "appid": 1580790, + "normalized_name": "[ninja gaiden master collection] ninja gaiden σ2" + }, + { + "appid": 1580800, + "normalized_name": "erannorth chronicles" + }, + { + "appid": 1580830, + "normalized_name": "lovengrad" + }, + { + "appid": 1580850, + "normalized_name": "escape abstraction" + }, + { + "appid": 1580860, + "normalized_name": "it's not rocket science!" + }, + { + "appid": 1580870, + "normalized_name": "thief shop" + }, + { + "appid": 1580890, + "normalized_name": "save the heart planet" + }, + { + "appid": 1580950, + "normalized_name": "kanojo xx switch" + }, + { + "appid": 1580960, + "normalized_name": "the trigger" + }, + { + "appid": 1580970, + "normalized_name": "samorost 1" + }, + { + "appid": 1580980, + "normalized_name": "the floor is [blank]" + }, + { + "appid": 1580990, + "normalized_name": "manipulator i the hand behind" + }, + { + "appid": 1581010, + "normalized_name": "haunted house the murder" + }, + { + "appid": 1581040, + "normalized_name": "el shaddai ascension of the metatron hd remaster" + }, + { + "appid": 1581050, + "normalized_name": "memento infernum" + }, + { + "appid": 1581060, + "normalized_name": "dipod the foot legacy" + }, + { + "appid": 1581070, + "normalized_name": "lock lock farm" + }, + { + "appid": 1581080, + "normalized_name": "food delivery service" + }, + { + "appid": 1581090, + "normalized_name": "kupechestvo" + }, + { + "appid": 1581100, + "normalized_name": "bittersweet birthday" + }, + { + "appid": 1581150, + "normalized_name": "enemy engaged apache vs havoc" + }, + { + "appid": 1581170, + "normalized_name": "百年王国" + }, + { + "appid": 1581180, + "normalized_name": "my waifu guild" + }, + { + "appid": 1581200, + "normalized_name": "enemy engaged 2 desert operations" + }, + { + "appid": 1581210, + "normalized_name": "sword princess amaltea the visual novel" + }, + { + "appid": 1581220, + "normalized_name": "l.s.d. prologue to lasting spiritual derangement" + }, + { + "appid": 1581240, + "normalized_name": "der geisterjäger / the ghost hunter" + }, + { + "appid": 1581250, + "normalized_name": "a nerd who has sex with girls in \"another world\" has become a hero" + }, + { + "appid": 1581280, + "normalized_name": "combat labs" + }, + { + "appid": 1581300, + "normalized_name": "the great menace" + }, + { + "appid": 1581310, + "normalized_name": "dark runner" + }, + { + "appid": 1581320, + "normalized_name": "earth guard egypt" + }, + { + "appid": 1581380, + "normalized_name": "survive into night" + }, + { + "appid": 1581410, + "normalized_name": "k.o. cult" + }, + { + "appid": 1581420, + "normalized_name": "pets no more" + }, + { + "appid": 1581440, + "normalized_name": "quadricolor ultra sentai color ranger" + }, + { + "appid": 1581470, + "normalized_name": "haru" + }, + { + "appid": 1581480, + "normalized_name": "humanity" + }, + { + "appid": 1581490, + "normalized_name": "the phantom fellows" + }, + { + "appid": 1581500, + "normalized_name": "dragon drop" + }, + { + "appid": 1581580, + "normalized_name": "the legend of bear truck trucker" + }, + { + "appid": 1581590, + "normalized_name": "vr nara park" + }, + { + "appid": 1581600, + "normalized_name": "reconnect" + }, + { + "appid": 1581640, + "normalized_name": "gethaut" + }, + { + "appid": 1581660, + "normalized_name": "loosepo" + }, + { + "appid": 1581670, + "normalized_name": "the five covens" + }, + { + "appid": 1581680, + "normalized_name": "stories of blossom" + }, + { + "appid": 1581700, + "normalized_name": "wild wet west" + }, + { + "appid": 1581720, + "normalized_name": "operation thunder" + }, + { + "appid": 1581740, + "normalized_name": "kosmo laika guide to space" + }, + { + "appid": 1581760, + "normalized_name": "诗酒剑江湖" + }, + { + "appid": 1581770, + "normalized_name": "spellforce conquest of eo" + }, + { + "appid": 1581790, + "normalized_name": "mystery at morgoth" + }, + { + "appid": 1581800, + "normalized_name": "slow living with princess" + }, + { + "appid": 1581830, + "normalized_name": "super sunny island" + }, + { + "appid": 1581850, + "normalized_name": "online retro tennis" + }, + { + "appid": 1581860, + "normalized_name": "unlocked" + }, + { + "appid": 1581880, + "normalized_name": "super mega zero" + }, + { + "appid": 1581890, + "normalized_name": "the magic of three" + }, + { + "appid": 1581950, + "normalized_name": "buriedbornes2 dungeon rpg" + }, + { + "appid": 1581990, + "normalized_name": "memorize v" + }, + { + "appid": 1582070, + "normalized_name": "the forgotten isles" + }, + { + "appid": 1582090, + "normalized_name": "wild wild chess" + }, + { + "appid": 1582120, + "normalized_name": "a couple of cubes" + }, + { + "appid": 1582130, + "normalized_name": "parallax tunnel" + }, + { + "appid": 1582160, + "normalized_name": "rounded hills" + }, + { + "appid": 1582180, + "normalized_name": "hello puppets midnight show" + }, + { + "appid": 1582200, + "normalized_name": "sanctuary saga" + }, + { + "appid": 1582210, + "normalized_name": "fast finger rule" + }, + { + "appid": 1582260, + "normalized_name": "color pixel heroes" + }, + { + "appid": 1582280, + "normalized_name": "sleepy sunday" + }, + { + "appid": 1582290, + "normalized_name": "lumbearjack" + }, + { + "appid": 1582300, + "normalized_name": "all out war welcome to the front" + }, + { + "appid": 1582310, + "normalized_name": "irene.house" + }, + { + "appid": 1582320, + "normalized_name": "corduroy hollow" + }, + { + "appid": 1582380, + "normalized_name": "midautumn" + }, + { + "appid": 1582410, + "normalized_name": "manafinder" + }, + { + "appid": 1582510, + "normalized_name": "mercenaries blaze" + }, + { + "appid": 1582570, + "normalized_name": "the little red lie" + }, + { + "appid": 1582600, + "normalized_name": "the palace on the hill prologue" + }, + { + "appid": 1582610, + "normalized_name": "asv trident" + }, + { + "appid": 1582630, + "normalized_name": "bike baron 2 the art of riding" + }, + { + "appid": 1582650, + "normalized_name": "caravan sandwitch" + }, + { + "appid": 1582680, + "normalized_name": "trolley problem inc." + }, + { + "appid": 1582700, + "normalized_name": "capsule" + }, + { + "appid": 1582720, + "normalized_name": "recapture the castle" + }, + { + "appid": 1582730, + "normalized_name": "abyss memory fallen angel and the path of magic" + }, + { + "appid": 1582740, + "normalized_name": "reknum cheri dreamland" + }, + { + "appid": 1582760, + "normalized_name": "reknum fantasy of dreams" + }, + { + "appid": 1582780, + "normalized_name": "musketeer of the hell" + }, + { + "appid": 1582800, + "normalized_name": "incarnata dormant stories" + }, + { + "appid": 1582810, + "normalized_name": "alien wall" + }, + { + "appid": 1582850, + "normalized_name": "retro machina nucleonics" + }, + { + "appid": 1582870, + "normalized_name": "slickpoo the clown" + }, + { + "appid": 1582890, + "normalized_name": "my catgirl maid thinks she runs the place" + }, + { + "appid": 1582900, + "normalized_name": "rise of the slime prologue" + }, + { + "appid": 1582950, + "normalized_name": "cinemoji" + }, + { + "appid": 1582960, + "normalized_name": "bullets squared" + }, + { + "appid": 1582980, + "normalized_name": "space box battle arena" + }, + { + "appid": 1582990, + "normalized_name": "blon" + }, + { + "appid": 1583000, + "normalized_name": "theofil" + }, + { + "appid": 1583020, + "normalized_name": "bunker survival" + }, + { + "appid": 1583060, + "normalized_name": "popop!" + }, + { + "appid": 1583070, + "normalized_name": "landing confirmed" + }, + { + "appid": 1583080, + "normalized_name": "professor crackbrain and the awakening of the weredog" + }, + { + "appid": 1583090, + "normalized_name": "girl.exe" + }, + { + "appid": 1583130, + "normalized_name": "replicators defence" + }, + { + "appid": 1583140, + "normalized_name": "war mines ww2" + }, + { + "appid": 1583170, + "normalized_name": "herder" + }, + { + "appid": 1583180, + "normalized_name": "super vili" + }, + { + "appid": 1583190, + "normalized_name": "space explore" + }, + { + "appid": 1583210, + "normalized_name": "the legend of fjarri" + }, + { + "appid": 1583230, + "normalized_name": "high on life" + }, + { + "appid": 1583240, + "normalized_name": "best elf" + }, + { + "appid": 1583280, + "normalized_name": "hog hunter 2021" + }, + { + "appid": 1583290, + "normalized_name": "which wizard?" + }, + { + "appid": 1583300, + "normalized_name": "cute girls find secrets" + }, + { + "appid": 1583320, + "normalized_name": "pro soccer online" + }, + { + "appid": 1583330, + "normalized_name": "graag" + }, + { + "appid": 1583360, + "normalized_name": "celestial tear lost world" + }, + { + "appid": 1583370, + "normalized_name": "in marte the first moon" + }, + { + "appid": 1583390, + "normalized_name": "meat beating no more horny" + }, + { + "appid": 1583410, + "normalized_name": "hamster" + }, + { + "appid": 1583450, + "normalized_name": "burnt ashes" + }, + { + "appid": 1583500, + "normalized_name": "eternal dread 3" + }, + { + "appid": 1583520, + "normalized_name": "under the island" + }, + { + "appid": 1583530, + "normalized_name": "crazy indian" + }, + { + "appid": 1583540, + "normalized_name": "meco rocket simulator" + }, + { + "appid": 1583570, + "normalized_name": "симулятор одиночества в русской деревне" + }, + { + "appid": 1583590, + "normalized_name": "blackout" + }, + { + "appid": 1583600, + "normalized_name": "gambling time machine" + }, + { + "appid": 1583610, + "normalized_name": "soulbound steel" + }, + { + "appid": 1583630, + "normalized_name": "treasure of barracuda" + }, + { + "appid": 1583650, + "normalized_name": "beautiful girls" + }, + { + "appid": 1583660, + "normalized_name": "shiba inu rescue" + }, + { + "appid": 1583670, + "normalized_name": "卡牌冒险者" + }, + { + "appid": 1583690, + "normalized_name": "elijah and the out of this world adventure" + }, + { + "appid": 1583710, + "normalized_name": "the last poem" + }, + { + "appid": 1583730, + "normalized_name": "finddark" + }, + { + "appid": 1583770, + "normalized_name": "play an interactive piece" + }, + { + "appid": 1583780, + "normalized_name": "dragon hunters" + }, + { + "appid": 1583820, + "normalized_name": "z company" + }, + { + "appid": 1583830, + "normalized_name": "little octopus" + }, + { + "appid": 1583840, + "normalized_name": "r naught" + }, + { + "appid": 1583850, + "normalized_name": "asleep ato 1" + }, + { + "appid": 1583870, + "normalized_name": "strip black jack sex bunny" + }, + { + "appid": 1583880, + "normalized_name": "mind shadows" + }, + { + "appid": 1583900, + "normalized_name": "m.a.r.s.s." + }, + { + "appid": 1583910, + "normalized_name": "tic tac together" + }, + { + "appid": 1583950, + "normalized_name": "brian the brain" + }, + { + "appid": 1583960, + "normalized_name": "vr dream girl" + }, + { + "appid": 1583990, + "normalized_name": "awakening the light" + }, + { + "appid": 1584040, + "normalized_name": "astonia resurgence" + }, + { + "appid": 1584050, + "normalized_name": "欲望之花" + }, + { + "appid": 1584060, + "normalized_name": "battle guns simulator" + }, + { + "appid": 1584070, + "normalized_name": "commandment #7 thou should not kill" + }, + { + "appid": 1584080, + "normalized_name": "stitched mother's nightmare" + }, + { + "appid": 1584090, + "normalized_name": "东方夜雀食堂 touhou mystia's izakaya" + }, + { + "appid": 1584140, + "normalized_name": "打工人:美香" + }, + { + "appid": 1584150, + "normalized_name": "hentai beach girls" + }, + { + "appid": 1584170, + "normalized_name": "block machine" + }, + { + "appid": 1584190, + "normalized_name": "hungry dino" + }, + { + "appid": 1584200, + "normalized_name": "tag royale" + }, + { + "appid": 1584210, + "normalized_name": "forklift 2024 the simulation" + }, + { + "appid": 1584240, + "normalized_name": "neden" + }, + { + "appid": 1584280, + "normalized_name": "steel salvo" + }, + { + "appid": 1584300, + "normalized_name": "myfloppy online!" + }, + { + "appid": 1584320, + "normalized_name": "eternal war" + }, + { + "appid": 1584330, + "normalized_name": "beth the exhibitionist" + }, + { + "appid": 1584340, + "normalized_name": "space ship drift" + }, + { + "appid": 1584350, + "normalized_name": "battle for sea 3d" + }, + { + "appid": 1584360, + "normalized_name": "labyrinth hearts" + }, + { + "appid": 1584410, + "normalized_name": "wicked lands" + }, + { + "appid": 1584420, + "normalized_name": "russian mailman simulator" + }, + { + "appid": 1584430, + "normalized_name": "baron magic" + }, + { + "appid": 1584440, + "normalized_name": "where is my mom" + }, + { + "appid": 1584450, + "normalized_name": "rooten" + }, + { + "appid": 1584460, + "normalized_name": "melody of seasons" + }, + { + "appid": 1584500, + "normalized_name": "spacey vade" + }, + { + "appid": 1584530, + "normalized_name": "elevated" + }, + { + "appid": 1584540, + "normalized_name": "perseverance mission astronaut charlie" + }, + { + "appid": 1584630, + "normalized_name": "rescueteam" + }, + { + "appid": 1584660, + "normalized_name": "aquarist my first job" + }, + { + "appid": 1584680, + "normalized_name": "medieval machines builder" + }, + { + "appid": 1584690, + "normalized_name": "trinitys" + }, + { + "appid": 1584720, + "normalized_name": "devil it's me" + }, + { + "appid": 1584750, + "normalized_name": "cloud cutter" + }, + { + "appid": 1584770, + "normalized_name": "green phoenix" + }, + { + "appid": 1584800, + "normalized_name": "dark frame" + }, + { + "appid": 1584810, + "normalized_name": "plan a" + }, + { + "appid": 1584820, + "normalized_name": "the hero we need" + }, + { + "appid": 1584830, + "normalized_name": "duck creator" + }, + { + "appid": 1584840, + "normalized_name": "against" + }, + { + "appid": 1584860, + "normalized_name": "jumpbeard" + }, + { + "appid": 1584900, + "normalized_name": "faerie's bargain the price of business" + }, + { + "appid": 1584920, + "normalized_name": "hungry galaxies" + }, + { + "appid": 1584940, + "normalized_name": "lakeburg legacies" + }, + { + "appid": 1584950, + "normalized_name": "park story" + }, + { + "appid": 1584970, + "normalized_name": "lost in labs" + }, + { + "appid": 1584980, + "normalized_name": "warhammer quest silver tower" + }, + { + "appid": 1585020, + "normalized_name": "junkpunk" + }, + { + "appid": 1585030, + "normalized_name": "dark forest lost story vr" + }, + { + "appid": 1585040, + "normalized_name": "death upon us" + }, + { + "appid": 1585050, + "normalized_name": "cliffhanger challenger of tomorrow" + }, + { + "appid": 1585100, + "normalized_name": "snow war" + }, + { + "appid": 1585120, + "normalized_name": "the cryptologist room" + }, + { + "appid": 1585130, + "normalized_name": "versus the deathscapes" + }, + { + "appid": 1585160, + "normalized_name": "secrets of egypt" + }, + { + "appid": 1585180, + "normalized_name": "drova forsaken kin" + }, + { + "appid": 1585200, + "normalized_name": "mechanest" + }, + { + "appid": 1585220, + "normalized_name": "melatonin" + }, + { + "appid": 1585230, + "normalized_name": "corepiercer" + }, + { + "appid": 1585240, + "normalized_name": "dead ice" + }, + { + "appid": 1585250, + "normalized_name": "the space between" + }, + { + "appid": 1585310, + "normalized_name": "restart zero" + }, + { + "appid": 1585330, + "normalized_name": "survival z" + }, + { + "appid": 1585340, + "normalized_name": "stellar raid" + }, + { + "appid": 1585360, + "normalized_name": "live/wire" + }, + { + "appid": 1585370, + "normalized_name": "throb of lovegirl a ero waifu td" + }, + { + "appid": 1585390, + "normalized_name": "code zero" + }, + { + "appid": 1585400, + "normalized_name": "gjallarhorn" + }, + { + "appid": 1585410, + "normalized_name": "city of stolen worlds" + }, + { + "appid": 1585430, + "normalized_name": "long drive island" + }, + { + "appid": 1585440, + "normalized_name": "they always run" + }, + { + "appid": 1585450, + "normalized_name": "furry shakespeare to date or not to date spooky cat girls?" + }, + { + "appid": 1585460, + "normalized_name": "furry shakespeare oops! all dragons!" + }, + { + "appid": 1585500, + "normalized_name": "jay's walkin'" + }, + { + "appid": 1585530, + "normalized_name": "gw legacy" + }, + { + "appid": 1585540, + "normalized_name": "snow swept quest" + }, + { + "appid": 1585570, + "normalized_name": "职场狂想曲" + }, + { + "appid": 1585590, + "normalized_name": "virtualrehabart4health" + }, + { + "appid": 1585640, + "normalized_name": "aquillanto" + }, + { + "appid": 1585650, + "normalized_name": "orbwars" + }, + { + "appid": 1585660, + "normalized_name": "direct shot" + }, + { + "appid": 1585680, + "normalized_name": "mini crafty" + }, + { + "appid": 1585700, + "normalized_name": "trap genesis" + }, + { + "appid": 1585720, + "normalized_name": "cliffsides" + }, + { + "appid": 1585730, + "normalized_name": "backbeat" + }, + { + "appid": 1585750, + "normalized_name": "dwarves build and survive" + }, + { + "appid": 1585830, + "normalized_name": "quickly quackley!" + }, + { + "appid": 1585910, + "normalized_name": "roll" + }, + { + "appid": 1585920, + "normalized_name": "don't blink" + }, + { + "appid": 1585930, + "normalized_name": "pure bowl vr bowling" + }, + { + "appid": 1585990, + "normalized_name": "darkwaronline" + }, + { + "appid": 1586010, + "normalized_name": "dream catchers" + }, + { + "appid": 1586040, + "normalized_name": "trails and traces the tomb of thomas tew" + }, + { + "appid": 1586050, + "normalized_name": "cybersex 2069" + }, + { + "appid": 1586070, + "normalized_name": "wild runs" + }, + { + "appid": 1586090, + "normalized_name": "the most boring life ever" + }, + { + "appid": 1586110, + "normalized_name": "temple of hue" + }, + { + "appid": 1586120, + "normalized_name": "becoming" + }, + { + "appid": 1586150, + "normalized_name": "ephesus" + }, + { + "appid": 1586220, + "normalized_name": "click to eleven" + }, + { + "appid": 1586230, + "normalized_name": "jogward" + }, + { + "appid": 1586240, + "normalized_name": "pro deer hunting 2" + }, + { + "appid": 1586260, + "normalized_name": "blackfrost the long dark 2" + }, + { + "appid": 1586270, + "normalized_name": "katja's abyss tactics" + }, + { + "appid": 1586290, + "normalized_name": "carnal" + }, + { + "appid": 1586300, + "normalized_name": "jacob the farmer" + }, + { + "appid": 1586330, + "normalized_name": "weerpg" + }, + { + "appid": 1586340, + "normalized_name": "a new leaf memories" + }, + { + "appid": 1586350, + "normalized_name": "neogeo pocket color selection vol. 1 steam" + }, + { + "appid": 1586370, + "normalized_name": "anopek" + }, + { + "appid": 1586470, + "normalized_name": "happy animal testing" + }, + { + "appid": 1586510, + "normalized_name": "clessidra" + }, + { + "appid": 1586530, + "normalized_name": "super soccer blast america vs europe" + }, + { + "appid": 1586540, + "normalized_name": "super techpack" + }, + { + "appid": 1586570, + "normalized_name": "勇者大冒险" + }, + { + "appid": 1586620, + "normalized_name": "robot.start puzzle game" + }, + { + "appid": 1586660, + "normalized_name": "midnight stories" + }, + { + "appid": 1586680, + "normalized_name": "david get keen" + }, + { + "appid": 1586700, + "normalized_name": "marsupilami hoobadventure" + }, + { + "appid": 1586710, + "normalized_name": "cafe maid hentai" + }, + { + "appid": 1586740, + "normalized_name": "ratomon" + }, + { + "appid": 1586750, + "normalized_name": "two strikes" + }, + { + "appid": 1586800, + "normalized_name": "lil gator game" + }, + { + "appid": 1586820, + "normalized_name": "the list" + }, + { + "appid": 1586830, + "normalized_name": "toy tinker simulator beta" + }, + { + "appid": 1586840, + "normalized_name": "ppl" + }, + { + "appid": 1586850, + "normalized_name": "hard block girls" + }, + { + "appid": 1586860, + "normalized_name": "bonesaw" + }, + { + "appid": 1586880, + "normalized_name": "essays on empathy" + }, + { + "appid": 1586890, + "normalized_name": "legend of azcarth" + }, + { + "appid": 1586920, + "normalized_name": "freedom's eye" + }, + { + "appid": 1586930, + "normalized_name": "extreme racing" + }, + { + "appid": 1586960, + "normalized_name": "cute bite" + }, + { + "appid": 1586970, + "normalized_name": "install wizard" + }, + { + "appid": 1586980, + "normalized_name": "wilma's dreams" + }, + { + "appid": 1586990, + "normalized_name": "alterium shift" + }, + { + "appid": 1587020, + "normalized_name": "parapsychology" + }, + { + "appid": 1587070, + "normalized_name": "fruits" + }, + { + "appid": 1587090, + "normalized_name": "the journey episode 1 whatever this is" + }, + { + "appid": 1587100, + "normalized_name": "anarchy legends online" + }, + { + "appid": 1587130, + "normalized_name": "blood west" + }, + { + "appid": 1587170, + "normalized_name": "a world to win" + }, + { + "appid": 1587180, + "normalized_name": "a pinch of magic" + }, + { + "appid": 1587190, + "normalized_name": "puzzletronics digital infinite" + }, + { + "appid": 1587200, + "normalized_name": "the omnigallery" + }, + { + "appid": 1587210, + "normalized_name": "cowboys vampires pirates & ghosts" + }, + { + "appid": 1587220, + "normalized_name": "annie and the shadow palace" + }, + { + "appid": 1587240, + "normalized_name": "피피숲의 연금술사" + }, + { + "appid": 1587260, + "normalized_name": "归路:见证 way back witness" + }, + { + "appid": 1587290, + "normalized_name": "謎塔魔女" + }, + { + "appid": 1587300, + "normalized_name": "the islands" + }, + { + "appid": 1587350, + "normalized_name": "build molecules for vick chemistry puzzle" + }, + { + "appid": 1587360, + "normalized_name": "lightedge" + }, + { + "appid": 1587380, + "normalized_name": "little ghost" + }, + { + "appid": 1587390, + "normalized_name": "network" + }, + { + "appid": 1587430, + "normalized_name": "flappy bat" + }, + { + "appid": 1587440, + "normalized_name": "atonal dreams" + }, + { + "appid": 1587460, + "normalized_name": "the rocket stop incident" + }, + { + "appid": 1587490, + "normalized_name": "unending war grand strategy chess" + }, + { + "appid": 1587500, + "normalized_name": "super duper island adventure" + }, + { + "appid": 1587530, + "normalized_name": "rescue friends solitaire" + }, + { + "appid": 1587540, + "normalized_name": "anvil saga" + }, + { + "appid": 1587560, + "normalized_name": "100 hidden cats" + }, + { + "appid": 1587570, + "normalized_name": "completely stretchy" + }, + { + "appid": 1587600, + "normalized_name": "broken veil" + }, + { + "appid": 1587610, + "normalized_name": "little drift" + }, + { + "appid": 1587630, + "normalized_name": "1 hop" + }, + { + "appid": 1587660, + "normalized_name": "奇迹世界 miracle world" + }, + { + "appid": 1587680, + "normalized_name": "marionette lab" + }, + { + "appid": 1587700, + "normalized_name": "the adventures of mr. poop" + }, + { + "appid": 1587710, + "normalized_name": "fossil corner" + }, + { + "appid": 1587770, + "normalized_name": "the temple of" + }, + { + "appid": 1587790, + "normalized_name": "desert parkour" + }, + { + "appid": 1587800, + "normalized_name": "queer and chill" + }, + { + "appid": 1587810, + "normalized_name": "spell swap" + }, + { + "appid": 1587820, + "normalized_name": "million dollars per kilometer" + }, + { + "appid": 1587830, + "normalized_name": "mayu last of the yaksha" + }, + { + "appid": 1587860, + "normalized_name": "let's ride! silver buckle stables" + }, + { + "appid": 1587870, + "normalized_name": "rise of peles" + }, + { + "appid": 1587880, + "normalized_name": "hexed" + }, + { + "appid": 1587910, + "normalized_name": "cube island" + }, + { + "appid": 1587920, + "normalized_name": "undead development 2" + }, + { + "appid": 1587930, + "normalized_name": "flingleberries!" + }, + { + "appid": 1587940, + "normalized_name": "duelvox max quality" + }, + { + "appid": 1587950, + "normalized_name": "jumpin' tanks" + }, + { + "appid": 1587970, + "normalized_name": "arcticboy the interactive story" + }, + { + "appid": 1588000, + "normalized_name": "archer boy" + }, + { + "appid": 1588010, + "normalized_name": "pga tour 2k23" + }, + { + "appid": 1588040, + "normalized_name": "dungeon clicker" + }, + { + "appid": 1588090, + "normalized_name": "rally mechanic simulator" + }, + { + "appid": 1588120, + "normalized_name": "swapout" + }, + { + "appid": 1588130, + "normalized_name": "maze a vr adventure" + }, + { + "appid": 1588140, + "normalized_name": "monkey vs dino" + }, + { + "appid": 1588160, + "normalized_name": "putin vs zombies" + }, + { + "appid": 1588180, + "normalized_name": "wild isles" + }, + { + "appid": 1588190, + "normalized_name": "shatter keep" + }, + { + "appid": 1588200, + "normalized_name": "caught in nowhere" + }, + { + "appid": 1588250, + "normalized_name": "contract killer" + }, + { + "appid": 1588300, + "normalized_name": "tower alchemy" + }, + { + "appid": 1588340, + "normalized_name": "demonlore" + }, + { + "appid": 1588380, + "normalized_name": "blaster master zero 3" + }, + { + "appid": 1588400, + "normalized_name": "spacelines from the far out flight school" + }, + { + "appid": 1588410, + "normalized_name": "hot spring hero" + }, + { + "appid": 1588460, + "normalized_name": "little traveler" + }, + { + "appid": 1588500, + "normalized_name": "rogue sweeper" + }, + { + "appid": 1588510, + "normalized_name": "gaslamp cases the deadly machine" + }, + { + "appid": 1588520, + "normalized_name": "survival epoch" + }, + { + "appid": 1588530, + "normalized_name": "dungeon alchemist" + }, + { + "appid": 1588540, + "normalized_name": "special force legion of monsters" + }, + { + "appid": 1588550, + "normalized_name": "cairn" + }, + { + "appid": 1588560, + "normalized_name": "the swordsmen x survival" + }, + { + "appid": 1588570, + "normalized_name": "lacuna prologue" + }, + { + "appid": 1588580, + "normalized_name": "little party legends" + }, + { + "appid": 1588590, + "normalized_name": "akyrikon vr" + }, + { + "appid": 1588600, + "normalized_name": "sorcs siege chronicles" + }, + { + "appid": 1588610, + "normalized_name": "beers and boomerangs" + }, + { + "appid": 1588620, + "normalized_name": "orimon.1 bilfy & krotroklon" + }, + { + "appid": 1588670, + "normalized_name": "hammer & potion" + }, + { + "appid": 1588680, + "normalized_name": "deep in the forest" + }, + { + "appid": 1588700, + "normalized_name": "race me now" + }, + { + "appid": 1588730, + "normalized_name": "manascape" + }, + { + "appid": 1588760, + "normalized_name": "switchball hd" + }, + { + "appid": 1588780, + "normalized_name": "laser droplets" + }, + { + "appid": 1588790, + "normalized_name": "puzzle dazzle" + }, + { + "appid": 1588860, + "normalized_name": "festival" + }, + { + "appid": 1588870, + "normalized_name": "iblis" + }, + { + "appid": 1588880, + "normalized_name": "seductive tombs" + }, + { + "appid": 1588910, + "normalized_name": "peppy's adventure" + }, + { + "appid": 1588940, + "normalized_name": "storm tale 2" + }, + { + "appid": 1588950, + "normalized_name": "mind blowing girls 2" + }, + { + "appid": 1589010, + "normalized_name": "newton's life at home pixel art jigsaw puzzle" + }, + { + "appid": 1589020, + "normalized_name": "pornocrates" + }, + { + "appid": 1589040, + "normalized_name": "fruit juice" + }, + { + "appid": 1589060, + "normalized_name": "vaporpunk" + }, + { + "appid": 1589070, + "normalized_name": "vr bukkake" + }, + { + "appid": 1589080, + "normalized_name": "grim tales trace in time collector's" + }, + { + "appid": 1589120, + "normalized_name": "above snakes" + }, + { + "appid": 1589240, + "normalized_name": "jigsaw jolt neural style 1" + }, + { + "appid": 1589260, + "normalized_name": "happy z day" + }, + { + "appid": 1589270, + "normalized_name": "hexabeat!" + }, + { + "appid": 1589290, + "normalized_name": "kitsu's destiny" + }, + { + "appid": 1589300, + "normalized_name": "lookfordanger" + }, + { + "appid": 1589330, + "normalized_name": "shiro" + }, + { + "appid": 1589340, + "normalized_name": "solo reflection!" + }, + { + "appid": 1589360, + "normalized_name": "starscraper" + }, + { + "appid": 1589370, + "normalized_name": "speedpunk" + }, + { + "appid": 1589380, + "normalized_name": "horatio goes snowboarding" + }, + { + "appid": 1589410, + "normalized_name": "bunny factory" + }, + { + "appid": 1589420, + "normalized_name": "memorize cards" + }, + { + "appid": 1589430, + "normalized_name": "polar penguin" + }, + { + "appid": 1589440, + "normalized_name": "calculate it!" + }, + { + "appid": 1589450, + "normalized_name": "frogiee" + }, + { + "appid": 1589460, + "normalized_name": "little fighters on stream" + }, + { + "appid": 1589470, + "normalized_name": "fantasy inn simulator" + }, + { + "appid": 1589480, + "normalized_name": "inside soccer" + }, + { + "appid": 1589490, + "normalized_name": "meiqi 2022" + }, + { + "appid": 1589500, + "normalized_name": "fate of dynasty" + }, + { + "appid": 1589520, + "normalized_name": "acquiescence" + }, + { + "appid": 1589540, + "normalized_name": "whispers in the dark" + }, + { + "appid": 1589550, + "normalized_name": "le frenchie" + }, + { + "appid": 1589560, + "normalized_name": "box cat bash" + }, + { + "appid": 1589570, + "normalized_name": "dunjungle" + }, + { + "appid": 1589580, + "normalized_name": "small town terrors galdor's bluff collector's" + }, + { + "appid": 1589590, + "normalized_name": "dark survival" + }, + { + "appid": 1589610, + "normalized_name": "the frogs" + }, + { + "appid": 1589660, + "normalized_name": "elwick" + }, + { + "appid": 1589670, + "normalized_name": "bullfrogs" + }, + { + "appid": 1589680, + "normalized_name": "torii" + }, + { + "appid": 1589700, + "normalized_name": "trash" + }, + { + "appid": 1589710, + "normalized_name": "the power latch kid" + }, + { + "appid": 1589720, + "normalized_name": "bloodtype" + }, + { + "appid": 1589730, + "normalized_name": "escape the speedrun game" + }, + { + "appid": 1589760, + "normalized_name": "anima island" + }, + { + "appid": 1589770, + "normalized_name": "engine evolution 2021" + }, + { + "appid": 1589790, + "normalized_name": "after" + }, + { + "appid": 1589820, + "normalized_name": "denari" + }, + { + "appid": 1589830, + "normalized_name": "lords of the darkreign" + }, + { + "appid": 1589860, + "normalized_name": "maybe i can" + }, + { + "appid": 1589880, + "normalized_name": "tower of wishes match 3 puzzle" + }, + { + "appid": 1589890, + "normalized_name": "便利商店6" + }, + { + "appid": 1589920, + "normalized_name": "long ago a puzzle tale" + }, + { + "appid": 1589940, + "normalized_name": "don't ask succubus" + }, + { + "appid": 1589970, + "normalized_name": "colorize inspect" + }, + { + "appid": 1590000, + "normalized_name": "tales of the black death" + }, + { + "appid": 1590020, + "normalized_name": "lasershotz" + }, + { + "appid": 1590030, + "normalized_name": "endless furry ping pong" + }, + { + "appid": 1590070, + "normalized_name": "project hunter" + }, + { + "appid": 1590080, + "normalized_name": "color souls" + }, + { + "appid": 1590100, + "normalized_name": "acras" + }, + { + "appid": 1590130, + "normalized_name": "car drive" + }, + { + "appid": 1590150, + "normalized_name": "alone in the office" + }, + { + "appid": 1590160, + "normalized_name": "liberte" + }, + { + "appid": 1590180, + "normalized_name": "shillelagh" + }, + { + "appid": 1590190, + "normalized_name": "self delusion" + }, + { + "appid": 1590230, + "normalized_name": "tyrion cuthbert attorney of the arcane" + }, + { + "appid": 1590250, + "normalized_name": "junkpunk arena" + }, + { + "appid": 1590260, + "normalized_name": "cube space" + }, + { + "appid": 1590270, + "normalized_name": "partitas" + }, + { + "appid": 1590320, + "normalized_name": "bro falls" + }, + { + "appid": 1590330, + "normalized_name": "lasagna boy" + }, + { + "appid": 1590360, + "normalized_name": "he needs his medicine" + }, + { + "appid": 1590380, + "normalized_name": "bonhomme 7 heures" + }, + { + "appid": 1590390, + "normalized_name": "ace overheat" + }, + { + "appid": 1590420, + "normalized_name": "悠悠猴大冒险" + }, + { + "appid": 1590430, + "normalized_name": "snow daze redaze" + }, + { + "appid": 1590450, + "normalized_name": "omnigrav" + }, + { + "appid": 1590500, + "normalized_name": "before began 开始之前" + }, + { + "appid": 1590570, + "normalized_name": "外兽祭·兽人们的冒险酒馆" + }, + { + "appid": 1590600, + "normalized_name": "oppai academy big bouncy booby babes!" + }, + { + "appid": 1590640, + "normalized_name": "savior of the abyss" + }, + { + "appid": 1590660, + "normalized_name": "mr. hopp's playhouse 2" + }, + { + "appid": 1590670, + "normalized_name": "erotic jigsaw puzzle" + }, + { + "appid": 1590680, + "normalized_name": "pandasg" + }, + { + "appid": 1590700, + "normalized_name": "my military life" + }, + { + "appid": 1590720, + "normalized_name": "the dinosaurs are here" + }, + { + "appid": 1590730, + "normalized_name": "helping the hotties" + }, + { + "appid": 1590750, + "normalized_name": "jars" + }, + { + "appid": 1590760, + "normalized_name": "metal slug tactics" + }, + { + "appid": 1590770, + "normalized_name": "russian pawn store" + }, + { + "appid": 1590840, + "normalized_name": "depths of horror mushroom day" + }, + { + "appid": 1590850, + "normalized_name": "deados" + }, + { + "appid": 1590870, + "normalized_name": "craft & survive" + }, + { + "appid": 1590910, + "normalized_name": "forgive me father" + }, + { + "appid": 1590920, + "normalized_name": "the wave story" + }, + { + "appid": 1590950, + "normalized_name": "namnokh" + }, + { + "appid": 1590970, + "normalized_name": "woebegone woods" + }, + { + "appid": 1591020, + "normalized_name": "run eternal depths" + }, + { + "appid": 1591050, + "normalized_name": "help me please" + }, + { + "appid": 1591130, + "normalized_name": "the station escape room" + }, + { + "appid": 1591140, + "normalized_name": "idle roboto" + }, + { + "appid": 1591150, + "normalized_name": "paranormal detective escape from the 90's" + }, + { + "appid": 1591160, + "normalized_name": "scp undeads winter's" + }, + { + "appid": 1591180, + "normalized_name": "death walk" + }, + { + "appid": 1591200, + "normalized_name": "experience the energy take the tour" + }, + { + "appid": 1591220, + "normalized_name": "tamarak trail" + }, + { + "appid": 1591250, + "normalized_name": "lo fi life" + }, + { + "appid": 1591260, + "normalized_name": "best friend" + }, + { + "appid": 1591280, + "normalized_name": "skyjunk" + }, + { + "appid": 1591290, + "normalized_name": "tree simulator 2022" + }, + { + "appid": 1591300, + "normalized_name": "dear future" + }, + { + "appid": 1591310, + "normalized_name": "world racing '95" + }, + { + "appid": 1591340, + "normalized_name": "night blade" + }, + { + "appid": 1591360, + "normalized_name": "slime kingdom an unlikely adventure!" + }, + { + "appid": 1591380, + "normalized_name": "uncle nook's monster emporium" + }, + { + "appid": 1591410, + "normalized_name": "into the knight" + }, + { + "appid": 1591420, + "normalized_name": "hmmsim metro" + }, + { + "appid": 1591440, + "normalized_name": "中外名将对决" + }, + { + "appid": 1591450, + "normalized_name": "aka" + }, + { + "appid": 1591470, + "normalized_name": "i am the prosecutor no evidence? no problem!" + }, + { + "appid": 1591480, + "normalized_name": "婚怨wedding" + }, + { + "appid": 1591490, + "normalized_name": "distant memoraĵo" + }, + { + "appid": 1591500, + "normalized_name": "猫头鹰和灯塔" + }, + { + "appid": 1591520, + "normalized_name": "clownfield 2042" + }, + { + "appid": 1591530, + "normalized_name": "samurai warriors 5" + }, + { + "appid": 1591540, + "normalized_name": "hard minus classic redux" + }, + { + "appid": 1591560, + "normalized_name": "tiny vikings" + }, + { + "appid": 1591570, + "normalized_name": "mondealy day one" + }, + { + "appid": 1591590, + "normalized_name": "traxion 2" + }, + { + "appid": 1591600, + "normalized_name": "英魂之刃" + }, + { + "appid": 1591630, + "normalized_name": "bone mayhem" + }, + { + "appid": 1591650, + "normalized_name": "go home go home?" + }, + { + "appid": 1591660, + "normalized_name": "冒险时光机" + }, + { + "appid": 1591670, + "normalized_name": "mark & lara partners in justice" + }, + { + "appid": 1591680, + "normalized_name": "open mod 2024.2" + }, + { + "appid": 1591690, + "normalized_name": "deathrun tv" + }, + { + "appid": 1591730, + "normalized_name": "ultreïa prologue" + }, + { + "appid": 1591760, + "normalized_name": "undying symphony" + }, + { + "appid": 1591820, + "normalized_name": "liberty fighters" + }, + { + "appid": 1591840, + "normalized_name": "avoid the demons" + }, + { + "appid": 1591850, + "normalized_name": "wednesday basketball" + }, + { + "appid": 1591870, + "normalized_name": "drift phonk 666" + }, + { + "appid": 1591900, + "normalized_name": "my universe interior designer" + }, + { + "appid": 1591910, + "normalized_name": "the hurt in secret" + }, + { + "appid": 1591950, + "normalized_name": "life winner cong's double dragon dream" + }, + { + "appid": 1591960, + "normalized_name": "randy blaster 3d" + }, + { + "appid": 1592020, + "normalized_name": "demonsions industry" + }, + { + "appid": 1592100, + "normalized_name": "evil wizard" + }, + { + "appid": 1592110, + "normalized_name": "spirit of the island" + }, + { + "appid": 1592120, + "normalized_name": "paladin dream" + }, + { + "appid": 1592160, + "normalized_name": "rainbow reactor fusion" + }, + { + "appid": 1592170, + "normalized_name": "spirit swap lofi beats to match 3 to" + }, + { + "appid": 1592180, + "normalized_name": "shadownest" + }, + { + "appid": 1592190, + "normalized_name": "bonelab" + }, + { + "appid": 1592200, + "normalized_name": "exp war trauma" + }, + { + "appid": 1592230, + "normalized_name": "cards of the dead" + }, + { + "appid": 1592240, + "normalized_name": "zoelie scad games studio" + }, + { + "appid": 1592260, + "normalized_name": "metamorphos" + }, + { + "appid": 1592270, + "normalized_name": "crystal" + }, + { + "appid": 1592280, + "normalized_name": "selaco" + }, + { + "appid": 1592290, + "normalized_name": "paranoia place" + }, + { + "appid": 1592320, + "normalized_name": "aztech forgotten gods" + }, + { + "appid": 1592340, + "normalized_name": "underland the climb" + }, + { + "appid": 1592360, + "normalized_name": "kitten burst" + }, + { + "appid": 1592370, + "normalized_name": "cinemoji oscar" + }, + { + "appid": 1592390, + "normalized_name": "driving simulator 2022" + }, + { + "appid": 1592420, + "normalized_name": "marcella moon curse of the black cat" + }, + { + "appid": 1592450, + "normalized_name": "apples and asteroids" + }, + { + "appid": 1592480, + "normalized_name": "meta sudoku" + }, + { + "appid": 1592490, + "normalized_name": "bloodless" + }, + { + "appid": 1592520, + "normalized_name": "witchspring3 re fine the story of eirudy" + }, + { + "appid": 1592530, + "normalized_name": "blub emporium" + }, + { + "appid": 1592540, + "normalized_name": "loretta" + }, + { + "appid": 1592550, + "normalized_name": "my sweet ants!" + }, + { + "appid": 1592580, + "normalized_name": "offline" + }, + { + "appid": 1592590, + "normalized_name": "border of her heart 2" + }, + { + "appid": 1592600, + "normalized_name": "beasties monster trainer puzzle rpg" + }, + { + "appid": 1592610, + "normalized_name": "the tram of wishes" + }, + { + "appid": 1592640, + "normalized_name": "sakura alien" + }, + { + "appid": 1592650, + "normalized_name": "olobollo" + }, + { + "appid": 1592670, + "normalized_name": "soda crisis" + }, + { + "appid": 1592680, + "normalized_name": "anarchy wolf's law prologue" + }, + { + "appid": 1592710, + "normalized_name": "kolo" + }, + { + "appid": 1592720, + "normalized_name": "garbage crew!" + }, + { + "appid": 1592740, + "normalized_name": "railroad ink challenge" + }, + { + "appid": 1592750, + "normalized_name": "anode heart" + }, + { + "appid": 1592780, + "normalized_name": "elif" + }, + { + "appid": 1592810, + "normalized_name": "lsdriver 1+2 (remastered collection)" + }, + { + "appid": 1592840, + "normalized_name": "come inside my inner world" + }, + { + "appid": 1592860, + "normalized_name": "keezeh the spector of time" + }, + { + "appid": 1592880, + "normalized_name": "sokocat islands" + }, + { + "appid": 1592900, + "normalized_name": "prisonshow" + }, + { + "appid": 1592920, + "normalized_name": "danger in pompeii" + }, + { + "appid": 1592950, + "normalized_name": "deadlokk" + }, + { + "appid": 1592970, + "normalized_name": "colorado cocoa club" + }, + { + "appid": 1592980, + "normalized_name": "the guardian" + }, + { + "appid": 1592990, + "normalized_name": "raccoon arrival" + }, + { + "appid": 1593010, + "normalized_name": "the store is closed" + }, + { + "appid": 1593030, + "normalized_name": "terra nil" + }, + { + "appid": 1593040, + "normalized_name": "belle de nuit" + }, + { + "appid": 1593060, + "normalized_name": "estradabus hd" + }, + { + "appid": 1593080, + "normalized_name": "romance of raskya" + }, + { + "appid": 1593100, + "normalized_name": "earth marines" + }, + { + "appid": 1593160, + "normalized_name": "warp tango" + }, + { + "appid": 1593170, + "normalized_name": "veil of dust a homesteading game" + }, + { + "appid": 1593180, + "normalized_name": "ragnarok chess" + }, + { + "appid": 1593190, + "normalized_name": "lost islands" + }, + { + "appid": 1593210, + "normalized_name": "shinobi's way a jigsaw chess tale" + }, + { + "appid": 1593220, + "normalized_name": "jessie 'boom' james a jigsaw chess tale" + }, + { + "appid": 1593230, + "normalized_name": "beneath" + }, + { + "appid": 1593280, + "normalized_name": "8089 the next action rpg" + }, + { + "appid": 1593310, + "normalized_name": "nekopara catboys paradise" + }, + { + "appid": 1593350, + "normalized_name": "increlution" + }, + { + "appid": 1593370, + "normalized_name": "stickforge" + }, + { + "appid": 1593390, + "normalized_name": "lies under ice" + }, + { + "appid": 1593410, + "normalized_name": "the awakening of mummies" + }, + { + "appid": 1593420, + "normalized_name": "the bronx" + }, + { + "appid": 1593490, + "normalized_name": "rescue operation" + }, + { + "appid": 1593500, + "normalized_name": "god of war" + }, + { + "appid": 1593510, + "normalized_name": "furry finder dating visual novel" + }, + { + "appid": 1593570, + "normalized_name": "zen arts relaxing pendulum paint simulator" + }, + { + "appid": 1593590, + "normalized_name": "ファイヤーエムブレイス~選ばれしチー牛の剣~" + }, + { + "appid": 1593620, + "normalized_name": "trouble inn jonny's room" + }, + { + "appid": 1593650, + "normalized_name": "dash and fire" + }, + { + "appid": 1593660, + "normalized_name": "crime district" + }, + { + "appid": 1593690, + "normalized_name": "彗星(comet)" + }, + { + "appid": 1593700, + "normalized_name": "墨之韵" + }, + { + "appid": 1593730, + "normalized_name": "epiphany city prologue" + }, + { + "appid": 1593750, + "normalized_name": "creatures of aether" + }, + { + "appid": 1593760, + "normalized_name": "chubby bear smash" + }, + { + "appid": 1593780, + "normalized_name": "organs please" + }, + { + "appid": 1593880, + "normalized_name": "specteared" + }, + { + "appid": 1593930, + "normalized_name": "destinies" + }, + { + "appid": 1593950, + "normalized_name": "don't touch this button!" + }, + { + "appid": 1593980, + "normalized_name": "cat sports online" + }, + { + "appid": 1593990, + "normalized_name": "blacksmith village" + }, + { + "appid": 1594010, + "normalized_name": "noah and black magician" + }, + { + "appid": 1594040, + "normalized_name": "wreckreation" + }, + { + "appid": 1594060, + "normalized_name": "victory heat rally" + }, + { + "appid": 1594090, + "normalized_name": "ark mobius" + }, + { + "appid": 1594100, + "normalized_name": "my insect girl can't be this cute" + }, + { + "appid": 1594110, + "normalized_name": "subluminal" + }, + { + "appid": 1594120, + "normalized_name": "dangerous! too sweet!!" + }, + { + "appid": 1594130, + "normalized_name": "excidio the kaiju simulator" + }, + { + "appid": 1594150, + "normalized_name": "looking for imago" + }, + { + "appid": 1594170, + "normalized_name": "rekindle" + }, + { + "appid": 1594190, + "normalized_name": "mini meowcraft" + }, + { + "appid": 1594200, + "normalized_name": "heir obscure a hunt in the dark" + }, + { + "appid": 1594210, + "normalized_name": "chrysalis" + }, + { + "appid": 1594220, + "normalized_name": "big dick at the beach" + }, + { + "appid": 1594280, + "normalized_name": "new america" + }, + { + "appid": 1594290, + "normalized_name": "abridge" + }, + { + "appid": 1594310, + "normalized_name": "midnight ohota" + }, + { + "appid": 1594320, + "normalized_name": "captain of industry" + }, + { + "appid": 1594340, + "normalized_name": "last village" + }, + { + "appid": 1594360, + "normalized_name": "war on mars" + }, + { + "appid": 1594370, + "normalized_name": "no hope" + }, + { + "appid": 1594390, + "normalized_name": "gander national park" + }, + { + "appid": 1594400, + "normalized_name": "gai stops auto right version simulator" + }, + { + "appid": 1594410, + "normalized_name": "hellevator" + }, + { + "appid": 1594420, + "normalized_name": "loving you fully" + }, + { + "appid": 1594440, + "normalized_name": "give the people what they want" + }, + { + "appid": 1594460, + "normalized_name": "i see red" + }, + { + "appid": 1594480, + "normalized_name": "withdrawn" + }, + { + "appid": 1594490, + "normalized_name": "zerochance" + }, + { + "appid": 1594560, + "normalized_name": "chrome switcher" + }, + { + "appid": 1594570, + "normalized_name": "the treasure of civilization" + }, + { + "appid": 1594610, + "normalized_name": "woods of death 2" + }, + { + "appid": 1594660, + "normalized_name": "chikpack" + }, + { + "appid": 1594690, + "normalized_name": "mayhem on a rainbow vr" + }, + { + "appid": 1594720, + "normalized_name": "the great hide n seek expawdition" + }, + { + "appid": 1594760, + "normalized_name": "astro sailor" + }, + { + "appid": 1594790, + "normalized_name": "breaking earth" + }, + { + "appid": 1594800, + "normalized_name": "incaved" + }, + { + "appid": 1594810, + "normalized_name": "asmr lightness light painting" + }, + { + "appid": 1594830, + "normalized_name": "quarantine run" + }, + { + "appid": 1594850, + "normalized_name": "tattoo punk" + }, + { + "appid": 1594860, + "normalized_name": "gashishachinosachi 餓史シャチの幸" + }, + { + "appid": 1594880, + "normalized_name": "corsairs legacy pirate action rpg & sea battles" + }, + { + "appid": 1594890, + "normalized_name": "starfighter eclipse" + }, + { + "appid": 1594910, + "normalized_name": "keep talk until you dead" + }, + { + "appid": 1594940, + "normalized_name": "little witch in the woods" + }, + { + "appid": 1594950, + "normalized_name": "overgrown" + }, + { + "appid": 1594960, + "normalized_name": "daydreamer 2" + }, + { + "appid": 1594970, + "normalized_name": "barbaros" + }, + { + "appid": 1594980, + "normalized_name": "elixir of life" + }, + { + "appid": 1594990, + "normalized_name": "a single step (no longer in development)" + }, + { + "appid": 1595000, + "normalized_name": "firelight fantasy phoenix crew" + }, + { + "appid": 1595010, + "normalized_name": "take control" + }, + { + "appid": 1595020, + "normalized_name": "otteretto" + }, + { + "appid": 1595030, + "normalized_name": "bad memories" + }, + { + "appid": 1595050, + "normalized_name": "pba pro bowling 2023" + }, + { + "appid": 1595090, + "normalized_name": "swarming planet" + }, + { + "appid": 1595100, + "normalized_name": "мой психолог | бот ассистент" + }, + { + "appid": 1595110, + "normalized_name": "xuhivan's autonomous cube" + }, + { + "appid": 1595120, + "normalized_name": "chain drop" + }, + { + "appid": 1595160, + "normalized_name": "radioactivity" + }, + { + "appid": 1595170, + "normalized_name": "olympian wars" + }, + { + "appid": 1595180, + "normalized_name": "crazy gravity" + }, + { + "appid": 1595190, + "normalized_name": "另一种修仙" + }, + { + "appid": 1595230, + "normalized_name": "lottery center simulator" + }, + { + "appid": 1595250, + "normalized_name": "dirty blood" + }, + { + "appid": 1595270, + "normalized_name": "noren" + }, + { + "appid": 1595280, + "normalized_name": "卡牌缔造者 cardmaker" + }, + { + "appid": 1595290, + "normalized_name": "pumpum" + }, + { + "appid": 1595300, + "normalized_name": "kells" + }, + { + "appid": 1595310, + "normalized_name": "barbarian legend" + }, + { + "appid": 1595340, + "normalized_name": "sweet home puzzle" + }, + { + "appid": 1595350, + "normalized_name": "kamu's offering" + }, + { + "appid": 1595380, + "normalized_name": "the durka you will (not) die" + }, + { + "appid": 1595390, + "normalized_name": "castle dornstein" + }, + { + "appid": 1595400, + "normalized_name": "wsb gme" + }, + { + "appid": 1595410, + "normalized_name": "nuc after the blast" + }, + { + "appid": 1595440, + "normalized_name": "密閉airtight" + }, + { + "appid": 1595460, + "normalized_name": "haywire" + }, + { + "appid": 1595470, + "normalized_name": "dead era" + }, + { + "appid": 1595480, + "normalized_name": "darkness road | شارع الظلام" + }, + { + "appid": 1595490, + "normalized_name": "super raft boat vr" + }, + { + "appid": 1595510, + "normalized_name": "smasher and the will o' the thiccs" + }, + { + "appid": 1595540, + "normalized_name": "sam & maru" + }, + { + "appid": 1595600, + "normalized_name": "last generation survival" + }, + { + "appid": 1595620, + "normalized_name": "pair of aces" + }, + { + "appid": 1595630, + "normalized_name": "underwater life" + }, + { + "appid": 1595640, + "normalized_name": "tres bashers" + }, + { + "appid": 1595710, + "normalized_name": "chased by darkness" + }, + { + "appid": 1595740, + "normalized_name": "urban farmer" + }, + { + "appid": 1595760, + "normalized_name": "screenspace" + }, + { + "appid": 1595770, + "normalized_name": "suffer 2" + }, + { + "appid": 1595780, + "normalized_name": "inno world" + }, + { + "appid": 1595790, + "normalized_name": "astral cube" + }, + { + "appid": 1595810, + "normalized_name": "touge challenge" + }, + { + "appid": 1595850, + "normalized_name": "spider crisis" + }, + { + "appid": 1595890, + "normalized_name": "traxion 3000" + }, + { + "appid": 1595900, + "normalized_name": "knight flight" + }, + { + "appid": 1595930, + "normalized_name": "the far kingdoms hidden magic" + }, + { + "appid": 1595950, + "normalized_name": "a strange hotel" + }, + { + "appid": 1595970, + "normalized_name": "vestenelon" + }, + { + "appid": 1596010, + "normalized_name": "martin and the magic staff" + }, + { + "appid": 1596030, + "normalized_name": "jetman" + }, + { + "appid": 1596060, + "normalized_name": "infinity zigzag" + }, + { + "appid": 1596070, + "normalized_name": "angry squirrel" + }, + { + "appid": 1596080, + "normalized_name": "vagabond starship" + }, + { + "appid": 1596090, + "normalized_name": "clashingblades" + }, + { + "appid": 1596110, + "normalized_name": "sweet desire" + }, + { + "appid": 1596130, + "normalized_name": "through rust we are returned" + }, + { + "appid": 1596170, + "normalized_name": "one true hero" + }, + { + "appid": 1596180, + "normalized_name": "fragment" + }, + { + "appid": 1596190, + "normalized_name": "myriad a rogue adventure" + }, + { + "appid": 1596230, + "normalized_name": "queen of mountain" + }, + { + "appid": 1596240, + "normalized_name": "overlay balls & mouse tails" + }, + { + "appid": 1596250, + "normalized_name": "fish. love. danger." + }, + { + "appid": 1596270, + "normalized_name": "neon souls" + }, + { + "appid": 1596290, + "normalized_name": "jumpcubox" + }, + { + "appid": 1596310, + "normalized_name": "crypto mining simulator" + }, + { + "appid": 1596330, + "normalized_name": "xombee" + }, + { + "appid": 1596350, + "normalized_name": "spiritlink tactics" + }, + { + "appid": 1596360, + "normalized_name": "unnatural investigations" + }, + { + "appid": 1596370, + "normalized_name": "beat souls" + }, + { + "appid": 1596380, + "normalized_name": "norega" + }, + { + "appid": 1596400, + "normalized_name": "spell blaster" + }, + { + "appid": 1596430, + "normalized_name": "loop knight" + }, + { + "appid": 1596440, + "normalized_name": "arkos" + }, + { + "appid": 1596450, + "normalized_name": "kaya joshi magical detective" + }, + { + "appid": 1596540, + "normalized_name": "taisho x alice epilogue" + }, + { + "appid": 1596580, + "normalized_name": "spycity" + }, + { + "appid": 1596610, + "normalized_name": "dead night" + }, + { + "appid": 1596640, + "normalized_name": "dark chronicles the soul reaver" + }, + { + "appid": 1596730, + "normalized_name": "dynopunk" + }, + { + "appid": 1596750, + "normalized_name": "buddy and lucky solitaire" + }, + { + "appid": 1596810, + "normalized_name": "artpuzzle vr" + }, + { + "appid": 1596820, + "normalized_name": "monstrous lovers" + }, + { + "appid": 1596850, + "normalized_name": "bean" + }, + { + "appid": 1596890, + "normalized_name": "metal mars" + }, + { + "appid": 1596920, + "normalized_name": "play me" + }, + { + "appid": 1596940, + "normalized_name": "ryan's rescue squad" + }, + { + "appid": 1596950, + "normalized_name": "frog fighters" + }, + { + "appid": 1596980, + "normalized_name": "hentai hack her" + }, + { + "appid": 1596990, + "normalized_name": "asteroid blasters" + }, + { + "appid": 1597020, + "normalized_name": "shieldwall chronicles realm of madness" + }, + { + "appid": 1597040, + "normalized_name": "fossilfuel" + }, + { + "appid": 1597060, + "normalized_name": "bubbaruka!" + }, + { + "appid": 1597070, + "normalized_name": "criminal t" + }, + { + "appid": 1597080, + "normalized_name": "killer bean" + }, + { + "appid": 1597090, + "normalized_name": "ressifice" + }, + { + "appid": 1597110, + "normalized_name": "dere exe rebirth of horror" + }, + { + "appid": 1597160, + "normalized_name": "spiderpunks" + }, + { + "appid": 1597170, + "normalized_name": "endless furry killer infinity" + }, + { + "appid": 1597200, + "normalized_name": "connectank" + }, + { + "appid": 1597210, + "normalized_name": "fantasy dungeon vr" + }, + { + "appid": 1597220, + "normalized_name": "tower ball incremental tower defense" + }, + { + "appid": 1597240, + "normalized_name": "xcute(me)" + }, + { + "appid": 1597250, + "normalized_name": "codename mystery babylon" + }, + { + "appid": 1597260, + "normalized_name": "blind" + }, + { + "appid": 1597270, + "normalized_name": "crime reaper" + }, + { + "appid": 1597280, + "normalized_name": "live empire 2" + }, + { + "appid": 1597290, + "normalized_name": "swarm the city zombie evolved" + }, + { + "appid": 1597310, + "normalized_name": "airship kingdoms adrift" + }, + { + "appid": 1597330, + "normalized_name": "grim tales the final suspect collector's" + }, + { + "appid": 1597400, + "normalized_name": "lost egg 2 be together" + }, + { + "appid": 1597430, + "normalized_name": "office love affair" + }, + { + "appid": 1597440, + "normalized_name": "wax museum seek and find" + }, + { + "appid": 1597460, + "normalized_name": "幻想三國誌 天元異事錄" + }, + { + "appid": 1597470, + "normalized_name": "31st prototype" + }, + { + "appid": 1597480, + "normalized_name": "zombie gunship survival" + }, + { + "appid": 1597510, + "normalized_name": "魔物调查者" + }, + { + "appid": 1597520, + "normalized_name": "rounded" + }, + { + "appid": 1597530, + "normalized_name": "neural edge" + }, + { + "appid": 1597550, + "normalized_name": "highrise mogul" + }, + { + "appid": 1597560, + "normalized_name": "click your crush!" + }, + { + "appid": 1597580, + "normalized_name": "clid the snail" + }, + { + "appid": 1597600, + "normalized_name": "墨笔斗妖传 inkbrush the demon wars" + }, + { + "appid": 1597610, + "normalized_name": "soccer with satan" + }, + { + "appid": 1597640, + "normalized_name": "covenanted prologue" + }, + { + "appid": 1597650, + "normalized_name": "larger than light" + }, + { + "appid": 1597670, + "normalized_name": "astralis" + }, + { + "appid": 1597710, + "normalized_name": "elewder" + }, + { + "appid": 1597720, + "normalized_name": "feed all monsters" + }, + { + "appid": 1597730, + "normalized_name": "dogs organized neatly" + }, + { + "appid": 1597750, + "normalized_name": "phobyark" + }, + { + "appid": 1597770, + "normalized_name": "wizard's wrath legends" + }, + { + "appid": 1597780, + "normalized_name": "新城镇" + }, + { + "appid": 1597790, + "normalized_name": "mainframe defenders meltdown prologue" + }, + { + "appid": 1597800, + "normalized_name": "hikikomori life" + }, + { + "appid": 1597820, + "normalized_name": "pazing by 擦魂而過" + }, + { + "appid": 1597870, + "normalized_name": "adventure mosaics. granny’s farm" + }, + { + "appid": 1597900, + "normalized_name": "let's learn janggi (korean chess)" + }, + { + "appid": 1597910, + "normalized_name": "freeride" + }, + { + "appid": 1597930, + "normalized_name": "origins of merlin muscles and magic" + }, + { + "appid": 1597950, + "normalized_name": "dawn of light" + }, + { + "appid": 1597960, + "normalized_name": "ninja brigade feat. jonah weingarten" + }, + { + "appid": 1597970, + "normalized_name": "escape room vr vaudeville" + }, + { + "appid": 1597980, + "normalized_name": "city 20" + }, + { + "appid": 1598010, + "normalized_name": "wild dive" + }, + { + "appid": 1598020, + "normalized_name": "warspace" + }, + { + "appid": 1598030, + "normalized_name": "zoners" + }, + { + "appid": 1598090, + "normalized_name": "fantoccini" + }, + { + "appid": 1598130, + "normalized_name": "movie actor trivia" + }, + { + "appid": 1598150, + "normalized_name": "potion pipeline" + }, + { + "appid": 1598160, + "normalized_name": "bloodwash" + }, + { + "appid": 1598180, + "normalized_name": "seishin destiny" + }, + { + "appid": 1598190, + "normalized_name": "we are live" + }, + { + "appid": 1598210, + "normalized_name": "milli & greg" + }, + { + "appid": 1598220, + "normalized_name": "moon observatory iris" + }, + { + "appid": 1598270, + "normalized_name": "cthulhu clicker" + }, + { + "appid": 1598300, + "normalized_name": "dungeon coup" + }, + { + "appid": 1598360, + "normalized_name": "who are you?" + }, + { + "appid": 1598370, + "normalized_name": "vojo" + }, + { + "appid": 1598470, + "normalized_name": "pixelground" + }, + { + "appid": 1598490, + "normalized_name": "eyeroll" + }, + { + "appid": 1598540, + "normalized_name": "nilspace" + }, + { + "appid": 1598560, + "normalized_name": "life on a pizza" + }, + { + "appid": 1598580, + "normalized_name": "累趴侠" + }, + { + "appid": 1598590, + "normalized_name": "此刻探索中" + }, + { + "appid": 1598600, + "normalized_name": "robin hood hail to the king" + }, + { + "appid": 1598630, + "normalized_name": "eternal cycle 永劫之环" + }, + { + "appid": 1598650, + "normalized_name": "beans or bones" + }, + { + "appid": 1598660, + "normalized_name": "armored xpress" + }, + { + "appid": 1598710, + "normalized_name": "wild world" + }, + { + "appid": 1598730, + "normalized_name": "山河伏妖录" + }, + { + "appid": 1598750, + "normalized_name": "魔法与高塔" + }, + { + "appid": 1598780, + "normalized_name": "silly polly beast" + }, + { + "appid": 1598810, + "normalized_name": "life of fly 2" + }, + { + "appid": 1598880, + "normalized_name": "a boy's journey" + }, + { + "appid": 1598910, + "normalized_name": "the excrawlers" + }, + { + "appid": 1598930, + "normalized_name": "见习侦探" + }, + { + "appid": 1598970, + "normalized_name": "magnus failure" + }, + { + "appid": 1599000, + "normalized_name": "ark and ade" + }, + { + "appid": 1599020, + "normalized_name": "tinykin" + }, + { + "appid": 1599070, + "normalized_name": "stardiver" + }, + { + "appid": 1599080, + "normalized_name": "slow and steady" + }, + { + "appid": 1599110, + "normalized_name": "the great pickle adventure" + }, + { + "appid": 1599130, + "normalized_name": "pavel repin's collection" + }, + { + "appid": 1599150, + "normalized_name": "warlike" + }, + { + "appid": 1599160, + "normalized_name": "voxelia defenders" + }, + { + "appid": 1599170, + "normalized_name": "5 force fighters" + }, + { + "appid": 1599210, + "normalized_name": "line of war" + }, + { + "appid": 1599220, + "normalized_name": "league space" + }, + { + "appid": 1599250, + "normalized_name": "boris russian bear" + }, + { + "appid": 1599270, + "normalized_name": "crazy race" + }, + { + "appid": 1599330, + "normalized_name": "wildmender" + }, + { + "appid": 1599340, + "normalized_name": "lost ark" + }, + { + "appid": 1599390, + "normalized_name": "word hunt fever" + }, + { + "appid": 1599410, + "normalized_name": "mauled" + }, + { + "appid": 1599420, + "normalized_name": "rusty rangers" + }, + { + "appid": 1599450, + "normalized_name": "shadow of nyx" + }, + { + "appid": 1599470, + "normalized_name": "purrfect apawcalypse patches' infurno" + }, + { + "appid": 1599490, + "normalized_name": "one way road" + }, + { + "appid": 1599510, + "normalized_name": "deadly threat" + }, + { + "appid": 1599520, + "normalized_name": "sacred cubes 2" + }, + { + "appid": 1599530, + "normalized_name": "little adventure" + }, + { + "appid": 1599540, + "normalized_name": "topsy turvy" + }, + { + "appid": 1599560, + "normalized_name": "wanderer" + }, + { + "appid": 1599600, + "normalized_name": "plateup!" + }, + { + "appid": 1599610, + "normalized_name": "tiny planet protectors" + }, + { + "appid": 1599630, + "normalized_name": "planet miner" + }, + { + "appid": 1599660, + "normalized_name": "sackboy a big adventure" + }, + { + "appid": 1599670, + "normalized_name": "offroad truck racing" + }, + { + "appid": 1599680, + "normalized_name": "street racing united" + }, + { + "appid": 1599690, + "normalized_name": "wordland" + }, + { + "appid": 1599700, + "normalized_name": "magic exposure – yuri visual novel" + }, + { + "appid": 1599710, + "normalized_name": "super nova stadium" + }, + { + "appid": 1599780, + "normalized_name": "afterlove ep" + }, + { + "appid": 1599830, + "normalized_name": "toxa mystical cloning powers" + }, + { + "appid": 1599850, + "normalized_name": "zanfium tower" + }, + { + "appid": 1599860, + "normalized_name": "vanaris tactics" + }, + { + "appid": 1599880, + "normalized_name": "cats in time" + }, + { + "appid": 1599910, + "normalized_name": "space worthy" + }, + { + "appid": 1599920, + "normalized_name": "dinoland" + }, + { + "appid": 1599930, + "normalized_name": "endless thief a fluffy stealth adventure" + }, + { + "appid": 1599940, + "normalized_name": "pachi pachi on a roll" + }, + { + "appid": 1599980, + "normalized_name": "ghostcast" + }, + { + "appid": 1599990, + "normalized_name": "天启岛" + }, + { + "appid": 1600020, + "normalized_name": "eddie hill in the curse of the skull medallion" + }, + { + "appid": 1600030, + "normalized_name": "ghost of the seas" + }, + { + "appid": 1600070, + "normalized_name": "keyboard master" + }, + { + "appid": 1600080, + "normalized_name": "gardens and girls" + }, + { + "appid": 1600090, + "normalized_name": "wonderful girls" + }, + { + "appid": 1600100, + "normalized_name": "flexibility and girls" + }, + { + "appid": 1600130, + "normalized_name": "food and girls" + }, + { + "appid": 1600140, + "normalized_name": "my lovely noblewomen" + }, + { + "appid": 1600160, + "normalized_name": "solitaire legend of the pirates 2" + }, + { + "appid": 1600170, + "normalized_name": "solitaire legend of the pirates 3" + }, + { + "appid": 1600180, + "normalized_name": "solitaire game halloween 2" + }, + { + "appid": 1600190, + "normalized_name": "solitaire victorian picnic 2" + }, + { + "appid": 1600200, + "normalized_name": "solitaire jack frost winter adventures 2" + }, + { + "appid": 1600210, + "normalized_name": "halloween night mahjong 2" + }, + { + "appid": 1600230, + "normalized_name": "mahjong carnaval 2" + }, + { + "appid": 1600240, + "normalized_name": "spooky mahjong" + }, + { + "appid": 1600250, + "normalized_name": "jurassic mahjong" + }, + { + "appid": 1600260, + "normalized_name": "kawaii girls" + }, + { + "appid": 1600280, + "normalized_name": "cute animals memory card game" + }, + { + "appid": 1600320, + "normalized_name": "brisk square demo" + }, + { + "appid": 1600370, + "normalized_name": "not tonight 2" + }, + { + "appid": 1600440, + "normalized_name": "keep looking" + }, + { + "appid": 1600450, + "normalized_name": "pride and prejudice blood ties" + }, + { + "appid": 1600460, + "normalized_name": "camelot wrath of the green knight" + }, + { + "appid": 1600470, + "normalized_name": "the evolving world catalyst wake" + }, + { + "appid": 1600500, + "normalized_name": "유어 블라이트" + }, + { + "appid": 1600530, + "normalized_name": "3d aim trainer" + }, + { + "appid": 1600550, + "normalized_name": "imaginaria" + }, + { + "appid": 1600570, + "normalized_name": "parallelia" + }, + { + "appid": 1600580, + "normalized_name": "kingdoms of myth" + }, + { + "appid": 1600600, + "normalized_name": "zar" + }, + { + "appid": 1600620, + "normalized_name": "minichef" + }, + { + "appid": 1600640, + "normalized_name": "i remember the light" + }, + { + "appid": 1600670, + "normalized_name": "dawnwander" + }, + { + "appid": 1600690, + "normalized_name": "keep it live" + }, + { + "appid": 1600700, + "normalized_name": "cosmophage" + }, + { + "appid": 1600720, + "normalized_name": "a curse from beyond" + }, + { + "appid": 1600750, + "normalized_name": "somnium shore" + }, + { + "appid": 1600760, + "normalized_name": "dice of knights" + }, + { + "appid": 1600780, + "normalized_name": "my little pony a maretime bay adventure" + }, + { + "appid": 1600810, + "normalized_name": "pixel speedrun" + }, + { + "appid": 1600820, + "normalized_name": "pill puzzle" + }, + { + "appid": 1600830, + "normalized_name": "double shot gals" + }, + { + "appid": 1600840, + "normalized_name": "was it worth it?" + }, + { + "appid": 1600870, + "normalized_name": "king bullseye the chess strike" + }, + { + "appid": 1600880, + "normalized_name": "madness beverage" + }, + { + "appid": 1600890, + "normalized_name": "恶灵退散 go back to hell" + }, + { + "appid": 1600900, + "normalized_name": "怕不怕趴喵霸霸 ghost party nyanbaba" + }, + { + "appid": 1600910, + "normalized_name": "demon's mirror" + }, + { + "appid": 1600930, + "normalized_name": "foul play yuri visual novel" + }, + { + "appid": 1600950, + "normalized_name": "prophunt" + }, + { + "appid": 1600960, + "normalized_name": "seafarers" + }, + { + "appid": 1600970, + "normalized_name": "green fairy vr" + }, + { + "appid": 1600980, + "normalized_name": "monster slayer" + }, + { + "appid": 1601000, + "normalized_name": "pixel tactics online" + }, + { + "appid": 1601020, + "normalized_name": "rawshire the last hatchling" + }, + { + "appid": 1601040, + "normalized_name": "leaf on wind" + }, + { + "appid": 1601100, + "normalized_name": "farming engine" + }, + { + "appid": 1601130, + "normalized_name": "rot in a porcelain dream" + }, + { + "appid": 1601170, + "normalized_name": "sex and morning" + }, + { + "appid": 1601190, + "normalized_name": "demolition" + }, + { + "appid": 1601220, + "normalized_name": "smoots summer games" + }, + { + "appid": 1601260, + "normalized_name": "project scav" + }, + { + "appid": 1601280, + "normalized_name": "potato flowers in full bloom" + }, + { + "appid": 1601320, + "normalized_name": "leshy" + }, + { + "appid": 1601330, + "normalized_name": "survival machine" + }, + { + "appid": 1601340, + "normalized_name": "psycho bathroom" + }, + { + "appid": 1601360, + "normalized_name": "smoots golf" + }, + { + "appid": 1601380, + "normalized_name": "the marauder chronicles curse over valdria" + }, + { + "appid": 1601410, + "normalized_name": "最涯(さいはて)の列車" + }, + { + "appid": 1601520, + "normalized_name": "distant dials" + }, + { + "appid": 1601540, + "normalized_name": "goalie madness" + }, + { + "appid": 1601570, + "normalized_name": "the alters" + }, + { + "appid": 1601580, + "normalized_name": "frostpunk 2" + }, + { + "appid": 1601590, + "normalized_name": "freiwillig" + }, + { + "appid": 1601600, + "normalized_name": "apeiron tower defense" + }, + { + "appid": 1601630, + "normalized_name": "the fate of baldr" + }, + { + "appid": 1601670, + "normalized_name": "マグネクション磁" + }, + { + "appid": 1601680, + "normalized_name": "the advisor episode 1 royal pain" + }, + { + "appid": 1601700, + "normalized_name": "society's paradigms" + }, + { + "appid": 1601740, + "normalized_name": "corpse keeper" + }, + { + "appid": 1601750, + "normalized_name": "pack of demons" + }, + { + "appid": 1601770, + "normalized_name": "runner" + }, + { + "appid": 1601790, + "normalized_name": "mini island summer" + }, + { + "appid": 1601800, + "normalized_name": "touching live2d ork sex with lady knight" + }, + { + "appid": 1601840, + "normalized_name": "house builder first job" + }, + { + "appid": 1601850, + "normalized_name": "greedy goblin" + }, + { + "appid": 1601860, + "normalized_name": "warp factory" + }, + { + "appid": 1601870, + "normalized_name": "evade the light" + }, + { + "appid": 1601890, + "normalized_name": "rescue rover collection" + }, + { + "appid": 1601900, + "normalized_name": "slordax the unknown enemy" + }, + { + "appid": 1601910, + "normalized_name": "animal express" + }, + { + "appid": 1601930, + "normalized_name": "scubaventure the search for pirate's treasure" + }, + { + "appid": 1601950, + "normalized_name": "hentai vr" + }, + { + "appid": 1601970, + "normalized_name": "tunguska the visitation enhanced" + }, + { + "appid": 1601990, + "normalized_name": "opa" + }, + { + "appid": 1602000, + "normalized_name": "hotel architect" + }, + { + "appid": 1602010, + "normalized_name": "persona 4 arena ultimax" + }, + { + "appid": 1602030, + "normalized_name": "megabattle" + }, + { + "appid": 1602080, + "normalized_name": "soulstice" + }, + { + "appid": 1602090, + "normalized_name": "beware of dog" + }, + { + "appid": 1602100, + "normalized_name": "hs galaxy" + }, + { + "appid": 1602110, + "normalized_name": "kredolis" + }, + { + "appid": 1602140, + "normalized_name": "the little drone 2" + }, + { + "appid": 1602150, + "normalized_name": "bus stop in the fog" + }, + { + "appid": 1602160, + "normalized_name": "arnold bounty hunter" + }, + { + "appid": 1602170, + "normalized_name": "need for conquest" + }, + { + "appid": 1602180, + "normalized_name": "bricole" + }, + { + "appid": 1602190, + "normalized_name": "alma" + }, + { + "appid": 1602260, + "normalized_name": "metalworking" + }, + { + "appid": 1602280, + "normalized_name": "gravity snake" + }, + { + "appid": 1602300, + "normalized_name": "人窟日记 the grotto diary" + }, + { + "appid": 1602330, + "normalized_name": "acrobatic car" + }, + { + "appid": 1602340, + "normalized_name": "shatter sky" + }, + { + "appid": 1602350, + "normalized_name": "menos psi shatter" + }, + { + "appid": 1602370, + "normalized_name": "durdanto" + }, + { + "appid": 1602380, + "normalized_name": "ambush" + }, + { + "appid": 1602390, + "normalized_name": "black academy" + }, + { + "appid": 1602420, + "normalized_name": "when i reincarnate i'm a cube!?" + }, + { + "appid": 1602440, + "normalized_name": "pasta master" + }, + { + "appid": 1602460, + "normalized_name": "mazeing" + }, + { + "appid": 1602490, + "normalized_name": "waifus smash" + }, + { + "appid": 1602510, + "normalized_name": "tactics of world war i" + }, + { + "appid": 1602520, + "normalized_name": "doombreaker" + }, + { + "appid": 1602540, + "normalized_name": "sophia the traveler" + }, + { + "appid": 1602550, + "normalized_name": "after school afterlife" + }, + { + "appid": 1602560, + "normalized_name": "the many pieces of mr. coo" + }, + { + "appid": 1602570, + "normalized_name": "life as designed" + }, + { + "appid": 1602590, + "normalized_name": "kaiju crush" + }, + { + "appid": 1602600, + "normalized_name": "universe prison" + }, + { + "appid": 1602620, + "normalized_name": "deadzoned a credits bounty" + }, + { + "appid": 1602700, + "normalized_name": "teabat!" + }, + { + "appid": 1602740, + "normalized_name": "solaro" + }, + { + "appid": 1602750, + "normalized_name": "rise of the atman" + }, + { + "appid": 1602760, + "normalized_name": "chronicles of ash" + }, + { + "appid": 1602770, + "normalized_name": "dream of bells" + }, + { + "appid": 1602810, + "normalized_name": "metaverse origins" + }, + { + "appid": 1602840, + "normalized_name": "boxshowfan" + }, + { + "appid": 1602880, + "normalized_name": "the lord of the parties" + }, + { + "appid": 1602900, + "normalized_name": "snout" + }, + { + "appid": 1602920, + "normalized_name": "the last barbarian" + }, + { + "appid": 1602930, + "normalized_name": "pedro's adventures in spanish [learn spanish]" + }, + { + "appid": 1602970, + "normalized_name": "gedel escape" + }, + { + "appid": 1602980, + "normalized_name": "insight" + }, + { + "appid": 1602990, + "normalized_name": "pog" + }, + { + "appid": 1603170, + "normalized_name": "cyberplug" + }, + { + "appid": 1603180, + "normalized_name": "mining mechs" + }, + { + "appid": 1603200, + "normalized_name": "hitler on the moon" + }, + { + "appid": 1603210, + "normalized_name": "barn&farm renovator" + }, + { + "appid": 1603220, + "normalized_name": "fantasy strip poker & blackjack" + }, + { + "appid": 1603260, + "normalized_name": "re.surs" + }, + { + "appid": 1603270, + "normalized_name": "monster battle quest" + }, + { + "appid": 1603280, + "normalized_name": "chasing the wind" + }, + { + "appid": 1603290, + "normalized_name": "project hacker" + }, + { + "appid": 1603300, + "normalized_name": "timothy leary's mind mirror" + }, + { + "appid": 1603310, + "normalized_name": "plug wars the game" + }, + { + "appid": 1603410, + "normalized_name": "lost nova" + }, + { + "appid": 1603420, + "normalized_name": "doomsday paradise" + }, + { + "appid": 1603460, + "normalized_name": "chromatic labyrinth" + }, + { + "appid": 1603470, + "normalized_name": "runncrush" + }, + { + "appid": 1603480, + "normalized_name": "avarice" + }, + { + "appid": 1603500, + "normalized_name": "the elevator game with catgirls" + }, + { + "appid": 1603520, + "normalized_name": "save data" + }, + { + "appid": 1603590, + "normalized_name": "my cousin the rogue" + }, + { + "appid": 1603600, + "normalized_name": "daldos" + }, + { + "appid": 1603630, + "normalized_name": "blocked out red v blue" + }, + { + "appid": 1603640, + "normalized_name": "the house of da vinci 3" + }, + { + "appid": 1603650, + "normalized_name": "環状 fast beat battle rider" + }, + { + "appid": 1603720, + "normalized_name": "thy creature" + }, + { + "appid": 1603750, + "normalized_name": "out of the woods" + }, + { + "appid": 1603780, + "normalized_name": "pincushion" + }, + { + "appid": 1603800, + "normalized_name": "monsters per second" + }, + { + "appid": 1603860, + "normalized_name": "the frosts first ones" + }, + { + "appid": 1603870, + "normalized_name": "dad's dice history of legends" + }, + { + "appid": 1603900, + "normalized_name": "love and enchants" + }, + { + "appid": 1603920, + "normalized_name": "暴れん坊天狗 & zombie nation" + }, + { + "appid": 1603930, + "normalized_name": "the hell hives" + }, + { + "appid": 1603940, + "normalized_name": "nuclear war simulator" + }, + { + "appid": 1603950, + "normalized_name": "dungeon rollers" + }, + { + "appid": 1603960, + "normalized_name": "mini madness" + }, + { + "appid": 1603970, + "normalized_name": "panmorphia awakened" + }, + { + "appid": 1603980, + "normalized_name": "if on a winter's night four travelers" + }, + { + "appid": 1603990, + "normalized_name": "carma" + }, + { + "appid": 1604000, + "normalized_name": "milk outside a bag of milk outside a bag of milk" + }, + { + "appid": 1604020, + "normalized_name": "many bricks breaker" + }, + { + "appid": 1604030, + "normalized_name": "v rising" + }, + { + "appid": 1604050, + "normalized_name": "smelted kin inhuman impact" + }, + { + "appid": 1604060, + "normalized_name": "cricket captain 2021" + }, + { + "appid": 1604100, + "normalized_name": "revolver and co" + }, + { + "appid": 1604110, + "normalized_name": "pippu bauble quest" + }, + { + "appid": 1604160, + "normalized_name": "jivitam" + }, + { + "appid": 1604180, + "normalized_name": "laika" + }, + { + "appid": 1604210, + "normalized_name": "grid slayer" + }, + { + "appid": 1604240, + "normalized_name": "sumotori dreams classic" + }, + { + "appid": 1604250, + "normalized_name": "tortuga a pirate's tale" + }, + { + "appid": 1604270, + "normalized_name": "broken arrow" + }, + { + "appid": 1604280, + "normalized_name": "sthell" + }, + { + "appid": 1604300, + "normalized_name": "love 3" + }, + { + "appid": 1604320, + "normalized_name": "daffy fish" + }, + { + "appid": 1604350, + "normalized_name": "wonhon the beginning" + }, + { + "appid": 1604370, + "normalized_name": "garden magic" + }, + { + "appid": 1604380, + "normalized_name": "常轨脱离creative" + }, + { + "appid": 1604390, + "normalized_name": "provider" + }, + { + "appid": 1604400, + "normalized_name": "out bike the tsunami" + }, + { + "appid": 1604420, + "normalized_name": "clouds no more" + }, + { + "appid": 1604440, + "normalized_name": "recall" + }, + { + "appid": 1604450, + "normalized_name": "ai battle royale generator" + }, + { + "appid": 1604540, + "normalized_name": "turk the demon slayer" + }, + { + "appid": 1604610, + "normalized_name": "space tek" + }, + { + "appid": 1604630, + "normalized_name": "kriophobia" + }, + { + "appid": 1604640, + "normalized_name": "tender creature comforts" + }, + { + "appid": 1604690, + "normalized_name": "last blossom roleplaying tabletop based scene" + }, + { + "appid": 1604700, + "normalized_name": "small press tycoon" + }, + { + "appid": 1604710, + "normalized_name": "random blacksmith game" + }, + { + "appid": 1604730, + "normalized_name": "probability race" + }, + { + "appid": 1604750, + "normalized_name": "void hearts" + }, + { + "appid": 1604780, + "normalized_name": "lovely planet remix" + }, + { + "appid": 1604790, + "normalized_name": "after school" + }, + { + "appid": 1604800, + "normalized_name": "lip! lewd idol project vol. 1" + }, + { + "appid": 1604820, + "normalized_name": "newtonian horror" + }, + { + "appid": 1604840, + "normalized_name": "super fowlst 2" + }, + { + "appid": 1604930, + "normalized_name": "heart of a bird in a cage" + }, + { + "appid": 1605010, + "normalized_name": "adorable witch" + }, + { + "appid": 1605030, + "normalized_name": "cannonball crew" + }, + { + "appid": 1605040, + "normalized_name": "jump kid" + }, + { + "appid": 1605050, + "normalized_name": "crossy bridge" + }, + { + "appid": 1605120, + "normalized_name": "kate kite" + }, + { + "appid": 1605130, + "normalized_name": "jeanne at the clock tower" + }, + { + "appid": 1605140, + "normalized_name": "insane town" + }, + { + "appid": 1605150, + "normalized_name": "charlie from the swamp" + }, + { + "appid": 1605190, + "normalized_name": "connect the dots" + }, + { + "appid": 1605220, + "normalized_name": "dune spice wars" + }, + { + "appid": 1605230, + "normalized_name": "spaceship visual effect graph demo" + }, + { + "appid": 1605240, + "normalized_name": "red colony 2 uncensored" + }, + { + "appid": 1605250, + "normalized_name": "moros protocol" + }, + { + "appid": 1605270, + "normalized_name": "marialbum" + }, + { + "appid": 1605290, + "normalized_name": "paint by numbers" + }, + { + "appid": 1605300, + "normalized_name": "hack bomb boma ye" + }, + { + "appid": 1605310, + "normalized_name": "heltons haunted hotel" + }, + { + "appid": 1605320, + "normalized_name": "unusual findings" + }, + { + "appid": 1605340, + "normalized_name": "atlantis adventure vr" + }, + { + "appid": 1605420, + "normalized_name": "american commando" + }, + { + "appid": 1605430, + "normalized_name": "roots of tomorrow" + }, + { + "appid": 1605440, + "normalized_name": "ragdoll madness" + }, + { + "appid": 1605460, + "normalized_name": "here to stay" + }, + { + "appid": 1605480, + "normalized_name": "albacete warrior" + }, + { + "appid": 1605500, + "normalized_name": "grace hopper bug rescue" + }, + { + "appid": 1605520, + "normalized_name": "the black pepper crew" + }, + { + "appid": 1605530, + "normalized_name": "upside" + }, + { + "appid": 1605580, + "normalized_name": "fruit hunter" + }, + { + "appid": 1605600, + "normalized_name": "final stand ragnarök" + }, + { + "appid": 1605640, + "normalized_name": "empower" + }, + { + "appid": 1605680, + "normalized_name": "wayward shadows" + }, + { + "appid": 1605690, + "normalized_name": "ruka" + }, + { + "appid": 1605710, + "normalized_name": "the crow king" + }, + { + "appid": 1605720, + "normalized_name": "eternia pet whisperer" + }, + { + "appid": 1605760, + "normalized_name": "mystery trackers forgotten voices collector's" + }, + { + "appid": 1605850, + "normalized_name": "zerospace" + }, + { + "appid": 1605910, + "normalized_name": "宇宙终极秘密 灵魂the secret of the universe:soul" + }, + { + "appid": 1605930, + "normalized_name": "babol the walking box" + }, + { + "appid": 1605950, + "normalized_name": "太空战舰" + }, + { + "appid": 1605960, + "normalized_name": "zombie survival online" + }, + { + "appid": 1606000, + "normalized_name": "q'redux" + }, + { + "appid": 1606030, + "normalized_name": "the tower of wowers" + }, + { + "appid": 1606140, + "normalized_name": "trilogy king man" + }, + { + "appid": 1606180, + "normalized_name": "下一站江湖ⅱ" + }, + { + "appid": 1606210, + "normalized_name": "heck deck" + }, + { + "appid": 1606270, + "normalized_name": "pleasurepunk drug dealer" + }, + { + "appid": 1606280, + "normalized_name": "hentai aim trainer" + }, + { + "appid": 1606300, + "normalized_name": "puzzle light" + }, + { + "appid": 1606340, + "normalized_name": "conquest of elysium 5" + }, + { + "appid": 1606370, + "normalized_name": "square off" + }, + { + "appid": 1606450, + "normalized_name": "bunnyshot" + }, + { + "appid": 1606460, + "normalized_name": "galactic refugees" + }, + { + "appid": 1606510, + "normalized_name": "steel rain dawn of the machines" + }, + { + "appid": 1606520, + "normalized_name": "暴打萌鼠" + }, + { + "appid": 1606580, + "normalized_name": "scorch" + }, + { + "appid": 1606590, + "normalized_name": "the killer of dishonor" + }, + { + "appid": 1606610, + "normalized_name": "rescuer" + }, + { + "appid": 1606620, + "normalized_name": "train tycoon" + }, + { + "appid": 1606630, + "normalized_name": "chonkymon" + }, + { + "appid": 1606640, + "normalized_name": "grandma badass a crazy point and click adventure" + }, + { + "appid": 1606670, + "normalized_name": "zen cube" + }, + { + "appid": 1606680, + "normalized_name": "comet crusher block breaker" + }, + { + "appid": 1606730, + "normalized_name": "coin dash" + }, + { + "appid": 1606760, + "normalized_name": "unlock the block" + }, + { + "appid": 1606770, + "normalized_name": "somniphobia" + }, + { + "appid": 1606790, + "normalized_name": "instrumentalist" + }, + { + "appid": 1606800, + "normalized_name": "ftd2" + }, + { + "appid": 1606870, + "normalized_name": "kukus world" + }, + { + "appid": 1606890, + "normalized_name": "gun'em" + }, + { + "appid": 1606910, + "normalized_name": "jigsaw puzzle vr" + }, + { + "appid": 1606920, + "normalized_name": "undergrowth vr maze" + }, + { + "appid": 1606940, + "normalized_name": "the mystery of caketropolis" + }, + { + "appid": 1606950, + "normalized_name": "squeaky clean" + }, + { + "appid": 1606970, + "normalized_name": "ronin trail" + }, + { + "appid": 1606980, + "normalized_name": "ouroboros dungeon" + }, + { + "appid": 1606990, + "normalized_name": "buy me some soup" + }, + { + "appid": 1607000, + "normalized_name": "half wing" + }, + { + "appid": 1607040, + "normalized_name": "evertried" + }, + { + "appid": 1607100, + "normalized_name": "the night of fire stealing 2/盗火之夜2" + }, + { + "appid": 1607110, + "normalized_name": "linares bullet fever" + }, + { + "appid": 1607130, + "normalized_name": "lust theory season 1" + }, + { + "appid": 1607140, + "normalized_name": "valley general hospital nivr" + }, + { + "appid": 1607170, + "normalized_name": "magical girl noble rose" + }, + { + "appid": 1607180, + "normalized_name": "big quest 2 the adventure" + }, + { + "appid": 1607190, + "normalized_name": "mona" + }, + { + "appid": 1607200, + "normalized_name": "cyanotype daydream the girl who dreamed the world" + }, + { + "appid": 1607240, + "normalized_name": "mail time" + }, + { + "appid": 1607250, + "normalized_name": "my hero ultra rumble" + }, + { + "appid": 1607280, + "normalized_name": "yume 2 sleepless night" + }, + { + "appid": 1607300, + "normalized_name": "march march!" + }, + { + "appid": 1607310, + "normalized_name": "汽车帝国" + }, + { + "appid": 1607370, + "normalized_name": "afterlife beans" + }, + { + "appid": 1607400, + "normalized_name": "occupation 2.5" + }, + { + "appid": 1607430, + "normalized_name": "memories of east coast" + }, + { + "appid": 1607450, + "normalized_name": "uniboom war of unicorns" + }, + { + "appid": 1607460, + "normalized_name": "virtual near death experience" + }, + { + "appid": 1607470, + "normalized_name": "escape" + }, + { + "appid": 1607480, + "normalized_name": "最后一搏 the last fight" + }, + { + "appid": 1607500, + "normalized_name": "schmutznik" + }, + { + "appid": 1607530, + "normalized_name": "treasures of the aegean" + }, + { + "appid": 1607560, + "normalized_name": "kepler project" + }, + { + "appid": 1607570, + "normalized_name": "cute girls love books" + }, + { + "appid": 1607580, + "normalized_name": "virtueror the virtual conqueror" + }, + { + "appid": 1607620, + "normalized_name": "bite at the museum" + }, + { + "appid": 1607630, + "normalized_name": "retrowave illusions 𝔸𝕖𝕤𝕥𝕙𝕖𝕥𝕚𝕔𝕤 𝔼𝕕𝕚𝕥𝕚𝕠𝕟" + }, + { + "appid": 1607640, + "normalized_name": "arcade drift" + }, + { + "appid": 1607670, + "normalized_name": "secret agent hd" + }, + { + "appid": 1607680, + "normalized_name": "bread & fred" + }, + { + "appid": 1607720, + "normalized_name": "rimebeard" + }, + { + "appid": 1607740, + "normalized_name": "mecha tactics" + }, + { + "appid": 1607760, + "normalized_name": "nether spirits beyond the gate" + }, + { + "appid": 1607770, + "normalized_name": "endless zombie tower" + }, + { + "appid": 1607780, + "normalized_name": "gun on the chickahominy" + }, + { + "appid": 1607800, + "normalized_name": "truffle hogs" + }, + { + "appid": 1607820, + "normalized_name": "ele mental" + }, + { + "appid": 1607850, + "normalized_name": "planets battle" + }, + { + "appid": 1607860, + "normalized_name": "water drift" + }, + { + "appid": 1607870, + "normalized_name": "cub gym" + }, + { + "appid": 1607930, + "normalized_name": "drake's odds survive" + }, + { + "appid": 1607970, + "normalized_name": "梦落凡尘 dreams of falling into mortal dust" + }, + { + "appid": 1607980, + "normalized_name": "school for the friendless" + }, + { + "appid": 1608010, + "normalized_name": "unchosen forsaken" + }, + { + "appid": 1608040, + "normalized_name": "castle morihisa" + }, + { + "appid": 1608070, + "normalized_name": "crisis core –final fantasy vii– reunion" + }, + { + "appid": 1608090, + "normalized_name": "attack of the giant crab" + }, + { + "appid": 1608110, + "normalized_name": "splash girls" + }, + { + "appid": 1608130, + "normalized_name": "fusion relics" + }, + { + "appid": 1608180, + "normalized_name": "infested space colony" + }, + { + "appid": 1608200, + "normalized_name": "the far kingdoms forgotten relics" + }, + { + "appid": 1608210, + "normalized_name": "jungle rumble" + }, + { + "appid": 1608220, + "normalized_name": "sentry obelisk of dawn" + }, + { + "appid": 1608230, + "normalized_name": "planet of lana" + }, + { + "appid": 1608250, + "normalized_name": "soralio cooperation mystery solving game" + }, + { + "appid": 1608270, + "normalized_name": "filmechanism" + }, + { + "appid": 1608290, + "normalized_name": "gnosia" + }, + { + "appid": 1608310, + "normalized_name": "codename prodigy" + }, + { + "appid": 1608330, + "normalized_name": "a spec first assault" + }, + { + "appid": 1608370, + "normalized_name": "end of despair" + }, + { + "appid": 1608400, + "normalized_name": "vermillion vr painting" + }, + { + "appid": 1608410, + "normalized_name": "stinky company simulator" + }, + { + "appid": 1608450, + "normalized_name": "hellslave" + }, + { + "appid": 1608460, + "normalized_name": "青之镇物语" + }, + { + "appid": 1608470, + "normalized_name": "warstride challenges" + }, + { + "appid": 1608530, + "normalized_name": "warrior bloodline path of survival" + }, + { + "appid": 1608550, + "normalized_name": "firegirl hack 'n splash rescue dx" + }, + { + "appid": 1608560, + "normalized_name": "ai drone simulator" + }, + { + "appid": 1608590, + "normalized_name": "thyria" + }, + { + "appid": 1608620, + "normalized_name": "ballistic machines" + }, + { + "appid": 1608640, + "normalized_name": "otxo" + }, + { + "appid": 1608660, + "normalized_name": "overhaul" + }, + { + "appid": 1608670, + "normalized_name": "wildsilver" + }, + { + "appid": 1608680, + "normalized_name": "midnight driver" + }, + { + "appid": 1608700, + "normalized_name": "soundfall" + }, + { + "appid": 1608710, + "normalized_name": "gridform" + }, + { + "appid": 1608720, + "normalized_name": "enlightened" + }, + { + "appid": 1608730, + "normalized_name": "dawn of corruption" + }, + { + "appid": 1608770, + "normalized_name": "steampunk abyss" + }, + { + "appid": 1608780, + "normalized_name": "everpixel tactics" + }, + { + "appid": 1608810, + "normalized_name": "the drill rpg" + }, + { + "appid": 1608820, + "normalized_name": "oggolf" + }, + { + "appid": 1608860, + "normalized_name": "xando xtreme & over the top" + }, + { + "appid": 1608920, + "normalized_name": "the exclusion zone online" + }, + { + "appid": 1608940, + "normalized_name": "beat boy" + }, + { + "appid": 1608980, + "normalized_name": "the dream is coming..." + }, + { + "appid": 1609010, + "normalized_name": "forever to you!" + }, + { + "appid": 1609020, + "normalized_name": "soulchild" + }, + { + "appid": 1609030, + "normalized_name": "immortus temporus" + }, + { + "appid": 1609040, + "normalized_name": "striping fruits" + }, + { + "appid": 1609050, + "normalized_name": "unforgettable you" + }, + { + "appid": 1609070, + "normalized_name": "calluna" + }, + { + "appid": 1609080, + "normalized_name": "summer of '58" + }, + { + "appid": 1609090, + "normalized_name": "drunken dad simulator" + }, + { + "appid": 1609130, + "normalized_name": "world eater" + }, + { + "appid": 1609160, + "normalized_name": "waifu secret 2" + }, + { + "appid": 1609170, + "normalized_name": "gunmancer" + }, + { + "appid": 1609190, + "normalized_name": "2051 ad. your life" + }, + { + "appid": 1609220, + "normalized_name": "cthulhu pub" + }, + { + "appid": 1609230, + "normalized_name": "scarlet hollow" + }, + { + "appid": 1609270, + "normalized_name": "東方恋迷跡 妖怪伝説と幻想の旅 ~ touhou koi mystery legend and fantasy of monsters" + }, + { + "appid": 1609300, + "normalized_name": "enemies" + }, + { + "appid": 1609310, + "normalized_name": "now testing 407" + }, + { + "appid": 1609370, + "normalized_name": "caravanners co op open world camping" + }, + { + "appid": 1609390, + "normalized_name": "datajack" + }, + { + "appid": 1609440, + "normalized_name": "cemetery warrior v" + }, + { + "appid": 1609460, + "normalized_name": "bonnie fell" + }, + { + "appid": 1609470, + "normalized_name": "the frog game" + }, + { + "appid": 1609540, + "normalized_name": "zoy" + }, + { + "appid": 1609570, + "normalized_name": "agonize" + }, + { + "appid": 1609580, + "normalized_name": "fragments of a mind" + }, + { + "appid": 1609590, + "normalized_name": "world senate" + }, + { + "appid": 1609600, + "normalized_name": "bunny's buddy" + }, + { + "appid": 1609640, + "normalized_name": "scary hotel" + }, + { + "appid": 1609660, + "normalized_name": "altruism" + }, + { + "appid": 1609680, + "normalized_name": "oscuria the world of nightmares" + }, + { + "appid": 1609690, + "normalized_name": "the secret of dyes" + }, + { + "appid": 1609710, + "normalized_name": "vreezy girl's pictorial story vol.1" + }, + { + "appid": 1609730, + "normalized_name": "aliens vs. ghosts" + }, + { + "appid": 1609740, + "normalized_name": "alchemical inc." + }, + { + "appid": 1609760, + "normalized_name": "combat kings" + }, + { + "appid": 1609780, + "normalized_name": "invader td" + }, + { + "appid": 1609800, + "normalized_name": "akinofa" + }, + { + "appid": 1609830, + "normalized_name": "willwalker" + }, + { + "appid": 1609860, + "normalized_name": "dungeonite" + }, + { + "appid": 1609870, + "normalized_name": "pro basketball manager 2022" + }, + { + "appid": 1609950, + "normalized_name": "autonima" + }, + { + "appid": 1609990, + "normalized_name": "runic eternal sunrise" + }, + { + "appid": 1610000, + "normalized_name": "lightyears from home" + }, + { + "appid": 1610020, + "normalized_name": "king hajwala" + }, + { + "appid": 1610060, + "normalized_name": "echoes" + }, + { + "appid": 1610070, + "normalized_name": "you are kaiju" + }, + { + "appid": 1610110, + "normalized_name": "valley of dragons" + }, + { + "appid": 1610120, + "normalized_name": "my fox desktop wild pet" + }, + { + "appid": 1610130, + "normalized_name": "zombie freaks" + }, + { + "appid": 1610150, + "normalized_name": "cyber sex horny nurses" + }, + { + "appid": 1610180, + "normalized_name": "jack sprout" + }, + { + "appid": 1610190, + "normalized_name": "country adventure" + }, + { + "appid": 1610230, + "normalized_name": "true game" + }, + { + "appid": 1610290, + "normalized_name": "chihiro himukai always walks away" + }, + { + "appid": 1610310, + "normalized_name": "battle snakes" + }, + { + "appid": 1610320, + "normalized_name": "chronicles of tal'dun the remainder act 1" + }, + { + "appid": 1610330, + "normalized_name": "realm of night the forbidden knowledge" + }, + { + "appid": 1610350, + "normalized_name": "vanaris tactics prologue" + }, + { + "appid": 1610360, + "normalized_name": "ukiyo" + }, + { + "appid": 1610370, + "normalized_name": "horror royale" + }, + { + "appid": 1610410, + "normalized_name": "mr 333" + }, + { + "appid": 1610430, + "normalized_name": "opg clan wars" + }, + { + "appid": 1610440, + "normalized_name": "minds beneath us" + }, + { + "appid": 1610450, + "normalized_name": "nubla 2" + }, + { + "appid": 1610460, + "normalized_name": "monster energy supercross the official videogame 5" + }, + { + "appid": 1610470, + "normalized_name": "mxgp 2021 the official motocross videogame" + }, + { + "appid": 1610500, + "normalized_name": "bibots" + }, + { + "appid": 1610520, + "normalized_name": "serum toxic survival" + }, + { + "appid": 1610530, + "normalized_name": "the annoying game" + }, + { + "appid": 1610560, + "normalized_name": "cyber hunter awakening" + }, + { + "appid": 1610610, + "normalized_name": "糊剧101" + }, + { + "appid": 1610650, + "normalized_name": "●live in dungeon" + }, + { + "appid": 1610660, + "normalized_name": "throw knives" + }, + { + "appid": 1610670, + "normalized_name": "detective vr nft secret files" + }, + { + "appid": 1610700, + "normalized_name": "clutter 1000" + }, + { + "appid": 1610730, + "normalized_name": "fallen from the sky" + }, + { + "appid": 1610790, + "normalized_name": "cossack and magic" + }, + { + "appid": 1610820, + "normalized_name": "secrets of soil" + }, + { + "appid": 1610840, + "normalized_name": "virtuous western" + }, + { + "appid": 1610850, + "normalized_name": "red trigger 2" + }, + { + "appid": 1610860, + "normalized_name": "merek's market" + }, + { + "appid": 1610870, + "normalized_name": "chair simulator" + }, + { + "appid": 1610890, + "normalized_name": "boney's research on humans!" + }, + { + "appid": 1610900, + "normalized_name": "the genesis project" + }, + { + "appid": 1610910, + "normalized_name": "adventure forever" + }, + { + "appid": 1610960, + "normalized_name": "wizard's duty" + }, + { + "appid": 1610990, + "normalized_name": "distortion vr" + }, + { + "appid": 1611020, + "normalized_name": "the liquidators" + }, + { + "appid": 1611060, + "normalized_name": "la foret de pago 2 souvenir de glace" + }, + { + "appid": 1611070, + "normalized_name": "descent legends of the dark" + }, + { + "appid": 1611100, + "normalized_name": "nameless" + }, + { + "appid": 1611110, + "normalized_name": "amid the lines" + }, + { + "appid": 1611120, + "normalized_name": "out class hunter" + }, + { + "appid": 1611130, + "normalized_name": "playback trauma the beach" + }, + { + "appid": 1611140, + "normalized_name": "the dawning" + }, + { + "appid": 1611150, + "normalized_name": "the cube factory" + }, + { + "appid": 1611280, + "normalized_name": "g modeアーカイブス09 フライハイトクラウディア2" + }, + { + "appid": 1611290, + "normalized_name": "puzzle compound" + }, + { + "appid": 1611300, + "normalized_name": "happy guy" + }, + { + "appid": 1611320, + "normalized_name": "path to heaven" + }, + { + "appid": 1611350, + "normalized_name": "晴天咖啡館 sunny cafe" + }, + { + "appid": 1611410, + "normalized_name": "stardom 3" + }, + { + "appid": 1611420, + "normalized_name": "sea horizon" + }, + { + "appid": 1611430, + "normalized_name": "the bridge curse road to salvation" + }, + { + "appid": 1611440, + "normalized_name": "limyn" + }, + { + "appid": 1611490, + "normalized_name": "[chilla's art] night delivery | 例外配達" + }, + { + "appid": 1611540, + "normalized_name": "magic frame" + }, + { + "appid": 1611550, + "normalized_name": "monster evo" + }, + { + "appid": 1611580, + "normalized_name": "behind glass aquarium simulator" + }, + { + "appid": 1611590, + "normalized_name": "rotor" + }, + { + "appid": 1611600, + "normalized_name": "warno" + }, + { + "appid": 1611640, + "normalized_name": "toverblade" + }, + { + "appid": 1611650, + "normalized_name": "acheron's souls" + }, + { + "appid": 1611660, + "normalized_name": "本源行者 tao traveller 1900" + }, + { + "appid": 1611690, + "normalized_name": "五行游" + }, + { + "appid": 1611710, + "normalized_name": "geadows" + }, + { + "appid": 1611760, + "normalized_name": "a sketchbook about her sun" + }, + { + "appid": 1611800, + "normalized_name": "curving over it with evgeny podoynikov" + }, + { + "appid": 1611830, + "normalized_name": "teamtower" + }, + { + "appid": 1611840, + "normalized_name": "formula team" + }, + { + "appid": 1611850, + "normalized_name": "提线木偶 the marionette" + }, + { + "appid": 1611860, + "normalized_name": "anyway" + }, + { + "appid": 1611870, + "normalized_name": "loot city" + }, + { + "appid": 1611890, + "normalized_name": "retrowave road" + }, + { + "appid": 1611900, + "normalized_name": "wandering trails a hiking game" + }, + { + "appid": 1611910, + "normalized_name": "warhammer 40 000 chaos gate daemonhunters" + }, + { + "appid": 1611930, + "normalized_name": "henry's day" + }, + { + "appid": 1611950, + "normalized_name": "aquacity" + }, + { + "appid": 1611960, + "normalized_name": "doomed lands" + }, + { + "appid": 1611970, + "normalized_name": "grundlewhack season 1" + }, + { + "appid": 1611990, + "normalized_name": "hidiom" + }, + { + "appid": 1612000, + "normalized_name": "one day more" + }, + { + "appid": 1612020, + "normalized_name": "pure sniper" + }, + { + "appid": 1612030, + "normalized_name": "planet surf the last wave" + }, + { + "appid": 1612100, + "normalized_name": "big earth" + }, + { + "appid": 1612140, + "normalized_name": "мухосранск | russian city sim" + }, + { + "appid": 1612150, + "normalized_name": "forgotten forest eye of the great one" + }, + { + "appid": 1612160, + "normalized_name": "timo's adventures" + }, + { + "appid": 1612180, + "normalized_name": "slime's revenge" + }, + { + "appid": 1612190, + "normalized_name": "exodus" + }, + { + "appid": 1612200, + "normalized_name": "blokker orange" + }, + { + "appid": 1612220, + "normalized_name": "project to escape" + }, + { + "appid": 1612240, + "normalized_name": "smugforce" + }, + { + "appid": 1612270, + "normalized_name": "soul survivor" + }, + { + "appid": 1612330, + "normalized_name": "cafe paris" + }, + { + "appid": 1612360, + "normalized_name": "pistol master!" + }, + { + "appid": 1612380, + "normalized_name": "combat casino" + }, + { + "appid": 1612400, + "normalized_name": "celestial rescuers 2 zero mission" + }, + { + "appid": 1612420, + "normalized_name": "suit for hire" + }, + { + "appid": 1612430, + "normalized_name": "larinite" + }, + { + "appid": 1612470, + "normalized_name": "the last conquerors" + }, + { + "appid": 1612480, + "normalized_name": "heal hitler" + }, + { + "appid": 1612500, + "normalized_name": "dominoes3d simulator" + }, + { + "appid": 1612520, + "normalized_name": "smallz" + }, + { + "appid": 1612540, + "normalized_name": "dev inc" + }, + { + "appid": 1612550, + "normalized_name": "haunted hotel eternity collector's" + }, + { + "appid": 1612560, + "normalized_name": "dreamland confectionery" + }, + { + "appid": 1612570, + "normalized_name": "death or glory" + }, + { + "appid": 1612580, + "normalized_name": "edge of infinity" + }, + { + "appid": 1612590, + "normalized_name": "heredity" + }, + { + "appid": 1612620, + "normalized_name": "never return" + }, + { + "appid": 1612730, + "normalized_name": "gunfu fighter" + }, + { + "appid": 1612750, + "normalized_name": "yaarrgh! battle island!" + }, + { + "appid": 1612770, + "normalized_name": "sweet transit" + }, + { + "appid": 1612780, + "normalized_name": "the centennial case a shijima story" + }, + { + "appid": 1612810, + "normalized_name": "star chef 2 cooking game" + }, + { + "appid": 1612820, + "normalized_name": "frog hands steve" + }, + { + "appid": 1612870, + "normalized_name": "polygon world vr" + }, + { + "appid": 1612900, + "normalized_name": "two against the legion" + }, + { + "appid": 1612910, + "normalized_name": "異星病毒alien virus" + }, + { + "appid": 1612920, + "normalized_name": "nightslink" + }, + { + "appid": 1612950, + "normalized_name": "comic company manager" + }, + { + "appid": 1612960, + "normalized_name": "balloon flight" + }, + { + "appid": 1612980, + "normalized_name": "vr game station" + }, + { + "appid": 1613050, + "normalized_name": "flex hooks" + }, + { + "appid": 1613080, + "normalized_name": "rift drifter" + }, + { + "appid": 1613090, + "normalized_name": "gunkour" + }, + { + "appid": 1613100, + "normalized_name": "rioters 2025" + }, + { + "appid": 1613150, + "normalized_name": "box space station" + }, + { + "appid": 1613190, + "normalized_name": "the sin collector repentless" + }, + { + "appid": 1613210, + "normalized_name": "prophet prologue" + }, + { + "appid": 1613220, + "normalized_name": "world champions decathlon" + }, + { + "appid": 1613230, + "normalized_name": "shootrun" + }, + { + "appid": 1613300, + "normalized_name": "a star of chrome" + }, + { + "appid": 1613330, + "normalized_name": "midnight stories 2" + }, + { + "appid": 1613450, + "normalized_name": "halo 2 mod tools mcc" + }, + { + "appid": 1613470, + "normalized_name": "roboplant" + }, + { + "appid": 1613490, + "normalized_name": "nothing to remember" + }, + { + "appid": 1613530, + "normalized_name": "syrak the war in the middle east" + }, + { + "appid": 1613580, + "normalized_name": "arrival zero earth" + }, + { + "appid": 1613630, + "normalized_name": "dungeon d14" + }, + { + "appid": 1613670, + "normalized_name": "anglerfish" + }, + { + "appid": 1613680, + "normalized_name": "arrow sudoku" + }, + { + "appid": 1613760, + "normalized_name": "postulate_puppster" + }, + { + "appid": 1613770, + "normalized_name": "cave quest 2" + }, + { + "appid": 1613950, + "normalized_name": "sovereign tea" + }, + { + "appid": 1613960, + "normalized_name": "the death into trouble" + }, + { + "appid": 1614010, + "normalized_name": "freerunners" + }, + { + "appid": 1614020, + "normalized_name": "yokai taiji" + }, + { + "appid": 1614030, + "normalized_name": "electrogene" + }, + { + "appid": 1614040, + "normalized_name": "how we got here" + }, + { + "appid": 1614250, + "normalized_name": "dungeon girl" + }, + { + "appid": 1614270, + "normalized_name": "submerged hidden depths" + }, + { + "appid": 1614330, + "normalized_name": "crowsworn" + }, + { + "appid": 1614340, + "normalized_name": "matchsticks coffee break club" + }, + { + "appid": 1614360, + "normalized_name": "super ember kaboom" + }, + { + "appid": 1614380, + "normalized_name": "pnevmo capsula domiki" + }, + { + "appid": 1614440, + "normalized_name": "bō path of the teal lotus" + }, + { + "appid": 1614500, + "normalized_name": "run and jump little vico" + }, + { + "appid": 1614550, + "normalized_name": "astro colony" + }, + { + "appid": 1614620, + "normalized_name": "the chronicler" + }, + { + "appid": 1614680, + "normalized_name": "perspective" + }, + { + "appid": 1614730, + "normalized_name": "tm prologue" + }, + { + "appid": 1614740, + "normalized_name": "ink paper minesweeper" + }, + { + "appid": 1614840, + "normalized_name": "vr hentai lesbians sex" + }, + { + "appid": 1614850, + "normalized_name": "colosseum vr" + }, + { + "appid": 1614870, + "normalized_name": "prefantry" + }, + { + "appid": 1614880, + "normalized_name": "space transport tycoon" + }, + { + "appid": 1614890, + "normalized_name": "baldo the guardian owls" + }, + { + "appid": 1614900, + "normalized_name": "quest of a fallen" + }, + { + "appid": 1614940, + "normalized_name": "black smith3" + }, + { + "appid": 1614960, + "normalized_name": "miko adventures puffball" + }, + { + "appid": 1614990, + "normalized_name": "grid leaper" + }, + { + "appid": 1615000, + "normalized_name": "seas of kahtaone" + }, + { + "appid": 1615020, + "normalized_name": "the burnt school" + }, + { + "appid": 1615060, + "normalized_name": "yummy girl" + }, + { + "appid": 1615070, + "normalized_name": "space marmalade" + }, + { + "appid": 1615100, + "normalized_name": "the last stand legacy collection" + }, + { + "appid": 1615290, + "normalized_name": "ravenous devils" + }, + { + "appid": 1615370, + "normalized_name": "the neroe" + }, + { + "appid": 1615380, + "normalized_name": "ranger vs. drones" + }, + { + "appid": 1615470, + "normalized_name": "hexio" + }, + { + "appid": 1615560, + "normalized_name": "serpent showdown" + }, + { + "appid": 1615740, + "normalized_name": "machina blade" + }, + { + "appid": 1615750, + "normalized_name": "wolfriders a sniper adventure" + }, + { + "appid": 1615820, + "normalized_name": "trigger impact" + }, + { + "appid": 1615870, + "normalized_name": "cube" + }, + { + "appid": 1615890, + "normalized_name": "dice knight mystery of the moirai" + }, + { + "appid": 1615920, + "normalized_name": "oro" + }, + { + "appid": 1615930, + "normalized_name": "[international] absented age squarebound" + }, + { + "appid": 1615950, + "normalized_name": "g modeアーカイブス17 フライハイトクラウディア3" + }, + { + "appid": 1615980, + "normalized_name": "elite fighter" + }, + { + "appid": 1616030, + "normalized_name": "soaring machinariae" + }, + { + "appid": 1616050, + "normalized_name": "リアリティ×マインズ" + }, + { + "appid": 1616070, + "normalized_name": "bomb!bomb!carnival!!" + }, + { + "appid": 1616110, + "normalized_name": "glitch busters stuck on you" + }, + { + "appid": 1616190, + "normalized_name": "lineart jigsaw puzzle erotica 5" + }, + { + "appid": 1616200, + "normalized_name": "general population" + }, + { + "appid": 1616210, + "normalized_name": "mystery of camp enigma" + }, + { + "appid": 1616230, + "normalized_name": "lineart jigsaw puzzle airplanes" + }, + { + "appid": 1616240, + "normalized_name": "tom´s adventure" + }, + { + "appid": 1616260, + "normalized_name": "netcorter city 2179" + }, + { + "appid": 1616280, + "normalized_name": "chronicles of taldun the remainder" + }, + { + "appid": 1616510, + "normalized_name": "photoworld smooth сorners" + }, + { + "appid": 1616520, + "normalized_name": "リトルハーツ" + }, + { + "appid": 1616540, + "normalized_name": "exodus h" + }, + { + "appid": 1616550, + "normalized_name": "eyewitness hopper" + }, + { + "appid": 1616580, + "normalized_name": "ninja frog" + }, + { + "appid": 1616690, + "normalized_name": "action commando" + }, + { + "appid": 1616720, + "normalized_name": "bunker builder \"atlantic wall\"" + }, + { + "appid": 1616740, + "normalized_name": "scraftion" + }, + { + "appid": 1616820, + "normalized_name": "dragluttony" + }, + { + "appid": 1616870, + "normalized_name": "dininho space adventure" + }, + { + "appid": 1617010, + "normalized_name": "solbane" + }, + { + "appid": 1617020, + "normalized_name": "alien planet explorer" + }, + { + "appid": 1617030, + "normalized_name": "terrorbane" + }, + { + "appid": 1617080, + "normalized_name": "magecosmos" + }, + { + "appid": 1617090, + "normalized_name": "setup developer tool 2021" + }, + { + "appid": 1617120, + "normalized_name": "good heavens!" + }, + { + "appid": 1617160, + "normalized_name": "mad wild fairy tale" + }, + { + "appid": 1617190, + "normalized_name": "armaculture" + }, + { + "appid": 1617200, + "normalized_name": "santa soccer" + }, + { + "appid": 1617220, + "normalized_name": "thirsty suitors" + }, + { + "appid": 1617230, + "normalized_name": "paper sky" + }, + { + "appid": 1617270, + "normalized_name": "the faraway land" + }, + { + "appid": 1617280, + "normalized_name": "mezzanine" + }, + { + "appid": 1617360, + "normalized_name": "desperation" + }, + { + "appid": 1617370, + "normalized_name": "bridge to another world endless game collector's" + }, + { + "appid": 1617390, + "normalized_name": "flow" + }, + { + "appid": 1617420, + "normalized_name": "logistics simulator" + }, + { + "appid": 1617430, + "normalized_name": "bunhouse" + }, + { + "appid": 1617450, + "normalized_name": "panqueca & paçoca a friendship jigsaw" + }, + { + "appid": 1617480, + "normalized_name": "fight party" + }, + { + "appid": 1617510, + "normalized_name": "oversight" + }, + { + "appid": 1617560, + "normalized_name": "super swarm smash" + }, + { + "appid": 1617570, + "normalized_name": "cat of monte cristo" + }, + { + "appid": 1617580, + "normalized_name": "the scorchfarer" + }, + { + "appid": 1617600, + "normalized_name": "survive avalon" + }, + { + "appid": 1617710, + "normalized_name": "frontier" + }, + { + "appid": 1617760, + "normalized_name": "vikings age of the axe" + }, + { + "appid": 1617780, + "normalized_name": "neon light" + }, + { + "appid": 1617800, + "normalized_name": "kin's chronicle" + }, + { + "appid": 1617880, + "normalized_name": "cleithrophobia" + }, + { + "appid": 1617890, + "normalized_name": "imprisoned hyperion" + }, + { + "appid": 1617900, + "normalized_name": "head 2 head" + }, + { + "appid": 1617920, + "normalized_name": "blast ensemble" + }, + { + "appid": 1617950, + "normalized_name": "battle force 2249" + }, + { + "appid": 1618000, + "normalized_name": "monkey hit" + }, + { + "appid": 1618020, + "normalized_name": "hentai war" + }, + { + "appid": 1618030, + "normalized_name": "titan nebula" + }, + { + "appid": 1618050, + "normalized_name": "synth retro vapor wave" + }, + { + "appid": 1618070, + "normalized_name": "lock & key a hunter's legacy" + }, + { + "appid": 1618090, + "normalized_name": "lingering legacy" + }, + { + "appid": 1618140, + "normalized_name": "whack a rat vr" + }, + { + "appid": 1618160, + "normalized_name": "wicked" + }, + { + "appid": 1618180, + "normalized_name": "screamcap" + }, + { + "appid": 1618210, + "normalized_name": "speedbreak hyperdrive" + }, + { + "appid": 1618220, + "normalized_name": "窓の中の先にあるもの" + }, + { + "appid": 1618230, + "normalized_name": "恋爱关系/romance" + }, + { + "appid": 1618240, + "normalized_name": "the alien way" + }, + { + "appid": 1618280, + "normalized_name": "idle tentacles" + }, + { + "appid": 1618290, + "normalized_name": "train crew" + }, + { + "appid": 1618310, + "normalized_name": "zombie strike" + }, + { + "appid": 1618320, + "normalized_name": "doodle champs" + }, + { + "appid": 1618330, + "normalized_name": "out of order" + }, + { + "appid": 1618340, + "normalized_name": "dabado puzzles" + }, + { + "appid": 1618380, + "normalized_name": "spellmasons" + }, + { + "appid": 1618390, + "normalized_name": "generation nova" + }, + { + "appid": 1618450, + "normalized_name": "anatidae to the nest level" + }, + { + "appid": 1618510, + "normalized_name": "poulet poulet" + }, + { + "appid": 1618540, + "normalized_name": "ghost exorcism inc." + }, + { + "appid": 1618580, + "normalized_name": "run doodleguy!" + }, + { + "appid": 1618740, + "normalized_name": "cloud bashers dx" + }, + { + "appid": 1618800, + "normalized_name": "ooze odyssey" + }, + { + "appid": 1618910, + "normalized_name": "miskatonic" + }, + { + "appid": 1619060, + "normalized_name": "martin goes on the attack" + }, + { + "appid": 1619080, + "normalized_name": "cake invaders" + }, + { + "appid": 1619110, + "normalized_name": "walk on mars" + }, + { + "appid": 1619150, + "normalized_name": "gustav vasa adventures in the dales" + }, + { + "appid": 1619220, + "normalized_name": "sprite fantasia" + }, + { + "appid": 1619230, + "normalized_name": "the star named eos" + }, + { + "appid": 1619260, + "normalized_name": "flag color number painting and coloring" + }, + { + "appid": 1619310, + "normalized_name": "swat commander" + }, + { + "appid": 1619330, + "normalized_name": "firelight fantasy force energy" + }, + { + "appid": 1619340, + "normalized_name": "colosseum enigma" + }, + { + "appid": 1619350, + "normalized_name": "deepstates [vr]" + }, + { + "appid": 1619390, + "normalized_name": "zen landscape editor" + }, + { + "appid": 1619420, + "normalized_name": "diebrary" + }, + { + "appid": 1619450, + "normalized_name": "heart of a warrior" + }, + { + "appid": 1619520, + "normalized_name": "cross blitz" + }, + { + "appid": 1619540, + "normalized_name": "avalon" + }, + { + "appid": 1619550, + "normalized_name": "shank the cop" + }, + { + "appid": 1619560, + "normalized_name": "stu the first ai" + }, + { + "appid": 1619570, + "normalized_name": "death roads tournament" + }, + { + "appid": 1619580, + "normalized_name": "slopecrashers" + }, + { + "appid": 1619590, + "normalized_name": "afterlife" + }, + { + "appid": 1619660, + "normalized_name": "kambulin" + }, + { + "appid": 1619720, + "normalized_name": "patchwork image" + }, + { + "appid": 1619750, + "normalized_name": "karryn's prison" + }, + { + "appid": 1619770, + "normalized_name": "matthew last journey" + }, + { + "appid": 1619780, + "normalized_name": "task 312" + }, + { + "appid": 1619790, + "normalized_name": "aggressor" + }, + { + "appid": 1619810, + "normalized_name": "bunny hop" + }, + { + "appid": 1619820, + "normalized_name": "operation pinkeye" + }, + { + "appid": 1619830, + "normalized_name": "mello" + }, + { + "appid": 1619870, + "normalized_name": "the ballad of bonky" + }, + { + "appid": 1619890, + "normalized_name": "yupi" + }, + { + "appid": 1619900, + "normalized_name": "super 3d table tennis" + }, + { + "appid": 1619920, + "normalized_name": "the path of ren" + }, + { + "appid": 1619940, + "normalized_name": "mix a max" + }, + { + "appid": 1619970, + "normalized_name": "minable & create / ミナクリ" + }, + { + "appid": 1620020, + "normalized_name": "beat the beat up!" + }, + { + "appid": 1620030, + "normalized_name": "avatar the last airbender quest for balance" + }, + { + "appid": 1620040, + "normalized_name": "nickelodeon kart racers 3 slime speedway" + }, + { + "appid": 1620050, + "normalized_name": "sole survivor stages of death" + }, + { + "appid": 1620060, + "normalized_name": "clockwork dungeon" + }, + { + "appid": 1620070, + "normalized_name": "mortal and monster" + }, + { + "appid": 1620100, + "normalized_name": "furrifighters prequel i" + }, + { + "appid": 1620110, + "normalized_name": "slobbish dragon princess love + plus" + }, + { + "appid": 1620130, + "normalized_name": "advanced intelligence surveillance agency" + }, + { + "appid": 1620160, + "normalized_name": "idle raid" + }, + { + "appid": 1620240, + "normalized_name": "best mall simulator" + }, + { + "appid": 1620290, + "normalized_name": "zombie cure lab" + }, + { + "appid": 1620300, + "normalized_name": "fish & fight" + }, + { + "appid": 1620330, + "normalized_name": "trap tag" + }, + { + "appid": 1620340, + "normalized_name": "wrestling empire" + }, + { + "appid": 1620360, + "normalized_name": "draw it!" + }, + { + "appid": 1620390, + "normalized_name": "spare parts episode 2" + }, + { + "appid": 1620410, + "normalized_name": "federation77" + }, + { + "appid": 1620420, + "normalized_name": "redemption of the damned" + }, + { + "appid": 1620520, + "normalized_name": "mondealy" + }, + { + "appid": 1620540, + "normalized_name": "pixel cup soccer" + }, + { + "appid": 1620580, + "normalized_name": "hentai vr 3" + }, + { + "appid": 1620600, + "normalized_name": "master of puppets" + }, + { + "appid": 1620640, + "normalized_name": "noctambulant" + }, + { + "appid": 1620700, + "normalized_name": "demonpandemicvr" + }, + { + "appid": 1620720, + "normalized_name": "the forest quartet" + }, + { + "appid": 1620730, + "normalized_name": "hell is us" + }, + { + "appid": 1620750, + "normalized_name": "links e6" + }, + { + "appid": 1620800, + "normalized_name": "helix" + }, + { + "appid": 1620820, + "normalized_name": "slimecore" + }, + { + "appid": 1620850, + "normalized_name": "omegabot" + }, + { + "appid": 1620860, + "normalized_name": "chicken holmes chanislavski whispers" + }, + { + "appid": 1620870, + "normalized_name": "outer space shack" + }, + { + "appid": 1620890, + "normalized_name": "hentai boy" + }, + { + "appid": 1620920, + "normalized_name": "guazu the rescue" + }, + { + "appid": 1620970, + "normalized_name": "blue rabbit" + }, + { + "appid": 1621000, + "normalized_name": "waifu battle online" + }, + { + "appid": 1621050, + "normalized_name": "chicken ranch" + }, + { + "appid": 1621070, + "normalized_name": "deadpoly" + }, + { + "appid": 1621100, + "normalized_name": "sorcerous" + }, + { + "appid": 1621130, + "normalized_name": "the little black bestiary a midsummer night’s barcrawl" + }, + { + "appid": 1621140, + "normalized_name": "clawfish" + }, + { + "appid": 1621170, + "normalized_name": "dungeon cafe" + }, + { + "appid": 1621200, + "normalized_name": "hot pot vr" + }, + { + "appid": 1621210, + "normalized_name": "nemithia" + }, + { + "appid": 1621220, + "normalized_name": "a night in vanet manor" + }, + { + "appid": 1621240, + "normalized_name": "bomb" + }, + { + "appid": 1621310, + "normalized_name": "atelier sophie 2 the alchemist of the mysterious dream" + }, + { + "appid": 1621320, + "normalized_name": "eggcelerate! to the tropics" + }, + { + "appid": 1621350, + "normalized_name": "dreamt" + }, + { + "appid": 1621380, + "normalized_name": "scampr" + }, + { + "appid": 1621390, + "normalized_name": "siege up!" + }, + { + "appid": 1621420, + "normalized_name": "after shadows" + }, + { + "appid": 1621450, + "normalized_name": "biscuitts 4" + }, + { + "appid": 1621480, + "normalized_name": "shadow falls" + }, + { + "appid": 1621490, + "normalized_name": "magicshop3d" + }, + { + "appid": 1621540, + "normalized_name": "spooky milk life" + }, + { + "appid": 1621560, + "normalized_name": "black one blood brothers" + }, + { + "appid": 1621600, + "normalized_name": "reign over" + }, + { + "appid": 1621680, + "normalized_name": "sword and fairy 4" + }, + { + "appid": 1621690, + "normalized_name": "core keeper" + }, + { + "appid": 1621750, + "normalized_name": "good girls" + }, + { + "appid": 1621760, + "normalized_name": "decision red daze" + }, + { + "appid": 1621870, + "normalized_name": "mole in the hole" + }, + { + "appid": 1621880, + "normalized_name": "magnery reign" + }, + { + "appid": 1621890, + "normalized_name": "serial killer life" + }, + { + "appid": 1621900, + "normalized_name": "nightclub manager violet vibe" + }, + { + "appid": 1621910, + "normalized_name": "radio commander pacific campaign" + }, + { + "appid": 1621920, + "normalized_name": "trappuzzler" + }, + { + "appid": 1621930, + "normalized_name": "reverse the eternal fire" + }, + { + "appid": 1621950, + "normalized_name": "ultra ninja soul" + }, + { + "appid": 1621980, + "normalized_name": "territory animals genetic strategy" + }, + { + "appid": 1621990, + "normalized_name": "stray blade" + }, + { + "appid": 1622000, + "normalized_name": "leave!" + }, + { + "appid": 1622010, + "normalized_name": "castle greyrot" + }, + { + "appid": 1622030, + "normalized_name": "heard there was a chosen one" + }, + { + "appid": 1622040, + "normalized_name": "lila's tale and the hidden forest" + }, + { + "appid": 1622050, + "normalized_name": "sand bullets" + }, + { + "appid": 1622080, + "normalized_name": "flyland wars 0 ball game [trainer]" + }, + { + "appid": 1622090, + "normalized_name": "water ball" + }, + { + "appid": 1622110, + "normalized_name": "zoria and the cursed land" + }, + { + "appid": 1622130, + "normalized_name": "our life now & forever" + }, + { + "appid": 1622140, + "normalized_name": "zoms & guns" + }, + { + "appid": 1622180, + "normalized_name": "frame game" + }, + { + "appid": 1622230, + "normalized_name": "meanderer" + }, + { + "appid": 1622250, + "normalized_name": "dead hospital" + }, + { + "appid": 1622270, + "normalized_name": "coins battle" + }, + { + "appid": 1622310, + "normalized_name": "kity builder" + }, + { + "appid": 1622340, + "normalized_name": "beat 'em down" + }, + { + "appid": 1622350, + "normalized_name": "copycat" + }, + { + "appid": 1622360, + "normalized_name": "stellona" + }, + { + "appid": 1622410, + "normalized_name": "alchementalist" + }, + { + "appid": 1622420, + "normalized_name": "折射大师(master of refraction)" + }, + { + "appid": 1622450, + "normalized_name": "реzик" + }, + { + "appid": 1622470, + "normalized_name": "content" + }, + { + "appid": 1622510, + "normalized_name": "touhou 3d dungeon" + }, + { + "appid": 1622560, + "normalized_name": "interplanetary gardener" + }, + { + "appid": 1622570, + "normalized_name": "out of sight" + }, + { + "appid": 1622590, + "normalized_name": "templar castle builder" + }, + { + "appid": 1622600, + "normalized_name": "moxina" + }, + { + "appid": 1622610, + "normalized_name": "hell slayer" + }, + { + "appid": 1622630, + "normalized_name": "otherskin" + }, + { + "appid": 1622640, + "normalized_name": "nihilsearch" + }, + { + "appid": 1622660, + "normalized_name": "stream skate" + }, + { + "appid": 1622680, + "normalized_name": "mount serenity guardian of the spirits" + }, + { + "appid": 1622690, + "normalized_name": "appetite for detestation" + }, + { + "appid": 1622710, + "normalized_name": "oceanhorn 2 knights of the lost realm" + }, + { + "appid": 1622720, + "normalized_name": "hot swap" + }, + { + "appid": 1622740, + "normalized_name": "wandering wolf" + }, + { + "appid": 1622770, + "normalized_name": "doors paradox" + }, + { + "appid": 1622780, + "normalized_name": "latex dungeon" + }, + { + "appid": 1622800, + "normalized_name": "super dungeon maker" + }, + { + "appid": 1622810, + "normalized_name": "horny heart" + }, + { + "appid": 1622830, + "normalized_name": "stardrytch" + }, + { + "appid": 1622840, + "normalized_name": "apollo in outer space" + }, + { + "appid": 1622900, + "normalized_name": "star trek infinite" + }, + { + "appid": 1622910, + "normalized_name": "still wakes the deep" + }, + { + "appid": 1622920, + "normalized_name": "fire dogs" + }, + { + "appid": 1622970, + "normalized_name": "packing house" + }, + { + "appid": 1622980, + "normalized_name": "fire sale" + }, + { + "appid": 1622990, + "normalized_name": "dr. byte" + }, + { + "appid": 1623000, + "normalized_name": "kate collateral damage" + }, + { + "appid": 1623060, + "normalized_name": "endless heck" + }, + { + "appid": 1623070, + "normalized_name": "master of magic" + }, + { + "appid": 1623080, + "normalized_name": "aery calm mind" + }, + { + "appid": 1623090, + "normalized_name": "from earth to heaven" + }, + { + "appid": 1623120, + "normalized_name": "chaos on wheels" + }, + { + "appid": 1623130, + "normalized_name": "multigravity" + }, + { + "appid": 1623210, + "normalized_name": "soulash" + }, + { + "appid": 1623220, + "normalized_name": "ball twist" + }, + { + "appid": 1623240, + "normalized_name": "maguntsche chapter one" + }, + { + "appid": 1623260, + "normalized_name": "dreadstone the immortal prisoner" + }, + { + "appid": 1623300, + "normalized_name": "model building restoration" + }, + { + "appid": 1623310, + "normalized_name": "empire chronicles" + }, + { + "appid": 1623320, + "normalized_name": "little big guy" + }, + { + "appid": 1623340, + "normalized_name": "3d hentai puzzle 2" + }, + { + "appid": 1623350, + "normalized_name": "sticking around" + }, + { + "appid": 1623370, + "normalized_name": "ohio john get out!" + }, + { + "appid": 1623380, + "normalized_name": "aciiiiiiiiiiiiiiid" + }, + { + "appid": 1623390, + "normalized_name": "unplugged" + }, + { + "appid": 1623410, + "normalized_name": "dojo corridor" + }, + { + "appid": 1623420, + "normalized_name": "serious sam kamikaze attack!" + }, + { + "appid": 1623440, + "normalized_name": "time breaker" + }, + { + "appid": 1623520, + "normalized_name": "tower of cards" + }, + { + "appid": 1623530, + "normalized_name": "魔物娘捕获大陆" + }, + { + "appid": 1623550, + "normalized_name": "hexes" + }, + { + "appid": 1623560, + "normalized_name": "rescue teddy" + }, + { + "appid": 1623580, + "normalized_name": "evocadi" + }, + { + "appid": 1623640, + "normalized_name": "the witch's maze" + }, + { + "appid": 1623650, + "normalized_name": "don't cut your hand 2" + }, + { + "appid": 1623660, + "normalized_name": "mir4" + }, + { + "appid": 1623690, + "normalized_name": "异界转生 这次变成了传说中的勇者呢(受)" + }, + { + "appid": 1623700, + "normalized_name": "deiland pocket planet" + }, + { + "appid": 1623720, + "normalized_name": "brainteaser" + }, + { + "appid": 1623730, + "normalized_name": "palworld" + }, + { + "appid": 1623770, + "normalized_name": "facettes" + }, + { + "appid": 1623790, + "normalized_name": "wraithgate" + }, + { + "appid": 1623850, + "normalized_name": "naught bots" + }, + { + "appid": 1623870, + "normalized_name": "the bolt age" + }, + { + "appid": 1623880, + "normalized_name": "noob the factionless" + }, + { + "appid": 1623930, + "normalized_name": "solaris" + }, + { + "appid": 1623940, + "normalized_name": "bramble the mountain king" + }, + { + "appid": 1623960, + "normalized_name": "loot slider" + }, + { + "appid": 1624000, + "normalized_name": "duskwitch heroic soul" + }, + { + "appid": 1624020, + "normalized_name": "don't dive deep" + }, + { + "appid": 1624050, + "normalized_name": "myth of ethary" + }, + { + "appid": 1624060, + "normalized_name": "space for sale" + }, + { + "appid": 1624130, + "normalized_name": "dreamland prison" + }, + { + "appid": 1624150, + "normalized_name": "juno" + }, + { + "appid": 1624160, + "normalized_name": "sword of paladin re" + }, + { + "appid": 1624170, + "normalized_name": "gamma 19" + }, + { + "appid": 1624180, + "normalized_name": "voice" + }, + { + "appid": 1624190, + "normalized_name": "a chamber of stars" + }, + { + "appid": 1624210, + "normalized_name": "flowers for you a pleasant walk" + }, + { + "appid": 1624220, + "normalized_name": "it takes the ball" + }, + { + "appid": 1624320, + "normalized_name": "eigengrau" + }, + { + "appid": 1624350, + "normalized_name": "super onion boy 2" + }, + { + "appid": 1624380, + "normalized_name": "horny sekai" + }, + { + "appid": 1624460, + "normalized_name": "the fangs huntress" + }, + { + "appid": 1624470, + "normalized_name": "mirror of life" + }, + { + "appid": 1624490, + "normalized_name": "do you care?" + }, + { + "appid": 1624540, + "normalized_name": "storyteller" + }, + { + "appid": 1624550, + "normalized_name": "betty & earl" + }, + { + "appid": 1624560, + "normalized_name": "far away horse" + }, + { + "appid": 1624570, + "normalized_name": "midnight calling jeronimo collector's" + }, + { + "appid": 1624600, + "normalized_name": "realms vr" + }, + { + "appid": 1624610, + "normalized_name": "mecha snake" + }, + { + "appid": 1624620, + "normalized_name": "supersecret" + }, + { + "appid": 1624640, + "normalized_name": "survivals unknown" + }, + { + "appid": 1624760, + "normalized_name": "cardiac unrest" + }, + { + "appid": 1624780, + "normalized_name": "mosaic hearts preview (chap 00 01)" + }, + { + "appid": 1624830, + "normalized_name": "path of sacrifice" + }, + { + "appid": 1624840, + "normalized_name": "super chesslike adventure" + }, + { + "appid": 1624850, + "normalized_name": "bite sized puzzle" + }, + { + "appid": 1624860, + "normalized_name": "tasty jigsaw happy hour 2" + }, + { + "appid": 1624870, + "normalized_name": "mystery solitaire powerful alchemist" + }, + { + "appid": 1624880, + "normalized_name": "1001 jigsaw legends of mystery 2" + }, + { + "appid": 1624890, + "normalized_name": "mystery solitaire grimm's tales 3" + }, + { + "appid": 1624900, + "normalized_name": "1001 jigsaw detective" + }, + { + "appid": 1624910, + "normalized_name": "detective solitaire the ghost agency" + }, + { + "appid": 1624920, + "normalized_name": "1001 jigsaw. home sweet home. back from vacation" + }, + { + "appid": 1624930, + "normalized_name": "ad mortem" + }, + { + "appid": 1624940, + "normalized_name": "restaurant solitaire delicious lunch" + }, + { + "appid": 1624950, + "normalized_name": "1001 jigsaw. earth chronicles 9" + }, + { + "appid": 1624960, + "normalized_name": "solitaire bonbon" + }, + { + "appid": 1624970, + "normalized_name": "gnomes solitaire" + }, + { + "appid": 1624980, + "normalized_name": "brainland" + }, + { + "appid": 1624990, + "normalized_name": "alzheimer's memories" + }, + { + "appid": 1625020, + "normalized_name": "sweet candy" + }, + { + "appid": 1625060, + "normalized_name": "lost scale part one" + }, + { + "appid": 1625080, + "normalized_name": "have a nice dream" + }, + { + "appid": 1625090, + "normalized_name": "battlegate" + }, + { + "appid": 1625100, + "normalized_name": "templefight" + }, + { + "appid": 1625110, + "normalized_name": "ghost blood" + }, + { + "appid": 1625130, + "normalized_name": "orbit x" + }, + { + "appid": 1625150, + "normalized_name": "mia sos" + }, + { + "appid": 1625170, + "normalized_name": "skull seeker" + }, + { + "appid": 1625190, + "normalized_name": "anyek the keyboard puzzle" + }, + { + "appid": 1625230, + "normalized_name": "noesis ⅱ 人间无常「正式版」" + }, + { + "appid": 1625260, + "normalized_name": "中国象棋 残局大师" + }, + { + "appid": 1625270, + "normalized_name": "reigns of samosbor п747" + }, + { + "appid": 1625280, + "normalized_name": "shackled" + }, + { + "appid": 1625340, + "normalized_name": "united assault battle of the bulge" + }, + { + "appid": 1625370, + "normalized_name": "connected!" + }, + { + "appid": 1625420, + "normalized_name": "skyward descent" + }, + { + "appid": 1625440, + "normalized_name": "don't byte your tongue" + }, + { + "appid": 1625450, + "normalized_name": "muck" + }, + { + "appid": 1625460, + "normalized_name": "reptilian rising" + }, + { + "appid": 1625510, + "normalized_name": "insect adventure" + }, + { + "appid": 1625520, + "normalized_name": "seance" + }, + { + "appid": 1625550, + "normalized_name": "six shooters" + }, + { + "appid": 1625610, + "normalized_name": "bub block" + }, + { + "appid": 1625630, + "normalized_name": "ab aeterno" + }, + { + "appid": 1625650, + "normalized_name": "mirror movement" + }, + { + "appid": 1625670, + "normalized_name": "autocube" + }, + { + "appid": 1625690, + "normalized_name": "maze masters" + }, + { + "appid": 1625700, + "normalized_name": "the chatters show" + }, + { + "appid": 1625710, + "normalized_name": "anime match" + }, + { + "appid": 1625720, + "normalized_name": "the dream libra had" + }, + { + "appid": 1625760, + "normalized_name": "dave dave dave" + }, + { + "appid": 1625780, + "normalized_name": "" + }, + { + "appid": 1625790, + "normalized_name": "unicorn and sweets" + }, + { + "appid": 1625800, + "normalized_name": "hentai in the forest" + }, + { + "appid": 1625810, + "normalized_name": "击剑" + }, + { + "appid": 1625820, + "normalized_name": "banish" + }, + { + "appid": 1625830, + "normalized_name": "brendan keogh's putting challenge" + }, + { + "appid": 1625840, + "normalized_name": "rabbit run" + }, + { + "appid": 1625900, + "normalized_name": "astroroxx" + }, + { + "appid": 1625930, + "normalized_name": "galaia" + }, + { + "appid": 1625950, + "normalized_name": "dead crisis" + }, + { + "appid": 1625960, + "normalized_name": "loverowind" + }, + { + "appid": 1625990, + "normalized_name": "the only wise" + }, + { + "appid": 1626010, + "normalized_name": "the king's cards" + }, + { + "appid": 1626040, + "normalized_name": "dog_fox_bunny" + }, + { + "appid": 1626060, + "normalized_name": "nauticalypse" + }, + { + "appid": 1626080, + "normalized_name": "unlimited world book retro" + }, + { + "appid": 1626100, + "normalized_name": "ringracer" + }, + { + "appid": 1626110, + "normalized_name": "space porter" + }, + { + "appid": 1626120, + "normalized_name": "last dream ii" + }, + { + "appid": 1626130, + "normalized_name": "allura curse of the mermaid" + }, + { + "appid": 1626140, + "normalized_name": "dekonstrukt" + }, + { + "appid": 1626150, + "normalized_name": "deadly shaft" + }, + { + "appid": 1626160, + "normalized_name": "micro abyss" + }, + { + "appid": 1626180, + "normalized_name": "squad killer" + }, + { + "appid": 1626190, + "normalized_name": "incarnation a god reborn" + }, + { + "appid": 1626280, + "normalized_name": "explory story" + }, + { + "appid": 1626350, + "normalized_name": "pekoe" + }, + { + "appid": 1626370, + "normalized_name": "raybound" + }, + { + "appid": 1626410, + "normalized_name": "walk of shame" + }, + { + "appid": 1626420, + "normalized_name": "shape vs shapes" + }, + { + "appid": 1626450, + "normalized_name": "galactic speed legends" + }, + { + "appid": 1626460, + "normalized_name": "over the counter" + }, + { + "appid": 1626480, + "normalized_name": "slime labs" + }, + { + "appid": 1626490, + "normalized_name": "we are open" + }, + { + "appid": 1626510, + "normalized_name": "project dark sky" + }, + { + "appid": 1626520, + "normalized_name": "randomish" + }, + { + "appid": 1626530, + "normalized_name": "facteroids" + }, + { + "appid": 1626560, + "normalized_name": "lineart jigsaw puzzle erotica summer" + }, + { + "appid": 1626570, + "normalized_name": "super hot potato" + }, + { + "appid": 1626600, + "normalized_name": "桃夭塔 taoyaota" + }, + { + "appid": 1626610, + "normalized_name": "bunny dance" + }, + { + "appid": 1626620, + "normalized_name": "koira" + }, + { + "appid": 1626630, + "normalized_name": "mirror magic" + }, + { + "appid": 1626640, + "normalized_name": "gamer girls [18+] esports sex" + }, + { + "appid": 1626680, + "normalized_name": "surgeball" + }, + { + "appid": 1626710, + "normalized_name": "ray attack" + }, + { + "appid": 1626740, + "normalized_name": "horny alice gothic run" + }, + { + "appid": 1626840, + "normalized_name": "dunnigan's trail" + }, + { + "appid": 1626850, + "normalized_name": "demon engines" + }, + { + "appid": 1626890, + "normalized_name": "坏小孩" + }, + { + "appid": 1626900, + "normalized_name": "furry pride" + }, + { + "appid": 1626930, + "normalized_name": "arithal" + }, + { + "appid": 1626950, + "normalized_name": "the case of maneki" + }, + { + "appid": 1626980, + "normalized_name": "3 club golf" + }, + { + "appid": 1627030, + "normalized_name": "crash & dash" + }, + { + "appid": 1627040, + "normalized_name": "학생들의 공포괴담 終 (students' horrible stories fin)" + }, + { + "appid": 1627060, + "normalized_name": "karting4fun" + }, + { + "appid": 1627120, + "normalized_name": "operation body count" + }, + { + "appid": 1627130, + "normalized_name": "shadoworlds" + }, + { + "appid": 1627140, + "normalized_name": "sabre team" + }, + { + "appid": 1627180, + "normalized_name": "operation insanity" + }, + { + "appid": 1627210, + "normalized_name": "morgenstern" + }, + { + "appid": 1627240, + "normalized_name": "at the behest of the pike time to run" + }, + { + "appid": 1627250, + "normalized_name": "go clubbing" + }, + { + "appid": 1627270, + "normalized_name": "milksoup" + }, + { + "appid": 1627280, + "normalized_name": "operation vicus" + }, + { + "appid": 1627290, + "normalized_name": "mess cleanup" + }, + { + "appid": 1627310, + "normalized_name": "ralph and the blue ball" + }, + { + "appid": 1627320, + "normalized_name": "tonestone" + }, + { + "appid": 1627330, + "normalized_name": "instinct war card game" + }, + { + "appid": 1627350, + "normalized_name": "dead letter dept." + }, + { + "appid": 1627360, + "normalized_name": "vulkan lost planet" + }, + { + "appid": 1627410, + "normalized_name": "the last stand" + }, + { + "appid": 1627420, + "normalized_name": "lilly's rescue" + }, + { + "appid": 1627450, + "normalized_name": "the last escape" + }, + { + "appid": 1627470, + "normalized_name": "wingman" + }, + { + "appid": 1627480, + "normalized_name": "aplestia retold" + }, + { + "appid": 1627510, + "normalized_name": "deathchron" + }, + { + "appid": 1627520, + "normalized_name": "2236 a.d. secretary stories" + }, + { + "appid": 1627560, + "normalized_name": "jigoku unko" + }, + { + "appid": 1627570, + "normalized_name": "the plucky squire" + }, + { + "appid": 1627590, + "normalized_name": "spirit land" + }, + { + "appid": 1627610, + "normalized_name": "jgsw" + }, + { + "appid": 1627660, + "normalized_name": "a clever label" + }, + { + "appid": 1627680, + "normalized_name": "love n war hero by chance ii" + }, + { + "appid": 1627710, + "normalized_name": "rangerdog" + }, + { + "appid": 1627720, + "normalized_name": "lies of p" + }, + { + "appid": 1627730, + "normalized_name": "spinning top" + }, + { + "appid": 1627740, + "normalized_name": "shakespeare? more like thirstspeare amirite?" + }, + { + "appid": 1627750, + "normalized_name": "o.a.c world begins" + }, + { + "appid": 1627760, + "normalized_name": "jetpack jack" + }, + { + "appid": 1627770, + "normalized_name": "the kostka" + }, + { + "appid": 1627820, + "normalized_name": "universe for sale prologue" + }, + { + "appid": 1627840, + "normalized_name": "universe for sale" + }, + { + "appid": 1627850, + "normalized_name": "deadly broadcast" + }, + { + "appid": 1627870, + "normalized_name": "oddada" + }, + { + "appid": 1627890, + "normalized_name": "ants took my eyeball" + }, + { + "appid": 1627920, + "normalized_name": "qb planets" + }, + { + "appid": 1628000, + "normalized_name": "superpantsu harematchii" + }, + { + "appid": 1628010, + "normalized_name": "mageo" + }, + { + "appid": 1628060, + "normalized_name": "project e.v.a. remake" + }, + { + "appid": 1628120, + "normalized_name": "rollers of the realm reunion" + }, + { + "appid": 1628130, + "normalized_name": "who pressed mute on uncle marcus?" + }, + { + "appid": 1628140, + "normalized_name": "innerworld" + }, + { + "appid": 1628170, + "normalized_name": "rules politically incorrect" + }, + { + "appid": 1628240, + "normalized_name": "ships 2022" + }, + { + "appid": 1628260, + "normalized_name": "sinful catalyst ch1 ethereal camellia" + }, + { + "appid": 1628270, + "normalized_name": "recursive hate spider hell" + }, + { + "appid": 1628300, + "normalized_name": "adventure light" + }, + { + "appid": 1628370, + "normalized_name": "lipstick assassin" + }, + { + "appid": 1628400, + "normalized_name": "hiragana katakana ninja" + }, + { + "appid": 1628430, + "normalized_name": "labyrinthus" + }, + { + "appid": 1628440, + "normalized_name": "trick & treat remake" + }, + { + "appid": 1628470, + "normalized_name": "monster academy" + }, + { + "appid": 1628480, + "normalized_name": "коты воители" + }, + { + "appid": 1628490, + "normalized_name": "lords of cards" + }, + { + "appid": 1628510, + "normalized_name": "net vr theater" + }, + { + "appid": 1628550, + "normalized_name": "evil" + }, + { + "appid": 1628610, + "normalized_name": "paquerette down the bunburrows" + }, + { + "appid": 1628620, + "normalized_name": "world boss" + }, + { + "appid": 1628640, + "normalized_name": "synthalgia retro arcade racing" + }, + { + "appid": 1628650, + "normalized_name": "a little time" + }, + { + "appid": 1628670, + "normalized_name": "move the window" + }, + { + "appid": 1628760, + "normalized_name": "kawaii neko girls" + }, + { + "appid": 1628790, + "normalized_name": "幻想殇物语" + }, + { + "appid": 1628820, + "normalized_name": "vidora's silence" + }, + { + "appid": 1628850, + "normalized_name": "failed ninja academy" + }, + { + "appid": 1628890, + "normalized_name": "necroboy path to evilship" + }, + { + "appid": 1628930, + "normalized_name": "cupcake remember" + }, + { + "appid": 1628940, + "normalized_name": "street striker" + }, + { + "appid": 1629040, + "normalized_name": "no fear" + }, + { + "appid": 1629060, + "normalized_name": "colibri xr immersive art gallery" + }, + { + "appid": 1629100, + "normalized_name": "hexagon knockout" + }, + { + "appid": 1629130, + "normalized_name": "big byz wars" + }, + { + "appid": 1629150, + "normalized_name": "gazmatera return of the generals" + }, + { + "appid": 1629160, + "normalized_name": "peg solitaire" + }, + { + "appid": 1629190, + "normalized_name": "spin the world" + }, + { + "appid": 1629200, + "normalized_name": "anima the reign of darkness" + }, + { + "appid": 1629210, + "normalized_name": "tales of aravorn an elven marriage" + }, + { + "appid": 1629220, + "normalized_name": "escape from ruby castle" + }, + { + "appid": 1629230, + "normalized_name": "tilehunter" + }, + { + "appid": 1629250, + "normalized_name": "gravitaze two" + }, + { + "appid": 1629300, + "normalized_name": "kiteboarding pro" + }, + { + "appid": 1629320, + "normalized_name": "dear brother" + }, + { + "appid": 1629350, + "normalized_name": "despair blood curse" + }, + { + "appid": 1629380, + "normalized_name": "last soul" + }, + { + "appid": 1629470, + "normalized_name": "project grove prologue" + }, + { + "appid": 1629480, + "normalized_name": "the last dance saloon" + }, + { + "appid": 1629520, + "normalized_name": "a little to the left" + }, + { + "appid": 1629530, + "normalized_name": "spark the electric jester 3" + }, + { + "appid": 1629550, + "normalized_name": "hagia sophia vr experience" + }, + { + "appid": 1629570, + "normalized_name": "spacegirl 2038" + }, + { + "appid": 1629600, + "normalized_name": "hidden shapes lovely cats jigsaw puzzle game" + }, + { + "appid": 1629650, + "normalized_name": "stinky feet the adventure of bigfoot" + }, + { + "appid": 1629660, + "normalized_name": "moonshell island" + }, + { + "appid": 1629680, + "normalized_name": "artifacting" + }, + { + "appid": 1629690, + "normalized_name": "rushout" + }, + { + "appid": 1629710, + "normalized_name": "red embrace mezzanine" + }, + { + "appid": 1629770, + "normalized_name": "whispered secrets ripple of the heart collector's" + }, + { + "appid": 1629780, + "normalized_name": "solara starlight horizon" + }, + { + "appid": 1629830, + "normalized_name": "research story" + }, + { + "appid": 1629900, + "normalized_name": "infinite pixel battles" + }, + { + "appid": 1629910, + "normalized_name": "souls of chronos" + }, + { + "appid": 1629940, + "normalized_name": "a walk with yiayia" + }, + { + "appid": 1630000, + "normalized_name": "musicle" + }, + { + "appid": 1630010, + "normalized_name": "mathematic adventures" + }, + { + "appid": 1630080, + "normalized_name": "college bound episode 1" + }, + { + "appid": 1630110, + "normalized_name": "gungrave g.o.r.e" + }, + { + "appid": 1630130, + "normalized_name": "lustful tribe" + }, + { + "appid": 1630160, + "normalized_name": "cyber noah" + }, + { + "appid": 1630180, + "normalized_name": "the hidden game society" + }, + { + "appid": 1630270, + "normalized_name": "death moon" + }, + { + "appid": 1630280, + "normalized_name": "r2beat 音速觉醒" + }, + { + "appid": 1630290, + "normalized_name": "yu crossing animals" + }, + { + "appid": 1630360, + "normalized_name": "matanga 2" + }, + { + "appid": 1630370, + "normalized_name": "school ! love ☆ reflex" + }, + { + "appid": 1630420, + "normalized_name": "slime girl smoothies" + }, + { + "appid": 1630430, + "normalized_name": "hovering lands" + }, + { + "appid": 1630440, + "normalized_name": "the hero journey in yggdrasil" + }, + { + "appid": 1630450, + "normalized_name": "eden.schemata();" + }, + { + "appid": 1630460, + "normalized_name": "iii:輪れ廻るワンダーランド" + }, + { + "appid": 1630490, + "normalized_name": "sakura forest girls 2" + }, + { + "appid": 1630500, + "normalized_name": "would you like to run an idol café? 2" + }, + { + "appid": 1630520, + "normalized_name": "everworld" + }, + { + "appid": 1630530, + "normalized_name": "universe999999" + }, + { + "appid": 1630570, + "normalized_name": "exs1~ethnologysister:cultural functionalism" + }, + { + "appid": 1630590, + "normalized_name": "paint drying simulator" + }, + { + "appid": 1630630, + "normalized_name": "run kitty! a furry gay visual novel" + }, + { + "appid": 1630640, + "normalized_name": "ichth.ys" + }, + { + "appid": 1630650, + "normalized_name": "neko beach" + }, + { + "appid": 1630690, + "normalized_name": "equin 2 the warren peace" + }, + { + "appid": 1630740, + "normalized_name": "silent night a christmas delivery" + }, + { + "appid": 1630760, + "normalized_name": "infinity valley" + }, + { + "appid": 1630780, + "normalized_name": "heartless dark" + }, + { + "appid": 1630800, + "normalized_name": "crystal sequence" + }, + { + "appid": 1630810, + "normalized_name": "silent woods the cleansed" + }, + { + "appid": 1630820, + "normalized_name": "panda push" + }, + { + "appid": 1630880, + "normalized_name": "sweeping the ruins" + }, + { + "appid": 1630890, + "normalized_name": "rift adventure" + }, + { + "appid": 1630910, + "normalized_name": "satanic panic 666" + }, + { + "appid": 1630920, + "normalized_name": "bright lights of svetlov" + }, + { + "appid": 1630940, + "normalized_name": "humble zombie" + }, + { + "appid": 1630960, + "normalized_name": "centipede recharged" + }, + { + "appid": 1631000, + "normalized_name": "first response" + }, + { + "appid": 1631010, + "normalized_name": "goldenjar fall" + }, + { + "appid": 1631040, + "normalized_name": "the last cove" + }, + { + "appid": 1631080, + "normalized_name": "honeyselect2libido dx" + }, + { + "appid": 1631090, + "normalized_name": "alien maze" + }, + { + "appid": 1631100, + "normalized_name": "one hell of a trip" + }, + { + "appid": 1631120, + "normalized_name": "void warfare" + }, + { + "appid": 1631140, + "normalized_name": "bias" + }, + { + "appid": 1631160, + "normalized_name": "logic car" + }, + { + "appid": 1631170, + "normalized_name": "objective h.a.s.t.e. survival horror escape" + }, + { + "appid": 1631190, + "normalized_name": "the invasion" + }, + { + "appid": 1631200, + "normalized_name": "hi poker 3d texas holdem" + }, + { + "appid": 1631210, + "normalized_name": "be my girlfriends" + }, + { + "appid": 1631230, + "normalized_name": "grimstar crystals are the new oil!" + }, + { + "appid": 1631240, + "normalized_name": "buccaneers! the new age of piracy" + }, + { + "appid": 1631260, + "normalized_name": "where is my parking spot parking reimagined" + }, + { + "appid": 1631270, + "normalized_name": "starrupture" + }, + { + "appid": 1631290, + "normalized_name": "wounded" + }, + { + "appid": 1631330, + "normalized_name": "equestrian training" + }, + { + "appid": 1631350, + "normalized_name": "fight of steel infinity warrior" + }, + { + "appid": 1631360, + "normalized_name": "thousand lives" + }, + { + "appid": 1631400, + "normalized_name": "jeff 16" + }, + { + "appid": 1631430, + "normalized_name": "smirkers" + }, + { + "appid": 1631440, + "normalized_name": "dwarven mining dungeons" + }, + { + "appid": 1631470, + "normalized_name": "critter cove" + }, + { + "appid": 1631500, + "normalized_name": "dumpy and bumpy" + }, + { + "appid": 1631530, + "normalized_name": "armored war" + }, + { + "appid": 1631540, + "normalized_name": "squeakers ii" + }, + { + "appid": 1631580, + "normalized_name": "call for backup" + }, + { + "appid": 1631600, + "normalized_name": "tourney" + }, + { + "appid": 1631630, + "normalized_name": "tanks but no tanks" + }, + { + "appid": 1631640, + "normalized_name": "异变战区 e.e.r.i.e" + }, + { + "appid": 1631670, + "normalized_name": "倒轉方舟 project ahno's ark" + }, + { + "appid": 1631700, + "normalized_name": "useful cat" + }, + { + "appid": 1631750, + "normalized_name": "my smug bully girlfriend" + }, + { + "appid": 1631770, + "normalized_name": "the indestructible moxy boxy" + }, + { + "appid": 1631780, + "normalized_name": "deep rune" + }, + { + "appid": 1631790, + "normalized_name": "dawnbreaker aeon's reach" + }, + { + "appid": 1631830, + "normalized_name": "squish" + }, + { + "appid": 1631850, + "normalized_name": "polyclassic wild" + }, + { + "appid": 1631860, + "normalized_name": "my cute pagangirl" + }, + { + "appid": 1631900, + "normalized_name": "hex of the lich" + }, + { + "appid": 1631920, + "normalized_name": "super zoo story" + }, + { + "appid": 1631930, + "normalized_name": "the insignia project" + }, + { + "appid": 1631960, + "normalized_name": "reactorx" + }, + { + "appid": 1631980, + "normalized_name": "away from home" + }, + { + "appid": 1632000, + "normalized_name": "yoko & yuki dr. rat's revenge" + }, + { + "appid": 1632010, + "normalized_name": "pantyhoes" + }, + { + "appid": 1632020, + "normalized_name": "4prot" + }, + { + "appid": 1632030, + "normalized_name": "soran" + }, + { + "appid": 1632040, + "normalized_name": "magic defense" + }, + { + "appid": 1632060, + "normalized_name": "terminal earth" + }, + { + "appid": 1632100, + "normalized_name": "courier tale" + }, + { + "appid": 1632140, + "normalized_name": "girl agent" + }, + { + "appid": 1632160, + "normalized_name": "祛魅·格心(祛魅3)" + }, + { + "appid": 1632170, + "normalized_name": "belle boomerang" + }, + { + "appid": 1632210, + "normalized_name": "zenko a fox's tale" + }, + { + "appid": 1632220, + "normalized_name": "violent witches the vindicator" + }, + { + "appid": 1632230, + "normalized_name": "newtonian inversion" + }, + { + "appid": 1632260, + "normalized_name": "水果祖玛 | fruit zumba" + }, + { + "appid": 1632280, + "normalized_name": "simple ray tracing mini game 10" + }, + { + "appid": 1632300, + "normalized_name": "侦查故事:枪声" + }, + { + "appid": 1632310, + "normalized_name": "a princess of fallen kingdom" + }, + { + "appid": 1632330, + "normalized_name": "calamity eliminator" + }, + { + "appid": 1632360, + "normalized_name": "coolors" + }, + { + "appid": 1632420, + "normalized_name": "risk of waifus" + }, + { + "appid": 1632450, + "normalized_name": "life in planet" + }, + { + "appid": 1632480, + "normalized_name": "beatjunkies" + }, + { + "appid": 1632490, + "normalized_name": "shashingo learn japanese with photography" + }, + { + "appid": 1632500, + "normalized_name": "doomer's adventure" + }, + { + "appid": 1632530, + "normalized_name": "adventures of the carrot captain" + }, + { + "appid": 1632590, + "normalized_name": "the silent sky part i" + }, + { + "appid": 1632610, + "normalized_name": "puzzle light one move" + }, + { + "appid": 1632630, + "normalized_name": "astraverse" + }, + { + "appid": 1632640, + "normalized_name": "bouncing traveler" + }, + { + "appid": 1632650, + "normalized_name": "daardoa" + }, + { + "appid": 1632670, + "normalized_name": "cave guessers" + }, + { + "appid": 1632690, + "normalized_name": "soraland" + }, + { + "appid": 1632710, + "normalized_name": "vr nudity camping" + }, + { + "appid": 1632750, + "normalized_name": "her heart's desire a landlord epic" + }, + { + "appid": 1632770, + "normalized_name": "star apprentice magical murder mystery" + }, + { + "appid": 1632810, + "normalized_name": "carminia" + }, + { + "appid": 1632820, + "normalized_name": "our beautiful earth 2" + }, + { + "appid": 1632870, + "normalized_name": "bird problems" + }, + { + "appid": 1632930, + "normalized_name": "cycled" + }, + { + "appid": 1632960, + "normalized_name": "luminyte" + }, + { + "appid": 1632990, + "normalized_name": "最后的坦克大战" + }, + { + "appid": 1633000, + "normalized_name": "starsation" + }, + { + "appid": 1633010, + "normalized_name": "fearbound" + }, + { + "appid": 1633020, + "normalized_name": "wood brothers flying colours" + }, + { + "appid": 1633050, + "normalized_name": "devoul curse of the soulless" + }, + { + "appid": 1633060, + "normalized_name": "time of piracy" + }, + { + "appid": 1633080, + "normalized_name": "just hoops" + }, + { + "appid": 1633090, + "normalized_name": "exo leviathan" + }, + { + "appid": 1633100, + "normalized_name": "dinobag's arcade" + }, + { + "appid": 1633110, + "normalized_name": "шхд лето / it's summer" + }, + { + "appid": 1633140, + "normalized_name": "crystal plague" + }, + { + "appid": 1633160, + "normalized_name": "aquarium travels" + }, + { + "appid": 1633170, + "normalized_name": "lux the journey" + }, + { + "appid": 1633200, + "normalized_name": "hold the dots!" + }, + { + "appid": 1633210, + "normalized_name": "medieval hero" + }, + { + "appid": 1633230, + "normalized_name": "freedom hunt kill fly" + }, + { + "appid": 1633260, + "normalized_name": "sicko island" + }, + { + "appid": 1633300, + "normalized_name": "aniquilation" + }, + { + "appid": 1633350, + "normalized_name": "tiny devil adventure" + }, + { + "appid": 1633370, + "normalized_name": "boat crew" + }, + { + "appid": 1633390, + "normalized_name": "hentai pretty" + }, + { + "appid": 1633400, + "normalized_name": "puzzle & maze" + }, + { + "appid": 1633410, + "normalized_name": "cyborpunk crisis" + }, + { + "appid": 1633430, + "normalized_name": "ou" + }, + { + "appid": 1633460, + "normalized_name": "罪印 seal of sins" + }, + { + "appid": 1633470, + "normalized_name": "爱与命的彼端" + }, + { + "appid": 1633490, + "normalized_name": "t^2.5" + }, + { + "appid": 1633550, + "normalized_name": "dark harvest" + }, + { + "appid": 1633580, + "normalized_name": "our battle has just begun! episode 1" + }, + { + "appid": 1633640, + "normalized_name": "papertris" + }, + { + "appid": 1633740, + "normalized_name": "pegasus broken wings" + }, + { + "appid": 1633770, + "normalized_name": "abyss" + }, + { + "appid": 1633780, + "normalized_name": "the tau ceti terminus" + }, + { + "appid": 1633830, + "normalized_name": "the shape on the ground (steam edition)" + }, + { + "appid": 1633850, + "normalized_name": "模拟江湖" + }, + { + "appid": 1633860, + "normalized_name": "firebird" + }, + { + "appid": 1633930, + "normalized_name": "sen.tur." + }, + { + "appid": 1634070, + "normalized_name": "crash effects inc." + }, + { + "appid": 1634080, + "normalized_name": "nocturnal" + }, + { + "appid": 1634090, + "normalized_name": "mini racing world" + }, + { + "appid": 1634100, + "normalized_name": "no more rainbows" + }, + { + "appid": 1634110, + "normalized_name": "sculpture hentai" + }, + { + "appid": 1634130, + "normalized_name": "color escape vr coop" + }, + { + "appid": 1634150, + "normalized_name": "behind the frame the finest scenery" + }, + { + "appid": 1634190, + "normalized_name": "sisyphus" + }, + { + "appid": 1634210, + "normalized_name": "puzz/lr" + }, + { + "appid": 1634220, + "normalized_name": "rytmos" + }, + { + "appid": 1634270, + "normalized_name": "chronophobia" + }, + { + "appid": 1634280, + "normalized_name": "space mechanic simulator prologue" + }, + { + "appid": 1634290, + "normalized_name": "chuhou joutai 2 paraided!" + }, + { + "appid": 1634300, + "normalized_name": "dimension rift zero" + }, + { + "appid": 1634330, + "normalized_name": "grid_hacker" + }, + { + "appid": 1634340, + "normalized_name": "open bar" + }, + { + "appid": 1634360, + "normalized_name": "emuurom" + }, + { + "appid": 1634380, + "normalized_name": "cockeyed helicopters" + }, + { + "appid": 1634390, + "normalized_name": "ages of cataria" + }, + { + "appid": 1634410, + "normalized_name": "animal rivals up in the air" + }, + { + "appid": 1634430, + "normalized_name": "equilibrium" + }, + { + "appid": 1634450, + "normalized_name": "b 17 flying fortress world war ii bombers in action" + }, + { + "appid": 1634540, + "normalized_name": "children's jigsaw puzzles beautifully illustrated" + }, + { + "appid": 1634600, + "normalized_name": "let's turn pick up beach to a nudist fucking beach!" + }, + { + "appid": 1634740, + "normalized_name": "nanoscape vr" + }, + { + "appid": 1634750, + "normalized_name": "sweety little witch" + }, + { + "appid": 1634830, + "normalized_name": "keep trying! zombie apocalypse" + }, + { + "appid": 1634860, + "normalized_name": "minishoot' adventures" + }, + { + "appid": 1634870, + "normalized_name": "open brush" + }, + { + "appid": 1634900, + "normalized_name": "acheron" + }, + { + "appid": 1634940, + "normalized_name": "the altered lands" + }, + { + "appid": 1634950, + "normalized_name": "voronica cleans house a vore adventure" + }, + { + "appid": 1634970, + "normalized_name": "idle master hunter steam" + }, + { + "appid": 1634980, + "normalized_name": "escape room the sorcerer's curse" + }, + { + "appid": 1634990, + "normalized_name": "mark out! the wrestling card game" + }, + { + "appid": 1635020, + "normalized_name": "untitled marble game" + }, + { + "appid": 1635030, + "normalized_name": "charming girls" + }, + { + "appid": 1635080, + "normalized_name": "bakudan hero" + }, + { + "appid": 1635120, + "normalized_name": "pog 2" + }, + { + "appid": 1635150, + "normalized_name": "protect the earth" + }, + { + "appid": 1635210, + "normalized_name": "broken blades" + }, + { + "appid": 1635220, + "normalized_name": "a circle among squares" + }, + { + "appid": 1635250, + "normalized_name": "legend of chilli tree" + }, + { + "appid": 1635290, + "normalized_name": "detective bureau simulator" + }, + { + "appid": 1635320, + "normalized_name": "捉迷藏 hide and seek" + }, + { + "appid": 1635350, + "normalized_name": "leave no one behind ia drang" + }, + { + "appid": 1635410, + "normalized_name": "it's harvest time!" + }, + { + "appid": 1635440, + "normalized_name": "operation f.a.t.e." + }, + { + "appid": 1635450, + "normalized_name": "longvinter" + }, + { + "appid": 1635460, + "normalized_name": "eternity guards" + }, + { + "appid": 1635480, + "normalized_name": "spaceships" + }, + { + "appid": 1635490, + "normalized_name": "hair bows" + }, + { + "appid": 1635500, + "normalized_name": "elements destiny" + }, + { + "appid": 1635520, + "normalized_name": "dust devil" + }, + { + "appid": 1635550, + "normalized_name": "truck mechanic dangerous paths prologue" + }, + { + "appid": 1635580, + "normalized_name": "cowravaneer" + }, + { + "appid": 1635590, + "normalized_name": "my friend peppa pig" + }, + { + "appid": 1635600, + "normalized_name": "pj masks heroes of the night" + }, + { + "appid": 1635620, + "normalized_name": "pathfinders mini words" + }, + { + "appid": 1635630, + "normalized_name": "are you a boat?" + }, + { + "appid": 1635640, + "normalized_name": "rhythm quest" + }, + { + "appid": 1635650, + "normalized_name": "chromatic fantasy" + }, + { + "appid": 1635660, + "normalized_name": "ninja leagues masters of the mystic arts" + }, + { + "appid": 1635670, + "normalized_name": "draco space x" + }, + { + "appid": 1635700, + "normalized_name": "incoming" + }, + { + "appid": 1635710, + "normalized_name": "bossfight tactics" + }, + { + "appid": 1635720, + "normalized_name": "homebound" + }, + { + "appid": 1635750, + "normalized_name": "air racing vr" + }, + { + "appid": 1635770, + "normalized_name": "the looking stone" + }, + { + "appid": 1635780, + "normalized_name": "芯之迷城" + }, + { + "appid": 1635790, + "normalized_name": "chesscraft" + }, + { + "appid": 1635800, + "normalized_name": "dungeon warriors" + }, + { + "appid": 1635810, + "normalized_name": "planes journey" + }, + { + "appid": 1635830, + "normalized_name": "regiment of armour" + }, + { + "appid": 1635890, + "normalized_name": "the island of spirits" + }, + { + "appid": 1635920, + "normalized_name": "a dog named mato" + }, + { + "appid": 1635950, + "normalized_name": "circular" + }, + { + "appid": 1635980, + "normalized_name": "kubinashi recollection" + }, + { + "appid": 1636000, + "normalized_name": "tybot invasion the typing runner" + }, + { + "appid": 1636030, + "normalized_name": "crossfire sierra squad" + }, + { + "appid": 1636050, + "normalized_name": "last boss 9x9 action battle" + }, + { + "appid": 1636060, + "normalized_name": "忆渡mindless" + }, + { + "appid": 1636070, + "normalized_name": "totally convenient" + }, + { + "appid": 1636150, + "normalized_name": "heavyarms assemble wwii" + }, + { + "appid": 1636170, + "normalized_name": "bike mechanic simulator 2023" + }, + { + "appid": 1636190, + "normalized_name": "the absorber" + }, + { + "appid": 1636200, + "normalized_name": "horny fantasy girl hentai" + }, + { + "appid": 1636250, + "normalized_name": "toaster defense" + }, + { + "appid": 1636260, + "normalized_name": "detective rosie morgan murder on the river thames" + }, + { + "appid": 1636270, + "normalized_name": "love of dragons" + }, + { + "appid": 1636300, + "normalized_name": "浪迹三国" + }, + { + "appid": 1636350, + "normalized_name": "nemezis mysterious journey iii prologue" + }, + { + "appid": 1636360, + "normalized_name": "drum'n'bass massacre" + }, + { + "appid": 1636370, + "normalized_name": "horror house" + }, + { + "appid": 1636380, + "normalized_name": "i.o.r.c impact orbital rescue crew" + }, + { + "appid": 1636410, + "normalized_name": "seekers of sahul" + }, + { + "appid": 1636420, + "normalized_name": "sweet shine" + }, + { + "appid": 1636460, + "normalized_name": "magissy" + }, + { + "appid": 1636490, + "normalized_name": "star of the show" + }, + { + "appid": 1636550, + "normalized_name": "laruaville 11 match 3 puzzle" + }, + { + "appid": 1636560, + "normalized_name": "lost end / 遗失的终章" + }, + { + "appid": 1636570, + "normalized_name": "wild souls" + }, + { + "appid": 1636620, + "normalized_name": "cognition method" + }, + { + "appid": 1636660, + "normalized_name": "absolute tactics daughters of mercy" + }, + { + "appid": 1636680, + "normalized_name": "peachleaf valley seeds of love a farming inspired otome" + }, + { + "appid": 1636690, + "normalized_name": "unwell known" + }, + { + "appid": 1636700, + "normalized_name": "wirewalk()↳" + }, + { + "appid": 1636710, + "normalized_name": "the brew barons" + }, + { + "appid": 1636730, + "normalized_name": "functional" + }, + { + "appid": 1636850, + "normalized_name": "cybrid" + }, + { + "appid": 1636860, + "normalized_name": "" + }, + { + "appid": 1636900, + "normalized_name": "inside the line" + }, + { + "appid": 1636910, + "normalized_name": "slikoban" + }, + { + "appid": 1636930, + "normalized_name": "tankocracy" + }, + { + "appid": 1636970, + "normalized_name": "shining blade" + }, + { + "appid": 1636980, + "normalized_name": "dancingreaper" + }, + { + "appid": 1636990, + "normalized_name": "zahalia the curse of zezor" + }, + { + "appid": 1637000, + "normalized_name": "irongrave tactics" + }, + { + "appid": 1637030, + "normalized_name": "tankbox" + }, + { + "appid": 1637070, + "normalized_name": "my new memories" + }, + { + "appid": 1637100, + "normalized_name": "orbital defence command" + }, + { + "appid": 1637110, + "normalized_name": "moneyfalls coin pusher simulator" + }, + { + "appid": 1637120, + "normalized_name": "hyde & seek" + }, + { + "appid": 1637140, + "normalized_name": "fishards" + }, + { + "appid": 1637160, + "normalized_name": "bull et hell" + }, + { + "appid": 1637180, + "normalized_name": "yesterdreamt" + }, + { + "appid": 1637200, + "normalized_name": "mage tower" + }, + { + "appid": 1637230, + "normalized_name": "metal max xeno reborn" + }, + { + "appid": 1637300, + "normalized_name": "nightwalker 2" + }, + { + "appid": 1637320, + "normalized_name": "dome keeper" + }, + { + "appid": 1637370, + "normalized_name": "letters from a rainy day oceans and lace" + }, + { + "appid": 1637400, + "normalized_name": "let's cook together 2" + }, + { + "appid": 1637490, + "normalized_name": "alone on mars" + }, + { + "appid": 1637510, + "normalized_name": "whitehaven" + }, + { + "appid": 1637520, + "normalized_name": "the handbook" + }, + { + "appid": 1637540, + "normalized_name": "the village" + }, + { + "appid": 1637550, + "normalized_name": "the deepening eco offensive" + }, + { + "appid": 1637560, + "normalized_name": "crawlyard" + }, + { + "appid": 1637570, + "normalized_name": "order road" + }, + { + "appid": 1637580, + "normalized_name": "tus totally unrealistic shooter" + }, + { + "appid": 1637610, + "normalized_name": "time tails" + }, + { + "appid": 1637630, + "normalized_name": "catarro" + }, + { + "appid": 1637670, + "normalized_name": "晚上nano好" + }, + { + "appid": 1637680, + "normalized_name": "gates of devoroth" + }, + { + "appid": 1637700, + "normalized_name": "infiltration alone in combat" + }, + { + "appid": 1637730, + "normalized_name": "crystal project" + }, + { + "appid": 1637740, + "normalized_name": "cute girl" + }, + { + "appid": 1637820, + "normalized_name": "the way home" + }, + { + "appid": 1637830, + "normalized_name": "eden gamma エデン・ガンマー" + }, + { + "appid": 1637920, + "normalized_name": "wastehaven" + }, + { + "appid": 1637930, + "normalized_name": "alchemist's mountain" + }, + { + "appid": 1637950, + "normalized_name": "cloaks and capes" + }, + { + "appid": 1637970, + "normalized_name": "logistical 3" + }, + { + "appid": 1638000, + "normalized_name": "890b" + }, + { + "appid": 1638030, + "normalized_name": "generation ship" + }, + { + "appid": 1638070, + "normalized_name": "fishbowl" + }, + { + "appid": 1638130, + "normalized_name": "terra atlantis" + }, + { + "appid": 1638140, + "normalized_name": "reverie knights tactics prologue" + }, + { + "appid": 1638160, + "normalized_name": "altheia the wrath of aferi" + }, + { + "appid": 1638210, + "normalized_name": "church of stratum" + }, + { + "appid": 1638220, + "normalized_name": "軒轅劍參外傳 天之痕" + }, + { + "appid": 1638230, + "normalized_name": "xuan yuan sword mists beyond the mountains" + }, + { + "appid": 1638270, + "normalized_name": "the demons of truth" + }, + { + "appid": 1638290, + "normalized_name": "the end pronton" + }, + { + "appid": 1638300, + "normalized_name": "solargene" + }, + { + "appid": 1638330, + "normalized_name": "darius cozmic collection arcade" + }, + { + "appid": 1638340, + "normalized_name": "cat simulator animals on farm" + }, + { + "appid": 1638390, + "normalized_name": "indies' lies" + }, + { + "appid": 1638430, + "normalized_name": "axial disc 1" + }, + { + "appid": 1638440, + "normalized_name": "gatedelvers" + }, + { + "appid": 1638450, + "normalized_name": "shipwreck escape" + }, + { + "appid": 1638470, + "normalized_name": "wind up!" + }, + { + "appid": 1638500, + "normalized_name": "the garden path" + }, + { + "appid": 1638510, + "normalized_name": "hentai match 3" + }, + { + "appid": 1638520, + "normalized_name": "hyperglide" + }, + { + "appid": 1638660, + "normalized_name": "blood spear" + }, + { + "appid": 1638670, + "normalized_name": "the pentest" + }, + { + "appid": 1638680, + "normalized_name": "rhythm hero" + }, + { + "appid": 1638690, + "normalized_name": "legends of mathmatica² under the shadow of certainty" + }, + { + "appid": 1638710, + "normalized_name": "jimmy's fruity adventure" + }, + { + "appid": 1638730, + "normalized_name": "bear soul" + }, + { + "appid": 1638760, + "normalized_name": "monster master" + }, + { + "appid": 1638860, + "normalized_name": "noir punk" + }, + { + "appid": 1638870, + "normalized_name": "zombie wars" + }, + { + "appid": 1638880, + "normalized_name": "artificial entanglement" + }, + { + "appid": 1638910, + "normalized_name": "the crows cry" + }, + { + "appid": 1638920, + "normalized_name": "mystery trackers nightsville horror collector's" + }, + { + "appid": 1638930, + "normalized_name": "goblaster" + }, + { + "appid": 1638950, + "normalized_name": "zombie builder defense 2" + }, + { + "appid": 1638970, + "normalized_name": "brave ball" + }, + { + "appid": 1638990, + "normalized_name": "june" + }, + { + "appid": 1639040, + "normalized_name": "there will be no turkey this christmas" + }, + { + "appid": 1639080, + "normalized_name": "sandwalkers" + }, + { + "appid": 1639090, + "normalized_name": "survive isolation" + }, + { + "appid": 1639120, + "normalized_name": "anime sunset ride" + }, + { + "appid": 1639130, + "normalized_name": "异世界打工人" + }, + { + "appid": 1639140, + "normalized_name": "mouse adventure" + }, + { + "appid": 1639180, + "normalized_name": "dance assembly" + }, + { + "appid": 1639190, + "normalized_name": "cuboid bouncer" + }, + { + "appid": 1639200, + "normalized_name": "charem of metropolitan" + }, + { + "appid": 1639210, + "normalized_name": "retrieving the past steam" + }, + { + "appid": 1639230, + "normalized_name": "moonfall / butterfly lovers" + }, + { + "appid": 1639250, + "normalized_name": "sokomatch lizard saga" + }, + { + "appid": 1639300, + "normalized_name": "my devil's voice (mla)" + }, + { + "appid": 1639340, + "normalized_name": "waifu vs evil" + }, + { + "appid": 1639390, + "normalized_name": "thermonuclear" + }, + { + "appid": 1639400, + "normalized_name": "少女首領の推理領域 黄金島の密約" + }, + { + "appid": 1639420, + "normalized_name": "hisui no kikai" + }, + { + "appid": 1639430, + "normalized_name": "princess&blade公主与利刃" + }, + { + "appid": 1639440, + "normalized_name": "dante's hotel" + }, + { + "appid": 1639480, + "normalized_name": "bodies of water vr" + }, + { + "appid": 1639490, + "normalized_name": "brick breaker heart collector" + }, + { + "appid": 1639510, + "normalized_name": "primal dominion aftermath" + }, + { + "appid": 1639520, + "normalized_name": "sweet dream" + }, + { + "appid": 1639530, + "normalized_name": "bitten! someone has to be a villain" + }, + { + "appid": 1639580, + "normalized_name": "a warmer shade of summer" + }, + { + "appid": 1639590, + "normalized_name": "cold house" + }, + { + "appid": 1639610, + "normalized_name": "save me sakuya san!" + }, + { + "appid": 1639630, + "normalized_name": "reflection" + }, + { + "appid": 1639650, + "normalized_name": "mirlo above the sun" + }, + { + "appid": 1639690, + "normalized_name": "flowering across 樱下花期" + }, + { + "appid": 1639700, + "normalized_name": "havoc fox" + }, + { + "appid": 1639710, + "normalized_name": "squareman boy" + }, + { + "appid": 1639730, + "normalized_name": "mtb dirt" + }, + { + "appid": 1639760, + "normalized_name": "the slaughter magdalene" + }, + { + "appid": 1639780, + "normalized_name": "willage" + }, + { + "appid": 1639790, + "normalized_name": "northern journey" + }, + { + "appid": 1639830, + "normalized_name": "robert robie and the idols of jade" + }, + { + "appid": 1639850, + "normalized_name": "kirmis" + }, + { + "appid": 1639860, + "normalized_name": "magic manny" + }, + { + "appid": 1639890, + "normalized_name": "after school murder club!!" + }, + { + "appid": 1639900, + "normalized_name": "sexstone" + }, + { + "appid": 1639920, + "normalized_name": "embraced by autumn" + }, + { + "appid": 1639930, + "normalized_name": "last days" + }, + { + "appid": 1639990, + "normalized_name": "dreams of desire" + }, + { + "appid": 1640000, + "normalized_name": "bird's eye" + }, + { + "appid": 1640080, + "normalized_name": "another eye" + }, + { + "appid": 1640090, + "normalized_name": "alone" + }, + { + "appid": 1640100, + "normalized_name": "war mines ww1" + }, + { + "appid": 1640110, + "normalized_name": "ghost haunt" + }, + { + "appid": 1640120, + "normalized_name": "vr puppet game" + }, + { + "appid": 1640130, + "normalized_name": "farm fatale" + }, + { + "appid": 1640150, + "normalized_name": "sword tomb kan yu" + }, + { + "appid": 1640160, + "normalized_name": "g darius hd" + }, + { + "appid": 1640180, + "normalized_name": "反抗吧!纯爱战士!" + }, + { + "appid": 1640220, + "normalized_name": "pogoppl" + }, + { + "appid": 1640230, + "normalized_name": "mayhem" + }, + { + "appid": 1640260, + "normalized_name": "chinesezodiac" + }, + { + "appid": 1640300, + "normalized_name": "project warlock ii" + }, + { + "appid": 1640320, + "normalized_name": "b.i.o.t.a." + }, + { + "appid": 1640350, + "normalized_name": "desktop dinosaurs" + }, + { + "appid": 1640360, + "normalized_name": "fantasy friends under the sea" + }, + { + "appid": 1640370, + "normalized_name": "the court of wanderers" + }, + { + "appid": 1640400, + "normalized_name": "janosik 2" + }, + { + "appid": 1640410, + "normalized_name": "montana smith and the tomb of the volcano god" + }, + { + "appid": 1640450, + "normalized_name": "sleep simulator" + }, + { + "appid": 1640490, + "normalized_name": "through the abyss" + }, + { + "appid": 1640540, + "normalized_name": "desolatium prologue" + }, + { + "appid": 1640630, + "normalized_name": "heading out" + }, + { + "appid": 1640640, + "normalized_name": "billy's nightmare" + }, + { + "appid": 1640660, + "normalized_name": "doki doki first love club!" + }, + { + "appid": 1640670, + "normalized_name": "infected city" + }, + { + "appid": 1640700, + "normalized_name": "the ghost task of the ghost hunters" + }, + { + "appid": 1640710, + "normalized_name": "interregnum chronicles signal" + }, + { + "appid": 1640720, + "normalized_name": "wtf is wrong with you?" + }, + { + "appid": 1640760, + "normalized_name": "wordland 2" + }, + { + "appid": 1640780, + "normalized_name": "star pixie" + }, + { + "appid": 1640790, + "normalized_name": "volatica the devil's trap" + }, + { + "appid": 1640810, + "normalized_name": "maybe immortal" + }, + { + "appid": 1640820, + "normalized_name": "chinese frontiers" + }, + { + "appid": 1640830, + "normalized_name": "the terrible persistence of memory" + }, + { + "appid": 1640880, + "normalized_name": "tukki & champ" + }, + { + "appid": 1640890, + "normalized_name": "hell of an office" + }, + { + "appid": 1640920, + "normalized_name": "the loneliest artist revamp" + }, + { + "appid": 1640930, + "normalized_name": "beefense beemastered" + }, + { + "appid": 1640990, + "normalized_name": "trpg workshop" + }, + { + "appid": 1641010, + "normalized_name": "horny housewives booty call blackmail" + }, + { + "appid": 1641020, + "normalized_name": "my brother lives in a canyon" + }, + { + "appid": 1641040, + "normalized_name": "hyde's haunt & seek" + }, + { + "appid": 1641060, + "normalized_name": "castles & catapults" + }, + { + "appid": 1641080, + "normalized_name": "big bang west" + }, + { + "appid": 1641100, + "normalized_name": "model railway easily 2" + }, + { + "appid": 1641120, + "normalized_name": "critter crops" + }, + { + "appid": 1641190, + "normalized_name": "fallen gods" + }, + { + "appid": 1641210, + "normalized_name": "莫西比亚岛" + }, + { + "appid": 1641220, + "normalized_name": "超级五子棋" + }, + { + "appid": 1641230, + "normalized_name": "buck borris in action" + }, + { + "appid": 1641240, + "normalized_name": "hero's quest" + }, + { + "appid": 1641250, + "normalized_name": "silver blue" + }, + { + "appid": 1641270, + "normalized_name": "枝江往事" + }, + { + "appid": 1641300, + "normalized_name": "rhythium" + }, + { + "appid": 1641330, + "normalized_name": "tree strike" + }, + { + "appid": 1641370, + "normalized_name": "if you go down in the woods today" + }, + { + "appid": 1641410, + "normalized_name": "猜拳为尊" + }, + { + "appid": 1641450, + "normalized_name": "listen to the wind" + }, + { + "appid": 1641470, + "normalized_name": "final foe" + }, + { + "appid": 1641500, + "normalized_name": "the blind of the new world" + }, + { + "appid": 1641510, + "normalized_name": "armed emeth" + }, + { + "appid": 1641520, + "normalized_name": "the octots survival" + }, + { + "appid": 1641560, + "normalized_name": "从剑娘开始的ai炼丹之旅" + }, + { + "appid": 1641570, + "normalized_name": "tremen" + }, + { + "appid": 1641580, + "normalized_name": "assignment 42" + }, + { + "appid": 1641600, + "normalized_name": "made to be crushed" + }, + { + "appid": 1641650, + "normalized_name": "airline manager" + }, + { + "appid": 1641660, + "normalized_name": "rpgolf legends" + }, + { + "appid": 1641670, + "normalized_name": "临渊觉醒" + }, + { + "appid": 1641700, + "normalized_name": "moving out 2" + }, + { + "appid": 1641730, + "normalized_name": "crazy foods" + }, + { + "appid": 1641770, + "normalized_name": "let's go nuts! 2" + }, + { + "appid": 1641780, + "normalized_name": "armored" + }, + { + "appid": 1641790, + "normalized_name": "thirty two hardmod" + }, + { + "appid": 1641820, + "normalized_name": "abyss king" + }, + { + "appid": 1641830, + "normalized_name": "axis football 2021" + }, + { + "appid": 1641840, + "normalized_name": "frosty jumper" + }, + { + "appid": 1641860, + "normalized_name": "bankrupt heroines 2" + }, + { + "appid": 1641870, + "normalized_name": "crystal venture" + }, + { + "appid": 1641880, + "normalized_name": "raising torolith" + }, + { + "appid": 1641890, + "normalized_name": "lust from beyond m" + }, + { + "appid": 1641930, + "normalized_name": "embrace of the downpour" + }, + { + "appid": 1641960, + "normalized_name": "forever skies" + }, + { + "appid": 1641990, + "normalized_name": "warhammer combat cards" + }, + { + "appid": 1642010, + "normalized_name": "h8machine" + }, + { + "appid": 1642040, + "normalized_name": "bzzzcontroller" + }, + { + "appid": 1642060, + "normalized_name": "broken spectre" + }, + { + "appid": 1642110, + "normalized_name": "bats bloodsucker anti terror squad" + }, + { + "appid": 1642130, + "normalized_name": "runo" + }, + { + "appid": 1642160, + "normalized_name": "gambit gun" + }, + { + "appid": 1642170, + "normalized_name": "dawn of the monsters" + }, + { + "appid": 1642190, + "normalized_name": "toilet paper wants to be a basketball" + }, + { + "appid": 1642220, + "normalized_name": "find all" + }, + { + "appid": 1642230, + "normalized_name": "why not?" + }, + { + "appid": 1642250, + "normalized_name": "swift elf" + }, + { + "appid": 1642260, + "normalized_name": "kimagure temptation" + }, + { + "appid": 1642330, + "normalized_name": "fairy godmother stories puss in boots collector's" + }, + { + "appid": 1642400, + "normalized_name": "burrowburrow" + }, + { + "appid": 1642420, + "normalized_name": "golden retriever" + }, + { + "appid": 1642430, + "normalized_name": "star in the hollow" + }, + { + "appid": 1642440, + "normalized_name": "kleopatra" + }, + { + "appid": 1642460, + "normalized_name": "grey lucidity horror visual novel" + }, + { + "appid": 1642480, + "normalized_name": "the phenomenon of edgar allan poe 1/2" + }, + { + "appid": 1642540, + "normalized_name": "onlygame gamer girls" + }, + { + "appid": 1642560, + "normalized_name": "stardom minigames" + }, + { + "appid": 1642580, + "normalized_name": "明星志願2000" + }, + { + "appid": 1642590, + "normalized_name": "stars slide" + }, + { + "appid": 1642600, + "normalized_name": "mud river" + }, + { + "appid": 1642610, + "normalized_name": "魔法迷域" + }, + { + "appid": 1642620, + "normalized_name": "collection of saga final fantasy legend" + }, + { + "appid": 1642630, + "normalized_name": "the isle of elanor" + }, + { + "appid": 1642640, + "normalized_name": "gravity runner" + }, + { + "appid": 1642690, + "normalized_name": "dreamworld" + }, + { + "appid": 1642730, + "normalized_name": "helixteus 3" + }, + { + "appid": 1642790, + "normalized_name": "deepening fire" + }, + { + "appid": 1642820, + "normalized_name": "succubus hunt for meal" + }, + { + "appid": 1642840, + "normalized_name": "我16岁辍学做游戏!" + }, + { + "appid": 1642870, + "normalized_name": "andromeda six" + }, + { + "appid": 1642890, + "normalized_name": "disc golf valley" + }, + { + "appid": 1642940, + "normalized_name": "hidden office" + }, + { + "appid": 1642970, + "normalized_name": "james peris 2 la fuente de la eterna embriaguez uncut and uncensored" + }, + { + "appid": 1643000, + "normalized_name": "paco el hare vs los marcianos siderales" + }, + { + "appid": 1643010, + "normalized_name": "spanish rage" + }, + { + "appid": 1643030, + "normalized_name": "climb up the down" + }, + { + "appid": 1643040, + "normalized_name": "space banditos" + }, + { + "appid": 1643100, + "normalized_name": "noun town vr language learning" + }, + { + "appid": 1643170, + "normalized_name": "kill them with cuteness" + }, + { + "appid": 1643180, + "normalized_name": "artist life simulator" + }, + { + "appid": 1643190, + "normalized_name": "beyond the gates" + }, + { + "appid": 1643220, + "normalized_name": "atahion tower defense" + }, + { + "appid": 1643280, + "normalized_name": "fancy the frog" + }, + { + "appid": 1643310, + "normalized_name": "dungeons 4" + }, + { + "appid": 1643320, + "normalized_name": "s.t.a.l.k.e.r. 2 heart of chornobyl" + }, + { + "appid": 1643440, + "normalized_name": "les aventures de fierot" + }, + { + "appid": 1643450, + "normalized_name": "hook master" + }, + { + "appid": 1643460, + "normalized_name": "たたかえ!ハルモニア音楽隊" + }, + { + "appid": 1643470, + "normalized_name": "flying corps" + }, + { + "appid": 1643490, + "normalized_name": "zagu espionage" + }, + { + "appid": 1643520, + "normalized_name": "mutant" + }, + { + "appid": 1643530, + "normalized_name": "the pirate king" + }, + { + "appid": 1643550, + "normalized_name": "suzy burger" + }, + { + "appid": 1643560, + "normalized_name": "broken legends" + }, + { + "appid": 1643590, + "normalized_name": "project pulse" + }, + { + "appid": 1643660, + "normalized_name": "silent dream" + }, + { + "appid": 1643670, + "normalized_name": "sparkmutts" + }, + { + "appid": 1643700, + "normalized_name": "visitors first contact" + }, + { + "appid": 1643710, + "normalized_name": "tobe yuima bless you" + }, + { + "appid": 1643800, + "normalized_name": "dokitoki time slows down when you're in love" + }, + { + "appid": 1643820, + "normalized_name": "age of jura" + }, + { + "appid": 1643840, + "normalized_name": "antediluvial yalroc island" + }, + { + "appid": 1643850, + "normalized_name": "slaycation paradise" + }, + { + "appid": 1644000, + "normalized_name": "fairymm the insomniac beauty" + }, + { + "appid": 1644010, + "normalized_name": "vi.dange" + }, + { + "appid": 1644020, + "normalized_name": "incredible dracula legacy of the valkyries" + }, + { + "appid": 1644030, + "normalized_name": "selection process" + }, + { + "appid": 1644080, + "normalized_name": "rock 'n' roll will never die!" + }, + { + "appid": 1644140, + "normalized_name": "valley of no roads" + }, + { + "appid": 1644150, + "normalized_name": "oshirabu waifus over husbandos ~love・or・die~" + }, + { + "appid": 1644190, + "normalized_name": "isocubes" + }, + { + "appid": 1644200, + "normalized_name": "now you can't see me" + }, + { + "appid": 1644220, + "normalized_name": "lethal pongbat" + }, + { + "appid": 1644230, + "normalized_name": "sundowner" + }, + { + "appid": 1644280, + "normalized_name": "the jewel of monostructure" + }, + { + "appid": 1644310, + "normalized_name": "markus ritter the lost family" + }, + { + "appid": 1644320, + "normalized_name": "railway empire 2" + }, + { + "appid": 1644330, + "normalized_name": "pugmire treasure of the sea dogs" + }, + { + "appid": 1644390, + "normalized_name": "hyperfeat" + }, + { + "appid": 1644430, + "normalized_name": "knight of exile" + }, + { + "appid": 1644490, + "normalized_name": "occult" + }, + { + "appid": 1644500, + "normalized_name": "masterplan tycoon" + }, + { + "appid": 1644510, + "normalized_name": "reigning" + }, + { + "appid": 1644560, + "normalized_name": "endings" + }, + { + "appid": 1644580, + "normalized_name": "strip black jack cyber sex" + }, + { + "appid": 1644600, + "normalized_name": "bsurfing" + }, + { + "appid": 1644640, + "normalized_name": "dangerous planet" + }, + { + "appid": 1644650, + "normalized_name": "defense tower simulator" + }, + { + "appid": 1644670, + "normalized_name": "elfblade" + }, + { + "appid": 1644720, + "normalized_name": "project h" + }, + { + "appid": 1644750, + "normalized_name": "sheep" + }, + { + "appid": 1644770, + "normalized_name": "lucinda green's equestrian challenge" + }, + { + "appid": 1644810, + "normalized_name": "navy strike" + }, + { + "appid": 1644820, + "normalized_name": "bobby indie pixel platformer" + }, + { + "appid": 1644830, + "normalized_name": "galactic dreams" + }, + { + "appid": 1644840, + "normalized_name": "kittens and yarn" + }, + { + "appid": 1644910, + "normalized_name": "nightmare party" + }, + { + "appid": 1644920, + "normalized_name": "love in belarus" + }, + { + "appid": 1644930, + "normalized_name": "fastlane bowling" + }, + { + "appid": 1644940, + "normalized_name": "loddlenaut" + }, + { + "appid": 1644950, + "normalized_name": "seekers" + }, + { + "appid": 1644970, + "normalized_name": "new dawn" + }, + { + "appid": 1644990, + "normalized_name": "be funny now!" + }, + { + "appid": 1645050, + "normalized_name": "surlefil" + }, + { + "appid": 1645060, + "normalized_name": "acorn city tropical!" + }, + { + "appid": 1645070, + "normalized_name": "beat defender" + }, + { + "appid": 1645110, + "normalized_name": "n1ne the splintered mind part 1" + }, + { + "appid": 1645120, + "normalized_name": "parkur 44" + }, + { + "appid": 1645140, + "normalized_name": "apple bang!" + }, + { + "appid": 1645150, + "normalized_name": "crazy ludo" + }, + { + "appid": 1645180, + "normalized_name": "demolition master destruction simulator" + }, + { + "appid": 1645270, + "normalized_name": "art of destruction" + }, + { + "appid": 1645300, + "normalized_name": "blimby" + }, + { + "appid": 1645560, + "normalized_name": "coffee bar renovator" + }, + { + "appid": 1645570, + "normalized_name": "greedy bubble" + }, + { + "appid": 1645620, + "normalized_name": "axiom alternative ii" + }, + { + "appid": 1645630, + "normalized_name": "ferocious" + }, + { + "appid": 1645640, + "normalized_name": "no ghost in stay home" + }, + { + "appid": 1645660, + "normalized_name": "slenderman" + }, + { + "appid": 1645670, + "normalized_name": "phantom sense vr" + }, + { + "appid": 1645680, + "normalized_name": "zombies desert and guns" + }, + { + "appid": 1645700, + "normalized_name": "a wake inn rebooked" + }, + { + "appid": 1645720, + "normalized_name": "helpless" + }, + { + "appid": 1645730, + "normalized_name": "cat packs" + }, + { + "appid": 1645770, + "normalized_name": "infees" + }, + { + "appid": 1645780, + "normalized_name": "流光記憶之灰 grayscale memories" + }, + { + "appid": 1645820, + "normalized_name": "surroundead" + }, + { + "appid": 1645870, + "normalized_name": "ninja ken" + }, + { + "appid": 1645880, + "normalized_name": "i am die" + }, + { + "appid": 1645910, + "normalized_name": "heart inside" + }, + { + "appid": 1645920, + "normalized_name": "green steel" + }, + { + "appid": 1645940, + "normalized_name": "flaskoman" + }, + { + "appid": 1645950, + "normalized_name": "cat dungeon escape" + }, + { + "appid": 1645970, + "normalized_name": "pixel adventure" + }, + { + "appid": 1645980, + "normalized_name": "zolaris" + }, + { + "appid": 1645990, + "normalized_name": "church of the midnight sailor" + }, + { + "appid": 1646000, + "normalized_name": "gobot" + }, + { + "appid": 1646030, + "normalized_name": "cat slide tiles" + }, + { + "appid": 1646050, + "normalized_name": "wilford" + }, + { + "appid": 1646070, + "normalized_name": "undeadly" + }, + { + "appid": 1646090, + "normalized_name": "tokyo rogue" + }, + { + "appid": 1646120, + "normalized_name": "citizens far lands" + }, + { + "appid": 1646140, + "normalized_name": "jaden & jasmine the curse of deception" + }, + { + "appid": 1646180, + "normalized_name": "succubus runa and the erotic dungeon" + }, + { + "appid": 1646200, + "normalized_name": "django" + }, + { + "appid": 1646230, + "normalized_name": "peopledown" + }, + { + "appid": 1646240, + "normalized_name": "fuktopia 2" + }, + { + "appid": 1646280, + "normalized_name": "endustry" + }, + { + "appid": 1646290, + "normalized_name": "project aurora" + }, + { + "appid": 1646300, + "normalized_name": "행불행 행복의 시작은 지금부터 리메이크" + }, + { + "appid": 1646340, + "normalized_name": "blood engine 血焰引擎" + }, + { + "appid": 1646350, + "normalized_name": "夏恋幻梦" + }, + { + "appid": 1646380, + "normalized_name": "comrades and barons gates of freedom" + }, + { + "appid": 1646390, + "normalized_name": "spheriums" + }, + { + "appid": 1646410, + "normalized_name": "universe generator the golden sword" + }, + { + "appid": 1646440, + "normalized_name": "ninja specialist" + }, + { + "appid": 1646470, + "normalized_name": "rover simulator" + }, + { + "appid": 1646480, + "normalized_name": "карьера президента" + }, + { + "appid": 1646520, + "normalized_name": "clock overwhelmed" + }, + { + "appid": 1646560, + "normalized_name": "sweet desire 2" + }, + { + "appid": 1646570, + "normalized_name": "mindscape verenna" + }, + { + "appid": 1646580, + "normalized_name": "project demigod" + }, + { + "appid": 1646600, + "normalized_name": "reball" + }, + { + "appid": 1646610, + "normalized_name": "spelling spree" + }, + { + "appid": 1646650, + "normalized_name": "vr another world" + }, + { + "appid": 1646660, + "normalized_name": "abridged" + }, + { + "appid": 1646710, + "normalized_name": "demon cycle" + }, + { + "appid": 1646730, + "normalized_name": "pole" + }, + { + "appid": 1646750, + "normalized_name": "stonescape" + }, + { + "appid": 1646770, + "normalized_name": "cold hill" + }, + { + "appid": 1646790, + "normalized_name": "striving for light" + }, + { + "appid": 1646800, + "normalized_name": "relicwar" + }, + { + "appid": 1646810, + "normalized_name": "nargul humans are among us" + }, + { + "appid": 1646820, + "normalized_name": "action commando 2" + }, + { + "appid": 1646830, + "normalized_name": "infinite brick breaker" + }, + { + "appid": 1646850, + "normalized_name": "spacebourne 2" + }, + { + "appid": 1646870, + "normalized_name": "underwater" + }, + { + "appid": 1646880, + "normalized_name": "rumble runners" + }, + { + "appid": 1646890, + "normalized_name": "hot summer" + }, + { + "appid": 1646910, + "normalized_name": "checkmate kings" + }, + { + "appid": 1646930, + "normalized_name": "the feeble files" + }, + { + "appid": 1647000, + "normalized_name": "cantaloper" + }, + { + "appid": 1647010, + "normalized_name": "aeos the 18 plus nsfw adventure generator" + }, + { + "appid": 1647020, + "normalized_name": "chicken utopia" + }, + { + "appid": 1647050, + "normalized_name": "arcade boy" + }, + { + "appid": 1647060, + "normalized_name": "hentai vr 4" + }, + { + "appid": 1647070, + "normalized_name": "fast food mania 3d" + }, + { + "appid": 1647110, + "normalized_name": "mochi jump" + }, + { + "appid": 1647160, + "normalized_name": "deepest sword" + }, + { + "appid": 1647190, + "normalized_name": "world end diner" + }, + { + "appid": 1647200, + "normalized_name": "beat arena" + }, + { + "appid": 1647220, + "normalized_name": "隐藏真探" + }, + { + "appid": 1647240, + "normalized_name": "煉獄紅葉 momiji from purgatory" + }, + { + "appid": 1647250, + "normalized_name": "みんなで空気読み。3" + }, + { + "appid": 1647280, + "normalized_name": "chicscape" + }, + { + "appid": 1647300, + "normalized_name": "魔王軍第七工兵大隊偵察班" + }, + { + "appid": 1647310, + "normalized_name": "卫国战争 the patriotic war" + }, + { + "appid": 1647360, + "normalized_name": "little dog bob" + }, + { + "appid": 1647390, + "normalized_name": "dexter stardust adventures in outer space" + }, + { + "appid": 1647420, + "normalized_name": "gross" + }, + { + "appid": 1647430, + "normalized_name": "black mansion" + }, + { + "appid": 1647440, + "normalized_name": "idle td heroes vs zombies" + }, + { + "appid": 1647460, + "normalized_name": "word of mouth stories" + }, + { + "appid": 1647490, + "normalized_name": "mahjong gold 2. pirates island" + }, + { + "appid": 1647550, + "normalized_name": "neo the world ends with you" + }, + { + "appid": 1647640, + "normalized_name": "aristocats (jigsaw puzzles)" + }, + { + "appid": 1647660, + "normalized_name": "asteroid impact survival" + }, + { + "appid": 1647670, + "normalized_name": "turbulence airplane survival simulator" + }, + { + "appid": 1647720, + "normalized_name": "everyone must die a western standoff" + }, + { + "appid": 1647730, + "normalized_name": "zool redimensioned" + }, + { + "appid": 1647740, + "normalized_name": "1f y0u're a gh0st ca11 me here! 幽铃热线" + }, + { + "appid": 1647770, + "normalized_name": "ankora lost days" + }, + { + "appid": 1647780, + "normalized_name": "stories of mara" + }, + { + "appid": 1647860, + "normalized_name": "sadness of valor" + }, + { + "appid": 1647920, + "normalized_name": "valfaris mecha therion" + }, + { + "appid": 1647940, + "normalized_name": "anime artist tiffy’s notty secret" + }, + { + "appid": 1647990, + "normalized_name": "ningakki xxvi fps" + }, + { + "appid": 1648000, + "normalized_name": "heroines" + }, + { + "appid": 1648040, + "normalized_name": "there you are" + }, + { + "appid": 1648050, + "normalized_name": "dungeon brawlers" + }, + { + "appid": 1648080, + "normalized_name": "manual intervention vr" + }, + { + "appid": 1648100, + "normalized_name": "kinduo" + }, + { + "appid": 1648160, + "normalized_name": "kestrel" + }, + { + "appid": 1648190, + "normalized_name": "qanga" + }, + { + "appid": 1648200, + "normalized_name": "stellations" + }, + { + "appid": 1648230, + "normalized_name": "inside the memories" + }, + { + "appid": 1648250, + "normalized_name": "freddy frog" + }, + { + "appid": 1648300, + "normalized_name": "costume party" + }, + { + "appid": 1648310, + "normalized_name": "pillars of protection" + }, + { + "appid": 1648340, + "normalized_name": "push me if you can" + }, + { + "appid": 1648360, + "normalized_name": "luminary" + }, + { + "appid": 1648390, + "normalized_name": "scooterflow" + }, + { + "appid": 1648450, + "normalized_name": "card tower defence" + }, + { + "appid": 1648460, + "normalized_name": "space one electron" + }, + { + "appid": 1648560, + "normalized_name": "nursery slime" + }, + { + "appid": 1648580, + "normalized_name": "athletics 3 summer sports" + }, + { + "appid": 1648590, + "normalized_name": "undercover agent" + }, + { + "appid": 1648610, + "normalized_name": "malum" + }, + { + "appid": 1648660, + "normalized_name": "caïssa board" + }, + { + "appid": 1648700, + "normalized_name": "unoffensible" + }, + { + "appid": 1648720, + "normalized_name": "what time is it" + }, + { + "appid": 1648730, + "normalized_name": "s.o.t.a 2" + }, + { + "appid": 1648760, + "normalized_name": "subrov underwater discoveries" + }, + { + "appid": 1648800, + "normalized_name": "husky's adventures" + }, + { + "appid": 1648840, + "normalized_name": "fog factory game maker" + }, + { + "appid": 1648900, + "normalized_name": "the colossus is coming the interactive experience" + }, + { + "appid": 1648990, + "normalized_name": "horrordriven a story for the road" + }, + { + "appid": 1649010, + "normalized_name": "miasma chronicles" + }, + { + "appid": 1649030, + "normalized_name": "digital expo center" + }, + { + "appid": 1649080, + "normalized_name": "two point campus" + }, + { + "appid": 1649130, + "normalized_name": "knight crawlers" + }, + { + "appid": 1649240, + "normalized_name": "returnal" + }, + { + "appid": 1649270, + "normalized_name": "the wind a story of surrender" + }, + { + "appid": 1649280, + "normalized_name": "mémoire d'arumac" + }, + { + "appid": 1649290, + "normalized_name": "deep lake prologue" + }, + { + "appid": 1649340, + "normalized_name": "theatre of war" + }, + { + "appid": 1649420, + "normalized_name": "tta 1" + }, + { + "appid": 1649440, + "normalized_name": "football bus battle 2021" + }, + { + "appid": 1649480, + "normalized_name": "mrs. fantastic's freaky figurine shop" + }, + { + "appid": 1649500, + "normalized_name": "sundermead" + }, + { + "appid": 1649540, + "normalized_name": "dash lamb" + }, + { + "appid": 1649570, + "normalized_name": "super grave snatchers" + }, + { + "appid": 1649630, + "normalized_name": "berserk mode" + }, + { + "appid": 1649670, + "normalized_name": "star iliad" + }, + { + "appid": 1649730, + "normalized_name": "修仙立志传" + }, + { + "appid": 1649740, + "normalized_name": "hunt the night" + }, + { + "appid": 1649790, + "normalized_name": "尸水如潮 砍僵尸模拟器" + }, + { + "appid": 1649800, + "normalized_name": "zeta bit player pack 1" + }, + { + "appid": 1649820, + "normalized_name": "unicorn and sweets 2" + }, + { + "appid": 1649830, + "normalized_name": "tales of the mirror" + }, + { + "appid": 1649860, + "normalized_name": "krut the mythic wings" + }, + { + "appid": 1649870, + "normalized_name": "bullet wave" + }, + { + "appid": 1649900, + "normalized_name": "什么找茬" + }, + { + "appid": 1649920, + "normalized_name": "coronation" + }, + { + "appid": 1649950, + "normalized_name": "news tower" + }, + { + "appid": 1649960, + "normalized_name": "erotic jigsaw puzzle 2" + }, + { + "appid": 1650010, + "normalized_name": "ride 5" + }, + { + "appid": 1650020, + "normalized_name": "hentai x" + }, + { + "appid": 1650040, + "normalized_name": "huge" + }, + { + "appid": 1650110, + "normalized_name": "furry lust" + }, + { + "appid": 1650130, + "normalized_name": "furious revenge of bolo" + }, + { + "appid": 1650150, + "normalized_name": "island of the ancients" + }, + { + "appid": 1650180, + "normalized_name": "merge it" + }, + { + "appid": 1650200, + "normalized_name": "scholar of the arcane arts" + }, + { + "appid": 1650210, + "normalized_name": "neon moon" + }, + { + "appid": 1650250, + "normalized_name": "torutaru" + }, + { + "appid": 1650290, + "normalized_name": "the married manager's scandalous services the pleasures of the night shift" + }, + { + "appid": 1650300, + "normalized_name": "star fighter" + }, + { + "appid": 1650320, + "normalized_name": "minotaur maze" + }, + { + "appid": 1650360, + "normalized_name": "lost eve" + }, + { + "appid": 1650370, + "normalized_name": "galaxy highways" + }, + { + "appid": 1650390, + "normalized_name": "academy quest | アカデミークエスト" + }, + { + "appid": 1650400, + "normalized_name": "randy and teddy adventure road" + }, + { + "appid": 1650410, + "normalized_name": "outlaw squadron" + }, + { + "appid": 1650430, + "normalized_name": "sci fantasy defence" + }, + { + "appid": 1650450, + "normalized_name": "yin yuh" + }, + { + "appid": 1650550, + "normalized_name": "workshop simulator" + }, + { + "appid": 1650570, + "normalized_name": "red and white" + }, + { + "appid": 1650590, + "normalized_name": "nightmare frames" + }, + { + "appid": 1650600, + "normalized_name": "circuit runner" + }, + { + "appid": 1650610, + "normalized_name": "flight 74" + }, + { + "appid": 1650670, + "normalized_name": "sokobear winter" + }, + { + "appid": 1650680, + "normalized_name": "to kill a king" + }, + { + "appid": 1650740, + "normalized_name": "grim tales threads of destiny collector's" + }, + { + "appid": 1650790, + "normalized_name": "dot dash dot" + }, + { + "appid": 1650810, + "normalized_name": "loopmancer" + }, + { + "appid": 1650820, + "normalized_name": "graveyard shift" + }, + { + "appid": 1650830, + "normalized_name": "no!ah!'s ark" + }, + { + "appid": 1650860, + "normalized_name": "chambers of devious design" + }, + { + "appid": 1650890, + "normalized_name": "再来一局能否组成最强阵容" + }, + { + "appid": 1650910, + "normalized_name": "sisterhood" + }, + { + "appid": 1650920, + "normalized_name": "galaxity bangkok vr" + }, + { + "appid": 1650970, + "normalized_name": "pyramid rush" + }, + { + "appid": 1651000, + "normalized_name": "zombie apocalypse 2021" + }, + { + "appid": 1651020, + "normalized_name": "loopindex" + }, + { + "appid": 1651030, + "normalized_name": "dandy & randy dx" + }, + { + "appid": 1651090, + "normalized_name": "crown of pain" + }, + { + "appid": 1651230, + "normalized_name": "wellness hero" + }, + { + "appid": 1651260, + "normalized_name": "oftalmogarden" + }, + { + "appid": 1651280, + "normalized_name": "burnit quest" + }, + { + "appid": 1651300, + "normalized_name": "the unnamed game" + }, + { + "appid": 1651360, + "normalized_name": "fisticubes one button boxing!" + }, + { + "appid": 1651390, + "normalized_name": "gos castle runner" + }, + { + "appid": 1651400, + "normalized_name": "touhou the unreachable oneiroborder" + }, + { + "appid": 1651410, + "normalized_name": "time knight adventures" + }, + { + "appid": 1651430, + "normalized_name": "gladiator immortal" + }, + { + "appid": 1651450, + "normalized_name": "pog 3" + }, + { + "appid": 1651490, + "normalized_name": "tiny life" + }, + { + "appid": 1651500, + "normalized_name": "harvest hero origins" + }, + { + "appid": 1651520, + "normalized_name": "holy grain" + }, + { + "appid": 1651540, + "normalized_name": "memories with my kitten" + }, + { + "appid": 1651560, + "normalized_name": "fabledom" + }, + { + "appid": 1651580, + "normalized_name": "beerleague superstar" + }, + { + "appid": 1651610, + "normalized_name": "last night of winter" + }, + { + "appid": 1651620, + "normalized_name": "homewords" + }, + { + "appid": 1651680, + "normalized_name": "the colorful creature" + }, + { + "appid": 1651730, + "normalized_name": "balloon jump" + }, + { + "appid": 1651750, + "normalized_name": "short hop laser" + }, + { + "appid": 1651760, + "normalized_name": "japanese puzzle" + }, + { + "appid": 1651780, + "normalized_name": "sophie's safecracking simulator" + }, + { + "appid": 1651850, + "normalized_name": "an odd tale" + }, + { + "appid": 1651860, + "normalized_name": "virtual beepis" + }, + { + "appid": 1651870, + "normalized_name": "nighthunt" + }, + { + "appid": 1651880, + "normalized_name": "welcome to lakewood" + }, + { + "appid": 1651890, + "normalized_name": "haunted hotel phoenix collector's" + }, + { + "appid": 1651930, + "normalized_name": "the chronos principle" + }, + { + "appid": 1651940, + "normalized_name": "u.f.o. k.o. tower defense" + }, + { + "appid": 1651950, + "normalized_name": "en route a co op space escape" + }, + { + "appid": 1651960, + "normalized_name": "hextech mayhem a league of legends story" + }, + { + "appid": 1651980, + "normalized_name": "tizahl's quest" + }, + { + "appid": 1652000, + "normalized_name": "peekazoo" + }, + { + "appid": 1652030, + "normalized_name": "flowering nightshade" + }, + { + "appid": 1652040, + "normalized_name": "魔女低语时" + }, + { + "appid": 1652050, + "normalized_name": "cast ashore" + }, + { + "appid": 1652080, + "normalized_name": "weapons knight" + }, + { + "appid": 1652090, + "normalized_name": "key maze of illusions" + }, + { + "appid": 1652120, + "normalized_name": "find the cats" + }, + { + "appid": 1652170, + "normalized_name": "space puzzle" + }, + { + "appid": 1652220, + "normalized_name": "adventurer liz and the erotic dungeon" + }, + { + "appid": 1652250, + "normalized_name": "tales & tactics" + }, + { + "appid": 1652260, + "normalized_name": "dark light" + }, + { + "appid": 1652290, + "normalized_name": "code star dungeon 星牢 试炼所" + }, + { + "appid": 1652300, + "normalized_name": "mousey mick" + }, + { + "appid": 1652320, + "normalized_name": "sf2k class dismissed" + }, + { + "appid": 1652330, + "normalized_name": "jixxaw party time" + }, + { + "appid": 1652460, + "normalized_name": "surviving the humans" + }, + { + "appid": 1652480, + "normalized_name": "omnia" + }, + { + "appid": 1652490, + "normalized_name": "boxing club manager" + }, + { + "appid": 1652510, + "normalized_name": "hard steel" + }, + { + "appid": 1652520, + "normalized_name": "dungeon tactics" + }, + { + "appid": 1652560, + "normalized_name": "soulveyor" + }, + { + "appid": 1652580, + "normalized_name": "imperial grace" + }, + { + "appid": 1652600, + "normalized_name": "summer in memoria" + }, + { + "appid": 1652650, + "normalized_name": "wordland 3" + }, + { + "appid": 1652670, + "normalized_name": "street shuffle" + }, + { + "appid": 1652680, + "normalized_name": "game.exe" + }, + { + "appid": 1652700, + "normalized_name": "spiral to despair" + }, + { + "appid": 1652710, + "normalized_name": "mousebot escape from catlab" + }, + { + "appid": 1652720, + "normalized_name": "hextones spacetime" + }, + { + "appid": 1652730, + "normalized_name": "the skinwalker investigations" + }, + { + "appid": 1652740, + "normalized_name": "true visions" + }, + { + "appid": 1652780, + "normalized_name": "spectral ascension" + }, + { + "appid": 1652800, + "normalized_name": "entangled" + }, + { + "appid": 1652840, + "normalized_name": "vr sex" + }, + { + "appid": 1652940, + "normalized_name": "hopheaders" + }, + { + "appid": 1652960, + "normalized_name": "higgs boson challenging puzzle" + }, + { + "appid": 1652970, + "normalized_name": "nature" + }, + { + "appid": 1652990, + "normalized_name": "habitat race to mars" + }, + { + "appid": 1653020, + "normalized_name": "crude oil" + }, + { + "appid": 1653030, + "normalized_name": "ren the summoner and the erotic dungeon" + }, + { + "appid": 1653040, + "normalized_name": "打怪! beat the mons!" + }, + { + "appid": 1653050, + "normalized_name": "长明火计划 project eternal flame" + }, + { + "appid": 1653060, + "normalized_name": "孤胆惊魂2:消失的207(fear 2 the disappeared 207)" + }, + { + "appid": 1653070, + "normalized_name": "通玄宝鉴" + }, + { + "appid": 1653080, + "normalized_name": "estress" + }, + { + "appid": 1653100, + "normalized_name": "heliotropism" + }, + { + "appid": 1653120, + "normalized_name": "通天魔塔 magictower" + }, + { + "appid": 1653160, + "normalized_name": "nemesis fdt" + }, + { + "appid": 1653170, + "normalized_name": "woute" + }, + { + "appid": 1653180, + "normalized_name": "what is love? anime visual novel vol. 1" + }, + { + "appid": 1653190, + "normalized_name": "sumorbit" + }, + { + "appid": 1653200, + "normalized_name": "vortex rolling" + }, + { + "appid": 1653230, + "normalized_name": "guild & gals" + }, + { + "appid": 1653250, + "normalized_name": "alien flex" + }, + { + "appid": 1653260, + "normalized_name": "zombaliens" + }, + { + "appid": 1653270, + "normalized_name": "the ordinary case of margaret luoni" + }, + { + "appid": 1653300, + "normalized_name": "puzzle light rotate" + }, + { + "appid": 1653310, + "normalized_name": "rhythm story" + }, + { + "appid": 1653320, + "normalized_name": "amneron's legacy" + }, + { + "appid": 1653330, + "normalized_name": "sensual adventures episode 6" + }, + { + "appid": 1653360, + "normalized_name": "hyper frenzy" + }, + { + "appid": 1653400, + "normalized_name": "graverunners" + }, + { + "appid": 1653420, + "normalized_name": "train travel simulator" + }, + { + "appid": 1653460, + "normalized_name": "revived souls" + }, + { + "appid": 1653480, + "normalized_name": "project new light city" + }, + { + "appid": 1653510, + "normalized_name": "ukrainian soccer 14 balls !!! ( multi angle offensive )" + }, + { + "appid": 1653520, + "normalized_name": "project delta" + }, + { + "appid": 1653640, + "normalized_name": "tank fantastic" + }, + { + "appid": 1653650, + "normalized_name": "lucid dream simulator" + }, + { + "appid": 1653660, + "normalized_name": "box pusher" + }, + { + "appid": 1653700, + "normalized_name": "lona realm of colors" + }, + { + "appid": 1653740, + "normalized_name": "the exomachinist" + }, + { + "appid": 1653770, + "normalized_name": "2089 space divided" + }, + { + "appid": 1653790, + "normalized_name": "sisters of silent liberty online multiplayer shooter rebranded" + }, + { + "appid": 1653800, + "normalized_name": "on the hunt" + }, + { + "appid": 1653850, + "normalized_name": "magi mind game" + }, + { + "appid": 1653860, + "normalized_name": "battle rollers" + }, + { + "appid": 1653870, + "normalized_name": "hidden shapes old west jigsaw puzzle game" + }, + { + "appid": 1653880, + "normalized_name": "imperius" + }, + { + "appid": 1653890, + "normalized_name": "theevilking" + }, + { + "appid": 1653910, + "normalized_name": "lost in terra mora" + }, + { + "appid": 1653930, + "normalized_name": "defenders of annadale" + }, + { + "appid": 1653970, + "normalized_name": "jigsaw puzzle dreams" + }, + { + "appid": 1653980, + "normalized_name": "goblin town" + }, + { + "appid": 1653990, + "normalized_name": "ハロー、グッバイ、サマーガール" + }, + { + "appid": 1654040, + "normalized_name": "overdosed vr" + }, + { + "appid": 1654050, + "normalized_name": "nanoscape" + }, + { + "appid": 1654070, + "normalized_name": "mayblues" + }, + { + "appid": 1654120, + "normalized_name": "仙剑诀网络版" + }, + { + "appid": 1654130, + "normalized_name": "孙美琪疑案 雨儿胡同" + }, + { + "appid": 1654150, + "normalized_name": "light2live" + }, + { + "appid": 1654160, + "normalized_name": "hentai pleasure" + }, + { + "appid": 1654170, + "normalized_name": "agony vr" + }, + { + "appid": 1654190, + "normalized_name": "spin city" + }, + { + "appid": 1654200, + "normalized_name": "propulsion" + }, + { + "appid": 1654230, + "normalized_name": "terebron" + }, + { + "appid": 1654280, + "normalized_name": "anagraphs an anagram game with a twist" + }, + { + "appid": 1654290, + "normalized_name": "i bag" + }, + { + "appid": 1654350, + "normalized_name": "the little tank hunter" + }, + { + "appid": 1654360, + "normalized_name": "zannon" + }, + { + "appid": 1654440, + "normalized_name": "rise of humanity prologue" + }, + { + "appid": 1654510, + "normalized_name": "battle for antares" + }, + { + "appid": 1654520, + "normalized_name": "ergo" + }, + { + "appid": 1654530, + "normalized_name": "the curse of esrevni" + }, + { + "appid": 1654560, + "normalized_name": "the seagull" + }, + { + "appid": 1654620, + "normalized_name": "adventures of human being" + }, + { + "appid": 1654660, + "normalized_name": "en garde!" + }, + { + "appid": 1654680, + "normalized_name": "red wings american aces" + }, + { + "appid": 1654700, + "normalized_name": "bigger trucks" + }, + { + "appid": 1654710, + "normalized_name": "purry furry adventurry" + }, + { + "appid": 1654730, + "normalized_name": "dama galleria" + }, + { + "appid": 1654800, + "normalized_name": "rc rush" + }, + { + "appid": 1654810, + "normalized_name": "mix universe" + }, + { + "appid": 1654830, + "normalized_name": "kochu's dream" + }, + { + "appid": 1654860, + "normalized_name": "luffy way back home" + }, + { + "appid": 1654890, + "normalized_name": "sigma impact" + }, + { + "appid": 1654900, + "normalized_name": "orakyubu" + }, + { + "appid": 1654910, + "normalized_name": "rogues" + }, + { + "appid": 1654920, + "normalized_name": "changes" + }, + { + "appid": 1654970, + "normalized_name": "farm defense" + }, + { + "appid": 1655010, + "normalized_name": "theseus mythological hero" + }, + { + "appid": 1655020, + "normalized_name": "glasssmash 2" + }, + { + "appid": 1655030, + "normalized_name": "cult of mine" + }, + { + "appid": 1655050, + "normalized_name": "the fear island" + }, + { + "appid": 1655060, + "normalized_name": "switch it" + }, + { + "appid": 1655090, + "normalized_name": "thirty minute nightmare" + }, + { + "appid": 1655140, + "normalized_name": "alpaca stacka" + }, + { + "appid": 1655170, + "normalized_name": "combat engineer" + }, + { + "appid": 1655190, + "normalized_name": "aikagi" + }, + { + "appid": 1655210, + "normalized_name": "明明如月" + }, + { + "appid": 1655220, + "normalized_name": "star trek prodigy supernova" + }, + { + "appid": 1655250, + "normalized_name": "horny girl hentai puzzle" + }, + { + "appid": 1655410, + "normalized_name": "witchaven" + }, + { + "appid": 1655420, + "normalized_name": "a mirror puzzle" + }, + { + "appid": 1655430, + "normalized_name": "witchaven ii blood vengeance" + }, + { + "appid": 1655440, + "normalized_name": "themes of dark and light" + }, + { + "appid": 1655480, + "normalized_name": "freebooter of splorr!!" + }, + { + "appid": 1655490, + "normalized_name": "shoganai" + }, + { + "appid": 1655520, + "normalized_name": "two hundred ways" + }, + { + "appid": 1655540, + "normalized_name": "fishermen's haven" + }, + { + "appid": 1655550, + "normalized_name": "a wave of enemies" + }, + { + "appid": 1655560, + "normalized_name": "speeder" + }, + { + "appid": 1655580, + "normalized_name": "training leah" + }, + { + "appid": 1655600, + "normalized_name": "team cars" + }, + { + "appid": 1655670, + "normalized_name": "rob riches" + }, + { + "appid": 1655700, + "normalized_name": "mrs.cat in mars" + }, + { + "appid": 1655740, + "normalized_name": "slime's journey" + }, + { + "appid": 1655750, + "normalized_name": "uboat mechanic simulator" + }, + { + "appid": 1655800, + "normalized_name": "system under surveillance" + }, + { + "appid": 1655840, + "normalized_name": "turbo tempest" + }, + { + "appid": 1655850, + "normalized_name": "vacation adventures park ranger 6" + }, + { + "appid": 1655880, + "normalized_name": "kings and pigs" + }, + { + "appid": 1655890, + "normalized_name": "sokobos" + }, + { + "appid": 1655910, + "normalized_name": "world legends" + }, + { + "appid": 1655920, + "normalized_name": "shin lotion samurai" + }, + { + "appid": 1655930, + "normalized_name": "hentai jigsaw" + }, + { + "appid": 1655940, + "normalized_name": "earth's shadow" + }, + { + "appid": 1655960, + "normalized_name": "maptroid worlds" + }, + { + "appid": 1655970, + "normalized_name": "erotic jigsaw puzzle 3" + }, + { + "appid": 1655990, + "normalized_name": "mortal rite" + }, + { + "appid": 1656050, + "normalized_name": "remnants of the rift" + }, + { + "appid": 1656080, + "normalized_name": "monarchs dawn" + }, + { + "appid": 1656200, + "normalized_name": "slimetime" + }, + { + "appid": 1656210, + "normalized_name": "the adventures of herbie & katt lechatt" + }, + { + "appid": 1656230, + "normalized_name": "phantom train" + }, + { + "appid": 1656240, + "normalized_name": "my sexy waitress" + }, + { + "appid": 1656280, + "normalized_name": "synchronizers undead marines" + }, + { + "appid": 1656300, + "normalized_name": "slime vs. female hero party" + }, + { + "appid": 1656310, + "normalized_name": "tetragun" + }, + { + "appid": 1656600, + "normalized_name": "fluffy cubed" + }, + { + "appid": 1656640, + "normalized_name": "four color jump" + }, + { + "appid": 1656650, + "normalized_name": "express simulator" + }, + { + "appid": 1656680, + "normalized_name": "escape forced overtime" + }, + { + "appid": 1656740, + "normalized_name": "mercenary operator wolves" + }, + { + "appid": 1656780, + "normalized_name": "hero's hour" + }, + { + "appid": 1656790, + "normalized_name": "samsara" + }, + { + "appid": 1656820, + "normalized_name": "cotton reboot!" + }, + { + "appid": 1656840, + "normalized_name": "mystery of dust" + }, + { + "appid": 1656850, + "normalized_name": "schematic" + }, + { + "appid": 1656860, + "normalized_name": "arena tactics" + }, + { + "appid": 1656870, + "normalized_name": "eastwind adventures chapter 1" + }, + { + "appid": 1656880, + "normalized_name": "dungless" + }, + { + "appid": 1656900, + "normalized_name": "shaped touches" + }, + { + "appid": 1656930, + "normalized_name": "coridden" + }, + { + "appid": 1656950, + "normalized_name": "whim" + }, + { + "appid": 1657020, + "normalized_name": "word escape" + }, + { + "appid": 1657050, + "normalized_name": "worlds of the future" + }, + { + "appid": 1657080, + "normalized_name": "soulfire weapon master" + }, + { + "appid": 1657090, + "normalized_name": "mini royale" + }, + { + "appid": 1657100, + "normalized_name": "tower of guardian" + }, + { + "appid": 1657150, + "normalized_name": "going the distance" + }, + { + "appid": 1657170, + "normalized_name": "suspicious downpour" + }, + { + "appid": 1657200, + "normalized_name": "star chaser in sea world/海の世界の星追い" + }, + { + "appid": 1657210, + "normalized_name": "after" + }, + { + "appid": 1657240, + "normalized_name": "warped times" + }, + { + "appid": 1657280, + "normalized_name": "super shield dash" + }, + { + "appid": 1657290, + "normalized_name": "the elysian field" + }, + { + "appid": 1657320, + "normalized_name": "mutant football league 2" + }, + { + "appid": 1657350, + "normalized_name": "cyberflight" + }, + { + "appid": 1657540, + "normalized_name": "night dreamer" + }, + { + "appid": 1657550, + "normalized_name": "myhorizen" + }, + { + "appid": 1657570, + "normalized_name": "tube rolling" + }, + { + "appid": 1657600, + "normalized_name": "christmas stories puss in boots collector's" + }, + { + "appid": 1657620, + "normalized_name": "another path" + }, + { + "appid": 1657630, + "normalized_name": "slime rancher 2" + }, + { + "appid": 1657740, + "normalized_name": "mr. sleepy man" + }, + { + "appid": 1657760, + "normalized_name": "cactus cowboy 3 fully loaded" + }, + { + "appid": 1657770, + "normalized_name": "virtual beach dancer [hd+]" + }, + { + "appid": 1657780, + "normalized_name": "ultimechs" + }, + { + "appid": 1657810, + "normalized_name": "combots" + }, + { + "appid": 1657880, + "normalized_name": "3cushion masters" + }, + { + "appid": 1657910, + "normalized_name": "quiz carnage" + }, + { + "appid": 1657950, + "normalized_name": "prototype outpost 3" + }, + { + "appid": 1657960, + "normalized_name": "anime puzzle" + }, + { + "appid": 1658010, + "normalized_name": "crown" + }, + { + "appid": 1658040, + "normalized_name": "i am future cozy apocalypse survival" + }, + { + "appid": 1658050, + "normalized_name": "really weird pool" + }, + { + "appid": 1658080, + "normalized_name": "aces in the dust" + }, + { + "appid": 1658090, + "normalized_name": "dual gunstrike" + }, + { + "appid": 1658150, + "normalized_name": "moonstone island" + }, + { + "appid": 1658180, + "normalized_name": "gosh a ghost" + }, + { + "appid": 1658210, + "normalized_name": "witty witch" + }, + { + "appid": 1658280, + "normalized_name": "eiyuden chronicle hundred heroes" + }, + { + "appid": 1658290, + "normalized_name": "eiyuden chronicle rising" + }, + { + "appid": 1658310, + "normalized_name": "wolf of stock street" + }, + { + "appid": 1658370, + "normalized_name": "dress up pups" + }, + { + "appid": 1658390, + "normalized_name": "albert and puzzle mansion" + }, + { + "appid": 1658400, + "normalized_name": "the mountain hunting" + }, + { + "appid": 1658440, + "normalized_name": "audioclash battle of the bands" + }, + { + "appid": 1658450, + "normalized_name": "grubdash driver food delivery driver simulator" + }, + { + "appid": 1658480, + "normalized_name": "eqdrive.io" + }, + { + "appid": 1658490, + "normalized_name": "thukothea defender" + }, + { + "appid": 1658530, + "normalized_name": "virtual becomes reality a stanford vr experience" + }, + { + "appid": 1658540, + "normalized_name": "bullion the curse of the cut throat cattle" + }, + { + "appid": 1658620, + "normalized_name": "idle atomic" + }, + { + "appid": 1658650, + "normalized_name": "space drone rescue mission" + }, + { + "appid": 1658700, + "normalized_name": "sniperpunk" + }, + { + "appid": 1658750, + "normalized_name": "revelation" + }, + { + "appid": 1658770, + "normalized_name": "grandmaster chess" + }, + { + "appid": 1658830, + "normalized_name": "vampire slave 1 a yaoi visual novel" + }, + { + "appid": 1658880, + "normalized_name": "汉字大冒险" + }, + { + "appid": 1658910, + "normalized_name": "spellhunter" + }, + { + "appid": 1658920, + "normalized_name": "crown wars the black prince" + }, + { + "appid": 1658930, + "normalized_name": "blazing aries" + }, + { + "appid": 1658960, + "normalized_name": "end of lines" + }, + { + "appid": 1658970, + "normalized_name": "overmorrow" + }, + { + "appid": 1659040, + "normalized_name": "hitman world of assassination" + }, + { + "appid": 1659050, + "normalized_name": "creatures docking station" + }, + { + "appid": 1659080, + "normalized_name": "the last defense!" + }, + { + "appid": 1659090, + "normalized_name": "remedium" + }, + { + "appid": 1659120, + "normalized_name": "unholy neighbourhood" + }, + { + "appid": 1659150, + "normalized_name": "super 56" + }, + { + "appid": 1659170, + "normalized_name": "snowboarding" + }, + { + "appid": 1659180, + "normalized_name": "td worlds" + }, + { + "appid": 1659190, + "normalized_name": "bof1ll a withering world" + }, + { + "appid": 1659200, + "normalized_name": "crossed wires" + }, + { + "appid": 1659210, + "normalized_name": "uninvited guest" + }, + { + "appid": 1659250, + "normalized_name": "neebota zeebo's awakening" + }, + { + "appid": 1659270, + "normalized_name": "sprite sequence chapter 2" + }, + { + "appid": 1659300, + "normalized_name": "hour night" + }, + { + "appid": 1659320, + "normalized_name": "the last chimera" + }, + { + "appid": 1659340, + "normalized_name": "be the one" + }, + { + "appid": 1659360, + "normalized_name": "townseek" + }, + { + "appid": 1659380, + "normalized_name": "feyght" + }, + { + "appid": 1659400, + "normalized_name": "hideout face your fears" + }, + { + "appid": 1659410, + "normalized_name": "dungeon lad" + }, + { + "appid": 1659420, + "normalized_name": "uncharted legacy of thieves collection" + }, + { + "appid": 1659470, + "normalized_name": "mouse hunter" + }, + { + "appid": 1659490, + "normalized_name": "gray death" + }, + { + "appid": 1659500, + "normalized_name": "project theta" + }, + { + "appid": 1659520, + "normalized_name": "invertigo" + }, + { + "appid": 1659530, + "normalized_name": "party demon" + }, + { + "appid": 1659560, + "normalized_name": "nekoba rocknroll" + }, + { + "appid": 1659590, + "normalized_name": "fallow" + }, + { + "appid": 1659600, + "normalized_name": "teenage mutant ninja turtles the cowabunga collection" + }, + { + "appid": 1659610, + "normalized_name": "the midnight wind" + }, + { + "appid": 1659650, + "normalized_name": "7th chance" + }, + { + "appid": 1659670, + "normalized_name": "bunny flush" + }, + { + "appid": 1659710, + "normalized_name": "devileader" + }, + { + "appid": 1659760, + "normalized_name": "puzzle cafe vr" + }, + { + "appid": 1659800, + "normalized_name": "sweet house" + }, + { + "appid": 1659810, + "normalized_name": "figurine scene simulator" + }, + { + "appid": 1659910, + "normalized_name": "mystery of camp enigma 2 point & click puzzle adventure" + }, + { + "appid": 1659920, + "normalized_name": "antecrypt" + }, + { + "appid": 1659950, + "normalized_name": "paper enchantress" + }, + { + "appid": 1660040, + "normalized_name": "upaon a snake's journey" + }, + { + "appid": 1660080, + "normalized_name": "aloft" + }, + { + "appid": 1660090, + "normalized_name": "laundry simulator" + }, + { + "appid": 1660110, + "normalized_name": "decent into sector 32" + }, + { + "appid": 1660150, + "normalized_name": "redacted epilogue" + }, + { + "appid": 1660200, + "normalized_name": "neon eternal" + }, + { + "appid": 1660220, + "normalized_name": "swooping justice" + }, + { + "appid": 1660230, + "normalized_name": "tale of serendipity" + }, + { + "appid": 1660240, + "normalized_name": "atoll" + }, + { + "appid": 1660270, + "normalized_name": "rain island orange" + }, + { + "appid": 1660280, + "normalized_name": "h isekai loves" + }, + { + "appid": 1660290, + "normalized_name": "monmusu gladiator" + }, + { + "appid": 1660300, + "normalized_name": "physical wrestling" + }, + { + "appid": 1660310, + "normalized_name": "小当家" + }, + { + "appid": 1660330, + "normalized_name": "99 pixel cats" + }, + { + "appid": 1660340, + "normalized_name": "colors assemble" + }, + { + "appid": 1660360, + "normalized_name": "re jump boy" + }, + { + "appid": 1660370, + "normalized_name": "wildlife match" + }, + { + "appid": 1660420, + "normalized_name": "endless love" + }, + { + "appid": 1660430, + "normalized_name": "the wolf's den" + }, + { + "appid": 1660440, + "normalized_name": "way to the woods" + }, + { + "appid": 1660460, + "normalized_name": "hoples" + }, + { + "appid": 1660480, + "normalized_name": "arausio" + }, + { + "appid": 1660500, + "normalized_name": "party host 85" + }, + { + "appid": 1660510, + "normalized_name": "animal diner" + }, + { + "appid": 1660520, + "normalized_name": "pirates" + }, + { + "appid": 1660560, + "normalized_name": "chess valley 2" + }, + { + "appid": 1660580, + "normalized_name": "invasion neo earth" + }, + { + "appid": 1660590, + "normalized_name": "detective story reporter" + }, + { + "appid": 1660660, + "normalized_name": "bongirl" + }, + { + "appid": 1660680, + "normalized_name": "dracula" + }, + { + "appid": 1660750, + "normalized_name": "ufo vs bikini" + }, + { + "appid": 1660840, + "normalized_name": "wild bastards" + }, + { + "appid": 1660850, + "normalized_name": "flesh" + }, + { + "appid": 1660860, + "normalized_name": "无双剑士的后宫生活!" + }, + { + "appid": 1660890, + "normalized_name": "混沌小队(chaos squad)" + }, + { + "appid": 1660910, + "normalized_name": "tanks the crusades" + }, + { + "appid": 1660960, + "normalized_name": "windswept" + }, + { + "appid": 1660970, + "normalized_name": "龙鸣朋克" + }, + { + "appid": 1660980, + "normalized_name": "giant worm rider" + }, + { + "appid": 1660990, + "normalized_name": "ネジ込みシミュレーターvol2 三編みちゃんのおまんこキックチャレンジ!!超動くバーチャルオナホアプリ 【拡張・オナホ化・石化・時間停止】" + }, + { + "appid": 1661020, + "normalized_name": "battle steed gunma (배틀 스티드 군마)" + }, + { + "appid": 1661100, + "normalized_name": "loveandbetrayal" + }, + { + "appid": 1661130, + "normalized_name": "guardians royal journey" + }, + { + "appid": 1661180, + "normalized_name": "signals" + }, + { + "appid": 1661210, + "normalized_name": "wav ocs game" + }, + { + "appid": 1661240, + "normalized_name": "bubble shooter fx" + }, + { + "appid": 1661260, + "normalized_name": "animal shelter prologue" + }, + { + "appid": 1661270, + "normalized_name": "car detailing simulator prologue" + }, + { + "appid": 1661280, + "normalized_name": "police shootout prologue" + }, + { + "appid": 1661330, + "normalized_name": "sacrifire" + }, + { + "appid": 1661360, + "normalized_name": "leman" + }, + { + "appid": 1661380, + "normalized_name": "abandoned croxon mansion" + }, + { + "appid": 1661390, + "normalized_name": "duelist" + }, + { + "appid": 1661450, + "normalized_name": "the lost robot jigsaw puzzle stories" + }, + { + "appid": 1661480, + "normalized_name": "fear underground" + }, + { + "appid": 1661500, + "normalized_name": "our mother's house" + }, + { + "appid": 1661560, + "normalized_name": "the journey into the virtual void" + }, + { + "appid": 1661570, + "normalized_name": "over the ruins" + }, + { + "appid": 1661580, + "normalized_name": "sur 2d horror" + }, + { + "appid": 1661600, + "normalized_name": "dead ink" + }, + { + "appid": 1661610, + "normalized_name": "apopia sugar coated tale" + }, + { + "appid": 1661630, + "normalized_name": "karmazoo" + }, + { + "appid": 1661640, + "normalized_name": "tough law" + }, + { + "appid": 1661690, + "normalized_name": "我没k" + }, + { + "appid": 1661700, + "normalized_name": "tyfortress tactical typing" + }, + { + "appid": 1661750, + "normalized_name": "dead box" + }, + { + "appid": 1661760, + "normalized_name": "icewords" + }, + { + "appid": 1661800, + "normalized_name": "dash dash delivery" + }, + { + "appid": 1661810, + "normalized_name": "abi and the soul" + }, + { + "appid": 1661840, + "normalized_name": "quiet valley 2" + }, + { + "appid": 1661880, + "normalized_name": "dap prologue" + }, + { + "appid": 1661900, + "normalized_name": "human apocalypse reverse horror zombie indie rpg adventure" + }, + { + "appid": 1661910, + "normalized_name": "昆仑" + }, + { + "appid": 1661920, + "normalized_name": "ancient legacy of azul" + }, + { + "appid": 1661930, + "normalized_name": "y the game" + }, + { + "appid": 1661940, + "normalized_name": "hot pieces" + }, + { + "appid": 1661950, + "normalized_name": "ace breakout" + }, + { + "appid": 1662000, + "normalized_name": "furry fatale" + }, + { + "appid": 1662010, + "normalized_name": "project absentia" + }, + { + "appid": 1662030, + "normalized_name": "烈焰传奇" + }, + { + "appid": 1662040, + "normalized_name": "dreamreaper grey skies" + }, + { + "appid": 1662050, + "normalized_name": "noble's life kingdom reborn" + }, + { + "appid": 1662080, + "normalized_name": "goonya monster" + }, + { + "appid": 1662090, + "normalized_name": "hyper 5" + }, + { + "appid": 1662110, + "normalized_name": "house of portals vr" + }, + { + "appid": 1662140, + "normalized_name": "房地产大亨" + }, + { + "appid": 1662150, + "normalized_name": "ardent azur" + }, + { + "appid": 1662160, + "normalized_name": "k pop idol stories road to debut" + }, + { + "appid": 1662210, + "normalized_name": "arms trade tycoon tanks" + }, + { + "appid": 1662220, + "normalized_name": "glim" + }, + { + "appid": 1662230, + "normalized_name": "cowboy life simulator prologue" + }, + { + "appid": 1662260, + "normalized_name": "code angel" + }, + { + "appid": 1662270, + "normalized_name": "vandalhalla" + }, + { + "appid": 1662310, + "normalized_name": "junkman simulator" + }, + { + "appid": 1662340, + "normalized_name": "case 02 paranormal evil" + }, + { + "appid": 1662350, + "normalized_name": "world war 2 operation husky" + }, + { + "appid": 1662410, + "normalized_name": "heroes of arcana" + }, + { + "appid": 1662450, + "normalized_name": "home office" + }, + { + "appid": 1662480, + "normalized_name": "nuclear blaze" + }, + { + "appid": 1662510, + "normalized_name": "itsyrealm" + }, + { + "appid": 1662540, + "normalized_name": "doggone" + }, + { + "appid": 1662570, + "normalized_name": "rescue party live!" + }, + { + "appid": 1662580, + "normalized_name": "stack!" + }, + { + "appid": 1662670, + "normalized_name": "nerthus einar's fate" + }, + { + "appid": 1662680, + "normalized_name": "uros a trip through shadows" + }, + { + "appid": 1662690, + "normalized_name": "twin stones the journey of bukka" + }, + { + "appid": 1662700, + "normalized_name": "forever lost" + }, + { + "appid": 1662710, + "normalized_name": "oldowan" + }, + { + "appid": 1662750, + "normalized_name": "wraiths of sentinel" + }, + { + "appid": 1662770, + "normalized_name": "ufo extraterrestrials platinum" + }, + { + "appid": 1662790, + "normalized_name": "revo" + }, + { + "appid": 1662800, + "normalized_name": "castle champion" + }, + { + "appid": 1662820, + "normalized_name": "mythica adventures" + }, + { + "appid": 1662830, + "normalized_name": "salt and sails" + }, + { + "appid": 1662840, + "normalized_name": "parquet" + }, + { + "appid": 1662850, + "normalized_name": "renai karichaimashita koikari love for hire" + }, + { + "appid": 1662860, + "normalized_name": "trapper drug dealing rpg" + }, + { + "appid": 1662920, + "normalized_name": "friend request a playable teaser" + }, + { + "appid": 1662940, + "normalized_name": "anatomy of fear" + }, + { + "appid": 1662970, + "normalized_name": "pact" + }, + { + "appid": 1662980, + "normalized_name": "the loneliest summer" + }, + { + "appid": 1662990, + "normalized_name": "explosiver" + }, + { + "appid": 1663000, + "normalized_name": "forlorn the mysteries of highshadowland" + }, + { + "appid": 1663010, + "normalized_name": "beldamos miner" + }, + { + "appid": 1663030, + "normalized_name": "droid404" + }, + { + "appid": 1663040, + "normalized_name": "amber isle" + }, + { + "appid": 1663140, + "normalized_name": "女孩与七匹狼" + }, + { + "appid": 1663170, + "normalized_name": "airplane tycoon" + }, + { + "appid": 1663200, + "normalized_name": "sonata theory" + }, + { + "appid": 1663210, + "normalized_name": "pixeljunk scrappers deluxe" + }, + { + "appid": 1663220, + "normalized_name": "coffee talk episode 2 hibiscus & butterfly" + }, + { + "appid": 1663250, + "normalized_name": "hyper gunsport" + }, + { + "appid": 1663260, + "normalized_name": "snowtunes island" + }, + { + "appid": 1663270, + "normalized_name": "below the ocean" + }, + { + "appid": 1663320, + "normalized_name": "wrestling cardboard championship" + }, + { + "appid": 1663330, + "normalized_name": "street boy" + }, + { + "appid": 1663370, + "normalized_name": "erotic jigsaw puzzle 4" + }, + { + "appid": 1663380, + "normalized_name": "cat powered ufo" + }, + { + "appid": 1663390, + "normalized_name": "snake deluxe" + }, + { + "appid": 1663400, + "normalized_name": "reigns beyond" + }, + { + "appid": 1663410, + "normalized_name": "happenlance" + }, + { + "appid": 1663430, + "normalized_name": "ayatana" + }, + { + "appid": 1663440, + "normalized_name": "hot cam" + }, + { + "appid": 1663450, + "normalized_name": "code correction" + }, + { + "appid": 1663560, + "normalized_name": "g modeアーカイブス15 ちゅら島暮らし" + }, + { + "appid": 1663580, + "normalized_name": "thrice in a row a new adventure" + }, + { + "appid": 1663640, + "normalized_name": "the last oricru final cut" + }, + { + "appid": 1663650, + "normalized_name": "knife to meet you" + }, + { + "appid": 1663710, + "normalized_name": "fitness center renovator" + }, + { + "appid": 1663730, + "normalized_name": "sgs afrika korps tunisia" + }, + { + "appid": 1663850, + "normalized_name": "replaced" + }, + { + "appid": 1663860, + "normalized_name": "the guardian stone" + }, + { + "appid": 1663870, + "normalized_name": "valakas immortal" + }, + { + "appid": 1663910, + "normalized_name": "tiny gods of the nile" + }, + { + "appid": 1663920, + "normalized_name": "our mind" + }, + { + "appid": 1663930, + "normalized_name": "colorblend fx desaturation prologue" + }, + { + "appid": 1663940, + "normalized_name": "academy of magic dark possession" + }, + { + "appid": 1663950, + "normalized_name": "battlemage magic by mail" + }, + { + "appid": 1663970, + "normalized_name": "the play's the thing" + }, + { + "appid": 1663990, + "normalized_name": "the dragon and the djinn" + }, + { + "appid": 1664010, + "normalized_name": "dungeon crawler daniel" + }, + { + "appid": 1664050, + "normalized_name": "tricks magician" + }, + { + "appid": 1664060, + "normalized_name": "idle monster frontier" + }, + { + "appid": 1664090, + "normalized_name": "magic gems" + }, + { + "appid": 1664100, + "normalized_name": "fight bots" + }, + { + "appid": 1664110, + "normalized_name": "city of robots" + }, + { + "appid": 1664120, + "normalized_name": "cryptid crew" + }, + { + "appid": 1664130, + "normalized_name": "mighty chameleon brothers" + }, + { + "appid": 1664200, + "normalized_name": "duelists of eden" + }, + { + "appid": 1664220, + "normalized_name": "trail out" + }, + { + "appid": 1664240, + "normalized_name": "venaitura" + }, + { + "appid": 1664350, + "normalized_name": "ship graveyard simulator prologue" + }, + { + "appid": 1664360, + "normalized_name": "monuments flipper prologue" + }, + { + "appid": 1664370, + "normalized_name": "the teleport" + }, + { + "appid": 1664390, + "normalized_name": "the instruments of faith padua's destiny" + }, + { + "appid": 1664410, + "normalized_name": "東方実在相 ~ dream logical world" + }, + { + "appid": 1664430, + "normalized_name": "senses midnight" + }, + { + "appid": 1664450, + "normalized_name": "archquest" + }, + { + "appid": 1664580, + "normalized_name": "terra ventura" + }, + { + "appid": 1664610, + "normalized_name": "pax narcotica trafficker" + }, + { + "appid": 1664660, + "normalized_name": "hentai brick breaker" + }, + { + "appid": 1664670, + "normalized_name": "重构 refactor" + }, + { + "appid": 1664720, + "normalized_name": "mojito woody's rescue" + }, + { + "appid": 1664750, + "normalized_name": "pegglo" + }, + { + "appid": 1664770, + "normalized_name": "syncope" + }, + { + "appid": 1664810, + "normalized_name": "gluua" + }, + { + "appid": 1664910, + "normalized_name": "murder diaries" + }, + { + "appid": 1664980, + "normalized_name": "1001 jigsaw earth chronicles 4" + }, + { + "appid": 1664990, + "normalized_name": "1001 jigsaw earth chronicles 5" + }, + { + "appid": 1665000, + "normalized_name": "alice's jigsaw time travel 2" + }, + { + "appid": 1665010, + "normalized_name": "fill and cross pirate riddles 2" + }, + { + "appid": 1665020, + "normalized_name": "fill and cross trick or treat" + }, + { + "appid": 1665040, + "normalized_name": "griddlers beach season" + }, + { + "appid": 1665050, + "normalized_name": "griddlers ted and pet 2" + }, + { + "appid": 1665060, + "normalized_name": "halloween patchwork trick or treat" + }, + { + "appid": 1665070, + "normalized_name": "squad of dangerous" + }, + { + "appid": 1665130, + "normalized_name": "pac man museum+" + }, + { + "appid": 1665170, + "normalized_name": "the patagonians" + }, + { + "appid": 1665180, + "normalized_name": "i am a story of awakenings" + }, + { + "appid": 1665190, + "normalized_name": "monster prom 3 monster roadtrip" + }, + { + "appid": 1665200, + "normalized_name": "printersim" + }, + { + "appid": 1665210, + "normalized_name": "sakura forest girls 3" + }, + { + "appid": 1665250, + "normalized_name": "nightmare" + }, + { + "appid": 1665260, + "normalized_name": "beyond sunset" + }, + { + "appid": 1665280, + "normalized_name": "skábma snowfall" + }, + { + "appid": 1665300, + "normalized_name": "zarktor's realm" + }, + { + "appid": 1665460, + "normalized_name": "efootball" + }, + { + "appid": 1665490, + "normalized_name": "dead survival" + }, + { + "appid": 1665500, + "normalized_name": "hypnagogia 無限の夢 boundless dreams" + }, + { + "appid": 1665520, + "normalized_name": "fire and dungeon" + }, + { + "appid": 1665540, + "normalized_name": "chicken empire weasel in shadows" + }, + { + "appid": 1665570, + "normalized_name": "brickbuilder vr" + }, + { + "appid": 1665580, + "normalized_name": "grayscale" + }, + { + "appid": 1665590, + "normalized_name": "blood nor water" + }, + { + "appid": 1665600, + "normalized_name": "source of survival early access" + }, + { + "appid": 1665610, + "normalized_name": "wishlair" + }, + { + "appid": 1665650, + "normalized_name": "metal and hauling rpg simulator" + }, + { + "appid": 1665670, + "normalized_name": "dog eat dog scam to survive" + }, + { + "appid": 1665780, + "normalized_name": "coalhero" + }, + { + "appid": 1665790, + "normalized_name": "historical jigsaw puzzle world war i" + }, + { + "appid": 1665810, + "normalized_name": "2048 royal cards" + }, + { + "appid": 1665820, + "normalized_name": "dormant episode galatea #1" + }, + { + "appid": 1665900, + "normalized_name": "shinorubi" + }, + { + "appid": 1665910, + "normalized_name": "kiddo" + }, + { + "appid": 1665990, + "normalized_name": "selene's nightmare" + }, + { + "appid": 1666030, + "normalized_name": "azimech" + }, + { + "appid": 1666070, + "normalized_name": "shoal" + }, + { + "appid": 1666090, + "normalized_name": "karanos solitaire" + }, + { + "appid": 1666110, + "normalized_name": "die like a hero" + }, + { + "appid": 1666150, + "normalized_name": "manta" + }, + { + "appid": 1666170, + "normalized_name": "vacancy unlimited" + }, + { + "appid": 1666190, + "normalized_name": "yellow ballman" + }, + { + "appid": 1666240, + "normalized_name": "crimson glaive sigma" + }, + { + "appid": 1666250, + "normalized_name": "circus electrique" + }, + { + "appid": 1666260, + "normalized_name": "soer dolls" + }, + { + "appid": 1666310, + "normalized_name": "parasomnia verum" + }, + { + "appid": 1666320, + "normalized_name": "hentai waifu girls" + }, + { + "appid": 1666430, + "normalized_name": "candy land" + }, + { + "appid": 1666470, + "normalized_name": "tiny golf adventure" + }, + { + "appid": 1666480, + "normalized_name": "astra fading stars" + }, + { + "appid": 1666500, + "normalized_name": "write 'n' fight" + }, + { + "appid": 1666510, + "normalized_name": "magical valkyrie lyristia" + }, + { + "appid": 1666520, + "normalized_name": "tournament ark" + }, + { + "appid": 1666600, + "normalized_name": "the dragon apprentice" + }, + { + "appid": 1666640, + "normalized_name": "magical girl d futanari rpg" + }, + { + "appid": 1666660, + "normalized_name": "destruction time!" + }, + { + "appid": 1666720, + "normalized_name": "로스팅 리포트 대학생 수면제 사망사건" + }, + { + "appid": 1666770, + "normalized_name": "the new earth" + }, + { + "appid": 1666800, + "normalized_name": "parkour posse" + }, + { + "appid": 1666810, + "normalized_name": "pog 4" + }, + { + "appid": 1666820, + "normalized_name": "steve's hardcore worldtour" + }, + { + "appid": 1666830, + "normalized_name": "tales of raetrethra legends of the past" + }, + { + "appid": 1666850, + "normalized_name": "more. the eternal utopia" + }, + { + "appid": 1666970, + "normalized_name": "frog fight" + }, + { + "appid": 1667010, + "normalized_name": "pirates job" + }, + { + "appid": 1667040, + "normalized_name": "under a rock" + }, + { + "appid": 1667080, + "normalized_name": "aesoteric collection" + }, + { + "appid": 1667100, + "normalized_name": "hardpunch fuck 4joy" + }, + { + "appid": 1667110, + "normalized_name": "metempsychosis" + }, + { + "appid": 1667120, + "normalized_name": "physarum slime mold simulator" + }, + { + "appid": 1667130, + "normalized_name": "beautiful mystic defenders" + }, + { + "appid": 1667160, + "normalized_name": "入替人 replacer" + }, + { + "appid": 1667170, + "normalized_name": "claustrophobia" + }, + { + "appid": 1667180, + "normalized_name": "no man's island" + }, + { + "appid": 1667190, + "normalized_name": "gjhinuojbouib" + }, + { + "appid": 1667210, + "normalized_name": "mini ship wars" + }, + { + "appid": 1667240, + "normalized_name": "my name is human" + }, + { + "appid": 1667270, + "normalized_name": "lone mclonegan a western adventure" + }, + { + "appid": 1667280, + "normalized_name": "fiore i daffodil" + }, + { + "appid": 1667290, + "normalized_name": "anime cards" + }, + { + "appid": 1667320, + "normalized_name": "producer 2021" + }, + { + "appid": 1667360, + "normalized_name": "sanya" + }, + { + "appid": 1667390, + "normalized_name": "do i feel?" + }, + { + "appid": 1667400, + "normalized_name": "cute cats" + }, + { + "appid": 1667420, + "normalized_name": "xenimus" + }, + { + "appid": 1667440, + "normalized_name": "wish world" + }, + { + "appid": 1667480, + "normalized_name": "cyberneticsal" + }, + { + "appid": 1667490, + "normalized_name": "fostering apocalypse" + }, + { + "appid": 1667530, + "normalized_name": "chronotopia second skin" + }, + { + "appid": 1667540, + "normalized_name": "dragon's vengeance" + }, + { + "appid": 1667550, + "normalized_name": "swimmer admiration" + }, + { + "appid": 1667590, + "normalized_name": "junebug vs. evil" + }, + { + "appid": 1667680, + "normalized_name": "driftmaster" + }, + { + "appid": 1667700, + "normalized_name": "geometry arena 2" + }, + { + "appid": 1667720, + "normalized_name": "demon lord jill revival" + }, + { + "appid": 1667730, + "normalized_name": "forgotten journey" + }, + { + "appid": 1667750, + "normalized_name": "frigato shadows of the caribbean" + }, + { + "appid": 1667770, + "normalized_name": "samurai shampoo classic" + }, + { + "appid": 1667800, + "normalized_name": "dodge" + }, + { + "appid": 1667840, + "normalized_name": "slime story" + }, + { + "appid": 1667920, + "normalized_name": "superゆきおんなちゃん" + }, + { + "appid": 1668010, + "normalized_name": "virtual amusement" + }, + { + "appid": 1668020, + "normalized_name": "the little black bestiary the salted cookies of carthaginia" + }, + { + "appid": 1668080, + "normalized_name": "flåklypa grand prix" + }, + { + "appid": 1668130, + "normalized_name": "orbit.industries" + }, + { + "appid": 1668150, + "normalized_name": "overwall" + }, + { + "appid": 1668170, + "normalized_name": "track and burn" + }, + { + "appid": 1668190, + "normalized_name": "once upon a jester" + }, + { + "appid": 1668210, + "normalized_name": "a sad journey" + }, + { + "appid": 1668280, + "normalized_name": "game about games первый интерактивный \"журнал\" об играх" + }, + { + "appid": 1668290, + "normalized_name": "dungeons of aether" + }, + { + "appid": 1668310, + "normalized_name": "24 killers" + }, + { + "appid": 1668340, + "normalized_name": "eternal tombs" + }, + { + "appid": 1668350, + "normalized_name": "still ridge a supernatural adventure game" + }, + { + "appid": 1668380, + "normalized_name": "deadish" + }, + { + "appid": 1668410, + "normalized_name": "dwarf prison" + }, + { + "appid": 1668420, + "normalized_name": "detective ai" + }, + { + "appid": 1668460, + "normalized_name": "the fancy pants adventures classic pack" + }, + { + "appid": 1668470, + "normalized_name": "aether story" + }, + { + "appid": 1668480, + "normalized_name": "hamsterverse" + }, + { + "appid": 1668510, + "normalized_name": "the legend of heroes trails from zero" + }, + { + "appid": 1668520, + "normalized_name": "the legend of heroes trails to azure" + }, + { + "appid": 1668530, + "normalized_name": "the legend of nayuta boundless trails" + }, + { + "appid": 1668540, + "normalized_name": "the legend of heroes trails into reverie" + }, + { + "appid": 1668580, + "normalized_name": "valor" + }, + { + "appid": 1668590, + "normalized_name": "neokaiju" + }, + { + "appid": 1668610, + "normalized_name": "blackhaven" + }, + { + "appid": 1668620, + "normalized_name": "castles on clouds" + }, + { + "appid": 1668630, + "normalized_name": "escape war" + }, + { + "appid": 1668640, + "normalized_name": "rings of hell" + }, + { + "appid": 1668650, + "normalized_name": "maya star" + }, + { + "appid": 1668670, + "normalized_name": "snowboarding" + }, + { + "appid": 1668690, + "normalized_name": "alina of the arena" + }, + { + "appid": 1668710, + "normalized_name": "clash of stars" + }, + { + "appid": 1668720, + "normalized_name": "구운몽" + }, + { + "appid": 1668780, + "normalized_name": "firelight fantasy vengeance" + }, + { + "appid": 1668800, + "normalized_name": "maze mania the 3d maze game" + }, + { + "appid": 1668810, + "normalized_name": "midsummer madness" + }, + { + "appid": 1668820, + "normalized_name": "horses and girls" + }, + { + "appid": 1668830, + "normalized_name": "cute nurses" + }, + { + "appid": 1668840, + "normalized_name": "beautiful defenders" + }, + { + "appid": 1668850, + "normalized_name": "beautiful vikings" + }, + { + "appid": 1668870, + "normalized_name": "nature and girls" + }, + { + "appid": 1668880, + "normalized_name": "spring and girls" + }, + { + "appid": 1668890, + "normalized_name": "surfing and girls" + }, + { + "appid": 1668930, + "normalized_name": "african safari" + }, + { + "appid": 1668940, + "normalized_name": "崩坏3" + }, + { + "appid": 1668950, + "normalized_name": "pluvia episode i" + }, + { + "appid": 1668960, + "normalized_name": "rondo of darkness the curse of twin moon" + }, + { + "appid": 1668970, + "normalized_name": "primarch" + }, + { + "appid": 1668990, + "normalized_name": "our mountain" + }, + { + "appid": 1669000, + "normalized_name": "age of wonders 4" + }, + { + "appid": 1669030, + "normalized_name": "indigo 7" + }, + { + "appid": 1669050, + "normalized_name": "beastrun" + }, + { + "appid": 1669110, + "normalized_name": "bad bots battle arena" + }, + { + "appid": 1669120, + "normalized_name": "go rocket" + }, + { + "appid": 1669130, + "normalized_name": "retrowave universe" + }, + { + "appid": 1669160, + "normalized_name": "endless becoming apartment" + }, + { + "appid": 1669170, + "normalized_name": "northend tower defense" + }, + { + "appid": 1669180, + "normalized_name": "demon source" + }, + { + "appid": 1669320, + "normalized_name": "trash panda" + }, + { + "appid": 1669330, + "normalized_name": "残世界的鸢尾花" + }, + { + "appid": 1669340, + "normalized_name": "尘埃见闻录" + }, + { + "appid": 1669350, + "normalized_name": "fingun" + }, + { + "appid": 1669360, + "normalized_name": "socialism simulator" + }, + { + "appid": 1669380, + "normalized_name": "towns of yore" + }, + { + "appid": 1669390, + "normalized_name": "the tragedy of little joy" + }, + { + "appid": 1669420, + "normalized_name": "islets" + }, + { + "appid": 1669430, + "normalized_name": "domination" + }, + { + "appid": 1669480, + "normalized_name": "firefighting simulator ignite" + }, + { + "appid": 1669490, + "normalized_name": "jerma & otto the curse of the late streamer" + }, + { + "appid": 1669500, + "normalized_name": "we are one" + }, + { + "appid": 1669560, + "normalized_name": "into the loop" + }, + { + "appid": 1669580, + "normalized_name": "once first person adventure" + }, + { + "appid": 1669590, + "normalized_name": "coyote" + }, + { + "appid": 1669600, + "normalized_name": "green memories" + }, + { + "appid": 1669620, + "normalized_name": "neoflux drift" + }, + { + "appid": 1669690, + "normalized_name": "polygon wizards" + }, + { + "appid": 1669750, + "normalized_name": "ahod all hands on deck!" + }, + { + "appid": 1669790, + "normalized_name": "biocide karver island" + }, + { + "appid": 1669820, + "normalized_name": "haunted hotel a past redeemed collector's" + }, + { + "appid": 1669850, + "normalized_name": "spinstar" + }, + { + "appid": 1669870, + "normalized_name": "大亨传奇" + }, + { + "appid": 1669880, + "normalized_name": "beatrect" + }, + { + "appid": 1669890, + "normalized_name": "insomnious" + }, + { + "appid": 1669930, + "normalized_name": "莉莉的梦:恐龙历险记 lily's dream adventures of dinosaurs" + }, + { + "appid": 1669940, + "normalized_name": "short night" + }, + { + "appid": 1669970, + "normalized_name": "spellhearts" + }, + { + "appid": 1669980, + "normalized_name": "volcano princess" + }, + { + "appid": 1670010, + "normalized_name": "inverse evolver" + }, + { + "appid": 1670050, + "normalized_name": "washed up" + }, + { + "appid": 1670060, + "normalized_name": "cassius" + }, + { + "appid": 1670070, + "normalized_name": "my personal hilopet" + }, + { + "appid": 1670080, + "normalized_name": "tiny room stories rift escape" + }, + { + "appid": 1670120, + "normalized_name": "turn the line!" + }, + { + "appid": 1670160, + "normalized_name": "ablight" + }, + { + "appid": 1670200, + "normalized_name": "觉梦:赛博" + }, + { + "appid": 1670210, + "normalized_name": "chibiclubtd" + }, + { + "appid": 1670240, + "normalized_name": "echo of ayllu" + }, + { + "appid": 1670250, + "normalized_name": "rainbow fuego" + }, + { + "appid": 1670310, + "normalized_name": "孑游列国" + }, + { + "appid": 1670440, + "normalized_name": "jungle house prologue" + }, + { + "appid": 1670530, + "normalized_name": "absentis" + }, + { + "appid": 1670610, + "normalized_name": "viking berserker" + }, + { + "appid": 1670620, + "normalized_name": "airhounds" + }, + { + "appid": 1670650, + "normalized_name": "espiocracy" + }, + { + "appid": 1670690, + "normalized_name": "eternity egg" + }, + { + "appid": 1670700, + "normalized_name": "influence inc." + }, + { + "appid": 1670780, + "normalized_name": "out of action" + }, + { + "appid": 1670810, + "normalized_name": "life not supported" + }, + { + "appid": 1670830, + "normalized_name": "gaucho and the grassland" + }, + { + "appid": 1670860, + "normalized_name": "cyberush" + }, + { + "appid": 1670870, + "normalized_name": "madison" + }, + { + "appid": 1670880, + "normalized_name": "devils gold" + }, + { + "appid": 1670890, + "normalized_name": "lamia's plan" + }, + { + "appid": 1670900, + "normalized_name": "contrast" + }, + { + "appid": 1670920, + "normalized_name": "political arena" + }, + { + "appid": 1670930, + "normalized_name": "last sun" + }, + { + "appid": 1670980, + "normalized_name": "warp soldier" + }, + { + "appid": 1671060, + "normalized_name": "ammo 666" + }, + { + "appid": 1671070, + "normalized_name": "家有汉服 之 我想开个汉服店 \\there are hanfu at home" + }, + { + "appid": 1671090, + "normalized_name": "ultra boat game!!!" + }, + { + "appid": 1671140, + "normalized_name": "royal riders" + }, + { + "appid": 1671180, + "normalized_name": "ricochet ranger" + }, + { + "appid": 1671200, + "normalized_name": "honkai impact 3rd" + }, + { + "appid": 1671210, + "normalized_name": "deltarune" + }, + { + "appid": 1671220, + "normalized_name": "g modeアーカイブス28 セパスチャンネル" + }, + { + "appid": 1671240, + "normalized_name": "death realm" + }, + { + "appid": 1671250, + "normalized_name": "hentai girls anime puzzle 18+" + }, + { + "appid": 1671280, + "normalized_name": "prognostic" + }, + { + "appid": 1671300, + "normalized_name": "锡安避难所 逃离" + }, + { + "appid": 1671310, + "normalized_name": "trash is fun" + }, + { + "appid": 1671330, + "normalized_name": "suspect enemy" + }, + { + "appid": 1671340, + "normalized_name": "fears to fathom home alone" + }, + { + "appid": 1671350, + "normalized_name": "幻想乡妖怪塔防 ~ touhou monster td" + }, + { + "appid": 1671360, + "normalized_name": "ereban shadow legacy" + }, + { + "appid": 1671390, + "normalized_name": "ancient dino runner" + }, + { + "appid": 1671400, + "normalized_name": "waifu covered 2 censored" + }, + { + "appid": 1671410, + "normalized_name": "somerville" + }, + { + "appid": 1671420, + "normalized_name": "hidden object detective holmes heirloom" + }, + { + "appid": 1671440, + "normalized_name": "cliché adventure" + }, + { + "appid": 1671460, + "normalized_name": "vanilla inspector" + }, + { + "appid": 1671480, + "normalized_name": "abriss build to destroy" + }, + { + "appid": 1671490, + "normalized_name": "merchant in dungeon" + }, + { + "appid": 1671510, + "normalized_name": "like an angel" + }, + { + "appid": 1671550, + "normalized_name": "[chilla's art] the night way home | 帰り道" + }, + { + "appid": 1671570, + "normalized_name": "out and about" + }, + { + "appid": 1671580, + "normalized_name": "flying fury" + }, + { + "appid": 1671590, + "normalized_name": "paladin's oath" + }, + { + "appid": 1671600, + "normalized_name": "captain bones prologue" + }, + { + "appid": 1671610, + "normalized_name": "跳蛋的故事" + }, + { + "appid": 1671630, + "normalized_name": "dwarves craft. mountain brothers" + }, + { + "appid": 1671640, + "normalized_name": "smash slug" + }, + { + "appid": 1671670, + "normalized_name": "splash road" + }, + { + "appid": 1671710, + "normalized_name": "golf for fun" + }, + { + "appid": 1671720, + "normalized_name": "athenian rhapsody" + }, + { + "appid": 1671740, + "normalized_name": "two falls (nishu takuatshina)" + }, + { + "appid": 1671760, + "normalized_name": "the glassfire amulet" + }, + { + "appid": 1671770, + "normalized_name": "star vortex" + }, + { + "appid": 1671810, + "normalized_name": "glimpse prologue" + }, + { + "appid": 1672110, + "normalized_name": "melting point" + }, + { + "appid": 1672140, + "normalized_name": "bot wars" + }, + { + "appid": 1672170, + "normalized_name": "footballer" + }, + { + "appid": 1672180, + "normalized_name": "dragon's wandering tavern" + }, + { + "appid": 1672200, + "normalized_name": "mystery trackers paxton creek avenger collector's" + }, + { + "appid": 1672230, + "normalized_name": "pogo rocket" + }, + { + "appid": 1672240, + "normalized_name": "surface lost tales collector's" + }, + { + "appid": 1672280, + "normalized_name": "donutis simulator" + }, + { + "appid": 1672310, + "normalized_name": "decarnation" + }, + { + "appid": 1672320, + "normalized_name": "fragile existence" + }, + { + "appid": 1672340, + "normalized_name": "street racer" + }, + { + "appid": 1672350, + "normalized_name": "first samurai" + }, + { + "appid": 1672360, + "normalized_name": "second samurai" + }, + { + "appid": 1672380, + "normalized_name": "即便世界末日也要妻妾满屋" + }, + { + "appid": 1672400, + "normalized_name": "the chatters show free version" + }, + { + "appid": 1672420, + "normalized_name": "pak sung bo wing chun" + }, + { + "appid": 1672440, + "normalized_name": "ヘブンズブレイザーオンライン" + }, + { + "appid": 1672460, + "normalized_name": "flying pudding" + }, + { + "appid": 1672470, + "normalized_name": "creepy pizza arcade" + }, + { + "appid": 1672480, + "normalized_name": "0 world td" + }, + { + "appid": 1672490, + "normalized_name": "i'm strongest legend" + }, + { + "appid": 1672500, + "normalized_name": "gundam breaker 4" + }, + { + "appid": 1672610, + "normalized_name": "book of adventum" + }, + { + "appid": 1672630, + "normalized_name": "mononoke slashdown" + }, + { + "appid": 1672670, + "normalized_name": "彷徨之街 the street of adrift" + }, + { + "appid": 1672680, + "normalized_name": "功夫足球队长" + }, + { + "appid": 1672690, + "normalized_name": "银河轨迹:星系制霸" + }, + { + "appid": 1672700, + "normalized_name": "tiny hunter" + }, + { + "appid": 1672740, + "normalized_name": "崩壊3rd" + }, + { + "appid": 1672780, + "normalized_name": "dice & dungeons" + }, + { + "appid": 1672790, + "normalized_name": "aske" + }, + { + "appid": 1672810, + "normalized_name": "mio memories in orbit" + }, + { + "appid": 1672830, + "normalized_name": "landcombat ren" + }, + { + "appid": 1672840, + "normalized_name": "nyctophobia devil unleashed" + }, + { + "appid": 1672880, + "normalized_name": "hookah cafe simulator" + }, + { + "appid": 1672920, + "normalized_name": "frankenstorm td prologue" + }, + { + "appid": 1672930, + "normalized_name": "梅斯特姆" + }, + { + "appid": 1672950, + "normalized_name": "thin ice" + }, + { + "appid": 1672960, + "normalized_name": "endorfire tower defense" + }, + { + "appid": 1672970, + "normalized_name": "minecraft dungeons" + }, + { + "appid": 1673000, + "normalized_name": "blood field | cỏ máu" + }, + { + "appid": 1673020, + "normalized_name": "all ashes and illusions" + }, + { + "appid": 1673040, + "normalized_name": "genderbend me! sayonara demon dong" + }, + { + "appid": 1673070, + "normalized_name": "the lost weld" + }, + { + "appid": 1673090, + "normalized_name": "vagabond" + }, + { + "appid": 1673130, + "normalized_name": "vainly" + }, + { + "appid": 1673140, + "normalized_name": "fear background" + }, + { + "appid": 1673180, + "normalized_name": "that role playing" + }, + { + "appid": 1673190, + "normalized_name": "巴哈姆特2 龍之新娘(bahamut2 dragon's bride)" + }, + { + "appid": 1673210, + "normalized_name": "steam next fest" + }, + { + "appid": 1673220, + "normalized_name": "meteor genocide" + }, + { + "appid": 1673230, + "normalized_name": "angle soccer" + }, + { + "appid": 1673300, + "normalized_name": "shiba mekuri 柴めくり" + }, + { + "appid": 1673310, + "normalized_name": "if the dream of star" + }, + { + "appid": 1673320, + "normalized_name": "survivor" + }, + { + "appid": 1673360, + "normalized_name": "my time alive" + }, + { + "appid": 1673370, + "normalized_name": "kanamono" + }, + { + "appid": 1673460, + "normalized_name": "swoon! earth escape" + }, + { + "appid": 1673470, + "normalized_name": "finding a prince the game" + }, + { + "appid": 1673490, + "normalized_name": "animosa" + }, + { + "appid": 1673520, + "normalized_name": "mini kart racing" + }, + { + "appid": 1673540, + "normalized_name": "jaunt" + }, + { + "appid": 1673550, + "normalized_name": "barking puzzle" + }, + { + "appid": 1673560, + "normalized_name": "murder on the marine express" + }, + { + "appid": 1673570, + "normalized_name": "game of love" + }, + { + "appid": 1673580, + "normalized_name": "battery out" + }, + { + "appid": 1673600, + "normalized_name": "game for anna" + }, + { + "appid": 1673620, + "normalized_name": "rhythmetallic" + }, + { + "appid": 1673630, + "normalized_name": "eternal evil" + }, + { + "appid": 1673650, + "normalized_name": "¡arre unicornio!" + }, + { + "appid": 1673670, + "normalized_name": "torins towers rise of heroes" + }, + { + "appid": 1673690, + "normalized_name": "ball way crush color tower 3d" + }, + { + "appid": 1673710, + "normalized_name": "high dimension" + }, + { + "appid": 1673720, + "normalized_name": "they're coming" + }, + { + "appid": 1673740, + "normalized_name": "destined to die" + }, + { + "appid": 1673780, + "normalized_name": "new meaning" + }, + { + "appid": 1673800, + "normalized_name": "egg of empire" + }, + { + "appid": 1673830, + "normalized_name": "cat leather jackets" + }, + { + "appid": 1673840, + "normalized_name": "the absolutely hilarious cat game" + }, + { + "appid": 1673850, + "normalized_name": "bright girl" + }, + { + "appid": 1673880, + "normalized_name": "spirit of arx" + }, + { + "appid": 1673920, + "normalized_name": "50 waves hero" + }, + { + "appid": 1673940, + "normalized_name": "bitgun" + }, + { + "appid": 1674010, + "normalized_name": "nin online" + }, + { + "appid": 1674020, + "normalized_name": "lost in red valley" + }, + { + "appid": 1674030, + "normalized_name": "custodian beginning of the end" + }, + { + "appid": 1674060, + "normalized_name": "the search for fran" + }, + { + "appid": 1674100, + "normalized_name": "subject 95" + }, + { + "appid": 1674120, + "normalized_name": "red rust" + }, + { + "appid": 1674150, + "normalized_name": "gromopoli" + }, + { + "appid": 1674160, + "normalized_name": "dehextd" + }, + { + "appid": 1674170, + "normalized_name": "sprocket" + }, + { + "appid": 1674180, + "normalized_name": "euryale's gambit" + }, + { + "appid": 1674200, + "normalized_name": "alaska gold fever" + }, + { + "appid": 1674240, + "normalized_name": "deliver us from evil (dufe)" + }, + { + "appid": 1674260, + "normalized_name": "keeper of the labyrinth" + }, + { + "appid": 1674270, + "normalized_name": "cyberfrags '69" + }, + { + "appid": 1674300, + "normalized_name": "ablockalypse" + }, + { + "appid": 1674320, + "normalized_name": "gran premio" + }, + { + "appid": 1674330, + "normalized_name": "family is nothing" + }, + { + "appid": 1674340, + "normalized_name": "仙侠世界2" + }, + { + "appid": 1674370, + "normalized_name": "战斗俄罗斯方块" + }, + { + "appid": 1674420, + "normalized_name": "brick biubiu" + }, + { + "appid": 1674440, + "normalized_name": "submarine war" + }, + { + "appid": 1674490, + "normalized_name": "only me" + }, + { + "appid": 1674510, + "normalized_name": "vacation adventures park ranger 7" + }, + { + "appid": 1674530, + "normalized_name": "feudal baron king's land" + }, + { + "appid": 1674590, + "normalized_name": "histera" + }, + { + "appid": 1674620, + "normalized_name": "construct vr the volumetric movie" + }, + { + "appid": 1674640, + "normalized_name": "xel" + }, + { + "appid": 1674660, + "normalized_name": "cards of the dead prologue" + }, + { + "appid": 1674670, + "normalized_name": "smoots golf first training" + }, + { + "appid": 1674710, + "normalized_name": "for another day" + }, + { + "appid": 1674720, + "normalized_name": "rage quit" + }, + { + "appid": 1674770, + "normalized_name": "faded grey" + }, + { + "appid": 1674780, + "normalized_name": "lone fungus" + }, + { + "appid": 1674810, + "normalized_name": "into the dangerous world i leapt" + }, + { + "appid": 1674820, + "normalized_name": "tfc the fertile crescent" + }, + { + "appid": 1674830, + "normalized_name": "victory at sea atlantic world war ii naval warfare" + }, + { + "appid": 1674840, + "normalized_name": "my universe puppies & kittens" + }, + { + "appid": 1674880, + "normalized_name": "lost kittens maze garden" + }, + { + "appid": 1674890, + "normalized_name": "选王之剑" + }, + { + "appid": 1674900, + "normalized_name": "train yard builder" + }, + { + "appid": 1674920, + "normalized_name": "sovereign syndicate" + }, + { + "appid": 1674960, + "normalized_name": "marble parkour 2 roll and roll" + }, + { + "appid": 1674980, + "normalized_name": "viking heroes 2" + }, + { + "appid": 1675000, + "normalized_name": "surmount a mountain climbing adventure" + }, + { + "appid": 1675020, + "normalized_name": "rpg squad battle" + }, + { + "appid": 1675030, + "normalized_name": "xsection" + }, + { + "appid": 1675040, + "normalized_name": "asfalia anger" + }, + { + "appid": 1675050, + "normalized_name": "iselin saga" + }, + { + "appid": 1675070, + "normalized_name": "smetanka" + }, + { + "appid": 1675080, + "normalized_name": "barbarian kingdom" + }, + { + "appid": 1675090, + "normalized_name": "car physics simulator" + }, + { + "appid": 1675100, + "normalized_name": "ae86 eurobeat drift" + }, + { + "appid": 1675110, + "normalized_name": "my downtown" + }, + { + "appid": 1675130, + "normalized_name": "domum" + }, + { + "appid": 1675140, + "normalized_name": "reminiscence" + }, + { + "appid": 1675150, + "normalized_name": "「3」" + }, + { + "appid": 1675170, + "normalized_name": "vrastrosmash" + }, + { + "appid": 1675260, + "normalized_name": "among the trolls" + }, + { + "appid": 1675270, + "normalized_name": "hanoi puzzles flip match" + }, + { + "appid": 1675300, + "normalized_name": "margo the bean adventure" + }, + { + "appid": 1675310, + "normalized_name": "beyond the nightmares" + }, + { + "appid": 1675320, + "normalized_name": "everblood arena" + }, + { + "appid": 1675330, + "normalized_name": "the bingo room" + }, + { + "appid": 1675410, + "normalized_name": "there may be ninety nine of us but we have to win in ninety nine turns!" + }, + { + "appid": 1675430, + "normalized_name": "kensei" + }, + { + "appid": 1675440, + "normalized_name": "moxie's lemon" + }, + { + "appid": 1675480, + "normalized_name": "advent crossroad" + }, + { + "appid": 1675500, + "normalized_name": "veronica's body" + }, + { + "appid": 1675510, + "normalized_name": "梦回三国" + }, + { + "appid": 1675520, + "normalized_name": "spirit wolves" + }, + { + "appid": 1675530, + "normalized_name": "turbeton" + }, + { + "appid": 1675600, + "normalized_name": "holt" + }, + { + "appid": 1675610, + "normalized_name": "immense threat" + }, + { + "appid": 1675620, + "normalized_name": "last light" + }, + { + "appid": 1675640, + "normalized_name": "planet b24" + }, + { + "appid": 1675670, + "normalized_name": "priest simulator heavy duty" + }, + { + "appid": 1675680, + "normalized_name": "instinction" + }, + { + "appid": 1675690, + "normalized_name": "woodheart" + }, + { + "appid": 1675760, + "normalized_name": "blipz" + }, + { + "appid": 1675830, + "normalized_name": "1000xresist" + }, + { + "appid": 1675880, + "normalized_name": "unnatural land of dead" + }, + { + "appid": 1675900, + "normalized_name": "warlander" + }, + { + "appid": 1675920, + "normalized_name": "jewel match solitaire summertime" + }, + { + "appid": 1675940, + "normalized_name": "江湖行" + }, + { + "appid": 1676050, + "normalized_name": "beyond the evil" + }, + { + "appid": 1676060, + "normalized_name": "beta escape" + }, + { + "appid": 1676090, + "normalized_name": "destroy the shogun" + }, + { + "appid": 1676130, + "normalized_name": "deadlink" + }, + { + "appid": 1676150, + "normalized_name": "endless boss fight" + }, + { + "appid": 1676180, + "normalized_name": "pablo let's go bar" + }, + { + "appid": 1676200, + "normalized_name": "underwater" + }, + { + "appid": 1676260, + "normalized_name": "calmed by the dark leviathan" + }, + { + "appid": 1676280, + "normalized_name": "metasweeper" + }, + { + "appid": 1676320, + "normalized_name": "a week in the office under the table" + }, + { + "appid": 1676330, + "normalized_name": "cyber girl 1.0 booting" + }, + { + "appid": 1676340, + "normalized_name": "vampire revenge" + }, + { + "appid": 1676350, + "normalized_name": "摆地摊" + }, + { + "appid": 1676360, + "normalized_name": "immersion sector" + }, + { + "appid": 1676380, + "normalized_name": "kingdom of atham crown of the champions" + }, + { + "appid": 1676390, + "normalized_name": "take town" + }, + { + "appid": 1676420, + "normalized_name": "blood labs" + }, + { + "appid": 1676440, + "normalized_name": "tackle girl" + }, + { + "appid": 1676450, + "normalized_name": "path of vidya" + }, + { + "appid": 1676520, + "normalized_name": "hidden expedition a king's line collector's" + }, + { + "appid": 1676530, + "normalized_name": "hentai sushi jigsaw" + }, + { + "appid": 1676550, + "normalized_name": "dull grey" + }, + { + "appid": 1676560, + "normalized_name": "redux" + }, + { + "appid": 1676570, + "normalized_name": "kosmo laika space and beyond" + }, + { + "appid": 1676580, + "normalized_name": "my stepmom is a futanari" + }, + { + "appid": 1676590, + "normalized_name": "bullet heat" + }, + { + "appid": 1676600, + "normalized_name": "末日航路 the termination" + }, + { + "appid": 1676610, + "normalized_name": "the runemaster's diary" + }, + { + "appid": 1676620, + "normalized_name": "kellogg's gut bacteria reef" + }, + { + "appid": 1676660, + "normalized_name": "relicborn" + }, + { + "appid": 1676670, + "normalized_name": "东方有顶天梦 ~ the top of the dream" + }, + { + "appid": 1676700, + "normalized_name": "smoots summer games first training" + }, + { + "appid": 1676710, + "normalized_name": "robogal" + }, + { + "appid": 1676720, + "normalized_name": "white eyes" + }, + { + "appid": 1676740, + "normalized_name": "animus revenant" + }, + { + "appid": 1676770, + "normalized_name": "stone guardian" + }, + { + "appid": 1676840, + "normalized_name": "for the king ii" + }, + { + "appid": 1676860, + "normalized_name": "torschützenkönig" + }, + { + "appid": 1676870, + "normalized_name": "eco hole" + }, + { + "appid": 1676880, + "normalized_name": "契灵之约" + }, + { + "appid": 1676910, + "normalized_name": "onde" + }, + { + "appid": 1676920, + "normalized_name": "save the octo" + }, + { + "appid": 1676950, + "normalized_name": "fire rescue squad" + }, + { + "appid": 1676970, + "normalized_name": "parasight chlorophyll worms" + }, + { + "appid": 1676990, + "normalized_name": "musiclabelmanager 2k21" + }, + { + "appid": 1677010, + "normalized_name": "wood & weather" + }, + { + "appid": 1677020, + "normalized_name": "magirune 2" + }, + { + "appid": 1677080, + "normalized_name": "asteroid five" + }, + { + "appid": 1677090, + "normalized_name": "godless" + }, + { + "appid": 1677100, + "normalized_name": "ailia" + }, + { + "appid": 1677110, + "normalized_name": "lightyear frontier" + }, + { + "appid": 1677130, + "normalized_name": "colordip" + }, + { + "appid": 1677140, + "normalized_name": "cuccchi" + }, + { + "appid": 1677180, + "normalized_name": "neko hacker plus" + }, + { + "appid": 1677190, + "normalized_name": "twelve floors below." + }, + { + "appid": 1677220, + "normalized_name": "onlygame athlete girls" + }, + { + "appid": 1677240, + "normalized_name": "str!ve" + }, + { + "appid": 1677250, + "normalized_name": "tristan cole's pro driver" + }, + { + "appid": 1677260, + "normalized_name": "oatmeal" + }, + { + "appid": 1677280, + "normalized_name": "company of heroes 3" + }, + { + "appid": 1677300, + "normalized_name": "gemstone defense" + }, + { + "appid": 1677310, + "normalized_name": "in stars and time" + }, + { + "appid": 1677350, + "normalized_name": "ea sports pga tour" + }, + { + "appid": 1677360, + "normalized_name": "satryn deluxe" + }, + { + "appid": 1677380, + "normalized_name": "astronium" + }, + { + "appid": 1677400, + "normalized_name": "black lotus motel" + }, + { + "appid": 1677410, + "normalized_name": "romeow to the cracked mars" + }, + { + "appid": 1677430, + "normalized_name": "gabriel's worlds the adventure" + }, + { + "appid": 1677450, + "normalized_name": "in search of..." + }, + { + "appid": 1677480, + "normalized_name": "coral quest" + }, + { + "appid": 1677490, + "normalized_name": "청춘향전 cheongchunhyang jeon" + }, + { + "appid": 1677500, + "normalized_name": "another dungeon game" + }, + { + "appid": 1677510, + "normalized_name": "knotfiction" + }, + { + "appid": 1677520, + "normalized_name": "domino sandbox" + }, + { + "appid": 1677570, + "normalized_name": "vacuum pilot" + }, + { + "appid": 1677580, + "normalized_name": "my master's a moron" + }, + { + "appid": 1677590, + "normalized_name": "poison noir desire time & gangsters" + }, + { + "appid": 1677620, + "normalized_name": "turbot" + }, + { + "appid": 1677630, + "normalized_name": "in space no one can hear you clean" + }, + { + "appid": 1677650, + "normalized_name": "cubecube" + }, + { + "appid": 1677690, + "normalized_name": "禁区之外(the match fix)" + }, + { + "appid": 1677720, + "normalized_name": "breadskate" + }, + { + "appid": 1677730, + "normalized_name": "beauty agent" + }, + { + "appid": 1677740, + "normalized_name": "stumble guys" + }, + { + "appid": 1677770, + "normalized_name": "the case of the golden idol" + }, + { + "appid": 1677800, + "normalized_name": "tiger trio's tasty travels" + }, + { + "appid": 1677840, + "normalized_name": "color your world" + }, + { + "appid": 1677870, + "normalized_name": "gefragt gejagt das spiel" + }, + { + "appid": 1677890, + "normalized_name": "soul light" + }, + { + "appid": 1677900, + "normalized_name": "relentless frontier" + }, + { + "appid": 1677920, + "normalized_name": "mana go round" + }, + { + "appid": 1677970, + "normalized_name": "railroad corporation 2" + }, + { + "appid": 1677980, + "normalized_name": "unmatched digital" + }, + { + "appid": 1678020, + "normalized_name": "through the frame" + }, + { + "appid": 1678030, + "normalized_name": "burn me alive" + }, + { + "appid": 1678040, + "normalized_name": "njorun's will" + }, + { + "appid": 1678050, + "normalized_name": "runic relay the trials" + }, + { + "appid": 1678060, + "normalized_name": "tactical vanguard saga" + }, + { + "appid": 1678090, + "normalized_name": "dark home" + }, + { + "appid": 1678100, + "normalized_name": "long tail" + }, + { + "appid": 1678140, + "normalized_name": "shades of sakura" + }, + { + "appid": 1678150, + "normalized_name": "world of shooting" + }, + { + "appid": 1678250, + "normalized_name": "old future post apocalyptic times" + }, + { + "appid": 1678280, + "normalized_name": "black hole simulation with python" + }, + { + "appid": 1678320, + "normalized_name": "heat death" + }, + { + "appid": 1678340, + "normalized_name": "side effect" + }, + { + "appid": 1678350, + "normalized_name": "exocide" + }, + { + "appid": 1678360, + "normalized_name": "theblackhouse" + }, + { + "appid": 1678410, + "normalized_name": "they all come back" + }, + { + "appid": 1678420, + "normalized_name": "blade runner enhanced" + }, + { + "appid": 1678430, + "normalized_name": "powerslave exhumed" + }, + { + "appid": 1678440, + "normalized_name": "cmd error" + }, + { + "appid": 1678450, + "normalized_name": "stoopid puzzle game" + }, + { + "appid": 1678510, + "normalized_name": "my story" + }, + { + "appid": 1678520, + "normalized_name": "rent's due the game" + }, + { + "appid": 1678550, + "normalized_name": "summer mission" + }, + { + "appid": 1678570, + "normalized_name": "farwoods" + }, + { + "appid": 1678590, + "normalized_name": "missing love" + }, + { + "appid": 1678630, + "normalized_name": "childhood gone shadowed wand" + }, + { + "appid": 1678650, + "normalized_name": "box knight" + }, + { + "appid": 1678700, + "normalized_name": "carsfuckingdragons" + }, + { + "appid": 1678710, + "normalized_name": "project venus.rp" + }, + { + "appid": 1678740, + "normalized_name": "soccer cup solitaire" + }, + { + "appid": 1678750, + "normalized_name": "saligia" + }, + { + "appid": 1678760, + "normalized_name": "arcano the trickery" + }, + { + "appid": 1678770, + "normalized_name": "ecstasy elf shotenken naruru's sexy adventure" + }, + { + "appid": 1678780, + "normalized_name": "counter terrorism ops" + }, + { + "appid": 1678790, + "normalized_name": "erotic jigsaw puzzle summer" + }, + { + "appid": 1678810, + "normalized_name": "glorious" + }, + { + "appid": 1678830, + "normalized_name": "your mom" + }, + { + "appid": 1678860, + "normalized_name": "tv kid" + }, + { + "appid": 1678880, + "normalized_name": "searing" + }, + { + "appid": 1678910, + "normalized_name": "the nightmare journey" + }, + { + "appid": 1678930, + "normalized_name": "ultimo soccer udc" + }, + { + "appid": 1678940, + "normalized_name": "neg the threefold cord" + }, + { + "appid": 1678950, + "normalized_name": "panda city" + }, + { + "appid": 1678960, + "normalized_name": "officescape" + }, + { + "appid": 1678980, + "normalized_name": "reef rumble" + }, + { + "appid": 1679000, + "normalized_name": "alterborn" + }, + { + "appid": 1679010, + "normalized_name": "blockpost mobile" + }, + { + "appid": 1679060, + "normalized_name": "paper nomad" + }, + { + "appid": 1679070, + "normalized_name": "emotion" + }, + { + "appid": 1679090, + "normalized_name": "collapse of magic" + }, + { + "appid": 1679120, + "normalized_name": "boog adventure king zecto curse" + }, + { + "appid": 1679130, + "normalized_name": "spinner breaker" + }, + { + "appid": 1679170, + "normalized_name": "cold start the callisto" + }, + { + "appid": 1679180, + "normalized_name": "memories" + }, + { + "appid": 1679200, + "normalized_name": "bridgefix 2=3 1" + }, + { + "appid": 1679210, + "normalized_name": "the spirit and the mouse" + }, + { + "appid": 1679220, + "normalized_name": "portal dungeon" + }, + { + "appid": 1679270, + "normalized_name": "balls out of control" + }, + { + "appid": 1679290, + "normalized_name": "fire & maneuver" + }, + { + "appid": 1679320, + "normalized_name": "100 hidden cats 2" + }, + { + "appid": 1679330, + "normalized_name": "heroes of yore" + }, + { + "appid": 1679340, + "normalized_name": "shanghai1920" + }, + { + "appid": 1679360, + "normalized_name": "ctrl phreak" + }, + { + "appid": 1679410, + "normalized_name": "labyrinths of the world the game of minds collector's" + }, + { + "appid": 1679470, + "normalized_name": "royal wars farm td" + }, + { + "appid": 1679480, + "normalized_name": "edibles" + }, + { + "appid": 1679490, + "normalized_name": "sphere arena" + }, + { + "appid": 1679510, + "normalized_name": "plushie from the sky" + }, + { + "appid": 1679530, + "normalized_name": "syde rugby league simulator" + }, + { + "appid": 1679540, + "normalized_name": "gravity flip" + }, + { + "appid": 1679590, + "normalized_name": "zpellcatz pumpkin prologue" + }, + { + "appid": 1679680, + "normalized_name": "word attack" + }, + { + "appid": 1679690, + "normalized_name": "the secret blue forest" + }, + { + "appid": 1679700, + "normalized_name": "suhoshin" + }, + { + "appid": 1679720, + "normalized_name": "sinbad" + }, + { + "appid": 1679730, + "normalized_name": "筠宝大冒险" + }, + { + "appid": 1679740, + "normalized_name": "once in flowerlake" + }, + { + "appid": 1679770, + "normalized_name": "tank guards" + }, + { + "appid": 1679790, + "normalized_name": "galactic frontier" + }, + { + "appid": 1679800, + "normalized_name": "get tanked!" + }, + { + "appid": 1679820, + "normalized_name": "skybinder" + }, + { + "appid": 1679830, + "normalized_name": "chernobyl inferno" + }, + { + "appid": 1679840, + "normalized_name": "birb race" + }, + { + "appid": 1679870, + "normalized_name": "arcana heat and cold. season 2" + }, + { + "appid": 1679880, + "normalized_name": "gedaria" + }, + { + "appid": 1679890, + "normalized_name": "city country" + }, + { + "appid": 1679910, + "normalized_name": "blow & fly" + }, + { + "appid": 1679930, + "normalized_name": "mini golf worlds vr" + }, + { + "appid": 1679960, + "normalized_name": "sapling" + }, + { + "appid": 1679990, + "normalized_name": "hentai sexy" + }, + { + "appid": 1680000, + "normalized_name": "rewrite+" + }, + { + "appid": 1680010, + "normalized_name": "princesscliffhouse(ver0.1)" + }, + { + "appid": 1680020, + "normalized_name": "巫女契约" + }, + { + "appid": 1680050, + "normalized_name": "九界:黑帝斗者" + }, + { + "appid": 1680070, + "normalized_name": "casual golf" + }, + { + "appid": 1680250, + "normalized_name": "craft craft craft!" + }, + { + "appid": 1680260, + "normalized_name": "dead end detective the sixpence strangler" + }, + { + "appid": 1680270, + "normalized_name": "saberstyle" + }, + { + "appid": 1680290, + "normalized_name": "chromatching" + }, + { + "appid": 1680300, + "normalized_name": "spades" + }, + { + "appid": 1680310, + "normalized_name": "cubiverse" + }, + { + "appid": 1680340, + "normalized_name": "succubus with guns" + }, + { + "appid": 1680370, + "normalized_name": "gunning over it!" + }, + { + "appid": 1680380, + "normalized_name": "oozing islands" + }, + { + "appid": 1680390, + "normalized_name": "shooter for dummies" + }, + { + "appid": 1680400, + "normalized_name": "argus panoptes" + }, + { + "appid": 1680440, + "normalized_name": "sin cay" + }, + { + "appid": 1680500, + "normalized_name": "roar of revenge" + }, + { + "appid": 1680530, + "normalized_name": "3am" + }, + { + "appid": 1680540, + "normalized_name": "mesozoikum" + }, + { + "appid": 1680550, + "normalized_name": "impact point" + }, + { + "appid": 1680560, + "normalized_name": "sigurat" + }, + { + "appid": 1680580, + "normalized_name": "hauntd" + }, + { + "appid": 1680620, + "normalized_name": "tree of mu" + }, + { + "appid": 1680630, + "normalized_name": "alignment zero" + }, + { + "appid": 1680650, + "normalized_name": "astonishing baseball manager" + }, + { + "appid": 1680660, + "normalized_name": "synth run" + }, + { + "appid": 1680670, + "normalized_name": "mango mischief" + }, + { + "appid": 1680680, + "normalized_name": "galactic merchant" + }, + { + "appid": 1680690, + "normalized_name": "castle of delights" + }, + { + "appid": 1680700, + "normalized_name": "purgo box" + }, + { + "appid": 1680770, + "normalized_name": "the grass" + }, + { + "appid": 1680780, + "normalized_name": "big boy boxing" + }, + { + "appid": 1680790, + "normalized_name": "boom company" + }, + { + "appid": 1680800, + "normalized_name": "biwar legend of dragon slayer" + }, + { + "appid": 1680810, + "normalized_name": "i have no weapons" + }, + { + "appid": 1680870, + "normalized_name": "卡纳!卡呐?一起来学假名吧!" + }, + { + "appid": 1680880, + "normalized_name": "forspoken" + }, + { + "appid": 1680890, + "normalized_name": "coldage" + }, + { + "appid": 1680900, + "normalized_name": "escape from nowhere" + }, + { + "appid": 1680910, + "normalized_name": "golf together" + }, + { + "appid": 1680980, + "normalized_name": "celestine" + }, + { + "appid": 1680990, + "normalized_name": "sexy heroine! part 3" + }, + { + "appid": 1681010, + "normalized_name": "go! go! pogogirl" + }, + { + "appid": 1681020, + "normalized_name": "space storeship スペースストアシップ" + }, + { + "appid": 1681040, + "normalized_name": "murder diaries 2" + }, + { + "appid": 1681060, + "normalized_name": "exogate initiative" + }, + { + "appid": 1681080, + "normalized_name": "new supper banana!" + }, + { + "appid": 1681110, + "normalized_name": "drunken nuke'em" + }, + { + "appid": 1681120, + "normalized_name": "dark side of fate" + }, + { + "appid": 1681140, + "normalized_name": "pagan age" + }, + { + "appid": 1681160, + "normalized_name": "piratopia" + }, + { + "appid": 1681290, + "normalized_name": "full moon" + }, + { + "appid": 1681310, + "normalized_name": "in your books" + }, + { + "appid": 1681320, + "normalized_name": "the will of our fathers" + }, + { + "appid": 1681330, + "normalized_name": "runeroots" + }, + { + "appid": 1681350, + "normalized_name": "时空梦魇ⅰ代号608" + }, + { + "appid": 1681360, + "normalized_name": "gore. prologue." + }, + { + "appid": 1681380, + "normalized_name": "haos" + }, + { + "appid": 1681400, + "normalized_name": "magic adventures" + }, + { + "appid": 1681430, + "normalized_name": "robocop rogue city" + }, + { + "appid": 1681480, + "normalized_name": "the repairing mantis" + }, + { + "appid": 1681490, + "normalized_name": "pandora wild origins" + }, + { + "appid": 1681510, + "normalized_name": "trenches world war 1 horror survival game" + }, + { + "appid": 1681520, + "normalized_name": "fifefer island terrena's adventure" + }, + { + "appid": 1681540, + "normalized_name": "latarnix puzzle" + }, + { + "appid": 1681550, + "normalized_name": "sealer of dungeons" + }, + { + "appid": 1681560, + "normalized_name": "hungry bunny" + }, + { + "appid": 1681590, + "normalized_name": "luminus" + }, + { + "appid": 1681600, + "normalized_name": "cornucopia" + }, + { + "appid": 1681620, + "normalized_name": "mines & dragons" + }, + { + "appid": 1681640, + "normalized_name": "politician simulator" + }, + { + "appid": 1681670, + "normalized_name": "人妻痴汉电车" + }, + { + "appid": 1681720, + "normalized_name": "my otaku academia" + }, + { + "appid": 1681730, + "normalized_name": "joint war [beta]" + }, + { + "appid": 1681760, + "normalized_name": "mech mind ninja" + }, + { + "appid": 1681810, + "normalized_name": "umbra journey home" + }, + { + "appid": 1681840, + "normalized_name": "abalon roguelike tactics ccg" + }, + { + "appid": 1681870, + "normalized_name": "cobra kai 2 dojos rising" + }, + { + "appid": 1681880, + "normalized_name": "nhra championship drag racing speed for all" + }, + { + "appid": 1681890, + "normalized_name": "little league world series baseball 2022" + }, + { + "appid": 1681900, + "normalized_name": "the long journey to farewell" + }, + { + "appid": 1681920, + "normalized_name": "medieval arms" + }, + { + "appid": 1681970, + "normalized_name": "神都不良探 underdog detective" + }, + { + "appid": 1681990, + "normalized_name": "ninja usagimaru two tails of adventure" + }, + { + "appid": 1682000, + "normalized_name": "blockworld" + }, + { + "appid": 1682020, + "normalized_name": "deliria" + }, + { + "appid": 1682030, + "normalized_name": "dire vengeance" + }, + { + "appid": 1682040, + "normalized_name": "captain edgar giza" + }, + { + "appid": 1682050, + "normalized_name": "prophunter" + }, + { + "appid": 1682060, + "normalized_name": "warriors of the nile 2" + }, + { + "appid": 1682070, + "normalized_name": "ball heroes" + }, + { + "appid": 1682120, + "normalized_name": "welcome to dreamville" + }, + { + "appid": 1682150, + "normalized_name": "supreme os" + }, + { + "appid": 1682200, + "normalized_name": "bjorn" + }, + { + "appid": 1682210, + "normalized_name": "you can't finish" + }, + { + "appid": 1682260, + "normalized_name": "black sheep" + }, + { + "appid": 1682290, + "normalized_name": "wéko the mask gatherer" + }, + { + "appid": 1682300, + "normalized_name": "flirtatious fallen angels" + }, + { + "appid": 1682320, + "normalized_name": "barn finders vr" + }, + { + "appid": 1682330, + "normalized_name": "the dead await prologue" + }, + { + "appid": 1682340, + "normalized_name": "plane accident" + }, + { + "appid": 1682350, + "normalized_name": "save yourself!" + }, + { + "appid": 1682380, + "normalized_name": "survive the hill" + }, + { + "appid": 1682400, + "normalized_name": "the strange story of brian fisher chapter 2" + }, + { + "appid": 1682410, + "normalized_name": "寂寞神明的心愿手记" + }, + { + "appid": 1682420, + "normalized_name": "creeping darkness" + }, + { + "appid": 1682450, + "normalized_name": "mimir's recruit" + }, + { + "appid": 1682470, + "normalized_name": "nymar arisen" + }, + { + "appid": 1682490, + "normalized_name": "slender threads prologue" + }, + { + "appid": 1682520, + "normalized_name": "art of fury virtual gallery" + }, + { + "appid": 1682530, + "normalized_name": "exotic" + }, + { + "appid": 1682550, + "normalized_name": "lost and found what if i come and find it" + }, + { + "appid": 1682580, + "normalized_name": "smithy wars" + }, + { + "appid": 1682600, + "normalized_name": "rolling car" + }, + { + "appid": 1682610, + "normalized_name": "tank zombie smasher" + }, + { + "appid": 1682620, + "normalized_name": "ascent" + }, + { + "appid": 1682670, + "normalized_name": "hungaz epic minigames" + }, + { + "appid": 1682690, + "normalized_name": "awkward 2 the party game of savage secrets" + }, + { + "appid": 1682750, + "normalized_name": "roguekiniz" + }, + { + "appid": 1682790, + "normalized_name": "blastfort" + }, + { + "appid": 1682820, + "normalized_name": "sheba a new dawn" + }, + { + "appid": 1682840, + "normalized_name": "evorales" + }, + { + "appid": 1682870, + "normalized_name": "fish heads" + }, + { + "appid": 1682920, + "normalized_name": "song of life" + }, + { + "appid": 1682950, + "normalized_name": "dream mirror" + }, + { + "appid": 1682960, + "normalized_name": "agora" + }, + { + "appid": 1682970, + "normalized_name": "uncrashed fpv drone simulator" + }, + { + "appid": 1682980, + "normalized_name": "azurael’s circle chapter 5" + }, + { + "appid": 1682990, + "normalized_name": "piffsy" + }, + { + "appid": 1683000, + "normalized_name": "geometric sniper z" + }, + { + "appid": 1683010, + "normalized_name": "cat from the box" + }, + { + "appid": 1683020, + "normalized_name": "haunted hotel the x collector's" + }, + { + "appid": 1683050, + "normalized_name": "xenomare" + }, + { + "appid": 1683060, + "normalized_name": "slime evo" + }, + { + "appid": 1683070, + "normalized_name": "3 o'clock horror" + }, + { + "appid": 1683100, + "normalized_name": "ultra age" + }, + { + "appid": 1683140, + "normalized_name": "anima forest" + }, + { + "appid": 1683150, + "normalized_name": "railroader" + }, + { + "appid": 1683170, + "normalized_name": "the forest of love" + }, + { + "appid": 1683200, + "normalized_name": "dark witch music episode rudymical" + }, + { + "appid": 1683240, + "normalized_name": "misha adventures" + }, + { + "appid": 1683270, + "normalized_name": "recall empty wishes" + }, + { + "appid": 1683290, + "normalized_name": "666 masks" + }, + { + "appid": 1683300, + "normalized_name": "cubepuzzle" + }, + { + "appid": 1683310, + "normalized_name": "heartbeat regret" + }, + { + "appid": 1683320, + "normalized_name": "power & revolution 2021" + }, + { + "appid": 1683340, + "normalized_name": "kayak vr mirage" + }, + { + "appid": 1683370, + "normalized_name": "blocky dungeon" + }, + { + "appid": 1683380, + "normalized_name": "噗噗的冒险乐园" + }, + { + "appid": 1683390, + "normalized_name": "shifter" + }, + { + "appid": 1683400, + "normalized_name": "the chronicles wasteland assault" + }, + { + "appid": 1683410, + "normalized_name": "hentai jigsaw girls" + }, + { + "appid": 1683420, + "normalized_name": "strategic mind spirit of liberty prologue 1939" + }, + { + "appid": 1683430, + "normalized_name": "ghost marriage matchmaking" + }, + { + "appid": 1683450, + "normalized_name": "lethal dose" + }, + { + "appid": 1683500, + "normalized_name": "dandelion" + }, + { + "appid": 1683510, + "normalized_name": "runes of avalon 2" + }, + { + "appid": 1683540, + "normalized_name": "unknown path" + }, + { + "appid": 1683560, + "normalized_name": "ravager" + }, + { + "appid": 1683570, + "normalized_name": "samsara" + }, + { + "appid": 1683580, + "normalized_name": "space dance" + }, + { + "appid": 1683590, + "normalized_name": "hustle game" + }, + { + "appid": 1683600, + "normalized_name": "piggy disco" + }, + { + "appid": 1683610, + "normalized_name": "profectus" + }, + { + "appid": 1683620, + "normalized_name": "plan b from outer space a bavarian odyssey" + }, + { + "appid": 1683630, + "normalized_name": "oval racer series sandbox" + }, + { + "appid": 1683640, + "normalized_name": "warriors & mages" + }, + { + "appid": 1683650, + "normalized_name": "you better run" + }, + { + "appid": 1683670, + "normalized_name": "robot labs remake" + }, + { + "appid": 1683680, + "normalized_name": "longphort" + }, + { + "appid": 1683690, + "normalized_name": "skiing vr" + }, + { + "appid": 1683710, + "normalized_name": "get your sheep together" + }, + { + "appid": 1683720, + "normalized_name": "hungry fish" + }, + { + "appid": 1683730, + "normalized_name": "welcome to pinehills" + }, + { + "appid": 1683750, + "normalized_name": "whimsical heroes" + }, + { + "appid": 1683790, + "normalized_name": "deliverance" + }, + { + "appid": 1683800, + "normalized_name": "robot daycare" + }, + { + "appid": 1683820, + "normalized_name": "board game engine" + }, + { + "appid": 1683860, + "normalized_name": "eronoctosis put yourself together" + }, + { + "appid": 1683870, + "normalized_name": "crystalreach islands" + }, + { + "appid": 1683890, + "normalized_name": "retrold" + }, + { + "appid": 1683900, + "normalized_name": "hunter girls" + }, + { + "appid": 1683910, + "normalized_name": "cyber defense" + }, + { + "appid": 1683950, + "normalized_name": "the witch's sexual prison" + }, + { + "appid": 1683960, + "normalized_name": "glisten to your heart the courage within you" + }, + { + "appid": 1683970, + "normalized_name": "misguidead" + }, + { + "appid": 1683990, + "normalized_name": "babyl crypt of corruption" + }, + { + "appid": 1684010, + "normalized_name": "sail" + }, + { + "appid": 1684040, + "normalized_name": "intercept 2" + }, + { + "appid": 1684050, + "normalized_name": "scary tales" + }, + { + "appid": 1684080, + "normalized_name": "toroom" + }, + { + "appid": 1684100, + "normalized_name": "幻恋の夜宴 ハルーシサノバこいし ~ halluci sabbat of koishi" + }, + { + "appid": 1684110, + "normalized_name": "field of arms tactics" + }, + { + "appid": 1684130, + "normalized_name": "void's ballad" + }, + { + "appid": 1684170, + "normalized_name": "fetish locator week two" + }, + { + "appid": 1684210, + "normalized_name": "horror villa 恐怖撤锁" + }, + { + "appid": 1684220, + "normalized_name": "sedomairi / せどまいり" + }, + { + "appid": 1684230, + "normalized_name": "arcaduis" + }, + { + "appid": 1684240, + "normalized_name": "metal faith" + }, + { + "appid": 1684250, + "normalized_name": "replanted" + }, + { + "appid": 1684270, + "normalized_name": "it's a wrap!" + }, + { + "appid": 1684290, + "normalized_name": "mistmoon falls" + }, + { + "appid": 1684330, + "normalized_name": "vgl imperative" + }, + { + "appid": 1684350, + "normalized_name": "the thaumaturge" + }, + { + "appid": 1684370, + "normalized_name": "drug grower simulator" + }, + { + "appid": 1684400, + "normalized_name": "best month ever!" + }, + { + "appid": 1684410, + "normalized_name": "seal world" + }, + { + "appid": 1684420, + "normalized_name": "nym path of the skycaster" + }, + { + "appid": 1684440, + "normalized_name": "malyshka" + }, + { + "appid": 1684460, + "normalized_name": "hollowsk 1999 3d" + }, + { + "appid": 1684480, + "normalized_name": "atelier agnes" + }, + { + "appid": 1684510, + "normalized_name": "the plane effect prologue" + }, + { + "appid": 1684520, + "normalized_name": "glory of the colosseum" + }, + { + "appid": 1684530, + "normalized_name": "100 doors escape from work" + }, + { + "appid": 1684560, + "normalized_name": "urban fantasy vampires vs werewolves" + }, + { + "appid": 1684610, + "normalized_name": "hentai girl clicker" + }, + { + "appid": 1684650, + "normalized_name": "pareidolia" + }, + { + "appid": 1684660, + "normalized_name": "ナツノカナタ" + }, + { + "appid": 1684670, + "normalized_name": "best forklift operator" + }, + { + "appid": 1684710, + "normalized_name": "cat interstellar recast" + }, + { + "appid": 1684720, + "normalized_name": "hitler hates anime" + }, + { + "appid": 1684750, + "normalized_name": "i deserve a happy ending" + }, + { + "appid": 1684760, + "normalized_name": "two clusters cold haven" + }, + { + "appid": 1684780, + "normalized_name": "hero zex" + }, + { + "appid": 1684820, + "normalized_name": "peggo!" + }, + { + "appid": 1684830, + "normalized_name": "meow'n'dash" + }, + { + "appid": 1684840, + "normalized_name": "hot tub simulator" + }, + { + "appid": 1684860, + "normalized_name": "click quest 3d" + }, + { + "appid": 1684870, + "normalized_name": "lifing" + }, + { + "appid": 1684880, + "normalized_name": "reset" + }, + { + "appid": 1684930, + "normalized_name": "cultic" + }, + { + "appid": 1684990, + "normalized_name": "viaje al centro de la tierra versión extendida" + }, + { + "appid": 1685000, + "normalized_name": "topo mix game" + }, + { + "appid": 1685010, + "normalized_name": "antithesis" + }, + { + "appid": 1685260, + "normalized_name": "asdivine saga" + }, + { + "appid": 1685270, + "normalized_name": "resonant" + }, + { + "appid": 1685310, + "normalized_name": "the wayward realms" + }, + { + "appid": 1685460, + "normalized_name": "a train all aboard! tourism" + }, + { + "appid": 1685500, + "normalized_name": "简单的跑酷(simple parkour)" + }, + { + "appid": 1685510, + "normalized_name": "couch combat" + }, + { + "appid": 1685520, + "normalized_name": "hyper treasure macaronic labyrinth" + }, + { + "appid": 1685550, + "normalized_name": "zombardment" + }, + { + "appid": 1685590, + "normalized_name": "netspace saga ep.1" + }, + { + "appid": 1685610, + "normalized_name": "jigsaw frame relax" + }, + { + "appid": 1685620, + "normalized_name": "it's mealtime!" + }, + { + "appid": 1685630, + "normalized_name": "浊之铃" + }, + { + "appid": 1685660, + "normalized_name": "保护蛋蛋" + }, + { + "appid": 1685730, + "normalized_name": "cynthia hidden in the moonshadow" + }, + { + "appid": 1685740, + "normalized_name": "surf club" + }, + { + "appid": 1685750, + "normalized_name": "capcom fighting collection" + }, + { + "appid": 1685770, + "normalized_name": "post industrial renovator" + }, + { + "appid": 1685790, + "normalized_name": "need for sharp" + }, + { + "appid": 1685840, + "normalized_name": "lyonesse" + }, + { + "appid": 1685850, + "normalized_name": "the wolf's girl" + }, + { + "appid": 1685870, + "normalized_name": "near mage" + }, + { + "appid": 1685880, + "normalized_name": "neko puzzle" + }, + { + "appid": 1685920, + "normalized_name": "time voyeur" + }, + { + "appid": 1685930, + "normalized_name": "monsters of the north" + }, + { + "appid": 1685940, + "normalized_name": "highway rampage" + }, + { + "appid": 1685950, + "normalized_name": "seblen battle!" + }, + { + "appid": 1685960, + "normalized_name": "operation lovecraft fallen doll" + }, + { + "appid": 1686010, + "normalized_name": "rival fury" + }, + { + "appid": 1686050, + "normalized_name": "betrayer curse of the spine prologue" + }, + { + "appid": 1686060, + "normalized_name": "unshaded" + }, + { + "appid": 1686070, + "normalized_name": "powerjackers vr superhero battle royale" + }, + { + "appid": 1686090, + "normalized_name": "the revenant protocol" + }, + { + "appid": 1686130, + "normalized_name": "deep despair 2" + }, + { + "appid": 1686150, + "normalized_name": "pipe dreamin' vr the big easy" + }, + { + "appid": 1686160, + "normalized_name": "save the unicorn" + }, + { + "appid": 1686170, + "normalized_name": "minimal moba" + }, + { + "appid": 1686230, + "normalized_name": "mayday the survival island" + }, + { + "appid": 1686240, + "normalized_name": "saber punks" + }, + { + "appid": 1686260, + "normalized_name": "catching a ride" + }, + { + "appid": 1686280, + "normalized_name": "strawberry samurai" + }, + { + "appid": 1686290, + "normalized_name": "idle heros" + }, + { + "appid": 1686340, + "normalized_name": "airfighter" + }, + { + "appid": 1686350, + "normalized_name": "slomi" + }, + { + "appid": 1686370, + "normalized_name": "match3 mania!" + }, + { + "appid": 1686380, + "normalized_name": "pingo's revenge" + }, + { + "appid": 1686390, + "normalized_name": "train'em" + }, + { + "appid": 1686430, + "normalized_name": "monster maker" + }, + { + "appid": 1686440, + "normalized_name": "yoshimitsu hatsumi" + }, + { + "appid": 1686470, + "normalized_name": "x force genesis" + }, + { + "appid": 1686490, + "normalized_name": "it's better alone" + }, + { + "appid": 1686520, + "normalized_name": "questnotes" + }, + { + "appid": 1686530, + "normalized_name": "project vaccine a" + }, + { + "appid": 1686560, + "normalized_name": "in cold dark" + }, + { + "appid": 1686570, + "normalized_name": "plush madness" + }, + { + "appid": 1686600, + "normalized_name": "slidenslip" + }, + { + "appid": 1686610, + "normalized_name": "nexonauts" + }, + { + "appid": 1686620, + "normalized_name": "fear protocol shadow paradigm" + }, + { + "appid": 1686640, + "normalized_name": "platformer execute();" + }, + { + "appid": 1686670, + "normalized_name": "dreamlands cotton candy hunt" + }, + { + "appid": 1686680, + "normalized_name": "the witch eye" + }, + { + "appid": 1686690, + "normalized_name": "408 the forbidden room" + }, + { + "appid": 1686710, + "normalized_name": "before akhira" + }, + { + "appid": 1686720, + "normalized_name": "overworld heroes" + }, + { + "appid": 1686770, + "normalized_name": "spooky bricks" + }, + { + "appid": 1686780, + "normalized_name": "witchfall secrets of emotica" + }, + { + "appid": 1686790, + "normalized_name": "p1441vr" + }, + { + "appid": 1686800, + "normalized_name": "zeo effect" + }, + { + "appid": 1686810, + "normalized_name": "idolyaki from delinquents to pop stars" + }, + { + "appid": 1686820, + "normalized_name": "arena of kings" + }, + { + "appid": 1686840, + "normalized_name": "loop room" + }, + { + "appid": 1686850, + "normalized_name": "untangle" + }, + { + "appid": 1686860, + "normalized_name": "neverdeath" + }, + { + "appid": 1686870, + "normalized_name": "中华富甲三国" + }, + { + "appid": 1686880, + "normalized_name": "queen of honor" + }, + { + "appid": 1686940, + "normalized_name": "bopl battle" + }, + { + "appid": 1686950, + "normalized_name": "kolobok the return" + }, + { + "appid": 1686960, + "normalized_name": "furry puzzle" + }, + { + "appid": 1686970, + "normalized_name": "傻瓜式sgb粗陋心得" + }, + { + "appid": 1686980, + "normalized_name": "tierra mystery point & click adventure" + }, + { + "appid": 1687000, + "normalized_name": "fading afternoon" + }, + { + "appid": 1687010, + "normalized_name": "the savoury inspector" + }, + { + "appid": 1687020, + "normalized_name": "oneforall" + }, + { + "appid": 1687030, + "normalized_name": "follow your heart" + }, + { + "appid": 1687040, + "normalized_name": "toadomination" + }, + { + "appid": 1687050, + "normalized_name": "telenovela" + }, + { + "appid": 1687060, + "normalized_name": "lord of the click 2" + }, + { + "appid": 1687070, + "normalized_name": "ayoub episode 1" + }, + { + "appid": 1687080, + "normalized_name": "bugged dungeon" + }, + { + "appid": 1687090, + "normalized_name": "lostria" + }, + { + "appid": 1687100, + "normalized_name": "era of combat boxing" + }, + { + "appid": 1687120, + "normalized_name": "blacksky" + }, + { + "appid": 1687130, + "normalized_name": "the dead rooms" + }, + { + "appid": 1687150, + "normalized_name": "leaf me alone" + }, + { + "appid": 1687170, + "normalized_name": "buoy" + }, + { + "appid": 1687190, + "normalized_name": "starlight explorers" + }, + { + "appid": 1687200, + "normalized_name": "fate chapter 2 the beginning" + }, + { + "appid": 1687210, + "normalized_name": "tell some story foz" + }, + { + "appid": 1687250, + "normalized_name": "aria genesis" + }, + { + "appid": 1687280, + "normalized_name": "starfighter aces" + }, + { + "appid": 1687300, + "normalized_name": "forever alone" + }, + { + "appid": 1687350, + "normalized_name": "dirty beastly muscles" + }, + { + "appid": 1687390, + "normalized_name": "factory trashcension" + }, + { + "appid": 1687400, + "normalized_name": "pixie farm vr / ピクシーファームvr" + }, + { + "appid": 1687430, + "normalized_name": "z mutants" + }, + { + "appid": 1687460, + "normalized_name": "dumb bomb game" + }, + { + "appid": 1687470, + "normalized_name": "stolen crown" + }, + { + "appid": 1687480, + "normalized_name": "dex speed run level maker world records" + }, + { + "appid": 1687530, + "normalized_name": "elder ring" + }, + { + "appid": 1687540, + "normalized_name": "showa american story" + }, + { + "appid": 1687550, + "normalized_name": "bear's restaurant" + }, + { + "appid": 1687560, + "normalized_name": "astro not" + }, + { + "appid": 1687570, + "normalized_name": "rogue rising" + }, + { + "appid": 1687590, + "normalized_name": "mars base" + }, + { + "appid": 1687670, + "normalized_name": "last cloudia" + }, + { + "appid": 1687700, + "normalized_name": "crash time undercover" + }, + { + "appid": 1687710, + "normalized_name": "everdine a lost girl's tale" + }, + { + "appid": 1687730, + "normalized_name": "iron world" + }, + { + "appid": 1687740, + "normalized_name": "noyah corrupted memories" + }, + { + "appid": 1687780, + "normalized_name": "the adventures of lwanda magere" + }, + { + "appid": 1687840, + "normalized_name": "heliopolis six" + }, + { + "appid": 1687940, + "normalized_name": "萝莉的远征 lolita expedition" + }, + { + "appid": 1687950, + "normalized_name": "persona 5 royal" + }, + { + "appid": 1687960, + "normalized_name": "the wreck" + }, + { + "appid": 1687980, + "normalized_name": "kselebox" + }, + { + "appid": 1687990, + "normalized_name": "clunky hero" + }, + { + "appid": 1688010, + "normalized_name": "gotg dedicated server" + }, + { + "appid": 1688080, + "normalized_name": "aeternum vale" + }, + { + "appid": 1688100, + "normalized_name": "cat museum" + }, + { + "appid": 1688140, + "normalized_name": "time travel shanty" + }, + { + "appid": 1688150, + "normalized_name": "our life on water" + }, + { + "appid": 1688160, + "normalized_name": "neura mechanicus prologue" + }, + { + "appid": 1688200, + "normalized_name": "war of gold" + }, + { + "appid": 1688210, + "normalized_name": "overworked" + }, + { + "appid": 1688220, + "normalized_name": "fire & reign" + }, + { + "appid": 1688240, + "normalized_name": "escape from the office" + }, + { + "appid": 1688250, + "normalized_name": "princess in airiness" + }, + { + "appid": 1688270, + "normalized_name": "i've seen everything" + }, + { + "appid": 1688290, + "normalized_name": "destroy all the cubes" + }, + { + "appid": 1688310, + "normalized_name": "perfect affection plan cassiopeia" + }, + { + "appid": 1688320, + "normalized_name": "onebit adventure" + }, + { + "appid": 1688340, + "normalized_name": "timore redo" + }, + { + "appid": 1688350, + "normalized_name": "wastelander" + }, + { + "appid": 1688390, + "normalized_name": "nightron wars" + }, + { + "appid": 1688400, + "normalized_name": "b.y.o.o.l. best years of our lives" + }, + { + "appid": 1688440, + "normalized_name": "secret trouble" + }, + { + "appid": 1688460, + "normalized_name": "battlegrounds first blast" + }, + { + "appid": 1688470, + "normalized_name": "rat prison" + }, + { + "appid": 1688490, + "normalized_name": "dreamed" + }, + { + "appid": 1688520, + "normalized_name": "abyss protection" + }, + { + "appid": 1688530, + "normalized_name": "my living things" + }, + { + "appid": 1688580, + "normalized_name": "a year of springs" + }, + { + "appid": 1688590, + "normalized_name": "spaceport crew" + }, + { + "appid": 1688600, + "normalized_name": "emperial knights" + }, + { + "appid": 1688640, + "normalized_name": "isle goblin" + }, + { + "appid": 1688670, + "normalized_name": "keyboard maestro voyage" + }, + { + "appid": 1688690, + "normalized_name": "deadlock" + }, + { + "appid": 1688710, + "normalized_name": "stop the blight" + }, + { + "appid": 1688730, + "normalized_name": "perry the pumpkin" + }, + { + "appid": 1688780, + "normalized_name": "light fighter" + }, + { + "appid": 1688800, + "normalized_name": "monkey tantrum" + }, + { + "appid": 1688810, + "normalized_name": "mini jumper" + }, + { + "appid": 1688850, + "normalized_name": "all dream long a flower storm" + }, + { + "appid": 1688970, + "normalized_name": "come back home please" + }, + { + "appid": 1688980, + "normalized_name": "cube runk" + }, + { + "appid": 1689000, + "normalized_name": "namaiki dark elf sisters" + }, + { + "appid": 1689010, + "normalized_name": "欢迎加入奇趣社" + }, + { + "appid": 1689020, + "normalized_name": "hidden forest" + }, + { + "appid": 1689030, + "normalized_name": "vr eagles of victorian england" + }, + { + "appid": 1689060, + "normalized_name": "endless soul light solitaire" + }, + { + "appid": 1689070, + "normalized_name": "龙之谷" + }, + { + "appid": 1689080, + "normalized_name": "mercury abbey" + }, + { + "appid": 1689090, + "normalized_name": "city wars tokyo reign" + }, + { + "appid": 1689120, + "normalized_name": "modyssey – a geometric poem" + }, + { + "appid": 1689130, + "normalized_name": "magusphere magical cannon girls" + }, + { + "appid": 1689140, + "normalized_name": "altarays" + }, + { + "appid": 1689150, + "normalized_name": "milena's manor house" + }, + { + "appid": 1689180, + "normalized_name": "mira’s workshop" + }, + { + "appid": 1689190, + "normalized_name": "rayze" + }, + { + "appid": 1689220, + "normalized_name": "unholy alliance tower defense" + }, + { + "appid": 1689240, + "normalized_name": "dead world heroes" + }, + { + "appid": 1689250, + "normalized_name": "gate" + }, + { + "appid": 1689270, + "normalized_name": "raven's hike" + }, + { + "appid": 1689280, + "normalized_name": "spirit of europe origins" + }, + { + "appid": 1689310, + "normalized_name": "the story of bill bear" + }, + { + "appid": 1689340, + "normalized_name": "island of winds" + }, + { + "appid": 1689350, + "normalized_name": "my life as an archeologist" + }, + { + "appid": 1689360, + "normalized_name": "mine shaft" + }, + { + "appid": 1689370, + "normalized_name": "inquisitive dave" + }, + { + "appid": 1689390, + "normalized_name": "mythrealm" + }, + { + "appid": 1689410, + "normalized_name": "armada" + }, + { + "appid": 1689420, + "normalized_name": "road bustle" + }, + { + "appid": 1689430, + "normalized_name": "milosc" + }, + { + "appid": 1689480, + "normalized_name": "乡间" + }, + { + "appid": 1689500, + "normalized_name": "dune imperium" + }, + { + "appid": 1689510, + "normalized_name": "rpgscenery" + }, + { + "appid": 1689520, + "normalized_name": "a cure for jessica" + }, + { + "appid": 1689530, + "normalized_name": "big fish" + }, + { + "appid": 1689540, + "normalized_name": "sprocket wings" + }, + { + "appid": 1689550, + "normalized_name": "your adventure" + }, + { + "appid": 1689570, + "normalized_name": "draw music" + }, + { + "appid": 1689620, + "normalized_name": "bleach rebirth of souls" + }, + { + "appid": 1689640, + "normalized_name": "warden's will" + }, + { + "appid": 1689650, + "normalized_name": "centurion rex" + }, + { + "appid": 1689680, + "normalized_name": "13 origin prologue" + }, + { + "appid": 1689720, + "normalized_name": "ecila" + }, + { + "appid": 1689730, + "normalized_name": "20b" + }, + { + "appid": 1689750, + "normalized_name": "武者斗天师" + }, + { + "appid": 1689780, + "normalized_name": "真人恋爱大冒险" + }, + { + "appid": 1689870, + "normalized_name": "meridian 157 chapter 3" + }, + { + "appid": 1689880, + "normalized_name": "killer gin battle arcade" + }, + { + "appid": 1689890, + "normalized_name": "trash magnate" + }, + { + "appid": 1689910, + "normalized_name": "dōkyūsei bangin' summer" + }, + { + "appid": 1689930, + "normalized_name": "alley catz bowling" + }, + { + "appid": 1689940, + "normalized_name": "knighty" + }, + { + "appid": 1689980, + "normalized_name": "yummy mahjong" + }, + { + "appid": 1690000, + "normalized_name": "trap for the heir" + }, + { + "appid": 1690030, + "normalized_name": "soup!" + }, + { + "appid": 1690040, + "normalized_name": "metavusking" + }, + { + "appid": 1690050, + "normalized_name": "zenos stadium" + }, + { + "appid": 1690060, + "normalized_name": "gelly break deluxe" + }, + { + "appid": 1690100, + "normalized_name": "cosminers" + }, + { + "appid": 1690150, + "normalized_name": "futanari vampire girlfriend" + }, + { + "appid": 1690180, + "normalized_name": "carter story / 卡特冒险" + }, + { + "appid": 1690190, + "normalized_name": "portal walk" + }, + { + "appid": 1690200, + "normalized_name": "musical vibes" + }, + { + "appid": 1690210, + "normalized_name": "sea of dreams" + }, + { + "appid": 1690240, + "normalized_name": "emergency crew volcano eruption" + }, + { + "appid": 1690250, + "normalized_name": "wet waifu" + }, + { + "appid": 1690270, + "normalized_name": "amazing superhero squad" + }, + { + "appid": 1690290, + "normalized_name": "duamo" + }, + { + "appid": 1690320, + "normalized_name": "pizza empire!" + }, + { + "appid": 1690340, + "normalized_name": "stand of arms" + }, + { + "appid": 1690350, + "normalized_name": "shadow's light tale of the champions" + }, + { + "appid": 1690360, + "normalized_name": "gachimuchi life simulator" + }, + { + "appid": 1690380, + "normalized_name": "hentai achievement puzzle" + }, + { + "appid": 1690390, + "normalized_name": "escape to mars" + }, + { + "appid": 1690440, + "normalized_name": "another tomorrow" + }, + { + "appid": 1690480, + "normalized_name": "the leeds devil" + }, + { + "appid": 1690500, + "normalized_name": "meteor storm" + }, + { + "appid": 1690530, + "normalized_name": "yearning a gay story" + }, + { + "appid": 1690560, + "normalized_name": "mortal meal" + }, + { + "appid": 1690620, + "normalized_name": "action hero" + }, + { + "appid": 1690640, + "normalized_name": "the illusion" + }, + { + "appid": 1690650, + "normalized_name": "zombie survivors" + }, + { + "appid": 1690660, + "normalized_name": "synthwaifu neon space fighter" + }, + { + "appid": 1690690, + "normalized_name": "idle monkeylogy" + }, + { + "appid": 1690710, + "normalized_name": "incremental epic hero 2" + }, + { + "appid": 1690730, + "normalized_name": "incremental cubes" + }, + { + "appid": 1690740, + "normalized_name": "mandacaru" + }, + { + "appid": 1690760, + "normalized_name": "pumpkin story" + }, + { + "appid": 1690790, + "normalized_name": "hate free heroes rpg [2d/3d rpg enhanced] *leaving steam" + }, + { + "appid": 1690820, + "normalized_name": "parking slide" + }, + { + "appid": 1690830, + "normalized_name": "darkness cums" + }, + { + "appid": 1690860, + "normalized_name": "gun gun create" + }, + { + "appid": 1690880, + "normalized_name": "up all night" + }, + { + "appid": 1690930, + "normalized_name": "forbidden memories" + }, + { + "appid": 1690980, + "normalized_name": "sigma world online" + }, + { + "appid": 1690990, + "normalized_name": "nagonggan infinite" + }, + { + "appid": 1691010, + "normalized_name": "on scene the horror stories of fred & karen" + }, + { + "appid": 1691020, + "normalized_name": "bent on destruction" + }, + { + "appid": 1691130, + "normalized_name": "bigger bikes" + }, + { + "appid": 1691170, + "normalized_name": "virus on" + }, + { + "appid": 1691180, + "normalized_name": "bitter" + }, + { + "appid": 1691190, + "normalized_name": "rogue waters" + }, + { + "appid": 1691230, + "normalized_name": "vr shooting cute balloons" + }, + { + "appid": 1691270, + "normalized_name": "pizza ghest" + }, + { + "appid": 1691280, + "normalized_name": "maximum football" + }, + { + "appid": 1691290, + "normalized_name": "little adventure 2" + }, + { + "appid": 1691300, + "normalized_name": "abfense" + }, + { + "appid": 1691320, + "normalized_name": "hellbreach vegas" + }, + { + "appid": 1691340, + "normalized_name": "steel hunters" + }, + { + "appid": 1691370, + "normalized_name": "ball.io" + }, + { + "appid": 1691380, + "normalized_name": "one thousand baht simulator" + }, + { + "appid": 1691400, + "normalized_name": "the market of light" + }, + { + "appid": 1691420, + "normalized_name": "start again a prologue" + }, + { + "appid": 1691480, + "normalized_name": "world titans war" + }, + { + "appid": 1691490, + "normalized_name": "elemental colossus" + }, + { + "appid": 1691500, + "normalized_name": "christine" + }, + { + "appid": 1691510, + "normalized_name": "monster wilds" + }, + { + "appid": 1691550, + "normalized_name": "isp tycoon landline & mobile carrier magnate" + }, + { + "appid": 1691560, + "normalized_name": "mido and di" + }, + { + "appid": 1691600, + "normalized_name": "vector assault 2" + }, + { + "appid": 1691620, + "normalized_name": "titanium hound" + }, + { + "appid": 1691630, + "normalized_name": "dominus rage" + }, + { + "appid": 1691700, + "normalized_name": "football tournament" + }, + { + "appid": 1691750, + "normalized_name": "sky oceans wings for hire" + }, + { + "appid": 1691780, + "normalized_name": "pixiescape" + }, + { + "appid": 1691790, + "normalized_name": "porter in the castle" + }, + { + "appid": 1691820, + "normalized_name": "rover operator" + }, + { + "appid": 1691830, + "normalized_name": "temple with traps" + }, + { + "appid": 1691860, + "normalized_name": "vizzle" + }, + { + "appid": 1691890, + "normalized_name": "higgs boson timed puzzle" + }, + { + "appid": 1691970, + "normalized_name": "danganronpa s summer camp" + }, + { + "appid": 1692000, + "normalized_name": "雨音スイッチ amane switch" + }, + { + "appid": 1692010, + "normalized_name": "bizarre mutation world" + }, + { + "appid": 1692030, + "normalized_name": "aurora chronicles" + }, + { + "appid": 1692060, + "normalized_name": "bad dream stories" + }, + { + "appid": 1692120, + "normalized_name": "airtight city 2.0 awakening" + }, + { + "appid": 1692130, + "normalized_name": "virion" + }, + { + "appid": 1692140, + "normalized_name": "her your wife her my life her herself" + }, + { + "appid": 1692150, + "normalized_name": "wolf at evergreen" + }, + { + "appid": 1692170, + "normalized_name": "hinata in hot maze" + }, + { + "appid": 1692210, + "normalized_name": "trump loves russia" + }, + { + "appid": 1692220, + "normalized_name": "sneezeman escape from planet sneeze" + }, + { + "appid": 1692230, + "normalized_name": "swung" + }, + { + "appid": 1692240, + "normalized_name": "fortune's run" + }, + { + "appid": 1692270, + "normalized_name": "light paradox" + }, + { + "appid": 1692280, + "normalized_name": "r e f l e c t e d" + }, + { + "appid": 1692290, + "normalized_name": "inhuman" + }, + { + "appid": 1692340, + "normalized_name": "unknown number a first person talker" + }, + { + "appid": 1692360, + "normalized_name": "drinks company tycoon" + }, + { + "appid": 1692390, + "normalized_name": "another cat in dungeons" + }, + { + "appid": 1692400, + "normalized_name": "last shape standing" + }, + { + "appid": 1692430, + "normalized_name": "larry the unlucky part 1" + }, + { + "appid": 1692480, + "normalized_name": "cavern commandos" + }, + { + "appid": 1692510, + "normalized_name": "boo party" + }, + { + "appid": 1692520, + "normalized_name": "robots n lasers" + }, + { + "appid": 1692550, + "normalized_name": "the journey of autumn" + }, + { + "appid": 1692560, + "normalized_name": "jeremia nightfall" + }, + { + "appid": 1692570, + "normalized_name": "fm45's sprite man adventures" + }, + { + "appid": 1692580, + "normalized_name": "hidden shapes black skull jigsaw puzzle game" + }, + { + "appid": 1692590, + "normalized_name": "puzzles with cats" + }, + { + "appid": 1692620, + "normalized_name": "water physics simulation" + }, + { + "appid": 1692630, + "normalized_name": "flychivements" + }, + { + "appid": 1692700, + "normalized_name": "simpleplanes vr" + }, + { + "appid": 1692850, + "normalized_name": "historic fighters" + }, + { + "appid": 1692870, + "normalized_name": "quantum conquest" + }, + { + "appid": 1692890, + "normalized_name": "vr military reporter in middle east (with tanks & helicopters)" + }, + { + "appid": 1692900, + "normalized_name": "queen of tower defense" + }, + { + "appid": 1692940, + "normalized_name": "orb tour" + }, + { + "appid": 1692950, + "normalized_name": "ninja simulator prologue" + }, + { + "appid": 1692980, + "normalized_name": "soul invictus" + }, + { + "appid": 1693000, + "normalized_name": "within the range" + }, + { + "appid": 1693010, + "normalized_name": "pop's" + }, + { + "appid": 1693040, + "normalized_name": "synthwave burnout" + }, + { + "appid": 1693050, + "normalized_name": "ムッツリ騎士レイカのドスケベ淫乱覚醒rpg" + }, + { + "appid": 1693060, + "normalized_name": "magic thief" + }, + { + "appid": 1693070, + "normalized_name": "the madhouse | 感染屋敷" + }, + { + "appid": 1693090, + "normalized_name": "v.r.g." + }, + { + "appid": 1693100, + "normalized_name": "fomalhaut flowers" + }, + { + "appid": 1693130, + "normalized_name": "lucky joe" + }, + { + "appid": 1693140, + "normalized_name": "once in my head" + }, + { + "appid": 1693150, + "normalized_name": "prophecy of the nun" + }, + { + "appid": 1693160, + "normalized_name": "zone b korosu" + }, + { + "appid": 1693180, + "normalized_name": "二逼青年的救赎" + }, + { + "appid": 1693190, + "normalized_name": "cursed house" + }, + { + "appid": 1693200, + "normalized_name": "make a path for the chicken" + }, + { + "appid": 1693210, + "normalized_name": "hodl simulator" + }, + { + "appid": 1693230, + "normalized_name": "puzzle soccer" + }, + { + "appid": 1693250, + "normalized_name": "ancient wars sparta" + }, + { + "appid": 1693260, + "normalized_name": "yugo puzzle" + }, + { + "appid": 1693280, + "normalized_name": "supplice" + }, + { + "appid": 1693300, + "normalized_name": "dann fox & the time machine" + }, + { + "appid": 1693310, + "normalized_name": "winging it" + }, + { + "appid": 1693340, + "normalized_name": "where is the meaning?" + }, + { + "appid": 1693350, + "normalized_name": "stellar valkyrie" + }, + { + "appid": 1693360, + "normalized_name": "dark forest project" + }, + { + "appid": 1693380, + "normalized_name": "captain collision" + }, + { + "appid": 1693390, + "normalized_name": "xombee mpfps" + }, + { + "appid": 1693410, + "normalized_name": "on my own new frontier" + }, + { + "appid": 1693420, + "normalized_name": "uc sim ~unity chan simulator~" + }, + { + "appid": 1693430, + "normalized_name": "dungeon overseer" + }, + { + "appid": 1693460, + "normalized_name": "killer" + }, + { + "appid": 1693480, + "normalized_name": "queenchantment" + }, + { + "appid": 1693500, + "normalized_name": "fairy sister" + }, + { + "appid": 1693530, + "normalized_name": "the maracot deep" + }, + { + "appid": 1693540, + "normalized_name": "dash realm" + }, + { + "appid": 1693570, + "normalized_name": "zombie vegas" + }, + { + "appid": 1693580, + "normalized_name": "the hunter's journals tattered sails" + }, + { + "appid": 1693600, + "normalized_name": "the witchmade shop" + }, + { + "appid": 1693610, + "normalized_name": "sudokolorful" + }, + { + "appid": 1693620, + "normalized_name": "the vaults of minos" + }, + { + "appid": 1693640, + "normalized_name": "spice sacrifice" + }, + { + "appid": 1693650, + "normalized_name": "copper odyssey" + }, + { + "appid": 1693660, + "normalized_name": "cards of patience" + }, + { + "appid": 1693680, + "normalized_name": "sword maker" + }, + { + "appid": 1693710, + "normalized_name": "operator8" + }, + { + "appid": 1693750, + "normalized_name": "ironfell" + }, + { + "appid": 1693760, + "normalized_name": "the ditty of carmeana" + }, + { + "appid": 1693770, + "normalized_name": "port aphelion" + }, + { + "appid": 1693780, + "normalized_name": "orbital combat" + }, + { + "appid": 1693800, + "normalized_name": "airflow" + }, + { + "appid": 1693820, + "normalized_name": "autumn leaves" + }, + { + "appid": 1693850, + "normalized_name": "dear mom my letter to you" + }, + { + "appid": 1693890, + "normalized_name": "spiritwell" + }, + { + "appid": 1693900, + "normalized_name": "saving ghost" + }, + { + "appid": 1693930, + "normalized_name": "浮世万千三天地情殇" + }, + { + "appid": 1693950, + "normalized_name": "boys tale" + }, + { + "appid": 1693960, + "normalized_name": "atomic wilds" + }, + { + "appid": 1693970, + "normalized_name": "party rush!!" + }, + { + "appid": 1693980, + "normalized_name": "dead space" + }, + { + "appid": 1693990, + "normalized_name": "虫鸣" + }, + { + "appid": 1694000, + "normalized_name": "specters" + }, + { + "appid": 1694010, + "normalized_name": "crown land" + }, + { + "appid": 1694020, + "normalized_name": "jumpingfrog" + }, + { + "appid": 1694100, + "normalized_name": "幸存者乐园" + }, + { + "appid": 1694110, + "normalized_name": "jigsaw frame hot anime" + }, + { + "appid": 1694120, + "normalized_name": "space intervention" + }, + { + "appid": 1694150, + "normalized_name": "crate knight" + }, + { + "appid": 1694160, + "normalized_name": "singulive" + }, + { + "appid": 1694170, + "normalized_name": "when honor dies" + }, + { + "appid": 1694200, + "normalized_name": "dragon and home" + }, + { + "appid": 1694230, + "normalized_name": "abtos covert" + }, + { + "appid": 1694260, + "normalized_name": "moons of ardan" + }, + { + "appid": 1694270, + "normalized_name": "dog's donuts" + }, + { + "appid": 1694290, + "normalized_name": "clash of legions" + }, + { + "appid": 1694300, + "normalized_name": "light pursuer" + }, + { + "appid": 1694310, + "normalized_name": "valor" + }, + { + "appid": 1694320, + "normalized_name": "nilia" + }, + { + "appid": 1694360, + "normalized_name": "jeff logar" + }, + { + "appid": 1694370, + "normalized_name": "sword of the cat lost hope" + }, + { + "appid": 1694380, + "normalized_name": "am madness" + }, + { + "appid": 1694420, + "normalized_name": "card survival tropical island" + }, + { + "appid": 1694430, + "normalized_name": "dynamic dungeons editor" + }, + { + "appid": 1694450, + "normalized_name": "mix hentai girls" + }, + { + "appid": 1694470, + "normalized_name": "crazy hands" + }, + { + "appid": 1694500, + "normalized_name": "the craft of the samurai" + }, + { + "appid": 1694510, + "normalized_name": "barista simulator" + }, + { + "appid": 1694530, + "normalized_name": "wardwell house vr" + }, + { + "appid": 1694550, + "normalized_name": "hype prototype" + }, + { + "appid": 1694560, + "normalized_name": "inspector schmidt a bavarian tale" + }, + { + "appid": 1694600, + "normalized_name": "the house of the dead remake" + }, + { + "appid": 1694610, + "normalized_name": "beku" + }, + { + "appid": 1694620, + "normalized_name": "ragtag racing" + }, + { + "appid": 1694640, + "normalized_name": "absurd chess" + }, + { + "appid": 1694670, + "normalized_name": "apotheorasis • lab of the blind gods" + }, + { + "appid": 1694720, + "normalized_name": "totally working game" + }, + { + "appid": 1694740, + "normalized_name": "simple sky" + }, + { + "appid": 1694810, + "normalized_name": "nightmares to be" + }, + { + "appid": 1694820, + "normalized_name": "the stone of god" + }, + { + "appid": 1694830, + "normalized_name": "the witch doctor" + }, + { + "appid": 1694840, + "normalized_name": "baptism of fire" + }, + { + "appid": 1694860, + "normalized_name": "night of the stars" + }, + { + "appid": 1694880, + "normalized_name": "spectrolite" + }, + { + "appid": 1694890, + "normalized_name": "rescue operations simulator" + }, + { + "appid": 1694920, + "normalized_name": "setting sun" + }, + { + "appid": 1694960, + "normalized_name": "furry feet" + }, + { + "appid": 1694970, + "normalized_name": "jude" + }, + { + "appid": 1695000, + "normalized_name": "rainbow sea" + }, + { + "appid": 1695040, + "normalized_name": "cupid's palace" + }, + { + "appid": 1695080, + "normalized_name": "slapbr" + }, + { + "appid": 1695150, + "normalized_name": "末路希冀" + }, + { + "appid": 1695260, + "normalized_name": "timothy and the tower of mu" + }, + { + "appid": 1695280, + "normalized_name": "仙之气" + }, + { + "appid": 1695310, + "normalized_name": "pro pain labs" + }, + { + "appid": 1695330, + "normalized_name": "galaxi taxi" + }, + { + "appid": 1695400, + "normalized_name": "lucky fish bread" + }, + { + "appid": 1695450, + "normalized_name": "mannaz" + }, + { + "appid": 1695480, + "normalized_name": "hellblusser" + }, + { + "appid": 1695500, + "normalized_name": "魔術師リンティアラ" + }, + { + "appid": 1695510, + "normalized_name": "g modeアーカイブス19 マジカルドロップdx" + }, + { + "appid": 1695530, + "normalized_name": "seen 2" + }, + { + "appid": 1695600, + "normalized_name": "bunny puzzle" + }, + { + "appid": 1695610, + "normalized_name": "奇迹战队" + }, + { + "appid": 1695620, + "normalized_name": "chr$(143)" + }, + { + "appid": 1695670, + "normalized_name": "screwup" + }, + { + "appid": 1695680, + "normalized_name": "lunar's chosen episode 1" + }, + { + "appid": 1695790, + "normalized_name": "halo 2 anniversary mp mod tools mcc" + }, + { + "appid": 1695791, + "normalized_name": "halo 3 mod tools mcc" + }, + { + "appid": 1695792, + "normalized_name": "halo 4 mod tools mcc" + }, + { + "appid": 1695793, + "normalized_name": "halo reach mod tools – mcc" + }, + { + "appid": 1695794, + "normalized_name": "halo 3 odst mod tools mcc" + }, + { + "appid": 1695795, + "normalized_name": "halo mcc mod uploader" + }, + { + "appid": 1695800, + "normalized_name": "we hidden" + }, + { + "appid": 1695810, + "normalized_name": "deadbait" + }, + { + "appid": 1695830, + "normalized_name": "baldur's gate dark alliance" + }, + { + "appid": 1695840, + "normalized_name": "fear therapy" + }, + { + "appid": 1695870, + "normalized_name": "dundun vr" + }, + { + "appid": 1695890, + "normalized_name": "golf a guy!" + }, + { + "appid": 1695970, + "normalized_name": "cube e" + }, + { + "appid": 1696020, + "normalized_name": "ha_bits" + }, + { + "appid": 1696030, + "normalized_name": "evelyn's adventure" + }, + { + "appid": 1696040, + "normalized_name": "paranormal files ghost chapter collector's" + }, + { + "appid": 1696050, + "normalized_name": "musi chance" + }, + { + "appid": 1696080, + "normalized_name": "deadwater saloon" + }, + { + "appid": 1696090, + "normalized_name": "hyperball tachyon" + }, + { + "appid": 1696110, + "normalized_name": "always a new journey" + }, + { + "appid": 1696130, + "normalized_name": "vr paper airplane hunting" + }, + { + "appid": 1696150, + "normalized_name": "lovers in the lunar labyrinth" + }, + { + "appid": 1696200, + "normalized_name": "hell blasters" + }, + { + "appid": 1696220, + "normalized_name": "fixfox" + }, + { + "appid": 1696230, + "normalized_name": "peblito rock and roll" + }, + { + "appid": 1696240, + "normalized_name": "chain of eroticism" + }, + { + "appid": 1696260, + "normalized_name": "graywood noir detective" + }, + { + "appid": 1696290, + "normalized_name": "hoop the loop" + }, + { + "appid": 1696300, + "normalized_name": "vr pirates of the caribbean life experience" + }, + { + "appid": 1696310, + "normalized_name": "starveling way" + }, + { + "appid": 1696370, + "normalized_name": "gangs of rikton" + }, + { + "appid": 1696380, + "normalized_name": "mr.knight" + }, + { + "appid": 1696440, + "normalized_name": "绝世好武功 the matchless kungfu" + }, + { + "appid": 1696450, + "normalized_name": "horror stories welcome home" + }, + { + "appid": 1696550, + "normalized_name": "inu a glimpse of infinity" + }, + { + "appid": 1696610, + "normalized_name": "escape from the lockdown the demon fortress (steam version) day 1" + }, + { + "appid": 1696620, + "normalized_name": "it's dungeon time!" + }, + { + "appid": 1696630, + "normalized_name": "runman turbo" + }, + { + "appid": 1696670, + "normalized_name": "agarta" + }, + { + "appid": 1696710, + "normalized_name": "inventory manager" + }, + { + "appid": 1696720, + "normalized_name": "psilosybil" + }, + { + "appid": 1696740, + "normalized_name": "ubirajara" + }, + { + "appid": 1696770, + "normalized_name": "the mermaid mask" + }, + { + "appid": 1696810, + "normalized_name": "railroads online" + }, + { + "appid": 1696820, + "normalized_name": "low light combat" + }, + { + "appid": 1696900, + "normalized_name": "venture within" + }, + { + "appid": 1696910, + "normalized_name": "sky link 2" + }, + { + "appid": 1696930, + "normalized_name": "conundrum" + }, + { + "appid": 1696950, + "normalized_name": "scottside" + }, + { + "appid": 1696960, + "normalized_name": "lake haven chrysalis" + }, + { + "appid": 1697020, + "normalized_name": "voxel mage siege" + }, + { + "appid": 1697030, + "normalized_name": "namsiku path of the fang" + }, + { + "appid": 1697040, + "normalized_name": "jump lanes" + }, + { + "appid": 1697050, + "normalized_name": "polybius invaders" + }, + { + "appid": 1697060, + "normalized_name": "volcanon" + }, + { + "appid": 1697070, + "normalized_name": "a frail qubit" + }, + { + "appid": 1697080, + "normalized_name": "pill puzzle one move" + }, + { + "appid": 1697110, + "normalized_name": "grim tranquility" + }, + { + "appid": 1697160, + "normalized_name": "railgun 500" + }, + { + "appid": 1697170, + "normalized_name": "大家一起冲冲冲" + }, + { + "appid": 1697180, + "normalized_name": "amaze adventure" + }, + { + "appid": 1697190, + "normalized_name": "do 11" + }, + { + "appid": 1697200, + "normalized_name": "the lightnwatchers 1:海城(the sea city)" + }, + { + "appid": 1697250, + "normalized_name": "brick people" + }, + { + "appid": 1697310, + "normalized_name": "demon sighting" + }, + { + "appid": 1697420, + "normalized_name": "alien destroyer" + }, + { + "appid": 1697460, + "normalized_name": "coin pusher world" + }, + { + "appid": 1697470, + "normalized_name": "color by number medieval portrait" + }, + { + "appid": 1697500, + "normalized_name": "frontrunners" + }, + { + "appid": 1697520, + "normalized_name": "make dungeons" + }, + { + "appid": 1697540, + "normalized_name": "afterglow" + }, + { + "appid": 1697550, + "normalized_name": "self made man life of an entrepreneur" + }, + { + "appid": 1697560, + "normalized_name": "county hospital" + }, + { + "appid": 1697590, + "normalized_name": "palette swap" + }, + { + "appid": 1697600, + "normalized_name": "funny truck" + }, + { + "appid": 1697620, + "normalized_name": "tag police sentri" + }, + { + "appid": 1697630, + "normalized_name": "droptch" + }, + { + "appid": 1697680, + "normalized_name": "fear corporation" + }, + { + "appid": 1697700, + "normalized_name": "who's lila?" + }, + { + "appid": 1697720, + "normalized_name": "the heilwald loophole" + }, + { + "appid": 1697730, + "normalized_name": "bopping drive" + }, + { + "appid": 1697760, + "normalized_name": "dc league of super pets the adventures of krypto and ace" + }, + { + "appid": 1697770, + "normalized_name": "doodle god universe" + }, + { + "appid": 1697780, + "normalized_name": "life can be amazing" + }, + { + "appid": 1697790, + "normalized_name": "cybermere" + }, + { + "appid": 1697810, + "normalized_name": "loblocks" + }, + { + "appid": 1697850, + "normalized_name": "rose and locket" + }, + { + "appid": 1697870, + "normalized_name": "crown of greed" + }, + { + "appid": 1697880, + "normalized_name": "junkyard truck" + }, + { + "appid": 1697940, + "normalized_name": "the whisperer | le murmureur" + }, + { + "appid": 1698000, + "normalized_name": "smash maga! trump zombie apocalypse twilight of empire" + }, + { + "appid": 1698020, + "normalized_name": "reflection" + }, + { + "appid": 1698030, + "normalized_name": "ninnindays2" + }, + { + "appid": 1698040, + "normalized_name": "multia space program" + }, + { + "appid": 1698060, + "normalized_name": "that abysmal place" + }, + { + "appid": 1698080, + "normalized_name": "club soccer director 2022" + }, + { + "appid": 1698110, + "normalized_name": "project special forces" + }, + { + "appid": 1698120, + "normalized_name": "arena 54 visual novel action adventure" + }, + { + "appid": 1698140, + "normalized_name": "under the sea" + }, + { + "appid": 1698200, + "normalized_name": "我滿懷歧異的意識代碼" + }, + { + "appid": 1698210, + "normalized_name": "finding lulu global challenge one" + }, + { + "appid": 1698220, + "normalized_name": "teslagrad 2" + }, + { + "appid": 1698280, + "normalized_name": "capitalism the action board game for one player" + }, + { + "appid": 1698290, + "normalized_name": "labtrainingvr personal protective equipment" + }, + { + "appid": 1698350, + "normalized_name": "full metal sergeant" + }, + { + "appid": 1698400, + "normalized_name": "a day in space" + }, + { + "appid": 1698440, + "normalized_name": "shape shift shawn episode 1 tale of the transmogrified" + }, + { + "appid": 1698470, + "normalized_name": "roady life" + }, + { + "appid": 1698480, + "normalized_name": "a sex slave's love story" + }, + { + "appid": 1698520, + "normalized_name": "simple fish adventure" + }, + { + "appid": 1698530, + "normalized_name": "vtuber beats" + }, + { + "appid": 1698550, + "normalized_name": "the pilgrim survival" + }, + { + "appid": 1698570, + "normalized_name": "kursor" + }, + { + "appid": 1698600, + "normalized_name": "through the fog" + }, + { + "appid": 1698630, + "normalized_name": "sword of the stars the pit 2" + }, + { + "appid": 1698640, + "normalized_name": "pill puzzle 2" + }, + { + "appid": 1698670, + "normalized_name": "daggan" + }, + { + "appid": 1698690, + "normalized_name": "automation" + }, + { + "appid": 1698740, + "normalized_name": "descend into madness" + }, + { + "appid": 1698750, + "normalized_name": "thomas' tales" + }, + { + "appid": 1698800, + "normalized_name": "missing bullet" + }, + { + "appid": 1698810, + "normalized_name": "fractured" + }, + { + "appid": 1698820, + "normalized_name": "onslaught" + }, + { + "appid": 1698850, + "normalized_name": "mage tower call of zadeus" + }, + { + "appid": 1698870, + "normalized_name": "silver axe the honest elf" + }, + { + "appid": 1698910, + "normalized_name": "hardcore trivia" + }, + { + "appid": 1698920, + "normalized_name": "kick it" + }, + { + "appid": 1698930, + "normalized_name": "chaos brigade" + }, + { + "appid": 1698960, + "normalized_name": "project kat paper lily prologue" + }, + { + "appid": 1698990, + "normalized_name": "bubblegum zombie hunter" + }, + { + "appid": 1699030, + "normalized_name": "geo mythica" + }, + { + "appid": 1699050, + "normalized_name": "sanctuary shattered sun" + }, + { + "appid": 1699120, + "normalized_name": "light up the room" + }, + { + "appid": 1699130, + "normalized_name": "karadedeler 1989" + }, + { + "appid": 1699140, + "normalized_name": "fantasy toonz embers of creation" + }, + { + "appid": 1699170, + "normalized_name": "carnal coup overseer's" + }, + { + "appid": 1699180, + "normalized_name": "cyber war apocalypse" + }, + { + "appid": 1699200, + "normalized_name": "zombie carnage 2" + }, + { + "appid": 1699230, + "normalized_name": "hail to the rainbow" + }, + { + "appid": 1699240, + "normalized_name": "merto's part" + }, + { + "appid": 1699260, + "normalized_name": "atlas wept" + }, + { + "appid": 1699280, + "normalized_name": "hammerheart" + }, + { + "appid": 1699290, + "normalized_name": "cult of personality" + }, + { + "appid": 1699320, + "normalized_name": "you have to play this game" + }, + { + "appid": 1699380, + "normalized_name": "super shooter" + }, + { + "appid": 1699390, + "normalized_name": "roxy raccoon" + }, + { + "appid": 1699450, + "normalized_name": "pog 5" + }, + { + "appid": 1699460, + "normalized_name": "jubilane" + }, + { + "appid": 1699480, + "normalized_name": "kletka" + }, + { + "appid": 1699490, + "normalized_name": "qualia's sweets craft / クオリアのお菓子工房" + }, + { + "appid": 1699500, + "normalized_name": "move dodge and kill" + }, + { + "appid": 1699510, + "normalized_name": "海底轮回" + }, + { + "appid": 1699530, + "normalized_name": "hideaway" + }, + { + "appid": 1699660, + "normalized_name": "enjoy" + }, + { + "appid": 1699690, + "normalized_name": "pow!" + }, + { + "appid": 1699710, + "normalized_name": "稗子 the dream of a cockspur" + }, + { + "appid": 1699720, + "normalized_name": "bombardment" + }, + { + "appid": 1699740, + "normalized_name": "dungeon danger traps" + }, + { + "appid": 1699770, + "normalized_name": "plumber 2" + }, + { + "appid": 1699780, + "normalized_name": "splash jump" + }, + { + "appid": 1699790, + "normalized_name": "punkgrad" + }, + { + "appid": 1699820, + "normalized_name": "the adventures of dinobot and tiara!" + }, + { + "appid": 1699830, + "normalized_name": "obscura" + }, + { + "appid": 1699860, + "normalized_name": "parkour tag" + }, + { + "appid": 1699870, + "normalized_name": "sengoku a time of warriors and demons" + }, + { + "appid": 1699880, + "normalized_name": "siren head horror bunker vr" + }, + { + "appid": 1699890, + "normalized_name": "the hungry elevator (alpha)" + }, + { + "appid": 1699900, + "normalized_name": "alexandria iv" + }, + { + "appid": 1699930, + "normalized_name": "patrons" + }, + { + "appid": 1699950, + "normalized_name": "legends of celestite rpg the all bearer" + }, + { + "appid": 1699960, + "normalized_name": "falta" + }, + { + "appid": 1699970, + "normalized_name": "brotate" + }, + { + "appid": 1699980, + "normalized_name": "daydream" + }, + { + "appid": 1699990, + "normalized_name": "spruce" + }, + { + "appid": 1700010, + "normalized_name": "瀚辰书院" + }, + { + "appid": 1700040, + "normalized_name": "neon nights pinball" + }, + { + "appid": 1700050, + "normalized_name": "红色记忆" + }, + { + "appid": 1700080, + "normalized_name": "wyrmhole the forbidden knowledge" + }, + { + "appid": 1700110, + "normalized_name": "the edge of" + }, + { + "appid": 1700130, + "normalized_name": "baking bustle ashley’s dream" + }, + { + "appid": 1700140, + "normalized_name": "hermes tricks of thanatos" + }, + { + "appid": 1700210, + "normalized_name": "从赤手空拳到征服宇宙" + }, + { + "appid": 1700220, + "normalized_name": "东方远空界 ~ vitality of imagination" + }, + { + "appid": 1700240, + "normalized_name": "the revenge of sophia red" + }, + { + "appid": 1700250, + "normalized_name": "cypherpunk essentials" + }, + { + "appid": 1700270, + "normalized_name": "lucky tower" + }, + { + "appid": 1700300, + "normalized_name": "world warfare & economics" + }, + { + "appid": 1700330, + "normalized_name": "chetz!" + }, + { + "appid": 1700380, + "normalized_name": "twin balls" + }, + { + "appid": 1700400, + "normalized_name": "dead detective zombie conspiracy" + }, + { + "appid": 1700410, + "normalized_name": "the gerbil experiment" + }, + { + "appid": 1700420, + "normalized_name": "fun platformer" + }, + { + "appid": 1700440, + "normalized_name": "age of blocks" + }, + { + "appid": 1700450, + "normalized_name": "watashi no kokoro! 君の事が好きです。" + }, + { + "appid": 1700550, + "normalized_name": "intruder on the bridge" + }, + { + "appid": 1700600, + "normalized_name": "esten" + }, + { + "appid": 1700630, + "normalized_name": "天下镖局" + }, + { + "appid": 1700680, + "normalized_name": "ki11er clutter" + }, + { + "appid": 1700690, + "normalized_name": "grandma's footsteps" + }, + { + "appid": 1700780, + "normalized_name": "triplebuilder" + }, + { + "appid": 1700800, + "normalized_name": "break bounds exile 越界:流放者" + }, + { + "appid": 1700840, + "normalized_name": "tales from ahrum" + }, + { + "appid": 1700850, + "normalized_name": "rum skulls" + }, + { + "appid": 1700860, + "normalized_name": "strings of divinity | the spell plague" + }, + { + "appid": 1700870, + "normalized_name": "clanfolk" + }, + { + "appid": 1700890, + "normalized_name": "asteroids recharged" + }, + { + "appid": 1700900, + "normalized_name": "ellie on the ruins" + }, + { + "appid": 1700920, + "normalized_name": "the last war" + }, + { + "appid": 1700930, + "normalized_name": "furcifer's fungeon" + }, + { + "appid": 1700940, + "normalized_name": "anime zodiac" + }, + { + "appid": 1700960, + "normalized_name": "chibi girl vs evil zombie dead" + }, + { + "appid": 1701040, + "normalized_name": "hexagon world" + }, + { + "appid": 1701080, + "normalized_name": "mapama pirates" + }, + { + "appid": 1701090, + "normalized_name": "safezonevr" + }, + { + "appid": 1701130, + "normalized_name": "grab" + }, + { + "appid": 1701140, + "normalized_name": "atomic cards" + }, + { + "appid": 1701150, + "normalized_name": "cats classic onet connect" + }, + { + "appid": 1701160, + "normalized_name": "the darkest star" + }, + { + "appid": 1701190, + "normalized_name": "chessformer" + }, + { + "appid": 1701300, + "normalized_name": "violet girl sexy encounters" + }, + { + "appid": 1701320, + "normalized_name": "zleepy" + }, + { + "appid": 1701330, + "normalized_name": "sokobond express" + }, + { + "appid": 1701340, + "normalized_name": "t.i.mo" + }, + { + "appid": 1701370, + "normalized_name": "practisim designer" + }, + { + "appid": 1701380, + "normalized_name": "cricket 22" + }, + { + "appid": 1701400, + "normalized_name": "hangtogether" + }, + { + "appid": 1701450, + "normalized_name": "bubblestarparty(泡之星派对)" + }, + { + "appid": 1701460, + "normalized_name": "hipwitch" + }, + { + "appid": 1701470, + "normalized_name": "ball partner" + }, + { + "appid": 1701520, + "normalized_name": "afterimage" + }, + { + "appid": 1701560, + "normalized_name": "ruinsmagus" + }, + { + "appid": 1701580, + "normalized_name": "mr.treemp" + }, + { + "appid": 1701590, + "normalized_name": "paradox in the mirror" + }, + { + "appid": 1701650, + "normalized_name": "baklava simulator" + }, + { + "appid": 1701660, + "normalized_name": "demons rise up!" + }, + { + "appid": 1701670, + "normalized_name": "hats are not allowed" + }, + { + "appid": 1701690, + "normalized_name": "erotic jigsaw puzzle 5" + }, + { + "appid": 1701740, + "normalized_name": "noctem" + }, + { + "appid": 1701760, + "normalized_name": "park rangers of the undead" + }, + { + "appid": 1701800, + "normalized_name": "lunistice" + }, + { + "appid": 1701810, + "normalized_name": "sumple" + }, + { + "appid": 1701820, + "normalized_name": "tcstrikers4" + }, + { + "appid": 1701830, + "normalized_name": "tangent rush" + }, + { + "appid": 1701840, + "normalized_name": "exekiller" + }, + { + "appid": 1701850, + "normalized_name": "mosaic your crush!" + }, + { + "appid": 1701870, + "normalized_name": "crumbling" + }, + { + "appid": 1701890, + "normalized_name": "heartless & dreadful return by 72 hours" + }, + { + "appid": 1701900, + "normalized_name": "bring death" + }, + { + "appid": 1701930, + "normalized_name": "catch the donut" + }, + { + "appid": 1701940, + "normalized_name": "day scanner iteration 1" + }, + { + "appid": 1701950, + "normalized_name": "crossing guard joe" + }, + { + "appid": 1702010, + "normalized_name": "sengoku dynasty" + }, + { + "appid": 1702100, + "normalized_name": "believe" + }, + { + "appid": 1702130, + "normalized_name": "acl pro cornhole" + }, + { + "appid": 1702140, + "normalized_name": "left to survive shooter pvp" + }, + { + "appid": 1702170, + "normalized_name": "epic maze" + }, + { + "appid": 1702180, + "normalized_name": "goat's tale" + }, + { + "appid": 1702190, + "normalized_name": "on the earth shift )" + }, + { + "appid": 1702220, + "normalized_name": "cool animals" + }, + { + "appid": 1702230, + "normalized_name": "horny punishment" + }, + { + "appid": 1702260, + "normalized_name": "deadcraft" + }, + { + "appid": 1702300, + "normalized_name": "gravitybot" + }, + { + "appid": 1702330, + "normalized_name": "rune factory 5" + }, + { + "appid": 1702350, + "normalized_name": "mind space" + }, + { + "appid": 1702370, + "normalized_name": "combatant" + }, + { + "appid": 1702380, + "normalized_name": "harbor tycoon" + }, + { + "appid": 1702390, + "normalized_name": "voor de kroon" + }, + { + "appid": 1702400, + "normalized_name": "jackpot bennaction b01 discover the mystery combination" + }, + { + "appid": 1702430, + "normalized_name": "vlad circus descend into madness" + }, + { + "appid": 1702450, + "normalized_name": "língua" + }, + { + "appid": 1702480, + "normalized_name": "gazelle in a winter coat" + }, + { + "appid": 1702490, + "normalized_name": "少女刑侦部" + }, + { + "appid": 1702540, + "normalized_name": "chimeras cursed and forgotten collector's" + }, + { + "appid": 1702550, + "normalized_name": "the birth of an artificial intelligence" + }, + { + "appid": 1702610, + "normalized_name": "primal hunger" + }, + { + "appid": 1702620, + "normalized_name": "nautilus epoch" + }, + { + "appid": 1702630, + "normalized_name": "arcadian rift" + }, + { + "appid": 1702670, + "normalized_name": "game of lust" + }, + { + "appid": 1702680, + "normalized_name": "reboot froth" + }, + { + "appid": 1702740, + "normalized_name": "看谁先死" + }, + { + "appid": 1702760, + "normalized_name": "in next life" + }, + { + "appid": 1702770, + "normalized_name": "lakehouse" + }, + { + "appid": 1702780, + "normalized_name": "infinity tempest" + }, + { + "appid": 1702830, + "normalized_name": "blackjack and waifus hentai version" + }, + { + "appid": 1702850, + "normalized_name": "desperate survival" + }, + { + "appid": 1702880, + "normalized_name": "linearshooter remixed" + }, + { + "appid": 1702890, + "normalized_name": "fallen the last light" + }, + { + "appid": 1702910, + "normalized_name": "blackberry the witch journey" + }, + { + "appid": 1702960, + "normalized_name": "heroes of abyss" + }, + { + "appid": 1702970, + "normalized_name": "kibbi keeper" + }, + { + "appid": 1702980, + "normalized_name": "agryos recovering eden" + }, + { + "appid": 1702990, + "normalized_name": "legend of the outlaw mage" + }, + { + "appid": 1703010, + "normalized_name": "burning brick breaker" + }, + { + "appid": 1703020, + "normalized_name": "spacekraft!" + }, + { + "appid": 1703030, + "normalized_name": "the key of rednow" + }, + { + "appid": 1703040, + "normalized_name": "decision in the desert" + }, + { + "appid": 1703060, + "normalized_name": "conflict in vietnam" + }, + { + "appid": 1703070, + "normalized_name": "airborne ranger" + }, + { + "appid": 1703090, + "normalized_name": "solo flight" + }, + { + "appid": 1703100, + "normalized_name": "crusade in europe" + }, + { + "appid": 1703120, + "normalized_name": "我的未婚妻" + }, + { + "appid": 1703140, + "normalized_name": "isle of jura" + }, + { + "appid": 1703180, + "normalized_name": "handyman corporation" + }, + { + "appid": 1703190, + "normalized_name": "irongate arena" + }, + { + "appid": 1703210, + "normalized_name": "box to the box" + }, + { + "appid": 1703220, + "normalized_name": "hey stranger! i dare you to love me!" + }, + { + "appid": 1703230, + "normalized_name": "colors!" + }, + { + "appid": 1703280, + "normalized_name": "cracked up" + }, + { + "appid": 1703340, + "normalized_name": "the stanley parable ultra deluxe" + }, + { + "appid": 1703380, + "normalized_name": "together tree couple's camp" + }, + { + "appid": 1703450, + "normalized_name": "get it hero!" + }, + { + "appid": 1703460, + "normalized_name": "balls! balls!" + }, + { + "appid": 1703470, + "normalized_name": "12 locks and keys" + }, + { + "appid": 1703480, + "normalized_name": "drama" + }, + { + "appid": 1703500, + "normalized_name": "pirates of gravitae" + }, + { + "appid": 1703540, + "normalized_name": "ineth" + }, + { + "appid": 1703550, + "normalized_name": "hunyadi strategy" + }, + { + "appid": 1703600, + "normalized_name": "our personal space" + }, + { + "appid": 1703610, + "normalized_name": "i just want to be single!! season one" + }, + { + "appid": 1703620, + "normalized_name": "chubmen's strange case file~chapter of corridor~" + }, + { + "appid": 1703640, + "normalized_name": "battlegrounds war tanks and nukes" + }, + { + "appid": 1703650, + "normalized_name": "hashi light" + }, + { + "appid": 1703740, + "normalized_name": "hope vr progressive meditation" + }, + { + "appid": 1703930, + "normalized_name": "kriegsfront battlescaper diorama editor" + }, + { + "appid": 1703950, + "normalized_name": "the far kingdoms magic mosaics" + }, + { + "appid": 1704060, + "normalized_name": "vtuber simulator vtuber模擬器" + }, + { + "appid": 1704070, + "normalized_name": "get stuffed!" + }, + { + "appid": 1704080, + "normalized_name": "bean stalker" + }, + { + "appid": 1704120, + "normalized_name": "it startup tech fodder" + }, + { + "appid": 1704130, + "normalized_name": "mithos" + }, + { + "appid": 1704160, + "normalized_name": "kingdom of nyabur" + }, + { + "appid": 1704170, + "normalized_name": "tank battle royale" + }, + { + "appid": 1704180, + "normalized_name": "broken alliance" + }, + { + "appid": 1704210, + "normalized_name": "evil cucumber" + }, + { + "appid": 1704240, + "normalized_name": "no body" + }, + { + "appid": 1704250, + "normalized_name": "pirated code admin" + }, + { + "appid": 1704260, + "normalized_name": "chromancy" + }, + { + "appid": 1704310, + "normalized_name": "burning horns a bara isekai jrpg" + }, + { + "appid": 1704490, + "normalized_name": "inferno" + }, + { + "appid": 1704530, + "normalized_name": "100 days" + }, + { + "appid": 1704540, + "normalized_name": "pico islands" + }, + { + "appid": 1704550, + "normalized_name": "test re" + }, + { + "appid": 1704590, + "normalized_name": "electraplanet" + }, + { + "appid": 1704620, + "normalized_name": "harrier jump jet" + }, + { + "appid": 1704630, + "normalized_name": "dogfight 80 years of aerial warfare" + }, + { + "appid": 1704640, + "normalized_name": "the ancient art of war in the skies" + }, + { + "appid": 1704670, + "normalized_name": "赛博心城:失物招领处" + }, + { + "appid": 1704700, + "normalized_name": "mosey the pirate" + }, + { + "appid": 1704730, + "normalized_name": "vacant kingdom" + }, + { + "appid": 1704740, + "normalized_name": "heaven's rising" + }, + { + "appid": 1704760, + "normalized_name": "smalles" + }, + { + "appid": 1704770, + "normalized_name": "geometrix" + }, + { + "appid": 1704780, + "normalized_name": "pirates vs monkeys" + }, + { + "appid": 1704820, + "normalized_name": "gun&dun" + }, + { + "appid": 1704830, + "normalized_name": "dr4x" + }, + { + "appid": 1704850, + "normalized_name": "project rustbound" + }, + { + "appid": 1704920, + "normalized_name": "scelestum" + }, + { + "appid": 1704940, + "normalized_name": "新生" + }, + { + "appid": 1704950, + "normalized_name": "the beast awoke to eat your darlings" + }, + { + "appid": 1704980, + "normalized_name": "jigsaw puzzle jack and the beanstalk" + }, + { + "appid": 1705020, + "normalized_name": "aimgogogo" + }, + { + "appid": 1705030, + "normalized_name": "wadality" + }, + { + "appid": 1705130, + "normalized_name": "super liquid soccer" + }, + { + "appid": 1705140, + "normalized_name": "final profit a shop rpg" + }, + { + "appid": 1705150, + "normalized_name": "skull chainz" + }, + { + "appid": 1705180, + "normalized_name": "gunner heat pc!" + }, + { + "appid": 1705220, + "normalized_name": "烈山海贰" + }, + { + "appid": 1705350, + "normalized_name": "darkcoating" + }, + { + "appid": 1705380, + "normalized_name": "cracks" + }, + { + "appid": 1705390, + "normalized_name": "freeland" + }, + { + "appid": 1705400, + "normalized_name": "the shape of time" + }, + { + "appid": 1705410, + "normalized_name": "bloody efforts" + }, + { + "appid": 1705420, + "normalized_name": "高考之路" + }, + { + "appid": 1705470, + "normalized_name": "doodle art drawing games" + }, + { + "appid": 1705480, + "normalized_name": "escape from dufo" + }, + { + "appid": 1705500, + "normalized_name": "jelly" + }, + { + "appid": 1705510, + "normalized_name": "hide and seek heist police vs thieves" + }, + { + "appid": 1705520, + "normalized_name": "my furry neighbour 🐾" + }, + { + "appid": 1705540, + "normalized_name": "dungeon arena" + }, + { + "appid": 1705560, + "normalized_name": "kitty adventure" + }, + { + "appid": 1705580, + "normalized_name": "sinkr 3" + }, + { + "appid": 1705590, + "normalized_name": "larry the unlucky part 2" + }, + { + "appid": 1705610, + "normalized_name": "pushops" + }, + { + "appid": 1705620, + "normalized_name": "ebonside" + }, + { + "appid": 1705650, + "normalized_name": "last words" + }, + { + "appid": 1705720, + "normalized_name": "aftermath" + }, + { + "appid": 1705730, + "normalized_name": "ingredienta" + }, + { + "appid": 1705760, + "normalized_name": "payload" + }, + { + "appid": 1705780, + "normalized_name": "guinea pig" + }, + { + "appid": 1705860, + "normalized_name": "blind postman" + }, + { + "appid": 1705870, + "normalized_name": "cube e 2" + }, + { + "appid": 1705880, + "normalized_name": "4 months of you" + }, + { + "appid": 1705890, + "normalized_name": "zodiacchild" + }, + { + "appid": 1705920, + "normalized_name": "space endeavor" + }, + { + "appid": 1705930, + "normalized_name": "born into fear" + }, + { + "appid": 1705970, + "normalized_name": "lataman" + }, + { + "appid": 1706060, + "normalized_name": "cubic dweller" + }, + { + "appid": 1706090, + "normalized_name": "bean and nothingness" + }, + { + "appid": 1706100, + "normalized_name": "untrue new world" + }, + { + "appid": 1706120, + "normalized_name": "stacky desktop" + }, + { + "appid": 1706130, + "normalized_name": "the other side my own horror" + }, + { + "appid": 1706150, + "normalized_name": "master theft tvs" + }, + { + "appid": 1706170, + "normalized_name": "dark crypt" + }, + { + "appid": 1706190, + "normalized_name": "sudokats" + }, + { + "appid": 1706210, + "normalized_name": "reloader test_subject" + }, + { + "appid": 1706220, + "normalized_name": "kobolok" + }, + { + "appid": 1706240, + "normalized_name": "coworker" + }, + { + "appid": 1706260, + "normalized_name": "unionatic" + }, + { + "appid": 1706270, + "normalized_name": "go run a dungeon" + }, + { + "appid": 1706280, + "normalized_name": "space voyage episode 1 a big soviet adventure" + }, + { + "appid": 1706310, + "normalized_name": "star shift origins" + }, + { + "appid": 1706340, + "normalized_name": "big klondike classic solitaire" + }, + { + "appid": 1706360, + "normalized_name": "annihilate the spance" + }, + { + "appid": 1706390, + "normalized_name": "renderb" + }, + { + "appid": 1706420, + "normalized_name": "dungeon renovators" + }, + { + "appid": 1706440, + "normalized_name": "island of girls dreams" + }, + { + "appid": 1706450, + "normalized_name": "mvr" + }, + { + "appid": 1706470, + "normalized_name": "space to grow" + }, + { + "appid": 1706480, + "normalized_name": "alive paint" + }, + { + "appid": 1706510, + "normalized_name": "songs of glimmerwick" + }, + { + "appid": 1706540, + "normalized_name": "limitless hunger" + }, + { + "appid": 1706550, + "normalized_name": "nebular crush" + }, + { + "appid": 1706570, + "normalized_name": "chupacabras night hunt" + }, + { + "appid": 1706590, + "normalized_name": "princess erch 尔茄公主" + }, + { + "appid": 1706640, + "normalized_name": "69 cindy love" + }, + { + "appid": 1706650, + "normalized_name": "women's prison" + }, + { + "appid": 1706670, + "normalized_name": "无限重启" + }, + { + "appid": 1706710, + "normalized_name": "pizza apocalypse" + }, + { + "appid": 1706720, + "normalized_name": "adventurers guild" + }, + { + "appid": 1706740, + "normalized_name": "jaws & claws" + }, + { + "appid": 1706770, + "normalized_name": "mazing" + }, + { + "appid": 1706800, + "normalized_name": "the art of flight" + }, + { + "appid": 1706810, + "normalized_name": "arc alien raid combat" + }, + { + "appid": 1706820, + "normalized_name": "milf city" + }, + { + "appid": 1706850, + "normalized_name": "tame it!" + }, + { + "appid": 1706870, + "normalized_name": "sven's sudokupad" + }, + { + "appid": 1706890, + "normalized_name": "find objects" + }, + { + "appid": 1706920, + "normalized_name": "firekeep" + }, + { + "appid": 1706930, + "normalized_name": "a taste of the past" + }, + { + "appid": 1706940, + "normalized_name": "junkyard fury" + }, + { + "appid": 1706950, + "normalized_name": "fat & furious" + }, + { + "appid": 1706960, + "normalized_name": "the mysterious cat tower" + }, + { + "appid": 1706970, + "normalized_name": "haunted shores" + }, + { + "appid": 1706980, + "normalized_name": "bookstore simulator" + }, + { + "appid": 1707030, + "normalized_name": "axial drift" + }, + { + "appid": 1707040, + "normalized_name": "octoquest" + }, + { + "appid": 1707050, + "normalized_name": "geo duck" + }, + { + "appid": 1707070, + "normalized_name": "gga" + }, + { + "appid": 1707090, + "normalized_name": "escapethisbigmaze!" + }, + { + "appid": 1707100, + "normalized_name": "ヴァジアルサーガ愚民化戦略xx(ダブルエックス)" + }, + { + "appid": 1707120, + "normalized_name": "cepheus protocol anthology season 1" + }, + { + "appid": 1707150, + "normalized_name": "virtual game" + }, + { + "appid": 1707170, + "normalized_name": "sumo tatami prologue" + }, + { + "appid": 1707260, + "normalized_name": "hope for winter" + }, + { + "appid": 1707270, + "normalized_name": "shattered reality" + }, + { + "appid": 1707280, + "normalized_name": "shirokuro's adventure" + }, + { + "appid": 1707310, + "normalized_name": "rue" + }, + { + "appid": 1707320, + "normalized_name": "lovely girls puzzle" + }, + { + "appid": 1707330, + "normalized_name": "ordinary human game" + }, + { + "appid": 1707380, + "normalized_name": "afterlife pharmaceuticals" + }, + { + "appid": 1707400, + "normalized_name": "larcin lazer" + }, + { + "appid": 1707410, + "normalized_name": "aspect" + }, + { + "appid": 1707450, + "normalized_name": "地獄廚房rpg" + }, + { + "appid": 1707470, + "normalized_name": "zombie quest" + }, + { + "appid": 1707490, + "normalized_name": "uniborne" + }, + { + "appid": 1707510, + "normalized_name": "quantum vision board" + }, + { + "appid": 1707540, + "normalized_name": "escape from monster" + }, + { + "appid": 1707550, + "normalized_name": "granny 3" + }, + { + "appid": 1707560, + "normalized_name": "lost alone ep.1 sorellina" + }, + { + "appid": 1707570, + "normalized_name": "merchant's game" + }, + { + "appid": 1707580, + "normalized_name": "sigurður" + }, + { + "appid": 1707590, + "normalized_name": "mystery chamber forever" + }, + { + "appid": 1707610, + "normalized_name": "imperium bce" + }, + { + "appid": 1707620, + "normalized_name": "gazzlers" + }, + { + "appid": 1707630, + "normalized_name": "dungeon conqueror" + }, + { + "appid": 1707640, + "normalized_name": "fantasma ville" + }, + { + "appid": 1707650, + "normalized_name": "swords and sandals immortals" + }, + { + "appid": 1707670, + "normalized_name": "square word summer edition☀" + }, + { + "appid": 1707680, + "normalized_name": "referee simulator" + }, + { + "appid": 1707690, + "normalized_name": "star fisher" + }, + { + "appid": 1707700, + "normalized_name": "vincent the vampire" + }, + { + "appid": 1707710, + "normalized_name": "puppet house" + }, + { + "appid": 1707720, + "normalized_name": "blood for poppies" + }, + { + "appid": 1707740, + "normalized_name": "bordercollie blaster" + }, + { + "appid": 1707770, + "normalized_name": "animals memory monkeys" + }, + { + "appid": 1707780, + "normalized_name": "parasite infection" + }, + { + "appid": 1707790, + "normalized_name": "dorfs hammers for hire" + }, + { + "appid": 1707830, + "normalized_name": "pintman escape the lockdown" + }, + { + "appid": 1707840, + "normalized_name": "marble pop paradise" + }, + { + "appid": 1707850, + "normalized_name": "cheaphaven" + }, + { + "appid": 1707870, + "normalized_name": "rifftrax the game" + }, + { + "appid": 1707880, + "normalized_name": "red brick hotel" + }, + { + "appid": 1707890, + "normalized_name": "bacteria wars" + }, + { + "appid": 1707950, + "normalized_name": "wisper" + }, + { + "appid": 1707970, + "normalized_name": "arafinn kontor" + }, + { + "appid": 1707990, + "normalized_name": "skydance's behemoth" + }, + { + "appid": 1708010, + "normalized_name": "the expanse a telltale series" + }, + { + "appid": 1708030, + "normalized_name": "spaceseals" + }, + { + "appid": 1708050, + "normalized_name": "agent simulator" + }, + { + "appid": 1708070, + "normalized_name": "speedrun academie" + }, + { + "appid": 1708110, + "normalized_name": "misericorde volume one" + }, + { + "appid": 1708150, + "normalized_name": "juice galaxy" + }, + { + "appid": 1708180, + "normalized_name": "man's body for adults" + }, + { + "appid": 1708190, + "normalized_name": "100 hidden rams" + }, + { + "appid": 1708200, + "normalized_name": "on your hands" + }, + { + "appid": 1708250, + "normalized_name": "jump if you can!" + }, + { + "appid": 1708270, + "normalized_name": "running robot man 4" + }, + { + "appid": 1708290, + "normalized_name": "灵异ae" + }, + { + "appid": 1708300, + "normalized_name": "magical girls second magic" + }, + { + "appid": 1708320, + "normalized_name": "grappin" + }, + { + "appid": 1708340, + "normalized_name": "blazingangel mistletear" + }, + { + "appid": 1708350, + "normalized_name": "the surelock agency" + }, + { + "appid": 1708390, + "normalized_name": "hentai jigsaw girls 2" + }, + { + "appid": 1708400, + "normalized_name": "ts fantasy" + }, + { + "appid": 1708460, + "normalized_name": "obsideo" + }, + { + "appid": 1708470, + "normalized_name": "oh dungeon master" + }, + { + "appid": 1708490, + "normalized_name": "nothing to declare" + }, + { + "appid": 1708510, + "normalized_name": "bankers & bonkers" + }, + { + "appid": 1708540, + "normalized_name": "leganda" + }, + { + "appid": 1708550, + "normalized_name": "cassiodora" + }, + { + "appid": 1708560, + "normalized_name": "in flames" + }, + { + "appid": 1708570, + "normalized_name": "those who came healing solarus" + }, + { + "appid": 1708610, + "normalized_name": "pretty girls breakout!" + }, + { + "appid": 1708690, + "normalized_name": "the adventures of sisharpic" + }, + { + "appid": 1708710, + "normalized_name": "food delivery battle" + }, + { + "appid": 1708730, + "normalized_name": "traffic chase" + }, + { + "appid": 1708750, + "normalized_name": "magic stone guardians" + }, + { + "appid": 1708770, + "normalized_name": "30 birds" + }, + { + "appid": 1708800, + "normalized_name": "cotton 2 saturn tribute" + }, + { + "appid": 1708810, + "normalized_name": "cotton boomerang saturn tribute" + }, + { + "appid": 1708820, + "normalized_name": "guardian force saturn tribute" + }, + { + "appid": 1708850, + "normalized_name": "drug dealer simulator 2" + }, + { + "appid": 1708870, + "normalized_name": "第七号列车 train no. 7" + }, + { + "appid": 1708880, + "normalized_name": "kratoria" + }, + { + "appid": 1708950, + "normalized_name": "battle train" + }, + { + "appid": 1708970, + "normalized_name": "the prince of landis" + }, + { + "appid": 1708990, + "normalized_name": "bingus my beloved" + }, + { + "appid": 1709000, + "normalized_name": "heavenly hammer" + }, + { + "appid": 1709040, + "normalized_name": "the endless adventure" + }, + { + "appid": 1709050, + "normalized_name": "nitro kid" + }, + { + "appid": 1709060, + "normalized_name": "secrets of the lost tomb" + }, + { + "appid": 1709070, + "normalized_name": "car tehc" + }, + { + "appid": 1709080, + "normalized_name": "dating simulator" + }, + { + "appid": 1709090, + "normalized_name": "candy gun" + }, + { + "appid": 1709150, + "normalized_name": "elec" + }, + { + "appid": 1709170, + "normalized_name": "paradise marsh" + }, + { + "appid": 1709180, + "normalized_name": "solitaire expeditions" + }, + { + "appid": 1709190, + "normalized_name": "karma flow 2 tears of a ghost" + }, + { + "appid": 1709210, + "normalized_name": "love duction! the guide for galactic lovers" + }, + { + "appid": 1709240, + "normalized_name": "strange investigations becoming collector's" + }, + { + "appid": 1709250, + "normalized_name": "error 44" + }, + { + "appid": 1709260, + "normalized_name": "dice tourney" + }, + { + "appid": 1709280, + "normalized_name": "uspavanka" + }, + { + "appid": 1709290, + "normalized_name": "laser bounce" + }, + { + "appid": 1709320, + "normalized_name": "five likes please" + }, + { + "appid": 1709330, + "normalized_name": "as above so below" + }, + { + "appid": 1709350, + "normalized_name": "bat boy" + }, + { + "appid": 1709440, + "normalized_name": "kawaii jigsaw" + }, + { + "appid": 1709450, + "normalized_name": "grim tales the heir collector's" + }, + { + "appid": 1709460, + "normalized_name": "hot and lovely 4" + }, + { + "appid": 1709500, + "normalized_name": "adorable witch 2" + }, + { + "appid": 1709510, + "normalized_name": "remoteness" + }, + { + "appid": 1709520, + "normalized_name": "age of albuvia" + }, + { + "appid": 1709540, + "normalized_name": "kill king" + }, + { + "appid": 1709550, + "normalized_name": "schizm mysterious journey" + }, + { + "appid": 1709570, + "normalized_name": "delicious fruitworld" + }, + { + "appid": 1709580, + "normalized_name": "tiny robots recharged" + }, + { + "appid": 1709590, + "normalized_name": "honeyhoneyhoney!" + }, + { + "appid": 1709630, + "normalized_name": "iraq war" + }, + { + "appid": 1709640, + "normalized_name": "the sixth faction" + }, + { + "appid": 1709650, + "normalized_name": "onetics new evolution" + }, + { + "appid": 1709660, + "normalized_name": "archie" + }, + { + "appid": 1709700, + "normalized_name": "how to say goodbye" + }, + { + "appid": 1709710, + "normalized_name": "cast piercer" + }, + { + "appid": 1709730, + "normalized_name": "beyond the edge of owlsgard" + }, + { + "appid": 1709760, + "normalized_name": "slumhack" + }, + { + "appid": 1709780, + "normalized_name": "cute invaders" + }, + { + "appid": 1709820, + "normalized_name": "custom machinery" + }, + { + "appid": 1709830, + "normalized_name": "memories of war undead decimation" + }, + { + "appid": 1709870, + "normalized_name": "spirited thief" + }, + { + "appid": 1709880, + "normalized_name": "loco motive" + }, + { + "appid": 1709900, + "normalized_name": "tower tactics liberation" + }, + { + "appid": 1709920, + "normalized_name": "idle pins" + }, + { + "appid": 1709950, + "normalized_name": "lounge zone" + }, + { + "appid": 1710000, + "normalized_name": "above below" + }, + { + "appid": 1710040, + "normalized_name": "saved" + }, + { + "appid": 1710100, + "normalized_name": "bing in wonderland" + }, + { + "appid": 1710110, + "normalized_name": "bad boro" + }, + { + "appid": 1710120, + "normalized_name": "super astrovade" + }, + { + "appid": 1710140, + "normalized_name": "puzzle light slide" + }, + { + "appid": 1710160, + "normalized_name": "bad boro prologue" + }, + { + "appid": 1710170, + "normalized_name": "blade of darkness" + }, + { + "appid": 1710180, + "normalized_name": "skye the misty isle" + }, + { + "appid": 1710200, + "normalized_name": "drk story black book" + }, + { + "appid": 1710220, + "normalized_name": "walking into walls" + }, + { + "appid": 1710250, + "normalized_name": "alice trapped beyond wonderland" + }, + { + "appid": 1710260, + "normalized_name": "catsploration" + }, + { + "appid": 1710290, + "normalized_name": "helper cat" + }, + { + "appid": 1710310, + "normalized_name": "route me mail and delivery co" + }, + { + "appid": 1710340, + "normalized_name": "inertia" + }, + { + "appid": 1710390, + "normalized_name": "いの べーしょん! 2007" + }, + { + "appid": 1710400, + "normalized_name": "cavegirl adventures" + }, + { + "appid": 1710460, + "normalized_name": "crash cleaner" + }, + { + "appid": 1710480, + "normalized_name": "autochestlur" + }, + { + "appid": 1710490, + "normalized_name": "slime killer" + }, + { + "appid": 1710500, + "normalized_name": "night hunter" + }, + { + "appid": 1710520, + "normalized_name": "mind blowing girls 3" + }, + { + "appid": 1710530, + "normalized_name": "hit confirmed" + }, + { + "appid": 1710540, + "normalized_name": "fall of porcupine" + }, + { + "appid": 1710550, + "normalized_name": "world of bombs" + }, + { + "appid": 1710570, + "normalized_name": "king of the pit" + }, + { + "appid": 1710580, + "normalized_name": "motogp22" + }, + { + "appid": 1710590, + "normalized_name": "overheat" + }, + { + "appid": 1710600, + "normalized_name": "jelly 2" + }, + { + "appid": 1710620, + "normalized_name": "winter games 2023" + }, + { + "appid": 1710670, + "normalized_name": "tracery of fate" + }, + { + "appid": 1710690, + "normalized_name": "rebels under the spell of magic (chapter 2)" + }, + { + "appid": 1710710, + "normalized_name": "another dungeon" + }, + { + "appid": 1710720, + "normalized_name": "canverse" + }, + { + "appid": 1710730, + "normalized_name": "passive income" + }, + { + "appid": 1710740, + "normalized_name": "dungeon full dive game master" + }, + { + "appid": 1710750, + "normalized_name": "slit mouthed 口裂け女" + }, + { + "appid": 1710760, + "normalized_name": "the orphan a pop up book adventure" + }, + { + "appid": 1710790, + "normalized_name": "finley's the colour of radiation" + }, + { + "appid": 1710810, + "normalized_name": "legend of the ape" + }, + { + "appid": 1710820, + "normalized_name": "cleared hot" + }, + { + "appid": 1710830, + "normalized_name": "super nano blaster" + }, + { + "appid": 1710840, + "normalized_name": "coins invaders" + }, + { + "appid": 1710870, + "normalized_name": "super drag race" + }, + { + "appid": 1710880, + "normalized_name": "seductive tombs beach love" + }, + { + "appid": 1710890, + "normalized_name": "let me die (inside)" + }, + { + "appid": 1710910, + "normalized_name": "sinfeld evil resident" + }, + { + "appid": 1710920, + "normalized_name": "dwerve prologue" + }, + { + "appid": 1710930, + "normalized_name": "bubble people" + }, + { + "appid": 1710950, + "normalized_name": "mythic legions tactics" + }, + { + "appid": 1710960, + "normalized_name": "no longer human" + }, + { + "appid": 1710970, + "normalized_name": "vacation adventures park ranger 12" + }, + { + "appid": 1710990, + "normalized_name": "buttonmash" + }, + { + "appid": 1711070, + "normalized_name": "circe's revenge" + }, + { + "appid": 1711080, + "normalized_name": "go home mr. fisk!" + }, + { + "appid": 1711110, + "normalized_name": "karvaros" + }, + { + "appid": 1711120, + "normalized_name": "taxi simulator" + }, + { + "appid": 1711160, + "normalized_name": "jigsaw with animals" + }, + { + "appid": 1711190, + "normalized_name": "bot.vinnik chess early ussr championships" + }, + { + "appid": 1711230, + "normalized_name": "unscared" + }, + { + "appid": 1711280, + "normalized_name": "this thing of ours" + }, + { + "appid": 1711290, + "normalized_name": "battle arena soccer" + }, + { + "appid": 1711300, + "normalized_name": "blood safari" + }, + { + "appid": 1711310, + "normalized_name": "turdy" + }, + { + "appid": 1711400, + "normalized_name": "排球入门指南" + }, + { + "appid": 1711420, + "normalized_name": "queer man peering into a rock pool.jpg" + }, + { + "appid": 1711460, + "normalized_name": "hentai love" + }, + { + "appid": 1711470, + "normalized_name": "sidequest reanimated" + }, + { + "appid": 1711490, + "normalized_name": "andor ladies" + }, + { + "appid": 1711520, + "normalized_name": "great marble adventure" + }, + { + "appid": 1711530, + "normalized_name": "justice chronicles" + }, + { + "appid": 1711540, + "normalized_name": "ghost sync" + }, + { + "appid": 1711560, + "normalized_name": "doxyland the last metaverse" + }, + { + "appid": 1711600, + "normalized_name": "the beast in the cave" + }, + { + "appid": 1711610, + "normalized_name": "地牢100" + }, + { + "appid": 1711620, + "normalized_name": "demonheart the ice demon" + }, + { + "appid": 1711680, + "normalized_name": "dodge dots" + }, + { + "appid": 1711690, + "normalized_name": "aran's bike trip" + }, + { + "appid": 1711700, + "normalized_name": "souno's curse" + }, + { + "appid": 1711740, + "normalized_name": "cheftastic! buffet blast" + }, + { + "appid": 1711790, + "normalized_name": "knight of the lions" + }, + { + "appid": 1711840, + "normalized_name": "ninja stealth 4" + }, + { + "appid": 1711910, + "normalized_name": "street dreams" + }, + { + "appid": 1711930, + "normalized_name": "between two cities stonemaier games" + }, + { + "appid": 1711940, + "normalized_name": "bevair" + }, + { + "appid": 1711950, + "normalized_name": "gwent rogue mage (single player expansion)" + }, + { + "appid": 1711960, + "normalized_name": "orenji iro no kumo" + }, + { + "appid": 1711980, + "normalized_name": "hentai men" + }, + { + "appid": 1711990, + "normalized_name": "tocovix" + }, + { + "appid": 1712020, + "normalized_name": "too many santas!" + }, + { + "appid": 1712030, + "normalized_name": "flyland wars 1 mountain climb" + }, + { + "appid": 1712050, + "normalized_name": "gehinnom" + }, + { + "appid": 1712110, + "normalized_name": "deep space outpost" + }, + { + "appid": 1712120, + "normalized_name": "i'm a cowboy western shooter" + }, + { + "appid": 1712150, + "normalized_name": "sokocat dungeon" + }, + { + "appid": 1712270, + "normalized_name": "lucky me" + }, + { + "appid": 1712290, + "normalized_name": "castle siege" + }, + { + "appid": 1712300, + "normalized_name": "garrison" + }, + { + "appid": 1712310, + "normalized_name": "panda in the clouds" + }, + { + "appid": 1712320, + "normalized_name": "reverse module" + }, + { + "appid": 1712340, + "normalized_name": "jericho's rose" + }, + { + "appid": 1712350, + "normalized_name": "riven" + }, + { + "appid": 1712360, + "normalized_name": "rookie bowman" + }, + { + "appid": 1712370, + "normalized_name": "a day of maintenance" + }, + { + "appid": 1712390, + "normalized_name": "martial law" + }, + { + "appid": 1712420, + "normalized_name": "thats life of ralph" + }, + { + "appid": 1712430, + "normalized_name": "klondike re imagined" + }, + { + "appid": 1712490, + "normalized_name": "station 17" + }, + { + "appid": 1712510, + "normalized_name": "light crawler" + }, + { + "appid": 1712530, + "normalized_name": "nikhil murthy's syphilisation" + }, + { + "appid": 1712570, + "normalized_name": "the dive" + }, + { + "appid": 1712580, + "normalized_name": "東方霊守祀 ~ consciousness' unity of opposites" + }, + { + "appid": 1712590, + "normalized_name": "hoverbike escape" + }, + { + "appid": 1712640, + "normalized_name": "vale" + }, + { + "appid": 1712670, + "normalized_name": "idle trading simulator" + }, + { + "appid": 1712680, + "normalized_name": "captures" + }, + { + "appid": 1712690, + "normalized_name": "sourceworlds" + }, + { + "appid": 1712700, + "normalized_name": "memori" + }, + { + "appid": 1712720, + "normalized_name": "droned" + }, + { + "appid": 1712730, + "normalized_name": "aptly rolling" + }, + { + "appid": 1712750, + "normalized_name": "pixels digital creatures" + }, + { + "appid": 1712810, + "normalized_name": "minimal crypt" + }, + { + "appid": 1712820, + "normalized_name": "brave dungeon + dark witch's story combat" + }, + { + "appid": 1712830, + "normalized_name": "baldi's basics classic" + }, + { + "appid": 1712840, + "normalized_name": "tiny tina's assault on dragon keep a wonderlands one shot adventure" + }, + { + "appid": 1712880, + "normalized_name": "alt oxygen" + }, + { + "appid": 1712890, + "normalized_name": "desolation tycoon" + }, + { + "appid": 1712900, + "normalized_name": "他人的婚约者变成了我的女人" + }, + { + "appid": 1712950, + "normalized_name": "logic light" + }, + { + "appid": 1713050, + "normalized_name": "cave explorer" + }, + { + "appid": 1713060, + "normalized_name": "g modeアーカイブス39 フライハイトクラウディア4 永遠の絆" + }, + { + "appid": 1713070, + "normalized_name": "bow man" + }, + { + "appid": 1713080, + "normalized_name": "crossover roll for initiative" + }, + { + "appid": 1713100, + "normalized_name": "江湖乐子人" + }, + { + "appid": 1713130, + "normalized_name": "aledorn" + }, + { + "appid": 1713140, + "normalized_name": "arctictopia" + }, + { + "appid": 1713160, + "normalized_name": "怒拳:连击&斩杀" + }, + { + "appid": 1713170, + "normalized_name": "air hunter" + }, + { + "appid": 1713190, + "normalized_name": "neko candy shop" + }, + { + "appid": 1713200, + "normalized_name": "tales of komori prologue" + }, + { + "appid": 1713210, + "normalized_name": "go emoji go the maze" + }, + { + "appid": 1713220, + "normalized_name": "true magician" + }, + { + "appid": 1713260, + "normalized_name": "relash" + }, + { + "appid": 1713290, + "normalized_name": "fleurbirdshoot" + }, + { + "appid": 1713310, + "normalized_name": "league of felt tanks together" + }, + { + "appid": 1713340, + "normalized_name": "arpsic" + }, + { + "appid": 1713350, + "normalized_name": "project castaway" + }, + { + "appid": 1713400, + "normalized_name": "chicken cannon!" + }, + { + "appid": 1713410, + "normalized_name": "metal golem first contact" + }, + { + "appid": 1713470, + "normalized_name": "mike the cat" + }, + { + "appid": 1713530, + "normalized_name": "station commander" + }, + { + "appid": 1713550, + "normalized_name": "star witch" + }, + { + "appid": 1713590, + "normalized_name": "blockquake" + }, + { + "appid": 1713610, + "normalized_name": "purrgatory" + }, + { + "appid": 1713620, + "normalized_name": "wolf attack" + }, + { + "appid": 1713640, + "normalized_name": "ransack raccoon" + }, + { + "appid": 1713660, + "normalized_name": "awesome puzzle" + }, + { + "appid": 1713680, + "normalized_name": "80's night" + }, + { + "appid": 1713710, + "normalized_name": "saveher" + }, + { + "appid": 1713720, + "normalized_name": "wall of insanity" + }, + { + "appid": 1713730, + "normalized_name": "moadra" + }, + { + "appid": 1713750, + "normalized_name": "ginger the tooth fairy" + }, + { + "appid": 1713770, + "normalized_name": "fracture hell" + }, + { + "appid": 1713790, + "normalized_name": "bee craft" + }, + { + "appid": 1713810, + "normalized_name": "lumencraft" + }, + { + "appid": 1713820, + "normalized_name": "police getaway" + }, + { + "appid": 1713830, + "normalized_name": "ark of loif" + }, + { + "appid": 1713880, + "normalized_name": "hungry lizard" + }, + { + "appid": 1713910, + "normalized_name": "robo boy risky venture" + }, + { + "appid": 1713980, + "normalized_name": "verbal void" + }, + { + "appid": 1713990, + "normalized_name": "parasomnia" + }, + { + "appid": 1714010, + "normalized_name": "the fortress of varnolis" + }, + { + "appid": 1714020, + "normalized_name": "rd mars" + }, + { + "appid": 1714040, + "normalized_name": "super auto pets" + }, + { + "appid": 1714050, + "normalized_name": "sokobot" + }, + { + "appid": 1714070, + "normalized_name": "run run run" + }, + { + "appid": 1714080, + "normalized_name": "red tether >" + }, + { + "appid": 1714090, + "normalized_name": "watermelon country" + }, + { + "appid": 1714100, + "normalized_name": "castle daybreak" + }, + { + "appid": 1714130, + "normalized_name": "méandres" + }, + { + "appid": 1714180, + "normalized_name": "black widow recharged" + }, + { + "appid": 1714190, + "normalized_name": "breakout recharged" + }, + { + "appid": 1714200, + "normalized_name": "パズルハムスター ~地球冒険記~" + }, + { + "appid": 1714210, + "normalized_name": "vantageous" + }, + { + "appid": 1714240, + "normalized_name": "soul stalker" + }, + { + "appid": 1714250, + "normalized_name": "pets hotel" + }, + { + "appid": 1714270, + "normalized_name": "nrg" + }, + { + "appid": 1714280, + "normalized_name": "queen of zarkov" + }, + { + "appid": 1714300, + "normalized_name": "typomancer in the feather's way" + }, + { + "appid": 1714310, + "normalized_name": "a gladiator's hell" + }, + { + "appid": 1714320, + "normalized_name": "find love or die trying" + }, + { + "appid": 1714350, + "normalized_name": "badlands" + }, + { + "appid": 1714360, + "normalized_name": "angel wings endless night" + }, + { + "appid": 1714370, + "normalized_name": "w.r.m." + }, + { + "appid": 1714380, + "normalized_name": "pirates of the sea" + }, + { + "appid": 1714390, + "normalized_name": "我的老婆是王女大人" + }, + { + "appid": 1714400, + "normalized_name": "neo art space" + }, + { + "appid": 1714410, + "normalized_name": "sanity" + }, + { + "appid": 1714420, + "normalized_name": "fursan al aqsa the knights of the al aqsa mosque" + }, + { + "appid": 1714430, + "normalized_name": "time's up in tiny town" + }, + { + "appid": 1714440, + "normalized_name": "angels cove" + }, + { + "appid": 1714460, + "normalized_name": "starry knight" + }, + { + "appid": 1714470, + "normalized_name": "塌方 landsilid" + }, + { + "appid": 1714480, + "normalized_name": "where is he" + }, + { + "appid": 1714500, + "normalized_name": "al ankabut the spider" + }, + { + "appid": 1714510, + "normalized_name": "kusan city of wolves" + }, + { + "appid": 1714530, + "normalized_name": "blood of mehran" + }, + { + "appid": 1714550, + "normalized_name": "ninja issen (忍者一閃)" + }, + { + "appid": 1714580, + "normalized_name": "moon remix rpg adventure" + }, + { + "appid": 1714590, + "normalized_name": "buck up and drive!" + }, + { + "appid": 1714640, + "normalized_name": "infinite sky" + }, + { + "appid": 1714650, + "normalized_name": "life in the machine" + }, + { + "appid": 1714660, + "normalized_name": "camellia train" + }, + { + "appid": 1714680, + "normalized_name": "slimefrog" + }, + { + "appid": 1714710, + "normalized_name": "castle manager" + }, + { + "appid": 1714730, + "normalized_name": "every day is more incredible than the previous" + }, + { + "appid": 1714760, + "normalized_name": "raygun chess" + }, + { + "appid": 1714770, + "normalized_name": "the misanthropic girl / 虚無と物質の彼女" + }, + { + "appid": 1714830, + "normalized_name": "dan sisal's 501 darts trainer" + }, + { + "appid": 1714860, + "normalized_name": "邪神大陆(evil god land)" + }, + { + "appid": 1714900, + "normalized_name": "first dwarf" + }, + { + "appid": 1714910, + "normalized_name": "slappy board" + }, + { + "appid": 1714920, + "normalized_name": "charon's staircase" + }, + { + "appid": 1714960, + "normalized_name": "astero inc." + }, + { + "appid": 1714970, + "normalized_name": "manifold" + }, + { + "appid": 1714980, + "normalized_name": "hospital renovator" + }, + { + "appid": 1715000, + "normalized_name": "road builder" + }, + { + "appid": 1715030, + "normalized_name": "godstone" + }, + { + "appid": 1715040, + "normalized_name": "outer space war gears" + }, + { + "appid": 1715130, + "normalized_name": "crysis" + }, + { + "appid": 1715160, + "normalized_name": "howloween hero" + }, + { + "appid": 1715190, + "normalized_name": "the fall of balance" + }, + { + "appid": 1715220, + "normalized_name": "宠物王国2" + }, + { + "appid": 1715250, + "normalized_name": "project martians" + }, + { + "appid": 1715280, + "normalized_name": "airportsim" + }, + { + "appid": 1715290, + "normalized_name": "little cube trip" + }, + { + "appid": 1715330, + "normalized_name": "infinity treasures" + }, + { + "appid": 1715350, + "normalized_name": "undetected" + }, + { + "appid": 1715370, + "normalized_name": "the niflhel day" + }, + { + "appid": 1715380, + "normalized_name": "megania online" + }, + { + "appid": 1715390, + "normalized_name": "gust of wind" + }, + { + "appid": 1715460, + "normalized_name": "东方冰之勇者记:序章" + }, + { + "appid": 1715470, + "normalized_name": "chronicles of sarval bridges of koni" + }, + { + "appid": 1715490, + "normalized_name": "lonely tribes" + }, + { + "appid": 1715500, + "normalized_name": "impossible simplified cube" + }, + { + "appid": 1715510, + "normalized_name": "pollito & xiang xiang adventure in the forest" + }, + { + "appid": 1715530, + "normalized_name": "medieval wars" + }, + { + "appid": 1715550, + "normalized_name": "夜詛yaso curse of soirée" + }, + { + "appid": 1715560, + "normalized_name": "elementary sandbox" + }, + { + "appid": 1715580, + "normalized_name": "robojep" + }, + { + "appid": 1715590, + "normalized_name": "wizordum" + }, + { + "appid": 1715660, + "normalized_name": "angelic waves" + }, + { + "appid": 1715670, + "normalized_name": "swinario super bros. play" + }, + { + "appid": 1715690, + "normalized_name": "rekkr sunken land" + }, + { + "appid": 1715710, + "normalized_name": "nona's game" + }, + { + "appid": 1715720, + "normalized_name": "mouthsimulater melonseedscracker" + }, + { + "appid": 1715730, + "normalized_name": "boo men" + }, + { + "appid": 1715750, + "normalized_name": "craterbound" + }, + { + "appid": 1715780, + "normalized_name": "the crafter's defense" + }, + { + "appid": 1715800, + "normalized_name": "next generation soccer coach" + }, + { + "appid": 1715830, + "normalized_name": "除灵派对 ea/ghosthunter ea" + }, + { + "appid": 1715840, + "normalized_name": "25 layers of pain" + }, + { + "appid": 1715850, + "normalized_name": "nair" + }, + { + "appid": 1715860, + "normalized_name": "fight.exe" + }, + { + "appid": 1715950, + "normalized_name": "puzzle box" + }, + { + "appid": 1715960, + "normalized_name": "勇者馋起了魔王的身子" + }, + { + "appid": 1715970, + "normalized_name": "zee.end" + }, + { + "appid": 1715980, + "normalized_name": "bail or jail(obakeidoro!)" + }, + { + "appid": 1716050, + "normalized_name": "dragon question" + }, + { + "appid": 1716120, + "normalized_name": "monster rancher 1 & 2 dx" + }, + { + "appid": 1716140, + "normalized_name": "above the skies" + }, + { + "appid": 1716150, + "normalized_name": "fated blade" + }, + { + "appid": 1716160, + "normalized_name": "photo puzzles hd" + }, + { + "appid": 1716170, + "normalized_name": "zoey my hentai sex doll" + }, + { + "appid": 1716180, + "normalized_name": "fill and cross trick or treat 2" + }, + { + "appid": 1716190, + "normalized_name": "fill and cross trick or treat 3" + }, + { + "appid": 1716200, + "normalized_name": "holiday solitaire easter" + }, + { + "appid": 1716210, + "normalized_name": "halloween riddles mysterious griddlers" + }, + { + "appid": 1716220, + "normalized_name": "holiday jigsaw easter" + }, + { + "appid": 1716230, + "normalized_name": "holiday jigsaw halloween" + }, + { + "appid": 1716240, + "normalized_name": "holiday jigsaw halloween 2" + }, + { + "appid": 1716250, + "normalized_name": "holiday jigsaw thanksgiving day" + }, + { + "appid": 1716260, + "normalized_name": "holiday jigsaw thanksgiving day 2" + }, + { + "appid": 1716270, + "normalized_name": "holiday mosaics halloween puzzles" + }, + { + "appid": 1716310, + "normalized_name": "awaken astral blade" + }, + { + "appid": 1716330, + "normalized_name": "varmalis" + }, + { + "appid": 1716360, + "normalized_name": "infinite stars the visual novel" + }, + { + "appid": 1716370, + "normalized_name": "2033 das erschwachen der macht" + }, + { + "appid": 1716390, + "normalized_name": "floating farmer logic puzzle" + }, + { + "appid": 1716400, + "normalized_name": "jumping pirates" + }, + { + "appid": 1716440, + "normalized_name": "the forger" + }, + { + "appid": 1716450, + "normalized_name": "secret of sardinia" + }, + { + "appid": 1716470, + "normalized_name": "survival night" + }, + { + "appid": 1716480, + "normalized_name": "繫於妳的紅絲帶 tied by your red" + }, + { + "appid": 1716500, + "normalized_name": "blue fish yokohama" + }, + { + "appid": 1716530, + "normalized_name": "ramen or jail" + }, + { + "appid": 1716570, + "normalized_name": "supersonic fight" + }, + { + "appid": 1716600, + "normalized_name": "brinefall" + }, + { + "appid": 1716660, + "normalized_name": "reflections of life meridiem collector's" + }, + { + "appid": 1716690, + "normalized_name": "click and slay" + }, + { + "appid": 1716710, + "normalized_name": "twisted tower tactics" + }, + { + "appid": 1716720, + "normalized_name": "the magister the first two days" + }, + { + "appid": 1716740, + "normalized_name": "starfield" + }, + { + "appid": 1716760, + "normalized_name": "trinity archetype" + }, + { + "appid": 1716770, + "normalized_name": "air traffic blitz vr" + }, + { + "appid": 1716790, + "normalized_name": "2 synchro hedgehogs" + }, + { + "appid": 1716810, + "normalized_name": "herodes" + }, + { + "appid": 1716820, + "normalized_name": "pivot of hearts" + }, + { + "appid": 1716830, + "normalized_name": "sumo seals" + }, + { + "appid": 1716860, + "normalized_name": "run ninja run" + }, + { + "appid": 1716870, + "normalized_name": "epoch ultra" + }, + { + "appid": 1716890, + "normalized_name": "cell scientist beyond" + }, + { + "appid": 1716910, + "normalized_name": "foot massage" + }, + { + "appid": 1716940, + "normalized_name": "ancient gods" + }, + { + "appid": 1716950, + "normalized_name": "gra&vity" + }, + { + "appid": 1717020, + "normalized_name": "ed 0 zombie uprising" + }, + { + "appid": 1717050, + "normalized_name": "heart lock a cozy intro to spellcraft" + }, + { + "appid": 1717070, + "normalized_name": "chapter 2 artificial life 2061 cybersys anime songs within the nieradroid persona’s. [made by joseph sanz]" + }, + { + "appid": 1717080, + "normalized_name": "combat beans total mayhem" + }, + { + "appid": 1717090, + "normalized_name": "into the necrovale" + }, + { + "appid": 1717120, + "normalized_name": "endless mahjong" + }, + { + "appid": 1717130, + "normalized_name": "my first furry" + }, + { + "appid": 1717160, + "normalized_name": "fibertales dummykart" + }, + { + "appid": 1717170, + "normalized_name": "gentlemen's club" + }, + { + "appid": 1717180, + "normalized_name": "xenocider" + }, + { + "appid": 1717190, + "normalized_name": "fallen city brawl" + }, + { + "appid": 1717250, + "normalized_name": "ratten reich" + }, + { + "appid": 1717260, + "normalized_name": "my universe green adventures farmer friends" + }, + { + "appid": 1717270, + "normalized_name": "arkanoid eternal battle" + }, + { + "appid": 1717280, + "normalized_name": "retro golden age livingstone i presume" + }, + { + "appid": 1717290, + "normalized_name": "subspace discovery" + }, + { + "appid": 1717310, + "normalized_name": "city night carnage" + }, + { + "appid": 1717330, + "normalized_name": "rubber brawl" + }, + { + "appid": 1717370, + "normalized_name": "the müll littoral" + }, + { + "appid": 1717400, + "normalized_name": "bulb boy 2 jar of despair" + }, + { + "appid": 1717410, + "normalized_name": "prince of qin" + }, + { + "appid": 1717420, + "normalized_name": "branches" + }, + { + "appid": 1717510, + "normalized_name": "time on frog island" + }, + { + "appid": 1717570, + "normalized_name": "pompom" + }, + { + "appid": 1717580, + "normalized_name": "remorse" + }, + { + "appid": 1717610, + "normalized_name": "tentacles of submission" + }, + { + "appid": 1717640, + "normalized_name": "mahokenshi the samurai deckbuilder" + }, + { + "appid": 1717670, + "normalized_name": "fluffy bastards" + }, + { + "appid": 1717730, + "normalized_name": "lucid" + }, + { + "appid": 1717770, + "normalized_name": "the upturned" + }, + { + "appid": 1717800, + "normalized_name": "gladiator of sparta" + }, + { + "appid": 1717810, + "normalized_name": "westwood shadows prologue" + }, + { + "appid": 1717850, + "normalized_name": "crowkart" + }, + { + "appid": 1717880, + "normalized_name": "flappy shooter" + }, + { + "appid": 1717920, + "normalized_name": "kick ball" + }, + { + "appid": 1717940, + "normalized_name": "after light fades" + }, + { + "appid": 1718000, + "normalized_name": "trigger" + }, + { + "appid": 1718020, + "normalized_name": "the last spark" + }, + { + "appid": 1718040, + "normalized_name": "clarence goes to the f&#%ing store" + }, + { + "appid": 1718070, + "normalized_name": "efo escape from outerworld" + }, + { + "appid": 1718080, + "normalized_name": "stoneheart" + }, + { + "appid": 1718090, + "normalized_name": "" + }, + { + "appid": 1718130, + "normalized_name": "scp secret files" + }, + { + "appid": 1718160, + "normalized_name": "crimzon clover world explosion" + }, + { + "appid": 1718220, + "normalized_name": "monstergeddon 42 monsters of the eternal world war" + }, + { + "appid": 1718240, + "normalized_name": "beaver clicker" + }, + { + "appid": 1718290, + "normalized_name": "guardians of gaia" + }, + { + "appid": 1718300, + "normalized_name": "沉沦遗迹" + }, + { + "appid": 1718340, + "normalized_name": "极简地牢 simple killer" + }, + { + "appid": 1718380, + "normalized_name": "nero's adventure echoes of the deep" + }, + { + "appid": 1718400, + "normalized_name": "makber" + }, + { + "appid": 1718430, + "normalized_name": "mainly at rest" + }, + { + "appid": 1718450, + "normalized_name": "blade of si" + }, + { + "appid": 1718460, + "normalized_name": "terminator 2d no fate" + }, + { + "appid": 1718560, + "normalized_name": "10th corpse" + }, + { + "appid": 1718570, + "normalized_name": "astlibra revision" + }, + { + "appid": 1718650, + "normalized_name": "nuremberg vrdict of nations" + }, + { + "appid": 1718660, + "normalized_name": "shinobi shift" + }, + { + "appid": 1718680, + "normalized_name": "interconnected stories" + }, + { + "appid": 1718700, + "normalized_name": "inantrum prototype" + }, + { + "appid": 1718740, + "normalized_name": "space battle svf" + }, + { + "appid": 1718860, + "normalized_name": "mayflower reflections" + }, + { + "appid": 1718870, + "normalized_name": "spaceflight simulator" + }, + { + "appid": 1718900, + "normalized_name": "king of the raft a litrpg visual novel apocalypse adventure" + }, + { + "appid": 1718910, + "normalized_name": "prose & codes" + }, + { + "appid": 1719000, + "normalized_name": "my best nightmare" + }, + { + "appid": 1719030, + "normalized_name": "terraform inc" + }, + { + "appid": 1719040, + "normalized_name": "morsels" + }, + { + "appid": 1719080, + "normalized_name": "kate don't wait" + }, + { + "appid": 1719100, + "normalized_name": "ruins of albion" + }, + { + "appid": 1719130, + "normalized_name": "the ghost cage" + }, + { + "appid": 1719140, + "normalized_name": "bloody layne" + }, + { + "appid": 1719150, + "normalized_name": "geometric sniper card game" + }, + { + "appid": 1719160, + "normalized_name": "wildfall" + }, + { + "appid": 1719180, + "normalized_name": "gobby mcgobblenutz presents the questionably quirky quiz show" + }, + { + "appid": 1719200, + "normalized_name": "tar alterra adventure game" + }, + { + "appid": 1719210, + "normalized_name": "calculator and monsters" + }, + { + "appid": 1719220, + "normalized_name": "chimeras what wishes may come collector's" + }, + { + "appid": 1719230, + "normalized_name": "poly racing" + }, + { + "appid": 1719240, + "normalized_name": "illuminaria" + }, + { + "appid": 1719250, + "normalized_name": "danger zombies" + }, + { + "appid": 1719310, + "normalized_name": "love sucks night two" + }, + { + "appid": 1719350, + "normalized_name": "roy's rugs" + }, + { + "appid": 1719390, + "normalized_name": "cards and castles 2" + }, + { + "appid": 1719420, + "normalized_name": "slenderman unbecoming" + }, + { + "appid": 1719450, + "normalized_name": "生化迷城" + }, + { + "appid": 1719460, + "normalized_name": "my furry dictator 🐾" + }, + { + "appid": 1719470, + "normalized_name": "bloopy & droopy" + }, + { + "appid": 1719480, + "normalized_name": "the simple balance" + }, + { + "appid": 1719490, + "normalized_name": "monica the story of far worlds" + }, + { + "appid": 1719510, + "normalized_name": "survive and change" + }, + { + "appid": 1719530, + "normalized_name": "unshaken" + }, + { + "appid": 1719540, + "normalized_name": "balloon azuna" + }, + { + "appid": 1719550, + "normalized_name": "platypus adventures" + }, + { + "appid": 1719600, + "normalized_name": "karmadillos" + }, + { + "appid": 1719610, + "normalized_name": "slacker dungeon" + }, + { + "appid": 1719630, + "normalized_name": "hentai beautiful girls 5" + }, + { + "appid": 1719660, + "normalized_name": "my cute succubus" + }, + { + "appid": 1719670, + "normalized_name": "hentai bdsm" + }, + { + "appid": 1719680, + "normalized_name": "songs of armageddopolis" + }, + { + "appid": 1719690, + "normalized_name": "merfight" + }, + { + "appid": 1719700, + "normalized_name": "super simmer" + }, + { + "appid": 1719710, + "normalized_name": "endocrisis hyperactive" + }, + { + "appid": 1719730, + "normalized_name": "metropocre" + }, + { + "appid": 1719770, + "normalized_name": "not it spookiest" + }, + { + "appid": 1719790, + "normalized_name": "lake of shadows" + }, + { + "appid": 1719830, + "normalized_name": "sex robot road trip highway to harrisburg" + }, + { + "appid": 1719880, + "normalized_name": "归家" + }, + { + "appid": 1719890, + "normalized_name": "mummy mummy mummy!" + }, + { + "appid": 1719930, + "normalized_name": "tokyo stranger 东京诡事" + }, + { + "appid": 1719960, + "normalized_name": "ada and cal" + }, + { + "appid": 1719970, + "normalized_name": "monstercare" + }, + { + "appid": 1719980, + "normalized_name": "creepy mahjong" + }, + { + "appid": 1719990, + "normalized_name": "snakelaw island" + }, + { + "appid": 1720020, + "normalized_name": "parkonauts" + }, + { + "appid": 1720040, + "normalized_name": "meria and the island of orcs" + }, + { + "appid": 1720050, + "normalized_name": "dodge it!" + }, + { + "appid": 1720060, + "normalized_name": "earthquake escape" + }, + { + "appid": 1720070, + "normalized_name": "fluffert and friends" + }, + { + "appid": 1720090, + "normalized_name": "aspire ina's tale" + }, + { + "appid": 1720120, + "normalized_name": "bandits open world" + }, + { + "appid": 1720140, + "normalized_name": "crash and run" + }, + { + "appid": 1720160, + "normalized_name": "旅者 travelers" + }, + { + "appid": 1720180, + "normalized_name": "mini island autumn" + }, + { + "appid": 1720200, + "normalized_name": "any fish" + }, + { + "appid": 1720210, + "normalized_name": "buriboard" + }, + { + "appid": 1720220, + "normalized_name": "aqua boy" + }, + { + "appid": 1720240, + "normalized_name": "animation studio manager" + }, + { + "appid": 1720270, + "normalized_name": "最强法师的独特升级方法" + }, + { + "appid": 1720370, + "normalized_name": "my life changed jigsaw puzzle" + }, + { + "appid": 1720390, + "normalized_name": "when the river runs dry" + }, + { + "appid": 1720470, + "normalized_name": "the vii enigma" + }, + { + "appid": 1720520, + "normalized_name": "flail faster" + }, + { + "appid": 1720540, + "normalized_name": "unlock kimono cuties" + }, + { + "appid": 1720560, + "normalized_name": "neko hentai girl" + }, + { + "appid": 1720580, + "normalized_name": "any candy" + }, + { + "appid": 1720600, + "normalized_name": "i love finding cats" + }, + { + "appid": 1720620, + "normalized_name": "luck city monopoly" + }, + { + "appid": 1720650, + "normalized_name": "archer's adventure" + }, + { + "appid": 1720700, + "normalized_name": "illegal plantation" + }, + { + "appid": 1720740, + "normalized_name": "world of paranoia" + }, + { + "appid": 1720750, + "normalized_name": "kingdom of assetia the clicker game" + }, + { + "appid": 1720760, + "normalized_name": "theatre of sorrows" + }, + { + "appid": 1720770, + "normalized_name": "cosmo 02" + }, + { + "appid": 1720780, + "normalized_name": "12 labours of hercules xiii wonder ful builder" + }, + { + "appid": 1720790, + "normalized_name": "door3 insignia" + }, + { + "appid": 1720800, + "normalized_name": "nino maze lofi ii" + }, + { + "appid": 1720810, + "normalized_name": "danger ahead" + }, + { + "appid": 1720830, + "normalized_name": "clones selection" + }, + { + "appid": 1720850, + "normalized_name": "a=b" + }, + { + "appid": 1720860, + "normalized_name": "fox goes hunting" + }, + { + "appid": 1720930, + "normalized_name": "toy sports" + }, + { + "appid": 1720940, + "normalized_name": "umbilical" + }, + { + "appid": 1720960, + "normalized_name": "hyperfleet" + }, + { + "appid": 1720980, + "normalized_name": "silo27 crashlanded" + }, + { + "appid": 1721000, + "normalized_name": "property pro" + }, + { + "appid": 1721010, + "normalized_name": "master of the wizards" + }, + { + "appid": 1721020, + "normalized_name": "loot train" + }, + { + "appid": 1721060, + "normalized_name": "mandragora whispers of the witch tree" + }, + { + "appid": 1721070, + "normalized_name": "disharmony" + }, + { + "appid": 1721090, + "normalized_name": "chicken defender" + }, + { + "appid": 1721100, + "normalized_name": "curses" + }, + { + "appid": 1721110, + "normalized_name": "abyssus" + }, + { + "appid": 1721130, + "normalized_name": "magic defense 2 the return of the legend" + }, + { + "appid": 1721170, + "normalized_name": "what lies in the multiverse" + }, + { + "appid": 1721180, + "normalized_name": "aberration analyst" + }, + { + "appid": 1721230, + "normalized_name": "city of cards" + }, + { + "appid": 1721240, + "normalized_name": "ari's journey" + }, + { + "appid": 1721250, + "normalized_name": "infinity war" + }, + { + "appid": 1721270, + "normalized_name": "farm kitten puzzle pipes" + }, + { + "appid": 1721300, + "normalized_name": "from view" + }, + { + "appid": 1721330, + "normalized_name": "getting it up" + }, + { + "appid": 1721350, + "normalized_name": "horror night" + }, + { + "appid": 1721360, + "normalized_name": "constellation tango" + }, + { + "appid": 1721410, + "normalized_name": "rust 'n dust" + }, + { + "appid": 1721440, + "normalized_name": "dreamworks dragons legends of the nine realms" + }, + { + "appid": 1721460, + "normalized_name": "masochistic elves from another world" + }, + { + "appid": 1721470, + "normalized_name": "poppy playtime" + }, + { + "appid": 1721480, + "normalized_name": "haunted game" + }, + { + "appid": 1721490, + "normalized_name": "inanis" + }, + { + "appid": 1721510, + "normalized_name": "aeternum quest" + }, + { + "appid": 1721520, + "normalized_name": "freon" + }, + { + "appid": 1721530, + "normalized_name": "the captain" + }, + { + "appid": 1721550, + "normalized_name": "core blast" + }, + { + "appid": 1721570, + "normalized_name": "painter's pets" + }, + { + "appid": 1721590, + "normalized_name": "deathgrip" + }, + { + "appid": 1721620, + "normalized_name": "george a horror story" + }, + { + "appid": 1721680, + "normalized_name": "pre dusk" + }, + { + "appid": 1721690, + "normalized_name": "faircroft's antiques the forbidden crypt" + }, + { + "appid": 1721720, + "normalized_name": "战地指挥官/battleboom" + }, + { + "appid": 1721790, + "normalized_name": "战斗,然后建立无敌后宫" + }, + { + "appid": 1721800, + "normalized_name": "八尾" + }, + { + "appid": 1721820, + "normalized_name": "headless jeff 3" + }, + { + "appid": 1721840, + "normalized_name": "robo sham boro" + }, + { + "appid": 1721870, + "normalized_name": "neon sundown" + }, + { + "appid": 1721890, + "normalized_name": "googass" + }, + { + "appid": 1721910, + "normalized_name": "cabous" + }, + { + "appid": 1721930, + "normalized_name": "深渊" + }, + { + "appid": 1721960, + "normalized_name": "mirth melody" + }, + { + "appid": 1721980, + "normalized_name": "loading story" + }, + { + "appid": 1721990, + "normalized_name": "mannawars" + }, + { + "appid": 1722020, + "normalized_name": "old coin pusher friends" + }, + { + "appid": 1722040, + "normalized_name": "rabby in the land of sweets" + }, + { + "appid": 1722050, + "normalized_name": "blood impact" + }, + { + "appid": 1722090, + "normalized_name": "warrior souls" + }, + { + "appid": 1722100, + "normalized_name": "sky tale" + }, + { + "appid": 1722110, + "normalized_name": "captain starone" + }, + { + "appid": 1722120, + "normalized_name": "euclidean escape" + }, + { + "appid": 1722140, + "normalized_name": "hop step sing! happy people" + }, + { + "appid": 1722300, + "normalized_name": "deep madness" + }, + { + "appid": 1722310, + "normalized_name": "spellarium 7 match 3 puzzle" + }, + { + "appid": 1722370, + "normalized_name": "spacexplorer" + }, + { + "appid": 1722390, + "normalized_name": "osylla" + }, + { + "appid": 1722410, + "normalized_name": "perang laut maritime warfare" + }, + { + "appid": 1722420, + "normalized_name": "köln 3d" + }, + { + "appid": 1722440, + "normalized_name": "bunch of games" + }, + { + "appid": 1722520, + "normalized_name": "find all 2 middle ages" + }, + { + "appid": 1722570, + "normalized_name": "jerma's big adventure" + }, + { + "appid": 1722580, + "normalized_name": "alien colosseum" + }, + { + "appid": 1722590, + "normalized_name": "pilie pals" + }, + { + "appid": 1722610, + "normalized_name": "unawake" + }, + { + "appid": 1722620, + "normalized_name": "toree 2" + }, + { + "appid": 1722660, + "normalized_name": "hamster on rails" + }, + { + "appid": 1722670, + "normalized_name": "daring academy" + }, + { + "appid": 1722700, + "normalized_name": "fireside" + }, + { + "appid": 1722740, + "normalized_name": "mandeshire" + }, + { + "appid": 1722750, + "normalized_name": "halt the heist!" + }, + { + "appid": 1722760, + "normalized_name": "my singing monsters playground" + }, + { + "appid": 1722770, + "normalized_name": "dream girls collection" + }, + { + "appid": 1722780, + "normalized_name": "witch stone" + }, + { + "appid": 1722790, + "normalized_name": "shoot to kill" + }, + { + "appid": 1722800, + "normalized_name": "colossus eternal blight" + }, + { + "appid": 1722820, + "normalized_name": "i'm not jelly" + }, + { + "appid": 1722830, + "normalized_name": "cattle 101 sample library" + }, + { + "appid": 1722840, + "normalized_name": "everdell" + }, + { + "appid": 1722860, + "normalized_name": "munchkin digital" + }, + { + "appid": 1722870, + "normalized_name": "clank!" + }, + { + "appid": 1722890, + "normalized_name": "power pals" + }, + { + "appid": 1722940, + "normalized_name": "the grip of madness" + }, + { + "appid": 1723030, + "normalized_name": "accounts of abydos" + }, + { + "appid": 1723050, + "normalized_name": "脱出忍者" + }, + { + "appid": 1723100, + "normalized_name": "building hope refugee camp simulator" + }, + { + "appid": 1723170, + "normalized_name": "摸金校尉之九幽将军" + }, + { + "appid": 1723190, + "normalized_name": "lenny loosejocks goes walkabout" + }, + { + "appid": 1723260, + "normalized_name": "casecracker" + }, + { + "appid": 1723320, + "normalized_name": "girlfight 2024" + }, + { + "appid": 1723390, + "normalized_name": "feline sweet" + }, + { + "appid": 1723400, + "normalized_name": "infinite cube defense" + }, + { + "appid": 1723420, + "normalized_name": "zombie hunter" + }, + { + "appid": 1723440, + "normalized_name": "space x collector" + }, + { + "appid": 1723450, + "normalized_name": "时之熵" + }, + { + "appid": 1723460, + "normalized_name": "toypark physics based social vr platform" + }, + { + "appid": 1723490, + "normalized_name": "fantasy jigsaw puzzle" + }, + { + "appid": 1723530, + "normalized_name": "stones keeper" + }, + { + "appid": 1723540, + "normalized_name": "polar explorer simulator" + }, + { + "appid": 1723570, + "normalized_name": "quest of wizard" + }, + { + "appid": 1723610, + "normalized_name": "the parasites" + }, + { + "appid": 1723680, + "normalized_name": "lofi katana" + }, + { + "appid": 1723700, + "normalized_name": "remy raccoon and the lost temple" + }, + { + "appid": 1723720, + "normalized_name": "suddenly meow" + }, + { + "appid": 1723730, + "normalized_name": "me vs you" + }, + { + "appid": 1723740, + "normalized_name": "pots and potions" + }, + { + "appid": 1723750, + "normalized_name": "bargintowin" + }, + { + "appid": 1723760, + "normalized_name": "sorcerer knights" + }, + { + "appid": 1723770, + "normalized_name": "heart of altai" + }, + { + "appid": 1723780, + "normalized_name": "finnish cottage simulator" + }, + { + "appid": 1723790, + "normalized_name": "empire takeover" + }, + { + "appid": 1723920, + "normalized_name": "danger electric shock" + }, + { + "appid": 1723930, + "normalized_name": "my dream girl" + }, + { + "appid": 1723960, + "normalized_name": "chariot land" + }, + { + "appid": 1724000, + "normalized_name": "time lock vr 2" + }, + { + "appid": 1724010, + "normalized_name": "need more troops" + }, + { + "appid": 1724030, + "normalized_name": "eyes of hellfire" + }, + { + "appid": 1724040, + "normalized_name": "じじまごrpgmini" + }, + { + "appid": 1724050, + "normalized_name": "furry shades of gay 2 a shade gayer" + }, + { + "appid": 1724060, + "normalized_name": "always the same nightmare" + }, + { + "appid": 1724070, + "normalized_name": "don't hate my music taste" + }, + { + "appid": 1724080, + "normalized_name": "plastic" + }, + { + "appid": 1724100, + "normalized_name": "morbid inhale" + }, + { + "appid": 1724120, + "normalized_name": "astronautilus" + }, + { + "appid": 1724130, + "normalized_name": "quickdraw" + }, + { + "appid": 1724140, + "normalized_name": "craftomation 101 programming & craft" + }, + { + "appid": 1724150, + "normalized_name": "dark siege the first knight" + }, + { + "appid": 1724160, + "normalized_name": "heart & soul" + }, + { + "appid": 1724170, + "normalized_name": "omnicide vampire" + }, + { + "appid": 1724180, + "normalized_name": "caves of mars" + }, + { + "appid": 1724190, + "normalized_name": "come home" + }, + { + "appid": 1724280, + "normalized_name": "midnight stories 3" + }, + { + "appid": 1724290, + "normalized_name": "outergalactic aliens pinball" + }, + { + "appid": 1724300, + "normalized_name": "the little brave" + }, + { + "appid": 1724310, + "normalized_name": "uncrowned" + }, + { + "appid": 1724320, + "normalized_name": "noelle does her best!" + }, + { + "appid": 1724360, + "normalized_name": "stationery frontier" + }, + { + "appid": 1724390, + "normalized_name": "power chord" + }, + { + "appid": 1724410, + "normalized_name": "raster prime [remix]" + }, + { + "appid": 1724420, + "normalized_name": "ultra thunderball" + }, + { + "appid": 1724440, + "normalized_name": "epic fantasy battle simulator" + }, + { + "appid": 1724460, + "normalized_name": "prison life simulator the legend of navalny" + }, + { + "appid": 1724470, + "normalized_name": "valkyrie journey to midgard" + }, + { + "appid": 1724490, + "normalized_name": "bit esc" + }, + { + "appid": 1724510, + "normalized_name": "detective gman" + }, + { + "appid": 1724530, + "normalized_name": "robo go" + }, + { + "appid": 1724540, + "normalized_name": "welcome to goodland" + }, + { + "appid": 1724570, + "normalized_name": "plunger simulator" + }, + { + "appid": 1724580, + "normalized_name": "terrain defender" + }, + { + "appid": 1724600, + "normalized_name": "zen a gay sequel" + }, + { + "appid": 1724630, + "normalized_name": "s.i.n. unit ghost investigation & removal" + }, + { + "appid": 1724670, + "normalized_name": "明途之境" + }, + { + "appid": 1724700, + "normalized_name": "almazy" + }, + { + "appid": 1724770, + "normalized_name": "castle of alchemists" + }, + { + "appid": 1724810, + "normalized_name": "house of maids" + }, + { + "appid": 1724840, + "normalized_name": "maken shi sara" + }, + { + "appid": 1724860, + "normalized_name": "胡莱三国3" + }, + { + "appid": 1724890, + "normalized_name": "operation outsmart" + }, + { + "appid": 1724910, + "normalized_name": "幻想曹操传 fantasy of caocao" + }, + { + "appid": 1724950, + "normalized_name": "scarlet tale" + }, + { + "appid": 1724980, + "normalized_name": "the lone blade" + }, + { + "appid": 1724990, + "normalized_name": "handwriting fantasy" + }, + { + "appid": 1725130, + "normalized_name": "nightmare les origines" + }, + { + "appid": 1725170, + "normalized_name": "eggs 2142" + }, + { + "appid": 1725220, + "normalized_name": "seed of agony" + }, + { + "appid": 1725270, + "normalized_name": "ekoh beach" + }, + { + "appid": 1725290, + "normalized_name": "final vanguard" + }, + { + "appid": 1725330, + "normalized_name": "paradise" + }, + { + "appid": 1725340, + "normalized_name": "elypse" + }, + { + "appid": 1725350, + "normalized_name": "mari and bayu the road home" + }, + { + "appid": 1725360, + "normalized_name": "look inside chapter 2" + }, + { + "appid": 1725370, + "normalized_name": "mythic forest warden" + }, + { + "appid": 1725380, + "normalized_name": "road gangs simulator" + }, + { + "appid": 1725410, + "normalized_name": "talespinner" + }, + { + "appid": 1725430, + "normalized_name": "big flappy tower vs tiny square" + }, + { + "appid": 1725440, + "normalized_name": "house of rules" + }, + { + "appid": 1725470, + "normalized_name": "enionax" + }, + { + "appid": 1725480, + "normalized_name": "follow the cat" + }, + { + "appid": 1725560, + "normalized_name": "broken betrayal" + }, + { + "appid": 1725620, + "normalized_name": "love death & veggies" + }, + { + "appid": 1725640, + "normalized_name": "sudocats" + }, + { + "appid": 1725660, + "normalized_name": "opus castle" + }, + { + "appid": 1725680, + "normalized_name": "youriding surfing and bodyboarding game" + }, + { + "appid": 1725840, + "normalized_name": "mesetaminer (codename)" + }, + { + "appid": 1725850, + "normalized_name": "horny crush" + }, + { + "appid": 1725860, + "normalized_name": "keng's little universe" + }, + { + "appid": 1725880, + "normalized_name": "project snaqe" + }, + { + "appid": 1725910, + "normalized_name": "shards of chaos" + }, + { + "appid": 1725950, + "normalized_name": "魔塔地牢" + }, + { + "appid": 1725980, + "normalized_name": "godshard chronicles" + }, + { + "appid": 1725990, + "normalized_name": "gaserb" + }, + { + "appid": 1726020, + "normalized_name": "never end neverland!" + }, + { + "appid": 1726050, + "normalized_name": "neon depth" + }, + { + "appid": 1726100, + "normalized_name": "mammon devil help" + }, + { + "appid": 1726120, + "normalized_name": "cursed to golf" + }, + { + "appid": 1726130, + "normalized_name": "pathless woods" + }, + { + "appid": 1726160, + "normalized_name": "if you win...you lose !" + }, + { + "appid": 1726180, + "normalized_name": "old gods" + }, + { + "appid": 1726190, + "normalized_name": "no straight roads encore" + }, + { + "appid": 1726210, + "normalized_name": "potata foxy tale" + }, + { + "appid": 1726280, + "normalized_name": "the babysitter" + }, + { + "appid": 1726290, + "normalized_name": "the last defense" + }, + { + "appid": 1726330, + "normalized_name": "game developer simulator" + }, + { + "appid": 1726340, + "normalized_name": "beauty vs. robot" + }, + { + "appid": 1726360, + "normalized_name": "peter's adventures in english [learn english]" + }, + { + "appid": 1726370, + "normalized_name": "gothica the devil's shadow" + }, + { + "appid": 1726390, + "normalized_name": "adventure of rikka the cursed kingdom" + }, + { + "appid": 1726400, + "normalized_name": "the death | thần trùng" + }, + { + "appid": 1726410, + "normalized_name": "seal of evil" + }, + { + "appid": 1726450, + "normalized_name": "flyland wars 2 not yours mine" + }, + { + "appid": 1726530, + "normalized_name": "toaster arena" + }, + { + "appid": 1726550, + "normalized_name": "the circle of suffering" + }, + { + "appid": 1726560, + "normalized_name": "buramato" + }, + { + "appid": 1726590, + "normalized_name": "marble mage" + }, + { + "appid": 1726610, + "normalized_name": "bill's adventure alien war" + }, + { + "appid": 1726650, + "normalized_name": "downtown" + }, + { + "appid": 1726660, + "normalized_name": "stopdrop." + }, + { + "appid": 1726690, + "normalized_name": "star age space combat" + }, + { + "appid": 1726700, + "normalized_name": "citadel 's keeper" + }, + { + "appid": 1726720, + "normalized_name": "world of grimm" + }, + { + "appid": 1726730, + "normalized_name": "you must" + }, + { + "appid": 1726750, + "normalized_name": "hidden cats in santa's realm" + }, + { + "appid": 1726760, + "normalized_name": "curse crackers for whom the belle toils" + }, + { + "appid": 1726790, + "normalized_name": "surface virtual detective collector's" + }, + { + "appid": 1726850, + "normalized_name": "droopy balls simulator 2021" + }, + { + "appid": 1726860, + "normalized_name": "apocalyptic adventure episode 1" + }, + { + "appid": 1726870, + "normalized_name": "nebraska" + }, + { + "appid": 1726890, + "normalized_name": "hidden kittens kingdom of cats" + }, + { + "appid": 1726930, + "normalized_name": "robowarehouse" + }, + { + "appid": 1726970, + "normalized_name": "where's my lunch?!" + }, + { + "appid": 1727000, + "normalized_name": "ゆうゆう自適のゆうかりん" + }, + { + "appid": 1727020, + "normalized_name": "爆战联盟" + }, + { + "appid": 1727030, + "normalized_name": "absylon 7" + }, + { + "appid": 1727040, + "normalized_name": "ib cricket companion" + }, + { + "appid": 1727090, + "normalized_name": "rx racing 2021 pro" + }, + { + "appid": 1727100, + "normalized_name": "69 summon succubus" + }, + { + "appid": 1727130, + "normalized_name": "legends of dionysos" + }, + { + "appid": 1727140, + "normalized_name": "cynoroid forsaken" + }, + { + "appid": 1727180, + "normalized_name": "neverawake" + }, + { + "appid": 1727200, + "normalized_name": "kittens in post apocalyptic fantasy san francisco battle school for only the most awesome monsters" + }, + { + "appid": 1727210, + "normalized_name": "mindhack" + }, + { + "appid": 1727220, + "normalized_name": "summoner's mess" + }, + { + "appid": 1727250, + "normalized_name": "the hero of bangaona" + }, + { + "appid": 1727270, + "normalized_name": "murderous muses" + }, + { + "appid": 1727310, + "normalized_name": "project cow" + }, + { + "appid": 1727350, + "normalized_name": "box party" + }, + { + "appid": 1727400, + "normalized_name": "captain diarrhea and the shartening" + }, + { + "appid": 1727430, + "normalized_name": "basic rogue" + }, + { + "appid": 1727440, + "normalized_name": "dyflexion" + }, + { + "appid": 1727450, + "normalized_name": "secrets of the middle ages" + }, + { + "appid": 1727490, + "normalized_name": "lost inside act 1" + }, + { + "appid": 1727520, + "normalized_name": "ヤマふだ!にごうめ" + }, + { + "appid": 1727540, + "normalized_name": "primordials legends hollow hero" + }, + { + "appid": 1727550, + "normalized_name": "grandma" + }, + { + "appid": 1727590, + "normalized_name": "the spirit lift" + }, + { + "appid": 1727600, + "normalized_name": "crazy invader shootem down" + }, + { + "appid": 1727620, + "normalized_name": "neighbor diana" + }, + { + "appid": 1727650, + "normalized_name": "死寂(deathly stillness)" + }, + { + "appid": 1727660, + "normalized_name": "space yandere" + }, + { + "appid": 1727740, + "normalized_name": "vita fighters" + }, + { + "appid": 1727750, + "normalized_name": "old salt" + }, + { + "appid": 1727760, + "normalized_name": "mars tactics" + }, + { + "appid": 1727780, + "normalized_name": "arena warrior" + }, + { + "appid": 1727790, + "normalized_name": "tentacle prawn (actually) a cthulhu dating sim" + }, + { + "appid": 1727800, + "normalized_name": "society" + }, + { + "appid": 1727810, + "normalized_name": "diamond hands to the moon" + }, + { + "appid": 1727840, + "normalized_name": "the judgement of q" + }, + { + "appid": 1727860, + "normalized_name": "happy bones infernal" + }, + { + "appid": 1727880, + "normalized_name": "指示厨" + }, + { + "appid": 1727900, + "normalized_name": "cyberpunk samurai vr" + }, + { + "appid": 1727910, + "normalized_name": "hope trigger" + }, + { + "appid": 1727930, + "normalized_name": "gorge" + }, + { + "appid": 1727990, + "normalized_name": "13 wood st" + }, + { + "appid": 1728080, + "normalized_name": "roseblight" + }, + { + "appid": 1728090, + "normalized_name": "vroom! obstacle racing" + }, + { + "appid": 1728130, + "normalized_name": "alone recode" + }, + { + "appid": 1728150, + "normalized_name": "nano racing" + }, + { + "appid": 1728160, + "normalized_name": "flipping beat" + }, + { + "appid": 1728170, + "normalized_name": "tower stacker" + }, + { + "appid": 1728180, + "normalized_name": "astral shipwright" + }, + { + "appid": 1728260, + "normalized_name": "veil of the volcano" + }, + { + "appid": 1728280, + "normalized_name": "メイジズメイズplay~淫魔の洞窟に挑む冒険者~" + }, + { + "appid": 1728290, + "normalized_name": "decide 4 god" + }, + { + "appid": 1728300, + "normalized_name": "狂の世界 crazy world" + }, + { + "appid": 1728310, + "normalized_name": "蛛火spider fire" + }, + { + "appid": 1728320, + "normalized_name": "dirty fighter hollow point city" + }, + { + "appid": 1728380, + "normalized_name": "ctfs(ctfs)" + }, + { + "appid": 1728390, + "normalized_name": "怪盗ミューのシークレットプリマ" + }, + { + "appid": 1728410, + "normalized_name": "刺魔猎人thorn demon hunter" + }, + { + "appid": 1728430, + "normalized_name": "i wanna go home" + }, + { + "appid": 1728450, + "normalized_name": "my cozy home" + }, + { + "appid": 1728460, + "normalized_name": "阴缘" + }, + { + "appid": 1728490, + "normalized_name": "uncleoffice uncle dating simulator" + }, + { + "appid": 1728500, + "normalized_name": "kirkileons" + }, + { + "appid": 1728520, + "normalized_name": "xuan yuan sword v" + }, + { + "appid": 1728550, + "normalized_name": "phantom thief sylphy" + }, + { + "appid": 1728560, + "normalized_name": "致命游戏 lethal gamble 1 werewolf puzzle" + }, + { + "appid": 1728590, + "normalized_name": "detention club school's out" + }, + { + "appid": 1728610, + "normalized_name": "beyond the darkness" + }, + { + "appid": 1728620, + "normalized_name": "ikuma the frozen compass" + }, + { + "appid": 1728640, + "normalized_name": "falling as lightning" + }, + { + "appid": 1728660, + "normalized_name": "rush rally origins" + }, + { + "appid": 1728670, + "normalized_name": "roads of destiny" + }, + { + "appid": 1728680, + "normalized_name": "legendary tales stolen life collector's" + }, + { + "appid": 1728690, + "normalized_name": "legendary tales cataclysm collector's" + }, + { + "appid": 1728700, + "normalized_name": "terranova" + }, + { + "appid": 1728740, + "normalized_name": "angel's tale an extraordinary love story" + }, + { + "appid": 1728830, + "normalized_name": "space docker vr" + }, + { + "appid": 1728840, + "normalized_name": "beneath the mountain" + }, + { + "appid": 1728850, + "normalized_name": "insaniam" + }, + { + "appid": 1728880, + "normalized_name": "cannon" + }, + { + "appid": 1728960, + "normalized_name": "evolution of war" + }, + { + "appid": 1728980, + "normalized_name": "astro battlers td" + }, + { + "appid": 1729050, + "normalized_name": "the fox in the forest" + }, + { + "appid": 1729060, + "normalized_name": "battle brigade" + }, + { + "appid": 1729070, + "normalized_name": "paradise delight" + }, + { + "appid": 1729080, + "normalized_name": "wavy trip" + }, + { + "appid": 1729090, + "normalized_name": "chameneon" + }, + { + "appid": 1729100, + "normalized_name": "chameleon dyh" + }, + { + "appid": 1729120, + "normalized_name": "tank golfing" + }, + { + "appid": 1729140, + "normalized_name": "hired 2 die" + }, + { + "appid": 1729150, + "normalized_name": "mysterious warrior" + }, + { + "appid": 1729160, + "normalized_name": "heartseeker" + }, + { + "appid": 1729170, + "normalized_name": "eternal warfare" + }, + { + "appid": 1729180, + "normalized_name": "last vanguard" + }, + { + "appid": 1729190, + "normalized_name": "incubus express" + }, + { + "appid": 1729210, + "normalized_name": "xtreme aces racing" + }, + { + "appid": 1729250, + "normalized_name": "dashpong" + }, + { + "appid": 1729260, + "normalized_name": "eos 27" + }, + { + "appid": 1729280, + "normalized_name": "boxception" + }, + { + "appid": 1729290, + "normalized_name": "faith" + }, + { + "appid": 1729300, + "normalized_name": "playform human dynamics" + }, + { + "appid": 1729340, + "normalized_name": "midnight school walk 真夜中学園さんぽ" + }, + { + "appid": 1729370, + "normalized_name": "onlygame working girls" + }, + { + "appid": 1729380, + "normalized_name": "technobog" + }, + { + "appid": 1729410, + "normalized_name": "earthling's undertaking" + }, + { + "appid": 1729420, + "normalized_name": "paintballx" + }, + { + "appid": 1729570, + "normalized_name": "cast" + }, + { + "appid": 1729580, + "normalized_name": "shine within" + }, + { + "appid": 1729590, + "normalized_name": "auto cell game of life" + }, + { + "appid": 1729600, + "normalized_name": "intense love shot" + }, + { + "appid": 1729640, + "normalized_name": "coroconnect" + }, + { + "appid": 1729660, + "normalized_name": "hyper bullet" + }, + { + "appid": 1729710, + "normalized_name": "roskis a boozy beginning" + }, + { + "appid": 1729730, + "normalized_name": "magerun" + }, + { + "appid": 1729740, + "normalized_name": "luto" + }, + { + "appid": 1729770, + "normalized_name": "fantasy jigsaw puzzle 2" + }, + { + "appid": 1729780, + "normalized_name": "gladiator about to die" + }, + { + "appid": 1729790, + "normalized_name": "escape from school" + }, + { + "appid": 1729810, + "normalized_name": "ボク姫project" + }, + { + "appid": 1729820, + "normalized_name": "eyeballs are your enemies!" + }, + { + "appid": 1729830, + "normalized_name": "tactical monsters strategy" + }, + { + "appid": 1729840, + "normalized_name": "core alpha" + }, + { + "appid": 1729900, + "normalized_name": "rhythm brawl" + }, + { + "appid": 1729940, + "normalized_name": "the tribe must survive" + }, + { + "appid": 1729950, + "normalized_name": "hentai jigsaw girls 3" + }, + { + "appid": 1730000, + "normalized_name": "sqroma" + }, + { + "appid": 1730010, + "normalized_name": "charged!" + }, + { + "appid": 1730020, + "normalized_name": "teamkill" + }, + { + "appid": 1730050, + "normalized_name": "last minute" + }, + { + "appid": 1730060, + "normalized_name": "deep space salvage crew vr" + }, + { + "appid": 1730080, + "normalized_name": "beyond the long night" + }, + { + "appid": 1730090, + "normalized_name": "evil soul 邪恶之魂" + }, + { + "appid": 1730100, + "normalized_name": "69 yuki love" + }, + { + "appid": 1730110, + "normalized_name": "dinogotchi" + }, + { + "appid": 1730130, + "normalized_name": "저주받은학교 (cursed school)" + }, + { + "appid": 1730140, + "normalized_name": "light:black cat & amnesia girl" + }, + { + "appid": 1730150, + "normalized_name": "captain jackson" + }, + { + "appid": 1730160, + "normalized_name": "moveup" + }, + { + "appid": 1730170, + "normalized_name": "bull3000vrts" + }, + { + "appid": 1730190, + "normalized_name": "the patient s remedy" + }, + { + "appid": 1730220, + "normalized_name": "pigface massacre" + }, + { + "appid": 1730240, + "normalized_name": "cruise ship manager" + }, + { + "appid": 1730250, + "normalized_name": "pan'orama" + }, + { + "appid": 1730260, + "normalized_name": "retro gadgets" + }, + { + "appid": 1730270, + "normalized_name": "igw imperium galactic war classic" + }, + { + "appid": 1730280, + "normalized_name": "bit bike" + }, + { + "appid": 1730290, + "normalized_name": "tripsync" + }, + { + "appid": 1730310, + "normalized_name": "the lonely helmet" + }, + { + "appid": 1730340, + "normalized_name": "fbg arcade machine" + }, + { + "appid": 1730360, + "normalized_name": "i'm on observation duty 4" + }, + { + "appid": 1730380, + "normalized_name": "world of minimonsters" + }, + { + "appid": 1730390, + "normalized_name": "your show has been cancelled" + }, + { + "appid": 1730450, + "normalized_name": "fira" + }, + { + "appid": 1730460, + "normalized_name": "nainai’s recipe" + }, + { + "appid": 1730470, + "normalized_name": "colours and symbols" + }, + { + "appid": 1730500, + "normalized_name": "object ward." + }, + { + "appid": 1730520, + "normalized_name": "1000 hidden snails" + }, + { + "appid": 1730540, + "normalized_name": "alchemistry" + }, + { + "appid": 1730550, + "normalized_name": "panta rhei" + }, + { + "appid": 1730580, + "normalized_name": "shattle" + }, + { + "appid": 1730590, + "normalized_name": "the entropy centre" + }, + { + "appid": 1730630, + "normalized_name": "the dawning clocks of time director's cut" + }, + { + "appid": 1730650, + "normalized_name": "requisition vr" + }, + { + "appid": 1730670, + "normalized_name": "a day in the park" + }, + { + "appid": 1730680, + "normalized_name": "klonoa phantasy reverie series" + }, + { + "appid": 1730690, + "normalized_name": "anxiety treatment with relaxation" + }, + { + "appid": 1730700, + "normalized_name": "we love katamari reroll+ royal reverie" + }, + { + "appid": 1730720, + "normalized_name": "pollydestroyer 3d" + }, + { + "appid": 1730750, + "normalized_name": "hunkenstein" + }, + { + "appid": 1730760, + "normalized_name": "color connect vr puzzle game" + }, + { + "appid": 1730790, + "normalized_name": "a sister's journey" + }, + { + "appid": 1730800, + "normalized_name": "neutron and the tri spark" + }, + { + "appid": 1730820, + "normalized_name": "familyworldroam" + }, + { + "appid": 1730830, + "normalized_name": "thru" + }, + { + "appid": 1730840, + "normalized_name": "fantasy gardens" + }, + { + "appid": 1730850, + "normalized_name": "treasure girl 3d" + }, + { + "appid": 1730910, + "normalized_name": "英雄道國際服" + }, + { + "appid": 1730920, + "normalized_name": "hatch" + }, + { + "appid": 1730930, + "normalized_name": "backrooms exploration" + }, + { + "appid": 1730970, + "normalized_name": "age of creation" + }, + { + "appid": 1730980, + "normalized_name": "死前30天" + }, + { + "appid": 1731000, + "normalized_name": "skulker" + }, + { + "appid": 1731010, + "normalized_name": "unrepeatable" + }, + { + "appid": 1731040, + "normalized_name": "shawarma or shaverma" + }, + { + "appid": 1731070, + "normalized_name": "asterigos curse of the stars" + }, + { + "appid": 1731090, + "normalized_name": "moon corp. tower defense" + }, + { + "appid": 1731120, + "normalized_name": "cloud escape" + }, + { + "appid": 1731130, + "normalized_name": "at your service" + }, + { + "appid": 1731170, + "normalized_name": "space defender" + }, + { + "appid": 1731190, + "normalized_name": "weiter" + }, + { + "appid": 1731200, + "normalized_name": "tratritle" + }, + { + "appid": 1731230, + "normalized_name": "rofish prelude" + }, + { + "appid": 1731240, + "normalized_name": "onlyfuck 2 scarlett" + }, + { + "appid": 1731260, + "normalized_name": "sketch crawler" + }, + { + "appid": 1731270, + "normalized_name": "global city" + }, + { + "appid": 1731290, + "normalized_name": "spine this is gun fu" + }, + { + "appid": 1731340, + "normalized_name": "yarg" + }, + { + "appid": 1731360, + "normalized_name": "中国战疫" + }, + { + "appid": 1731370, + "normalized_name": "pow pow dye it up!" + }, + { + "appid": 1731390, + "normalized_name": "hard glide" + }, + { + "appid": 1731410, + "normalized_name": "monastery" + }, + { + "appid": 1731450, + "normalized_name": "yarn" + }, + { + "appid": 1731460, + "normalized_name": "lego brawls" + }, + { + "appid": 1731470, + "normalized_name": "storms 2" + }, + { + "appid": 1731520, + "normalized_name": "ark mobius censored" + }, + { + "appid": 1731560, + "normalized_name": "north frontier" + }, + { + "appid": 1731630, + "normalized_name": "extrorb" + }, + { + "appid": 1731690, + "normalized_name": "night darkness" + }, + { + "appid": 1731700, + "normalized_name": "escape the outbreak" + }, + { + "appid": 1731720, + "normalized_name": "furry sex cabaret 💋🔞" + }, + { + "appid": 1731730, + "normalized_name": "snowyland" + }, + { + "appid": 1731820, + "normalized_name": "debie zone" + }, + { + "appid": 1731830, + "normalized_name": "don't get the virus" + }, + { + "appid": 1731850, + "normalized_name": "prop factory" + }, + { + "appid": 1731860, + "normalized_name": "space adventures" + }, + { + "appid": 1731870, + "normalized_name": "viral firar" + }, + { + "appid": 1731880, + "normalized_name": "upgrade vr" + }, + { + "appid": 1731930, + "normalized_name": "engineer alpha" + }, + { + "appid": 1731940, + "normalized_name": "lost in space" + }, + { + "appid": 1732050, + "normalized_name": "love season" + }, + { + "appid": 1732060, + "normalized_name": "makai kingdom reclaimed and rebound" + }, + { + "appid": 1732070, + "normalized_name": "zhp unlosing ranger vs. darkdeath evilman" + }, + { + "appid": 1732090, + "normalized_name": "words can kill" + }, + { + "appid": 1732110, + "normalized_name": "ludicrous leap" + }, + { + "appid": 1732120, + "normalized_name": "paper mages" + }, + { + "appid": 1732130, + "normalized_name": "motivational hero" + }, + { + "appid": 1732140, + "normalized_name": "motivational hero vol. 2" + }, + { + "appid": 1732170, + "normalized_name": "seqitaire" + }, + { + "appid": 1732180, + "normalized_name": "kaiju princess" + }, + { + "appid": 1732190, + "normalized_name": "fatal frame / project zero maiden of black water" + }, + { + "appid": 1732210, + "normalized_name": "tile runner" + }, + { + "appid": 1732220, + "normalized_name": "the crown of wu" + }, + { + "appid": 1732240, + "normalized_name": "virtual journey into the metaverse" + }, + { + "appid": 1732260, + "normalized_name": "lucent bounds" + }, + { + "appid": 1732270, + "normalized_name": "tanhaji the lion maratha warrior of ch. shivaji" + }, + { + "appid": 1732310, + "normalized_name": "her jentle hi ness" + }, + { + "appid": 1732330, + "normalized_name": "ys ix monstrum nox" + }, + { + "appid": 1732340, + "normalized_name": "デモンゲイズ エクストラ / demon gaze extra" + }, + { + "appid": 1732390, + "normalized_name": "nayuta no kiseki kai" + }, + { + "appid": 1732420, + "normalized_name": "spanky!" + }, + { + "appid": 1732430, + "normalized_name": "neighbors suburban warfare" + }, + { + "appid": 1732480, + "normalized_name": "takkoman kouzatsu world" + }, + { + "appid": 1732500, + "normalized_name": "the eternal fool" + }, + { + "appid": 1732560, + "normalized_name": "родина.doc" + }, + { + "appid": 1732590, + "normalized_name": "玄龙山" + }, + { + "appid": 1732650, + "normalized_name": "fighting robots" + }, + { + "appid": 1732660, + "normalized_name": "car wash td tower defense" + }, + { + "appid": 1732720, + "normalized_name": "周松传" + }, + { + "appid": 1732730, + "normalized_name": "captures ii" + }, + { + "appid": 1732740, + "normalized_name": "sakura hime" + }, + { + "appid": 1732750, + "normalized_name": "havsala into the soul palace" + }, + { + "appid": 1732760, + "normalized_name": "enf novels dress code" + }, + { + "appid": 1732800, + "normalized_name": "cascade tactics" + }, + { + "appid": 1732840, + "normalized_name": "destruction dummies" + }, + { + "appid": 1732910, + "normalized_name": "photography simulator" + }, + { + "appid": 1732920, + "normalized_name": "bulanci" + }, + { + "appid": 1732930, + "normalized_name": "jolt project" + }, + { + "appid": 1732980, + "normalized_name": "tunguska a call in the woods" + }, + { + "appid": 1733020, + "normalized_name": "dragon throne battle of red cliffs" + }, + { + "appid": 1733030, + "normalized_name": "knights of the tiny table" + }, + { + "appid": 1733050, + "normalized_name": "stardander school for witches" + }, + { + "appid": 1733060, + "normalized_name": "ever seen a cat?" + }, + { + "appid": 1733080, + "normalized_name": "creatures of war" + }, + { + "appid": 1733090, + "normalized_name": "station 35" + }, + { + "appid": 1733100, + "normalized_name": "the twins' experiment" + }, + { + "appid": 1733110, + "normalized_name": "of life and land" + }, + { + "appid": 1733140, + "normalized_name": "n2222" + }, + { + "appid": 1733170, + "normalized_name": "killing time resurrected" + }, + { + "appid": 1733220, + "normalized_name": "pizza party" + }, + { + "appid": 1733230, + "normalized_name": "vortex" + }, + { + "appid": 1733240, + "normalized_name": "phantom fury" + }, + { + "appid": 1733250, + "normalized_name": "turbo kid" + }, + { + "appid": 1733270, + "normalized_name": "eelah" + }, + { + "appid": 1733280, + "normalized_name": "thenuwrld" + }, + { + "appid": 1733300, + "normalized_name": "my stepmom is a futanari 2" + }, + { + "appid": 1733310, + "normalized_name": "one fateful night" + }, + { + "appid": 1733400, + "normalized_name": "the final frontier" + }, + { + "appid": 1733440, + "normalized_name": "幻梦情旅" + }, + { + "appid": 1733460, + "normalized_name": "lirica" + }, + { + "appid": 1733480, + "normalized_name": "diner bros inc" + }, + { + "appid": 1733500, + "normalized_name": "looking for aliens" + }, + { + "appid": 1733540, + "normalized_name": "bit sword" + }, + { + "appid": 1733610, + "normalized_name": "alpine the simulation game" + }, + { + "appid": 1733620, + "normalized_name": "cursed pantsu" + }, + { + "appid": 1733660, + "normalized_name": "lawnmower game battle" + }, + { + "appid": 1733830, + "normalized_name": "魔王的简易用法" + }, + { + "appid": 1733840, + "normalized_name": "yurukill the calumniation games" + }, + { + "appid": 1733860, + "normalized_name": "slime factory" + }, + { + "appid": 1733880, + "normalized_name": "gunvolt chronicles luminous avenger ix 2" + }, + { + "appid": 1733890, + "normalized_name": "warhammer 40 000 battle sister" + }, + { + "appid": 1733940, + "normalized_name": "仙侠镇尘箓2" + }, + { + "appid": 1733950, + "normalized_name": "galaxy edge" + }, + { + "appid": 1734000, + "normalized_name": "necropolis suite" + }, + { + "appid": 1734040, + "normalized_name": "東方銀夜祭 ~ freedom train" + }, + { + "appid": 1734070, + "normalized_name": "東方紅夜狂宴 ~red empress devil." + }, + { + "appid": 1734110, + "normalized_name": "frog legs" + }, + { + "appid": 1734130, + "normalized_name": "concerto on white" + }, + { + "appid": 1734160, + "normalized_name": "search of galaxy" + }, + { + "appid": 1734230, + "normalized_name": "whatever" + }, + { + "appid": 1734250, + "normalized_name": "triple take" + }, + { + "appid": 1734270, + "normalized_name": "royal frontier" + }, + { + "appid": 1734280, + "normalized_name": "card storm idle" + }, + { + "appid": 1734310, + "normalized_name": "dungeon delvers" + }, + { + "appid": 1734320, + "normalized_name": "brutal orchestra" + }, + { + "appid": 1734330, + "normalized_name": "powertrip" + }, + { + "appid": 1734350, + "normalized_name": "chronomaster" + }, + { + "appid": 1734370, + "normalized_name": "timewreck tales a rogue rpg" + }, + { + "appid": 1734390, + "normalized_name": "the pioneers surviving desolation" + }, + { + "appid": 1734400, + "normalized_name": "mental hospital child of evil" + }, + { + "appid": 1734430, + "normalized_name": "spellborn" + }, + { + "appid": 1734470, + "normalized_name": "rough kuts the thirsty dead" + }, + { + "appid": 1734500, + "normalized_name": "knights and castles" + }, + { + "appid": 1734560, + "normalized_name": "kingdom of heroes" + }, + { + "appid": 1734600, + "normalized_name": "one against the wind" + }, + { + "appid": 1734610, + "normalized_name": "robosnow" + }, + { + "appid": 1734640, + "normalized_name": "靖之元:东海" + }, + { + "appid": 1734680, + "normalized_name": "incision" + }, + { + "appid": 1734700, + "normalized_name": "kriss' journey" + }, + { + "appid": 1734790, + "normalized_name": "the cruel kings" + }, + { + "appid": 1734810, + "normalized_name": "cubyrinth" + }, + { + "appid": 1734830, + "normalized_name": "cheeky princess" + }, + { + "appid": 1734850, + "normalized_name": "story of nararale" + }, + { + "appid": 1734860, + "normalized_name": "sacred curse" + }, + { + "appid": 1734870, + "normalized_name": "shiba army" + }, + { + "appid": 1734890, + "normalized_name": "visual novel sisters" + }, + { + "appid": 1734900, + "normalized_name": "inspector detective private eye" + }, + { + "appid": 1734960, + "normalized_name": "powernaut 2" + }, + { + "appid": 1734970, + "normalized_name": "planet hotpot" + }, + { + "appid": 1734980, + "normalized_name": "pumpkins" + }, + { + "appid": 1734990, + "normalized_name": "the netrunner awaken1ng" + }, + { + "appid": 1735010, + "normalized_name": "pathological tires" + }, + { + "appid": 1735030, + "normalized_name": "duck and the land of flightless birds" + }, + { + "appid": 1735040, + "normalized_name": "gravekeeper academy" + }, + { + "appid": 1735060, + "normalized_name": "reed the robotanist plus" + }, + { + "appid": 1735080, + "normalized_name": "high elo girls" + }, + { + "appid": 1735090, + "normalized_name": "tea time" + }, + { + "appid": 1735110, + "normalized_name": "museum of mechanics lockpicking" + }, + { + "appid": 1735140, + "normalized_name": "pushy worm" + }, + { + "appid": 1735150, + "normalized_name": "the last tree" + }, + { + "appid": 1735160, + "normalized_name": "hajwala line" + }, + { + "appid": 1735170, + "normalized_name": "slimeslider" + }, + { + "appid": 1735230, + "normalized_name": "stones keeper prologue" + }, + { + "appid": 1735280, + "normalized_name": "nagare boshi" + }, + { + "appid": 1735350, + "normalized_name": "shorticulture" + }, + { + "appid": 1735370, + "normalized_name": "necrowave" + }, + { + "appid": 1735400, + "normalized_name": "dessert tank the saga of hansel and gretel prologue" + }, + { + "appid": 1735410, + "normalized_name": "pale roots" + }, + { + "appid": 1735420, + "normalized_name": "fake hostel" + }, + { + "appid": 1735490, + "normalized_name": "実録パワフル野球拳スラッガー山田" + }, + { + "appid": 1735570, + "normalized_name": "steampunk gravity" + }, + { + "appid": 1735600, + "normalized_name": "rolling balls" + }, + { + "appid": 1735610, + "normalized_name": "multiply factory" + }, + { + "appid": 1735640, + "normalized_name": "farmers' market" + }, + { + "appid": 1735660, + "normalized_name": "monkey mansion" + }, + { + "appid": 1735670, + "normalized_name": "rote² (rotesquare)" + }, + { + "appid": 1735700, + "normalized_name": "back to the dawn" + }, + { + "appid": 1735790, + "normalized_name": "mystery box hidden secrets" + }, + { + "appid": 1735850, + "normalized_name": "mission 1985" + }, + { + "appid": 1735880, + "normalized_name": "drake frontier" + }, + { + "appid": 1735930, + "normalized_name": "sick" + }, + { + "appid": 1735950, + "normalized_name": "纸嫁衣" + }, + { + "appid": 1735970, + "normalized_name": "maison rouge" + }, + { + "appid": 1735980, + "normalized_name": "love flute" + }, + { + "appid": 1736000, + "normalized_name": "异星夺宝" + }, + { + "appid": 1736010, + "normalized_name": "双腕のソルダート the soldat with twin arms" + }, + { + "appid": 1736090, + "normalized_name": "demolish & build vr" + }, + { + "appid": 1736120, + "normalized_name": "gambit!" + }, + { + "appid": 1736140, + "normalized_name": "drag engineer" + }, + { + "appid": 1736200, + "normalized_name": "sealed gate" + }, + { + "appid": 1736220, + "normalized_name": "might of merchants" + }, + { + "appid": 1736240, + "normalized_name": "独行旅者 solitary traveler" + }, + { + "appid": 1736250, + "normalized_name": "code dread" + }, + { + "appid": 1736260, + "normalized_name": "home designer makeover blast" + }, + { + "appid": 1736270, + "normalized_name": "they are coming!" + }, + { + "appid": 1736290, + "normalized_name": "crime o'clock" + }, + { + "appid": 1736300, + "normalized_name": "liblade" + }, + { + "appid": 1736310, + "normalized_name": "fantasy jigsaw puzzle 3" + }, + { + "appid": 1736360, + "normalized_name": "hentai sakura 🌸🌊" + }, + { + "appid": 1736400, + "normalized_name": "tramsim munich the tram simulator" + }, + { + "appid": 1736450, + "normalized_name": "colonize prologue" + }, + { + "appid": 1736460, + "normalized_name": "the little spirit of the east" + }, + { + "appid": 1736480, + "normalized_name": "yoga master" + }, + { + "appid": 1736490, + "normalized_name": "lazy girl" + }, + { + "appid": 1736510, + "normalized_name": "anxiety treatment with relaxation demo" + }, + { + "appid": 1736530, + "normalized_name": "shadowave revenger" + }, + { + "appid": 1736550, + "normalized_name": "deflector" + }, + { + "appid": 1736560, + "normalized_name": "weakpoint delta" + }, + { + "appid": 1736590, + "normalized_name": "shambled spiral" + }, + { + "appid": 1736620, + "normalized_name": "the eightfold path" + }, + { + "appid": 1736630, + "normalized_name": "minesweeper" + }, + { + "appid": 1736670, + "normalized_name": "tilting tiles" + }, + { + "appid": 1736680, + "normalized_name": "xio revive" + }, + { + "appid": 1736710, + "normalized_name": "mummy sandbox" + }, + { + "appid": 1736730, + "normalized_name": "don't get tagged" + }, + { + "appid": 1736740, + "normalized_name": "cactus clicker bofete stories" + }, + { + "appid": 1736760, + "normalized_name": "street stallion the jaywalk simulator" + }, + { + "appid": 1736830, + "normalized_name": "the chewllers" + }, + { + "appid": 1736840, + "normalized_name": "from paris with love passion with view" + }, + { + "appid": 1736850, + "normalized_name": "camp palut" + }, + { + "appid": 1736900, + "normalized_name": "legends of snooker one shot" + }, + { + "appid": 1736910, + "normalized_name": "insomnia jigsaw" + }, + { + "appid": 1736970, + "normalized_name": "dark colors" + }, + { + "appid": 1736980, + "normalized_name": "bounceshot" + }, + { + "appid": 1737010, + "normalized_name": "collector thief" + }, + { + "appid": 1737050, + "normalized_name": "war and empires 4x rts battle" + }, + { + "appid": 1737070, + "normalized_name": "风起长安:驭骨人" + }, + { + "appid": 1737100, + "normalized_name": "treasure of nadia" + }, + { + "appid": 1737110, + "normalized_name": "endeavor rite of passage" + }, + { + "appid": 1737130, + "normalized_name": "ducky" + }, + { + "appid": 1737150, + "normalized_name": "scarlet and blank" + }, + { + "appid": 1737170, + "normalized_name": "among dots" + }, + { + "appid": 1737200, + "normalized_name": "ardarium" + }, + { + "appid": 1737220, + "normalized_name": "myriads renaissance" + }, + { + "appid": 1737240, + "normalized_name": "天气" + }, + { + "appid": 1737280, + "normalized_name": "bad animals rabbit" + }, + { + "appid": 1737330, + "normalized_name": "雾尽时分" + }, + { + "appid": 1737340, + "normalized_name": "noobs want to live" + }, + { + "appid": 1737370, + "normalized_name": "jurassic architect" + }, + { + "appid": 1737380, + "normalized_name": "brambles in the mist" + }, + { + "appid": 1737400, + "normalized_name": "kick bastards" + }, + { + "appid": 1737440, + "normalized_name": "trip saber" + }, + { + "appid": 1737450, + "normalized_name": "motorcycle biker simulator" + }, + { + "appid": 1737460, + "normalized_name": "into the abyss" + }, + { + "appid": 1737470, + "normalized_name": "division of labour" + }, + { + "appid": 1737480, + "normalized_name": "super" + }, + { + "appid": 1737510, + "normalized_name": "hardworking hero" + }, + { + "appid": 1737520, + "normalized_name": "frostory" + }, + { + "appid": 1737530, + "normalized_name": "darktimes wrath of the raven" + }, + { + "appid": 1737550, + "normalized_name": "warships final battle" + }, + { + "appid": 1737600, + "normalized_name": "alphabetical order" + }, + { + "appid": 1737620, + "normalized_name": "please duology" + }, + { + "appid": 1737640, + "normalized_name": "theory of poltaran" + }, + { + "appid": 1737690, + "normalized_name": "yacht dice" + }, + { + "appid": 1737730, + "normalized_name": "neko journey" + }, + { + "appid": 1737740, + "normalized_name": "survival bunker" + }, + { + "appid": 1737750, + "normalized_name": "three in a rogue" + }, + { + "appid": 1737760, + "normalized_name": "platonic" + }, + { + "appid": 1737830, + "normalized_name": "floppy and the sleepy planet" + }, + { + "appid": 1737840, + "normalized_name": "virtual world digital girl" + }, + { + "appid": 1737870, + "normalized_name": "reka" + }, + { + "appid": 1737890, + "normalized_name": "lúcido" + }, + { + "appid": 1737910, + "normalized_name": "xpellit" + }, + { + "appid": 1737920, + "normalized_name": "midnight calling valeria collector's" + }, + { + "appid": 1737960, + "normalized_name": "(old steam page)" + }, + { + "appid": 1737980, + "normalized_name": "galacticon" + }, + { + "appid": 1738100, + "normalized_name": "puzzle light connect" + }, + { + "appid": 1738140, + "normalized_name": "campfire tales" + }, + { + "appid": 1738150, + "normalized_name": "draft day sports pro football 2022" + }, + { + "appid": 1738160, + "normalized_name": "the last cadet" + }, + { + "appid": 1738420, + "normalized_name": "sinsations" + }, + { + "appid": 1738480, + "normalized_name": "zoo squad" + }, + { + "appid": 1738490, + "normalized_name": "からかい上手の高木さんvr 2学期" + }, + { + "appid": 1738500, + "normalized_name": "velvet clouds" + }, + { + "appid": 1738520, + "normalized_name": "bikini armour explorers" + }, + { + "appid": 1738540, + "normalized_name": "dancing cube" + }, + { + "appid": 1738550, + "normalized_name": "dalruan world of magic" + }, + { + "appid": 1738570, + "normalized_name": "燕赤霞" + }, + { + "appid": 1738610, + "normalized_name": "first class escape the train of thought" + }, + { + "appid": 1738620, + "normalized_name": "confined space entry vr training" + }, + { + "appid": 1738630, + "normalized_name": "fantasy sliding puzzle" + }, + { + "appid": 1738640, + "normalized_name": "box office boss" + }, + { + "appid": 1738670, + "normalized_name": "fairground power polyp simulator" + }, + { + "appid": 1738680, + "normalized_name": "the dark tower" + }, + { + "appid": 1738710, + "normalized_name": "scp observer" + }, + { + "appid": 1738740, + "normalized_name": "七雄纷争" + }, + { + "appid": 1738830, + "normalized_name": "this is crying" + }, + { + "appid": 1738850, + "normalized_name": "plumber 3" + }, + { + "appid": 1738880, + "normalized_name": "gewevo interstellaire" + }, + { + "appid": 1738890, + "normalized_name": "naval hurricane" + }, + { + "appid": 1738990, + "normalized_name": "elf sex farm" + }, + { + "appid": 1739000, + "normalized_name": "franchise hockey manager 8" + }, + { + "appid": 1739030, + "normalized_name": "immortal paradise" + }, + { + "appid": 1739060, + "normalized_name": "bubble breaking" + }, + { + "appid": 1739070, + "normalized_name": "bone's cafe" + }, + { + "appid": 1739080, + "normalized_name": "sword hero" + }, + { + "appid": 1739100, + "normalized_name": "not another dungeon?!" + }, + { + "appid": 1739130, + "normalized_name": "cornmaze craze" + }, + { + "appid": 1739150, + "normalized_name": "spookity hollow" + }, + { + "appid": 1739160, + "normalized_name": "――ッ違う!!!" + }, + { + "appid": 1739200, + "normalized_name": "combo babies" + }, + { + "appid": 1739260, + "normalized_name": "sacred gems" + }, + { + "appid": 1739280, + "normalized_name": "bramblewood" + }, + { + "appid": 1739300, + "normalized_name": "smack studio" + }, + { + "appid": 1739340, + "normalized_name": "mr. hopp's manor escape" + }, + { + "appid": 1739360, + "normalized_name": "hold the plates" + }, + { + "appid": 1739400, + "normalized_name": "chicken duty" + }, + { + "appid": 1739420, + "normalized_name": "chessie chicken" + }, + { + "appid": 1739480, + "normalized_name": "hordebreaker" + }, + { + "appid": 1739500, + "normalized_name": "cage face | case 2 the sewer" + }, + { + "appid": 1739520, + "normalized_name": "nysunder" + }, + { + "appid": 1739530, + "normalized_name": "excaliburian!!" + }, + { + "appid": 1739560, + "normalized_name": "spirittracker" + }, + { + "appid": 1739580, + "normalized_name": "fission" + }, + { + "appid": 1739620, + "normalized_name": "chester’s revenge" + }, + { + "appid": 1739640, + "normalized_name": "billiards legend black 8 miracle" + }, + { + "appid": 1739650, + "normalized_name": "dimensions dreadnought architect" + }, + { + "appid": 1739680, + "normalized_name": "tales of a rabbit the story of willie hop" + }, + { + "appid": 1739710, + "normalized_name": "dreams of the elements" + }, + { + "appid": 1739770, + "normalized_name": "parking light" + }, + { + "appid": 1739800, + "normalized_name": "damn ropes" + }, + { + "appid": 1739850, + "normalized_name": "howling village echoes" + }, + { + "appid": 1739880, + "normalized_name": "blood and zombies" + }, + { + "appid": 1739900, + "normalized_name": "death of the reprobate" + }, + { + "appid": 1739910, + "normalized_name": "seaside driving" + }, + { + "appid": 1739930, + "normalized_name": "marlon’s mystery the darkside of crime" + }, + { + "appid": 1739940, + "normalized_name": "grid tales" + }, + { + "appid": 1739960, + "normalized_name": "snap the sentinel" + }, + { + "appid": 1740000, + "normalized_name": "cute honey bunny girl" + }, + { + "appid": 1740010, + "normalized_name": "undead menace" + }, + { + "appid": 1740050, + "normalized_name": "sleeping beauty" + }, + { + "appid": 1740070, + "normalized_name": "heliopedia" + }, + { + "appid": 1740080, + "normalized_name": "level up simulator" + }, + { + "appid": 1740100, + "normalized_name": "at home alone final" + }, + { + "appid": 1740120, + "normalized_name": "ufo checkers" + }, + { + "appid": 1740130, + "normalized_name": "loco sort" + }, + { + "appid": 1740140, + "normalized_name": "swat" + }, + { + "appid": 1740150, + "normalized_name": "a.w.o.l." + }, + { + "appid": 1740170, + "normalized_name": "tap tap builder" + }, + { + "appid": 1740180, + "normalized_name": "bombs away" + }, + { + "appid": 1740220, + "normalized_name": "the old ones" + }, + { + "appid": 1740230, + "normalized_name": "furquest" + }, + { + "appid": 1740240, + "normalized_name": "100 hidden cups" + }, + { + "appid": 1740250, + "normalized_name": "strange town" + }, + { + "appid": 1740270, + "normalized_name": "dynarog 2" + }, + { + "appid": 1740300, + "normalized_name": "smushi come home" + }, + { + "appid": 1740310, + "normalized_name": "tiny witch" + }, + { + "appid": 1740320, + "normalized_name": "gutting goblins!" + }, + { + "appid": 1740380, + "normalized_name": "pandea stones" + }, + { + "appid": 1740420, + "normalized_name": "colors! maze" + }, + { + "appid": 1740470, + "normalized_name": "hot swap cyberlust" + }, + { + "appid": 1740490, + "normalized_name": "the elm game" + }, + { + "appid": 1740530, + "normalized_name": "redside episode 1" + }, + { + "appid": 1740540, + "normalized_name": "the lands of eldyn" + }, + { + "appid": 1740550, + "normalized_name": "sports betting simulator" + }, + { + "appid": 1740570, + "normalized_name": "cursed night the house" + }, + { + "appid": 1740600, + "normalized_name": "knight&princess" + }, + { + "appid": 1740610, + "normalized_name": "escape from docy" + }, + { + "appid": 1740630, + "normalized_name": "tengin music engine" + }, + { + "appid": 1740660, + "normalized_name": "miraculous rise of the sphinx" + }, + { + "appid": 1740680, + "normalized_name": "voodoo detective" + }, + { + "appid": 1740710, + "normalized_name": "three pigeons in a trench coat" + }, + { + "appid": 1740720, + "normalized_name": "have a nice death" + }, + { + "appid": 1740730, + "normalized_name": "flesh water" + }, + { + "appid": 1740760, + "normalized_name": "rayland" + }, + { + "appid": 1740850, + "normalized_name": "角斗士学院(gladiator school)" + }, + { + "appid": 1740870, + "normalized_name": "don't buy this steam won't let me remove it" + }, + { + "appid": 1740890, + "normalized_name": "i love finding pups" + }, + { + "appid": 1740920, + "normalized_name": "缥缈修仙录" + }, + { + "appid": 1740930, + "normalized_name": "jellycar worlds" + }, + { + "appid": 1740950, + "normalized_name": "queen of succubus" + }, + { + "appid": 1740990, + "normalized_name": "lawnmower game space fight" + }, + { + "appid": 1741030, + "normalized_name": "sanae toumaden x2 / 早苗討魔伝x2" + }, + { + "appid": 1741040, + "normalized_name": "last devil" + }, + { + "appid": 1741080, + "normalized_name": "solanaceae after all" + }, + { + "appid": 1741120, + "normalized_name": "fantasy general" + }, + { + "appid": 1741130, + "normalized_name": "pacific general" + }, + { + "appid": 1741140, + "normalized_name": "war wind" + }, + { + "appid": 1741150, + "normalized_name": "war wind ii human onslaught" + }, + { + "appid": 1741160, + "normalized_name": "catch me!" + }, + { + "appid": 1741170, + "normalized_name": "乌合之众" + }, + { + "appid": 1741200, + "normalized_name": "gobby island" + }, + { + "appid": 1741220, + "normalized_name": "forbidden place" + }, + { + "appid": 1741260, + "normalized_name": "faster than possible" + }, + { + "appid": 1741270, + "normalized_name": "solomon division" + }, + { + "appid": 1741300, + "normalized_name": "sit down please" + }, + { + "appid": 1741420, + "normalized_name": "oplitisav" + }, + { + "appid": 1741430, + "normalized_name": "blobby's quest" + }, + { + "appid": 1741440, + "normalized_name": "koru" + }, + { + "appid": 1741450, + "normalized_name": "heroes of the galaxy" + }, + { + "appid": 1741480, + "normalized_name": "ultimaze" + }, + { + "appid": 1741490, + "normalized_name": "undying lantern" + }, + { + "appid": 1741510, + "normalized_name": "traffic command reborn" + }, + { + "appid": 1741520, + "normalized_name": "air strike" + }, + { + "appid": 1741550, + "normalized_name": "来自女巫森林的法师" + }, + { + "appid": 1741620, + "normalized_name": "spirit and katana" + }, + { + "appid": 1741640, + "normalized_name": "shadows of forbidden gods" + }, + { + "appid": 1741650, + "normalized_name": "iron age" + }, + { + "appid": 1741670, + "normalized_name": "hedgie simulator" + }, + { + "appid": 1741730, + "normalized_name": "fortress defender" + }, + { + "appid": 1741870, + "normalized_name": "katana punk" + }, + { + "appid": 1741900, + "normalized_name": "you vs drugs" + }, + { + "appid": 1741940, + "normalized_name": "project shanto rancher" + }, + { + "appid": 1742010, + "normalized_name": "ghosted the puzzle master" + }, + { + "appid": 1742020, + "normalized_name": "idol showdown" + }, + { + "appid": 1742040, + "normalized_name": "kingslayers" + }, + { + "appid": 1742060, + "normalized_name": "purify" + }, + { + "appid": 1742080, + "normalized_name": "fishing at lotus lakes" + }, + { + "appid": 1742110, + "normalized_name": "demon lord clicker" + }, + { + "appid": 1742120, + "normalized_name": "mary knots garden wedding" + }, + { + "appid": 1742170, + "normalized_name": "eco park" + }, + { + "appid": 1742230, + "normalized_name": "sandfall" + }, + { + "appid": 1742240, + "normalized_name": "hymns of resurrection" + }, + { + "appid": 1742250, + "normalized_name": "electric car tycoon" + }, + { + "appid": 1742290, + "normalized_name": "they came from another planet" + }, + { + "appid": 1742310, + "normalized_name": "andromeda acolytes" + }, + { + "appid": 1742330, + "normalized_name": "tarakan mystery point & click adventure" + }, + { + "appid": 1742340, + "normalized_name": "submarine vr" + }, + { + "appid": 1742350, + "normalized_name": "sweet desire hentai puzzle" + }, + { + "appid": 1742360, + "normalized_name": "esports history" + }, + { + "appid": 1742370, + "normalized_name": "instinct" + }, + { + "appid": 1742390, + "normalized_name": "ayna shattered truth" + }, + { + "appid": 1742410, + "normalized_name": "green city" + }, + { + "appid": 1742440, + "normalized_name": "cop bastard" + }, + { + "appid": 1742450, + "normalized_name": "西游记2021" + }, + { + "appid": 1742470, + "normalized_name": "my newborn life in a harem" + }, + { + "appid": 1742480, + "normalized_name": "eternal night" + }, + { + "appid": 1742500, + "normalized_name": "my dear frankenstein english" + }, + { + "appid": 1742510, + "normalized_name": "wreckdigger" + }, + { + "appid": 1742530, + "normalized_name": "my journey to your world" + }, + { + "appid": 1742540, + "normalized_name": "monster tamer" + }, + { + "appid": 1742590, + "normalized_name": "tempus" + }, + { + "appid": 1742600, + "normalized_name": "perish song" + }, + { + "appid": 1742610, + "normalized_name": "spirits of the hellements td" + }, + { + "appid": 1742620, + "normalized_name": "sudoku minimalist infinite" + }, + { + "appid": 1742690, + "normalized_name": "requiem" + }, + { + "appid": 1742730, + "normalized_name": "greek tragedy" + }, + { + "appid": 1742740, + "normalized_name": "ribby the game" + }, + { + "appid": 1742750, + "normalized_name": "delta zero" + }, + { + "appid": 1742770, + "normalized_name": "dark age empires" + }, + { + "appid": 1742800, + "normalized_name": "break" + }, + { + "appid": 1742820, + "normalized_name": "timescape altitude" + }, + { + "appid": 1742830, + "normalized_name": "aebal" + }, + { + "appid": 1742850, + "normalized_name": "card game simulator" + }, + { + "appid": 1742860, + "normalized_name": "empyrean scout" + }, + { + "appid": 1742870, + "normalized_name": "iron tracks td" + }, + { + "appid": 1742880, + "normalized_name": "ファントムゾーンクリプトファシア" + }, + { + "appid": 1742900, + "normalized_name": "wings of ww2" + }, + { + "appid": 1742910, + "normalized_name": "the forest prison" + }, + { + "appid": 1742930, + "normalized_name": "looking up i see only a ceiling" + }, + { + "appid": 1742940, + "normalized_name": "poly puzzle furries" + }, + { + "appid": 1742950, + "normalized_name": "lifeflame compendium" + }, + { + "appid": 1742970, + "normalized_name": "narco lolita" + }, + { + "appid": 1743000, + "normalized_name": "against death" + }, + { + "appid": 1743010, + "normalized_name": "one last memory" + }, + { + "appid": 1743050, + "normalized_name": "robo pocket 3d fighter with rollback" + }, + { + "appid": 1743070, + "normalized_name": "fuga da rowei" + }, + { + "appid": 1743080, + "normalized_name": "night cascades" + }, + { + "appid": 1743110, + "normalized_name": "sidequest" + }, + { + "appid": 1743120, + "normalized_name": "abettor" + }, + { + "appid": 1743140, + "normalized_name": "i w.o.m.a.n." + }, + { + "appid": 1743150, + "normalized_name": "touch from a raindrop" + }, + { + "appid": 1743180, + "normalized_name": "close quarters supremacy the legis" + }, + { + "appid": 1743190, + "normalized_name": "love! truth! puzzle!" + }, + { + "appid": 1743220, + "normalized_name": "spectrum" + }, + { + "appid": 1743230, + "normalized_name": "time of the clones" + }, + { + "appid": 1743260, + "normalized_name": "welcome to free will episode 1" + }, + { + "appid": 1743280, + "normalized_name": "lola the escape" + }, + { + "appid": 1743350, + "normalized_name": "koshmar" + }, + { + "appid": 1743380, + "normalized_name": "scp doki doki anomaly" + }, + { + "appid": 1743390, + "normalized_name": "yetifree" + }, + { + "appid": 1743410, + "normalized_name": "forgotten the game" + }, + { + "appid": 1743430, + "normalized_name": "firebird legend of the crystal goddesses" + }, + { + "appid": 1743450, + "normalized_name": "danglebox" + }, + { + "appid": 1743470, + "normalized_name": "dirty wars september 11" + }, + { + "appid": 1743530, + "normalized_name": "mireille and amrita the forest of illusions" + }, + { + "appid": 1743570, + "normalized_name": "rfvr" + }, + { + "appid": 1743580, + "normalized_name": "horny elves and a moral orc" + }, + { + "appid": 1743610, + "normalized_name": "running water" + }, + { + "appid": 1743650, + "normalized_name": "teravit" + }, + { + "appid": 1743660, + "normalized_name": "心灵迷宫( mind maze)" + }, + { + "appid": 1743670, + "normalized_name": "axon hero" + }, + { + "appid": 1743710, + "normalized_name": "100 doors escape from prison" + }, + { + "appid": 1743720, + "normalized_name": "typer hero (打字英雄)" + }, + { + "appid": 1743730, + "normalized_name": "sir you are being hunted reinvented" + }, + { + "appid": 1743780, + "normalized_name": "*new* final scuffed with a little polish bhop experience 2029 brain rot (pog champ)" + }, + { + "appid": 1743790, + "normalized_name": "dip the frog" + }, + { + "appid": 1743810, + "normalized_name": "the forgotten phobia" + }, + { + "appid": 1743820, + "normalized_name": "orph the lost boy" + }, + { + "appid": 1743830, + "normalized_name": "one military camp" + }, + { + "appid": 1743850, + "normalized_name": "hyper demon" + }, + { + "appid": 1743880, + "normalized_name": "andalia" + }, + { + "appid": 1743930, + "normalized_name": "froggo swing 'n grapple" + }, + { + "appid": 1743940, + "normalized_name": "誰是犯案者 who is the criminal" + }, + { + "appid": 1744020, + "normalized_name": "domino effect build and topple" + }, + { + "appid": 1744050, + "normalized_name": "hidden words" + }, + { + "appid": 1744060, + "normalized_name": "dogs.io" + }, + { + "appid": 1744070, + "normalized_name": "solomon snow first contact" + }, + { + "appid": 1744120, + "normalized_name": "cannibals" + }, + { + "appid": 1744130, + "normalized_name": "determina" + }, + { + "appid": 1744140, + "normalized_name": "conundrum" + }, + { + "appid": 1744200, + "normalized_name": "city legends the curse of the crimson shadow collector's" + }, + { + "appid": 1744270, + "normalized_name": "indigo loop" + }, + { + "appid": 1744280, + "normalized_name": "innocent critters" + }, + { + "appid": 1744290, + "normalized_name": "wasteland warden" + }, + { + "appid": 1744330, + "normalized_name": "no more heroes 3" + }, + { + "appid": 1744350, + "normalized_name": "project create" + }, + { + "appid": 1744380, + "normalized_name": "richard west and the golden mask" + }, + { + "appid": 1744400, + "normalized_name": "jujubos puzzle" + }, + { + "appid": 1744420, + "normalized_name": "halloween memory reborn" + }, + { + "appid": 1744430, + "normalized_name": "fairy godmother stories miraculous dream collector's" + }, + { + "appid": 1744450, + "normalized_name": "indirection" + }, + { + "appid": 1744460, + "normalized_name": "soul climb" + }, + { + "appid": 1744510, + "normalized_name": "ballin'" + }, + { + "appid": 1744570, + "normalized_name": "u ena 遠花火の少女" + }, + { + "appid": 1744580, + "normalized_name": "evan quest" + }, + { + "appid": 1744590, + "normalized_name": "love sucks night three" + }, + { + "appid": 1744610, + "normalized_name": "prime directive" + }, + { + "appid": 1744620, + "normalized_name": "dance of cubes" + }, + { + "appid": 1744630, + "normalized_name": "seance" + }, + { + "appid": 1744640, + "normalized_name": "nineteen" + }, + { + "appid": 1744650, + "normalized_name": "iris covenant –song of the forgotten heroes–" + }, + { + "appid": 1744670, + "normalized_name": "back 4 boobs sakura's escape" + }, + { + "appid": 1744740, + "normalized_name": "born in blood" + }, + { + "appid": 1744750, + "normalized_name": "东方求闻音录" + }, + { + "appid": 1744760, + "normalized_name": "the adventures of detective bron" + }, + { + "appid": 1744770, + "normalized_name": "rocklen" + }, + { + "appid": 1744790, + "normalized_name": "match three pirates ii" + }, + { + "appid": 1744820, + "normalized_name": "flibbles" + }, + { + "appid": 1744850, + "normalized_name": "hexoplanet" + }, + { + "appid": 1744880, + "normalized_name": "nodyssey" + }, + { + "appid": 1744910, + "normalized_name": "[chilla's art] the radio station | 深夜放送" + }, + { + "appid": 1744930, + "normalized_name": "touching grass simulator" + }, + { + "appid": 1744970, + "normalized_name": "petit island" + }, + { + "appid": 1745000, + "normalized_name": "fisherman's house" + }, + { + "appid": 1745020, + "normalized_name": "cleromancy" + }, + { + "appid": 1745030, + "normalized_name": "falling kwadrats" + }, + { + "appid": 1745040, + "normalized_name": "history of football world cup" + }, + { + "appid": 1745050, + "normalized_name": "omen fall" + }, + { + "appid": 1745140, + "normalized_name": "naughty puzzles" + }, + { + "appid": 1745160, + "normalized_name": "forest football" + }, + { + "appid": 1745170, + "normalized_name": "primitier" + }, + { + "appid": 1745190, + "normalized_name": "against ether" + }, + { + "appid": 1745200, + "normalized_name": "sexy airlines" + }, + { + "appid": 1745210, + "normalized_name": "timewell trail of celestes" + }, + { + "appid": 1745220, + "normalized_name": "mr.domusmundi" + }, + { + "appid": 1745240, + "normalized_name": "kemonopoly" + }, + { + "appid": 1745260, + "normalized_name": "girls cairo papyrus" + }, + { + "appid": 1745280, + "normalized_name": "magitek vr" + }, + { + "appid": 1745310, + "normalized_name": "與經紀人戀愛是絕對禁止!" + }, + { + "appid": 1745340, + "normalized_name": "whennightcomes" + }, + { + "appid": 1745350, + "normalized_name": "clash of the metal" + }, + { + "appid": 1745360, + "normalized_name": "dynacat" + }, + { + "appid": 1745370, + "normalized_name": "ragnar" + }, + { + "appid": 1745380, + "normalized_name": "under the water an ocean survival game" + }, + { + "appid": 1745390, + "normalized_name": "high tech low life" + }, + { + "appid": 1745410, + "normalized_name": "skattered dream" + }, + { + "appid": 1745430, + "normalized_name": "beasts of burden" + }, + { + "appid": 1745480, + "normalized_name": "phantom project" + }, + { + "appid": 1745510, + "normalized_name": "lunacid" + }, + { + "appid": 1745520, + "normalized_name": "redshot" + }, + { + "appid": 1745530, + "normalized_name": "lost awakening" + }, + { + "appid": 1745550, + "normalized_name": "axilon legend of artifacts prologue" + }, + { + "appid": 1745560, + "normalized_name": "the oldest edda" + }, + { + "appid": 1745620, + "normalized_name": "the oath of the dark magic queen" + }, + { + "appid": 1745640, + "normalized_name": "mace mapinguari's temple" + }, + { + "appid": 1745650, + "normalized_name": "dat hentai game" + }, + { + "appid": 1745680, + "normalized_name": "odd remedy" + }, + { + "appid": 1745690, + "normalized_name": "deluge threnody of crashing waves" + }, + { + "appid": 1745700, + "normalized_name": "impossible slasher! hack and slash" + }, + { + "appid": 1745710, + "normalized_name": "cato the cat" + }, + { + "appid": 1745740, + "normalized_name": "laserboy" + }, + { + "appid": 1745750, + "normalized_name": "occult crime police" + }, + { + "appid": 1745760, + "normalized_name": "brave tales" + }, + { + "appid": 1745790, + "normalized_name": "city zoomer" + }, + { + "appid": 1745800, + "normalized_name": "doom work" + }, + { + "appid": 1745810, + "normalized_name": "scaredom" + }, + { + "appid": 1745820, + "normalized_name": "love hentai and puzzles dungeon boobs" + }, + { + "appid": 1745840, + "normalized_name": "love hentai and puzzles cyberpunk babes" + }, + { + "appid": 1745860, + "normalized_name": "speed creators" + }, + { + "appid": 1745880, + "normalized_name": "glob dash" + }, + { + "appid": 1745920, + "normalized_name": "征服者之王" + }, + { + "appid": 1745960, + "normalized_name": "circuit breaker" + }, + { + "appid": 1745980, + "normalized_name": "升官模拟器" + }, + { + "appid": 1745990, + "normalized_name": "lost but lucid" + }, + { + "appid": 1746030, + "normalized_name": "山河旅探 murders on the yangtze river" + }, + { + "appid": 1746040, + "normalized_name": "technikiller" + }, + { + "appid": 1746080, + "normalized_name": "you are a slave!" + }, + { + "appid": 1746120, + "normalized_name": "halloween trouble 3 match 3 puzzle" + }, + { + "appid": 1746130, + "normalized_name": "onmyoji in the otherworld sayaka's story" + }, + { + "appid": 1746140, + "normalized_name": "asteroidtd" + }, + { + "appid": 1746150, + "normalized_name": "nosos" + }, + { + "appid": 1746210, + "normalized_name": "日记簿" + }, + { + "appid": 1746230, + "normalized_name": "too many humans" + }, + { + "appid": 1746280, + "normalized_name": "ball ranger" + }, + { + "appid": 1746340, + "normalized_name": "poop plague in fairyland" + }, + { + "appid": 1746370, + "normalized_name": "dumb treasure" + }, + { + "appid": 1746400, + "normalized_name": "the foretold westmark legacy" + }, + { + "appid": 1746420, + "normalized_name": "ripple 涟" + }, + { + "appid": 1746500, + "normalized_name": "asmagnet" + }, + { + "appid": 1746520, + "normalized_name": "idiotic (the game)" + }, + { + "appid": 1746530, + "normalized_name": "confessions at candlewood lake" + }, + { + "appid": 1746540, + "normalized_name": "游戏:异星" + }, + { + "appid": 1746560, + "normalized_name": "blacken slash" + }, + { + "appid": 1746590, + "normalized_name": "crystal story dawn of dusk" + }, + { + "appid": 1746620, + "normalized_name": "where is paradise ?" + }, + { + "appid": 1746630, + "normalized_name": "69 erika love" + }, + { + "appid": 1746640, + "normalized_name": "邪恶勇者" + }, + { + "appid": 1746650, + "normalized_name": "paradise trails" + }, + { + "appid": 1746660, + "normalized_name": "space ballers" + }, + { + "appid": 1746700, + "normalized_name": "the alchemist shop an apprentice's life" + }, + { + "appid": 1746730, + "normalized_name": "hidden objects cartoon fantasy" + }, + { + "appid": 1746760, + "normalized_name": "boomer slayers" + }, + { + "appid": 1746770, + "normalized_name": "the chicken's fall" + }, + { + "appid": 1746780, + "normalized_name": "savior of light" + }, + { + "appid": 1746820, + "normalized_name": "hydrogen" + }, + { + "appid": 1746830, + "normalized_name": "sailing stone" + }, + { + "appid": 1746870, + "normalized_name": "serene asylum" + }, + { + "appid": 1746890, + "normalized_name": "kingdom fall dawn of the druid" + }, + { + "appid": 1746930, + "normalized_name": "sunnyside" + }, + { + "appid": 1746970, + "normalized_name": "cat clicker" + }, + { + "appid": 1746980, + "normalized_name": "rain in the abyss" + }, + { + "appid": 1747030, + "normalized_name": "the trials" + }, + { + "appid": 1747050, + "normalized_name": "sam & max beyond time and space" + }, + { + "appid": 1747080, + "normalized_name": "neeron the blade of nature" + }, + { + "appid": 1747110, + "normalized_name": "base wars" + }, + { + "appid": 1747150, + "normalized_name": "jackpot bennaction b02 discover the mystery combination" + }, + { + "appid": 1747160, + "normalized_name": "pornocrates osiris's seed" + }, + { + "appid": 1747190, + "normalized_name": "lighthaze world" + }, + { + "appid": 1747210, + "normalized_name": "escape from planet aelea" + }, + { + "appid": 1747220, + "normalized_name": "neverspring chronicles" + }, + { + "appid": 1747300, + "normalized_name": "selobusfantasy" + }, + { + "appid": 1747310, + "normalized_name": "catana" + }, + { + "appid": 1747330, + "normalized_name": "a lose hero in the castle of the succubi" + }, + { + "appid": 1747340, + "normalized_name": "hentai girls sliding puzzle" + }, + { + "appid": 1747370, + "normalized_name": "gpi" + }, + { + "appid": 1747430, + "normalized_name": "bomberpet" + }, + { + "appid": 1747440, + "normalized_name": "rocket jump" + }, + { + "appid": 1747450, + "normalized_name": "成土市的我 ctcity" + }, + { + "appid": 1747470, + "normalized_name": "road diner simulator" + }, + { + "appid": 1747490, + "normalized_name": "fantasy match puzzle" + }, + { + "appid": 1747500, + "normalized_name": "crom journey of conquest" + }, + { + "appid": 1747510, + "normalized_name": "an architect's adventure" + }, + { + "appid": 1747520, + "normalized_name": "yuzi lims puzzle" + }, + { + "appid": 1747560, + "normalized_name": "chronicles of 2 heroes amaterasu's wrath" + }, + { + "appid": 1747570, + "normalized_name": "crazy athletics summer sports & games" + }, + { + "appid": 1747580, + "normalized_name": "sgs fall weiss" + }, + { + "appid": 1747590, + "normalized_name": "kenopsia" + }, + { + "appid": 1747630, + "normalized_name": "for the hive" + }, + { + "appid": 1747650, + "normalized_name": "the darkest tales — into the nightmare" + }, + { + "appid": 1747660, + "normalized_name": "mother of all secrets" + }, + { + "appid": 1747670, + "normalized_name": "jewel match twilight 3 collector's" + }, + { + "appid": 1747680, + "normalized_name": "faraway jungle escape" + }, + { + "appid": 1747690, + "normalized_name": "faraway arctic escape" + }, + { + "appid": 1747750, + "normalized_name": "flyland wars 3 model trains" + }, + { + "appid": 1747760, + "normalized_name": "momodora moonlit farewell" + }, + { + "appid": 1747790, + "normalized_name": "catellite 609 feline space adventure" + }, + { + "appid": 1747800, + "normalized_name": "legendary mahjong 2" + }, + { + "appid": 1747830, + "normalized_name": "blossom tales ii the minotaur prince" + }, + { + "appid": 1747850, + "normalized_name": "blocks must fall!" + }, + { + "appid": 1747860, + "normalized_name": "halloween night" + }, + { + "appid": 1747890, + "normalized_name": "demon turf neon splash" + }, + { + "appid": 1747900, + "normalized_name": "enchanted blacksmith" + }, + { + "appid": 1747940, + "normalized_name": "neon arena" + }, + { + "appid": 1747980, + "normalized_name": "redship" + }, + { + "appid": 1748020, + "normalized_name": "kusari kingdom" + }, + { + "appid": 1748050, + "normalized_name": "a sinful camp" + }, + { + "appid": 1748060, + "normalized_name": "starcross starcade special" + }, + { + "appid": 1748070, + "normalized_name": "storage chase" + }, + { + "appid": 1748090, + "normalized_name": "juicy bois conflict" + }, + { + "appid": 1748100, + "normalized_name": "freedom farming the american way" + }, + { + "appid": 1748110, + "normalized_name": "town of zoz" + }, + { + "appid": 1748160, + "normalized_name": "warlordocracy" + }, + { + "appid": 1748170, + "normalized_name": "fiasco restoration and repair" + }, + { + "appid": 1748210, + "normalized_name": "lovely animal stories" + }, + { + "appid": 1748230, + "normalized_name": "restless soul" + }, + { + "appid": 1748240, + "normalized_name": "rectitude" + }, + { + "appid": 1748250, + "normalized_name": "only evil remains" + }, + { + "appid": 1748260, + "normalized_name": "circuit city" + }, + { + "appid": 1748280, + "normalized_name": "gate zero" + }, + { + "appid": 1748290, + "normalized_name": "hardcore cruising a sci fi gay sex cruise!" + }, + { + "appid": 1748300, + "normalized_name": "dear monster" + }, + { + "appid": 1748310, + "normalized_name": "octofight escape" + }, + { + "appid": 1748330, + "normalized_name": "sand a superfluous game" + }, + { + "appid": 1748340, + "normalized_name": "finding home" + }, + { + "appid": 1748370, + "normalized_name": "the hunt" + }, + { + "appid": 1748380, + "normalized_name": "our brotherly war" + }, + { + "appid": 1748390, + "normalized_name": "rocket bot royale" + }, + { + "appid": 1748400, + "normalized_name": "starry moon island" + }, + { + "appid": 1748490, + "normalized_name": "jackpot bennaction b03 discover the mystery combination" + }, + { + "appid": 1748570, + "normalized_name": "hexmet world" + }, + { + "appid": 1748600, + "normalized_name": "sainthood" + }, + { + "appid": 1748610, + "normalized_name": "evil god korone" + }, + { + "appid": 1748620, + "normalized_name": "flipwitch forbidden sex hex" + }, + { + "appid": 1748640, + "normalized_name": "jaksaljabi" + }, + { + "appid": 1748650, + "normalized_name": "raskopnik the trench warrior" + }, + { + "appid": 1748660, + "normalized_name": "voice of cards the forsaken maiden" + }, + { + "appid": 1748700, + "normalized_name": "curse of elmwood" + }, + { + "appid": 1748740, + "normalized_name": "evolution moon warfare" + }, + { + "appid": 1748750, + "normalized_name": "crystarise" + }, + { + "appid": 1748760, + "normalized_name": "king's helper" + }, + { + "appid": 1748890, + "normalized_name": "猫不语" + }, + { + "appid": 1748900, + "normalized_name": "soccer boss" + }, + { + "appid": 1748910, + "normalized_name": "kaiju monster vr" + }, + { + "appid": 1748930, + "normalized_name": "world war toonz" + }, + { + "appid": 1748970, + "normalized_name": "extinction" + }, + { + "appid": 1748980, + "normalized_name": "quizxrpg" + }, + { + "appid": 1749010, + "normalized_name": "royal order" + }, + { + "appid": 1749020, + "normalized_name": "trials of proelium" + }, + { + "appid": 1749030, + "normalized_name": "the tipping point" + }, + { + "appid": 1749050, + "normalized_name": "revasion" + }, + { + "appid": 1749090, + "normalized_name": "early quest 2" + }, + { + "appid": 1749120, + "normalized_name": "rollriddle cube'n'roll" + }, + { + "appid": 1749140, + "normalized_name": "2pupp" + }, + { + "appid": 1749170, + "normalized_name": "human madness" + }, + { + "appid": 1749200, + "normalized_name": "hostile planet survival" + }, + { + "appid": 1749210, + "normalized_name": "tile connect onet match" + }, + { + "appid": 1749240, + "normalized_name": "scp 970 the recursive room" + }, + { + "appid": 1749260, + "normalized_name": "string rush" + }, + { + "appid": 1749300, + "normalized_name": "tails & titties hot spring" + }, + { + "appid": 1749310, + "normalized_name": "netherspace" + }, + { + "appid": 1749340, + "normalized_name": "love is dangerous" + }, + { + "appid": 1749350, + "normalized_name": "gobby mcgobblenutz presents the art of the dad joke chapter 1" + }, + { + "appid": 1749360, + "normalized_name": "lucky pikinini cybernetic titan" + }, + { + "appid": 1749380, + "normalized_name": "pieces of beauty" + }, + { + "appid": 1749390, + "normalized_name": "interceptor" + }, + { + "appid": 1749400, + "normalized_name": "lendas" + }, + { + "appid": 1749410, + "normalized_name": "dark magic 2" + }, + { + "appid": 1749420, + "normalized_name": "sand story" + }, + { + "appid": 1749430, + "normalized_name": "reefland" + }, + { + "appid": 1749440, + "normalized_name": "heartbeats" + }, + { + "appid": 1749460, + "normalized_name": "battle tops" + }, + { + "appid": 1749480, + "normalized_name": "gazmatera 2 america's least wanted" + }, + { + "appid": 1749510, + "normalized_name": "arizona derby 2" + }, + { + "appid": 1749580, + "normalized_name": "rocket sword" + }, + { + "appid": 1749630, + "normalized_name": "chill corner" + }, + { + "appid": 1749640, + "normalized_name": "tiny road interchanges" + }, + { + "appid": 1749700, + "normalized_name": "all men are brothers / 水浒豪" + }, + { + "appid": 1749710, + "normalized_name": "legends of murder collection" + }, + { + "appid": 1749720, + "normalized_name": "zombie dinos from planet zeltoid" + }, + { + "appid": 1749750, + "normalized_name": "disgaea 6" + }, + { + "appid": 1749770, + "normalized_name": "twofold" + }, + { + "appid": 1749800, + "normalized_name": "room 13" + }, + { + "appid": 1749810, + "normalized_name": "lair land story 2 mist of sea" + }, + { + "appid": 1749840, + "normalized_name": "二狗子历险记" + }, + { + "appid": 1749860, + "normalized_name": "lushfoil photography sim" + }, + { + "appid": 1749900, + "normalized_name": "losted" + }, + { + "appid": 1749940, + "normalized_name": "spaceblocc" + }, + { + "appid": 1749980, + "normalized_name": "somni" + }, + { + "appid": 1750000, + "normalized_name": "sweet match 3" + }, + { + "appid": 1750010, + "normalized_name": "bumpstick" + }, + { + "appid": 1750030, + "normalized_name": "post trauma" + }, + { + "appid": 1750050, + "normalized_name": "m.i.s.v vr" + }, + { + "appid": 1750060, + "normalized_name": "pussy 4" + }, + { + "appid": 1750070, + "normalized_name": "honey milf" + }, + { + "appid": 1750080, + "normalized_name": "paper bum" + }, + { + "appid": 1750110, + "normalized_name": "frenzy vr" + }, + { + "appid": 1750170, + "normalized_name": "fragmented memories arc one" + }, + { + "appid": 1750200, + "normalized_name": "sex and the furry titty 2 sins of the city" + }, + { + "appid": 1750240, + "normalized_name": "my musicoasis" + }, + { + "appid": 1750260, + "normalized_name": "kaiworld" + }, + { + "appid": 1750280, + "normalized_name": "defend the fort" + }, + { + "appid": 1750290, + "normalized_name": "ninja rise of a hero" + }, + { + "appid": 1750320, + "normalized_name": "last genesis" + }, + { + "appid": 1750330, + "normalized_name": "69 hitomi love" + }, + { + "appid": 1750350, + "normalized_name": "sebil engineering" + }, + { + "appid": 1750370, + "normalized_name": "shatterspace" + }, + { + "appid": 1750410, + "normalized_name": "bridge of dawn" + }, + { + "appid": 1750440, + "normalized_name": "temple of revi" + }, + { + "appid": 1750450, + "normalized_name": "evolution tag 2" + }, + { + "appid": 1750470, + "normalized_name": "cyrano" + }, + { + "appid": 1750490, + "normalized_name": "bumballon" + }, + { + "appid": 1750530, + "normalized_name": "black magic gamebox" + }, + { + "appid": 1750540, + "normalized_name": "moonsters" + }, + { + "appid": 1750570, + "normalized_name": "subway midnight" + }, + { + "appid": 1750580, + "normalized_name": "electronic evolution" + }, + { + "appid": 1750600, + "normalized_name": "crate mates" + }, + { + "appid": 1750620, + "normalized_name": "lovely plains" + }, + { + "appid": 1750640, + "normalized_name": "dear agony aunt" + }, + { + "appid": 1750690, + "normalized_name": "last defenders" + }, + { + "appid": 1750710, + "normalized_name": "boxville" + }, + { + "appid": 1750740, + "normalized_name": "战棋三国英雄" + }, + { + "appid": 1750770, + "normalized_name": "starcom unknown space" + }, + { + "appid": 1750810, + "normalized_name": "wager" + }, + { + "appid": 1750900, + "normalized_name": "super punchy face" + }, + { + "appid": 1750910, + "normalized_name": "dose response" + }, + { + "appid": 1750940, + "normalized_name": "astrd" + }, + { + "appid": 1750960, + "normalized_name": "re summon" + }, + { + "appid": 1750980, + "normalized_name": "horror maze" + }, + { + "appid": 1750990, + "normalized_name": "merge chess" + }, + { + "appid": 1751070, + "normalized_name": "wizard girl anzu" + }, + { + "appid": 1751100, + "normalized_name": "g modeアーカイブス+ 怒首領蜂大往生dx" + }, + { + "appid": 1751110, + "normalized_name": "jeebo & jerbo vs. life" + }, + { + "appid": 1751160, + "normalized_name": "failling capsule" + }, + { + "appid": 1751190, + "normalized_name": "movers in the warehouse" + }, + { + "appid": 1751230, + "normalized_name": "王国旅行者(kingdom traveler)" + }, + { + "appid": 1751270, + "normalized_name": "gunsbox vr" + }, + { + "appid": 1751310, + "normalized_name": "a winter story original and highly difficult" + }, + { + "appid": 1751320, + "normalized_name": "hotgirls sliding puzzle" + }, + { + "appid": 1751330, + "normalized_name": "atrium malum" + }, + { + "appid": 1751350, + "normalized_name": "wild indigo ranch" + }, + { + "appid": 1751400, + "normalized_name": "winter warfare survival" + }, + { + "appid": 1751470, + "normalized_name": "chill panda" + }, + { + "appid": 1751480, + "normalized_name": "master servant sex with the beauty from the orient ~contract with a semen sucking demon~" + }, + { + "appid": 1751500, + "normalized_name": "crazy zen mini golf" + }, + { + "appid": 1751560, + "normalized_name": "magurele mystery" + }, + { + "appid": 1751610, + "normalized_name": "imoto" + }, + { + "appid": 1751630, + "normalized_name": "hello lady!" + }, + { + "appid": 1751680, + "normalized_name": "a twisted tale" + }, + { + "appid": 1751700, + "normalized_name": "dungeon arsenal" + }, + { + "appid": 1751710, + "normalized_name": "horror stories please comply" + }, + { + "appid": 1751720, + "normalized_name": "sinless night" + }, + { + "appid": 1751730, + "normalized_name": "fire and ashes" + }, + { + "appid": 1751780, + "normalized_name": "perfectly balanced" + }, + { + "appid": 1751800, + "normalized_name": "ibatic" + }, + { + "appid": 1751820, + "normalized_name": "project outfox" + }, + { + "appid": 1751850, + "normalized_name": "ghost terminator" + }, + { + "appid": 1751860, + "normalized_name": "solo royale" + }, + { + "appid": 1751890, + "normalized_name": "the red exile survival horror" + }, + { + "appid": 1751950, + "normalized_name": "the great circle" + }, + { + "appid": 1751970, + "normalized_name": "a blast from the past" + }, + { + "appid": 1751980, + "normalized_name": "the savior from above" + }, + { + "appid": 1751990, + "normalized_name": "table gun" + }, + { + "appid": 1752030, + "normalized_name": "apotheosis" + }, + { + "appid": 1752050, + "normalized_name": "levenium" + }, + { + "appid": 1752060, + "normalized_name": "wild dogs" + }, + { + "appid": 1752080, + "normalized_name": "hunger" + }, + { + "appid": 1752090, + "normalized_name": "𝄢gaia's melody ii echoed memories" + }, + { + "appid": 1752150, + "normalized_name": "slobbish dragon princess 2" + }, + { + "appid": 1752190, + "normalized_name": "cubicus" + }, + { + "appid": 1752210, + "normalized_name": "red embrace paradisus" + }, + { + "appid": 1752220, + "normalized_name": "relumine" + }, + { + "appid": 1752240, + "normalized_name": "zero page" + }, + { + "appid": 1752250, + "normalized_name": "how to bathe your cat" + }, + { + "appid": 1752400, + "normalized_name": "blade and ham" + }, + { + "appid": 1752410, + "normalized_name": "fantasy jigsaw puzzle 4" + }, + { + "appid": 1752420, + "normalized_name": "here comes the hero" + }, + { + "appid": 1752430, + "normalized_name": "friends of little yus" + }, + { + "appid": 1752500, + "normalized_name": "badlands racer" + }, + { + "appid": 1752530, + "normalized_name": "b 17 flying fortress the bloody 100th" + }, + { + "appid": 1752540, + "normalized_name": "lost twins 2" + }, + { + "appid": 1752600, + "normalized_name": "go with the flow" + }, + { + "appid": 1752610, + "normalized_name": "give me more pills" + }, + { + "appid": 1752660, + "normalized_name": "hovercraft racing" + }, + { + "appid": 1752690, + "normalized_name": "theiaology" + }, + { + "appid": 1752730, + "normalized_name": "billy bumbum a cheeky puzzler" + }, + { + "appid": 1752740, + "normalized_name": "сollision hero" + }, + { + "appid": 1752760, + "normalized_name": "soulstopia phi" + }, + { + "appid": 1752780, + "normalized_name": "city of springs" + }, + { + "appid": 1752810, + "normalized_name": "paper birds" + }, + { + "appid": 1752820, + "normalized_name": "hellmall" + }, + { + "appid": 1752830, + "normalized_name": "hidden flowers" + }, + { + "appid": 1752840, + "normalized_name": "box survivors world in deathrun guys" + }, + { + "appid": 1752850, + "normalized_name": "find match icons" + }, + { + "appid": 1752890, + "normalized_name": "2030" + }, + { + "appid": 1752990, + "normalized_name": "class zero seven" + }, + { + "appid": 1753010, + "normalized_name": "scale enchanter" + }, + { + "appid": 1753020, + "normalized_name": "ghost follows" + }, + { + "appid": 1753030, + "normalized_name": "matachín" + }, + { + "appid": 1753050, + "normalized_name": "my inner darkness is a hot anime girl!" + }, + { + "appid": 1753090, + "normalized_name": "cyberdad" + }, + { + "appid": 1753100, + "normalized_name": "舔狗模拟器" + }, + { + "appid": 1753110, + "normalized_name": "殖民地往事" + }, + { + "appid": 1753130, + "normalized_name": "balls mania!" + }, + { + "appid": 1753160, + "normalized_name": "legend of labot the golden pearl" + }, + { + "appid": 1753170, + "normalized_name": "dkls" + }, + { + "appid": 1753220, + "normalized_name": "anime tetris" + }, + { + "appid": 1753250, + "normalized_name": "rogue planet 1" + }, + { + "appid": 1753280, + "normalized_name": "retro game aliens / レトロゲームエイリアンズ" + }, + { + "appid": 1753340, + "normalized_name": "memory dimension" + }, + { + "appid": 1753370, + "normalized_name": "superfluous returnz" + }, + { + "appid": 1753380, + "normalized_name": "nodrog's fortress" + }, + { + "appid": 1753400, + "normalized_name": "visite virtuelle de l'assemblée nationale" + }, + { + "appid": 1753410, + "normalized_name": "king of kinks" + }, + { + "appid": 1753420, + "normalized_name": "epicentrum hunt! stream! invade!" + }, + { + "appid": 1753440, + "normalized_name": "kromaticube" + }, + { + "appid": 1753450, + "normalized_name": "bullfighter neon" + }, + { + "appid": 1753490, + "normalized_name": "大城主战略版" + }, + { + "appid": 1753500, + "normalized_name": "age of barbarians chronicles" + }, + { + "appid": 1753510, + "normalized_name": "cavemen tales collector's" + }, + { + "appid": 1753530, + "normalized_name": "memories of loneliness" + }, + { + "appid": 1753660, + "normalized_name": "far sector" + }, + { + "appid": 1753670, + "normalized_name": "this game is crap" + }, + { + "appid": 1753690, + "normalized_name": "faye a tale of shadow" + }, + { + "appid": 1753730, + "normalized_name": "the 8 sins new hell order" + }, + { + "appid": 1753760, + "normalized_name": "impulse" + }, + { + "appid": 1753790, + "normalized_name": "she will shoot" + }, + { + "appid": 1753800, + "normalized_name": "lowsy" + }, + { + "appid": 1753810, + "normalized_name": "sola" + }, + { + "appid": 1753860, + "normalized_name": "rebel space admiral" + }, + { + "appid": 1753870, + "normalized_name": "peace island" + }, + { + "appid": 1753890, + "normalized_name": "el pescador" + }, + { + "appid": 1753900, + "normalized_name": "world of motors" + }, + { + "appid": 1754020, + "normalized_name": "rosetia a first contact simulation" + }, + { + "appid": 1754150, + "normalized_name": "car tuning simulator" + }, + { + "appid": 1754170, + "normalized_name": "witches vs. demons" + }, + { + "appid": 1754200, + "normalized_name": "the giraffe world" + }, + { + "appid": 1754250, + "normalized_name": "we took that trip" + }, + { + "appid": 1754260, + "normalized_name": "kill the dragon" + }, + { + "appid": 1754300, + "normalized_name": "alec adventure" + }, + { + "appid": 1754350, + "normalized_name": "cubicus 2" + }, + { + "appid": 1754380, + "normalized_name": "magic time" + }, + { + "appid": 1754390, + "normalized_name": "mystery trackers train to hellswich collector's" + }, + { + "appid": 1754430, + "normalized_name": "potato party the potatomancer" + }, + { + "appid": 1754440, + "normalized_name": "super taco crew" + }, + { + "appid": 1754450, + "normalized_name": "bitup" + }, + { + "appid": 1754460, + "normalized_name": "quester" + }, + { + "appid": 1754480, + "normalized_name": "everlife" + }, + { + "appid": 1754490, + "normalized_name": "the adventures of emoji 4 fly high mouse" + }, + { + "appid": 1754500, + "normalized_name": "project blemmyes" + }, + { + "appid": 1754510, + "normalized_name": "cyberwhiskey guy's room" + }, + { + "appid": 1754520, + "normalized_name": "吾王的荣耀 honor of knight king" + }, + { + "appid": 1754550, + "normalized_name": "armageddon sky's invasion" + }, + { + "appid": 1754580, + "normalized_name": "rework" + }, + { + "appid": 1754650, + "normalized_name": "endragon" + }, + { + "appid": 1754720, + "normalized_name": "英雄黄昏 文字三国志&曹贼模拟器" + }, + { + "appid": 1754740, + "normalized_name": "gems of magic father's day" + }, + { + "appid": 1754750, + "normalized_name": "pocket rocket" + }, + { + "appid": 1754760, + "normalized_name": "scarred stars traumatic" + }, + { + "appid": 1754770, + "normalized_name": "贸易与马车" + }, + { + "appid": 1754790, + "normalized_name": "fate of the pharaoh" + }, + { + "appid": 1754840, + "normalized_name": "hacker simulator" + }, + { + "appid": 1754860, + "normalized_name": "inside jennifer" + }, + { + "appid": 1754870, + "normalized_name": "lust theory season 2" + }, + { + "appid": 1754880, + "normalized_name": "侠不义·至臻之力" + }, + { + "appid": 1754910, + "normalized_name": "don't hate me" + }, + { + "appid": 1754940, + "normalized_name": "treffen" + }, + { + "appid": 1754950, + "normalized_name": "sentinel attack" + }, + { + "appid": 1754960, + "normalized_name": "astride" + }, + { + "appid": 1755030, + "normalized_name": "mothmen 1966" + }, + { + "appid": 1755060, + "normalized_name": "eyes of the night" + }, + { + "appid": 1755080, + "normalized_name": "away from life" + }, + { + "appid": 1755090, + "normalized_name": "выборы выборы кандидаты пи****!" + }, + { + "appid": 1755100, + "normalized_name": "the last clockwinder" + }, + { + "appid": 1755110, + "normalized_name": "warlocks entanglement" + }, + { + "appid": 1755130, + "normalized_name": "ele rampage" + }, + { + "appid": 1755170, + "normalized_name": "coloring pixel fantasy characters" + }, + { + "appid": 1755180, + "normalized_name": "brewpub simulator" + }, + { + "appid": 1755210, + "normalized_name": "squid run" + }, + { + "appid": 1755240, + "normalized_name": "moon runner" + }, + { + "appid": 1755250, + "normalized_name": "wingsuit dream" + }, + { + "appid": 1755280, + "normalized_name": "super grappling gecko" + }, + { + "appid": 1755290, + "normalized_name": "arch stone vs the zombie specters" + }, + { + "appid": 1755300, + "normalized_name": "smart factory tycoon" + }, + { + "appid": 1755340, + "normalized_name": "inner ashes" + }, + { + "appid": 1755350, + "normalized_name": "bbq simulator the squad" + }, + { + "appid": 1755390, + "normalized_name": "bioxotica" + }, + { + "appid": 1755420, + "normalized_name": "battlecruiser generations" + }, + { + "appid": 1755460, + "normalized_name": "island crusaders" + }, + { + "appid": 1755520, + "normalized_name": "blackholes stars" + }, + { + "appid": 1755530, + "normalized_name": "days with ophelia the girl from wind city" + }, + { + "appid": 1755550, + "normalized_name": "lovely tesserae" + }, + { + "appid": 1755570, + "normalized_name": "matching cats" + }, + { + "appid": 1755580, + "normalized_name": "the jackbox party starter" + }, + { + "appid": 1755600, + "normalized_name": "tri star" + }, + { + "appid": 1755610, + "normalized_name": "midnight blues" + }, + { + "appid": 1755620, + "normalized_name": "anti frank's wrath" + }, + { + "appid": 1755650, + "normalized_name": "c.a.p.s. cyber animal planet survival" + }, + { + "appid": 1755660, + "normalized_name": "bainok city of fighters" + }, + { + "appid": 1755670, + "normalized_name": "the sink gods" + }, + { + "appid": 1755680, + "normalized_name": "everything is for humanity" + }, + { + "appid": 1755690, + "normalized_name": "realmless" + }, + { + "appid": 1755740, + "normalized_name": "侵入:源代码" + }, + { + "appid": 1755750, + "normalized_name": "memories" + }, + { + "appid": 1755760, + "normalized_name": "emoji sport" + }, + { + "appid": 1755790, + "normalized_name": "dance like a butterfly shot like a bee!" + }, + { + "appid": 1755810, + "normalized_name": "city air battle" + }, + { + "appid": 1755830, + "normalized_name": "astrea six sided oracles" + }, + { + "appid": 1755870, + "normalized_name": "the monster within" + }, + { + "appid": 1755880, + "normalized_name": "island of lust" + }, + { + "appid": 1755890, + "normalized_name": "repit" + }, + { + "appid": 1755910, + "normalized_name": "capcom arcade 2nd stadium" + }, + { + "appid": 1755920, + "normalized_name": "infinite lagrange" + }, + { + "appid": 1755950, + "normalized_name": "time on frog island prologue" + }, + { + "appid": 1755970, + "normalized_name": "gauntlet" + }, + { + "appid": 1755980, + "normalized_name": "momentum" + }, + { + "appid": 1755990, + "normalized_name": "try to catch up" + }, + { + "appid": 1756020, + "normalized_name": "super roboy" + }, + { + "appid": 1756060, + "normalized_name": "stint rift apart" + }, + { + "appid": 1756070, + "normalized_name": "project 9" + }, + { + "appid": 1756080, + "normalized_name": "doomsday defense" + }, + { + "appid": 1756090, + "normalized_name": "trial of empires td" + }, + { + "appid": 1756100, + "normalized_name": "who the fuck ate grandma ?" + }, + { + "appid": 1756120, + "normalized_name": "your sword is so big" + }, + { + "appid": 1756140, + "normalized_name": "befuddle the bewitching wordplay game" + }, + { + "appid": 1756150, + "normalized_name": "scp keter" + }, + { + "appid": 1756160, + "normalized_name": "unsafe express" + }, + { + "appid": 1756180, + "normalized_name": "carnage offering" + }, + { + "appid": 1756210, + "normalized_name": "falling down" + }, + { + "appid": 1756220, + "normalized_name": "island_name_here" + }, + { + "appid": 1756230, + "normalized_name": "light dark or hrak?" + }, + { + "appid": 1756280, + "normalized_name": "heroes of britannia" + }, + { + "appid": 1756310, + "normalized_name": "real life" + }, + { + "appid": 1756320, + "normalized_name": "dreamvibe" + }, + { + "appid": 1756330, + "normalized_name": "secrets of magic 5 back to school" + }, + { + "appid": 1756340, + "normalized_name": "fishwitch halloween" + }, + { + "appid": 1756390, + "normalized_name": "mercs fully loaded" + }, + { + "appid": 1756410, + "normalized_name": "raga" + }, + { + "appid": 1756430, + "normalized_name": "kaiju commander" + }, + { + "appid": 1756440, + "normalized_name": "rarity chase" + }, + { + "appid": 1756450, + "normalized_name": "hero or foe" + }, + { + "appid": 1756480, + "normalized_name": "golf for fun in ice" + }, + { + "appid": 1756490, + "normalized_name": "angels vs demons" + }, + { + "appid": 1756500, + "normalized_name": "the warrior of wisdom" + }, + { + "appid": 1756510, + "normalized_name": "inside the forest" + }, + { + "appid": 1756550, + "normalized_name": "code.breaker()" + }, + { + "appid": 1756600, + "normalized_name": "orbital challenge" + }, + { + "appid": 1756630, + "normalized_name": "dashwalk dueling" + }, + { + "appid": 1756650, + "normalized_name": "lockes the thief" + }, + { + "appid": 1756710, + "normalized_name": "mistral" + }, + { + "appid": 1756730, + "normalized_name": "superstar strategy" + }, + { + "appid": 1756740, + "normalized_name": "the prey's turn" + }, + { + "appid": 1756750, + "normalized_name": "heradônia director's cut" + }, + { + "appid": 1756760, + "normalized_name": "元宇宙 方块世界" + }, + { + "appid": 1756770, + "normalized_name": "little robo climber" + }, + { + "appid": 1756790, + "normalized_name": "no tyrant" + }, + { + "appid": 1756800, + "normalized_name": "casino tycoon simulator" + }, + { + "appid": 1756810, + "normalized_name": "忍者快递" + }, + { + "appid": 1756840, + "normalized_name": "边缘项目 / living island project" + }, + { + "appid": 1756900, + "normalized_name": "shoot!" + }, + { + "appid": 1756920, + "normalized_name": "clean art" + }, + { + "appid": 1756930, + "normalized_name": "brick breaker" + }, + { + "appid": 1756960, + "normalized_name": "末日竟在我身边2 zombies everywhere 2" + }, + { + "appid": 1757000, + "normalized_name": "demolitionrobotskk" + }, + { + "appid": 1757010, + "normalized_name": "the vanman" + }, + { + "appid": 1757030, + "normalized_name": "f team" + }, + { + "appid": 1757060, + "normalized_name": "wintertwined" + }, + { + "appid": 1757090, + "normalized_name": "the last shape" + }, + { + "appid": 1757100, + "normalized_name": "strange brews heroes for hire" + }, + { + "appid": 1757110, + "normalized_name": "vr cop simulator" + }, + { + "appid": 1757130, + "normalized_name": "pong temple" + }, + { + "appid": 1757170, + "normalized_name": "notoris the goblin war" + }, + { + "appid": 1757240, + "normalized_name": "幽霊案件" + }, + { + "appid": 1757250, + "normalized_name": "unreal element world" + }, + { + "appid": 1757260, + "normalized_name": "little red rocket ship" + }, + { + "appid": 1757300, + "normalized_name": "jump ship" + }, + { + "appid": 1757350, + "normalized_name": "ill" + }, + { + "appid": 1757360, + "normalized_name": "shifting dungeon" + }, + { + "appid": 1757400, + "normalized_name": "the last will" + }, + { + "appid": 1757430, + "normalized_name": "squared up" + }, + { + "appid": 1757440, + "normalized_name": "blazend" + }, + { + "appid": 1757450, + "normalized_name": "hackshot" + }, + { + "appid": 1757470, + "normalized_name": "slide stories bucky's quest" + }, + { + "appid": 1757490, + "normalized_name": "女拳主義f ist" + }, + { + "appid": 1757510, + "normalized_name": "freecell academy" + }, + { + "appid": 1757560, + "normalized_name": "one pixel twb" + }, + { + "appid": 1757570, + "normalized_name": "capital island" + }, + { + "appid": 1757580, + "normalized_name": "open wheel manager 2" + }, + { + "appid": 1757610, + "normalized_name": "puppet master the game" + }, + { + "appid": 1757680, + "normalized_name": "miner gun builder" + }, + { + "appid": 1757690, + "normalized_name": "haunted hell house" + }, + { + "appid": 1757700, + "normalized_name": "三千世界" + }, + { + "appid": 1757720, + "normalized_name": "human vs food" + }, + { + "appid": 1757750, + "normalized_name": "my stepmom is a futanari 3" + }, + { + "appid": 1757760, + "normalized_name": "my stepsis is a futanari" + }, + { + "appid": 1757790, + "normalized_name": "neon cyber desert" + }, + { + "appid": 1757820, + "normalized_name": "hidden object hunt classic" + }, + { + "appid": 1757830, + "normalized_name": "元宇宙 原始世界" + }, + { + "appid": 1757890, + "normalized_name": "elohim eternal the babel code" + }, + { + "appid": 1757920, + "normalized_name": "astral flux" + }, + { + "appid": 1757950, + "normalized_name": "回家 homeward" + }, + { + "appid": 1757960, + "normalized_name": "soundxworld" + }, + { + "appid": 1757970, + "normalized_name": "oasis dark forest" + }, + { + "appid": 1757990, + "normalized_name": "halloween puzzle" + }, + { + "appid": 1758010, + "normalized_name": "dungeon raider" + }, + { + "appid": 1758030, + "normalized_name": "devil tears" + }, + { + "appid": 1758050, + "normalized_name": "linevox 2 forward to the past" + }, + { + "appid": 1758060, + "normalized_name": "ceilless" + }, + { + "appid": 1758070, + "normalized_name": "remy raccoon and the lost temple halloween hijinks (volume 1)" + }, + { + "appid": 1758080, + "normalized_name": "empires of the void ii" + }, + { + "appid": 1758120, + "normalized_name": "puzzle art dogs" + }, + { + "appid": 1758180, + "normalized_name": "the most boring life ever 2 work from home" + }, + { + "appid": 1758200, + "normalized_name": "itrp _ gas prison" + }, + { + "appid": 1758220, + "normalized_name": "13 origin chapter one" + }, + { + "appid": 1758250, + "normalized_name": "rainboy" + }, + { + "appid": 1758260, + "normalized_name": "tobas zombies" + }, + { + "appid": 1758320, + "normalized_name": "lofty quest" + }, + { + "appid": 1758340, + "normalized_name": "live or die" + }, + { + "appid": 1758350, + "normalized_name": "高射炮 flak" + }, + { + "appid": 1758360, + "normalized_name": "夢獸之島isles of monsters" + }, + { + "appid": 1758370, + "normalized_name": "18korea" + }, + { + "appid": 1758390, + "normalized_name": "idiotbrainevolution" + }, + { + "appid": 1758410, + "normalized_name": "marriage to the demon wife!" + }, + { + "appid": 1758440, + "normalized_name": "survival zombies ahead" + }, + { + "appid": 1758450, + "normalized_name": "狂神无双" + }, + { + "appid": 1758460, + "normalized_name": "fuktopia 3" + }, + { + "appid": 1758470, + "normalized_name": "project unseek" + }, + { + "appid": 1758520, + "normalized_name": "broken banners" + }, + { + "appid": 1758530, + "normalized_name": "pusheep" + }, + { + "appid": 1758540, + "normalized_name": "goddess husk" + }, + { + "appid": 1758600, + "normalized_name": "atria 1" + }, + { + "appid": 1758640, + "normalized_name": "cat capacity" + }, + { + "appid": 1758650, + "normalized_name": "whisky bottler" + }, + { + "appid": 1758760, + "normalized_name": "pandemic shooter" + }, + { + "appid": 1758770, + "normalized_name": "windrush tales" + }, + { + "appid": 1758810, + "normalized_name": "little island" + }, + { + "appid": 1758870, + "normalized_name": "edgar's room" + }, + { + "appid": 1758910, + "normalized_name": "time commando" + }, + { + "appid": 1758920, + "normalized_name": "witch explorer" + }, + { + "appid": 1758930, + "normalized_name": "dream of light" + }, + { + "appid": 1758950, + "normalized_name": "banzai escape 2 subterranean" + }, + { + "appid": 1758990, + "normalized_name": "the blocks shoot at you" + }, + { + "appid": 1759010, + "normalized_name": "phobos subhuman" + }, + { + "appid": 1759070, + "normalized_name": "quickn" + }, + { + "appid": 1759130, + "normalized_name": "time idle rpg" + }, + { + "appid": 1759150, + "normalized_name": "space control" + }, + { + "appid": 1759160, + "normalized_name": "hpl nyarlathotep rising" + }, + { + "appid": 1759260, + "normalized_name": "dungescape!" + }, + { + "appid": 1759340, + "normalized_name": "the death tree" + }, + { + "appid": 1759350, + "normalized_name": "space trash scavenger" + }, + { + "appid": 1759380, + "normalized_name": "bandle tale a league of legends story" + }, + { + "appid": 1759400, + "normalized_name": "polyboost" + }, + { + "appid": 1759430, + "normalized_name": "rescue troopers" + }, + { + "appid": 1759440, + "normalized_name": "babble royale" + }, + { + "appid": 1759460, + "normalized_name": "the house where they dwell" + }, + { + "appid": 1759480, + "normalized_name": "funny puzzle" + }, + { + "appid": 1759510, + "normalized_name": "irehon" + }, + { + "appid": 1759550, + "normalized_name": "conquer the dungeon" + }, + { + "appid": 1759590, + "normalized_name": "king of the universe" + }, + { + "appid": 1759630, + "normalized_name": "microbial mayhem" + }, + { + "appid": 1759700, + "normalized_name": "the abandoned" + }, + { + "appid": 1759720, + "normalized_name": "a step forward" + }, + { + "appid": 1759780, + "normalized_name": "terminal illness rogue horror space shooter" + }, + { + "appid": 1759820, + "normalized_name": "crowd playground" + }, + { + "appid": 1759840, + "normalized_name": "crazy fatties" + }, + { + "appid": 1759870, + "normalized_name": "the repair house restoration sim" + }, + { + "appid": 1759880, + "normalized_name": "紙上談兵" + }, + { + "appid": 1759910, + "normalized_name": "i can human" + }, + { + "appid": 1759920, + "normalized_name": "my escort company" + }, + { + "appid": 1759930, + "normalized_name": "clarity of the soul" + }, + { + "appid": 1759980, + "normalized_name": "ecchi beauties" + }, + { + "appid": 1759990, + "normalized_name": "the revival" + }, + { + "appid": 1760020, + "normalized_name": "ground unbound" + }, + { + "appid": 1760040, + "normalized_name": "fleshport" + }, + { + "appid": 1760090, + "normalized_name": "angry dad" + }, + { + "appid": 1760140, + "normalized_name": "miraculo island" + }, + { + "appid": 1760150, + "normalized_name": "realm of the undead" + }, + { + "appid": 1760160, + "normalized_name": "game theory at christmas" + }, + { + "appid": 1760180, + "normalized_name": "apollo red moon" + }, + { + "appid": 1760220, + "normalized_name": "jackpot bennaction b04 discover the mystery combination" + }, + { + "appid": 1760240, + "normalized_name": "skator gator" + }, + { + "appid": 1760270, + "normalized_name": "undesired shift" + }, + { + "appid": 1760300, + "normalized_name": "jousting vr" + }, + { + "appid": 1760310, + "normalized_name": "farewells" + }, + { + "appid": 1760320, + "normalized_name": "leaf tree" + }, + { + "appid": 1760330, + "normalized_name": "noreya the gold project" + }, + { + "appid": 1760340, + "normalized_name": "refactory" + }, + { + "appid": 1760420, + "normalized_name": "怨枉" + }, + { + "appid": 1760510, + "normalized_name": "fawe enchanted forest" + }, + { + "appid": 1760580, + "normalized_name": "anton" + }, + { + "appid": 1760590, + "normalized_name": "fantasy sliding puzzle 2" + }, + { + "appid": 1760640, + "normalized_name": "awakened evil" + }, + { + "appid": 1760660, + "normalized_name": "press d to die" + }, + { + "appid": 1760670, + "normalized_name": "mystery swords" + }, + { + "appid": 1760690, + "normalized_name": "the luffeltera renovator" + }, + { + "appid": 1760700, + "normalized_name": "searching for objects in the forest" + }, + { + "appid": 1760980, + "normalized_name": "p.u.r.g.a.t.o.r.y" + }, + { + "appid": 1760990, + "normalized_name": "gecky the deenosaur stars in! adventures in sunnydoodle swimmingland!" + }, + { + "appid": 1761000, + "normalized_name": "insane maze" + }, + { + "appid": 1761010, + "normalized_name": "the immaculate drag" + }, + { + "appid": 1761030, + "normalized_name": "jackpot bennaction b05 discover the mystery combination" + }, + { + "appid": 1761040, + "normalized_name": "gear of glass eolarn's war" + }, + { + "appid": 1761130, + "normalized_name": "lake road" + }, + { + "appid": 1761210, + "normalized_name": "the touhou empires" + }, + { + "appid": 1761220, + "normalized_name": "prosperous universe" + }, + { + "appid": 1761250, + "normalized_name": "是男人就跳一万米" + }, + { + "appid": 1761260, + "normalized_name": "child of lothian" + }, + { + "appid": 1761290, + "normalized_name": "japanese rail sim journey to kyoto" + }, + { + "appid": 1761310, + "normalized_name": "paragrowth" + }, + { + "appid": 1761320, + "normalized_name": "poly puzzle furries 2" + }, + { + "appid": 1761340, + "normalized_name": "madnessarum" + }, + { + "appid": 1761380, + "normalized_name": "otherworld legends 战魂铭人" + }, + { + "appid": 1761390, + "normalized_name": "hatsune miku project diva mega mix+" + }, + { + "appid": 1761420, + "normalized_name": "without pain" + }, + { + "appid": 1761440, + "normalized_name": "sniper road" + }, + { + "appid": 1761450, + "normalized_name": "madrid noir" + }, + { + "appid": 1761480, + "normalized_name": "wedgie simulator" + }, + { + "appid": 1761520, + "normalized_name": "stylish guards" + }, + { + "appid": 1761530, + "normalized_name": "princess maira initiation" + }, + { + "appid": 1761560, + "normalized_name": "69 lisa love" + }, + { + "appid": 1761600, + "normalized_name": "jett the far shore + given time" + }, + { + "appid": 1761620, + "normalized_name": "headbangers rhythm royale" + }, + { + "appid": 1761630, + "normalized_name": "what's your gender?" + }, + { + "appid": 1761660, + "normalized_name": "the van of justice" + }, + { + "appid": 1761670, + "normalized_name": "apré lapli" + }, + { + "appid": 1761680, + "normalized_name": "red triangle super collection" + }, + { + "appid": 1761690, + "normalized_name": "bennaction b06 discover the mystery combination" + }, + { + "appid": 1761730, + "normalized_name": "neverrage" + }, + { + "appid": 1761740, + "normalized_name": "my cashy side job at lost&found in the subway of million person city" + }, + { + "appid": 1761750, + "normalized_name": "cade prime" + }, + { + "appid": 1761770, + "normalized_name": "universe 51 tannhäuser wars" + }, + { + "appid": 1761780, + "normalized_name": "creepy tale 3 ingrid penance" + }, + { + "appid": 1761790, + "normalized_name": "fuuu...!" + }, + { + "appid": 1761810, + "normalized_name": "jackpot bennaction b07 discover the mystery combination" + }, + { + "appid": 1761820, + "normalized_name": "tag" + }, + { + "appid": 1761860, + "normalized_name": "punk wars prologue" + }, + { + "appid": 1761870, + "normalized_name": "flashout 3" + }, + { + "appid": 1761900, + "normalized_name": "exome" + }, + { + "appid": 1761910, + "normalized_name": "athanasia" + }, + { + "appid": 1761980, + "normalized_name": "brickout" + }, + { + "appid": 1762010, + "normalized_name": "wrought flesh" + }, + { + "appid": 1762100, + "normalized_name": "mad trapper" + }, + { + "appid": 1762120, + "normalized_name": "the cruise 2" + }, + { + "appid": 1762130, + "normalized_name": "dungeon avenger" + }, + { + "appid": 1762230, + "normalized_name": "bunnies vs zombies" + }, + { + "appid": 1762240, + "normalized_name": "despectum drakone" + }, + { + "appid": 1762250, + "normalized_name": "cadulium" + }, + { + "appid": 1762270, + "normalized_name": "obama boss fight" + }, + { + "appid": 1762300, + "normalized_name": "jackpot bennaction b08 discover the mystery combination" + }, + { + "appid": 1762370, + "normalized_name": "balcony" + }, + { + "appid": 1762390, + "normalized_name": "herobattle" + }, + { + "appid": 1762400, + "normalized_name": "i am a rock" + }, + { + "appid": 1762410, + "normalized_name": "norr part ii will walker" + }, + { + "appid": 1762450, + "normalized_name": "haunted hotel the axiom butcher collector's" + }, + { + "appid": 1762480, + "normalized_name": "karisvale" + }, + { + "appid": 1762490, + "normalized_name": "color guys" + }, + { + "appid": 1762510, + "normalized_name": "cinnet i" + }, + { + "appid": 1762520, + "normalized_name": "guardians of greenheart" + }, + { + "appid": 1762560, + "normalized_name": "in the valley of death prologue" + }, + { + "appid": 1762570, + "normalized_name": "space reign" + }, + { + "appid": 1762680, + "normalized_name": "izanami" + }, + { + "appid": 1762690, + "normalized_name": "epidemyc" + }, + { + "appid": 1762720, + "normalized_name": "lucy" + }, + { + "appid": 1762760, + "normalized_name": "forged legions" + }, + { + "appid": 1762830, + "normalized_name": "death in the family" + }, + { + "appid": 1762840, + "normalized_name": "the last cell" + }, + { + "appid": 1762850, + "normalized_name": "loggerhead" + }, + { + "appid": 1762910, + "normalized_name": "jackpot bennaction b09 discover the mystery combination" + }, + { + "appid": 1762920, + "normalized_name": "mittin [outdated]" + }, + { + "appid": 1762930, + "normalized_name": "goat simulator" + }, + { + "appid": 1762950, + "normalized_name": "jackpot bennaction b10 discover the mystery combination" + }, + { + "appid": 1763030, + "normalized_name": "master key" + }, + { + "appid": 1763040, + "normalized_name": "jackpot bennaction b11 discover the mystery combination" + }, + { + "appid": 1763050, + "normalized_name": "fears to fathom norwood hitchhike" + }, + { + "appid": 1763060, + "normalized_name": "feral flowers" + }, + { + "appid": 1763090, + "normalized_name": "psycho love paradise" + }, + { + "appid": 1763100, + "normalized_name": "secret garden" + }, + { + "appid": 1763110, + "normalized_name": "project halloween" + }, + { + "appid": 1763120, + "normalized_name": "m2k" + }, + { + "appid": 1763150, + "normalized_name": "everglow" + }, + { + "appid": 1763160, + "normalized_name": "i am 1" + }, + { + "appid": 1763170, + "normalized_name": "simbro reserection" + }, + { + "appid": 1763180, + "normalized_name": "wormatozoa" + }, + { + "appid": 1763190, + "normalized_name": "freight hopper" + }, + { + "appid": 1763210, + "normalized_name": "waveplayer" + }, + { + "appid": 1763220, + "normalized_name": "rogue princess" + }, + { + "appid": 1763230, + "normalized_name": "mi scusi" + }, + { + "appid": 1763250, + "normalized_name": "sworn" + }, + { + "appid": 1763260, + "normalized_name": "city of murals" + }, + { + "appid": 1763270, + "normalized_name": "pogoman" + }, + { + "appid": 1763290, + "normalized_name": "fight club all stars" + }, + { + "appid": 1763330, + "normalized_name": "polyslime" + }, + { + "appid": 1763350, + "normalized_name": "hop skip and thump" + }, + { + "appid": 1763380, + "normalized_name": "monkey do!" + }, + { + "appid": 1763510, + "normalized_name": "x8" + }, + { + "appid": 1763520, + "normalized_name": "dot's home" + }, + { + "appid": 1763540, + "normalized_name": "hell dungeons the lost soul" + }, + { + "appid": 1763550, + "normalized_name": "tatuball a minimalist lofi puzzle" + }, + { + "appid": 1763570, + "normalized_name": "hack the babel inc." + }, + { + "appid": 1763590, + "normalized_name": "chair spinning simulator" + }, + { + "appid": 1763600, + "normalized_name": "blox 3d world" + }, + { + "appid": 1763610, + "normalized_name": "lightout" + }, + { + "appid": 1763620, + "normalized_name": "obama" + }, + { + "appid": 1763660, + "normalized_name": "aron's gift" + }, + { + "appid": 1763740, + "normalized_name": "cover fire offline shooting game" + }, + { + "appid": 1763830, + "normalized_name": "my truck game" + }, + { + "appid": 1763860, + "normalized_name": "rabbit's tale" + }, + { + "appid": 1763890, + "normalized_name": "clone clicker" + }, + { + "appid": 1763990, + "normalized_name": "dice vs dice" + }, + { + "appid": 1764000, + "normalized_name": "fishing frenzy" + }, + { + "appid": 1764010, + "normalized_name": "gold miner" + }, + { + "appid": 1764050, + "normalized_name": "swordcery prologue" + }, + { + "appid": 1764070, + "normalized_name": "仙贰 fairy 2" + }, + { + "appid": 1764220, + "normalized_name": "pin them" + }, + { + "appid": 1764230, + "normalized_name": "大小串串烧" + }, + { + "appid": 1764240, + "normalized_name": "jewel match atlantis solitaire 3 collector's" + }, + { + "appid": 1764270, + "normalized_name": "garage flipper" + }, + { + "appid": 1764280, + "normalized_name": "dungeons of the amber griffin" + }, + { + "appid": 1764390, + "normalized_name": "bad end theater" + }, + { + "appid": 1764400, + "normalized_name": "tea for god" + }, + { + "appid": 1764410, + "normalized_name": "chao's collection of random games" + }, + { + "appid": 1764530, + "normalized_name": "sailwind" + }, + { + "appid": 1764540, + "normalized_name": "卫海战争" + }, + { + "appid": 1764550, + "normalized_name": "100 pumpkins" + }, + { + "appid": 1764570, + "normalized_name": "the apollo project" + }, + { + "appid": 1764650, + "normalized_name": "nuclear drifter" + }, + { + "appid": 1764660, + "normalized_name": "from fear" + }, + { + "appid": 1764700, + "normalized_name": "ふりかけ☆スペイシー" + }, + { + "appid": 1764710, + "normalized_name": "niiikotopia sky fall" + }, + { + "appid": 1764730, + "normalized_name": "история бомжа 2 полицейский беспредел" + }, + { + "appid": 1764740, + "normalized_name": "because king of beasts." + }, + { + "appid": 1764790, + "normalized_name": "moon defense" + }, + { + "appid": 1764810, + "normalized_name": "tittok 2" + }, + { + "appid": 1764840, + "normalized_name": "tzakol in exile" + }, + { + "appid": 1764870, + "normalized_name": "freedom's twilight" + }, + { + "appid": 1764890, + "normalized_name": "naked porn battle" + }, + { + "appid": 1764910, + "normalized_name": "spooky horror game" + }, + { + "appid": 1764940, + "normalized_name": "the joys of discovery" + }, + { + "appid": 1764950, + "normalized_name": "inquir p.t." + }, + { + "appid": 1764960, + "normalized_name": "mika and sadie's adventure" + }, + { + "appid": 1764970, + "normalized_name": "echo an indie tale" + }, + { + "appid": 1765000, + "normalized_name": "downtown dealers" + }, + { + "appid": 1765010, + "normalized_name": "darwin's aquarium" + }, + { + "appid": 1765020, + "normalized_name": "arm wrestling reborn" + }, + { + "appid": 1765040, + "normalized_name": "seditionis crutarch royale" + }, + { + "appid": 1765060, + "normalized_name": "hunted" + }, + { + "appid": 1765090, + "normalized_name": "legends of crystal" + }, + { + "appid": 1765130, + "normalized_name": "monster dice" + }, + { + "appid": 1765150, + "normalized_name": "猴王模拟器之花果山篇" + }, + { + "appid": 1765160, + "normalized_name": "封神榜 伏魔三太子(重制版)" + }, + { + "appid": 1765180, + "normalized_name": "shunga frame" + }, + { + "appid": 1765220, + "normalized_name": "emote farming simulator with twitch integration" + }, + { + "appid": 1765240, + "normalized_name": "rollingball" + }, + { + "appid": 1765250, + "normalized_name": "sir galgano a medieval tale" + }, + { + "appid": 1765260, + "normalized_name": "cat jumper" + }, + { + "appid": 1765280, + "normalized_name": "pleim" + }, + { + "appid": 1765300, + "normalized_name": "zombie defense 2" + }, + { + "appid": 1765310, + "normalized_name": "halloween is crazy as hell" + }, + { + "appid": 1765320, + "normalized_name": "ktgame" + }, + { + "appid": 1765350, + "normalized_name": "候鸟" + }, + { + "appid": 1765370, + "normalized_name": "dark dimension" + }, + { + "appid": 1765410, + "normalized_name": "sir bob squire for hire" + }, + { + "appid": 1765470, + "normalized_name": "the tainted" + }, + { + "appid": 1765480, + "normalized_name": "bomb sweeper mine finder" + }, + { + "appid": 1765500, + "normalized_name": "jackpot bennaction b12 discover the mystery combination" + }, + { + "appid": 1765510, + "normalized_name": "the railway" + }, + { + "appid": 1765520, + "normalized_name": "flippin misfits" + }, + { + "appid": 1765540, + "normalized_name": "red button" + }, + { + "appid": 1765560, + "normalized_name": "pill baby" + }, + { + "appid": 1765600, + "normalized_name": "the song out of space" + }, + { + "appid": 1765620, + "normalized_name": "jackpot bennaction b13 discover the mystery combination" + }, + { + "appid": 1765630, + "normalized_name": "jackpot bennaction b14 discover the mystery combination" + }, + { + "appid": 1765670, + "normalized_name": "aboard the adventure" + }, + { + "appid": 1765690, + "normalized_name": "world wide hack" + }, + { + "appid": 1765700, + "normalized_name": "quest of graal" + }, + { + "appid": 1765730, + "normalized_name": "holiday cheer 3" + }, + { + "appid": 1765760, + "normalized_name": "pen pal princess" + }, + { + "appid": 1765780, + "normalized_name": "adaca" + }, + { + "appid": 1765800, + "normalized_name": "hidden caves" + }, + { + "appid": 1765810, + "normalized_name": "hidden lands" + }, + { + "appid": 1765820, + "normalized_name": "tranquil cove" + }, + { + "appid": 1765850, + "normalized_name": "cat fish island" + }, + { + "appid": 1765860, + "normalized_name": "hard hero" + }, + { + "appid": 1765920, + "normalized_name": "gimle the broken prophecy" + }, + { + "appid": 1765960, + "normalized_name": "chezzle" + }, + { + "appid": 1765980, + "normalized_name": "miasma 2 freedom uprising" + }, + { + "appid": 1765990, + "normalized_name": "puckoff" + }, + { + "appid": 1766000, + "normalized_name": "path of ra" + }, + { + "appid": 1766010, + "normalized_name": "force reboot" + }, + { + "appid": 1766060, + "normalized_name": "humanitz" + }, + { + "appid": 1766080, + "normalized_name": "pirates bay" + }, + { + "appid": 1766100, + "normalized_name": "the last hero of nostalgaia" + }, + { + "appid": 1766150, + "normalized_name": "robo vacuum simulator" + }, + { + "appid": 1766160, + "normalized_name": "line strike" + }, + { + "appid": 1766180, + "normalized_name": "cards matching memory game" + }, + { + "appid": 1766200, + "normalized_name": "apocalich" + }, + { + "appid": 1766210, + "normalized_name": "druid test of faith" + }, + { + "appid": 1766230, + "normalized_name": "don't run out of soda" + }, + { + "appid": 1766240, + "normalized_name": "mazey village" + }, + { + "appid": 1766270, + "normalized_name": "join rush attack / 加入突袭" + }, + { + "appid": 1766300, + "normalized_name": "chibi dash" + }, + { + "appid": 1766310, + "normalized_name": "splodge royale" + }, + { + "appid": 1766340, + "normalized_name": "professor of magical studies" + }, + { + "appid": 1766350, + "normalized_name": "heroes of book & paper" + }, + { + "appid": 1766380, + "normalized_name": "lonely lustful arrogant hateful" + }, + { + "appid": 1766390, + "normalized_name": "forward escape the fold" + }, + { + "appid": 1766400, + "normalized_name": "清平书社" + }, + { + "appid": 1766420, + "normalized_name": "zero chastity a sultry summer holiday" + }, + { + "appid": 1766440, + "normalized_name": "sokoramp" + }, + { + "appid": 1766450, + "normalized_name": "mobius" + }, + { + "appid": 1766500, + "normalized_name": "dread pilots" + }, + { + "appid": 1766540, + "normalized_name": "wonderputt forever" + }, + { + "appid": 1766550, + "normalized_name": "a visit to friends" + }, + { + "appid": 1766580, + "normalized_name": "diptych" + }, + { + "appid": 1766720, + "normalized_name": "outlanders" + }, + { + "appid": 1766740, + "normalized_name": "choo choo charles" + }, + { + "appid": 1766750, + "normalized_name": "spelldrifter" + }, + { + "appid": 1766760, + "normalized_name": "swords and their boy" + }, + { + "appid": 1766790, + "normalized_name": "100 hidden birds 2" + }, + { + "appid": 1766810, + "normalized_name": "snout 2" + }, + { + "appid": 1766830, + "normalized_name": "louder than words ~the story of a field trip~" + }, + { + "appid": 1766840, + "normalized_name": "witherholme" + }, + { + "appid": 1766920, + "normalized_name": "modelist" + }, + { + "appid": 1766940, + "normalized_name": "miska" + }, + { + "appid": 1767010, + "normalized_name": "echoes of the stars" + }, + { + "appid": 1767140, + "normalized_name": "finding america the west" + }, + { + "appid": 1767150, + "normalized_name": "first time in paris" + }, + { + "appid": 1767160, + "normalized_name": "i love finding more cats" + }, + { + "appid": 1767170, + "normalized_name": "super bullet break" + }, + { + "appid": 1767180, + "normalized_name": "goldfishflap" + }, + { + "appid": 1767190, + "normalized_name": "threaded" + }, + { + "appid": 1767220, + "normalized_name": "the kids we were" + }, + { + "appid": 1767230, + "normalized_name": "stratospiel" + }, + { + "appid": 1767250, + "normalized_name": "shadow of the guild" + }, + { + "appid": 1767270, + "normalized_name": "forest adventure" + }, + { + "appid": 1767310, + "normalized_name": "midnight mahjong" + }, + { + "appid": 1767320, + "normalized_name": "그레텔과 윈슬로의 별장" + }, + { + "appid": 1767350, + "normalized_name": "water fall" + }, + { + "appid": 1767450, + "normalized_name": "the conjurer's quest" + }, + { + "appid": 1767480, + "normalized_name": "busty balls brick breaker" + }, + { + "appid": 1767490, + "normalized_name": "typeds" + }, + { + "appid": 1767550, + "normalized_name": "we are blacksmith" + }, + { + "appid": 1767560, + "normalized_name": "pro cycling manager 2022" + }, + { + "appid": 1767570, + "normalized_name": "tour de france 2022" + }, + { + "appid": 1767580, + "normalized_name": "twin mind power of love collector's" + }, + { + "appid": 1767590, + "normalized_name": "tealgrounds" + }, + { + "appid": 1767610, + "normalized_name": "super gunfight" + }, + { + "appid": 1767620, + "normalized_name": "clockworld – aroll's legacy" + }, + { + "appid": 1767700, + "normalized_name": "kid hallow" + }, + { + "appid": 1767710, + "normalized_name": "alan and the kid" + }, + { + "appid": 1767730, + "normalized_name": "crusade of deitra" + }, + { + "appid": 1767740, + "normalized_name": "lust & magic chisalla in a flower basket" + }, + { + "appid": 1767760, + "normalized_name": "tomb keeper mansion deluxe pinball" + }, + { + "appid": 1767780, + "normalized_name": "deformity" + }, + { + "appid": 1767840, + "normalized_name": "hornywars" + }, + { + "appid": 1767860, + "normalized_name": "spacecraft speed" + }, + { + "appid": 1767890, + "normalized_name": "puzzle art cats" + }, + { + "appid": 1767910, + "normalized_name": "hentai jigsaw girls 4" + }, + { + "appid": 1767930, + "normalized_name": "back again" + }, + { + "appid": 1767940, + "normalized_name": "puzzle art birds" + }, + { + "appid": 1767950, + "normalized_name": "slime dice" + }, + { + "appid": 1767960, + "normalized_name": "love hentai and puzzles occultist girls" + }, + { + "appid": 1767990, + "normalized_name": "love hentai and puzzles gamer girls" + }, + { + "appid": 1768000, + "normalized_name": "puzzle art snakes" + }, + { + "appid": 1768010, + "normalized_name": "love hentai and puzzles cattle and horses" + }, + { + "appid": 1768030, + "normalized_name": "this & cats" + }, + { + "appid": 1768040, + "normalized_name": "bow climb" + }, + { + "appid": 1768090, + "normalized_name": "shapeshifter" + }, + { + "appid": 1768100, + "normalized_name": "heatris" + }, + { + "appid": 1768200, + "normalized_name": "hood story kaito yamazaki" + }, + { + "appid": 1768210, + "normalized_name": "nobody" + }, + { + "appid": 1768240, + "normalized_name": "god's domain" + }, + { + "appid": 1768260, + "normalized_name": "killer worm 2" + }, + { + "appid": 1768270, + "normalized_name": "f rank hero story" + }, + { + "appid": 1768280, + "normalized_name": "ozymandias bronze age empire sim" + }, + { + "appid": 1768300, + "normalized_name": "grid miner" + }, + { + "appid": 1768340, + "normalized_name": "xplorasi3d" + }, + { + "appid": 1768350, + "normalized_name": "multris" + }, + { + "appid": 1768400, + "normalized_name": "archetype arcadia" + }, + { + "appid": 1768470, + "normalized_name": "the heroes around me" + }, + { + "appid": 1768480, + "normalized_name": "astra" + }, + { + "appid": 1768520, + "normalized_name": "last lap heroes" + }, + { + "appid": 1768530, + "normalized_name": "miyamoto s" + }, + { + "appid": 1768540, + "normalized_name": "bewildered" + }, + { + "appid": 1768550, + "normalized_name": "alien removal division" + }, + { + "appid": 1768590, + "normalized_name": "dune strider" + }, + { + "appid": 1768640, + "normalized_name": "leap of faith" + }, + { + "appid": 1768650, + "normalized_name": "path of the abyss" + }, + { + "appid": 1768660, + "normalized_name": "saffron fields" + }, + { + "appid": 1768730, + "normalized_name": "alien extraction" + }, + { + "appid": 1768780, + "normalized_name": "of blades & tails" + }, + { + "appid": 1768790, + "normalized_name": "edwardo" + }, + { + "appid": 1768800, + "normalized_name": "惑星游侠 planet rogue" + }, + { + "appid": 1768810, + "normalized_name": "tribal \"the 12 gates\"" + }, + { + "appid": 1768830, + "normalized_name": "frogman magmaborn" + }, + { + "appid": 1768860, + "normalized_name": "bionic shield battle for space nebula omega" + }, + { + "appid": 1768880, + "normalized_name": "kamimahou 神之国的魔法使" + }, + { + "appid": 1768920, + "normalized_name": "splatter" + }, + { + "appid": 1768940, + "normalized_name": "the smugglers" + }, + { + "appid": 1768970, + "normalized_name": "dream kitchen" + }, + { + "appid": 1768980, + "normalized_name": "snowman arena" + }, + { + "appid": 1768990, + "normalized_name": "the flea evolution bugaboo" + }, + { + "appid": 1769010, + "normalized_name": "hockey vr" + }, + { + "appid": 1769030, + "normalized_name": "the war will win" + }, + { + "appid": 1769060, + "normalized_name": "no reloading survival trials" + }, + { + "appid": 1769100, + "normalized_name": "cosmic a journey among shadows" + }, + { + "appid": 1769130, + "normalized_name": "the ancients" + }, + { + "appid": 1769140, + "normalized_name": "mirai #167" + }, + { + "appid": 1769150, + "normalized_name": "toolnich village" + }, + { + "appid": 1769160, + "normalized_name": "whispers of ancient stone" + }, + { + "appid": 1769170, + "normalized_name": "shattered pixel dungeon" + }, + { + "appid": 1769200, + "normalized_name": "vividerie" + }, + { + "appid": 1769220, + "normalized_name": "battle chess 4000" + }, + { + "appid": 1769260, + "normalized_name": "unity testing grounds" + }, + { + "appid": 1769270, + "normalized_name": "spikair volleyball" + }, + { + "appid": 1769280, + "normalized_name": "lto arcade" + }, + { + "appid": 1769320, + "normalized_name": "athanasy" + }, + { + "appid": 1769360, + "normalized_name": "move that box" + }, + { + "appid": 1769380, + "normalized_name": "blitzpunch" + }, + { + "appid": 1769390, + "normalized_name": "lack of water" + }, + { + "appid": 1769420, + "normalized_name": "noble fates" + }, + { + "appid": 1769430, + "normalized_name": "seasons of courage" + }, + { + "appid": 1769470, + "normalized_name": "non euclidean chess" + }, + { + "appid": 1769510, + "normalized_name": "fewar dvd" + }, + { + "appid": 1769570, + "normalized_name": "facility" + }, + { + "appid": 1769630, + "normalized_name": "grim tales crimson hollow collector's" + }, + { + "appid": 1769640, + "normalized_name": "wilderplace" + }, + { + "appid": 1769720, + "normalized_name": "scp iris through the looking glass chapter 1" + }, + { + "appid": 1769730, + "normalized_name": "connection" + }, + { + "appid": 1769740, + "normalized_name": "cubes of death" + }, + { + "appid": 1769750, + "normalized_name": "jumpilla" + }, + { + "appid": 1769760, + "normalized_name": "meet pip" + }, + { + "appid": 1769770, + "normalized_name": "everyday life in hospital" + }, + { + "appid": 1769780, + "normalized_name": "the graffiti creator" + }, + { + "appid": 1769830, + "normalized_name": "as we descend" + }, + { + "appid": 1769870, + "normalized_name": "tower offender" + }, + { + "appid": 1769960, + "normalized_name": "horizon journey" + }, + { + "appid": 1769980, + "normalized_name": "mask of the rose" + }, + { + "appid": 1770000, + "normalized_name": "steelpinion" + }, + { + "appid": 1770010, + "normalized_name": "airport renovator prologue" + }, + { + "appid": 1770040, + "normalized_name": "the misty tale" + }, + { + "appid": 1770050, + "normalized_name": "total tank generals" + }, + { + "appid": 1770070, + "normalized_name": "the hungry one" + }, + { + "appid": 1770080, + "normalized_name": "superfuse" + }, + { + "appid": 1770100, + "normalized_name": "the steps of divynia" + }, + { + "appid": 1770120, + "normalized_name": "fealty" + }, + { + "appid": 1770140, + "normalized_name": "69 mizuki love" + }, + { + "appid": 1770160, + "normalized_name": "69 samantha love" + }, + { + "appid": 1770180, + "normalized_name": "heroes of agora" + }, + { + "appid": 1770190, + "normalized_name": "drunken fist 2 zombie hangover" + }, + { + "appid": 1770200, + "normalized_name": "vacation adventures cruise director 3" + }, + { + "appid": 1770210, + "normalized_name": "price of power" + }, + { + "appid": 1770230, + "normalized_name": "sudokube" + }, + { + "appid": 1770270, + "normalized_name": "colortone remixed" + }, + { + "appid": 1770280, + "normalized_name": "without judgement" + }, + { + "appid": 1770350, + "normalized_name": "starblast retro wars" + }, + { + "appid": 1770360, + "normalized_name": "desert magic adventures" + }, + { + "appid": 1770380, + "normalized_name": "sex prison [18+]" + }, + { + "appid": 1770390, + "normalized_name": "bound by love" + }, + { + "appid": 1770400, + "normalized_name": "re bf" + }, + { + "appid": 1770440, + "normalized_name": "breadbox" + }, + { + "appid": 1770460, + "normalized_name": "halloween sex party [18+]" + }, + { + "appid": 1770470, + "normalized_name": "north of nowhere" + }, + { + "appid": 1770490, + "normalized_name": "paw patrol grand prix" + }, + { + "appid": 1770500, + "normalized_name": "gigantosaurus dino kart" + }, + { + "appid": 1770540, + "normalized_name": "my name is velcro" + }, + { + "appid": 1770550, + "normalized_name": "crypto girls [18+] sexcoin" + }, + { + "appid": 1770570, + "normalized_name": "biscudo" + }, + { + "appid": 1770600, + "normalized_name": "long and hard... summer!" + }, + { + "appid": 1770630, + "normalized_name": "fear in the modern house ch3" + }, + { + "appid": 1770660, + "normalized_name": "deluded i" + }, + { + "appid": 1770670, + "normalized_name": "古罗魔物记 guluo monster story" + }, + { + "appid": 1770760, + "normalized_name": "codename tiaras" + }, + { + "appid": 1770810, + "normalized_name": "mines of frostheim" + }, + { + "appid": 1770820, + "normalized_name": "cosplay love! enchanted princess" + }, + { + "appid": 1770830, + "normalized_name": "virtual maid streamer ramie" + }, + { + "appid": 1770840, + "normalized_name": "the medical examination diary the exciting days of me and my senpai" + }, + { + "appid": 1770850, + "normalized_name": "jump! fork!" + }, + { + "appid": 1770880, + "normalized_name": "tikus tales" + }, + { + "appid": 1770920, + "normalized_name": "gaze of the eyeless" + }, + { + "appid": 1771040, + "normalized_name": "quiet farm" + }, + { + "appid": 1771070, + "normalized_name": "midnight scenes the nanny" + }, + { + "appid": 1771110, + "normalized_name": "craftlings" + }, + { + "appid": 1771120, + "normalized_name": "solo path" + }, + { + "appid": 1771130, + "normalized_name": "open door" + }, + { + "appid": 1771170, + "normalized_name": "the facility project" + }, + { + "appid": 1771180, + "normalized_name": "no fair play" + }, + { + "appid": 1771200, + "normalized_name": "cat box paradox" + }, + { + "appid": 1771210, + "normalized_name": "tear factory" + }, + { + "appid": 1771230, + "normalized_name": "lust complex" + }, + { + "appid": 1771240, + "normalized_name": "piano rocker" + }, + { + "appid": 1771260, + "normalized_name": "conquest!" + }, + { + "appid": 1771300, + "normalized_name": "kingdom come deliverance ii" + }, + { + "appid": 1771310, + "normalized_name": "ghost tokyo" + }, + { + "appid": 1771340, + "normalized_name": "miasma citizens of free thought" + }, + { + "appid": 1771360, + "normalized_name": "gerda a flame in winter" + }, + { + "appid": 1771380, + "normalized_name": "the hidden room" + }, + { + "appid": 1771400, + "normalized_name": "die a.i." + }, + { + "appid": 1771420, + "normalized_name": "myths of gallantium" + }, + { + "appid": 1771430, + "normalized_name": "maid for pleasure" + }, + { + "appid": 1771440, + "normalized_name": "bomb club deluxe" + }, + { + "appid": 1771520, + "normalized_name": "slap the rocks" + }, + { + "appid": 1771550, + "normalized_name": "duck duck shark" + }, + { + "appid": 1771600, + "normalized_name": "fantasy jigsaw puzzle 5" + }, + { + "appid": 1771610, + "normalized_name": "taghunter" + }, + { + "appid": 1771620, + "normalized_name": "the dark dwellers" + }, + { + "appid": 1771640, + "normalized_name": "fish fight the prequel" + }, + { + "appid": 1771700, + "normalized_name": "vaygren lustful temptation" + }, + { + "appid": 1771730, + "normalized_name": "the city must grow" + }, + { + "appid": 1771780, + "normalized_name": "claytown horror part one" + }, + { + "appid": 1771830, + "normalized_name": "毛蟹穴" + }, + { + "appid": 1771880, + "normalized_name": "undemon" + }, + { + "appid": 1771930, + "normalized_name": "诡事影院 weird cinema" + }, + { + "appid": 1771960, + "normalized_name": "destroying the asteroids (along with unfair hurdles)" + }, + { + "appid": 1771980, + "normalized_name": "the operator" + }, + { + "appid": 1771990, + "normalized_name": "nyaaaanvy" + }, + { + "appid": 1772050, + "normalized_name": "souls of white star" + }, + { + "appid": 1772060, + "normalized_name": "过阴" + }, + { + "appid": 1772070, + "normalized_name": "unveiled" + }, + { + "appid": 1772180, + "normalized_name": "eat colors" + }, + { + "appid": 1772220, + "normalized_name": "frontline new revolution" + }, + { + "appid": 1772230, + "normalized_name": "wordkiller" + }, + { + "appid": 1772270, + "normalized_name": "flappy octane" + }, + { + "appid": 1772280, + "normalized_name": "karapath" + }, + { + "appid": 1772310, + "normalized_name": "grey heritage faded vision" + }, + { + "appid": 1772340, + "normalized_name": "the house" + }, + { + "appid": 1772350, + "normalized_name": "重装燎原" + }, + { + "appid": 1772370, + "normalized_name": "animals fight" + }, + { + "appid": 1772410, + "normalized_name": "blood red fists" + }, + { + "appid": 1772490, + "normalized_name": "dungeon color" + }, + { + "appid": 1772530, + "normalized_name": "toy tactics" + }, + { + "appid": 1772620, + "normalized_name": "bad guy neighborhood" + }, + { + "appid": 1772650, + "normalized_name": "stop the bus!" + }, + { + "appid": 1772710, + "normalized_name": "aeroplane blaster" + }, + { + "appid": 1772720, + "normalized_name": "village of zombies" + }, + { + "appid": 1772730, + "normalized_name": "zombie hunter" + }, + { + "appid": 1772750, + "normalized_name": "知更鸟 the ro" + }, + { + "appid": 1772780, + "normalized_name": "help me" + }, + { + "appid": 1772790, + "normalized_name": "june" + }, + { + "appid": 1772800, + "normalized_name": "airborne motocross" + }, + { + "appid": 1772810, + "normalized_name": "tails and pines" + }, + { + "appid": 1772820, + "normalized_name": "mushy" + }, + { + "appid": 1772830, + "normalized_name": "rusted moss" + }, + { + "appid": 1772840, + "normalized_name": "dragon war" + }, + { + "appid": 1772910, + "normalized_name": "dead district survival" + }, + { + "appid": 1772920, + "normalized_name": "para bellum hold the line" + }, + { + "appid": 1772930, + "normalized_name": "trauma visual novel" + }, + { + "appid": 1772950, + "normalized_name": "outbreak contagious memories" + }, + { + "appid": 1773060, + "normalized_name": "shoot trip die" + }, + { + "appid": 1773110, + "normalized_name": "second to nun" + }, + { + "appid": 1773150, + "normalized_name": "grow the hell up" + }, + { + "appid": 1773160, + "normalized_name": "fey distant daydream" + }, + { + "appid": 1773180, + "normalized_name": "the matriarch" + }, + { + "appid": 1773200, + "normalized_name": "nmne" + }, + { + "appid": 1773220, + "normalized_name": "train mechanic simulator 2025" + }, + { + "appid": 1773320, + "normalized_name": "coin treasures" + }, + { + "appid": 1773330, + "normalized_name": "desktop monkey" + }, + { + "appid": 1773360, + "normalized_name": "don't get distracted" + }, + { + "appid": 1773390, + "normalized_name": "the northern gate special agent" + }, + { + "appid": 1773410, + "normalized_name": "terrorbane an introduction mostly" + }, + { + "appid": 1773440, + "normalized_name": "skeeter's grid" + }, + { + "appid": 1773460, + "normalized_name": "assassin at crimson keep" + }, + { + "appid": 1773470, + "normalized_name": "ooze redux" + }, + { + "appid": 1773480, + "normalized_name": "astral space" + }, + { + "appid": 1773490, + "normalized_name": "baldwin's bear" + }, + { + "appid": 1773540, + "normalized_name": "tiranogg" + }, + { + "appid": 1773560, + "normalized_name": "the tree" + }, + { + "appid": 1773570, + "normalized_name": "laboratory" + }, + { + "appid": 1773620, + "normalized_name": "cloudburst" + }, + { + "appid": 1773630, + "normalized_name": "kill spree" + }, + { + "appid": 1773700, + "normalized_name": "hack and slime" + }, + { + "appid": 1773710, + "normalized_name": "cardseer" + }, + { + "appid": 1773740, + "normalized_name": "hermit an underwater tale" + }, + { + "appid": 1773830, + "normalized_name": "megacraft hentai and zombies" + }, + { + "appid": 1773840, + "normalized_name": "vacation adventures cruise director 4" + }, + { + "appid": 1773890, + "normalized_name": "100 hidden dogs" + }, + { + "appid": 1773990, + "normalized_name": "power pushout" + }, + { + "appid": 1774030, + "normalized_name": "mystical islands" + }, + { + "appid": 1774060, + "normalized_name": "gematombe" + }, + { + "appid": 1774080, + "normalized_name": "impious pumpkins" + }, + { + "appid": 1774090, + "normalized_name": "christmas tree clicker" + }, + { + "appid": 1774100, + "normalized_name": "pet idle" + }, + { + "appid": 1774110, + "normalized_name": "escape halloween forest" + }, + { + "appid": 1774130, + "normalized_name": "qontowars" + }, + { + "appid": 1774160, + "normalized_name": "frog ball rerolled" + }, + { + "appid": 1774190, + "normalized_name": "elysian eclipse" + }, + { + "appid": 1774200, + "normalized_name": "abeyance" + }, + { + "appid": 1774220, + "normalized_name": "jubilee" + }, + { + "appid": 1774380, + "normalized_name": "cine tracer 2" + }, + { + "appid": 1774390, + "normalized_name": "alien age" + }, + { + "appid": 1774410, + "normalized_name": "battle crate simulator" + }, + { + "appid": 1774420, + "normalized_name": "exordium" + }, + { + "appid": 1774450, + "normalized_name": "megacraft hotspot royale" + }, + { + "appid": 1774560, + "normalized_name": "dead transmission" + }, + { + "appid": 1774580, + "normalized_name": "star wars jedi survivor" + }, + { + "appid": 1774630, + "normalized_name": "hallowlands" + }, + { + "appid": 1774650, + "normalized_name": "fossilfuel vr raptor isolation" + }, + { + "appid": 1774700, + "normalized_name": "invert" + }, + { + "appid": 1774770, + "normalized_name": "phantom hysteria" + }, + { + "appid": 1774810, + "normalized_name": "laruaville 10 match 3 puzzle" + }, + { + "appid": 1774860, + "normalized_name": "plank builders" + }, + { + "appid": 1774880, + "normalized_name": "blight survival" + }, + { + "appid": 1774890, + "normalized_name": "bocce time! vr" + }, + { + "appid": 1774910, + "normalized_name": "bubble pop it asmr" + }, + { + "appid": 1774940, + "normalized_name": "don't kill the king!" + }, + { + "appid": 1774960, + "normalized_name": "我是大侠" + }, + { + "appid": 1774970, + "normalized_name": "machine ruin self destruction masturbation life of the sky temple" + }, + { + "appid": 1775000, + "normalized_name": "gliont lights" + }, + { + "appid": 1775020, + "normalized_name": "fight dirty" + }, + { + "appid": 1775080, + "normalized_name": "animal simulator" + }, + { + "appid": 1775100, + "normalized_name": "dead tunnel" + }, + { + "appid": 1775110, + "normalized_name": "chilli con valley" + }, + { + "appid": 1775150, + "normalized_name": "space depression" + }, + { + "appid": 1775160, + "normalized_name": "geo zombies" + }, + { + "appid": 1775170, + "normalized_name": "hidden investigation who did it?" + }, + { + "appid": 1775220, + "normalized_name": "echoes" + }, + { + "appid": 1775300, + "normalized_name": "news reacts" + }, + { + "appid": 1775320, + "normalized_name": "spellpowder uprising" + }, + { + "appid": 1775350, + "normalized_name": "rising bonevr" + }, + { + "appid": 1775360, + "normalized_name": "witch and council the card" + }, + { + "appid": 1775410, + "normalized_name": "banished sir" + }, + { + "appid": 1775430, + "normalized_name": "asteroid force" + }, + { + "appid": 1775460, + "normalized_name": "landnav" + }, + { + "appid": 1775470, + "normalized_name": "romino's adventure" + }, + { + "appid": 1775490, + "normalized_name": "slice & dice" + }, + { + "appid": 1775500, + "normalized_name": "interstellar airgap" + }, + { + "appid": 1775510, + "normalized_name": "raiders of the icepeak mountains" + }, + { + "appid": 1775520, + "normalized_name": "the soul stone war 2" + }, + { + "appid": 1775530, + "normalized_name": "artemis book one" + }, + { + "appid": 1775550, + "normalized_name": "gary grigsby's war in the east 2" + }, + { + "appid": 1775620, + "normalized_name": "crystal road vale of memories" + }, + { + "appid": 1775640, + "normalized_name": "biggest stream hover racing" + }, + { + "appid": 1775700, + "normalized_name": "hunted survive the night" + }, + { + "appid": 1775720, + "normalized_name": "sokobear autumn" + }, + { + "appid": 1775730, + "normalized_name": "love hentai and puzzles yokai" + }, + { + "appid": 1775740, + "normalized_name": "kstg" + }, + { + "appid": 1775750, + "normalized_name": "gardener's path" + }, + { + "appid": 1775770, + "normalized_name": "all to race" + }, + { + "appid": 1775790, + "normalized_name": "meetcute" + }, + { + "appid": 1775840, + "normalized_name": "abc flappy" + }, + { + "appid": 1775850, + "normalized_name": "slutty sluts panic" + }, + { + "appid": 1775860, + "normalized_name": "space roguelike adventure" + }, + { + "appid": 1775960, + "normalized_name": "contract rush dx" + }, + { + "appid": 1775980, + "normalized_name": "sweet hero" + }, + { + "appid": 1775990, + "normalized_name": "county hospital 2" + }, + { + "appid": 1776000, + "normalized_name": "saturn menace" + }, + { + "appid": 1776080, + "normalized_name": "livescream" + }, + { + "appid": 1776120, + "normalized_name": "starry moon island 2" + }, + { + "appid": 1776160, + "normalized_name": "you will (not) remain" + }, + { + "appid": 1776170, + "normalized_name": "barton lynch pro surfing" + }, + { + "appid": 1776200, + "normalized_name": "the inn between" + }, + { + "appid": 1776220, + "normalized_name": "akita king pig thinks pink" + }, + { + "appid": 1776250, + "normalized_name": "盖世豪侠" + }, + { + "appid": 1776260, + "normalized_name": "crazy truck" + }, + { + "appid": 1776270, + "normalized_name": "三国志赤壁篇" + }, + { + "appid": 1776290, + "normalized_name": "x fugitive" + }, + { + "appid": 1776350, + "normalized_name": "bear adventures" + }, + { + "appid": 1776380, + "normalized_name": "star ocean the divine force" + }, + { + "appid": 1776400, + "normalized_name": "shikkoku no sharnoth" + }, + { + "appid": 1776490, + "normalized_name": "now boarding" + }, + { + "appid": 1776500, + "normalized_name": "industry mania" + }, + { + "appid": 1776540, + "normalized_name": "lawnmower game pinball" + }, + { + "appid": 1776560, + "normalized_name": "dune girls attack!" + }, + { + "appid": 1776590, + "normalized_name": "dark gravity prologue" + }, + { + "appid": 1776600, + "normalized_name": "clutter 12 it's about time collector's" + }, + { + "appid": 1776610, + "normalized_name": "legends of hapax" + }, + { + "appid": 1776640, + "normalized_name": "fantasy sliding puzzle 3" + }, + { + "appid": 1776650, + "normalized_name": "fragroom defenders" + }, + { + "appid": 1776700, + "normalized_name": "klaus lee thunderballs" + }, + { + "appid": 1776730, + "normalized_name": "modern game tycoon" + }, + { + "appid": 1776800, + "normalized_name": "karmacrown" + }, + { + "appid": 1776820, + "normalized_name": "eniko ghosts of grace" + }, + { + "appid": 1776840, + "normalized_name": "overbowed" + }, + { + "appid": 1776860, + "normalized_name": "tank sudoku" + }, + { + "appid": 1776900, + "normalized_name": "sunny beach" + }, + { + "appid": 1776920, + "normalized_name": "cursed town" + }, + { + "appid": 1776930, + "normalized_name": "undergrave" + }, + { + "appid": 1776940, + "normalized_name": "fleshgait" + }, + { + "appid": 1776970, + "normalized_name": "月に寄りそう乙女の作法" + }, + { + "appid": 1777000, + "normalized_name": "cut to the core" + }, + { + "appid": 1777010, + "normalized_name": "mestres do gdo" + }, + { + "appid": 1777020, + "normalized_name": "corpsênia" + }, + { + "appid": 1777060, + "normalized_name": "the curse of grimsey island" + }, + { + "appid": 1777090, + "normalized_name": "halloween stories horror movie collector's" + }, + { + "appid": 1777110, + "normalized_name": "dogfight time" + }, + { + "appid": 1777130, + "normalized_name": "demon runner the forsaken" + }, + { + "appid": 1777160, + "normalized_name": "nuclear assault" + }, + { + "appid": 1777200, + "normalized_name": "connected clue" + }, + { + "appid": 1777210, + "normalized_name": "can you escape" + }, + { + "appid": 1777280, + "normalized_name": "惊险极速" + }, + { + "appid": 1777320, + "normalized_name": "malware rewritten" + }, + { + "appid": 1777350, + "normalized_name": "sunny beach dolls" + }, + { + "appid": 1777380, + "normalized_name": "bullet grinder" + }, + { + "appid": 1777390, + "normalized_name": "robolife2 nova duty" + }, + { + "appid": 1777430, + "normalized_name": "恋爱绮谭 不存在的真相" + }, + { + "appid": 1777440, + "normalized_name": "kimi ga nozomu eien enhanced" + }, + { + "appid": 1777480, + "normalized_name": "pathbreakers roaming blades" + }, + { + "appid": 1777550, + "normalized_name": "fuyu no tsuma" + }, + { + "appid": 1777560, + "normalized_name": "assembly" + }, + { + "appid": 1777600, + "normalized_name": "paranormal hunter" + }, + { + "appid": 1777620, + "normalized_name": "soul hackers 2" + }, + { + "appid": 1777630, + "normalized_name": "quack island" + }, + { + "appid": 1777650, + "normalized_name": "connect the dots" + }, + { + "appid": 1777730, + "normalized_name": "steps from above" + }, + { + "appid": 1777750, + "normalized_name": "ninki seiyuu how to make a pop voice actress" + }, + { + "appid": 1777760, + "normalized_name": "soccer manager 2022" + }, + { + "appid": 1777790, + "normalized_name": "pool party" + }, + { + "appid": 1777800, + "normalized_name": "food decisions" + }, + { + "appid": 1777820, + "normalized_name": "toilet flushing simulator" + }, + { + "appid": 1777830, + "normalized_name": "midnight submersion nightmare horror story" + }, + { + "appid": 1777840, + "normalized_name": "the modest handmaid’s sex work ~i will be your partner in place of the young mistress~" + }, + { + "appid": 1777910, + "normalized_name": "make the jump" + }, + { + "appid": 1777940, + "normalized_name": "quake survivor" + }, + { + "appid": 1777950, + "normalized_name": "elta7" + }, + { + "appid": 1777960, + "normalized_name": "snowrocket" + }, + { + "appid": 1777980, + "normalized_name": "touhou adventure" + }, + { + "appid": 1777990, + "normalized_name": "ortharion the last battle" + }, + { + "appid": 1778020, + "normalized_name": "the resolve" + }, + { + "appid": 1778030, + "normalized_name": "hunt together" + }, + { + "appid": 1778040, + "normalized_name": "airplanes dogfight racer" + }, + { + "appid": 1778050, + "normalized_name": "mythmatch" + }, + { + "appid": 1778060, + "normalized_name": "roll for initiative" + }, + { + "appid": 1778090, + "normalized_name": "castle life" + }, + { + "appid": 1778150, + "normalized_name": "trip" + }, + { + "appid": 1778190, + "normalized_name": "dark effigy" + }, + { + "appid": 1778200, + "normalized_name": "minigunner" + }, + { + "appid": 1778210, + "normalized_name": "king boo" + }, + { + "appid": 1778270, + "normalized_name": "dark secrets of showbiz" + }, + { + "appid": 1778280, + "normalized_name": "rescuing you in the infinite loop" + }, + { + "appid": 1778290, + "normalized_name": "qi luo’s erotic life" + }, + { + "appid": 1778300, + "normalized_name": "fallen saint" + }, + { + "appid": 1778310, + "normalized_name": "the throne of bernicia" + }, + { + "appid": 1778320, + "normalized_name": "harem of nurses" + }, + { + "appid": 1778330, + "normalized_name": "succubus girl" + }, + { + "appid": 1778380, + "normalized_name": "mine upgrade" + }, + { + "appid": 1778430, + "normalized_name": "garda" + }, + { + "appid": 1778460, + "normalized_name": "hidden water" + }, + { + "appid": 1778470, + "normalized_name": "hidden town" + }, + { + "appid": 1778490, + "normalized_name": "hexagourds" + }, + { + "appid": 1778500, + "normalized_name": "dee's nuts" + }, + { + "appid": 1778520, + "normalized_name": "squareman" + }, + { + "appid": 1778560, + "normalized_name": "honey villa" + }, + { + "appid": 1778590, + "normalized_name": "equinox" + }, + { + "appid": 1778610, + "normalized_name": "bog witch" + }, + { + "appid": 1778620, + "normalized_name": "of dust and light" + }, + { + "appid": 1778630, + "normalized_name": "bee the knight" + }, + { + "appid": 1778690, + "normalized_name": "mahika" + }, + { + "appid": 1778720, + "normalized_name": "blast beat" + }, + { + "appid": 1778760, + "normalized_name": "hidden investigation 2 homicide" + }, + { + "appid": 1778770, + "normalized_name": "academy of magic the great dark wizard's curse" + }, + { + "appid": 1778780, + "normalized_name": "phytetris physics tetris" + }, + { + "appid": 1778820, + "normalized_name": "tekken 8" + }, + { + "appid": 1778830, + "normalized_name": "skautfold knight's end" + }, + { + "appid": 1778840, + "normalized_name": "spirit of the north 2" + }, + { + "appid": 1778850, + "normalized_name": "monster adventure" + }, + { + "appid": 1778860, + "normalized_name": "drug dealer manager" + }, + { + "appid": 1778870, + "normalized_name": "intruder in antiquonia" + }, + { + "appid": 1778880, + "normalized_name": "sword of shadow revolution" + }, + { + "appid": 1778890, + "normalized_name": "the wrath of the erlik" + }, + { + "appid": 1778910, + "normalized_name": "let it slide" + }, + { + "appid": 1778950, + "normalized_name": "stalker in black" + }, + { + "appid": 1778970, + "normalized_name": "go slo" + }, + { + "appid": 1779020, + "normalized_name": "heka" + }, + { + "appid": 1779030, + "normalized_name": "so to speak" + }, + { + "appid": 1779040, + "normalized_name": "poly memory furries" + }, + { + "appid": 1779060, + "normalized_name": "the age of hell" + }, + { + "appid": 1779070, + "normalized_name": "catnight" + }, + { + "appid": 1779080, + "normalized_name": "project bridge" + }, + { + "appid": 1779090, + "normalized_name": "feetcry zombieland" + }, + { + "appid": 1779110, + "normalized_name": "lost island survivor lovely grandpa" + }, + { + "appid": 1779120, + "normalized_name": "inari's tale" + }, + { + "appid": 1779130, + "normalized_name": "bauer" + }, + { + "appid": 1779180, + "normalized_name": "knight's try" + }, + { + "appid": 1779190, + "normalized_name": "soulsland" + }, + { + "appid": 1779200, + "normalized_name": "thrive" + }, + { + "appid": 1779220, + "normalized_name": "pieces of beauty 2" + }, + { + "appid": 1779240, + "normalized_name": "天国病院 heaven's hospital" + }, + { + "appid": 1779270, + "normalized_name": "anime fantasy jigsaw puzzle 3d" + }, + { + "appid": 1779280, + "normalized_name": "humankind in a nutshell" + }, + { + "appid": 1779310, + "normalized_name": "bugs from space" + }, + { + "appid": 1779450, + "normalized_name": "kalasta" + }, + { + "appid": 1779460, + "normalized_name": "my name is mayo 3" + }, + { + "appid": 1779500, + "normalized_name": "allblockswanttobestacked" + }, + { + "appid": 1779530, + "normalized_name": "bass monkey" + }, + { + "appid": 1779550, + "normalized_name": "galactic federation" + }, + { + "appid": 1779560, + "normalized_name": "donut dodo" + }, + { + "appid": 1779590, + "normalized_name": "project runner" + }, + { + "appid": 1779610, + "normalized_name": "farm renovator" + }, + { + "appid": 1779630, + "normalized_name": "cosmo player z" + }, + { + "appid": 1779650, + "normalized_name": "us against aliens" + }, + { + "appid": 1779660, + "normalized_name": "i am your king" + }, + { + "appid": 1779670, + "normalized_name": "找心脏 find the heart" + }, + { + "appid": 1779680, + "normalized_name": "proto shooter lychee" + }, + { + "appid": 1779690, + "normalized_name": "so long as there is mercy" + }, + { + "appid": 1779710, + "normalized_name": "search all animals" + }, + { + "appid": 1779720, + "normalized_name": "skeletal skism" + }, + { + "appid": 1779730, + "normalized_name": "scufflers" + }, + { + "appid": 1779750, + "normalized_name": "the house before" + }, + { + "appid": 1779760, + "normalized_name": "末卡未来" + }, + { + "appid": 1779770, + "normalized_name": "munchies" + }, + { + "appid": 1779790, + "normalized_name": "deadly infestation" + }, + { + "appid": 1779810, + "normalized_name": "pacifist outside" + }, + { + "appid": 1779840, + "normalized_name": "stardander revenant" + }, + { + "appid": 1779890, + "normalized_name": "geometry waves" + }, + { + "appid": 1779910, + "normalized_name": "dismal reverie" + }, + { + "appid": 1779940, + "normalized_name": "play outside simulator" + }, + { + "appid": 1779950, + "normalized_name": "goo keeper" + }, + { + "appid": 1779960, + "normalized_name": "salome's kiss" + }, + { + "appid": 1779970, + "normalized_name": "asterism apex of war" + }, + { + "appid": 1779990, + "normalized_name": "my furry detective 🐾" + }, + { + "appid": 1780000, + "normalized_name": "a gift of war" + }, + { + "appid": 1780010, + "normalized_name": "elven tales rise of darkness" + }, + { + "appid": 1780060, + "normalized_name": "megacraft hentai apocalipsis" + }, + { + "appid": 1780070, + "normalized_name": "seeds of calamity" + }, + { + "appid": 1780090, + "normalized_name": "the phantom keeper" + }, + { + "appid": 1780100, + "normalized_name": "nonorelia" + }, + { + "appid": 1780110, + "normalized_name": "take as needed" + }, + { + "appid": 1780130, + "normalized_name": "racecar bed" + }, + { + "appid": 1780150, + "normalized_name": "maze mayhem" + }, + { + "appid": 1780220, + "normalized_name": "geranium tale of dawn's desire" + }, + { + "appid": 1780230, + "normalized_name": "keep this land" + }, + { + "appid": 1780250, + "normalized_name": "crazy empress" + }, + { + "appid": 1780260, + "normalized_name": "challenge dream cat" + }, + { + "appid": 1780270, + "normalized_name": "laptop tycoon" + }, + { + "appid": 1780280, + "normalized_name": "find the murderer" + }, + { + "appid": 1780290, + "normalized_name": "let's puzzle" + }, + { + "appid": 1780300, + "normalized_name": "hello world" + }, + { + "appid": 1780310, + "normalized_name": "eletar hero" + }, + { + "appid": 1780340, + "normalized_name": "cyber runner 2048" + }, + { + "appid": 1780370, + "normalized_name": "mr. rainer's solve it service" + }, + { + "appid": 1780380, + "normalized_name": "golf solitaire simple" + }, + { + "appid": 1780410, + "normalized_name": "christmas slots casino game" + }, + { + "appid": 1780420, + "normalized_name": "the quiet apocalypse" + }, + { + "appid": 1780430, + "normalized_name": "gruta" + }, + { + "appid": 1780450, + "normalized_name": "buggy game" + }, + { + "appid": 1780470, + "normalized_name": "chastity catastrophe" + }, + { + "appid": 1780480, + "normalized_name": "one by one" + }, + { + "appid": 1780490, + "normalized_name": "skull bullets" + }, + { + "appid": 1780520, + "normalized_name": "the vellescian gambit" + }, + { + "appid": 1780530, + "normalized_name": "cyber sweep" + }, + { + "appid": 1780550, + "normalized_name": "overlook" + }, + { + "appid": 1780570, + "normalized_name": "rakuten" + }, + { + "appid": 1780600, + "normalized_name": "soulless legions" + }, + { + "appid": 1780610, + "normalized_name": "kobold garden" + }, + { + "appid": 1780620, + "normalized_name": "流放之域" + }, + { + "appid": 1780680, + "normalized_name": "dreadful wake" + }, + { + "appid": 1780690, + "normalized_name": "the tale of fighting nymphs" + }, + { + "appid": 1780720, + "normalized_name": "nott longa" + }, + { + "appid": 1780730, + "normalized_name": "그랑 엠파이어 아마네" + }, + { + "appid": 1780780, + "normalized_name": "adult puzzles camgirls" + }, + { + "appid": 1780840, + "normalized_name": "loch ness" + }, + { + "appid": 1780850, + "normalized_name": "cthulhu dungeon" + }, + { + "appid": 1780880, + "normalized_name": "queue simulator" + }, + { + "appid": 1780900, + "normalized_name": "knockball pool" + }, + { + "appid": 1780940, + "normalized_name": "inquisitor’s heart and soul" + }, + { + "appid": 1780950, + "normalized_name": "drafting towers" + }, + { + "appid": 1780960, + "normalized_name": "sumy shelltris iceblocks 1" + }, + { + "appid": 1780990, + "normalized_name": "fallen flowers" + }, + { + "appid": 1781010, + "normalized_name": "pine hearts" + }, + { + "appid": 1781030, + "normalized_name": "fishing paradiso" + }, + { + "appid": 1781040, + "normalized_name": "super kakuro cross sums" + }, + { + "appid": 1781050, + "normalized_name": "robin hood spring of life" + }, + { + "appid": 1781060, + "normalized_name": "amnesiac adventurer" + }, + { + "appid": 1781110, + "normalized_name": "blockstar vr" + }, + { + "appid": 1781140, + "normalized_name": "sing together" + }, + { + "appid": 1781160, + "normalized_name": "electrician simulator first shock" + }, + { + "appid": 1781170, + "normalized_name": "the flow experience" + }, + { + "appid": 1781190, + "normalized_name": "immortal and the death that follows" + }, + { + "appid": 1781230, + "normalized_name": "happy summer quest" + }, + { + "appid": 1781250, + "normalized_name": "/tilt/" + }, + { + "appid": 1781260, + "normalized_name": "promenade" + }, + { + "appid": 1781270, + "normalized_name": "déjà vu vr" + }, + { + "appid": 1781290, + "normalized_name": "myjapaneseteacher" + }, + { + "appid": 1781330, + "normalized_name": "in shape" + }, + { + "appid": 1781350, + "normalized_name": "fireboy & watergirl fairy tales" + }, + { + "appid": 1781380, + "normalized_name": "jumphobia homeward bound" + }, + { + "appid": 1781450, + "normalized_name": "run willy!" + }, + { + "appid": 1781500, + "normalized_name": "noroy" + }, + { + "appid": 1781520, + "normalized_name": "metal hunter" + }, + { + "appid": 1781550, + "normalized_name": "bounce castle" + }, + { + "appid": 1781580, + "normalized_name": "anivenge" + }, + { + "appid": 1781590, + "normalized_name": "valley knights" + }, + { + "appid": 1781640, + "normalized_name": "spermicide" + }, + { + "appid": 1781710, + "normalized_name": "hentai detective" + }, + { + "appid": 1781720, + "normalized_name": "unstrong space calamity" + }, + { + "appid": 1781730, + "normalized_name": "502's arcade" + }, + { + "appid": 1781740, + "normalized_name": "vheda" + }, + { + "appid": 1781750, + "normalized_name": "fly dangerous" + }, + { + "appid": 1781760, + "normalized_name": "shadow life" + }, + { + "appid": 1781780, + "normalized_name": "rorys restaurant deluxe" + }, + { + "appid": 1781840, + "normalized_name": "里帰り | satogaeri" + }, + { + "appid": 1781870, + "normalized_name": "legends of pindorama" + }, + { + "appid": 1781880, + "normalized_name": "hardwork simulator" + }, + { + "appid": 1781890, + "normalized_name": "the coma 2b catacomb" + }, + { + "appid": 1781920, + "normalized_name": "nakornsampan" + }, + { + "appid": 1781960, + "normalized_name": "sigil of the magi" + }, + { + "appid": 1781980, + "normalized_name": "mini island winter" + }, + { + "appid": 1782000, + "normalized_name": "the mighty quest" + }, + { + "appid": 1782010, + "normalized_name": "serendipity hotel" + }, + { + "appid": 1782030, + "normalized_name": "universal enemies" + }, + { + "appid": 1782050, + "normalized_name": "bloxi the word game" + }, + { + "appid": 1782070, + "normalized_name": "blue max aces of the great war" + }, + { + "appid": 1782080, + "normalized_name": "das boot german u boat simulation" + }, + { + "appid": 1782120, + "normalized_name": "zero sievert" + }, + { + "appid": 1782130, + "normalized_name": "1/2 red riding hood" + }, + { + "appid": 1782150, + "normalized_name": "overlord escape from nazarick" + }, + { + "appid": 1782180, + "normalized_name": "metaisland" + }, + { + "appid": 1782190, + "normalized_name": "farlife" + }, + { + "appid": 1782210, + "normalized_name": "crab game" + }, + { + "appid": 1782230, + "normalized_name": "cooks girls" + }, + { + "appid": 1782260, + "normalized_name": "sleep and girls" + }, + { + "appid": 1782270, + "normalized_name": "farm and girls" + }, + { + "appid": 1782320, + "normalized_name": "fantasy and girls" + }, + { + "appid": 1782330, + "normalized_name": "green hell vr" + }, + { + "appid": 1782380, + "normalized_name": "scp containment breach multiplayer" + }, + { + "appid": 1782390, + "normalized_name": "lovely archeologists" + }, + { + "appid": 1782420, + "normalized_name": "tales from the dancing moon" + }, + { + "appid": 1782460, + "normalized_name": "hell clock" + }, + { + "appid": 1782480, + "normalized_name": "tormentis" + }, + { + "appid": 1782510, + "normalized_name": "the grugs origins" + }, + { + "appid": 1782520, + "normalized_name": "marble puzzle blast rescue adventure" + }, + { + "appid": 1782560, + "normalized_name": "shattered sky" + }, + { + "appid": 1782570, + "normalized_name": "beer factory" + }, + { + "appid": 1782590, + "normalized_name": "from the bunker" + }, + { + "appid": 1782600, + "normalized_name": "owlone in the woods" + }, + { + "appid": 1782610, + "normalized_name": "tenebrae" + }, + { + "appid": 1782620, + "normalized_name": "gachi dash" + }, + { + "appid": 1782640, + "normalized_name": "fireairplan" + }, + { + "appid": 1782670, + "normalized_name": "tru or die" + }, + { + "appid": 1782700, + "normalized_name": "the night walkers" + }, + { + "appid": 1782710, + "normalized_name": "haley's story" + }, + { + "appid": 1782740, + "normalized_name": "spiceshifter" + }, + { + "appid": 1782760, + "normalized_name": "final fury" + }, + { + "appid": 1782780, + "normalized_name": "worland lost runes" + }, + { + "appid": 1782790, + "normalized_name": "animal match" + }, + { + "appid": 1782810, + "normalized_name": "software company" + }, + { + "appid": 1782820, + "normalized_name": "drift go" + }, + { + "appid": 1782860, + "normalized_name": "community college hero fun and games" + }, + { + "appid": 1782880, + "normalized_name": "spacious snake" + }, + { + "appid": 1782890, + "normalized_name": "ríos de lluvia" + }, + { + "appid": 1782940, + "normalized_name": "cyndefense 2" + }, + { + "appid": 1782950, + "normalized_name": "spacedominator" + }, + { + "appid": 1782960, + "normalized_name": "laboratory of nightmares" + }, + { + "appid": 1782970, + "normalized_name": "furry sex madness" + }, + { + "appid": 1782980, + "normalized_name": "stunt coordinator" + }, + { + "appid": 1783050, + "normalized_name": "project vostok episode 1" + }, + { + "appid": 1783060, + "normalized_name": "chimeras mortal medicine collector's" + }, + { + "appid": 1783080, + "normalized_name": "dead metal" + }, + { + "appid": 1783090, + "normalized_name": "marmoset" + }, + { + "appid": 1783100, + "normalized_name": "slot factory create and play magic brewery" + }, + { + "appid": 1783110, + "normalized_name": "chasing sunsets" + }, + { + "appid": 1783130, + "normalized_name": "oh! fuse box" + }, + { + "appid": 1783150, + "normalized_name": "dark magician" + }, + { + "appid": 1783180, + "normalized_name": "shaped beats" + }, + { + "appid": 1783190, + "normalized_name": "hatsumira from the future undying" + }, + { + "appid": 1783280, + "normalized_name": "ghostlore" + }, + { + "appid": 1783350, + "normalized_name": "a frustrating platformer" + }, + { + "appid": 1783360, + "normalized_name": "meg's monster" + }, + { + "appid": 1783370, + "normalized_name": "aery dreamscape" + }, + { + "appid": 1783380, + "normalized_name": "murder diaries 3 santa's trail of blood" + }, + { + "appid": 1783470, + "normalized_name": "experiment of being" + }, + { + "appid": 1783490, + "normalized_name": "basketball" + }, + { + "appid": 1783510, + "normalized_name": "bobok" + }, + { + "appid": 1783560, + "normalized_name": "the last caretaker" + }, + { + "appid": 1783620, + "normalized_name": "tales of morrow" + }, + { + "appid": 1783680, + "normalized_name": "thalassa edge of the abyss" + }, + { + "appid": 1783700, + "normalized_name": "gachi bird" + }, + { + "appid": 1783740, + "normalized_name": "essence of the tjikko prologue" + }, + { + "appid": 1783750, + "normalized_name": "winds & leaves" + }, + { + "appid": 1783770, + "normalized_name": "vacation adventures cruise director 5" + }, + { + "appid": 1783780, + "normalized_name": "ohv" + }, + { + "appid": 1783800, + "normalized_name": "crossroad os" + }, + { + "appid": 1783810, + "normalized_name": "in the line of my heart" + }, + { + "appid": 1783900, + "normalized_name": "debt chasing treasure" + }, + { + "appid": 1783910, + "normalized_name": "adventures of two foxes" + }, + { + "appid": 1783930, + "normalized_name": "civatlas" + }, + { + "appid": 1783960, + "normalized_name": "furry fetishists" + }, + { + "appid": 1784000, + "normalized_name": "bullet chess" + }, + { + "appid": 1784020, + "normalized_name": "east trapper" + }, + { + "appid": 1784100, + "normalized_name": "cubelines" + }, + { + "appid": 1784130, + "normalized_name": "the undead" + }, + { + "appid": 1784160, + "normalized_name": "ilum" + }, + { + "appid": 1784180, + "normalized_name": "fragment hunters" + }, + { + "appid": 1784220, + "normalized_name": "chesskoban chess puzzles" + }, + { + "appid": 1784230, + "normalized_name": "cybertruck sim" + }, + { + "appid": 1784310, + "normalized_name": "the swordfish knight of the deep" + }, + { + "appid": 1784320, + "normalized_name": "demon king" + }, + { + "appid": 1784410, + "normalized_name": "hope despair chaos" + }, + { + "appid": 1784470, + "normalized_name": "tightrope walking" + }, + { + "appid": 1784550, + "normalized_name": "demolition race" + }, + { + "appid": 1784570, + "normalized_name": "trainz railroad simulator 2022" + }, + { + "appid": 1784580, + "normalized_name": "时间之神的猫" + }, + { + "appid": 1784600, + "normalized_name": "kingdom of dinza" + }, + { + "appid": 1784630, + "normalized_name": "alice!" + }, + { + "appid": 1784650, + "normalized_name": "boss fighters" + }, + { + "appid": 1784730, + "normalized_name": "master forge" + }, + { + "appid": 1784780, + "normalized_name": "hero of the kingdom the lost tales 2" + }, + { + "appid": 1784820, + "normalized_name": "master of squad" + }, + { + "appid": 1784840, + "normalized_name": "ball gun arena" + }, + { + "appid": 1784860, + "normalized_name": "flower shop" + }, + { + "appid": 1784940, + "normalized_name": "doomsday scavenger | 末日清道夫" + }, + { + "appid": 1784950, + "normalized_name": "kungen" + }, + { + "appid": 1784970, + "normalized_name": "1630 the thirty years' war" + }, + { + "appid": 1784980, + "normalized_name": "limita luminii" + }, + { + "appid": 1784990, + "normalized_name": "// overdrive" + }, + { + "appid": 1785000, + "normalized_name": "mokoko x" + }, + { + "appid": 1785020, + "normalized_name": "hentai madness" + }, + { + "appid": 1785080, + "normalized_name": "arrows" + }, + { + "appid": 1785100, + "normalized_name": "stop the saturnians!" + }, + { + "appid": 1785120, + "normalized_name": "forsake urban horror" + }, + { + "appid": 1785150, + "normalized_name": "friends vs friends" + }, + { + "appid": 1785160, + "normalized_name": "one week with you" + }, + { + "appid": 1785190, + "normalized_name": "global pandemic" + }, + { + "appid": 1785200, + "normalized_name": "сhick boy adventures" + }, + { + "appid": 1785220, + "normalized_name": "マジカオス | magic chaos" + }, + { + "appid": 1785230, + "normalized_name": "springy a bounce adventure" + }, + { + "appid": 1785270, + "normalized_name": "l.o.l. surprise! b.b.s born to travel" + }, + { + "appid": 1785280, + "normalized_name": "word of kitchen" + }, + { + "appid": 1785300, + "normalized_name": "saint maker horror visual novel" + }, + { + "appid": 1785320, + "normalized_name": "dead no head" + }, + { + "appid": 1785370, + "normalized_name": "slime escape" + }, + { + "appid": 1785400, + "normalized_name": "nine card isle" + }, + { + "appid": 1785420, + "normalized_name": "orten was the case" + }, + { + "appid": 1785430, + "normalized_name": "space gliders" + }, + { + "appid": 1785440, + "normalized_name": "russian train trip" + }, + { + "appid": 1785450, + "normalized_name": "brooke vs world doom" + }, + { + "appid": 1785460, + "normalized_name": "hotel on the grate" + }, + { + "appid": 1785470, + "normalized_name": "magneta box" + }, + { + "appid": 1785510, + "normalized_name": "hoguru presents the house with too many zombies in it" + }, + { + "appid": 1785520, + "normalized_name": "grimmlins tale" + }, + { + "appid": 1785530, + "normalized_name": "starbase gunship" + }, + { + "appid": 1785560, + "normalized_name": "sky darkcrow" + }, + { + "appid": 1785580, + "normalized_name": "the book of buja" + }, + { + "appid": 1785600, + "normalized_name": "saboteur" + }, + { + "appid": 1785630, + "normalized_name": "gedda cake" + }, + { + "appid": 1785650, + "normalized_name": "topspin 2k25" + }, + { + "appid": 1785680, + "normalized_name": "specwar tactics" + }, + { + "appid": 1785700, + "normalized_name": "girls gym" + }, + { + "appid": 1785750, + "normalized_name": "全托教师" + }, + { + "appid": 1785770, + "normalized_name": "demons and altar" + }, + { + "appid": 1785800, + "normalized_name": "bouncy cube" + }, + { + "appid": 1785820, + "normalized_name": "urbek city builder prologue" + }, + { + "appid": 1785910, + "normalized_name": "sbk22" + }, + { + "appid": 1785930, + "normalized_name": "return to kurgansk" + }, + { + "appid": 1785940, + "normalized_name": "coven" + }, + { + "appid": 1785950, + "normalized_name": "razgovor online" + }, + { + "appid": 1785980, + "normalized_name": "car manufacture prologue" + }, + { + "appid": 1786010, + "normalized_name": "aetheris" + }, + { + "appid": 1786030, + "normalized_name": "hidden motives the diamond rush collector's" + }, + { + "appid": 1786070, + "normalized_name": "edge of war" + }, + { + "appid": 1786080, + "normalized_name": "exodus trapped in time" + }, + { + "appid": 1786100, + "normalized_name": "helium electric" + }, + { + "appid": 1786110, + "normalized_name": "the late d. flate's great estate" + }, + { + "appid": 1786130, + "normalized_name": "asha" + }, + { + "appid": 1786150, + "normalized_name": "horror drift (ホラードリフト)" + }, + { + "appid": 1786200, + "normalized_name": "wars and roses" + }, + { + "appid": 1786230, + "normalized_name": "breakers collection" + }, + { + "appid": 1786250, + "normalized_name": "puzzle art artiodactyls" + }, + { + "appid": 1786260, + "normalized_name": "puzzle art horses" + }, + { + "appid": 1786270, + "normalized_name": "puzzle art predators" + }, + { + "appid": 1786280, + "normalized_name": "puzzle art primates" + }, + { + "appid": 1786290, + "normalized_name": "puzzle art reptiles" + }, + { + "appid": 1786300, + "normalized_name": "puzzle art rodents" + }, + { + "appid": 1786320, + "normalized_name": "the wolf is dead" + }, + { + "appid": 1786330, + "normalized_name": "the pied piper of gamelin" + }, + { + "appid": 1786350, + "normalized_name": "seventh angel" + }, + { + "appid": 1786470, + "normalized_name": "the tombs of ultra 5" + }, + { + "appid": 1786480, + "normalized_name": "like no other the legend of the twin books" + }, + { + "appid": 1786490, + "normalized_name": "legend of krilona" + }, + { + "appid": 1786500, + "normalized_name": "claw machine pro" + }, + { + "appid": 1786570, + "normalized_name": "driftence" + }, + { + "appid": 1786580, + "normalized_name": "halloween store simulator" + }, + { + "appid": 1786590, + "normalized_name": "elisa dragon hunter" + }, + { + "appid": 1786620, + "normalized_name": "space hoarders inc." + }, + { + "appid": 1786630, + "normalized_name": "droid escape" + }, + { + "appid": 1786640, + "normalized_name": "spookware watch party" + }, + { + "appid": 1786660, + "normalized_name": "marimoth" + }, + { + "appid": 1786670, + "normalized_name": "仙绣剑缘录" + }, + { + "appid": 1786680, + "normalized_name": "hewantstolive" + }, + { + "appid": 1786690, + "normalized_name": "pinballer (3d pinball)" + }, + { + "appid": 1786710, + "normalized_name": "slipdream resonator" + }, + { + "appid": 1786720, + "normalized_name": "entropic decay" + }, + { + "appid": 1786730, + "normalized_name": "xenture" + }, + { + "appid": 1786740, + "normalized_name": "bartenders" + }, + { + "appid": 1786750, + "normalized_name": "runaway princess" + }, + { + "appid": 1786760, + "normalized_name": "荣耀斗罗" + }, + { + "appid": 1786770, + "normalized_name": "三色球(three color ball)" + }, + { + "appid": 1786780, + "normalized_name": "batsumaru" + }, + { + "appid": 1786790, + "normalized_name": "magical girl celesphonia" + }, + { + "appid": 1786800, + "normalized_name": "call of senpai waifu warfare" + }, + { + "appid": 1786810, + "normalized_name": "bingiman trap ochido" + }, + { + "appid": 1786820, + "normalized_name": "nonogram animals" + }, + { + "appid": 1786830, + "normalized_name": "necrobouncer" + }, + { + "appid": 1786860, + "normalized_name": "fertiliel cupid simulator" + }, + { + "appid": 1786900, + "normalized_name": "card tales" + }, + { + "appid": 1786910, + "normalized_name": "magic of spring" + }, + { + "appid": 1786930, + "normalized_name": "steelborn" + }, + { + "appid": 1786950, + "normalized_name": "klaus veen's treason" + }, + { + "appid": 1786960, + "normalized_name": "horny goddesses quiz" + }, + { + "appid": 1787000, + "normalized_name": "the medieval psychologist" + }, + { + "appid": 1787010, + "normalized_name": "campground owner" + }, + { + "appid": 1787030, + "normalized_name": "safari cannon" + }, + { + "appid": 1787040, + "normalized_name": "book hunter" + }, + { + "appid": 1787050, + "normalized_name": "voxel farm island" + }, + { + "appid": 1787070, + "normalized_name": "roommate" + }, + { + "appid": 1787080, + "normalized_name": "office no.41 prototype" + }, + { + "appid": 1787100, + "normalized_name": "out of bounds" + }, + { + "appid": 1787110, + "normalized_name": "cute chess" + }, + { + "appid": 1787120, + "normalized_name": "sparkling memories 夏日花火" + }, + { + "appid": 1787140, + "normalized_name": "ragingfist" + }, + { + "appid": 1787150, + "normalized_name": "futanari jigsaw puzzle" + }, + { + "appid": 1787160, + "normalized_name": "cupid nonogram" + }, + { + "appid": 1787170, + "normalized_name": "squidoku" + }, + { + "appid": 1787180, + "normalized_name": "revenge on the streets 3" + }, + { + "appid": 1787190, + "normalized_name": "hamster blitz!" + }, + { + "appid": 1787210, + "normalized_name": "yokaiware" + }, + { + "appid": 1787230, + "normalized_name": "ahoy" + }, + { + "appid": 1787320, + "normalized_name": "the atlas mystery a vr puzzle game" + }, + { + "appid": 1787360, + "normalized_name": "snail story love" + }, + { + "appid": 1787390, + "normalized_name": "remy raccoon and the lost temple festive frolics (volume 1)" + }, + { + "appid": 1787400, + "normalized_name": "mandala" + }, + { + "appid": 1787410, + "normalized_name": "arcane treasures trading card game" + }, + { + "appid": 1787420, + "normalized_name": "the mystery of the planet venus\\ тайна планеты венера" + }, + { + "appid": 1787440, + "normalized_name": "xangel" + }, + { + "appid": 1787450, + "normalized_name": "where is here new home" + }, + { + "appid": 1787460, + "normalized_name": "slaughter bots" + }, + { + "appid": 1787470, + "normalized_name": "snake pit" + }, + { + "appid": 1787480, + "normalized_name": "metro simulator 2" + }, + { + "appid": 1787500, + "normalized_name": "山:临界幸存者" + }, + { + "appid": 1787520, + "normalized_name": "resonance wars" + }, + { + "appid": 1787580, + "normalized_name": "bomj simulator" + }, + { + "appid": 1787600, + "normalized_name": "dark forest the horror" + }, + { + "appid": 1787610, + "normalized_name": "cyber sokoban" + }, + { + "appid": 1787630, + "normalized_name": "jump challenge!" + }, + { + "appid": 1787640, + "normalized_name": "kings and pigs prequel" + }, + { + "appid": 1787650, + "normalized_name": "trick or treat" + }, + { + "appid": 1787670, + "normalized_name": "a fishy rpg" + }, + { + "appid": 1787680, + "normalized_name": "ethos 2 fall of empires" + }, + { + "appid": 1787690, + "normalized_name": "blade crusade" + }, + { + "appid": 1787730, + "normalized_name": "kismet tapestry" + }, + { + "appid": 1787740, + "normalized_name": "celestiais & dragões" + }, + { + "appid": 1787760, + "normalized_name": "pets at work" + }, + { + "appid": 1787770, + "normalized_name": "spirits of carter mansion" + }, + { + "appid": 1787790, + "normalized_name": "kirakira monstars" + }, + { + "appid": 1787800, + "normalized_name": "motox" + }, + { + "appid": 1787810, + "normalized_name": "song in the smoke" + }, + { + "appid": 1787820, + "normalized_name": "mirror party" + }, + { + "appid": 1787840, + "normalized_name": "琴覆天下" + }, + { + "appid": 1787860, + "normalized_name": "crawlspace" + }, + { + "appid": 1787870, + "normalized_name": "a hot springs vacation with my married office lady superior" + }, + { + "appid": 1787900, + "normalized_name": "vr pictures" + }, + { + "appid": 1787910, + "normalized_name": "mysperyence" + }, + { + "appid": 1787920, + "normalized_name": "万界之门" + }, + { + "appid": 1787960, + "normalized_name": "milling machine simulator 3d" + }, + { + "appid": 1787980, + "normalized_name": "fructus" + }, + { + "appid": 1787990, + "normalized_name": "hidden investigation 3 crime files" + }, + { + "appid": 1788040, + "normalized_name": "冰橘布丁" + }, + { + "appid": 1788060, + "normalized_name": "candy house in the dark forest" + }, + { + "appid": 1788100, + "normalized_name": "saimin gakushū secret desire" + }, + { + "appid": 1788120, + "normalized_name": "french crime detective game" + }, + { + "appid": 1788130, + "normalized_name": "abomifighters world league" + }, + { + "appid": 1788170, + "normalized_name": "残秽的我们" + }, + { + "appid": 1788180, + "normalized_name": "persian empire builder" + }, + { + "appid": 1788220, + "normalized_name": "industriality" + }, + { + "appid": 1788260, + "normalized_name": "world war ii underground" + }, + { + "appid": 1788270, + "normalized_name": "simkea" + }, + { + "appid": 1788380, + "normalized_name": "s&m lessons with the cute masochist maid i’ll teach you the secret techniques of your clan in place of your father!" + }, + { + "appid": 1788390, + "normalized_name": "insect seeker" + }, + { + "appid": 1788410, + "normalized_name": "bot.vinnik chess mid century ussr championships" + }, + { + "appid": 1788430, + "normalized_name": "bot.vinnik chess late ussr championships" + }, + { + "appid": 1788460, + "normalized_name": "tr4pp3d" + }, + { + "appid": 1788490, + "normalized_name": "adult puzzles hentai nightclub" + }, + { + "appid": 1788500, + "normalized_name": "princess defender episode 1" + }, + { + "appid": 1788520, + "normalized_name": "octomaze" + }, + { + "appid": 1788560, + "normalized_name": "dream of the hikikomori" + }, + { + "appid": 1788620, + "normalized_name": "task force 88 hostile contact" + }, + { + "appid": 1788650, + "normalized_name": "alchera" + }, + { + "appid": 1788660, + "normalized_name": "hitboxer" + }, + { + "appid": 1788700, + "normalized_name": "stella's spikey dream" + }, + { + "appid": 1788710, + "normalized_name": "ajedrez una tarde de otoño" + }, + { + "appid": 1788720, + "normalized_name": "coin rush" + }, + { + "appid": 1788730, + "normalized_name": "no crooks on christmas" + }, + { + "appid": 1788740, + "normalized_name": "めだアビ" + }, + { + "appid": 1788750, + "normalized_name": "めだアビ~プシーニの謎~" + }, + { + "appid": 1788760, + "normalized_name": "dragon kingdom" + }, + { + "appid": 1788780, + "normalized_name": "venusblood hollow international" + }, + { + "appid": 1788790, + "normalized_name": "hungry wolf" + }, + { + "appid": 1788800, + "normalized_name": "soma union" + }, + { + "appid": 1788810, + "normalized_name": "tanner rozankovic" + }, + { + "appid": 1788840, + "normalized_name": "porcelana" + }, + { + "appid": 1788850, + "normalized_name": "你已经猜到结局了吗" + }, + { + "appid": 1788860, + "normalized_name": "labyrinth inf" + }, + { + "appid": 1788880, + "normalized_name": "argonauts agency chair of hephaestus" + }, + { + "appid": 1788890, + "normalized_name": "argonauts agency glove of midas" + }, + { + "appid": 1788900, + "normalized_name": "argonauts agency captive of circe" + }, + { + "appid": 1788910, + "normalized_name": "argonauts agency missing daughter" + }, + { + "appid": 1788920, + "normalized_name": "new lands" + }, + { + "appid": 1788930, + "normalized_name": "new lands 2 collector's" + }, + { + "appid": 1788940, + "normalized_name": "shadows price for our sins" + }, + { + "appid": 1788950, + "normalized_name": "valentine's day griddlers" + }, + { + "appid": 1788960, + "normalized_name": "true detective solitaire 2" + }, + { + "appid": 1788970, + "normalized_name": "thanksgiving day griddlers" + }, + { + "appid": 1788980, + "normalized_name": "solitaire ted and pet" + }, + { + "appid": 1789030, + "normalized_name": "maid cafe on electric street" + }, + { + "appid": 1789050, + "normalized_name": "fuchian chronicles" + }, + { + "appid": 1789060, + "normalized_name": "adult puzzles fantasy ladies" + }, + { + "appid": 1789070, + "normalized_name": "rove the wanderer's tale" + }, + { + "appid": 1789080, + "normalized_name": "apeirophilia" + }, + { + "appid": 1789090, + "normalized_name": "hello goodboy" + }, + { + "appid": 1789100, + "normalized_name": "roman wars deck building game" + }, + { + "appid": 1789110, + "normalized_name": "gamma nocturne 1" + }, + { + "appid": 1789130, + "normalized_name": "the monster pimp" + }, + { + "appid": 1789170, + "normalized_name": "socialize 2023" + }, + { + "appid": 1789180, + "normalized_name": "zoo seeker" + }, + { + "appid": 1789210, + "normalized_name": "laypo simulator" + }, + { + "appid": 1789220, + "normalized_name": "horror haze" + }, + { + "appid": 1789270, + "normalized_name": "sniper game" + }, + { + "appid": 1789280, + "normalized_name": "dwarven towers" + }, + { + "appid": 1789300, + "normalized_name": "white flower" + }, + { + "appid": 1789310, + "normalized_name": "monsters loot swag" + }, + { + "appid": 1789340, + "normalized_name": "evil's den forsaken dungeon" + }, + { + "appid": 1789360, + "normalized_name": "void grimm" + }, + { + "appid": 1789370, + "normalized_name": "girl genius adventures in castle heterodyne" + }, + { + "appid": 1789380, + "normalized_name": "the ball flow first approach" + }, + { + "appid": 1789440, + "normalized_name": "ani leaving sirius" + }, + { + "appid": 1789460, + "normalized_name": "alone" + }, + { + "appid": 1789470, + "normalized_name": "monster girl's labyrinth" + }, + { + "appid": 1789480, + "normalized_name": "marauders" + }, + { + "appid": 1789490, + "normalized_name": "love ghostie" + }, + { + "appid": 1789500, + "normalized_name": "boris the sloth" + }, + { + "appid": 1789560, + "normalized_name": "redrawn the painted tower collector's" + }, + { + "appid": 1789600, + "normalized_name": "devil on your shoulder" + }, + { + "appid": 1789620, + "normalized_name": "brimstone manor" + }, + { + "appid": 1789650, + "normalized_name": "neko mimi sweet housemates vol. 1" + }, + { + "appid": 1789660, + "normalized_name": "the story of archer" + }, + { + "appid": 1789670, + "normalized_name": "me and my eldritch parasite" + }, + { + "appid": 1789680, + "normalized_name": "artemis" + }, + { + "appid": 1790210, + "normalized_name": "mission delta" + }, + { + "appid": 1790250, + "normalized_name": "moon dancer" + }, + { + "appid": 1790310, + "normalized_name": "romance of the three kingdoms hadou" + }, + { + "appid": 1790330, + "normalized_name": "the spanish privateer" + }, + { + "appid": 1790340, + "normalized_name": "空気読み。オンライン" + }, + { + "appid": 1790350, + "normalized_name": "a rat's life the cat conspiracy" + }, + { + "appid": 1790360, + "normalized_name": "heist kitty multiplayer cat simulator game" + }, + { + "appid": 1790370, + "normalized_name": "rogue ai simulator" + }, + { + "appid": 1790380, + "normalized_name": "eldritch lands the witch queen's eternal war" + }, + { + "appid": 1790400, + "normalized_name": "slumber" + }, + { + "appid": 1790420, + "normalized_name": "mystery coin" + }, + { + "appid": 1790470, + "normalized_name": "halloween stories the neglected dead collector's" + }, + { + "appid": 1790490, + "normalized_name": "regular factory escape room" + }, + { + "appid": 1790550, + "normalized_name": "lady hunt" + }, + { + "appid": 1790560, + "normalized_name": "chronicles of deeps" + }, + { + "appid": 1790580, + "normalized_name": "castle mascot" + }, + { + "appid": 1790600, + "normalized_name": "dragon ball sparking! zero" + }, + { + "appid": 1790630, + "normalized_name": "astral masters" + }, + { + "appid": 1790640, + "normalized_name": "thumbeat button basher" + }, + { + "appid": 1790690, + "normalized_name": "keep light" + }, + { + "appid": 1790700, + "normalized_name": "alien worm" + }, + { + "appid": 1790710, + "normalized_name": "monster fighter" + }, + { + "appid": 1790740, + "normalized_name": "reflex" + }, + { + "appid": 1790760, + "normalized_name": "after the first station" + }, + { + "appid": 1790770, + "normalized_name": "anica" + }, + { + "appid": 1790800, + "normalized_name": "brave doggy quest" + }, + { + "appid": 1790810, + "normalized_name": "sludge fighters" + }, + { + "appid": 1790820, + "normalized_name": "dead end dungeons" + }, + { + "appid": 1790840, + "normalized_name": "karvan" + }, + { + "appid": 1790860, + "normalized_name": "bubble hunt" + }, + { + "appid": 1790870, + "normalized_name": "fantasteroids" + }, + { + "appid": 1790880, + "normalized_name": "memoria" + }, + { + "appid": 1790890, + "normalized_name": "dim egion" + }, + { + "appid": 1790900, + "normalized_name": "twilight array" + }, + { + "appid": 1790930, + "normalized_name": "crisol theater of idols" + }, + { + "appid": 1790940, + "normalized_name": "malicious mages" + }, + { + "appid": 1790960, + "normalized_name": "escape from the village" + }, + { + "appid": 1790990, + "normalized_name": "egg king" + }, + { + "appid": 1791030, + "normalized_name": "motherland" + }, + { + "appid": 1791080, + "normalized_name": "phantom os" + }, + { + "appid": 1791090, + "normalized_name": "timmy the tiger's big adventure" + }, + { + "appid": 1791100, + "normalized_name": "mad massacre" + }, + { + "appid": 1791120, + "normalized_name": "virtual aquarium overlay desktop game" + }, + { + "appid": 1791230, + "normalized_name": "party friends" + }, + { + "appid": 1791300, + "normalized_name": "protect the treasure" + }, + { + "appid": 1791310, + "normalized_name": "hentai elf" + }, + { + "appid": 1791360, + "normalized_name": "no one's earth" + }, + { + "appid": 1791400, + "normalized_name": "poppy toast" + }, + { + "appid": 1791410, + "normalized_name": "the rise of tianling sect" + }, + { + "appid": 1791430, + "normalized_name": "vortle" + }, + { + "appid": 1791460, + "normalized_name": "cinemoji halloween" + }, + { + "appid": 1791480, + "normalized_name": "melodyverse" + }, + { + "appid": 1791510, + "normalized_name": "paranormal organization magic academy" + }, + { + "appid": 1791580, + "normalized_name": "the lilliput workshop" + }, + { + "appid": 1791590, + "normalized_name": "sunset hills" + }, + { + "appid": 1791610, + "normalized_name": "touhou mystery reel" + }, + { + "appid": 1791630, + "normalized_name": "star zeal 4x" + }, + { + "appid": 1791650, + "normalized_name": "深渊公主 release the bride" + }, + { + "appid": 1791660, + "normalized_name": "dollhouse behind the broken mirror" + }, + { + "appid": 1791680, + "normalized_name": "karen sees" + }, + { + "appid": 1791700, + "normalized_name": "kingdoms conquer / 攻城天下" + }, + { + "appid": 1791710, + "normalized_name": "spacefolk city" + }, + { + "appid": 1791750, + "normalized_name": "eternal hearts curse of the endless" + }, + { + "appid": 1791790, + "normalized_name": "fire and steel" + }, + { + "appid": 1791820, + "normalized_name": "zeitgeist" + }, + { + "appid": 1791850, + "normalized_name": "kotiro" + }, + { + "appid": 1791860, + "normalized_name": "i can't find me" + }, + { + "appid": 1791870, + "normalized_name": "spooky typing the ghost plague" + }, + { + "appid": 1791880, + "normalized_name": "行尸走肉" + }, + { + "appid": 1791890, + "normalized_name": "from paris with love 2 passion with view" + }, + { + "appid": 1791900, + "normalized_name": "good morning a.i." + }, + { + "appid": 1791910, + "normalized_name": "silent rain" + }, + { + "appid": 1792000, + "normalized_name": "battle bees royale" + }, + { + "appid": 1792010, + "normalized_name": "the timeless child prologue" + }, + { + "appid": 1792020, + "normalized_name": "hop hop delivery!" + }, + { + "appid": 1792060, + "normalized_name": "steel ball race" + }, + { + "appid": 1792070, + "normalized_name": "the faded chapter 1 the perish forest demo" + }, + { + "appid": 1792100, + "normalized_name": "motel simulator" + }, + { + "appid": 1792130, + "normalized_name": "toybox titans" + }, + { + "appid": 1792150, + "normalized_name": "ozone wipeout" + }, + { + "appid": 1792160, + "normalized_name": "spherocious" + }, + { + "appid": 1792170, + "normalized_name": "molecoole" + }, + { + "appid": 1792200, + "normalized_name": "underworld dreams the false king" + }, + { + "appid": 1792210, + "normalized_name": "horror of minos" + }, + { + "appid": 1792230, + "normalized_name": "dreamer puzzle" + }, + { + "appid": 1792250, + "normalized_name": "serious sam siberian mayhem" + }, + { + "appid": 1792270, + "normalized_name": "sky caravan" + }, + { + "appid": 1792280, + "normalized_name": "super ick" + }, + { + "appid": 1792290, + "normalized_name": "back alley inn" + }, + { + "appid": 1792350, + "normalized_name": "gun shop 3" + }, + { + "appid": 1792360, + "normalized_name": "last souls" + }, + { + "appid": 1792380, + "normalized_name": "memory lost pairs" + }, + { + "appid": 1792390, + "normalized_name": "life after end" + }, + { + "appid": 1792430, + "normalized_name": "roguevirus" + }, + { + "appid": 1792460, + "normalized_name": "we kill monsters" + }, + { + "appid": 1792500, + "normalized_name": "boring movies" + }, + { + "appid": 1792520, + "normalized_name": "rock star manager" + }, + { + "appid": 1792530, + "normalized_name": "the fall of the cross" + }, + { + "appid": 1792600, + "normalized_name": "dusk diver 2" + }, + { + "appid": 1792610, + "normalized_name": "crow story" + }, + { + "appid": 1792650, + "normalized_name": "spookykillers chapter 1" + }, + { + "appid": 1792660, + "normalized_name": "runaway animals" + }, + { + "appid": 1792700, + "normalized_name": "the hardest game in the universe 2" + }, + { + "appid": 1792730, + "normalized_name": "imbalance" + }, + { + "appid": 1792770, + "normalized_name": "device 0101" + }, + { + "appid": 1792780, + "normalized_name": "spirit vendor" + }, + { + "appid": 1792790, + "normalized_name": "dead way" + }, + { + "appid": 1792810, + "normalized_name": "acid trip" + }, + { + "appid": 1792820, + "normalized_name": "刀剑封魔录" + }, + { + "appid": 1792850, + "normalized_name": "nuke land" + }, + { + "appid": 1792860, + "normalized_name": "sumy shelltris iceblocks 2" + }, + { + "appid": 1792890, + "normalized_name": "dreamy planet" + }, + { + "appid": 1792920, + "normalized_name": "devorian left behind" + }, + { + "appid": 1793000, + "normalized_name": "unfair souls darkest grind" + }, + { + "appid": 1793020, + "normalized_name": "celerity" + }, + { + "appid": 1793030, + "normalized_name": "romancing saga minstrel song" + }, + { + "appid": 1793040, + "normalized_name": "gravv between two worlds" + }, + { + "appid": 1793060, + "normalized_name": "planetdrop a tiny space adventure" + }, + { + "appid": 1793070, + "normalized_name": "aery vr little bird adventure" + }, + { + "appid": 1793090, + "normalized_name": "blockbuster inc." + }, + { + "appid": 1793110, + "normalized_name": "hardcore the game" + }, + { + "appid": 1793120, + "normalized_name": "prototype blocks" + }, + { + "appid": 1793150, + "normalized_name": "doomer" + }, + { + "appid": 1793170, + "normalized_name": "racine" + }, + { + "appid": 1793190, + "normalized_name": "encore illusions" + }, + { + "appid": 1793200, + "normalized_name": "fear of the darkness" + }, + { + "appid": 1793210, + "normalized_name": "daydream mosaics" + }, + { + "appid": 1793220, + "normalized_name": "airship killer" + }, + { + "appid": 1793240, + "normalized_name": "destroy the cubes 2" + }, + { + "appid": 1793250, + "normalized_name": "take me to the dungeon!!" + }, + { + "appid": 1793260, + "normalized_name": "delivery inc" + }, + { + "appid": 1793300, + "normalized_name": "かつて私たちは地獄のまっただ中でした。" + }, + { + "appid": 1793330, + "normalized_name": "brew" + }, + { + "appid": 1793340, + "normalized_name": "under the warehouse" + }, + { + "appid": 1793350, + "normalized_name": "blue fire void maker" + }, + { + "appid": 1793360, + "normalized_name": "expresso espresso" + }, + { + "appid": 1793370, + "normalized_name": "exquisite ghorpse story" + }, + { + "appid": 1793380, + "normalized_name": "roll the cat" + }, + { + "appid": 1793400, + "normalized_name": "coolbit" + }, + { + "appid": 1793420, + "normalized_name": "hovercars 3077 underground racing" + }, + { + "appid": 1793440, + "normalized_name": "shale hill secrets" + }, + { + "appid": 1793530, + "normalized_name": "isotope ash" + }, + { + "appid": 1793560, + "normalized_name": "failure simulator" + }, + { + "appid": 1793580, + "normalized_name": "feelings" + }, + { + "appid": 1793610, + "normalized_name": "relics of cilldrea" + }, + { + "appid": 1793680, + "normalized_name": "the holy chalice" + }, + { + "appid": 1793740, + "normalized_name": "wildlotus荒原幻想" + }, + { + "appid": 1793780, + "normalized_name": "poly memory furries 2" + }, + { + "appid": 1793800, + "normalized_name": "lillian night exclusive contract of succubus" + }, + { + "appid": 1793810, + "normalized_name": "undead pixel monks" + }, + { + "appid": 1793840, + "normalized_name": "gamer girls cyberpunk 2069" + }, + { + "appid": 1793890, + "normalized_name": "plylbl" + }, + { + "appid": 1793900, + "normalized_name": "spooky mahjong" + }, + { + "appid": 1793910, + "normalized_name": "drone crash course" + }, + { + "appid": 1793920, + "normalized_name": "clockventure" + }, + { + "appid": 1793960, + "normalized_name": "space rocks blaster" + }, + { + "appid": 1793970, + "normalized_name": "village defense" + }, + { + "appid": 1793990, + "normalized_name": "inferno arena" + }, + { + "appid": 1794000, + "normalized_name": "remnants of r'lyeh" + }, + { + "appid": 1794020, + "normalized_name": "death slayer v" + }, + { + "appid": 1794030, + "normalized_name": "from lex to rex" + }, + { + "appid": 1794120, + "normalized_name": "little stars" + }, + { + "appid": 1794130, + "normalized_name": "the sentinel" + }, + { + "appid": 1794160, + "normalized_name": "blue barbarian man" + }, + { + "appid": 1794170, + "normalized_name": "waifu trainer" + }, + { + "appid": 1794190, + "normalized_name": "faded memories video game" + }, + { + "appid": 1794210, + "normalized_name": "university stories" + }, + { + "appid": 1794240, + "normalized_name": "sysadmin odyssey back to the office" + }, + { + "appid": 1794250, + "normalized_name": "after dark vr" + }, + { + "appid": 1794270, + "normalized_name": "homeless" + }, + { + "appid": 1794300, + "normalized_name": "blue wish desire" + }, + { + "appid": 1794320, + "normalized_name": "saiin rhythm" + }, + { + "appid": 1794330, + "normalized_name": "kawaii neko girls 2" + }, + { + "appid": 1794340, + "normalized_name": "chaos magic towers and wizards" + }, + { + "appid": 1794370, + "normalized_name": "philosopher's stone and minerva" + }, + { + "appid": 1794380, + "normalized_name": "jump1000" + }, + { + "appid": 1794390, + "normalized_name": "drug business" + }, + { + "appid": 1794400, + "normalized_name": "plinko panic!" + }, + { + "appid": 1794420, + "normalized_name": "soulless" + }, + { + "appid": 1794430, + "normalized_name": "vlad voievod dracula. episode 1 manhunt" + }, + { + "appid": 1794440, + "normalized_name": "dig" + }, + { + "appid": 1794450, + "normalized_name": "vulva goddess" + }, + { + "appid": 1794470, + "normalized_name": "milfs of sunville season 1" + }, + { + "appid": 1794490, + "normalized_name": "spy rumble" + }, + { + "appid": 1794510, + "normalized_name": "hell boba café" + }, + { + "appid": 1794520, + "normalized_name": "69 mary love" + }, + { + "appid": 1794530, + "normalized_name": "oli" + }, + { + "appid": 1794560, + "normalized_name": "blockremental" + }, + { + "appid": 1794580, + "normalized_name": "enraged" + }, + { + "appid": 1794600, + "normalized_name": "dark tales from méxico prelude. just a dream... with the sack man" + }, + { + "appid": 1794620, + "normalized_name": "park life circuit of happiness" + }, + { + "appid": 1794640, + "normalized_name": "kiss/off" + }, + { + "appid": 1794670, + "normalized_name": "limited rescue" + }, + { + "appid": 1794680, + "normalized_name": "vampire survivors" + }, + { + "appid": 1794690, + "normalized_name": "nihongo heroes" + }, + { + "appid": 1794700, + "normalized_name": "f*ck this game" + }, + { + "appid": 1794710, + "normalized_name": "infinite progression" + }, + { + "appid": 1794730, + "normalized_name": "the sprite trials" + }, + { + "appid": 1794740, + "normalized_name": "fears of glasses o o" + }, + { + "appid": 1794750, + "normalized_name": "stay with me! alien abduction story" + }, + { + "appid": 1794760, + "normalized_name": "memetric final lifeforms" + }, + { + "appid": 1794780, + "normalized_name": "sinisistar lite version" + }, + { + "appid": 1794800, + "normalized_name": "魂之乡" + }, + { + "appid": 1794830, + "normalized_name": "macabre" + }, + { + "appid": 1794840, + "normalized_name": "perceptio" + }, + { + "appid": 1794860, + "normalized_name": "zombie crush vr" + }, + { + "appid": 1794880, + "normalized_name": "ys vs. trails in the sky alternative saga" + }, + { + "appid": 1794920, + "normalized_name": "pool adventure" + }, + { + "appid": 1794930, + "normalized_name": "蛋 腾" + }, + { + "appid": 1794950, + "normalized_name": "lost bubbles sweet mates" + }, + { + "appid": 1794960, + "normalized_name": "sonic origins" + }, + { + "appid": 1795010, + "normalized_name": "funtasia" + }, + { + "appid": 1795030, + "normalized_name": "undefeated samurai" + }, + { + "appid": 1795070, + "normalized_name": "escape logan estate" + }, + { + "appid": 1795080, + "normalized_name": "fantasy sliding puzzle 4" + }, + { + "appid": 1795090, + "normalized_name": "monastery builder" + }, + { + "appid": 1795100, + "normalized_name": "iron evil" + }, + { + "appid": 1795110, + "normalized_name": "classic card games collection" + }, + { + "appid": 1795150, + "normalized_name": "opportunity" + }, + { + "appid": 1795170, + "normalized_name": "超将棋" + }, + { + "appid": 1795180, + "normalized_name": "ice station z" + }, + { + "appid": 1795190, + "normalized_name": "speedball" + }, + { + "appid": 1795260, + "normalized_name": "home renovator" + }, + { + "appid": 1795310, + "normalized_name": "magic sexyland" + }, + { + "appid": 1795340, + "normalized_name": "drynk board and drinking game" + }, + { + "appid": 1795370, + "normalized_name": "uzo" + }, + { + "appid": 1795390, + "normalized_name": "carnage cross" + }, + { + "appid": 1795410, + "normalized_name": "jentrix" + }, + { + "appid": 1795420, + "normalized_name": "nanny" + }, + { + "appid": 1795430, + "normalized_name": "sakura succubus 5" + }, + { + "appid": 1795440, + "normalized_name": "cosmic invasion" + }, + { + "appid": 1795470, + "normalized_name": "flooded" + }, + { + "appid": 1795510, + "normalized_name": "rise of rebellion~地罰上らば竜の降る~" + }, + { + "appid": 1795530, + "normalized_name": "catacombs of the yokai" + }, + { + "appid": 1795540, + "normalized_name": "mudgate" + }, + { + "appid": 1795550, + "normalized_name": "cubstacle" + }, + { + "appid": 1795560, + "normalized_name": "welcome home 2" + }, + { + "appid": 1795570, + "normalized_name": "aground zero" + }, + { + "appid": 1795580, + "normalized_name": "superheroes academy" + }, + { + "appid": 1795640, + "normalized_name": "solar cage" + }, + { + "appid": 1795670, + "normalized_name": "diner together" + }, + { + "appid": 1795750, + "normalized_name": "conquest" + }, + { + "appid": 1795760, + "normalized_name": "void heart" + }, + { + "appid": 1795770, + "normalized_name": "pretty girls rivers (shisen sho)" + }, + { + "appid": 1795780, + "normalized_name": "trance" + }, + { + "appid": 1795790, + "normalized_name": "grieve" + }, + { + "appid": 1795820, + "normalized_name": "octoraid vr" + }, + { + "appid": 1795830, + "normalized_name": "2021" + }, + { + "appid": 1795880, + "normalized_name": "endless battlefield" + }, + { + "appid": 1795960, + "normalized_name": "twins edge back and forth" + }, + { + "appid": 1795970, + "normalized_name": "icing" + }, + { + "appid": 1795980, + "normalized_name": "reborn tribe" + }, + { + "appid": 1796040, + "normalized_name": "speedy spears" + }, + { + "appid": 1796060, + "normalized_name": "温泉旅館のパイズリ怪異" + }, + { + "appid": 1796070, + "normalized_name": "тридцать вечных дней" + }, + { + "appid": 1796080, + "normalized_name": "hero king quest peacemaker prologue" + }, + { + "appid": 1796100, + "normalized_name": "precursors armored angels" + }, + { + "appid": 1796110, + "normalized_name": "alcheverse shadow from gladview" + }, + { + "appid": 1796130, + "normalized_name": "scare project of fear" + }, + { + "appid": 1796180, + "normalized_name": "湖心亭奇談集 peculiar tales of mid lake pavilion" + }, + { + "appid": 1796190, + "normalized_name": "darkness inside" + }, + { + "appid": 1796200, + "normalized_name": "who's who?" + }, + { + "appid": 1796210, + "normalized_name": "roads of rome portals collector's" + }, + { + "appid": 1796220, + "normalized_name": "laika aged through blood" + }, + { + "appid": 1796270, + "normalized_name": "circus pocus" + }, + { + "appid": 1796280, + "normalized_name": "i witness" + }, + { + "appid": 1796310, + "normalized_name": "pamali the vengeful mother" + }, + { + "appid": 1796340, + "normalized_name": "gg party" + }, + { + "appid": 1796350, + "normalized_name": "r.e.a.c.t" + }, + { + "appid": 1796410, + "normalized_name": "the touryst" + }, + { + "appid": 1796440, + "normalized_name": "elimination games" + }, + { + "appid": 1796450, + "normalized_name": "momo's mansion" + }, + { + "appid": 1796470, + "normalized_name": "haste" + }, + { + "appid": 1796500, + "normalized_name": "twinland" + }, + { + "appid": 1796510, + "normalized_name": "nekomimi nikki" + }, + { + "appid": 1796550, + "normalized_name": "lawnarchy" + }, + { + "appid": 1796570, + "normalized_name": "jump movement" + }, + { + "appid": 1796580, + "normalized_name": "sorry we're closed" + }, + { + "appid": 1796590, + "normalized_name": "adult puzzles pole dancer" + }, + { + "appid": 1796610, + "normalized_name": "winding road" + }, + { + "appid": 1796630, + "normalized_name": "scatch the painter cat" + }, + { + "appid": 1796640, + "normalized_name": "homunculus hotel" + }, + { + "appid": 1796660, + "normalized_name": "troubled passage" + }, + { + "appid": 1796720, + "normalized_name": "industrial annihilation" + }, + { + "appid": 1796750, + "normalized_name": "zovid 19 remake" + }, + { + "appid": 1796790, + "normalized_name": "chef rpg" + }, + { + "appid": 1796840, + "normalized_name": "underground escape 地底逃生" + }, + { + "appid": 1796870, + "normalized_name": "shinobi non grata" + }, + { + "appid": 1796890, + "normalized_name": "oddware" + }, + { + "appid": 1796900, + "normalized_name": "航天计划" + }, + { + "appid": 1796910, + "normalized_name": "stealing a monster girl harem" + }, + { + "appid": 1796920, + "normalized_name": "sword of elpisia" + }, + { + "appid": 1796930, + "normalized_name": "ambition record" + }, + { + "appid": 1796950, + "normalized_name": "戦国の木こり" + }, + { + "appid": 1796970, + "normalized_name": "constelleum" + }, + { + "appid": 1797040, + "normalized_name": "dungeon explorer" + }, + { + "appid": 1797060, + "normalized_name": "bloody hallowfest" + }, + { + "appid": 1797130, + "normalized_name": "plunder scourge of the sea" + }, + { + "appid": 1797140, + "normalized_name": "ufotofu hex" + }, + { + "appid": 1797180, + "normalized_name": "hypnotix" + }, + { + "appid": 1797250, + "normalized_name": "block collide" + }, + { + "appid": 1797260, + "normalized_name": "chaos uproar" + }, + { + "appid": 1797270, + "normalized_name": "ball game" + }, + { + "appid": 1797300, + "normalized_name": "void's calling ep. 2" + }, + { + "appid": 1797370, + "normalized_name": "timberquest" + }, + { + "appid": 1797380, + "normalized_name": "7 days of rose" + }, + { + "appid": 1797390, + "normalized_name": "vicarious" + }, + { + "appid": 1797400, + "normalized_name": "guidance" + }, + { + "appid": 1797410, + "normalized_name": "doge dimensions" + }, + { + "appid": 1797440, + "normalized_name": "cradle of souls" + }, + { + "appid": 1797450, + "normalized_name": "fps arena online" + }, + { + "appid": 1797480, + "normalized_name": "hailing from the abyss" + }, + { + "appid": 1797490, + "normalized_name": "showbiz tycoon" + }, + { + "appid": 1797500, + "normalized_name": "planetary exploration company" + }, + { + "appid": 1797510, + "normalized_name": "tower of the sage" + }, + { + "appid": 1797550, + "normalized_name": "rush! red horizon" + }, + { + "appid": 1797560, + "normalized_name": "if it’s for my client i’d even schedule a demon lord" + }, + { + "appid": 1797570, + "normalized_name": "quest for the pinnacle" + }, + { + "appid": 1797580, + "normalized_name": "square shooter" + }, + { + "appid": 1797590, + "normalized_name": "last space guardian" + }, + { + "appid": 1797610, + "normalized_name": "barro 22" + }, + { + "appid": 1797630, + "normalized_name": "dance of cards" + }, + { + "appid": 1797680, + "normalized_name": "wee tanks!" + }, + { + "appid": 1797710, + "normalized_name": "temple of endless night" + }, + { + "appid": 1797740, + "normalized_name": "farming sweeper" + }, + { + "appid": 1797750, + "normalized_name": "haunting on howard hill" + }, + { + "appid": 1797790, + "normalized_name": "neko waifu" + }, + { + "appid": 1797820, + "normalized_name": "the overthrow" + }, + { + "appid": 1797840, + "normalized_name": "cyberpunk fighting" + }, + { + "appid": 1797850, + "normalized_name": "goodlands" + }, + { + "appid": 1797880, + "normalized_name": "lost light" + }, + { + "appid": 1797930, + "normalized_name": "para eyes" + }, + { + "appid": 1797940, + "normalized_name": "halloween chronicles behind the door collector's" + }, + { + "appid": 1798010, + "normalized_name": "mega man battle network legacy collection vol. 1" + }, + { + "appid": 1798020, + "normalized_name": "mega man battle network legacy collection vol. 2" + }, + { + "appid": 1798110, + "normalized_name": "drug lord simulator" + }, + { + "appid": 1798130, + "normalized_name": "retox" + }, + { + "appid": 1798150, + "normalized_name": "burning faith" + }, + { + "appid": 1798160, + "normalized_name": "gaslamp cases 2" + }, + { + "appid": 1798170, + "normalized_name": "tether" + }, + { + "appid": 1798180, + "normalized_name": "retro golden age operation alexandra" + }, + { + "appid": 1798210, + "normalized_name": "live adventure" + }, + { + "appid": 1798220, + "normalized_name": "adult puzzles hentai halloween" + }, + { + "appid": 1798230, + "normalized_name": "atmosfar" + }, + { + "appid": 1798240, + "normalized_name": "puzzle mino" + }, + { + "appid": 1798270, + "normalized_name": "where is earth?" + }, + { + "appid": 1798300, + "normalized_name": "1940" + }, + { + "appid": 1798320, + "normalized_name": "serious breakdown" + }, + { + "appid": 1798340, + "normalized_name": "taqoban" + }, + { + "appid": 1798350, + "normalized_name": "panda punch" + }, + { + "appid": 1798410, + "normalized_name": "kill the monster z" + }, + { + "appid": 1798460, + "normalized_name": "nanomachina" + }, + { + "appid": 1798470, + "normalized_name": "toy kingdom 3" + }, + { + "appid": 1798480, + "normalized_name": "sex clicker" + }, + { + "appid": 1798520, + "normalized_name": "froggerty arcade 2" + }, + { + "appid": 1798540, + "normalized_name": "dino cub" + }, + { + "appid": 1798570, + "normalized_name": "sleepless" + }, + { + "appid": 1798600, + "normalized_name": "trigo" + }, + { + "appid": 1798620, + "normalized_name": "fall in the rift" + }, + { + "appid": 1798640, + "normalized_name": "melodier" + }, + { + "appid": 1798670, + "normalized_name": "horoscopicus" + }, + { + "appid": 1798690, + "normalized_name": "blackjack avenue" + }, + { + "appid": 1798720, + "normalized_name": "nora the wannabe alchemist" + }, + { + "appid": 1798740, + "normalized_name": "ten ten rooms ten seconds" + }, + { + "appid": 1798750, + "normalized_name": "十三月のふたり姫/the 13th month" + }, + { + "appid": 1798760, + "normalized_name": "wind of life" + }, + { + "appid": 1798770, + "normalized_name": "blasting courier" + }, + { + "appid": 1798780, + "normalized_name": "dimension tripper neptune top nep" + }, + { + "appid": 1798810, + "normalized_name": "chefy chef" + }, + { + "appid": 1798820, + "normalized_name": "robolingo" + }, + { + "appid": 1798870, + "normalized_name": "the concentration of lust" + }, + { + "appid": 1798880, + "normalized_name": "corridors" + }, + { + "appid": 1798910, + "normalized_name": "peril by mde" + }, + { + "appid": 1798950, + "normalized_name": "mojito the cat" + }, + { + "appid": 1798970, + "normalized_name": "photoq" + }, + { + "appid": 1798980, + "normalized_name": "pulse cage (the full game) contains 4 games in one" + }, + { + "appid": 1799000, + "normalized_name": "memory grove" + }, + { + "appid": 1799020, + "normalized_name": "six faces | overpower" + }, + { + "appid": 1799060, + "normalized_name": "control headlights!" + }, + { + "appid": 1799080, + "normalized_name": "疑義照会ウォーズ" + }, + { + "appid": 1799110, + "normalized_name": "jumper" + }, + { + "appid": 1799140, + "normalized_name": "侦探万事屋 庄园疑案" + }, + { + "appid": 1799160, + "normalized_name": "math+sticks coffee break club" + }, + { + "appid": 1799180, + "normalized_name": "winning love by daylight [ep 1+2]" + }, + { + "appid": 1799190, + "normalized_name": "120 yen stories" + }, + { + "appid": 1799220, + "normalized_name": "malice" + }, + { + "appid": 1799260, + "normalized_name": "there is no stairs" + }, + { + "appid": 1799280, + "normalized_name": "pabg player anime battlegrounds" + }, + { + "appid": 1799290, + "normalized_name": "ball boys" + }, + { + "appid": 1799370, + "normalized_name": "flash party" + }, + { + "appid": 1799380, + "normalized_name": "maglam lord" + }, + { + "appid": 1799400, + "normalized_name": "islands might fly" + }, + { + "appid": 1799490, + "normalized_name": "moonlight frog inn" + }, + { + "appid": 1799520, + "normalized_name": "the legend of pomodoro" + }, + { + "appid": 1799530, + "normalized_name": "smelogs playground" + }, + { + "appid": 1799560, + "normalized_name": "larry the unlucky part 3" + }, + { + "appid": 1799570, + "normalized_name": "maverta" + }, + { + "appid": 1799580, + "normalized_name": "date of death origin" + }, + { + "appid": 1799590, + "normalized_name": "red colony 3 uncensored" + }, + { + "appid": 1799620, + "normalized_name": "the little cuttle goes to battle" + }, + { + "appid": 1799650, + "normalized_name": "bullet bash" + }, + { + "appid": 1799660, + "normalized_name": "アニメ parkour war" + }, + { + "appid": 1799670, + "normalized_name": "the thorn of warldia" + }, + { + "appid": 1799710, + "normalized_name": "tarot theo's quest" + }, + { + "appid": 1799720, + "normalized_name": "tale of six" + }, + { + "appid": 1799730, + "normalized_name": "fall for you" + }, + { + "appid": 1799820, + "normalized_name": "daydream mosaics 2 juliette's tale" + }, + { + "appid": 1799840, + "normalized_name": "queen's domain" + }, + { + "appid": 1799850, + "normalized_name": "transformation tycoon" + }, + { + "appid": 1799890, + "normalized_name": "brightness" + }, + { + "appid": 1799900, + "normalized_name": "kamyla and the scarlet mage" + }, + { + "appid": 1799930, + "normalized_name": "redout 2" + }, + { + "appid": 1799940, + "normalized_name": "the hauntings surveillance" + }, + { + "appid": 1799950, + "normalized_name": "kolhii championsau" + }, + { + "appid": 1799990, + "normalized_name": "giblasnia" + }, + { + "appid": 1800000, + "normalized_name": "unreal mashup" + }, + { + "appid": 1800010, + "normalized_name": "ruin or victory" + }, + { + "appid": 1800030, + "normalized_name": "normal shmup" + }, + { + "appid": 1800070, + "normalized_name": "accelerating hotkeys" + }, + { + "appid": 1800080, + "normalized_name": "furries & scalies & scarecrows oh my!" + }, + { + "appid": 1800120, + "normalized_name": "spell sweeper" + }, + { + "appid": 1800230, + "normalized_name": "alternate universe" + }, + { + "appid": 1800250, + "normalized_name": "void soul awakening" + }, + { + "appid": 1800290, + "normalized_name": "bolt action" + }, + { + "appid": 1800300, + "normalized_name": "aussie clowns at war" + }, + { + "appid": 1800340, + "normalized_name": "cursor0x0" + }, + { + "appid": 1800360, + "normalized_name": "小虎的禮物 tigey's gift" + }, + { + "appid": 1800370, + "normalized_name": "hentai room" + }, + { + "appid": 1800390, + "normalized_name": "astro pig" + }, + { + "appid": 1800430, + "normalized_name": "femdom waifu vr" + }, + { + "appid": 1800440, + "normalized_name": "space storm" + }, + { + "appid": 1800470, + "normalized_name": "moonwakers episode 01" + }, + { + "appid": 1800480, + "normalized_name": "defend from candyland!" + }, + { + "appid": 1800510, + "normalized_name": "asagos" + }, + { + "appid": 1800520, + "normalized_name": "wonky wizard" + }, + { + "appid": 1800560, + "normalized_name": "jagged farm birth of a hero" + }, + { + "appid": 1800570, + "normalized_name": "pet vet 3d animal hospital" + }, + { + "appid": 1800580, + "normalized_name": "pranksterz off your boss" + }, + { + "appid": 1800600, + "normalized_name": "punch it deluxe" + }, + { + "appid": 1800650, + "normalized_name": "galaxy city" + }, + { + "appid": 1800670, + "normalized_name": "dream loop" + }, + { + "appid": 1800730, + "normalized_name": "i maed a gam3 w1th z0mb1es 1n it!!!1" + }, + { + "appid": 1800780, + "normalized_name": "find her in dungeon (3d quest)" + }, + { + "appid": 1800790, + "normalized_name": "father's day" + }, + { + "appid": 1800850, + "normalized_name": "lunatika" + }, + { + "appid": 1800860, + "normalized_name": "the lewd of the cock rings the return of doug fooker" + }, + { + "appid": 1800890, + "normalized_name": "与芙兰朵露一起捉迷藏吧" + }, + { + "appid": 1800910, + "normalized_name": "bot patrol" + }, + { + "appid": 1800920, + "normalized_name": "medusa's heart of stone chapter 01" + }, + { + "appid": 1800940, + "normalized_name": "the enjenir the engineering physics building simulator" + }, + { + "appid": 1800950, + "normalized_name": "hot milf" + }, + { + "appid": 1800970, + "normalized_name": "arcade galaxy" + }, + { + "appid": 1800980, + "normalized_name": "fish story" + }, + { + "appid": 1801010, + "normalized_name": "astrid" + }, + { + "appid": 1801030, + "normalized_name": "something" + }, + { + "appid": 1801050, + "normalized_name": "nefarium" + }, + { + "appid": 1801060, + "normalized_name": "helix" + }, + { + "appid": 1801070, + "normalized_name": "ludicrous uprising" + }, + { + "appid": 1801090, + "normalized_name": "maze workout urban lost solo car racer" + }, + { + "appid": 1801110, + "normalized_name": "違う冬のぼくら" + }, + { + "appid": 1801140, + "normalized_name": "guns undarkness" + }, + { + "appid": 1801150, + "normalized_name": "the night you'd wish to forget" + }, + { + "appid": 1801190, + "normalized_name": "the shattered elements arena" + }, + { + "appid": 1801200, + "normalized_name": "plunger boyz" + }, + { + "appid": 1801220, + "normalized_name": "god damn the garden" + }, + { + "appid": 1801230, + "normalized_name": "cemetery mary" + }, + { + "appid": 1801270, + "normalized_name": "offworlders" + }, + { + "appid": 1801280, + "normalized_name": "scp cb multiplayer dedicated server" + }, + { + "appid": 1801360, + "normalized_name": "blissful acres" + }, + { + "appid": 1801370, + "normalized_name": "being ball" + }, + { + "appid": 1801400, + "normalized_name": "fallen guns" + }, + { + "appid": 1801410, + "normalized_name": "deadnaut signal lost" + }, + { + "appid": 1801430, + "normalized_name": "home dogs the world heroes" + }, + { + "appid": 1801440, + "normalized_name": "royal commando" + }, + { + "appid": 1801450, + "normalized_name": "mysterious night (the first night)" + }, + { + "appid": 1801460, + "normalized_name": "best vrcade 9000" + }, + { + "appid": 1801470, + "normalized_name": "devil's dungeon" + }, + { + "appid": 1801490, + "normalized_name": "霸主 没人比我更懂胜利" + }, + { + "appid": 1801520, + "normalized_name": "zombieville usa 3d" + }, + { + "appid": 1801560, + "normalized_name": "electronic universe" + }, + { + "appid": 1801620, + "normalized_name": "being left the f*** alone simulator" + }, + { + "appid": 1801630, + "normalized_name": "highblast" + }, + { + "appid": 1801640, + "normalized_name": "精神病大王花 flowering abyss" + }, + { + "appid": 1801650, + "normalized_name": "lost find" + }, + { + "appid": 1801660, + "normalized_name": "未来战士" + }, + { + "appid": 1801670, + "normalized_name": "gem rifts" + }, + { + "appid": 1801700, + "normalized_name": "tipu" + }, + { + "appid": 1801850, + "normalized_name": "cats war" + }, + { + "appid": 1801860, + "normalized_name": "wolf riot" + }, + { + "appid": 1801920, + "normalized_name": "rorys restaurant winter rush" + }, + { + "appid": 1801940, + "normalized_name": "ziircon" + }, + { + "appid": 1801950, + "normalized_name": "my soldiers" + }, + { + "appid": 1801980, + "normalized_name": "botland chronicles" + }, + { + "appid": 1802070, + "normalized_name": "passin'time" + }, + { + "appid": 1802080, + "normalized_name": "sgs operation hawaii" + }, + { + "appid": 1802090, + "normalized_name": "medieval remembrance" + }, + { + "appid": 1802100, + "normalized_name": "sanity city" + }, + { + "appid": 1802110, + "normalized_name": "take over body" + }, + { + "appid": 1802120, + "normalized_name": "raid on scorpion island" + }, + { + "appid": 1802160, + "normalized_name": "storage hunters" + }, + { + "appid": 1802190, + "normalized_name": "puzzles for clef" + }, + { + "appid": 1802210, + "normalized_name": "mark's life" + }, + { + "appid": 1802240, + "normalized_name": "phantom gear" + }, + { + "appid": 1802270, + "normalized_name": "typeout" + }, + { + "appid": 1802330, + "normalized_name": "invitation to fear" + }, + { + "appid": 1802340, + "normalized_name": "adult puzzles fantasy ladies 2" + }, + { + "appid": 1802420, + "normalized_name": "deadwater saloon prologue" + }, + { + "appid": 1802430, + "normalized_name": "a maze fox" + }, + { + "appid": 1802460, + "normalized_name": "pregnant" + }, + { + "appid": 1802500, + "normalized_name": "commuter" + }, + { + "appid": 1802520, + "normalized_name": "snow scout" + }, + { + "appid": 1802530, + "normalized_name": "teamchef fussball manager fun" + }, + { + "appid": 1802550, + "normalized_name": "legend of utorepia | ユトレピアの伝説" + }, + { + "appid": 1802560, + "normalized_name": "search all adult" + }, + { + "appid": 1802570, + "normalized_name": "bio bots" + }, + { + "appid": 1802590, + "normalized_name": "penelope's odyssey" + }, + { + "appid": 1802610, + "normalized_name": "the cult of chanseville" + }, + { + "appid": 1802620, + "normalized_name": "consume thy flesh the pumpkin smashing sim" + }, + { + "appid": 1802630, + "normalized_name": "futa battle td" + }, + { + "appid": 1802670, + "normalized_name": "mourn born" + }, + { + "appid": 1802680, + "normalized_name": "bruxa" + }, + { + "appid": 1802690, + "normalized_name": "carrier command" + }, + { + "appid": 1802700, + "normalized_name": "i told you so!" + }, + { + "appid": 1802720, + "normalized_name": "sixtar gate startrail" + }, + { + "appid": 1802810, + "normalized_name": "メーアステイル 小さな国のアイテム屋さん/mearstale our little item shop" + }, + { + "appid": 1802820, + "normalized_name": "escape covid camp" + }, + { + "appid": 1802850, + "normalized_name": "yes my lord" + }, + { + "appid": 1802860, + "normalized_name": "大富翁少女/rich girls" + }, + { + "appid": 1802870, + "normalized_name": "secret pie (adult version)" + }, + { + "appid": 1802880, + "normalized_name": "the devil within satgat" + }, + { + "appid": 1802900, + "normalized_name": "first light" + }, + { + "appid": 1802920, + "normalized_name": "tear of time lost memory" + }, + { + "appid": 1802930, + "normalized_name": "nailed it" + }, + { + "appid": 1802980, + "normalized_name": "yihongyuan" + }, + { + "appid": 1803020, + "normalized_name": "agrilife" + }, + { + "appid": 1803060, + "normalized_name": "the glade" + }, + { + "appid": 1803070, + "normalized_name": "falconet" + }, + { + "appid": 1803090, + "normalized_name": "cryweard" + }, + { + "appid": 1803110, + "normalized_name": "ascendant" + }, + { + "appid": 1803140, + "normalized_name": "deer & boy" + }, + { + "appid": 1803150, + "normalized_name": "void slayer" + }, + { + "appid": 1803160, + "normalized_name": "carrot" + }, + { + "appid": 1803170, + "normalized_name": "four animals" + }, + { + "appid": 1803190, + "normalized_name": "simrail the railway simulator prologue" + }, + { + "appid": 1803210, + "normalized_name": "project umbra" + }, + { + "appid": 1803220, + "normalized_name": "koala kids golf" + }, + { + "appid": 1803230, + "normalized_name": "late for class variety king" + }, + { + "appid": 1803290, + "normalized_name": "lemon vs. teddy" + }, + { + "appid": 1803310, + "normalized_name": "incubus a ghost hunters tale" + }, + { + "appid": 1803330, + "normalized_name": "tiny frightened" + }, + { + "appid": 1803360, + "normalized_name": "ostera the curse of..." + }, + { + "appid": 1803380, + "normalized_name": "pinballadventure" + }, + { + "appid": 1803390, + "normalized_name": "bounty drag racing" + }, + { + "appid": 1803400, + "normalized_name": "beneath oresa" + }, + { + "appid": 1803410, + "normalized_name": "checkmate showdown" + }, + { + "appid": 1803420, + "normalized_name": "they look like people" + }, + { + "appid": 1803440, + "normalized_name": "unnamed arcade engine" + }, + { + "appid": 1803450, + "normalized_name": "zombie fooker starring doug fooker" + }, + { + "appid": 1803460, + "normalized_name": "christmas wonderland 3" + }, + { + "appid": 1803470, + "normalized_name": "world tree" + }, + { + "appid": 1803490, + "normalized_name": "neo spectrum" + }, + { + "appid": 1803500, + "normalized_name": "runeforge" + }, + { + "appid": 1803510, + "normalized_name": "curses of tarot" + }, + { + "appid": 1803530, + "normalized_name": "经典象棋" + }, + { + "appid": 1803550, + "normalized_name": "megafactory titan" + }, + { + "appid": 1803560, + "normalized_name": "through the world" + }, + { + "appid": 1803570, + "normalized_name": "青鳥樂園 blue bird land ep.2 下篇" + }, + { + "appid": 1803580, + "normalized_name": "bard idle" + }, + { + "appid": 1803590, + "normalized_name": "cyclone" + }, + { + "appid": 1803600, + "normalized_name": "gone rogue" + }, + { + "appid": 1803610, + "normalized_name": "sensorium galaxy" + }, + { + "appid": 1803620, + "normalized_name": "the monstrous frontier" + }, + { + "appid": 1803630, + "normalized_name": "she hates unicorns" + }, + { + "appid": 1803640, + "normalized_name": "one way" + }, + { + "appid": 1803690, + "normalized_name": "ping pong pufferfish" + }, + { + "appid": 1803700, + "normalized_name": "castle in the sky clash of sky palace" + }, + { + "appid": 1803720, + "normalized_name": "escape from eternity" + }, + { + "appid": 1803760, + "normalized_name": "windmills" + }, + { + "appid": 1803810, + "normalized_name": "warmonger sins of the naga" + }, + { + "appid": 1803820, + "normalized_name": "thicc the himalayan ice climbing challenge" + }, + { + "appid": 1803840, + "normalized_name": "lucky's tale" + }, + { + "appid": 1803850, + "normalized_name": "lock & key a magical girl mystery" + }, + { + "appid": 1803870, + "normalized_name": "the knight of turn" + }, + { + "appid": 1803920, + "normalized_name": "townofdestruction" + }, + { + "appid": 1803960, + "normalized_name": "demon sword incubus" + }, + { + "appid": 1804000, + "normalized_name": "mergetd" + }, + { + "appid": 1804010, + "normalized_name": "labyrinth of the demon king" + }, + { + "appid": 1804020, + "normalized_name": "hero's party r" + }, + { + "appid": 1804040, + "normalized_name": "hell takes all" + }, + { + "appid": 1804070, + "normalized_name": "asteroids extreme" + }, + { + "appid": 1804130, + "normalized_name": "ghoul castle 3d gold" + }, + { + "appid": 1804170, + "normalized_name": "mimicry" + }, + { + "appid": 1804270, + "normalized_name": "swordship" + }, + { + "appid": 1804290, + "normalized_name": "circo dark story" + }, + { + "appid": 1804320, + "normalized_name": "splash jumper" + }, + { + "appid": 1804340, + "normalized_name": "hentai neko mosaic!" + }, + { + "appid": 1804360, + "normalized_name": "slot idler" + }, + { + "appid": 1804370, + "normalized_name": "airball" + }, + { + "appid": 1804380, + "normalized_name": "clan wars" + }, + { + "appid": 1804390, + "normalized_name": "key" + }, + { + "appid": 1804440, + "normalized_name": "trails of gold privateers" + }, + { + "appid": 1804450, + "normalized_name": "kingdom of maverta" + }, + { + "appid": 1804470, + "normalized_name": "duel corp." + }, + { + "appid": 1804500, + "normalized_name": "z collapse" + }, + { + "appid": 1804520, + "normalized_name": "freedom flight" + }, + { + "appid": 1804530, + "normalized_name": "wewerefriends" + }, + { + "appid": 1804570, + "normalized_name": "red ops arcade" + }, + { + "appid": 1804580, + "normalized_name": "albert and camille's little lille adventure" + }, + { + "appid": 1804590, + "normalized_name": "超越梦境(beyond dreams)" + }, + { + "appid": 1804600, + "normalized_name": "banzai bat" + }, + { + "appid": 1804610, + "normalized_name": "recollection" + }, + { + "appid": 1804620, + "normalized_name": "grim road" + }, + { + "appid": 1804640, + "normalized_name": "autos" + }, + { + "appid": 1804650, + "normalized_name": "coal mining simulator prologue" + }, + { + "appid": 1804710, + "normalized_name": "spartan" + }, + { + "appid": 1804720, + "normalized_name": "gates of troy" + }, + { + "appid": 1804730, + "normalized_name": "deprision" + }, + { + "appid": 1804740, + "normalized_name": "furry hentai jigsaw" + }, + { + "appid": 1804760, + "normalized_name": "search all candy" + }, + { + "appid": 1804780, + "normalized_name": "squids battle arena" + }, + { + "appid": 1804820, + "normalized_name": "guide and throw" + }, + { + "appid": 1804860, + "normalized_name": "ghostkin capers" + }, + { + "appid": 1804870, + "normalized_name": "dungeon masters" + }, + { + "appid": 1804890, + "normalized_name": "turnament" + }, + { + "appid": 1804900, + "normalized_name": "puzzlezon" + }, + { + "appid": 1804950, + "normalized_name": "the saragossa manuscript" + }, + { + "appid": 1804970, + "normalized_name": "crimson waves on the emerald sea" + }, + { + "appid": 1804980, + "normalized_name": "polyfury" + }, + { + "appid": 1804990, + "normalized_name": "tavolga 12" + }, + { + "appid": 1805000, + "normalized_name": "retired men's nude beach volleyball league" + }, + { + "appid": 1805040, + "normalized_name": "implements of hell" + }, + { + "appid": 1805070, + "normalized_name": "another day in paradise" + }, + { + "appid": 1805080, + "normalized_name": "reta tus habilidades" + }, + { + "appid": 1805100, + "normalized_name": "dark city paris collector's" + }, + { + "appid": 1805110, + "normalized_name": "solarpunk" + }, + { + "appid": 1805130, + "normalized_name": "komorebi" + }, + { + "appid": 1805140, + "normalized_name": "araignees" + }, + { + "appid": 1805150, + "normalized_name": "five dreams" + }, + { + "appid": 1805170, + "normalized_name": "evil dreams" + }, + { + "appid": 1805190, + "normalized_name": "galaxity korea vr" + }, + { + "appid": 1805200, + "normalized_name": "shirone the dragon girl" + }, + { + "appid": 1805210, + "normalized_name": "solaris rift" + }, + { + "appid": 1805220, + "normalized_name": "comixxx duality" + }, + { + "appid": 1805230, + "normalized_name": "a distant stabbing" + }, + { + "appid": 1805240, + "normalized_name": "layer section & galactic attack s tribute" + }, + { + "appid": 1805250, + "normalized_name": "bikini tits" + }, + { + "appid": 1805260, + "normalized_name": "mommy goddess of unconditional love ~wow you sure gave it your all out there!~" + }, + { + "appid": 1805270, + "normalized_name": "tittok girls" + }, + { + "appid": 1805310, + "normalized_name": "adventure of leek" + }, + { + "appid": 1805320, + "normalized_name": "romestead" + }, + { + "appid": 1805340, + "normalized_name": "fantasy sliding puzzle 5" + }, + { + "appid": 1805390, + "normalized_name": "follow the black kitten" + }, + { + "appid": 1805400, + "normalized_name": "worldskeeper" + }, + { + "appid": 1805470, + "normalized_name": "shooter engine" + }, + { + "appid": 1805480, + "normalized_name": "like a dragon ishin!" + }, + { + "appid": 1805490, + "normalized_name": "问道仙途2" + }, + { + "appid": 1805500, + "normalized_name": "purge force 2070" + }, + { + "appid": 1805510, + "normalized_name": "barn finders vr the pilot" + }, + { + "appid": 1805520, + "normalized_name": "世纪0:寄生之塔 century 0 parasitic tower" + }, + { + "appid": 1805560, + "normalized_name": "huntress the cursed village" + }, + { + "appid": 1805570, + "normalized_name": "demons" + }, + { + "appid": 1805610, + "normalized_name": "castlepoint" + }, + { + "appid": 1805640, + "normalized_name": "fae populi" + }, + { + "appid": 1805650, + "normalized_name": "my universe doctors & nurses" + }, + { + "appid": 1805670, + "normalized_name": "cursed island" + }, + { + "appid": 1805680, + "normalized_name": "a contusion" + }, + { + "appid": 1805700, + "normalized_name": "space beastz" + }, + { + "appid": 1805720, + "normalized_name": "letters from the moon" + }, + { + "appid": 1805730, + "normalized_name": "19|19" + }, + { + "appid": 1805740, + "normalized_name": "snowstorm of despair" + }, + { + "appid": 1805750, + "normalized_name": "first men´s life" + }, + { + "appid": 1805810, + "normalized_name": "winter dream" + }, + { + "appid": 1805820, + "normalized_name": "moonhaven" + }, + { + "appid": 1805840, + "normalized_name": "konsui fighter" + }, + { + "appid": 1805930, + "normalized_name": "pumpkin eater" + }, + { + "appid": 1805960, + "normalized_name": "prepare for warp unlimited beyond insanji" + }, + { + "appid": 1805970, + "normalized_name": "comixxx strip" + }, + { + "appid": 1805980, + "normalized_name": "comixxx jixxaw" + }, + { + "appid": 1805990, + "normalized_name": "external dimension mainframe" + }, + { + "appid": 1806000, + "normalized_name": "how to bathe your cat drawing" + }, + { + "appid": 1806030, + "normalized_name": "minimal dungeon rpg" + }, + { + "appid": 1806040, + "normalized_name": "snake force" + }, + { + "appid": 1806050, + "normalized_name": "exanimate" + }, + { + "appid": 1806070, + "normalized_name": "畢業生模擬器" + }, + { + "appid": 1806110, + "normalized_name": "girlhub adult puzzle game" + }, + { + "appid": 1806120, + "normalized_name": "serena dark confessions" + }, + { + "appid": 1806130, + "normalized_name": "我就是要红" + }, + { + "appid": 1806190, + "normalized_name": "prince nikolai and the vampires" + }, + { + "appid": 1806200, + "normalized_name": "scientifically accurate dinosaur mating simulator 2021" + }, + { + "appid": 1806210, + "normalized_name": "spellcraft" + }, + { + "appid": 1806290, + "normalized_name": "佛兰德斯的狗 a dog of flanders" + }, + { + "appid": 1806400, + "normalized_name": "alpha shark" + }, + { + "appid": 1806420, + "normalized_name": "do u copy?" + }, + { + "appid": 1806430, + "normalized_name": "injoku byoutou" + }, + { + "appid": 1806440, + "normalized_name": "boomerang woman" + }, + { + "appid": 1806480, + "normalized_name": "ridle" + }, + { + "appid": 1806540, + "normalized_name": "the empress of aeser" + }, + { + "appid": 1806570, + "normalized_name": "othersoul" + }, + { + "appid": 1806580, + "normalized_name": "neon bricks" + }, + { + "appid": 1806610, + "normalized_name": "tep the destroyer td" + }, + { + "appid": 1806630, + "normalized_name": "usagi health club" + }, + { + "appid": 1806640, + "normalized_name": "mushroom hunter" + }, + { + "appid": 1806670, + "normalized_name": "haunted house escape a vr experience" + }, + { + "appid": 1806690, + "normalized_name": "pornocrates vhs" + }, + { + "appid": 1806700, + "normalized_name": "monster girl manager" + }, + { + "appid": 1806830, + "normalized_name": "deborg desolation pre born" + }, + { + "appid": 1806840, + "normalized_name": "100 hidden frogs" + }, + { + "appid": 1806860, + "normalized_name": "new terra" + }, + { + "appid": 1806910, + "normalized_name": "live at strummer's pond" + }, + { + "appid": 1806920, + "normalized_name": "nihmory" + }, + { + "appid": 1806940, + "normalized_name": "slide furry" + }, + { + "appid": 1806960, + "normalized_name": "mythos sudoku" + }, + { + "appid": 1806970, + "normalized_name": "archero" + }, + { + "appid": 1807000, + "normalized_name": "yui tui" + }, + { + "appid": 1807020, + "normalized_name": "chicken nuggets" + }, + { + "appid": 1807080, + "normalized_name": "ghost exile" + }, + { + "appid": 1807090, + "normalized_name": "wantless solace at world’s end" + }, + { + "appid": 1807140, + "normalized_name": "hot milf 2" + }, + { + "appid": 1807150, + "normalized_name": "keyhero" + }, + { + "appid": 1807190, + "normalized_name": "thawed waters" + }, + { + "appid": 1807200, + "normalized_name": "mirror forge" + }, + { + "appid": 1807210, + "normalized_name": "stray souls" + }, + { + "appid": 1807220, + "normalized_name": "welcome to empyreum" + }, + { + "appid": 1807240, + "normalized_name": "casual pixel warrior" + }, + { + "appid": 1807250, + "normalized_name": "scroll of life" + }, + { + "appid": 1807260, + "normalized_name": "魔界堕ちのラズリエル" + }, + { + "appid": 1807300, + "normalized_name": "神将●华容道" + }, + { + "appid": 1807310, + "normalized_name": "wild pussies" + }, + { + "appid": 1807320, + "normalized_name": "bogdanoff vs. wojak simulator" + }, + { + "appid": 1807330, + "normalized_name": "tough love arena" + }, + { + "appid": 1807360, + "normalized_name": "dreadful river" + }, + { + "appid": 1807370, + "normalized_name": "maverta city" + }, + { + "appid": 1807380, + "normalized_name": "animal crusaders" + }, + { + "appid": 1807410, + "normalized_name": "scriptur" + }, + { + "appid": 1807430, + "normalized_name": "witching hour" + }, + { + "appid": 1807450, + "normalized_name": "love with furry 🐺" + }, + { + "appid": 1807460, + "normalized_name": "crown delights deli" + }, + { + "appid": 1807480, + "normalized_name": "vertical shift" + }, + { + "appid": 1807500, + "normalized_name": "invisible places pixel art jigsaw puzzle" + }, + { + "appid": 1807540, + "normalized_name": "cat swap tiles" + }, + { + "appid": 1807560, + "normalized_name": "blade walker" + }, + { + "appid": 1807570, + "normalized_name": "idle fields" + }, + { + "appid": 1807580, + "normalized_name": "streamfest" + }, + { + "appid": 1807590, + "normalized_name": "salvationland" + }, + { + "appid": 1807600, + "normalized_name": "fatal paws" + }, + { + "appid": 1807610, + "normalized_name": "skeleton scramble deluxe" + }, + { + "appid": 1807640, + "normalized_name": "alpha zoo" + }, + { + "appid": 1807660, + "normalized_name": "the collector" + }, + { + "appid": 1807690, + "normalized_name": "roxy raccoon's pinball panic" + }, + { + "appid": 1807700, + "normalized_name": "end of legends" + }, + { + "appid": 1807730, + "normalized_name": "lab bio terror" + }, + { + "appid": 1807740, + "normalized_name": "reach for an angel" + }, + { + "appid": 1807750, + "normalized_name": "封神榜2022" + }, + { + "appid": 1807810, + "normalized_name": "the axis unseen" + }, + { + "appid": 1807920, + "normalized_name": "breakdown" + }, + { + "appid": 1807930, + "normalized_name": "railway islands puzzle" + }, + { + "appid": 1807940, + "normalized_name": "mortals and monsters blood orc" + }, + { + "appid": 1807950, + "normalized_name": "time flipper" + }, + { + "appid": 1807960, + "normalized_name": "修真元界 xiuzhen metaverse" + }, + { + "appid": 1807980, + "normalized_name": "rhentsu" + }, + { + "appid": 1808040, + "normalized_name": "on my own a hot isekai adventure" + }, + { + "appid": 1808060, + "normalized_name": "obama maze" + }, + { + "appid": 1808080, + "normalized_name": "te encontré" + }, + { + "appid": 1808110, + "normalized_name": "zombie maze" + }, + { + "appid": 1808130, + "normalized_name": "mysteries under lake ophelia" + }, + { + "appid": 1808140, + "normalized_name": "space waves" + }, + { + "appid": 1808160, + "normalized_name": "demon spore" + }, + { + "appid": 1808200, + "normalized_name": "find exit" + }, + { + "appid": 1808210, + "normalized_name": "hullbreakers" + }, + { + "appid": 1808230, + "normalized_name": "oppcium" + }, + { + "appid": 1808240, + "normalized_name": "naughty waifu" + }, + { + "appid": 1808250, + "normalized_name": "archery land" + }, + { + "appid": 1808260, + "normalized_name": "cute waifu" + }, + { + "appid": 1808270, + "normalized_name": "palphone sama curse call" + }, + { + "appid": 1808320, + "normalized_name": "lake of creatures" + }, + { + "appid": 1808330, + "normalized_name": "rgby" + }, + { + "appid": 1808350, + "normalized_name": "虚空架构 void frame" + }, + { + "appid": 1808360, + "normalized_name": "mason and strings" + }, + { + "appid": 1808380, + "normalized_name": "land of foot" + }, + { + "appid": 1808400, + "normalized_name": "tag the power of paint" + }, + { + "appid": 1808420, + "normalized_name": "alien abduction experience pc hd" + }, + { + "appid": 1808440, + "normalized_name": "porcelain mask" + }, + { + "appid": 1808460, + "normalized_name": "perfect date" + }, + { + "appid": 1808480, + "normalized_name": "poly puzzle cats" + }, + { + "appid": 1808490, + "normalized_name": "robo maestro" + }, + { + "appid": 1808500, + "normalized_name": "arc raiders" + }, + { + "appid": 1808540, + "normalized_name": "herios" + }, + { + "appid": 1808550, + "normalized_name": "the personal reasons" + }, + { + "appid": 1808570, + "normalized_name": "aurora's journey and the pitiful lackey" + }, + { + "appid": 1808620, + "normalized_name": "dragon evo" + }, + { + "appid": 1808630, + "normalized_name": "neden?" + }, + { + "appid": 1808640, + "normalized_name": "astronimo" + }, + { + "appid": 1808680, + "normalized_name": "snufkin melody of moominvalley" + }, + { + "appid": 1808690, + "normalized_name": "jericho dungeon" + }, + { + "appid": 1808700, + "normalized_name": "dead man´s diary" + }, + { + "appid": 1808730, + "normalized_name": "cellings" + }, + { + "appid": 1808770, + "normalized_name": "free for fall" + }, + { + "appid": 1808780, + "normalized_name": "祖玛少女/zuma girls" + }, + { + "appid": 1808800, + "normalized_name": "duck simulator 2" + }, + { + "appid": 1808810, + "normalized_name": "zombie craft" + }, + { + "appid": 1808820, + "normalized_name": "alien shepherd" + }, + { + "appid": 1808860, + "normalized_name": "pizza man" + }, + { + "appid": 1808870, + "normalized_name": "jaki's wacky adventure" + }, + { + "appid": 1808890, + "normalized_name": "immersion" + }, + { + "appid": 1808900, + "normalized_name": "grand cross renovation" + }, + { + "appid": 1808910, + "normalized_name": "slice of life fantasy" + }, + { + "appid": 1808920, + "normalized_name": "mr.empathy the canceled game." + }, + { + "appid": 1808950, + "normalized_name": "ninja akio" + }, + { + "appid": 1808960, + "normalized_name": "firearms factory" + }, + { + "appid": 1808980, + "normalized_name": "truco" + }, + { + "appid": 1809040, + "normalized_name": "base dune" + }, + { + "appid": 1809090, + "normalized_name": "kraino rebirth" + }, + { + "appid": 1809130, + "normalized_name": "masd" + }, + { + "appid": 1809160, + "normalized_name": "scrapvival" + }, + { + "appid": 1809170, + "normalized_name": "clou roll & heist" + }, + { + "appid": 1809230, + "normalized_name": "maguntsche chapter two" + }, + { + "appid": 1809250, + "normalized_name": "got reincarnated into a world of rpg full of npcs…" + }, + { + "appid": 1809300, + "normalized_name": "fight ascending" + }, + { + "appid": 1809310, + "normalized_name": "侠之信条" + }, + { + "appid": 1809350, + "normalized_name": "bloodlines tales of brotherhood" + }, + { + "appid": 1809370, + "normalized_name": "ancient soccer" + }, + { + "appid": 1809390, + "normalized_name": "rebirth of arcadia" + }, + { + "appid": 1809420, + "normalized_name": "shankaram code reborn" + }, + { + "appid": 1809480, + "normalized_name": "treefender" + }, + { + "appid": 1809500, + "normalized_name": "map of materials" + }, + { + "appid": 1809530, + "normalized_name": "renryuu ascension" + }, + { + "appid": 1809540, + "normalized_name": "nine sols" + }, + { + "appid": 1809560, + "normalized_name": "69 moriko love" + }, + { + "appid": 1809570, + "normalized_name": "the gift" + }, + { + "appid": 1809610, + "normalized_name": "the wanderer" + }, + { + "appid": 1809700, + "normalized_name": "persona 3 portable" + }, + { + "appid": 1809710, + "normalized_name": "adventure rush" + }, + { + "appid": 1809730, + "normalized_name": "adventure of emberclaw" + }, + { + "appid": 1809740, + "normalized_name": "furstdate a furry dating simulator 🐾" + }, + { + "appid": 1809750, + "normalized_name": "wuhan clan" + }, + { + "appid": 1809760, + "normalized_name": "achromira" + }, + { + "appid": 1809770, + "normalized_name": "lust for darkness vr m" + }, + { + "appid": 1809820, + "normalized_name": "real tennis" + }, + { + "appid": 1809850, + "normalized_name": "suber driver" + }, + { + "appid": 1809860, + "normalized_name": "mech arena" + }, + { + "appid": 1809890, + "normalized_name": "kewbii" + }, + { + "appid": 1809900, + "normalized_name": "fembot jigsaw" + }, + { + "appid": 1809930, + "normalized_name": "christmas with my family jigsaw puzzle" + }, + { + "appid": 1809960, + "normalized_name": "abglantz" + }, + { + "appid": 1810000, + "normalized_name": "kuroi tsubasa" + }, + { + "appid": 1810020, + "normalized_name": "mizu" + }, + { + "appid": 1810050, + "normalized_name": "fortune avenue" + }, + { + "appid": 1810130, + "normalized_name": "classified stories color out of space" + }, + { + "appid": 1810180, + "normalized_name": "soul cipher the code within" + }, + { + "appid": 1810190, + "normalized_name": "poly" + }, + { + "appid": 1810200, + "normalized_name": "rhythm retro" + }, + { + "appid": 1810210, + "normalized_name": "bad cat" + }, + { + "appid": 1810220, + "normalized_name": "gears of phantasm destiny tailored(act i)" + }, + { + "appid": 1810230, + "normalized_name": "the wheel of fortune" + }, + { + "appid": 1810270, + "normalized_name": "blood nova" + }, + { + "appid": 1810280, + "normalized_name": "boomlegger" + }, + { + "appid": 1810310, + "normalized_name": "hidden ghost town" + }, + { + "appid": 1810320, + "normalized_name": "farmer's defence" + }, + { + "appid": 1810330, + "normalized_name": "crypto tycoon" + }, + { + "appid": 1810340, + "normalized_name": "sakurasegment 0.3 prologue" + }, + { + "appid": 1810350, + "normalized_name": "code valkyrie ii" + }, + { + "appid": 1810410, + "normalized_name": "deluge" + }, + { + "appid": 1810430, + "normalized_name": "grim tales echo of the past collector's" + }, + { + "appid": 1810450, + "normalized_name": "blankiball der trinksportsimulator" + }, + { + "appid": 1810460, + "normalized_name": "super puzzle cross" + }, + { + "appid": 1810490, + "normalized_name": "girls shop" + }, + { + "appid": 1810500, + "normalized_name": "treasure girl 3d 2" + }, + { + "appid": 1810510, + "normalized_name": "just survival the zombie awakening" + }, + { + "appid": 1810530, + "normalized_name": "the dead prince" + }, + { + "appid": 1810580, + "normalized_name": "nobody the turnaround" + }, + { + "appid": 1810600, + "normalized_name": "anime jigsaw girls office" + }, + { + "appid": 1810610, + "normalized_name": "pants quest" + }, + { + "appid": 1810620, + "normalized_name": "magnet crusher" + }, + { + "appid": 1810630, + "normalized_name": "lokko" + }, + { + "appid": 1810650, + "normalized_name": "residuality" + }, + { + "appid": 1810670, + "normalized_name": "cat detective albert wilde" + }, + { + "appid": 1810700, + "normalized_name": "intralism rebuild" + }, + { + "appid": 1810710, + "normalized_name": "bunce" + }, + { + "appid": 1810720, + "normalized_name": "color ball" + }, + { + "appid": 1810730, + "normalized_name": "mr.egg adventure" + }, + { + "appid": 1810810, + "normalized_name": "underwater world" + }, + { + "appid": 1810820, + "normalized_name": "etrian odyssey iii hd" + }, + { + "appid": 1810840, + "normalized_name": "candy maker" + }, + { + "appid": 1810870, + "normalized_name": "myths or reality fairy lands collector's" + }, + { + "appid": 1810900, + "normalized_name": "crops and conveyors" + }, + { + "appid": 1810960, + "normalized_name": "andy's apple farm" + }, + { + "appid": 1810980, + "normalized_name": "smart factory tycoon beginnings" + }, + { + "appid": 1811000, + "normalized_name": "small wars mohicans" + }, + { + "appid": 1811040, + "normalized_name": "south of the circle" + }, + { + "appid": 1811070, + "normalized_name": "fritz 18 steam" + }, + { + "appid": 1811140, + "normalized_name": "search all steampunk" + }, + { + "appid": 1811190, + "normalized_name": "the bunker notes horror/drama visual novel" + }, + { + "appid": 1811290, + "normalized_name": "paradise beach girls" + }, + { + "appid": 1811300, + "normalized_name": "不朽之刃/blade of immortality" + }, + { + "appid": 1811330, + "normalized_name": "lord ambermaze" + }, + { + "appid": 1811340, + "normalized_name": "spray paint simulator" + }, + { + "appid": 1811350, + "normalized_name": "zombie hell infected city" + }, + { + "appid": 1811380, + "normalized_name": "macabre museum" + }, + { + "appid": 1811390, + "normalized_name": "pacebreaker an experiment in ai perfected exercise" + }, + { + "appid": 1811400, + "normalized_name": "bomb voyage" + }, + { + "appid": 1811410, + "normalized_name": "world up" + }, + { + "appid": 1811430, + "normalized_name": "biters & bullets prologue" + }, + { + "appid": 1811440, + "normalized_name": "trachi autonomy" + }, + { + "appid": 1811480, + "normalized_name": "頭痛" + }, + { + "appid": 1811490, + "normalized_name": "rouge patrol" + }, + { + "appid": 1811500, + "normalized_name": "loopers" + }, + { + "appid": 1811520, + "normalized_name": "bounty hunters" + }, + { + "appid": 1811590, + "normalized_name": "heroes of xanfurth" + }, + { + "appid": 1811600, + "normalized_name": "vestaria saga ii the sacred sword of silvanister" + }, + { + "appid": 1811640, + "normalized_name": "the choice vr (선택vr)" + }, + { + "appid": 1811710, + "normalized_name": "bavity" + }, + { + "appid": 1811740, + "normalized_name": "the plague doctor of wippra" + }, + { + "appid": 1811750, + "normalized_name": "velone" + }, + { + "appid": 1811780, + "normalized_name": "throne and crown" + }, + { + "appid": 1811820, + "normalized_name": "pixel robot return" + }, + { + "appid": 1811870, + "normalized_name": "うんこタイピング" + }, + { + "appid": 1811900, + "normalized_name": "learning life mysteeri 24/7" + }, + { + "appid": 1811910, + "normalized_name": "the glitch fairy" + }, + { + "appid": 1811920, + "normalized_name": "planetkillerz death of a world in five acts." + }, + { + "appid": 1811940, + "normalized_name": "archipelago" + }, + { + "appid": 1811950, + "normalized_name": "the legend of heroes kuro no kiseki" + }, + { + "appid": 1811990, + "normalized_name": "wildfrost" + }, + { + "appid": 1812060, + "normalized_name": "yokai art night parade of one hundred demons" + }, + { + "appid": 1812070, + "normalized_name": "among waifus 18+" + }, + { + "appid": 1812090, + "normalized_name": "escape academy" + }, + { + "appid": 1812130, + "normalized_name": "hot hentai puzzle vol.2" + }, + { + "appid": 1812140, + "normalized_name": "magnificent 1" + }, + { + "appid": 1812170, + "normalized_name": "danghost" + }, + { + "appid": 1812180, + "normalized_name": "zipp's café" + }, + { + "appid": 1812200, + "normalized_name": "dangerous drift" + }, + { + "appid": 1812210, + "normalized_name": "simpler times" + }, + { + "appid": 1812230, + "normalized_name": "astro chef" + }, + { + "appid": 1812240, + "normalized_name": "somber heaven" + }, + { + "appid": 1812250, + "normalized_name": "dono's tale" + }, + { + "appid": 1812260, + "normalized_name": "wandering meatbags" + }, + { + "appid": 1812280, + "normalized_name": "cave story's secret santa" + }, + { + "appid": 1812290, + "normalized_name": "the elder scrolls arena" + }, + { + "appid": 1812300, + "normalized_name": "aquatico" + }, + { + "appid": 1812340, + "normalized_name": "enigmarella" + }, + { + "appid": 1812370, + "normalized_name": "little goody two shoes" + }, + { + "appid": 1812390, + "normalized_name": "the elder scrolls ii daggerfall" + }, + { + "appid": 1812400, + "normalized_name": "vegas tales" + }, + { + "appid": 1812410, + "normalized_name": "the elder scrolls adventures redguard" + }, + { + "appid": 1812420, + "normalized_name": "an elder scrolls legend battlespire" + }, + { + "appid": 1812430, + "normalized_name": "race on ice 2020 pro" + }, + { + "appid": 1812440, + "normalized_name": "polygon hunter" + }, + { + "appid": 1812450, + "normalized_name": "bellwright" + }, + { + "appid": 1812560, + "normalized_name": "super crazy rhythm castle" + }, + { + "appid": 1812580, + "normalized_name": "alien prop hunt" + }, + { + "appid": 1812600, + "normalized_name": "cardstock" + }, + { + "appid": 1812640, + "normalized_name": "path of life" + }, + { + "appid": 1812650, + "normalized_name": "pixel game maker series biggerman.io" + }, + { + "appid": 1812710, + "normalized_name": "furry hentai jigsaw 2" + }, + { + "appid": 1812760, + "normalized_name": "白花 the white flower" + }, + { + "appid": 1812820, + "normalized_name": "bitburner" + }, + { + "appid": 1812840, + "normalized_name": "the labyrinth of greed" + }, + { + "appid": 1812850, + "normalized_name": "race for your life" + }, + { + "appid": 1812860, + "normalized_name": "dice gambit" + }, + { + "appid": 1812870, + "normalized_name": "adult film maker" + }, + { + "appid": 1812890, + "normalized_name": "fruit girls 2 hentai jigsaw photo studio" + }, + { + "appid": 1812910, + "normalized_name": "great houses of calderia" + }, + { + "appid": 1812920, + "normalized_name": "mission critical foresight" + }, + { + "appid": 1812930, + "normalized_name": "santhai" + }, + { + "appid": 1812950, + "normalized_name": "ragdolls playground the sandbox" + }, + { + "appid": 1812970, + "normalized_name": "immortal tactics war of the eternals" + }, + { + "appid": 1813000, + "normalized_name": "soulside" + }, + { + "appid": 1813010, + "normalized_name": "kehra" + }, + { + "appid": 1813060, + "normalized_name": "target" + }, + { + "appid": 1813100, + "normalized_name": "super squidlit" + }, + { + "appid": 1813110, + "normalized_name": "spears of a heart elusive rhythms" + }, + { + "appid": 1813120, + "normalized_name": "exostation" + }, + { + "appid": 1813130, + "normalized_name": "sugar shack" + }, + { + "appid": 1813140, + "normalized_name": "christmas horror" + }, + { + "appid": 1813170, + "normalized_name": "surrounded" + }, + { + "appid": 1813180, + "normalized_name": "escape from mlc" + }, + { + "appid": 1813190, + "normalized_name": "little inner monsters card game" + }, + { + "appid": 1813200, + "normalized_name": "artist simulator" + }, + { + "appid": 1813230, + "normalized_name": "wild west builder" + }, + { + "appid": 1813240, + "normalized_name": "boss beek beekeeping simulator" + }, + { + "appid": 1813250, + "normalized_name": "dobad inc" + }, + { + "appid": 1813270, + "normalized_name": "poptropica" + }, + { + "appid": 1813290, + "normalized_name": "darklight breach" + }, + { + "appid": 1813300, + "normalized_name": "girls on puzzle 5" + }, + { + "appid": 1813310, + "normalized_name": "spin fighter" + }, + { + "appid": 1813320, + "normalized_name": "hentai possess her" + }, + { + "appid": 1813330, + "normalized_name": "zombie vampires" + }, + { + "appid": 1813340, + "normalized_name": "cube space" + }, + { + "appid": 1813370, + "normalized_name": "to carry a sword" + }, + { + "appid": 1813400, + "normalized_name": "santa protects the christmas tree" + }, + { + "appid": 1813420, + "normalized_name": "the perdition man interval" + }, + { + "appid": 1813430, + "normalized_name": "beat banger" + }, + { + "appid": 1813440, + "normalized_name": "kitten hero" + }, + { + "appid": 1813470, + "normalized_name": "abandonware the horror collection" + }, + { + "appid": 1813500, + "normalized_name": "scopaesthesia" + }, + { + "appid": 1813540, + "normalized_name": "save拯救" + }, + { + "appid": 1813550, + "normalized_name": "artisan" + }, + { + "appid": 1813560, + "normalized_name": "deranged" + }, + { + "appid": 1813570, + "normalized_name": "jingor sudoku" + }, + { + "appid": 1813590, + "normalized_name": "grab n' throw" + }, + { + "appid": 1813610, + "normalized_name": "恶娑海" + }, + { + "appid": 1813640, + "normalized_name": "designated driver simulator" + }, + { + "appid": 1813650, + "normalized_name": "vr sweet heart" + }, + { + "appid": 1813690, + "normalized_name": "parametric creature lab" + }, + { + "appid": 1813730, + "normalized_name": "outpost" + }, + { + "appid": 1813740, + "normalized_name": "jotaverse vr" + }, + { + "appid": 1813820, + "normalized_name": "didnapper 2" + }, + { + "appid": 1813840, + "normalized_name": "super mega hentai collection!" + }, + { + "appid": 1813850, + "normalized_name": "piawk" + }, + { + "appid": 1813860, + "normalized_name": "naiad" + }, + { + "appid": 1813890, + "normalized_name": "flannel amethyst" + }, + { + "appid": 1813910, + "normalized_name": "screaming loaf" + }, + { + "appid": 1813980, + "normalized_name": "streetball fury" + }, + { + "appid": 1814010, + "normalized_name": "stuck in time" + }, + { + "appid": 1814030, + "normalized_name": "offroad dead planet" + }, + { + "appid": 1814050, + "normalized_name": "7swordsman" + }, + { + "appid": 1814060, + "normalized_name": "virus at home" + }, + { + "appid": 1814090, + "normalized_name": "cardow! battle of decks" + }, + { + "appid": 1814100, + "normalized_name": "in shape 2" + }, + { + "appid": 1814110, + "normalized_name": "kitty cat squash" + }, + { + "appid": 1814120, + "normalized_name": "tetromino x" + }, + { + "appid": 1814150, + "normalized_name": "atomic cyclecar racing" + }, + { + "appid": 1814160, + "normalized_name": "crazy santa" + }, + { + "appid": 1814170, + "normalized_name": "lingo" + }, + { + "appid": 1814200, + "normalized_name": "he will shoot" + }, + { + "appid": 1814220, + "normalized_name": "fly or die" + }, + { + "appid": 1814230, + "normalized_name": "belle automata chronicle i" + }, + { + "appid": 1814240, + "normalized_name": "the thing from nowhere" + }, + { + "appid": 1814250, + "normalized_name": "kickback slug cosmic courier" + }, + { + "appid": 1814260, + "normalized_name": "cold verdict" + }, + { + "appid": 1814270, + "normalized_name": "metallophobia" + }, + { + "appid": 1814310, + "normalized_name": "wicked paradise" + }, + { + "appid": 1814340, + "normalized_name": "gladiatori" + }, + { + "appid": 1814360, + "normalized_name": "古代从军/ancient military" + }, + { + "appid": 1814380, + "normalized_name": "恋与你 love with you" + }, + { + "appid": 1814400, + "normalized_name": "sirberia front" + }, + { + "appid": 1814460, + "normalized_name": "ゆうしゃvsドラゴン" + }, + { + "appid": 1814480, + "normalized_name": "fourplay chess" + }, + { + "appid": 1814490, + "normalized_name": "scratch girl" + }, + { + "appid": 1814510, + "normalized_name": "yavi" + }, + { + "appid": 1814520, + "normalized_name": "find the cat" + }, + { + "appid": 1814540, + "normalized_name": "cosmos conquer" + }, + { + "appid": 1814560, + "normalized_name": "the infecting 3" + }, + { + "appid": 1814570, + "normalized_name": "transcendence legacy voidswept" + }, + { + "appid": 1814590, + "normalized_name": "clocknockers" + }, + { + "appid": 1814600, + "normalized_name": "drone showcase" + }, + { + "appid": 1814610, + "normalized_name": "middle ages jigsaw puzzles" + }, + { + "appid": 1814630, + "normalized_name": "farmd" + }, + { + "appid": 1814670, + "normalized_name": "暗黑的克蘿薇" + }, + { + "appid": 1814690, + "normalized_name": "zid journey" + }, + { + "appid": 1814700, + "normalized_name": "beast whalers" + }, + { + "appid": 1814710, + "normalized_name": "cute dogs" + }, + { + "appid": 1814720, + "normalized_name": "porpetha" + }, + { + "appid": 1814730, + "normalized_name": "rock paper scissors" + }, + { + "appid": 1814770, + "normalized_name": "tall poppy" + }, + { + "appid": 1814780, + "normalized_name": "nirvana game of life" + }, + { + "appid": 1814800, + "normalized_name": "sabotage 1.0" + }, + { + "appid": 1814850, + "normalized_name": "strangest.io's my megamix '21" + }, + { + "appid": 1814870, + "normalized_name": "fire in the beastlands" + }, + { + "appid": 1814890, + "normalized_name": "casa de diamantes" + }, + { + "appid": 1814920, + "normalized_name": "bombyx" + }, + { + "appid": 1814930, + "normalized_name": "kurokami sama's feast" + }, + { + "appid": 1814950, + "normalized_name": "diefrosty" + }, + { + "appid": 1814980, + "normalized_name": "2310 seconds in hell" + }, + { + "appid": 1814990, + "normalized_name": "不充钱还想过关的坦克大战?" + }, + { + "appid": 1815000, + "normalized_name": "阿龙与地下城" + }, + { + "appid": 1815010, + "normalized_name": "maid knight alicia" + }, + { + "appid": 1815020, + "normalized_name": "cosmicbreak gun & slash" + }, + { + "appid": 1815030, + "normalized_name": "g modeアーカイブス+ 弾幕検定死験 大往生編" + }, + { + "appid": 1815050, + "normalized_name": "blockgeon" + }, + { + "appid": 1815060, + "normalized_name": "date with a girl mahjong" + }, + { + "appid": 1815080, + "normalized_name": "battlefleet gust wind" + }, + { + "appid": 1815090, + "normalized_name": "killer" + }, + { + "appid": 1815110, + "normalized_name": "cubehook vr" + }, + { + "appid": 1815130, + "normalized_name": "fear them" + }, + { + "appid": 1815140, + "normalized_name": "splatformer" + }, + { + "appid": 1815150, + "normalized_name": "night of the consumers" + }, + { + "appid": 1815160, + "normalized_name": "adult puzzles hentai christmas" + }, + { + "appid": 1815170, + "normalized_name": "asteroides" + }, + { + "appid": 1815200, + "normalized_name": "computer develop simulator 2022" + }, + { + "appid": 1815230, + "normalized_name": "summum aeterna" + }, + { + "appid": 1815260, + "normalized_name": "chess crown" + }, + { + "appid": 1815270, + "normalized_name": "primafloows" + }, + { + "appid": 1815290, + "normalized_name": "hitmen party" + }, + { + "appid": 1815310, + "normalized_name": "arcante" + }, + { + "appid": 1815340, + "normalized_name": "jivana" + }, + { + "appid": 1815350, + "normalized_name": "sumy shelltris iceblocks 3" + }, + { + "appid": 1815370, + "normalized_name": "咸鱼的挂机游戏" + }, + { + "appid": 1815400, + "normalized_name": "skazka" + }, + { + "appid": 1815430, + "normalized_name": "cursed house 10 match 3 puzzle" + }, + { + "appid": 1815440, + "normalized_name": "chinese driving test simulator" + }, + { + "appid": 1815450, + "normalized_name": "the world's hardest game 3d 2" + }, + { + "appid": 1815520, + "normalized_name": "noa's project" + }, + { + "appid": 1815530, + "normalized_name": "dungeon defenders going rogue" + }, + { + "appid": 1815540, + "normalized_name": "blinnk and the vacuum of space" + }, + { + "appid": 1815550, + "normalized_name": "truffle classic" + }, + { + "appid": 1815570, + "normalized_name": "aces & adventures" + }, + { + "appid": 1815580, + "normalized_name": "gunner deadly expedition" + }, + { + "appid": 1815600, + "normalized_name": "isekai cowboy" + }, + { + "appid": 1815650, + "normalized_name": "supercolony" + }, + { + "appid": 1815660, + "normalized_name": "dungeons of honor" + }, + { + "appid": 1815690, + "normalized_name": "employee a" + }, + { + "appid": 1815720, + "normalized_name": "split tactics" + }, + { + "appid": 1815730, + "normalized_name": "ballroll" + }, + { + "appid": 1815750, + "normalized_name": "how to take off your mask" + }, + { + "appid": 1815780, + "normalized_name": "asphalt legends unite" + }, + { + "appid": 1815800, + "normalized_name": "how to fool a liar king" + }, + { + "appid": 1815820, + "normalized_name": "how to sing to open your heart" + }, + { + "appid": 1815860, + "normalized_name": "maze art black" + }, + { + "appid": 1815880, + "normalized_name": "maze art blue" + }, + { + "appid": 1815890, + "normalized_name": "lights" + }, + { + "appid": 1815970, + "normalized_name": "a clockwork ley line daybreak of remnants shadow" + }, + { + "appid": 1815990, + "normalized_name": "pedro and sofia's nuclear winter" + }, + { + "appid": 1816050, + "normalized_name": "kamigami clash of the gods" + }, + { + "appid": 1816070, + "normalized_name": "illuminati" + }, + { + "appid": 1816080, + "normalized_name": "meteor volleyball!" + }, + { + "appid": 1816120, + "normalized_name": "the quantum cat" + }, + { + "appid": 1816140, + "normalized_name": "sinners landing" + }, + { + "appid": 1816200, + "normalized_name": "horizon vr" + }, + { + "appid": 1816270, + "normalized_name": "alone with you" + }, + { + "appid": 1816300, + "normalized_name": "harvestella" + }, + { + "appid": 1816370, + "normalized_name": "tape recovery simulator 96k demo" + }, + { + "appid": 1816380, + "normalized_name": "黄金时代" + }, + { + "appid": 1816390, + "normalized_name": "rebirth evolution" + }, + { + "appid": 1816410, + "normalized_name": "maze art brown" + }, + { + "appid": 1816420, + "normalized_name": "maze art green" + }, + { + "appid": 1816520, + "normalized_name": "motorbike traffic splash" + }, + { + "appid": 1816530, + "normalized_name": "haunt" + }, + { + "appid": 1816560, + "normalized_name": "sperm runner" + }, + { + "appid": 1816570, + "normalized_name": "江湖十一" + }, + { + "appid": 1816640, + "normalized_name": "modern naval warfare" + }, + { + "appid": 1816650, + "normalized_name": "nelson and the magic cauldron the journey" + }, + { + "appid": 1816690, + "normalized_name": "skew pong" + }, + { + "appid": 1816710, + "normalized_name": "tales from the under realm after midnight" + }, + { + "appid": 1816770, + "normalized_name": "meteoric vr" + }, + { + "appid": 1816810, + "normalized_name": "armoured vr" + }, + { + "appid": 1816880, + "normalized_name": "exit 2" + }, + { + "appid": 1816890, + "normalized_name": "tendy robot gardener" + }, + { + "appid": 1816900, + "normalized_name": "aberration" + }, + { + "appid": 1816910, + "normalized_name": "arrowbase" + }, + { + "appid": 1816920, + "normalized_name": "efir adventure matchcraft" + }, + { + "appid": 1816930, + "normalized_name": "mad experiments 2 escape room" + }, + { + "appid": 1816950, + "normalized_name": "nobodies after death" + }, + { + "appid": 1816960, + "normalized_name": "christmas wonderland 12" + }, + { + "appid": 1816980, + "normalized_name": "吾光笔记0受孕" + }, + { + "appid": 1817000, + "normalized_name": "zodiacats" + }, + { + "appid": 1817010, + "normalized_name": "beyond up" + }, + { + "appid": 1817020, + "normalized_name": "citrus rampage" + }, + { + "appid": 1817030, + "normalized_name": "swordcery" + }, + { + "appid": 1817070, + "normalized_name": "marvel’s spider man" + }, + { + "appid": 1817110, + "normalized_name": "isaiah 188" + }, + { + "appid": 1817120, + "normalized_name": "combat troops vr" + }, + { + "appid": 1817130, + "normalized_name": "complex relations" + }, + { + "appid": 1817140, + "normalized_name": "ending way" + }, + { + "appid": 1817190, + "normalized_name": "marvel’s spider man miles morales" + }, + { + "appid": 1817200, + "normalized_name": "this house" + }, + { + "appid": 1817230, + "normalized_name": "hi fi rush" + }, + { + "appid": 1817250, + "normalized_name": "ghostwire tokyo prelude" + }, + { + "appid": 1817260, + "normalized_name": "xo evolved" + }, + { + "appid": 1817290, + "normalized_name": "in nightmare" + }, + { + "appid": 1817310, + "normalized_name": "69 megumi love" + }, + { + "appid": 1817320, + "normalized_name": "a christmas story from hell vr" + }, + { + "appid": 1817330, + "normalized_name": "immolation" + }, + { + "appid": 1817350, + "normalized_name": "ahro" + }, + { + "appid": 1817400, + "normalized_name": "mistake" + }, + { + "appid": 1817470, + "normalized_name": "an outcry" + }, + { + "appid": 1817500, + "normalized_name": "abandoned archive" + }, + { + "appid": 1817510, + "normalized_name": "robotica" + }, + { + "appid": 1817540, + "normalized_name": "coming soon" + }, + { + "appid": 1817560, + "normalized_name": "voidcrisis" + }, + { + "appid": 1817610, + "normalized_name": "battle heroine crisis" + }, + { + "appid": 1817660, + "normalized_name": "space attack" + }, + { + "appid": 1817670, + "normalized_name": "survivalisland" + }, + { + "appid": 1817680, + "normalized_name": "calm down will" + }, + { + "appid": 1817720, + "normalized_name": "defensive war sealed golem" + }, + { + "appid": 1817780, + "normalized_name": "last blood" + }, + { + "appid": 1817800, + "normalized_name": "oddsparks an automation adventure" + }, + { + "appid": 1817880, + "normalized_name": "vacation adventures park ranger 8" + }, + { + "appid": 1817890, + "normalized_name": "vacation adventures park ranger 9" + }, + { + "appid": 1817910, + "normalized_name": "technomagic" + }, + { + "appid": 1817940, + "normalized_name": "love delivery" + }, + { + "appid": 1818000, + "normalized_name": "adanath" + }, + { + "appid": 1818010, + "normalized_name": "return alive" + }, + { + "appid": 1818080, + "normalized_name": "hidden beast" + }, + { + "appid": 1818140, + "normalized_name": "den of wolves" + }, + { + "appid": 1818150, + "normalized_name": "pinecone game" + }, + { + "appid": 1818180, + "normalized_name": "the rpg engine" + }, + { + "appid": 1818200, + "normalized_name": "gloo storm" + }, + { + "appid": 1818220, + "normalized_name": "乌托邦之血 blood of utpia" + }, + { + "appid": 1818230, + "normalized_name": "lodventure" + }, + { + "appid": 1818240, + "normalized_name": "anime jigsaw girls christmas" + }, + { + "appid": 1818250, + "normalized_name": "boxnigma" + }, + { + "appid": 1818270, + "normalized_name": "super yodelland legend of the katzenbär" + }, + { + "appid": 1818280, + "normalized_name": "kallax" + }, + { + "appid": 1818290, + "normalized_name": "mothership" + }, + { + "appid": 1818320, + "normalized_name": "いせかいあどべんちゃー" + }, + { + "appid": 1818340, + "normalized_name": "creatures the albian years" + }, + { + "appid": 1818370, + "normalized_name": "my furry dragon 🐾" + }, + { + "appid": 1818450, + "normalized_name": "stalcraft x" + }, + { + "appid": 1818470, + "normalized_name": "desolation seed" + }, + { + "appid": 1818480, + "normalized_name": "midwest 90 rapid city" + }, + { + "appid": 1818560, + "normalized_name": "helen giantess" + }, + { + "appid": 1818570, + "normalized_name": "threes!" + }, + { + "appid": 1818580, + "normalized_name": "creator's asteroid" + }, + { + "appid": 1818590, + "normalized_name": "you are a pilot" + }, + { + "appid": 1818600, + "normalized_name": "bug blazer" + }, + { + "appid": 1818610, + "normalized_name": "karagon (survival robot riding fps)" + }, + { + "appid": 1818630, + "normalized_name": "method to madness" + }, + { + "appid": 1818640, + "normalized_name": "thugs never die" + }, + { + "appid": 1818660, + "normalized_name": "kalyskah" + }, + { + "appid": 1818690, + "normalized_name": "grindstone" + }, + { + "appid": 1818750, + "normalized_name": "multiversus" + }, + { + "appid": 1818770, + "normalized_name": "nebula invasion" + }, + { + "appid": 1818780, + "normalized_name": "tokyo onmyoji the tale of rei tengenjibashi" + }, + { + "appid": 1818790, + "normalized_name": "maze art orange" + }, + { + "appid": 1818800, + "normalized_name": "maze art pink" + }, + { + "appid": 1818810, + "normalized_name": "maze art purple" + }, + { + "appid": 1818820, + "normalized_name": "maze art rainbow" + }, + { + "appid": 1818830, + "normalized_name": "maze art red" + }, + { + "appid": 1818840, + "normalized_name": "maze art yellow" + }, + { + "appid": 1818880, + "normalized_name": "bangbang pewpew" + }, + { + "appid": 1818940, + "normalized_name": "typing land" + }, + { + "appid": 1818960, + "normalized_name": "modbots" + }, + { + "appid": 1819020, + "normalized_name": "救公主?救个屁! save the princess?save a fart!" + }, + { + "appid": 1819040, + "normalized_name": "impulsive force" + }, + { + "appid": 1819060, + "normalized_name": "googoo bash!" + }, + { + "appid": 1819120, + "normalized_name": "死亡编码 death code" + }, + { + "appid": 1819160, + "normalized_name": "meteor world actor badge & dagger" + }, + { + "appid": 1819180, + "normalized_name": "oxide room 104" + }, + { + "appid": 1819190, + "normalized_name": "rescue helicopter" + }, + { + "appid": 1819210, + "normalized_name": "x病毒" + }, + { + "appid": 1819230, + "normalized_name": "udongein x" + }, + { + "appid": 1819240, + "normalized_name": "short circuit" + }, + { + "appid": 1819250, + "normalized_name": "marrakech" + }, + { + "appid": 1819280, + "normalized_name": "hot roads" + }, + { + "appid": 1819290, + "normalized_name": "spaceship hunters" + }, + { + "appid": 1819300, + "normalized_name": "re サバイバー" + }, + { + "appid": 1819370, + "normalized_name": "murder by moonlight 2 crimson night" + }, + { + "appid": 1819430, + "normalized_name": "dream" + }, + { + "appid": 1819440, + "normalized_name": "block line engineer" + }, + { + "appid": 1819450, + "normalized_name": "koa and the five pirates of mara" + }, + { + "appid": 1819460, + "normalized_name": "mika and the witch's mountain" + }, + { + "appid": 1819520, + "normalized_name": "constellations puzzles in the sky" + }, + { + "appid": 1819540, + "normalized_name": "santa slays nazis" + }, + { + "appid": 1819560, + "normalized_name": "ice sugar" + }, + { + "appid": 1819570, + "normalized_name": "eraser" + }, + { + "appid": 1819580, + "normalized_name": "unriddle" + }, + { + "appid": 1819610, + "normalized_name": "norgame. город полярной ночи" + }, + { + "appid": 1819620, + "normalized_name": "huygens principle" + }, + { + "appid": 1819630, + "normalized_name": "mr.addon in sulpicius gallus m" + }, + { + "appid": 1819650, + "normalized_name": "goblin's expedition" + }, + { + "appid": 1819660, + "normalized_name": "eyes over us" + }, + { + "appid": 1819750, + "normalized_name": "changa" + }, + { + "appid": 1819770, + "normalized_name": "shooter's island" + }, + { + "appid": 1819780, + "normalized_name": "vampire combat" + }, + { + "appid": 1819800, + "normalized_name": "village the siberia" + }, + { + "appid": 1819820, + "normalized_name": "puppet master" + }, + { + "appid": 1819860, + "normalized_name": "thalamus" + }, + { + "appid": 1819870, + "normalized_name": "draft day sports pro basketball 2022" + }, + { + "appid": 1819880, + "normalized_name": "leviathan streams of legends" + }, + { + "appid": 1819890, + "normalized_name": "progeria vae victis" + }, + { + "appid": 1819900, + "normalized_name": "shootvaders the beginning" + }, + { + "appid": 1819930, + "normalized_name": "smeesa street" + }, + { + "appid": 1819950, + "normalized_name": "jetbounce" + }, + { + "appid": 1819960, + "normalized_name": "stretchy man the video game" + }, + { + "appid": 1819970, + "normalized_name": "jumpy haha" + }, + { + "appid": 1819980, + "normalized_name": "writer's life" + }, + { + "appid": 1820000, + "normalized_name": "homura hime" + }, + { + "appid": 1820020, + "normalized_name": "battlefieldcars" + }, + { + "appid": 1820030, + "normalized_name": "destructor tanks" + }, + { + "appid": 1820050, + "normalized_name": "border conqueror" + }, + { + "appid": 1820060, + "normalized_name": "my university girlfriend" + }, + { + "appid": 1820070, + "normalized_name": "alchemy of love" + }, + { + "appid": 1820090, + "normalized_name": "trisceli特里西利" + }, + { + "appid": 1820100, + "normalized_name": "dreamout" + }, + { + "appid": 1820140, + "normalized_name": "slavicpunk oldtimer" + }, + { + "appid": 1820160, + "normalized_name": "super clown lost diamonds" + }, + { + "appid": 1820170, + "normalized_name": "the two of us" + }, + { + "appid": 1820180, + "normalized_name": "color by number monster heroes" + }, + { + "appid": 1820210, + "normalized_name": "void rifter xr" + }, + { + "appid": 1820270, + "normalized_name": "anyaroth the queen's tyranny" + }, + { + "appid": 1820320, + "normalized_name": "神徒" + }, + { + "appid": 1820330, + "normalized_name": "dungeon's fall" + }, + { + "appid": 1820350, + "normalized_name": "examination chambers" + }, + { + "appid": 1820380, + "normalized_name": "let's cook" + }, + { + "appid": 1820390, + "normalized_name": "solitaire harmony" + }, + { + "appid": 1820400, + "normalized_name": "the ballad singer knights templar" + }, + { + "appid": 1820430, + "normalized_name": "soul tolerance prologue" + }, + { + "appid": 1820460, + "normalized_name": "lands of rage" + }, + { + "appid": 1820470, + "normalized_name": "the wratch's den" + }, + { + "appid": 1820480, + "normalized_name": "pact of the ancients 3d bara survivors" + }, + { + "appid": 1820560, + "normalized_name": "big booty adventures" + }, + { + "appid": 1820570, + "normalized_name": "panic porcupine" + }, + { + "appid": 1820620, + "normalized_name": "voxelgram 2" + }, + { + "appid": 1820640, + "normalized_name": "marimo vs i.a.s" + }, + { + "appid": 1820690, + "normalized_name": "one line" + }, + { + "appid": 1820700, + "normalized_name": "praecantor lila ~ bell spell" + }, + { + "appid": 1820710, + "normalized_name": "vr dodgeball trainer" + }, + { + "appid": 1820720, + "normalized_name": "the divine deception" + }, + { + "appid": 1820740, + "normalized_name": "sucker for love prelude" + }, + { + "appid": 1820770, + "normalized_name": "duck dangerous cartridge kidnapper" + }, + { + "appid": 1820790, + "normalized_name": "pictopull" + }, + { + "appid": 1820810, + "normalized_name": "graveyard spells" + }, + { + "appid": 1820860, + "normalized_name": "kube" + }, + { + "appid": 1820890, + "normalized_name": "princess sera adventures" + }, + { + "appid": 1820910, + "normalized_name": "labyrinth of death" + }, + { + "appid": 1820930, + "normalized_name": "mega city void" + }, + { + "appid": 1820940, + "normalized_name": "hitler loves anime" + }, + { + "appid": 1820980, + "normalized_name": "mars parking simulator" + }, + { + "appid": 1821000, + "normalized_name": "turk a lurk" + }, + { + "appid": 1821060, + "normalized_name": "find the sunbed" + }, + { + "appid": 1821070, + "normalized_name": "grey block" + }, + { + "appid": 1821090, + "normalized_name": "cinemoji series" + }, + { + "appid": 1821110, + "normalized_name": "seasons of the sorcerer" + }, + { + "appid": 1821140, + "normalized_name": "bounceables" + }, + { + "appid": 1821150, + "normalized_name": "connectify" + }, + { + "appid": 1821170, + "normalized_name": "steph's revenge" + }, + { + "appid": 1821220, + "normalized_name": "ascended survivor" + }, + { + "appid": 1821270, + "normalized_name": "钓鱼时光 | fishtime" + }, + { + "appid": 1821310, + "normalized_name": "kitten lost her box" + }, + { + "appid": 1821340, + "normalized_name": "hole in the clouds" + }, + { + "appid": 1821350, + "normalized_name": "pickle frickle" + }, + { + "appid": 1821410, + "normalized_name": "unstable" + }, + { + "appid": 1821420, + "normalized_name": "battle of the robots" + }, + { + "appid": 1821430, + "normalized_name": "tiny tank" + }, + { + "appid": 1821440, + "normalized_name": "hackers in battlefield" + }, + { + "appid": 1821460, + "normalized_name": "project unirah" + }, + { + "appid": 1821490, + "normalized_name": "future tanks area" + }, + { + "appid": 1821500, + "normalized_name": "western city renovator" + }, + { + "appid": 1821510, + "normalized_name": "a space odyssey" + }, + { + "appid": 1821530, + "normalized_name": "break through the illusion" + }, + { + "appid": 1821540, + "normalized_name": "鉄之海老" + }, + { + "appid": 1821550, + "normalized_name": "snapshot aquarium" + }, + { + "appid": 1821570, + "normalized_name": "six braves 🕌" + }, + { + "appid": 1821580, + "normalized_name": "vann pete's dive" + }, + { + "appid": 1821590, + "normalized_name": "punched" + }, + { + "appid": 1821600, + "normalized_name": "glyde the dragon" + }, + { + "appid": 1821630, + "normalized_name": "they сame from above" + }, + { + "appid": 1821670, + "normalized_name": "drachenquell" + }, + { + "appid": 1821680, + "normalized_name": "the adventurer's domain online" + }, + { + "appid": 1821690, + "normalized_name": "sakura sunshine" + }, + { + "appid": 1821730, + "normalized_name": "nebula complex survival" + }, + { + "appid": 1821740, + "normalized_name": "one more encounter" + }, + { + "appid": 1821800, + "normalized_name": "stalks stalks stalks" + }, + { + "appid": 1821810, + "normalized_name": "true racing" + }, + { + "appid": 1821820, + "normalized_name": "phantasia" + }, + { + "appid": 1821850, + "normalized_name": "tails from alteria" + }, + { + "appid": 1821860, + "normalized_name": "touge racers" + }, + { + "appid": 1821870, + "normalized_name": "rapture the beginning" + }, + { + "appid": 1821890, + "normalized_name": "the many misfortunes of kyran pierre cadenza the first" + }, + { + "appid": 1821910, + "normalized_name": "adamanta view" + }, + { + "appid": 1821920, + "normalized_name": "dive bar superstars" + }, + { + "appid": 1821960, + "normalized_name": "the psychoduck" + }, + { + "appid": 1821970, + "normalized_name": "diaspora" + }, + { + "appid": 1821980, + "normalized_name": "последний рассвет" + }, + { + "appid": 1822010, + "normalized_name": "milliopoly language quiz and learning" + }, + { + "appid": 1822020, + "normalized_name": "3d hentai seabattle" + }, + { + "appid": 1822030, + "normalized_name": "the library of babel" + }, + { + "appid": 1822040, + "normalized_name": "fuzoku frame [18+]😈" + }, + { + "appid": 1822060, + "normalized_name": "those who rule" + }, + { + "appid": 1822070, + "normalized_name": "planet boom" + }, + { + "appid": 1822080, + "normalized_name": "萌宠方块派对 yippy cube" + }, + { + "appid": 1822090, + "normalized_name": "寻光 find the light" + }, + { + "appid": 1822120, + "normalized_name": "life and sex in men's сollege season 1 💕🔞" + }, + { + "appid": 1822130, + "normalized_name": "hover the edge" + }, + { + "appid": 1822180, + "normalized_name": "orrb" + }, + { + "appid": 1822190, + "normalized_name": "momotype" + }, + { + "appid": 1822230, + "normalized_name": "kokoro clover season1" + }, + { + "appid": 1822240, + "normalized_name": "stars in the trash" + }, + { + "appid": 1822270, + "normalized_name": "heroes of rome dangerous roads" + }, + { + "appid": 1822300, + "normalized_name": "bounce ball neon party arcade" + }, + { + "appid": 1822340, + "normalized_name": "agni" + }, + { + "appid": 1822450, + "normalized_name": "the slaverian trucker" + }, + { + "appid": 1822460, + "normalized_name": "pwnk stream battle royale" + }, + { + "appid": 1822470, + "normalized_name": "heroes of egypt the curse of sethos" + }, + { + "appid": 1822490, + "normalized_name": "一花一世界 | the lotus" + }, + { + "appid": 1822500, + "normalized_name": "mixx island remix vol. 2" + }, + { + "appid": 1822510, + "normalized_name": "fog & silver" + }, + { + "appid": 1822530, + "normalized_name": "the missing parts of maria gwozdek" + }, + { + "appid": 1822540, + "normalized_name": "nitro nation vr" + }, + { + "appid": 1822550, + "normalized_name": "microcivilization" + }, + { + "appid": 1822560, + "normalized_name": "minabo a walk through life" + }, + { + "appid": 1822580, + "normalized_name": "quiver quarrel" + }, + { + "appid": 1822590, + "normalized_name": "pinni and the lost voice" + }, + { + "appid": 1822640, + "normalized_name": "rogue dungeon" + }, + { + "appid": 1822660, + "normalized_name": "kotomasho i can't believe this neet guy turned into a magical girl!" + }, + { + "appid": 1822700, + "normalized_name": "光影の塔" + }, + { + "appid": 1822710, + "normalized_name": "automon" + }, + { + "appid": 1822760, + "normalized_name": "bleu" + }, + { + "appid": 1822770, + "normalized_name": "abduction" + }, + { + "appid": 1822880, + "normalized_name": "elon" + }, + { + "appid": 1822890, + "normalized_name": "howling dusk" + }, + { + "appid": 1822900, + "normalized_name": "soulflow" + }, + { + "appid": 1822910, + "normalized_name": "capybara spa" + }, + { + "appid": 1822940, + "normalized_name": "sorcerer's tournament" + }, + { + "appid": 1822970, + "normalized_name": "shadowgate vr the mines of mythrok" + }, + { + "appid": 1823020, + "normalized_name": "retro tv game collection" + }, + { + "appid": 1823030, + "normalized_name": "cursed broom" + }, + { + "appid": 1823070, + "normalized_name": "mugen journey" + }, + { + "appid": 1823080, + "normalized_name": "dark invasion vr doomsday" + }, + { + "appid": 1823090, + "normalized_name": "mikoshi the lost crystals" + }, + { + "appid": 1823100, + "normalized_name": "the pest" + }, + { + "appid": 1823170, + "normalized_name": "cosmos bit" + }, + { + "appid": 1823190, + "normalized_name": "a violent revelry" + }, + { + "appid": 1823200, + "normalized_name": "jumanji wild adventures" + }, + { + "appid": 1823210, + "normalized_name": "breeze in the clouds" + }, + { + "appid": 1823250, + "normalized_name": "wingsuit thrill" + }, + { + "appid": 1823260, + "normalized_name": "gravix" + }, + { + "appid": 1823300, + "normalized_name": "untamed isles" + }, + { + "appid": 1823320, + "normalized_name": "the voluptuous demon queen and our shoebox apartment life" + }, + { + "appid": 1823330, + "normalized_name": "faircroft's antiques the mountaineer's legacy" + }, + { + "appid": 1823340, + "normalized_name": "*new* scuffed bhop simulation 2026 goty" + }, + { + "appid": 1823350, + "normalized_name": "forest star" + }, + { + "appid": 1823370, + "normalized_name": "berry" + }, + { + "appid": 1823380, + "normalized_name": "amnesia" + }, + { + "appid": 1823390, + "normalized_name": "escape the mad empire" + }, + { + "appid": 1823430, + "normalized_name": "カラクリエイト" + }, + { + "appid": 1823470, + "normalized_name": "lemon run" + }, + { + "appid": 1823480, + "normalized_name": "storm lost normality" + }, + { + "appid": 1823490, + "normalized_name": "legend of the phoenix" + }, + { + "appid": 1823540, + "normalized_name": "criminal archives city on fire collector's" + }, + { + "appid": 1823550, + "normalized_name": "bonobros" + }, + { + "appid": 1823570, + "normalized_name": "age of valakas vietnam" + }, + { + "appid": 1823590, + "normalized_name": "jane the reaper" + }, + { + "appid": 1823600, + "normalized_name": "power & revolution 2022" + }, + { + "appid": 1823610, + "normalized_name": "7 days to save the world" + }, + { + "appid": 1823630, + "normalized_name": "魔法少女ですがダンジョンで無限に強くなってもいいですか" + }, + { + "appid": 1823670, + "normalized_name": "edessa school of wizardry" + }, + { + "appid": 1823700, + "normalized_name": "brawler bro's" + }, + { + "appid": 1823710, + "normalized_name": "hot springs story" + }, + { + "appid": 1823730, + "normalized_name": "alephant" + }, + { + "appid": 1823740, + "normalized_name": "drawize draw and guess" + }, + { + "appid": 1823750, + "normalized_name": "necrotopia" + }, + { + "appid": 1823760, + "normalized_name": "fighting mad lads" + }, + { + "appid": 1823790, + "normalized_name": "chesskoban cyber" + }, + { + "appid": 1823810, + "normalized_name": "nahka" + }, + { + "appid": 1823830, + "normalized_name": "basault vr" + }, + { + "appid": 1823840, + "normalized_name": "illusion lands" + }, + { + "appid": 1823890, + "normalized_name": "终暮黎明" + }, + { + "appid": 1823900, + "normalized_name": "creatures village" + }, + { + "appid": 1823910, + "normalized_name": "mondrian squares" + }, + { + "appid": 1823930, + "normalized_name": "wavetale" + }, + { + "appid": 1823940, + "normalized_name": "defenders glory" + }, + { + "appid": 1823950, + "normalized_name": "laysara summit kingdom" + }, + { + "appid": 1823980, + "normalized_name": "poorly drawn but horny" + }, + { + "appid": 1823990, + "normalized_name": "gravelord" + }, + { + "appid": 1824010, + "normalized_name": "quaqua" + }, + { + "appid": 1824020, + "normalized_name": "cruise ship handling" + }, + { + "appid": 1824040, + "normalized_name": "star shift rebellion" + }, + { + "appid": 1824070, + "normalized_name": "rejoinder" + }, + { + "appid": 1824080, + "normalized_name": "lul inc." + }, + { + "appid": 1824090, + "normalized_name": "goose vs zombies" + }, + { + "appid": 1824110, + "normalized_name": "hostlight" + }, + { + "appid": 1824120, + "normalized_name": "raia nova" + }, + { + "appid": 1824130, + "normalized_name": "outside the window" + }, + { + "appid": 1824150, + "normalized_name": "tales of terror" + }, + { + "appid": 1824160, + "normalized_name": "a noite sem fim" + }, + { + "appid": 1824170, + "normalized_name": "christmas mansion" + }, + { + "appid": 1824210, + "normalized_name": "istanbul ship simulator" + }, + { + "appid": 1824220, + "normalized_name": "chivalry 2" + }, + { + "appid": 1824250, + "normalized_name": "make her cum" + }, + { + "appid": 1824260, + "normalized_name": "scholar" + }, + { + "appid": 1824290, + "normalized_name": "100 pumpkins 2" + }, + { + "appid": 1824380, + "normalized_name": "legacy of aeroja" + }, + { + "appid": 1824390, + "normalized_name": "prototype blocks 2" + }, + { + "appid": 1824440, + "normalized_name": "hundred fires the rising of red star episode 1" + }, + { + "appid": 1824450, + "normalized_name": "ricochet" + }, + { + "appid": 1824480, + "normalized_name": "short stories paranoia" + }, + { + "appid": 1824520, + "normalized_name": "captmeow" + }, + { + "appid": 1824530, + "normalized_name": "flayl" + }, + { + "appid": 1824540, + "normalized_name": "touhou kimono blast" + }, + { + "appid": 1824570, + "normalized_name": "hedgehot battle strike" + }, + { + "appid": 1824580, + "normalized_name": "dungeon drafters" + }, + { + "appid": 1824590, + "normalized_name": "furry shakespeare two incredibly ripped absolutely shredded noble kinsmen" + }, + { + "appid": 1824710, + "normalized_name": "elements of dreams" + }, + { + "appid": 1824740, + "normalized_name": "黑白米:敷衍" + }, + { + "appid": 1824750, + "normalized_name": "no rage quit dude" + }, + { + "appid": 1824760, + "normalized_name": "hentai memory sexy couples" + }, + { + "appid": 1824800, + "normalized_name": "fast fruit" + }, + { + "appid": 1824830, + "normalized_name": "setr's auto battler" + }, + { + "appid": 1824840, + "normalized_name": "魔能纪元" + }, + { + "appid": 1824910, + "normalized_name": "magic disc golf" + }, + { + "appid": 1824960, + "normalized_name": "propagation paradise hotel" + }, + { + "appid": 1824970, + "normalized_name": "escape from cronos x" + }, + { + "appid": 1824990, + "normalized_name": "marmalade box" + }, + { + "appid": 1825000, + "normalized_name": "terra puzzle 3d" + }, + { + "appid": 1825010, + "normalized_name": "mma championship" + }, + { + "appid": 1825020, + "normalized_name": "forbidden" + }, + { + "appid": 1825030, + "normalized_name": "daomei village" + }, + { + "appid": 1825040, + "normalized_name": "grow flow" + }, + { + "appid": 1825050, + "normalized_name": "群青" + }, + { + "appid": 1825060, + "normalized_name": "poly memory cats" + }, + { + "appid": 1825070, + "normalized_name": "modest eyes" + }, + { + "appid": 1825080, + "normalized_name": "explosive snooker" + }, + { + "appid": 1825110, + "normalized_name": "castle of secrets" + }, + { + "appid": 1825130, + "normalized_name": "ignis corruption" + }, + { + "appid": 1825150, + "normalized_name": "cells of immunity" + }, + { + "appid": 1825160, + "normalized_name": "the backrooms" + }, + { + "appid": 1825180, + "normalized_name": "auro the bunny" + }, + { + "appid": 1825200, + "normalized_name": "the open league" + }, + { + "appid": 1825210, + "normalized_name": "destructure among debris" + }, + { + "appid": 1825220, + "normalized_name": "the mirst" + }, + { + "appid": 1825250, + "normalized_name": "touhou lensed night sky kaseigai" + }, + { + "appid": 1825290, + "normalized_name": "vnesis" + }, + { + "appid": 1825310, + "normalized_name": "lupa" + }, + { + "appid": 1825350, + "normalized_name": "haunted hotel silent waters collector's" + }, + { + "appid": 1825380, + "normalized_name": "maroon berets 2030" + }, + { + "appid": 1825390, + "normalized_name": "madman" + }, + { + "appid": 1825440, + "normalized_name": "cupid story first date" + }, + { + "appid": 1825460, + "normalized_name": "pc virtual lab" + }, + { + "appid": 1825480, + "normalized_name": "rendezvous shadows of the past" + }, + { + "appid": 1825510, + "normalized_name": "resurrection of mind" + }, + { + "appid": 1825530, + "normalized_name": "little sparks" + }, + { + "appid": 1825540, + "normalized_name": "superposition" + }, + { + "appid": 1825550, + "normalized_name": "acceptance" + }, + { + "appid": 1825620, + "normalized_name": "blank frame" + }, + { + "appid": 1825650, + "normalized_name": "human apocalypse prologue" + }, + { + "appid": 1825670, + "normalized_name": "santa's slippery slope (ski stunts)" + }, + { + "appid": 1825690, + "normalized_name": "starship wars" + }, + { + "appid": 1825700, + "normalized_name": "push battle" + }, + { + "appid": 1825740, + "normalized_name": "fat baby" + }, + { + "appid": 1825750, + "normalized_name": "soulworker your destiny awaits" + }, + { + "appid": 1825760, + "normalized_name": "endura" + }, + { + "appid": 1825850, + "normalized_name": "pixel game maker series medium naut" + }, + { + "appid": 1825880, + "normalized_name": "作死吧!up主!" + }, + { + "appid": 1825900, + "normalized_name": "blink planets" + }, + { + "appid": 1825930, + "normalized_name": "孤岛海妖 the sea demon" + }, + { + "appid": 1825970, + "normalized_name": "blockworks" + }, + { + "appid": 1825990, + "normalized_name": "unidentified" + }, + { + "appid": 1826000, + "normalized_name": "comit legends" + }, + { + "appid": 1826020, + "normalized_name": "shred & tear explosive kajun" + }, + { + "appid": 1826030, + "normalized_name": "シオリノコトハ dark reflections" + }, + { + "appid": 1826060, + "normalized_name": "night loops" + }, + { + "appid": 1826070, + "normalized_name": "alone" + }, + { + "appid": 1826080, + "normalized_name": "galactic defense automation" + }, + { + "appid": 1826090, + "normalized_name": "kalyzmyr" + }, + { + "appid": 1826100, + "normalized_name": "legend of egypt jewels of the gods 2" + }, + { + "appid": 1826120, + "normalized_name": "hive defender" + }, + { + "appid": 1826130, + "normalized_name": "yougen" + }, + { + "appid": 1826160, + "normalized_name": "the asmodian princesses and the witch in the forest" + }, + { + "appid": 1826200, + "normalized_name": "beetlequest 2" + }, + { + "appid": 1826210, + "normalized_name": "遺跡大冒險" + }, + { + "appid": 1826230, + "normalized_name": "protect your soul" + }, + { + "appid": 1826290, + "normalized_name": "wwii tanks battlefield" + }, + { + "appid": 1826300, + "normalized_name": "sotano mystery escape room adventure" + }, + { + "appid": 1826350, + "normalized_name": "escape sand dunes" + }, + { + "appid": 1826380, + "normalized_name": "mayhem brawler ii best of both worlds" + }, + { + "appid": 1826400, + "normalized_name": "crave" + }, + { + "appid": 1826410, + "normalized_name": "runnyk" + }, + { + "appid": 1826420, + "normalized_name": "carx drift racing online 2" + }, + { + "appid": 1826450, + "normalized_name": "idling idol" + }, + { + "appid": 1826460, + "normalized_name": "shopping mall renovator" + }, + { + "appid": 1826480, + "normalized_name": "escape master" + }, + { + "appid": 1826490, + "normalized_name": "marco & polo go round" + }, + { + "appid": 1826530, + "normalized_name": "forsaken" + }, + { + "appid": 1826540, + "normalized_name": "no haste" + }, + { + "appid": 1826570, + "normalized_name": "first class escape 2 head in the clouds" + }, + { + "appid": 1826590, + "normalized_name": "incoming war" + }, + { + "appid": 1826640, + "normalized_name": "wall to wall" + }, + { + "appid": 1826650, + "normalized_name": "ahhnalog 112" + }, + { + "appid": 1826660, + "normalized_name": "crystal goddess" + }, + { + "appid": 1826680, + "normalized_name": "halberd black" + }, + { + "appid": 1826690, + "normalized_name": "shrines of power" + }, + { + "appid": 1826710, + "normalized_name": "creature keeper" + }, + { + "appid": 1826760, + "normalized_name": "among the zombies" + }, + { + "appid": 1826770, + "normalized_name": "alice is dead hearts and diamonds" + }, + { + "appid": 1826820, + "normalized_name": "john's tombstone" + }, + { + "appid": 1826830, + "normalized_name": "nova squadron" + }, + { + "appid": 1826860, + "normalized_name": "sewer rave" + }, + { + "appid": 1826880, + "normalized_name": "vicious growth" + }, + { + "appid": 1826900, + "normalized_name": "recursor" + }, + { + "appid": 1826910, + "normalized_name": "please subscribe" + }, + { + "appid": 1826920, + "normalized_name": "sex girlfriend simulator" + }, + { + "appid": 1826980, + "normalized_name": "freestylefootball r" + }, + { + "appid": 1827040, + "normalized_name": "hackingball3d" + }, + { + "appid": 1827060, + "normalized_name": "tower of ascension" + }, + { + "appid": 1827180, + "normalized_name": "toram online" + }, + { + "appid": 1827200, + "normalized_name": "rsod" + }, + { + "appid": 1827220, + "normalized_name": "small island" + }, + { + "appid": 1827240, + "normalized_name": "plague lords witch hunt" + }, + { + "appid": 1827260, + "normalized_name": "the lawyer episode 1 the white bag" + }, + { + "appid": 1827290, + "normalized_name": "turpedo" + }, + { + "appid": 1827300, + "normalized_name": "alone but strong" + }, + { + "appid": 1827310, + "normalized_name": "imoto no yume" + }, + { + "appid": 1827430, + "normalized_name": "yum yum cookstar" + }, + { + "appid": 1827440, + "normalized_name": "sailors age of corsairs" + }, + { + "appid": 1827450, + "normalized_name": "champion of venus" + }, + { + "appid": 1827460, + "normalized_name": "nonstop" + }, + { + "appid": 1827500, + "normalized_name": "generations of destruction" + }, + { + "appid": 1827550, + "normalized_name": "survival girls" + }, + { + "appid": 1827560, + "normalized_name": "the crown stones mirrah" + }, + { + "appid": 1827570, + "normalized_name": "hereford 1642" + }, + { + "appid": 1827600, + "normalized_name": "newton going home" + }, + { + "appid": 1827640, + "normalized_name": "dino mercs" + }, + { + "appid": 1827650, + "normalized_name": "star knightess aura" + }, + { + "appid": 1827660, + "normalized_name": "loco shortline operations" + }, + { + "appid": 1827680, + "normalized_name": "枝江畔之梦" + }, + { + "appid": 1827690, + "normalized_name": "chemists area of infection" + }, + { + "appid": 1827700, + "normalized_name": "microbrewery tycoon" + }, + { + "appid": 1827720, + "normalized_name": "sabotris" + }, + { + "appid": 1827730, + "normalized_name": "adarin farm" + }, + { + "appid": 1827740, + "normalized_name": "kombinera" + }, + { + "appid": 1827760, + "normalized_name": "dungeon death" + }, + { + "appid": 1827770, + "normalized_name": "bouncy bunnies" + }, + { + "appid": 1827780, + "normalized_name": "roof genocide" + }, + { + "appid": 1827820, + "normalized_name": "kaila" + }, + { + "appid": 1827840, + "normalized_name": "lunaquest" + }, + { + "appid": 1827870, + "normalized_name": "darkhouse" + }, + { + "appid": 1827900, + "normalized_name": "cyber dungeonz rpg" + }, + { + "appid": 1827910, + "normalized_name": "星の欠片の物語。しかけ版" + }, + { + "appid": 1827940, + "normalized_name": "last lovers 绿洲之爱" + }, + { + "appid": 1827950, + "normalized_name": "golden axe idol" + }, + { + "appid": 1827960, + "normalized_name": "退魔聖女マリベル" + }, + { + "appid": 1827970, + "normalized_name": "stamp" + }, + { + "appid": 1827980, + "normalized_name": "idle spiral" + }, + { + "appid": 1828010, + "normalized_name": "deadly nightmare" + }, + { + "appid": 1828030, + "normalized_name": "save the llama" + }, + { + "appid": 1828040, + "normalized_name": "dream/strung blossoming love" + }, + { + "appid": 1828070, + "normalized_name": "jester street card counting trainer" + }, + { + "appid": 1828080, + "normalized_name": "太公传承·封神" + }, + { + "appid": 1828090, + "normalized_name": "krypt" + }, + { + "appid": 1828100, + "normalized_name": "hacker simulator free trial" + }, + { + "appid": 1828140, + "normalized_name": "末世天醒" + }, + { + "appid": 1828160, + "normalized_name": "umille" + }, + { + "appid": 1828180, + "normalized_name": "ratomon 2" + }, + { + "appid": 1828220, + "normalized_name": "walk with the living" + }, + { + "appid": 1828270, + "normalized_name": "total anarchy pavilion city" + }, + { + "appid": 1828280, + "normalized_name": "infinity girl" + }, + { + "appid": 1828310, + "normalized_name": "skate or don't!" + }, + { + "appid": 1828320, + "normalized_name": "super life franchise lord" + }, + { + "appid": 1828380, + "normalized_name": "anxious suffering in the forest" + }, + { + "appid": 1828400, + "normalized_name": "ghoul dungeon" + }, + { + "appid": 1828410, + "normalized_name": "survive the island" + }, + { + "appid": 1828450, + "normalized_name": "squirrel knight" + }, + { + "appid": 1828490, + "normalized_name": "gomu" + }, + { + "appid": 1828510, + "normalized_name": "childlike(차일드라이크)" + }, + { + "appid": 1828540, + "normalized_name": "九州风流" + }, + { + "appid": 1828550, + "normalized_name": "computer physics simulator 2023" + }, + { + "appid": 1828580, + "normalized_name": "average4k" + }, + { + "appid": 1828630, + "normalized_name": "幻想枝魂 soul fantasy" + }, + { + "appid": 1828640, + "normalized_name": "illusioncircle" + }, + { + "appid": 1828650, + "normalized_name": "the silent kingdom" + }, + { + "appid": 1828660, + "normalized_name": "worst world" + }, + { + "appid": 1828690, + "normalized_name": "security booth director's cut" + }, + { + "appid": 1828700, + "normalized_name": "celestial project" + }, + { + "appid": 1828710, + "normalized_name": "tumble" + }, + { + "appid": 1828720, + "normalized_name": "animal sanctuary" + }, + { + "appid": 1828740, + "normalized_name": "my nemesis and hero slice of life boys love (bl) visual novel" + }, + { + "appid": 1828750, + "normalized_name": "they came from below" + }, + { + "appid": 1828770, + "normalized_name": "perfect balance" + }, + { + "appid": 1828780, + "normalized_name": "midnight stories 4" + }, + { + "appid": 1828800, + "normalized_name": "arksync" + }, + { + "appid": 1828830, + "normalized_name": "the beresford family" + }, + { + "appid": 1828870, + "normalized_name": "tavern crawl" + }, + { + "appid": 1828900, + "normalized_name": "stickit" + }, + { + "appid": 1828910, + "normalized_name": "viy retold story" + }, + { + "appid": 1828940, + "normalized_name": "hidden magic town" + }, + { + "appid": 1828950, + "normalized_name": "brave princess milia" + }, + { + "appid": 1828970, + "normalized_name": "maid harem with futa" + }, + { + "appid": 1829000, + "normalized_name": "puputan legend vr" + }, + { + "appid": 1829010, + "normalized_name": "world of cube" + }, + { + "appid": 1829070, + "normalized_name": "armed and armoured" + }, + { + "appid": 1829080, + "normalized_name": "遊んで将棋が強くなる! 銀星将棋dx2" + }, + { + "appid": 1829090, + "normalized_name": "遊んで囲碁が強くなる!銀星囲碁dx" + }, + { + "appid": 1829110, + "normalized_name": "hogvalord the ranch" + }, + { + "appid": 1829120, + "normalized_name": "carrier commander" + }, + { + "appid": 1829140, + "normalized_name": "resistance 204x" + }, + { + "appid": 1829170, + "normalized_name": "boxes and cutouts" + }, + { + "appid": 1829200, + "normalized_name": "kandra the moonwalker" + }, + { + "appid": 1829240, + "normalized_name": "考古行动" + }, + { + "appid": 1829250, + "normalized_name": "the wizardz dungeon" + }, + { + "appid": 1829260, + "normalized_name": "space salvage" + }, + { + "appid": 1829270, + "normalized_name": "roadout" + }, + { + "appid": 1829310, + "normalized_name": "corsair`s madness" + }, + { + "appid": 1829370, + "normalized_name": "death horizon reloaded" + }, + { + "appid": 1829420, + "normalized_name": "before the night" + }, + { + "appid": 1829430, + "normalized_name": "rootlash" + }, + { + "appid": 1829450, + "normalized_name": "dr. kobushi's labyrinthine laboratory" + }, + { + "appid": 1829470, + "normalized_name": "melody's escape 2" + }, + { + "appid": 1829490, + "normalized_name": "dick hook" + }, + { + "appid": 1829500, + "normalized_name": "quizpoker quiz and poker mix" + }, + { + "appid": 1829520, + "normalized_name": "powerlust" + }, + { + "appid": 1829540, + "normalized_name": "seashell" + }, + { + "appid": 1829560, + "normalized_name": "necroblade" + }, + { + "appid": 1829570, + "normalized_name": "garden of the mind" + }, + { + "appid": 1829620, + "normalized_name": "late bird" + }, + { + "appid": 1829640, + "normalized_name": "sigh of the abyss shadow bonds ▪ prologue" + }, + { + "appid": 1829650, + "normalized_name": "sekai to sekai no mannaka de" + }, + { + "appid": 1829700, + "normalized_name": "super brawl rush" + }, + { + "appid": 1829730, + "normalized_name": "welcome to your immune system" + }, + { + "appid": 1829740, + "normalized_name": "guardian mage vr" + }, + { + "appid": 1829760, + "normalized_name": "game of seven" + }, + { + "appid": 1829800, + "normalized_name": "super powers old maid~3days~" + }, + { + "appid": 1829810, + "normalized_name": "legacy of epstein bad omen" + }, + { + "appid": 1829850, + "normalized_name": "crystal tales tactics echoes of the libertas war" + }, + { + "appid": 1829880, + "normalized_name": "spin puzzle" + }, + { + "appid": 1829910, + "normalized_name": "cute cats 2" + }, + { + "appid": 1829920, + "normalized_name": "aluna rift" + }, + { + "appid": 1829940, + "normalized_name": "downfall of krynto" + }, + { + "appid": 1829960, + "normalized_name": "zephyrus prelude" + }, + { + "appid": 1829980, + "normalized_name": "café stella and the reaper's butterflies" + }, + { + "appid": 1830000, + "normalized_name": "block city bus" + }, + { + "appid": 1830040, + "normalized_name": "false skies" + }, + { + "appid": 1830050, + "normalized_name": "september 28 pizza" + }, + { + "appid": 1830100, + "normalized_name": "space survival" + }, + { + "appid": 1830110, + "normalized_name": "the signal" + }, + { + "appid": 1830130, + "normalized_name": "planetary delivery" + }, + { + "appid": 1830150, + "normalized_name": "三極姬 4 天華繚亂 天命之戀繪卷( sanoku hime 4~tenka ryouran tenmei no koi emaki" + }, + { + "appid": 1830160, + "normalized_name": "reloader subject_alpha" + }, + { + "appid": 1830170, + "normalized_name": "cosmic security" + }, + { + "appid": 1830180, + "normalized_name": "louny balloony" + }, + { + "appid": 1830190, + "normalized_name": "solar lewd hollow starring doug fooker" + }, + { + "appid": 1830210, + "normalized_name": "the tribulation entanglement" + }, + { + "appid": 1830240, + "normalized_name": "slums of tetsoidea" + }, + { + "appid": 1830260, + "normalized_name": "mystical riddles snowy peak hotel collector's" + }, + { + "appid": 1830270, + "normalized_name": "a jornada de vanildo" + }, + { + "appid": 1830280, + "normalized_name": "超级公司" + }, + { + "appid": 1830290, + "normalized_name": "fall of an empire" + }, + { + "appid": 1830320, + "normalized_name": "lords of ravage" + }, + { + "appid": 1830350, + "normalized_name": "lost in parallels" + }, + { + "appid": 1830430, + "normalized_name": "grimoire groves" + }, + { + "appid": 1830450, + "normalized_name": "square farm" + }, + { + "appid": 1830480, + "normalized_name": "50" + }, + { + "appid": 1830490, + "normalized_name": "陌生人" + }, + { + "appid": 1830540, + "normalized_name": "rallyallyally" + }, + { + "appid": 1830620, + "normalized_name": "pleasure party" + }, + { + "appid": 1830630, + "normalized_name": "overpass 2" + }, + { + "appid": 1830640, + "normalized_name": "minigolf adventure" + }, + { + "appid": 1830700, + "normalized_name": "screenplay ccg" + }, + { + "appid": 1830720, + "normalized_name": "mothered a role playing horror game" + }, + { + "appid": 1830730, + "normalized_name": "unaki" + }, + { + "appid": 1830740, + "normalized_name": "moto roller" + }, + { + "appid": 1830760, + "normalized_name": "dungeon conundrum" + }, + { + "appid": 1830770, + "normalized_name": "all in your head" + }, + { + "appid": 1830780, + "normalized_name": "hentai houseparty gyaru gangbang" + }, + { + "appid": 1830830, + "normalized_name": "splash fly fire" + }, + { + "appid": 1830840, + "normalized_name": "the planet crafter prologue" + }, + { + "appid": 1830850, + "normalized_name": "bethany's talishop" + }, + { + "appid": 1830870, + "normalized_name": "последний день в урюпинске" + }, + { + "appid": 1830900, + "normalized_name": "soulless creation" + }, + { + "appid": 1830910, + "normalized_name": "cow girls" + }, + { + "appid": 1830950, + "normalized_name": "war in other space" + }, + { + "appid": 1830970, + "normalized_name": "the last flame" + }, + { + "appid": 1830980, + "normalized_name": "vrkanoid brick breaking game" + }, + { + "appid": 1831010, + "normalized_name": "buy it now!" + }, + { + "appid": 1831020, + "normalized_name": "neuroworm" + }, + { + "appid": 1831050, + "normalized_name": "lip! lewd idol project vol. 1 hot springs and beach episodes" + }, + { + "appid": 1831060, + "normalized_name": "chesskoban bishop" + }, + { + "appid": 1831090, + "normalized_name": "slide furry boys" + }, + { + "appid": 1831100, + "normalized_name": "foot fetish fortress voltitan vs. the jundoh empire vol.1" + }, + { + "appid": 1831110, + "normalized_name": "train kingdom" + }, + { + "appid": 1831120, + "normalized_name": "escape the huntsman" + }, + { + "appid": 1831130, + "normalized_name": "vr hentai hot" + }, + { + "appid": 1831140, + "normalized_name": "nonograms 22" + }, + { + "appid": 1831150, + "normalized_name": "gokart newmexico" + }, + { + "appid": 1831160, + "normalized_name": "monkey barrels" + }, + { + "appid": 1831190, + "normalized_name": "invisible crush" + }, + { + "appid": 1831230, + "normalized_name": "towerfall with friends" + }, + { + "appid": 1831250, + "normalized_name": "wasteland express 废土快递" + }, + { + "appid": 1831260, + "normalized_name": "my therapist is a futanari" + }, + { + "appid": 1831270, + "normalized_name": "神兽ol" + }, + { + "appid": 1831290, + "normalized_name": "与我签订契约,成为救世勇者吧!" + }, + { + "appid": 1831320, + "normalized_name": "rescue team power eaters" + }, + { + "appid": 1831340, + "normalized_name": "alice's burger shop" + }, + { + "appid": 1831350, + "normalized_name": "carta marina" + }, + { + "appid": 1831370, + "normalized_name": "polyshot" + }, + { + "appid": 1831380, + "normalized_name": "incarnation lifetimes" + }, + { + "appid": 1831400, + "normalized_name": "cbs desolation" + }, + { + "appid": 1831410, + "normalized_name": "poly vita" + }, + { + "appid": 1831480, + "normalized_name": "sandbox world" + }, + { + "appid": 1831520, + "normalized_name": "gravitypunk" + }, + { + "appid": 1831530, + "normalized_name": "pc creator pc building simulator" + }, + { + "appid": 1831540, + "normalized_name": "uss tempest spaceship simulator" + }, + { + "appid": 1831550, + "normalized_name": "aim god" + }, + { + "appid": 1831560, + "normalized_name": "sprite hunter" + }, + { + "appid": 1831580, + "normalized_name": "bathtime toys" + }, + { + "appid": 1831610, + "normalized_name": "astral dream or reality" + }, + { + "appid": 1831650, + "normalized_name": "doggo" + }, + { + "appid": 1831670, + "normalized_name": "eldorado fps" + }, + { + "appid": 1831680, + "normalized_name": "waifu crush" + }, + { + "appid": 1831700, + "normalized_name": "tin hearts" + }, + { + "appid": 1831720, + "normalized_name": "treasure temples" + }, + { + "appid": 1831740, + "normalized_name": "december 24th" + }, + { + "appid": 1831770, + "normalized_name": "only society arena" + }, + { + "appid": 1831780, + "normalized_name": "hyperjustice" + }, + { + "appid": 1831790, + "normalized_name": "猫咪模拟器(cat town)" + }, + { + "appid": 1831800, + "normalized_name": "grief like a stray dog" + }, + { + "appid": 1831830, + "normalized_name": "chessarama" + }, + { + "appid": 1831850, + "normalized_name": "plentypede" + }, + { + "appid": 1831870, + "normalized_name": "the hotel" + }, + { + "appid": 1831900, + "normalized_name": "ue5 shooter game" + }, + { + "appid": 1831930, + "normalized_name": "lawnmower city" + }, + { + "appid": 1831950, + "normalized_name": "survive lviv" + }, + { + "appid": 1831960, + "normalized_name": "烈火冲锋the charge is the fire" + }, + { + "appid": 1831970, + "normalized_name": "ritual tournament" + }, + { + "appid": 1831980, + "normalized_name": "idle superpowers" + }, + { + "appid": 1831990, + "normalized_name": "comixxx memories" + }, + { + "appid": 1832000, + "normalized_name": "hero clicker" + }, + { + "appid": 1832010, + "normalized_name": "legacy the last pure heart" + }, + { + "appid": 1832030, + "normalized_name": "yonder world interview with the void" + }, + { + "appid": 1832040, + "normalized_name": "flintlock the siege of dawn" + }, + { + "appid": 1832050, + "normalized_name": "all quiet roads" + }, + { + "appid": 1832070, + "normalized_name": "desperate vlad" + }, + { + "appid": 1832090, + "normalized_name": "turtles" + }, + { + "appid": 1832110, + "normalized_name": "urchins and ink" + }, + { + "appid": 1832130, + "normalized_name": "vine" + }, + { + "appid": 1832140, + "normalized_name": "epic tower for tireless lovers" + }, + { + "appid": 1832150, + "normalized_name": "enduring dreamers freya" + }, + { + "appid": 1832170, + "normalized_name": "rise of the robots x" + }, + { + "appid": 1832180, + "normalized_name": "hyper hyper hook" + }, + { + "appid": 1832220, + "normalized_name": "blind fate edo no yami — dojo" + }, + { + "appid": 1832230, + "normalized_name": "color flash" + }, + { + "appid": 1832240, + "normalized_name": "the feathered serpent" + }, + { + "appid": 1832250, + "normalized_name": "christmas stories yulemen collector's" + }, + { + "appid": 1832260, + "normalized_name": "chromarena" + }, + { + "appid": 1832270, + "normalized_name": "aspect of light" + }, + { + "appid": 1832280, + "normalized_name": "mugen abisu" + }, + { + "appid": 1832300, + "normalized_name": "fantasy memory sexy mermaids" + }, + { + "appid": 1832370, + "normalized_name": "charades movie one" + }, + { + "appid": 1832380, + "normalized_name": "the albino hunter {revamp}" + }, + { + "appid": 1832480, + "normalized_name": "space overlord i got isekai'd into a sci fi world" + }, + { + "appid": 1832560, + "normalized_name": "late photographer" + }, + { + "appid": 1832580, + "normalized_name": "world fit" + }, + { + "appid": 1832620, + "normalized_name": "无限战魂 infinity battlesoul" + }, + { + "appid": 1832640, + "normalized_name": "mirror 2 project x" + }, + { + "appid": 1832680, + "normalized_name": "lovely anna" + }, + { + "appid": 1832690, + "normalized_name": "royal hentai boobs & pussies" + }, + { + "appid": 1832700, + "normalized_name": "diamond hands arena" + }, + { + "appid": 1832760, + "normalized_name": "darkblood reborn" + }, + { + "appid": 1832780, + "normalized_name": "seven cities" + }, + { + "appid": 1832790, + "normalized_name": "sumo stuntmen 7" + }, + { + "appid": 1832850, + "normalized_name": "anachroma" + }, + { + "appid": 1832950, + "normalized_name": "one more gate a wakfu legend" + }, + { + "appid": 1832980, + "normalized_name": "food poppers" + }, + { + "appid": 1832990, + "normalized_name": "samurai revenge" + }, + { + "appid": 1833020, + "normalized_name": "age of dynasty" + }, + { + "appid": 1833040, + "normalized_name": "晴末置雨" + }, + { + "appid": 1833060, + "normalized_name": "home survival" + }, + { + "appid": 1833080, + "normalized_name": "goofy dungeon" + }, + { + "appid": 1833130, + "normalized_name": "funmi" + }, + { + "appid": 1833170, + "normalized_name": "vie try again" + }, + { + "appid": 1833190, + "normalized_name": "the happy dismal town" + }, + { + "appid": 1833200, + "normalized_name": "dunecrawl" + }, + { + "appid": 1833240, + "normalized_name": "moe girl" + }, + { + "appid": 1833300, + "normalized_name": "epics of distant realm holy return" + }, + { + "appid": 1833340, + "normalized_name": "psi studios' anima" + }, + { + "appid": 1833350, + "normalized_name": "straight ahead" + }, + { + "appid": 1833360, + "normalized_name": "triclinium" + }, + { + "appid": 1833380, + "normalized_name": "izmir an independence simulator" + }, + { + "appid": 1833480, + "normalized_name": "bleed of fear" + }, + { + "appid": 1833490, + "normalized_name": "goodbye world" + }, + { + "appid": 1833530, + "normalized_name": "beatus creation solitaire" + }, + { + "appid": 1833540, + "normalized_name": "stars era abyss frontier" + }, + { + "appid": 1833550, + "normalized_name": "legendarium online" + }, + { + "appid": 1833560, + "normalized_name": "witchhazel woods" + }, + { + "appid": 1833570, + "normalized_name": "vampire syndicate gangs of moonfall" + }, + { + "appid": 1833620, + "normalized_name": "mad geometry" + }, + { + "appid": 1833650, + "normalized_name": "devil should die" + }, + { + "appid": 1833660, + "normalized_name": "evade the taxman" + }, + { + "appid": 1833670, + "normalized_name": "2048 3d" + }, + { + "appid": 1833680, + "normalized_name": "beatrider" + }, + { + "appid": 1833710, + "normalized_name": "my museum treasure hunter" + }, + { + "appid": 1833730, + "normalized_name": "our battle has just begun! episode 2" + }, + { + "appid": 1833770, + "normalized_name": "help me!" + }, + { + "appid": 1833820, + "normalized_name": "from red to green" + }, + { + "appid": 1833840, + "normalized_name": "lovely girls" + }, + { + "appid": 1833850, + "normalized_name": "helloworld escape" + }, + { + "appid": 1833860, + "normalized_name": "olympian knights" + }, + { + "appid": 1833870, + "normalized_name": "a million lightyears beyond" + }, + { + "appid": 1833890, + "normalized_name": "fish story gourmet puzzle" + }, + { + "appid": 1833900, + "normalized_name": "color slots" + }, + { + "appid": 1833920, + "normalized_name": "space balls" + }, + { + "appid": 1833930, + "normalized_name": "primasia (chapter one)" + }, + { + "appid": 1833950, + "normalized_name": "time reject" + }, + { + "appid": 1833960, + "normalized_name": "krai. digital poetry vol. 1" + }, + { + "appid": 1834000, + "normalized_name": "karu" + }, + { + "appid": 1834010, + "normalized_name": "desktop hacker" + }, + { + "appid": 1834110, + "normalized_name": "headland" + }, + { + "appid": 1834120, + "normalized_name": "icemaze cave skate escape" + }, + { + "appid": 1834140, + "normalized_name": "christmas sort puzzle" + }, + { + "appid": 1834170, + "normalized_name": "vector elite" + }, + { + "appid": 1834200, + "normalized_name": "lost in the storm" + }, + { + "appid": 1834220, + "normalized_name": "rooster" + }, + { + "appid": 1834290, + "normalized_name": "toy war cannon" + }, + { + "appid": 1834310, + "normalized_name": "100 hidden animalnaults felicat & laika" + }, + { + "appid": 1834320, + "normalized_name": "good luck stay safe" + }, + { + "appid": 1834370, + "normalized_name": "freakland" + }, + { + "appid": 1834390, + "normalized_name": "欲望忍者/desire ninja" + }, + { + "appid": 1834420, + "normalized_name": "keiko san (47) my co worker is a single mother" + }, + { + "appid": 1834430, + "normalized_name": "dots and dashes" + }, + { + "appid": 1834470, + "normalized_name": "horny pixels" + }, + { + "appid": 1834500, + "normalized_name": "做了个魔塔 just made a magetower" + }, + { + "appid": 1834530, + "normalized_name": "witch slide" + }, + { + "appid": 1834540, + "normalized_name": "spinning maze" + }, + { + "appid": 1834550, + "normalized_name": "dark flame" + }, + { + "appid": 1834560, + "normalized_name": "quick shot" + }, + { + "appid": 1834570, + "normalized_name": "mr meal" + }, + { + "appid": 1834580, + "normalized_name": "from heaven to earth" + }, + { + "appid": 1834620, + "normalized_name": "the shore vr" + }, + { + "appid": 1834640, + "normalized_name": "spy robot gateways to humanity" + }, + { + "appid": 1834690, + "normalized_name": "gunzo!" + }, + { + "appid": 1834700, + "normalized_name": "cultist astronaut" + }, + { + "appid": 1834710, + "normalized_name": "last bastion" + }, + { + "appid": 1834720, + "normalized_name": "blossom la jirafa saga" + }, + { + "appid": 1834740, + "normalized_name": "hyperblade" + }, + { + "appid": 1834750, + "normalized_name": "the unlikely prometheus" + }, + { + "appid": 1834760, + "normalized_name": "humanities legend hollow ascending" + }, + { + "appid": 1834820, + "normalized_name": "first bite" + }, + { + "appid": 1834870, + "normalized_name": "lily's well" + }, + { + "appid": 1834920, + "normalized_name": "countryball europe 1890" + }, + { + "appid": 1834930, + "normalized_name": "ion blade league" + }, + { + "appid": 1834940, + "normalized_name": "hen in the foxhouse" + }, + { + "appid": 1834950, + "normalized_name": "salaryman shi" + }, + { + "appid": 1834960, + "normalized_name": "neko secret homecoming" + }, + { + "appid": 1834980, + "normalized_name": "ritual night" + }, + { + "appid": 1835010, + "normalized_name": "blockies vr" + }, + { + "appid": 1835020, + "normalized_name": "bornwild • versus s1 prologue" + }, + { + "appid": 1835030, + "normalized_name": "traveler bird" + }, + { + "appid": 1835040, + "normalized_name": "pangaroids" + }, + { + "appid": 1835060, + "normalized_name": "christmas celebration with sakuya izayoi" + }, + { + "appid": 1835070, + "normalized_name": "gem raider 2" + }, + { + "appid": 1835080, + "normalized_name": "taste of heaven" + }, + { + "appid": 1835090, + "normalized_name": "flipped" + }, + { + "appid": 1835120, + "normalized_name": "pirate dragons" + }, + { + "appid": 1835190, + "normalized_name": "one last breath" + }, + { + "appid": 1835200, + "normalized_name": "titanic fall of a legend" + }, + { + "appid": 1835210, + "normalized_name": "roadworks 2" + }, + { + "appid": 1835220, + "normalized_name": "illumi naughty ;)" + }, + { + "appid": 1835240, + "normalized_name": "spiritfall" + }, + { + "appid": 1835250, + "normalized_name": "escape" + }, + { + "appid": 1835260, + "normalized_name": "brewmastery tavern simulator" + }, + { + "appid": 1835290, + "normalized_name": "crates n' mohawks" + }, + { + "appid": 1835310, + "normalized_name": "babba yagga woodboy" + }, + { + "appid": 1835330, + "normalized_name": "aluminium" + }, + { + "appid": 1835350, + "normalized_name": "道不可道" + }, + { + "appid": 1835360, + "normalized_name": "灵子:重返荒野" + }, + { + "appid": 1835370, + "normalized_name": "balls and dungeons" + }, + { + "appid": 1835440, + "normalized_name": "você é um defunto mecânico" + }, + { + "appid": 1835460, + "normalized_name": "variable pictogram jump" + }, + { + "appid": 1835470, + "normalized_name": "spell crisis" + }, + { + "appid": 1835490, + "normalized_name": "slayer survive & thrive" + }, + { + "appid": 1835500, + "normalized_name": "locotier" + }, + { + "appid": 1835510, + "normalized_name": "the house on holland hill" + }, + { + "appid": 1835530, + "normalized_name": "zombie slaughter vr" + }, + { + "appid": 1835540, + "normalized_name": "jail escape plan vr" + }, + { + "appid": 1835560, + "normalized_name": "endless zombie weekend" + }, + { + "appid": 1835570, + "normalized_name": "biocrisis return 2 the lab" + }, + { + "appid": 1835580, + "normalized_name": "search all seashells" + }, + { + "appid": 1835640, + "normalized_name": "the search for mr fimple" + }, + { + "appid": 1835670, + "normalized_name": "fall up" + }, + { + "appid": 1835690, + "normalized_name": "shawncena121" + }, + { + "appid": 1835790, + "normalized_name": "neon horizon eclipse" + }, + { + "appid": 1835810, + "normalized_name": "amelie" + }, + { + "appid": 1835820, + "normalized_name": "betwin" + }, + { + "appid": 1835830, + "normalized_name": "dead end aegis" + }, + { + "appid": 1835840, + "normalized_name": "quarantineer" + }, + { + "appid": 1835870, + "normalized_name": "黑猫魔法师" + }, + { + "appid": 1835930, + "normalized_name": "燃爆英雄(bomb hero)" + }, + { + "appid": 1835970, + "normalized_name": "icewall" + }, + { + "appid": 1836030, + "normalized_name": "took the immortal hero" + }, + { + "appid": 1836040, + "normalized_name": "tadahito story of ellistown version." + }, + { + "appid": 1836120, + "normalized_name": "quickerflak" + }, + { + "appid": 1836150, + "normalized_name": "freegglers" + }, + { + "appid": 1836160, + "normalized_name": "panelki" + }, + { + "appid": 1836170, + "normalized_name": "castan" + }, + { + "appid": 1836180, + "normalized_name": "turn off the light" + }, + { + "appid": 1836210, + "normalized_name": "blocky snake" + }, + { + "appid": 1836220, + "normalized_name": "frigore" + }, + { + "appid": 1836230, + "normalized_name": "evening ecchi" + }, + { + "appid": 1836240, + "normalized_name": "paintball" + }, + { + "appid": 1836280, + "normalized_name": "billy 101" + }, + { + "appid": 1836290, + "normalized_name": "they die tomorrow" + }, + { + "appid": 1836310, + "normalized_name": "apotheorasis • lab of the blind gods | prologue" + }, + { + "appid": 1836320, + "normalized_name": "dream storm" + }, + { + "appid": 1836350, + "normalized_name": "yours truly" + }, + { + "appid": 1836360, + "normalized_name": "catherine ragnor and the legend of the flying dutchman" + }, + { + "appid": 1836390, + "normalized_name": "blank space" + }, + { + "appid": 1836400, + "normalized_name": "mossfield origins" + }, + { + "appid": 1836420, + "normalized_name": "monster girl invasion rpg part 1" + }, + { + "appid": 1836440, + "normalized_name": "the hellbrand" + }, + { + "appid": 1836450, + "normalized_name": "monster hunter rise sunbreak demo" + }, + { + "appid": 1836500, + "normalized_name": "memory puzzle hentai angels" + }, + { + "appid": 1836510, + "normalized_name": "skylark" + }, + { + "appid": 1836520, + "normalized_name": "wailing guignol" + }, + { + "appid": 1836550, + "normalized_name": "tap wizard 2" + }, + { + "appid": 1836560, + "normalized_name": "aether & iron" + }, + { + "appid": 1836590, + "normalized_name": "sex dating trip" + }, + { + "appid": 1836600, + "normalized_name": "grass cut" + }, + { + "appid": 1836660, + "normalized_name": "super night riders s1" + }, + { + "appid": 1836680, + "normalized_name": "slidetracked" + }, + { + "appid": 1836690, + "normalized_name": "red bash" + }, + { + "appid": 1836730, + "normalized_name": "echo point nova" + }, + { + "appid": 1836740, + "normalized_name": "elemgate" + }, + { + "appid": 1836770, + "normalized_name": "maximum fighterz direct offensive action" + }, + { + "appid": 1836790, + "normalized_name": "amshay" + }, + { + "appid": 1836840, + "normalized_name": "farmwand" + }, + { + "appid": 1836850, + "normalized_name": "the secret life of dorian pink" + }, + { + "appid": 1836860, + "normalized_name": "neptunia x senran kagura ninja wars" + }, + { + "appid": 1836880, + "normalized_name": "yumeiri" + }, + { + "appid": 1836890, + "normalized_name": "blaster alert" + }, + { + "appid": 1836900, + "normalized_name": "netherspace 2" + }, + { + "appid": 1836920, + "normalized_name": "hunt or haunt" + }, + { + "appid": 1836940, + "normalized_name": "aria and the secret of the labyrinth" + }, + { + "appid": 1836950, + "normalized_name": "coma lost in the maze" + }, + { + "appid": 1836970, + "normalized_name": "堕天者 ~back to origin~" + }, + { + "appid": 1836980, + "normalized_name": "fortune & famine" + }, + { + "appid": 1837000, + "normalized_name": "two world portal" + }, + { + "appid": 1837060, + "normalized_name": "rome 2077 tactics" + }, + { + "appid": 1837090, + "normalized_name": "回合英雄 round hero" + }, + { + "appid": 1837130, + "normalized_name": "星塔星夜monobehevo" + }, + { + "appid": 1837140, + "normalized_name": "25°n 71°w" + }, + { + "appid": 1837160, + "normalized_name": "action ball" + }, + { + "appid": 1837190, + "normalized_name": "flip td tower defense" + }, + { + "appid": 1837200, + "normalized_name": "一坨便便" + }, + { + "appid": 1837210, + "normalized_name": "rabbit meadow" + }, + { + "appid": 1837220, + "normalized_name": "psalm 5 9 13" + }, + { + "appid": 1837230, + "normalized_name": "jerez's arena ⅱ" + }, + { + "appid": 1837250, + "normalized_name": "healer&phoenix" + }, + { + "appid": 1837280, + "normalized_name": "lost island" + }, + { + "appid": 1837330, + "normalized_name": "gibbon beyond the trees" + }, + { + "appid": 1837340, + "normalized_name": "grimgrad" + }, + { + "appid": 1837400, + "normalized_name": "kargo" + }, + { + "appid": 1837440, + "normalized_name": "pyramid quest" + }, + { + "appid": 1837480, + "normalized_name": "vietnam war" + }, + { + "appid": 1837500, + "normalized_name": "knight jones and dragons fall" + }, + { + "appid": 1837510, + "normalized_name": "kawaii slime arena" + }, + { + "appid": 1837530, + "normalized_name": "project myriad 2" + }, + { + "appid": 1837550, + "normalized_name": "biblios dice" + }, + { + "appid": 1837570, + "normalized_name": "boat simulator apprentice" + }, + { + "appid": 1837580, + "normalized_name": "mia and the dragon princess" + }, + { + "appid": 1837590, + "normalized_name": "hammerground splat!" + }, + { + "appid": 1837610, + "normalized_name": "totally normal boyfriend 🔪" + }, + { + "appid": 1837620, + "normalized_name": "sans logique" + }, + { + "appid": 1837630, + "normalized_name": "box's dream" + }, + { + "appid": 1837650, + "normalized_name": "chicken journey" + }, + { + "appid": 1837670, + "normalized_name": "joutsen ara" + }, + { + "appid": 1837690, + "normalized_name": "archtower" + }, + { + "appid": 1837700, + "normalized_name": "impossibubble" + }, + { + "appid": 1837730, + "normalized_name": "loot list" + }, + { + "appid": 1837780, + "normalized_name": "spellcaster" + }, + { + "appid": 1837800, + "normalized_name": "beyond the board dtda games" + }, + { + "appid": 1837810, + "normalized_name": "blue chips economic multiplayer board game" + }, + { + "appid": 1837820, + "normalized_name": "faded stories greenberg" + }, + { + "appid": 1837840, + "normalized_name": "catmxn chapter 1" + }, + { + "appid": 1837870, + "normalized_name": "downroll" + }, + { + "appid": 1837890, + "normalized_name": "the gummiest bear challenge" + }, + { + "appid": 1837900, + "normalized_name": "sol 3000" + }, + { + "appid": 1837910, + "normalized_name": "bridgeteam ship simulator" + }, + { + "appid": 1837920, + "normalized_name": "mining cats" + }, + { + "appid": 1837970, + "normalized_name": "romance of the three kingdoms hadou" + }, + { + "appid": 1837980, + "normalized_name": "our elusive suffering" + }, + { + "appid": 1838030, + "normalized_name": "possession obsession" + }, + { + "appid": 1838070, + "normalized_name": "bok" + }, + { + "appid": 1838080, + "normalized_name": "agent stilus" + }, + { + "appid": 1838100, + "normalized_name": "conveyance" + }, + { + "appid": 1838120, + "normalized_name": "data_break" + }, + { + "appid": 1838130, + "normalized_name": "hellscape" + }, + { + "appid": 1838140, + "normalized_name": "snowman adventure" + }, + { + "appid": 1838200, + "normalized_name": "rettungssimulator" + }, + { + "appid": 1838220, + "normalized_name": "wave jumper" + }, + { + "appid": 1838240, + "normalized_name": "smipat and the lost bones" + }, + { + "appid": 1838250, + "normalized_name": "lost contact" + }, + { + "appid": 1838290, + "normalized_name": "loud my road to fame" + }, + { + "appid": 1838300, + "normalized_name": "glam pursuit" + }, + { + "appid": 1838340, + "normalized_name": "unwelcome" + }, + { + "appid": 1838380, + "normalized_name": "radiotelegraphist" + }, + { + "appid": 1838400, + "normalized_name": "rise of enigmas" + }, + { + "appid": 1838420, + "normalized_name": "app co tycoon" + }, + { + "appid": 1838480, + "normalized_name": "travel to golempark" + }, + { + "appid": 1838490, + "normalized_name": "bullet casters" + }, + { + "appid": 1838530, + "normalized_name": "5g vr football" + }, + { + "appid": 1838540, + "normalized_name": "stealth kart" + }, + { + "appid": 1838560, + "normalized_name": "the defaloon" + }, + { + "appid": 1838600, + "normalized_name": "moshcave" + }, + { + "appid": 1838650, + "normalized_name": "miss agatha's palace" + }, + { + "appid": 1838660, + "normalized_name": "item synthesis and dungeon exploration" + }, + { + "appid": 1838670, + "normalized_name": "the paribneur combination" + }, + { + "appid": 1838680, + "normalized_name": "dream fruit farm" + }, + { + "appid": 1838730, + "normalized_name": "warp lab" + }, + { + "appid": 1838740, + "normalized_name": "doxxed" + }, + { + "appid": 1838770, + "normalized_name": "shape td" + }, + { + "appid": 1838780, + "normalized_name": "ghost puncher" + }, + { + "appid": 1838790, + "normalized_name": "angry rocketeer frenzy" + }, + { + "appid": 1838800, + "normalized_name": "v fighter 2000" + }, + { + "appid": 1838810, + "normalized_name": "dwarffarian" + }, + { + "appid": 1838820, + "normalized_name": "life of a space force captain" + }, + { + "appid": 1838830, + "normalized_name": "paradox factor" + }, + { + "appid": 1838860, + "normalized_name": "79 pompeii" + }, + { + "appid": 1838900, + "normalized_name": "apocalypse floodgates" + }, + { + "appid": 1838970, + "normalized_name": "crush the castle legacy collection" + }, + { + "appid": 1838980, + "normalized_name": "polyion" + }, + { + "appid": 1839020, + "normalized_name": "o.u.t.t." + }, + { + "appid": 1839040, + "normalized_name": "deep base" + }, + { + "appid": 1839050, + "normalized_name": "hatmania" + }, + { + "appid": 1839060, + "normalized_name": "polylithic" + }, + { + "appid": 1839070, + "normalized_name": "bark" + }, + { + "appid": 1839080, + "normalized_name": "the pointless car chase refueled" + }, + { + "appid": 1839090, + "normalized_name": "putty putter" + }, + { + "appid": 1839150, + "normalized_name": "adult aura" + }, + { + "appid": 1839180, + "normalized_name": "curtain call" + }, + { + "appid": 1839190, + "normalized_name": "house flipper pets vr" + }, + { + "appid": 1839230, + "normalized_name": "元宇宙模拟器" + }, + { + "appid": 1839260, + "normalized_name": "mystery case files incident at pendle tower collector's" + }, + { + "appid": 1839280, + "normalized_name": "the forgotten empire" + }, + { + "appid": 1839320, + "normalized_name": "the future project" + }, + { + "appid": 1839340, + "normalized_name": "dawn of kagura hatsuka's story" + }, + { + "appid": 1839350, + "normalized_name": "dawn of kagura natsu's story" + }, + { + "appid": 1839360, + "normalized_name": "dawn of kagura keika's story" + }, + { + "appid": 1839380, + "normalized_name": "valkyrie spirits" + }, + { + "appid": 1839420, + "normalized_name": "the game" + }, + { + "appid": 1839430, + "normalized_name": "dolls nest" + }, + { + "appid": 1839440, + "normalized_name": "the fox's drawing world" + }, + { + "appid": 1839510, + "normalized_name": "rpgタイム!~ライトの伝説~" + }, + { + "appid": 1839540, + "normalized_name": "grocket" + }, + { + "appid": 1839570, + "normalized_name": "college seduction" + }, + { + "appid": 1839590, + "normalized_name": "moonlaw" + }, + { + "appid": 1839600, + "normalized_name": "pirate's gold" + }, + { + "appid": 1839610, + "normalized_name": "hammer kid" + }, + { + "appid": 1839630, + "normalized_name": "auto dungeon monsters" + }, + { + "appid": 1839660, + "normalized_name": "crystal clash" + }, + { + "appid": 1839670, + "normalized_name": "stop the cult" + }, + { + "appid": 1839680, + "normalized_name": "titan isles" + }, + { + "appid": 1839710, + "normalized_name": "alchemists" + }, + { + "appid": 1839750, + "normalized_name": "pog 6" + }, + { + "appid": 1839760, + "normalized_name": "cursed crew" + }, + { + "appid": 1839780, + "normalized_name": "cat dimension" + }, + { + "appid": 1839810, + "normalized_name": "out of hands" + }, + { + "appid": 1839820, + "normalized_name": "never mourn" + }, + { + "appid": 1839840, + "normalized_name": "memory puzzle mystery mermaids" + }, + { + "appid": 1839850, + "normalized_name": "怪诞乐园" + }, + { + "appid": 1839860, + "normalized_name": "die again" + }, + { + "appid": 1839870, + "normalized_name": "unhappy hour" + }, + { + "appid": 1839880, + "normalized_name": "king of the castle" + }, + { + "appid": 1839900, + "normalized_name": "your courier is on their way!" + }, + { + "appid": 1839910, + "normalized_name": "haron the riverside" + }, + { + "appid": 1839930, + "normalized_name": "lifecraft" + }, + { + "appid": 1839940, + "normalized_name": "dakar desert rally" + }, + { + "appid": 1839950, + "normalized_name": "terminator dark fate defiance" + }, + { + "appid": 1839960, + "normalized_name": "dead end aegis gaiden" + }, + { + "appid": 1839980, + "normalized_name": "gloomy juncture" + }, + { + "appid": 1840020, + "normalized_name": "planet theta" + }, + { + "appid": 1840060, + "normalized_name": "shinogi chess club" + }, + { + "appid": 1840070, + "normalized_name": "tyroom vs typing gunner" + }, + { + "appid": 1840080, + "normalized_name": "homeworld 3" + }, + { + "appid": 1840100, + "normalized_name": "present cannon rebirth" + }, + { + "appid": 1840120, + "normalized_name": "devil's eyes" + }, + { + "appid": 1840130, + "normalized_name": "sword of atlas" + }, + { + "appid": 1840140, + "normalized_name": "venture's gauntlet vr" + }, + { + "appid": 1840150, + "normalized_name": "vigorus" + }, + { + "appid": 1840170, + "normalized_name": "turro 2022" + }, + { + "appid": 1840210, + "normalized_name": "rift blade" + }, + { + "appid": 1840250, + "normalized_name": "poppy sanctum" + }, + { + "appid": 1840280, + "normalized_name": "hiboka" + }, + { + "appid": 1840330, + "normalized_name": "dummy falls" + }, + { + "appid": 1840350, + "normalized_name": "恋来い温泉物語vr" + }, + { + "appid": 1840360, + "normalized_name": "madventures" + }, + { + "appid": 1840380, + "normalized_name": "chester" + }, + { + "appid": 1840410, + "normalized_name": "knight of the forgotten realm" + }, + { + "appid": 1840430, + "normalized_name": "로스팅 리포트 대학 교수 살인사건" + }, + { + "appid": 1840440, + "normalized_name": "新三國 漢室復興" + }, + { + "appid": 1840450, + "normalized_name": "good bones" + }, + { + "appid": 1840480, + "normalized_name": "project noah" + }, + { + "appid": 1840490, + "normalized_name": "christmas massacre" + }, + { + "appid": 1840510, + "normalized_name": "legend of ixtona" + }, + { + "appid": 1840520, + "normalized_name": "cyber girls 2022" + }, + { + "appid": 1840540, + "normalized_name": "街机捕鱼嘉年华" + }, + { + "appid": 1840570, + "normalized_name": "tales of the underworld legends of primordial sea" + }, + { + "appid": 1840580, + "normalized_name": "slette mette" + }, + { + "appid": 1840590, + "normalized_name": "第一千零二夜的童话" + }, + { + "appid": 1840610, + "normalized_name": "apocalyptic vibes" + }, + { + "appid": 1840620, + "normalized_name": "trialtime reborn" + }, + { + "appid": 1840660, + "normalized_name": "mad adventures" + }, + { + "appid": 1840700, + "normalized_name": "attraction" + }, + { + "appid": 1840710, + "normalized_name": "these doomed isles" + }, + { + "appid": 1840730, + "normalized_name": "ancient islands" + }, + { + "appid": 1840770, + "normalized_name": "last threshold" + }, + { + "appid": 1840780, + "normalized_name": "love accident" + }, + { + "appid": 1840790, + "normalized_name": "metal mutation" + }, + { + "appid": 1840800, + "normalized_name": "headquarters world war ii" + }, + { + "appid": 1840810, + "normalized_name": "pandas bridge" + }, + { + "appid": 1840820, + "normalized_name": "hammer of virtue" + }, + { + "appid": 1840840, + "normalized_name": "the last defender" + }, + { + "appid": 1840850, + "normalized_name": "maze of bears" + }, + { + "appid": 1840860, + "normalized_name": "nova odessa the demon trainer" + }, + { + "appid": 1840870, + "normalized_name": "sporty peppers" + }, + { + "appid": 1840880, + "normalized_name": "freaked fleapit" + }, + { + "appid": 1840920, + "normalized_name": "search all foxes" + }, + { + "appid": 1840940, + "normalized_name": "hell bound monsters" + }, + { + "appid": 1841010, + "normalized_name": "idle paladin" + }, + { + "appid": 1841020, + "normalized_name": "journey to the heart of gaia" + }, + { + "appid": 1841030, + "normalized_name": "secret mission the forgotten island" + }, + { + "appid": 1841040, + "normalized_name": "department 42 the mystery of the nine" + }, + { + "appid": 1841060, + "normalized_name": "tiny stories santa closes" + }, + { + "appid": 1841070, + "normalized_name": "bhop craze" + }, + { + "appid": 1841080, + "normalized_name": "quantum velocity" + }, + { + "appid": 1841100, + "normalized_name": "idle sand castle" + }, + { + "appid": 1841150, + "normalized_name": "hitori kakurenbo online" + }, + { + "appid": 1841160, + "normalized_name": "amata" + }, + { + "appid": 1841180, + "normalized_name": "forknight cattle royale" + }, + { + "appid": 1841190, + "normalized_name": "casebook 1899 the leipzig murders" + }, + { + "appid": 1841200, + "normalized_name": "skullborn" + }, + { + "appid": 1841220, + "normalized_name": "the devils a visual novel of wwii" + }, + { + "appid": 1841230, + "normalized_name": "mazing mad" + }, + { + "appid": 1841240, + "normalized_name": "fountains" + }, + { + "appid": 1841250, + "normalized_name": "hard times at sequoia state park" + }, + { + "appid": 1841260, + "normalized_name": "stunt track builder" + }, + { + "appid": 1841270, + "normalized_name": "unstrong" + }, + { + "appid": 1841320, + "normalized_name": "pain" + }, + { + "appid": 1841330, + "normalized_name": "velocity valley" + }, + { + "appid": 1841350, + "normalized_name": "tos gamepad companion" + }, + { + "appid": 1841360, + "normalized_name": "queen's loyalty" + }, + { + "appid": 1841380, + "normalized_name": "writer's block" + }, + { + "appid": 1841390, + "normalized_name": "100 hidden fish" + }, + { + "appid": 1841430, + "normalized_name": "null" + }, + { + "appid": 1841500, + "normalized_name": "space mission overdrive" + }, + { + "appid": 1841520, + "normalized_name": "月影待蚀 / the incomplete lunar" + }, + { + "appid": 1841530, + "normalized_name": "the divide deck tactics" + }, + { + "appid": 1841560, + "normalized_name": "big yeetus" + }, + { + "appid": 1841630, + "normalized_name": "armor clash 2022 [rts]" + }, + { + "appid": 1841640, + "normalized_name": "シャルドネロマンシア" + }, + { + "appid": 1841660, + "normalized_name": "nanos world" + }, + { + "appid": 1841690, + "normalized_name": "apoceus winter wars" + }, + { + "appid": 1841700, + "normalized_name": "many buttons to press" + }, + { + "appid": 1841710, + "normalized_name": "road cards" + }, + { + "appid": 1841720, + "normalized_name": "the duck is in danger" + }, + { + "appid": 1841740, + "normalized_name": "drone simulator" + }, + { + "appid": 1841750, + "normalized_name": "black room" + }, + { + "appid": 1841760, + "normalized_name": "shootball arena" + }, + { + "appid": 1841770, + "normalized_name": "the king of drive parking" + }, + { + "appid": 1841780, + "normalized_name": "it follows you" + }, + { + "appid": 1841800, + "normalized_name": "dicey towers" + }, + { + "appid": 1841810, + "normalized_name": "speed master" + }, + { + "appid": 1841820, + "normalized_name": "glowboard winterfest" + }, + { + "appid": 1841830, + "normalized_name": "逃离伊甸 eden escape 生命梦之轮回" + }, + { + "appid": 1841850, + "normalized_name": "bear adventures 2" + }, + { + "appid": 1841910, + "normalized_name": "kidduca" + }, + { + "appid": 1841960, + "normalized_name": "mini mart" + }, + { + "appid": 1842040, + "normalized_name": "soul split" + }, + { + "appid": 1842050, + "normalized_name": "it's kooky" + }, + { + "appid": 1842100, + "normalized_name": "dreg cannon" + }, + { + "appid": 1842130, + "normalized_name": "blinky" + }, + { + "appid": 1842140, + "normalized_name": "odd infinitum" + }, + { + "appid": 1842180, + "normalized_name": "realms of survival" + }, + { + "appid": 1842190, + "normalized_name": "jingor 2048" + }, + { + "appid": 1842200, + "normalized_name": "jingor mine" + }, + { + "appid": 1842220, + "normalized_name": "3d lover" + }, + { + "appid": 1842270, + "normalized_name": "bongo quest" + }, + { + "appid": 1842280, + "normalized_name": "grid locked" + }, + { + "appid": 1842300, + "normalized_name": "uncolored bob ii" + }, + { + "appid": 1842320, + "normalized_name": "slayer the demon haunted world" + }, + { + "appid": 1842330, + "normalized_name": "ingredients for the chaos" + }, + { + "appid": 1842340, + "normalized_name": "hurling herman" + }, + { + "appid": 1842350, + "normalized_name": "octane remix" + }, + { + "appid": 1842360, + "normalized_name": "hot milf 3" + }, + { + "appid": 1842370, + "normalized_name": "milf puzzle" + }, + { + "appid": 1842380, + "normalized_name": "milf toys" + }, + { + "appid": 1842390, + "normalized_name": "one day" + }, + { + "appid": 1842410, + "normalized_name": "deadly racing duel" + }, + { + "appid": 1842430, + "normalized_name": "runewaker" + }, + { + "appid": 1842450, + "normalized_name": "hotdog quest one with everything" + }, + { + "appid": 1842470, + "normalized_name": "deathomen" + }, + { + "appid": 1842480, + "normalized_name": "neuragun" + }, + { + "appid": 1842510, + "normalized_name": "mechanibot" + }, + { + "appid": 1842540, + "normalized_name": "medieval battlegrounds" + }, + { + "appid": 1842610, + "normalized_name": "dungeon wizards" + }, + { + "appid": 1842640, + "normalized_name": "last of ark" + }, + { + "appid": 1842680, + "normalized_name": "wacambria island" + }, + { + "appid": 1842690, + "normalized_name": "station manager" + }, + { + "appid": 1842730, + "normalized_name": "nightmare the lunatic" + }, + { + "appid": 1842760, + "normalized_name": "nightshaders" + }, + { + "appid": 1842780, + "normalized_name": "soaring" + }, + { + "appid": 1842800, + "normalized_name": "watanos" + }, + { + "appid": 1842810, + "normalized_name": "taiko risshiden v dx" + }, + { + "appid": 1842880, + "normalized_name": "the ecdysis" + }, + { + "appid": 1842890, + "normalized_name": "矿老板模拟器" + }, + { + "appid": 1842900, + "normalized_name": "hell of sins soul" + }, + { + "appid": 1842930, + "normalized_name": "mother stone" + }, + { + "appid": 1842940, + "normalized_name": "cryptonaut" + }, + { + "appid": 1842950, + "normalized_name": "aria's canvas" + }, + { + "appid": 1843030, + "normalized_name": "grandpa's cheese" + }, + { + "appid": 1843050, + "normalized_name": "rambell" + }, + { + "appid": 1843090, + "normalized_name": "[chilla's art] the closing shift | 閉店事件" + }, + { + "appid": 1843100, + "normalized_name": "civil war atlanta 1864" + }, + { + "appid": 1843110, + "normalized_name": "makis adventure" + }, + { + "appid": 1843190, + "normalized_name": "brain bait" + }, + { + "appid": 1843230, + "normalized_name": "win by definition" + }, + { + "appid": 1843270, + "normalized_name": "reef rivals" + }, + { + "appid": 1843290, + "normalized_name": "发丘中郎将 the grave robber" + }, + { + "appid": 1843310, + "normalized_name": "funko fusion" + }, + { + "appid": 1843330, + "normalized_name": "👑万千网友共修仙👑" + }, + { + "appid": 1843350, + "normalized_name": "rukimin's disappointing adventure!" + }, + { + "appid": 1843450, + "normalized_name": "link the unleashed nexus rh" + }, + { + "appid": 1843470, + "normalized_name": "dungeon dreams 2" + }, + { + "appid": 1843540, + "normalized_name": "akimbot" + }, + { + "appid": 1843550, + "normalized_name": "cursed house" + }, + { + "appid": 1843650, + "normalized_name": "purgatory heroes" + }, + { + "appid": 1843690, + "normalized_name": "darkion" + }, + { + "appid": 1843710, + "normalized_name": "purge three vs blood" + }, + { + "appid": 1843730, + "normalized_name": "last group out" + }, + { + "appid": 1843750, + "normalized_name": "sphere game epic" + }, + { + "appid": 1843760, + "normalized_name": "rogue tower" + }, + { + "appid": 1843770, + "normalized_name": "motomancer auto battle on stream" + }, + { + "appid": 1843780, + "normalized_name": "khoros" + }, + { + "appid": 1843790, + "normalized_name": "check x mate" + }, + { + "appid": 1843800, + "normalized_name": "memory train" + }, + { + "appid": 1843840, + "normalized_name": "rogue point" + }, + { + "appid": 1843860, + "normalized_name": "the redress of mira" + }, + { + "appid": 1843880, + "normalized_name": "tumblebugs" + }, + { + "appid": 1843900, + "normalized_name": "ball" + }, + { + "appid": 1843920, + "normalized_name": "communist clicker" + }, + { + "appid": 1843940, + "normalized_name": "brigandine the legend of runersia" + }, + { + "appid": 1843980, + "normalized_name": "two of us" + }, + { + "appid": 1844020, + "normalized_name": "strawberry punch" + }, + { + "appid": 1844030, + "normalized_name": "cricket 22 academy creation tools" + }, + { + "appid": 1844060, + "normalized_name": "holy purge exorcist" + }, + { + "appid": 1844080, + "normalized_name": "starwisp hyperdrive" + }, + { + "appid": 1844100, + "normalized_name": "spearhead" + }, + { + "appid": 1844110, + "normalized_name": "the legend of the war axe" + }, + { + "appid": 1844120, + "normalized_name": "garenburg penitence the riflebird" + }, + { + "appid": 1844130, + "normalized_name": "stellar orphans" + }, + { + "appid": 1844140, + "normalized_name": "jester`s theater museum" + }, + { + "appid": 1844150, + "normalized_name": "panzer girls" + }, + { + "appid": 1844170, + "normalized_name": "galactic wars ex" + }, + { + "appid": 1844230, + "normalized_name": "malicious reloadii" + }, + { + "appid": 1844240, + "normalized_name": "dinosaur park – primeval zoo" + }, + { + "appid": 1844250, + "normalized_name": "风暴大陆" + }, + { + "appid": 1844260, + "normalized_name": "my cute girls" + }, + { + "appid": 1844270, + "normalized_name": "glamor & girls" + }, + { + "appid": 1844280, + "normalized_name": "my lovely girls" + }, + { + "appid": 1844290, + "normalized_name": "christmas puzzler 2" + }, + { + "appid": 1844300, + "normalized_name": "cute bar" + }, + { + "appid": 1844330, + "normalized_name": "profession investigator" + }, + { + "appid": 1844340, + "normalized_name": "超越海盗" + }, + { + "appid": 1844380, + "normalized_name": "warhammer age of sigmar realms of ruin" + }, + { + "appid": 1844390, + "normalized_name": "长安地下城" + }, + { + "appid": 1844400, + "normalized_name": "rasetsu fumaden" + }, + { + "appid": 1844410, + "normalized_name": "fear of the dark" + }, + { + "appid": 1844460, + "normalized_name": "termina" + }, + { + "appid": 1844540, + "normalized_name": "word of the law death mask collector's" + }, + { + "appid": 1844550, + "normalized_name": "royal legends marshes curse collector's" + }, + { + "appid": 1844560, + "normalized_name": "redpixel" + }, + { + "appid": 1844580, + "normalized_name": "69 iris hot" + }, + { + "appid": 1844640, + "normalized_name": "lis achados & perdidos dos confins do universo" + }, + { + "appid": 1844650, + "normalized_name": "krampus kills" + }, + { + "appid": 1844660, + "normalized_name": "daily dungeon club" + }, + { + "appid": 1844680, + "normalized_name": "satama puzzle" + }, + { + "appid": 1844690, + "normalized_name": "empire of revenant" + }, + { + "appid": 1844720, + "normalized_name": "friendsim 2" + }, + { + "appid": 1844790, + "normalized_name": "dungeon divers" + }, + { + "appid": 1844860, + "normalized_name": "into the waves" + }, + { + "appid": 1844890, + "normalized_name": "res publica" + }, + { + "appid": 1844990, + "normalized_name": "lastone behind the choice" + }, + { + "appid": 1845030, + "normalized_name": "snakepit larry" + }, + { + "appid": 1845040, + "normalized_name": "panzers on the steppe" + }, + { + "appid": 1845050, + "normalized_name": "mirrorama" + }, + { + "appid": 1845180, + "normalized_name": "ambition" + }, + { + "appid": 1845200, + "normalized_name": "pixacrea adventure" + }, + { + "appid": 1845250, + "normalized_name": "rubinite" + }, + { + "appid": 1845280, + "normalized_name": "momo is here" + }, + { + "appid": 1845290, + "normalized_name": "drug lords" + }, + { + "appid": 1845370, + "normalized_name": "dungeonball" + }, + { + "appid": 1845420, + "normalized_name": "infiltraliens" + }, + { + "appid": 1845430, + "normalized_name": "project.r.█.█." + }, + { + "appid": 1845460, + "normalized_name": "milo" + }, + { + "appid": 1845480, + "normalized_name": "connected hearts the full moon curse collector's" + }, + { + "appid": 1845500, + "normalized_name": "i believe in giants" + }, + { + "appid": 1845530, + "normalized_name": "pandaman" + }, + { + "appid": 1845550, + "normalized_name": "a peculiar adventure on bast" + }, + { + "appid": 1845560, + "normalized_name": "真 麻雀天下布武" + }, + { + "appid": 1845610, + "normalized_name": "new year girls" + }, + { + "appid": 1845630, + "normalized_name": "aimlabs vr" + }, + { + "appid": 1845660, + "normalized_name": "rojiura glory hole" + }, + { + "appid": 1845670, + "normalized_name": "islands of the caliph" + }, + { + "appid": 1845700, + "normalized_name": "the collar" + }, + { + "appid": 1845710, + "normalized_name": "darkness battle" + }, + { + "appid": 1845720, + "normalized_name": "cyra and the beacon path" + }, + { + "appid": 1845740, + "normalized_name": "blood souls" + }, + { + "appid": 1845750, + "normalized_name": "tundralia the frigid frontier" + }, + { + "appid": 1845760, + "normalized_name": "mologa" + }, + { + "appid": 1845780, + "normalized_name": "shape boxed" + }, + { + "appid": 1845790, + "normalized_name": "nanook's revenge" + }, + { + "appid": 1845840, + "normalized_name": "mystery of island" + }, + { + "appid": 1845880, + "normalized_name": "search all potions" + }, + { + "appid": 1845910, + "normalized_name": "dragon age the veilguard" + }, + { + "appid": 1845980, + "normalized_name": "noir storm" + }, + { + "appid": 1846000, + "normalized_name": "stratus blade clear" + }, + { + "appid": 1846020, + "normalized_name": "10 seconds to win!" + }, + { + "appid": 1846030, + "normalized_name": "hyperleague heroes" + }, + { + "appid": 1846040, + "normalized_name": "安科俱乐部" + }, + { + "appid": 1846060, + "normalized_name": "scripture" + }, + { + "appid": 1846070, + "normalized_name": "dodo life" + }, + { + "appid": 1846090, + "normalized_name": "sushi battle rambunctiously" + }, + { + "appid": 1846100, + "normalized_name": "the curator" + }, + { + "appid": 1846170, + "normalized_name": "iron lung" + }, + { + "appid": 1846210, + "normalized_name": "cat gathers ten" + }, + { + "appid": 1846240, + "normalized_name": "land of eno" + }, + { + "appid": 1846270, + "normalized_name": "re;quartz零度" + }, + { + "appid": 1846300, + "normalized_name": "mystery trackers queen of hearts collector's" + }, + { + "appid": 1846330, + "normalized_name": "nope nope nurses" + }, + { + "appid": 1846340, + "normalized_name": "eep 17 eisenbahn.exe professional aufbau und steuerungssimulation" + }, + { + "appid": 1846370, + "normalized_name": "yacht dice global league" + }, + { + "appid": 1846380, + "normalized_name": "need for speed unbound" + }, + { + "appid": 1846390, + "normalized_name": "einherjar" + }, + { + "appid": 1846410, + "normalized_name": "gates of siberia" + }, + { + "appid": 1846460, + "normalized_name": "burnhouse lane" + }, + { + "appid": 1846480, + "normalized_name": "refraction beyond the mirror" + }, + { + "appid": 1846510, + "normalized_name": "the first odyssey" + }, + { + "appid": 1846570, + "normalized_name": "sanctus" + }, + { + "appid": 1846630, + "normalized_name": "花都之恋" + }, + { + "appid": 1846660, + "normalized_name": "lilium reach" + }, + { + "appid": 1846670, + "normalized_name": "lost along the way" + }, + { + "appid": 1846680, + "normalized_name": "qabara the artist" + }, + { + "appid": 1846700, + "normalized_name": "witchbrook" + }, + { + "appid": 1846710, + "normalized_name": "kinokoe tree's voice" + }, + { + "appid": 1846720, + "normalized_name": "pixelshire" + }, + { + "appid": 1846740, + "normalized_name": "asteroid rage" + }, + { + "appid": 1846800, + "normalized_name": "fruit salad theory" + }, + { + "appid": 1846820, + "normalized_name": "age of empires iv content editor" + }, + { + "appid": 1846830, + "normalized_name": "gummings" + }, + { + "appid": 1846850, + "normalized_name": "exploria" + }, + { + "appid": 1846890, + "normalized_name": "shores of loci" + }, + { + "appid": 1846920, + "normalized_name": "lust academy season 1" + }, + { + "appid": 1846940, + "normalized_name": "there won't be light" + }, + { + "appid": 1846960, + "normalized_name": "where's my horse? an escape the room adventure" + }, + { + "appid": 1846970, + "normalized_name": "idler coaster" + }, + { + "appid": 1846980, + "normalized_name": "skeletons" + }, + { + "appid": 1846990, + "normalized_name": "honored" + }, + { + "appid": 1847020, + "normalized_name": "jet fighters with friends (multiplayer)" + }, + { + "appid": 1847030, + "normalized_name": "missing mildred" + }, + { + "appid": 1847060, + "normalized_name": "dungeon runner xz" + }, + { + "appid": 1847100, + "normalized_name": "守望之影 shadow watcher" + }, + { + "appid": 1847110, + "normalized_name": "satan's puzzle 666" + }, + { + "appid": 1847120, + "normalized_name": "11f" + }, + { + "appid": 1847130, + "normalized_name": "tokyo detectives" + }, + { + "appid": 1847150, + "normalized_name": "touhou genso wanderer foresight" + }, + { + "appid": 1847160, + "normalized_name": "johnny boy red moon's kiss episode 1" + }, + { + "appid": 1847180, + "normalized_name": "mortal crux" + }, + { + "appid": 1847200, + "normalized_name": "mathomatics" + }, + { + "appid": 1847220, + "normalized_name": "breathless" + }, + { + "appid": 1847230, + "normalized_name": "island berry" + }, + { + "appid": 1847240, + "normalized_name": "game dev story" + }, + { + "appid": 1847250, + "normalized_name": "the unearthened" + }, + { + "appid": 1847260, + "normalized_name": "seres" + }, + { + "appid": 1847290, + "normalized_name": "lichkeeper" + }, + { + "appid": 1847310, + "normalized_name": "trailer park life" + }, + { + "appid": 1847350, + "normalized_name": "save da frogs" + }, + { + "appid": 1847380, + "normalized_name": "雷鸟thunderbird" + }, + { + "appid": 1847390, + "normalized_name": "ruins of mitriom" + }, + { + "appid": 1847420, + "normalized_name": "tatari" + }, + { + "appid": 1847440, + "normalized_name": "freezeframe" + }, + { + "appid": 1847460, + "normalized_name": "japanese dojo" + }, + { + "appid": 1847480, + "normalized_name": "rocketballz" + }, + { + "appid": 1847500, + "normalized_name": "rising of the moon part 1" + }, + { + "appid": 1847510, + "normalized_name": "boba simulator idle shop management" + }, + { + "appid": 1847600, + "normalized_name": "kingdom's life" + }, + { + "appid": 1847610, + "normalized_name": "return of the host" + }, + { + "appid": 1847710, + "normalized_name": "keyworker simulator" + }, + { + "appid": 1847750, + "normalized_name": "project kunai" + }, + { + "appid": 1847810, + "normalized_name": "tkium exclusion area" + }, + { + "appid": 1847820, + "normalized_name": "hiddenfrog" + }, + { + "appid": 1847830, + "normalized_name": "swing the universe" + }, + { + "appid": 1847840, + "normalized_name": "witchbane" + }, + { + "appid": 1847850, + "normalized_name": "myth caller the nightmare shaman" + }, + { + "appid": 1847860, + "normalized_name": "jigsaw souls" + }, + { + "appid": 1847870, + "normalized_name": "alisha's sexual fear" + }, + { + "appid": 1847900, + "normalized_name": "synchronizacja visual novel" + }, + { + "appid": 1847920, + "normalized_name": "shrumblo and the magical grumblo" + }, + { + "appid": 1847970, + "normalized_name": "startmove" + }, + { + "appid": 1847980, + "normalized_name": "militaristic rain of terror" + }, + { + "appid": 1847990, + "normalized_name": "streaming girls [18+] onlyfap ●live" + }, + { + "appid": 1848070, + "normalized_name": "absinthia" + }, + { + "appid": 1848080, + "normalized_name": "incursion reforged" + }, + { + "appid": 1848110, + "normalized_name": "путин против инопланетян extended cut (cyberputin 2033)" + }, + { + "appid": 1848120, + "normalized_name": "bibliomania" + }, + { + "appid": 1848130, + "normalized_name": "无限投影" + }, + { + "appid": 1848150, + "normalized_name": "mysterious house" + }, + { + "appid": 1848160, + "normalized_name": "amaze dos" + }, + { + "appid": 1848190, + "normalized_name": "blood vessel" + }, + { + "appid": 1848200, + "normalized_name": "neon struct desperation column" + }, + { + "appid": 1848220, + "normalized_name": "amelite" + }, + { + "appid": 1848250, + "normalized_name": "dog adventure" + }, + { + "appid": 1848270, + "normalized_name": "零號生命體" + }, + { + "appid": 1848280, + "normalized_name": "pirates of the maverta" + }, + { + "appid": 1848290, + "normalized_name": "maverta island" + }, + { + "appid": 1848310, + "normalized_name": "just in slime" + }, + { + "appid": 1848330, + "normalized_name": "clarent saga chronicles" + }, + { + "appid": 1848350, + "normalized_name": "gelatine" + }, + { + "appid": 1848360, + "normalized_name": "a street story" + }, + { + "appid": 1848380, + "normalized_name": "era dream rose" + }, + { + "appid": 1848410, + "normalized_name": "fear call of the village" + }, + { + "appid": 1848430, + "normalized_name": "walk to the woods" + }, + { + "appid": 1848440, + "normalized_name": "foolish mortals" + }, + { + "appid": 1848450, + "normalized_name": "nightmare of decay" + }, + { + "appid": 1848460, + "normalized_name": "odyssey of gianna" + }, + { + "appid": 1848470, + "normalized_name": "system critical the race against time" + }, + { + "appid": 1848490, + "normalized_name": "you are not bunnygirl" + }, + { + "appid": 1848520, + "normalized_name": "fruit salad" + }, + { + "appid": 1848540, + "normalized_name": "bionic tadpole" + }, + { + "appid": 1848570, + "normalized_name": "skelton zone traveler emergence" + }, + { + "appid": 1848580, + "normalized_name": "wavecade" + }, + { + "appid": 1848590, + "normalized_name": "kaichu the kaiju dating sim" + }, + { + "appid": 1848600, + "normalized_name": "sang the desert blade" + }, + { + "appid": 1848610, + "normalized_name": "rogue mansion" + }, + { + "appid": 1848640, + "normalized_name": "vr async balls" + }, + { + "appid": 1848650, + "normalized_name": "hunter a hunter" + }, + { + "appid": 1848680, + "normalized_name": "operation s" + }, + { + "appid": 1848710, + "normalized_name": "妖刀退魔忍" + }, + { + "appid": 1848720, + "normalized_name": "element runner" + }, + { + "appid": 1848730, + "normalized_name": "ikusaaaaaaan!" + }, + { + "appid": 1848780, + "normalized_name": "被打扰的下午茶" + }, + { + "appid": 1848840, + "normalized_name": "fadry" + }, + { + "appid": 1848850, + "normalized_name": "die cast driver & collector" + }, + { + "appid": 1848860, + "normalized_name": "ember crusade iv" + }, + { + "appid": 1848870, + "normalized_name": "hologram" + }, + { + "appid": 1848890, + "normalized_name": "gordon streaman 2" + }, + { + "appid": 1848910, + "normalized_name": "farmer toon" + }, + { + "appid": 1848930, + "normalized_name": "days of despair" + }, + { + "appid": 1848940, + "normalized_name": "day on mars" + }, + { + "appid": 1848960, + "normalized_name": "medieval fantasy survival simulator" + }, + { + "appid": 1848970, + "normalized_name": "project valkyrie" + }, + { + "appid": 1848990, + "normalized_name": "in freedom rest ideal tomorrows" + }, + { + "appid": 1849000, + "normalized_name": "sex with hitler" + }, + { + "appid": 1849040, + "normalized_name": "lure" + }, + { + "appid": 1849070, + "normalized_name": "whmis 2015 vr" + }, + { + "appid": 1849150, + "normalized_name": "hell weaver" + }, + { + "appid": 1849170, + "normalized_name": "nested rooms" + }, + { + "appid": 1849190, + "normalized_name": "i am butter vr" + }, + { + "appid": 1849200, + "normalized_name": "it's on you" + }, + { + "appid": 1849210, + "normalized_name": "imperial arms curse of the conqueror" + }, + { + "appid": 1849230, + "normalized_name": "如果还有明天 if i still had tomorrow" + }, + { + "appid": 1849250, + "normalized_name": "ea sports wrc" + }, + { + "appid": 1849260, + "normalized_name": "jash" + }, + { + "appid": 1849270, + "normalized_name": "nectar wars" + }, + { + "appid": 1849300, + "normalized_name": "la jetée" + }, + { + "appid": 1849310, + "normalized_name": "天天地下城" + }, + { + "appid": 1849320, + "normalized_name": "联盟英雄 元宇宙觉醒" + }, + { + "appid": 1849350, + "normalized_name": "sgs glory recalled" + }, + { + "appid": 1849360, + "normalized_name": "sgs nato's nightmare" + }, + { + "appid": 1849370, + "normalized_name": "sgs pacific d day" + }, + { + "appid": 1849380, + "normalized_name": "levitation simulator" + }, + { + "appid": 1849430, + "normalized_name": "alchemist of war" + }, + { + "appid": 1849440, + "normalized_name": "claire's cruisin' cafe high seas cuisine" + }, + { + "appid": 1849510, + "normalized_name": "78" + }, + { + "appid": 1849530, + "normalized_name": "save us island escape" + }, + { + "appid": 1849560, + "normalized_name": "funny pets" + }, + { + "appid": 1849570, + "normalized_name": "恋~一些小清新的猎奇故事~" + }, + { + "appid": 1849740, + "normalized_name": "stars arisen" + }, + { + "appid": 1849760, + "normalized_name": "siege of treboulain" + }, + { + "appid": 1849790, + "normalized_name": "uncle chop's rocket shop" + }, + { + "appid": 1849800, + "normalized_name": "cramit's keep" + }, + { + "appid": 1849820, + "normalized_name": "telepath tactics liberated" + }, + { + "appid": 1849840, + "normalized_name": "镜世界" + }, + { + "appid": 1849850, + "normalized_name": "dash cup kickers" + }, + { + "appid": 1849870, + "normalized_name": "amazin' george" + }, + { + "appid": 1849880, + "normalized_name": "fallen spirit" + }, + { + "appid": 1849890, + "normalized_name": "neko maid" + }, + { + "appid": 1849900, + "normalized_name": "among us 3d vr" + }, + { + "appid": 1849930, + "normalized_name": "helicopter 2.0" + }, + { + "appid": 1849940, + "normalized_name": "festival fever" + }, + { + "appid": 1849970, + "normalized_name": "wacky chariots" + }, + { + "appid": 1850010, + "normalized_name": "crossplanet" + }, + { + "appid": 1850020, + "normalized_name": "ben’s world" + }, + { + "appid": 1850050, + "normalized_name": "alien rogue incursion vr" + }, + { + "appid": 1850070, + "normalized_name": "fireteam" + }, + { + "appid": 1850090, + "normalized_name": "phobias memories of the past" + }, + { + "appid": 1850100, + "normalized_name": "note of janus" + }, + { + "appid": 1850150, + "normalized_name": "守护者盟约" + }, + { + "appid": 1850160, + "normalized_name": "poly bridge 3" + }, + { + "appid": 1850200, + "normalized_name": "a normal survival game" + }, + { + "appid": 1850230, + "normalized_name": "隐刺" + }, + { + "appid": 1850240, + "normalized_name": "exsanguinate" + }, + { + "appid": 1850270, + "normalized_name": "dream hacker" + }, + { + "appid": 1850280, + "normalized_name": "gwenblade" + }, + { + "appid": 1850340, + "normalized_name": "hitozuma netori kannrinin" + }, + { + "appid": 1850360, + "normalized_name": "goonect" + }, + { + "appid": 1850390, + "normalized_name": "moveit" + }, + { + "appid": 1850400, + "normalized_name": "leading the dead" + }, + { + "appid": 1850420, + "normalized_name": "bylitsa vasna" + }, + { + "appid": 1850490, + "normalized_name": "warmonium" + }, + { + "appid": 1850510, + "normalized_name": "triangle strategy" + }, + { + "appid": 1850520, + "normalized_name": "code pandora" + }, + { + "appid": 1850530, + "normalized_name": "descend" + }, + { + "appid": 1850550, + "normalized_name": "i'm on observation duty 5" + }, + { + "appid": 1850570, + "normalized_name": "death stranding director's cut" + }, + { + "appid": 1850610, + "normalized_name": "winter and people" + }, + { + "appid": 1850620, + "normalized_name": "penball" + }, + { + "appid": 1850680, + "normalized_name": "wardudes" + }, + { + "appid": 1850740, + "normalized_name": "ghost watchers" + }, + { + "appid": 1850790, + "normalized_name": "would you like to run an idol café? 3" + }, + { + "appid": 1850840, + "normalized_name": "mafia family's secret" + }, + { + "appid": 1850860, + "normalized_name": "a fungus in my garden" + }, + { + "appid": 1850880, + "normalized_name": "the milk lake" + }, + { + "appid": 1850930, + "normalized_name": "camp wars" + }, + { + "appid": 1850950, + "normalized_name": "the mysterious misadventures of mollie & mordecai" + }, + { + "appid": 1850960, + "normalized_name": "the jackbox party pack 9" + }, + { + "appid": 1850980, + "normalized_name": "ver" + }, + { + "appid": 1851000, + "normalized_name": "netorious neighbor cumming for their wives!" + }, + { + "appid": 1851010, + "normalized_name": "superdungeon megacorp" + }, + { + "appid": 1851020, + "normalized_name": "river city girls zero" + }, + { + "appid": 1851030, + "normalized_name": "god of rock" + }, + { + "appid": 1851060, + "normalized_name": "mysteria of the world the forest of death" + }, + { + "appid": 1851090, + "normalized_name": "mexico 1921. a deep slumber." + }, + { + "appid": 1851120, + "normalized_name": "file under kingdom" + }, + { + "appid": 1851190, + "normalized_name": "deity souls plus" + }, + { + "appid": 1851200, + "normalized_name": "cs diamantes pipas pc jogo de pipa" + }, + { + "appid": 1851240, + "normalized_name": "that castle" + }, + { + "appid": 1851280, + "normalized_name": "samurai bringer" + }, + { + "appid": 1851300, + "normalized_name": "em" + }, + { + "appid": 1851320, + "normalized_name": "人中怪物" + }, + { + "appid": 1851330, + "normalized_name": "heroes of the dark" + }, + { + "appid": 1851350, + "normalized_name": "stampede racing royale" + }, + { + "appid": 1851370, + "normalized_name": "the living handra" + }, + { + "appid": 1851380, + "normalized_name": "happy's humble burger barn" + }, + { + "appid": 1851390, + "normalized_name": "spiders everywhere" + }, + { + "appid": 1851410, + "normalized_name": "trigger dungeon" + }, + { + "appid": 1851420, + "normalized_name": "initial d" + }, + { + "appid": 1851440, + "normalized_name": "幻梦之城(c t o d)" + }, + { + "appid": 1851450, + "normalized_name": "bubbles shot" + }, + { + "appid": 1851470, + "normalized_name": "ikkarus and the prince of sin" + }, + { + "appid": 1851530, + "normalized_name": "more enemies" + }, + { + "appid": 1851560, + "normalized_name": "stillborn slayer" + }, + { + "appid": 1851570, + "normalized_name": "umbra galaxy" + }, + { + "appid": 1851610, + "normalized_name": "river tails stronger together" + }, + { + "appid": 1851620, + "normalized_name": "warsaw paris of the north (prototype)" + }, + { + "appid": 1851630, + "normalized_name": "man of sterling quality" + }, + { + "appid": 1851680, + "normalized_name": "lost alone ep.2 paparino" + }, + { + "appid": 1851690, + "normalized_name": "blood bay card history" + }, + { + "appid": 1851720, + "normalized_name": "dead pets unleashed" + }, + { + "appid": 1851730, + "normalized_name": "meow express" + }, + { + "appid": 1851760, + "normalized_name": "tomorrow's past" + }, + { + "appid": 1851770, + "normalized_name": "chef simulator" + }, + { + "appid": 1851790, + "normalized_name": "dungeon maker" + }, + { + "appid": 1851800, + "normalized_name": "paint your world a m00fins experience" + }, + { + "appid": 1851840, + "normalized_name": "kitsune battlemage" + }, + { + "appid": 1851850, + "normalized_name": "zênite" + }, + { + "appid": 1851910, + "normalized_name": "寂夜微光 a flicker of light" + }, + { + "appid": 1851960, + "normalized_name": "decimal" + }, + { + "appid": 1851970, + "normalized_name": "the last days of sodom" + }, + { + "appid": 1852000, + "normalized_name": "[tongue kissing specialization] my girlfriend's here for a visit." + }, + { + "appid": 1852030, + "normalized_name": "fera knight" + }, + { + "appid": 1852060, + "normalized_name": "pushing crates" + }, + { + "appid": 1852090, + "normalized_name": "染色时间 tinting time" + }, + { + "appid": 1852100, + "normalized_name": "wrong train" + }, + { + "appid": 1852110, + "normalized_name": "the augury house" + }, + { + "appid": 1852120, + "normalized_name": "最后的送别" + }, + { + "appid": 1852140, + "normalized_name": "mathletix" + }, + { + "appid": 1852150, + "normalized_name": "cyber lounge tycoon" + }, + { + "appid": 1852180, + "normalized_name": "undercraft" + }, + { + "appid": 1852220, + "normalized_name": "the phoenix" + }, + { + "appid": 1852240, + "normalized_name": "samurai pig the way of the rooster" + }, + { + "appid": 1852290, + "normalized_name": "crazyparty" + }, + { + "appid": 1852300, + "normalized_name": "sharp wands" + }, + { + "appid": 1852310, + "normalized_name": "cursed road convoy" + }, + { + "appid": 1852360, + "normalized_name": "warpaws" + }, + { + "appid": 1852380, + "normalized_name": "magical deathpair" + }, + { + "appid": 1852490, + "normalized_name": "the vortex" + }, + { + "appid": 1852510, + "normalized_name": "corsairs legacy naval mission pirate action rpg" + }, + { + "appid": 1852520, + "normalized_name": "judge jury and keyboard" + }, + { + "appid": 1852530, + "normalized_name": "kung fu er san" + }, + { + "appid": 1852600, + "normalized_name": "cellar" + }, + { + "appid": 1852610, + "normalized_name": "candy match 3" + }, + { + "appid": 1852650, + "normalized_name": "operation wolf returns first mission" + }, + { + "appid": 1852660, + "normalized_name": "ampguard" + }, + { + "appid": 1852760, + "normalized_name": "memory puzzle sexy fairies" + }, + { + "appid": 1852830, + "normalized_name": "space accident" + }, + { + "appid": 1852840, + "normalized_name": "slaughter cannon" + }, + { + "appid": 1852870, + "normalized_name": "game dev arcade" + }, + { + "appid": 1852890, + "normalized_name": "farmer adventure" + }, + { + "appid": 1852910, + "normalized_name": "rte worlds" + }, + { + "appid": 1852940, + "normalized_name": "highline volleyball vr" + }, + { + "appid": 1852980, + "normalized_name": "itlivesinthewoods" + }, + { + "appid": 1852990, + "normalized_name": "disaster" + }, + { + "appid": 1853030, + "normalized_name": "san zoolin" + }, + { + "appid": 1853080, + "normalized_name": "cyber runner" + }, + { + "appid": 1853090, + "normalized_name": "axiallis" + }, + { + "appid": 1853120, + "normalized_name": "cannon canines" + }, + { + "appid": 1853140, + "normalized_name": "who is zombie" + }, + { + "appid": 1853150, + "normalized_name": "american christmas" + }, + { + "appid": 1853180, + "normalized_name": "dezlooca anthology retro rpg rise of the one winged phoenix" + }, + { + "appid": 1853190, + "normalized_name": "life is paine" + }, + { + "appid": 1853200, + "normalized_name": "tyrone vs cops" + }, + { + "appid": 1853260, + "normalized_name": "what lies in the multiverse prologue" + }, + { + "appid": 1853270, + "normalized_name": "army to army" + }, + { + "appid": 1853280, + "normalized_name": "graffiti cozy" + }, + { + "appid": 1853310, + "normalized_name": "rulegement" + }, + { + "appid": 1853360, + "normalized_name": "yoshitaka amano vr museum" + }, + { + "appid": 1853370, + "normalized_name": "wish talk" + }, + { + "appid": 1853410, + "normalized_name": "the shape of things" + }, + { + "appid": 1853510, + "normalized_name": "robocracy" + }, + { + "appid": 1853560, + "normalized_name": "cloud girl" + }, + { + "appid": 1853650, + "normalized_name": "fireflies & figments a willow's journey" + }, + { + "appid": 1853660, + "normalized_name": "squirrels are going nuts" + }, + { + "appid": 1853680, + "normalized_name": "forbidden fruit" + }, + { + "appid": 1853690, + "normalized_name": "monster of nyum" + }, + { + "appid": 1853720, + "normalized_name": "timings" + }, + { + "appid": 1853760, + "normalized_name": "frogmonster" + }, + { + "appid": 1853780, + "normalized_name": "fps seduce hentai" + }, + { + "appid": 1853810, + "normalized_name": "blood island" + }, + { + "appid": 1853820, + "normalized_name": "colony simulator" + }, + { + "appid": 1853830, + "normalized_name": "a shot in the dark" + }, + { + "appid": 1853840, + "normalized_name": "polygunners" + }, + { + "appid": 1853850, + "normalized_name": "a lost jellyfish return to its parents" + }, + { + "appid": 1853890, + "normalized_name": "eggroll" + }, + { + "appid": 1853920, + "normalized_name": "cyberstellar" + }, + { + "appid": 1853970, + "normalized_name": "anthropocene epoch" + }, + { + "appid": 1853990, + "normalized_name": "hidden treasures in the forest of dreams" + }, + { + "appid": 1854050, + "normalized_name": "v696" + }, + { + "appid": 1854060, + "normalized_name": "deep space expedition 47" + }, + { + "appid": 1854080, + "normalized_name": "dream busters" + }, + { + "appid": 1854090, + "normalized_name": "桃花境" + }, + { + "appid": 1854110, + "normalized_name": "kitsune slasher" + }, + { + "appid": 1854120, + "normalized_name": "pink elephant" + }, + { + "appid": 1854130, + "normalized_name": "my boss is a futanari" + }, + { + "appid": 1854140, + "normalized_name": "my doctor is a futanari" + }, + { + "appid": 1854160, + "normalized_name": "deliver or die!" + }, + { + "appid": 1854180, + "normalized_name": "nociception ~ voltaic marketplace" + }, + { + "appid": 1854190, + "normalized_name": "hot pickle!" + }, + { + "appid": 1854250, + "normalized_name": "demon speakeasy" + }, + { + "appid": 1854270, + "normalized_name": "風の祝子 ~早苗さんの妖怪退治~" + }, + { + "appid": 1854280, + "normalized_name": "the vision of the ant" + }, + { + "appid": 1854290, + "normalized_name": "kakureza library" + }, + { + "appid": 1854300, + "normalized_name": "tear of titans" + }, + { + "appid": 1854340, + "normalized_name": "another sight" + }, + { + "appid": 1854400, + "normalized_name": "bounce trials" + }, + { + "appid": 1854430, + "normalized_name": "how fish is made" + }, + { + "appid": 1854450, + "normalized_name": "tvhead" + }, + { + "appid": 1854490, + "normalized_name": "streets of chaos" + }, + { + "appid": 1854510, + "normalized_name": "billiards of the round table (brt)" + }, + { + "appid": 1854540, + "normalized_name": "untitled survival game" + }, + { + "appid": 1854570, + "normalized_name": "colossal citadels" + }, + { + "appid": 1854580, + "normalized_name": "in the space escape room" + }, + { + "appid": 1854590, + "normalized_name": "green alert" + }, + { + "appid": 1854630, + "normalized_name": "morph king" + }, + { + "appid": 1854730, + "normalized_name": "mental math tutor" + }, + { + "appid": 1854740, + "normalized_name": "雛ちゃんのとっかえ!わらしべランチ" + }, + { + "appid": 1854790, + "normalized_name": "space penguins" + }, + { + "appid": 1854800, + "normalized_name": "my yandere is a futanari" + }, + { + "appid": 1854810, + "normalized_name": "my pet sitter is a futanari" + }, + { + "appid": 1854830, + "normalized_name": "消失的纪元 the lost era" + }, + { + "appid": 1854840, + "normalized_name": "城堡与冒险" + }, + { + "appid": 1854870, + "normalized_name": "le avventure di blue" + }, + { + "appid": 1854890, + "normalized_name": "kill to live" + }, + { + "appid": 1854900, + "normalized_name": ".g" + }, + { + "appid": 1854910, + "normalized_name": "the soul box" + }, + { + "appid": 1854940, + "normalized_name": "far far away from here" + }, + { + "appid": 1854950, + "normalized_name": "stories want to be told storyone prophecy" + }, + { + "appid": 1854970, + "normalized_name": "milf hunter" + }, + { + "appid": 1854980, + "normalized_name": "madohi shiroki no kamikakushi" + }, + { + "appid": 1855020, + "normalized_name": "freeze the time" + }, + { + "appid": 1855030, + "normalized_name": "stairway to heaven's gate" + }, + { + "appid": 1855040, + "normalized_name": "deja vu" + }, + { + "appid": 1855070, + "normalized_name": "kukumushi virtual pet" + }, + { + "appid": 1855090, + "normalized_name": "this next time" + }, + { + "appid": 1855100, + "normalized_name": "dog adventure" + }, + { + "appid": 1855110, + "normalized_name": "canyon" + }, + { + "appid": 1855130, + "normalized_name": "samurai of hyuga book 5" + }, + { + "appid": 1855150, + "normalized_name": "helm or high water" + }, + { + "appid": 1855160, + "normalized_name": "find the gnome 2" + }, + { + "appid": 1855170, + "normalized_name": "search all christmas" + }, + { + "appid": 1855180, + "normalized_name": "tbte the button tycoon experience" + }, + { + "appid": 1855190, + "normalized_name": "vektor z" + }, + { + "appid": 1855210, + "normalized_name": "dead on arrival survival" + }, + { + "appid": 1855220, + "normalized_name": "the great deer" + }, + { + "appid": 1855240, + "normalized_name": "princess" + }, + { + "appid": 1855270, + "normalized_name": "pachillinko" + }, + { + "appid": 1855300, + "normalized_name": "soulcast" + }, + { + "appid": 1855310, + "normalized_name": "warlock's dungeon" + }, + { + "appid": 1855340, + "normalized_name": "birth patrol" + }, + { + "appid": 1855380, + "normalized_name": "spirits of light" + }, + { + "appid": 1855410, + "normalized_name": "hogoworm dungeon" + }, + { + "appid": 1855420, + "normalized_name": "tabletop warriors" + }, + { + "appid": 1855470, + "normalized_name": "dark haunting" + }, + { + "appid": 1855480, + "normalized_name": "blue jay joyride" + }, + { + "appid": 1855490, + "normalized_name": "elemental war dawn of the crystals" + }, + { + "appid": 1855500, + "normalized_name": "neko doll" + }, + { + "appid": 1855580, + "normalized_name": "dreadhaunt" + }, + { + "appid": 1855590, + "normalized_name": "color lab" + }, + { + "appid": 1855610, + "normalized_name": "happy island life" + }, + { + "appid": 1855620, + "normalized_name": "intimate relationship" + }, + { + "appid": 1855660, + "normalized_name": "我有一座冒险屋 i have an adventure house" + }, + { + "appid": 1855690, + "normalized_name": "bessarabian nightmares" + }, + { + "appid": 1855710, + "normalized_name": "mot de pass" + }, + { + "appid": 1855750, + "normalized_name": "vaccine delivery adventure" + }, + { + "appid": 1855760, + "normalized_name": "mon musu quest" + }, + { + "appid": 1855890, + "normalized_name": "my hotel" + }, + { + "appid": 1855910, + "normalized_name": "flood" + }, + { + "appid": 1855920, + "normalized_name": "missing plane survival" + }, + { + "appid": 1855950, + "normalized_name": "leningrad" + }, + { + "appid": 1856020, + "normalized_name": "gav gav odyssey" + }, + { + "appid": 1856030, + "normalized_name": "fresh start cleaning simulator" + }, + { + "appid": 1856040, + "normalized_name": "xenotown" + }, + { + "appid": 1856050, + "normalized_name": "labyrinth of light" + }, + { + "appid": 1856060, + "normalized_name": "inexar unusual star" + }, + { + "appid": 1856070, + "normalized_name": "monkey valley" + }, + { + "appid": 1856080, + "normalized_name": "ambushed" + }, + { + "appid": 1856110, + "normalized_name": "escape from hard drive" + }, + { + "appid": 1856120, + "normalized_name": "logicubes" + }, + { + "appid": 1856130, + "normalized_name": "catoise" + }, + { + "appid": 1856160, + "normalized_name": "the last rite of death" + }, + { + "appid": 1856170, + "normalized_name": "poker texas" + }, + { + "appid": 1856190, + "normalized_name": "hello engineer scrap machines constructor" + }, + { + "appid": 1856210, + "normalized_name": "the frozen kingdom" + }, + { + "appid": 1856270, + "normalized_name": "brolections 2022" + }, + { + "appid": 1856300, + "normalized_name": "project voidcraft" + }, + { + "appid": 1856480, + "normalized_name": "kamiyaba destiny on a dicey deadline" + }, + { + "appid": 1856490, + "normalized_name": "arhaekon" + }, + { + "appid": 1856550, + "normalized_name": "magnus imago" + }, + { + "appid": 1856600, + "normalized_name": "rewrite harvest festa!" + }, + { + "appid": 1856660, + "normalized_name": "mr. photographer" + }, + { + "appid": 1856680, + "normalized_name": "梦回大航海" + }, + { + "appid": 1856730, + "normalized_name": "poly puzzle dogs" + }, + { + "appid": 1856740, + "normalized_name": "arkheim realms at war" + }, + { + "appid": 1856750, + "normalized_name": "relayer advanced" + }, + { + "appid": 1856810, + "normalized_name": "miner rogue" + }, + { + "appid": 1856830, + "normalized_name": "elbmarks" + }, + { + "appid": 1856840, + "normalized_name": "madevil" + }, + { + "appid": 1856850, + "normalized_name": "tuktuk" + }, + { + "appid": 1856860, + "normalized_name": "magic city detective wings of revenge collector's" + }, + { + "appid": 1856880, + "normalized_name": "dragon realms towers 'n' dragons" + }, + { + "appid": 1856890, + "normalized_name": "zhazari vr" + }, + { + "appid": 1856900, + "normalized_name": "andro dunos ii" + }, + { + "appid": 1856910, + "normalized_name": "ganryu 2" + }, + { + "appid": 1856920, + "normalized_name": "my last night here" + }, + { + "appid": 1856930, + "normalized_name": "wayward harbor" + }, + { + "appid": 1856970, + "normalized_name": "captain cigarrr" + }, + { + "appid": 1856980, + "normalized_name": "virtualsociety" + }, + { + "appid": 1856990, + "normalized_name": "fullybroken old dawn" + }, + { + "appid": 1857000, + "normalized_name": "wekufu" + }, + { + "appid": 1857010, + "normalized_name": "polygon hunter vr" + }, + { + "appid": 1857020, + "normalized_name": "escort simulator 2" + }, + { + "appid": 1857040, + "normalized_name": "under iron water" + }, + { + "appid": 1857070, + "normalized_name": "golden mine pickaxe" + }, + { + "appid": 1857080, + "normalized_name": "the last starship" + }, + { + "appid": 1857090, + "normalized_name": "norland" + }, + { + "appid": 1857120, + "normalized_name": "legendary knight" + }, + { + "appid": 1857140, + "normalized_name": "retrodrift retrowave online road" + }, + { + "appid": 1857150, + "normalized_name": "the christmas spirit golden ticket collector's" + }, + { + "appid": 1857160, + "normalized_name": "ms. holmes the adventure of the mckirk ritual collector's" + }, + { + "appid": 1857170, + "normalized_name": "rog n' mon" + }, + { + "appid": 1857200, + "normalized_name": "neighbors a visual novel" + }, + { + "appid": 1857220, + "normalized_name": "otterquest" + }, + { + "appid": 1857340, + "normalized_name": "spy network" + }, + { + "appid": 1857370, + "normalized_name": "lez" + }, + { + "appid": 1857390, + "normalized_name": "frankenstorm td" + }, + { + "appid": 1857520, + "normalized_name": "team ice cream vr" + }, + { + "appid": 1857540, + "normalized_name": "kurukshetra ascension" + }, + { + "appid": 1857550, + "normalized_name": "bad credit" + }, + { + "appid": 1857560, + "normalized_name": "mortis chronicles tale of cowardice" + }, + { + "appid": 1857570, + "normalized_name": "dark paradise nigelopia mini mix plus collection" + }, + { + "appid": 1857580, + "normalized_name": "get achievements for achievements" + }, + { + "appid": 1857640, + "normalized_name": "forest kingdom" + }, + { + "appid": 1857650, + "normalized_name": "deep fog" + }, + { + "appid": 1857660, + "normalized_name": "exes assault!!" + }, + { + "appid": 1857680, + "normalized_name": "new earth the quest" + }, + { + "appid": 1857730, + "normalized_name": "color patterns" + }, + { + "appid": 1857740, + "normalized_name": "mobile suit gundam seed battle destiny" + }, + { + "appid": 1857840, + "normalized_name": "xolotl" + }, + { + "appid": 1857850, + "normalized_name": "down the hill" + }, + { + "appid": 1857870, + "normalized_name": "space demon combat tactics iii" + }, + { + "appid": 1857890, + "normalized_name": "hentai jigsaw puzzle collection autumn" + }, + { + "appid": 1857900, + "normalized_name": "thnt target hunt 'n terminate" + }, + { + "appid": 1857950, + "normalized_name": "vein" + }, + { + "appid": 1857970, + "normalized_name": "moonrakers luminor" + }, + { + "appid": 1857980, + "normalized_name": "the paper game" + }, + { + "appid": 1858050, + "normalized_name": "virulence" + }, + { + "appid": 1858070, + "normalized_name": "clockwise jinx" + }, + { + "appid": 1858090, + "normalized_name": "a modest legacy" + }, + { + "appid": 1858120, + "normalized_name": "generic rpg idle" + }, + { + "appid": 1858200, + "normalized_name": "kazak" + }, + { + "appid": 1858210, + "normalized_name": "kindred fates" + }, + { + "appid": 1858240, + "normalized_name": "戦国の狩人" + }, + { + "appid": 1858260, + "normalized_name": "go fetch!" + }, + { + "appid": 1858270, + "normalized_name": "cat adventure" + }, + { + "appid": 1858390, + "normalized_name": "pip puzzle" + }, + { + "appid": 1858400, + "normalized_name": "squarena" + }, + { + "appid": 1858410, + "normalized_name": "terra maega" + }, + { + "appid": 1858450, + "normalized_name": "quit today" + }, + { + "appid": 1858500, + "normalized_name": "tales from the unending void season 1" + }, + { + "appid": 1858530, + "normalized_name": "kitty ball" + }, + { + "appid": 1858540, + "normalized_name": "hentai cut and nut" + }, + { + "appid": 1858580, + "normalized_name": "巨 ~gigantify~" + }, + { + "appid": 1858620, + "normalized_name": "drawer" + }, + { + "appid": 1858630, + "normalized_name": "sword art online fractured daydream" + }, + { + "appid": 1858650, + "normalized_name": "in sink a co op escape adventure" + }, + { + "appid": 1858680, + "normalized_name": "redneck brawl turbo" + }, + { + "appid": 1858700, + "normalized_name": "grey eminence" + }, + { + "appid": 1858710, + "normalized_name": "deep russian depression" + }, + { + "appid": 1858730, + "normalized_name": "crabmania" + }, + { + "appid": 1858740, + "normalized_name": "atk" + }, + { + "appid": 1858760, + "normalized_name": "gem worlds" + }, + { + "appid": 1858780, + "normalized_name": "spooky story" + }, + { + "appid": 1858790, + "normalized_name": "bony odyssey" + }, + { + "appid": 1858810, + "normalized_name": "the perfect pencil" + }, + { + "appid": 1858860, + "normalized_name": "solitarius" + }, + { + "appid": 1858900, + "normalized_name": "stardust exile" + }, + { + "appid": 1858920, + "normalized_name": "dragon ninja byoka" + }, + { + "appid": 1858940, + "normalized_name": "bridge to another world christmas flight collector's" + }, + { + "appid": 1858950, + "normalized_name": "steel century groove" + }, + { + "appid": 1858970, + "normalized_name": "爆破兔头" + }, + { + "appid": 1858980, + "normalized_name": "gravity game" + }, + { + "appid": 1859010, + "normalized_name": "lesbian voyeur simulator 2" + }, + { + "appid": 1859020, + "normalized_name": "porcelain tales" + }, + { + "appid": 1859030, + "normalized_name": "sugarcane empire" + }, + { + "appid": 1859060, + "normalized_name": "jigsaw puzzle beach season" + }, + { + "appid": 1859070, + "normalized_name": "jigsaw puzzle womens day" + }, + { + "appid": 1859080, + "normalized_name": "1001 jigsaw. earth chronicles 6" + }, + { + "appid": 1859090, + "normalized_name": "pirate jigsaw 2" + }, + { + "appid": 1859100, + "normalized_name": "royal jigsaw" + }, + { + "appid": 1859110, + "normalized_name": "holiday jigsaw christmas" + }, + { + "appid": 1859120, + "normalized_name": "holiday jigsaw valentine's day" + }, + { + "appid": 1859130, + "normalized_name": "solitaire jack frost winter adventures 3" + }, + { + "appid": 1859140, + "normalized_name": "pirate's solitaire" + }, + { + "appid": 1859150, + "normalized_name": "knight solitaire 2" + }, + { + "appid": 1859180, + "normalized_name": "我是黄油 pc" + }, + { + "appid": 1859220, + "normalized_name": "疯狂厨房vr" + }, + { + "appid": 1859270, + "normalized_name": "perfect partner" + }, + { + "appid": 1859280, + "normalized_name": "7 days to end with you" + }, + { + "appid": 1859290, + "normalized_name": "crypto miner tycoon simulator" + }, + { + "appid": 1859360, + "normalized_name": "dungeon village" + }, + { + "appid": 1859370, + "normalized_name": "dream house days dx" + }, + { + "appid": 1859390, + "normalized_name": "dagada's story" + }, + { + "appid": 1859430, + "normalized_name": "shadow labyrinth" + }, + { + "appid": 1859470, + "normalized_name": "pac man world re pac" + }, + { + "appid": 1859490, + "normalized_name": "planet td" + }, + { + "appid": 1859500, + "normalized_name": "comixxx desires" + }, + { + "appid": 1859520, + "normalized_name": "dream girlfriend twitch thot" + }, + { + "appid": 1859540, + "normalized_name": "plum bun reformatted" + }, + { + "appid": 1859550, + "normalized_name": "raise" + }, + { + "appid": 1859580, + "normalized_name": "full void" + }, + { + "appid": 1859620, + "normalized_name": "brutal john 2" + }, + { + "appid": 1859630, + "normalized_name": "jean and josie" + }, + { + "appid": 1859640, + "normalized_name": "simulatte coffee shop simulator" + }, + { + "appid": 1859650, + "normalized_name": "ryzer the reflectors path" + }, + { + "appid": 1859670, + "normalized_name": "provisional detective" + }, + { + "appid": 1859680, + "normalized_name": "avalanches" + }, + { + "appid": 1859720, + "normalized_name": "discolored 2" + }, + { + "appid": 1859740, + "normalized_name": "battleforce" + }, + { + "appid": 1859760, + "normalized_name": "elf wives cheat to ride my meat" + }, + { + "appid": 1859770, + "normalized_name": "cubes and knights" + }, + { + "appid": 1859790, + "normalized_name": "existential" + }, + { + "appid": 1859800, + "normalized_name": "the hierophant" + }, + { + "appid": 1859840, + "normalized_name": "pixa clicker" + }, + { + "appid": 1859860, + "normalized_name": "party bots" + }, + { + "appid": 1859890, + "normalized_name": "spunner" + }, + { + "appid": 1859910, + "normalized_name": "活俠傳" + }, + { + "appid": 1859940, + "normalized_name": "buluk mayan warfare" + }, + { + "appid": 1859960, + "normalized_name": "danger is near" + }, + { + "appid": 1859970, + "normalized_name": "pseudo psy play" + }, + { + "appid": 1859980, + "normalized_name": "aurum" + }, + { + "appid": 1859990, + "normalized_name": "out of orbit" + }, + { + "appid": 1860010, + "normalized_name": "keepers 1477" + }, + { + "appid": 1860040, + "normalized_name": "samurai tactics" + }, + { + "appid": 1860090, + "normalized_name": "pirates of heaven" + }, + { + "appid": 1860110, + "normalized_name": "rabbit canyon" + }, + { + "appid": 1860120, + "normalized_name": "fractal fly" + }, + { + "appid": 1860140, + "normalized_name": "deitrus" + }, + { + "appid": 1860150, + "normalized_name": "operation8 project" + }, + { + "appid": 1860200, + "normalized_name": "boomer" + }, + { + "appid": 1860250, + "normalized_name": "miniwarfare" + }, + { + "appid": 1860260, + "normalized_name": "the scaling" + }, + { + "appid": 1860270, + "normalized_name": "prototype paradise lost" + }, + { + "appid": 1860280, + "normalized_name": "golf assassin break of egghead mafia" + }, + { + "appid": 1860320, + "normalized_name": "polygon of reality" + }, + { + "appid": 1860330, + "normalized_name": "cubelander" + }, + { + "appid": 1860350, + "normalized_name": "dream swing" + }, + { + "appid": 1860370, + "normalized_name": "weapons simulator" + }, + { + "appid": 1860410, + "normalized_name": "vtuber大師" + }, + { + "appid": 1860440, + "normalized_name": "anges & gardiens journey to the center of the earth" + }, + { + "appid": 1860490, + "normalized_name": "lords & blades" + }, + { + "appid": 1860500, + "normalized_name": "sweet collector" + }, + { + "appid": 1860510, + "normalized_name": "total conflict resistance" + }, + { + "appid": 1860530, + "normalized_name": "save billy" + }, + { + "appid": 1860540, + "normalized_name": "star sign" + }, + { + "appid": 1860550, + "normalized_name": "space quest 2099" + }, + { + "appid": 1860560, + "normalized_name": "offering" + }, + { + "appid": 1860570, + "normalized_name": "with you" + }, + { + "appid": 1860590, + "normalized_name": "extreme race" + }, + { + "appid": 1860600, + "normalized_name": "世界の為の全ての少女" + }, + { + "appid": 1860610, + "normalized_name": "wild west old sam" + }, + { + "appid": 1860650, + "normalized_name": "rokatusch" + }, + { + "appid": 1860700, + "normalized_name": "outmode" + }, + { + "appid": 1860710, + "normalized_name": "breaking newton" + }, + { + "appid": 1860750, + "normalized_name": "unnamedgame rpg" + }, + { + "appid": 1860760, + "normalized_name": "sukebe blocks" + }, + { + "appid": 1860800, + "normalized_name": "bo's adventure merging islands" + }, + { + "appid": 1860850, + "normalized_name": "entropy" + }, + { + "appid": 1860860, + "normalized_name": "flower girl 2" + }, + { + "appid": 1860870, + "normalized_name": "shapegrid" + }, + { + "appid": 1860900, + "normalized_name": "蔓不生長 antivine" + }, + { + "appid": 1860930, + "normalized_name": "001 earth" + }, + { + "appid": 1861040, + "normalized_name": "激斗x死斗 battle x death" + }, + { + "appid": 1861090, + "normalized_name": "dire destiny time travel" + }, + { + "appid": 1861100, + "normalized_name": "vr lightingclimbing" + }, + { + "appid": 1861110, + "normalized_name": "blocky.go!" + }, + { + "appid": 1861120, + "normalized_name": "line time" + }, + { + "appid": 1861130, + "normalized_name": "mindbloc" + }, + { + "appid": 1861230, + "normalized_name": "taisho x alice heads & tails" + }, + { + "appid": 1861250, + "normalized_name": "antro" + }, + { + "appid": 1861260, + "normalized_name": "isletopia" + }, + { + "appid": 1861290, + "normalized_name": "devil spire" + }, + { + "appid": 1861310, + "normalized_name": "nevedomo" + }, + { + "appid": 1861340, + "normalized_name": "bomb pong" + }, + { + "appid": 1861380, + "normalized_name": "toad tales" + }, + { + "appid": 1861390, + "normalized_name": "way on where" + }, + { + "appid": 1861410, + "normalized_name": "iron guard salvation" + }, + { + "appid": 1861440, + "normalized_name": "clem" + }, + { + "appid": 1861450, + "normalized_name": "the courier" + }, + { + "appid": 1861470, + "normalized_name": "ballad of ba'al" + }, + { + "appid": 1861490, + "normalized_name": "my furry teacher 🐾" + }, + { + "appid": 1861500, + "normalized_name": "pure logic" + }, + { + "appid": 1861530, + "normalized_name": "dust remains" + }, + { + "appid": 1861610, + "normalized_name": "endorphin vice" + }, + { + "appid": 1861630, + "normalized_name": "junk survivor" + }, + { + "appid": 1861670, + "normalized_name": "虚国:元灵召唤 virtual country yuan fairy summon" + }, + { + "appid": 1861700, + "normalized_name": "drop one npc to another" + }, + { + "appid": 1861710, + "normalized_name": "propeller king" + }, + { + "appid": 1861760, + "normalized_name": "samurai challenge" + }, + { + "appid": 1861830, + "normalized_name": "moonwool" + }, + { + "appid": 1861870, + "normalized_name": "shadow fate" + }, + { + "appid": 1861880, + "normalized_name": "air traffic greenlight" + }, + { + "appid": 1861940, + "normalized_name": "monsters and weapons" + }, + { + "appid": 1861970, + "normalized_name": "mister furry" + }, + { + "appid": 1861980, + "normalized_name": "di da dobble" + }, + { + "appid": 1861990, + "normalized_name": "srok godnosti" + }, + { + "appid": 1862010, + "normalized_name": "double time" + }, + { + "appid": 1862020, + "normalized_name": "hoverrace" + }, + { + "appid": 1862030, + "normalized_name": "duloga" + }, + { + "appid": 1862070, + "normalized_name": "semiconductor" + }, + { + "appid": 1862080, + "normalized_name": "wormventures barrier 51" + }, + { + "appid": 1862100, + "normalized_name": "quest for cathay kingdom mah jong" + }, + { + "appid": 1862170, + "normalized_name": "cursebound" + }, + { + "appid": 1862180, + "normalized_name": "lunar odyssey" + }, + { + "appid": 1862200, + "normalized_name": "jigsaw novel sexy job interview" + }, + { + "appid": 1862210, + "normalized_name": "dodge it! 2" + }, + { + "appid": 1862220, + "normalized_name": "space hopper" + }, + { + "appid": 1862230, + "normalized_name": "puck bash" + }, + { + "appid": 1862240, + "normalized_name": "shajra namla" + }, + { + "appid": 1862250, + "normalized_name": "run run piñata" + }, + { + "appid": 1862280, + "normalized_name": "hell's delivery" + }, + { + "appid": 1862340, + "normalized_name": "spellfort" + }, + { + "appid": 1862390, + "normalized_name": "ecco the last wisper [early acces]" + }, + { + "appid": 1862400, + "normalized_name": "gladiator" + }, + { + "appid": 1862420, + "normalized_name": "spryward" + }, + { + "appid": 1862430, + "normalized_name": "repurpose" + }, + { + "appid": 1862480, + "normalized_name": "schwarzwald" + }, + { + "appid": 1862500, + "normalized_name": "catch them!" + }, + { + "appid": 1862520, + "normalized_name": "just go" + }, + { + "appid": 1862530, + "normalized_name": "space dragons" + }, + { + "appid": 1862550, + "normalized_name": "spaceward cosmic conflict" + }, + { + "appid": 1862600, + "normalized_name": "dino island adventure" + }, + { + "appid": 1862630, + "normalized_name": "reveal your monster" + }, + { + "appid": 1862660, + "normalized_name": "garage vamp" + }, + { + "appid": 1862710, + "normalized_name": "space ducks the great escape" + }, + { + "appid": 1862730, + "normalized_name": "lord temin's fortress" + }, + { + "appid": 1862740, + "normalized_name": "fury fighters" + }, + { + "appid": 1862760, + "normalized_name": "deckstrander" + }, + { + "appid": 1862790, + "normalized_name": "siienaa" + }, + { + "appid": 1862820, + "normalized_name": "royal roads 3 portal" + }, + { + "appid": 1862830, + "normalized_name": "lost artifacts mysterious book collector's" + }, + { + "appid": 1862840, + "normalized_name": "bash the teacher! classroom clicker" + }, + { + "appid": 1862850, + "normalized_name": "nerraia" + }, + { + "appid": 1862880, + "normalized_name": "guildford castle vr" + }, + { + "appid": 1862950, + "normalized_name": "captain soda" + }, + { + "appid": 1862960, + "normalized_name": "vestige" + }, + { + "appid": 1863000, + "normalized_name": "edrick's conquest" + }, + { + "appid": 1863010, + "normalized_name": "duckhunt missouri" + }, + { + "appid": 1863020, + "normalized_name": "hentai dream" + }, + { + "appid": 1863030, + "normalized_name": "cake4d" + }, + { + "appid": 1863080, + "normalized_name": "beat invaders" + }, + { + "appid": 1863100, + "normalized_name": "spooky shooter 3d" + }, + { + "appid": 1863110, + "normalized_name": "unread unwound" + }, + { + "appid": 1863120, + "normalized_name": "kamakazzzbee" + }, + { + "appid": 1863150, + "normalized_name": "mr. mower" + }, + { + "appid": 1863160, + "normalized_name": "shibadungeon" + }, + { + "appid": 1863170, + "normalized_name": "死守危城" + }, + { + "appid": 1863240, + "normalized_name": "game city" + }, + { + "appid": 1863250, + "normalized_name": "life of pepe" + }, + { + "appid": 1863270, + "normalized_name": "castle escape" + }, + { + "appid": 1863280, + "normalized_name": "dnaxcat vr" + }, + { + "appid": 1863290, + "normalized_name": "spunkstock music festival" + }, + { + "appid": 1863300, + "normalized_name": "∀stralbringer shaded arkarium" + }, + { + "appid": 1863390, + "normalized_name": "n age awakening" + }, + { + "appid": 1863400, + "normalized_name": "raincouver" + }, + { + "appid": 1863420, + "normalized_name": "crazy cube adventure" + }, + { + "appid": 1863430, + "normalized_name": "dragonkin the banished" + }, + { + "appid": 1863460, + "normalized_name": "pixel art school 今から始めるドット絵入門" + }, + { + "appid": 1863520, + "normalized_name": "月光のソードブレイカー ミナト編" + }, + { + "appid": 1863530, + "normalized_name": "beneath the deep" + }, + { + "appid": 1863540, + "normalized_name": "月出之时" + }, + { + "appid": 1863550, + "normalized_name": "magic guardian" + }, + { + "appid": 1863560, + "normalized_name": "η κλοπή του κρασιου" + }, + { + "appid": 1863570, + "normalized_name": "yuza" + }, + { + "appid": 1863610, + "normalized_name": "thumb thump" + }, + { + "appid": 1863630, + "normalized_name": "b 1ll1" + }, + { + "appid": 1863650, + "normalized_name": "van van up!" + }, + { + "appid": 1863670, + "normalized_name": "mystwood manor" + }, + { + "appid": 1863700, + "normalized_name": "furry boys jigsaw" + }, + { + "appid": 1863720, + "normalized_name": "small crystal" + }, + { + "appid": 1863750, + "normalized_name": "挂机神话" + }, + { + "appid": 1863770, + "normalized_name": "the last of samual" + }, + { + "appid": 1863820, + "normalized_name": "first steps" + }, + { + "appid": 1863910, + "normalized_name": "project speed 2" + }, + { + "appid": 1863920, + "normalized_name": "モールス信号で愛を伝えよ。" + }, + { + "appid": 1863940, + "normalized_name": "bunny box breakout" + }, + { + "appid": 1863950, + "normalized_name": "demon's run" + }, + { + "appid": 1863960, + "normalized_name": "fitstrike" + }, + { + "appid": 1863980, + "normalized_name": "tor tor cubes" + }, + { + "appid": 1863990, + "normalized_name": "stapel" + }, + { + "appid": 1864000, + "normalized_name": "artis impact" + }, + { + "appid": 1864020, + "normalized_name": "teleportia" + }, + { + "appid": 1864070, + "normalized_name": "yume special" + }, + { + "appid": 1864080, + "normalized_name": "assault bots" + }, + { + "appid": 1864090, + "normalized_name": "difficulty" + }, + { + "appid": 1864120, + "normalized_name": "furry nights" + }, + { + "appid": 1864180, + "normalized_name": "rolling valley" + }, + { + "appid": 1864190, + "normalized_name": "space pressure 3d prelude" + }, + { + "appid": 1864210, + "normalized_name": "zombie war" + }, + { + "appid": 1864290, + "normalized_name": "steel tower swordmaster" + }, + { + "appid": 1864320, + "normalized_name": "race! beauty! bugs!" + }, + { + "appid": 1864370, + "normalized_name": "r.h." + }, + { + "appid": 1864400, + "normalized_name": "outlandia" + }, + { + "appid": 1864410, + "normalized_name": "jammo" + }, + { + "appid": 1864440, + "normalized_name": "symbol games horror bundle" + }, + { + "appid": 1864460, + "normalized_name": "room prison" + }, + { + "appid": 1864490, + "normalized_name": "3d solar system simulator" + }, + { + "appid": 1864500, + "normalized_name": "the family cat" + }, + { + "appid": 1864520, + "normalized_name": "nzera" + }, + { + "appid": 1864530, + "normalized_name": "succubi's trap dungeon of seduction" + }, + { + "appid": 1864560, + "normalized_name": "从零开始的勇者生活" + }, + { + "appid": 1864580, + "normalized_name": "dinosaurs a prehistoric adventure 2" + }, + { + "appid": 1864590, + "normalized_name": "枝江第一舞斗会" + }, + { + "appid": 1864620, + "normalized_name": "boss of the mafia" + }, + { + "appid": 1864630, + "normalized_name": "virago" + }, + { + "appid": 1864650, + "normalized_name": "dragon princess anastasia" + }, + { + "appid": 1864670, + "normalized_name": "fuzzys quest 2" + }, + { + "appid": 1864680, + "normalized_name": "it sleeps below the haar" + }, + { + "appid": 1864690, + "normalized_name": "veterum" + }, + { + "appid": 1864710, + "normalized_name": "coin operated carnage" + }, + { + "appid": 1864720, + "normalized_name": "kanpeki" + }, + { + "appid": 1864750, + "normalized_name": "heeey! park boy!" + }, + { + "appid": 1864770, + "normalized_name": "vulgaria" + }, + { + "appid": 1864800, + "normalized_name": "village of origins" + }, + { + "appid": 1864830, + "normalized_name": "emblem of valor" + }, + { + "appid": 1864850, + "normalized_name": "hidden map" + }, + { + "appid": 1864860, + "normalized_name": "hidden islands" + }, + { + "appid": 1864880, + "normalized_name": "roman triumph survival city builder" + }, + { + "appid": 1864910, + "normalized_name": "bumaga" + }, + { + "appid": 1864950, + "normalized_name": "beastieball" + }, + { + "appid": 1865010, + "normalized_name": "皓际大冒险" + }, + { + "appid": 1865050, + "normalized_name": "hellfire 1988 an oregon story" + }, + { + "appid": 1865060, + "normalized_name": "14 minesweeper variants" + }, + { + "appid": 1865080, + "normalized_name": "idol queens production" + }, + { + "appid": 1865100, + "normalized_name": "pengu never left" + }, + { + "appid": 1865130, + "normalized_name": "haha doodle" + }, + { + "appid": 1865140, + "normalized_name": "three defilements" + }, + { + "appid": 1865170, + "normalized_name": "eden's last sunrise" + }, + { + "appid": 1865210, + "normalized_name": "69 lily hot" + }, + { + "appid": 1865220, + "normalized_name": "ouija rumours" + }, + { + "appid": 1865230, + "normalized_name": "the dreaming fox" + }, + { + "appid": 1865250, + "normalized_name": "42 ways to die in space" + }, + { + "appid": 1865260, + "normalized_name": "petrified" + }, + { + "appid": 1865280, + "normalized_name": "novalie" + }, + { + "appid": 1865340, + "normalized_name": "menu please!" + }, + { + "appid": 1865360, + "normalized_name": "stellarium" + }, + { + "appid": 1865370, + "normalized_name": "the one who pulls out the sword will be crowned king" + }, + { + "appid": 1865440, + "normalized_name": "cave crawler" + }, + { + "appid": 1865470, + "normalized_name": "dimension shifter" + }, + { + "appid": 1865500, + "normalized_name": "run girls run" + }, + { + "appid": 1865510, + "normalized_name": "notebook entries vol. 1" + }, + { + "appid": 1865590, + "normalized_name": "bombsweepervr" + }, + { + "appid": 1865650, + "normalized_name": "aldebaran legend" + }, + { + "appid": 1865670, + "normalized_name": "gensokyo odyssey" + }, + { + "appid": 1865680, + "normalized_name": "瓔珞事件簿之誰殺了愛情" + }, + { + "appid": 1865710, + "normalized_name": "primal omen" + }, + { + "appid": 1865730, + "normalized_name": "runes of pandemonium" + }, + { + "appid": 1865750, + "normalized_name": "faye falling" + }, + { + "appid": 1865770, + "normalized_name": "ragnarok v returns" + }, + { + "appid": 1865880, + "normalized_name": "dungeon & burglar" + }, + { + "appid": 1865890, + "normalized_name": "creature hunter" + }, + { + "appid": 1865930, + "normalized_name": "space prison" + }, + { + "appid": 1865940, + "normalized_name": "lead the way full collection" + }, + { + "appid": 1865960, + "normalized_name": "symphonia" + }, + { + "appid": 1865990, + "normalized_name": "hoppin" + }, + { + "appid": 1866090, + "normalized_name": "insect simulator" + }, + { + "appid": 1866110, + "normalized_name": "anime gas station" + }, + { + "appid": 1866120, + "normalized_name": "heartwood heroes" + }, + { + "appid": 1866130, + "normalized_name": "morbid metal" + }, + { + "appid": 1866170, + "normalized_name": "interlayer" + }, + { + "appid": 1866180, + "normalized_name": "hooked on you a dead by daylight dating sim" + }, + { + "appid": 1866220, + "normalized_name": "hexojago" + }, + { + "appid": 1866260, + "normalized_name": "lighthouse stories book one part one" + }, + { + "appid": 1866300, + "normalized_name": "dawn apart" + }, + { + "appid": 1866310, + "normalized_name": "click quest 3d 2 plus" + }, + { + "appid": 1866320, + "normalized_name": "baladins" + }, + { + "appid": 1866340, + "normalized_name": "cuboton" + }, + { + "appid": 1866360, + "normalized_name": "chimeral fantasy" + }, + { + "appid": 1866380, + "normalized_name": "tower alchemist defend khaldoria" + }, + { + "appid": 1866390, + "normalized_name": "dimension dash" + }, + { + "appid": 1866420, + "normalized_name": "la pucelle ragnarok" + }, + { + "appid": 1866430, + "normalized_name": "rhapsody a musical adventure" + }, + { + "appid": 1866450, + "normalized_name": "organised crime" + }, + { + "appid": 1866460, + "normalized_name": "menimals" + }, + { + "appid": 1866470, + "normalized_name": "guns n stuff 2" + }, + { + "appid": 1866510, + "normalized_name": "elemental battlefields" + }, + { + "appid": 1866570, + "normalized_name": "xross dreams" + }, + { + "appid": 1866600, + "normalized_name": "damsels of vice" + }, + { + "appid": 1866610, + "normalized_name": "traction control" + }, + { + "appid": 1866630, + "normalized_name": "throne of bone" + }, + { + "appid": 1866640, + "normalized_name": "kronos" + }, + { + "appid": 1866670, + "normalized_name": "赋灵牌" + }, + { + "appid": 1866700, + "normalized_name": "sharon and the last garden" + }, + { + "appid": 1866710, + "normalized_name": "draft day sports college football 2022" + }, + { + "appid": 1866720, + "normalized_name": "我是个宝箱,你呢 / just a chest" + }, + { + "appid": 1866780, + "normalized_name": "natural" + }, + { + "appid": 1866840, + "normalized_name": "mysterious adventure of michael 2" + }, + { + "appid": 1866870, + "normalized_name": "honey homer" + }, + { + "appid": 1866880, + "normalized_name": "修仙故事 轮回 cultivation story reincarnation" + }, + { + "appid": 1866890, + "normalized_name": "white" + }, + { + "appid": 1866920, + "normalized_name": "before fate" + }, + { + "appid": 1866960, + "normalized_name": "i am on fire (小小火神)" + }, + { + "appid": 1866970, + "normalized_name": "when i die" + }, + { + "appid": 1866980, + "normalized_name": "worlds of aria" + }, + { + "appid": 1866990, + "normalized_name": "scoop kick!" + }, + { + "appid": 1867000, + "normalized_name": "pretty girls speed" + }, + { + "appid": 1867050, + "normalized_name": "jules" + }, + { + "appid": 1867070, + "normalized_name": "darxanadon" + }, + { + "appid": 1867100, + "normalized_name": "merge hero" + }, + { + "appid": 1867110, + "normalized_name": "omi oh my ai" + }, + { + "appid": 1867190, + "normalized_name": "wordle 5" + }, + { + "appid": 1867200, + "normalized_name": "sunny love" + }, + { + "appid": 1867210, + "normalized_name": "blades of heroes samurai rising" + }, + { + "appid": 1867260, + "normalized_name": "way down" + }, + { + "appid": 1867270, + "normalized_name": "meteoheroes" + }, + { + "appid": 1867280, + "normalized_name": "cyberpunk girls" + }, + { + "appid": 1867290, + "normalized_name": "late photographer 2" + }, + { + "appid": 1867320, + "normalized_name": "werewolves revenge" + }, + { + "appid": 1867330, + "normalized_name": "surreal nightmare" + }, + { + "appid": 1867350, + "normalized_name": "slime village vr" + }, + { + "appid": 1867370, + "normalized_name": "upheaveal" + }, + { + "appid": 1867400, + "normalized_name": "slide furry futanari" + }, + { + "appid": 1867410, + "normalized_name": "friendmocracy" + }, + { + "appid": 1867450, + "normalized_name": "how to bathe your cat impossible mission" + }, + { + "appid": 1867470, + "normalized_name": "death by tomato" + }, + { + "appid": 1867480, + "normalized_name": "the hike" + }, + { + "appid": 1867490, + "normalized_name": "candy monsters" + }, + { + "appid": 1867510, + "normalized_name": "wrestlequest" + }, + { + "appid": 1867520, + "normalized_name": "homestead arcana" + }, + { + "appid": 1867530, + "normalized_name": "solar ash" + }, + { + "appid": 1867550, + "normalized_name": "armageddon war old era wreckers / 大鏖战 旧时代的残党" + }, + { + "appid": 1867560, + "normalized_name": "silverblood" + }, + { + "appid": 1867580, + "normalized_name": "final space the rescue" + }, + { + "appid": 1867590, + "normalized_name": "mannequin the passing" + }, + { + "appid": 1867610, + "normalized_name": "sokowinter" + }, + { + "appid": 1867650, + "normalized_name": "bicycle mechanic simulator" + }, + { + "appid": 1867670, + "normalized_name": "the sinking structure clione and lost child log1" + }, + { + "appid": 1867740, + "normalized_name": "like dreamer" + }, + { + "appid": 1867760, + "normalized_name": "underlab" + }, + { + "appid": 1867790, + "normalized_name": "斯巴达战纪" + }, + { + "appid": 1867800, + "normalized_name": "艾利欧斯的狩猎eliosi's hunt" + }, + { + "appid": 1867810, + "normalized_name": "mercenaries rebirth call of the wild lynx" + }, + { + "appid": 1867820, + "normalized_name": "orbital mechanics" + }, + { + "appid": 1867830, + "normalized_name": "big drug" + }, + { + "appid": 1867900, + "normalized_name": "小骑士" + }, + { + "appid": 1867920, + "normalized_name": "intern ship a no humanity saga" + }, + { + "appid": 1867930, + "normalized_name": "mini putt camelot" + }, + { + "appid": 1867940, + "normalized_name": "accelebration" + }, + { + "appid": 1867960, + "normalized_name": "salvation shadows of the faceless" + }, + { + "appid": 1868000, + "normalized_name": "resist the succubus—the end of the female knight" + }, + { + "appid": 1868020, + "normalized_name": "maid of the dead" + }, + { + "appid": 1868030, + "normalized_name": "kilroy was here" + }, + { + "appid": 1868050, + "normalized_name": "vortex" + }, + { + "appid": 1868060, + "normalized_name": "who shuffled my shapes?" + }, + { + "appid": 1868070, + "normalized_name": "whispers in the west co op murder mystery" + }, + { + "appid": 1868080, + "normalized_name": "motorsim 3" + }, + { + "appid": 1868110, + "normalized_name": "break pattern" + }, + { + "appid": 1868120, + "normalized_name": "black ace" + }, + { + "appid": 1868140, + "normalized_name": "dave the diver" + }, + { + "appid": 1868170, + "normalized_name": "etrian odyssey ii hd" + }, + { + "appid": 1868180, + "normalized_name": "etrian odyssey hd" + }, + { + "appid": 1868210, + "normalized_name": "bunker builder simulator" + }, + { + "appid": 1868220, + "normalized_name": "astoriavr" + }, + { + "appid": 1868240, + "normalized_name": "ink bunny" + }, + { + "appid": 1868260, + "normalized_name": "the dark defender" + }, + { + "appid": 1868280, + "normalized_name": "coins collector simulator" + }, + { + "appid": 1868290, + "normalized_name": "piece makers" + }, + { + "appid": 1868300, + "normalized_name": "american theft 80s prologue" + }, + { + "appid": 1868310, + "normalized_name": "light of life" + }, + { + "appid": 1868350, + "normalized_name": "tainted gun" + }, + { + "appid": 1868360, + "normalized_name": "deep sleep labyrinth of the forsaken" + }, + { + "appid": 1868400, + "normalized_name": "performvr" + }, + { + "appid": 1868410, + "normalized_name": "movie night" + }, + { + "appid": 1868430, + "normalized_name": "tempo punk" + }, + { + "appid": 1868450, + "normalized_name": "crazi lift" + }, + { + "appid": 1868460, + "normalized_name": "hazmat magic" + }, + { + "appid": 1868500, + "normalized_name": "entangled" + }, + { + "appid": 1868510, + "normalized_name": "wordish" + }, + { + "appid": 1868520, + "normalized_name": "super perils of baking" + }, + { + "appid": 1868540, + "normalized_name": "zenteni" + }, + { + "appid": 1868550, + "normalized_name": "crossroads on a just path collector's" + }, + { + "appid": 1868580, + "normalized_name": "chaos cities" + }, + { + "appid": 1868600, + "normalized_name": "fighting heart" + }, + { + "appid": 1868650, + "normalized_name": "bugged" + }, + { + "appid": 1868680, + "normalized_name": "street cleaner 3" + }, + { + "appid": 1868710, + "normalized_name": "pirates on target" + }, + { + "appid": 1868730, + "normalized_name": "gettysburg fields of valor" + }, + { + "appid": 1868750, + "normalized_name": "secrets for taking" + }, + { + "appid": 1868760, + "normalized_name": "evogene" + }, + { + "appid": 1868800, + "normalized_name": "sneakers custom simulator" + }, + { + "appid": 1868820, + "normalized_name": "contact" + }, + { + "appid": 1868840, + "normalized_name": "alien defense" + }, + { + "appid": 1868850, + "normalized_name": "dickdown duel" + }, + { + "appid": 1868870, + "normalized_name": "ninehouse / 九型人格" + }, + { + "appid": 1868980, + "normalized_name": "素数ガール" + }, + { + "appid": 1869020, + "normalized_name": "tits okay tits fine" + }, + { + "appid": 1869030, + "normalized_name": "機辯意識 (project court 2050)" + }, + { + "appid": 1869070, + "normalized_name": "survive planet yubglub" + }, + { + "appid": 1869090, + "normalized_name": "witches of the fourth multiplayer" + }, + { + "appid": 1869110, + "normalized_name": "last chance market" + }, + { + "appid": 1869120, + "normalized_name": "wolf of the mountain" + }, + { + "appid": 1869170, + "normalized_name": "powerup party" + }, + { + "appid": 1869200, + "normalized_name": "the adventures of mr. hat" + }, + { + "appid": 1869250, + "normalized_name": "the wassie games" + }, + { + "appid": 1869270, + "normalized_name": "multi turret academy" + }, + { + "appid": 1869280, + "normalized_name": "into the cthulhu mythology" + }, + { + "appid": 1869290, + "normalized_name": "supraworld" + }, + { + "appid": 1869310, + "normalized_name": "paper wizards" + }, + { + "appid": 1869330, + "normalized_name": "jigsaw novel kinky bondage" + }, + { + "appid": 1869370, + "normalized_name": "sex adventures the secret club" + }, + { + "appid": 1869430, + "normalized_name": "gunslinger valley" + }, + { + "appid": 1869460, + "normalized_name": "the buildsphere ~ rise of the anomalbots" + }, + { + "appid": 1869490, + "normalized_name": "nodes" + }, + { + "appid": 1869510, + "normalized_name": "telestians" + }, + { + "appid": 1869560, + "normalized_name": "yoko redux dreams of a blue planet" + }, + { + "appid": 1869570, + "normalized_name": "black ink" + }, + { + "appid": 1869580, + "normalized_name": "riley & rochelle" + }, + { + "appid": 1869590, + "normalized_name": "omega strikers" + }, + { + "appid": 1869600, + "normalized_name": "arcsine" + }, + { + "appid": 1869620, + "normalized_name": "pie o'clock!" + }, + { + "appid": 1869630, + "normalized_name": "squamations" + }, + { + "appid": 1869680, + "normalized_name": "adam's memories" + }, + { + "appid": 1869690, + "normalized_name": "search all sushi" + }, + { + "appid": 1869710, + "normalized_name": "invention 3" + }, + { + "appid": 1869770, + "normalized_name": "starlab" + }, + { + "appid": 1869780, + "normalized_name": "undermine 2" + }, + { + "appid": 1869830, + "normalized_name": "secrets of orion sword of destiny." + }, + { + "appid": 1869870, + "normalized_name": "cartomancy anthology" + }, + { + "appid": 1869880, + "normalized_name": "slingstar" + }, + { + "appid": 1869890, + "normalized_name": "destroy simulator" + }, + { + "appid": 1869900, + "normalized_name": "a ghostly rose" + }, + { + "appid": 1869980, + "normalized_name": "grisaia phantom trigger vol.8" + }, + { + "appid": 1869990, + "normalized_name": "生還者日" + }, + { + "appid": 1870020, + "normalized_name": "欢迎回家 welcome home" + }, + { + "appid": 1870070, + "normalized_name": "白法师" + }, + { + "appid": 1870140, + "normalized_name": "xuan yuan sword the cloud of han" + }, + { + "appid": 1870150, + "normalized_name": "xuan yuan sword the clouds faraway" + }, + { + "appid": 1870160, + "normalized_name": "dye hard" + }, + { + "appid": 1870170, + "normalized_name": "emiko's pledge" + }, + { + "appid": 1870180, + "normalized_name": "frozen friday night the eve" + }, + { + "appid": 1870190, + "normalized_name": "hell mission" + }, + { + "appid": 1870200, + "normalized_name": "war of resistance" + }, + { + "appid": 1870210, + "normalized_name": "amazin' george 2 digital deluxe" + }, + { + "appid": 1870220, + "normalized_name": "empyreal dawn" + }, + { + "appid": 1870280, + "normalized_name": "zplague" + }, + { + "appid": 1870300, + "normalized_name": "sovl fantasy warfare" + }, + { + "appid": 1870310, + "normalized_name": "doomsday robot girl" + }, + { + "appid": 1870320, + "normalized_name": "world seed" + }, + { + "appid": 1870330, + "normalized_name": "gigmaker" + }, + { + "appid": 1870390, + "normalized_name": "apple simulator" + }, + { + "appid": 1870400, + "normalized_name": "super spacemail" + }, + { + "appid": 1870410, + "normalized_name": "gangsta the return" + }, + { + "appid": 1870430, + "normalized_name": "your personal chill apartment" + }, + { + "appid": 1870440, + "normalized_name": "funny panda" + }, + { + "appid": 1870460, + "normalized_name": "the forgotten castle" + }, + { + "appid": 1870480, + "normalized_name": "tsjost's heroic soup bazooka" + }, + { + "appid": 1870490, + "normalized_name": "prop hunt 2.0" + }, + { + "appid": 1870550, + "normalized_name": "pirate's den renovator" + }, + { + "appid": 1870570, + "normalized_name": "hyper road carnage" + }, + { + "appid": 1870580, + "normalized_name": "winter with you" + }, + { + "appid": 1870590, + "normalized_name": "gravity break" + }, + { + "appid": 1870610, + "normalized_name": "cubey's adventure" + }, + { + "appid": 1870630, + "normalized_name": "virtual virtual reality 2" + }, + { + "appid": 1870660, + "normalized_name": "(dis)assemble" + }, + { + "appid": 1870670, + "normalized_name": "metal miners" + }, + { + "appid": 1870700, + "normalized_name": "the edge of allegoria" + }, + { + "appid": 1870710, + "normalized_name": "circuit laser maze" + }, + { + "appid": 1870750, + "normalized_name": "勇者的异界打怪种田生活" + }, + { + "appid": 1870790, + "normalized_name": "heat runner" + }, + { + "appid": 1870800, + "normalized_name": "mutant karate canary" + }, + { + "appid": 1870850, + "normalized_name": "kuma the environmental protector" + }, + { + "appid": 1870910, + "normalized_name": "dimension quest pinball" + }, + { + "appid": 1870930, + "normalized_name": "atlas ablaze" + }, + { + "appid": 1870970, + "normalized_name": "castillo shattered mirrors" + }, + { + "appid": 1870990, + "normalized_name": "清除计划·晶灵" + }, + { + "appid": 1871000, + "normalized_name": "furry futanari 3 in 1 ⚧🏳🌈" + }, + { + "appid": 1871010, + "normalized_name": "dubu rush" + }, + { + "appid": 1871020, + "normalized_name": "休闲拼一拼" + }, + { + "appid": 1871030, + "normalized_name": "my little colony" + }, + { + "appid": 1871090, + "normalized_name": "sabbuth" + }, + { + "appid": 1871100, + "normalized_name": "ruinlander" + }, + { + "appid": 1871110, + "normalized_name": "blinding oversight" + }, + { + "appid": 1871160, + "normalized_name": "blind wizard's assistant" + }, + { + "appid": 1871170, + "normalized_name": "多宝修仙" + }, + { + "appid": 1871230, + "normalized_name": "bitcoin chill" + }, + { + "appid": 1871260, + "normalized_name": "lyara" + }, + { + "appid": 1871290, + "normalized_name": "finger football" + }, + { + "appid": 1871310, + "normalized_name": "hook 2" + }, + { + "appid": 1871330, + "normalized_name": "ghostlight melancholia" + }, + { + "appid": 1871350, + "normalized_name": "os memories" + }, + { + "appid": 1871420, + "normalized_name": "fresh out the oven" + }, + { + "appid": 1871430, + "normalized_name": "tekla" + }, + { + "appid": 1871450, + "normalized_name": "missile input" + }, + { + "appid": 1871460, + "normalized_name": "beasts of steel" + }, + { + "appid": 1871470, + "normalized_name": "dransik" + }, + { + "appid": 1871480, + "normalized_name": "edgelords" + }, + { + "appid": 1871490, + "normalized_name": "tactical recon" + }, + { + "appid": 1871500, + "normalized_name": "one line letters and codes" + }, + { + "appid": 1871510, + "normalized_name": "within skerry" + }, + { + "appid": 1871590, + "normalized_name": "snips & snails" + }, + { + "appid": 1871600, + "normalized_name": "the great war of jorth" + }, + { + "appid": 1871610, + "normalized_name": "rei galo td" + }, + { + "appid": 1871620, + "normalized_name": "covid simulator" + }, + { + "appid": 1871640, + "normalized_name": "the backworld" + }, + { + "appid": 1871650, + "normalized_name": "doki doki tri line quest" + }, + { + "appid": 1871670, + "normalized_name": "three sons" + }, + { + "appid": 1871700, + "normalized_name": "yeah yeah beebiss ii" + }, + { + "appid": 1871740, + "normalized_name": "graduater" + }, + { + "appid": 1871750, + "normalized_name": "camp focus" + }, + { + "appid": 1871760, + "normalized_name": "vavala" + }, + { + "appid": 1871770, + "normalized_name": "wild frontier" + }, + { + "appid": 1871780, + "normalized_name": "rorys restaurant origins" + }, + { + "appid": 1871790, + "normalized_name": "bad faith" + }, + { + "appid": 1871810, + "normalized_name": "otome no himitsu" + }, + { + "appid": 1871830, + "normalized_name": "errante" + }, + { + "appid": 1871840, + "normalized_name": "eyo jump 'n' run rpg" + }, + { + "appid": 1871880, + "normalized_name": "num one revised" + }, + { + "appid": 1871900, + "normalized_name": "lost between" + }, + { + "appid": 1871920, + "normalized_name": "fantasy mosaics 35 day at the museum" + }, + { + "appid": 1871940, + "normalized_name": "zoa protocol" + }, + { + "appid": 1871970, + "normalized_name": "rise for the fight early access" + }, + { + "appid": 1871990, + "normalized_name": "engine evolution 2022" + }, + { + "appid": 1872040, + "normalized_name": "toziuha night dracula's revenge" + }, + { + "appid": 1872050, + "normalized_name": "cosmic monsters 2 enclaves dawn" + }, + { + "appid": 1872060, + "normalized_name": "world of epicia" + }, + { + "appid": 1872100, + "normalized_name": "desu vult" + }, + { + "appid": 1872110, + "normalized_name": "super ninja miner" + }, + { + "appid": 1872130, + "normalized_name": "cat and fish" + }, + { + "appid": 1872160, + "normalized_name": "epic knight" + }, + { + "appid": 1872170, + "normalized_name": "rob the bank" + }, + { + "appid": 1872200, + "normalized_name": "iron guard (non vr)" + }, + { + "appid": 1872250, + "normalized_name": "dancehallbrawl" + }, + { + "appid": 1872270, + "normalized_name": "blind dreams" + }, + { + "appid": 1872280, + "normalized_name": "physics of life simulator" + }, + { + "appid": 1872330, + "normalized_name": "树莓战记" + }, + { + "appid": 1872410, + "normalized_name": "dreadfire" + }, + { + "appid": 1872430, + "normalized_name": "half baked girls" + }, + { + "appid": 1872450, + "normalized_name": "baccarat corsair" + }, + { + "appid": 1872470, + "normalized_name": "hardworker simulator" + }, + { + "appid": 1872500, + "normalized_name": "rivalia dungeon raiders" + }, + { + "appid": 1872520, + "normalized_name": "hum" + }, + { + "appid": 1872550, + "normalized_name": "destroy all humans! – clone carnage" + }, + { + "appid": 1872580, + "normalized_name": "ghostly moans" + }, + { + "appid": 1872620, + "normalized_name": "the trooper" + }, + { + "appid": 1872660, + "normalized_name": "山海绘卷" + }, + { + "appid": 1872680, + "normalized_name": "the knight witch" + }, + { + "appid": 1872710, + "normalized_name": "path to gaea" + }, + { + "appid": 1872730, + "normalized_name": "math game" + }, + { + "appid": 1872740, + "normalized_name": "你画我拼you draw i puzzle" + }, + { + "appid": 1872780, + "normalized_name": "murder on space station 52" + }, + { + "appid": 1872790, + "normalized_name": "luckitown" + }, + { + "appid": 1872800, + "normalized_name": "eve vanguard" + }, + { + "appid": 1872830, + "normalized_name": "fireflies" + }, + { + "appid": 1872860, + "normalized_name": "conrad stevenson's paranormal p.i." + }, + { + "appid": 1872870, + "normalized_name": "united assault world war 2" + }, + { + "appid": 1872920, + "normalized_name": "pillars of sorrow" + }, + { + "appid": 1872970, + "normalized_name": "food truck empire" + }, + { + "appid": 1873000, + "normalized_name": "bad girl confidential the pleasure den" + }, + { + "appid": 1873030, + "normalized_name": "wolfenstein enemy territory" + }, + { + "appid": 1873040, + "normalized_name": "poly memory dogs" + }, + { + "appid": 1873080, + "normalized_name": "datascape" + }, + { + "appid": 1873120, + "normalized_name": "no love lost" + }, + { + "appid": 1873130, + "normalized_name": "blown away" + }, + { + "appid": 1873140, + "normalized_name": "horror cartridge collection" + }, + { + "appid": 1873170, + "normalized_name": "cease to breathe" + }, + { + "appid": 1873180, + "normalized_name": "detective agency" + }, + { + "appid": 1873200, + "normalized_name": "towers of thana" + }, + { + "appid": 1873220, + "normalized_name": "soul riders" + }, + { + "appid": 1873230, + "normalized_name": "cursed exped" + }, + { + "appid": 1873240, + "normalized_name": "bomberrage" + }, + { + "appid": 1873270, + "normalized_name": "coldsun" + }, + { + "appid": 1873300, + "normalized_name": "gyelfars" + }, + { + "appid": 1873380, + "normalized_name": "wonky works!" + }, + { + "appid": 1873400, + "normalized_name": "sugarkiss!" + }, + { + "appid": 1873410, + "normalized_name": "witch sacrifice" + }, + { + "appid": 1873420, + "normalized_name": "jigsaw novel public toilet sex" + }, + { + "appid": 1873430, + "normalized_name": "horny sakura" + }, + { + "appid": 1873440, + "normalized_name": "i am two people" + }, + { + "appid": 1873510, + "normalized_name": "aztlan uncovered prologue" + }, + { + "appid": 1873540, + "normalized_name": "world empire 2027" + }, + { + "appid": 1873550, + "normalized_name": "trapped vr" + }, + { + "appid": 1873570, + "normalized_name": "everblade" + }, + { + "appid": 1873720, + "normalized_name": "return ace" + }, + { + "appid": 1873740, + "normalized_name": "peace maker vr" + }, + { + "appid": 1873750, + "normalized_name": "periphery online" + }, + { + "appid": 1873780, + "normalized_name": "necrofarm" + }, + { + "appid": 1873800, + "normalized_name": "dead gun" + }, + { + "appid": 1873810, + "normalized_name": "crawling silence" + }, + { + "appid": 1873820, + "normalized_name": "inu's adventure" + }, + { + "appid": 1873860, + "normalized_name": "fayburrow" + }, + { + "appid": 1873870, + "normalized_name": "idea" + }, + { + "appid": 1873880, + "normalized_name": "collect objects" + }, + { + "appid": 1873920, + "normalized_name": "fracked" + }, + { + "appid": 1873960, + "normalized_name": "dungeon crawler" + }, + { + "appid": 1873990, + "normalized_name": "3d puzzle old house" + }, + { + "appid": 1874000, + "normalized_name": "life is strange double exposure" + }, + { + "appid": 1874010, + "normalized_name": "robert space stories and battles" + }, + { + "appid": 1874060, + "normalized_name": "blobbs" + }, + { + "appid": 1874080, + "normalized_name": "ファントムゾーン・タロン・フィクションズphantom zone talon fictions" + }, + { + "appid": 1874170, + "normalized_name": "shredders" + }, + { + "appid": 1874190, + "normalized_name": "vorax" + }, + { + "appid": 1874200, + "normalized_name": "i don't think i've walked this stretch of road before" + }, + { + "appid": 1874220, + "normalized_name": "go" + }, + { + "appid": 1874230, + "normalized_name": "rpg town" + }, + { + "appid": 1874260, + "normalized_name": "far away from home" + }, + { + "appid": 1874340, + "normalized_name": "wild west" + }, + { + "appid": 1874380, + "normalized_name": "каролина" + }, + { + "appid": 1874400, + "normalized_name": "mini mini golf" + }, + { + "appid": 1874420, + "normalized_name": "don't push me" + }, + { + "appid": 1874480, + "normalized_name": "hentai student" + }, + { + "appid": 1874490, + "normalized_name": "potionomics" + }, + { + "appid": 1874500, + "normalized_name": "mori" + }, + { + "appid": 1874510, + "normalized_name": "knightlife" + }, + { + "appid": 1874530, + "normalized_name": "peep invasion" + }, + { + "appid": 1874550, + "normalized_name": "moonfire a seeker's saga" + }, + { + "appid": 1874560, + "normalized_name": "infinadeck medieval maze" + }, + { + "appid": 1874620, + "normalized_name": "dive" + }, + { + "appid": 1874630, + "normalized_name": "room box" + }, + { + "appid": 1874660, + "normalized_name": "浮生箓 floating life" + }, + { + "appid": 1874680, + "normalized_name": "tower words" + }, + { + "appid": 1874690, + "normalized_name": "volleyhalla" + }, + { + "appid": 1874720, + "normalized_name": "elf world adventure part 1" + }, + { + "appid": 1874770, + "normalized_name": "secret series bj" + }, + { + "appid": 1874780, + "normalized_name": "月夜赞歌 melody in the moonlight" + }, + { + "appid": 1874810, + "normalized_name": "秋恋物语 autumn romance" + }, + { + "appid": 1874840, + "normalized_name": "runner rtx" + }, + { + "appid": 1874880, + "normalized_name": "arma reforger" + }, + { + "appid": 1874920, + "normalized_name": "100 days without delays" + }, + { + "appid": 1874950, + "normalized_name": "runner party" + }, + { + "appid": 1874980, + "normalized_name": "ready for riot" + }, + { + "appid": 1874990, + "normalized_name": "fluids & sounds mind relaxing and meditative" + }, + { + "appid": 1875060, + "normalized_name": "reus 2" + }, + { + "appid": 1875100, + "normalized_name": "crackin' smackin" + }, + { + "appid": 1875120, + "normalized_name": "marsmare alienation" + }, + { + "appid": 1875140, + "normalized_name": "黎明为歌 melody before the dawn" + }, + { + "appid": 1875160, + "normalized_name": "the blunderbuss" + }, + { + "appid": 1875180, + "normalized_name": "wonderbirds" + }, + { + "appid": 1875230, + "normalized_name": "a pigeon detective game twin beaks" + }, + { + "appid": 1875280, + "normalized_name": "miner ultra adventures 2" + }, + { + "appid": 1875310, + "normalized_name": "pro basketball manager 2023" + }, + { + "appid": 1875320, + "normalized_name": "to a t" + }, + { + "appid": 1875350, + "normalized_name": "the wanderer chosen one" + }, + { + "appid": 1875360, + "normalized_name": "off road farming" + }, + { + "appid": 1875370, + "normalized_name": "little islanders" + }, + { + "appid": 1875380, + "normalized_name": "shrine of tails" + }, + { + "appid": 1875410, + "normalized_name": "warden of the arcaen" + }, + { + "appid": 1875470, + "normalized_name": "ninjas against the machines" + }, + { + "appid": 1875520, + "normalized_name": "oscar's paradise" + }, + { + "appid": 1875530, + "normalized_name": "grim tales graywitch collector's" + }, + { + "appid": 1875540, + "normalized_name": "aria" + }, + { + "appid": 1875560, + "normalized_name": "mare" + }, + { + "appid": 1875580, + "normalized_name": "mina the hollower" + }, + { + "appid": 1875590, + "normalized_name": "塔塔帝国" + }, + { + "appid": 1875600, + "normalized_name": "the perished" + }, + { + "appid": 1875610, + "normalized_name": "illusion" + }, + { + "appid": 1875670, + "normalized_name": "gigant" + }, + { + "appid": 1875710, + "normalized_name": "parachuter" + }, + { + "appid": 1875720, + "normalized_name": "动物园怪谈" + }, + { + "appid": 1875750, + "normalized_name": "femdomination 2" + }, + { + "appid": 1875770, + "normalized_name": "tartaria the forgotten tale" + }, + { + "appid": 1875800, + "normalized_name": "cubytet" + }, + { + "appid": 1875810, + "normalized_name": "slashers" + }, + { + "appid": 1875830, + "normalized_name": "shin megami tensei v vengeance" + }, + { + "appid": 1875850, + "normalized_name": "reds adventure a seasons new beginning" + }, + { + "appid": 1875870, + "normalized_name": "dive hard dave" + }, + { + "appid": 1875950, + "normalized_name": "gilded shadows" + }, + { + "appid": 1875980, + "normalized_name": "a tale about flowers" + }, + { + "appid": 1876000, + "normalized_name": "ifo" + }, + { + "appid": 1876010, + "normalized_name": "narru the forgotten lands" + }, + { + "appid": 1876030, + "normalized_name": "dark past" + }, + { + "appid": 1876040, + "normalized_name": "capture the flag" + }, + { + "appid": 1876050, + "normalized_name": "labyrinth delux a crusoe quest" + }, + { + "appid": 1876070, + "normalized_name": "windsor grand strategy mmo" + }, + { + "appid": 1876120, + "normalized_name": "ejaculation time mommy play with a super sexy fox girl" + }, + { + "appid": 1876130, + "normalized_name": "right nice party" + }, + { + "appid": 1876150, + "normalized_name": "melania" + }, + { + "appid": 1876180, + "normalized_name": "villager comes alive" + }, + { + "appid": 1876220, + "normalized_name": "lights camera reaction! irl" + }, + { + "appid": 1876230, + "normalized_name": "beneath & beyond" + }, + { + "appid": 1876240, + "normalized_name": "watashi suzume" + }, + { + "appid": 1876340, + "normalized_name": "evering" + }, + { + "appid": 1876350, + "normalized_name": "heroish" + }, + { + "appid": 1876360, + "normalized_name": "hand cannon janky reality" + }, + { + "appid": 1876390, + "normalized_name": "stakeholder game" + }, + { + "appid": 1876410, + "normalized_name": "brick cracker 3d" + }, + { + "appid": 1876430, + "normalized_name": "theomachia" + }, + { + "appid": 1876460, + "normalized_name": "salty hounds" + }, + { + "appid": 1876470, + "normalized_name": "mafia sex noir" + }, + { + "appid": 1876530, + "normalized_name": "potions!" + }, + { + "appid": 1876540, + "normalized_name": "loopback" + }, + { + "appid": 1876550, + "normalized_name": "blastmania" + }, + { + "appid": 1876560, + "normalized_name": "save the reactor" + }, + { + "appid": 1876590, + "normalized_name": "i am your beast" + }, + { + "appid": 1876670, + "normalized_name": "woodcutter deluxe" + }, + { + "appid": 1876680, + "normalized_name": "roma vr domus" + }, + { + "appid": 1876690, + "normalized_name": "one day after the snow and wind" + }, + { + "appid": 1876720, + "normalized_name": "arboreal" + }, + { + "appid": 1876730, + "normalized_name": "蔚蓝月下的回忆~sapphire moon forever memories" + }, + { + "appid": 1876740, + "normalized_name": "姚记捕鱼" + }, + { + "appid": 1876750, + "normalized_name": "minecart madness" + }, + { + "appid": 1876810, + "normalized_name": "jumping knight" + }, + { + "appid": 1876830, + "normalized_name": "life after death" + }, + { + "appid": 1876850, + "normalized_name": "babushka's glitch dungeon" + }, + { + "appid": 1876870, + "normalized_name": "ook boxing" + }, + { + "appid": 1876880, + "normalized_name": "primitive society simulator" + }, + { + "appid": 1876890, + "normalized_name": "wandering sword" + }, + { + "appid": 1876910, + "normalized_name": "escape purgatory" + }, + { + "appid": 1876920, + "normalized_name": "破廉恥な女戦士アテナ (中文無碼版)" + }, + { + "appid": 1876930, + "normalized_name": "saloon simulator" + }, + { + "appid": 1876950, + "normalized_name": "judgeball lethal arena early access" + }, + { + "appid": 1876980, + "normalized_name": "戛然而止的音符" + }, + { + "appid": 1877000, + "normalized_name": "retro kart rush" + }, + { + "appid": 1877020, + "normalized_name": "jujutsu kaisen cursed clash" + }, + { + "appid": 1877060, + "normalized_name": "haunted stories" + }, + { + "appid": 1877080, + "normalized_name": "brahman the gate of salvation" + }, + { + "appid": 1877160, + "normalized_name": "floor is water" + }, + { + "appid": 1877190, + "normalized_name": "astrogon" + }, + { + "appid": 1877250, + "normalized_name": "wake world" + }, + { + "appid": 1877260, + "normalized_name": "trash heart" + }, + { + "appid": 1877300, + "normalized_name": "lo fi thexnerxxm" + }, + { + "appid": 1877330, + "normalized_name": "next door 悠遠の世界" + }, + { + "appid": 1877350, + "normalized_name": "cat nips" + }, + { + "appid": 1877360, + "normalized_name": "mars rover simulator" + }, + { + "appid": 1877410, + "normalized_name": "fairy deer" + }, + { + "appid": 1877440, + "normalized_name": "the battle never ends" + }, + { + "appid": 1877460, + "normalized_name": "ghost" + }, + { + "appid": 1877480, + "normalized_name": "miuma" + }, + { + "appid": 1877510, + "normalized_name": "torus bot" + }, + { + "appid": 1877520, + "normalized_name": "food empire" + }, + { + "appid": 1877560, + "normalized_name": "walter walnut" + }, + { + "appid": 1877580, + "normalized_name": "panicked and surrounded by hot vampires" + }, + { + "appid": 1877600, + "normalized_name": "midnight guns" + }, + { + "appid": 1877650, + "normalized_name": "zero orders tactics" + }, + { + "appid": 1877710, + "normalized_name": "cool kid cody" + }, + { + "appid": 1877720, + "normalized_name": "army of tentacles assault on rainbow unicorn island" + }, + { + "appid": 1877760, + "normalized_name": "the sinking structure clione and lost child log2" + }, + { + "appid": 1877780, + "normalized_name": "shibainu vr katana simulator" + }, + { + "appid": 1877790, + "normalized_name": "armchair racer" + }, + { + "appid": 1877800, + "normalized_name": "arms doll" + }, + { + "appid": 1877820, + "normalized_name": "a moustache in the house 2" + }, + { + "appid": 1877830, + "normalized_name": "i am gangster" + }, + { + "appid": 1877850, + "normalized_name": "project cartaphilus" + }, + { + "appid": 1877900, + "normalized_name": "orbit simulator" + }, + { + "appid": 1877930, + "normalized_name": "total catastrophe" + }, + { + "appid": 1877960, + "normalized_name": "trimps" + }, + { + "appid": 1877970, + "normalized_name": "swinging man" + }, + { + "appid": 1877980, + "normalized_name": "last gary 最后的盖里" + }, + { + "appid": 1878000, + "normalized_name": "elven warmaiden" + }, + { + "appid": 1878010, + "normalized_name": "land of zympaia the new light" + }, + { + "appid": 1878020, + "normalized_name": "the knight of nephiart" + }, + { + "appid": 1878050, + "normalized_name": "tntodion" + }, + { + "appid": 1878070, + "normalized_name": "roma invicta" + }, + { + "appid": 1878110, + "normalized_name": "victorian debutante" + }, + { + "appid": 1878170, + "normalized_name": "escapers" + }, + { + "appid": 1878180, + "normalized_name": "space warden" + }, + { + "appid": 1878190, + "normalized_name": "caribbean marque" + }, + { + "appid": 1878200, + "normalized_name": "village rpg" + }, + { + "appid": 1878210, + "normalized_name": "pirate jam" + }, + { + "appid": 1878220, + "normalized_name": "tv thief" + }, + { + "appid": 1878260, + "normalized_name": "creaturing sea wonders" + }, + { + "appid": 1878280, + "normalized_name": "push the box" + }, + { + "appid": 1878290, + "normalized_name": "project utgardr" + }, + { + "appid": 1878300, + "normalized_name": "animaddicts" + }, + { + "appid": 1878350, + "normalized_name": "prayer of the faithless" + }, + { + "appid": 1878380, + "normalized_name": "dukes up" + }, + { + "appid": 1878450, + "normalized_name": "灵魂交响乐【soul symphony】" + }, + { + "appid": 1878460, + "normalized_name": "protocol children of war" + }, + { + "appid": 1878490, + "normalized_name": "gales of nayeli" + }, + { + "appid": 1878530, + "normalized_name": "升级打怪换装备" + }, + { + "appid": 1878570, + "normalized_name": "immortal mantis" + }, + { + "appid": 1878580, + "normalized_name": "infinite construction" + }, + { + "appid": 1878620, + "normalized_name": "鳥獣妖怪戯画(choju yokai giga)" + }, + { + "appid": 1878660, + "normalized_name": "ink and paper wandering" + }, + { + "appid": 1878670, + "normalized_name": "no way up" + }, + { + "appid": 1878710, + "normalized_name": "crowd sign emission" + }, + { + "appid": 1878720, + "normalized_name": "gnome online" + }, + { + "appid": 1878730, + "normalized_name": "terror endless night" + }, + { + "appid": 1878740, + "normalized_name": "five nights at floppa" + }, + { + "appid": 1878770, + "normalized_name": "asciill" + }, + { + "appid": 1878810, + "normalized_name": "the circus" + }, + { + "appid": 1878840, + "normalized_name": "luna supernatural hunter" + }, + { + "appid": 1878850, + "normalized_name": "perfect balance collection" + }, + { + "appid": 1878910, + "normalized_name": "wooloop" + }, + { + "appid": 1878920, + "normalized_name": "animalistic" + }, + { + "appid": 1878930, + "normalized_name": "enter the labyrinth" + }, + { + "appid": 1878970, + "normalized_name": "boom bears on stream" + }, + { + "appid": 1878990, + "normalized_name": "chronicles of the imaginarium seabeards treasure" + }, + { + "appid": 1879000, + "normalized_name": "in the end" + }, + { + "appid": 1879030, + "normalized_name": "return the backrooms" + }, + { + "appid": 1879040, + "normalized_name": "mycosis" + }, + { + "appid": 1879060, + "normalized_name": "near site" + }, + { + "appid": 1879100, + "normalized_name": "the mystery fountain in space" + }, + { + "appid": 1879130, + "normalized_name": "mystic cards" + }, + { + "appid": 1879170, + "normalized_name": "invaders from another dimension" + }, + { + "appid": 1879180, + "normalized_name": "dying night sex with zombi" + }, + { + "appid": 1879190, + "normalized_name": "meet cute cafe 🐾" + }, + { + "appid": 1879200, + "normalized_name": "她曾经活过啊" + }, + { + "appid": 1879220, + "normalized_name": "zeppelin escape room" + }, + { + "appid": 1879240, + "normalized_name": "tennis life" + }, + { + "appid": 1879250, + "normalized_name": "teatopia" + }, + { + "appid": 1879270, + "normalized_name": "flames of galinor" + }, + { + "appid": 1879300, + "normalized_name": "简单修仙模拟" + }, + { + "appid": 1879330, + "normalized_name": "warriors orochi 3" + }, + { + "appid": 1879340, + "normalized_name": "museswipr" + }, + { + "appid": 1879380, + "normalized_name": "纸嫁衣2奘铃村" + }, + { + "appid": 1879400, + "normalized_name": "paramnesia escape together" + }, + { + "appid": 1879420, + "normalized_name": "one of 500" + }, + { + "appid": 1879520, + "normalized_name": "poltergirl" + }, + { + "appid": 1879530, + "normalized_name": "retro golden age goody" + }, + { + "appid": 1879560, + "normalized_name": "lucky pikinini super incursion" + }, + { + "appid": 1879570, + "normalized_name": "insipid" + }, + { + "appid": 1879590, + "normalized_name": "eyes of the storm" + }, + { + "appid": 1879620, + "normalized_name": "1000 needles" + }, + { + "appid": 1879640, + "normalized_name": "甜點王子2 典藏版" + }, + { + "appid": 1879670, + "normalized_name": "futa spell" + }, + { + "appid": 1879680, + "normalized_name": "candle knight" + }, + { + "appid": 1879690, + "normalized_name": "spirits chronicles born in flames collector's" + }, + { + "appid": 1879700, + "normalized_name": "cheat day" + }, + { + "appid": 1879720, + "normalized_name": "afterlife" + }, + { + "appid": 1879750, + "normalized_name": "米砂原醫院 yonesawara hospital" + }, + { + "appid": 1879760, + "normalized_name": "layerworld" + }, + { + "appid": 1879790, + "normalized_name": "furry girlfriend simulator" + }, + { + "appid": 1879810, + "normalized_name": "end of the line" + }, + { + "appid": 1879820, + "normalized_name": "will die alone" + }, + { + "appid": 1879850, + "normalized_name": "loading zone" + }, + { + "appid": 1879860, + "normalized_name": "fractured worlds" + }, + { + "appid": 1879910, + "normalized_name": "the house of big people" + }, + { + "appid": 1879940, + "normalized_name": "dark mass" + }, + { + "appid": 1879950, + "normalized_name": "psychroma" + }, + { + "appid": 1879970, + "normalized_name": "gun ugly" + }, + { + "appid": 1880020, + "normalized_name": "kojimachi" + }, + { + "appid": 1880080, + "normalized_name": "the baleful tower" + }, + { + "appid": 1880130, + "normalized_name": "odyssey modern" + }, + { + "appid": 1880150, + "normalized_name": "reboot heroes" + }, + { + "appid": 1880160, + "normalized_name": "元卡牌metacard" + }, + { + "appid": 1880180, + "normalized_name": "cu blit" + }, + { + "appid": 1880200, + "normalized_name": "九夜:刺狼" + }, + { + "appid": 1880230, + "normalized_name": "trigger witch" + }, + { + "appid": 1880250, + "normalized_name": "decay a real time interactive experience" + }, + { + "appid": 1880280, + "normalized_name": "gods of isekai" + }, + { + "appid": 1880290, + "normalized_name": "dancing line fan made collection" + }, + { + "appid": 1880310, + "normalized_name": "oogy can you help" + }, + { + "appid": 1880330, + "normalized_name": "sanfu" + }, + { + "appid": 1880370, + "normalized_name": "civic story" + }, + { + "appid": 1880420, + "normalized_name": "dododge2020" + }, + { + "appid": 1880470, + "normalized_name": "the inquisitor" + }, + { + "appid": 1880490, + "normalized_name": "meet me at noon" + }, + { + "appid": 1880610, + "normalized_name": "deliver at all costs" + }, + { + "appid": 1880630, + "normalized_name": "bako" + }, + { + "appid": 1880640, + "normalized_name": "a butterfly's dream" + }, + { + "appid": 1880670, + "normalized_name": "orcvsundead" + }, + { + "appid": 1880690, + "normalized_name": "familiar" + }, + { + "appid": 1880710, + "normalized_name": "tuition academia" + }, + { + "appid": 1880720, + "normalized_name": "ninja noboken" + }, + { + "appid": 1880760, + "normalized_name": "bullwagon business" + }, + { + "appid": 1880770, + "normalized_name": "real life of soldiers" + }, + { + "appid": 1880840, + "normalized_name": "dead end city" + }, + { + "appid": 1880860, + "normalized_name": "hot wife tara" + }, + { + "appid": 1880870, + "normalized_name": "capelord bounty hunters" + }, + { + "appid": 1880890, + "normalized_name": "lost ember vr" + }, + { + "appid": 1880900, + "normalized_name": "adult vr game room" + }, + { + "appid": 1880910, + "normalized_name": "zombie good guy" + }, + { + "appid": 1880920, + "normalized_name": "aquaphobia" + }, + { + "appid": 1880930, + "normalized_name": "rugby union team manager 4" + }, + { + "appid": 1880960, + "normalized_name": "running on empty" + }, + { + "appid": 1880980, + "normalized_name": "trapped in stone world war ii horror" + }, + { + "appid": 1881010, + "normalized_name": "gaikokujin no sensei (foreigner teacher)" + }, + { + "appid": 1881040, + "normalized_name": "dreadmoon" + }, + { + "appid": 1881120, + "normalized_name": "titan station" + }, + { + "appid": 1881140, + "normalized_name": "squid girls 18+" + }, + { + "appid": 1881160, + "normalized_name": "covid carl" + }, + { + "appid": 1881180, + "normalized_name": "aery calm mind 2" + }, + { + "appid": 1881200, + "normalized_name": "tryp fpv drone racer simulator" + }, + { + "appid": 1881210, + "normalized_name": "the masters survival" + }, + { + "appid": 1881240, + "normalized_name": "command line mazer" + }, + { + "appid": 1881250, + "normalized_name": "probee" + }, + { + "appid": 1881260, + "normalized_name": "greedy rabbit" + }, + { + "appid": 1881270, + "normalized_name": "phonetic" + }, + { + "appid": 1881280, + "normalized_name": "any world" + }, + { + "appid": 1881290, + "normalized_name": "pluto's island" + }, + { + "appid": 1881300, + "normalized_name": "red" + }, + { + "appid": 1881320, + "normalized_name": "lewis & clark expedition" + }, + { + "appid": 1881340, + "normalized_name": "shadow burglar" + }, + { + "appid": 1881350, + "normalized_name": "the odyssey of the mammoth" + }, + { + "appid": 1881390, + "normalized_name": "exodus vigil" + }, + { + "appid": 1881420, + "normalized_name": "cardfight!! vanguard dear days" + }, + { + "appid": 1881430, + "normalized_name": "deltablade 2700 re create" + }, + { + "appid": 1881440, + "normalized_name": "fatal blade" + }, + { + "appid": 1881460, + "normalized_name": "喵险" + }, + { + "appid": 1881480, + "normalized_name": "medieval knightmare" + }, + { + "appid": 1881540, + "normalized_name": "escape the living nebula" + }, + { + "appid": 1881570, + "normalized_name": "a hero's wish" + }, + { + "appid": 1881610, + "normalized_name": "江湖客栈 the jianghu" + }, + { + "appid": 1881670, + "normalized_name": "mary" + }, + { + "appid": 1881690, + "normalized_name": "midnight at forest" + }, + { + "appid": 1881700, + "normalized_name": "undawn" + }, + { + "appid": 1881710, + "normalized_name": "bitlands" + }, + { + "appid": 1881790, + "normalized_name": "3 days ghosts of war" + }, + { + "appid": 1881800, + "normalized_name": "catnab" + }, + { + "appid": 1881840, + "normalized_name": "ボクロボ ~boxed cell robot armies~" + }, + { + "appid": 1881850, + "normalized_name": "maze twister" + }, + { + "appid": 1881910, + "normalized_name": "hikari no valusia" + }, + { + "appid": 1881940, + "normalized_name": "heard of the story?" + }, + { + "appid": 1881950, + "normalized_name": "reimei no gakuen otome/visual novel" + }, + { + "appid": 1882000, + "normalized_name": "am i?" + }, + { + "appid": 1882040, + "normalized_name": "沙盒勇者(craft hero)" + }, + { + "appid": 1882050, + "normalized_name": "hentai sea battle" + }, + { + "appid": 1882120, + "normalized_name": "destinesia" + }, + { + "appid": 1882130, + "normalized_name": "ultra mega cats" + }, + { + "appid": 1882140, + "normalized_name": "decisive campaigns ardennes offensive" + }, + { + "appid": 1882160, + "normalized_name": "山海皆可平" + }, + { + "appid": 1882170, + "normalized_name": "starship empire" + }, + { + "appid": 1882180, + "normalized_name": "gachi adventure billy's legacy" + }, + { + "appid": 1882190, + "normalized_name": "lidar exploration program" + }, + { + "appid": 1882200, + "normalized_name": "krek da frog" + }, + { + "appid": 1882230, + "normalized_name": "rockstar life" + }, + { + "appid": 1882240, + "normalized_name": "forgotten realms the archives collection one" + }, + { + "appid": 1882270, + "normalized_name": "maze workout western lost solo car racer" + }, + { + "appid": 1882280, + "normalized_name": "forgotten realms the archives collection two" + }, + { + "appid": 1882330, + "normalized_name": "elevated" + }, + { + "appid": 1882350, + "normalized_name": "sweet surge" + }, + { + "appid": 1882390, + "normalized_name": "godtail first cut" + }, + { + "appid": 1882400, + "normalized_name": "the walker" + }, + { + "appid": 1882410, + "normalized_name": "mob hunter" + }, + { + "appid": 1882420, + "normalized_name": "learn programming python remake" + }, + { + "appid": 1882430, + "normalized_name": "creators" + }, + { + "appid": 1882460, + "normalized_name": "ranchlife" + }, + { + "appid": 1882480, + "normalized_name": "smithy shop" + }, + { + "appid": 1882500, + "normalized_name": "cattails wildwood story" + }, + { + "appid": 1882520, + "normalized_name": "zombie shotgun rampage" + }, + { + "appid": 1882550, + "normalized_name": "mech punk" + }, + { + "appid": 1882560, + "normalized_name": "memory novel the sex sauna" + }, + { + "appid": 1882580, + "normalized_name": "fall girls" + }, + { + "appid": 1882590, + "normalized_name": "ella a study in realism" + }, + { + "appid": 1882600, + "normalized_name": "...knew the beginning" + }, + { + "appid": 1882630, + "normalized_name": "polyhedron tales from krasnoslavia" + }, + { + "appid": 1882640, + "normalized_name": "hero for hire" + }, + { + "appid": 1882670, + "normalized_name": "sex adventures the job interview" + }, + { + "appid": 1882680, + "normalized_name": "the winter" + }, + { + "appid": 1882690, + "normalized_name": "bigger than me" + }, + { + "appid": 1882700, + "normalized_name": "pleasure kingdom" + }, + { + "appid": 1882710, + "normalized_name": "projéct timi sasha's curse" + }, + { + "appid": 1882730, + "normalized_name": "detective agency 2" + }, + { + "appid": 1882750, + "normalized_name": "cluck" + }, + { + "appid": 1882780, + "normalized_name": "space maxwell arcade" + }, + { + "appid": 1882820, + "normalized_name": "my little dictator" + }, + { + "appid": 1882830, + "normalized_name": "nuts protocol" + }, + { + "appid": 1882880, + "normalized_name": "multi idle" + }, + { + "appid": 1882900, + "normalized_name": "infinilands" + }, + { + "appid": 1882930, + "normalized_name": "mupple" + }, + { + "appid": 1882950, + "normalized_name": "cyclohex" + }, + { + "appid": 1882960, + "normalized_name": "lucie's potager" + }, + { + "appid": 1883000, + "normalized_name": "heart of crown online" + }, + { + "appid": 1883020, + "normalized_name": "minima" + }, + { + "appid": 1883050, + "normalized_name": "安特卫普的尼洛 nello in antwerp" + }, + { + "appid": 1883090, + "normalized_name": "the symbiant" + }, + { + "appid": 1883110, + "normalized_name": "小艺的异世界冒险 xiao yi's strange world adventure" + }, + { + "appid": 1883120, + "normalized_name": "lofi furries" + }, + { + "appid": 1883130, + "normalized_name": "逃出动物园丨escape from the zoo" + }, + { + "appid": 1883200, + "normalized_name": "hentai lagoon" + }, + { + "appid": 1883210, + "normalized_name": "symptom of love" + }, + { + "appid": 1883220, + "normalized_name": "herbheim's mine" + }, + { + "appid": 1883230, + "normalized_name": "clive vs hives 2" + }, + { + "appid": 1883260, + "normalized_name": "little noah scion of paradise" + }, + { + "appid": 1883270, + "normalized_name": "the final rescue escape room" + }, + { + "appid": 1883280, + "normalized_name": "drag battle top fuel" + }, + { + "appid": 1883320, + "normalized_name": "剑与桃花 the sword and peachblossom" + }, + { + "appid": 1883340, + "normalized_name": "animal zone" + }, + { + "appid": 1883360, + "normalized_name": "the white raven" + }, + { + "appid": 1883370, + "normalized_name": "peppered an existential platformer" + }, + { + "appid": 1883400, + "normalized_name": "the exodus" + }, + { + "appid": 1883420, + "normalized_name": "the oathkeeper" + }, + { + "appid": 1883430, + "normalized_name": "moonfall" + }, + { + "appid": 1883440, + "normalized_name": "child of hope" + }, + { + "appid": 1883450, + "normalized_name": "the darkest road" + }, + { + "appid": 1883480, + "normalized_name": "hockey shooter vr" + }, + { + "appid": 1883530, + "normalized_name": "snackhunter" + }, + { + "appid": 1883570, + "normalized_name": "supercow" + }, + { + "appid": 1883580, + "normalized_name": "cactus simulator" + }, + { + "appid": 1883600, + "normalized_name": "find a way out abode of darkness." + }, + { + "appid": 1883670, + "normalized_name": "race on ice 2022 pro" + }, + { + "appid": 1883680, + "normalized_name": "vr hentai sex party" + }, + { + "appid": 1883710, + "normalized_name": "bout" + }, + { + "appid": 1883800, + "normalized_name": "the magical mixture mill" + }, + { + "appid": 1883820, + "normalized_name": "weird hat fight" + }, + { + "appid": 1883830, + "normalized_name": "directorate novitiate" + }, + { + "appid": 1883840, + "normalized_name": "ocean punk" + }, + { + "appid": 1883880, + "normalized_name": "gaia the child of earth" + }, + { + "appid": 1883930, + "normalized_name": "donuts in space" + }, + { + "appid": 1883980, + "normalized_name": "tulips & windmills" + }, + { + "appid": 1883990, + "normalized_name": "the hepatica spring" + }, + { + "appid": 1884020, + "normalized_name": "marinette" + }, + { + "appid": 1884030, + "normalized_name": "one of the victims" + }, + { + "appid": 1884060, + "normalized_name": "ex0 escape" + }, + { + "appid": 1884140, + "normalized_name": "dungeon castle" + }, + { + "appid": 1884160, + "normalized_name": "滴答" + }, + { + "appid": 1884210, + "normalized_name": "haha time 哈哈时光" + }, + { + "appid": 1884300, + "normalized_name": "deathsmiles i・ii" + }, + { + "appid": 1884310, + "normalized_name": "the soulstream expansive (prelude)" + }, + { + "appid": 1884350, + "normalized_name": "cellsar" + }, + { + "appid": 1884380, + "normalized_name": "midnight stories 5" + }, + { + "appid": 1884390, + "normalized_name": "frequency dissonance" + }, + { + "appid": 1884430, + "normalized_name": "succubus girl story" + }, + { + "appid": 1884440, + "normalized_name": "cute snake" + }, + { + "appid": 1884470, + "normalized_name": "construction machines sim bridges buildings and constructor trucks simulator" + }, + { + "appid": 1884480, + "normalized_name": "big screen games pack 1" + }, + { + "appid": 1884510, + "normalized_name": "veins" + }, + { + "appid": 1884540, + "normalized_name": "afterhours" + }, + { + "appid": 1884570, + "normalized_name": "the gallery" + }, + { + "appid": 1884610, + "normalized_name": "darktide" + }, + { + "appid": 1884640, + "normalized_name": "rallygator" + }, + { + "appid": 1884650, + "normalized_name": "astronots" + }, + { + "appid": 1884660, + "normalized_name": "transmissions" + }, + { + "appid": 1884680, + "normalized_name": "solarblack" + }, + { + "appid": 1884720, + "normalized_name": "box rush" + }, + { + "appid": 1884750, + "normalized_name": "scp abhorrent" + }, + { + "appid": 1884790, + "normalized_name": "debugger 3.16 // recoded" + }, + { + "appid": 1884800, + "normalized_name": "omitted" + }, + { + "appid": 1884850, + "normalized_name": "sad ghouls" + }, + { + "appid": 1884890, + "normalized_name": "pieces of beauty 3" + }, + { + "appid": 1884950, + "normalized_name": "dominay" + }, + { + "appid": 1884970, + "normalized_name": "thedark" + }, + { + "appid": 1884990, + "normalized_name": "skala" + }, + { + "appid": 1885010, + "normalized_name": "hidden ghost town 2" + }, + { + "appid": 1885030, + "normalized_name": "queen of the flies 蝇后" + }, + { + "appid": 1885040, + "normalized_name": "funerary services marquez paz" + }, + { + "appid": 1885080, + "normalized_name": "ark defender" + }, + { + "appid": 1885090, + "normalized_name": "3d puzzle modern house" + }, + { + "appid": 1885110, + "normalized_name": "cryptmaster" + }, + { + "appid": 1885120, + "normalized_name": "13 steps" + }, + { + "appid": 1885130, + "normalized_name": "the future you've been dreaming of" + }, + { + "appid": 1885140, + "normalized_name": "guntech 2" + }, + { + "appid": 1885160, + "normalized_name": "tumblefire" + }, + { + "appid": 1885200, + "normalized_name": "rally endless conquest" + }, + { + "appid": 1885250, + "normalized_name": "axiom of maria prologue" + }, + { + "appid": 1885370, + "normalized_name": "waste" + }, + { + "appid": 1885380, + "normalized_name": "code zin esper arena" + }, + { + "appid": 1885400, + "normalized_name": "minotaur princess" + }, + { + "appid": 1885460, + "normalized_name": "invasion from space" + }, + { + "appid": 1885480, + "normalized_name": "fung guys" + }, + { + "appid": 1885500, + "normalized_name": "path of becoming" + }, + { + "appid": 1885510, + "normalized_name": "your spider" + }, + { + "appid": 1885520, + "normalized_name": "welcome to albion!" + }, + { + "appid": 1885530, + "normalized_name": "my kindergarten learning adventure" + }, + { + "appid": 1885540, + "normalized_name": "search all cats" + }, + { + "appid": 1885570, + "normalized_name": "happy live show up!" + }, + { + "appid": 1885640, + "normalized_name": "warehouse simulator forklift driver" + }, + { + "appid": 1885660, + "normalized_name": "manservant gay visual novel" + }, + { + "appid": 1885670, + "normalized_name": "saomi" + }, + { + "appid": 1885690, + "normalized_name": "virtual circuit board" + }, + { + "appid": 1885700, + "normalized_name": "sir. ball up" + }, + { + "appid": 1885720, + "normalized_name": "apollo a co op game" + }, + { + "appid": 1885730, + "normalized_name": "the brothers" + }, + { + "appid": 1885750, + "normalized_name": "betrayal at club low" + }, + { + "appid": 1885790, + "normalized_name": "untravelled planet" + }, + { + "appid": 1885820, + "normalized_name": "putridness vr" + }, + { + "appid": 1885830, + "normalized_name": "god save us" + }, + { + "appid": 1885860, + "normalized_name": "sword of jade parallel dreams" + }, + { + "appid": 1885880, + "normalized_name": "might of the stones" + }, + { + "appid": 1885930, + "normalized_name": "gigasword" + }, + { + "appid": 1885940, + "normalized_name": "monomon the black sun" + }, + { + "appid": 1885960, + "normalized_name": "haven's embers" + }, + { + "appid": 1885980, + "normalized_name": "lost souls" + }, + { + "appid": 1885990, + "normalized_name": "魔物的迷宫探险" + }, + { + "appid": 1886000, + "normalized_name": "spectral shades fragments" + }, + { + "appid": 1886010, + "normalized_name": "surreal experience" + }, + { + "appid": 1886070, + "normalized_name": "usac code breach" + }, + { + "appid": 1886080, + "normalized_name": "tetraphobia" + }, + { + "appid": 1886110, + "normalized_name": "surreal deal" + }, + { + "appid": 1886120, + "normalized_name": "voice of chernobyl" + }, + { + "appid": 1886150, + "normalized_name": "mon musu master" + }, + { + "appid": 1886170, + "normalized_name": "the final hour" + }, + { + "appid": 1886200, + "normalized_name": "ch trap" + }, + { + "appid": 1886210, + "normalized_name": "mirrored soul" + }, + { + "appid": 1886230, + "normalized_name": "beatmotor" + }, + { + "appid": 1886260, + "normalized_name": "maverta muerte" + }, + { + "appid": 1886270, + "normalized_name": "juno 06" + }, + { + "appid": 1886290, + "normalized_name": "slot shots pinball collection" + }, + { + "appid": 1886320, + "normalized_name": "healing simulator" + }, + { + "appid": 1886400, + "normalized_name": "golden rails road to klondike" + }, + { + "appid": 1886420, + "normalized_name": "break it" + }, + { + "appid": 1886440, + "normalized_name": "for runner night" + }, + { + "appid": 1886480, + "normalized_name": "alien space bastards" + }, + { + "appid": 1886600, + "normalized_name": "trapped in the forest" + }, + { + "appid": 1886630, + "normalized_name": "onlyfap simulator 💦" + }, + { + "appid": 1886700, + "normalized_name": "东方魔法书学院 touhou magic book academy" + }, + { + "appid": 1886820, + "normalized_name": "cscd vietnam mobile police" + }, + { + "appid": 1886830, + "normalized_name": "聖石傳說ex" + }, + { + "appid": 1886840, + "normalized_name": "sinoepoch" + }, + { + "appid": 1886850, + "normalized_name": "horror in valkeala" + }, + { + "appid": 1886870, + "normalized_name": "feeble" + }, + { + "appid": 1886910, + "normalized_name": "mars vice" + }, + { + "appid": 1886930, + "normalized_name": "out of the mist" + }, + { + "appid": 1886960, + "normalized_name": "i human machine" + }, + { + "appid": 1886990, + "normalized_name": "racing the gods" + }, + { + "appid": 1887010, + "normalized_name": "tiny football" + }, + { + "appid": 1887020, + "normalized_name": "robber knight" + }, + { + "appid": 1887050, + "normalized_name": "nachkriegsratten punk rock puzzle" + }, + { + "appid": 1887070, + "normalized_name": "tales of vogar lost descendants" + }, + { + "appid": 1887150, + "normalized_name": "anime girls vs soldiers" + }, + { + "appid": 1887190, + "normalized_name": "civilization simulator" + }, + { + "appid": 1887200, + "normalized_name": "mechaguard" + }, + { + "appid": 1887250, + "normalized_name": "sand castle" + }, + { + "appid": 1887260, + "normalized_name": "timberman vr" + }, + { + "appid": 1887270, + "normalized_name": "undoing evil" + }, + { + "appid": 1887280, + "normalized_name": "get off my space!" + }, + { + "appid": 1887310, + "normalized_name": "paperman adventure delivered" + }, + { + "appid": 1887320, + "normalized_name": "zruce adventures" + }, + { + "appid": 1887330, + "normalized_name": "annie and the art gallery" + }, + { + "appid": 1887340, + "normalized_name": "lectro" + }, + { + "appid": 1887360, + "normalized_name": "factor d" + }, + { + "appid": 1887380, + "normalized_name": "fynite" + }, + { + "appid": 1887400, + "normalized_name": "antonblast" + }, + { + "appid": 1887420, + "normalized_name": "the lost oregon city gold" + }, + { + "appid": 1887440, + "normalized_name": "tanthious" + }, + { + "appid": 1887490, + "normalized_name": "dymension scary horror survival shooter" + }, + { + "appid": 1887530, + "normalized_name": "vaxomon" + }, + { + "appid": 1887570, + "normalized_name": "dragon battle" + }, + { + "appid": 1887580, + "normalized_name": "project cappuccino 2 the succubus throne" + }, + { + "appid": 1887630, + "normalized_name": "lip! lewd idol project vol. 2" + }, + { + "appid": 1887660, + "normalized_name": "vulcan" + }, + { + "appid": 1887680, + "normalized_name": "the sudden attack of a welder" + }, + { + "appid": 1887730, + "normalized_name": "valley of the dead malnazidos" + }, + { + "appid": 1887760, + "normalized_name": "epicenter vr" + }, + { + "appid": 1887840, + "normalized_name": "another crab's treasure" + }, + { + "appid": 1887860, + "normalized_name": "fast ball" + }, + { + "appid": 1887910, + "normalized_name": "lake facade director's cut" + }, + { + "appid": 1887930, + "normalized_name": "idle monster td evolved" + }, + { + "appid": 1887960, + "normalized_name": "shadow of egypt" + }, + { + "appid": 1887990, + "normalized_name": "deep night runner" + }, + { + "appid": 1888000, + "normalized_name": "bloody rampage city" + }, + { + "appid": 1888010, + "normalized_name": "所向之未来 towards future" + }, + { + "appid": 1888060, + "normalized_name": "雪凤山 secret opera" + }, + { + "appid": 1888070, + "normalized_name": "drain mansion" + }, + { + "appid": 1888080, + "normalized_name": "gaslamp cases 3 ancient secrets" + }, + { + "appid": 1888100, + "normalized_name": "cleaning the system" + }, + { + "appid": 1888120, + "normalized_name": "tabbellarius" + }, + { + "appid": 1888130, + "normalized_name": "alan 13 reformation" + }, + { + "appid": 1888160, + "normalized_name": "armored core vi fires of rubicon" + }, + { + "appid": 1888170, + "normalized_name": "midnight terror the beginning" + }, + { + "appid": 1888200, + "normalized_name": "skycliffs" + }, + { + "appid": 1888270, + "normalized_name": "lazerball" + }, + { + "appid": 1888290, + "normalized_name": "maximum clearance" + }, + { + "appid": 1888300, + "normalized_name": "horos web of shadows" + }, + { + "appid": 1888330, + "normalized_name": "conur life" + }, + { + "appid": 1888380, + "normalized_name": "byte the bullet" + }, + { + "appid": 1888420, + "normalized_name": "diesel skies" + }, + { + "appid": 1888440, + "normalized_name": "frite medium" + }, + { + "appid": 1888450, + "normalized_name": "shop like the rogue like item shop experience" + }, + { + "appid": 1888460, + "normalized_name": "survive" + }, + { + "appid": 1888470, + "normalized_name": "tyrant quest gold 🔞" + }, + { + "appid": 1888480, + "normalized_name": "wild radio flux" + }, + { + "appid": 1888490, + "normalized_name": "tremblay island" + }, + { + "appid": 1888520, + "normalized_name": "ai stories" + }, + { + "appid": 1888550, + "normalized_name": "哥布林的资本主义世界/the capitalist world of goblin" + }, + { + "appid": 1888560, + "normalized_name": "sky resort delphi & jessy" + }, + { + "appid": 1888570, + "normalized_name": "fell" + }, + { + "appid": 1888590, + "normalized_name": "rotund zero" + }, + { + "appid": 1888620, + "normalized_name": "save the bear cubs" + }, + { + "appid": 1888630, + "normalized_name": "wuscar" + }, + { + "appid": 1888640, + "normalized_name": "grow up! a worm game" + }, + { + "appid": 1888660, + "normalized_name": "mini pipes a logic puzzle pipes game" + }, + { + "appid": 1888690, + "normalized_name": "home vr" + }, + { + "appid": 1888720, + "normalized_name": "barry of wrath" + }, + { + "appid": 1888740, + "normalized_name": "delay simulator / ゲーミングハード技能検定" + }, + { + "appid": 1888750, + "normalized_name": "patient" + }, + { + "appid": 1888800, + "normalized_name": "search all crabs" + }, + { + "appid": 1888810, + "normalized_name": "cubic neon nightclub" + }, + { + "appid": 1888860, + "normalized_name": "disaster island" + }, + { + "appid": 1888880, + "normalized_name": "darkest abyss" + }, + { + "appid": 1888910, + "normalized_name": "dire fog tactical card combat" + }, + { + "appid": 1888920, + "normalized_name": "chess vs chat" + }, + { + "appid": 1888930, + "normalized_name": "the last of us part i" + }, + { + "appid": 1889000, + "normalized_name": "to make a game" + }, + { + "appid": 1889010, + "normalized_name": "luminera the radiant journey" + }, + { + "appid": 1889020, + "normalized_name": "lptg" + }, + { + "appid": 1889030, + "normalized_name": "rabbit & dominoes" + }, + { + "appid": 1889040, + "normalized_name": "birth" + }, + { + "appid": 1889050, + "normalized_name": "legends and lore" + }, + { + "appid": 1889100, + "normalized_name": "foot odor girl" + }, + { + "appid": 1889120, + "normalized_name": "the forked road" + }, + { + "appid": 1889130, + "normalized_name": "escape from the 70's" + }, + { + "appid": 1889160, + "normalized_name": "craggenrock" + }, + { + "appid": 1889190, + "normalized_name": "azrael" + }, + { + "appid": 1889200, + "normalized_name": "ableford" + }, + { + "appid": 1889320, + "normalized_name": "timeline" + }, + { + "appid": 1889330, + "normalized_name": "hypermind" + }, + { + "appid": 1889370, + "normalized_name": "three mazeketeers" + }, + { + "appid": 1889440, + "normalized_name": "the unfamiliar story of grandfather's heritage" + }, + { + "appid": 1889450, + "normalized_name": "pack my stuff" + }, + { + "appid": 1889500, + "normalized_name": "video game tutorial" + }, + { + "appid": 1889520, + "normalized_name": "истории ужасов воскрешение" + }, + { + "appid": 1889620, + "normalized_name": "ai roguelite" + }, + { + "appid": 1889630, + "normalized_name": "hyperbase" + }, + { + "appid": 1889640, + "normalized_name": "the backrooms survival" + }, + { + "appid": 1889650, + "normalized_name": "jigsaw bestiary" + }, + { + "appid": 1889660, + "normalized_name": "project xmas" + }, + { + "appid": 1889700, + "normalized_name": "archrebel tactics" + }, + { + "appid": 1889740, + "normalized_name": "paper trail" + }, + { + "appid": 1889760, + "normalized_name": "maze of realities flower of discord collector's" + }, + { + "appid": 1889770, + "normalized_name": "ballygon" + }, + { + "appid": 1889790, + "normalized_name": "chest mate" + }, + { + "appid": 1889810, + "normalized_name": "bobo bay" + }, + { + "appid": 1889840, + "normalized_name": "just another jump and run" + }, + { + "appid": 1889850, + "normalized_name": "sim chef restaurant management" + }, + { + "appid": 1889870, + "normalized_name": "detective max double clues" + }, + { + "appid": 1889880, + "normalized_name": "looking inside cells" + }, + { + "appid": 1889890, + "normalized_name": "shinehill" + }, + { + "appid": 1889920, + "normalized_name": "the prison" + }, + { + "appid": 1889930, + "normalized_name": "baldur's gate dark alliance ii" + }, + { + "appid": 1889960, + "normalized_name": "the odarian accounts" + }, + { + "appid": 1889970, + "normalized_name": "granite casket" + }, + { + "appid": 1889990, + "normalized_name": "tactics adrift" + }, + { + "appid": 1890000, + "normalized_name": "fly&poop" + }, + { + "appid": 1890010, + "normalized_name": "oozescape" + }, + { + "appid": 1890030, + "normalized_name": "project knight 2 dusk of souls" + }, + { + "appid": 1890100, + "normalized_name": "ship of heroes" + }, + { + "appid": 1890120, + "normalized_name": "9 nine newepisode" + }, + { + "appid": 1890170, + "normalized_name": "an indie game a month unreal journey" + }, + { + "appid": 1890190, + "normalized_name": "a spirits journey" + }, + { + "appid": 1890200, + "normalized_name": "pog 7" + }, + { + "appid": 1890230, + "normalized_name": "danger close vr" + }, + { + "appid": 1890270, + "normalized_name": "trailthread" + }, + { + "appid": 1890280, + "normalized_name": "athemore" + }, + { + "appid": 1890310, + "normalized_name": "rogue blight" + }, + { + "appid": 1890340, + "normalized_name": "drowning" + }, + { + "appid": 1890350, + "normalized_name": "greed hunters" + }, + { + "appid": 1890360, + "normalized_name": "pizza arena" + }, + { + "appid": 1890430, + "normalized_name": "golden jetpackman" + }, + { + "appid": 1890450, + "normalized_name": "synco 2321" + }, + { + "appid": 1890500, + "normalized_name": "moa the cheyenne promise" + }, + { + "appid": 1890510, + "normalized_name": "radiometric dating" + }, + { + "appid": 1890520, + "normalized_name": "tide up" + }, + { + "appid": 1890550, + "normalized_name": "triga" + }, + { + "appid": 1890590, + "normalized_name": "super nanaru" + }, + { + "appid": 1890610, + "normalized_name": "headpunk the comic style battle chaos" + }, + { + "appid": 1890630, + "normalized_name": "billiard of chaos" + }, + { + "appid": 1890650, + "normalized_name": "citywars tower defense" + }, + { + "appid": 1890670, + "normalized_name": "瑜伽 108式 yoga 108" + }, + { + "appid": 1890680, + "normalized_name": "母乳少女" + }, + { + "appid": 1890700, + "normalized_name": "overgun" + }, + { + "appid": 1890740, + "normalized_name": "voice of cards the beasts of burden" + }, + { + "appid": 1890750, + "normalized_name": "xenoids" + }, + { + "appid": 1890760, + "normalized_name": "hentai girls contact [18+]" + }, + { + "appid": 1890780, + "normalized_name": "szrot" + }, + { + "appid": 1890790, + "normalized_name": "sin breaker rig" + }, + { + "appid": 1890810, + "normalized_name": "a tale of synapse the chaos theories" + }, + { + "appid": 1890820, + "normalized_name": "journey to destiny" + }, + { + "appid": 1890910, + "normalized_name": "tiles the journey" + }, + { + "appid": 1890950, + "normalized_name": "reaver" + }, + { + "appid": 1891010, + "normalized_name": "expansion core" + }, + { + "appid": 1891030, + "normalized_name": "dummy dungeon" + }, + { + "appid": 1891040, + "normalized_name": "memory novel lesbian romance" + }, + { + "appid": 1891080, + "normalized_name": "apocalyptic gash" + }, + { + "appid": 1891090, + "normalized_name": "final vendetta" + }, + { + "appid": 1891120, + "normalized_name": "kapital13" + }, + { + "appid": 1891130, + "normalized_name": "midnight snack" + }, + { + "appid": 1891140, + "normalized_name": "tightrope theatre" + }, + { + "appid": 1891210, + "normalized_name": "quest escape dungeon" + }, + { + "appid": 1891230, + "normalized_name": "hidden tavern top down 3d" + }, + { + "appid": 1891240, + "normalized_name": "otter chaos" + }, + { + "appid": 1891250, + "normalized_name": "android simulator" + }, + { + "appid": 1891270, + "normalized_name": "the end of it all" + }, + { + "appid": 1891280, + "normalized_name": "everbloom" + }, + { + "appid": 1891320, + "normalized_name": "identity rebels" + }, + { + "appid": 1891340, + "normalized_name": "sir magical jelly" + }, + { + "appid": 1891350, + "normalized_name": "wordland let's travel" + }, + { + "appid": 1891420, + "normalized_name": "cloud telos" + }, + { + "appid": 1891430, + "normalized_name": "meat madness" + }, + { + "appid": 1891440, + "normalized_name": "无二解药" + }, + { + "appid": 1891460, + "normalized_name": "i am not legend" + }, + { + "appid": 1891510, + "normalized_name": "monstronium" + }, + { + "appid": 1891520, + "normalized_name": "clay shooter" + }, + { + "appid": 1891550, + "normalized_name": "legend of mythos ~touhou winter heart cage~" + }, + { + "appid": 1891560, + "normalized_name": "climax heroines" + }, + { + "appid": 1891570, + "normalized_name": "sokonashi no me" + }, + { + "appid": 1891580, + "normalized_name": "freeway fiasco" + }, + { + "appid": 1891600, + "normalized_name": "human or not" + }, + { + "appid": 1891620, + "normalized_name": "lempo" + }, + { + "appid": 1891640, + "normalized_name": "azur beam" + }, + { + "appid": 1891650, + "normalized_name": "love you till the end" + }, + { + "appid": 1891680, + "normalized_name": "sel quinta the six city quest" + }, + { + "appid": 1891700, + "normalized_name": "tap ninja idle game" + }, + { + "appid": 1891740, + "normalized_name": "lost wish in the desperate world" + }, + { + "appid": 1891840, + "normalized_name": "ploc" + }, + { + "appid": 1891900, + "normalized_name": "comixxx flirtatious" + }, + { + "appid": 1891920, + "normalized_name": "sandream" + }, + { + "appid": 1891930, + "normalized_name": "miami sunset drive" + }, + { + "appid": 1891940, + "normalized_name": "dr. science quest" + }, + { + "appid": 1891970, + "normalized_name": "boooost!!!!" + }, + { + "appid": 1892030, + "normalized_name": "dummynation" + }, + { + "appid": 1892040, + "normalized_name": "hunter project operation survive" + }, + { + "appid": 1892080, + "normalized_name": "bleak" + }, + { + "appid": 1892090, + "normalized_name": "the last citadel" + }, + { + "appid": 1892100, + "normalized_name": "heart abyss" + }, + { + "appid": 1892140, + "normalized_name": "cryptid farm" + }, + { + "appid": 1892210, + "normalized_name": "explosion" + }, + { + "appid": 1892220, + "normalized_name": "my ex sister in law" + }, + { + "appid": 1892240, + "normalized_name": "maze pedestal of trials" + }, + { + "appid": 1892290, + "normalized_name": "jumpy ball happy fun time" + }, + { + "appid": 1892340, + "normalized_name": "the sinking structure clione and lost child log3" + }, + { + "appid": 1892370, + "normalized_name": "riding to bounce city" + }, + { + "appid": 1892400, + "normalized_name": "augma ii arc i" + }, + { + "appid": 1892410, + "normalized_name": "ghost castle" + }, + { + "appid": 1892420, + "normalized_name": "the bunny graveyard" + }, + { + "appid": 1892430, + "normalized_name": "villageblade" + }, + { + "appid": 1892450, + "normalized_name": "bouldering robot 3d" + }, + { + "appid": 1892460, + "normalized_name": "mariposa and the galaxy man" + }, + { + "appid": 1892470, + "normalized_name": "王子斗恶龙(the prince fights the dragon)" + }, + { + "appid": 1892490, + "normalized_name": "drones defenders astartes" + }, + { + "appid": 1892500, + "normalized_name": "simuldrone" + }, + { + "appid": 1892510, + "normalized_name": "rolling over it" + }, + { + "appid": 1892550, + "normalized_name": "quad dice defence" + }, + { + "appid": 1892570, + "normalized_name": "colored effects" + }, + { + "appid": 1892580, + "normalized_name": "zombotron re boot" + }, + { + "appid": 1892600, + "normalized_name": "red hero adventure" + }, + { + "appid": 1892620, + "normalized_name": "ceo" + }, + { + "appid": 1892630, + "normalized_name": "occulto" + }, + { + "appid": 1892640, + "normalized_name": "marble ball friends" + }, + { + "appid": 1892670, + "normalized_name": "coins chests and loot" + }, + { + "appid": 1892700, + "normalized_name": "exorcist charlotte" + }, + { + "appid": 1892740, + "normalized_name": "deaf wish" + }, + { + "appid": 1892750, + "normalized_name": "regulators" + }, + { + "appid": 1892780, + "normalized_name": "zombielantis" + }, + { + "appid": 1892790, + "normalized_name": "polimines" + }, + { + "appid": 1892850, + "normalized_name": "a wholesome game about farming" + }, + { + "appid": 1892890, + "normalized_name": "fun machine" + }, + { + "appid": 1892900, + "normalized_name": "warbots" + }, + { + "appid": 1892910, + "normalized_name": "stripped of title backlash — episode 1" + }, + { + "appid": 1892920, + "normalized_name": "tower of osiris" + }, + { + "appid": 1892940, + "normalized_name": "s4game" + }, + { + "appid": 1892950, + "normalized_name": "the golden rose book one" + }, + { + "appid": 1892970, + "normalized_name": "auto kingdom crunch" + }, + { + "appid": 1893000, + "normalized_name": "the secrets of the forest" + }, + { + "appid": 1893020, + "normalized_name": "nekomew's nightmares" + }, + { + "appid": 1893050, + "normalized_name": "doom tomb" + }, + { + "appid": 1893080, + "normalized_name": "scare train vr" + }, + { + "appid": 1893100, + "normalized_name": "relics 2 the crusader's tomb" + }, + { + "appid": 1893130, + "normalized_name": "broblast" + }, + { + "appid": 1893150, + "normalized_name": "cog back to the 80s" + }, + { + "appid": 1893180, + "normalized_name": "sky jump" + }, + { + "appid": 1893200, + "normalized_name": "travelers in space crack" + }, + { + "appid": 1893210, + "normalized_name": "find the murderer 2" + }, + { + "appid": 1893260, + "normalized_name": "vacuum" + }, + { + "appid": 1893300, + "normalized_name": "planet collectors episode earth" + }, + { + "appid": 1893310, + "normalized_name": "steel shell" + }, + { + "appid": 1893320, + "normalized_name": "billy bonka" + }, + { + "appid": 1893330, + "normalized_name": "zadel princess" + }, + { + "appid": 1893350, + "normalized_name": "ultrarush" + }, + { + "appid": 1893370, + "normalized_name": "ghostware arena of the dead" + }, + { + "appid": 1893390, + "normalized_name": "cloudsea" + }, + { + "appid": 1893420, + "normalized_name": "aleon's nightmare" + }, + { + "appid": 1893440, + "normalized_name": "into evil" + }, + { + "appid": 1893460, + "normalized_name": "pick the lock" + }, + { + "appid": 1893490, + "normalized_name": "razed earth" + }, + { + "appid": 1893530, + "normalized_name": "call of senpai waifu warfare 2" + }, + { + "appid": 1893590, + "normalized_name": "cat follow me" + }, + { + "appid": 1893600, + "normalized_name": "smashball" + }, + { + "appid": 1893620, + "normalized_name": "circadian dice" + }, + { + "appid": 1893770, + "normalized_name": "quickflash a fabula story" + }, + { + "appid": 1893800, + "normalized_name": "scuffy game" + }, + { + "appid": 1893810, + "normalized_name": "solium infernum" + }, + { + "appid": 1893820, + "normalized_name": "jumplight odyssey" + }, + { + "appid": 1893860, + "normalized_name": "three finger battle arena" + }, + { + "appid": 1893870, + "normalized_name": "the creature zone vr" + }, + { + "appid": 1893880, + "normalized_name": "wormhole" + }, + { + "appid": 1893890, + "normalized_name": "skedaddle out the dungeon" + }, + { + "appid": 1893910, + "normalized_name": "project labyrinth" + }, + { + "appid": 1893930, + "normalized_name": "storm swordsman" + }, + { + "appid": 1893940, + "normalized_name": "synthwaves" + }, + { + "appid": 1893950, + "normalized_name": "one life" + }, + { + "appid": 1893960, + "normalized_name": "re collector" + }, + { + "appid": 1893970, + "normalized_name": "darkness blooms" + }, + { + "appid": 1893980, + "normalized_name": "survival sisters 2048" + }, + { + "appid": 1894080, + "normalized_name": "i got a millenary cat" + }, + { + "appid": 1894090, + "normalized_name": "tank hangar simulator" + }, + { + "appid": 1894100, + "normalized_name": "days with evraco the blind witch in blue forest" + }, + { + "appid": 1894120, + "normalized_name": "ill ness" + }, + { + "appid": 1894140, + "normalized_name": "seed of nostalgia" + }, + { + "appid": 1894150, + "normalized_name": "soulstrive" + }, + { + "appid": 1894190, + "normalized_name": "constructopia" + }, + { + "appid": 1894210, + "normalized_name": "let's go to the moon" + }, + { + "appid": 1894220, + "normalized_name": "square" + }, + { + "appid": 1894300, + "normalized_name": "fruit legacy" + }, + { + "appid": 1894320, + "normalized_name": "dr. professor scientist's weapons testing facility" + }, + { + "appid": 1894370, + "normalized_name": "nekomata kitan" + }, + { + "appid": 1894390, + "normalized_name": "god simulator" + }, + { + "appid": 1894430, + "normalized_name": "plan b terraform" + }, + { + "appid": 1894450, + "normalized_name": "11 islands 2 story of love" + }, + { + "appid": 1894460, + "normalized_name": "zombie within" + }, + { + "appid": 1894470, + "normalized_name": "pandaty" + }, + { + "appid": 1894510, + "normalized_name": "new century galaxy legend" + }, + { + "appid": 1894550, + "normalized_name": "facility 386" + }, + { + "appid": 1894570, + "normalized_name": "parasight chlorophyll worms" + }, + { + "appid": 1894600, + "normalized_name": "monster" + }, + { + "appid": 1894680, + "normalized_name": "the long road north" + }, + { + "appid": 1894700, + "normalized_name": "playhead" + }, + { + "appid": 1894720, + "normalized_name": "motordoom" + }, + { + "appid": 1894730, + "normalized_name": "asterix & obelix xxxl the ram from hibernia" + }, + { + "appid": 1894770, + "normalized_name": "bloody forest" + }, + { + "appid": 1894790, + "normalized_name": "stones keeper king aurelius" + }, + { + "appid": 1894860, + "normalized_name": "r is for rachel" + }, + { + "appid": 1894880, + "normalized_name": "dark desire 1" + }, + { + "appid": 1894910, + "normalized_name": "seeds of unity" + }, + { + "appid": 1894920, + "normalized_name": "voice over" + }, + { + "appid": 1894940, + "normalized_name": "zombodrive apocalyptic road trip" + }, + { + "appid": 1894980, + "normalized_name": "costrutto" + }, + { + "appid": 1894990, + "normalized_name": "i need a name" + }, + { + "appid": 1895040, + "normalized_name": "avatar raiders" + }, + { + "appid": 1895080, + "normalized_name": "zombie city" + }, + { + "appid": 1895130, + "normalized_name": "darza's dominion" + }, + { + "appid": 1895220, + "normalized_name": "horrors of the north" + }, + { + "appid": 1895240, + "normalized_name": "love on beach" + }, + { + "appid": 1895270, + "normalized_name": "trick shot" + }, + { + "appid": 1895300, + "normalized_name": "shinobi warfare" + }, + { + "appid": 1895330, + "normalized_name": "baller blast" + }, + { + "appid": 1895350, + "normalized_name": "i wani hug that gator!" + }, + { + "appid": 1895370, + "normalized_name": "college bound arctic adventure" + }, + { + "appid": 1895410, + "normalized_name": "desktop mars" + }, + { + "appid": 1895490, + "normalized_name": "sully a very serious rpg" + }, + { + "appid": 1895540, + "normalized_name": "1001 jigsaw legends of mystery 3" + }, + { + "appid": 1895550, + "normalized_name": "1001 jigsaw detective 2" + }, + { + "appid": 1895560, + "normalized_name": "1001 black raven jigsaw" + }, + { + "appid": 1895640, + "normalized_name": "i love finding critters" + }, + { + "appid": 1895650, + "normalized_name": "crupt" + }, + { + "appid": 1895660, + "normalized_name": "koncolos prologue" + }, + { + "appid": 1895670, + "normalized_name": "buccanyar" + }, + { + "appid": 1895720, + "normalized_name": "project three" + }, + { + "appid": 1895740, + "normalized_name": "the worst game" + }, + { + "appid": 1895760, + "normalized_name": "coral drive" + }, + { + "appid": 1895780, + "normalized_name": "sexy space airlines" + }, + { + "appid": 1895810, + "normalized_name": "infinity strash dragon quest the adventure of dai" + }, + { + "appid": 1895820, + "normalized_name": "greedventory" + }, + { + "appid": 1895860, + "normalized_name": "monster girls and the mysterious adventure 2" + }, + { + "appid": 1895870, + "normalized_name": "pusher" + }, + { + "appid": 1895880, + "normalized_name": "ratchet & clank rift apart" + }, + { + "appid": 1895890, + "normalized_name": "9 childs street" + }, + { + "appid": 1895920, + "normalized_name": "白晓" + }, + { + "appid": 1895950, + "normalized_name": "doki doki house" + }, + { + "appid": 1895960, + "normalized_name": "wicked dolls" + }, + { + "appid": 1895970, + "normalized_name": "robotherapy" + }, + { + "appid": 1896000, + "normalized_name": "construction manager" + }, + { + "appid": 1896010, + "normalized_name": "it's hasegawa san!?" + }, + { + "appid": 1896020, + "normalized_name": "running in the y2k" + }, + { + "appid": 1896090, + "normalized_name": "the claws of blood" + }, + { + "appid": 1896110, + "normalized_name": "just another day" + }, + { + "appid": 1896140, + "normalized_name": "roguepg" + }, + { + "appid": 1896160, + "normalized_name": "warplan pacific" + }, + { + "appid": 1896170, + "normalized_name": "prince of suburbia part 1" + }, + { + "appid": 1896180, + "normalized_name": "the rps game show" + }, + { + "appid": 1896190, + "normalized_name": "apocalyptic" + }, + { + "appid": 1896200, + "normalized_name": "down fall" + }, + { + "appid": 1896250, + "normalized_name": "happy conquistador" + }, + { + "appid": 1896310, + "normalized_name": "backrooms of reality" + }, + { + "appid": 1896330, + "normalized_name": "shroomscape zone" + }, + { + "appid": 1896370, + "normalized_name": "return of the video dead demon in the shell" + }, + { + "appid": 1896390, + "normalized_name": "stickman trenches" + }, + { + "appid": 1896420, + "normalized_name": "the ghost ship" + }, + { + "appid": 1896450, + "normalized_name": "dank subs" + }, + { + "appid": 1896510, + "normalized_name": "nova slash unparalleled power" + }, + { + "appid": 1896530, + "normalized_name": "foreign dreams" + }, + { + "appid": 1896550, + "normalized_name": "disc golf game on" + }, + { + "appid": 1896570, + "normalized_name": "final stardust cosmic nexus" + }, + { + "appid": 1896610, + "normalized_name": "edge of reality lost secrets of the forest collector's" + }, + { + "appid": 1896620, + "normalized_name": "detectives united deadly debt collector's" + }, + { + "appid": 1896630, + "normalized_name": "everplast" + }, + { + "appid": 1896650, + "normalized_name": "soul in the chamber" + }, + { + "appid": 1896660, + "normalized_name": "pasajeros" + }, + { + "appid": 1896690, + "normalized_name": "remains of morrow" + }, + { + "appid": 1896700, + "normalized_name": "wylde flowers" + }, + { + "appid": 1896710, + "normalized_name": "project xenoflora" + }, + { + "appid": 1896720, + "normalized_name": "dumb little robots" + }, + { + "appid": 1896750, + "normalized_name": "cursed" + }, + { + "appid": 1896760, + "normalized_name": "underling uprising" + }, + { + "appid": 1896770, + "normalized_name": "note brawl" + }, + { + "appid": 1896790, + "normalized_name": "sex feat ned" + }, + { + "appid": 1896800, + "normalized_name": "momo's conflict" + }, + { + "appid": 1896810, + "normalized_name": "still be a human" + }, + { + "appid": 1896820, + "normalized_name": "jungle runner" + }, + { + "appid": 1896840, + "normalized_name": "sexy furry" + }, + { + "appid": 1896870, + "normalized_name": "sodom r" + }, + { + "appid": 1896880, + "normalized_name": "dungeons of dreadrock" + }, + { + "appid": 1896900, + "normalized_name": "rail route the story of jozic" + }, + { + "appid": 1896930, + "normalized_name": "elephant's graveyard" + }, + { + "appid": 1896980, + "normalized_name": "the chronicles of hercules ii wrath of kronos" + }, + { + "appid": 1896990, + "normalized_name": "blazing worldstars" + }, + { + "appid": 1897000, + "normalized_name": "pow! 2" + }, + { + "appid": 1897010, + "normalized_name": "machinicide" + }, + { + "appid": 1897030, + "normalized_name": "prison king" + }, + { + "appid": 1897050, + "normalized_name": "various daylife" + }, + { + "appid": 1897060, + "normalized_name": "velaster" + }, + { + "appid": 1897100, + "normalized_name": "mirage in darkness" + }, + { + "appid": 1897110, + "normalized_name": "edge of sanity" + }, + { + "appid": 1897120, + "normalized_name": "幸福的二人房" + }, + { + "appid": 1897140, + "normalized_name": "vacuum ball" + }, + { + "appid": 1897150, + "normalized_name": "brothers" + }, + { + "appid": 1897250, + "normalized_name": "the sword of rhivenia" + }, + { + "appid": 1897300, + "normalized_name": "重檐" + }, + { + "appid": 1897320, + "normalized_name": "garden guardian" + }, + { + "appid": 1897330, + "normalized_name": "helga the viking warrior" + }, + { + "appid": 1897340, + "normalized_name": "innocence island" + }, + { + "appid": 1897350, + "normalized_name": "the new chronicles of noah's ark" + }, + { + "appid": 1897380, + "normalized_name": "zemblanity" + }, + { + "appid": 1897400, + "normalized_name": "master show vr" + }, + { + "appid": 1897410, + "normalized_name": "the thief" + }, + { + "appid": 1897420, + "normalized_name": "radio free europa" + }, + { + "appid": 1897430, + "normalized_name": "obsessive revenge" + }, + { + "appid": 1897450, + "normalized_name": "u boot the board game digital" + }, + { + "appid": 1897460, + "normalized_name": "danger of loss" + }, + { + "appid": 1897470, + "normalized_name": "bill" + }, + { + "appid": 1897480, + "normalized_name": "devil's island" + }, + { + "appid": 1897490, + "normalized_name": "nightfall" + }, + { + "appid": 1897510, + "normalized_name": "laetus." + }, + { + "appid": 1897520, + "normalized_name": "behind border zone" + }, + { + "appid": 1897530, + "normalized_name": "meat saw" + }, + { + "appid": 1897580, + "normalized_name": "search all runes" + }, + { + "appid": 1897590, + "normalized_name": "northmen wrath of vikings" + }, + { + "appid": 1897600, + "normalized_name": "dungeon blocks" + }, + { + "appid": 1897630, + "normalized_name": "garbage pail kids mad mike and the quest for stale gum" + }, + { + "appid": 1897650, + "normalized_name": "dream tactics" + }, + { + "appid": 1897680, + "normalized_name": "toycar" + }, + { + "appid": 1897720, + "normalized_name": "sex adventures the spa" + }, + { + "appid": 1897740, + "normalized_name": "chrono survival" + }, + { + "appid": 1897770, + "normalized_name": "the majestic" + }, + { + "appid": 1897780, + "normalized_name": "socialize poly" + }, + { + "appid": 1897810, + "normalized_name": "scavenger's deep" + }, + { + "appid": 1897820, + "normalized_name": "pirate booty and the bukkake buccaneer" + }, + { + "appid": 1897830, + "normalized_name": "sex diary double trouble teacher" + }, + { + "appid": 1897860, + "normalized_name": "sunken realms" + }, + { + "appid": 1897870, + "normalized_name": "proto akane" + }, + { + "appid": 1897890, + "normalized_name": "quantum of soul" + }, + { + "appid": 1897910, + "normalized_name": "shooter league" + }, + { + "appid": 1897950, + "normalized_name": "sirenhead southpoint" + }, + { + "appid": 1897960, + "normalized_name": "meet cute delivery 🐾" + }, + { + "appid": 1897970, + "normalized_name": "mini island aroma" + }, + { + "appid": 1897980, + "normalized_name": "project sphere" + }, + { + "appid": 1897990, + "normalized_name": "lulu way" + }, + { + "appid": 1898010, + "normalized_name": "floppy cat adventures" + }, + { + "appid": 1898020, + "normalized_name": "god s' margarita the lonely reniat noc" + }, + { + "appid": 1898050, + "normalized_name": "buried" + }, + { + "appid": 1898100, + "normalized_name": "initium legenda" + }, + { + "appid": 1898110, + "normalized_name": "meetlight and the secrets of the universe" + }, + { + "appid": 1898120, + "normalized_name": "escape the dead" + }, + { + "appid": 1898130, + "normalized_name": "memory novel the threesome" + }, + { + "appid": 1898210, + "normalized_name": "eros fantasy" + }, + { + "appid": 1898270, + "normalized_name": "beethebest" + }, + { + "appid": 1898290, + "normalized_name": "lego bricktales" + }, + { + "appid": 1898300, + "normalized_name": "aska" + }, + { + "appid": 1898370, + "normalized_name": "invertia" + }, + { + "appid": 1898410, + "normalized_name": "ruins & switch" + }, + { + "appid": 1898420, + "normalized_name": "endgame survival" + }, + { + "appid": 1898430, + "normalized_name": "horde survival" + }, + { + "appid": 1898460, + "normalized_name": "roburst" + }, + { + "appid": 1898500, + "normalized_name": "worldless" + }, + { + "appid": 1898530, + "normalized_name": "battle support (2022)" + }, + { + "appid": 1898550, + "normalized_name": "brutal rifters" + }, + { + "appid": 1898560, + "normalized_name": "pillars of light" + }, + { + "appid": 1898570, + "normalized_name": "square knight" + }, + { + "appid": 1898590, + "normalized_name": "revenge story" + }, + { + "appid": 1898610, + "normalized_name": "hands of necromancy" + }, + { + "appid": 1898630, + "normalized_name": "space shrooms rollplay" + }, + { + "appid": 1898670, + "normalized_name": "all the words she wrote" + }, + { + "appid": 1898680, + "normalized_name": "shadow era" + }, + { + "appid": 1898690, + "normalized_name": "gunner" + }, + { + "appid": 1898700, + "normalized_name": "scuffed" + }, + { + "appid": 1898790, + "normalized_name": "a crown of sorcery and steel" + }, + { + "appid": 1898860, + "normalized_name": "whale." + }, + { + "appid": 1898870, + "normalized_name": "from the town of gleming" + }, + { + "appid": 1898880, + "normalized_name": "the silent swan" + }, + { + "appid": 1898910, + "normalized_name": "edge of collapse" + }, + { + "appid": 1898920, + "normalized_name": "war of the worlds" + }, + { + "appid": 1898950, + "normalized_name": "o.d.t. escape... or die trying" + }, + { + "appid": 1898970, + "normalized_name": "hyde" + }, + { + "appid": 1898980, + "normalized_name": "glob" + }, + { + "appid": 1898990, + "normalized_name": "jigsaw pink" + }, + { + "appid": 1899000, + "normalized_name": "sidewards" + }, + { + "appid": 1899010, + "normalized_name": "the sych story human being" + }, + { + "appid": 1899060, + "normalized_name": "pocket mirror ~ goldenertraum" + }, + { + "appid": 1899080, + "normalized_name": "terra forma tower combat" + }, + { + "appid": 1899110, + "normalized_name": "octo vinctum revenge of the czar" + }, + { + "appid": 1899120, + "normalized_name": "shyftrs" + }, + { + "appid": 1899150, + "normalized_name": "灵异爱情.冷" + }, + { + "appid": 1899160, + "normalized_name": "puzzle mix" + }, + { + "appid": 1899170, + "normalized_name": "dirty girls" + }, + { + "appid": 1899180, + "normalized_name": "night of disturbance" + }, + { + "appid": 1899200, + "normalized_name": "bombardier" + }, + { + "appid": 1899210, + "normalized_name": "mire" + }, + { + "appid": 1899270, + "normalized_name": "battle of finland winter war" + }, + { + "appid": 1899290, + "normalized_name": "gems of destiny homeless dwarf" + }, + { + "appid": 1899300, + "normalized_name": "combat complex" + }, + { + "appid": 1899350, + "normalized_name": "trade bots a technical analysis simulation" + }, + { + "appid": 1899370, + "normalized_name": "3d将棋" + }, + { + "appid": 1899400, + "normalized_name": "rolling in the maze" + }, + { + "appid": 1899430, + "normalized_name": "vereda mystery escape room adventure" + }, + { + "appid": 1899440, + "normalized_name": "phoenix the fall" + }, + { + "appid": 1899450, + "normalized_name": "z rush survival" + }, + { + "appid": 1899500, + "normalized_name": "there is still hope" + }, + { + "appid": 1899550, + "normalized_name": "knights of the deep" + }, + { + "appid": 1899570, + "normalized_name": "nun" + }, + { + "appid": 1899620, + "normalized_name": "outdoor adventures with marisa kirisame" + }, + { + "appid": 1899680, + "normalized_name": "最適解 saitekikai spy simulator" + }, + { + "appid": 1899700, + "normalized_name": "graphwar" + }, + { + "appid": 1899710, + "normalized_name": "itrp _ volatile vertex" + }, + { + "appid": 1899730, + "normalized_name": "himbo harem homicide" + }, + { + "appid": 1899760, + "normalized_name": "maneater and the golden teacher" + }, + { + "appid": 1899790, + "normalized_name": "malfunction fps" + }, + { + "appid": 1899800, + "normalized_name": "raisond'etre" + }, + { + "appid": 1899810, + "normalized_name": "dread x collection 5" + }, + { + "appid": 1899820, + "normalized_name": "increment" + }, + { + "appid": 1899830, + "normalized_name": "grapple gear" + }, + { + "appid": 1899950, + "normalized_name": "dolmenjord viking islands" + }, + { + "appid": 1899980, + "normalized_name": "monster island" + }, + { + "appid": 1899990, + "normalized_name": "gehena" + }, + { + "appid": 1900020, + "normalized_name": "punjivr the vietnam war" + }, + { + "appid": 1900070, + "normalized_name": "battle for the droid station" + }, + { + "appid": 1900080, + "normalized_name": "the night watch" + }, + { + "appid": 1900130, + "normalized_name": "late photographer 2 free" + }, + { + "appid": 1900160, + "normalized_name": "prodigy trainer" + }, + { + "appid": 1900230, + "normalized_name": "vetrex" + }, + { + "appid": 1900250, + "normalized_name": "demonschool" + }, + { + "appid": 1900280, + "normalized_name": "just ignore them brea's story tape 1" + }, + { + "appid": 1900290, + "normalized_name": "go go knight!" + }, + { + "appid": 1900300, + "normalized_name": "the bad son" + }, + { + "appid": 1900320, + "normalized_name": "lumnis" + }, + { + "appid": 1900330, + "normalized_name": "mendalos" + }, + { + "appid": 1900340, + "normalized_name": "ten trials of babel the doppelganger maze" + }, + { + "appid": 1900370, + "normalized_name": "bloodz" + }, + { + "appid": 1900400, + "normalized_name": "mixed feelings while you were away boys love (bl) visual novel" + }, + { + "appid": 1900410, + "normalized_name": "slav or not" + }, + { + "appid": 1900480, + "normalized_name": "vonbit" + }, + { + "appid": 1900490, + "normalized_name": "white mirror" + }, + { + "appid": 1900530, + "normalized_name": "la villa de la muerte" + }, + { + "appid": 1900540, + "normalized_name": "calrivar cluster" + }, + { + "appid": 1900630, + "normalized_name": "shadows in the dark" + }, + { + "appid": 1900650, + "normalized_name": "a night with gigsjaw vr" + }, + { + "appid": 1900680, + "normalized_name": "mystery solitaire. grimm's tales 4" + }, + { + "appid": 1900690, + "normalized_name": "mystery solitaire. the black raven 2" + }, + { + "appid": 1900720, + "normalized_name": "for the fatherland" + }, + { + "appid": 1900740, + "normalized_name": "月影陌路" + }, + { + "appid": 1900790, + "normalized_name": "exorzine" + }, + { + "appid": 1900810, + "normalized_name": "new roots" + }, + { + "appid": 1900820, + "normalized_name": "mighty castles" + }, + { + "appid": 1900830, + "normalized_name": "the watcher" + }, + { + "appid": 1900850, + "normalized_name": "astro traveler" + }, + { + "appid": 1900860, + "normalized_name": "diamon jones and the amulet of the world" + }, + { + "appid": 1900880, + "normalized_name": "dash rider" + }, + { + "appid": 1900890, + "normalized_name": "redgar the space viking" + }, + { + "appid": 1900930, + "normalized_name": "dango!" + }, + { + "appid": 1900960, + "normalized_name": "base commander" + }, + { + "appid": 1900970, + "normalized_name": "the red hood" + }, + { + "appid": 1901010, + "normalized_name": "blob boy" + }, + { + "appid": 1901030, + "normalized_name": "dungeon reels tactics" + }, + { + "appid": 1901040, + "normalized_name": "green wounds" + }, + { + "appid": 1901050, + "normalized_name": "jack saves easter" + }, + { + "appid": 1901060, + "normalized_name": "dungeon dueler" + }, + { + "appid": 1901090, + "normalized_name": "world of retailing" + }, + { + "appid": 1901130, + "normalized_name": "a difficult game about rolling reuprise" + }, + { + "appid": 1901170, + "normalized_name": "galactoids galactic invaders" + }, + { + "appid": 1901180, + "normalized_name": "aster force" + }, + { + "appid": 1901200, + "normalized_name": "fps game dev test" + }, + { + "appid": 1901260, + "normalized_name": "幸运宝石" + }, + { + "appid": 1901300, + "normalized_name": "pls kill it." + }, + { + "appid": 1901330, + "normalized_name": "reflex king of elements" + }, + { + "appid": 1901340, + "normalized_name": "ero manager" + }, + { + "appid": 1901360, + "normalized_name": "space" + }, + { + "appid": 1901370, + "normalized_name": "ib" + }, + { + "appid": 1901400, + "normalized_name": "飞蛾" + }, + { + "appid": 1901410, + "normalized_name": "alternative punishment" + }, + { + "appid": 1901450, + "normalized_name": "infiltrating a cult" + }, + { + "appid": 1901490, + "normalized_name": "東方眠世界 ~ wonderful waking world" + }, + { + "appid": 1901540, + "normalized_name": "2 bit operative" + }, + { + "appid": 1901560, + "normalized_name": "rescue team heist of the century" + }, + { + "appid": 1901580, + "normalized_name": "fireworks show vr" + }, + { + "appid": 1901610, + "normalized_name": "b rain" + }, + { + "appid": 1901620, + "normalized_name": "dungeon travelers to heart 2 in another world" + }, + { + "appid": 1901730, + "normalized_name": "lootbox rpg" + }, + { + "appid": 1901740, + "normalized_name": "sworld" + }, + { + "appid": 1901780, + "normalized_name": "routine feat / бытовой подвиг" + }, + { + "appid": 1901810, + "normalized_name": "nearly dead live and let die" + }, + { + "appid": 1901830, + "normalized_name": "sønderdø" + }, + { + "appid": 1901860, + "normalized_name": "seneca 7 a cyberpunk odyssey" + }, + { + "appid": 1901870, + "normalized_name": "badtrip survival horror shooter" + }, + { + "appid": 1901900, + "normalized_name": "take over body 2" + }, + { + "appid": 1901910, + "normalized_name": "general american revolution" + }, + { + "appid": 1901940, + "normalized_name": "astro mission moon" + }, + { + "appid": 1901950, + "normalized_name": "台北大空襲 raid on taihoku" + }, + { + "appid": 1901960, + "normalized_name": "lootonomicon" + }, + { + "appid": 1901970, + "normalized_name": "one step after fall" + }, + { + "appid": 1901990, + "normalized_name": "machine gun fury" + }, + { + "appid": 1902020, + "normalized_name": "phil alone" + }, + { + "appid": 1902040, + "normalized_name": "escape to school" + }, + { + "appid": 1902050, + "normalized_name": "the deep lost" + }, + { + "appid": 1902060, + "normalized_name": "etherlium ai arise" + }, + { + "appid": 1902110, + "normalized_name": "rising sun vr" + }, + { + "appid": 1902120, + "normalized_name": "bigfield 2042" + }, + { + "appid": 1902150, + "normalized_name": "stranger" + }, + { + "appid": 1902170, + "normalized_name": "the asfrixa" + }, + { + "appid": 1902180, + "normalized_name": "plebs" + }, + { + "appid": 1902200, + "normalized_name": "scorpion overdrive" + }, + { + "appid": 1902210, + "normalized_name": "hidden floating city top down 3d" + }, + { + "appid": 1902230, + "normalized_name": "soulbaby" + }, + { + "appid": 1902240, + "normalized_name": "furry hentai quest" + }, + { + "appid": 1902250, + "normalized_name": "deadly rain" + }, + { + "appid": 1902260, + "normalized_name": "hidden western" + }, + { + "appid": 1902280, + "normalized_name": "truxposure vr" + }, + { + "appid": 1902290, + "normalized_name": "run away skydancer" + }, + { + "appid": 1902300, + "normalized_name": "drop system breach" + }, + { + "appid": 1902350, + "normalized_name": "polar bear riding a ninja" + }, + { + "appid": 1902490, + "normalized_name": "aperture desk job" + }, + { + "appid": 1902640, + "normalized_name": "ruins of majika" + }, + { + "appid": 1902650, + "normalized_name": "come see my hole" + }, + { + "appid": 1902690, + "normalized_name": "fate/samurai remnant" + }, + { + "appid": 1902710, + "normalized_name": "奇怪的rpg" + }, + { + "appid": 1902730, + "normalized_name": "the pathema 疫途" + }, + { + "appid": 1902750, + "normalized_name": "pipeline rtx" + }, + { + "appid": 1902810, + "normalized_name": "metal voyager" + }, + { + "appid": 1902820, + "normalized_name": "virtual ai lily" + }, + { + "appid": 1902830, + "normalized_name": "night racer" + }, + { + "appid": 1902840, + "normalized_name": "dustland rider" + }, + { + "appid": 1902850, + "normalized_name": "dreams in the witch house" + }, + { + "appid": 1902860, + "normalized_name": "light odyssey" + }, + { + "appid": 1902870, + "normalized_name": "vertical kingdom" + }, + { + "appid": 1902880, + "normalized_name": "tales of yore" + }, + { + "appid": 1902900, + "normalized_name": "the eternal battlefields" + }, + { + "appid": 1902940, + "normalized_name": "snacktorio" + }, + { + "appid": 1902960, + "normalized_name": "lost records bloom & rage" + }, + { + "appid": 1902970, + "normalized_name": "castle come" + }, + { + "appid": 1903040, + "normalized_name": "burning vengeance" + }, + { + "appid": 1903060, + "normalized_name": "heads will roll downfall" + }, + { + "appid": 1903080, + "normalized_name": "sharing lights" + }, + { + "appid": 1903100, + "normalized_name": "super slinger" + }, + { + "appid": 1903130, + "normalized_name": "hellfull the last hope" + }, + { + "appid": 1903170, + "normalized_name": "the quest for excalibur puy du fou" + }, + { + "appid": 1903200, + "normalized_name": "foreign galaxies" + }, + { + "appid": 1903220, + "normalized_name": "paint to pixel" + }, + { + "appid": 1903270, + "normalized_name": "sunset world online" + }, + { + "appid": 1903280, + "normalized_name": "heroes of the sacred tree" + }, + { + "appid": 1903290, + "normalized_name": "premortal vr" + }, + { + "appid": 1903310, + "normalized_name": "earth is too small for me" + }, + { + "appid": 1903320, + "normalized_name": "g.e.t." + }, + { + "appid": 1903330, + "normalized_name": "the giant of torridge island" + }, + { + "appid": 1903340, + "normalized_name": "clair obscur expedition 33" + }, + { + "appid": 1903360, + "normalized_name": "amazing girl" + }, + { + "appid": 1903370, + "normalized_name": "daydream 白日夢" + }, + { + "appid": 1903400, + "normalized_name": "bicycle rider simulator" + }, + { + "appid": 1903420, + "normalized_name": "undeads vs humans" + }, + { + "appid": 1903430, + "normalized_name": "curio" + }, + { + "appid": 1903440, + "normalized_name": "presidents fight" + }, + { + "appid": 1903450, + "normalized_name": "spellscribe" + }, + { + "appid": 1903480, + "normalized_name": "banana hunter" + }, + { + "appid": 1903490, + "normalized_name": "crabby beach" + }, + { + "appid": 1903510, + "normalized_name": "technicity prologue" + }, + { + "appid": 1903530, + "normalized_name": "heart attack" + }, + { + "appid": 1903540, + "normalized_name": "the nightmare inside" + }, + { + "appid": 1903560, + "normalized_name": "atomic picnic" + }, + { + "appid": 1903590, + "normalized_name": "了不起的棋盘" + }, + { + "appid": 1903600, + "normalized_name": "zombie vs police" + }, + { + "appid": 1903620, + "normalized_name": "killer frequency" + }, + { + "appid": 1903630, + "normalized_name": "evasion from hell" + }, + { + "appid": 1903640, + "normalized_name": "hex rally racers" + }, + { + "appid": 1903670, + "normalized_name": "peaky blinders the king's ransom" + }, + { + "appid": 1903690, + "normalized_name": "princess pyro" + }, + { + "appid": 1903710, + "normalized_name": "necroarcher" + }, + { + "appid": 1903720, + "normalized_name": "with good intentions" + }, + { + "appid": 1903730, + "normalized_name": "it simulator" + }, + { + "appid": 1903770, + "normalized_name": "koni the secrets of castle" + }, + { + "appid": 1903780, + "normalized_name": "blood camp" + }, + { + "appid": 1903790, + "normalized_name": "skeleton attack nightmare awaken" + }, + { + "appid": 1903830, + "normalized_name": "jessica mysterious journey" + }, + { + "appid": 1903840, + "normalized_name": "jessica mystery of courchevel" + }, + { + "appid": 1903850, + "normalized_name": "jessica secret of the caribbean" + }, + { + "appid": 1903880, + "normalized_name": "push the sheep" + }, + { + "appid": 1903910, + "normalized_name": "slave zero x" + }, + { + "appid": 1903970, + "normalized_name": "world championship boxing manager 2" + }, + { + "appid": 1903990, + "normalized_name": "elemental roll" + }, + { + "appid": 1904030, + "normalized_name": "maze dungeon" + }, + { + "appid": 1904040, + "normalized_name": "fantasy fishing town" + }, + { + "appid": 1904050, + "normalized_name": "comrade quack" + }, + { + "appid": 1904160, + "normalized_name": "trainz plus" + }, + { + "appid": 1904190, + "normalized_name": "异星前哨" + }, + { + "appid": 1904220, + "normalized_name": "我死后的那些天 after death" + }, + { + "appid": 1904280, + "normalized_name": "feartress" + }, + { + "appid": 1904300, + "normalized_name": "royalty" + }, + { + "appid": 1904320, + "normalized_name": "animaddicts 2" + }, + { + "appid": 1904330, + "normalized_name": "the tribe game" + }, + { + "appid": 1904360, + "normalized_name": "pawn shop simulator" + }, + { + "appid": 1904380, + "normalized_name": "mortal darkness" + }, + { + "appid": 1904400, + "normalized_name": "my pet rock" + }, + { + "appid": 1904410, + "normalized_name": "space piercer" + }, + { + "appid": 1904430, + "normalized_name": "jigsaw novel naughty stewardesses" + }, + { + "appid": 1904480, + "normalized_name": "absolum" + }, + { + "appid": 1904530, + "normalized_name": "forgotten realms the archives collection three" + }, + { + "appid": 1904560, + "normalized_name": "dungeons & dragons ravenloft series" + }, + { + "appid": 1904580, + "normalized_name": "dungeons & dragons dark sun series" + }, + { + "appid": 1904590, + "normalized_name": "project medved" + }, + { + "appid": 1904610, + "normalized_name": "dungeons & dragons krynn series" + }, + { + "appid": 1904640, + "normalized_name": "al qadim the genie's curse" + }, + { + "appid": 1904650, + "normalized_name": "dungeons & dragons stronghold kingdom simulator" + }, + { + "appid": 1904680, + "normalized_name": "chapel 3 d the ascent" + }, + { + "appid": 1904730, + "normalized_name": "剣と魔法と学園クエスト。" + }, + { + "appid": 1904740, + "normalized_name": "岛中夜鬼 yato's story" + }, + { + "appid": 1904790, + "normalized_name": "agatha christie murder on the orient express" + }, + { + "appid": 1904800, + "normalized_name": "rebel" + }, + { + "appid": 1904810, + "normalized_name": "law of the sword" + }, + { + "appid": 1904820, + "normalized_name": "prison life" + }, + { + "appid": 1904830, + "normalized_name": "wildscape" + }, + { + "appid": 1904860, + "normalized_name": "legends of kingdom rush" + }, + { + "appid": 1904880, + "normalized_name": "once upon a puppet" + }, + { + "appid": 1904960, + "normalized_name": "lionel the dragon" + }, + { + "appid": 1904980, + "normalized_name": "espresso tycoon prologue underwater" + }, + { + "appid": 1905020, + "normalized_name": "greyhill incident" + }, + { + "appid": 1905040, + "normalized_name": "the last medic" + }, + { + "appid": 1905050, + "normalized_name": "clocknockers 2" + }, + { + "appid": 1905060, + "normalized_name": "fire safety vr training" + }, + { + "appid": 1905080, + "normalized_name": "firesquad" + }, + { + "appid": 1905090, + "normalized_name": "bedrooms on the moon" + }, + { + "appid": 1905110, + "normalized_name": "fantasylandia world" + }, + { + "appid": 1905150, + "normalized_name": "manacircle" + }, + { + "appid": 1905160, + "normalized_name": "dudelings arcade sportsball" + }, + { + "appid": 1905210, + "normalized_name": "hero chest" + }, + { + "appid": 1905220, + "normalized_name": "kill it with fire vr" + }, + { + "appid": 1905230, + "normalized_name": "hinter" + }, + { + "appid": 1905260, + "normalized_name": "mini gardens logic puzzle" + }, + { + "appid": 1905270, + "normalized_name": "aery a new frontier" + }, + { + "appid": 1905310, + "normalized_name": "wordies" + }, + { + "appid": 1905360, + "normalized_name": "c.t.r.l" + }, + { + "appid": 1905400, + "normalized_name": "rodent rumble" + }, + { + "appid": 1905420, + "normalized_name": "henshinko!" + }, + { + "appid": 1905430, + "normalized_name": "gravitar recharged" + }, + { + "appid": 1905450, + "normalized_name": "spelltome" + }, + { + "appid": 1905530, + "normalized_name": "hammerwatch anniversary" + }, + { + "appid": 1905540, + "normalized_name": "the mostly empty theatre" + }, + { + "appid": 1905550, + "normalized_name": "battlesage" + }, + { + "appid": 1905580, + "normalized_name": "kloa child of the forest" + }, + { + "appid": 1905600, + "normalized_name": "hexagge" + }, + { + "appid": 1905660, + "normalized_name": "pop battle" + }, + { + "appid": 1905700, + "normalized_name": "a series of temporal mishaps" + }, + { + "appid": 1905800, + "normalized_name": "wonder library" + }, + { + "appid": 1905900, + "normalized_name": "king rabbit race" + }, + { + "appid": 1905930, + "normalized_name": "stone mirth on earth" + }, + { + "appid": 1905940, + "normalized_name": "painting vr" + }, + { + "appid": 1905950, + "normalized_name": "shelter 69" + }, + { + "appid": 1905960, + "normalized_name": "endlanders" + }, + { + "appid": 1905980, + "normalized_name": "farmer's father save the innocence" + }, + { + "appid": 1906000, + "normalized_name": "popplings" + }, + { + "appid": 1906020, + "normalized_name": "drums rock" + }, + { + "appid": 1906040, + "normalized_name": "board game party" + }, + { + "appid": 1906070, + "normalized_name": "retro karting 22" + }, + { + "appid": 1906100, + "normalized_name": "mirror shoot" + }, + { + "appid": 1906130, + "normalized_name": "yum collector" + }, + { + "appid": 1906140, + "normalized_name": "search all berries" + }, + { + "appid": 1906150, + "normalized_name": "pixel trouble" + }, + { + "appid": 1906160, + "normalized_name": "sprout lands" + }, + { + "appid": 1906180, + "normalized_name": "memory traces japan" + }, + { + "appid": 1906190, + "normalized_name": "backrooms" + }, + { + "appid": 1906220, + "normalized_name": "мафия онлайн" + }, + { + "appid": 1906230, + "normalized_name": "thunder helix" + }, + { + "appid": 1906250, + "normalized_name": "instant artist puzzle mashup" + }, + { + "appid": 1906320, + "normalized_name": "arena drift master" + }, + { + "appid": 1906400, + "normalized_name": "毛玉大冒险 ~ kedama's adventure" + }, + { + "appid": 1906410, + "normalized_name": "battle 19xx" + }, + { + "appid": 1906420, + "normalized_name": "neon shapes" + }, + { + "appid": 1906430, + "normalized_name": "halve" + }, + { + "appid": 1906470, + "normalized_name": "shattered between" + }, + { + "appid": 1906510, + "normalized_name": "arto" + }, + { + "appid": 1906520, + "normalized_name": "azeriom" + }, + { + "appid": 1906540, + "normalized_name": "lofi hollow" + }, + { + "appid": 1906570, + "normalized_name": "the art of war card game" + }, + { + "appid": 1906590, + "normalized_name": "ww2 rebuilder germany prologue" + }, + { + "appid": 1906600, + "normalized_name": "xpressorcist" + }, + { + "appid": 1906640, + "normalized_name": "revenge of the killer octopus" + }, + { + "appid": 1906650, + "normalized_name": "books in wrong places" + }, + { + "appid": 1906660, + "normalized_name": "sof spirits of freedom" + }, + { + "appid": 1906670, + "normalized_name": "chimeras mark of death collector's" + }, + { + "appid": 1906680, + "normalized_name": "surface strings of fate collector's" + }, + { + "appid": 1906690, + "normalized_name": "铁山奇谭" + }, + { + "appid": 1906740, + "normalized_name": "spikeball" + }, + { + "appid": 1906750, + "normalized_name": "roly poly" + }, + { + "appid": 1906800, + "normalized_name": "legend of radiance" + }, + { + "appid": 1906810, + "normalized_name": "slide 'em up" + }, + { + "appid": 1906830, + "normalized_name": "while the iron's hot" + }, + { + "appid": 1906860, + "normalized_name": "path to ruin" + }, + { + "appid": 1906870, + "normalized_name": "烈山海前传之黑帝君临" + }, + { + "appid": 1906880, + "normalized_name": "kongfu vr" + }, + { + "appid": 1906890, + "normalized_name": "jump like an egyptian" + }, + { + "appid": 1906910, + "normalized_name": "beatnclean" + }, + { + "appid": 1906930, + "normalized_name": "bitter silver" + }, + { + "appid": 1906940, + "normalized_name": "梦幻三国2" + }, + { + "appid": 1906950, + "normalized_name": "wrath of anias" + }, + { + "appid": 1906970, + "normalized_name": "magical harvest" + }, + { + "appid": 1906980, + "normalized_name": "the four elements zombies" + }, + { + "appid": 1907000, + "normalized_name": "gloomgrave" + }, + { + "appid": 1907020, + "normalized_name": "nea edem" + }, + { + "appid": 1907040, + "normalized_name": "emptyepsilon" + }, + { + "appid": 1907060, + "normalized_name": "沙盒勇者:序章" + }, + { + "appid": 1907070, + "normalized_name": "rock snake" + }, + { + "appid": 1907140, + "normalized_name": "dungeon faster & deadlier" + }, + { + "appid": 1907150, + "normalized_name": "barbarous 2 tavern wars" + }, + { + "appid": 1907170, + "normalized_name": "adventure in my head" + }, + { + "appid": 1907180, + "normalized_name": "和你相遇的那天是轮回高校的日常这也是合理的吗?" + }, + { + "appid": 1907230, + "normalized_name": "an uninvited guest" + }, + { + "appid": 1907280, + "normalized_name": "collab ball" + }, + { + "appid": 1907290, + "normalized_name": "pathogen" + }, + { + "appid": 1907350, + "normalized_name": "arena renovation first job" + }, + { + "appid": 1907380, + "normalized_name": "arcane vale" + }, + { + "appid": 1907400, + "normalized_name": "captain gazman day of the rage" + }, + { + "appid": 1907420, + "normalized_name": "search all mushrooms" + }, + { + "appid": 1907440, + "normalized_name": "super lone survivor" + }, + { + "appid": 1907520, + "normalized_name": "在废墟之中" + }, + { + "appid": 1907570, + "normalized_name": "hot milf 4" + }, + { + "appid": 1907590, + "normalized_name": "psycho patrol r" + }, + { + "appid": 1907620, + "normalized_name": "gamma space" + }, + { + "appid": 1907630, + "normalized_name": "beauties academy spellcraft tournament" + }, + { + "appid": 1907640, + "normalized_name": "lost in place" + }, + { + "appid": 1907660, + "normalized_name": "monster path" + }, + { + "appid": 1907720, + "normalized_name": "autonauts vs piratebots" + }, + { + "appid": 1907790, + "normalized_name": "chicago 2020" + }, + { + "appid": 1907800, + "normalized_name": "sokobear spring" + }, + { + "appid": 1907810, + "normalized_name": "sokobear summer" + }, + { + "appid": 1907820, + "normalized_name": "sokobear cave" + }, + { + "appid": 1907830, + "normalized_name": "sokobear goo" + }, + { + "appid": 1907900, + "normalized_name": "halftime heroes" + }, + { + "appid": 1907910, + "normalized_name": "the old ultraviolet" + }, + { + "appid": 1907980, + "normalized_name": "elec dude" + }, + { + "appid": 1907990, + "normalized_name": "half built casino" + }, + { + "appid": 1908080, + "normalized_name": "the mage" + }, + { + "appid": 1908090, + "normalized_name": "kurenai maid tycoon" + }, + { + "appid": 1908140, + "normalized_name": "escape lia" + }, + { + "appid": 1908150, + "normalized_name": "forget westbury falls disc one" + }, + { + "appid": 1908180, + "normalized_name": "lil splody look out below!" + }, + { + "appid": 1908190, + "normalized_name": "dungeon run" + }, + { + "appid": 1908200, + "normalized_name": "vhs platform 2d" + }, + { + "appid": 1908220, + "normalized_name": "adventure trip wonders of the world collector's" + }, + { + "appid": 1908230, + "normalized_name": "lord of fire & ice" + }, + { + "appid": 1908240, + "normalized_name": "impasto" + }, + { + "appid": 1908250, + "normalized_name": "雪之本境s" + }, + { + "appid": 1908260, + "normalized_name": "unblocking" + }, + { + "appid": 1908320, + "normalized_name": "物质与魔法" + }, + { + "appid": 1908330, + "normalized_name": "swift attack" + }, + { + "appid": 1908350, + "normalized_name": "runr end" + }, + { + "appid": 1908360, + "normalized_name": "into the wake" + }, + { + "appid": 1908380, + "normalized_name": "binary golf" + }, + { + "appid": 1908430, + "normalized_name": "pipe connect" + }, + { + "appid": 1908460, + "normalized_name": "dead profit" + }, + { + "appid": 1908480, + "normalized_name": "paladin's passage" + }, + { + "appid": 1908490, + "normalized_name": "30 days to be the best" + }, + { + "appid": 1908500, + "normalized_name": "runes magica" + }, + { + "appid": 1908530, + "normalized_name": "raise your tribe" + }, + { + "appid": 1908560, + "normalized_name": "hungry zombies" + }, + { + "appid": 1908570, + "normalized_name": "lambda end theory" + }, + { + "appid": 1908600, + "normalized_name": "block dropper" + }, + { + "appid": 1908610, + "normalized_name": "homebound the last stand" + }, + { + "appid": 1908620, + "normalized_name": "descend" + }, + { + "appid": 1908640, + "normalized_name": "neonhat" + }, + { + "appid": 1908650, + "normalized_name": "blastocitos" + }, + { + "appid": 1908660, + "normalized_name": "lollipop knight rebaked" + }, + { + "appid": 1908670, + "normalized_name": "charlie in the moistverse of madness" + }, + { + "appid": 1908680, + "normalized_name": "search all cactuses" + }, + { + "appid": 1908690, + "normalized_name": "box world space courier" + }, + { + "appid": 1908730, + "normalized_name": "playtime with hoogie" + }, + { + "appid": 1908740, + "normalized_name": "poly puzzle birds" + }, + { + "appid": 1908770, + "normalized_name": "akolyta" + }, + { + "appid": 1908790, + "normalized_name": "penny for your thoughts" + }, + { + "appid": 1908850, + "normalized_name": "quick words" + }, + { + "appid": 1908870, + "normalized_name": "\"life\" not found;" + }, + { + "appid": 1908900, + "normalized_name": "rogueclick" + }, + { + "appid": 1908990, + "normalized_name": "froggy quest" + }, + { + "appid": 1909010, + "normalized_name": "かくりよ" + }, + { + "appid": 1909020, + "normalized_name": "三国記ii" + }, + { + "appid": 1909030, + "normalized_name": "planet after us" + }, + { + "appid": 1909040, + "normalized_name": "corn defenders" + }, + { + "appid": 1909080, + "normalized_name": "polychromia" + }, + { + "appid": 1909090, + "normalized_name": "kapellmeister" + }, + { + "appid": 1909100, + "normalized_name": "only lead can stop them" + }, + { + "appid": 1909150, + "normalized_name": "yosemite forest ranger" + }, + { + "appid": 1909170, + "normalized_name": "alien decimation" + }, + { + "appid": 1909220, + "normalized_name": "movie quest" + }, + { + "appid": 1909230, + "normalized_name": "vruseum" + }, + { + "appid": 1909240, + "normalized_name": "nonogram kingdom" + }, + { + "appid": 1909260, + "normalized_name": "looping bravery" + }, + { + "appid": 1909270, + "normalized_name": "米可可大冒險" + }, + { + "appid": 1909280, + "normalized_name": "alchemist arena" + }, + { + "appid": 1909310, + "normalized_name": "snowtracked" + }, + { + "appid": 1909320, + "normalized_name": "furry futanari jigsaw" + }, + { + "appid": 1909330, + "normalized_name": "search all spiders" + }, + { + "appid": 1909370, + "normalized_name": "just power the papal states" + }, + { + "appid": 1909380, + "normalized_name": "furry sex" + }, + { + "appid": 1909420, + "normalized_name": "tinyfolks" + }, + { + "appid": 1909430, + "normalized_name": "story of you the allied kingdoms" + }, + { + "appid": 1909450, + "normalized_name": "colony cephea" + }, + { + "appid": 1909510, + "normalized_name": "univers 11 under the sky" + }, + { + "appid": 1909560, + "normalized_name": "mission twentyeight" + }, + { + "appid": 1909630, + "normalized_name": "blue rabbit a world of shapes and lost colors" + }, + { + "appid": 1909650, + "normalized_name": "ring war" + }, + { + "appid": 1909670, + "normalized_name": "tegridy puzzles" + }, + { + "appid": 1909720, + "normalized_name": "technitive" + }, + { + "appid": 1909740, + "normalized_name": "星の子ヴェルタと空への道" + }, + { + "appid": 1909750, + "normalized_name": "last time i saw you" + }, + { + "appid": 1909760, + "normalized_name": "hexa td free game" + }, + { + "appid": 1909770, + "normalized_name": "aim climb" + }, + { + "appid": 1909790, + "normalized_name": "cadleiu" + }, + { + "appid": 1909800, + "normalized_name": "uuultrac" + }, + { + "appid": 1909810, + "normalized_name": "seventh lair" + }, + { + "appid": 1909820, + "normalized_name": "altair breaker" + }, + { + "appid": 1909830, + "normalized_name": "1001 jigsaw castles and palaces 2" + }, + { + "appid": 1909840, + "normalized_name": "jianghu chronicles" + }, + { + "appid": 1909850, + "normalized_name": "ethereal rift" + }, + { + "appid": 1909880, + "normalized_name": "サイコロサイコ セブンスヘブン" + }, + { + "appid": 1909950, + "normalized_name": "super robot wars y" + }, + { + "appid": 1910000, + "normalized_name": "sometimes they come back" + }, + { + "appid": 1910010, + "normalized_name": "everburning" + }, + { + "appid": 1910020, + "normalized_name": "pretty girls four kings solitaire" + }, + { + "appid": 1910080, + "normalized_name": "super ate in wonderland" + }, + { + "appid": 1910130, + "normalized_name": "qwilight" + }, + { + "appid": 1910140, + "normalized_name": "sunset future shapers" + }, + { + "appid": 1910150, + "normalized_name": "walk of life" + }, + { + "appid": 1910170, + "normalized_name": "deflectorium" + }, + { + "appid": 1910180, + "normalized_name": "ghosts of hollow creek" + }, + { + "appid": 1910200, + "normalized_name": "eigen space" + }, + { + "appid": 1910210, + "normalized_name": "work at height vr training" + }, + { + "appid": 1910230, + "normalized_name": "spirit of shotgun" + }, + { + "appid": 1910240, + "normalized_name": "the finnish war" + }, + { + "appid": 1910250, + "normalized_name": "fists of stone" + }, + { + "appid": 1910260, + "normalized_name": "geballer" + }, + { + "appid": 1910280, + "normalized_name": "cold engines" + }, + { + "appid": 1910300, + "normalized_name": "jojo siwa worldwide party" + }, + { + "appid": 1910310, + "normalized_name": "wukong" + }, + { + "appid": 1910320, + "normalized_name": "tape unveil the memories" + }, + { + "appid": 1910330, + "normalized_name": "desolate shores" + }, + { + "appid": 1910360, + "normalized_name": "burial stone" + }, + { + "appid": 1910370, + "normalized_name": "11111game" + }, + { + "appid": 1910400, + "normalized_name": "monsters and warriors onet match connect" + }, + { + "appid": 1910410, + "normalized_name": "survive the backrooms!" + }, + { + "appid": 1910420, + "normalized_name": "vr hentai play" + }, + { + "appid": 1910450, + "normalized_name": "mega snaileeyo adventure" + }, + { + "appid": 1910470, + "normalized_name": "project d20" + }, + { + "appid": 1910490, + "normalized_name": "a2 zygon" + }, + { + "appid": 1910550, + "normalized_name": "anime feet 2" + }, + { + "appid": 1910560, + "normalized_name": "the unknown halls" + }, + { + "appid": 1910580, + "normalized_name": "click to ten" + }, + { + "appid": 1910590, + "normalized_name": "ganbaru" + }, + { + "appid": 1910600, + "normalized_name": "one btn bosses" + }, + { + "appid": 1910610, + "normalized_name": "pixel artist" + }, + { + "appid": 1910630, + "normalized_name": "empty war" + }, + { + "appid": 1910650, + "normalized_name": "tinker & spell" + }, + { + "appid": 1910680, + "normalized_name": "orb of creation" + }, + { + "appid": 1910720, + "normalized_name": "duolbots" + }, + { + "appid": 1910740, + "normalized_name": "perfect ball" + }, + { + "appid": 1910770, + "normalized_name": "myth landers" + }, + { + "appid": 1910780, + "normalized_name": "fray fight" + }, + { + "appid": 1910790, + "normalized_name": "lunar mirror" + }, + { + "appid": 1910800, + "normalized_name": "impulse rogue" + }, + { + "appid": 1910820, + "normalized_name": "细菌边缘" + }, + { + "appid": 1910830, + "normalized_name": "cruise ship horse racing" + }, + { + "appid": 1910860, + "normalized_name": "grimlord" + }, + { + "appid": 1910890, + "normalized_name": "hacking for hermann" + }, + { + "appid": 1910910, + "normalized_name": "sinthetic" + }, + { + "appid": 1910930, + "normalized_name": "reestate real estate and business simulator" + }, + { + "appid": 1910950, + "normalized_name": "stimmings" + }, + { + "appid": 1910990, + "normalized_name": "nft simulator" + }, + { + "appid": 1911010, + "normalized_name": "voxel digger" + }, + { + "appid": 1911030, + "normalized_name": "the ball 2" + }, + { + "appid": 1911050, + "normalized_name": "reversilly" + }, + { + "appid": 1911090, + "normalized_name": "meliora" + }, + { + "appid": 1911120, + "normalized_name": "hot work vr training" + }, + { + "appid": 1911170, + "normalized_name": "chronescher" + }, + { + "appid": 1911200, + "normalized_name": "sultan of egypt" + }, + { + "appid": 1911220, + "normalized_name": "smurfs kart" + }, + { + "appid": 1911230, + "normalized_name": "lockout tagout (loto) vr training" + }, + { + "appid": 1911250, + "normalized_name": "general practitioner 2" + }, + { + "appid": 1911340, + "normalized_name": "dimakerus" + }, + { + "appid": 1911360, + "normalized_name": "trinity fusion" + }, + { + "appid": 1911370, + "normalized_name": "エレメンタルマスター ルナ 月の女神と失われた記憶" + }, + { + "appid": 1911390, + "normalized_name": "knightfall a daring journey" + }, + { + "appid": 1911400, + "normalized_name": "blink god" + }, + { + "appid": 1911420, + "normalized_name": "search and rescue" + }, + { + "appid": 1911450, + "normalized_name": "robovenger" + }, + { + "appid": 1911510, + "normalized_name": "stone protectors" + }, + { + "appid": 1911530, + "normalized_name": "armored firestorm" + }, + { + "appid": 1911560, + "normalized_name": "class escape" + }, + { + "appid": 1911570, + "normalized_name": "nekoglai simulator" + }, + { + "appid": 1911580, + "normalized_name": "raconteur" + }, + { + "appid": 1911590, + "normalized_name": "set sail" + }, + { + "appid": 1911600, + "normalized_name": "lost alone ep.3 nonnina" + }, + { + "appid": 1911610, + "normalized_name": "windblown" + }, + { + "appid": 1911620, + "normalized_name": "shadows of glory" + }, + { + "appid": 1911640, + "normalized_name": "mana chess" + }, + { + "appid": 1911650, + "normalized_name": "kurama and the cursed isles" + }, + { + "appid": 1911690, + "normalized_name": "dallaham" + }, + { + "appid": 1911740, + "normalized_name": "sdc2x" + }, + { + "appid": 1911750, + "normalized_name": "overcolony" + }, + { + "appid": 1911760, + "normalized_name": "seadogs of nassau" + }, + { + "appid": 1911770, + "normalized_name": "brawler bots!" + }, + { + "appid": 1911780, + "normalized_name": "lost fleet" + }, + { + "appid": 1911800, + "normalized_name": "atari mania" + }, + { + "appid": 1911860, + "normalized_name": "grit and valor 1949" + }, + { + "appid": 1911900, + "normalized_name": "overnight" + }, + { + "appid": 1911940, + "normalized_name": "twilight monk" + }, + { + "appid": 1911960, + "normalized_name": "darkspar" + }, + { + "appid": 1911980, + "normalized_name": "dissonance" + }, + { + "appid": 1911990, + "normalized_name": "super meteor" + }, + { + "appid": 1912130, + "normalized_name": "snwbrd freestyle snowboarding" + }, + { + "appid": 1912140, + "normalized_name": "江山美人志" + }, + { + "appid": 1912170, + "normalized_name": "thunder league online" + }, + { + "appid": 1912230, + "normalized_name": "harddrive" + }, + { + "appid": 1912330, + "normalized_name": "12 labours of hercules xiv message in a bottle" + }, + { + "appid": 1912340, + "normalized_name": "雀姬的異想世界" + }, + { + "appid": 1912380, + "normalized_name": "soccer story" + }, + { + "appid": 1912420, + "normalized_name": "sunshine shuffle" + }, + { + "appid": 1912460, + "normalized_name": "the creature of chaos" + }, + { + "appid": 1912480, + "normalized_name": "vacant planet" + }, + { + "appid": 1912490, + "normalized_name": "koncolos" + }, + { + "appid": 1912500, + "normalized_name": "isolate" + }, + { + "appid": 1912510, + "normalized_name": "anicon animal complex party" + }, + { + "appid": 1912560, + "normalized_name": "super gosu cars" + }, + { + "appid": 1912590, + "normalized_name": "vision\\memory\\maze" + }, + { + "appid": 1912620, + "normalized_name": "natalia" + }, + { + "appid": 1912630, + "normalized_name": "champs td" + }, + { + "appid": 1912660, + "normalized_name": "dotto botto" + }, + { + "appid": 1912700, + "normalized_name": "3d puzzle wood house" + }, + { + "appid": 1912710, + "normalized_name": "hidden post apocalyptic top down 3d" + }, + { + "appid": 1912750, + "normalized_name": "terra memoria" + }, + { + "appid": 1912760, + "normalized_name": "the hentai memory" + }, + { + "appid": 1912770, + "normalized_name": "zombie crush driver" + }, + { + "appid": 1912820, + "normalized_name": "evan quest 2" + }, + { + "appid": 1912840, + "normalized_name": "bukkaku" + }, + { + "appid": 1912870, + "normalized_name": "inyoku shoujo" + }, + { + "appid": 1912900, + "normalized_name": "maximum velocity" + }, + { + "appid": 1912940, + "normalized_name": "scp archive" + }, + { + "appid": 1912960, + "normalized_name": "vista world" + }, + { + "appid": 1912970, + "normalized_name": "late photographer 3" + }, + { + "appid": 1912980, + "normalized_name": "tales of novariel" + }, + { + "appid": 1913000, + "normalized_name": "nuclear frost" + }, + { + "appid": 1913020, + "normalized_name": "astra wing" + }, + { + "appid": 1913120, + "normalized_name": "tears of metal" + }, + { + "appid": 1913140, + "normalized_name": "unaware" + }, + { + "appid": 1913160, + "normalized_name": "cops 2170 the power of law" + }, + { + "appid": 1913190, + "normalized_name": "paranormal motel" + }, + { + "appid": 1913200, + "normalized_name": "mark's magnificent marble maze" + }, + { + "appid": 1913210, + "normalized_name": "aew fight forever" + }, + { + "appid": 1913220, + "normalized_name": "back 2 school" + }, + { + "appid": 1913230, + "normalized_name": "dere chat" + }, + { + "appid": 1913310, + "normalized_name": "undead tread" + }, + { + "appid": 1913320, + "normalized_name": "cat adventure 2" + }, + { + "appid": 1913330, + "normalized_name": "dark waters gino and the witch of the black swamp" + }, + { + "appid": 1913360, + "normalized_name": "frog fall down" + }, + { + "appid": 1913370, + "normalized_name": "operator" + }, + { + "appid": 1913410, + "normalized_name": "broken tactics" + }, + { + "appid": 1913420, + "normalized_name": "幻想曹操传2 fantasy of caocao2" + }, + { + "appid": 1913490, + "normalized_name": "adorable witch 3" + }, + { + "appid": 1913530, + "normalized_name": "dopemine arena" + }, + { + "appid": 1913550, + "normalized_name": "aces under the moonlight" + }, + { + "appid": 1913600, + "normalized_name": "sanator elmo's legacy" + }, + { + "appid": 1913610, + "normalized_name": "art of stunt" + }, + { + "appid": 1913620, + "normalized_name": "puzzle bobble2x/bust a move2 arcade & puzzle bobble3/bust a move3 s tribute" + }, + { + "appid": 1913670, + "normalized_name": "metal black s tribute" + }, + { + "appid": 1913680, + "normalized_name": "elevator action returns s tribute" + }, + { + "appid": 1913690, + "normalized_name": "cleopatra fortune s tribute" + }, + { + "appid": 1913700, + "normalized_name": "netspectre" + }, + { + "appid": 1913720, + "normalized_name": "69 estera hot" + }, + { + "appid": 1913740, + "normalized_name": "super bomberman r 2" + }, + { + "appid": 1913780, + "normalized_name": "pi.exe" + }, + { + "appid": 1913810, + "normalized_name": "beastmaster" + }, + { + "appid": 1913870, + "normalized_name": "tray racers!" + }, + { + "appid": 1913890, + "normalized_name": "beyond your fear" + }, + { + "appid": 1913900, + "normalized_name": "potatoes" + }, + { + "appid": 1913940, + "normalized_name": "underground dungeon" + }, + { + "appid": 1913960, + "normalized_name": "the moonlight circus" + }, + { + "appid": 1913970, + "normalized_name": "psycho" + }, + { + "appid": 1913980, + "normalized_name": "gharp" + }, + { + "appid": 1914000, + "normalized_name": "sweet car wash" + }, + { + "appid": 1914010, + "normalized_name": "sweet agents" + }, + { + "appid": 1914020, + "normalized_name": "4 seasons girls" + }, + { + "appid": 1914050, + "normalized_name": "assassin girls" + }, + { + "appid": 1914060, + "normalized_name": "super mini mart" + }, + { + "appid": 1914100, + "normalized_name": "wet cute girls" + }, + { + "appid": 1914140, + "normalized_name": "orkhon inscriptions mongolia vr" + }, + { + "appid": 1914180, + "normalized_name": "musical chairs" + }, + { + "appid": 1914190, + "normalized_name": "sharp trouble" + }, + { + "appid": 1914200, + "normalized_name": "cosmoblaster exodia" + }, + { + "appid": 1914240, + "normalized_name": "scapegoat" + }, + { + "appid": 1914270, + "normalized_name": "super bean" + }, + { + "appid": 1914330, + "normalized_name": "sprites at play" + }, + { + "appid": 1914340, + "normalized_name": "infite" + }, + { + "appid": 1914390, + "normalized_name": "déjà drift" + }, + { + "appid": 1914430, + "normalized_name": "pando engines" + }, + { + "appid": 1914460, + "normalized_name": "ancient medieval empire" + }, + { + "appid": 1914470, + "normalized_name": "the medieval sex jigsaw" + }, + { + "appid": 1914530, + "normalized_name": "the d t.e.a.m." + }, + { + "appid": 1914570, + "normalized_name": "take the throne" + }, + { + "appid": 1914580, + "normalized_name": "spirit hunters infinite horde" + }, + { + "appid": 1914600, + "normalized_name": "rail fights" + }, + { + "appid": 1914630, + "normalized_name": "draft day sports college basketball 2022" + }, + { + "appid": 1914680, + "normalized_name": "sex search" + }, + { + "appid": 1914700, + "normalized_name": "elteria hunter" + }, + { + "appid": 1914710, + "normalized_name": "mikoverse" + }, + { + "appid": 1914740, + "normalized_name": "a hero and a garden" + }, + { + "appid": 1914750, + "normalized_name": "resist" + }, + { + "appid": 1914770, + "normalized_name": "tumbleweed" + }, + { + "appid": 1914850, + "normalized_name": "bubbles & pearls" + }, + { + "appid": 1914900, + "normalized_name": "dragons on desktop" + }, + { + "appid": 1914910, + "normalized_name": "chroma circuit" + }, + { + "appid": 1914940, + "normalized_name": "枝江小镇" + }, + { + "appid": 1914950, + "normalized_name": "xpraize beta for gamemaster" + }, + { + "appid": 1914970, + "normalized_name": "たすけて!おつかれさとり様" + }, + { + "appid": 1914980, + "normalized_name": "golfing in aether" + }, + { + "appid": 1915010, + "normalized_name": "memetric classic" + }, + { + "appid": 1915040, + "normalized_name": "蓝星舰策略" + }, + { + "appid": 1915050, + "normalized_name": "end it please ..." + }, + { + "appid": 1915140, + "normalized_name": "malice in magic tower 玲鈴魔塔" + }, + { + "appid": 1915160, + "normalized_name": "night blood avenger's tide" + }, + { + "appid": 1915170, + "normalized_name": "four winds fantasy" + }, + { + "appid": 1915210, + "normalized_name": "the mensional" + }, + { + "appid": 1915220, + "normalized_name": "spectrumgames" + }, + { + "appid": 1915240, + "normalized_name": "キラキラミラ8人の遺伝子異常者と血の幽霊" + }, + { + "appid": 1915250, + "normalized_name": "constructed" + }, + { + "appid": 1915330, + "normalized_name": "the castle of time" + }, + { + "appid": 1915340, + "normalized_name": "vr nsfw" + }, + { + "appid": 1915380, + "normalized_name": "garden life a cozy simulator" + }, + { + "appid": 1915400, + "normalized_name": "card buster" + }, + { + "appid": 1915410, + "normalized_name": "arachnophobia" + }, + { + "appid": 1915430, + "normalized_name": "idylls of the lunar maria" + }, + { + "appid": 1915460, + "normalized_name": "retro three kingdoms special" + }, + { + "appid": 1915510, + "normalized_name": "降妖散记" + }, + { + "appid": 1915520, + "normalized_name": "pipkin" + }, + { + "appid": 1915550, + "normalized_name": "nemesis lockdown" + }, + { + "appid": 1915560, + "normalized_name": "spread out! hold naar' havok" + }, + { + "appid": 1915580, + "normalized_name": "jumping horses champions" + }, + { + "appid": 1915660, + "normalized_name": "vamps for the memories" + }, + { + "appid": 1915690, + "normalized_name": "burning skies" + }, + { + "appid": 1915700, + "normalized_name": "immortal love true treasure collector's" + }, + { + "appid": 1915740, + "normalized_name": "siren's call free beta" + }, + { + "appid": 1915780, + "normalized_name": "tendryll" + }, + { + "appid": 1915800, + "normalized_name": "sahara's underworld" + }, + { + "appid": 1915870, + "normalized_name": "the blue cat" + }, + { + "appid": 1915880, + "normalized_name": "master wulder" + }, + { + "appid": 1915900, + "normalized_name": "eftu" + }, + { + "appid": 1915910, + "normalized_name": "hidden build top down 3d" + }, + { + "appid": 1915940, + "normalized_name": "hidden world top down 3d" + }, + { + "appid": 1915990, + "normalized_name": "5225" + }, + { + "appid": 1916000, + "normalized_name": "divine combat" + }, + { + "appid": 1916070, + "normalized_name": "西州镇魂曲" + }, + { + "appid": 1916090, + "normalized_name": "dial in" + }, + { + "appid": 1916100, + "normalized_name": "day of the dino" + }, + { + "appid": 1916150, + "normalized_name": "snakebyte" + }, + { + "appid": 1916210, + "normalized_name": "moto mouse stunt mania" + }, + { + "appid": 1916220, + "normalized_name": "number wars" + }, + { + "appid": 1916240, + "normalized_name": "遗落迷途lost in tomorrow" + }, + { + "appid": 1916270, + "normalized_name": "deliverance" + }, + { + "appid": 1916280, + "normalized_name": "swords fantasy battlefield" + }, + { + "appid": 1916290, + "normalized_name": "one night with stalin" + }, + { + "appid": 1916310, + "normalized_name": "remnant records" + }, + { + "appid": 1916320, + "normalized_name": "bionic rebirth" + }, + { + "appid": 1916340, + "normalized_name": "digital diamond baseball v10" + }, + { + "appid": 1916350, + "normalized_name": "lord of the click 3" + }, + { + "appid": 1916360, + "normalized_name": "project impulse" + }, + { + "appid": 1916380, + "normalized_name": "idol hunter hentai" + }, + { + "appid": 1916410, + "normalized_name": "drive beyond horizons prologue" + }, + { + "appid": 1916420, + "normalized_name": "secrets of the temple" + }, + { + "appid": 1916450, + "normalized_name": "summer with you" + }, + { + "appid": 1916470, + "normalized_name": "ethos divinity's curse" + }, + { + "appid": 1916480, + "normalized_name": "dungeon of delights" + }, + { + "appid": 1916510, + "normalized_name": "pop top adventure" + }, + { + "appid": 1916520, + "normalized_name": "诺娅计划" + }, + { + "appid": 1916540, + "normalized_name": "valley dash" + }, + { + "appid": 1916560, + "normalized_name": "feisty fauna" + }, + { + "appid": 1916580, + "normalized_name": "red yet capers math vs mayhem" + }, + { + "appid": 1916590, + "normalized_name": "hell's bell" + }, + { + "appid": 1916610, + "normalized_name": "frame portals on steroids" + }, + { + "appid": 1916630, + "normalized_name": "the_abyss_has_walls" + }, + { + "appid": 1916660, + "normalized_name": "wtc recruitment day" + }, + { + "appid": 1916670, + "normalized_name": "bonk battle royale" + }, + { + "appid": 1916690, + "normalized_name": "mindfulness simulator asmr meditation game" + }, + { + "appid": 1916710, + "normalized_name": "synthwave racers" + }, + { + "appid": 1916740, + "normalized_name": "hohenheim skywards" + }, + { + "appid": 1916790, + "normalized_name": "oust" + }, + { + "appid": 1916800, + "normalized_name": "more ore the incremental idle rpg" + }, + { + "appid": 1916810, + "normalized_name": "eloquent countenance" + }, + { + "appid": 1916830, + "normalized_name": "aftermath" + }, + { + "appid": 1916850, + "normalized_name": "doomed to hell" + }, + { + "appid": 1916860, + "normalized_name": "『絵話 kaiwa 』" + }, + { + "appid": 1916880, + "normalized_name": "neon racer" + }, + { + "appid": 1916890, + "normalized_name": "slider" + }, + { + "appid": 1916900, + "normalized_name": "天狐札记" + }, + { + "appid": 1916920, + "normalized_name": "the doll beneath" + }, + { + "appid": 1916930, + "normalized_name": "astral slider" + }, + { + "appid": 1916940, + "normalized_name": "harriet from slave to hero" + }, + { + "appid": 1916950, + "normalized_name": "goodnight" + }, + { + "appid": 1916960, + "normalized_name": "yokai hunter shintaro" + }, + { + "appid": 1916970, + "normalized_name": "tree simulator 2023" + }, + { + "appid": 1917090, + "normalized_name": "lights off!" + }, + { + "appid": 1917160, + "normalized_name": "data center simulator game" + }, + { + "appid": 1917170, + "normalized_name": "ink'n'think" + }, + { + "appid": 1917230, + "normalized_name": "the outer zone survival tactics" + }, + { + "appid": 1917260, + "normalized_name": "catharsis" + }, + { + "appid": 1917270, + "normalized_name": "venus nightclub" + }, + { + "appid": 1917310, + "normalized_name": "who is the hero of this game" + }, + { + "appid": 1917320, + "normalized_name": "a slit of joy" + }, + { + "appid": 1917350, + "normalized_name": "mysterious island a hidden object adventure" + }, + { + "appid": 1917370, + "normalized_name": "hyperportals" + }, + { + "appid": 1917390, + "normalized_name": "roxy raccoon's bowling bash" + }, + { + "appid": 1917450, + "normalized_name": "fault stp lightkravte" + }, + { + "appid": 1917460, + "normalized_name": "underground lords" + }, + { + "appid": 1917550, + "normalized_name": "the renovator origins" + }, + { + "appid": 1917600, + "normalized_name": "牝喰いダンジョン meguidungeon" + }, + { + "appid": 1917610, + "normalized_name": "twin mind ghost hunter collector's" + }, + { + "appid": 1917630, + "normalized_name": "索罗灵魂之戒" + }, + { + "appid": 1917660, + "normalized_name": "a factory job" + }, + { + "appid": 1917710, + "normalized_name": "riki's risky ride" + }, + { + "appid": 1917730, + "normalized_name": "bum simulator vr" + }, + { + "appid": 1917740, + "normalized_name": "the shot" + }, + { + "appid": 1917760, + "normalized_name": "through the kill screen" + }, + { + "appid": 1917780, + "normalized_name": "humans vs tigers" + }, + { + "appid": 1917810, + "normalized_name": "rooms of realities" + }, + { + "appid": 1917820, + "normalized_name": "strongloween the escape" + }, + { + "appid": 1917830, + "normalized_name": "the safe place" + }, + { + "appid": 1917840, + "normalized_name": "funny village" + }, + { + "appid": 1917850, + "normalized_name": "haunted house renovator" + }, + { + "appid": 1917860, + "normalized_name": "visionarium 2 the descent" + }, + { + "appid": 1917870, + "normalized_name": "stay alive" + }, + { + "appid": 1917920, + "normalized_name": "polda 7" + }, + { + "appid": 1917950, + "normalized_name": "spiriat" + }, + { + "appid": 1917960, + "normalized_name": "hotel builder" + }, + { + "appid": 1917970, + "normalized_name": "laruaville 12" + }, + { + "appid": 1917990, + "normalized_name": "being and becoming" + }, + { + "appid": 1918030, + "normalized_name": "mutant alley" + }, + { + "appid": 1918040, + "normalized_name": "army of ruin" + }, + { + "appid": 1918070, + "normalized_name": "the apothecary" + }, + { + "appid": 1918080, + "normalized_name": "path of destruction" + }, + { + "appid": 1918090, + "normalized_name": "the ancient cat temple" + }, + { + "appid": 1918100, + "normalized_name": "mythic defender" + }, + { + "appid": 1918110, + "normalized_name": "simultaneous control" + }, + { + "appid": 1918120, + "normalized_name": "zakon" + }, + { + "appid": 1918130, + "normalized_name": "grim quest old school rpg" + }, + { + "appid": 1918150, + "normalized_name": "neural nest" + }, + { + "appid": 1918170, + "normalized_name": "城市弧光" + }, + { + "appid": 1918240, + "normalized_name": "steel defier" + }, + { + "appid": 1918250, + "normalized_name": "iku iku succubus" + }, + { + "appid": 1918260, + "normalized_name": "the world is binary why love is the answer" + }, + { + "appid": 1918270, + "normalized_name": "gastro force" + }, + { + "appid": 1918300, + "normalized_name": "fishing vacation" + }, + { + "appid": 1918320, + "normalized_name": "tacticats" + }, + { + "appid": 1918340, + "normalized_name": "voxquest the firebird" + }, + { + "appid": 1918400, + "normalized_name": "second world" + }, + { + "appid": 1918410, + "normalized_name": "ball pain" + }, + { + "appid": 1918420, + "normalized_name": "order from caos 2" + }, + { + "appid": 1918440, + "normalized_name": "championship wrestling promoter" + }, + { + "appid": 1918450, + "normalized_name": "hunterx" + }, + { + "appid": 1918460, + "normalized_name": "nagori rokudo striving to be her ideal self the inexperienced love life of a hard to get psychology lecturer" + }, + { + "appid": 1918470, + "normalized_name": "vacation paradise california collector's" + }, + { + "appid": 1918480, + "normalized_name": "dragon sleuth brittany" + }, + { + "appid": 1918490, + "normalized_name": "super scary halloween spooky times spit's quest" + }, + { + "appid": 1918520, + "normalized_name": "ninja village" + }, + { + "appid": 1918530, + "normalized_name": "pocket stables" + }, + { + "appid": 1918540, + "normalized_name": "the ramen sensei" + }, + { + "appid": 1918550, + "normalized_name": "london ripper" + }, + { + "appid": 1918560, + "normalized_name": "cloud heart" + }, + { + "appid": 1918590, + "normalized_name": "planet a" + }, + { + "appid": 1918630, + "normalized_name": "acclimate" + }, + { + "appid": 1918640, + "normalized_name": "meiro master" + }, + { + "appid": 1918650, + "normalized_name": "supermarkethunter" + }, + { + "appid": 1918670, + "normalized_name": "dulce et decorum" + }, + { + "appid": 1918680, + "normalized_name": "仙剑客栈 2" + }, + { + "appid": 1918690, + "normalized_name": "dimensional shift awakening" + }, + { + "appid": 1918700, + "normalized_name": "artistic girl 1" + }, + { + "appid": 1918710, + "normalized_name": "侦查故事:风声" + }, + { + "appid": 1918730, + "normalized_name": "falling to heaven" + }, + { + "appid": 1918790, + "normalized_name": "the dark realm" + }, + { + "appid": 1918800, + "normalized_name": "squirrels doomed city" + }, + { + "appid": 1918810, + "normalized_name": "phil" + }, + { + "appid": 1918830, + "normalized_name": "the time i have left" + }, + { + "appid": 1918850, + "normalized_name": "sleepytime village" + }, + { + "appid": 1918880, + "normalized_name": "tales of autumn" + }, + { + "appid": 1918920, + "normalized_name": "chinese train trip" + }, + { + "appid": 1918930, + "normalized_name": "car war legends" + }, + { + "appid": 1918970, + "normalized_name": "eresys" + }, + { + "appid": 1919030, + "normalized_name": "trench warfare" + }, + { + "appid": 1919040, + "normalized_name": "winter" + }, + { + "appid": 1919060, + "normalized_name": "kly kly" + }, + { + "appid": 1919070, + "normalized_name": "iron age" + }, + { + "appid": 1919090, + "normalized_name": "embers of the zombie battlemage halloween" + }, + { + "appid": 1919100, + "normalized_name": "lulu's temple" + }, + { + "appid": 1919110, + "normalized_name": "jamal et mehdi la quête du iencli" + }, + { + "appid": 1919140, + "normalized_name": "antioch scarlet bay" + }, + { + "appid": 1919150, + "normalized_name": "smudge coin run" + }, + { + "appid": 1919220, + "normalized_name": "automoji" + }, + { + "appid": 1919240, + "normalized_name": "spelldash" + }, + { + "appid": 1919270, + "normalized_name": "part of you" + }, + { + "appid": 1919310, + "normalized_name": "jasper vice legends untold" + }, + { + "appid": 1919320, + "normalized_name": "chrysalis inc." + }, + { + "appid": 1919350, + "normalized_name": "coral cove" + }, + { + "appid": 1919360, + "normalized_name": "hearts will be broken" + }, + { + "appid": 1919400, + "normalized_name": "soul janitor" + }, + { + "appid": 1919410, + "normalized_name": "hero dungeon" + }, + { + "appid": 1919440, + "normalized_name": "spe x" + }, + { + "appid": 1919460, + "normalized_name": "seraph's last stand" + }, + { + "appid": 1919470, + "normalized_name": "atari 50 the anniversary celebration" + }, + { + "appid": 1919480, + "normalized_name": "skate shop simulator" + }, + { + "appid": 1919500, + "normalized_name": "pickle clicker" + }, + { + "appid": 1919510, + "normalized_name": "alone in the grey" + }, + { + "appid": 1919530, + "normalized_name": "prototype td 2" + }, + { + "appid": 1919540, + "normalized_name": "the lost condor walking simulator" + }, + { + "appid": 1919550, + "normalized_name": "hidden cats in paris" + }, + { + "appid": 1919570, + "normalized_name": "charset crossfire" + }, + { + "appid": 1919600, + "normalized_name": "paper perjury" + }, + { + "appid": 1919610, + "normalized_name": "aracnidium" + }, + { + "appid": 1919700, + "normalized_name": "no lights 2" + }, + { + "appid": 1919710, + "normalized_name": "why i was born" + }, + { + "appid": 1919720, + "normalized_name": "crimson dawn" + }, + { + "appid": 1919740, + "normalized_name": "奉天白事铺" + }, + { + "appid": 1919750, + "normalized_name": "ponchoman" + }, + { + "appid": 1919770, + "normalized_name": "wobbl the lost wands" + }, + { + "appid": 1919800, + "normalized_name": "unlucky sniper" + }, + { + "appid": 1919850, + "normalized_name": "edgar's poetical nightmare" + }, + { + "appid": 1919900, + "normalized_name": "dreamed away" + }, + { + "appid": 1919910, + "normalized_name": "aoihana" + }, + { + "appid": 1919920, + "normalized_name": "眼球大師 eyeball master" + }, + { + "appid": 1919960, + "normalized_name": "vulnerable" + }, + { + "appid": 1920010, + "normalized_name": "mad murder's mystery pie shop" + }, + { + "appid": 1920040, + "normalized_name": "one by one" + }, + { + "appid": 1920080, + "normalized_name": "trident naval doctrine" + }, + { + "appid": 1920100, + "normalized_name": "backfirewall_" + }, + { + "appid": 1920120, + "normalized_name": "맛있는 사랑" + }, + { + "appid": 1920160, + "normalized_name": "super rich" + }, + { + "appid": 1920190, + "normalized_name": "bad blood 1926" + }, + { + "appid": 1920210, + "normalized_name": "predator and wreck" + }, + { + "appid": 1920230, + "normalized_name": "venice master" + }, + { + "appid": 1920270, + "normalized_name": "slackline vr" + }, + { + "appid": 1920290, + "normalized_name": "barkour" + }, + { + "appid": 1920320, + "normalized_name": "parasite" + }, + { + "appid": 1920330, + "normalized_name": "bullet priest" + }, + { + "appid": 1920390, + "normalized_name": "yummy girl 2" + }, + { + "appid": 1920400, + "normalized_name": "bunny girl story" + }, + { + "appid": 1920410, + "normalized_name": "the sargosian abyss" + }, + { + "appid": 1920420, + "normalized_name": "sonohigurashi vs. touhou universe" + }, + { + "appid": 1920430, + "normalized_name": "fumes" + }, + { + "appid": 1920440, + "normalized_name": "big tower tiny square 2" + }, + { + "appid": 1920450, + "normalized_name": "colors! maze 2" + }, + { + "appid": 1920460, + "normalized_name": "reset memory" + }, + { + "appid": 1920480, + "normalized_name": "river city girls 2" + }, + { + "appid": 1920490, + "normalized_name": "the outer worlds spacer's choice" + }, + { + "appid": 1920500, + "normalized_name": "stug" + }, + { + "appid": 1920510, + "normalized_name": "the elevator game" + }, + { + "appid": 1920520, + "normalized_name": "risky woods" + }, + { + "appid": 1920540, + "normalized_name": "dreamin' her 僕は、彼女の夢を見る。" + }, + { + "appid": 1920610, + "normalized_name": "a good truck driver" + }, + { + "appid": 1920650, + "normalized_name": "contrablade stadium rush" + }, + { + "appid": 1920660, + "normalized_name": "依依 yiyi" + }, + { + "appid": 1920700, + "normalized_name": "candle prick" + }, + { + "appid": 1920710, + "normalized_name": "codemakers!" + }, + { + "appid": 1920770, + "normalized_name": "飛天歷險國際中文版(dream of mirror online)" + }, + { + "appid": 1920780, + "normalized_name": "stray gods the roleplaying musical" + }, + { + "appid": 1920790, + "normalized_name": "生人症候群" + }, + { + "appid": 1920800, + "normalized_name": "project angels visual novel" + }, + { + "appid": 1920810, + "normalized_name": "calmie dots" + }, + { + "appid": 1920820, + "normalized_name": "伏妖绘卷" + }, + { + "appid": 1920830, + "normalized_name": "fractal city" + }, + { + "appid": 1920840, + "normalized_name": "heavy hearts" + }, + { + "appid": 1920850, + "normalized_name": "air museum vr" + }, + { + "appid": 1920870, + "normalized_name": "protozoa" + }, + { + "appid": 1920930, + "normalized_name": "2080 apocalypse" + }, + { + "appid": 1920940, + "normalized_name": "minebot expedition" + }, + { + "appid": 1920950, + "normalized_name": "space voyager" + }, + { + "appid": 1920960, + "normalized_name": "vpet" + }, + { + "appid": 1921040, + "normalized_name": "wizard of hunting life" + }, + { + "appid": 1921080, + "normalized_name": "galaxy splitter" + }, + { + "appid": 1921090, + "normalized_name": "tokyo cop" + }, + { + "appid": 1921120, + "normalized_name": "emoji merge puzzle matching" + }, + { + "appid": 1921130, + "normalized_name": "disinfection" + }, + { + "appid": 1921140, + "normalized_name": "into the underdusk" + }, + { + "appid": 1921160, + "normalized_name": "tiny islands" + }, + { + "appid": 1921170, + "normalized_name": "raid off" + }, + { + "appid": 1921180, + "normalized_name": "escape game fort boyard 2022" + }, + { + "appid": 1921200, + "normalized_name": "a list of people who went missing in the scheleirland national forest" + }, + { + "appid": 1921210, + "normalized_name": "hidden objects tranquil valley" + }, + { + "appid": 1921240, + "normalized_name": "duckhunt missouri kidz" + }, + { + "appid": 1921250, + "normalized_name": "splinters of regret" + }, + { + "appid": 1921270, + "normalized_name": "alcohol empire" + }, + { + "appid": 1921330, + "normalized_name": "echo wars road rage" + }, + { + "appid": 1921340, + "normalized_name": "fallen legion revenants" + }, + { + "appid": 1921370, + "normalized_name": "delivery driver the simulation" + }, + { + "appid": 1921390, + "normalized_name": "build lands" + }, + { + "appid": 1921450, + "normalized_name": "quoin" + }, + { + "appid": 1921460, + "normalized_name": "zap dem rats" + }, + { + "appid": 1921470, + "normalized_name": "tagline" + }, + { + "appid": 1921480, + "normalized_name": "#blud" + }, + { + "appid": 1921490, + "normalized_name": "wild blue" + }, + { + "appid": 1921500, + "normalized_name": "pet vet 3d animal hospital down under" + }, + { + "appid": 1921510, + "normalized_name": "pet vet 3d wild animal hospital" + }, + { + "appid": 1921520, + "normalized_name": "apparatus" + }, + { + "appid": 1921530, + "normalized_name": "zombie death quota" + }, + { + "appid": 1921550, + "normalized_name": "chico and the magic orchards dx" + }, + { + "appid": 1921560, + "normalized_name": "flowers le volume sur hiver" + }, + { + "appid": 1921600, + "normalized_name": "a drop of hope" + }, + { + "appid": 1921610, + "normalized_name": "roaming the stars" + }, + { + "appid": 1921650, + "normalized_name": "above the law" + }, + { + "appid": 1921660, + "normalized_name": "six aspects" + }, + { + "appid": 1921680, + "normalized_name": "vr airhockey / vr エアホッケー" + }, + { + "appid": 1921740, + "normalized_name": "クレヨンしんちゃん 嵐を呼ぶ 炎のカスカベランナー!!" + }, + { + "appid": 1921760, + "normalized_name": "pocket academy" + }, + { + "appid": 1921770, + "normalized_name": "the manga works" + }, + { + "appid": 1921780, + "normalized_name": "the sushi spinnery" + }, + { + "appid": 1921840, + "normalized_name": "terra flame" + }, + { + "appid": 1921850, + "normalized_name": "lenin simulator" + }, + { + "appid": 1921870, + "normalized_name": "neoterra" + }, + { + "appid": 1921880, + "normalized_name": "max traffic" + }, + { + "appid": 1921900, + "normalized_name": "the testing chamber" + }, + { + "appid": 1921950, + "normalized_name": "conflict 3048" + }, + { + "appid": 1921980, + "normalized_name": "between horizons – a sci fi detective adventure" + }, + { + "appid": 1921990, + "normalized_name": "the timekeeper" + }, + { + "appid": 1922000, + "normalized_name": "towerland" + }, + { + "appid": 1922010, + "normalized_name": "breachers" + }, + { + "appid": 1922020, + "normalized_name": "land above sea below" + }, + { + "appid": 1922030, + "normalized_name": "xxx talent" + }, + { + "appid": 1922060, + "normalized_name": "brvr backrooms virtual reality" + }, + { + "appid": 1922070, + "normalized_name": "the dream team" + }, + { + "appid": 1922090, + "normalized_name": "meridiana a demon's madness" + }, + { + "appid": 1922100, + "normalized_name": "rc death race multiplayer" + }, + { + "appid": 1922110, + "normalized_name": "why me" + }, + { + "appid": 1922120, + "normalized_name": "mystery solitaire. powerful alchemist 2" + }, + { + "appid": 1922130, + "normalized_name": "mystery solitaire. grimm's tales 5" + }, + { + "appid": 1922140, + "normalized_name": "1001 jigsaw. cute cats" + }, + { + "appid": 1922150, + "normalized_name": "1001 jigsaw. wild animals" + }, + { + "appid": 1922180, + "normalized_name": "package inspector" + }, + { + "appid": 1922190, + "normalized_name": "party quest" + }, + { + "appid": 1922200, + "normalized_name": "spoils of war" + }, + { + "appid": 1922210, + "normalized_name": "lucky villager" + }, + { + "appid": 1922220, + "normalized_name": "i am ok" + }, + { + "appid": 1922240, + "normalized_name": "crane game claw machine simulator" + }, + { + "appid": 1922260, + "normalized_name": "leviathan" + }, + { + "appid": 1922270, + "normalized_name": "ghost bros" + }, + { + "appid": 1922320, + "normalized_name": "stay away from zombies" + }, + { + "appid": 1922340, + "normalized_name": "crash test idiot" + }, + { + "appid": 1922360, + "normalized_name": "scaleplanet" + }, + { + "appid": 1922480, + "normalized_name": "avanzar" + }, + { + "appid": 1922500, + "normalized_name": "world of stickman classic rts" + }, + { + "appid": 1922530, + "normalized_name": "frontier fortress tower defense" + }, + { + "appid": 1922540, + "normalized_name": "the reflection" + }, + { + "appid": 1922550, + "normalized_name": "psychosis" + }, + { + "appid": 1922560, + "normalized_name": "plants vs. zombies garden warfare 2 deluxe" + }, + { + "appid": 1922580, + "normalized_name": "camae" + }, + { + "appid": 1922610, + "normalized_name": "llanthmar" + }, + { + "appid": 1922620, + "normalized_name": "saber ship" + }, + { + "appid": 1922650, + "normalized_name": "cosmic ball tournament" + }, + { + "appid": 1922670, + "normalized_name": "banner of blood" + }, + { + "appid": 1922730, + "normalized_name": "the original wizard" + }, + { + "appid": 1922740, + "normalized_name": "crisis in the kremlin the cold war" + }, + { + "appid": 1922760, + "normalized_name": "unsleepable" + }, + { + "appid": 1922770, + "normalized_name": "advanced chess/traditional" + }, + { + "appid": 1922800, + "normalized_name": "whiskered away" + }, + { + "appid": 1922830, + "normalized_name": "erstwhile" + }, + { + "appid": 1922940, + "normalized_name": "respawn" + }, + { + "appid": 1922960, + "normalized_name": "labyrinth of zangetsu" + }, + { + "appid": 1922980, + "normalized_name": "xheres" + }, + { + "appid": 1922990, + "normalized_name": "far star" + }, + { + "appid": 1923060, + "normalized_name": "the sinking structure clione and lost child log4" + }, + { + "appid": 1923070, + "normalized_name": "deadland 4000" + }, + { + "appid": 1923080, + "normalized_name": "cloak & dagger shadow operations" + }, + { + "appid": 1923120, + "normalized_name": "tempus island" + }, + { + "appid": 1923170, + "normalized_name": "pizza synthwave" + }, + { + "appid": 1923230, + "normalized_name": "virium" + }, + { + "appid": 1923290, + "normalized_name": "dreampusherメダルゲーム" + }, + { + "appid": 1923360, + "normalized_name": "cards of the dreaming dragons" + }, + { + "appid": 1923380, + "normalized_name": "robot x" + }, + { + "appid": 1923420, + "normalized_name": "fruit basket tv" + }, + { + "appid": 1923450, + "normalized_name": "building destruction" + }, + { + "appid": 1923470, + "normalized_name": "the ambassador's coterie" + }, + { + "appid": 1923480, + "normalized_name": "battle of the four towers" + }, + { + "appid": 1923500, + "normalized_name": "twilight's final judgement prologue" + }, + { + "appid": 1923530, + "normalized_name": "scarecrows of illyria" + }, + { + "appid": 1923630, + "normalized_name": "hextd" + }, + { + "appid": 1923650, + "normalized_name": "psycho crab" + }, + { + "appid": 1923670, + "normalized_name": "venture towns" + }, + { + "appid": 1923680, + "normalized_name": "mega mall story" + }, + { + "appid": 1923690, + "normalized_name": "pocket league story" + }, + { + "appid": 1923720, + "normalized_name": "wildlife planet the incremental" + }, + { + "appid": 1923730, + "normalized_name": "little ninja" + }, + { + "appid": 1923770, + "normalized_name": "dimensional drift" + }, + { + "appid": 1923780, + "normalized_name": "space out" + }, + { + "appid": 1923790, + "normalized_name": "linelith" + }, + { + "appid": 1923800, + "normalized_name": "anetha" + }, + { + "appid": 1923840, + "normalized_name": "descending horror" + }, + { + "appid": 1923850, + "normalized_name": "power (of) metal" + }, + { + "appid": 1923880, + "normalized_name": "sea of minds" + }, + { + "appid": 1923900, + "normalized_name": "magnetic structures" + }, + { + "appid": 1923920, + "normalized_name": "base craft desolate survival" + }, + { + "appid": 1923960, + "normalized_name": "unmurk" + }, + { + "appid": 1923990, + "normalized_name": "for your information" + }, + { + "appid": 1924010, + "normalized_name": "shapebreaker tower defense deckbuilder" + }, + { + "appid": 1924020, + "normalized_name": "quijote quest for glory" + }, + { + "appid": 1924050, + "normalized_name": "lost in the space" + }, + { + "appid": 1924070, + "normalized_name": "arcadia fallen ii" + }, + { + "appid": 1924090, + "normalized_name": "vampiric crown" + }, + { + "appid": 1924100, + "normalized_name": "word crystal" + }, + { + "appid": 1924140, + "normalized_name": "isekai frontline" + }, + { + "appid": 1924150, + "normalized_name": "cyberhunk" + }, + { + "appid": 1924170, + "normalized_name": "tt isle of man ride on the edge 3" + }, + { + "appid": 1924180, + "normalized_name": "phantom spark" + }, + { + "appid": 1924200, + "normalized_name": "crane logistics simulator" + }, + { + "appid": 1924270, + "normalized_name": "shooting covid" + }, + { + "appid": 1924310, + "normalized_name": "pixel pirate" + }, + { + "appid": 1924340, + "normalized_name": "king of the savage realms" + }, + { + "appid": 1924350, + "normalized_name": "bargue" + }, + { + "appid": 1924360, + "normalized_name": "lil' guardsman" + }, + { + "appid": 1924370, + "normalized_name": "slurpy derpy" + }, + { + "appid": 1924380, + "normalized_name": "dashing orange" + }, + { + "appid": 1924390, + "normalized_name": "binary run" + }, + { + "appid": 1924400, + "normalized_name": "hand of doom" + }, + { + "appid": 1924430, + "normalized_name": "cookie cutter overkill" + }, + { + "appid": 1924440, + "normalized_name": "directly drink milk from cow【直に牛乳を飲め】" + }, + { + "appid": 1924460, + "normalized_name": "light the lamp hockey" + }, + { + "appid": 1924470, + "normalized_name": "cursed dungeon raider" + }, + { + "appid": 1924480, + "normalized_name": "college kings 2 episode 1" + }, + { + "appid": 1924490, + "normalized_name": "gigantic rampage" + }, + { + "appid": 1924510, + "normalized_name": "parabellum beta" + }, + { + "appid": 1924520, + "normalized_name": "mr. honeybunch" + }, + { + "appid": 1924550, + "normalized_name": "my student loves me!" + }, + { + "appid": 1924590, + "normalized_name": "sokobalien" + }, + { + "appid": 1924650, + "normalized_name": "buscadores (seekers)" + }, + { + "appid": 1924670, + "normalized_name": "sphere shootout" + }, + { + "appid": 1924680, + "normalized_name": "milf conditioning" + }, + { + "appid": 1924700, + "normalized_name": "sight and sound town" + }, + { + "appid": 1924710, + "normalized_name": "night janitor" + }, + { + "appid": 1924730, + "normalized_name": "m 1グランプリへの道~俺たちの出囃子はもう鳴っている~" + }, + { + "appid": 1924740, + "normalized_name": "捍卫safeguard" + }, + { + "appid": 1924780, + "normalized_name": "arzette the jewel of faramore" + }, + { + "appid": 1924810, + "normalized_name": "kamiwaza way of the thief" + }, + { + "appid": 1924820, + "normalized_name": "studios fighters climax champions" + }, + { + "appid": 1924840, + "normalized_name": "comixxx temptations" + }, + { + "appid": 1924850, + "normalized_name": "tales of sirius" + }, + { + "appid": 1924900, + "normalized_name": "happy! the hippo" + }, + { + "appid": 1924910, + "normalized_name": "dr. chatelet faith 神医" + }, + { + "appid": 1924940, + "normalized_name": "hexrogue" + }, + { + "appid": 1924990, + "normalized_name": "hobgob ~please save me~" + }, + { + "appid": 1925000, + "normalized_name": "intertwined fate with a cat demon" + }, + { + "appid": 1925010, + "normalized_name": "rich lady's slave role play" + }, + { + "appid": 1925030, + "normalized_name": "kami sama's personal servant" + }, + { + "appid": 1925040, + "normalized_name": "the world of gangs" + }, + { + "appid": 1925050, + "normalized_name": "sub for you" + }, + { + "appid": 1925060, + "normalized_name": "game of seduction" + }, + { + "appid": 1925090, + "normalized_name": "subwaysim hamburg" + }, + { + "appid": 1925100, + "normalized_name": "illumizzle finding the lost light" + }, + { + "appid": 1925210, + "normalized_name": "estella's nightmare sealed space and a succubus's curse" + }, + { + "appid": 1925230, + "normalized_name": "sex adventures mile high club" + }, + { + "appid": 1925250, + "normalized_name": "不朽人生 孔子传 immortal life of confucius" + }, + { + "appid": 1925270, + "normalized_name": "funwar" + }, + { + "appid": 1925310, + "normalized_name": "locked up" + }, + { + "appid": 1925320, + "normalized_name": "escape memoirs mansion heist" + }, + { + "appid": 1925330, + "normalized_name": "cyverpunk" + }, + { + "appid": 1925340, + "normalized_name": "menace labs" + }, + { + "appid": 1925450, + "normalized_name": "the one chapter 1" + }, + { + "appid": 1925500, + "normalized_name": "desaturation point" + }, + { + "appid": 1925530, + "normalized_name": "medusa frontier" + }, + { + "appid": 1925540, + "normalized_name": "eye for eye" + }, + { + "appid": 1925550, + "normalized_name": "flight 737 maximum" + }, + { + "appid": 1925560, + "normalized_name": "tricking 0" + }, + { + "appid": 1925600, + "normalized_name": "puzzle nature" + }, + { + "appid": 1925620, + "normalized_name": "ancient wars medieval crusades" + }, + { + "appid": 1925650, + "normalized_name": "stars reach" + }, + { + "appid": 1925660, + "normalized_name": "all songs are from the king" + }, + { + "appid": 1925700, + "normalized_name": "galpa the no limbs guy" + }, + { + "appid": 1925710, + "normalized_name": "mirror spirits" + }, + { + "appid": 1925730, + "normalized_name": "block breaker" + }, + { + "appid": 1925740, + "normalized_name": "sinderfury" + }, + { + "appid": 1925760, + "normalized_name": "where are my mittens" + }, + { + "appid": 1925770, + "normalized_name": "voyna" + }, + { + "appid": 1925780, + "normalized_name": "wandering beasts" + }, + { + "appid": 1925820, + "normalized_name": "civitas rise" + }, + { + "appid": 1925830, + "normalized_name": "轮回之理 mobius theory" + }, + { + "appid": 1925850, + "normalized_name": "just upstream" + }, + { + "appid": 1925860, + "normalized_name": "seonbi scholar of joseon" + }, + { + "appid": 1925900, + "normalized_name": "server owner tycoon" + }, + { + "appid": 1925910, + "normalized_name": "raven" + }, + { + "appid": 1925930, + "normalized_name": "kongeer" + }, + { + "appid": 1925970, + "normalized_name": "simulacra 3" + }, + { + "appid": 1926060, + "normalized_name": "studio apart(ment)" + }, + { + "appid": 1926070, + "normalized_name": "the forgotten demons" + }, + { + "appid": 1926090, + "normalized_name": "coreborn" + }, + { + "appid": 1926110, + "normalized_name": "bibi & tina new adventures with horses" + }, + { + "appid": 1926120, + "normalized_name": "vampire the masquerade heartless lullaby" + }, + { + "appid": 1926160, + "normalized_name": "lab" + }, + { + "appid": 1926170, + "normalized_name": "forgotten hill tales" + }, + { + "appid": 1926180, + "normalized_name": "lilium" + }, + { + "appid": 1926190, + "normalized_name": "clouded vr" + }, + { + "appid": 1926220, + "normalized_name": "ludo xxl" + }, + { + "appid": 1926240, + "normalized_name": "repulsor" + }, + { + "appid": 1926260, + "normalized_name": "tuwas gegen muda" + }, + { + "appid": 1926270, + "normalized_name": "bloodhound" + }, + { + "appid": 1926280, + "normalized_name": "not spooky but good enough for me" + }, + { + "appid": 1926330, + "normalized_name": "ladder larry" + }, + { + "appid": 1926340, + "normalized_name": "shell girls in puzzle skulls" + }, + { + "appid": 1926360, + "normalized_name": "space molmae" + }, + { + "appid": 1926370, + "normalized_name": "好耶!是战斗少女" + }, + { + "appid": 1926390, + "normalized_name": "leap of phase samantha" + }, + { + "appid": 1926420, + "normalized_name": "jumping frog a time traveller" + }, + { + "appid": 1926440, + "normalized_name": "twin edge" + }, + { + "appid": 1926470, + "normalized_name": "hanna must run" + }, + { + "appid": 1926490, + "normalized_name": "john christian 2" + }, + { + "appid": 1926500, + "normalized_name": "spread transmission" + }, + { + "appid": 1926510, + "normalized_name": "infinitype" + }, + { + "appid": 1926520, + "normalized_name": "ambulance life a paramedic simulator" + }, + { + "appid": 1926550, + "normalized_name": "orbit or beat extended" + }, + { + "appid": 1926560, + "normalized_name": "freshman magic spellbooks and tangled sheets" + }, + { + "appid": 1926590, + "normalized_name": "nancy drew mystery of the seven keys" + }, + { + "appid": 1926610, + "normalized_name": "nature" + }, + { + "appid": 1926620, + "normalized_name": "the backrooms lost tape" + }, + { + "appid": 1926630, + "normalized_name": "waves running simulator" + }, + { + "appid": 1926650, + "normalized_name": "garden of seif chronicles of an assassin" + }, + { + "appid": 1926660, + "normalized_name": "outlander" + }, + { + "appid": 1926670, + "normalized_name": "cyber dungeon excalibur" + }, + { + "appid": 1926680, + "normalized_name": "fuck putin" + }, + { + "appid": 1926710, + "normalized_name": "jigsaw novel double trouble" + }, + { + "appid": 1926720, + "normalized_name": "the adventures of bryan scott" + }, + { + "appid": 1926730, + "normalized_name": "en•fem•e no. 9 reborn" + }, + { + "appid": 1926780, + "normalized_name": "find the cats memory" + }, + { + "appid": 1926800, + "normalized_name": "ody mos" + }, + { + "appid": 1926810, + "normalized_name": "the detroit after" + }, + { + "appid": 1926820, + "normalized_name": "burner" + }, + { + "appid": 1926830, + "normalized_name": "plunder struck" + }, + { + "appid": 1926870, + "normalized_name": "gold wiper" + }, + { + "appid": 1926880, + "normalized_name": "crabs chef's story" + }, + { + "appid": 1926890, + "normalized_name": "misspedaling simulator" + }, + { + "appid": 1926920, + "normalized_name": "the sinking structure clione and lost child log5" + }, + { + "appid": 1926940, + "normalized_name": "失落的舰队:1658" + }, + { + "appid": 1926980, + "normalized_name": "king of meat" + }, + { + "appid": 1927020, + "normalized_name": "the breadmaker" + }, + { + "appid": 1927030, + "normalized_name": "ufobia" + }, + { + "appid": 1927040, + "normalized_name": "survirus" + }, + { + "appid": 1927050, + "normalized_name": "glassbox" + }, + { + "appid": 1927080, + "normalized_name": "寂静破碎" + }, + { + "appid": 1927090, + "normalized_name": "oppai render" + }, + { + "appid": 1927100, + "normalized_name": "三国仁义传 the righteousness sanguo" + }, + { + "appid": 1927130, + "normalized_name": "herezh generations of heroes" + }, + { + "appid": 1927140, + "normalized_name": "start;again" + }, + { + "appid": 1927150, + "normalized_name": "townframe" + }, + { + "appid": 1927170, + "normalized_name": "dirt bike mini racer" + }, + { + "appid": 1927200, + "normalized_name": "near the fear" + }, + { + "appid": 1927220, + "normalized_name": "underliner" + }, + { + "appid": 1927250, + "normalized_name": "happy mining" + }, + { + "appid": 1927270, + "normalized_name": "administrators" + }, + { + "appid": 1927300, + "normalized_name": "yin yang space" + }, + { + "appid": 1927360, + "normalized_name": "mira and the legend of the djinns" + }, + { + "appid": 1927370, + "normalized_name": "down n' up" + }, + { + "appid": 1927380, + "normalized_name": "temple of rubbo" + }, + { + "appid": 1927400, + "normalized_name": "boating simulator 2022" + }, + { + "appid": 1927410, + "normalized_name": "horse and go seek" + }, + { + "appid": 1927420, + "normalized_name": "public transport simulator" + }, + { + "appid": 1927440, + "normalized_name": "vr tribes" + }, + { + "appid": 1927480, + "normalized_name": "duks" + }, + { + "appid": 1927500, + "normalized_name": "glöd" + }, + { + "appid": 1927520, + "normalized_name": "the last world" + }, + { + "appid": 1927540, + "normalized_name": "the hidden ghost" + }, + { + "appid": 1927560, + "normalized_name": "surface rush" + }, + { + "appid": 1927570, + "normalized_name": "tilefinder" + }, + { + "appid": 1927580, + "normalized_name": "poly memory birds" + }, + { + "appid": 1927600, + "normalized_name": "descentium" + }, + { + "appid": 1927610, + "normalized_name": "frost league" + }, + { + "appid": 1927620, + "normalized_name": "lovecrafting" + }, + { + "appid": 1927650, + "normalized_name": "animals collision" + }, + { + "appid": 1927690, + "normalized_name": "finity" + }, + { + "appid": 1927710, + "normalized_name": "supreme race on highway" + }, + { + "appid": 1927720, + "normalized_name": "monument valley panoramic" + }, + { + "appid": 1927740, + "normalized_name": "monument valley 2 panoramic" + }, + { + "appid": 1927780, + "normalized_name": "galaxy life" + }, + { + "appid": 1927820, + "normalized_name": "alakenisland" + }, + { + "appid": 1927830, + "normalized_name": "cube faces" + }, + { + "appid": 1927920, + "normalized_name": "real feel" + }, + { + "appid": 1927930, + "normalized_name": "pentagons go weee" + }, + { + "appid": 1927950, + "normalized_name": "harmony overture" + }, + { + "appid": 1927970, + "normalized_name": "marble pop paradise" + }, + { + "appid": 1927980, + "normalized_name": "arrival of the punnu" + }, + { + "appid": 1928010, + "normalized_name": "darold the doomer psychedelic lucid dreams" + }, + { + "appid": 1928020, + "normalized_name": "gargoyles" + }, + { + "appid": 1928030, + "normalized_name": "rightfully beary arms" + }, + { + "appid": 1928080, + "normalized_name": "prospector" + }, + { + "appid": 1928090, + "normalized_name": "cook serve forever" + }, + { + "appid": 1928100, + "normalized_name": "sex diary a slutty anniversary" + }, + { + "appid": 1928120, + "normalized_name": "swords & bones 2" + }, + { + "appid": 1928160, + "normalized_name": "taya's alphabet" + }, + { + "appid": 1928190, + "normalized_name": "between two stars" + }, + { + "appid": 1928210, + "normalized_name": "tumble toys aviation" + }, + { + "appid": 1928220, + "normalized_name": "sacrosanct" + }, + { + "appid": 1928280, + "normalized_name": "harakiri! geisha girls" + }, + { + "appid": 1928290, + "normalized_name": "hoverkitty hoververse" + }, + { + "appid": 1928300, + "normalized_name": "underground evee's hell" + }, + { + "appid": 1928310, + "normalized_name": "note2 falcon" + }, + { + "appid": 1928320, + "normalized_name": "popslinger" + }, + { + "appid": 1928330, + "normalized_name": "adventures of samuel the worst game ever made" + }, + { + "appid": 1928350, + "normalized_name": "davey" + }, + { + "appid": 1928360, + "normalized_name": "教えておねだり将棋" + }, + { + "appid": 1928370, + "normalized_name": "exodemic" + }, + { + "appid": 1928380, + "normalized_name": "worm slayer" + }, + { + "appid": 1928390, + "normalized_name": "sheep's territory" + }, + { + "appid": 1928410, + "normalized_name": "plunge the plumber" + }, + { + "appid": 1928420, + "normalized_name": "farlight 84" + }, + { + "appid": 1928430, + "normalized_name": "check it out!" + }, + { + "appid": 1928450, + "normalized_name": "dweemixed thwee pack" + }, + { + "appid": 1928460, + "normalized_name": "permanence td" + }, + { + "appid": 1928500, + "normalized_name": "secret camera" + }, + { + "appid": 1928510, + "normalized_name": "未知记录" + }, + { + "appid": 1928540, + "normalized_name": "horticular build a garden attract wildlife" + }, + { + "appid": 1928550, + "normalized_name": "dreamcharger" + }, + { + "appid": 1928590, + "normalized_name": "saimai rd" + }, + { + "appid": 1928600, + "normalized_name": "memory novel the spa" + }, + { + "appid": 1928620, + "normalized_name": "内卷三年竟穿越:皇帝模拟器" + }, + { + "appid": 1928650, + "normalized_name": "niflhel's fables the book of gypsies" + }, + { + "appid": 1928660, + "normalized_name": "snot" + }, + { + "appid": 1928670, + "normalized_name": "hajis هاجس" + }, + { + "appid": 1928680, + "normalized_name": "anti bully adventure" + }, + { + "appid": 1928690, + "normalized_name": "bionic bay" + }, + { + "appid": 1928710, + "normalized_name": "cooking festival" + }, + { + "appid": 1928740, + "normalized_name": "raccoon crafts factory" + }, + { + "appid": 1928790, + "normalized_name": "corleone online" + }, + { + "appid": 1928800, + "normalized_name": "星际神格" + }, + { + "appid": 1928810, + "normalized_name": "plunder dungeons" + }, + { + "appid": 1928840, + "normalized_name": "my dragon party 🎉" + }, + { + "appid": 1928850, + "normalized_name": "star math interstellar rogue 2" + }, + { + "appid": 1928870, + "normalized_name": "minecraft legends" + }, + { + "appid": 1928890, + "normalized_name": "curse of argion" + }, + { + "appid": 1928900, + "normalized_name": "rat royal" + }, + { + "appid": 1928930, + "normalized_name": "voice from beyond" + }, + { + "appid": 1928940, + "normalized_name": "wild adventures" + }, + { + "appid": 1928960, + "normalized_name": "wild west gringos" + }, + { + "appid": 1928980, + "normalized_name": "nightingale" + }, + { + "appid": 1929150, + "normalized_name": "the valley" + }, + { + "appid": 1929170, + "normalized_name": "project quimbly" + }, + { + "appid": 1929200, + "normalized_name": "blobby jump" + }, + { + "appid": 1929210, + "normalized_name": "block kuzushi" + }, + { + "appid": 1929230, + "normalized_name": "lost lives" + }, + { + "appid": 1929250, + "normalized_name": "armechgeddon" + }, + { + "appid": 1929270, + "normalized_name": "村雨のソードブレイカー" + }, + { + "appid": 1929290, + "normalized_name": "bits & bops" + }, + { + "appid": 1929300, + "normalized_name": "ninjas vs samurais card chronicles blades of the shinigami" + }, + { + "appid": 1929330, + "normalized_name": "pinzzo" + }, + { + "appid": 1929350, + "normalized_name": "ubel" + }, + { + "appid": 1929360, + "normalized_name": "tumbleweed destiny" + }, + { + "appid": 1929380, + "normalized_name": "caverns of evil" + }, + { + "appid": 1929410, + "normalized_name": "barnstormers determined to win" + }, + { + "appid": 1929420, + "normalized_name": "hentai mission ukraine" + }, + { + "appid": 1929450, + "normalized_name": "oh sheep! baaaa" + }, + { + "appid": 1929460, + "normalized_name": "soot" + }, + { + "appid": 1929480, + "normalized_name": "fear of mine 001 (novel)" + }, + { + "appid": 1929500, + "normalized_name": "logik" + }, + { + "appid": 1929530, + "normalized_name": "tanxl" + }, + { + "appid": 1929540, + "normalized_name": "neon ronin" + }, + { + "appid": 1929550, + "normalized_name": "stranger danger or horror quest and magic" + }, + { + "appid": 1929560, + "normalized_name": "super spy academy" + }, + { + "appid": 1929590, + "normalized_name": "crusader dungeon series" + }, + { + "appid": 1929610, + "normalized_name": "demonologist" + }, + { + "appid": 1929630, + "normalized_name": "eragon's tale" + }, + { + "appid": 1929650, + "normalized_name": "island assault" + }, + { + "appid": 1929670, + "normalized_name": "the witch's garden" + }, + { + "appid": 1929710, + "normalized_name": "house of weirdos" + }, + { + "appid": 1929720, + "normalized_name": "pixel petkeeper" + }, + { + "appid": 1929760, + "normalized_name": "a weekend in puzzleburg" + }, + { + "appid": 1929770, + "normalized_name": "xpraize beta" + }, + { + "appid": 1929790, + "normalized_name": "隐秘任务 the secret ops" + }, + { + "appid": 1929800, + "normalized_name": "beyond the oaks" + }, + { + "appid": 1929810, + "normalized_name": "the thief in the dark" + }, + { + "appid": 1929820, + "normalized_name": "arsenal shock" + }, + { + "appid": 1929830, + "normalized_name": "ハム★スピ!" + }, + { + "appid": 1929850, + "normalized_name": "散落之瓣:華 falling petals bloom" + }, + { + "appid": 1929860, + "normalized_name": "virtue's heaven" + }, + { + "appid": 1929870, + "normalized_name": "nomad survival" + }, + { + "appid": 1929900, + "normalized_name": "东方梦无境 ~ dreamland of infinity" + }, + { + "appid": 1929930, + "normalized_name": "elite school roof club" + }, + { + "appid": 1929950, + "normalized_name": "adventure mosaics. moto trip" + }, + { + "appid": 1929980, + "normalized_name": "pogan" + }, + { + "appid": 1929990, + "normalized_name": "pirate souls" + }, + { + "appid": 1930000, + "normalized_name": "smash hyper drive" + }, + { + "appid": 1930030, + "normalized_name": "trash pit" + }, + { + "appid": 1930040, + "normalized_name": "the president" + }, + { + "appid": 1930060, + "normalized_name": "new lands paradise island collector's" + }, + { + "appid": 1930070, + "normalized_name": "mahjong business style" + }, + { + "appid": 1930090, + "normalized_name": "pirate solitaire 2" + }, + { + "appid": 1930100, + "normalized_name": "solitaire match 2 cards. thanksgiving day" + }, + { + "appid": 1930110, + "normalized_name": "solitaire game christmas" + }, + { + "appid": 1930120, + "normalized_name": "solitaire beach season 2" + }, + { + "appid": 1930130, + "normalized_name": "solitaire beach season 3" + }, + { + "appid": 1930140, + "normalized_name": "freakfield 2042" + }, + { + "appid": 1930160, + "normalized_name": "1001 jigsaw american puzzles" + }, + { + "appid": 1930170, + "normalized_name": "1001 jigsaw earth chronicles 7" + }, + { + "appid": 1930180, + "normalized_name": "1001 jigsaw earth chronicles 8" + }, + { + "appid": 1930190, + "normalized_name": "what the coffin" + }, + { + "appid": 1930210, + "normalized_name": "manly mines" + }, + { + "appid": 1930230, + "normalized_name": "the hole" + }, + { + "appid": 1930300, + "normalized_name": "dinner with strangers" + }, + { + "appid": 1930310, + "normalized_name": "soul king" + }, + { + "appid": 1930340, + "normalized_name": "rage night" + }, + { + "appid": 1930350, + "normalized_name": "fallen worlds" + }, + { + "appid": 1930360, + "normalized_name": "fever dream" + }, + { + "appid": 1930380, + "normalized_name": "chico's family friendly circus" + }, + { + "appid": 1930390, + "normalized_name": "paper kingdom" + }, + { + "appid": 1930420, + "normalized_name": "狂人游戏:中国精神病人" + }, + { + "appid": 1930440, + "normalized_name": "who is the red queen?" + }, + { + "appid": 1930580, + "normalized_name": "devil's 5 days mischief game" + }, + { + "appid": 1930600, + "normalized_name": "beautiful mystic survivors" + }, + { + "appid": 1930630, + "normalized_name": "witch maker" + }, + { + "appid": 1930640, + "normalized_name": "lost2" + }, + { + "appid": 1930680, + "normalized_name": "government simulator 2" + }, + { + "appid": 1930740, + "normalized_name": "muse valkiri&dungeon" + }, + { + "appid": 1930770, + "normalized_name": "jello" + }, + { + "appid": 1930780, + "normalized_name": "fury life" + }, + { + "appid": 1930830, + "normalized_name": "get out of my space" + }, + { + "appid": 1930840, + "normalized_name": "the antarctic sphere" + }, + { + "appid": 1930920, + "normalized_name": "warplanes battles over pacific" + }, + { + "appid": 1930950, + "normalized_name": "the butcher" + }, + { + "appid": 1930960, + "normalized_name": "jewel match origins 2 bavarian palace collector's" + }, + { + "appid": 1930980, + "normalized_name": "backrooms levels of fear" + }, + { + "appid": 1931010, + "normalized_name": "spirittea" + }, + { + "appid": 1931020, + "normalized_name": "slayers x terminal aftermath vengance of the slayer" + }, + { + "appid": 1931040, + "normalized_name": "dreamsettler" + }, + { + "appid": 1931050, + "normalized_name": "cyberscope" + }, + { + "appid": 1931070, + "normalized_name": "sticky struggles" + }, + { + "appid": 1931090, + "normalized_name": "hexagonal tower" + }, + { + "appid": 1931150, + "normalized_name": "z stop" + }, + { + "appid": 1931160, + "normalized_name": "hate's offering" + }, + { + "appid": 1931180, + "normalized_name": "lost skies" + }, + { + "appid": 1931200, + "normalized_name": "bleeding abyss" + }, + { + "appid": 1931240, + "normalized_name": "mothergunship forge" + }, + { + "appid": 1931250, + "normalized_name": "to and fro" + }, + { + "appid": 1931310, + "normalized_name": "byu virtual campus | virtual reality" + }, + { + "appid": 1931360, + "normalized_name": "roman owns u" + }, + { + "appid": 1931370, + "normalized_name": "jellymen" + }, + { + "appid": 1931380, + "normalized_name": "sift heads cartels 4" + }, + { + "appid": 1931400, + "normalized_name": "blocknator" + }, + { + "appid": 1931410, + "normalized_name": "no more fathers" + }, + { + "appid": 1931440, + "normalized_name": "miko no kanata curious tales from oguni shrine cycles" + }, + { + "appid": 1931460, + "normalized_name": "crazyness weird village" + }, + { + "appid": 1931470, + "normalized_name": "car quest deluxe" + }, + { + "appid": 1931510, + "normalized_name": "attacker chan!" + }, + { + "appid": 1931600, + "normalized_name": "ネジ込みシミュレーターvol4 強気クールお姉さんの極太野人ちんぽぐちょぐちょ挿れ放題!!" + }, + { + "appid": 1931640, + "normalized_name": "emiko's pledge 2" + }, + { + "appid": 1931680, + "normalized_name": "sex adventures futanari doctor" + }, + { + "appid": 1931690, + "normalized_name": "azure striker gunvolt 3" + }, + { + "appid": 1931710, + "normalized_name": "alice in dreamland" + }, + { + "appid": 1931730, + "normalized_name": "fort solis" + }, + { + "appid": 1931740, + "normalized_name": "inside us" + }, + { + "appid": 1931750, + "normalized_name": "the conqueror of battles" + }, + { + "appid": 1931770, + "normalized_name": "chants of sennaar" + }, + { + "appid": 1931820, + "normalized_name": "the backrooms vr co op horror game" + }, + { + "appid": 1931860, + "normalized_name": "octarace" + }, + { + "appid": 1931870, + "normalized_name": "tomb robbing with friends" + }, + { + "appid": 1931890, + "normalized_name": "trivia party" + }, + { + "appid": 1931900, + "normalized_name": "bear the terrain" + }, + { + "appid": 1931930, + "normalized_name": "wrekless" + }, + { + "appid": 1931940, + "normalized_name": "早咲きのくろゆり" + }, + { + "appid": 1931950, + "normalized_name": "vade retro exorcist" + }, + { + "appid": 1931960, + "normalized_name": "baws pharmacy" + }, + { + "appid": 1931970, + "normalized_name": "you deserve a seat at the table" + }, + { + "appid": 1931980, + "normalized_name": "local paper small town" + }, + { + "appid": 1931990, + "normalized_name": "sunrise's order" + }, + { + "appid": 1932050, + "normalized_name": "very important potato" + }, + { + "appid": 1932100, + "normalized_name": "love and guillotines" + }, + { + "appid": 1932120, + "normalized_name": "drowned" + }, + { + "appid": 1932160, + "normalized_name": "neptunia sisters vs sisters" + }, + { + "appid": 1932180, + "normalized_name": "dinobreak" + }, + { + "appid": 1932190, + "normalized_name": "outbreak shades of horror" + }, + { + "appid": 1932210, + "normalized_name": "takara cards" + }, + { + "appid": 1932220, + "normalized_name": "easychemistrylab" + }, + { + "appid": 1932230, + "normalized_name": "100 hidden hares" + }, + { + "appid": 1932250, + "normalized_name": "furry tower defense" + }, + { + "appid": 1932260, + "normalized_name": "no creeps were harmed td" + }, + { + "appid": 1932280, + "normalized_name": "medieval fantasy survival simulator 2 gladiator" + }, + { + "appid": 1932290, + "normalized_name": "spirit & stone" + }, + { + "appid": 1932300, + "normalized_name": "dragon uprising online" + }, + { + "appid": 1932330, + "normalized_name": "tobor party" + }, + { + "appid": 1932340, + "normalized_name": "party fowl" + }, + { + "appid": 1932350, + "normalized_name": "loginode" + }, + { + "appid": 1932360, + "normalized_name": "death duel vr" + }, + { + "appid": 1932380, + "normalized_name": "sucronomicon" + }, + { + "appid": 1932430, + "normalized_name": "duline" + }, + { + "appid": 1932470, + "normalized_name": "you will die a lot buddy trust me!" + }, + { + "appid": 1932480, + "normalized_name": "neon flash 2" + }, + { + "appid": 1932490, + "normalized_name": "agent 01" + }, + { + "appid": 1932500, + "normalized_name": "battle tracks" + }, + { + "appid": 1932520, + "normalized_name": "manaclysm" + }, + { + "appid": 1932570, + "normalized_name": "jaded" + }, + { + "appid": 1932590, + "normalized_name": "bearcycle" + }, + { + "appid": 1932640, + "normalized_name": "suikoden i&ii hd remaster gate rune and dunan unification wars" + }, + { + "appid": 1932670, + "normalized_name": "neverland" + }, + { + "appid": 1932680, + "normalized_name": "lunarlux" + }, + { + "appid": 1932690, + "normalized_name": "谎月香格里拉" + }, + { + "appid": 1932700, + "normalized_name": "entomophobia" + }, + { + "appid": 1932730, + "normalized_name": "推推炸(pushpushboom)" + }, + { + "appid": 1932750, + "normalized_name": "coquette dragoon volume one" + }, + { + "appid": 1932760, + "normalized_name": "chucky the road to heaven" + }, + { + "appid": 1932790, + "normalized_name": "drillman 6378137" + }, + { + "appid": 1932810, + "normalized_name": "deicider" + }, + { + "appid": 1932830, + "normalized_name": "the hexad trials(ning's wing 3)" + }, + { + "appid": 1932860, + "normalized_name": "brick breaker" + }, + { + "appid": 1932890, + "normalized_name": "dirtyblock" + }, + { + "appid": 1932950, + "normalized_name": "war operation full contact" + }, + { + "appid": 1932960, + "normalized_name": "doors and doors mr. frog" + }, + { + "appid": 1932970, + "normalized_name": "legacy 1917" + }, + { + "appid": 1932980, + "normalized_name": "fire station renovation" + }, + { + "appid": 1933000, + "normalized_name": "luna abyss" + }, + { + "appid": 1933010, + "normalized_name": "spellers" + }, + { + "appid": 1933020, + "normalized_name": "sentry city" + }, + { + "appid": 1933050, + "normalized_name": "omega pilot" + }, + { + "appid": 1933060, + "normalized_name": "lovely moments dad and daughter. jigsaw puzzle game" + }, + { + "appid": 1933070, + "normalized_name": "emorrior" + }, + { + "appid": 1933090, + "normalized_name": "samurai(the rise of warrior) 武士の台頭" + }, + { + "appid": 1933100, + "normalized_name": "camp muck rungler" + }, + { + "appid": 1933140, + "normalized_name": "jeu de tarot" + }, + { + "appid": 1933160, + "normalized_name": "non stop driver" + }, + { + "appid": 1933170, + "normalized_name": "lone planet" + }, + { + "appid": 1933180, + "normalized_name": "varney lake" + }, + { + "appid": 1933190, + "normalized_name": "bahnsen knights" + }, + { + "appid": 1933230, + "normalized_name": "let's go!" + }, + { + "appid": 1933290, + "normalized_name": "best of eleven" + }, + { + "appid": 1933320, + "normalized_name": "black hole pool vr" + }, + { + "appid": 1933330, + "normalized_name": "tales from the crossing the captain's chair" + }, + { + "appid": 1933350, + "normalized_name": "panzerfaust" + }, + { + "appid": 1933370, + "normalized_name": "mark of the deep" + }, + { + "appid": 1933400, + "normalized_name": "the threshold dweller" + }, + { + "appid": 1933450, + "normalized_name": "triple fantasy" + }, + { + "appid": 1933490, + "normalized_name": "let's play! oink games" + }, + { + "appid": 1933510, + "normalized_name": "delusions of a lost soul" + }, + { + "appid": 1933520, + "normalized_name": "hero mania" + }, + { + "appid": 1933570, + "normalized_name": "idf asd" + }, + { + "appid": 1933580, + "normalized_name": "mindsweeper" + }, + { + "appid": 1933640, + "normalized_name": "原灵·深海遗梦 medusa the origin ~ lost dream of the deep" + }, + { + "appid": 1933650, + "normalized_name": "the imperial gatekeeper" + }, + { + "appid": 1933660, + "normalized_name": "demons roots" + }, + { + "appid": 1933670, + "normalized_name": "ariel’s daily grind" + }, + { + "appid": 1933680, + "normalized_name": "spiral dystopia" + }, + { + "appid": 1933700, + "normalized_name": "smilemo" + }, + { + "appid": 1933730, + "normalized_name": "nirmita the fantasy survival rpg" + }, + { + "appid": 1933740, + "normalized_name": "the caligula effect 2" + }, + { + "appid": 1933750, + "normalized_name": "永夜长安changaneternalnight" + }, + { + "appid": 1933780, + "normalized_name": "my divorce story" + }, + { + "appid": 1933790, + "normalized_name": "怒海 rough sea" + }, + { + "appid": 1933800, + "normalized_name": "zombie survivors" + }, + { + "appid": 1933820, + "normalized_name": "sgs korean war" + }, + { + "appid": 1933830, + "normalized_name": "sgs spain at war" + }, + { + "appid": 1933840, + "normalized_name": "moon mystery" + }, + { + "appid": 1933850, + "normalized_name": "hungry pigs" + }, + { + "appid": 1933930, + "normalized_name": "ancient farm" + }, + { + "appid": 1933960, + "normalized_name": "venice after dark" + }, + { + "appid": 1933970, + "normalized_name": "anime studio story" + }, + { + "appid": 1933980, + "normalized_name": "pool slide story" + }, + { + "appid": 1933990, + "normalized_name": "burger bistro story" + }, + { + "appid": 1934020, + "normalized_name": "polar penguin post" + }, + { + "appid": 1934030, + "normalized_name": "virtuaunlimitedproject" + }, + { + "appid": 1934040, + "normalized_name": "miniland adventure" + }, + { + "appid": 1934080, + "normalized_name": "浮生箓2:九九行歌 floating life 2" + }, + { + "appid": 1934090, + "normalized_name": "jigsaw novel the job promotion" + }, + { + "appid": 1934100, + "normalized_name": "ardor" + }, + { + "appid": 1934110, + "normalized_name": "astria world" + }, + { + "appid": 1934180, + "normalized_name": "hot“sento girls”and love" + }, + { + "appid": 1934220, + "normalized_name": "n/a" + }, + { + "appid": 1934230, + "normalized_name": "露希尔 光与暗的天秤" + }, + { + "appid": 1934270, + "normalized_name": "dance of decapods" + }, + { + "appid": 1934300, + "normalized_name": "armored brigade ii" + }, + { + "appid": 1934330, + "normalized_name": "joshua's legs" + }, + { + "appid": 1934340, + "normalized_name": "epic pirate" + }, + { + "appid": 1934350, + "normalized_name": "wildfox surfing paradise" + }, + { + "appid": 1934360, + "normalized_name": "succubus melnea" + }, + { + "appid": 1934370, + "normalized_name": "unbridled horse designer" + }, + { + "appid": 1934420, + "normalized_name": "die die die and try" + }, + { + "appid": 1934440, + "normalized_name": "particle of god" + }, + { + "appid": 1934470, + "normalized_name": "loyal size cube" + }, + { + "appid": 1934520, + "normalized_name": "auto cast" + }, + { + "appid": 1934540, + "normalized_name": "madville+" + }, + { + "appid": 1934550, + "normalized_name": "the legend of gandar" + }, + { + "appid": 1934570, + "normalized_name": "south of midnight" + }, + { + "appid": 1934590, + "normalized_name": "the visit" + }, + { + "appid": 1934620, + "normalized_name": "souldead" + }, + { + "appid": 1934650, + "normalized_name": "girbal" + }, + { + "appid": 1934660, + "normalized_name": "super trunko go" + }, + { + "appid": 1934680, + "normalized_name": "age of mythology retold" + }, + { + "appid": 1934700, + "normalized_name": "drifting kings" + }, + { + "appid": 1934720, + "normalized_name": "red chaos the strict order" + }, + { + "appid": 1934740, + "normalized_name": "vr archery" + }, + { + "appid": 1934790, + "normalized_name": "the endless summer surfing challenge" + }, + { + "appid": 1934800, + "normalized_name": "a pet shop after dark" + }, + { + "appid": 1934810, + "normalized_name": "驯龙物语" + }, + { + "appid": 1934860, + "normalized_name": "the rise of jaloliddin" + }, + { + "appid": 1934900, + "normalized_name": "my slow life with the princess knight and her devoted handmaiden" + }, + { + "appid": 1934910, + "normalized_name": "kunado chronicles" + }, + { + "appid": 1934930, + "normalized_name": "conquest emperor" + }, + { + "appid": 1934940, + "normalized_name": "eternal tabletop" + }, + { + "appid": 1934980, + "normalized_name": "infinite links" + }, + { + "appid": 1934990, + "normalized_name": "senpai and the mysterious dungeon" + }, + { + "appid": 1935070, + "normalized_name": "一念成仙" + }, + { + "appid": 1935080, + "normalized_name": "memory novel mile high club" + }, + { + "appid": 1935100, + "normalized_name": "nightfall comes" + }, + { + "appid": 1935130, + "normalized_name": "terry poorflyer" + }, + { + "appid": 1935160, + "normalized_name": "hit him" + }, + { + "appid": 1935240, + "normalized_name": "planet conqueror" + }, + { + "appid": 1935300, + "normalized_name": "stack world" + }, + { + "appid": 1935330, + "normalized_name": "sopa tale of the stolen potato" + }, + { + "appid": 1935340, + "normalized_name": "man without organs" + }, + { + "appid": 1935370, + "normalized_name": "bard trainer" + }, + { + "appid": 1935400, + "normalized_name": "小小无常 little wu chang" + }, + { + "appid": 1935410, + "normalized_name": "the smash cars tournament" + }, + { + "appid": 1935420, + "normalized_name": "i was lost" + }, + { + "appid": 1935430, + "normalized_name": "cowboy hell" + }, + { + "appid": 1935460, + "normalized_name": "empyre dukes of the far frontier" + }, + { + "appid": 1935470, + "normalized_name": "the tales of bayun" + }, + { + "appid": 1935490, + "normalized_name": "fluffy milo" + }, + { + "appid": 1935500, + "normalized_name": "largescale warfare alpha" + }, + { + "appid": 1935580, + "normalized_name": "office elevator" + }, + { + "appid": 1935630, + "normalized_name": "hoopsfps" + }, + { + "appid": 1935660, + "normalized_name": "chop goblins" + }, + { + "appid": 1935670, + "normalized_name": "macheesmo the animated series the game" + }, + { + "appid": 1935710, + "normalized_name": "sex diary futanari jail" + }, + { + "appid": 1935720, + "normalized_name": "mara's quest" + }, + { + "appid": 1935750, + "normalized_name": "glorious day to die" + }, + { + "appid": 1935790, + "normalized_name": "haunted hotel the thirteenth collector's" + }, + { + "appid": 1935800, + "normalized_name": "absolute tennis manager" + }, + { + "appid": 1935810, + "normalized_name": "diamond hunt" + }, + { + "appid": 1935830, + "normalized_name": "stoney's adventure" + }, + { + "appid": 1935850, + "normalized_name": "graffiti battle" + }, + { + "appid": 1935910, + "normalized_name": "pro strategy football 2023" + }, + { + "appid": 1935940, + "normalized_name": "vendetta mafia wars" + }, + { + "appid": 1935960, + "normalized_name": "drifter's tales" + }, + { + "appid": 1936000, + "normalized_name": "the infernal return" + }, + { + "appid": 1936020, + "normalized_name": "beach simulator" + }, + { + "appid": 1936050, + "normalized_name": "animaddicts 3" + }, + { + "appid": 1936070, + "normalized_name": "school simulator rpg" + }, + { + "appid": 1936080, + "normalized_name": "glory's fools" + }, + { + "appid": 1936130, + "normalized_name": "bunker 2322" + }, + { + "appid": 1936140, + "normalized_name": "one last memory reimagined" + }, + { + "appid": 1936150, + "normalized_name": "remote life 2 fearless" + }, + { + "appid": 1936160, + "normalized_name": "湖畔往事" + }, + { + "appid": 1936190, + "normalized_name": "radon break" + }, + { + "appid": 1936200, + "normalized_name": "hot milf 5" + }, + { + "appid": 1936210, + "normalized_name": "milf toys 2" + }, + { + "appid": 1936230, + "normalized_name": "별에게 소원을 (when you wish upon a star)" + }, + { + "appid": 1936250, + "normalized_name": "downthedead" + }, + { + "appid": 1936300, + "normalized_name": "target summit(目标:登顶 )" + }, + { + "appid": 1936310, + "normalized_name": "sugoi adventure! dragonslayer" + }, + { + "appid": 1936360, + "normalized_name": "escape from mandrillia local asymmetric vr vs pc" + }, + { + "appid": 1936380, + "normalized_name": "words" + }, + { + "appid": 1936390, + "normalized_name": "wormstep" + }, + { + "appid": 1936450, + "normalized_name": "罪人之籠" + }, + { + "appid": 1936480, + "normalized_name": "dickie a cumming the prequel (part i)" + }, + { + "appid": 1936490, + "normalized_name": "dreambig 3" + }, + { + "appid": 1936510, + "normalized_name": "age of discovery" + }, + { + "appid": 1936520, + "normalized_name": "jim's adventure" + }, + { + "appid": 1936530, + "normalized_name": "subsequence" + }, + { + "appid": 1936640, + "normalized_name": "shenanigans" + }, + { + "appid": 1936660, + "normalized_name": "welcome to the backrooms" + }, + { + "appid": 1936700, + "normalized_name": "genius vs antichrist 1" + }, + { + "appid": 1936710, + "normalized_name": "怪物狩猎:序章" + }, + { + "appid": 1936740, + "normalized_name": "timmy l'escargot" + }, + { + "appid": 1936750, + "normalized_name": "left stranded" + }, + { + "appid": 1936770, + "normalized_name": "among stars" + }, + { + "appid": 1936790, + "normalized_name": "oh brave new “red” world!" + }, + { + "appid": 1936800, + "normalized_name": "object wars" + }, + { + "appid": 1936810, + "normalized_name": "miami hotel simulator" + }, + { + "appid": 1936840, + "normalized_name": "cannonball" + }, + { + "appid": 1936860, + "normalized_name": "crash test oliver" + }, + { + "appid": 1936900, + "normalized_name": "crimson wolf" + }, + { + "appid": 1936940, + "normalized_name": "vayan" + }, + { + "appid": 1936990, + "normalized_name": "frogue" + }, + { + "appid": 1937030, + "normalized_name": "the synergist" + }, + { + "appid": 1937050, + "normalized_name": "chased around the world" + }, + { + "appid": 1937070, + "normalized_name": "engines of destruction" + }, + { + "appid": 1937100, + "normalized_name": "the president" + }, + { + "appid": 1937110, + "normalized_name": "tetra tactics" + }, + { + "appid": 1937120, + "normalized_name": "tile perfect" + }, + { + "appid": 1937130, + "normalized_name": "arcade squad" + }, + { + "appid": 1937140, + "normalized_name": "hrd 3 pegasus island" + }, + { + "appid": 1937160, + "normalized_name": "the nightmare catcher" + }, + { + "appid": 1937170, + "normalized_name": "pokaban" + }, + { + "appid": 1937180, + "normalized_name": "evoluship" + }, + { + "appid": 1937200, + "normalized_name": "blockville" + }, + { + "appid": 1937230, + "normalized_name": "shatter deluxe" + }, + { + "appid": 1937260, + "normalized_name": "simple boxing drills vr" + }, + { + "appid": 1937300, + "normalized_name": "lillusion" + }, + { + "appid": 1937360, + "normalized_name": "findme ~30才の夢追い人~" + }, + { + "appid": 1937460, + "normalized_name": "i wanna reach the top" + }, + { + "appid": 1937470, + "normalized_name": "franchise hockey manager 9" + }, + { + "appid": 1937500, + "normalized_name": "let's school" + }, + { + "appid": 1937510, + "normalized_name": "mirages of winter" + }, + { + "appid": 1937540, + "normalized_name": "potato arena" + }, + { + "appid": 1937550, + "normalized_name": "overstrike arena" + }, + { + "appid": 1937570, + "normalized_name": "horse club adventures 2 hazelwood stories" + }, + { + "appid": 1937600, + "normalized_name": "сrime сity" + }, + { + "appid": 1937610, + "normalized_name": "a ruthless world" + }, + { + "appid": 1937620, + "normalized_name": "tennis manager 2022" + }, + { + "appid": 1937640, + "normalized_name": "flag defense" + }, + { + "appid": 1937650, + "normalized_name": "fanite" + }, + { + "appid": 1937670, + "normalized_name": "melobot a last song" + }, + { + "appid": 1937700, + "normalized_name": "gabriel's auditory playground" + }, + { + "appid": 1937710, + "normalized_name": "egg bunny 2" + }, + { + "appid": 1937720, + "normalized_name": "kamifuda" + }, + { + "appid": 1937750, + "normalized_name": "prime of flames" + }, + { + "appid": 1937780, + "normalized_name": "total war pharaoh" + }, + { + "appid": 1937820, + "normalized_name": "tavernacle!" + }, + { + "appid": 1937840, + "normalized_name": "stargazing genesis" + }, + { + "appid": 1937850, + "normalized_name": "satan's puzzle 2" + }, + { + "appid": 1937860, + "normalized_name": "tnr battles" + }, + { + "appid": 1937880, + "normalized_name": "hank drowning on dry land" + }, + { + "appid": 1937890, + "normalized_name": "hank the great unraveling" + }, + { + "appid": 1937900, + "normalized_name": "wild earth africa" + }, + { + "appid": 1937910, + "normalized_name": "tank top tactics" + }, + { + "appid": 1937930, + "normalized_name": "the static" + }, + { + "appid": 1937960, + "normalized_name": "throwing hands" + }, + { + "appid": 1937970, + "normalized_name": "narcotics ninja" + }, + { + "appid": 1937980, + "normalized_name": "dust a post apocalyptic rpg" + }, + { + "appid": 1938010, + "normalized_name": "wild hearts" + }, + { + "appid": 1938030, + "normalized_name": "caution" + }, + { + "appid": 1938040, + "normalized_name": "royal duality" + }, + { + "appid": 1938050, + "normalized_name": "unbridled that horse game" + }, + { + "appid": 1938090, + "normalized_name": "call of duty" + }, + { + "appid": 1938100, + "normalized_name": "notmads" + }, + { + "appid": 1938110, + "normalized_name": "carnage in space crucible" + }, + { + "appid": 1938120, + "normalized_name": "qualia ~the path of promise~" + }, + { + "appid": 1938150, + "normalized_name": "melon dusk" + }, + { + "appid": 1938160, + "normalized_name": "battle chain" + }, + { + "appid": 1938180, + "normalized_name": "axolotl is dry" + }, + { + "appid": 1938190, + "normalized_name": "pirate code 2 reign of the pirate king" + }, + { + "appid": 1938200, + "normalized_name": "desktop dog" + }, + { + "appid": 1938210, + "normalized_name": "the pendant of prosperity" + }, + { + "appid": 1938220, + "normalized_name": "the game of unknown" + }, + { + "appid": 1938260, + "normalized_name": "起飞吧!兔兔" + }, + { + "appid": 1938290, + "normalized_name": "vactics" + }, + { + "appid": 1938300, + "normalized_name": "latex & tentacles" + }, + { + "appid": 1938330, + "normalized_name": "into the dark" + }, + { + "appid": 1938360, + "normalized_name": "plasmatic vr" + }, + { + "appid": 1938370, + "normalized_name": "comixxx swap" + }, + { + "appid": 1938380, + "normalized_name": "escape down" + }, + { + "appid": 1938400, + "normalized_name": "unimime unicycle madness" + }, + { + "appid": 1938410, + "normalized_name": "cyber pool" + }, + { + "appid": 1938430, + "normalized_name": "win the diamond" + }, + { + "appid": 1938460, + "normalized_name": "masterchef chinese food" + }, + { + "appid": 1938500, + "normalized_name": "dawn darkness awaits withstand the night" + }, + { + "appid": 1938530, + "normalized_name": "knightblade" + }, + { + "appid": 1938540, + "normalized_name": "eternal spectre" + }, + { + "appid": 1938550, + "normalized_name": "the soul labyrinth" + }, + { + "appid": 1938560, + "normalized_name": "moon strike prologue" + }, + { + "appid": 1938580, + "normalized_name": "anime friends" + }, + { + "appid": 1938600, + "normalized_name": "the little clandestine" + }, + { + "appid": 1938620, + "normalized_name": "cyberstorm" + }, + { + "appid": 1938630, + "normalized_name": "lucie adult game hd" + }, + { + "appid": 1938660, + "normalized_name": "monster in the dark remaster" + }, + { + "appid": 1938670, + "normalized_name": "easter bunny" + }, + { + "appid": 1938690, + "normalized_name": "devil devour alive dx" + }, + { + "appid": 1938720, + "normalized_name": "the elliot brown case" + }, + { + "appid": 1938740, + "normalized_name": "valkyrie nemesis" + }, + { + "appid": 1938750, + "normalized_name": "out of stock!" + }, + { + "appid": 1938770, + "normalized_name": "whispers of the village" + }, + { + "appid": 1938800, + "normalized_name": "alone in the dark prologue" + }, + { + "appid": 1938830, + "normalized_name": "blow fish music quiz" + }, + { + "appid": 1938840, + "normalized_name": "devil's advocate alexander twist" + }, + { + "appid": 1938850, + "normalized_name": "temp zero" + }, + { + "appid": 1938900, + "normalized_name": "hall infinite prologue" + }, + { + "appid": 1938990, + "normalized_name": "dogefight" + }, + { + "appid": 1939020, + "normalized_name": "ddr defenders dragons riders" + }, + { + "appid": 1939040, + "normalized_name": "no anglerfish" + }, + { + "appid": 1939070, + "normalized_name": "jigsaw novel summer threesome" + }, + { + "appid": 1939100, + "normalized_name": "go home annie" + }, + { + "appid": 1939130, + "normalized_name": "eve williams and the secret of the trunk" + }, + { + "appid": 1939140, + "normalized_name": "snooze a sleeping adventure" + }, + { + "appid": 1939160, + "normalized_name": "shadows over loathing" + }, + { + "appid": 1939200, + "normalized_name": "astro adventures" + }, + { + "appid": 1939220, + "normalized_name": "art of golf" + }, + { + "appid": 1939260, + "normalized_name": "collect the cupcake" + }, + { + "appid": 1939270, + "normalized_name": "past synergy" + }, + { + "appid": 1939280, + "normalized_name": "aeon wars tactics" + }, + { + "appid": 1939290, + "normalized_name": "urubu" + }, + { + "appid": 1939320, + "normalized_name": "all i want for christmas is a girlfriend" + }, + { + "appid": 1939350, + "normalized_name": "hide & chick" + }, + { + "appid": 1939390, + "normalized_name": "dino party" + }, + { + "appid": 1939430, + "normalized_name": "super splashtube bros." + }, + { + "appid": 1939470, + "normalized_name": "pheno[core]" + }, + { + "appid": 1939490, + "normalized_name": "terminal insanity rackjacker" + }, + { + "appid": 1939500, + "normalized_name": "hare apparent" + }, + { + "appid": 1939560, + "normalized_name": "镇邪" + }, + { + "appid": 1939570, + "normalized_name": "paige turner" + }, + { + "appid": 1939590, + "normalized_name": "shambhala gateway the meditation quest of mindfulness" + }, + { + "appid": 1939600, + "normalized_name": "sillage" + }, + { + "appid": 1939630, + "normalized_name": "small test" + }, + { + "appid": 1939640, + "normalized_name": "case files the death of paulette williams" + }, + { + "appid": 1939690, + "normalized_name": "letter bender" + }, + { + "appid": 1939700, + "normalized_name": "g zilla return of the aliens" + }, + { + "appid": 1939740, + "normalized_name": "小小商人传奇" + }, + { + "appid": 1939770, + "normalized_name": "bash the party" + }, + { + "appid": 1939780, + "normalized_name": "pirates odyssey" + }, + { + "appid": 1939790, + "normalized_name": "纸嫁衣3鸳鸯债" + }, + { + "appid": 1939810, + "normalized_name": "sanctum breach rebirth" + }, + { + "appid": 1939850, + "normalized_name": "the detective" + }, + { + "appid": 1939880, + "normalized_name": "wizards of chaos" + }, + { + "appid": 1939890, + "normalized_name": "simon the sorcerer origins" + }, + { + "appid": 1939910, + "normalized_name": "karate beasts" + }, + { + "appid": 1939920, + "normalized_name": "cyber clutch hot import nights" + }, + { + "appid": 1939930, + "normalized_name": "quantum apex" + }, + { + "appid": 1939940, + "normalized_name": "roll player the board game" + }, + { + "appid": 1939960, + "normalized_name": "subway simulator" + }, + { + "appid": 1939970, + "normalized_name": "nobody wants to die" + }, + { + "appid": 1940020, + "normalized_name": "angst" + }, + { + "appid": 1940040, + "normalized_name": "the price of flesh" + }, + { + "appid": 1940080, + "normalized_name": "rooted" + }, + { + "appid": 1940090, + "normalized_name": "murder is game over" + }, + { + "appid": 1940100, + "normalized_name": "times tables hunt" + }, + { + "appid": 1940140, + "normalized_name": "tiles and towers td" + }, + { + "appid": 1940180, + "normalized_name": "prototype" + }, + { + "appid": 1940190, + "normalized_name": "oil invasion" + }, + { + "appid": 1940200, + "normalized_name": "chill town" + }, + { + "appid": 1940270, + "normalized_name": "bunker renovator" + }, + { + "appid": 1940310, + "normalized_name": "ellisar" + }, + { + "appid": 1940320, + "normalized_name": "nature's habit" + }, + { + "appid": 1940340, + "normalized_name": "darkest dungeon ii" + }, + { + "appid": 1940350, + "normalized_name": "ultra mission" + }, + { + "appid": 1940360, + "normalized_name": "retake" + }, + { + "appid": 1940370, + "normalized_name": "lonely knight" + }, + { + "appid": 1940380, + "normalized_name": "dogfight" + }, + { + "appid": 1940410, + "normalized_name": "starri" + }, + { + "appid": 1940490, + "normalized_name": "tilebreaker" + }, + { + "appid": 1940500, + "normalized_name": "soda sabotage" + }, + { + "appid": 1940520, + "normalized_name": "liberty castle home of the free" + }, + { + "appid": 1940550, + "normalized_name": "pvnp" + }, + { + "appid": 1940610, + "normalized_name": "true demon" + }, + { + "appid": 1940790, + "normalized_name": "peasant td" + }, + { + "appid": 1940840, + "normalized_name": "lich queen's curse" + }, + { + "appid": 1940870, + "normalized_name": "the creator" + }, + { + "appid": 1940880, + "normalized_name": "scary wife hd anime horror game" + }, + { + "appid": 1940890, + "normalized_name": "怪物狩猎" + }, + { + "appid": 1940980, + "normalized_name": "fortress building puzzle" + }, + { + "appid": 1941000, + "normalized_name": "booty farm [18+]" + }, + { + "appid": 1941070, + "normalized_name": "lands of vodria" + }, + { + "appid": 1941100, + "normalized_name": "amarantus" + }, + { + "appid": 1941110, + "normalized_name": "higurashi when they cry hou rei" + }, + { + "appid": 1941130, + "normalized_name": "golden mine pickaxe 2 mummy tombs" + }, + { + "appid": 1941140, + "normalized_name": "outcasts of dungeon epic magic world fight rogue game simulator" + }, + { + "appid": 1941150, + "normalized_name": "feartten noir story" + }, + { + "appid": 1941170, + "normalized_name": "the jelly adventure" + }, + { + "appid": 1941180, + "normalized_name": "lucky pikinini zombie rampage" + }, + { + "appid": 1941200, + "normalized_name": "flightless" + }, + { + "appid": 1941220, + "normalized_name": "nora's adventurescape" + }, + { + "appid": 1941280, + "normalized_name": "colors live" + }, + { + "appid": 1941290, + "normalized_name": "project artificial legacy saga" + }, + { + "appid": 1941310, + "normalized_name": "sleep paralysis the uncanny valley" + }, + { + "appid": 1941340, + "normalized_name": "cool people club" + }, + { + "appid": 1941370, + "normalized_name": "dancin divas" + }, + { + "appid": 1941380, + "normalized_name": "inn keeper" + }, + { + "appid": 1941390, + "normalized_name": "super turbo racing" + }, + { + "appid": 1941400, + "normalized_name": "tonikk tycoon" + }, + { + "appid": 1941410, + "normalized_name": "the cub" + }, + { + "appid": 1941420, + "normalized_name": "burrito bear" + }, + { + "appid": 1941430, + "normalized_name": "thebootcamp" + }, + { + "appid": 1941450, + "normalized_name": "fragments" + }, + { + "appid": 1941490, + "normalized_name": "zombie barrel blast" + }, + { + "appid": 1941510, + "normalized_name": "adventures of the old testament the bible video game" + }, + { + "appid": 1941540, + "normalized_name": "mafia the old country" + }, + { + "appid": 1941550, + "normalized_name": "the coven of calahree" + }, + { + "appid": 1941570, + "normalized_name": "selenelion" + }, + { + "appid": 1941620, + "normalized_name": "limen" + }, + { + "appid": 1941640, + "normalized_name": "4d miner" + }, + { + "appid": 1941650, + "normalized_name": "gooncrusher" + }, + { + "appid": 1941660, + "normalized_name": "spider solitaire collection" + }, + { + "appid": 1941690, + "normalized_name": "cyberference" + }, + { + "appid": 1941700, + "normalized_name": "exterminate zombies get paid" + }, + { + "appid": 1941710, + "normalized_name": "斩魔问道" + }, + { + "appid": 1941740, + "normalized_name": "the adventures of poppe" + }, + { + "appid": 1941750, + "normalized_name": "the nameless braves heaven (episode 1)" + }, + { + "appid": 1941760, + "normalized_name": "irritability & mood swings" + }, + { + "appid": 1941780, + "normalized_name": "zumbi blocks 2 open alpha" + }, + { + "appid": 1941840, + "normalized_name": "otoko cross pretty boys mahjong solitaire" + }, + { + "appid": 1941870, + "normalized_name": "the slime" + }, + { + "appid": 1941890, + "normalized_name": "santo island incident" + }, + { + "appid": 1941940, + "normalized_name": "memory novel girls night out" + }, + { + "appid": 1941960, + "normalized_name": "evil next door" + }, + { + "appid": 1942000, + "normalized_name": "shape puzzle" + }, + { + "appid": 1942010, + "normalized_name": "vengeful guardian moonrider" + }, + { + "appid": 1942050, + "normalized_name": "alchemist" + }, + { + "appid": 1942060, + "normalized_name": "《travel cat adventure island》旅行貓貓~探險之島" + }, + { + "appid": 1942080, + "normalized_name": "hot tentacles shooter" + }, + { + "appid": 1942110, + "normalized_name": "bootstrap island" + }, + { + "appid": 1942120, + "normalized_name": "the complex found footage" + }, + { + "appid": 1942150, + "normalized_name": "aitta finnish folktales" + }, + { + "appid": 1942280, + "normalized_name": "brotato" + }, + { + "appid": 1942300, + "normalized_name": "outer darkness" + }, + { + "appid": 1942330, + "normalized_name": "haunted house" + }, + { + "appid": 1942360, + "normalized_name": "breakers world" + }, + { + "appid": 1942370, + "normalized_name": "going into the unknown" + }, + { + "appid": 1942380, + "normalized_name": "toe to toe vr party games" + }, + { + "appid": 1942390, + "normalized_name": "him & her collection" + }, + { + "appid": 1942400, + "normalized_name": "even heroes die" + }, + { + "appid": 1942440, + "normalized_name": "最后的仙门 the last practice sect" + }, + { + "appid": 1942450, + "normalized_name": "gemlands" + }, + { + "appid": 1942480, + "normalized_name": "cursed fables white as snow collector's" + }, + { + "appid": 1942490, + "normalized_name": "prison of the mind" + }, + { + "appid": 1942510, + "normalized_name": "arcis ultima" + }, + { + "appid": 1942530, + "normalized_name": "the anointed david saves keilah" + }, + { + "appid": 1942540, + "normalized_name": "no cat fights here" + }, + { + "appid": 1942580, + "normalized_name": "find and kill the evil king" + }, + { + "appid": 1942610, + "normalized_name": "blackout!!" + }, + { + "appid": 1942720, + "normalized_name": "dreamlined" + }, + { + "appid": 1942770, + "normalized_name": "ronin's run" + }, + { + "appid": 1942850, + "normalized_name": "sunshower" + }, + { + "appid": 1942860, + "normalized_name": "pogostickmiooooooon" + }, + { + "appid": 1942870, + "normalized_name": "sexy milf stories" + }, + { + "appid": 1942890, + "normalized_name": "paranormal simulator" + }, + { + "appid": 1942900, + "normalized_name": "vanillabeast retro knock out!" + }, + { + "appid": 1942920, + "normalized_name": "鸟兽幻戏图 bird and beast fantasy" + }, + { + "appid": 1943020, + "normalized_name": "escape the ether" + }, + { + "appid": 1943030, + "normalized_name": "sisters_possession1" + }, + { + "appid": 1943040, + "normalized_name": "generations" + }, + { + "appid": 1943060, + "normalized_name": "who run the city multiplayer" + }, + { + "appid": 1943070, + "normalized_name": "daydream mosaics 3 shards of hope" + }, + { + "appid": 1943160, + "normalized_name": "overdriven evolution" + }, + { + "appid": 1943220, + "normalized_name": "sketch" + }, + { + "appid": 1943230, + "normalized_name": "asmodeus's hell devil in the sunshine state" + }, + { + "appid": 1943240, + "normalized_name": "dismantled director's cut" + }, + { + "appid": 1943280, + "normalized_name": "past particles" + }, + { + "appid": 1943300, + "normalized_name": "escape from the trap world" + }, + { + "appid": 1943310, + "normalized_name": "dragon caffi" + }, + { + "appid": 1943360, + "normalized_name": "the horror story rebirth" + }, + { + "appid": 1943370, + "normalized_name": "invercity" + }, + { + "appid": 1943380, + "normalized_name": "the rules" + }, + { + "appid": 1943400, + "normalized_name": "momo's eternal adventure" + }, + { + "appid": 1943420, + "normalized_name": "i doesn't exist a modern text adventure" + }, + { + "appid": 1943440, + "normalized_name": "royal mahjong king's journey" + }, + { + "appid": 1943450, + "normalized_name": "holiday jigsaw easter 2" + }, + { + "appid": 1943460, + "normalized_name": "holiday jigsaw easter 3" + }, + { + "appid": 1943470, + "normalized_name": "holiday jigsaw halloween 3" + }, + { + "appid": 1943480, + "normalized_name": "holiday jigsaw halloween 4" + }, + { + "appid": 1943490, + "normalized_name": "magic griddlers 2" + }, + { + "appid": 1943500, + "normalized_name": "valentine's day griddlers 2" + }, + { + "appid": 1943510, + "normalized_name": "riddle of the mask" + }, + { + "appid": 1943520, + "normalized_name": "royal riddles" + }, + { + "appid": 1943530, + "normalized_name": "solitaire beach season a vacation time" + }, + { + "appid": 1943560, + "normalized_name": "迷雾战争" + }, + { + "appid": 1943610, + "normalized_name": "aero tales online the world anime mmorpg" + }, + { + "appid": 1943690, + "normalized_name": "until the night" + }, + { + "appid": 1943710, + "normalized_name": "meth master" + }, + { + "appid": 1943730, + "normalized_name": "wicked island" + }, + { + "appid": 1943740, + "normalized_name": "arrival of beasts" + }, + { + "appid": 1943750, + "normalized_name": "shirazu yama" + }, + { + "appid": 1943760, + "normalized_name": "furry cyberfucker" + }, + { + "appid": 1943780, + "normalized_name": "top town" + }, + { + "appid": 1943810, + "normalized_name": "pitchfork kingdom" + }, + { + "appid": 1943820, + "normalized_name": "let's meat adam" + }, + { + "appid": 1943840, + "normalized_name": "the busker" + }, + { + "appid": 1943850, + "normalized_name": "indecent details find the difference" + }, + { + "appid": 1943870, + "normalized_name": "freecell solitaire collection" + }, + { + "appid": 1943880, + "normalized_name": "forty thieves solitaire collection" + }, + { + "appid": 1943890, + "normalized_name": "danger ducklings" + }, + { + "appid": 1943930, + "normalized_name": "sex adventures futanari bdsm" + }, + { + "appid": 1943950, + "normalized_name": "escape the backrooms" + }, + { + "appid": 1943980, + "normalized_name": "fitriz" + }, + { + "appid": 1944000, + "normalized_name": "the dreadful space" + }, + { + "appid": 1944020, + "normalized_name": "object ward. ~april fools' collection~" + }, + { + "appid": 1944040, + "normalized_name": "goblinamerica" + }, + { + "appid": 1944050, + "normalized_name": "farm under fire" + }, + { + "appid": 1944060, + "normalized_name": "super alloy ranger" + }, + { + "appid": 1944110, + "normalized_name": "jank saves the world" + }, + { + "appid": 1944130, + "normalized_name": "brainaccelerator" + }, + { + "appid": 1944140, + "normalized_name": "lys and ruka's magical bag" + }, + { + "appid": 1944200, + "normalized_name": "take me in and i'll love and serve you ~sweet and sexy life with a demi human girl~" + }, + { + "appid": 1944210, + "normalized_name": "infindustry" + }, + { + "appid": 1944240, + "normalized_name": "touch some grass" + }, + { + "appid": 1944250, + "normalized_name": "hana no no ni saku utakata no" + }, + { + "appid": 1944260, + "normalized_name": "ascend" + }, + { + "appid": 1944280, + "normalized_name": "my naughty shotgun" + }, + { + "appid": 1944300, + "normalized_name": "楚汉争霸" + }, + { + "appid": 1944310, + "normalized_name": "whispers in the moss" + }, + { + "appid": 1944330, + "normalized_name": "fruit bonanza" + }, + { + "appid": 1944360, + "normalized_name": "rune teller" + }, + { + "appid": 1944430, + "normalized_name": "amnesia the bunker" + }, + { + "appid": 1944440, + "normalized_name": "the farmer's story of slow life" + }, + { + "appid": 1944500, + "normalized_name": "operation pill" + }, + { + "appid": 1944510, + "normalized_name": "manny's mechanical emporium" + }, + { + "appid": 1944520, + "normalized_name": "s e v e r a n c e" + }, + { + "appid": 1944560, + "normalized_name": "vacation adventures park ranger 13" + }, + { + "appid": 1944570, + "normalized_name": "boneraiser minions" + }, + { + "appid": 1944600, + "normalized_name": "gamedog" + }, + { + "appid": 1944630, + "normalized_name": "katana rama" + }, + { + "appid": 1944640, + "normalized_name": "escape dark tunnels" + }, + { + "appid": 1944660, + "normalized_name": "alexanderball a countryball tale" + }, + { + "appid": 1944670, + "normalized_name": "worldmaker" + }, + { + "appid": 1944700, + "normalized_name": "gunquest" + }, + { + "appid": 1944710, + "normalized_name": "goblin gladiators" + }, + { + "appid": 1944730, + "normalized_name": "square keeper" + }, + { + "appid": 1944740, + "normalized_name": "it came from within" + }, + { + "appid": 1944750, + "normalized_name": "déjà vu" + }, + { + "appid": 1944760, + "normalized_name": "luminous labyrinth" + }, + { + "appid": 1944780, + "normalized_name": "jewel match solitaire x collector's" + }, + { + "appid": 1944790, + "normalized_name": "train sim world 3" + }, + { + "appid": 1944810, + "normalized_name": "gilded eternal" + }, + { + "appid": 1944850, + "normalized_name": "dc's justice league cosmic chaos" + }, + { + "appid": 1944870, + "normalized_name": "bad cops" + }, + { + "appid": 1944880, + "normalized_name": "drop command" + }, + { + "appid": 1944910, + "normalized_name": "thunder ray" + }, + { + "appid": 1944920, + "normalized_name": "tvg (the vox games). journey" + }, + { + "appid": 1944940, + "normalized_name": "easter eggstravaganza" + }, + { + "appid": 1944960, + "normalized_name": "star trapper fx" + }, + { + "appid": 1944970, + "normalized_name": "hidden farm top down 3d" + }, + { + "appid": 1945000, + "normalized_name": "the ducksuckers" + }, + { + "appid": 1945010, + "normalized_name": "achievement cage" + }, + { + "appid": 1945030, + "normalized_name": "my museum prologue treasure hunter" + }, + { + "appid": 1945060, + "normalized_name": "run n' gun" + }, + { + "appid": 1945160, + "normalized_name": "kelvin" + }, + { + "appid": 1945170, + "normalized_name": "another side" + }, + { + "appid": 1945180, + "normalized_name": "幸福里403" + }, + { + "appid": 1945220, + "normalized_name": "rhythm journey" + }, + { + "appid": 1945230, + "normalized_name": "小虎传:大菠萝深渊 diablo the abyss" + }, + { + "appid": 1945250, + "normalized_name": "blacktop hoops" + }, + { + "appid": 1945260, + "normalized_name": "jelly express" + }, + { + "appid": 1945280, + "normalized_name": "rtm the last days" + }, + { + "appid": 1945310, + "normalized_name": "oceans" + }, + { + "appid": 1945540, + "normalized_name": "the overlord isn't another isekai protagonist is he?" + }, + { + "appid": 1945560, + "normalized_name": "world of mines creator's" + }, + { + "appid": 1945590, + "normalized_name": "linguist fps the language learning fps" + }, + { + "appid": 1945670, + "normalized_name": "bear adventure" + }, + { + "appid": 1945700, + "normalized_name": "schachkampf fantasy chess" + }, + { + "appid": 1945710, + "normalized_name": "autocrusher bumper cars" + }, + { + "appid": 1945720, + "normalized_name": "railway company owner" + }, + { + "appid": 1945730, + "normalized_name": "k pop & rock band manager" + }, + { + "appid": 1945740, + "normalized_name": "jungle resistance" + }, + { + "appid": 1945750, + "normalized_name": "tearstone thieves of the heart" + }, + { + "appid": 1945760, + "normalized_name": "cyphers game" + }, + { + "appid": 1945770, + "normalized_name": "demise sanctuary" + }, + { + "appid": 1945780, + "normalized_name": "under the moon" + }, + { + "appid": 1945790, + "normalized_name": "die drei ??? plan der chamäleonbande" + }, + { + "appid": 1945800, + "normalized_name": "[speer dx]" + }, + { + "appid": 1945820, + "normalized_name": "boxel golf" + }, + { + "appid": 1945850, + "normalized_name": "dark ill 暗黑蛊国" + }, + { + "appid": 1945860, + "normalized_name": "adamstown" + }, + { + "appid": 1945880, + "normalized_name": "少有人:财务自由之路" + }, + { + "appid": 1945890, + "normalized_name": "rocco's inferno" + }, + { + "appid": 1945900, + "normalized_name": "choose your poison" + }, + { + "appid": 1945910, + "normalized_name": "maze to the old castle" + }, + { + "appid": 1945970, + "normalized_name": "epic vampire" + }, + { + "appid": 1945980, + "normalized_name": "the rusty sword vanguard island" + }, + { + "appid": 1945990, + "normalized_name": "minion raid epic monsters" + }, + { + "appid": 1946060, + "normalized_name": "eviltrap" + }, + { + "appid": 1946070, + "normalized_name": "ten dates" + }, + { + "appid": 1946140, + "normalized_name": "jigsaw puzzles infinite" + }, + { + "appid": 1946150, + "normalized_name": "alexandria port of worlds" + }, + { + "appid": 1946170, + "normalized_name": "reindeer story" + }, + { + "appid": 1946260, + "normalized_name": "just a ball jumping in the space" + }, + { + "appid": 1946280, + "normalized_name": "small phrases great stories" + }, + { + "appid": 1946300, + "normalized_name": "masks of deception" + }, + { + "appid": 1946310, + "normalized_name": "escape the ayuwoki demake" + }, + { + "appid": 1946320, + "normalized_name": "kenosis the liminal tapes" + }, + { + "appid": 1946330, + "normalized_name": "f.i.d.o." + }, + { + "appid": 1946340, + "normalized_name": "bulletproof" + }, + { + "appid": 1946380, + "normalized_name": "eternal remnant the first chapter" + }, + { + "appid": 1946430, + "normalized_name": "garage bad dream adventure" + }, + { + "appid": 1946440, + "normalized_name": "starfall protocol" + }, + { + "appid": 1946460, + "normalized_name": "groovy" + }, + { + "appid": 1946470, + "normalized_name": "barbarq 2" + }, + { + "appid": 1946490, + "normalized_name": "bullet quest" + }, + { + "appid": 1946530, + "normalized_name": "futuristic museum" + }, + { + "appid": 1946550, + "normalized_name": "toilet chronicles" + }, + { + "appid": 1946560, + "normalized_name": "sobosuba" + }, + { + "appid": 1946590, + "normalized_name": "纵横" + }, + { + "appid": 1946600, + "normalized_name": "thebestiary" + }, + { + "appid": 1946610, + "normalized_name": "soul street" + }, + { + "appid": 1946650, + "normalized_name": "hehe" + }, + { + "appid": 1946700, + "normalized_name": "layers of fear" + }, + { + "appid": 1946750, + "normalized_name": "demomen ltd. demolish and construction simulator" + }, + { + "appid": 1946760, + "normalized_name": "mechanical sunset" + }, + { + "appid": 1946810, + "normalized_name": "心soul" + }, + { + "appid": 1946840, + "normalized_name": "midway sink the japanese aircraft carriers" + }, + { + "appid": 1946930, + "normalized_name": "ponster 怪武大师" + }, + { + "appid": 1946970, + "normalized_name": "isle of arrows" + }, + { + "appid": 1946980, + "normalized_name": "all alone with mannie" + }, + { + "appid": 1946990, + "normalized_name": "astrocat milky way journey" + }, + { + "appid": 1947020, + "normalized_name": "ukrainians our battle" + }, + { + "appid": 1947030, + "normalized_name": "love in a bottle" + }, + { + "appid": 1947040, + "normalized_name": "trailer tales" + }, + { + "appid": 1947050, + "normalized_name": "delivery in space" + }, + { + "appid": 1947060, + "normalized_name": "on the dragon wings birth of a hero" + }, + { + "appid": 1947070, + "normalized_name": "broken edge" + }, + { + "appid": 1947090, + "normalized_name": "natural spirit" + }, + { + "appid": 1947110, + "normalized_name": "pipi is you" + }, + { + "appid": 1947120, + "normalized_name": "cosmic ascension" + }, + { + "appid": 1947160, + "normalized_name": "cycle" + }, + { + "appid": 1947210, + "normalized_name": "split" + }, + { + "appid": 1947220, + "normalized_name": "terralora" + }, + { + "appid": 1947240, + "normalized_name": "ashen arrows" + }, + { + "appid": 1947260, + "normalized_name": "hidden harbor top down 3d" + }, + { + "appid": 1947270, + "normalized_name": "zom tom" + }, + { + "appid": 1947280, + "normalized_name": "kaos survival" + }, + { + "appid": 1947290, + "normalized_name": "oroboro" + }, + { + "appid": 1947300, + "normalized_name": "five stages of pink" + }, + { + "appid": 1947350, + "normalized_name": "heartstop" + }, + { + "appid": 1947440, + "normalized_name": "uootoy 3671" + }, + { + "appid": 1947460, + "normalized_name": "angel perversion" + }, + { + "appid": 1947470, + "normalized_name": "last of humanity" + }, + { + "appid": 1947490, + "normalized_name": "death's dungeon" + }, + { + "appid": 1947500, + "normalized_name": "the walking dead saints & sinners chapter 2 retribution" + }, + { + "appid": 1947530, + "normalized_name": "fidget spinner rpg" + }, + { + "appid": 1947570, + "normalized_name": "advenclave" + }, + { + "appid": 1947580, + "normalized_name": "two sisters" + }, + { + "appid": 1947660, + "normalized_name": "limit's escape room games" + }, + { + "appid": 1947670, + "normalized_name": "polyemisokos" + }, + { + "appid": 1947690, + "normalized_name": "b.i.n.d." + }, + { + "appid": 1947720, + "normalized_name": "the nihil war" + }, + { + "appid": 1947730, + "normalized_name": "the pit" + }, + { + "appid": 1947750, + "normalized_name": "queen's wish 2 the tormentor" + }, + { + "appid": 1947800, + "normalized_name": "vox siege" + }, + { + "appid": 1947810, + "normalized_name": "being a penguin" + }, + { + "appid": 1947860, + "normalized_name": "automatrain" + }, + { + "appid": 1947890, + "normalized_name": "coffeehouse simulator" + }, + { + "appid": 1947910, + "normalized_name": "opus prism peak" + }, + { + "appid": 1947930, + "normalized_name": "recreation room" + }, + { + "appid": 1947940, + "normalized_name": "beat refle" + }, + { + "appid": 1947950, + "normalized_name": "boxing gym story" + }, + { + "appid": 1947970, + "normalized_name": "moonstuck" + }, + { + "appid": 1947990, + "normalized_name": "pirates digital strategy game" + }, + { + "appid": 1948090, + "normalized_name": "chernobyl origins" + }, + { + "appid": 1948100, + "normalized_name": "lustful ponies" + }, + { + "appid": 1948110, + "normalized_name": "egg over it fall flat from the top" + }, + { + "appid": 1948140, + "normalized_name": "friend or foe" + }, + { + "appid": 1948150, + "normalized_name": "moonphase pass" + }, + { + "appid": 1948190, + "normalized_name": "bad bad" + }, + { + "appid": 1948210, + "normalized_name": "mineralis" + }, + { + "appid": 1948220, + "normalized_name": "intraquartz" + }, + { + "appid": 1948230, + "normalized_name": "veil of maia" + }, + { + "appid": 1948240, + "normalized_name": "shark assault simulator" + }, + { + "appid": 1948280, + "normalized_name": "stacklands" + }, + { + "appid": 1948290, + "normalized_name": "before the last hour" + }, + { + "appid": 1948300, + "normalized_name": "help bipboop" + }, + { + "appid": 1948330, + "normalized_name": "魂之独颂歌 song of souls" + }, + { + "appid": 1948370, + "normalized_name": "let there be light" + }, + { + "appid": 1948390, + "normalized_name": "piero's pilgrimage" + }, + { + "appid": 1948400, + "normalized_name": "elemental land" + }, + { + "appid": 1948420, + "normalized_name": "center mass streets of ramadi" + }, + { + "appid": 1948430, + "normalized_name": "planet s" + }, + { + "appid": 1948440, + "normalized_name": "frostbitten" + }, + { + "appid": 1948450, + "normalized_name": "sex chess" + }, + { + "appid": 1948470, + "normalized_name": "ghost girl lasling" + }, + { + "appid": 1948490, + "normalized_name": "xion leak" + }, + { + "appid": 1948520, + "normalized_name": "dexter stardust odyssey in outer space" + }, + { + "appid": 1948540, + "normalized_name": "exipelago" + }, + { + "appid": 1948550, + "normalized_name": "when bricks fly" + }, + { + "appid": 1948620, + "normalized_name": "albert innovation" + }, + { + "appid": 1948630, + "normalized_name": "vedette" + }, + { + "appid": 1948650, + "normalized_name": "jigsaw novel futanari nurse" + }, + { + "appid": 1948680, + "normalized_name": "cyco" + }, + { + "appid": 1948690, + "normalized_name": "fable of sand paws" + }, + { + "appid": 1948700, + "normalized_name": "gunsoul girl 2" + }, + { + "appid": 1948740, + "normalized_name": "dodge & weave" + }, + { + "appid": 1948780, + "normalized_name": "first time in rome" + }, + { + "appid": 1948800, + "normalized_name": "yi xian the cultivation card game" + }, + { + "appid": 1948870, + "normalized_name": "pierre's adventures in french [learn french]" + }, + { + "appid": 1948890, + "normalized_name": "did you scared" + }, + { + "appid": 1948920, + "normalized_name": "claris the princess knight" + }, + { + "appid": 1948930, + "normalized_name": "ambitious" + }, + { + "appid": 1948940, + "normalized_name": "japanese romaji adventure 3d" + }, + { + "appid": 1948960, + "normalized_name": "other" + }, + { + "appid": 1948980, + "normalized_name": "大侠立志传" + }, + { + "appid": 1949000, + "normalized_name": "catgirls from my sweet dream" + }, + { + "appid": 1949010, + "normalized_name": "room 301 no.6" + }, + { + "appid": 1949030, + "normalized_name": "sherlock holmes the awakened" + }, + { + "appid": 1949100, + "normalized_name": "my fantastic ranch unicorns & dragons" + }, + { + "appid": 1949130, + "normalized_name": "defensive measures" + }, + { + "appid": 1949140, + "normalized_name": "rule the world chess" + }, + { + "appid": 1949150, + "normalized_name": "cradlemoor" + }, + { + "appid": 1949170, + "normalized_name": "星之传说" + }, + { + "appid": 1949180, + "normalized_name": "nocturama" + }, + { + "appid": 1949190, + "normalized_name": "necrosmith" + }, + { + "appid": 1949210, + "normalized_name": "hold on" + }, + { + "appid": 1949220, + "normalized_name": "steel ocean wolves of deep sea" + }, + { + "appid": 1949260, + "normalized_name": "critias empire" + }, + { + "appid": 1949290, + "normalized_name": "welcome get out!" + }, + { + "appid": 1949300, + "normalized_name": "exit the curse of ophir" + }, + { + "appid": 1949310, + "normalized_name": "eternals' path" + }, + { + "appid": 1949330, + "normalized_name": "jigsaw savant" + }, + { + "appid": 1949370, + "normalized_name": "8/8/88 needle al" + }, + { + "appid": 1949380, + "normalized_name": "capture creatures" + }, + { + "appid": 1949420, + "normalized_name": "ren's demons i" + }, + { + "appid": 1949440, + "normalized_name": "burrow of the fallen bear a gay furry visual novel" + }, + { + "appid": 1949480, + "normalized_name": "airborne" + }, + { + "appid": 1949490, + "normalized_name": "yummy chicken dragon" + }, + { + "appid": 1949500, + "normalized_name": "cryptids" + }, + { + "appid": 1949570, + "normalized_name": "recoil" + }, + { + "appid": 1949600, + "normalized_name": "star jet alpha" + }, + { + "appid": 1949610, + "normalized_name": "luminous nights" + }, + { + "appid": 1949620, + "normalized_name": "seething things" + }, + { + "appid": 1949640, + "normalized_name": "赛博病毒" + }, + { + "appid": 1949670, + "normalized_name": "bluem" + }, + { + "appid": 1949680, + "normalized_name": "it's all in your head" + }, + { + "appid": 1949700, + "normalized_name": "monsters in the shadows" + }, + { + "appid": 1949720, + "normalized_name": "dandi world" + }, + { + "appid": 1949740, + "normalized_name": "banana shooter" + }, + { + "appid": 1949750, + "normalized_name": "slime corp" + }, + { + "appid": 1949770, + "normalized_name": "rock simulator 2" + }, + { + "appid": 1949810, + "normalized_name": "rocket mania" + }, + { + "appid": 1949840, + "normalized_name": "disharmonia" + }, + { + "appid": 1949850, + "normalized_name": "collapsed" + }, + { + "appid": 1949880, + "normalized_name": "幻想与冒险" + }, + { + "appid": 1949890, + "normalized_name": "jack & detectives the silent social deduction game" + }, + { + "appid": 1949930, + "normalized_name": "animaddicts 4" + }, + { + "appid": 1949960, + "normalized_name": "super kiwi 64" + }, + { + "appid": 1949970, + "normalized_name": "j jump arena" + }, + { + "appid": 1949980, + "normalized_name": "filf" + }, + { + "appid": 1950000, + "normalized_name": "merge cats idle game" + }, + { + "appid": 1950020, + "normalized_name": "the hand of glory the blowtorch files" + }, + { + "appid": 1950080, + "normalized_name": "cyber bay" + }, + { + "appid": 1950200, + "normalized_name": "loathful" + }, + { + "appid": 1950230, + "normalized_name": "galactic diner" + }, + { + "appid": 1950240, + "normalized_name": "terrovox" + }, + { + "appid": 1950250, + "normalized_name": "mapstermind" + }, + { + "appid": 1950270, + "normalized_name": "dungeonrite" + }, + { + "appid": 1950300, + "normalized_name": "colorful" + }, + { + "appid": 1950310, + "normalized_name": "until the end" + }, + { + "appid": 1950370, + "normalized_name": "revenge master" + }, + { + "appid": 1950420, + "normalized_name": "defenceorder" + }, + { + "appid": 1950440, + "normalized_name": "mage and monsters" + }, + { + "appid": 1950450, + "normalized_name": "escape dungeon 3 loop queen" + }, + { + "appid": 1950460, + "normalized_name": "my trainer is a futanari" + }, + { + "appid": 1950490, + "normalized_name": "nova cloudwalker's tale" + }, + { + "appid": 1950520, + "normalized_name": "危险岛 dangerousisland" + }, + { + "appid": 1950530, + "normalized_name": "trouble of tabu" + }, + { + "appid": 1950570, + "normalized_name": "イハナシの魔女" + }, + { + "appid": 1950580, + "normalized_name": "plumpy uprising" + }, + { + "appid": 1950590, + "normalized_name": "alien town invasion" + }, + { + "appid": 1950600, + "normalized_name": "welly wang vr" + }, + { + "appid": 1950610, + "normalized_name": "sweet solitaire. school witch 2" + }, + { + "appid": 1950620, + "normalized_name": "mystery solitaire. the black raven 3" + }, + { + "appid": 1950630, + "normalized_name": "mystery solitaire. grimm's tales 6" + }, + { + "appid": 1950640, + "normalized_name": "mystery solitaire. powerful alchemist 3" + }, + { + "appid": 1950650, + "normalized_name": "sweet solitaire. school witch 3" + }, + { + "appid": 1950670, + "normalized_name": "mystery solitaire. grimm's tales 7" + }, + { + "appid": 1950680, + "normalized_name": "1001 jigsaw. legends of mystery 4" + }, + { + "appid": 1950690, + "normalized_name": "1001 jigsaw. home sweet home 2" + }, + { + "appid": 1950700, + "normalized_name": "1001 jigsaw. castles and palaces 3" + }, + { + "appid": 1950710, + "normalized_name": "1001 jigsaw. legends of mystery 5" + }, + { + "appid": 1950720, + "normalized_name": "1001 jigsaw. interior design" + }, + { + "appid": 1950760, + "normalized_name": "project luna" + }, + { + "appid": 1950770, + "normalized_name": "tales of fire" + }, + { + "appid": 1950820, + "normalized_name": "mechabot defender" + }, + { + "appid": 1950830, + "normalized_name": "arena brutal" + }, + { + "appid": 1950920, + "normalized_name": "vacuum story" + }, + { + "appid": 1950930, + "normalized_name": "the golden eyed ghosts" + }, + { + "appid": 1951030, + "normalized_name": "pixel game maker series fish tornado" + }, + { + "appid": 1951040, + "normalized_name": "黑帮英豪" + }, + { + "appid": 1951050, + "normalized_name": "tournament of beans" + }, + { + "appid": 1951060, + "normalized_name": "fantasy zoo" + }, + { + "appid": 1951140, + "normalized_name": "kaiju" + }, + { + "appid": 1951210, + "normalized_name": "railmoto" + }, + { + "appid": 1951220, + "normalized_name": "道衍诀" + }, + { + "appid": 1951230, + "normalized_name": "pizza possum" + }, + { + "appid": 1951260, + "normalized_name": "spotted garden eel adventure" + }, + { + "appid": 1951300, + "normalized_name": "my girlfriend is a musician" + }, + { + "appid": 1951350, + "normalized_name": "the delusions of maximillian wurst" + }, + { + "appid": 1951380, + "normalized_name": "diptych the great war" + }, + { + "appid": 1951410, + "normalized_name": "we are football 2024" + }, + { + "appid": 1951420, + "normalized_name": "the tower of luminus" + }, + { + "appid": 1951460, + "normalized_name": "carnage" + }, + { + "appid": 1951480, + "normalized_name": "researchity | open world survival game" + }, + { + "appid": 1951500, + "normalized_name": "let it boom" + }, + { + "appid": 1951520, + "normalized_name": "romp of dump" + }, + { + "appid": 1951530, + "normalized_name": "carnival of gods oppression" + }, + { + "appid": 1951540, + "normalized_name": "the tennis master" + }, + { + "appid": 1951560, + "normalized_name": "heart of battle" + }, + { + "appid": 1951650, + "normalized_name": "calcium chaos derailed" + }, + { + "appid": 1951660, + "normalized_name": "we see you" + }, + { + "appid": 1951680, + "normalized_name": "wibble" + }, + { + "appid": 1951720, + "normalized_name": "costume clash" + }, + { + "appid": 1951750, + "normalized_name": "this is a game" + }, + { + "appid": 1951760, + "normalized_name": "cracked" + }, + { + "appid": 1951780, + "normalized_name": "jumping jazz cats" + }, + { + "appid": 1951800, + "normalized_name": "arenas of tanks" + }, + { + "appid": 1951840, + "normalized_name": "dungeoneer" + }, + { + "appid": 1951850, + "normalized_name": "fluff" + }, + { + "appid": 1951880, + "normalized_name": "sex diary futanari massage" + }, + { + "appid": 1951900, + "normalized_name": "volunteers" + }, + { + "appid": 1951910, + "normalized_name": "dash and slash" + }, + { + "appid": 1951920, + "normalized_name": "ruthless 1" + }, + { + "appid": 1951940, + "normalized_name": "eschaton" + }, + { + "appid": 1951970, + "normalized_name": "abedot family estate search for hidden objects" + }, + { + "appid": 1952020, + "normalized_name": "braveboy" + }, + { + "appid": 1952030, + "normalized_name": "magic tower (destroy the wormhole)" + }, + { + "appid": 1952100, + "normalized_name": "don'tgetcaught" + }, + { + "appid": 1952160, + "normalized_name": "march to a million" + }, + { + "appid": 1952170, + "normalized_name": "cafeteria nipponica" + }, + { + "appid": 1952180, + "normalized_name": "the sinking structure clione and lost child log6" + }, + { + "appid": 1952210, + "normalized_name": "sound hidden forest" + }, + { + "appid": 1952240, + "normalized_name": "pixel game maker series oma2ri adventure" + }, + { + "appid": 1952250, + "normalized_name": "samurai maiden" + }, + { + "appid": 1952260, + "normalized_name": "forget me not" + }, + { + "appid": 1952270, + "normalized_name": "the immortal" + }, + { + "appid": 1952310, + "normalized_name": "signs of birth" + }, + { + "appid": 1952340, + "normalized_name": "poly skies" + }, + { + "appid": 1952370, + "normalized_name": "oblivion override" + }, + { + "appid": 1952400, + "normalized_name": "new horizon" + }, + { + "appid": 1952440, + "normalized_name": "魂之起源 god souls" + }, + { + "appid": 1952450, + "normalized_name": "autogame deluxe" + }, + { + "appid": 1952490, + "normalized_name": "alice | 愛莉澄" + }, + { + "appid": 1952520, + "normalized_name": "paw patrol world" + }, + { + "appid": 1952540, + "normalized_name": "voltaire the vegan vampire" + }, + { + "appid": 1952550, + "normalized_name": "mini island cosmos" + }, + { + "appid": 1952560, + "normalized_name": "dogs k9 uprising" + }, + { + "appid": 1952590, + "normalized_name": "future racer 2000" + }, + { + "appid": 1952620, + "normalized_name": "the lost wild" + }, + { + "appid": 1952630, + "normalized_name": "sea of choices" + }, + { + "appid": 1952670, + "normalized_name": "inferos numine descent into darkness" + }, + { + "appid": 1952690, + "normalized_name": "bytebond" + }, + { + "appid": 1952740, + "normalized_name": "infinite turtles" + }, + { + "appid": 1952750, + "normalized_name": "baradroid a gay visual novel" + }, + { + "appid": 1952760, + "normalized_name": "rgb rush" + }, + { + "appid": 1952770, + "normalized_name": "conquestareas" + }, + { + "appid": 1952780, + "normalized_name": "spider slingers" + }, + { + "appid": 1952810, + "normalized_name": "vr pong" + }, + { + "appid": 1952820, + "normalized_name": "open spaces se" + }, + { + "appid": 1952860, + "normalized_name": "wika wicked's egg" + }, + { + "appid": 1952890, + "normalized_name": "scary husband hd anime horror game" + }, + { + "appid": 1952900, + "normalized_name": "traumada" + }, + { + "appid": 1952910, + "normalized_name": "social moth" + }, + { + "appid": 1952920, + "normalized_name": "strikers club" + }, + { + "appid": 1952930, + "normalized_name": "soul wargame" + }, + { + "appid": 1952950, + "normalized_name": "restaurant simulator" + }, + { + "appid": 1952960, + "normalized_name": "movie theater simulator" + }, + { + "appid": 1952970, + "normalized_name": "reality simulator" + }, + { + "appid": 1952980, + "normalized_name": "hideandhunt" + }, + { + "appid": 1952990, + "normalized_name": "battle of billionaires" + }, + { + "appid": 1953000, + "normalized_name": "fish 'n' chips" + }, + { + "appid": 1953020, + "normalized_name": "lab remnants" + }, + { + "appid": 1953060, + "normalized_name": "time thief" + }, + { + "appid": 1953070, + "normalized_name": "sd shin kamen rider rumble" + }, + { + "appid": 1953100, + "normalized_name": "rat memory" + }, + { + "appid": 1953120, + "normalized_name": "grief visual novel" + }, + { + "appid": 1953170, + "normalized_name": "rose action" + }, + { + "appid": 1953210, + "normalized_name": "hungry animals" + }, + { + "appid": 1953220, + "normalized_name": "gem tower defense 2" + }, + { + "appid": 1953230, + "normalized_name": "whisper mountain outbreak" + }, + { + "appid": 1953240, + "normalized_name": "zeus quest the rebirth of earth" + }, + { + "appid": 1953370, + "normalized_name": "bowerwhelm" + }, + { + "appid": 1953380, + "normalized_name": "dungeon rummage tiqee's escape" + }, + { + "appid": 1953410, + "normalized_name": "armored sinner" + }, + { + "appid": 1953430, + "normalized_name": "dearmyfriend" + }, + { + "appid": 1953470, + "normalized_name": "sim world" + }, + { + "appid": 1953490, + "normalized_name": "seven deadly dates" + }, + { + "appid": 1953510, + "normalized_name": "ro bounce" + }, + { + "appid": 1953520, + "normalized_name": "wrc generations – the fia wrc official game" + }, + { + "appid": 1953530, + "normalized_name": "the last man" + }, + { + "appid": 1953540, + "normalized_name": "furry shades of gay 3 still gayer" + }, + { + "appid": 1953550, + "normalized_name": "forest grump" + }, + { + "appid": 1953560, + "normalized_name": "phantom racing" + }, + { + "appid": 1953580, + "normalized_name": "samurai solitaire. threads of fate" + }, + { + "appid": 1953590, + "normalized_name": "sailor’s stories solitaire" + }, + { + "appid": 1953600, + "normalized_name": "election town" + }, + { + "appid": 1953620, + "normalized_name": "alone in the crowd" + }, + { + "appid": 1953630, + "normalized_name": "dodo a story of flight" + }, + { + "appid": 1953650, + "normalized_name": "super destronaut land wars" + }, + { + "appid": 1953660, + "normalized_name": "attack of the toy tanks" + }, + { + "appid": 1953670, + "normalized_name": "quetzal's call" + }, + { + "appid": 1953760, + "normalized_name": "symbiotic" + }, + { + "appid": 1953770, + "normalized_name": "soulitaire" + }, + { + "appid": 1953780, + "normalized_name": "純愛貓娘的同居生活" + }, + { + "appid": 1953840, + "normalized_name": "fantasy battle islands" + }, + { + "appid": 1953850, + "normalized_name": "vice undercover" + }, + { + "appid": 1953860, + "normalized_name": "garden in!" + }, + { + "appid": 1953870, + "normalized_name": "project nautilus" + }, + { + "appid": 1953920, + "normalized_name": "crescent bloom" + }, + { + "appid": 1953960, + "normalized_name": "destoria the withering" + }, + { + "appid": 1953970, + "normalized_name": "math expressions" + }, + { + "appid": 1953980, + "normalized_name": "worm goes to hell" + }, + { + "appid": 1954010, + "normalized_name": "escape from deathmark dungeon" + }, + { + "appid": 1954020, + "normalized_name": "cupid kiss" + }, + { + "appid": 1954050, + "normalized_name": "memory shards" + }, + { + "appid": 1954070, + "normalized_name": "egg ascent" + }, + { + "appid": 1954100, + "normalized_name": "bunny hop eggstreme" + }, + { + "appid": 1954130, + "normalized_name": "meifumado" + }, + { + "appid": 1954160, + "normalized_name": "to pixelia" + }, + { + "appid": 1954200, + "normalized_name": "kena bridge of spirits" + }, + { + "appid": 1954230, + "normalized_name": "森令" + }, + { + "appid": 1954250, + "normalized_name": "dragon's dilemma" + }, + { + "appid": 1954260, + "normalized_name": "rhyverse" + }, + { + "appid": 1954300, + "normalized_name": "porcupine's fate" + }, + { + "appid": 1954310, + "normalized_name": "doomsday" + }, + { + "appid": 1954330, + "normalized_name": "洪荒五行界" + }, + { + "appid": 1954340, + "normalized_name": "aeons past" + }, + { + "appid": 1954360, + "normalized_name": "uncle heff" + }, + { + "appid": 1954380, + "normalized_name": "挖掘机大战挖掘机 / mine clash" + }, + { + "appid": 1954420, + "normalized_name": "麻雀一番街" + }, + { + "appid": 1954440, + "normalized_name": "oneshotrogue" + }, + { + "appid": 1954520, + "normalized_name": "修理行 dullpain" + }, + { + "appid": 1954550, + "normalized_name": "project hover" + }, + { + "appid": 1954570, + "normalized_name": "死亡地牢 death dungeon" + }, + { + "appid": 1954590, + "normalized_name": "derelict kingdom the ancient lie" + }, + { + "appid": 1954640, + "normalized_name": "真空战姬" + }, + { + "appid": 1954650, + "normalized_name": "roley's arcade collection" + }, + { + "appid": 1954680, + "normalized_name": "story in the dream world 3 sinister island's mysterious mist" + }, + { + "appid": 1954720, + "normalized_name": "tameshi" + }, + { + "appid": 1954750, + "normalized_name": "acquitted" + }, + { + "appid": 1954830, + "normalized_name": "milk me darling" + }, + { + "appid": 1954840, + "normalized_name": "fractured sanity" + }, + { + "appid": 1954880, + "normalized_name": "剑冢 swords tomb" + }, + { + "appid": 1954910, + "normalized_name": "alienate! (a trivia game)" + }, + { + "appid": 1954930, + "normalized_name": "stronghold’s dungeon" + }, + { + "appid": 1954990, + "normalized_name": "wieldo" + }, + { + "appid": 1955000, + "normalized_name": "3d puzzle alchemist house" + }, + { + "appid": 1955010, + "normalized_name": "hard ball wikie" + }, + { + "appid": 1955030, + "normalized_name": "scp event classified" + }, + { + "appid": 1955040, + "normalized_name": "the aquatic messenger" + }, + { + "appid": 1955100, + "normalized_name": "怯懦 cowardice" + }, + { + "appid": 1955110, + "normalized_name": "star stuff" + }, + { + "appid": 1955120, + "normalized_name": "nemire" + }, + { + "appid": 1955150, + "normalized_name": "lux ex cyber initiation" + }, + { + "appid": 1955160, + "normalized_name": "mearth" + }, + { + "appid": 1955170, + "normalized_name": "guns and spurs 2" + }, + { + "appid": 1955200, + "normalized_name": "gate builders" + }, + { + "appid": 1955230, + "normalized_name": "penny’s big breakaway" + }, + { + "appid": 1955260, + "normalized_name": "nightmare rooms vr" + }, + { + "appid": 1955300, + "normalized_name": "voidhunter" + }, + { + "appid": 1955310, + "normalized_name": "the eyes" + }, + { + "appid": 1955320, + "normalized_name": "american cars 'n guns" + }, + { + "appid": 1955330, + "normalized_name": "save room organization puzzle" + }, + { + "appid": 1955340, + "normalized_name": "super raft boat together" + }, + { + "appid": 1955380, + "normalized_name": "sarissa and the legendary sword" + }, + { + "appid": 1955390, + "normalized_name": "playable mockup" + }, + { + "appid": 1955410, + "normalized_name": "dash shooters" + }, + { + "appid": 1955420, + "normalized_name": "bounters" + }, + { + "appid": 1955440, + "normalized_name": "tick tack puppet" + }, + { + "appid": 1955450, + "normalized_name": "our dark heart" + }, + { + "appid": 1955490, + "normalized_name": "cavefiction 洞窟寓言" + }, + { + "appid": 1955500, + "normalized_name": "creature discomfort" + }, + { + "appid": 1955520, + "normalized_name": "escape from the marble monster" + }, + { + "appid": 1955640, + "normalized_name": "mystical map" + }, + { + "appid": 1955650, + "normalized_name": "romance in space" + }, + { + "appid": 1955690, + "normalized_name": "ready action" + }, + { + "appid": 1955700, + "normalized_name": "kids on site hard hat" + }, + { + "appid": 1955720, + "normalized_name": "breaking the silent lies" + }, + { + "appid": 1955750, + "normalized_name": "silent scream" + }, + { + "appid": 1955790, + "normalized_name": "roots of rebirth" + }, + { + "appid": 1955800, + "normalized_name": "transformers earthspark expedition" + }, + { + "appid": 1955820, + "normalized_name": "bubble shot" + }, + { + "appid": 1955830, + "normalized_name": "touhouherooficefairy" + }, + { + "appid": 1955850, + "normalized_name": "basureroes invasion" + }, + { + "appid": 1955950, + "normalized_name": "poker loafer" + }, + { + "appid": 1955960, + "normalized_name": "hawked" + }, + { + "appid": 1955970, + "normalized_name": "something weird in space a hidden object adventure" + }, + { + "appid": 1955980, + "normalized_name": "arsilon" + }, + { + "appid": 1955990, + "normalized_name": "roguestone" + }, + { + "appid": 1956040, + "normalized_name": "kingdom eighties" + }, + { + "appid": 1956110, + "normalized_name": "landport" + }, + { + "appid": 1956120, + "normalized_name": "famished zombies decisive extermination" + }, + { + "appid": 1956140, + "normalized_name": "a haunted history" + }, + { + "appid": 1956180, + "normalized_name": "catbusters" + }, + { + "appid": 1956220, + "normalized_name": "draeascaria" + }, + { + "appid": 1956230, + "normalized_name": "brazil fencing club vr" + }, + { + "appid": 1956240, + "normalized_name": "world of music interactive simulator" + }, + { + "appid": 1956260, + "normalized_name": "cities virtual reality" + }, + { + "appid": 1956270, + "normalized_name": "dastardly" + }, + { + "appid": 1956280, + "normalized_name": "k3lvn" + }, + { + "appid": 1956300, + "normalized_name": "beer break" + }, + { + "appid": 1956310, + "normalized_name": "scandal notes" + }, + { + "appid": 1956330, + "normalized_name": "revere" + }, + { + "appid": 1956350, + "normalized_name": "the appraiser" + }, + { + "appid": 1956370, + "normalized_name": "wtf do you know?" + }, + { + "appid": 1956400, + "normalized_name": "pistola" + }, + { + "appid": 1956410, + "normalized_name": "enjoytyping" + }, + { + "appid": 1956420, + "normalized_name": "tactac prologue" + }, + { + "appid": 1956430, + "normalized_name": "terminal velocity boosted" + }, + { + "appid": 1956490, + "normalized_name": "smash therapy" + }, + { + "appid": 1956560, + "normalized_name": "lifelike" + }, + { + "appid": 1956570, + "normalized_name": "dimension m" + }, + { + "appid": 1956600, + "normalized_name": "融雪" + }, + { + "appid": 1956620, + "normalized_name": "游戏一锅粥" + }, + { + "appid": 1956630, + "normalized_name": "sway" + }, + { + "appid": 1956650, + "normalized_name": "space spider" + }, + { + "appid": 1956670, + "normalized_name": "biomisland" + }, + { + "appid": 1956680, + "normalized_name": "axial disc 2" + }, + { + "appid": 1956730, + "normalized_name": "we were kidnapped" + }, + { + "appid": 1956740, + "normalized_name": "argentum online" + }, + { + "appid": 1956770, + "normalized_name": "m.o.o.d.s." + }, + { + "appid": 1956790, + "normalized_name": "nuwe first seeds" + }, + { + "appid": 1956800, + "normalized_name": "thriving city song" + }, + { + "appid": 1956820, + "normalized_name": "edge run" + }, + { + "appid": 1956840, + "normalized_name": "p r i s m a visual novel" + }, + { + "appid": 1956850, + "normalized_name": "project mind" + }, + { + "appid": 1956860, + "normalized_name": "down fast vr" + }, + { + "appid": 1956910, + "normalized_name": "steel flood" + }, + { + "appid": 1956930, + "normalized_name": "skellies ain't scary" + }, + { + "appid": 1956960, + "normalized_name": "punihi loader 2" + }, + { + "appid": 1956990, + "normalized_name": "samurai" + }, + { + "appid": 1957010, + "normalized_name": "undead under night rain" + }, + { + "appid": 1957040, + "normalized_name": "ukrainien agent" + }, + { + "appid": 1957060, + "normalized_name": "ntr dream" + }, + { + "appid": 1957070, + "normalized_name": "click and collect" + }, + { + "appid": 1957080, + "normalized_name": "our fate forsaken boys love (bl) visual novel" + }, + { + "appid": 1957100, + "normalized_name": "natal perdido" + }, + { + "appid": 1957110, + "normalized_name": "christmas shooter" + }, + { + "appid": 1957120, + "normalized_name": "ahorcado 3d hangedman 3d" + }, + { + "appid": 1957130, + "normalized_name": "night of love 🌓" + }, + { + "appid": 1957150, + "normalized_name": "chaos law" + }, + { + "appid": 1957160, + "normalized_name": "l'avancée du désert" + }, + { + "appid": 1957170, + "normalized_name": "the unsettled" + }, + { + "appid": 1957210, + "normalized_name": "dogs cyberpuzzle" + }, + { + "appid": 1957220, + "normalized_name": "departure." + }, + { + "appid": 1957230, + "normalized_name": "employee of the month" + }, + { + "appid": 1957240, + "normalized_name": "hacker man" + }, + { + "appid": 1957270, + "normalized_name": "the missing thing" + }, + { + "appid": 1957300, + "normalized_name": "the sirena expedition" + }, + { + "appid": 1957310, + "normalized_name": "island girl" + }, + { + "appid": 1957340, + "normalized_name": "fool's curse" + }, + { + "appid": 1957380, + "normalized_name": "princess of seas" + }, + { + "appid": 1957430, + "normalized_name": "sock it" + }, + { + "appid": 1957460, + "normalized_name": "the wilderness" + }, + { + "appid": 1957560, + "normalized_name": "spyer" + }, + { + "appid": 1957590, + "normalized_name": "armored lab force vulvehicles" + }, + { + "appid": 1957620, + "normalized_name": "人生!重新开始吧!泰诺特的冒险" + }, + { + "appid": 1957650, + "normalized_name": "bitch demon twins" + }, + { + "appid": 1957660, + "normalized_name": "redmask" + }, + { + "appid": 1957670, + "normalized_name": "grand strokers" + }, + { + "appid": 1957680, + "normalized_name": "mount wingsuit 2" + }, + { + "appid": 1957700, + "normalized_name": "victory7" + }, + { + "appid": 1957750, + "normalized_name": "minarchy active shooter" + }, + { + "appid": 1957760, + "normalized_name": "islands & trains" + }, + { + "appid": 1957780, + "normalized_name": "ghosts of tabor" + }, + { + "appid": 1957790, + "normalized_name": "进击的僵尸" + }, + { + "appid": 1957820, + "normalized_name": "the detail's in the devils" + }, + { + "appid": 1957830, + "normalized_name": "firefly witch" + }, + { + "appid": 1957860, + "normalized_name": "anna vs the a.i.maze" + }, + { + "appid": 1957880, + "normalized_name": "manglepaw" + }, + { + "appid": 1957890, + "normalized_name": "dds defenders dark side" + }, + { + "appid": 1957910, + "normalized_name": "farmland realm" + }, + { + "appid": 1957940, + "normalized_name": "kokoro" + }, + { + "appid": 1957990, + "normalized_name": "tile cities" + }, + { + "appid": 1958020, + "normalized_name": "aqua populo" + }, + { + "appid": 1958040, + "normalized_name": "maps u.s.a." + }, + { + "appid": 1958120, + "normalized_name": "rail walkers" + }, + { + "appid": 1958130, + "normalized_name": "the backrooms found footage" + }, + { + "appid": 1958140, + "normalized_name": "mariam game" + }, + { + "appid": 1958190, + "normalized_name": "minitrans" + }, + { + "appid": 1958220, + "normalized_name": "witchspring r" + }, + { + "appid": 1958230, + "normalized_name": "loony" + }, + { + "appid": 1958240, + "normalized_name": "true skate" + }, + { + "appid": 1958250, + "normalized_name": "鬥犬 dog fighting" + }, + { + "appid": 1958270, + "normalized_name": "strip 'em ii facka's game" + }, + { + "appid": 1958340, + "normalized_name": "cube chaos" + }, + { + "appid": 1958350, + "normalized_name": "river rush" + }, + { + "appid": 1958360, + "normalized_name": "forklore" + }, + { + "appid": 1958390, + "normalized_name": "innocence or money season 1 episodes 1 to 3" + }, + { + "appid": 1958400, + "normalized_name": "that's not how it happened" + }, + { + "appid": 1958460, + "normalized_name": "new yankee battle for the bride" + }, + { + "appid": 1958530, + "normalized_name": "wathitdew record game studio battlefield" + }, + { + "appid": 1958540, + "normalized_name": "graviators" + }, + { + "appid": 1958570, + "normalized_name": "the 7th sign project" + }, + { + "appid": 1958600, + "normalized_name": "barro f22" + }, + { + "appid": 1958620, + "normalized_name": "aznak" + }, + { + "appid": 1958750, + "normalized_name": "hexfactory" + }, + { + "appid": 1958800, + "normalized_name": "duppy detective tashia" + }, + { + "appid": 1958810, + "normalized_name": "my bunny girl" + }, + { + "appid": 1958850, + "normalized_name": "redacted" + }, + { + "appid": 1958860, + "normalized_name": "otoko cross pretty boys klondike solitaire" + }, + { + "appid": 1958890, + "normalized_name": "outrace" + }, + { + "appid": 1958900, + "normalized_name": "rainbow tap" + }, + { + "appid": 1958950, + "normalized_name": "doggo estates" + }, + { + "appid": 1958970, + "normalized_name": "idle galaxy" + }, + { + "appid": 1959040, + "normalized_name": "bound in time" + }, + { + "appid": 1959050, + "normalized_name": "exiori" + }, + { + "appid": 1959120, + "normalized_name": "blacksmith simulator" + }, + { + "appid": 1959140, + "normalized_name": "diesel legacy the brazen age" + }, + { + "appid": 1959260, + "normalized_name": "my therapist is a futanari 2" + }, + { + "appid": 1959280, + "normalized_name": "over jump rally" + }, + { + "appid": 1959330, + "normalized_name": "alienstein" + }, + { + "appid": 1959340, + "normalized_name": "join the law" + }, + { + "appid": 1959350, + "normalized_name": "homebody" + }, + { + "appid": 1959380, + "normalized_name": "c&t" + }, + { + "appid": 1959390, + "normalized_name": "fear the spotlight" + }, + { + "appid": 1959400, + "normalized_name": "arobynn the first adventure" + }, + { + "appid": 1959410, + "normalized_name": "nibiru" + }, + { + "appid": 1959440, + "normalized_name": "balance knight" + }, + { + "appid": 1959470, + "normalized_name": "ambulance emergency simulation" + }, + { + "appid": 1959480, + "normalized_name": "eternal edge+ prologue" + }, + { + "appid": 1959490, + "normalized_name": "the last tater" + }, + { + "appid": 1959510, + "normalized_name": "i hate you please suffer basic" + }, + { + "appid": 1959520, + "normalized_name": "story of eve 2" + }, + { + "appid": 1959530, + "normalized_name": "extra case my girlfriend's secrets" + }, + { + "appid": 1959540, + "normalized_name": "kindlepath watch" + }, + { + "appid": 1959580, + "normalized_name": "supermoves world of parkour" + }, + { + "appid": 1959620, + "normalized_name": "arkell" + }, + { + "appid": 1959660, + "normalized_name": "孤星蒲公英" + }, + { + "appid": 1959780, + "normalized_name": "七月 july" + }, + { + "appid": 1959840, + "normalized_name": "the rewind factory" + }, + { + "appid": 1959880, + "normalized_name": "rogue door defense" + }, + { + "appid": 1959890, + "normalized_name": "mandate eternal" + }, + { + "appid": 1959900, + "normalized_name": "转生成为史莱姆的我变成了美少女的宠物" + }, + { + "appid": 1959940, + "normalized_name": "wormhole adventurer" + }, + { + "appid": 1959960, + "normalized_name": "burg" + }, + { + "appid": 1959990, + "normalized_name": "bash sports online bowling" + }, + { + "appid": 1960000, + "normalized_name": "platform roll" + }, + { + "appid": 1960010, + "normalized_name": "insanity ice" + }, + { + "appid": 1960040, + "normalized_name": "high velocity arena" + }, + { + "appid": 1960050, + "normalized_name": "krispain hero roguelite dungeon shooter fire simulator counter fps world" + }, + { + "appid": 1960060, + "normalized_name": "faith & shield 4044 tower defense" + }, + { + "appid": 1960070, + "normalized_name": "rin the last child" + }, + { + "appid": 1960100, + "normalized_name": "valera the drunken lobster" + }, + { + "appid": 1960110, + "normalized_name": "silent hope" + }, + { + "appid": 1960170, + "normalized_name": "alumni escape room adventure" + }, + { + "appid": 1960190, + "normalized_name": "what lies between" + }, + { + "appid": 1960200, + "normalized_name": "achat next" + }, + { + "appid": 1960250, + "normalized_name": "blood of yamin" + }, + { + "appid": 1960270, + "normalized_name": "lootun" + }, + { + "appid": 1960300, + "normalized_name": "world at war 85 digital core game" + }, + { + "appid": 1960320, + "normalized_name": "rhythmic keyboard" + }, + { + "appid": 1960330, + "normalized_name": "alchemia creatio ex nihilo" + }, + { + "appid": 1960360, + "normalized_name": "boot & shoot" + }, + { + "appid": 1960380, + "normalized_name": "čeke ceké" + }, + { + "appid": 1960400, + "normalized_name": "sokochess" + }, + { + "appid": 1960480, + "normalized_name": "autoforge" + }, + { + "appid": 1960530, + "normalized_name": "voltcube" + }, + { + "appid": 1960560, + "normalized_name": "超超超硬核格斗王" + }, + { + "appid": 1960570, + "normalized_name": "plank road" + }, + { + "appid": 1960590, + "normalized_name": "i am sakuya touhou fps game" + }, + { + "appid": 1960610, + "normalized_name": "the ball flow nature and light" + }, + { + "appid": 1960620, + "normalized_name": "4d chess" + }, + { + "appid": 1960630, + "normalized_name": "cursed 2" + }, + { + "appid": 1960650, + "normalized_name": "dash around madly" + }, + { + "appid": 1960680, + "normalized_name": "孤堡重围" + }, + { + "appid": 1960710, + "normalized_name": "simulacrum" + }, + { + "appid": 1960790, + "normalized_name": "битва героев 3" + }, + { + "appid": 1960800, + "normalized_name": "overrogue" + }, + { + "appid": 1960830, + "normalized_name": "tamayura mirai" + }, + { + "appid": 1960870, + "normalized_name": "hypnosis reveries" + }, + { + "appid": 1960880, + "normalized_name": "无名者" + }, + { + "appid": 1960890, + "normalized_name": "jishogi" + }, + { + "appid": 1960900, + "normalized_name": "judero" + }, + { + "appid": 1960920, + "normalized_name": "zetria" + }, + { + "appid": 1960930, + "normalized_name": "the lab escape room" + }, + { + "appid": 1960950, + "normalized_name": "monsterlands" + }, + { + "appid": 1960970, + "normalized_name": "hard block girls sex life" + }, + { + "appid": 1960980, + "normalized_name": "lastland" + }, + { + "appid": 1961010, + "normalized_name": "family tree fruity action puzzle fun!" + }, + { + "appid": 1961020, + "normalized_name": "the warrior's path" + }, + { + "appid": 1961030, + "normalized_name": "project the mir incident" + }, + { + "appid": 1961040, + "normalized_name": "zion survivors" + }, + { + "appid": 1961050, + "normalized_name": "party universe" + }, + { + "appid": 1961060, + "normalized_name": "pawsecuted" + }, + { + "appid": 1961120, + "normalized_name": "dragonscales 7 a heart of dark flames" + }, + { + "appid": 1961130, + "normalized_name": "la vie la rue" + }, + { + "appid": 1961160, + "normalized_name": "cats love boxes" + }, + { + "appid": 1961190, + "normalized_name": "rob" + }, + { + "appid": 1961210, + "normalized_name": "ai (onic)" + }, + { + "appid": 1961230, + "normalized_name": "crazy cook" + }, + { + "appid": 1961250, + "normalized_name": "extinction eclipse" + }, + { + "appid": 1961260, + "normalized_name": "running on magic" + }, + { + "appid": 1961300, + "normalized_name": "is simon there?" + }, + { + "appid": 1961310, + "normalized_name": "the mystery cleaner" + }, + { + "appid": 1961330, + "normalized_name": "yuma will burn" + }, + { + "appid": 1961370, + "normalized_name": "blue oak bridge" + }, + { + "appid": 1961380, + "normalized_name": "taiga" + }, + { + "appid": 1961390, + "normalized_name": "sakura succubus 6" + }, + { + "appid": 1961400, + "normalized_name": "otaku puzzle" + }, + { + "appid": 1961410, + "normalized_name": "askaya remnants of ajuna" + }, + { + "appid": 1961460, + "normalized_name": "project playtime" + }, + { + "appid": 1961480, + "normalized_name": "3d puzzle farm house" + }, + { + "appid": 1961490, + "normalized_name": "ukko & guará stellarbound" + }, + { + "appid": 1961500, + "normalized_name": "nosy little fly" + }, + { + "appid": 1961520, + "normalized_name": "find all 3 travel" + }, + { + "appid": 1961600, + "normalized_name": "darfall" + }, + { + "appid": 1961710, + "normalized_name": "poker warlords" + }, + { + "appid": 1961740, + "normalized_name": "charmareians" + }, + { + "appid": 1961750, + "normalized_name": "run n jump" + }, + { + "appid": 1961760, + "normalized_name": "my girlfriend’s special place" + }, + { + "appid": 1961770, + "normalized_name": "ball go home" + }, + { + "appid": 1961780, + "normalized_name": "gordianaut" + }, + { + "appid": 1961790, + "normalized_name": "unlock the feelings" + }, + { + "appid": 1961800, + "normalized_name": "one way trip" + }, + { + "appid": 1961810, + "normalized_name": "raven estate" + }, + { + "appid": 1961840, + "normalized_name": "lunatia covenant pale white agent" + }, + { + "appid": 1961850, + "normalized_name": "toroban" + }, + { + "appid": 1961860, + "normalized_name": "doki doki family 特異体質者のドキドキ家族生活" + }, + { + "appid": 1961870, + "normalized_name": "mischief dungeon life 異世界転生した俺のイタズラダンジョンライフ" + }, + { + "appid": 1961930, + "normalized_name": "i love finding more pups" + }, + { + "appid": 1961950, + "normalized_name": "chaos;head noah" + }, + { + "appid": 1961960, + "normalized_name": "haunt monster" + }, + { + "appid": 1961970, + "normalized_name": "akumi wars" + }, + { + "appid": 1962010, + "normalized_name": "space scavenger 2" + }, + { + "appid": 1962020, + "normalized_name": "space tournament" + }, + { + "appid": 1962030, + "normalized_name": "blade jumper" + }, + { + "appid": 1962090, + "normalized_name": "amazing machines" + }, + { + "appid": 1962100, + "normalized_name": "tierarztpraxis" + }, + { + "appid": 1962130, + "normalized_name": "cubeloop" + }, + { + "appid": 1962150, + "normalized_name": "mein reiterhof 3" + }, + { + "appid": 1962170, + "normalized_name": "suddenly meow 2" + }, + { + "appid": 1962210, + "normalized_name": "star strikers galactic soccer" + }, + { + "appid": 1962220, + "normalized_name": "magyarock vr" + }, + { + "appid": 1962290, + "normalized_name": "冲吧三国" + }, + { + "appid": 1962330, + "normalized_name": "守护神域" + }, + { + "appid": 1962430, + "normalized_name": "monochrome mobius rights and wrongs forgotten" + }, + { + "appid": 1962440, + "normalized_name": "memory puzzle bad girl" + }, + { + "appid": 1962450, + "normalized_name": "ritualsummon" + }, + { + "appid": 1962490, + "normalized_name": "furballs racing" + }, + { + "appid": 1962520, + "normalized_name": "rise of fox hero" + }, + { + "appid": 1962530, + "normalized_name": "the hunsa magic" + }, + { + "appid": 1962540, + "normalized_name": "still heroes" + }, + { + "appid": 1962560, + "normalized_name": "grim horde" + }, + { + "appid": 1962570, + "normalized_name": "stolen city" + }, + { + "appid": 1962590, + "normalized_name": "the lotus holidays" + }, + { + "appid": 1962600, + "normalized_name": "four course dungeon" + }, + { + "appid": 1962610, + "normalized_name": "hypnagonia" + }, + { + "appid": 1962650, + "normalized_name": "horrid henry's krazy karts" + }, + { + "appid": 1962660, + "normalized_name": "call of duty modern warfare ii" + }, + { + "appid": 1962663, + "normalized_name": "call of duty warzone" + }, + { + "appid": 1962670, + "normalized_name": "trap attack" + }, + { + "appid": 1962700, + "normalized_name": "subnautica 2" + }, + { + "appid": 1962760, + "normalized_name": "buccaneers shipshape" + }, + { + "appid": 1962770, + "normalized_name": "nova empire" + }, + { + "appid": 1962840, + "normalized_name": "hentai girls neko pastry" + }, + { + "appid": 1962850, + "normalized_name": "brave eduardo" + }, + { + "appid": 1962890, + "normalized_name": "in heat lustful nights" + }, + { + "appid": 1962900, + "normalized_name": "nekomancer seeded by darkness" + }, + { + "appid": 1962910, + "normalized_name": "rich lands" + }, + { + "appid": 1962920, + "normalized_name": "けものフレンズ cellien may cry" + }, + { + "appid": 1962930, + "normalized_name": "jacks or better video poker" + }, + { + "appid": 1962940, + "normalized_name": "pestilent hunters" + }, + { + "appid": 1962950, + "normalized_name": "the green light" + }, + { + "appid": 1962980, + "normalized_name": "aierlon" + }, + { + "appid": 1963000, + "normalized_name": "spacemancer" + }, + { + "appid": 1963010, + "normalized_name": "purgatory dungeoneer" + }, + { + "appid": 1963030, + "normalized_name": "dusted dusk" + }, + { + "appid": 1963040, + "normalized_name": "the lost village" + }, + { + "appid": 1963060, + "normalized_name": "slaves" + }, + { + "appid": 1963080, + "normalized_name": "난중설화 the tales of imjin war" + }, + { + "appid": 1963130, + "normalized_name": "maryanneette" + }, + { + "appid": 1963180, + "normalized_name": "raccoon tales" + }, + { + "appid": 1963190, + "normalized_name": "the backrooms world" + }, + { + "appid": 1963200, + "normalized_name": "惊魂日记 frightdiary" + }, + { + "appid": 1963210, + "normalized_name": "valkyrie elysium" + }, + { + "appid": 1963280, + "normalized_name": "jamping fish" + }, + { + "appid": 1963360, + "normalized_name": "yerr out" + }, + { + "appid": 1963370, + "normalized_name": "no one survived" + }, + { + "appid": 1963410, + "normalized_name": "ohupako tyoukyou haisinn" + }, + { + "appid": 1963420, + "normalized_name": "hispania" + }, + { + "appid": 1963440, + "normalized_name": "ijiaru oneesann no otsumami 2" + }, + { + "appid": 1963450, + "normalized_name": "wands alliances" + }, + { + "appid": 1963470, + "normalized_name": "贪吃纸片猫" + }, + { + "appid": 1963480, + "normalized_name": "race to kyiv" + }, + { + "appid": 1963490, + "normalized_name": "space commander" + }, + { + "appid": 1963510, + "normalized_name": "herald of havoc" + }, + { + "appid": 1963570, + "normalized_name": "cuisineer" + }, + { + "appid": 1963580, + "normalized_name": "the lizartian" + }, + { + "appid": 1963590, + "normalized_name": "me_ion" + }, + { + "appid": 1963600, + "normalized_name": "eyes of darkness" + }, + { + "appid": 1963610, + "normalized_name": "road to vostok" + }, + { + "appid": 1963630, + "normalized_name": "space city build your empire" + }, + { + "appid": 1963660, + "normalized_name": "neodori forever" + }, + { + "appid": 1963670, + "normalized_name": "cardbob" + }, + { + "appid": 1963690, + "normalized_name": "enenra dδemon core" + }, + { + "appid": 1963740, + "normalized_name": "succubus puttel" + }, + { + "appid": 1963750, + "normalized_name": "joker poker video poker" + }, + { + "appid": 1963760, + "normalized_name": "deuces wild video poker" + }, + { + "appid": 1963780, + "normalized_name": "eldertrail" + }, + { + "appid": 1963840, + "normalized_name": "次元战纪" + }, + { + "appid": 1963850, + "normalized_name": "sums" + }, + { + "appid": 1963900, + "normalized_name": "knotwords" + }, + { + "appid": 1963950, + "normalized_name": "gasnator" + }, + { + "appid": 1963980, + "normalized_name": "..." + }, + { + "appid": 1963990, + "normalized_name": "deliver us from evil (dufe) masquerade" + }, + { + "appid": 1964000, + "normalized_name": "sunline" + }, + { + "appid": 1964020, + "normalized_name": "them or us" + }, + { + "appid": 1964040, + "normalized_name": "do not feed the monkeys 2099" + }, + { + "appid": 1964080, + "normalized_name": "net knight" + }, + { + "appid": 1964090, + "normalized_name": "devexus" + }, + { + "appid": 1964140, + "normalized_name": "erroneous" + }, + { + "appid": 1964200, + "normalized_name": "phantom rose 2 sapphire" + }, + { + "appid": 1964220, + "normalized_name": "mergecrafter" + }, + { + "appid": 1964250, + "normalized_name": "i h8 ur face" + }, + { + "appid": 1964260, + "normalized_name": "void prison" + }, + { + "appid": 1964280, + "normalized_name": "gg land" + }, + { + "appid": 1964300, + "normalized_name": "pongbreak" + }, + { + "appid": 1964310, + "normalized_name": "morodashi sumo" + }, + { + "appid": 1964320, + "normalized_name": "there's a rikishi in my house" + }, + { + "appid": 1964330, + "normalized_name": "madcap mosaic" + }, + { + "appid": 1964360, + "normalized_name": "sexy mystic survivors" + }, + { + "appid": 1964380, + "normalized_name": "my little sister prologue" + }, + { + "appid": 1964410, + "normalized_name": "balance helicopter" + }, + { + "appid": 1964420, + "normalized_name": "mazaica" + }, + { + "appid": 1964440, + "normalized_name": "tower of wishes 2 vikings collector's (match 3)" + }, + { + "appid": 1964470, + "normalized_name": "my stepmom is a futanari chemist" + }, + { + "appid": 1964490, + "normalized_name": "true_aim" + }, + { + "appid": 1964500, + "normalized_name": "the battle of sacred heart" + }, + { + "appid": 1964510, + "normalized_name": "简单模拟 simplesimulation" + }, + { + "appid": 1964530, + "normalized_name": "seed of life" + }, + { + "appid": 1964540, + "normalized_name": "isolate me!" + }, + { + "appid": 1964560, + "normalized_name": "timestride" + }, + { + "appid": 1964580, + "normalized_name": "zerocron" + }, + { + "appid": 1964590, + "normalized_name": "homemade tcg" + }, + { + "appid": 1964600, + "normalized_name": "cubegrid" + }, + { + "appid": 1964610, + "normalized_name": "gutterbrawlers" + }, + { + "appid": 1964620, + "normalized_name": "aiszplus" + }, + { + "appid": 1964630, + "normalized_name": "rough kuts 3d" + }, + { + "appid": 1964650, + "normalized_name": "eden universe" + }, + { + "appid": 1964670, + "normalized_name": "succubus in wonderland" + }, + { + "appid": 1964690, + "normalized_name": "dwarfenstein" + }, + { + "appid": 1964720, + "normalized_name": "resbs" + }, + { + "appid": 1964750, + "normalized_name": "dolphin hustle" + }, + { + "appid": 1964760, + "normalized_name": "wfo world football online" + }, + { + "appid": 1964770, + "normalized_name": "tales of terra ocean open world arpg" + }, + { + "appid": 1964780, + "normalized_name": "the revenge of mr.samuel" + }, + { + "appid": 1964800, + "normalized_name": "captcha kills" + }, + { + "appid": 1964810, + "normalized_name": "meekanoid" + }, + { + "appid": 1964820, + "normalized_name": "sprout valley" + }, + { + "appid": 1964830, + "normalized_name": "backrooms perpetual" + }, + { + "appid": 1964840, + "normalized_name": "core iris" + }, + { + "appid": 1964860, + "normalized_name": "titan shell" + }, + { + "appid": 1964870, + "normalized_name": "rule no. 2" + }, + { + "appid": 1964890, + "normalized_name": "friendly warfare" + }, + { + "appid": 1964930, + "normalized_name": "single feather" + }, + { + "appid": 1964940, + "normalized_name": "damien crawford's golf experience 2022" + }, + { + "appid": 1964970, + "normalized_name": "class five memorial game" + }, + { + "appid": 1964980, + "normalized_name": "sisters_possession2" + }, + { + "appid": 1964990, + "normalized_name": "galactic explorers" + }, + { + "appid": 1965000, + "normalized_name": "hotel manager simulator" + }, + { + "appid": 1965020, + "normalized_name": "curro" + }, + { + "appid": 1965050, + "normalized_name": "mortificare" + }, + { + "appid": 1965060, + "normalized_name": "quest room" + }, + { + "appid": 1965070, + "normalized_name": "tactic legends" + }, + { + "appid": 1965090, + "normalized_name": "sheepers" + }, + { + "appid": 1965130, + "normalized_name": "key puss" + }, + { + "appid": 1965140, + "normalized_name": "puddink" + }, + { + "appid": 1965170, + "normalized_name": "polars" + }, + { + "appid": 1965190, + "normalized_name": "dragon spirits 2" + }, + { + "appid": 1965260, + "normalized_name": "mini putt" + }, + { + "appid": 1965270, + "normalized_name": "窒愛suffocate" + }, + { + "appid": 1965280, + "normalized_name": "prisseceal the dazzling and flaring peach princess" + }, + { + "appid": 1965290, + "normalized_name": "spellgrimage" + }, + { + "appid": 1965320, + "normalized_name": "potion blast battle of wizards" + }, + { + "appid": 1965350, + "normalized_name": "sidekick" + }, + { + "appid": 1965360, + "normalized_name": "wet dreams" + }, + { + "appid": 1965370, + "normalized_name": "magical angel fairy heart" + }, + { + "appid": 1965380, + "normalized_name": "crazy tanks" + }, + { + "appid": 1965390, + "normalized_name": "オンライン線香花火" + }, + { + "appid": 1965410, + "normalized_name": "rolando the majestic" + }, + { + "appid": 1965430, + "normalized_name": "goldilock one boss arena" + }, + { + "appid": 1965440, + "normalized_name": "menos precursor" + }, + { + "appid": 1965470, + "normalized_name": "barkhan" + }, + { + "appid": 1965480, + "normalized_name": "scissors in hell" + }, + { + "appid": 1965490, + "normalized_name": "mist monkey wanderer" + }, + { + "appid": 1965520, + "normalized_name": "let's meat adam 2" + }, + { + "appid": 1965550, + "normalized_name": "wildaria" + }, + { + "appid": 1965560, + "normalized_name": "rogue warlords" + }, + { + "appid": 1965580, + "normalized_name": "the last secret" + }, + { + "appid": 1965610, + "normalized_name": "froggie" + }, + { + "appid": 1965620, + "normalized_name": "battle waves card tactics" + }, + { + "appid": 1965640, + "normalized_name": "food fight" + }, + { + "appid": 1965650, + "normalized_name": "ima miner" + }, + { + "appid": 1965660, + "normalized_name": "foot fetish fortress voltitan vs. the jundoh empire vol.2" + }, + { + "appid": 1965670, + "normalized_name": "午时已到" + }, + { + "appid": 1965680, + "normalized_name": "hopdodge" + }, + { + "appid": 1965760, + "normalized_name": "pixies 'n crafts" + }, + { + "appid": 1965780, + "normalized_name": "cybernet" + }, + { + "appid": 1965790, + "normalized_name": "(virus_);" + }, + { + "appid": 1965800, + "normalized_name": "dice tribes ambitions" + }, + { + "appid": 1965840, + "normalized_name": "mini mecum" + }, + { + "appid": 1965860, + "normalized_name": "let's play jigsaw puzzles" + }, + { + "appid": 1965870, + "normalized_name": "anna bunny" + }, + { + "appid": 1965890, + "normalized_name": "hyperflight" + }, + { + "appid": 1965920, + "normalized_name": "cthulhu mythos adv lunatic whispers" + }, + { + "appid": 1965940, + "normalized_name": "ninja sneaking r" + }, + { + "appid": 1965960, + "normalized_name": "house of chavez" + }, + { + "appid": 1965970, + "normalized_name": "quantum tripper" + }, + { + "appid": 1965980, + "normalized_name": "gelli fields" + }, + { + "appid": 1966070, + "normalized_name": "~daydream~蝶が舞う頃に" + }, + { + "appid": 1966080, + "normalized_name": "rododendron" + }, + { + "appid": 1966100, + "normalized_name": "lay" + }, + { + "appid": 1966110, + "normalized_name": "greed" + }, + { + "appid": 1966130, + "normalized_name": "strategic command american civil war" + }, + { + "appid": 1966170, + "normalized_name": "sens" + }, + { + "appid": 1966180, + "normalized_name": "the bear and the admiral" + }, + { + "appid": 1966220, + "normalized_name": "pampas & selene the maze of demons" + }, + { + "appid": 1966240, + "normalized_name": "trouble town" + }, + { + "appid": 1966260, + "normalized_name": "idle business tycoon build simulator" + }, + { + "appid": 1966280, + "normalized_name": "zombies under control" + }, + { + "appid": 1966300, + "normalized_name": "army of one" + }, + { + "appid": 1966310, + "normalized_name": "kuggs" + }, + { + "appid": 1966330, + "normalized_name": "die to survive" + }, + { + "appid": 1966370, + "normalized_name": "neon speed" + }, + { + "appid": 1966380, + "normalized_name": "sakura blossom" + }, + { + "appid": 1966390, + "normalized_name": "aetherial" + }, + { + "appid": 1966400, + "normalized_name": "sinus" + }, + { + "appid": 1966420, + "normalized_name": "harmony the fall of reverie" + }, + { + "appid": 1966440, + "normalized_name": "学園スイーツ発見 ~双目(ざらめ)のドーナツ編~" + }, + { + "appid": 1966500, + "normalized_name": "goo gladiators" + }, + { + "appid": 1966560, + "normalized_name": "davy's debris" + }, + { + "appid": 1966580, + "normalized_name": "super ride grandpa" + }, + { + "appid": 1966590, + "normalized_name": "nectar" + }, + { + "appid": 1966610, + "normalized_name": "hrs devil game i" + }, + { + "appid": 1966620, + "normalized_name": "triple jump" + }, + { + "appid": 1966660, + "normalized_name": "drunk or dead 2" + }, + { + "appid": 1966690, + "normalized_name": "tad the lost explorer" + }, + { + "appid": 1966700, + "normalized_name": "windfolk sky is just the beginning" + }, + { + "appid": 1966720, + "normalized_name": "lethal company" + }, + { + "appid": 1966740, + "normalized_name": "h.i.v.e." + }, + { + "appid": 1966770, + "normalized_name": "gates of nesphera vr" + }, + { + "appid": 1966780, + "normalized_name": "my ass pass to succubus sexland!" + }, + { + "appid": 1966800, + "normalized_name": "the den of chaos2 混沌の魔窟殿2~アッサマラームの遺跡編~" + }, + { + "appid": 1966810, + "normalized_name": "sentinel point heroes" + }, + { + "appid": 1966830, + "normalized_name": "change district" + }, + { + "appid": 1966840, + "normalized_name": "ancient cultures tikal's realm" + }, + { + "appid": 1966860, + "normalized_name": "full of work" + }, + { + "appid": 1966870, + "normalized_name": "cyber car" + }, + { + "appid": 1966900, + "normalized_name": "20 minutes till dawn" + }, + { + "appid": 1966910, + "normalized_name": "it's hard being a dog" + }, + { + "appid": 1966930, + "normalized_name": "ballistic zen" + }, + { + "appid": 1966940, + "normalized_name": "automata ecosystem cellular automata simulation" + }, + { + "appid": 1966970, + "normalized_name": "ingression" + }, + { + "appid": 1967010, + "normalized_name": "updog" + }, + { + "appid": 1967030, + "normalized_name": "长夜分殊行" + }, + { + "appid": 1967040, + "normalized_name": "fun with friends and trampolines" + }, + { + "appid": 1967050, + "normalized_name": "it was you" + }, + { + "appid": 1967070, + "normalized_name": "elimination" + }, + { + "appid": 1967090, + "normalized_name": "mythos" + }, + { + "appid": 1967100, + "normalized_name": "ceramic soul" + }, + { + "appid": 1967110, + "normalized_name": "the secret life of dorian pink | prologue" + }, + { + "appid": 1967150, + "normalized_name": "re agent" + }, + { + "appid": 1967170, + "normalized_name": "reincarnation" + }, + { + "appid": 1967180, + "normalized_name": "public bounce" + }, + { + "appid": 1967190, + "normalized_name": "国之战魂" + }, + { + "appid": 1967200, + "normalized_name": "metroland" + }, + { + "appid": 1967220, + "normalized_name": "no return" + }, + { + "appid": 1967260, + "normalized_name": "double dragon gaiden rise of the dragons" + }, + { + "appid": 1967310, + "normalized_name": "fartgirl" + }, + { + "appid": 1967320, + "normalized_name": "fairy biography" + }, + { + "appid": 1967330, + "normalized_name": "spell welders" + }, + { + "appid": 1967340, + "normalized_name": "last day zombie survival vr" + }, + { + "appid": 1967360, + "normalized_name": "2week death world" + }, + { + "appid": 1967390, + "normalized_name": "lenny loosejocks in space" + }, + { + "appid": 1967400, + "normalized_name": "masterq" + }, + { + "appid": 1967410, + "normalized_name": "rowbots" + }, + { + "appid": 1967430, + "normalized_name": "ghost trick phantom detective" + }, + { + "appid": 1967450, + "normalized_name": "捉妖物语" + }, + { + "appid": 1967470, + "normalized_name": "sensual haunting" + }, + { + "appid": 1967480, + "normalized_name": "one many nobody" + }, + { + "appid": 1967510, + "normalized_name": "railbound" + }, + { + "appid": 1967520, + "normalized_name": "ski3" + }, + { + "appid": 1967530, + "normalized_name": "plow the snow!" + }, + { + "appid": 1967550, + "normalized_name": "heroes of rome 2 the revenge of discordia" + }, + { + "appid": 1967610, + "normalized_name": "turok origins" + }, + { + "appid": 1967630, + "normalized_name": "survival fountain of youth" + }, + { + "appid": 1967670, + "normalized_name": "northland heroes the missing druid" + }, + { + "appid": 1967680, + "normalized_name": "jet rush" + }, + { + "appid": 1967700, + "normalized_name": "miami hotel simulator prologue" + }, + { + "appid": 1967750, + "normalized_name": "iron jaw" + }, + { + "appid": 1967760, + "normalized_name": "tales of inca 2 new adventures" + }, + { + "appid": 1967810, + "normalized_name": "rampart defense" + }, + { + "appid": 1967820, + "normalized_name": "border town" + }, + { + "appid": 1967830, + "normalized_name": "武儒绘卷 天地奇缘" + }, + { + "appid": 1967840, + "normalized_name": "eshe's wish adventure" + }, + { + "appid": 1967850, + "normalized_name": "death ring" + }, + { + "appid": 1967870, + "normalized_name": "ballads at midnight" + }, + { + "appid": 1967890, + "normalized_name": "solitaire beautiful garden season" + }, + { + "appid": 1967920, + "normalized_name": "krystals with a k" + }, + { + "appid": 1967930, + "normalized_name": "shadow's light" + }, + { + "appid": 1967940, + "normalized_name": "germinal" + }, + { + "appid": 1967950, + "normalized_name": "moi mei hidden objects" + }, + { + "appid": 1967980, + "normalized_name": "koko the last leaf" + }, + { + "appid": 1968040, + "normalized_name": "life on the edge" + }, + { + "appid": 1968110, + "normalized_name": "neko girls hentai jigsaw photo studio" + }, + { + "appid": 1968140, + "normalized_name": "the flames" + }, + { + "appid": 1968160, + "normalized_name": "jesus sacred heart" + }, + { + "appid": 1968180, + "normalized_name": "diggergun" + }, + { + "appid": 1968190, + "normalized_name": "brain exam with benefits" + }, + { + "appid": 1968210, + "normalized_name": "nosher" + }, + { + "appid": 1968230, + "normalized_name": "lens gloss" + }, + { + "appid": 1968240, + "normalized_name": "escape if you can" + }, + { + "appid": 1968250, + "normalized_name": "love make power 做愛發電公司" + }, + { + "appid": 1968270, + "normalized_name": "corridor sigma" + }, + { + "appid": 1968290, + "normalized_name": "forge" + }, + { + "appid": 1968300, + "normalized_name": "ambushed" + }, + { + "appid": 1968320, + "normalized_name": "relapse" + }, + { + "appid": 1968330, + "normalized_name": "the trasamire campaigns" + }, + { + "appid": 1968340, + "normalized_name": "project gunship" + }, + { + "appid": 1968360, + "normalized_name": "invaders from the third dimension" + }, + { + "appid": 1968390, + "normalized_name": "ants with guns" + }, + { + "appid": 1968400, + "normalized_name": "where the stars brought us" + }, + { + "appid": 1968420, + "normalized_name": "catch the yeti!" + }, + { + "appid": 1968430, + "normalized_name": "camp buddy scoutmaster season" + }, + { + "appid": 1968440, + "normalized_name": "strange hunting grounds" + }, + { + "appid": 1968500, + "normalized_name": "super asqr" + }, + { + "appid": 1968520, + "normalized_name": "unknown" + }, + { + "appid": 1968530, + "normalized_name": "bounda" + }, + { + "appid": 1968540, + "normalized_name": "crafting town" + }, + { + "appid": 1968570, + "normalized_name": "the quintessential quintuplets omoide vr ~itsuki~" + }, + { + "appid": 1968600, + "normalized_name": "lander odyssey" + }, + { + "appid": 1968610, + "normalized_name": "adrianne and oliver" + }, + { + "appid": 1968620, + "normalized_name": "碎片时间(fragment time)" + }, + { + "appid": 1968630, + "normalized_name": "stories from the outbreak" + }, + { + "appid": 1968640, + "normalized_name": "kung fu legend" + }, + { + "appid": 1968660, + "normalized_name": "secret of the vikings mystery island" + }, + { + "appid": 1968670, + "normalized_name": "warplane quest" + }, + { + "appid": 1968680, + "normalized_name": "thirayan" + }, + { + "appid": 1968710, + "normalized_name": "meatgrinder" + }, + { + "appid": 1968720, + "normalized_name": "paracreat" + }, + { + "appid": 1968730, + "normalized_name": "bounty of one" + }, + { + "appid": 1968760, + "normalized_name": "legend of rome the wrath of mars" + }, + { + "appid": 1968790, + "normalized_name": "alkali" + }, + { + "appid": 1968810, + "normalized_name": "meteor blasters" + }, + { + "appid": 1968820, + "normalized_name": "only furry 18+" + }, + { + "appid": 1968830, + "normalized_name": "accursed" + }, + { + "appid": 1968840, + "normalized_name": "scarlet maiden" + }, + { + "appid": 1968870, + "normalized_name": "fix me up hospital" + }, + { + "appid": 1968880, + "normalized_name": "art mahjong 4" + }, + { + "appid": 1968940, + "normalized_name": "nazralath the fallen world" + }, + { + "appid": 1968950, + "normalized_name": "decorporation" + }, + { + "appid": 1969000, + "normalized_name": "yupitergrad 2 the lost station" + }, + { + "appid": 1969010, + "normalized_name": "smys show me your stairs" + }, + { + "appid": 1969040, + "normalized_name": "couple last conductors" + }, + { + "appid": 1969050, + "normalized_name": "underway graffiti game" + }, + { + "appid": 1969060, + "normalized_name": "path of the midnight sun" + }, + { + "appid": 1969080, + "normalized_name": "a building full of cats" + }, + { + "appid": 1969100, + "normalized_name": "might'n mow'em co op survivors online" + }, + { + "appid": 1969130, + "normalized_name": "trash patrol academic version" + }, + { + "appid": 1969150, + "normalized_name": "formula bwoah online multiplayer racing" + }, + { + "appid": 1969170, + "normalized_name": "the murder hotel" + }, + { + "appid": 1969230, + "normalized_name": "tirsy's tale" + }, + { + "appid": 1969250, + "normalized_name": "pact of darkness" + }, + { + "appid": 1969260, + "normalized_name": "ewephoria" + }, + { + "appid": 1969280, + "normalized_name": "automaton kingdom" + }, + { + "appid": 1969310, + "normalized_name": "demeo battles" + }, + { + "appid": 1969320, + "normalized_name": "elena's journal unfinished expedition" + }, + { + "appid": 1969400, + "normalized_name": "ferrum inc" + }, + { + "appid": 1969410, + "normalized_name": "戦乙女 ikusaotome" + }, + { + "appid": 1969420, + "normalized_name": "the struggle of combat" + }, + { + "appid": 1969430, + "normalized_name": "desert revenant" + }, + { + "appid": 1969440, + "normalized_name": "sunday gold" + }, + { + "appid": 1969460, + "normalized_name": "joyride" + }, + { + "appid": 1969490, + "normalized_name": "closer than you know" + }, + { + "appid": 1969530, + "normalized_name": "paranormal preparatory school" + }, + { + "appid": 1969570, + "normalized_name": "shenanigans" + }, + { + "appid": 1969590, + "normalized_name": "tankitos" + }, + { + "appid": 1969620, + "normalized_name": "your computer might be at risk" + }, + { + "appid": 1969630, + "normalized_name": "post solis" + }, + { + "appid": 1969650, + "normalized_name": "formula top" + }, + { + "appid": 1969720, + "normalized_name": "delta manifold" + }, + { + "appid": 1969740, + "normalized_name": "aqorel" + }, + { + "appid": 1969810, + "normalized_name": "enter the chronosphere" + }, + { + "appid": 1969820, + "normalized_name": "legacy of sin blood oath" + }, + { + "appid": 1969830, + "normalized_name": "dadish 3" + }, + { + "appid": 1969840, + "normalized_name": "roasttogether" + }, + { + "appid": 1969850, + "normalized_name": "downpurr" + }, + { + "appid": 1969860, + "normalized_name": "みんなと街コロ" + }, + { + "appid": 1969870, + "normalized_name": "生死狙击2" + }, + { + "appid": 1969910, + "normalized_name": "some synergy" + }, + { + "appid": 1969920, + "normalized_name": "tomb explorer vr" + }, + { + "appid": 1969930, + "normalized_name": "decisive strike" + }, + { + "appid": 1969960, + "normalized_name": "super hero flash fist" + }, + { + "appid": 1970010, + "normalized_name": "light bringer" + }, + { + "appid": 1970020, + "normalized_name": "东方妖精武踏会 touhou fairy knockout ~ one fairy to rule them all" + }, + { + "appid": 1970030, + "normalized_name": "东方华心传touhou blooming soul" + }, + { + "appid": 1970040, + "normalized_name": "fibula" + }, + { + "appid": 1970050, + "normalized_name": "temple of starlight" + }, + { + "appid": 1970060, + "normalized_name": "tomboy adventure" + }, + { + "appid": 1970070, + "normalized_name": "miho adventures" + }, + { + "appid": 1970090, + "normalized_name": "sandboxes" + }, + { + "appid": 1970160, + "normalized_name": "cuties hacked oh no someone stole my photos!" + }, + { + "appid": 1970210, + "normalized_name": "connected hearts fortune play collector's" + }, + { + "appid": 1970220, + "normalized_name": "walk hero" + }, + { + "appid": 1970260, + "normalized_name": "presentiment of death" + }, + { + "appid": 1970290, + "normalized_name": "world of buh" + }, + { + "appid": 1970300, + "normalized_name": "轻语谱" + }, + { + "appid": 1970340, + "normalized_name": "liam's journey" + }, + { + "appid": 1970400, + "normalized_name": "master of war rule of power" + }, + { + "appid": 1970440, + "normalized_name": "forlorn" + }, + { + "appid": 1970450, + "normalized_name": "沙漠花开 desert blossom" + }, + { + "appid": 1970460, + "normalized_name": "garden galaxy" + }, + { + "appid": 1970510, + "normalized_name": "missing persons" + }, + { + "appid": 1970520, + "normalized_name": "brave survivor" + }, + { + "appid": 1970530, + "normalized_name": "long journey" + }, + { + "appid": 1970540, + "normalized_name": "cardmon" + }, + { + "appid": 1970550, + "normalized_name": "mystery quest" + }, + { + "appid": 1970560, + "normalized_name": "bobbi adventure" + }, + { + "appid": 1970580, + "normalized_name": "backpack hero" + }, + { + "appid": 1970590, + "normalized_name": "fearless rider" + }, + { + "appid": 1970610, + "normalized_name": "duterra" + }, + { + "appid": 1970620, + "normalized_name": "murdo's quest" + }, + { + "appid": 1970640, + "normalized_name": "push comes to shovel" + }, + { + "appid": 1970700, + "normalized_name": "cowboysshowdown" + }, + { + "appid": 1970710, + "normalized_name": "sex diary swingers yacht" + }, + { + "appid": 1970730, + "normalized_name": "beachrun" + }, + { + "appid": 1970740, + "normalized_name": "magic war" + }, + { + "appid": 1970750, + "normalized_name": "spearfrog" + }, + { + "appid": 1970770, + "normalized_name": "purrate adventure volcano isle" + }, + { + "appid": 1970780, + "normalized_name": "the accursed crown of the giant king" + }, + { + "appid": 1970820, + "normalized_name": "evomon" + }, + { + "appid": 1970840, + "normalized_name": "voss turbo" + }, + { + "appid": 1970850, + "normalized_name": "the rhythm of the knight" + }, + { + "appid": 1970910, + "normalized_name": "escape jump" + }, + { + "appid": 1970970, + "normalized_name": "tds war games" + }, + { + "appid": 1970980, + "normalized_name": "warlord britannia" + }, + { + "appid": 1971100, + "normalized_name": "絶叫死人(zombie scream)" + }, + { + "appid": 1971120, + "normalized_name": "serious sally" + }, + { + "appid": 1971130, + "normalized_name": "cataclysm survivors" + }, + { + "appid": 1971150, + "normalized_name": "the outlaw and the newcomer" + }, + { + "appid": 1971170, + "normalized_name": "lone bastion" + }, + { + "appid": 1971190, + "normalized_name": "风墓战记" + }, + { + "appid": 1971240, + "normalized_name": "night horde" + }, + { + "appid": 1971260, + "normalized_name": "orc tales olgob the bold" + }, + { + "appid": 1971310, + "normalized_name": "deck adventurers ii" + }, + { + "appid": 1971330, + "normalized_name": "stonegeon 迷石地牢" + }, + { + "appid": 1971350, + "normalized_name": "star lodge" + }, + { + "appid": 1971370, + "normalized_name": "assault wing" + }, + { + "appid": 1971380, + "normalized_name": "letux game" + }, + { + "appid": 1971400, + "normalized_name": "사괴야행" + }, + { + "appid": 1971430, + "normalized_name": "demon heist" + }, + { + "appid": 1971470, + "normalized_name": "crystals of irm" + }, + { + "appid": 1971480, + "normalized_name": "dog puzzle" + }, + { + "appid": 1971520, + "normalized_name": "unresolved the slayer's quest" + }, + { + "appid": 1971560, + "normalized_name": "panique à temple a steak" + }, + { + "appid": 1971570, + "normalized_name": "magnytour" + }, + { + "appid": 1971590, + "normalized_name": "chesslands" + }, + { + "appid": 1971630, + "normalized_name": "光辉耀浙里 brilliance shines in zhejiang" + }, + { + "appid": 1971650, + "normalized_name": "octopath traveler ii" + }, + { + "appid": 1971670, + "normalized_name": "panic floor!!" + }, + { + "appid": 1971680, + "normalized_name": "saga of elster land the destruction crystal" + }, + { + "appid": 1971740, + "normalized_name": "road warriors" + }, + { + "appid": 1971750, + "normalized_name": "new year's eve miracle" + }, + { + "appid": 1971760, + "normalized_name": "alpha pairs" + }, + { + "appid": 1971770, + "normalized_name": "wandering in space vr" + }, + { + "appid": 1971790, + "normalized_name": "uligo a slime's hike" + }, + { + "appid": 1971800, + "normalized_name": "spirit eyes" + }, + { + "appid": 1971810, + "normalized_name": "mawthorne" + }, + { + "appid": 1971820, + "normalized_name": "miner of minerals" + }, + { + "appid": 1971830, + "normalized_name": "dragon kings" + }, + { + "appid": 1971870, + "normalized_name": "mortal kombat 1" + }, + { + "appid": 1971880, + "normalized_name": "whispered secrets tying the knot collector's" + }, + { + "appid": 1971900, + "normalized_name": "atomic titans" + }, + { + "appid": 1971910, + "normalized_name": "funball 3d" + }, + { + "appid": 1971930, + "normalized_name": "tiltfire" + }, + { + "appid": 1971940, + "normalized_name": "eball 2" + }, + { + "appid": 1971980, + "normalized_name": "gray eyes of death" + }, + { + "appid": 1972020, + "normalized_name": "stadtleben" + }, + { + "appid": 1972050, + "normalized_name": "band camp boyfriend" + }, + { + "appid": 1972090, + "normalized_name": "bunny hop hare trigger" + }, + { + "appid": 1972160, + "normalized_name": "virtual hunting experience" + }, + { + "appid": 1972180, + "normalized_name": "dub club" + }, + { + "appid": 1972190, + "normalized_name": "animal trail ☆ girlish square" + }, + { + "appid": 1972200, + "normalized_name": "link the cubes" + }, + { + "appid": 1972230, + "normalized_name": "alcyone" + }, + { + "appid": 1972250, + "normalized_name": "maidenless" + }, + { + "appid": 1972260, + "normalized_name": "orbit vr" + }, + { + "appid": 1972300, + "normalized_name": "hunteroids" + }, + { + "appid": 1972320, + "normalized_name": "revelation" + }, + { + "appid": 1972360, + "normalized_name": "cryptr" + }, + { + "appid": 1972400, + "normalized_name": "package rush" + }, + { + "appid": 1972410, + "normalized_name": "siege of dungeon" + }, + { + "appid": 1972440, + "normalized_name": "shotgun king the final checkmate" + }, + { + "appid": 1972450, + "normalized_name": "earth of oryn" + }, + { + "appid": 1972460, + "normalized_name": "portobugia" + }, + { + "appid": 1972470, + "normalized_name": "under contract" + }, + { + "appid": 1972550, + "normalized_name": "欲望乐园" + }, + { + "appid": 1972580, + "normalized_name": "caphaclus recommence" + }, + { + "appid": 1972610, + "normalized_name": "draconis volatus" + }, + { + "appid": 1972630, + "normalized_name": "slimesventure your destination" + }, + { + "appid": 1972640, + "normalized_name": "trials of kokoro" + }, + { + "appid": 1972670, + "normalized_name": "the lost mines" + }, + { + "appid": 1972710, + "normalized_name": "ever seen a cat? 2" + }, + { + "appid": 1972720, + "normalized_name": "pit of gerstan" + }, + { + "appid": 1972740, + "normalized_name": "lit up" + }, + { + "appid": 1972820, + "normalized_name": "suicide guy deluxe plus" + }, + { + "appid": 1972830, + "normalized_name": "molecule make lab" + }, + { + "appid": 1972840, + "normalized_name": "coffeetime" + }, + { + "appid": 1972870, + "normalized_name": "commando mountain rescue" + }, + { + "appid": 1972880, + "normalized_name": "lamoneo" + }, + { + "appid": 1972890, + "normalized_name": "nell watson's founder life" + }, + { + "appid": 1972920, + "normalized_name": "wife massage" + }, + { + "appid": 1972950, + "normalized_name": "qti quantum tunnel idle" + }, + { + "appid": 1972960, + "normalized_name": "deterrence" + }, + { + "appid": 1972970, + "normalized_name": "late photographer 4" + }, + { + "appid": 1972980, + "normalized_name": "esport tactics" + }, + { + "appid": 1972990, + "normalized_name": "armor girl simulator" + }, + { + "appid": 1973010, + "normalized_name": "kid ball adventure" + }, + { + "appid": 1973020, + "normalized_name": "survival island" + }, + { + "appid": 1973030, + "normalized_name": "recondo" + }, + { + "appid": 1973040, + "normalized_name": "hunt for junk" + }, + { + "appid": 1973080, + "normalized_name": "incubus" + }, + { + "appid": 1973090, + "normalized_name": "ukraine defender" + }, + { + "appid": 1973100, + "normalized_name": "frayspace" + }, + { + "appid": 1973110, + "normalized_name": "cactus cowboy plants at war" + }, + { + "appid": 1973130, + "normalized_name": "island of aito" + }, + { + "appid": 1973160, + "normalized_name": "warehuman ウェアヒューマン" + }, + { + "appid": 1973170, + "normalized_name": "she is mad" + }, + { + "appid": 1973230, + "normalized_name": "infection board game" + }, + { + "appid": 1973240, + "normalized_name": "dominate board game" + }, + { + "appid": 1973250, + "normalized_name": "hexxagon board game" + }, + { + "appid": 1973260, + "normalized_name": "mazezam puzzle game" + }, + { + "appid": 1973270, + "normalized_name": "push the box puzzle game" + }, + { + "appid": 1973280, + "normalized_name": "zero world" + }, + { + "appid": 1973310, + "normalized_name": "phoenix springs" + }, + { + "appid": 1973320, + "normalized_name": "road defense outsiders" + }, + { + "appid": 1973350, + "normalized_name": "blade bros action!" + }, + { + "appid": 1973360, + "normalized_name": "thankstaking" + }, + { + "appid": 1973370, + "normalized_name": "tracing decay" + }, + { + "appid": 1973400, + "normalized_name": "the remains chapter 1" + }, + { + "appid": 1973410, + "normalized_name": "bipt" + }, + { + "appid": 1973420, + "normalized_name": "battle charge" + }, + { + "appid": 1973450, + "normalized_name": "personal space" + }, + { + "appid": 1973460, + "normalized_name": "burn depth" + }, + { + "appid": 1973470, + "normalized_name": "before the kingdom falls" + }, + { + "appid": 1973490, + "normalized_name": "level tank" + }, + { + "appid": 1973530, + "normalized_name": "limbus company" + }, + { + "appid": 1973560, + "normalized_name": "shooter league robot goal" + }, + { + "appid": 1973580, + "normalized_name": "once a porn a time" + }, + { + "appid": 1973590, + "normalized_name": "excitingbatting" + }, + { + "appid": 1973600, + "normalized_name": "my naughty summer vacation ~days in countryside and memories of summer~" + }, + { + "appid": 1973620, + "normalized_name": "go to heck" + }, + { + "appid": 1973630, + "normalized_name": "无神塔" + }, + { + "appid": 1973640, + "normalized_name": "the divine speaker the sun and the moon" + }, + { + "appid": 1973660, + "normalized_name": "do you want more!?" + }, + { + "appid": 1973670, + "normalized_name": "1001 jigsaw. home sweet home 3" + }, + { + "appid": 1973680, + "normalized_name": "1001 jigsaw. legends of mystery 6" + }, + { + "appid": 1973700, + "normalized_name": "连海casino" + }, + { + "appid": 1973710, + "normalized_name": "ヘブンバーンズレッド" + }, + { + "appid": 1973730, + "normalized_name": "sheep in dreams" + }, + { + "appid": 1973740, + "normalized_name": "lost boy lost island" + }, + { + "appid": 1973760, + "normalized_name": "shell soldier" + }, + { + "appid": 1973770, + "normalized_name": "battle craft" + }, + { + "appid": 1973800, + "normalized_name": "出发吧冒险家" + }, + { + "appid": 1973840, + "normalized_name": "space bees 太空蜜蜂" + }, + { + "appid": 1973850, + "normalized_name": "impossible challenge" + }, + { + "appid": 1973890, + "normalized_name": "tale of witch's heart" + }, + { + "appid": 1973950, + "normalized_name": "health and safety vr training bundle" + }, + { + "appid": 1973970, + "normalized_name": "雀皇麻雀" + }, + { + "appid": 1973990, + "normalized_name": "never ending beyond" + }, + { + "appid": 1974010, + "normalized_name": "running over zombies" + }, + { + "appid": 1974030, + "normalized_name": "exodus idle" + }, + { + "appid": 1974040, + "normalized_name": "the questing" + }, + { + "appid": 1974050, + "normalized_name": "torchlight infinite" + }, + { + "appid": 1974060, + "normalized_name": "hackergame" + }, + { + "appid": 1974070, + "normalized_name": "catastrophe" + }, + { + "appid": 1974080, + "normalized_name": "planetary planter" + }, + { + "appid": 1974090, + "normalized_name": "slava ukraini!" + }, + { + "appid": 1974110, + "normalized_name": "westfallen" + }, + { + "appid": 1974220, + "normalized_name": "eden island" + }, + { + "appid": 1974230, + "normalized_name": "locks" + }, + { + "appid": 1974250, + "normalized_name": "unwording" + }, + { + "appid": 1974290, + "normalized_name": "sentinels of earth prime" + }, + { + "appid": 1974300, + "normalized_name": "one deck galaxy" + }, + { + "appid": 1974310, + "normalized_name": "airport administrator simulator" + }, + { + "appid": 1974320, + "normalized_name": "colors! platform" + }, + { + "appid": 1974390, + "normalized_name": "oyster vr" + }, + { + "appid": 1974400, + "normalized_name": "obstacle course prologue" + }, + { + "appid": 1974410, + "normalized_name": "star hearts launch point" + }, + { + "appid": 1974440, + "normalized_name": "celeritas" + }, + { + "appid": 1974510, + "normalized_name": "beanstalk" + }, + { + "appid": 1974520, + "normalized_name": "dusk pub adult only" + }, + { + "appid": 1974540, + "normalized_name": "graphsx" + }, + { + "appid": 1974550, + "normalized_name": "ragdoll labs" + }, + { + "appid": 1974560, + "normalized_name": "blade and burden" + }, + { + "appid": 1974590, + "normalized_name": "timeways" + }, + { + "appid": 1974610, + "normalized_name": "panzer arena prologue" + }, + { + "appid": 1975040, + "normalized_name": "dog adventure harmony" + }, + { + "appid": 1975080, + "normalized_name": "여동생 ♡ 만들기 당신이 바라는 소녀의 모습 teen version" + }, + { + "appid": 1975090, + "normalized_name": "fusion nexus alchemic evolution" + }, + { + "appid": 1975100, + "normalized_name": "playback trauma in sickness" + }, + { + "appid": 1975120, + "normalized_name": "the lost dachshund" + }, + { + "appid": 1975160, + "normalized_name": "be" + }, + { + "appid": 1975170, + "normalized_name": "without end" + }, + { + "appid": 1975180, + "normalized_name": "the night of the scissors" + }, + { + "appid": 1975280, + "normalized_name": "between two worlds" + }, + { + "appid": 1975290, + "normalized_name": "tomorrow for mar" + }, + { + "appid": 1975320, + "normalized_name": "kronos titan of time" + }, + { + "appid": 1975340, + "normalized_name": "haitenai rpg" + }, + { + "appid": 1975350, + "normalized_name": "insectoid descent" + }, + { + "appid": 1975360, + "normalized_name": "drainus" + }, + { + "appid": 1975370, + "normalized_name": "snipe hunt" + }, + { + "appid": 1975380, + "normalized_name": "kaiju catastrophe" + }, + { + "appid": 1975420, + "normalized_name": "othello daynight time clash" + }, + { + "appid": 1975440, + "normalized_name": "under the waves" + }, + { + "appid": 1975450, + "normalized_name": "aery vikings" + }, + { + "appid": 1975470, + "normalized_name": "band of mercenaries" + }, + { + "appid": 1975500, + "normalized_name": "polygon pursuit" + }, + { + "appid": 1975520, + "normalized_name": "astronomics" + }, + { + "appid": 1975530, + "normalized_name": "choice of the viking" + }, + { + "appid": 1975550, + "normalized_name": "skystrike wings of justice" + }, + { + "appid": 1975570, + "normalized_name": "cricket captain 2022" + }, + { + "appid": 1975580, + "normalized_name": "wild woods" + }, + { + "appid": 1975640, + "normalized_name": "fast food on the beach!" + }, + { + "appid": 1975650, + "normalized_name": "the idle undead" + }, + { + "appid": 1975670, + "normalized_name": "white lavender" + }, + { + "appid": 1975720, + "normalized_name": "soul of kaeru" + }, + { + "appid": 1975730, + "normalized_name": "grimhunt" + }, + { + "appid": 1975790, + "normalized_name": "vergeworld" + }, + { + "appid": 1975810, + "normalized_name": "girls' civilization 3" + }, + { + "appid": 1975840, + "normalized_name": "sovranti" + }, + { + "appid": 1975860, + "normalized_name": "drift type c" + }, + { + "appid": 1975890, + "normalized_name": "alone" + }, + { + "appid": 1975900, + "normalized_name": "cold renegade" + }, + { + "appid": 1976000, + "normalized_name": "sex adventures futanari mistress" + }, + { + "appid": 1976030, + "normalized_name": "memory puzzle futanari threesome" + }, + { + "appid": 1976100, + "normalized_name": "survivor cells" + }, + { + "appid": 1976110, + "normalized_name": "dreaming worlds" + }, + { + "appid": 1976120, + "normalized_name": "the great ocean" + }, + { + "appid": 1976130, + "normalized_name": "kicknslap" + }, + { + "appid": 1976180, + "normalized_name": "rhythm knights double treble" + }, + { + "appid": 1976190, + "normalized_name": "edward's journey" + }, + { + "appid": 1976230, + "normalized_name": "outnumbered" + }, + { + "appid": 1976240, + "normalized_name": "dreams of pain" + }, + { + "appid": 1976310, + "normalized_name": "riemann's lens" + }, + { + "appid": 1976390, + "normalized_name": "prepare uranus exploring black holes for adults" + }, + { + "appid": 1976440, + "normalized_name": "counterside" + }, + { + "appid": 1976450, + "normalized_name": "meiqi story" + }, + { + "appid": 1976490, + "normalized_name": "shadowbringer" + }, + { + "appid": 1976520, + "normalized_name": "a100" + }, + { + "appid": 1976540, + "normalized_name": "超自然侦探社" + }, + { + "appid": 1976590, + "normalized_name": "eternal space" + }, + { + "appid": 1976630, + "normalized_name": "simple solitaire" + }, + { + "appid": 1976650, + "normalized_name": "sukebe beach" + }, + { + "appid": 1976660, + "normalized_name": "wtp story 1" + }, + { + "appid": 1976690, + "normalized_name": "bloody pigs 1996" + }, + { + "appid": 1976730, + "normalized_name": "mugencards" + }, + { + "appid": 1976740, + "normalized_name": "木偶公馆" + }, + { + "appid": 1976750, + "normalized_name": "cardia" + }, + { + "appid": 1976800, + "normalized_name": "不可能犯罪事件簿 impossible crime book" + }, + { + "appid": 1976830, + "normalized_name": "vivaland" + }, + { + "appid": 1976860, + "normalized_name": "morse" + }, + { + "appid": 1976890, + "normalized_name": "five finger discount" + }, + { + "appid": 1976930, + "normalized_name": "falinere fantasy" + }, + { + "appid": 1976950, + "normalized_name": "desktop dungeons rewind" + }, + { + "appid": 1976980, + "normalized_name": "denos city game" + }, + { + "appid": 1977000, + "normalized_name": "symbiotic invasion" + }, + { + "appid": 1977030, + "normalized_name": "abort retry fail" + }, + { + "appid": 1977050, + "normalized_name": "my furry maid 🐾" + }, + { + "appid": 1977070, + "normalized_name": "peacemaker glorious princess" + }, + { + "appid": 1977090, + "normalized_name": "soul slayer" + }, + { + "appid": 1977100, + "normalized_name": "timeless heart vr" + }, + { + "appid": 1977110, + "normalized_name": "line path" + }, + { + "appid": 1977130, + "normalized_name": "public restroom simulator 2022" + }, + { + "appid": 1977170, + "normalized_name": "jusant" + }, + { + "appid": 1977190, + "normalized_name": "happy hops" + }, + { + "appid": 1977200, + "normalized_name": "payloaders strike!" + }, + { + "appid": 1977220, + "normalized_name": "delete after reading" + }, + { + "appid": 1977230, + "normalized_name": "ralph's party rpg" + }, + { + "appid": 1977250, + "normalized_name": "aery last day of earth" + }, + { + "appid": 1977270, + "normalized_name": "super indiemania" + }, + { + "appid": 1977280, + "normalized_name": "school bus driver simulator" + }, + { + "appid": 1977360, + "normalized_name": "chords enchanter" + }, + { + "appid": 1977440, + "normalized_name": "thieves' paradise" + }, + { + "appid": 1977450, + "normalized_name": "escape from zombie u reloaded" + }, + { + "appid": 1977470, + "normalized_name": "akari the five eyed fox" + }, + { + "appid": 1977530, + "normalized_name": "one armed cook" + }, + { + "appid": 1977610, + "normalized_name": "long gone" + }, + { + "appid": 1977640, + "normalized_name": "twogether project indigos chapter 1" + }, + { + "appid": 1977660, + "normalized_name": "elegies aya" + }, + { + "appid": 1977730, + "normalized_name": "endless bullet heaven" + }, + { + "appid": 1977740, + "normalized_name": "my little sister's special place" + }, + { + "appid": 1977750, + "normalized_name": "hoverrider" + }, + { + "appid": 1977770, + "normalized_name": "hexes" + }, + { + "appid": 1977840, + "normalized_name": "hypernova" + }, + { + "appid": 1977890, + "normalized_name": "skylost" + }, + { + "appid": 1977900, + "normalized_name": "bonza boom" + }, + { + "appid": 1977910, + "normalized_name": "shinonome" + }, + { + "appid": 1977940, + "normalized_name": "me my mech and i" + }, + { + "appid": 1977960, + "normalized_name": "battlerace" + }, + { + "appid": 1978000, + "normalized_name": "一代掌门" + }, + { + "appid": 1978010, + "normalized_name": "red valley" + }, + { + "appid": 1978070, + "normalized_name": "tank dash" + }, + { + "appid": 1978090, + "normalized_name": "gunboxing" + }, + { + "appid": 1978100, + "normalized_name": "grand prix story" + }, + { + "appid": 1978110, + "normalized_name": "humdle" + }, + { + "appid": 1978150, + "normalized_name": "kamaeru a frog refuge" + }, + { + "appid": 1978180, + "normalized_name": "charlotte dragon slayer" + }, + { + "appid": 1978190, + "normalized_name": "harpoon shooter! nozomi" + }, + { + "appid": 1978200, + "normalized_name": "jumping jack" + }, + { + "appid": 1978210, + "normalized_name": "the grinch christmas adventures" + }, + { + "appid": 1978280, + "normalized_name": "the hunt of the blood moon" + }, + { + "appid": 1978290, + "normalized_name": "loskop" + }, + { + "appid": 1978330, + "normalized_name": "life gallery" + }, + { + "appid": 1978350, + "normalized_name": "friendly blonding" + }, + { + "appid": 1978360, + "normalized_name": "crescent arcania" + }, + { + "appid": 1978380, + "normalized_name": "rival rides" + }, + { + "appid": 1978460, + "normalized_name": "death's playground" + }, + { + "appid": 1978470, + "normalized_name": "cyphers game vr" + }, + { + "appid": 1978480, + "normalized_name": "come home." + }, + { + "appid": 1978490, + "normalized_name": "像素绘图方块" + }, + { + "appid": 1978500, + "normalized_name": "月圆之堡 castle of full moon" + }, + { + "appid": 1978520, + "normalized_name": "heartless" + }, + { + "appid": 1978580, + "normalized_name": "sgs operation downfall" + }, + { + "appid": 1978590, + "normalized_name": "anger foot" + }, + { + "appid": 1978610, + "normalized_name": "gamer girls dating sim" + }, + { + "appid": 1978630, + "normalized_name": "beneath the stars" + }, + { + "appid": 1978650, + "normalized_name": "blickel" + }, + { + "appid": 1978690, + "normalized_name": "vojna" + }, + { + "appid": 1978720, + "normalized_name": "ragdoll game" + }, + { + "appid": 1978750, + "normalized_name": "phobos psychodeath 狂死" + }, + { + "appid": 1978760, + "normalized_name": "mayonnaise simulator" + }, + { + "appid": 1978790, + "normalized_name": "naxos" + }, + { + "appid": 1978800, + "normalized_name": "aqtion" + }, + { + "appid": 1978850, + "normalized_name": "av racer" + }, + { + "appid": 1978890, + "normalized_name": "cartographer" + }, + { + "appid": 1978900, + "normalized_name": "defying fate" + }, + { + "appid": 1978920, + "normalized_name": "bean story" + }, + { + "appid": 1978970, + "normalized_name": "heart is muscle" + }, + { + "appid": 1979060, + "normalized_name": "erectus" + }, + { + "appid": 1979130, + "normalized_name": "nix ashes of the phoenix" + }, + { + "appid": 1979160, + "normalized_name": "gorogue" + }, + { + "appid": 1979190, + "normalized_name": "finding america the heartland" + }, + { + "appid": 1979200, + "normalized_name": "mortal vessel" + }, + { + "appid": 1979210, + "normalized_name": "dissent" + }, + { + "appid": 1979220, + "normalized_name": "coalescence" + }, + { + "appid": 1979230, + "normalized_name": "blood servants" + }, + { + "appid": 1979240, + "normalized_name": "hyperland" + }, + { + "appid": 1979280, + "normalized_name": "jigsaw puzzle futanari massage" + }, + { + "appid": 1979290, + "normalized_name": "魔女酒馆 witches tavern" + }, + { + "appid": 1979300, + "normalized_name": "village guardians" + }, + { + "appid": 1979320, + "normalized_name": "amber city" + }, + { + "appid": 1979350, + "normalized_name": "astro world" + }, + { + "appid": 1979390, + "normalized_name": "king" + }, + { + "appid": 1979410, + "normalized_name": "top dog" + }, + { + "appid": 1979430, + "normalized_name": "dreadful hours" + }, + { + "appid": 1979440, + "normalized_name": "sand land" + }, + { + "appid": 1979450, + "normalized_name": "the tale of destiny island" + }, + { + "appid": 1979460, + "normalized_name": "sinister night" + }, + { + "appid": 1979470, + "normalized_name": "spacewing war" + }, + { + "appid": 1979480, + "normalized_name": "garbage collect" + }, + { + "appid": 1979490, + "normalized_name": "last round" + }, + { + "appid": 1979500, + "normalized_name": "groven" + }, + { + "appid": 1979520, + "normalized_name": "lizard quest!" + }, + { + "appid": 1979570, + "normalized_name": "tomomon legacy of light" + }, + { + "appid": 1979590, + "normalized_name": "lunaela" + }, + { + "appid": 1979610, + "normalized_name": "the fed" + }, + { + "appid": 1979640, + "normalized_name": "7groves" + }, + { + "appid": 1979660, + "normalized_name": "song of iron 2" + }, + { + "appid": 1979700, + "normalized_name": "logica emotica" + }, + { + "appid": 1979810, + "normalized_name": "adventurequest worlds infinity" + }, + { + "appid": 1979850, + "normalized_name": "eternal samurai" + }, + { + "appid": 1979860, + "normalized_name": "soothing farmer" + }, + { + "appid": 1979880, + "normalized_name": "swordswallower" + }, + { + "appid": 1979920, + "normalized_name": "speculation" + }, + { + "appid": 1979930, + "normalized_name": "freedroidrpg" + }, + { + "appid": 1979960, + "normalized_name": "iron side" + }, + { + "appid": 1979970, + "normalized_name": "two colours" + }, + { + "appid": 1979980, + "normalized_name": "ultra sweeper" + }, + { + "appid": 1979990, + "normalized_name": "galactic escape" + }, + { + "appid": 1980010, + "normalized_name": "the backrooms deeper" + }, + { + "appid": 1980120, + "normalized_name": "chickens be crazy" + }, + { + "appid": 1980140, + "normalized_name": "the door project" + }, + { + "appid": 1980150, + "normalized_name": "graze" + }, + { + "appid": 1980240, + "normalized_name": "阿瑞斯病毒2" + }, + { + "appid": 1980250, + "normalized_name": "mystal haven" + }, + { + "appid": 1980260, + "normalized_name": "bewbewbew" + }, + { + "appid": 1980270, + "normalized_name": "the submerging island" + }, + { + "appid": 1980300, + "normalized_name": "realm watch" + }, + { + "appid": 1980350, + "normalized_name": "run build pew!" + }, + { + "appid": 1980360, + "normalized_name": "dark front" + }, + { + "appid": 1980390, + "normalized_name": "neighbor fight" + }, + { + "appid": 1980400, + "normalized_name": "aletta visual novel" + }, + { + "appid": 1980420, + "normalized_name": "rounds of zombies" + }, + { + "appid": 1980440, + "normalized_name": "versus." + }, + { + "appid": 1980460, + "normalized_name": "skykipelago" + }, + { + "appid": 1980500, + "normalized_name": "squarely blue" + }, + { + "appid": 1980510, + "normalized_name": "lunch tycoon" + }, + { + "appid": 1980520, + "normalized_name": "outpost defender 2 beta" + }, + { + "appid": 1980530, + "normalized_name": "kiwi clicker juiced up" + }, + { + "appid": 1980540, + "normalized_name": "the department / trosedd" + }, + { + "appid": 1980560, + "normalized_name": "cryptid kitchen" + }, + { + "appid": 1980570, + "normalized_name": "grederys" + }, + { + "appid": 1980590, + "normalized_name": "revans" + }, + { + "appid": 1980600, + "normalized_name": "dueledged" + }, + { + "appid": 1980620, + "normalized_name": "project anomaly urban supernatural investigator" + }, + { + "appid": 1980680, + "normalized_name": "aurelia stellar arising" + }, + { + "appid": 1980700, + "normalized_name": "duck's most terrible day" + }, + { + "appid": 1980710, + "normalized_name": "vladimere's lhore" + }, + { + "appid": 1980740, + "normalized_name": "masefeh" + }, + { + "appid": 1980770, + "normalized_name": "floor44" + }, + { + "appid": 1980780, + "normalized_name": "goog" + }, + { + "appid": 1980820, + "normalized_name": "before sunset 日落之前" + }, + { + "appid": 1980830, + "normalized_name": "until last tomorrow" + }, + { + "appid": 1980860, + "normalized_name": "goofy man" + }, + { + "appid": 1980890, + "normalized_name": "sky in your eyes" + }, + { + "appid": 1980930, + "normalized_name": "遗忘之地" + }, + { + "appid": 1980980, + "normalized_name": "the backrooms project" + }, + { + "appid": 1980990, + "normalized_name": "nuts space shooter" + }, + { + "appid": 1981000, + "normalized_name": "vintage records from hell" + }, + { + "appid": 1981010, + "normalized_name": "space survival" + }, + { + "appid": 1981020, + "normalized_name": "reaper of immortals" + }, + { + "appid": 1981030, + "normalized_name": "strange labyrinth" + }, + { + "appid": 1981050, + "normalized_name": "defiled survivors" + }, + { + "appid": 1981090, + "normalized_name": "wordwar" + }, + { + "appid": 1981160, + "normalized_name": "banchou tactics" + }, + { + "appid": 1981190, + "normalized_name": "equinox" + }, + { + "appid": 1981230, + "normalized_name": "tales of the death" + }, + { + "appid": 1981250, + "normalized_name": "date ariane" + }, + { + "appid": 1981290, + "normalized_name": "mini treasure girl" + }, + { + "appid": 1981300, + "normalized_name": "shadow racer" + }, + { + "appid": 1981310, + "normalized_name": "good luck have fun" + }, + { + "appid": 1981350, + "normalized_name": "hitstun" + }, + { + "appid": 1981360, + "normalized_name": "guardians of temple" + }, + { + "appid": 1981370, + "normalized_name": "down the drain" + }, + { + "appid": 1981380, + "normalized_name": "static of eve –凝滯聖夜–" + }, + { + "appid": 1981480, + "normalized_name": "thrill penguin" + }, + { + "appid": 1981500, + "normalized_name": "archmage ricka" + }, + { + "appid": 1981510, + "normalized_name": "spotfight" + }, + { + "appid": 1981530, + "normalized_name": "stresstest" + }, + { + "appid": 1981540, + "normalized_name": "penetrator" + }, + { + "appid": 1981560, + "normalized_name": "万词破 单词女友 wcp word girlfriend" + }, + { + "appid": 1981570, + "normalized_name": "land of the vikings" + }, + { + "appid": 1981590, + "normalized_name": "batho[tel]" + }, + { + "appid": 1981610, + "normalized_name": "wanted dead" + }, + { + "appid": 1981690, + "normalized_name": "wtc love's labour's lost" + }, + { + "appid": 1981700, + "normalized_name": "jacob's quest anniversary" + }, + { + "appid": 1981710, + "normalized_name": "interitus" + }, + { + "appid": 1981740, + "normalized_name": "palmas" + }, + { + "appid": 1981780, + "normalized_name": "family battle タッグアリーナ" + }, + { + "appid": 1981820, + "normalized_name": "strike force heroes" + }, + { + "appid": 1981830, + "normalized_name": "mewmew pewpew" + }, + { + "appid": 1981840, + "normalized_name": "escaping darkness" + }, + { + "appid": 1981860, + "normalized_name": "green diver" + }, + { + "appid": 1981890, + "normalized_name": "kingdom knights" + }, + { + "appid": 1981910, + "normalized_name": "gymbeasts" + }, + { + "appid": 1981970, + "normalized_name": "cosmic purge" + }, + { + "appid": 1981980, + "normalized_name": "pearphone.io" + }, + { + "appid": 1982050, + "normalized_name": "watercolor hell" + }, + { + "appid": 1982110, + "normalized_name": "wingedstar descent" + }, + { + "appid": 1982120, + "normalized_name": "paper animal adventure" + }, + { + "appid": 1982130, + "normalized_name": "kraino origins" + }, + { + "appid": 1982150, + "normalized_name": "rwby arrowfell" + }, + { + "appid": 1982180, + "normalized_name": "trade sails" + }, + { + "appid": 1982190, + "normalized_name": "among the skies" + }, + { + "appid": 1982200, + "normalized_name": "neko night" + }, + { + "appid": 1982230, + "normalized_name": "heaven snakes [beta]" + }, + { + "appid": 1982240, + "normalized_name": "kitbashers united" + }, + { + "appid": 1982260, + "normalized_name": "shiny man adventures" + }, + { + "appid": 1982340, + "normalized_name": "blanc" + }, + { + "appid": 1982360, + "normalized_name": "the bird's realm 3" + }, + { + "appid": 1982410, + "normalized_name": "fish volleyball" + }, + { + "appid": 1982430, + "normalized_name": "kunai strike" + }, + { + "appid": 1982450, + "normalized_name": "happyplayers" + }, + { + "appid": 1982480, + "normalized_name": "kingdoms and slaves" + }, + { + "appid": 1982510, + "normalized_name": "大戦略ssb" + }, + { + "appid": 1982590, + "normalized_name": "little harvest" + }, + { + "appid": 1982600, + "normalized_name": "修仙世界" + }, + { + "appid": 1982620, + "normalized_name": "mirror war reincarnation of holiness sa" + }, + { + "appid": 1982630, + "normalized_name": "exorcism ritual" + }, + { + "appid": 1982640, + "normalized_name": "mosaics galore. glorious journey" + }, + { + "appid": 1982650, + "normalized_name": "jigsaw puzzle beach season 2" + }, + { + "appid": 1982660, + "normalized_name": "royal jigsaw 2" + }, + { + "appid": 1982670, + "normalized_name": "mystery solitaire cthulhu mythos" + }, + { + "appid": 1982680, + "normalized_name": "knight solitaire 3" + }, + { + "appid": 1982730, + "normalized_name": "미니언 슬레이어 성장형 디펜스" + }, + { + "appid": 1982790, + "normalized_name": "a piano tale" + }, + { + "appid": 1982810, + "normalized_name": "amanda's magic book 4 true love" + }, + { + "appid": 1982900, + "normalized_name": "coding learn" + }, + { + "appid": 1982940, + "normalized_name": "heistgeist" + }, + { + "appid": 1982950, + "normalized_name": "astronomics rise of a new empire" + }, + { + "appid": 1982990, + "normalized_name": "纷争之世" + }, + { + "appid": 1983000, + "normalized_name": "hayai" + }, + { + "appid": 1983010, + "normalized_name": "furry hentai isekai" + }, + { + "appid": 1983020, + "normalized_name": "caterpillar" + }, + { + "appid": 1983050, + "normalized_name": "black metal" + }, + { + "appid": 1983100, + "normalized_name": "lost bits" + }, + { + "appid": 1983120, + "normalized_name": "awakening of legend" + }, + { + "appid": 1983140, + "normalized_name": "primal roar jurassic dinosaur era" + }, + { + "appid": 1983150, + "normalized_name": "scripted souls" + }, + { + "appid": 1983180, + "normalized_name": "rpg boys fantasy" + }, + { + "appid": 1983220, + "normalized_name": "ugly" + }, + { + "appid": 1983230, + "normalized_name": "vallen" + }, + { + "appid": 1983260, + "normalized_name": "dungeons of hinterberg" + }, + { + "appid": 1983270, + "normalized_name": "赠予神家与谎言" + }, + { + "appid": 1983280, + "normalized_name": "dark desire 2" + }, + { + "appid": 1983290, + "normalized_name": "legends from lacoytas the first seeker" + }, + { + "appid": 1983300, + "normalized_name": "paper ghost stories third eye open" + }, + { + "appid": 1983330, + "normalized_name": "exorcist" + }, + { + "appid": 1983360, + "normalized_name": "mana valley" + }, + { + "appid": 1983390, + "normalized_name": "regular luckiest guy love & blocks" + }, + { + "appid": 1983420, + "normalized_name": "lofi hotel" + }, + { + "appid": 1983430, + "normalized_name": "viltnemda" + }, + { + "appid": 1983450, + "normalized_name": "brave builder construct a climb" + }, + { + "appid": 1983480, + "normalized_name": "war in europe 1940 (classic)" + }, + { + "appid": 1983510, + "normalized_name": "extract me" + }, + { + "appid": 1983520, + "normalized_name": "ultrafun" + }, + { + "appid": 1983540, + "normalized_name": "symmetry lines" + }, + { + "appid": 1983550, + "normalized_name": "volvalis" + }, + { + "appid": 1983560, + "normalized_name": "breaking & entering" + }, + { + "appid": 1983580, + "normalized_name": "there swings a skull grim tidings" + }, + { + "appid": 1983600, + "normalized_name": "typer girl" + }, + { + "appid": 1983620, + "normalized_name": "infinitevania" + }, + { + "appid": 1983640, + "normalized_name": "forbidden ninja scroll kunoichi training" + }, + { + "appid": 1983650, + "normalized_name": "chromatic" + }, + { + "appid": 1983670, + "normalized_name": "cosmopoly" + }, + { + "appid": 1983690, + "normalized_name": "forest camp story" + }, + { + "appid": 1983700, + "normalized_name": "mega mall story 2" + }, + { + "appid": 1983710, + "normalized_name": "dungeon village 2" + }, + { + "appid": 1983740, + "normalized_name": "cryptid coffeehouse" + }, + { + "appid": 1983780, + "normalized_name": "chronicle of forgotten times pawn of the gods" + }, + { + "appid": 1983830, + "normalized_name": "东方三妖精大冒险~take it easy" + }, + { + "appid": 1983850, + "normalized_name": "neogeo pocket color selection vol.2" + }, + { + "appid": 1983880, + "normalized_name": "short sad stories" + }, + { + "appid": 1983910, + "normalized_name": "prison survival architect of crime simulator" + }, + { + "appid": 1983970, + "normalized_name": "affogato" + }, + { + "appid": 1983990, + "normalized_name": "nexus 5x" + }, + { + "appid": 1984000, + "normalized_name": "godless grove" + }, + { + "appid": 1984020, + "normalized_name": "everhood 2" + }, + { + "appid": 1984030, + "normalized_name": "vowel movements" + }, + { + "appid": 1984040, + "normalized_name": "terminate study x" + }, + { + "appid": 1984060, + "normalized_name": "war in heaven" + }, + { + "appid": 1984070, + "normalized_name": "myrnescapes" + }, + { + "appid": 1984110, + "normalized_name": "goetia 2" + }, + { + "appid": 1984140, + "normalized_name": "temple trashers" + }, + { + "appid": 1984150, + "normalized_name": "lunar camp glenn" + }, + { + "appid": 1984190, + "normalized_name": "genopanic" + }, + { + "appid": 1984200, + "normalized_name": "after he was gone" + }, + { + "appid": 1984210, + "normalized_name": "dejar ir a pandemic soulful tale" + }, + { + "appid": 1984220, + "normalized_name": "dungeon fall" + }, + { + "appid": 1984230, + "normalized_name": "my days in bel air" + }, + { + "appid": 1984240, + "normalized_name": "victim" + }, + { + "appid": 1984250, + "normalized_name": "os rogue" + }, + { + "appid": 1984260, + "normalized_name": "baron of blood" + }, + { + "appid": 1984270, + "normalized_name": "digimon story time stranger" + }, + { + "appid": 1984350, + "normalized_name": "打工吧!天使酱 ~天使在魔界的劳改生活~" + }, + { + "appid": 1984390, + "normalized_name": "crazy shark" + }, + { + "appid": 1984400, + "normalized_name": "pirate fishing" + }, + { + "appid": 1984440, + "normalized_name": "disastory" + }, + { + "appid": 1984490, + "normalized_name": "cropped" + }, + { + "appid": 1984550, + "normalized_name": "friend on the go" + }, + { + "appid": 1984570, + "normalized_name": "cyber league football" + }, + { + "appid": 1984590, + "normalized_name": "the tyrning combat challenge" + }, + { + "appid": 1984610, + "normalized_name": "barbaria" + }, + { + "appid": 1984630, + "normalized_name": "gone" + }, + { + "appid": 1984670, + "normalized_name": "detect dan the dog!" + }, + { + "appid": 1984690, + "normalized_name": "survive the uprising" + }, + { + "appid": 1984710, + "normalized_name": "synthwave fury" + }, + { + "appid": 1984720, + "normalized_name": "逐鹿" + }, + { + "appid": 1984770, + "normalized_name": "oh shit boulder" + }, + { + "appid": 1984790, + "normalized_name": "drago noka" + }, + { + "appid": 1984800, + "normalized_name": "decayz origin" + }, + { + "appid": 1984810, + "normalized_name": "gale of windoria" + }, + { + "appid": 1984840, + "normalized_name": "traffic safety" + }, + { + "appid": 1984890, + "normalized_name": "校园拾光 the golden time in high school" + }, + { + "appid": 1984910, + "normalized_name": "racoonie legend of the spirits" + }, + { + "appid": 1985040, + "normalized_name": "无常" + }, + { + "appid": 1985050, + "normalized_name": "field of glory kingdoms" + }, + { + "appid": 1985150, + "normalized_name": "we are definitely the baddies" + }, + { + "appid": 1985160, + "normalized_name": "principle of karma" + }, + { + "appid": 1985170, + "normalized_name": "warhammer 40 000 warpforge" + }, + { + "appid": 1985240, + "normalized_name": "putinist slayer" + }, + { + "appid": 1985250, + "normalized_name": "memoir" + }, + { + "appid": 1985260, + "normalized_name": "kinkoi golden time" + }, + { + "appid": 1985290, + "normalized_name": "reality layer zero" + }, + { + "appid": 1985300, + "normalized_name": "sir abandon" + }, + { + "appid": 1985320, + "normalized_name": "kādomon hyper auto battlers prologue" + }, + { + "appid": 1985350, + "normalized_name": "pixel gangsters mafia manager" + }, + { + "appid": 1985360, + "normalized_name": "cute cats 3" + }, + { + "appid": 1985420, + "normalized_name": "this is a ghost" + }, + { + "appid": 1985430, + "normalized_name": "bogdan's heartquest the invader slayer" + }, + { + "appid": 1985500, + "normalized_name": "집착의 망자 집으로부터의 탈출" + }, + { + "appid": 1985510, + "normalized_name": "ukraine war stories" + }, + { + "appid": 1985520, + "normalized_name": "gaz" + }, + { + "appid": 1985550, + "normalized_name": "the alpinist" + }, + { + "appid": 1985580, + "normalized_name": "galacticorp" + }, + { + "appid": 1985610, + "normalized_name": "nympho's path" + }, + { + "appid": 1985620, + "normalized_name": "ghost girl lasling (g rated)" + }, + { + "appid": 1985630, + "normalized_name": "tom's adventure" + }, + { + "appid": 1985640, + "normalized_name": "igrerea the land above the stars" + }, + { + "appid": 1985660, + "normalized_name": "spectral showdown" + }, + { + "appid": 1985670, + "normalized_name": "orbital approach" + }, + { + "appid": 1985680, + "normalized_name": "charming heart" + }, + { + "appid": 1985690, + "normalized_name": "the looker" + }, + { + "appid": 1985710, + "normalized_name": "a war of a madman's making" + }, + { + "appid": 1985740, + "normalized_name": "bugaboo pocket" + }, + { + "appid": 1985770, + "normalized_name": "nazi furry" + }, + { + "appid": 1985810, + "normalized_name": "call of duty black ops cold war" + }, + { + "appid": 1985820, + "normalized_name": "call of duty vanguard" + }, + { + "appid": 1985910, + "normalized_name": "hotel management simulator" + }, + { + "appid": 1985930, + "normalized_name": "the backrooms 1998 found footage survival horror game" + }, + { + "appid": 1985940, + "normalized_name": "深渊奇境" + }, + { + "appid": 1985950, + "normalized_name": "duel jousting vr" + }, + { + "appid": 1985960, + "normalized_name": "ogu and the secret forest" + }, + { + "appid": 1985980, + "normalized_name": "genimas life reborn" + }, + { + "appid": 1986010, + "normalized_name": "灵墟" + }, + { + "appid": 1986040, + "normalized_name": "kingdom draw" + }, + { + "appid": 1986070, + "normalized_name": "cook ol" + }, + { + "appid": 1986120, + "normalized_name": "chaste tris" + }, + { + "appid": 1986170, + "normalized_name": "mad bullz" + }, + { + "appid": 1986200, + "normalized_name": "bomb it!" + }, + { + "appid": 1986230, + "normalized_name": "what if your girl was a frog?" + }, + { + "appid": 1986240, + "normalized_name": "maid pizzahub" + }, + { + "appid": 1986250, + "normalized_name": "ヒロイン忍法帖 姫影・ 壱/pretty ninja himekage_01" + }, + { + "appid": 1986290, + "normalized_name": "countryballs the heist" + }, + { + "appid": 1986310, + "normalized_name": "猎魔战纪" + }, + { + "appid": 1986360, + "normalized_name": "radical striker" + }, + { + "appid": 1986370, + "normalized_name": "grizelda lynx and the nine lives" + }, + { + "appid": 1986380, + "normalized_name": "surflexers" + }, + { + "appid": 1986390, + "normalized_name": "passed out" + }, + { + "appid": 1986400, + "normalized_name": "echo's climb" + }, + { + "appid": 1986430, + "normalized_name": "carrot pancakes and waffles" + }, + { + "appid": 1986440, + "normalized_name": "the finally รักเราชั่วนิรันดร์" + }, + { + "appid": 1986470, + "normalized_name": "last meow standing" + }, + { + "appid": 1986490, + "normalized_name": "cabinet of curiosities vr" + }, + { + "appid": 1986550, + "normalized_name": "lollipop summer!" + }, + { + "appid": 1986560, + "normalized_name": "tilted tennis" + }, + { + "appid": 1986620, + "normalized_name": "mortmentum" + }, + { + "appid": 1986630, + "normalized_name": "royal legends raised in exile collector's" + }, + { + "appid": 1986650, + "normalized_name": "cryospace prologue" + }, + { + "appid": 1986680, + "normalized_name": "me and the zombies" + }, + { + "appid": 1986710, + "normalized_name": "marine school simulator" + }, + { + "appid": 1986760, + "normalized_name": "police stories the academy" + }, + { + "appid": 1986770, + "normalized_name": "jacktus green the fluffy the spiky and the spicy" + }, + { + "appid": 1986780, + "normalized_name": "metälbörn" + }, + { + "appid": 1986790, + "normalized_name": "seeking light" + }, + { + "appid": 1986800, + "normalized_name": "insurrection cyborgs awakening" + }, + { + "appid": 1986840, + "normalized_name": "popgoes arcade" + }, + { + "appid": 1986880, + "normalized_name": "growing my grandpa!" + }, + { + "appid": 1986900, + "normalized_name": "blocked zona" + }, + { + "appid": 1986910, + "normalized_name": "su the son of gaia" + }, + { + "appid": 1986930, + "normalized_name": "elspell" + }, + { + "appid": 1986940, + "normalized_name": "forward defense" + }, + { + "appid": 1986970, + "normalized_name": "phone seller simulator" + }, + { + "appid": 1986980, + "normalized_name": "the legend of chibi ninja" + }, + { + "appid": 1986990, + "normalized_name": "knights of the exploding table" + }, + { + "appid": 1987030, + "normalized_name": "heroes of time" + }, + { + "appid": 1987050, + "normalized_name": "metal world street scraps" + }, + { + "appid": 1987060, + "normalized_name": "the journey episode 2 words of wisdom" + }, + { + "appid": 1987080, + "normalized_name": "inside the backrooms" + }, + { + "appid": 1987110, + "normalized_name": "虚幻宇宙:重启" + }, + { + "appid": 1987120, + "normalized_name": "arclight beat" + }, + { + "appid": 1987140, + "normalized_name": "fertile heroine seaworthy" + }, + { + "appid": 1987150, + "normalized_name": "棋物语 stick go story" + }, + { + "appid": 1987160, + "normalized_name": "the kobolds left behind" + }, + { + "appid": 1987220, + "normalized_name": "enatus radi" + }, + { + "appid": 1987260, + "normalized_name": "九尾异神录 the nine tailed celestial fox" + }, + { + "appid": 1987280, + "normalized_name": "arth island" + }, + { + "appid": 1987290, + "normalized_name": "mebula" + }, + { + "appid": 1987330, + "normalized_name": "cyberpoly" + }, + { + "appid": 1987350, + "normalized_name": "seasons" + }, + { + "appid": 1987400, + "normalized_name": "death relives" + }, + { + "appid": 1987420, + "normalized_name": "call sign is magic liner" + }, + { + "appid": 1987440, + "normalized_name": "paranecro" + }, + { + "appid": 1987450, + "normalized_name": "byte cats" + }, + { + "appid": 1987470, + "normalized_name": "gem setter" + }, + { + "appid": 1987480, + "normalized_name": "勇者与亡灵之都" + }, + { + "appid": 1987490, + "normalized_name": "save all monsters!" + }, + { + "appid": 1987500, + "normalized_name": "no son of mine" + }, + { + "appid": 1987550, + "normalized_name": "via mortis" + }, + { + "appid": 1987570, + "normalized_name": "case #1472" + }, + { + "appid": 1987590, + "normalized_name": "intergalactic taxi co." + }, + { + "appid": 1987630, + "normalized_name": "1651" + }, + { + "appid": 1987650, + "normalized_name": "lone elven wanderer" + }, + { + "appid": 1987660, + "normalized_name": "arc intelligence" + }, + { + "appid": 1987690, + "normalized_name": "super sushi roll" + }, + { + "appid": 1987710, + "normalized_name": "kinetic break all limits" + }, + { + "appid": 1987730, + "normalized_name": "smiths & legends" + }, + { + "appid": 1987750, + "normalized_name": "silent world" + }, + { + "appid": 1987780, + "normalized_name": "dreamisland" + }, + { + "appid": 1987800, + "normalized_name": "ruptured" + }, + { + "appid": 1987810, + "normalized_name": "fight for it" + }, + { + "appid": 1987860, + "normalized_name": "another generic space shooter" + }, + { + "appid": 1987900, + "normalized_name": "ante mortem" + }, + { + "appid": 1987950, + "normalized_name": "wassie tale" + }, + { + "appid": 1987970, + "normalized_name": "manki yagyo" + }, + { + "appid": 1987980, + "normalized_name": "fatal countdown immoral list of desires" + }, + { + "appid": 1987990, + "normalized_name": "vanilla brulee & the rose bandit" + }, + { + "appid": 1988010, + "normalized_name": "lightout 2" + }, + { + "appid": 1988020, + "normalized_name": "the bastonnes" + }, + { + "appid": 1988030, + "normalized_name": "rain ruin" + }, + { + "appid": 1988050, + "normalized_name": "cave vr" + }, + { + "appid": 1988080, + "normalized_name": "elf boss's dog training" + }, + { + "appid": 1988090, + "normalized_name": "my intimate love with the devil king" + }, + { + "appid": 1988100, + "normalized_name": "the kingdom of the end&the witch of the beginning" + }, + { + "appid": 1988110, + "normalized_name": "night of the sex beast and the elf knight" + }, + { + "appid": 1988130, + "normalized_name": "chirality" + }, + { + "appid": 1988150, + "normalized_name": "harem of monster girls" + }, + { + "appid": 1988190, + "normalized_name": "college craze" + }, + { + "appid": 1988270, + "normalized_name": "samuda interval" + }, + { + "appid": 1988290, + "normalized_name": "forfeit" + }, + { + "appid": 1988320, + "normalized_name": "sanonta finnish proverb game" + }, + { + "appid": 1988330, + "normalized_name": "uprooted" + }, + { + "appid": 1988350, + "normalized_name": "driven affairs" + }, + { + "appid": 1988360, + "normalized_name": "adventure trip london collector's" + }, + { + "appid": 1988390, + "normalized_name": "hard landing arrival" + }, + { + "appid": 1988430, + "normalized_name": "slaughter cannon 2" + }, + { + "appid": 1988440, + "normalized_name": "block breaker 2" + }, + { + "appid": 1988530, + "normalized_name": "notice me leena senpai!" + }, + { + "appid": 1988540, + "normalized_name": "the zachtronics solitaire collection" + }, + { + "appid": 1988550, + "normalized_name": "to the core" + }, + { + "appid": 1988560, + "normalized_name": "brewing haus" + }, + { + "appid": 1988570, + "normalized_name": "the trials of beadie" + }, + { + "appid": 1988600, + "normalized_name": "the devil's chosen" + }, + { + "appid": 1988630, + "normalized_name": "佩尔霍宁" + }, + { + "appid": 1988670, + "normalized_name": "封妖录" + }, + { + "appid": 1988720, + "normalized_name": "kawaii asian girls" + }, + { + "appid": 1988730, + "normalized_name": "nano organism" + }, + { + "appid": 1988750, + "normalized_name": "project crypt" + }, + { + "appid": 1988810, + "normalized_name": "bci vr horror attraction the mad trail" + }, + { + "appid": 1988820, + "normalized_name": "a mazing enigmas" + }, + { + "appid": 1988830, + "normalized_name": "project wunderwaffe prologue" + }, + { + "appid": 1988880, + "normalized_name": "box rush 2 ice worlds" + }, + { + "appid": 1988890, + "normalized_name": "little rhapsody of game" + }, + { + "appid": 1988900, + "normalized_name": "cooking crew" + }, + { + "appid": 1988930, + "normalized_name": "syndeo complex" + }, + { + "appid": 1988940, + "normalized_name": "からぱりうぉーず" + }, + { + "appid": 1988960, + "normalized_name": "game of the dead" + }, + { + "appid": 1988970, + "normalized_name": "bunker 22" + }, + { + "appid": 1988980, + "normalized_name": "boo!" + }, + { + "appid": 1988990, + "normalized_name": "animals transport simulator" + }, + { + "appid": 1989070, + "normalized_name": "synergy" + }, + { + "appid": 1989090, + "normalized_name": "夏日相册" + }, + { + "appid": 1989100, + "normalized_name": "tomb defender" + }, + { + "appid": 1989110, + "normalized_name": "king of kalimpong" + }, + { + "appid": 1989120, + "normalized_name": "bubblegum galaxy" + }, + { + "appid": 1989130, + "normalized_name": "the otherwilde" + }, + { + "appid": 1989140, + "normalized_name": "tower of spirit" + }, + { + "appid": 1989150, + "normalized_name": "thread" + }, + { + "appid": 1989180, + "normalized_name": "the world of a mermaid" + }, + { + "appid": 1989190, + "normalized_name": "knight story" + }, + { + "appid": 1989200, + "normalized_name": "space crafting" + }, + { + "appid": 1989230, + "normalized_name": "the elf maiden" + }, + { + "appid": 1989270, + "normalized_name": "slay the princess — the pristine cut" + }, + { + "appid": 1989280, + "normalized_name": "the illusion nightmare" + }, + { + "appid": 1989290, + "normalized_name": "starfighter" + }, + { + "appid": 1989310, + "normalized_name": "dragon mine" + }, + { + "appid": 1989320, + "normalized_name": "astor blade of the monolith" + }, + { + "appid": 1989350, + "normalized_name": "hype hustle" + }, + { + "appid": 1989360, + "normalized_name": "sargasso on steam" + }, + { + "appid": 1989370, + "normalized_name": "psychodive" + }, + { + "appid": 1989460, + "normalized_name": "ahack adventure 2 quest for the ciggy" + }, + { + "appid": 1989500, + "normalized_name": "hybrid harmony" + }, + { + "appid": 1989540, + "normalized_name": "dumbsquad" + }, + { + "appid": 1989560, + "normalized_name": "endless waves survival" + }, + { + "appid": 1989610, + "normalized_name": "knights of fate" + }, + { + "appid": 1989620, + "normalized_name": "reborn souls" + }, + { + "appid": 1989630, + "normalized_name": "that which was lost" + }, + { + "appid": 1989640, + "normalized_name": "from within" + }, + { + "appid": 1989650, + "normalized_name": "hearts united" + }, + { + "appid": 1989690, + "normalized_name": "blast party" + }, + { + "appid": 1989720, + "normalized_name": "unpetrified echoes of nature" + }, + { + "appid": 1989740, + "normalized_name": "禁忌taboo" + }, + { + "appid": 1989760, + "normalized_name": "pax augusta" + }, + { + "appid": 1989770, + "normalized_name": "chickenoidz super party" + }, + { + "appid": 1989780, + "normalized_name": "tiny arcade racers" + }, + { + "appid": 1989790, + "normalized_name": "jump warrior" + }, + { + "appid": 1989800, + "normalized_name": "apocalive" + }, + { + "appid": 1989820, + "normalized_name": "intrusion of alice" + }, + { + "appid": 1989840, + "normalized_name": "phyllis the receptionist of the guild" + }, + { + "appid": 1989850, + "normalized_name": "presenter slides" + }, + { + "appid": 1989870, + "normalized_name": "legend of a soul hunter" + }, + { + "appid": 1989920, + "normalized_name": "白娘子" + }, + { + "appid": 1989930, + "normalized_name": "drone tinkerer" + }, + { + "appid": 1989940, + "normalized_name": "hentai packer" + }, + { + "appid": 1989950, + "normalized_name": "snack stall" + }, + { + "appid": 1989960, + "normalized_name": "airshooshoo" + }, + { + "appid": 1989970, + "normalized_name": "stuff enuff plush party" + }, + { + "appid": 1989990, + "normalized_name": "touhou crisis" + }, + { + "appid": 1990050, + "normalized_name": "creature creator" + }, + { + "appid": 1990060, + "normalized_name": "unbearable" + }, + { + "appid": 1990090, + "normalized_name": "frontier dark wilds" + }, + { + "appid": 1990100, + "normalized_name": "world war 3 card battler" + }, + { + "appid": 1990110, + "normalized_name": "spellrogue" + }, + { + "appid": 1990130, + "normalized_name": "souls alive origins" + }, + { + "appid": 1990160, + "normalized_name": "abstract world" + }, + { + "appid": 1990190, + "normalized_name": "futanari sex bdsm room" + }, + { + "appid": 1990210, + "normalized_name": "achromatic" + }, + { + "appid": 1990220, + "normalized_name": "visitd monster war dying fire" + }, + { + "appid": 1990240, + "normalized_name": "among the stars" + }, + { + "appid": 1990250, + "normalized_name": "sg racing" + }, + { + "appid": 1990260, + "normalized_name": "phantom tentacle" + }, + { + "appid": 1990270, + "normalized_name": "bank robber" + }, + { + "appid": 1990280, + "normalized_name": "the killer" + }, + { + "appid": 1990300, + "normalized_name": "frog game" + }, + { + "appid": 1990310, + "normalized_name": "3d puzzle castle" + }, + { + "appid": 1990330, + "normalized_name": "project worth forgather" + }, + { + "appid": 1990340, + "normalized_name": "smash n' crash" + }, + { + "appid": 1990360, + "normalized_name": "spotted" + }, + { + "appid": 1990370, + "normalized_name": "entangled" + }, + { + "appid": 1990380, + "normalized_name": "sciophobia the fear of shadows" + }, + { + "appid": 1990400, + "normalized_name": "tales of agaris" + }, + { + "appid": 1990440, + "normalized_name": "desktop animi" + }, + { + "appid": 1990480, + "normalized_name": "realms" + }, + { + "appid": 1990490, + "normalized_name": "catboy crazy" + }, + { + "appid": 1990510, + "normalized_name": "night out" + }, + { + "appid": 1990530, + "normalized_name": "sailing alone aftermath" + }, + { + "appid": 1990540, + "normalized_name": "tongue of dog" + }, + { + "appid": 1990550, + "normalized_name": "late photographer 5" + }, + { + "appid": 1990570, + "normalized_name": "delete virus;" + }, + { + "appid": 1990580, + "normalized_name": "异界生存" + }, + { + "appid": 1990590, + "normalized_name": "nightmare hunter" + }, + { + "appid": 1990610, + "normalized_name": "nedia hotel" + }, + { + "appid": 1990620, + "normalized_name": "night escaper" + }, + { + "appid": 1990670, + "normalized_name": "vacation adventures cruise director 6" + }, + { + "appid": 1990680, + "normalized_name": "vacation adventures cruise director 7" + }, + { + "appid": 1990690, + "normalized_name": "cooking live italian kitchen simulator" + }, + { + "appid": 1990710, + "normalized_name": "sushi rush" + }, + { + "appid": 1990730, + "normalized_name": "pylorus footsteps of greed" + }, + { + "appid": 1990740, + "normalized_name": "barro gt" + }, + { + "appid": 1990760, + "normalized_name": "belarus simulator preemptive strike" + }, + { + "appid": 1990790, + "normalized_name": "astrax" + }, + { + "appid": 1990810, + "normalized_name": "monkey adventure" + }, + { + "appid": 1990820, + "normalized_name": "z warp" + }, + { + "appid": 1990830, + "normalized_name": "a match with a succubus witch" + }, + { + "appid": 1990850, + "normalized_name": "granvil's fairytale" + }, + { + "appid": 1990880, + "normalized_name": "leave no one behind ia drang vr" + }, + { + "appid": 1990900, + "normalized_name": "方境战记blockfight" + }, + { + "appid": 1990910, + "normalized_name": "thrice in a row last adventure" + }, + { + "appid": 1990940, + "normalized_name": "the impossible game 2" + }, + { + "appid": 1990980, + "normalized_name": "the siege of brimir" + }, + { + "appid": 1990990, + "normalized_name": "astrotrucks" + }, + { + "appid": 1991010, + "normalized_name": "beautiful ukraine" + }, + { + "appid": 1991040, + "normalized_name": "学生时代" + }, + { + "appid": 1991060, + "normalized_name": "xearz" + }, + { + "appid": 1991090, + "normalized_name": "falling elevator" + }, + { + "appid": 1991110, + "normalized_name": "another day with you" + }, + { + "appid": 1991230, + "normalized_name": "atelophobia the story begins" + }, + { + "appid": 1991250, + "normalized_name": "automation station" + }, + { + "appid": 1991300, + "normalized_name": "closer the distance" + }, + { + "appid": 1991340, + "normalized_name": "sky captain's return" + }, + { + "appid": 1991350, + "normalized_name": "corlero" + }, + { + "appid": 1991360, + "normalized_name": "dream walk mortgage" + }, + { + "appid": 1991420, + "normalized_name": "superduck!" + }, + { + "appid": 1991450, + "normalized_name": "philosophical jigsaw the zen koans" + }, + { + "appid": 1991460, + "normalized_name": "ygg engine" + }, + { + "appid": 1991470, + "normalized_name": "cold land" + }, + { + "appid": 1991480, + "normalized_name": "lewd life with my doggy wife" + }, + { + "appid": 1991500, + "normalized_name": "onbugged" + }, + { + "appid": 1991520, + "normalized_name": "flam the purge of the century" + }, + { + "appid": 1991570, + "normalized_name": "arruyo" + }, + { + "appid": 1991590, + "normalized_name": "guacamojo" + }, + { + "appid": 1991600, + "normalized_name": "the newton mystery" + }, + { + "appid": 1991630, + "normalized_name": "blitz in the paper kingdom" + }, + { + "appid": 1991650, + "normalized_name": "lichgate tower wars" + }, + { + "appid": 1991670, + "normalized_name": "fantasy fighters" + }, + { + "appid": 1991690, + "normalized_name": "fruit juice" + }, + { + "appid": 1991780, + "normalized_name": "mirador" + }, + { + "appid": 1991790, + "normalized_name": "sudoqube" + }, + { + "appid": 1991810, + "normalized_name": "fever" + }, + { + "appid": 1991820, + "normalized_name": "drunken fc" + }, + { + "appid": 1991850, + "normalized_name": "navy war battleship" + }, + { + "appid": 1991860, + "normalized_name": "force of warships" + }, + { + "appid": 1991870, + "normalized_name": "遗忘之境 the forgotten boundary" + }, + { + "appid": 1991890, + "normalized_name": "blacksmith war" + }, + { + "appid": 1991900, + "normalized_name": "breath of ghosts" + }, + { + "appid": 1991910, + "normalized_name": "动物:森林法则" + }, + { + "appid": 1991920, + "normalized_name": "potions war" + }, + { + "appid": 1991950, + "normalized_name": "blood job" + }, + { + "appid": 1991980, + "normalized_name": "mystic academy escape room" + }, + { + "appid": 1991990, + "normalized_name": "futanari sex the fertility doctor" + }, + { + "appid": 1992020, + "normalized_name": "demons happened" + }, + { + "appid": 1992110, + "normalized_name": "find your wings" + }, + { + "appid": 1992120, + "normalized_name": "gamebook edgar a. poe the oval portrait" + }, + { + "appid": 1992130, + "normalized_name": "candy bar" + }, + { + "appid": 1992140, + "normalized_name": "ice cream" + }, + { + "appid": 1992160, + "normalized_name": "尸城营救" + }, + { + "appid": 1992180, + "normalized_name": "foreclosure simulator" + }, + { + "appid": 1992210, + "normalized_name": "schizoids" + }, + { + "appid": 1992260, + "normalized_name": "space turbo" + }, + { + "appid": 1992350, + "normalized_name": "magical magic world" + }, + { + "appid": 1992370, + "normalized_name": "furry hitler" + }, + { + "appid": 1992410, + "normalized_name": "echo" + }, + { + "appid": 1992420, + "normalized_name": "格斗少女" + }, + { + "appid": 1992430, + "normalized_name": "cheese game" + }, + { + "appid": 1992500, + "normalized_name": "the life of arthur" + }, + { + "appid": 1992520, + "normalized_name": "hidden" + }, + { + "appid": 1992530, + "normalized_name": "party words" + }, + { + "appid": 1992560, + "normalized_name": "memory puzzle neko girls" + }, + { + "appid": 1992580, + "normalized_name": "itchy scratchy" + }, + { + "appid": 1992590, + "normalized_name": "fairy massage" + }, + { + "appid": 1992640, + "normalized_name": "anime vs evil apocalypse" + }, + { + "appid": 1992650, + "normalized_name": "second dreamer" + }, + { + "appid": 1992700, + "normalized_name": "super adventure hand" + }, + { + "appid": 1992770, + "normalized_name": "love of magic book 3 the return" + }, + { + "appid": 1992790, + "normalized_name": "ball hunter" + }, + { + "appid": 1992820, + "normalized_name": "wood cuter" + }, + { + "appid": 1992840, + "normalized_name": "space aces" + }, + { + "appid": 1992850, + "normalized_name": "cyrah's ascent" + }, + { + "appid": 1992860, + "normalized_name": "vetrix worlds" + }, + { + "appid": 1992880, + "normalized_name": "miner rush" + }, + { + "appid": 1992890, + "normalized_name": "欢乐金蟾捕鱼" + }, + { + "appid": 1992930, + "normalized_name": "it's time" + }, + { + "appid": 1992940, + "normalized_name": "realm of cubes" + }, + { + "appid": 1992980, + "normalized_name": "pentomino" + }, + { + "appid": 1993010, + "normalized_name": "clown theft auto woke city" + }, + { + "appid": 1993030, + "normalized_name": "clown for speed" + }, + { + "appid": 1993050, + "normalized_name": "morgue rot the coroner's quest" + }, + { + "appid": 1993060, + "normalized_name": "imago beyond the nightmares" + }, + { + "appid": 1993110, + "normalized_name": "lorethem" + }, + { + "appid": 1993120, + "normalized_name": "death below" + }, + { + "appid": 1993140, + "normalized_name": "shooting girl" + }, + { + "appid": 1993150, + "normalized_name": "轮回修仙路" + }, + { + "appid": 1993160, + "normalized_name": "gun blade" + }, + { + "appid": 1993180, + "normalized_name": "quilts and cats of calico" + }, + { + "appid": 1993190, + "normalized_name": "laserpoint" + }, + { + "appid": 1993200, + "normalized_name": "witch 3 return" + }, + { + "appid": 1993210, + "normalized_name": "abyssals" + }, + { + "appid": 1993390, + "normalized_name": "dinoplanet vr" + }, + { + "appid": 1993410, + "normalized_name": "laws of nadragia" + }, + { + "appid": 1993440, + "normalized_name": "times dungeon" + }, + { + "appid": 1993450, + "normalized_name": "yet another fantasy title (yaft)" + }, + { + "appid": 1993460, + "normalized_name": "secret meadow" + }, + { + "appid": 1993480, + "normalized_name": "ah diddums" + }, + { + "appid": 1993510, + "normalized_name": "spellarium 8 match 3 puzzle" + }, + { + "appid": 1993520, + "normalized_name": "seasons" + }, + { + "appid": 1993530, + "normalized_name": "dead zone" + }, + { + "appid": 1993560, + "normalized_name": "endure island" + }, + { + "appid": 1993570, + "normalized_name": "solnox grimoire of seasons" + }, + { + "appid": 1993600, + "normalized_name": "cyber tower" + }, + { + "appid": 1993670, + "normalized_name": "flappy butt" + }, + { + "appid": 1993710, + "normalized_name": "little learning machines" + }, + { + "appid": 1993730, + "normalized_name": "holy journey of salvation" + }, + { + "appid": 1993810, + "normalized_name": "tarabish" + }, + { + "appid": 1993820, + "normalized_name": "t night" + }, + { + "appid": 1993830, + "normalized_name": "rota bend gravity" + }, + { + "appid": 1993890, + "normalized_name": "the collector's legends" + }, + { + "appid": 1993900, + "normalized_name": "not your mama's autobattler" + }, + { + "appid": 1993910, + "normalized_name": "holy shit" + }, + { + "appid": 1993940, + "normalized_name": "piggy jump" + }, + { + "appid": 1993960, + "normalized_name": "path of a player" + }, + { + "appid": 1993980, + "normalized_name": "astortion" + }, + { + "appid": 1994000, + "normalized_name": "rogue soulstone" + }, + { + "appid": 1994010, + "normalized_name": "moving in with my step sister" + }, + { + "appid": 1994020, + "normalized_name": "shrine maiden kanna's meatheaded exorfist record" + }, + { + "appid": 1994040, + "normalized_name": "the girlfriend from my novel" + }, + { + "appid": 1994050, + "normalized_name": "night dreams" + }, + { + "appid": 1994060, + "normalized_name": "master's royal sex maid" + }, + { + "appid": 1994070, + "normalized_name": "slave doll" + }, + { + "appid": 1994080, + "normalized_name": "dream state warriors" + }, + { + "appid": 1994170, + "normalized_name": "constantine" + }, + { + "appid": 1994220, + "normalized_name": "it's dark" + }, + { + "appid": 1994230, + "normalized_name": "almost home now" + }, + { + "appid": 1994240, + "normalized_name": "" + }, + { + "appid": 1994270, + "normalized_name": "eat fish get achievements" + }, + { + "appid": 1994280, + "normalized_name": "krimzon hoard" + }, + { + "appid": 1994300, + "normalized_name": "mega demon blaster" + }, + { + "appid": 1994350, + "normalized_name": "stickman synthwave escape" + }, + { + "appid": 1994400, + "normalized_name": "magiterra" + }, + { + "appid": 1994410, + "normalized_name": "quo" + }, + { + "appid": 1994430, + "normalized_name": "arsolid productions" + }, + { + "appid": 1994440, + "normalized_name": "egglien" + }, + { + "appid": 1994450, + "normalized_name": "omni magic!" + }, + { + "appid": 1994460, + "normalized_name": "rabbitoad" + }, + { + "appid": 1994480, + "normalized_name": "刀光剑影" + }, + { + "appid": 1994500, + "normalized_name": "monstrous realms" + }, + { + "appid": 1994510, + "normalized_name": "upirja" + }, + { + "appid": 1994520, + "normalized_name": "akapulka the rainbow" + }, + { + "appid": 1994540, + "normalized_name": "jacob larkin's wild europe" + }, + { + "appid": 1994550, + "normalized_name": "land of viewers" + }, + { + "appid": 1994620, + "normalized_name": "toons city" + }, + { + "appid": 1994630, + "normalized_name": "2d brick breaker game |" + }, + { + "appid": 1994650, + "normalized_name": "element fighters" + }, + { + "appid": 1994670, + "normalized_name": "neon nights 2" + }, + { + "appid": 1994680, + "normalized_name": "cazzarion demon hunting" + }, + { + "appid": 1994700, + "normalized_name": "mantra" + }, + { + "appid": 1994710, + "normalized_name": "bullet chase" + }, + { + "appid": 1994720, + "normalized_name": "escape from meat city" + }, + { + "appid": 1994740, + "normalized_name": "disco tomb" + }, + { + "appid": 1994750, + "normalized_name": "workplace malice" + }, + { + "appid": 1994760, + "normalized_name": "the fairy's secret" + }, + { + "appid": 1994850, + "normalized_name": "winter tramp" + }, + { + "appid": 1994860, + "normalized_name": "boomcrash" + }, + { + "appid": 1994910, + "normalized_name": "sincerely stampy" + }, + { + "appid": 1994940, + "normalized_name": "ned kelly armored outlaw" + }, + { + "appid": 1994960, + "normalized_name": "survive 10 minutes please" + }, + { + "appid": 1995000, + "normalized_name": "memorabilia" + }, + { + "appid": 1995010, + "normalized_name": "no more giants" + }, + { + "appid": 1995030, + "normalized_name": "lord of darkness prologue" + }, + { + "appid": 1995090, + "normalized_name": "steiiaria" + }, + { + "appid": 1995100, + "normalized_name": "doudas danger" + }, + { + "appid": 1995110, + "normalized_name": "slime dungeon" + }, + { + "appid": 1995120, + "normalized_name": "chickweed" + }, + { + "appid": 1995180, + "normalized_name": "epicrecovery" + }, + { + "appid": 1995220, + "normalized_name": "30 days in red army" + }, + { + "appid": 1995230, + "normalized_name": "chaotic loop" + }, + { + "appid": 1995240, + "normalized_name": "deer journey" + }, + { + "appid": 1995280, + "normalized_name": "hopeless." + }, + { + "appid": 1995290, + "normalized_name": "picking wheat" + }, + { + "appid": 1995320, + "normalized_name": "nanohive" + }, + { + "appid": 1995330, + "normalized_name": "monos the endless tower" + }, + { + "appid": 1995340, + "normalized_name": "zoo chess" + }, + { + "appid": 1995380, + "normalized_name": "pit fighter tycoon" + }, + { + "appid": 1995420, + "normalized_name": "flora and sauna" + }, + { + "appid": 1995450, + "normalized_name": "police scanner radio real live audio happening now!" + }, + { + "appid": 1995460, + "normalized_name": "fire heat" + }, + { + "appid": 1995470, + "normalized_name": "space turbo 2" + }, + { + "appid": 1995490, + "normalized_name": "house of the soul" + }, + { + "appid": 1995520, + "normalized_name": "pax dei" + }, + { + "appid": 1995530, + "normalized_name": "cataclysm even angels sin" + }, + { + "appid": 1995550, + "normalized_name": "reborn fate of gods" + }, + { + "appid": 1995580, + "normalized_name": "hypnosis prison 催眠典獄長" + }, + { + "appid": 1995590, + "normalized_name": "the block" + }, + { + "appid": 1995600, + "normalized_name": "anime armpits" + }, + { + "appid": 1995680, + "normalized_name": "沃姆斯传说:午夜新娘" + }, + { + "appid": 1995700, + "normalized_name": "champ's nightmare" + }, + { + "appid": 1995710, + "normalized_name": "trade post forest" + }, + { + "appid": 1995760, + "normalized_name": "dream magic will" + }, + { + "appid": 1995780, + "normalized_name": "aliens after ava" + }, + { + "appid": 1995800, + "normalized_name": "zodiac fantasy" + }, + { + "appid": 1995830, + "normalized_name": "天若有情" + }, + { + "appid": 1995840, + "normalized_name": "暗影天使 shadow angel" + }, + { + "appid": 1995870, + "normalized_name": "pixel survivors roguelike" + }, + { + "appid": 1995880, + "normalized_name": "afterdream" + }, + { + "appid": 1995890, + "normalized_name": "aerofly fs 4 flight simulator" + }, + { + "appid": 1995930, + "normalized_name": "count pumpcula" + }, + { + "appid": 1995940, + "normalized_name": "jelly forest" + }, + { + "appid": 1996000, + "normalized_name": "grid words" + }, + { + "appid": 1996010, + "normalized_name": "crow country" + }, + { + "appid": 1996070, + "normalized_name": "yays your adventure your story" + }, + { + "appid": 1996090, + "normalized_name": "vapor world over the mind" + }, + { + "appid": 1996100, + "normalized_name": "cordbot" + }, + { + "appid": 1996210, + "normalized_name": "sakura hime 3" + }, + { + "appid": 1996230, + "normalized_name": "forest of tails arena" + }, + { + "appid": 1996300, + "normalized_name": "caerulean beneath and beyond" + }, + { + "appid": 1996360, + "normalized_name": "paws for adventure" + }, + { + "appid": 1996380, + "normalized_name": "end of night" + }, + { + "appid": 1996390, + "normalized_name": "escape from ever after" + }, + { + "appid": 1996420, + "normalized_name": "i commissioned some bees" + }, + { + "appid": 1996430, + "normalized_name": "dicefolk" + }, + { + "appid": 1996450, + "normalized_name": "psychedelia the psychonaut" + }, + { + "appid": 1996470, + "normalized_name": "skator gator 3d" + }, + { + "appid": 1996500, + "normalized_name": "the purge dilemma" + }, + { + "appid": 1996510, + "normalized_name": "bow bots" + }, + { + "appid": 1996520, + "normalized_name": "witchy witch" + }, + { + "appid": 1996540, + "normalized_name": "monolith dominion" + }, + { + "appid": 1996550, + "normalized_name": "bonelords" + }, + { + "appid": 1996600, + "normalized_name": "byte lynx" + }, + { + "appid": 1996630, + "normalized_name": "dungeon keeper gold" + }, + { + "appid": 1996650, + "normalized_name": "the courtson manor prologue" + }, + { + "appid": 1996680, + "normalized_name": "fowl scourge" + }, + { + "appid": 1996710, + "normalized_name": "sokolor" + }, + { + "appid": 1996740, + "normalized_name": "dagger woods vr" + }, + { + "appid": 1996750, + "normalized_name": "poi vr dance" + }, + { + "appid": 1996760, + "normalized_name": "penitence" + }, + { + "appid": 1996770, + "normalized_name": "turok 3 shadow of oblivion" + }, + { + "appid": 1996780, + "normalized_name": "pizza delivery bagel" + }, + { + "appid": 1996800, + "normalized_name": "bulletkour" + }, + { + "appid": 1996810, + "normalized_name": "redemption cemetery the stolen time collector's" + }, + { + "appid": 1996850, + "normalized_name": "a chocolate world (the impossible game)" + }, + { + "appid": 1996880, + "normalized_name": "i made myself an ai" + }, + { + "appid": 1996900, + "normalized_name": "eden remains arrival" + }, + { + "appid": 1996910, + "normalized_name": "murus" + }, + { + "appid": 1996920, + "normalized_name": "contractor" + }, + { + "appid": 1996930, + "normalized_name": "pacifish" + }, + { + "appid": 1997010, + "normalized_name": "was it a cat i saw?" + }, + { + "appid": 1997040, + "normalized_name": "marvel snap" + }, + { + "appid": 1997060, + "normalized_name": "fly by knight" + }, + { + "appid": 1997070, + "normalized_name": "hen chicks and cats" + }, + { + "appid": 1997080, + "normalized_name": "just a humble swordsmith" + }, + { + "appid": 1997110, + "normalized_name": "amalgamy" + }, + { + "appid": 1997120, + "normalized_name": "bountyheart" + }, + { + "appid": 1997130, + "normalized_name": "paze knight ellen and the dungeon town sodom" + }, + { + "appid": 1997170, + "normalized_name": "blitz roads" + }, + { + "appid": 1997190, + "normalized_name": "hentai big tits" + }, + { + "appid": 1997250, + "normalized_name": "evergreen mountain life simulator" + }, + { + "appid": 1997270, + "normalized_name": "put pud nudli's adventure" + }, + { + "appid": 1997290, + "normalized_name": "paraperspective" + }, + { + "appid": 1997300, + "normalized_name": "pretty girls escape" + }, + { + "appid": 1997330, + "normalized_name": "omut" + }, + { + "appid": 1997360, + "normalized_name": "修仙狩魔传" + }, + { + "appid": 1997400, + "normalized_name": "beasts of merit" + }, + { + "appid": 1997410, + "normalized_name": "female anchor next door" + }, + { + "appid": 1997420, + "normalized_name": "the city of eyes and the girl in dreamland" + }, + { + "appid": 1997430, + "normalized_name": "succubus life" + }, + { + "appid": 1997440, + "normalized_name": "sex change contract and molester girl" + }, + { + "appid": 1997460, + "normalized_name": "demon maiden and slave summoning" + }, + { + "appid": 1997470, + "normalized_name": "parasitic evil" + }, + { + "appid": 1997480, + "normalized_name": "liu shan maker" + }, + { + "appid": 1997490, + "normalized_name": "two months of devil king" + }, + { + "appid": 1997520, + "normalized_name": "futanari sex the new boss" + }, + { + "appid": 1997530, + "normalized_name": "himno the silent melody ruins" + }, + { + "appid": 1997550, + "normalized_name": "square journey" + }, + { + "appid": 1997560, + "normalized_name": "futanari sex unexpected roomate" + }, + { + "appid": 1997590, + "normalized_name": "retooled" + }, + { + "appid": 1997610, + "normalized_name": "offenders" + }, + { + "appid": 1997630, + "normalized_name": "ink tournament paintball" + }, + { + "appid": 1997660, + "normalized_name": "greedfall ii the dying world" + }, + { + "appid": 1997670, + "normalized_name": "treats please!" + }, + { + "appid": 1997680, + "normalized_name": "reflexia prototype ver." + }, + { + "appid": 1997740, + "normalized_name": "enter the cum an erotic porn sexual pleasure!" + }, + { + "appid": 1997780, + "normalized_name": "iron order 1919" + }, + { + "appid": 1997800, + "normalized_name": "delusional" + }, + { + "appid": 1997830, + "normalized_name": "gutter the cursed" + }, + { + "appid": 1997870, + "normalized_name": "one" + }, + { + "appid": 1997880, + "normalized_name": "lawnmower game mortal race" + }, + { + "appid": 1997900, + "normalized_name": "fxxkable kim" + }, + { + "appid": 1997910, + "normalized_name": "breakyo" + }, + { + "appid": 1997920, + "normalized_name": "isolania" + }, + { + "appid": 1997940, + "normalized_name": "adventures of deliveryman" + }, + { + "appid": 1997950, + "normalized_name": "raider dark age" + }, + { + "appid": 1997980, + "normalized_name": "出牌吧冒险家 go poker" + }, + { + "appid": 1998030, + "normalized_name": "bug dolls soviet project" + }, + { + "appid": 1998040, + "normalized_name": "psycho reign" + }, + { + "appid": 1998050, + "normalized_name": "the swordbearer season 1" + }, + { + "appid": 1998100, + "normalized_name": "robber sam" + }, + { + "appid": 1998110, + "normalized_name": "station osirius" + }, + { + "appid": 1998120, + "normalized_name": "pirate treasure" + }, + { + "appid": 1998130, + "normalized_name": "totems" + }, + { + "appid": 1998170, + "normalized_name": "second thoughts" + }, + { + "appid": 1998200, + "normalized_name": "god edge" + }, + { + "appid": 1998220, + "normalized_name": "twin jet racer" + }, + { + "appid": 1998250, + "normalized_name": "liminus the silent guard" + }, + { + "appid": 1998260, + "normalized_name": "ancient aliens the game" + }, + { + "appid": 1998280, + "normalized_name": "astrophobia" + }, + { + "appid": 1998300, + "normalized_name": "where's oswald" + }, + { + "appid": 1998310, + "normalized_name": "max twist" + }, + { + "appid": 1998320, + "normalized_name": "death bind" + }, + { + "appid": 1998330, + "normalized_name": "yomawari lost in the dark" + }, + { + "appid": 1998340, + "normalized_name": "labyrinth of galleria the moon society" + }, + { + "appid": 1998350, + "normalized_name": "the sand knight" + }, + { + "appid": 1998380, + "normalized_name": "crash forts" + }, + { + "appid": 1998390, + "normalized_name": "road trip" + }, + { + "appid": 1998420, + "normalized_name": "mida's adventure" + }, + { + "appid": 1998440, + "normalized_name": "pullywog" + }, + { + "appid": 1998450, + "normalized_name": "black & white" + }, + { + "appid": 1998470, + "normalized_name": "canterz paranormies" + }, + { + "appid": 1998510, + "normalized_name": "bdsm apocalypse" + }, + { + "appid": 1998530, + "normalized_name": "yoiyami dancers twilight danmaku dancers" + }, + { + "appid": 1998540, + "normalized_name": "pumpkin head" + }, + { + "appid": 1998580, + "normalized_name": "breath of ghosts 2" + }, + { + "appid": 1998590, + "normalized_name": "russian hunter" + }, + { + "appid": 1998660, + "normalized_name": "三国群英之兵临天下" + }, + { + "appid": 1998670, + "normalized_name": "medieval knight" + }, + { + "appid": 1998680, + "normalized_name": "stellar space" + }, + { + "appid": 1998710, + "normalized_name": "e circle" + }, + { + "appid": 1998760, + "normalized_name": "the way of the badass" + }, + { + "appid": 1998820, + "normalized_name": "water me" + }, + { + "appid": 1998840, + "normalized_name": "arcadia" + }, + { + "appid": 1998980, + "normalized_name": "peppa pig world adventures" + }, + { + "appid": 1999050, + "normalized_name": "nūr" + }, + { + "appid": 1999090, + "normalized_name": "fighters" + }, + { + "appid": 1999120, + "normalized_name": "heroes of time aizack's return" + }, + { + "appid": 1999140, + "normalized_name": "extraneum" + }, + { + "appid": 1999170, + "normalized_name": "虫潮" + }, + { + "appid": 1999290, + "normalized_name": "sorted!" + }, + { + "appid": 1999320, + "normalized_name": "sailist" + }, + { + "appid": 1999360, + "normalized_name": "placid plastic duck simulator" + }, + { + "appid": 1999430, + "normalized_name": "just another runner" + }, + { + "appid": 1999450, + "normalized_name": "all you can take" + }, + { + "appid": 1999460, + "normalized_name": "e on" + }, + { + "appid": 1999470, + "normalized_name": "the last human is a biker" + }, + { + "appid": 1999500, + "normalized_name": "blazing strike" + }, + { + "appid": 1999520, + "normalized_name": "cato buttered cat" + }, + { + "appid": 1999570, + "normalized_name": "roppongi hunters" + }, + { + "appid": 1999630, + "normalized_name": "liminal phase" + }, + { + "appid": 1999660, + "normalized_name": "cardterrupters" + }, + { + "appid": 1999680, + "normalized_name": "rue la résistance" + }, + { + "appid": 1999700, + "normalized_name": "something strange" + }, + { + "appid": 1999720, + "normalized_name": "morse vs. horse" + }, + { + "appid": 1999730, + "normalized_name": "fiora arc" + }, + { + "appid": 1999740, + "normalized_name": "the button by elendow" + }, + { + "appid": 1999770, + "normalized_name": "atelier ryza 3 alchemist of the end & the secret key" + }, + { + "appid": 1999830, + "normalized_name": "pin city" + }, + { + "appid": 1999850, + "normalized_name": "possessions" + }, + { + "appid": 1999870, + "normalized_name": "gears of dragoon fragments of a new era" + }, + { + "appid": 1999880, + "normalized_name": "life is paradise" + }, + { + "appid": 1999910, + "normalized_name": "nightmare hunter" + }, + { + "appid": 1999920, + "normalized_name": "red list girls. andean flamingo" + }, + { + "appid": 1999940, + "normalized_name": "hyperhell" + }, + { + "appid": 1999970, + "normalized_name": "dungeon redemption" + }, + { + "appid": 1999990, + "normalized_name": "baby time simulator" + }, + { + "appid": 2000000, + "normalized_name": "round table" + }, + { + "appid": 2000040, + "normalized_name": "space menace" + }, + { + "appid": 2000050, + "normalized_name": "the witch blade" + }, + { + "appid": 2000070, + "normalized_name": "snacky tower" + }, + { + "appid": 2000090, + "normalized_name": "the isle tide hotel" + }, + { + "appid": 2000120, + "normalized_name": "time flies" + }, + { + "appid": 2000130, + "normalized_name": "berserk reborn" + }, + { + "appid": 2000150, + "normalized_name": "banana drama" + }, + { + "appid": 2000160, + "normalized_name": "music store simulator" + }, + { + "appid": 2000180, + "normalized_name": "office run" + }, + { + "appid": 2000190, + "normalized_name": "sss222 hyperspace" + }, + { + "appid": 2000210, + "normalized_name": "mythwrecked ambrosia island" + }, + { + "appid": 2000220, + "normalized_name": "funnypizzaland 2" + }, + { + "appid": 2000270, + "normalized_name": "dual universe" + }, + { + "appid": 2000280, + "normalized_name": "そろそろ寿司を食べないと死ぬぜ!" + }, + { + "appid": 2000310, + "normalized_name": "6 mon adventure" + }, + { + "appid": 2000320, + "normalized_name": "keep it cool man" + }, + { + "appid": 2000360, + "normalized_name": "corgi" + }, + { + "appid": 2000440, + "normalized_name": "谜宇酒吧" + }, + { + "appid": 2000460, + "normalized_name": "seven spirits" + }, + { + "appid": 2000480, + "normalized_name": "the meaning" + }, + { + "appid": 2000490, + "normalized_name": "legendary heroes" + }, + { + "appid": 2000530, + "normalized_name": "terminal madness the awakening" + }, + { + "appid": 2000540, + "normalized_name": "chance at life" + }, + { + "appid": 2000560, + "normalized_name": "shori conquest" + }, + { + "appid": 2000570, + "normalized_name": "mongirl expedition" + }, + { + "appid": 2000590, + "normalized_name": "alvo vr" + }, + { + "appid": 2000600, + "normalized_name": "spooples" + }, + { + "appid": 2000670, + "normalized_name": "project dew" + }, + { + "appid": 2000750, + "normalized_name": "jigsaw puzzle swingers party" + }, + { + "appid": 2000760, + "normalized_name": "boiling point road to hell" + }, + { + "appid": 2000770, + "normalized_name": "ballance" + }, + { + "appid": 2000780, + "normalized_name": "mole maiden" + }, + { + "appid": 2000800, + "normalized_name": "b 17 flying fortress the mighty 8th redux" + }, + { + "appid": 2000890, + "normalized_name": "mechwarrior 5 clans" + }, + { + "appid": 2000900, + "normalized_name": "hop for the best" + }, + { + "appid": 2000920, + "normalized_name": "conniption paranoia" + }, + { + "appid": 2000950, + "normalized_name": "call of duty modern warfare" + }, + { + "appid": 2000960, + "normalized_name": "highwater" + }, + { + "appid": 2000970, + "normalized_name": "beacon of neyda" + }, + { + "appid": 2000980, + "normalized_name": "maku" + }, + { + "appid": 2001000, + "normalized_name": "rivalry warlord sengoku" + }, + { + "appid": 2001050, + "normalized_name": "三国英雄坛" + }, + { + "appid": 2001060, + "normalized_name": "nine lives or less" + }, + { + "appid": 2001070, + "normalized_name": "heart of the machine" + }, + { + "appid": 2001110, + "normalized_name": "roguematch the extraplanar invasion" + }, + { + "appid": 2001120, + "normalized_name": "split fiction" + }, + { + "appid": 2001140, + "normalized_name": "putinator" + }, + { + "appid": 2001150, + "normalized_name": "iles" + }, + { + "appid": 2001160, + "normalized_name": "exfiltrator cyber stealth missions" + }, + { + "appid": 2001190, + "normalized_name": "zombie spree the dawn" + }, + { + "appid": 2001210, + "normalized_name": "beastly muscles" + }, + { + "appid": 2001220, + "normalized_name": "keita's adventures on the african savannah" + }, + { + "appid": 2001280, + "normalized_name": "the last city" + }, + { + "appid": 2001340, + "normalized_name": "fuga melodies of steel 2" + }, + { + "appid": 2001360, + "normalized_name": "mystical riddles behind doll’s eyes collector's" + }, + { + "appid": 2001380, + "normalized_name": "entity researchers prologue" + }, + { + "appid": 2001430, + "normalized_name": "super barista" + }, + { + "appid": 2001460, + "normalized_name": "国際指定怪異123号 廃村" + }, + { + "appid": 2001500, + "normalized_name": "excommunicado" + }, + { + "appid": 2001570, + "normalized_name": "yakiniku simulator" + }, + { + "appid": 2001670, + "normalized_name": "burst witch" + }, + { + "appid": 2001680, + "normalized_name": "the gun goes; boom!" + }, + { + "appid": 2001720, + "normalized_name": "kingdom square" + }, + { + "appid": 2001800, + "normalized_name": "spintales" + }, + { + "appid": 2001830, + "normalized_name": "a crown of thorns" + }, + { + "appid": 2001850, + "normalized_name": "snaccoon" + }, + { + "appid": 2001870, + "normalized_name": "operation defensive!" + }, + { + "appid": 2001910, + "normalized_name": "spermination cream of the crop" + }, + { + "appid": 2001970, + "normalized_name": "raspberry cube" + }, + { + "appid": 2002010, + "normalized_name": "my academy's special place" + }, + { + "appid": 2002140, + "normalized_name": "starmech" + }, + { + "appid": 2002200, + "normalized_name": "future mirror" + }, + { + "appid": 2002220, + "normalized_name": "keeper's toll" + }, + { + "appid": 2002250, + "normalized_name": "death bowl" + }, + { + "appid": 2002270, + "normalized_name": "story time" + }, + { + "appid": 2002280, + "normalized_name": "make it in time" + }, + { + "appid": 2002310, + "normalized_name": "detective the mountain city" + }, + { + "appid": 2002320, + "normalized_name": "little town shooter vr" + }, + { + "appid": 2002410, + "normalized_name": "the robot girl meets the human!" + }, + { + "appid": 2002420, + "normalized_name": "caddywack" + }, + { + "appid": 2002430, + "normalized_name": "♡beat! after the summer" + }, + { + "appid": 2002450, + "normalized_name": "停留此刻 stay in the moment" + }, + { + "appid": 2002470, + "normalized_name": "easy poetry" + }, + { + "appid": 2002480, + "normalized_name": "home solo car racer" + }, + { + "appid": 2002500, + "normalized_name": "spiritbelowthewaves" + }, + { + "appid": 2002510, + "normalized_name": "shpr" + }, + { + "appid": 2002520, + "normalized_name": "youmandriver" + }, + { + "appid": 2002540, + "normalized_name": "otaku engine" + }, + { + "appid": 2002550, + "normalized_name": "chloe puzzle game" + }, + { + "appid": 2002560, + "normalized_name": "tales from hoia baciu forest" + }, + { + "appid": 2002570, + "normalized_name": "seaorama world of shipping" + }, + { + "appid": 2002600, + "normalized_name": "吞食一统中原tunshi unifying plains" + }, + { + "appid": 2002610, + "normalized_name": "delilah" + }, + { + "appid": 2002670, + "normalized_name": "get trolled" + }, + { + "appid": 2002690, + "normalized_name": "kingdom legends the fallen kings" + }, + { + "appid": 2002700, + "normalized_name": "ai under test" + }, + { + "appid": 2002720, + "normalized_name": "cubeshooter" + }, + { + "appid": 2002730, + "normalized_name": "tales of violet valley" + }, + { + "appid": 2002740, + "normalized_name": "king arthur's petaldust saga" + }, + { + "appid": 2002790, + "normalized_name": "midnight renegade recollections" + }, + { + "appid": 2002830, + "normalized_name": "cube control" + }, + { + "appid": 2002840, + "normalized_name": "gossamer matrix" + }, + { + "appid": 2002850, + "normalized_name": "raiden iv x mikado remix" + }, + { + "appid": 2002860, + "normalized_name": "raiden iii x mikado maniax" + }, + { + "appid": 2002870, + "normalized_name": "rhapsody ii ballad of the little princess" + }, + { + "appid": 2002880, + "normalized_name": "rhapsody iii memories of marl kingdom" + }, + { + "appid": 2002990, + "normalized_name": "super skeleton butler" + }, + { + "appid": 2003030, + "normalized_name": "arcade flight" + }, + { + "appid": 2003050, + "normalized_name": "perseus titan slayer" + }, + { + "appid": 2003060, + "normalized_name": "monsters domain prologue" + }, + { + "appid": 2003070, + "normalized_name": "orc warchief prologue" + }, + { + "appid": 2003150, + "normalized_name": "day of pixel" + }, + { + "appid": 2003190, + "normalized_name": "scary mansion horror house hd" + }, + { + "appid": 2003220, + "normalized_name": "tittok 3" + }, + { + "appid": 2003240, + "normalized_name": "psi masquerade" + }, + { + "appid": 2003270, + "normalized_name": "smokyflex" + }, + { + "appid": 2003300, + "normalized_name": "バイナリ・シンドローム" + }, + { + "appid": 2003320, + "normalized_name": "merge beasts defense game" + }, + { + "appid": 2003340, + "normalized_name": "eternal rome" + }, + { + "appid": 2003350, + "normalized_name": "plane attack" + }, + { + "appid": 2003370, + "normalized_name": "match village" + }, + { + "appid": 2003390, + "normalized_name": "undivine comedy hank's inferno" + }, + { + "appid": 2003420, + "normalized_name": "bonk'd audio visualizer" + }, + { + "appid": 2003450, + "normalized_name": "moonatics" + }, + { + "appid": 2003470, + "normalized_name": "demon tomb" + }, + { + "appid": 2003490, + "normalized_name": "toroa skycall" + }, + { + "appid": 2003510, + "normalized_name": "诸神陨落" + }, + { + "appid": 2003550, + "normalized_name": "alice's warped wonderland recollection" + }, + { + "appid": 2003560, + "normalized_name": "pacfish" + }, + { + "appid": 2003590, + "normalized_name": "the invisible man's stealth ntr convincing and inseminating the new announcer with an invisible boner" + }, + { + "appid": 2003600, + "normalized_name": "don't stop the camera! ~hidden desires of a young wife~" + }, + { + "appid": 2003620, + "normalized_name": "the office" + }, + { + "appid": 2003640, + "normalized_name": "village heroes" + }, + { + "appid": 2003660, + "normalized_name": "bullet hell monday" + }, + { + "appid": 2003670, + "normalized_name": "the retrieval" + }, + { + "appid": 2003690, + "normalized_name": "skies of blue remake" + }, + { + "appid": 2003730, + "normalized_name": "雀姬的异想世界 普通版" + }, + { + "appid": 2003740, + "normalized_name": "茶叶蛋大冒险" + }, + { + "appid": 2003750, + "normalized_name": "blacken slash prologue" + }, + { + "appid": 2003760, + "normalized_name": "cards of binokee" + }, + { + "appid": 2003770, + "normalized_name": "hunt of the reptorians" + }, + { + "appid": 2003800, + "normalized_name": "age of duels" + }, + { + "appid": 2003840, + "normalized_name": "farmingcat" + }, + { + "appid": 2003870, + "normalized_name": "yow" + }, + { + "appid": 2003880, + "normalized_name": "the creepy syndrome" + }, + { + "appid": 2003970, + "normalized_name": "repairny (リペアニー)" + }, + { + "appid": 2003990, + "normalized_name": "arcade sundown" + }, + { + "appid": 2004060, + "normalized_name": "wild rumble" + }, + { + "appid": 2004080, + "normalized_name": "furnish master" + }, + { + "appid": 2004090, + "normalized_name": "world of cubes" + }, + { + "appid": 2004180, + "normalized_name": "daguri gambling apocalypse" + }, + { + "appid": 2004200, + "normalized_name": "pickup one" + }, + { + "appid": 2004220, + "normalized_name": "异世界杂货铺 skyscraper in another world" + }, + { + "appid": 2004290, + "normalized_name": "instant war" + }, + { + "appid": 2004300, + "normalized_name": "stonkers" + }, + { + "appid": 2004320, + "normalized_name": "duelyst ii" + }, + { + "appid": 2004360, + "normalized_name": "hell division" + }, + { + "appid": 2004370, + "normalized_name": "sinner 97" + }, + { + "appid": 2004380, + "normalized_name": "rod multiplayer car driving" + }, + { + "appid": 2004390, + "normalized_name": "metal flame" + }, + { + "appid": 2004430, + "normalized_name": "the search for fran 2" + }, + { + "appid": 2004440, + "normalized_name": "pocket city" + }, + { + "appid": 2004490, + "normalized_name": "furry cyberfucker ii" + }, + { + "appid": 2004500, + "normalized_name": "multishot" + }, + { + "appid": 2004520, + "normalized_name": "the chronicle" + }, + { + "appid": 2004540, + "normalized_name": "lands of ryuu" + }, + { + "appid": 2004590, + "normalized_name": "conbunn cardboard" + }, + { + "appid": 2004610, + "normalized_name": "a mage reborn" + }, + { + "appid": 2004640, + "normalized_name": "svarog's dream" + }, + { + "appid": 2004650, + "normalized_name": "sailsim" + }, + { + "appid": 2004670, + "normalized_name": "frebbventure" + }, + { + "appid": 2004680, + "normalized_name": "voidling bound" + }, + { + "appid": 2004700, + "normalized_name": "mate" + }, + { + "appid": 2004710, + "normalized_name": "mewnition" + }, + { + "appid": 2004730, + "normalized_name": "old roots" + }, + { + "appid": 2004770, + "normalized_name": "黑暗笔录" + }, + { + "appid": 2004870, + "normalized_name": "skeletons vs nadia" + }, + { + "appid": 2004880, + "normalized_name": "lustful pussies" + }, + { + "appid": 2004890, + "normalized_name": "nude in the castle" + }, + { + "appid": 2004960, + "normalized_name": "slam and roll" + }, + { + "appid": 2004970, + "normalized_name": "dragon kingdoms a legend's beginning" + }, + { + "appid": 2004980, + "normalized_name": "revenge of the orcs flag of conquest" + }, + { + "appid": 2004990, + "normalized_name": "lifeway 人生路" + }, + { + "appid": 2005000, + "normalized_name": "cool game" + }, + { + "appid": 2005010, + "normalized_name": "warhammer 40 000 boltgun" + }, + { + "appid": 2005020, + "normalized_name": "terror daktil 4d" + }, + { + "appid": 2005050, + "normalized_name": "dance dash" + }, + { + "appid": 2005070, + "normalized_name": "putin orcs defender" + }, + { + "appid": 2005080, + "normalized_name": "samurai solitaire. return of the ronin" + }, + { + "appid": 2005090, + "normalized_name": "evotinction" + }, + { + "appid": 2005150, + "normalized_name": "tiny robo puzzles" + }, + { + "appid": 2005160, + "normalized_name": "naheulbeuk's dungeon master" + }, + { + "appid": 2005210, + "normalized_name": "void scrappers" + }, + { + "appid": 2005220, + "normalized_name": "the legend of the soulforce heroes of the abyss" + }, + { + "appid": 2005230, + "normalized_name": "tall poppy 2" + }, + { + "appid": 2005240, + "normalized_name": "space shells" + }, + { + "appid": 2005260, + "normalized_name": "lost snowmen" + }, + { + "appid": 2005290, + "normalized_name": "the farnese hercules" + }, + { + "appid": 2005320, + "normalized_name": "幻覚" + }, + { + "appid": 2005350, + "normalized_name": "elohim eternal prologue" + }, + { + "appid": 2005390, + "normalized_name": "paper flight super speed dash" + }, + { + "appid": 2005400, + "normalized_name": "paper flight speed rush" + }, + { + "appid": 2005410, + "normalized_name": "advent calendar puzzle" + }, + { + "appid": 2005430, + "normalized_name": "the call of krul'ar" + }, + { + "appid": 2005480, + "normalized_name": "overage child of chaos" + }, + { + "appid": 2005490, + "normalized_name": "meat beating the second coming" + }, + { + "appid": 2005570, + "normalized_name": "liquid havoc" + }, + { + "appid": 2005580, + "normalized_name": "spellbounders 2" + }, + { + "appid": 2005630, + "normalized_name": "babysitter simulator" + }, + { + "appid": 2005640, + "normalized_name": "fucking hell" + }, + { + "appid": 2005670, + "normalized_name": "alien task force" + }, + { + "appid": 2005680, + "normalized_name": "akka arrh" + }, + { + "appid": 2005690, + "normalized_name": "the 9th charnel" + }, + { + "appid": 2005710, + "normalized_name": "wizcave" + }, + { + "appid": 2005750, + "normalized_name": "collapse relapse" + }, + { + "appid": 2005760, + "normalized_name": "shuriken trigger" + }, + { + "appid": 2005780, + "normalized_name": "awake" + }, + { + "appid": 2005790, + "normalized_name": "gleeb glob" + }, + { + "appid": 2005800, + "normalized_name": "ninjathea" + }, + { + "appid": 2005820, + "normalized_name": "soul shard" + }, + { + "appid": 2005870, + "normalized_name": "house of necrosis" + }, + { + "appid": 2005900, + "normalized_name": "mother nature balance broken" + }, + { + "appid": 2005910, + "normalized_name": "olliefrog toad skater" + }, + { + "appid": 2005930, + "normalized_name": "boltcraft" + }, + { + "appid": 2005950, + "normalized_name": "the rabbit's scroll" + }, + { + "appid": 2005990, + "normalized_name": "gunkan zero" + }, + { + "appid": 2006050, + "normalized_name": "floating world" + }, + { + "appid": 2006070, + "normalized_name": "black otaku sos hd" + }, + { + "appid": 2006080, + "normalized_name": "野猫坡" + }, + { + "appid": 2006090, + "normalized_name": "ghost trap" + }, + { + "appid": 2006110, + "normalized_name": "havenview" + }, + { + "appid": 2006120, + "normalized_name": "gamezero" + }, + { + "appid": 2006140, + "normalized_name": "withering rooms" + }, + { + "appid": 2006160, + "normalized_name": "单挑洪荒" + }, + { + "appid": 2006170, + "normalized_name": "portal defense" + }, + { + "appid": 2006180, + "normalized_name": "barricade" + }, + { + "appid": 2006190, + "normalized_name": "elysia" + }, + { + "appid": 2006200, + "normalized_name": "挪德之地 land of nod" + }, + { + "appid": 2006210, + "normalized_name": "血染め鬼女" + }, + { + "appid": 2006260, + "normalized_name": "miko melee" + }, + { + "appid": 2006300, + "normalized_name": "panty load" + }, + { + "appid": 2006310, + "normalized_name": "我感染hiv了吗" + }, + { + "appid": 2006330, + "normalized_name": "fungiman" + }, + { + "appid": 2006340, + "normalized_name": "sliiide!" + }, + { + "appid": 2006360, + "normalized_name": "pizza death" + }, + { + "appid": 2006390, + "normalized_name": "valand" + }, + { + "appid": 2006430, + "normalized_name": "epic jump!" + }, + { + "appid": 2006450, + "normalized_name": "katana arena" + }, + { + "appid": 2006460, + "normalized_name": "ball with pistons" + }, + { + "appid": 2006470, + "normalized_name": "chronos builder" + }, + { + "appid": 2006490, + "normalized_name": "way to the cake" + }, + { + "appid": 2006520, + "normalized_name": "拯救破败祖业" + }, + { + "appid": 2006530, + "normalized_name": "adventures at the north pole" + }, + { + "appid": 2006540, + "normalized_name": "bura the way the wind blows" + }, + { + "appid": 2006560, + "normalized_name": "lockdown vr circus of the dead" + }, + { + "appid": 2006570, + "normalized_name": "カテゴリーi 死線上のサバイバー" + }, + { + "appid": 2006580, + "normalized_name": "furniture busters" + }, + { + "appid": 2006640, + "normalized_name": "sherlock holmes i el cas d'arthur gordon pym" + }, + { + "appid": 2006690, + "normalized_name": "kingdom's edge" + }, + { + "appid": 2006700, + "normalized_name": "impossibot" + }, + { + "appid": 2006730, + "normalized_name": "godumas" + }, + { + "appid": 2006770, + "normalized_name": "benja 180 seconds (demo)" + }, + { + "appid": 2006830, + "normalized_name": "maniacs" + }, + { + "appid": 2006840, + "normalized_name": "the horace trilogy" + }, + { + "appid": 2006990, + "normalized_name": "railroads & catacombs prologue" + }, + { + "appid": 2007000, + "normalized_name": "shadow of asha" + }, + { + "appid": 2007010, + "normalized_name": "welcome to the backrooms" + }, + { + "appid": 2007030, + "normalized_name": "platformity" + }, + { + "appid": 2007050, + "normalized_name": "penguins can fly" + }, + { + "appid": 2007060, + "normalized_name": "垃圾游戏" + }, + { + "appid": 2007070, + "normalized_name": "heavy truck simulator" + }, + { + "appid": 2007080, + "normalized_name": "asteroidle" + }, + { + "appid": 2007100, + "normalized_name": "evangeline's defense" + }, + { + "appid": 2007120, + "normalized_name": "hide & crab" + }, + { + "appid": 2007130, + "normalized_name": "around the world" + }, + { + "appid": 2007150, + "normalized_name": "parabellum galaxia" + }, + { + "appid": 2007180, + "normalized_name": "candysweet" + }, + { + "appid": 2007240, + "normalized_name": "lil' horror stories the camp fire" + }, + { + "appid": 2007270, + "normalized_name": "the mystery of william moore" + }, + { + "appid": 2007280, + "normalized_name": "العدم" + }, + { + "appid": 2007300, + "normalized_name": "darkself other mind" + }, + { + "appid": 2007350, + "normalized_name": "cozy room" + }, + { + "appid": 2007390, + "normalized_name": "marble race creator" + }, + { + "appid": 2007410, + "normalized_name": "strange investigations two for solitaire collector's" + }, + { + "appid": 2007430, + "normalized_name": "blast cats" + }, + { + "appid": 2007460, + "normalized_name": "boralaa" + }, + { + "appid": 2007470, + "normalized_name": "search all birds" + }, + { + "appid": 2007480, + "normalized_name": "airdrift" + }, + { + "appid": 2007520, + "normalized_name": "rainbow high runway rush" + }, + { + "appid": 2007530, + "normalized_name": "spellbook demonslayers" + }, + { + "appid": 2007570, + "normalized_name": "knock the bloody door down" + }, + { + "appid": 2007590, + "normalized_name": "chromahertz" + }, + { + "appid": 2007700, + "normalized_name": "scared tube" + }, + { + "appid": 2007710, + "normalized_name": "betrix" + }, + { + "appid": 2007740, + "normalized_name": "the roots" + }, + { + "appid": 2007770, + "normalized_name": "corrupted dawn of havoc" + }, + { + "appid": 2007790, + "normalized_name": "普帕高中 pupa" + }, + { + "appid": 2007920, + "normalized_name": "nade nade onna no ko 7 imprisonment sex story" + }, + { + "appid": 2007930, + "normalized_name": "fallen bride mege" + }, + { + "appid": 2007940, + "normalized_name": "faction z" + }, + { + "appid": 2007980, + "normalized_name": "misty's shining blacksmithing" + }, + { + "appid": 2008040, + "normalized_name": "survivor legends" + }, + { + "appid": 2008050, + "normalized_name": "right and down" + }, + { + "appid": 2008100, + "normalized_name": "rule the waves 3" + }, + { + "appid": 2008110, + "normalized_name": "rooftop garden simulator" + }, + { + "appid": 2008120, + "normalized_name": "the binding of survivors" + }, + { + "appid": 2008200, + "normalized_name": "ashen knights foreshadow" + }, + { + "appid": 2008220, + "normalized_name": "chop chop guys" + }, + { + "appid": 2008260, + "normalized_name": "reconcile with cats [cat + tank + ningen = roguelike]" + }, + { + "appid": 2008270, + "normalized_name": "biters & bullets" + }, + { + "appid": 2008280, + "normalized_name": "sinister" + }, + { + "appid": 2008330, + "normalized_name": "lost in hell" + }, + { + "appid": 2008350, + "normalized_name": "crush them!碾碎它们!" + }, + { + "appid": 2008410, + "normalized_name": "garfield lasagna party" + }, + { + "appid": 2008420, + "normalized_name": "flashback 2" + }, + { + "appid": 2008440, + "normalized_name": "morels homestead" + }, + { + "appid": 2008450, + "normalized_name": "galaxy of void bounty hunter" + }, + { + "appid": 2008460, + "normalized_name": "infinity war land" + }, + { + "appid": 2008480, + "normalized_name": "everything has arms" + }, + { + "appid": 2008510, + "normalized_name": "go mecha ball" + }, + { + "appid": 2008530, + "normalized_name": "hooking season" + }, + { + "appid": 2008560, + "normalized_name": "วีรบุรุษไร้พลัง ไข่ต้ม" + }, + { + "appid": 2008600, + "normalized_name": "who stole my sheep?" + }, + { + "appid": 2008650, + "normalized_name": "marpi os" + }, + { + "appid": 2008670, + "normalized_name": "ralphgame" + }, + { + "appid": 2008820, + "normalized_name": "knight and mourning" + }, + { + "appid": 2008850, + "normalized_name": "cube decider" + }, + { + "appid": 2008860, + "normalized_name": "atomic escape reverse escape room" + }, + { + "appid": 2008870, + "normalized_name": "the dead sea scrolls adventure" + }, + { + "appid": 2008920, + "normalized_name": "lorelei and the laser eyes" + }, + { + "appid": 2008930, + "normalized_name": "living legends bound by wishes collector's" + }, + { + "appid": 2008950, + "normalized_name": "russian soldier simulator" + }, + { + "appid": 2008980, + "normalized_name": "xenotilt hostile pinball action" + }, + { + "appid": 2008990, + "normalized_name": "call hating" + }, + { + "appid": 2009010, + "normalized_name": "my furry protogen 🐾" + }, + { + "appid": 2009100, + "normalized_name": "immortals of aveum" + }, + { + "appid": 2009160, + "normalized_name": "system purge hollow point" + }, + { + "appid": 2009220, + "normalized_name": "everyone moves with you" + }, + { + "appid": 2009300, + "normalized_name": "百将群英传" + }, + { + "appid": 2009310, + "normalized_name": "goi spooky run" + }, + { + "appid": 2009340, + "normalized_name": "defend the bits td" + }, + { + "appid": 2009350, + "normalized_name": "out of ore" + }, + { + "appid": 2009360, + "normalized_name": "cream war" + }, + { + "appid": 2009380, + "normalized_name": "they don't sleep" + }, + { + "appid": 2009390, + "normalized_name": "梦三国2" + }, + { + "appid": 2009420, + "normalized_name": "zaxterion space frenzy!" + }, + { + "appid": 2009450, + "normalized_name": "invector rhythm galaxy" + }, + { + "appid": 2009460, + "normalized_name": "war of wizards" + }, + { + "appid": 2009470, + "normalized_name": "party pie free pie" + }, + { + "appid": 2009500, + "normalized_name": "what's missing?" + }, + { + "appid": 2009510, + "normalized_name": "omnichess chess variants" + }, + { + "appid": 2009560, + "normalized_name": "music man" + }, + { + "appid": 2009620, + "normalized_name": "harvest hunt" + }, + { + "appid": 2009650, + "normalized_name": "desta the memories between" + }, + { + "appid": 2009670, + "normalized_name": "moontrain" + }, + { + "appid": 2009720, + "normalized_name": "mega serval" + }, + { + "appid": 2009730, + "normalized_name": "meat & greed" + }, + { + "appid": 2009770, + "normalized_name": "eternal pinball rpg" + }, + { + "appid": 2009780, + "normalized_name": "napoleon's eagles game of the napoleonic wars" + }, + { + "appid": 2009800, + "normalized_name": "kawaii hentai girls 2" + }, + { + "appid": 2009830, + "normalized_name": "sushi warrior secret plan" + }, + { + "appid": 2009840, + "normalized_name": "plop saga" + }, + { + "appid": 2009850, + "normalized_name": "lofi ball" + }, + { + "appid": 2009860, + "normalized_name": "tower escape" + }, + { + "appid": 2009920, + "normalized_name": "pussy 5" + }, + { + "appid": 2009930, + "normalized_name": "blade bros impact!" + }, + { + "appid": 2009940, + "normalized_name": "forgotten legends" + }, + { + "appid": 2009950, + "normalized_name": "occult rewrite" + }, + { + "appid": 2010000, + "normalized_name": "nock" + }, + { + "appid": 2010010, + "normalized_name": "boomerang jack" + }, + { + "appid": 2010030, + "normalized_name": "denizen" + }, + { + "appid": 2010100, + "normalized_name": "carbox" + }, + { + "appid": 2010110, + "normalized_name": "quickerflak_ruthlessmod" + }, + { + "appid": 2010150, + "normalized_name": "blast off far away" + }, + { + "appid": 2010160, + "normalized_name": "shogun" + }, + { + "appid": 2010170, + "normalized_name": "kogarashi" + }, + { + "appid": 2010200, + "normalized_name": "chuhou joutai 3 three nights of scarlet abscess" + }, + { + "appid": 2010210, + "normalized_name": "sunwave hotel" + }, + { + "appid": 2010220, + "normalized_name": "slime jumper adventure" + }, + { + "appid": 2010240, + "normalized_name": "f.o.g. fear of going" + }, + { + "appid": 2010250, + "normalized_name": "psycho地雷inlove 싸이코지라이 인 러브" + }, + { + "appid": 2010310, + "normalized_name": "369" + }, + { + "appid": 2010320, + "normalized_name": "tittok kitty" + }, + { + "appid": 2010340, + "normalized_name": "thefighters online" + }, + { + "appid": 2010360, + "normalized_name": "uncharted space project 3062" + }, + { + "appid": 2010370, + "normalized_name": "the true love rings" + }, + { + "appid": 2010380, + "normalized_name": "starwalker the last cylinder" + }, + { + "appid": 2010390, + "normalized_name": "bug butcher" + }, + { + "appid": 2010400, + "normalized_name": "hell green blue" + }, + { + "appid": 2010410, + "normalized_name": "psyolence" + }, + { + "appid": 2010420, + "normalized_name": "pewt 'em up!" + }, + { + "appid": 2010450, + "normalized_name": "endlanders first encounter" + }, + { + "appid": 2010460, + "normalized_name": "hardenville" + }, + { + "appid": 2010500, + "normalized_name": "run4yourlight" + }, + { + "appid": 2010510, + "normalized_name": "indenture" + }, + { + "appid": 2010530, + "normalized_name": "monster cards" + }, + { + "appid": 2010540, + "normalized_name": "search all bitcoin" + }, + { + "appid": 2010560, + "normalized_name": "huntforout" + }, + { + "appid": 2010570, + "normalized_name": "me alone reissue" + }, + { + "appid": 2010660, + "normalized_name": "bodacious agents" + }, + { + "appid": 2010690, + "normalized_name": "stack by stack" + }, + { + "appid": 2010700, + "normalized_name": "hunter survivors" + }, + { + "appid": 2010710, + "normalized_name": "divine doubt" + }, + { + "appid": 2010720, + "normalized_name": "morlush" + }, + { + "appid": 2010740, + "normalized_name": "roomli" + }, + { + "appid": 2010790, + "normalized_name": "whore dealer an wet porn erotic puzzle" + }, + { + "appid": 2010830, + "normalized_name": "your love story 被你忘记的那个夏天" + }, + { + "appid": 2010870, + "normalized_name": "estrus princess" + }, + { + "appid": 2010900, + "normalized_name": "后汉稽异录 obscure chronicle of dynasty" + }, + { + "appid": 2010960, + "normalized_name": "downtown jam" + }, + { + "appid": 2011080, + "normalized_name": "tawako the forest hedgehog" + }, + { + "appid": 2011100, + "normalized_name": "space major miner" + }, + { + "appid": 2011110, + "normalized_name": "adventure submarine uss 101" + }, + { + "appid": 2011130, + "normalized_name": "donutcrabs" + }, + { + "appid": 2011140, + "normalized_name": "art your brains" + }, + { + "appid": 2011160, + "normalized_name": "puzzles with nature" + }, + { + "appid": 2011170, + "normalized_name": "spacebase siege" + }, + { + "appid": 2011180, + "normalized_name": "terminus historia" + }, + { + "appid": 2011190, + "normalized_name": "doodle drive" + }, + { + "appid": 2011210, + "normalized_name": "angy" + }, + { + "appid": 2011230, + "normalized_name": "hentai pussy 3" + }, + { + "appid": 2011240, + "normalized_name": "残神觉醒 broken god awakening" + }, + { + "appid": 2011310, + "normalized_name": "entropic float this world will decay and disappear" + }, + { + "appid": 2011320, + "normalized_name": "perfect boyfriend" + }, + { + "appid": 2011330, + "normalized_name": "hide and seek scramble!" + }, + { + "appid": 2011340, + "normalized_name": "splat cat" + }, + { + "appid": 2011400, + "normalized_name": "delegati genesis" + }, + { + "appid": 2011410, + "normalized_name": "monstrous love" + }, + { + "appid": 2011440, + "normalized_name": "adventures of dakoo the dragon" + }, + { + "appid": 2011460, + "normalized_name": "our dying world" + }, + { + "appid": 2011470, + "normalized_name": "大侠请重来" + }, + { + "appid": 2011480, + "normalized_name": "paranoya" + }, + { + "appid": 2011550, + "normalized_name": "mouse people" + }, + { + "appid": 2011610, + "normalized_name": "maze runner" + }, + { + "appid": 2011640, + "normalized_name": "死亡旅店ⅱ亡者归来 death inn ⅱ the immortal is coming" + }, + { + "appid": 2011650, + "normalized_name": "spiritus" + }, + { + "appid": 2011730, + "normalized_name": "long drop" + }, + { + "appid": 2011750, + "normalized_name": "silver lines" + }, + { + "appid": 2011780, + "normalized_name": "yellow taxi goes vroom" + }, + { + "appid": 2011840, + "normalized_name": "squad game" + }, + { + "appid": 2011860, + "normalized_name": "refund me if you can" + }, + { + "appid": 2011870, + "normalized_name": "brain vomits garden" + }, + { + "appid": 2011900, + "normalized_name": "zero wing" + }, + { + "appid": 2011910, + "normalized_name": "狼人对决" + }, + { + "appid": 2011960, + "normalized_name": "sunny grove" + }, + { + "appid": 2012000, + "normalized_name": "my neko waifu!" + }, + { + "appid": 2012020, + "normalized_name": "dis pontibus 2" + }, + { + "appid": 2012030, + "normalized_name": "uncounted isles" + }, + { + "appid": 2012040, + "normalized_name": "enemy of the state" + }, + { + "appid": 2012070, + "normalized_name": "watch your back" + }, + { + "appid": 2012100, + "normalized_name": "what the bat?" + }, + { + "appid": 2012140, + "normalized_name": "helicopter gunship dex" + }, + { + "appid": 2012170, + "normalized_name": "ashzel & the power dagger" + }, + { + "appid": 2012190, + "normalized_name": "kaiserpunk" + }, + { + "appid": 2012260, + "normalized_name": "blade runner 2033 labyrinth" + }, + { + "appid": 2012270, + "normalized_name": "workaholic" + }, + { + "appid": 2012290, + "normalized_name": "juicy futa" + }, + { + "appid": 2012320, + "normalized_name": "parallel experiment" + }, + { + "appid": 2012340, + "normalized_name": "witch epoch" + }, + { + "appid": 2012390, + "normalized_name": "galactic getaway build a home for pets" + }, + { + "appid": 2012440, + "normalized_name": "ガチムチでドスケベな家庭教師のお兄さんと過ごす夏" + }, + { + "appid": 2012450, + "normalized_name": "cat game🐱" + }, + { + "appid": 2012500, + "normalized_name": "the katydids incident" + }, + { + "appid": 2012510, + "normalized_name": "stormgate" + }, + { + "appid": 2012520, + "normalized_name": "aero striker world invasion" + }, + { + "appid": 2012530, + "normalized_name": "hot hentai" + }, + { + "appid": 2012540, + "normalized_name": "furry orgasm" + }, + { + "appid": 2012570, + "normalized_name": "zosu vr explosive bow hunting" + }, + { + "appid": 2012590, + "normalized_name": "lunarball" + }, + { + "appid": 2012600, + "normalized_name": "radium lux" + }, + { + "appid": 2012610, + "normalized_name": "age of undead" + }, + { + "appid": 2012620, + "normalized_name": "furry cybersex" + }, + { + "appid": 2012630, + "normalized_name": "a pact with me boys love (bl) visual novel" + }, + { + "appid": 2012650, + "normalized_name": "zuria" + }, + { + "appid": 2012670, + "normalized_name": "maiden cops" + }, + { + "appid": 2012680, + "normalized_name": "neopunk destiny city" + }, + { + "appid": 2012690, + "normalized_name": "before the explosion" + }, + { + "appid": 2012720, + "normalized_name": "イド ido" + }, + { + "appid": 2012790, + "normalized_name": "mini star fishing" + }, + { + "appid": 2012820, + "normalized_name": "necrocity prologue" + }, + { + "appid": 2012830, + "normalized_name": "边缘世界 edge worlds" + }, + { + "appid": 2012840, + "normalized_name": "portal with rtx" + }, + { + "appid": 2012890, + "normalized_name": "地城争霸" + }, + { + "appid": 2012910, + "normalized_name": "嗜憶 swallow" + }, + { + "appid": 2012950, + "normalized_name": "antrio" + }, + { + "appid": 2012990, + "normalized_name": "boxman adventures" + }, + { + "appid": 2013010, + "normalized_name": "blood scheme" + }, + { + "appid": 2013030, + "normalized_name": "yeah jam fury" + }, + { + "appid": 2013040, + "normalized_name": "守麥精靈黛芽" + }, + { + "appid": 2013060, + "normalized_name": "fighting girl sakura r" + }, + { + "appid": 2013080, + "normalized_name": "unders_core" + }, + { + "appid": 2013120, + "normalized_name": "1997" + }, + { + "appid": 2013130, + "normalized_name": "knock & run" + }, + { + "appid": 2013150, + "normalized_name": "bubble night" + }, + { + "appid": 2013170, + "normalized_name": "friends world" + }, + { + "appid": 2013180, + "normalized_name": "futanari sex pool party" + }, + { + "appid": 2013240, + "normalized_name": "immortal family" + }, + { + "appid": 2013270, + "normalized_name": "骸亡禁决:skeleton king" + }, + { + "appid": 2013300, + "normalized_name": "alien shooter 2 new era" + }, + { + "appid": 2013360, + "normalized_name": "the oregon trail" + }, + { + "appid": 2013420, + "normalized_name": "yummy girls" + }, + { + "appid": 2013440, + "normalized_name": "playing with my brother's wife" + }, + { + "appid": 2013480, + "normalized_name": "mugsy & mugsy's revenge" + }, + { + "appid": 2013540, + "normalized_name": "belly bumpers" + }, + { + "appid": 2013580, + "normalized_name": "xp soccer" + }, + { + "appid": 2013640, + "normalized_name": "sex search 2" + }, + { + "appid": 2013650, + "normalized_name": "logicality" + }, + { + "appid": 2013670, + "normalized_name": "five nights at sexy's" + }, + { + "appid": 2013680, + "normalized_name": "kaz's adventure" + }, + { + "appid": 2013720, + "normalized_name": "retrowave rider" + }, + { + "appid": 2013730, + "normalized_name": "gourdlets" + }, + { + "appid": 2013740, + "normalized_name": "underwater world idle desktop colony building simulator" + }, + { + "appid": 2013770, + "normalized_name": "worker riot" + }, + { + "appid": 2013780, + "normalized_name": "drain runner" + }, + { + "appid": 2013800, + "normalized_name": "pedro land dx" + }, + { + "appid": 2013860, + "normalized_name": "project woven" + }, + { + "appid": 2013870, + "normalized_name": "idle hero" + }, + { + "appid": 2013880, + "normalized_name": "strikers" + }, + { + "appid": 2013900, + "normalized_name": "100 hidden turtles" + }, + { + "appid": 2013970, + "normalized_name": "bots crusher arena" + }, + { + "appid": 2013990, + "normalized_name": "villwars" + }, + { + "appid": 2014160, + "normalized_name": "dock king" + }, + { + "appid": 2014180, + "normalized_name": "大分・別府ミステリー案内 歪んだ竹灯篭" + }, + { + "appid": 2014210, + "normalized_name": "every hue of you" + }, + { + "appid": 2014220, + "normalized_name": "game cycle" + }, + { + "appid": 2014240, + "normalized_name": "lymph city blues" + }, + { + "appid": 2014280, + "normalized_name": "レザリシアストーリーズ" + }, + { + "appid": 2014300, + "normalized_name": "sugarcreek" + }, + { + "appid": 2014330, + "normalized_name": "shadow jump" + }, + { + "appid": 2014370, + "normalized_name": "魔塔三国之群雄争霸" + }, + { + "appid": 2014380, + "normalized_name": "live a live" + }, + { + "appid": 2014390, + "normalized_name": "防疫英雄" + }, + { + "appid": 2014410, + "normalized_name": "sword king" + }, + { + "appid": 2014420, + "normalized_name": "death noodle delivery" + }, + { + "appid": 2014470, + "normalized_name": "the abandoned planet" + }, + { + "appid": 2014480, + "normalized_name": "costly adventure" + }, + { + "appid": 2014500, + "normalized_name": "battleworks vr | online physics based pvp" + }, + { + "appid": 2014510, + "normalized_name": "colorider" + }, + { + "appid": 2014520, + "normalized_name": "tails of fate" + }, + { + "appid": 2014540, + "normalized_name": "liberation" + }, + { + "appid": 2014550, + "normalized_name": "voidwrought" + }, + { + "appid": 2014560, + "normalized_name": "birds are real" + }, + { + "appid": 2014610, + "normalized_name": "crazy traffic racer" + }, + { + "appid": 2014620, + "normalized_name": "farming fever pizza and burger cooking game" + }, + { + "appid": 2014650, + "normalized_name": "phobos project" + }, + { + "appid": 2014680, + "normalized_name": "project death strikers" + }, + { + "appid": 2014690, + "normalized_name": "shame legacy" + }, + { + "appid": 2014740, + "normalized_name": "last monarch" + }, + { + "appid": 2014750, + "normalized_name": "gilligan's gold" + }, + { + "appid": 2014770, + "normalized_name": "steamtopia" + }, + { + "appid": 2014780, + "normalized_name": "x plane 12" + }, + { + "appid": 2014840, + "normalized_name": "cathedral of sorrow" + }, + { + "appid": 2014870, + "normalized_name": "execute daddy~パパが何度も死ぬゲーム~" + }, + { + "appid": 2014910, + "normalized_name": "mom got stuck in the washing machine" + }, + { + "appid": 2014930, + "normalized_name": "a last will and testament adventure" + }, + { + "appid": 2014940, + "normalized_name": "quverse" + }, + { + "appid": 2014950, + "normalized_name": "leave a light" + }, + { + "appid": 2014980, + "normalized_name": "heart lake心湖" + }, + { + "appid": 2014990, + "normalized_name": "exhale xr | vr wellness" + }, + { + "appid": 2015000, + "normalized_name": "the ghost and the golem" + }, + { + "appid": 2015040, + "normalized_name": "ignited steel prologue" + }, + { + "appid": 2015080, + "normalized_name": "furry fantasy" + }, + { + "appid": 2015130, + "normalized_name": "thrae" + }, + { + "appid": 2015170, + "normalized_name": "bad chicken" + }, + { + "appid": 2015200, + "normalized_name": "grot slasher" + }, + { + "appid": 2015240, + "normalized_name": "dwarven realms" + }, + { + "appid": 2015260, + "normalized_name": "rich taste of ecchi" + }, + { + "appid": 2015270, + "normalized_name": "rotwood" + }, + { + "appid": 2015280, + "normalized_name": "memory hunters" + }, + { + "appid": 2015330, + "normalized_name": "false calamity" + }, + { + "appid": 2015360, + "normalized_name": "linked worlds" + }, + { + "appid": 2015430, + "normalized_name": "jigoku unko toripuru" + }, + { + "appid": 2015440, + "normalized_name": "the explorator" + }, + { + "appid": 2015450, + "normalized_name": "void inside" + }, + { + "appid": 2015460, + "normalized_name": "flip of light" + }, + { + "appid": 2015470, + "normalized_name": "keyword 2 nightfall" + }, + { + "appid": 2015500, + "normalized_name": "hatup" + }, + { + "appid": 2015580, + "normalized_name": "painted legend knights of ink & paper" + }, + { + "appid": 2015610, + "normalized_name": "血色病院 | blood hospital" + }, + { + "appid": 2015620, + "normalized_name": "valkyrie of phantasm" + }, + { + "appid": 2015650, + "normalized_name": "disembowel" + }, + { + "appid": 2015670, + "normalized_name": "without kidney" + }, + { + "appid": 2015700, + "normalized_name": "东方心之解束~saving from the devil" + }, + { + "appid": 2015740, + "normalized_name": "snailquest" + }, + { + "appid": 2015750, + "normalized_name": "cavalier" + }, + { + "appid": 2015760, + "normalized_name": "havenhold" + }, + { + "appid": 2015830, + "normalized_name": "pingo adventure" + }, + { + "appid": 2015860, + "normalized_name": "江湖百异图" + }, + { + "appid": 2015940, + "normalized_name": "animarama" + }, + { + "appid": 2015950, + "normalized_name": "shapik the quest" + }, + { + "appid": 2015960, + "normalized_name": "parcel corps" + }, + { + "appid": 2016000, + "normalized_name": "honey toast" + }, + { + "appid": 2016020, + "normalized_name": "colonia" + }, + { + "appid": 2016050, + "normalized_name": "medic pacific war – prologue" + }, + { + "appid": 2016060, + "normalized_name": "twilight explorers" + }, + { + "appid": 2016080, + "normalized_name": "a hero's rest an rpg town simulator" + }, + { + "appid": 2016090, + "normalized_name": "augury" + }, + { + "appid": 2016100, + "normalized_name": "epsilon eridana" + }, + { + "appid": 2016110, + "normalized_name": "blaze in space beat a maze" + }, + { + "appid": 2016170, + "normalized_name": "be a rock" + }, + { + "appid": 2016190, + "normalized_name": "another crusade" + }, + { + "appid": 2016210, + "normalized_name": "knights of the kitchen table" + }, + { + "appid": 2016220, + "normalized_name": "earthroyale" + }, + { + "appid": 2016280, + "normalized_name": "matchr now hiring" + }, + { + "appid": 2016290, + "normalized_name": "the cute fighter" + }, + { + "appid": 2016300, + "normalized_name": "ceaseless" + }, + { + "appid": 2016350, + "normalized_name": "elfheim chapter 1" + }, + { + "appid": 2016370, + "normalized_name": "adorable witch 4 :lust" + }, + { + "appid": 2016400, + "normalized_name": "echoed realms" + }, + { + "appid": 2016410, + "normalized_name": "arali" + }, + { + "appid": 2016440, + "normalized_name": "harvest health" + }, + { + "appid": 2016460, + "normalized_name": "tales of the shire a the lord of the rings game" + }, + { + "appid": 2016470, + "normalized_name": "against all odds" + }, + { + "appid": 2016510, + "normalized_name": "burning requiem fates" + }, + { + "appid": 2016540, + "normalized_name": "chess pills" + }, + { + "appid": 2016560, + "normalized_name": "oblivion eclipse" + }, + { + "appid": 2016580, + "normalized_name": "deneb across the stars" + }, + { + "appid": 2016590, + "normalized_name": "dark and darker" + }, + { + "appid": 2016650, + "normalized_name": "hot speed" + }, + { + "appid": 2016680, + "normalized_name": "space sergeant survivors" + }, + { + "appid": 2016690, + "normalized_name": "starcore legacy" + }, + { + "appid": 2016820, + "normalized_name": "maelstrom legacy the tesla mystery" + }, + { + "appid": 2016840, + "normalized_name": "al andalus 711 epic history battle game" + }, + { + "appid": 2016900, + "normalized_name": "scree" + }, + { + "appid": 2016960, + "normalized_name": "stream war" + }, + { + "appid": 2016980, + "normalized_name": "highway driving" + }, + { + "appid": 2017000, + "normalized_name": "var paradise lifetime vip" + }, + { + "appid": 2017010, + "normalized_name": "office harasser" + }, + { + "appid": 2017020, + "normalized_name": "cowboy girl" + }, + { + "appid": 2017040, + "normalized_name": "neurosquad slay the horde" + }, + { + "appid": 2017050, + "normalized_name": "colony" + }, + { + "appid": 2017060, + "normalized_name": "para lax" + }, + { + "appid": 2017080, + "normalized_name": "nickelodeon all star brawl 2" + }, + { + "appid": 2017090, + "normalized_name": "moonman" + }, + { + "appid": 2017120, + "normalized_name": "nowhere manor" + }, + { + "appid": 2017130, + "normalized_name": "3d combat zone" + }, + { + "appid": 2017150, + "normalized_name": "aether collector" + }, + { + "appid": 2017160, + "normalized_name": "hot milf 6" + }, + { + "appid": 2017200, + "normalized_name": "leximan" + }, + { + "appid": 2017230, + "normalized_name": "dimensions of mind" + }, + { + "appid": 2017260, + "normalized_name": "a very corporate escape room" + }, + { + "appid": 2017270, + "normalized_name": "pixel samurai" + }, + { + "appid": 2017300, + "normalized_name": "чернь" + }, + { + "appid": 2017330, + "normalized_name": "blocked!" + }, + { + "appid": 2017340, + "normalized_name": "alternate existence" + }, + { + "appid": 2017370, + "normalized_name": "trash horror collection" + }, + { + "appid": 2017380, + "normalized_name": "gomorrah" + }, + { + "appid": 2017460, + "normalized_name": "paperback vol. 2" + }, + { + "appid": 2017480, + "normalized_name": "elengard ascension" + }, + { + "appid": 2017490, + "normalized_name": "hot milf 7" + }, + { + "appid": 2017510, + "normalized_name": "essentures" + }, + { + "appid": 2017520, + "normalized_name": "the longest path" + }, + { + "appid": 2017540, + "normalized_name": "energy collector" + }, + { + "appid": 2017580, + "normalized_name": "pathmaster" + }, + { + "appid": 2017590, + "normalized_name": "三毫子大冒險" + }, + { + "appid": 2017600, + "normalized_name": "鬼人偶/ghost doll" + }, + { + "appid": 2017610, + "normalized_name": "corpus edax" + }, + { + "appid": 2017620, + "normalized_name": "beloved rapture" + }, + { + "appid": 2017630, + "normalized_name": "hero of war" + }, + { + "appid": 2017640, + "normalized_name": "sakura gym girls" + }, + { + "appid": 2017700, + "normalized_name": "aristocunts ii re erection" + }, + { + "appid": 2017730, + "normalized_name": "the chicken game" + }, + { + "appid": 2017790, + "normalized_name": "machine phantasm" + }, + { + "appid": 2017840, + "normalized_name": "kit's quest" + }, + { + "appid": 2017870, + "normalized_name": "regular strategy game" + }, + { + "appid": 2017890, + "normalized_name": "my dream is a lost memory" + }, + { + "appid": 2017900, + "normalized_name": "rock hoppers" + }, + { + "appid": 2017910, + "normalized_name": "paperplane" + }, + { + "appid": 2017920, + "normalized_name": "toy's paradise" + }, + { + "appid": 2017940, + "normalized_name": "pony island 2 panda circus" + }, + { + "appid": 2017950, + "normalized_name": "pact of joy" + }, + { + "appid": 2017980, + "normalized_name": "haunted mansion" + }, + { + "appid": 2018020, + "normalized_name": "winshu" + }, + { + "appid": 2018030, + "normalized_name": "space rescue" + }, + { + "appid": 2018050, + "normalized_name": "magical queen's land" + }, + { + "appid": 2018080, + "normalized_name": "my name is uter" + }, + { + "appid": 2018130, + "normalized_name": "desktopia a desktop village simulator" + }, + { + "appid": 2018140, + "normalized_name": "leen" + }, + { + "appid": 2018190, + "normalized_name": "river raid 3d" + }, + { + "appid": 2018230, + "normalized_name": "femdom wife game zoe" + }, + { + "appid": 2018300, + "normalized_name": "colonisator" + }, + { + "appid": 2018310, + "normalized_name": "dark old sun ii unspace" + }, + { + "appid": 2018320, + "normalized_name": "war tanks" + }, + { + "appid": 2018340, + "normalized_name": "special gulag rescue operation" + }, + { + "appid": 2018350, + "normalized_name": "brain exam with benefits 2" + }, + { + "appid": 2018370, + "normalized_name": "cartridge collection deluxe" + }, + { + "appid": 2018380, + "normalized_name": "neon invaders" + }, + { + "appid": 2018420, + "normalized_name": "shadowsense." + }, + { + "appid": 2018440, + "normalized_name": "tentacles party with nuns" + }, + { + "appid": 2018490, + "normalized_name": "veggie menace" + }, + { + "appid": 2018500, + "normalized_name": "tits okay tits fine milkshake" + }, + { + "appid": 2018520, + "normalized_name": "golden axe idol 金斧偶像 (全年齡向)" + }, + { + "appid": 2018530, + "normalized_name": "fanatic zeal" + }, + { + "appid": 2018560, + "normalized_name": "weeping falls massacre" + }, + { + "appid": 2018610, + "normalized_name": "violet wisteria" + }, + { + "appid": 2018640, + "normalized_name": "我的猫娘恋人 my cat girl lover" + }, + { + "appid": 2018700, + "normalized_name": "medieval alchemist" + }, + { + "appid": 2018730, + "normalized_name": "journey to the pumpkin planet" + }, + { + "appid": 2018740, + "normalized_name": "metados" + }, + { + "appid": 2018790, + "normalized_name": "neuropathic" + }, + { + "appid": 2018810, + "normalized_name": "mello haunted house" + }, + { + "appid": 2018820, + "normalized_name": "elvera" + }, + { + "appid": 2018830, + "normalized_name": "twin cores" + }, + { + "appid": 2018840, + "normalized_name": "unilogue" + }, + { + "appid": 2018850, + "normalized_name": "fire truck simulator" + }, + { + "appid": 2018870, + "normalized_name": "the summon" + }, + { + "appid": 2018900, + "normalized_name": "big flying asteroid" + }, + { + "appid": 2018930, + "normalized_name": "sakura gym girls prologue" + }, + { + "appid": 2018960, + "normalized_name": "neolithic dawn" + }, + { + "appid": 2019010, + "normalized_name": "flesh everest" + }, + { + "appid": 2019020, + "normalized_name": "alight in the dark" + }, + { + "appid": 2019050, + "normalized_name": "privateer escape" + }, + { + "appid": 2019100, + "normalized_name": "the horror of oz" + }, + { + "appid": 2019110, + "normalized_name": "starship" + }, + { + "appid": 2019140, + "normalized_name": "shadow war" + }, + { + "appid": 2019200, + "normalized_name": "rooktko's gemcore" + }, + { + "appid": 2019220, + "normalized_name": "try me" + }, + { + "appid": 2019240, + "normalized_name": "shackles of ellswyn" + }, + { + "appid": 2019260, + "normalized_name": "paradise cleaning me and my doctor's life in the hospital" + }, + { + "appid": 2019270, + "normalized_name": "shining jump jump" + }, + { + "appid": 2019290, + "normalized_name": "grand throw auto" + }, + { + "appid": 2019300, + "normalized_name": "dokimon quest" + }, + { + "appid": 2019340, + "normalized_name": "the cecil the journey begins" + }, + { + "appid": 2019360, + "normalized_name": "world cruise story" + }, + { + "appid": 2019370, + "normalized_name": "oh! edo towns" + }, + { + "appid": 2019380, + "normalized_name": "pocket harvest" + }, + { + "appid": 2019470, + "normalized_name": "bricks breaker | uncatchable homers master" + }, + { + "appid": 2019570, + "normalized_name": "cyber city clash" + }, + { + "appid": 2019620, + "normalized_name": "geronimo" + }, + { + "appid": 2019630, + "normalized_name": "storekeeper revenge" + }, + { + "appid": 2019640, + "normalized_name": "solitude underwater" + }, + { + "appid": 2019650, + "normalized_name": "the snow fable mystery of the flame" + }, + { + "appid": 2019670, + "normalized_name": "solo war medieval" + }, + { + "appid": 2019680, + "normalized_name": "lewd gym" + }, + { + "appid": 2019700, + "normalized_name": "new citizen alpha" + }, + { + "appid": 2019710, + "normalized_name": "gift from the gods" + }, + { + "appid": 2019760, + "normalized_name": "necrophosis" + }, + { + "appid": 2019770, + "normalized_name": "emi's country store and farm" + }, + { + "appid": 2019810, + "normalized_name": "boxes lost fragments" + }, + { + "appid": 2019830, + "normalized_name": "the backroom lost and found" + }, + { + "appid": 2019840, + "normalized_name": "atama" + }, + { + "appid": 2019860, + "normalized_name": "enjaulados" + }, + { + "appid": 2019920, + "normalized_name": "food factory" + }, + { + "appid": 2019950, + "normalized_name": "wheels of duty" + }, + { + "appid": 2019980, + "normalized_name": "mist guard" + }, + { + "appid": 2019990, + "normalized_name": "yars recharged" + }, + { + "appid": 2020030, + "normalized_name": "tails noir preludes" + }, + { + "appid": 2020040, + "normalized_name": "wizabeasts" + }, + { + "appid": 2020080, + "normalized_name": "chess dungeons" + }, + { + "appid": 2020090, + "normalized_name": "the space eating croc" + }, + { + "appid": 2020130, + "normalized_name": "top down zombies" + }, + { + "appid": 2020180, + "normalized_name": "lost life origins [act i act ii]" + }, + { + "appid": 2020210, + "normalized_name": "ye olde cribbage club" + }, + { + "appid": 2020270, + "normalized_name": "memory puzzle futanari mistress" + }, + { + "appid": 2020330, + "normalized_name": "rockslide" + }, + { + "appid": 2020340, + "normalized_name": "nitro back" + }, + { + "appid": 2020380, + "normalized_name": "astrocat skylar´s memories" + }, + { + "appid": 2020400, + "normalized_name": "rage rabbit" + }, + { + "appid": 2020420, + "normalized_name": "astro ike" + }, + { + "appid": 2020430, + "normalized_name": "farm for a wife" + }, + { + "appid": 2020460, + "normalized_name": "bring it on!" + }, + { + "appid": 2020480, + "normalized_name": "魔導聖戰 風色幻想" + }, + { + "appid": 2020490, + "normalized_name": "風色幻想2 alive" + }, + { + "appid": 2020500, + "normalized_name": "風色幻想3 罪與罰的鎮魂歌" + }, + { + "appid": 2020510, + "normalized_name": "風色幻想4 聖戰的終焉" + }, + { + "appid": 2020520, + "normalized_name": "風色幻想5 赤月戰爭" + }, + { + "appid": 2020530, + "normalized_name": "風色幻想6 冒險奏鳴" + }, + { + "appid": 2020540, + "normalized_name": "風色幻想sp 封神之刻" + }, + { + "appid": 2020550, + "normalized_name": "風色幻想xx 交錯的軌跡" + }, + { + "appid": 2020570, + "normalized_name": "charlie and friends" + }, + { + "appid": 2020590, + "normalized_name": "dragon fury" + }, + { + "appid": 2020630, + "normalized_name": "廃村巡り | haisonmeguri" + }, + { + "appid": 2020670, + "normalized_name": "starmaker vr" + }, + { + "appid": 2020710, + "normalized_name": "havendock" + }, + { + "appid": 2020750, + "normalized_name": "where are my potatoes?" + }, + { + "appid": 2020770, + "normalized_name": "xeno last stand" + }, + { + "appid": 2020790, + "normalized_name": "shadows of taumiel" + }, + { + "appid": 2020850, + "normalized_name": "asteroid" + }, + { + "appid": 2020860, + "normalized_name": "rush rally 3" + }, + { + "appid": 2020920, + "normalized_name": "leapgate" + }, + { + "appid": 2020930, + "normalized_name": "cat lovescapes" + }, + { + "appid": 2020950, + "normalized_name": "immortelle" + }, + { + "appid": 2021040, + "normalized_name": "shards of nogard" + }, + { + "appid": 2021050, + "normalized_name": "board" + }, + { + "appid": 2021070, + "normalized_name": "xball" + }, + { + "appid": 2021080, + "normalized_name": "godland the fire quest 2" + }, + { + "appid": 2021090, + "normalized_name": "konzerthaus berlin vr" + }, + { + "appid": 2021130, + "normalized_name": "demolish & build 3 excavator playground" + }, + { + "appid": 2021170, + "normalized_name": "the grim nightmare of nibras" + }, + { + "appid": 2021190, + "normalized_name": "pimania" + }, + { + "appid": 2021210, + "normalized_name": "dragon quest treasures" + }, + { + "appid": 2021220, + "normalized_name": "white paper" + }, + { + "appid": 2021230, + "normalized_name": "ashen knights one passage" + }, + { + "appid": 2021280, + "normalized_name": "inside my mind 2" + }, + { + "appid": 2021300, + "normalized_name": "white the hero's return" + }, + { + "appid": 2021390, + "normalized_name": "bat to bed" + }, + { + "appid": 2021410, + "normalized_name": "make love not war" + }, + { + "appid": 2021520, + "normalized_name": "two hot chicks an erotica porn space orgy!" + }, + { + "appid": 2021530, + "normalized_name": "gor3" + }, + { + "appid": 2021540, + "normalized_name": "defenders of asteria" + }, + { + "appid": 2021570, + "normalized_name": "war in the gulf" + }, + { + "appid": 2021600, + "normalized_name": "game over a musical rpg??" + }, + { + "appid": 2021610, + "normalized_name": "alla prima" + }, + { + "appid": 2021620, + "normalized_name": "oden" + }, + { + "appid": 2021690, + "normalized_name": "sakura alien 2" + }, + { + "appid": 2021710, + "normalized_name": "sakura succubus 7" + }, + { + "appid": 2021840, + "normalized_name": "glyph bound kotodama" + }, + { + "appid": 2021880, + "normalized_name": "ara history untold" + }, + { + "appid": 2021910, + "normalized_name": "fps chess" + }, + { + "appid": 2021950, + "normalized_name": "scarpone scamps" + }, + { + "appid": 2022000, + "normalized_name": "ethernal" + }, + { + "appid": 2022020, + "normalized_name": "hidden desert war top down 3d" + }, + { + "appid": 2022030, + "normalized_name": "深渊看守者(watcher of the abyss)" + }, + { + "appid": 2022040, + "normalized_name": "sky rider" + }, + { + "appid": 2022060, + "normalized_name": "life after death" + }, + { + "appid": 2022070, + "normalized_name": "blade of ten" + }, + { + "appid": 2022090, + "normalized_name": "heatstroke" + }, + { + "appid": 2022120, + "normalized_name": "piecewars" + }, + { + "appid": 2022140, + "normalized_name": "rev to vertex" + }, + { + "appid": 2022180, + "normalized_name": "miss neko 3" + }, + { + "appid": 2022190, + "normalized_name": "tower of darkness" + }, + { + "appid": 2022220, + "normalized_name": "sexy gym" + }, + { + "appid": 2022230, + "normalized_name": "yomi 2" + }, + { + "appid": 2022270, + "normalized_name": "bakso simulator" + }, + { + "appid": 2022290, + "normalized_name": "amairo chocolate 2" + }, + { + "appid": 2022330, + "normalized_name": "the riflemen" + }, + { + "appid": 2022360, + "normalized_name": "heal & hurt" + }, + { + "appid": 2022380, + "normalized_name": "房间的秘密" + }, + { + "appid": 2022440, + "normalized_name": "lua" + }, + { + "appid": 2022470, + "normalized_name": "mythargia" + }, + { + "appid": 2022510, + "normalized_name": "turbo light rush" + }, + { + "appid": 2022610, + "normalized_name": "crete" + }, + { + "appid": 2022620, + "normalized_name": "private dick lipstick & lies" + }, + { + "appid": 2022640, + "normalized_name": "xtal" + }, + { + "appid": 2022650, + "normalized_name": "entry" + }, + { + "appid": 2022670, + "normalized_name": "sonic superstars" + }, + { + "appid": 2022680, + "normalized_name": "niravasi" + }, + { + "appid": 2022700, + "normalized_name": "serania path of the scion" + }, + { + "appid": 2022740, + "normalized_name": "my landlord is a futanari" + }, + { + "appid": 2022780, + "normalized_name": "flashout 3d enhanced" + }, + { + "appid": 2022850, + "normalized_name": "garlant my story" + }, + { + "appid": 2022880, + "normalized_name": "truxton" + }, + { + "appid": 2022890, + "normalized_name": "diode arena" + }, + { + "appid": 2022910, + "normalized_name": "twin cobra" + }, + { + "appid": 2022920, + "normalized_name": "out zone" + }, + { + "appid": 2022930, + "normalized_name": "warcana" + }, + { + "appid": 2022970, + "normalized_name": "tiger heli" + }, + { + "appid": 2022980, + "normalized_name": "slap fight" + }, + { + "appid": 2022990, + "normalized_name": "flying shark" + }, + { + "appid": 2023000, + "normalized_name": "batsugun" + }, + { + "appid": 2023010, + "normalized_name": "truxton 2" + }, + { + "appid": 2023020, + "normalized_name": "twin hawk" + }, + { + "appid": 2023050, + "normalized_name": "lighthouse keeper" + }, + { + "appid": 2023070, + "normalized_name": "mine seeker" + }, + { + "appid": 2023150, + "normalized_name": "the mangust" + }, + { + "appid": 2023160, + "normalized_name": "monster showdown prologue" + }, + { + "appid": 2023170, + "normalized_name": "vimana" + }, + { + "appid": 2023180, + "normalized_name": "fixeight" + }, + { + "appid": 2023200, + "normalized_name": "dogyuun" + }, + { + "appid": 2023210, + "normalized_name": "meteorites 3d" + }, + { + "appid": 2023250, + "normalized_name": "redaxium 2" + }, + { + "appid": 2023310, + "normalized_name": "unbelievaboom!" + }, + { + "appid": 2023330, + "normalized_name": "fright night" + }, + { + "appid": 2023350, + "normalized_name": "non fingo vr" + }, + { + "appid": 2023360, + "normalized_name": "the last case of benedict fox" + }, + { + "appid": 2023380, + "normalized_name": "the wasted knight" + }, + { + "appid": 2023420, + "normalized_name": "operation siege" + }, + { + "appid": 2023430, + "normalized_name": "hermea" + }, + { + "appid": 2023440, + "normalized_name": "jettatura" + }, + { + "appid": 2023500, + "normalized_name": "deck of life no turns individual card permadeath" + }, + { + "appid": 2023530, + "normalized_name": "color story pixa's quest" + }, + { + "appid": 2023540, + "normalized_name": "tapes of fear smile" + }, + { + "appid": 2023610, + "normalized_name": "terror brain night out" + }, + { + "appid": 2023630, + "normalized_name": "hidden battle top down 3d" + }, + { + "appid": 2023640, + "normalized_name": "hidden industries top down 3d" + }, + { + "appid": 2023670, + "normalized_name": "incoherence" + }, + { + "appid": 2023680, + "normalized_name": "aturd abuser escape" + }, + { + "appid": 2023790, + "normalized_name": "wordmaster" + }, + { + "appid": 2023800, + "normalized_name": "the blight" + }, + { + "appid": 2023810, + "normalized_name": "island idle rpg" + }, + { + "appid": 2023880, + "normalized_name": "the tale of onogoro" + }, + { + "appid": 2023910, + "normalized_name": "light maze" + }, + { + "appid": 2023920, + "normalized_name": "dyschronia chronos alternate dual" + }, + { + "appid": 2023960, + "normalized_name": "快乐小家 home sick" + }, + { + "appid": 2023970, + "normalized_name": "light them up" + }, + { + "appid": 2023990, + "normalized_name": "triopticon三昧" + }, + { + "appid": 2024010, + "normalized_name": "chasing halo iron storm" + }, + { + "appid": 2024030, + "normalized_name": "浮世渡り" + }, + { + "appid": 2024070, + "normalized_name": "party quiz" + }, + { + "appid": 2024080, + "normalized_name": "hit and boom" + }, + { + "appid": 2024210, + "normalized_name": "witness of the night" + }, + { + "appid": 2024230, + "normalized_name": "project lazarus" + }, + { + "appid": 2024300, + "normalized_name": "hide alone" + }, + { + "appid": 2024370, + "normalized_name": "star boy and the captain of outer space" + }, + { + "appid": 2024380, + "normalized_name": "the fallen god's chronicles dmet prison" + }, + { + "appid": 2024390, + "normalized_name": "mato anomalies" + }, + { + "appid": 2024400, + "normalized_name": "rygrad" + }, + { + "appid": 2024790, + "normalized_name": "the creature escape room" + }, + { + "appid": 2024810, + "normalized_name": "epic party quest" + }, + { + "appid": 2024820, + "normalized_name": "deep alchemy dungeon" + }, + { + "appid": 2024840, + "normalized_name": "push the blocks" + }, + { + "appid": 2024860, + "normalized_name": "barista take away" + }, + { + "appid": 2024890, + "normalized_name": "reincarnated in a stone in a different world i want to protect the girl so i will be strong" + }, + { + "appid": 2024920, + "normalized_name": "ghost of viyk" + }, + { + "appid": 2024950, + "normalized_name": "rally 9000" + }, + { + "appid": 2024990, + "normalized_name": "pedigree tactics" + }, + { + "appid": 2025000, + "normalized_name": "trippy tavern" + }, + { + "appid": 2025050, + "normalized_name": "fufufu" + }, + { + "appid": 2025060, + "normalized_name": "futanari sex the gym" + }, + { + "appid": 2025080, + "normalized_name": "jigsaw puzzle bdsm room" + }, + { + "appid": 2025210, + "normalized_name": "egg hop" + }, + { + "appid": 2025250, + "normalized_name": "magnetic projectiles" + }, + { + "appid": 2025280, + "normalized_name": "3d joys" + }, + { + "appid": 2025310, + "normalized_name": "sigh of the abyss" + }, + { + "appid": 2025320, + "normalized_name": "estencel" + }, + { + "appid": 2025330, + "normalized_name": "race day rampage streamer" + }, + { + "appid": 2025340, + "normalized_name": "galxagar" + }, + { + "appid": 2025380, + "normalized_name": "fantasy hentai quest" + }, + { + "appid": 2025420, + "normalized_name": "meet cute beach 🐾" + }, + { + "appid": 2025440, + "normalized_name": "project eaglebeak" + }, + { + "appid": 2025490, + "normalized_name": "witch trials" + }, + { + "appid": 2025520, + "normalized_name": "jump the gun" + }, + { + "appid": 2025530, + "normalized_name": "simpletoons adventure" + }, + { + "appid": 2025550, + "normalized_name": "hacker life simulator" + }, + { + "appid": 2025610, + "normalized_name": "once again" + }, + { + "appid": 2025650, + "normalized_name": "farewell sen" + }, + { + "appid": 2025660, + "normalized_name": "trust no bunny" + }, + { + "appid": 2025670, + "normalized_name": "railgun x tripod" + }, + { + "appid": 2025680, + "normalized_name": "soccer but different" + }, + { + "appid": 2025700, + "normalized_name": "fragile feelings" + }, + { + "appid": 2025710, + "normalized_name": "koatl el defensor los túneles perdidos" + }, + { + "appid": 2025720, + "normalized_name": "all idleness and ephemera" + }, + { + "appid": 2025750, + "normalized_name": "the shadow government simulator prologue" + }, + { + "appid": 2025760, + "normalized_name": "android simulator prologue" + }, + { + "appid": 2025770, + "normalized_name": "let me out" + }, + { + "appid": 2025780, + "normalized_name": "山海天下:熊猫战纪" + }, + { + "appid": 2025800, + "normalized_name": "enzio ware" + }, + { + "appid": 2025810, + "normalized_name": "lavrynthos" + }, + { + "appid": 2025820, + "normalized_name": "taolu" + }, + { + "appid": 2025840, + "normalized_name": "gunvein" + }, + { + "appid": 2025870, + "normalized_name": "kaisa resurrection" + }, + { + "appid": 2025910, + "normalized_name": "about a mouse" + }, + { + "appid": 2025930, + "normalized_name": "robot revolt" + }, + { + "appid": 2025960, + "normalized_name": "海岛守卫 island guards" + }, + { + "appid": 2025970, + "normalized_name": "bell kingdom" + }, + { + "appid": 2026000, + "normalized_name": "our adventurer guild" + }, + { + "appid": 2026020, + "normalized_name": "the alchemist" + }, + { + "appid": 2026030, + "normalized_name": "twenty in total" + }, + { + "appid": 2026040, + "normalized_name": "dig dig boom" + }, + { + "appid": 2026060, + "normalized_name": "aviation manager" + }, + { + "appid": 2026070, + "normalized_name": "tank commander battlefield" + }, + { + "appid": 2026080, + "normalized_name": "shukuchi ninja" + }, + { + "appid": 2026140, + "normalized_name": "telos pragmaton" + }, + { + "appid": 2026150, + "normalized_name": "fire story" + }, + { + "appid": 2026170, + "normalized_name": "l racers" + }, + { + "appid": 2026230, + "normalized_name": "great gun gauntlet" + }, + { + "appid": 2026250, + "normalized_name": "conquistador" + }, + { + "appid": 2026260, + "normalized_name": "ocnus theory" + }, + { + "appid": 2026270, + "normalized_name": "super virus defense" + }, + { + "appid": 2026280, + "normalized_name": "the faction" + }, + { + "appid": 2026290, + "normalized_name": "military attack" + }, + { + "appid": 2026300, + "normalized_name": "anvillage" + }, + { + "appid": 2026310, + "normalized_name": "tobi topples tyranny" + }, + { + "appid": 2026330, + "normalized_name": "契約の浮遊船失った記憶と空の遺跡" + }, + { + "appid": 2026340, + "normalized_name": "unichrome a 1 bit unicorn adventure" + }, + { + "appid": 2026370, + "normalized_name": "体育館の天井に挟まったマッチョを助けるゲーム" + }, + { + "appid": 2026430, + "normalized_name": "bionic traveler" + }, + { + "appid": 2026440, + "normalized_name": "milf bar" + }, + { + "appid": 2026450, + "normalized_name": "stunt derby" + }, + { + "appid": 2026460, + "normalized_name": "wreck the fed" + }, + { + "appid": 2026470, + "normalized_name": "cyber blades demo" + }, + { + "appid": 2026500, + "normalized_name": "left 2 dating" + }, + { + "appid": 2026510, + "normalized_name": "invasive" + }, + { + "appid": 2026520, + "normalized_name": "东方异乡录 ~the apocryphal gensoukyou" + }, + { + "appid": 2026540, + "normalized_name": "neko cosmo police" + }, + { + "appid": 2026580, + "normalized_name": "bolu" + }, + { + "appid": 2026590, + "normalized_name": "grindshift" + }, + { + "appid": 2026630, + "normalized_name": "h.i.v.c.a. human intelligence vs computer algorithm" + }, + { + "appid": 2026690, + "normalized_name": "a toad well travelled" + }, + { + "appid": 2026720, + "normalized_name": "dormiveglia" + }, + { + "appid": 2026730, + "normalized_name": "hollowmoor" + }, + { + "appid": 2026750, + "normalized_name": "astra protocol 2" + }, + { + "appid": 2026760, + "normalized_name": "dreamward" + }, + { + "appid": 2026790, + "normalized_name": "boulder island" + }, + { + "appid": 2026820, + "normalized_name": "die in the dungeon" + }, + { + "appid": 2026870, + "normalized_name": "night at the gates of hell" + }, + { + "appid": 2026880, + "normalized_name": "deadly night" + }, + { + "appid": 2026940, + "normalized_name": "happy trap house" + }, + { + "appid": 2026980, + "normalized_name": "project rbg" + }, + { + "appid": 2026990, + "normalized_name": "tvö" + }, + { + "appid": 2027000, + "normalized_name": "i commissioned some bees 2" + }, + { + "appid": 2027030, + "normalized_name": "power drill massacre" + }, + { + "appid": 2027040, + "normalized_name": "woe" + }, + { + "appid": 2027050, + "normalized_name": "shiprect" + }, + { + "appid": 2027090, + "normalized_name": "limit's escape room games 2" + }, + { + "appid": 2027130, + "normalized_name": "protect my cheese" + }, + { + "appid": 2027170, + "normalized_name": "simba the cat" + }, + { + "appid": 2027180, + "normalized_name": "silver wire" + }, + { + "appid": 2027200, + "normalized_name": "become a pig" + }, + { + "appid": 2027220, + "normalized_name": "perfect jump" + }, + { + "appid": 2027260, + "normalized_name": "chamrosh" + }, + { + "appid": 2027280, + "normalized_name": "the haunted library" + }, + { + "appid": 2027290, + "normalized_name": "stunts contest police car" + }, + { + "appid": 2027300, + "normalized_name": "ruuuuuun" + }, + { + "appid": 2027310, + "normalized_name": "hanako in the abandoned school" + }, + { + "appid": 2027330, + "normalized_name": "gorebox" + }, + { + "appid": 2027350, + "normalized_name": "wanderer" + }, + { + "appid": 2027360, + "normalized_name": "after the inferno" + }, + { + "appid": 2027370, + "normalized_name": "ball torture" + }, + { + "appid": 2027380, + "normalized_name": "lost in the open" + }, + { + "appid": 2027390, + "normalized_name": "sexy sharks" + }, + { + "appid": 2027400, + "normalized_name": "project name" + }, + { + "appid": 2027420, + "normalized_name": "blastonier" + }, + { + "appid": 2027440, + "normalized_name": "피랍 일지 그 남자로부터의 탈출" + }, + { + "appid": 2027470, + "normalized_name": "鬼魂街" + }, + { + "appid": 2027490, + "normalized_name": "paramnesia" + }, + { + "appid": 2027510, + "normalized_name": "monster crawl" + }, + { + "appid": 2027530, + "normalized_name": "non binary" + }, + { + "appid": 2027550, + "normalized_name": "my therapy" + }, + { + "appid": 2027560, + "normalized_name": "valkyrie champions" + }, + { + "appid": 2027570, + "normalized_name": "zombies invasion" + }, + { + "appid": 2027580, + "normalized_name": "hellvivors" + }, + { + "appid": 2027590, + "normalized_name": "lost paws" + }, + { + "appid": 2027600, + "normalized_name": "armored battalion" + }, + { + "appid": 2027760, + "normalized_name": "bridgebourn" + }, + { + "appid": 2027810, + "normalized_name": "dracofighter" + }, + { + "appid": 2027820, + "normalized_name": "art girl 2" + }, + { + "appid": 2027830, + "normalized_name": "buddha go" + }, + { + "appid": 2027850, + "normalized_name": "recnaviclub" + }, + { + "appid": 2027860, + "normalized_name": "search 4 bigfoot" + }, + { + "appid": 2027920, + "normalized_name": "richman clasic" + }, + { + "appid": 2027960, + "normalized_name": "concealed" + }, + { + "appid": 2027970, + "normalized_name": "sole saga" + }, + { + "appid": 2028270, + "normalized_name": "super vecter elite turbo" + }, + { + "appid": 2050040, + "normalized_name": "gigantropolis 🤖" + }, + { + "appid": 2050050, + "normalized_name": "rift loopers" + }, + { + "appid": 2050070, + "normalized_name": "rusty seas" + }, + { + "appid": 2050080, + "normalized_name": "futanari sex naughty massage" + }, + { + "appid": 2050120, + "normalized_name": "mission driver" + }, + { + "appid": 2050140, + "normalized_name": "cbs escape from the mall 3d" + }, + { + "appid": 2050150, + "normalized_name": "siphonopolis" + }, + { + "appid": 2050200, + "normalized_name": "throwdown boxing 2" + }, + { + "appid": 2050210, + "normalized_name": "platboarder" + }, + { + "appid": 2050260, + "normalized_name": "balls of steel" + }, + { + "appid": 2050310, + "normalized_name": "outwave retro chase" + }, + { + "appid": 2050370, + "normalized_name": "rental commander" + }, + { + "appid": 2050380, + "normalized_name": "bolt bot screwy viruses" + }, + { + "appid": 2050400, + "normalized_name": "3d puzzle japan" + }, + { + "appid": 2050420, + "normalized_name": "ark 2" + }, + { + "appid": 2050430, + "normalized_name": "starting life in another world naked" + }, + { + "appid": 2050440, + "normalized_name": "guilded" + }, + { + "appid": 2050450, + "normalized_name": "the madman" + }, + { + "appid": 2050460, + "normalized_name": "hordound" + }, + { + "appid": 2050470, + "normalized_name": "crash forts 2" + }, + { + "appid": 2050480, + "normalized_name": "totems 2" + }, + { + "appid": 2050490, + "normalized_name": "a loney" + }, + { + "appid": 2050510, + "normalized_name": "东方王朝 丝路保卫战" + }, + { + "appid": 2050520, + "normalized_name": "avici 无间" + }, + { + "appid": 2050530, + "normalized_name": "age of solitaire build civilization" + }, + { + "appid": 2050540, + "normalized_name": "pocket clothier" + }, + { + "appid": 2050560, + "normalized_name": "远征契约" + }, + { + "appid": 2050590, + "normalized_name": "发糖模拟器" + }, + { + "appid": 2050600, + "normalized_name": "crimson standard" + }, + { + "appid": 2050650, + "normalized_name": "resident evil 4" + }, + { + "appid": 2050680, + "normalized_name": "warbox sandbox" + }, + { + "appid": 2050710, + "normalized_name": "narin the orange room" + }, + { + "appid": 2050720, + "normalized_name": "hidden sin 8" + }, + { + "appid": 2050730, + "normalized_name": "copcore" + }, + { + "appid": 2050740, + "normalized_name": "hidden objects with edgar allan poe" + }, + { + "appid": 2050770, + "normalized_name": "void rush" + }, + { + "appid": 2050800, + "normalized_name": "let them come onslaught" + }, + { + "appid": 2050820, + "normalized_name": "sengoku princess ~ 天下統一は姫武将と共に ~" + }, + { + "appid": 2050840, + "normalized_name": "ワタシのココロは綺麗ですか? am i kind hearted ?" + }, + { + "appid": 2050890, + "normalized_name": "zombwave" + }, + { + "appid": 2050910, + "normalized_name": "fairy elements" + }, + { + "appid": 2050920, + "normalized_name": "scranny" + }, + { + "appid": 2050960, + "normalized_name": "the shadelight" + }, + { + "appid": 2050980, + "normalized_name": "tim climpy's warfair" + }, + { + "appid": 2051010, + "normalized_name": "プロ野球スピリッツ2024 2025" + }, + { + "appid": 2051020, + "normalized_name": "magneko" + }, + { + "appid": 2051040, + "normalized_name": "ultrasclash v" + }, + { + "appid": 2051050, + "normalized_name": "damoria" + }, + { + "appid": 2051060, + "normalized_name": "spaceinvasion" + }, + { + "appid": 2051080, + "normalized_name": "dream girlfriend doomer girl" + }, + { + "appid": 2051100, + "normalized_name": "alpha nighthawk" + }, + { + "appid": 2051110, + "normalized_name": "beta sixdouze" + }, + { + "appid": 2051120, + "normalized_name": "hot wheels unleashed 2 turbocharged" + }, + { + "appid": 2051130, + "normalized_name": "ghostland yard" + }, + { + "appid": 2051170, + "normalized_name": "out in space" + }, + { + "appid": 2051210, + "normalized_name": "crow's nest" + }, + { + "appid": 2051220, + "normalized_name": "crystalkeepers" + }, + { + "appid": 2051290, + "normalized_name": "codename apocalypse" + }, + { + "appid": 2051360, + "normalized_name": "skip lake 2" + }, + { + "appid": 2051420, + "normalized_name": "beltex" + }, + { + "appid": 2051440, + "normalized_name": "guardener" + }, + { + "appid": 2051450, + "normalized_name": "don't die mr. robot! dx" + }, + { + "appid": 2051500, + "normalized_name": "soak & splash" + }, + { + "appid": 2051530, + "normalized_name": "quick tower defence" + }, + { + "appid": 2051540, + "normalized_name": "beat blitz" + }, + { + "appid": 2051590, + "normalized_name": "alien xenoblaster" + }, + { + "appid": 2051620, + "normalized_name": "enlisted" + }, + { + "appid": 2051630, + "normalized_name": "lilith" + }, + { + "appid": 2051640, + "normalized_name": "the merchant's guide to the kingdom" + }, + { + "appid": 2051650, + "normalized_name": "play with me" + }, + { + "appid": 2051750, + "normalized_name": "project romboid" + }, + { + "appid": 2051770, + "normalized_name": "alabama bones adventures" + }, + { + "appid": 2051820, + "normalized_name": "yakuza undisputed" + }, + { + "appid": 2051840, + "normalized_name": "jigsaw pussy hardcore explicit sex" + }, + { + "appid": 2051870, + "normalized_name": "shadow survival" + }, + { + "appid": 2051880, + "normalized_name": "memory puzzle futanari doctor" + }, + { + "appid": 2051890, + "normalized_name": "game cafe" + }, + { + "appid": 2051990, + "normalized_name": "midnight zone" + }, + { + "appid": 2052000, + "normalized_name": "the last mission" + }, + { + "appid": 2052040, + "normalized_name": "golden lap" + }, + { + "appid": 2052080, + "normalized_name": "melia's witch test" + }, + { + "appid": 2052110, + "normalized_name": "runaway farm who killed clara haller" + }, + { + "appid": 2052140, + "normalized_name": "an iou" + }, + { + "appid": 2052150, + "normalized_name": "a broken halo" + }, + { + "appid": 2052160, + "normalized_name": "don't die collect loot" + }, + { + "appid": 2052170, + "normalized_name": "in to the 029" + }, + { + "appid": 2052200, + "normalized_name": "mea的财布收集茶会" + }, + { + "appid": 2052250, + "normalized_name": "title pending!" + }, + { + "appid": 2052270, + "normalized_name": "ai war" + }, + { + "appid": 2052290, + "normalized_name": "曦lost girl" + }, + { + "appid": 2052300, + "normalized_name": "glaciered" + }, + { + "appid": 2052380, + "normalized_name": "3d massage" + }, + { + "appid": 2052410, + "normalized_name": "witch on the holy night" + }, + { + "appid": 2052460, + "normalized_name": "enf novels cold night" + }, + { + "appid": 2052510, + "normalized_name": "the magistrate" + }, + { + "appid": 2052540, + "normalized_name": "tck the cursed knight" + }, + { + "appid": 2052640, + "normalized_name": "anomalous zone ███ 异常区域███" + }, + { + "appid": 2052650, + "normalized_name": "sword & shield simulator" + }, + { + "appid": 2052660, + "normalized_name": "gorgon's quest" + }, + { + "appid": 2052680, + "normalized_name": "colorful recolor" + }, + { + "appid": 2052690, + "normalized_name": "dungeon rummage another isekai?!" + }, + { + "appid": 2052710, + "normalized_name": "hello again" + }, + { + "appid": 2052730, + "normalized_name": "i'm prop" + }, + { + "appid": 2052760, + "normalized_name": "house builder vr" + }, + { + "appid": 2052770, + "normalized_name": "aquarist vr" + }, + { + "appid": 2052780, + "normalized_name": "painter simulator" + }, + { + "appid": 2052790, + "normalized_name": "gardener master of trees and flowers" + }, + { + "appid": 2052920, + "normalized_name": "exit from director's cut" + }, + { + "appid": 2052940, + "normalized_name": "albert.data slowly fading into data" + }, + { + "appid": 2052950, + "normalized_name": "停电了interruption" + }, + { + "appid": 2052970, + "normalized_name": "striden" + }, + { + "appid": 2052990, + "normalized_name": "my lovely empress" + }, + { + "appid": 2053030, + "normalized_name": "异界见闻录" + }, + { + "appid": 2053040, + "normalized_name": "castrum novum vr life in a roman colony" + }, + { + "appid": 2053050, + "normalized_name": "nightly maintenance" + }, + { + "appid": 2053060, + "normalized_name": "travel the words" + }, + { + "appid": 2053080, + "normalized_name": "opaloid kingdom" + }, + { + "appid": 2053100, + "normalized_name": "operation forge the deep" + }, + { + "appid": 2053110, + "normalized_name": "bubble wars" + }, + { + "appid": 2053200, + "normalized_name": "magic and elements" + }, + { + "appid": 2053210, + "normalized_name": "super hentai racers" + }, + { + "appid": 2053220, + "normalized_name": "elves fantasy hentai puzzle" + }, + { + "appid": 2053250, + "normalized_name": "hellway" + }, + { + "appid": 2053280, + "normalized_name": "antarctic adventure" + }, + { + "appid": 2053320, + "normalized_name": "vr porn hentai teachers" + }, + { + "appid": 2053360, + "normalized_name": "putrid shot ultra" + }, + { + "appid": 2053370, + "normalized_name": "chrono weaver" + }, + { + "appid": 2053450, + "normalized_name": "the western rooms" + }, + { + "appid": 2053580, + "normalized_name": "nonozle" + }, + { + "appid": 2053590, + "normalized_name": "nice disc the last hot blood" + }, + { + "appid": 2053600, + "normalized_name": "挑战不死之王" + }, + { + "appid": 2053650, + "normalized_name": "tropi" + }, + { + "appid": 2053750, + "normalized_name": "你与选择 you and choice" + }, + { + "appid": 2053760, + "normalized_name": "ホーンテッド・ガールズ" + }, + { + "appid": 2053770, + "normalized_name": "beat slug hyperway" + }, + { + "appid": 2053890, + "normalized_name": "冥界崛起" + }, + { + "appid": 2053910, + "normalized_name": "isopod a webbed spin off" + }, + { + "appid": 2053920, + "normalized_name": "撕逼豆派对" + }, + { + "appid": 2053940, + "normalized_name": "與經紀人戀愛是絕對禁止2" + }, + { + "appid": 2053950, + "normalized_name": "言++ wordsplus" + }, + { + "appid": 2053990, + "normalized_name": "the monster under your skin" + }, + { + "appid": 2054000, + "normalized_name": "presentable liberty remake" + }, + { + "appid": 2054010, + "normalized_name": "命运对决" + }, + { + "appid": 2054020, + "normalized_name": "light of veilendor" + }, + { + "appid": 2054050, + "normalized_name": "magic vs zombies" + }, + { + "appid": 2054060, + "normalized_name": "徹夜報告書 | midnight report" + }, + { + "appid": 2054100, + "normalized_name": "chess vr multiverse journey" + }, + { + "appid": 2054140, + "normalized_name": "checkers vr multiverse journey" + }, + { + "appid": 2054150, + "normalized_name": "tower defender vr last adventure" + }, + { + "appid": 2054180, + "normalized_name": "konkord" + }, + { + "appid": 2054200, + "normalized_name": "elektrosoul" + }, + { + "appid": 2054220, + "normalized_name": "wetory" + }, + { + "appid": 2054230, + "normalized_name": "once upon a time in morocco" + }, + { + "appid": 2054270, + "normalized_name": "outer space survival" + }, + { + "appid": 2054280, + "normalized_name": "rat chef" + }, + { + "appid": 2054300, + "normalized_name": "futr8" + }, + { + "appid": 2054310, + "normalized_name": "nova antarctica" + }, + { + "appid": 2054330, + "normalized_name": "el minero" + }, + { + "appid": 2054340, + "normalized_name": "witch story" + }, + { + "appid": 2054380, + "normalized_name": "sonokuni" + }, + { + "appid": 2054400, + "normalized_name": "rocket angels inc" + }, + { + "appid": 2054420, + "normalized_name": "neorunners" + }, + { + "appid": 2054510, + "normalized_name": "real rage" + }, + { + "appid": 2054520, + "normalized_name": "gawr gura quest for bread" + }, + { + "appid": 2054570, + "normalized_name": "guild master manager" + }, + { + "appid": 2054600, + "normalized_name": "ecchi beauties 2" + }, + { + "appid": 2054620, + "normalized_name": "sir stretchalot the plight of the elves" + }, + { + "appid": 2054640, + "normalized_name": "futanari sex the birthday massage" + }, + { + "appid": 2054660, + "normalized_name": "disney illusion island starring mickey & friends" + }, + { + "appid": 2054670, + "normalized_name": "开路先锋s open road first front s" + }, + { + "appid": 2054680, + "normalized_name": "odd one out" + }, + { + "appid": 2054690, + "normalized_name": "captain firehawk and the laser love situation" + }, + { + "appid": 2054730, + "normalized_name": "tempusia" + }, + { + "appid": 2054740, + "normalized_name": "cozy time" + }, + { + "appid": 2054770, + "normalized_name": "combo card clashers" + }, + { + "appid": 2054800, + "normalized_name": "magazine mogul" + }, + { + "appid": 2054810, + "normalized_name": "tennis club story" + }, + { + "appid": 2054820, + "normalized_name": "poptank" + }, + { + "appid": 2054850, + "normalized_name": "super bawk bawk chicken" + }, + { + "appid": 2054970, + "normalized_name": "dragon's dogma 2" + }, + { + "appid": 2055050, + "normalized_name": "cavalry girls 铁骑少女" + }, + { + "appid": 2055060, + "normalized_name": "charming blood" + }, + { + "appid": 2055090, + "normalized_name": "iaijutsu" + }, + { + "appid": 2055130, + "normalized_name": "demon go!" + }, + { + "appid": 2055170, + "normalized_name": "lunar the last human" + }, + { + "appid": 2055180, + "normalized_name": "waitventure" + }, + { + "appid": 2055220, + "normalized_name": "desktop girlfriend" + }, + { + "appid": 2055270, + "normalized_name": "tile tale" + }, + { + "appid": 2055290, + "normalized_name": "sonic colors" + }, + { + "appid": 2055310, + "normalized_name": "hidden champion" + }, + { + "appid": 2055360, + "normalized_name": "the zebra man!" + }, + { + "appid": 2055370, + "normalized_name": "kaboom!" + }, + { + "appid": 2055380, + "normalized_name": "onorbit virtual space lab" + }, + { + "appid": 2055390, + "normalized_name": "11号小镇综合症" + }, + { + "appid": 2055410, + "normalized_name": "the kindeman remedy" + }, + { + "appid": 2055450, + "normalized_name": "command & control spec ops (remastered)" + }, + { + "appid": 2055470, + "normalized_name": "neko loop" + }, + { + "appid": 2055480, + "normalized_name": "project st" + }, + { + "appid": 2055490, + "normalized_name": "a game with a kitty 1 & darkside adventures" + }, + { + "appid": 2055500, + "normalized_name": "repetendium" + }, + { + "appid": 2055510, + "normalized_name": "rotate collective" + }, + { + "appid": 2055540, + "normalized_name": "graveyard girls" + }, + { + "appid": 2055590, + "normalized_name": "star overdrive" + }, + { + "appid": 2055600, + "normalized_name": "xgamer ai revolution" + }, + { + "appid": 2055620, + "normalized_name": "teffect wall breaking" + }, + { + "appid": 2055650, + "normalized_name": "rolling rush" + }, + { + "appid": 2055680, + "normalized_name": "nuclear fighter" + }, + { + "appid": 2055720, + "normalized_name": "limited lifetime corp" + }, + { + "appid": 2055730, + "normalized_name": "미연시 시뮬레이터 미소녀 게임의 주인공을 조종하는 게임" + }, + { + "appid": 2055740, + "normalized_name": "dnd adventure rogue's choice" + }, + { + "appid": 2055770, + "normalized_name": "bloody hell hotel" + }, + { + "appid": 2055790, + "normalized_name": "tse reloaded" + }, + { + "appid": 2055820, + "normalized_name": "dnd adventure demon's choice" + }, + { + "appid": 2055910, + "normalized_name": "poosh xl" + }, + { + "appid": 2056030, + "normalized_name": "rainbow runner" + }, + { + "appid": 2056090, + "normalized_name": "monster bullets" + }, + { + "appid": 2056110, + "normalized_name": "不思議の大冒険 チルノ見参!" + }, + { + "appid": 2056130, + "normalized_name": "grand arms march of the red dragon" + }, + { + "appid": 2056150, + "normalized_name": "勇者一行と淫魔の試練" + }, + { + "appid": 2056160, + "normalized_name": "凶宅 househaunting" + }, + { + "appid": 2056180, + "normalized_name": "babel of ystilia" + }, + { + "appid": 2056190, + "normalized_name": "dimwarper" + }, + { + "appid": 2056200, + "normalized_name": "summa expeditionis" + }, + { + "appid": 2056210, + "normalized_name": "lonestar" + }, + { + "appid": 2056220, + "normalized_name": "bloody hell" + }, + { + "appid": 2056310, + "normalized_name": "cleaning the world with pampam" + }, + { + "appid": 2056320, + "normalized_name": "mini arenas" + }, + { + "appid": 2056340, + "normalized_name": "room of depression" + }, + { + "appid": 2056370, + "normalized_name": "by the vine chapter one" + }, + { + "appid": 2056420, + "normalized_name": "dead train" + }, + { + "appid": 2056430, + "normalized_name": "what has come before" + }, + { + "appid": 2056460, + "normalized_name": "chain jumpers" + }, + { + "appid": 2056480, + "normalized_name": "classic memory game" + }, + { + "appid": 2056490, + "normalized_name": "forrader hero" + }, + { + "appid": 2056510, + "normalized_name": "the hunted shadows of despair" + }, + { + "appid": 2056530, + "normalized_name": "laser lightshow" + }, + { + "appid": 2056550, + "normalized_name": "city limits" + }, + { + "appid": 2056560, + "normalized_name": "rock life the rock simulator" + }, + { + "appid": 2056570, + "normalized_name": "junkyard war" + }, + { + "appid": 2056640, + "normalized_name": "motioning monument" + }, + { + "appid": 2056690, + "normalized_name": "camp laughter" + }, + { + "appid": 2056700, + "normalized_name": "kagitori bird in the cage hiding the key" + }, + { + "appid": 2056750, + "normalized_name": "shockwave land of the blind" + }, + { + "appid": 2056780, + "normalized_name": "pacific strafe" + }, + { + "appid": 2056800, + "normalized_name": "just jump" + }, + { + "appid": 2056830, + "normalized_name": "the lost key" + }, + { + "appid": 2056840, + "normalized_name": "detective fantasia dx" + }, + { + "appid": 2056880, + "normalized_name": "mystery of mortlake mansion" + }, + { + "appid": 2056890, + "normalized_name": "court of crowns" + }, + { + "appid": 2056910, + "normalized_name": "hitstream" + }, + { + "appid": 2056920, + "normalized_name": "snowbrawl" + }, + { + "appid": 2056960, + "normalized_name": "merauders a voyage of discovery" + }, + { + "appid": 2056970, + "normalized_name": "animal wish" + }, + { + "appid": 2056990, + "normalized_name": "尋找自我 master" + }, + { + "appid": 2057000, + "normalized_name": "language lab" + }, + { + "appid": 2057030, + "normalized_name": "no more noise" + }, + { + "appid": 2057070, + "normalized_name": "voxrush" + }, + { + "appid": 2057080, + "normalized_name": "resonance of the ocean" + }, + { + "appid": 2057110, + "normalized_name": "chonky from breakfast to domination" + }, + { + "appid": 2057120, + "normalized_name": "cabin rush" + }, + { + "appid": 2057170, + "normalized_name": "happy's clocks" + }, + { + "appid": 2057220, + "normalized_name": "oxyjet" + }, + { + "appid": 2057300, + "normalized_name": "pixel" + }, + { + "appid": 2057310, + "normalized_name": "stardust valkyries" + }, + { + "appid": 2057360, + "normalized_name": "necronomnomnom eldritch horror dating" + }, + { + "appid": 2057400, + "normalized_name": "ferrule instincts" + }, + { + "appid": 2057430, + "normalized_name": "the wraith of the galaxy" + }, + { + "appid": 2057460, + "normalized_name": "the ballad of radolf" + }, + { + "appid": 2057470, + "normalized_name": "earth revival" + }, + { + "appid": 2057490, + "normalized_name": "舞hime 节奏连消" + }, + { + "appid": 2057500, + "normalized_name": "americas tower simulator" + }, + { + "appid": 2057550, + "normalized_name": "我在地球修仙有系统" + }, + { + "appid": 2057610, + "normalized_name": "soul link" + }, + { + "appid": 2057620, + "normalized_name": "pandemic 1993" + }, + { + "appid": 2057690, + "normalized_name": "schmaragon" + }, + { + "appid": 2057720, + "normalized_name": "battle of tanks" + }, + { + "appid": 2057760, + "normalized_name": "esoteric ebb" + }, + { + "appid": 2057770, + "normalized_name": "zold out" + }, + { + "appid": 2057790, + "normalized_name": "loop" + }, + { + "appid": 2057820, + "normalized_name": "desstroke" + }, + { + "appid": 2057830, + "normalized_name": "ferd" + }, + { + "appid": 2057840, + "normalized_name": "beat aimer!" + }, + { + "appid": 2057850, + "normalized_name": "dick ranger" + }, + { + "appid": 2057860, + "normalized_name": "steam ocean" + }, + { + "appid": 2057970, + "normalized_name": "雨夜屠夫" + }, + { + "appid": 2057980, + "normalized_name": "kokoro's gensokyo journey the lost masks" + }, + { + "appid": 2058000, + "normalized_name": "axima" + }, + { + "appid": 2058030, + "normalized_name": "zombie army vr" + }, + { + "appid": 2058050, + "normalized_name": "smartsoules" + }, + { + "appid": 2058060, + "normalized_name": "faraway" + }, + { + "appid": 2058070, + "normalized_name": "stellar watch" + }, + { + "appid": 2058090, + "normalized_name": "the game of fourtune" + }, + { + "appid": 2058100, + "normalized_name": "capytales a folk adventure" + }, + { + "appid": 2058120, + "normalized_name": "worm runner" + }, + { + "appid": 2058130, + "normalized_name": "fortitude invasion" + }, + { + "appid": 2058140, + "normalized_name": "henry halfhead" + }, + { + "appid": 2058150, + "normalized_name": "duck paradox" + }, + { + "appid": 2058170, + "normalized_name": "haunted places" + }, + { + "appid": 2058180, + "normalized_name": "judgment" + }, + { + "appid": 2058190, + "normalized_name": "lost judgment" + }, + { + "appid": 2058200, + "normalized_name": "showrunner" + }, + { + "appid": 2058220, + "normalized_name": "artifacts of eyru" + }, + { + "appid": 2058230, + "normalized_name": "the evil furry" + }, + { + "appid": 2058250, + "normalized_name": "astroblaster" + }, + { + "appid": 2058260, + "normalized_name": "asteroids" + }, + { + "appid": 2058270, + "normalized_name": "monsters versus pals" + }, + { + "appid": 2058310, + "normalized_name": "cyber sex" + }, + { + "appid": 2058320, + "normalized_name": "space gold rush td" + }, + { + "appid": 2058340, + "normalized_name": "pine a story of loss" + }, + { + "appid": 2058360, + "normalized_name": "turf wars a snail escape" + }, + { + "appid": 2058370, + "normalized_name": "jack big chin alien invasion" + }, + { + "appid": 2058380, + "normalized_name": "procemon you must catch them" + }, + { + "appid": 2058420, + "normalized_name": "wormmy" + }, + { + "appid": 2058430, + "normalized_name": "bomb dolls" + }, + { + "appid": 2058460, + "normalized_name": "absence of light" + }, + { + "appid": 2058500, + "normalized_name": "collision" + }, + { + "appid": 2058510, + "normalized_name": "quietus allurement" + }, + { + "appid": 2058530, + "normalized_name": "st. yariman's little black book ~complete~" + }, + { + "appid": 2058540, + "normalized_name": "paranormal home invaders" + }, + { + "appid": 2058570, + "normalized_name": "rift wizard 2" + }, + { + "appid": 2058660, + "normalized_name": "maelstrom" + }, + { + "appid": 2058670, + "normalized_name": "viking life" + }, + { + "appid": 2058680, + "normalized_name": "beeftown beatdown" + }, + { + "appid": 2058690, + "normalized_name": "abyssal" + }, + { + "appid": 2058730, + "normalized_name": "the darkest files" + }, + { + "appid": 2058750, + "normalized_name": "monster energy supercross the official videogame 6" + }, + { + "appid": 2058800, + "normalized_name": "try to fly" + }, + { + "appid": 2058850, + "normalized_name": "traveler's game" + }, + { + "appid": 2058890, + "normalized_name": "maiden gear" + }, + { + "appid": 2058910, + "normalized_name": "pixel combat" + }, + { + "appid": 2058920, + "normalized_name": "jelly's adventure" + }, + { + "appid": 2058960, + "normalized_name": "earthless" + }, + { + "appid": 2058970, + "normalized_name": "for what will come" + }, + { + "appid": 2058980, + "normalized_name": "prototypers" + }, + { + "appid": 2059060, + "normalized_name": "spiderbro" + }, + { + "appid": 2059070, + "normalized_name": "isotopia" + }, + { + "appid": 2059090, + "normalized_name": "sanatorium a mental asylum simulator" + }, + { + "appid": 2059160, + "normalized_name": "sloth simulator (almost)" + }, + { + "appid": 2059170, + "normalized_name": "quasimorph" + }, + { + "appid": 2059200, + "normalized_name": "jones" + }, + { + "appid": 2059210, + "normalized_name": "衔尾:龙之铃" + }, + { + "appid": 2059250, + "normalized_name": "five nights at floppa 0" + }, + { + "appid": 2059260, + "normalized_name": "white room" + }, + { + "appid": 2059280, + "normalized_name": "nightmare knock" + }, + { + "appid": 2059290, + "normalized_name": "five nights at stalin" + }, + { + "appid": 2059300, + "normalized_name": "tenebris pictura" + }, + { + "appid": 2059310, + "normalized_name": "daily life with my succubus boss" + }, + { + "appid": 2059330, + "normalized_name": "midnightking" + }, + { + "appid": 2059340, + "normalized_name": "rocket jumper" + }, + { + "appid": 2059350, + "normalized_name": "worlds of nyx" + }, + { + "appid": 2059390, + "normalized_name": "the patient after hours" + }, + { + "appid": 2059480, + "normalized_name": "interrogation simulator" + }, + { + "appid": 2059490, + "normalized_name": "fortuna" + }, + { + "appid": 2059530, + "normalized_name": "dawn of defiance" + }, + { + "appid": 2059550, + "normalized_name": "brain syndrome vr" + }, + { + "appid": 2059570, + "normalized_name": "forgotlings" + }, + { + "appid": 2059600, + "normalized_name": "vain ascendance" + }, + { + "appid": 2059630, + "normalized_name": "zombiemaze" + }, + { + "appid": 2059650, + "normalized_name": "fetus" + }, + { + "appid": 2059660, + "normalized_name": "cavern of dreams" + }, + { + "appid": 2059670, + "normalized_name": "moss book ii" + }, + { + "appid": 2059690, + "normalized_name": "targetpop" + }, + { + "appid": 2059740, + "normalized_name": "hoverboy" + }, + { + "appid": 2059760, + "normalized_name": "elden gunfire 2" + }, + { + "appid": 2059790, + "normalized_name": "再刷一把 playagain" + }, + { + "appid": 2059810, + "normalized_name": "richman 4" + }, + { + "appid": 2059960, + "normalized_name": "the rumble fish 2" + }, + { + "appid": 2059980, + "normalized_name": "元炁" + }, + { + "appid": 2059990, + "normalized_name": "镇魔曲" + }, + { + "appid": 2060000, + "normalized_name": "great deceiver" + }, + { + "appid": 2060110, + "normalized_name": "spellic" + }, + { + "appid": 2060130, + "normalized_name": "return to monkey island" + }, + { + "appid": 2060150, + "normalized_name": "level 0 a backrooms experience prototype" + }, + { + "appid": 2060160, + "normalized_name": "the farmer was replaced" + }, + { + "appid": 2060170, + "normalized_name": "solas city heroes" + }, + { + "appid": 2060230, + "normalized_name": "infested fortress" + }, + { + "appid": 2060240, + "normalized_name": "quriocity" + }, + { + "appid": 2060320, + "normalized_name": "survive till morning" + }, + { + "appid": 2060410, + "normalized_name": "kingdom quest" + }, + { + "appid": 2060450, + "normalized_name": "wanted! monty mole" + }, + { + "appid": 2060470, + "normalized_name": "cosmic strike the last sub sector" + }, + { + "appid": 2060480, + "normalized_name": "pomofarm" + }, + { + "appid": 2060510, + "normalized_name": "lustful professor" + }, + { + "appid": 2060520, + "normalized_name": "summer weekend" + }, + { + "appid": 2060530, + "normalized_name": "hot sauna" + }, + { + "appid": 2060540, + "normalized_name": "castle" + }, + { + "appid": 2060550, + "normalized_name": "fabular prologue" + }, + { + "appid": 2060580, + "normalized_name": "crossedland" + }, + { + "appid": 2060590, + "normalized_name": "wilmot works it out" + }, + { + "appid": 2060670, + "normalized_name": "sue shi survival" + }, + { + "appid": 2060730, + "normalized_name": "yandere goddess a snatch made in heaven" + }, + { + "appid": 2060740, + "normalized_name": "zankinzoken" + }, + { + "appid": 2060750, + "normalized_name": "star survivor" + }, + { + "appid": 2060760, + "normalized_name": "first sexy night" + }, + { + "appid": 2060780, + "normalized_name": "rifters card game" + }, + { + "appid": 2060790, + "normalized_name": "hauntii" + }, + { + "appid": 2060870, + "normalized_name": "invincible presents atom eve" + }, + { + "appid": 2060970, + "normalized_name": "late night gas station" + }, + { + "appid": 2061000, + "normalized_name": "infinity project patterns" + }, + { + "appid": 2061010, + "normalized_name": "relax in space" + }, + { + "appid": 2061020, + "normalized_name": "筒楼异事" + }, + { + "appid": 2061030, + "normalized_name": "city rhapsody!" + }, + { + "appid": 2061040, + "normalized_name": "save our solar system" + }, + { + "appid": 2061050, + "normalized_name": "thebeanstalk" + }, + { + "appid": 2061060, + "normalized_name": "the marson home" + }, + { + "appid": 2061090, + "normalized_name": "sunville" + }, + { + "appid": 2061100, + "normalized_name": "elves of duty" + }, + { + "appid": 2061140, + "normalized_name": "the mangotronics employment collection" + }, + { + "appid": 2061150, + "normalized_name": "ikki unite" + }, + { + "appid": 2061230, + "normalized_name": "chasm the rift" + }, + { + "appid": 2061250, + "normalized_name": "shin chan me and the professor on summer vacation the endless seven day journey" + }, + { + "appid": 2061260, + "normalized_name": "发现姐姐是妹控的我今后该如何是好" + }, + { + "appid": 2061270, + "normalized_name": "alien gladiator" + }, + { + "appid": 2061280, + "normalized_name": "monty on the run (cpc/spectrum)" + }, + { + "appid": 2061290, + "normalized_name": "hauling away" + }, + { + "appid": 2061300, + "normalized_name": "the way home pixel roguelike" + }, + { + "appid": 2061340, + "normalized_name": "mottia the gem hunters" + }, + { + "appid": 2061420, + "normalized_name": "faceplant" + }, + { + "appid": 2061430, + "normalized_name": "oxygen" + }, + { + "appid": 2061440, + "normalized_name": "oxygen first breath" + }, + { + "appid": 2061460, + "normalized_name": "triennale game collection 2" + }, + { + "appid": 2061510, + "normalized_name": "woodlock manor" + }, + { + "appid": 2061540, + "normalized_name": "chompies!" + }, + { + "appid": 2061580, + "normalized_name": "brigadoon" + }, + { + "appid": 2061620, + "normalized_name": "mechanic heroes" + }, + { + "appid": 2061630, + "normalized_name": "(square)" + }, + { + "appid": 2061660, + "normalized_name": "larimar" + }, + { + "appid": 2061710, + "normalized_name": "do not open" + }, + { + "appid": 2061720, + "normalized_name": "metapilot" + }, + { + "appid": 2061750, + "normalized_name": "counterpact" + }, + { + "appid": 2061780, + "normalized_name": "sprite fight" + }, + { + "appid": 2061820, + "normalized_name": "charging out dead zone" + }, + { + "appid": 2061850, + "normalized_name": "aria and the crystal kingdom" + }, + { + "appid": 2061930, + "normalized_name": "spirits of yendor" + }, + { + "appid": 2061980, + "normalized_name": "flying ruckus multiplayer" + }, + { + "appid": 2062020, + "normalized_name": "shido's world" + }, + { + "appid": 2062030, + "normalized_name": "code alkonost awakening of evil" + }, + { + "appid": 2062050, + "normalized_name": "our passing thoughts" + }, + { + "appid": 2062100, + "normalized_name": "paper nebula" + }, + { + "appid": 2062110, + "normalized_name": "under the stars" + }, + { + "appid": 2062130, + "normalized_name": "fracture city of destruction" + }, + { + "appid": 2062140, + "normalized_name": "the mourne's" + }, + { + "appid": 2062150, + "normalized_name": "quadrobat" + }, + { + "appid": 2062160, + "normalized_name": "hold controller" + }, + { + "appid": 2062170, + "normalized_name": "warscape redaction" + }, + { + "appid": 2062190, + "normalized_name": "oh sheep!" + }, + { + "appid": 2062210, + "normalized_name": "watamari a match made in heaven part1" + }, + { + "appid": 2062220, + "normalized_name": "heavenscape" + }, + { + "appid": 2062270, + "normalized_name": "boxloop" + }, + { + "appid": 2062300, + "normalized_name": "i am bjorn escape room" + }, + { + "appid": 2062330, + "normalized_name": "omega squad" + }, + { + "appid": 2062350, + "normalized_name": "may's mysteries the secret of dragonville" + }, + { + "appid": 2062380, + "normalized_name": "roots in the sky the hand of glory 2" + }, + { + "appid": 2062390, + "normalized_name": "clockwork survivors" + }, + { + "appid": 2062420, + "normalized_name": "battle rift" + }, + { + "appid": 2062440, + "normalized_name": "course correction" + }, + { + "appid": 2062480, + "normalized_name": "bounder (cpc/spectrum)" + }, + { + "appid": 2062520, + "normalized_name": "roxy raccoon 2 topsy turvy" + }, + { + "appid": 2062550, + "normalized_name": "hololive error" + }, + { + "appid": 2062600, + "normalized_name": "cable clutter" + }, + { + "appid": 2062610, + "normalized_name": "phantom club (cpc/spectrum)" + }, + { + "appid": 2062630, + "normalized_name": "walkbot" + }, + { + "appid": 2062650, + "normalized_name": "frostfall" + }, + { + "appid": 2062660, + "normalized_name": "cyber drift" + }, + { + "appid": 2062690, + "normalized_name": "tour de france 2023" + }, + { + "appid": 2062710, + "normalized_name": "drunkle ted's wet and reckless" + }, + { + "appid": 2062750, + "normalized_name": "a path to light" + }, + { + "appid": 2062770, + "normalized_name": "lands of crown" + }, + { + "appid": 2062780, + "normalized_name": "sharkdrag episode 5 uniting the 5 kingdoms" + }, + { + "appid": 2062790, + "normalized_name": "c.h.a.o.s." + }, + { + "appid": 2062800, + "normalized_name": "blockhead 2d" + }, + { + "appid": 2062820, + "normalized_name": "backroom beyond" + }, + { + "appid": 2062830, + "normalized_name": "dan the inmortal" + }, + { + "appid": 2062840, + "normalized_name": "animperium" + }, + { + "appid": 2062860, + "normalized_name": "weed runner" + }, + { + "appid": 2062870, + "normalized_name": "fighting! ms. luan!! ─ gold digging angelic bitch simulation" + }, + { + "appid": 2062900, + "normalized_name": "affinity fallen from paradise" + }, + { + "appid": 2062910, + "normalized_name": "just sign!" + }, + { + "appid": 2062920, + "normalized_name": "ttv4" + }, + { + "appid": 2062930, + "normalized_name": "owinka shooter" + }, + { + "appid": 2062940, + "normalized_name": "territory" + }, + { + "appid": 2062970, + "normalized_name": "under pretense of death" + }, + { + "appid": 2062990, + "normalized_name": "ball e" + }, + { + "appid": 2063000, + "normalized_name": "the clown's forest" + }, + { + "appid": 2063010, + "normalized_name": "わんおぺ寿司" + }, + { + "appid": 2063050, + "normalized_name": "tvs the awakening" + }, + { + "appid": 2063090, + "normalized_name": "tokyo underground killer" + }, + { + "appid": 2063110, + "normalized_name": "elemates" + }, + { + "appid": 2063120, + "normalized_name": "box to the beat vr" + }, + { + "appid": 2063140, + "normalized_name": "netajump" + }, + { + "appid": 2063170, + "normalized_name": "aegis kingdoms" + }, + { + "appid": 2063180, + "normalized_name": "the tower on the borderland" + }, + { + "appid": 2063210, + "normalized_name": "icarus challenge" + }, + { + "appid": 2063220, + "normalized_name": "the strings of fear" + }, + { + "appid": 2063230, + "normalized_name": "doctor nanobot" + }, + { + "appid": 2063240, + "normalized_name": "pog 8" + }, + { + "appid": 2063260, + "normalized_name": "a long time ago" + }, + { + "appid": 2063270, + "normalized_name": "multigames" + }, + { + "appid": 2063290, + "normalized_name": "rock wrecker" + }, + { + "appid": 2063310, + "normalized_name": "joe wander and the enigmatic adventures" + }, + { + "appid": 2063340, + "normalized_name": "kawaii hentai sexy girls" + }, + { + "appid": 2063370, + "normalized_name": "once in yaissor 3" + }, + { + "appid": 2063390, + "normalized_name": "v.a proxy" + }, + { + "appid": 2063400, + "normalized_name": "descension" + }, + { + "appid": 2063420, + "normalized_name": "cozytyper" + }, + { + "appid": 2063430, + "normalized_name": "live maze" + }, + { + "appid": 2063450, + "normalized_name": "hidden shapes animals vr" + }, + { + "appid": 2063480, + "normalized_name": "voltage high society" + }, + { + "appid": 2063510, + "normalized_name": "kakudo" + }, + { + "appid": 2063530, + "normalized_name": "methods the canada files" + }, + { + "appid": 2063560, + "normalized_name": "space route" + }, + { + "appid": 2063580, + "normalized_name": "trigger henry" + }, + { + "appid": 2063610, + "normalized_name": "pro cycling manager 2023" + }, + { + "appid": 2063630, + "normalized_name": "melon" + }, + { + "appid": 2063660, + "normalized_name": "photoelektric" + }, + { + "appid": 2063680, + "normalized_name": "crustacean nations" + }, + { + "appid": 2063690, + "normalized_name": "humanities legend dark horizon" + }, + { + "appid": 2063700, + "normalized_name": "radii" + }, + { + "appid": 2063710, + "normalized_name": "mars 2055" + }, + { + "appid": 2063720, + "normalized_name": "presence" + }, + { + "appid": 2063790, + "normalized_name": "newcomer a language learning rpg" + }, + { + "appid": 2063800, + "normalized_name": "dungems" + }, + { + "appid": 2063850, + "normalized_name": "block buster billy" + }, + { + "appid": 2063870, + "normalized_name": "bloody lonely cold" + }, + { + "appid": 2063890, + "normalized_name": "toggle cube" + }, + { + "appid": 2063900, + "normalized_name": "osiris" + }, + { + "appid": 2063930, + "normalized_name": "夺宝蠢兵" + }, + { + "appid": 2063950, + "normalized_name": "69 andariel hot" + }, + { + "appid": 2063960, + "normalized_name": "69 berta hot" + }, + { + "appid": 2063970, + "normalized_name": "69 penny hot" + }, + { + "appid": 2063990, + "normalized_name": "xanchuchamel" + }, + { + "appid": 2064000, + "normalized_name": "tater spud" + }, + { + "appid": 2064040, + "normalized_name": "bread and circuses" + }, + { + "appid": 2064090, + "normalized_name": "streamers' secret life" + }, + { + "appid": 2064100, + "normalized_name": "sich tactics" + }, + { + "appid": 2064150, + "normalized_name": "welcome to chornobayivka vr" + }, + { + "appid": 2064160, + "normalized_name": "spaced out" + }, + { + "appid": 2064180, + "normalized_name": "maze mart" + }, + { + "appid": 2064190, + "normalized_name": "potion slingers" + }, + { + "appid": 2064230, + "normalized_name": "bay bell" + }, + { + "appid": 2064270, + "normalized_name": "globe go" + }, + { + "appid": 2064310, + "normalized_name": "dark age dinos" + }, + { + "appid": 2064320, + "normalized_name": "vermis orbita" + }, + { + "appid": 2064370, + "normalized_name": "space monkeys" + }, + { + "appid": 2064380, + "normalized_name": "one week by car" + }, + { + "appid": 2064410, + "normalized_name": "truck rally hyper hardcore" + }, + { + "appid": 2064470, + "normalized_name": "micro wars" + }, + { + "appid": 2064490, + "normalized_name": "名画展 art reborn(painting connoisseur)" + }, + { + "appid": 2064500, + "normalized_name": "harry is a porter" + }, + { + "appid": 2064550, + "normalized_name": "scared little ghost" + }, + { + "appid": 2064570, + "normalized_name": "星辰蓝调(starblues)" + }, + { + "appid": 2064610, + "normalized_name": "relic guardian tower defense" + }, + { + "appid": 2064650, + "normalized_name": "tower of fantasy" + }, + { + "appid": 2064670, + "normalized_name": "rogue realms" + }, + { + "appid": 2064700, + "normalized_name": "speedonauts" + }, + { + "appid": 2064710, + "normalized_name": "luminescence" + }, + { + "appid": 2064810, + "normalized_name": "citydriver" + }, + { + "appid": 2064820, + "normalized_name": "streetball the mecca" + }, + { + "appid": 2064830, + "normalized_name": "cannon royale" + }, + { + "appid": 2064850, + "normalized_name": "lifespace traveler" + }, + { + "appid": 2064870, + "normalized_name": "deceit 2" + }, + { + "appid": 2064950, + "normalized_name": "alone again the countryside" + }, + { + "appid": 2064970, + "normalized_name": "astro" + }, + { + "appid": 2065000, + "normalized_name": "chess survivors" + }, + { + "appid": 2065010, + "normalized_name": "i was wrong" + }, + { + "appid": 2065090, + "normalized_name": "john brick" + }, + { + "appid": 2065100, + "normalized_name": "the empanada protocol" + }, + { + "appid": 2065110, + "normalized_name": "alexander the great secrets of power" + }, + { + "appid": 2065170, + "normalized_name": "tcstrikers5" + }, + { + "appid": 2065180, + "normalized_name": "hanaja's body" + }, + { + "appid": 2065200, + "normalized_name": "the stone cutter and the mountain spirit" + }, + { + "appid": 2065250, + "normalized_name": "project galaxy" + }, + { + "appid": 2065260, + "normalized_name": "don't touch lava" + }, + { + "appid": 2065280, + "normalized_name": "red tower" + }, + { + "appid": 2065330, + "normalized_name": "catto pew pew!" + }, + { + "appid": 2065340, + "normalized_name": "canis major" + }, + { + "appid": 2065420, + "normalized_name": "bloodstage possessed by a tsundere demon" + }, + { + "appid": 2065440, + "normalized_name": "dream walk stolen color" + }, + { + "appid": 2065490, + "normalized_name": "bunni gunni classic" + }, + { + "appid": 2065510, + "normalized_name": "bots city" + }, + { + "appid": 2065520, + "normalized_name": "endless nightmare" + }, + { + "appid": 2065560, + "normalized_name": "acanthoceras" + }, + { + "appid": 2065570, + "normalized_name": "silver nornir" + }, + { + "appid": 2065580, + "normalized_name": "kitsune the journey of adashino" + }, + { + "appid": 2065610, + "normalized_name": "rush rush rally reloaded" + }, + { + "appid": 2065630, + "normalized_name": "goat's tale 2" + }, + { + "appid": 2065670, + "normalized_name": "pimp my cruise" + }, + { + "appid": 2065710, + "normalized_name": "as the light goes out" + }, + { + "appid": 2065720, + "normalized_name": "packed!?" + }, + { + "appid": 2065750, + "normalized_name": "fogel and porki evil arcade" + }, + { + "appid": 2065770, + "normalized_name": "guns and rush" + }, + { + "appid": 2065780, + "normalized_name": "the gods are fickle" + }, + { + "appid": 2065800, + "normalized_name": "defending lydia collier" + }, + { + "appid": 2065810, + "normalized_name": "undead horde 2 necropolis" + }, + { + "appid": 2065820, + "normalized_name": "the legend of azarias" + }, + { + "appid": 2065830, + "normalized_name": "unheeded influences" + }, + { + "appid": 2065840, + "normalized_name": "trouble juice" + }, + { + "appid": 2065860, + "normalized_name": "floor is lava" + }, + { + "appid": 2065870, + "normalized_name": "prescience" + }, + { + "appid": 2065890, + "normalized_name": "最强炼丹师" + }, + { + "appid": 2065920, + "normalized_name": "dark jungle" + }, + { + "appid": 2065930, + "normalized_name": "the corpse crusade" + }, + { + "appid": 2065970, + "normalized_name": "wild delivery old cooking style" + }, + { + "appid": 2065990, + "normalized_name": "frem sprite32!" + }, + { + "appid": 2066000, + "normalized_name": "cops n' zombies" + }, + { + "appid": 2066020, + "normalized_name": "soulstone survivors" + }, + { + "appid": 2066030, + "normalized_name": "the grizzled armistice digital" + }, + { + "appid": 2066110, + "normalized_name": "dreams with furry 🦊" + }, + { + "appid": 2066160, + "normalized_name": "suuubwaaay" + }, + { + "appid": 2066170, + "normalized_name": "furry pet dog yiff hentai" + }, + { + "appid": 2066200, + "normalized_name": "embodiment" + }, + { + "appid": 2066210, + "normalized_name": "war dots" + }, + { + "appid": 2066220, + "normalized_name": "eris and the fading kingdom" + }, + { + "appid": 2066230, + "normalized_name": "bunny alice in wonderland" + }, + { + "appid": 2066240, + "normalized_name": "bughouse" + }, + { + "appid": 2066270, + "normalized_name": "return to the skyway" + }, + { + "appid": 2066300, + "normalized_name": "escape the endless dogwatch" + }, + { + "appid": 2066320, + "normalized_name": "dalo" + }, + { + "appid": 2066330, + "normalized_name": "guardian" + }, + { + "appid": 2066360, + "normalized_name": "yumahorome ~toki o tometa yakata de asu o sagasu maigo tachi~" + }, + { + "appid": 2066370, + "normalized_name": "grand gate" + }, + { + "appid": 2066380, + "normalized_name": "the paracelsian project" + }, + { + "appid": 2066420, + "normalized_name": "这里有妖" + }, + { + "appid": 2066430, + "normalized_name": "the sea of death" + }, + { + "appid": 2066460, + "normalized_name": "灵魂筹码 契约" + }, + { + "appid": 2066490, + "normalized_name": "robot resistors" + }, + { + "appid": 2066520, + "normalized_name": "ritual of raven" + }, + { + "appid": 2066530, + "normalized_name": "传颂的种族 the celebrated race" + }, + { + "appid": 2066540, + "normalized_name": "metro mover" + }, + { + "appid": 2066550, + "normalized_name": "error143" + }, + { + "appid": 2066600, + "normalized_name": "great filter" + }, + { + "appid": 2066610, + "normalized_name": "wizard war vr" + }, + { + "appid": 2066680, + "normalized_name": "dungeons & keyboards" + }, + { + "appid": 2066690, + "normalized_name": "creatures of energy" + }, + { + "appid": 2066730, + "normalized_name": "deep space survivor" + }, + { + "appid": 2066740, + "normalized_name": "asmr food experience" + }, + { + "appid": 2066780, + "normalized_name": "洛神见月" + }, + { + "appid": 2066870, + "normalized_name": "little nemo the clown" + }, + { + "appid": 2066920, + "normalized_name": "colorcube" + }, + { + "appid": 2066940, + "normalized_name": "sagger" + }, + { + "appid": 2066950, + "normalized_name": "quadrata" + }, + { + "appid": 2066960, + "normalized_name": "new tanks" + }, + { + "appid": 2066980, + "normalized_name": "summer for you" + }, + { + "appid": 2067000, + "normalized_name": "momo mother bird final story" + }, + { + "appid": 2067020, + "normalized_name": "polygeddon" + }, + { + "appid": 2067030, + "normalized_name": "only straight and up!" + }, + { + "appid": 2067050, + "normalized_name": "squirrel with a gun" + }, + { + "appid": 2067070, + "normalized_name": "ragtag heroes co op deckbuilder" + }, + { + "appid": 2067120, + "normalized_name": "jurassic lab dinosarium dna" + }, + { + "appid": 2067140, + "normalized_name": "airraid" + }, + { + "appid": 2067150, + "normalized_name": "nitro racers" + }, + { + "appid": 2067160, + "normalized_name": "simulakros" + }, + { + "appid": 2067200, + "normalized_name": "blobble wars 2" + }, + { + "appid": 2067220, + "normalized_name": "auf wiedersehen monty (cpc/spectrum)" + }, + { + "appid": 2067230, + "normalized_name": "skellington" + }, + { + "appid": 2067240, + "normalized_name": "灵境三国" + }, + { + "appid": 2067260, + "normalized_name": "reflection the greed" + }, + { + "appid": 2067270, + "normalized_name": "herogue" + }, + { + "appid": 2067280, + "normalized_name": "devil dead" + }, + { + "appid": 2067300, + "normalized_name": "crossfar" + }, + { + "appid": 2067310, + "normalized_name": "neon blood" + }, + { + "appid": 2067330, + "normalized_name": "fateless night" + }, + { + "appid": 2067350, + "normalized_name": "phantom breaker battle grounds" + }, + { + "appid": 2067430, + "normalized_name": "deadbeat" + }, + { + "appid": 2067460, + "normalized_name": "silentium" + }, + { + "appid": 2067470, + "normalized_name": "idol hell" + }, + { + "appid": 2067490, + "normalized_name": "competitive checkers" + }, + { + "appid": 2067570, + "normalized_name": "egghead gumpty" + }, + { + "appid": 2067590, + "normalized_name": "upload simulator" + }, + { + "appid": 2067610, + "normalized_name": "koreanpoliticalfighters 2nd" + }, + { + "appid": 2067640, + "normalized_name": "a tragic accidental still life" + }, + { + "appid": 2067670, + "normalized_name": "记忆碎片fragment" + }, + { + "appid": 2067680, + "normalized_name": "rematch" + }, + { + "appid": 2067700, + "normalized_name": "哪吒三太子" + }, + { + "appid": 2067720, + "normalized_name": "space bunny explorers" + }, + { + "appid": 2067730, + "normalized_name": "daybreaker vr" + }, + { + "appid": 2067750, + "normalized_name": "jigsaw puzzle futanari roomate" + }, + { + "appid": 2067760, + "normalized_name": "trash bomber" + }, + { + "appid": 2067770, + "normalized_name": "icharko" + }, + { + "appid": 2067780, + "normalized_name": "your turn to die death game by majority" + }, + { + "appid": 2067790, + "normalized_name": "crimson snow (2023)" + }, + { + "appid": 2067820, + "normalized_name": "retrospace" + }, + { + "appid": 2067850, + "normalized_name": "drakensang online" + }, + { + "appid": 2067890, + "normalized_name": "cactus" + }, + { + "appid": 2067900, + "normalized_name": "gemini chase" + }, + { + "appid": 2067910, + "normalized_name": "what the fortress!?" + }, + { + "appid": 2067920, + "normalized_name": "rogue genesia" + }, + { + "appid": 2067930, + "normalized_name": "never ends act" + }, + { + "appid": 2067940, + "normalized_name": "siberian village" + }, + { + "appid": 2067950, + "normalized_name": "nash racing 3 drifter" + }, + { + "appid": 2067960, + "normalized_name": "peaky circus" + }, + { + "appid": 2067970, + "normalized_name": "lovetalks" + }, + { + "appid": 2068030, + "normalized_name": "kring" + }, + { + "appid": 2068040, + "normalized_name": "boxing queen" + }, + { + "appid": 2068050, + "normalized_name": "clashbowl" + }, + { + "appid": 2068080, + "normalized_name": "neotag league" + }, + { + "appid": 2068090, + "normalized_name": "evercraft mechanic sandbox" + }, + { + "appid": 2068110, + "normalized_name": "cuming fear" + }, + { + "appid": 2068120, + "normalized_name": "from hell" + }, + { + "appid": 2068130, + "normalized_name": "maiden kingdom" + }, + { + "appid": 2068140, + "normalized_name": "faceworld pro" + }, + { + "appid": 2068180, + "normalized_name": "containerphobia" + }, + { + "appid": 2068190, + "normalized_name": "almost my floor duality" + }, + { + "appid": 2068200, + "normalized_name": "chickenoidz super pre party" + }, + { + "appid": 2068210, + "normalized_name": "alongside" + }, + { + "appid": 2068220, + "normalized_name": "rampage ball 2048" + }, + { + "appid": 2068230, + "normalized_name": "sex and zombies" + }, + { + "appid": 2068260, + "normalized_name": "brutal chase turbo" + }, + { + "appid": 2068280, + "normalized_name": "nordic ashes survivors of ragnarok" + }, + { + "appid": 2068350, + "normalized_name": "my sugar mommy is a futanari" + }, + { + "appid": 2068360, + "normalized_name": "the futanati" + }, + { + "appid": 2068370, + "normalized_name": "my agent is a futanari" + }, + { + "appid": 2068380, + "normalized_name": "scp directive nine" + }, + { + "appid": 2068390, + "normalized_name": "axis of power" + }, + { + "appid": 2068400, + "normalized_name": "radiant cell" + }, + { + "appid": 2068410, + "normalized_name": "psy in apocalypse" + }, + { + "appid": 2068460, + "normalized_name": "终末方舟 序" + }, + { + "appid": 2068480, + "normalized_name": "the exile of aphrodisia (2023)" + }, + { + "appid": 2068520, + "normalized_name": "banana hell mountain of madness" + }, + { + "appid": 2068550, + "normalized_name": "modern air combat beyond visual range" + }, + { + "appid": 2068560, + "normalized_name": "cooper's cleanup" + }, + { + "appid": 2068650, + "normalized_name": "northanda chronicles" + }, + { + "appid": 2068660, + "normalized_name": "dead oculus" + }, + { + "appid": 2068680, + "normalized_name": "wilderness survival the conservationist" + }, + { + "appid": 2068690, + "normalized_name": "space fury the phantom menace" + }, + { + "appid": 2068700, + "normalized_name": "fly free" + }, + { + "appid": 2068710, + "normalized_name": "hot lap league deluxe" + }, + { + "appid": 2068750, + "normalized_name": "through the night" + }, + { + "appid": 2068820, + "normalized_name": "radial flow" + }, + { + "appid": 2068840, + "normalized_name": "hellopoly" + }, + { + "appid": 2068850, + "normalized_name": "curvature" + }, + { + "appid": 2068880, + "normalized_name": "doge trader" + }, + { + "appid": 2068890, + "normalized_name": "flame tale" + }, + { + "appid": 2068970, + "normalized_name": "repit 2" + }, + { + "appid": 2068980, + "normalized_name": "escape from grustovia" + }, + { + "appid": 2068990, + "normalized_name": "organised crime prologue" + }, + { + "appid": 2069010, + "normalized_name": "crashcourse" + }, + { + "appid": 2069020, + "normalized_name": "smoothcade" + }, + { + "appid": 2069030, + "normalized_name": "gronk want rock" + }, + { + "appid": 2069040, + "normalized_name": "unboxing the cryptic killer" + }, + { + "appid": 2069060, + "normalized_name": "chopmania" + }, + { + "appid": 2069090, + "normalized_name": "wufo" + }, + { + "appid": 2069110, + "normalized_name": "i commissioned some bees 3" + }, + { + "appid": 2069160, + "normalized_name": "platfuzzles" + }, + { + "appid": 2069170, + "normalized_name": "obsidian legion" + }, + { + "appid": 2069180, + "normalized_name": "the king's dilemma chronicles" + }, + { + "appid": 2069190, + "normalized_name": "prisma light" + }, + { + "appid": 2069220, + "normalized_name": "land of the mage lords" + }, + { + "appid": 2069240, + "normalized_name": "little wing" + }, + { + "appid": 2069260, + "normalized_name": "somnipathy" + }, + { + "appid": 2069310, + "normalized_name": "realflight evolution" + }, + { + "appid": 2069330, + "normalized_name": "changer seven" + }, + { + "appid": 2069340, + "normalized_name": "varial" + }, + { + "appid": 2069350, + "normalized_name": "dark mist" + }, + { + "appid": 2069380, + "normalized_name": "pakicetus redux" + }, + { + "appid": 2069410, + "normalized_name": "road draftsman" + }, + { + "appid": 2069420, + "normalized_name": "fossil finder" + }, + { + "appid": 2069480, + "normalized_name": "mikaira (archived)" + }, + { + "appid": 2069500, + "normalized_name": "流星降临的小镇:来自过去的幽灵" + }, + { + "appid": 2069520, + "normalized_name": "metacitizen" + }, + { + "appid": 2069540, + "normalized_name": "opalescence" + }, + { + "appid": 2069550, + "normalized_name": "slime rule" + }, + { + "appid": 2069560, + "normalized_name": "imaginari" + }, + { + "appid": 2069580, + "normalized_name": "road stones" + }, + { + "appid": 2069630, + "normalized_name": "hero youseijyo" + }, + { + "appid": 2069640, + "normalized_name": "hero's journey" + }, + { + "appid": 2069680, + "normalized_name": "the great" + }, + { + "appid": 2069710, + "normalized_name": "finding ice" + }, + { + "appid": 2069720, + "normalized_name": "score game 2d" + }, + { + "appid": 2069750, + "normalized_name": "islet hell" + }, + { + "appid": 2069760, + "normalized_name": "partum artifex" + }, + { + "appid": 2069800, + "normalized_name": "the apple tree" + }, + { + "appid": 2069820, + "normalized_name": "iterum" + }, + { + "appid": 2069900, + "normalized_name": "maurice in the predator's nest" + }, + { + "appid": 2069920, + "normalized_name": "за закатом неминуем рассвет интерактивный роман" + }, + { + "appid": 2069930, + "normalized_name": "farpost 44" + }, + { + "appid": 2069960, + "normalized_name": "rogueline" + }, + { + "appid": 2069990, + "normalized_name": "peepo island" + }, + { + "appid": 2070000, + "normalized_name": "heavy burden" + }, + { + "appid": 2070030, + "normalized_name": "super kenney" + }, + { + "appid": 2070060, + "normalized_name": "mouselife parenthood" + }, + { + "appid": 2070120, + "normalized_name": "underway" + }, + { + "appid": 2070130, + "normalized_name": "bouncy frenzy" + }, + { + "appid": 2070140, + "normalized_name": "batiman" + }, + { + "appid": 2070160, + "normalized_name": "sock pets" + }, + { + "appid": 2070170, + "normalized_name": "the good people (na daoine maithe)" + }, + { + "appid": 2070180, + "normalized_name": "ion stormfire" + }, + { + "appid": 2070190, + "normalized_name": "alice in wonderland jigsaw puzzle" + }, + { + "appid": 2070210, + "normalized_name": "small shop" + }, + { + "appid": 2070220, + "normalized_name": "yukar from the abyss" + }, + { + "appid": 2070250, + "normalized_name": "lucifer lives in lower manhattan" + }, + { + "appid": 2070270, + "normalized_name": "cloudheim" + }, + { + "appid": 2070280, + "normalized_name": "ghosts over the water changing the tides of japan's future" + }, + { + "appid": 2070340, + "normalized_name": "世界征服者 成吉思汗(world conqueror genghis khan)" + }, + { + "appid": 2070380, + "normalized_name": "玄龙录the scroll of black loong" + }, + { + "appid": 2070410, + "normalized_name": "flightpath" + }, + { + "appid": 2070420, + "normalized_name": "escape yourself" + }, + { + "appid": 2070440, + "normalized_name": "lunatic" + }, + { + "appid": 2070510, + "normalized_name": "going deep" + }, + { + "appid": 2070540, + "normalized_name": "shogunaria" + }, + { + "appid": 2070550, + "normalized_name": "a castle full of cats" + }, + { + "appid": 2070560, + "normalized_name": "raccoon run" + }, + { + "appid": 2070580, + "normalized_name": "lord ambermaze prologue" + }, + { + "appid": 2070640, + "normalized_name": "reflections path" + }, + { + "appid": 2070750, + "normalized_name": "neoncyber.exe" + }, + { + "appid": 2070830, + "normalized_name": "oppai puzzle l" + }, + { + "appid": 2070850, + "normalized_name": "sakura hime 4" + }, + { + "appid": 2070860, + "normalized_name": "esophaguys" + }, + { + "appid": 2070880, + "normalized_name": "creative console" + }, + { + "appid": 2070920, + "normalized_name": "code machina" + }, + { + "appid": 2070930, + "normalized_name": "bad impressions" + }, + { + "appid": 2070940, + "normalized_name": "wordsmith" + }, + { + "appid": 2070970, + "normalized_name": "noodle party" + }, + { + "appid": 2071020, + "normalized_name": "ボクらの消しゴム落とし 新学期" + }, + { + "appid": 2071030, + "normalized_name": "virtual battle" + }, + { + "appid": 2071040, + "normalized_name": "drive drift x(ドライブドリフトx)" + }, + { + "appid": 2071050, + "normalized_name": "keyboard warrior" + }, + { + "appid": 2071060, + "normalized_name": "acassia" + }, + { + "appid": 2071100, + "normalized_name": "lovely traps dungeon" + }, + { + "appid": 2071120, + "normalized_name": "dreambound" + }, + { + "appid": 2071200, + "normalized_name": "隐秘的角落" + }, + { + "appid": 2071220, + "normalized_name": "rise from the ashes a fantasy world simulator" + }, + { + "appid": 2071240, + "normalized_name": "the wire man" + }, + { + "appid": 2071260, + "normalized_name": "「掌の上で踊らされる」をvr化してみた(仮)" + }, + { + "appid": 2071270, + "normalized_name": "chess corp" + }, + { + "appid": 2071280, + "normalized_name": "ravenswatch" + }, + { + "appid": 2071290, + "normalized_name": "cityscape sprint" + }, + { + "appid": 2071300, + "normalized_name": "al qmrah restaurant مطبخ القمرة" + }, + { + "appid": 2071340, + "normalized_name": "cosmic wartoad" + }, + { + "appid": 2071350, + "normalized_name": "motorbike video puzzle" + }, + { + "appid": 2071360, + "normalized_name": "astronite landing on neplea" + }, + { + "appid": 2071390, + "normalized_name": "chess the lost pieces" + }, + { + "appid": 2071400, + "normalized_name": "bum bum monsterz" + }, + { + "appid": 2071420, + "normalized_name": "megablasters!" + }, + { + "appid": 2071430, + "normalized_name": "roots of yggdrasil" + }, + { + "appid": 2071440, + "normalized_name": "space ranger appleseed" + }, + { + "appid": 2071460, + "normalized_name": "agile firefighter" + }, + { + "appid": 2071490, + "normalized_name": "caverns" + }, + { + "appid": 2071500, + "normalized_name": "islands of insight" + }, + { + "appid": 2071510, + "normalized_name": "goblin rules football" + }, + { + "appid": 2071520, + "normalized_name": "my pleasure season 1" + }, + { + "appid": 2071530, + "normalized_name": "half earth socialism" + }, + { + "appid": 2071540, + "normalized_name": "timmy types" + }, + { + "appid": 2071550, + "normalized_name": "pencil case td" + }, + { + "appid": 2071560, + "normalized_name": "modern fantasy urban legends" + }, + { + "appid": 2071600, + "normalized_name": "大宋广记" + }, + { + "appid": 2071620, + "normalized_name": "potion maker's apprentice" + }, + { + "appid": 2071630, + "normalized_name": "expresslane not a battle royale" + }, + { + "appid": 2071710, + "normalized_name": "blazted vr" + }, + { + "appid": 2071720, + "normalized_name": "dawn vs dusk" + }, + { + "appid": 2071730, + "normalized_name": "catatonic game" + }, + { + "appid": 2071770, + "normalized_name": "sokorun one box" + }, + { + "appid": 2071790, + "normalized_name": "peppermint falls" + }, + { + "appid": 2071800, + "normalized_name": "rezzil player" + }, + { + "appid": 2071870, + "normalized_name": "scpcb unity" + }, + { + "appid": 2071920, + "normalized_name": "woodlawn the end of the world" + }, + { + "appid": 2071980, + "normalized_name": "at home with step sis simulator" + }, + { + "appid": 2072020, + "normalized_name": "escape chase zombie" + }, + { + "appid": 2072030, + "normalized_name": "echo wisp" + }, + { + "appid": 2072040, + "normalized_name": "azrael" + }, + { + "appid": 2072070, + "normalized_name": "rpg plus virtual tabletop" + }, + { + "appid": 2072080, + "normalized_name": "super demon survivors" + }, + { + "appid": 2072090, + "normalized_name": "tax evasion" + }, + { + "appid": 2072110, + "normalized_name": "hop step sing! vr live hop☆summer 2nd" + }, + { + "appid": 2072130, + "normalized_name": "pocket arcade story" + }, + { + "appid": 2072140, + "normalized_name": "epic astro story" + }, + { + "appid": 2072150, + "normalized_name": "kairobotica" + }, + { + "appid": 2072160, + "normalized_name": "coastline" + }, + { + "appid": 2072170, + "normalized_name": "shiny ski resort" + }, + { + "appid": 2072190, + "normalized_name": "cursed colors" + }, + { + "appid": 2072230, + "normalized_name": "battle part" + }, + { + "appid": 2072260, + "normalized_name": "重启战纪" + }, + { + "appid": 2072330, + "normalized_name": "e elementals" + }, + { + "appid": 2072340, + "normalized_name": "zombie virus ukraine 2022" + }, + { + "appid": 2072360, + "normalized_name": "delicious dungeon" + }, + { + "appid": 2072400, + "normalized_name": "futanari sex mile high fun" + }, + { + "appid": 2072420, + "normalized_name": "beastie bay dx" + }, + { + "appid": 2072430, + "normalized_name": "wild park manager" + }, + { + "appid": 2072450, + "normalized_name": "like a dragon infinite wealth" + }, + { + "appid": 2072480, + "normalized_name": "virus protocol" + }, + { + "appid": 2072520, + "normalized_name": "gravity flux" + }, + { + "appid": 2072540, + "normalized_name": "icosi do" + }, + { + "appid": 2072550, + "normalized_name": "the solar ring" + }, + { + "appid": 2072560, + "normalized_name": "dragon ball project multi" + }, + { + "appid": 2072580, + "normalized_name": "wordbed" + }, + { + "appid": 2072600, + "normalized_name": "shadows on the vatican act iii sloth" + }, + { + "appid": 2072610, + "normalized_name": "paravox" + }, + { + "appid": 2072620, + "normalized_name": "dice roller vr" + }, + { + "appid": 2072640, + "normalized_name": "inout" + }, + { + "appid": 2072660, + "normalized_name": "voidborn" + }, + { + "appid": 2072680, + "normalized_name": "jack the nipper" + }, + { + "appid": 2072690, + "normalized_name": "cyclebreaker" + }, + { + "appid": 2072730, + "normalized_name": "chyss" + }, + { + "appid": 2072780, + "normalized_name": "sex adventures the office slut" + }, + { + "appid": 2072820, + "normalized_name": "book quest" + }, + { + "appid": 2072830, + "normalized_name": "dr.pumpkin chapter 2 the scp hunt" + }, + { + "appid": 2072840, + "normalized_name": "word factori" + }, + { + "appid": 2072880, + "normalized_name": "stargazers" + }, + { + "appid": 2072890, + "normalized_name": "foster ghost child | 養小鬼" + }, + { + "appid": 2072910, + "normalized_name": "frido" + }, + { + "appid": 2072950, + "normalized_name": "heavy works" + }, + { + "appid": 2072970, + "normalized_name": "death soul & robots" + }, + { + "appid": 2072980, + "normalized_name": "final knight" + }, + { + "appid": 2073010, + "normalized_name": "berserker a viking board game" + }, + { + "appid": 2073030, + "normalized_name": "priestess lust" + }, + { + "appid": 2073040, + "normalized_name": "earth's center of gravity" + }, + { + "appid": 2073050, + "normalized_name": "エマの武器屋さん" + }, + { + "appid": 2073090, + "normalized_name": "eye of the portal" + }, + { + "appid": 2073110, + "normalized_name": "play with" + }, + { + "appid": 2073140, + "normalized_name": "不可思异世界" + }, + { + "appid": 2073150, + "normalized_name": "eldritch empathy" + }, + { + "appid": 2073220, + "normalized_name": "outland kingdoms" + }, + { + "appid": 2073250, + "normalized_name": "rift of the necrodancer" + }, + { + "appid": 2073280, + "normalized_name": "incarnage" + }, + { + "appid": 2073320, + "normalized_name": "endless melody the symphony of angels" + }, + { + "appid": 2073330, + "normalized_name": "forklift flowerpot" + }, + { + "appid": 2073370, + "normalized_name": "ansiolisis" + }, + { + "appid": 2073410, + "normalized_name": "froggy's farm & friends" + }, + { + "appid": 2073420, + "normalized_name": "paresis" + }, + { + "appid": 2073450, + "normalized_name": "a2c ayry seems to be playtesting a 2d runner shooter from cci" + }, + { + "appid": 2073470, + "normalized_name": "kanjozoku game レーサー online street racing & drift" + }, + { + "appid": 2073490, + "normalized_name": "to the stars" + }, + { + "appid": 2073520, + "normalized_name": "minimal bubble pop" + }, + { + "appid": 2073530, + "normalized_name": "stereo boy" + }, + { + "appid": 2073550, + "normalized_name": "lord of demons" + }, + { + "appid": 2073560, + "normalized_name": "broken tails" + }, + { + "appid": 2073570, + "normalized_name": "holy paladin cynthia" + }, + { + "appid": 2073580, + "normalized_name": "american campground simulator" + }, + { + "appid": 2073590, + "normalized_name": "ludde" + }, + { + "appid": 2073600, + "normalized_name": "武林外传" + }, + { + "appid": 2073620, + "normalized_name": "arena breakout infinite" + }, + { + "appid": 2073630, + "normalized_name": "gun knight all day" + }, + { + "appid": 2073640, + "normalized_name": "the director's disorder pilot episode" + }, + { + "appid": 2073710, + "normalized_name": "tomb of mask" + }, + { + "appid": 2073750, + "normalized_name": "memory" + }, + { + "appid": 2073760, + "normalized_name": "rush hour deluxe" + }, + { + "appid": 2073790, + "normalized_name": "headhorse legacy" + }, + { + "appid": 2073820, + "normalized_name": "钢铁洪流" + }, + { + "appid": 2073830, + "normalized_name": "deceptus" + }, + { + "appid": 2073850, + "normalized_name": "the finals" + }, + { + "appid": 2073870, + "normalized_name": "poggers 2 a maze thing" + }, + { + "appid": 2073880, + "normalized_name": "the burst" + }, + { + "appid": 2073900, + "normalized_name": "修仙者与妖兽" + }, + { + "appid": 2073910, + "normalized_name": "a webbing journey" + }, + { + "appid": 2073950, + "normalized_name": "hotel simulator" + }, + { + "appid": 2073960, + "normalized_name": "missing cat" + }, + { + "appid": 2073970, + "normalized_name": "brave heroes" + }, + { + "appid": 2073980, + "normalized_name": "summer road 10 minute auto roguelite" + }, + { + "appid": 2074000, + "normalized_name": "one eleven" + }, + { + "appid": 2074010, + "normalized_name": "koa a gluttonous wizard" + }, + { + "appid": 2074040, + "normalized_name": "third wild" + }, + { + "appid": 2074050, + "normalized_name": "a simple request" + }, + { + "appid": 2074120, + "normalized_name": "drive" + }, + { + "appid": 2074130, + "normalized_name": "binary a puzzling platformer" + }, + { + "appid": 2074140, + "normalized_name": "tommy gun carnage" + }, + { + "appid": 2074150, + "normalized_name": "sophonce" + }, + { + "appid": 2074190, + "normalized_name": "1001 jigsaw. cute cats 2" + }, + { + "appid": 2074200, + "normalized_name": "1001 jigsaw. cute cats 3" + }, + { + "appid": 2074260, + "normalized_name": "middle evil the priest" + }, + { + "appid": 2074310, + "normalized_name": "blocks of nature" + }, + { + "appid": 2074320, + "normalized_name": "my stepsis is a futanari 2" + }, + { + "appid": 2074330, + "normalized_name": "femboys & fries" + }, + { + "appid": 2074360, + "normalized_name": "the obsessive shadow" + }, + { + "appid": 2074370, + "normalized_name": "replay boys" + }, + { + "appid": 2074390, + "normalized_name": "soul maze" + }, + { + "appid": 2074400, + "normalized_name": "moving shadows" + }, + { + "appid": 2074440, + "normalized_name": "master of the tattooverse" + }, + { + "appid": 2074460, + "normalized_name": "one night at barneys 3" + }, + { + "appid": 2074470, + "normalized_name": "ourlands" + }, + { + "appid": 2074480, + "normalized_name": "sunset routes" + }, + { + "appid": 2074490, + "normalized_name": "moar appeteaser" + }, + { + "appid": 2074500, + "normalized_name": "orbitank" + }, + { + "appid": 2074520, + "normalized_name": "captain!" + }, + { + "appid": 2074530, + "normalized_name": "shafted" + }, + { + "appid": 2074540, + "normalized_name": "ocular deprivation" + }, + { + "appid": 2074550, + "normalized_name": "silent seeker" + }, + { + "appid": 2074560, + "normalized_name": "mr.brocco & co" + }, + { + "appid": 2074580, + "normalized_name": "millie's adventure" + }, + { + "appid": 2074600, + "normalized_name": "pentacore" + }, + { + "appid": 2074620, + "normalized_name": "ars notoria" + }, + { + "appid": 2074630, + "normalized_name": "little nemo and the guardians of slumberland" + }, + { + "appid": 2074690, + "normalized_name": "loplight" + }, + { + "appid": 2074700, + "normalized_name": "bloom roots of renewal" + }, + { + "appid": 2074710, + "normalized_name": "microbes and machines" + }, + { + "appid": 2074740, + "normalized_name": "particle hearts" + }, + { + "appid": 2074750, + "normalized_name": "all in one summer sports vr" + }, + { + "appid": 2074760, + "normalized_name": "star boss" + }, + { + "appid": 2074780, + "normalized_name": "焰色方糖 flamed sugar" + }, + { + "appid": 2074790, + "normalized_name": "what's your emergency" + }, + { + "appid": 2074800, + "normalized_name": "richman 11" + }, + { + "appid": 2074810, + "normalized_name": "8 bit farm" + }, + { + "appid": 2074840, + "normalized_name": "jasper's island" + }, + { + "appid": 2074850, + "normalized_name": "foklor" + }, + { + "appid": 2074870, + "normalized_name": "a rum case in fogtown" + }, + { + "appid": 2074890, + "normalized_name": "少女妖精弹珠台 elf girl pinball" + }, + { + "appid": 2074900, + "normalized_name": "只爱三国" + }, + { + "appid": 2074910, + "normalized_name": "photogenic minds identity" + }, + { + "appid": 2074920, + "normalized_name": "the first descendant" + }, + { + "appid": 2074940, + "normalized_name": "phantom alchemy ~silvia's dynamic urban planning~" + }, + { + "appid": 2074970, + "normalized_name": "very easy match3 game" + }, + { + "appid": 2074980, + "normalized_name": "pewpew live" + }, + { + "appid": 2075020, + "normalized_name": "topia" + }, + { + "appid": 2075040, + "normalized_name": "redstory and the last glimmer" + }, + { + "appid": 2075050, + "normalized_name": "boom slingers" + }, + { + "appid": 2075070, + "normalized_name": "kinitopet" + }, + { + "appid": 2075090, + "normalized_name": "inequalis" + }, + { + "appid": 2075100, + "normalized_name": "chernobylite 2 exclusion zone" + }, + { + "appid": 2075110, + "normalized_name": "迴魂" + }, + { + "appid": 2075120, + "normalized_name": "a clumsy flight" + }, + { + "appid": 2075130, + "normalized_name": "fastest fantasy life simulator" + }, + { + "appid": 2075160, + "normalized_name": "bossgame the final boss is my heart" + }, + { + "appid": 2075170, + "normalized_name": "jelly in the dark" + }, + { + "appid": 2075210, + "normalized_name": "silent bloom" + }, + { + "appid": 2075220, + "normalized_name": "hxh" + }, + { + "appid": 2075230, + "normalized_name": "魔法少女が殺された。 名誉の死と陰の迷宮" + }, + { + "appid": 2075240, + "normalized_name": "baby shark sing & swim party" + }, + { + "appid": 2075250, + "normalized_name": "escape it" + }, + { + "appid": 2075260, + "normalized_name": "cities restored" + }, + { + "appid": 2075280, + "normalized_name": "street artist simulator" + }, + { + "appid": 2075340, + "normalized_name": "eo" + }, + { + "appid": 2075370, + "normalized_name": "old tunnel" + }, + { + "appid": 2075390, + "normalized_name": "super geisha neon" + }, + { + "appid": 2075410, + "normalized_name": "初夏倾语 summer whisper" + }, + { + "appid": 2075460, + "normalized_name": "they speak from the abyss" + }, + { + "appid": 2075470, + "normalized_name": "abloom" + }, + { + "appid": 2075480, + "normalized_name": "power of petanque" + }, + { + "appid": 2075490, + "normalized_name": "catch royale" + }, + { + "appid": 2075540, + "normalized_name": "valete vos viatores" + }, + { + "appid": 2075580, + "normalized_name": "under a new sun" + }, + { + "appid": 2075590, + "normalized_name": "passage" + }, + { + "appid": 2075600, + "normalized_name": "jump among stars" + }, + { + "appid": 2075630, + "normalized_name": "enelia dawn of madness" + }, + { + "appid": 2075640, + "normalized_name": "da paper boy" + }, + { + "appid": 2075650, + "normalized_name": "skybound saga" + }, + { + "appid": 2075660, + "normalized_name": "evil bird simulator" + }, + { + "appid": 2075680, + "normalized_name": "hidden farm 2 top down 3d" + }, + { + "appid": 2075720, + "normalized_name": "9 days" + }, + { + "appid": 2075750, + "normalized_name": "xspeed" + }, + { + "appid": 2075760, + "normalized_name": "mech shuffle" + }, + { + "appid": 2075770, + "normalized_name": "coin blitz" + }, + { + "appid": 2075800, + "normalized_name": "star wars zero company" + }, + { + "appid": 2075820, + "normalized_name": "controller sync" + }, + { + "appid": 2075840, + "normalized_name": "大侦探之勃艮第古堡" + }, + { + "appid": 2075900, + "normalized_name": "hover muscle" + }, + { + "appid": 2075920, + "normalized_name": "flowa" + }, + { + "appid": 2075930, + "normalized_name": "angkor beginnings match 3 puzzle" + }, + { + "appid": 2075960, + "normalized_name": "spirits chronicles flower of hope collector's" + }, + { + "appid": 2076010, + "normalized_name": "under night in birth ii sys celes" + }, + { + "appid": 2076030, + "normalized_name": "the fate of mirador chapter one" + }, + { + "appid": 2076070, + "normalized_name": "marble smashers" + }, + { + "appid": 2076100, + "normalized_name": "gost of time" + }, + { + "appid": 2076140, + "normalized_name": "tavern talk" + }, + { + "appid": 2076200, + "normalized_name": "nyyo" + }, + { + "appid": 2076210, + "normalized_name": "southfield" + }, + { + "appid": 2076220, + "normalized_name": "akai katana shin" + }, + { + "appid": 2076230, + "normalized_name": "coopbots" + }, + { + "appid": 2076240, + "normalized_name": "elementals the magic key" + }, + { + "appid": 2076250, + "normalized_name": "sunday gold prologue" + }, + { + "appid": 2076260, + "normalized_name": "slaughter horse 2" + }, + { + "appid": 2076290, + "normalized_name": "迷鹿:terreno di caccia" + }, + { + "appid": 2076310, + "normalized_name": "tears of magic" + }, + { + "appid": 2076320, + "normalized_name": "the voices games 2d collection" + }, + { + "appid": 2076380, + "normalized_name": "loot frenzy" + }, + { + "appid": 2076390, + "normalized_name": "milf toys 3" + }, + { + "appid": 2076430, + "normalized_name": "protocol xeno" + }, + { + "appid": 2076450, + "normalized_name": "freenergy" + }, + { + "appid": 2076480, + "normalized_name": "mail tail" + }, + { + "appid": 2076490, + "normalized_name": "endless chaos hordes of the afterlife" + }, + { + "appid": 2076500, + "normalized_name": "void titan" + }, + { + "appid": 2076510, + "normalized_name": "dorm days" + }, + { + "appid": 2076520, + "normalized_name": "death in abyss" + }, + { + "appid": 2076540, + "normalized_name": "spiritus astrum" + }, + { + "appid": 2076550, + "normalized_name": "黑铁笼 cage darkness beetle 漆黒の甲虫 囚人籠" + }, + { + "appid": 2076580, + "normalized_name": "pepper grinder" + }, + { + "appid": 2076600, + "normalized_name": "monstertamer" + }, + { + "appid": 2076630, + "normalized_name": "basalt breaker" + }, + { + "appid": 2076650, + "normalized_name": "tennis league vr" + }, + { + "appid": 2076660, + "normalized_name": "voyager 2" + }, + { + "appid": 2076670, + "normalized_name": "fly me to the home!" + }, + { + "appid": 2076720, + "normalized_name": "prostitute simulator" + }, + { + "appid": 2076730, + "normalized_name": "mud way" + }, + { + "appid": 2076740, + "normalized_name": "my stepbro is a femboy" + }, + { + "appid": 2076800, + "normalized_name": "han'yo" + }, + { + "appid": 2076810, + "normalized_name": "further still survivors" + }, + { + "appid": 2076820, + "normalized_name": "vanquish" + }, + { + "appid": 2076830, + "normalized_name": "haxware enforcer games" + }, + { + "appid": 2076840, + "normalized_name": "utomah" + }, + { + "appid": 2076850, + "normalized_name": "keyboard warrior dreamstate" + }, + { + "appid": 2076860, + "normalized_name": "phantasia" + }, + { + "appid": 2076890, + "normalized_name": "rapid retort" + }, + { + "appid": 2076910, + "normalized_name": "the last metal shooter" + }, + { + "appid": 2076920, + "normalized_name": "our hero! last" + }, + { + "appid": 2076950, + "normalized_name": "waifu klondike solitaire" + }, + { + "appid": 2077020, + "normalized_name": "girlpuzzle" + }, + { + "appid": 2077040, + "normalized_name": "明日、初めて彼女と❤" + }, + { + "appid": 2077050, + "normalized_name": "69 natasha hot" + }, + { + "appid": 2077060, + "normalized_name": "satus" + }, + { + "appid": 2077070, + "normalized_name": "shufflepoker" + }, + { + "appid": 2077080, + "normalized_name": "pitstop in purgatory" + }, + { + "appid": 2077100, + "normalized_name": "energy tail" + }, + { + "appid": 2077110, + "normalized_name": "rise of agon" + }, + { + "appid": 2077120, + "normalized_name": "hive" + }, + { + "appid": 2077130, + "normalized_name": "bounce your bullets!" + }, + { + "appid": 2077150, + "normalized_name": "trainformation" + }, + { + "appid": 2077170, + "normalized_name": "aim trainer x" + }, + { + "appid": 2077180, + "normalized_name": "scp daybreak" + }, + { + "appid": 2077190, + "normalized_name": "bana simulator" + }, + { + "appid": 2077200, + "normalized_name": "3d chess q14" + }, + { + "appid": 2077230, + "normalized_name": "circle of orion" + }, + { + "appid": 2077270, + "normalized_name": "koa the forgotten gods" + }, + { + "appid": 2077310, + "normalized_name": "gogmagog" + }, + { + "appid": 2077330, + "normalized_name": "kentor and also bloby in part 1 the krookening" + }, + { + "appid": 2077340, + "normalized_name": "heavens' revolution a lion among the cypress" + }, + { + "appid": 2077370, + "normalized_name": "stellar propeller" + }, + { + "appid": 2077380, + "normalized_name": "the multi medium" + }, + { + "appid": 2077400, + "normalized_name": "lust trip 💕" + }, + { + "appid": 2077430, + "normalized_name": "vespa's test" + }, + { + "appid": 2077460, + "normalized_name": "third power" + }, + { + "appid": 2077490, + "normalized_name": "孟铣(116)" + }, + { + "appid": 2077530, + "normalized_name": "mushroom musical" + }, + { + "appid": 2077550, + "normalized_name": "eremidia archivist's curse" + }, + { + "appid": 2077580, + "normalized_name": "destroiders" + }, + { + "appid": 2077590, + "normalized_name": "sidestep legends" + }, + { + "appid": 2077610, + "normalized_name": "can gym break this?" + }, + { + "appid": 2077650, + "normalized_name": "amok runner" + }, + { + "appid": 2077660, + "normalized_name": "cargo chaos" + }, + { + "appid": 2077670, + "normalized_name": "grapple glide" + }, + { + "appid": 2077680, + "normalized_name": "lamia's bambina" + }, + { + "appid": 2077700, + "normalized_name": "ptrl stockcar" + }, + { + "appid": 2077720, + "normalized_name": "moth lake a horror story" + }, + { + "appid": 2077750, + "normalized_name": "rennsport" + }, + { + "appid": 2077770, + "normalized_name": "the liminal space" + }, + { + "appid": 2077800, + "normalized_name": "streamer's court" + }, + { + "appid": 2077860, + "normalized_name": "unanimy" + }, + { + "appid": 2077870, + "normalized_name": "my dad left me" + }, + { + "appid": 2077890, + "normalized_name": "green hawk platoon" + }, + { + "appid": 2077910, + "normalized_name": "bloodpit skelton ii" + }, + { + "appid": 2077930, + "normalized_name": "sky mammoths" + }, + { + "appid": 2077940, + "normalized_name": "code rivals robot programming battle" + }, + { + "appid": 2077950, + "normalized_name": "pretty girls breakout! plus" + }, + { + "appid": 2077970, + "normalized_name": "finding felicia" + }, + { + "appid": 2077990, + "normalized_name": "junkyard fury 2" + }, + { + "appid": 2078010, + "normalized_name": "legends of immortality" + }, + { + "appid": 2078040, + "normalized_name": "white day 2 the flower that tells lies" + }, + { + "appid": 2078070, + "normalized_name": "puzzling wild iq test" + }, + { + "appid": 2078120, + "normalized_name": "hot and lovely 5" + }, + { + "appid": 2078160, + "normalized_name": "poly puzzle primates" + }, + { + "appid": 2078200, + "normalized_name": "exer gale" + }, + { + "appid": 2078210, + "normalized_name": "数字猜猜乐 bulls and cows" + }, + { + "appid": 2078230, + "normalized_name": "badlands crew" + }, + { + "appid": 2078280, + "normalized_name": "the bugs manor 🦋" + }, + { + "appid": 2078290, + "normalized_name": "queen beast" + }, + { + "appid": 2078350, + "normalized_name": "bluey the videogame" + }, + { + "appid": 2078360, + "normalized_name": "futa university" + }, + { + "appid": 2078370, + "normalized_name": "tesla legacy" + }, + { + "appid": 2078410, + "normalized_name": "space trucker" + }, + { + "appid": 2078450, + "normalized_name": "warhammer 40 000 speed freeks" + }, + { + "appid": 2078460, + "normalized_name": "mirror chains" + }, + { + "appid": 2078480, + "normalized_name": "anomalia" + }, + { + "appid": 2078500, + "normalized_name": "firefly cove" + }, + { + "appid": 2078510, + "normalized_name": "vividlope" + }, + { + "appid": 2078530, + "normalized_name": "light kin" + }, + { + "appid": 2078540, + "normalized_name": "just shoot slimes" + }, + { + "appid": 2078580, + "normalized_name": "invadead" + }, + { + "appid": 2078600, + "normalized_name": "afterslave" + }, + { + "appid": 2078610, + "normalized_name": "super nova party" + }, + { + "appid": 2078640, + "normalized_name": "a frog's job" + }, + { + "appid": 2078650, + "normalized_name": "ghost tag" + }, + { + "appid": 2078680, + "normalized_name": "find my dead body" + }, + { + "appid": 2078710, + "normalized_name": "mage lords of brams" + }, + { + "appid": 2078780, + "normalized_name": "苦主救助中心ⅰ" + }, + { + "appid": 2078790, + "normalized_name": "kubitoz" + }, + { + "appid": 2078810, + "normalized_name": "zombie apocalypse the last defense" + }, + { + "appid": 2078820, + "normalized_name": "gummy jump" + }, + { + "appid": 2078830, + "normalized_name": "奇谭文字游戏" + }, + { + "appid": 2078850, + "normalized_name": "counter stroke grand building" + }, + { + "appid": 2078910, + "normalized_name": "汉尘:腐草为萤" + }, + { + "appid": 2078930, + "normalized_name": "larry the dinosaur 2 something in the cola" + }, + { + "appid": 2079000, + "normalized_name": "totally ratical adventures" + }, + { + "appid": 2079020, + "normalized_name": "sippin hot blickety block n bop those bad battle boys down to size supreme" + }, + { + "appid": 2079080, + "normalized_name": "frogs vs. storks" + }, + { + "appid": 2079110, + "normalized_name": "agent1218" + }, + { + "appid": 2079130, + "normalized_name": "nudomatic" + }, + { + "appid": 2079150, + "normalized_name": "not involved. vermillion" + }, + { + "appid": 2079160, + "normalized_name": "lust dungeon" + }, + { + "appid": 2079180, + "normalized_name": "videoverse" + }, + { + "appid": 2079230, + "normalized_name": "resonance" + }, + { + "appid": 2079240, + "normalized_name": "cavelon" + }, + { + "appid": 2079260, + "normalized_name": "doc the destroyer" + }, + { + "appid": 2079280, + "normalized_name": "slingshot adventure" + }, + { + "appid": 2079290, + "normalized_name": "tales of guards elves(卫灵传说)" + }, + { + "appid": 2079370, + "normalized_name": "bicycle challenge wastelands" + }, + { + "appid": 2079380, + "normalized_name": "old retro shooter" + }, + { + "appid": 2079400, + "normalized_name": "sleepy sheep" + }, + { + "appid": 2079410, + "normalized_name": "the tsar's secret" + }, + { + "appid": 2079430, + "normalized_name": "garden of seif curse of gravehollow peaks" + }, + { + "appid": 2079460, + "normalized_name": "hill dig the mysterious signal" + }, + { + "appid": 2079480, + "normalized_name": "the third shift" + }, + { + "appid": 2079500, + "normalized_name": "colorless world" + }, + { + "appid": 2079520, + "normalized_name": "pornbeat hardcore hot explicit sex" + }, + { + "appid": 2079530, + "normalized_name": "lewis carroll's alice" + }, + { + "appid": 2079540, + "normalized_name": "the palace of unrest" + }, + { + "appid": 2079570, + "normalized_name": "classy train" + }, + { + "appid": 2079580, + "normalized_name": "birds of paradise" + }, + { + "appid": 2079590, + "normalized_name": "dark sun" + }, + { + "appid": 2079600, + "normalized_name": "movafort" + }, + { + "appid": 2079610, + "normalized_name": "wand out a 3d magical gay novel" + }, + { + "appid": 2079640, + "normalized_name": "lazers hurt" + }, + { + "appid": 2079680, + "normalized_name": "evolution tale" + }, + { + "appid": 2079690, + "normalized_name": "unables" + }, + { + "appid": 2079710, + "normalized_name": "fantôme" + }, + { + "appid": 2079800, + "normalized_name": "你与月光同罪 as guilty as the moon" + }, + { + "appid": 2079810, + "normalized_name": "napped" + }, + { + "appid": 2079820, + "normalized_name": "ctrl+alt+destroy" + }, + { + "appid": 2079860, + "normalized_name": "fragments of the afterlife" + }, + { + "appid": 2079890, + "normalized_name": "outatime" + }, + { + "appid": 2079920, + "normalized_name": "name of the will" + }, + { + "appid": 2079930, + "normalized_name": "我的英雄防守阵容绝对不可能有问题" + }, + { + "appid": 2079950, + "normalized_name": "残秽的我们2:普渡慈航 filthy us 2" + }, + { + "appid": 2079960, + "normalized_name": "light" + }, + { + "appid": 2079980, + "normalized_name": "zardy's cave" + }, + { + "appid": 2079990, + "normalized_name": "monch!" + }, + { + "appid": 2080010, + "normalized_name": "they came from the sky 2" + }, + { + "appid": 2080020, + "normalized_name": "home by the river" + }, + { + "appid": 2080060, + "normalized_name": "better off dead life as a prison guard" + }, + { + "appid": 2080070, + "normalized_name": "avocado puzzle quest" + }, + { + "appid": 2080090, + "normalized_name": "天下3" + }, + { + "appid": 2080100, + "normalized_name": "ruadh warbands" + }, + { + "appid": 2080130, + "normalized_name": "a quest that became legend" + }, + { + "appid": 2080140, + "normalized_name": "savage age" + }, + { + "appid": 2080160, + "normalized_name": "cosmic cruiser" + }, + { + "appid": 2080170, + "normalized_name": "stay alive" + }, + { + "appid": 2080210, + "normalized_name": "my hotel echoes of the past" + }, + { + "appid": 2080240, + "normalized_name": "summer pleasure" + }, + { + "appid": 2080250, + "normalized_name": "tower of chaos" + }, + { + "appid": 2080280, + "normalized_name": "69 naomi hot" + }, + { + "appid": 2080290, + "normalized_name": "69 ember hot" + }, + { + "appid": 2080300, + "normalized_name": "69 yuuko hot" + }, + { + "appid": 2080380, + "normalized_name": "retro invasion" + }, + { + "appid": 2080420, + "normalized_name": "vault circuit" + }, + { + "appid": 2080450, + "normalized_name": "the empress quest full moons saga" + }, + { + "appid": 2080470, + "normalized_name": "turing quest" + }, + { + "appid": 2080480, + "normalized_name": "harpoon" + }, + { + "appid": 2080490, + "normalized_name": "leaving the formation" + }, + { + "appid": 2080510, + "normalized_name": "mongrel games minigames" + }, + { + "appid": 2080560, + "normalized_name": "fly tales" + }, + { + "appid": 2080570, + "normalized_name": "noammo" + }, + { + "appid": 2080580, + "normalized_name": "hell madness" + }, + { + "appid": 2080620, + "normalized_name": "after corruption" + }, + { + "appid": 2080640, + "normalized_name": "first date late to date" + }, + { + "appid": 2080660, + "normalized_name": "bright garden" + }, + { + "appid": 2080670, + "normalized_name": "dark lady" + }, + { + "appid": 2080690, + "normalized_name": "sunkenland" + }, + { + "appid": 2080700, + "normalized_name": "junkienator" + }, + { + "appid": 2080800, + "normalized_name": "spirit hunter death mark ii" + }, + { + "appid": 2080820, + "normalized_name": "squadblast" + }, + { + "appid": 2080880, + "normalized_name": "farmhand go!" + }, + { + "appid": 2080890, + "normalized_name": "gem venture" + }, + { + "appid": 2080900, + "normalized_name": "starry navigator 星际领航员" + }, + { + "appid": 2080930, + "normalized_name": "whispering abyss" + }, + { + "appid": 2080940, + "normalized_name": "turbo force" + }, + { + "appid": 2080950, + "normalized_name": "rawbots" + }, + { + "appid": 2080960, + "normalized_name": "phijkchu quest" + }, + { + "appid": 2080970, + "normalized_name": "ducky's delivery service" + }, + { + "appid": 2080980, + "normalized_name": "mono playground" + }, + { + "appid": 2081080, + "normalized_name": "capes" + }, + { + "appid": 2081090, + "normalized_name": "4 the elements" + }, + { + "appid": 2081170, + "normalized_name": "loose life" + }, + { + "appid": 2081180, + "normalized_name": "squishcraft" + }, + { + "appid": 2081220, + "normalized_name": "overtop" + }, + { + "appid": 2081230, + "normalized_name": "parry nightmare" + }, + { + "appid": 2081240, + "normalized_name": "幻恋逢星之时" + }, + { + "appid": 2081290, + "normalized_name": "battle survival in space" + }, + { + "appid": 2081300, + "normalized_name": "bartox" + }, + { + "appid": 2081310, + "normalized_name": "tobor" + }, + { + "appid": 2081340, + "normalized_name": "kamibako mythology of cube" + }, + { + "appid": 2081350, + "normalized_name": "summoner tale" + }, + { + "appid": 2081360, + "normalized_name": "humans are useless" + }, + { + "appid": 2081390, + "normalized_name": "forbidden myths" + }, + { + "appid": 2081400, + "normalized_name": "gal guardians demon purge" + }, + { + "appid": 2081420, + "normalized_name": "witch amelia" + }, + { + "appid": 2081460, + "normalized_name": "breeze" + }, + { + "appid": 2081470, + "normalized_name": "red matter 2" + }, + { + "appid": 2081490, + "normalized_name": "die o'clock" + }, + { + "appid": 2081500, + "normalized_name": "bitgun survivors" + }, + { + "appid": 2081540, + "normalized_name": "rustled pete" + }, + { + "appid": 2081580, + "normalized_name": "belonging" + }, + { + "appid": 2081590, + "normalized_name": "watch the fish" + }, + { + "appid": 2081600, + "normalized_name": "the starfighter" + }, + { + "appid": 2081610, + "normalized_name": "the king's tournament" + }, + { + "appid": 2081630, + "normalized_name": "to be a king volume 1" + }, + { + "appid": 2081640, + "normalized_name": "the voices games 3d collection" + }, + { + "appid": 2081670, + "normalized_name": "calamity creatures" + }, + { + "appid": 2081720, + "normalized_name": "epic hero game" + }, + { + "appid": 2081730, + "normalized_name": "vestige memoria" + }, + { + "appid": 2081760, + "normalized_name": "the pale" + }, + { + "appid": 2081770, + "normalized_name": "northern kingdoms" + }, + { + "appid": 2081790, + "normalized_name": "cards from the west" + }, + { + "appid": 2081800, + "normalized_name": "khemia" + }, + { + "appid": 2081810, + "normalized_name": "orion's end" + }, + { + "appid": 2081830, + "normalized_name": "hungry adventurer" + }, + { + "appid": 2081860, + "normalized_name": "the van game" + }, + { + "appid": 2081880, + "normalized_name": "kathana" + }, + { + "appid": 2081930, + "normalized_name": "carlos the taco" + }, + { + "appid": 2081960, + "normalized_name": "moon whalers" + }, + { + "appid": 2081970, + "normalized_name": "swirl w@tch" + }, + { + "appid": 2082000, + "normalized_name": "wormwood" + }, + { + "appid": 2082040, + "normalized_name": "volunteer" + }, + { + "appid": 2082060, + "normalized_name": "my furry stepmom 🐾" + }, + { + "appid": 2082160, + "normalized_name": "beauty and the beast" + }, + { + "appid": 2082170, + "normalized_name": "onlyfap simulator 2 💦" + }, + { + "appid": 2082210, + "normalized_name": "twelfth life" + }, + { + "appid": 2082230, + "normalized_name": "trepidation" + }, + { + "appid": 2082260, + "normalized_name": "taxinaut" + }, + { + "appid": 2082270, + "normalized_name": "artifact" + }, + { + "appid": 2082290, + "normalized_name": "monkey milk" + }, + { + "appid": 2082300, + "normalized_name": "legacy" + }, + { + "appid": 2082310, + "normalized_name": "the wave" + }, + { + "appid": 2082320, + "normalized_name": "the master's pupil" + }, + { + "appid": 2082350, + "normalized_name": "vectorio" + }, + { + "appid": 2082400, + "normalized_name": "decisive" + }, + { + "appid": 2082410, + "normalized_name": "anomaly collapse" + }, + { + "appid": 2082420, + "normalized_name": "rocketjump" + }, + { + "appid": 2082440, + "normalized_name": "jumping!" + }, + { + "appid": 2082510, + "normalized_name": "bunker 21 extended" + }, + { + "appid": 2082520, + "normalized_name": "immortal heritage" + }, + { + "appid": 2082530, + "normalized_name": "out of hell" + }, + { + "appid": 2082540, + "normalized_name": "航海霸業 maritime hegemony" + }, + { + "appid": 2082560, + "normalized_name": "mutagenic" + }, + { + "appid": 2082570, + "normalized_name": "scp containment breach reborn" + }, + { + "appid": 2082580, + "normalized_name": "come together" + }, + { + "appid": 2082620, + "normalized_name": "loot express delivery service" + }, + { + "appid": 2082650, + "normalized_name": "dodge mania" + }, + { + "appid": 2082690, + "normalized_name": "the human story" + }, + { + "appid": 2082700, + "normalized_name": "mona" + }, + { + "appid": 2082710, + "normalized_name": "巴别塔" + }, + { + "appid": 2082720, + "normalized_name": "quick pleasure" + }, + { + "appid": 2082730, + "normalized_name": "empire of empires" + }, + { + "appid": 2082790, + "normalized_name": "a town called happenstance" + }, + { + "appid": 2082810, + "normalized_name": "magical angel fairy princess" + }, + { + "appid": 2082840, + "normalized_name": "jasper and the city of lights" + }, + { + "appid": 2082860, + "normalized_name": "hue hills" + }, + { + "appid": 2082880, + "normalized_name": "neural construct" + }, + { + "appid": 2082900, + "normalized_name": "star devil" + }, + { + "appid": 2082940, + "normalized_name": "swords and sorcery sovereign" + }, + { + "appid": 2082950, + "normalized_name": "hansel and gretel" + }, + { + "appid": 2082960, + "normalized_name": "freed software" + }, + { + "appid": 2082980, + "normalized_name": "persist online" + }, + { + "appid": 2082990, + "normalized_name": "the one penny adventure" + }, + { + "appid": 2083000, + "normalized_name": "my newspaper" + }, + { + "appid": 2083010, + "normalized_name": "another world quest" + }, + { + "appid": 2083030, + "normalized_name": "the sheriff" + }, + { + "appid": 2083060, + "normalized_name": "furry femmes making an obedient bitch" + }, + { + "appid": 2083100, + "normalized_name": "megafortress collection" + }, + { + "appid": 2083120, + "normalized_name": "car jump challenge" + }, + { + "appid": 2083160, + "normalized_name": "disfigure" + }, + { + "appid": 2083180, + "normalized_name": "cat herder" + }, + { + "appid": 2083210, + "normalized_name": "super woden gp 2" + }, + { + "appid": 2083220, + "normalized_name": "alchem it" + }, + { + "appid": 2083240, + "normalized_name": "asterogues" + }, + { + "appid": 2083250, + "normalized_name": "rukimin's disappointing adventure! ~shobomi and the phantom ruins~" + }, + { + "appid": 2083310, + "normalized_name": "motel styx" + }, + { + "appid": 2083320, + "normalized_name": "omega warp" + }, + { + "appid": 2083330, + "normalized_name": "an old school adventure fps go to hell" + }, + { + "appid": 2083360, + "normalized_name": "spectre of eternity" + }, + { + "appid": 2083380, + "normalized_name": "heartbite dating in daylight" + }, + { + "appid": 2083410, + "normalized_name": "aria's melody" + }, + { + "appid": 2083430, + "normalized_name": "super artificial intelligence psike" + }, + { + "appid": 2083440, + "normalized_name": "rystel" + }, + { + "appid": 2083450, + "normalized_name": "scuff(ed)" + }, + { + "appid": 2083470, + "normalized_name": "utter inverse" + }, + { + "appid": 2083490, + "normalized_name": "sexy hentai puzzle" + }, + { + "appid": 2083540, + "normalized_name": "disc golf online" + }, + { + "appid": 2083560, + "normalized_name": "eva:final mission" + }, + { + "appid": 2083580, + "normalized_name": "oblige of chaos" + }, + { + "appid": 2083600, + "normalized_name": "梦蝶" + }, + { + "appid": 2083630, + "normalized_name": "ailin traps and treasures" + }, + { + "appid": 2083640, + "normalized_name": "maze of the gamja" + }, + { + "appid": 2083650, + "normalized_name": "sobokosnake" + }, + { + "appid": 2083660, + "normalized_name": "littlelands" + }, + { + "appid": 2083670, + "normalized_name": "cats yakuza online card game" + }, + { + "appid": 2083680, + "normalized_name": "pegsoli+" + }, + { + "appid": 2083690, + "normalized_name": "universe treasure" + }, + { + "appid": 2083700, + "normalized_name": "ashen will" + }, + { + "appid": 2083730, + "normalized_name": "physics playground" + }, + { + "appid": 2083790, + "normalized_name": "capitals" + }, + { + "appid": 2083800, + "normalized_name": "trimurti online" + }, + { + "appid": 2083830, + "normalized_name": "vrealistic fight aim for the chest" + }, + { + "appid": 2083840, + "normalized_name": "her name was fire" + }, + { + "appid": 2083850, + "normalized_name": "the nutcracker" + }, + { + "appid": 2083860, + "normalized_name": "pink man adventure" + }, + { + "appid": 2083870, + "normalized_name": "enworden" + }, + { + "appid": 2083900, + "normalized_name": "flerp" + }, + { + "appid": 2083910, + "normalized_name": "iron dungeon" + }, + { + "appid": 2083920, + "normalized_name": "myth of mirka" + }, + { + "appid": 2083940, + "normalized_name": "dross" + }, + { + "appid": 2083960, + "normalized_name": "心の力の生徒達" + }, + { + "appid": 2083990, + "normalized_name": "coastline survival" + }, + { + "appid": 2084000, + "normalized_name": "shogun showdown" + }, + { + "appid": 2084010, + "normalized_name": "cosmoodyssey trip to mars" + }, + { + "appid": 2084030, + "normalized_name": "pitch black a dusklight story episode one" + }, + { + "appid": 2084040, + "normalized_name": "furry android hentai" + }, + { + "appid": 2084050, + "normalized_name": "unsolved case" + }, + { + "appid": 2084070, + "normalized_name": "ruby tunnel vision" + }, + { + "appid": 2084080, + "normalized_name": "nomads in the dust" + }, + { + "appid": 2084090, + "normalized_name": "magic click" + }, + { + "appid": 2084100, + "normalized_name": "the dancer" + }, + { + "appid": 2084110, + "normalized_name": "desktop jumpscares" + }, + { + "appid": 2084170, + "normalized_name": "tend" + }, + { + "appid": 2084180, + "normalized_name": "case 03 true cannibal boy" + }, + { + "appid": 2084190, + "normalized_name": "a catchy game intratag" + }, + { + "appid": 2084210, + "normalized_name": "alight lunar survival" + }, + { + "appid": 2084220, + "normalized_name": "invisible man vr in eleanor's room" + }, + { + "appid": 2084230, + "normalized_name": "layer hunt" + }, + { + "appid": 2084240, + "normalized_name": "starshifter" + }, + { + "appid": 2084250, + "normalized_name": "the hunter's journals wight chapel dreams" + }, + { + "appid": 2084260, + "normalized_name": "magefall" + }, + { + "appid": 2084270, + "normalized_name": "maze ablaze" + }, + { + "appid": 2084300, + "normalized_name": "schism" + }, + { + "appid": 2084330, + "normalized_name": "sisters of sweetwater 🧕" + }, + { + "appid": 2084360, + "normalized_name": "extime primal menace" + }, + { + "appid": 2084380, + "normalized_name": "vchat" + }, + { + "appid": 2084410, + "normalized_name": "sonohigurashi vs. touhou universe2" + }, + { + "appid": 2084430, + "normalized_name": "the proponent" + }, + { + "appid": 2084440, + "normalized_name": "parkdens" + }, + { + "appid": 2084450, + "normalized_name": "direct contact" + }, + { + "appid": 2084460, + "normalized_name": "annie and the ai" + }, + { + "appid": 2084470, + "normalized_name": "jet dancer" + }, + { + "appid": 2084510, + "normalized_name": "pathogen survival" + }, + { + "appid": 2084520, + "normalized_name": "hentai nazi girl" + }, + { + "appid": 2084580, + "normalized_name": "mr rex's zealous adventure" + }, + { + "appid": 2084590, + "normalized_name": "alkurai" + }, + { + "appid": 2084620, + "normalized_name": "all hallows evie" + }, + { + "appid": 2084660, + "normalized_name": "master of the earth chapter 1" + }, + { + "appid": 2084720, + "normalized_name": "home run high" + }, + { + "appid": 2084740, + "normalized_name": "mochi a girl" + }, + { + "appid": 2084820, + "normalized_name": "gold drill" + }, + { + "appid": 2084880, + "normalized_name": "diets & deities" + }, + { + "appid": 2084930, + "normalized_name": "ever seen a cat? 3" + }, + { + "appid": 2084940, + "normalized_name": "mysterious school" + }, + { + "appid": 2084960, + "normalized_name": "battlefieldpriest" + }, + { + "appid": 2084970, + "normalized_name": "etheria restart" + }, + { + "appid": 2085000, + "normalized_name": "saga emerald beyond" + }, + { + "appid": 2085020, + "normalized_name": "drill and dig!" + }, + { + "appid": 2085040, + "normalized_name": "toridori" + }, + { + "appid": 2085080, + "normalized_name": "princess hunter" + }, + { + "appid": 2085100, + "normalized_name": "鬼湧村 ホラーゲーム" + }, + { + "appid": 2085120, + "normalized_name": "utopiq" + }, + { + "appid": 2085140, + "normalized_name": "insurgence last wishes" + }, + { + "appid": 2085160, + "normalized_name": "buy hyacinths" + }, + { + "appid": 2085230, + "normalized_name": "dawn of kagura maika's story the dragon's wrath" + }, + { + "appid": 2085240, + "normalized_name": "dance hero more jiggle" + }, + { + "appid": 2085270, + "normalized_name": "arcade waifu" + }, + { + "appid": 2085290, + "normalized_name": "veg out crew fps" + }, + { + "appid": 2085310, + "normalized_name": "emberbane" + }, + { + "appid": 2085320, + "normalized_name": "meow defence" + }, + { + "appid": 2085330, + "normalized_name": "polyroyale" + }, + { + "appid": 2085360, + "normalized_name": "insomnia theater in the head" + }, + { + "appid": 2085370, + "normalized_name": "classified france '44" + }, + { + "appid": 2085410, + "normalized_name": "women's prison 絕對人權女子監獄" + }, + { + "appid": 2085440, + "normalized_name": "passing by a tailwind journey" + }, + { + "appid": 2085450, + "normalized_name": "zombie death ball" + }, + { + "appid": 2085460, + "normalized_name": "the last fighter" + }, + { + "appid": 2085490, + "normalized_name": "the sexorcist" + }, + { + "appid": 2085510, + "normalized_name": "fly fly tuk tuk" + }, + { + "appid": 2085540, + "normalized_name": "stick it to the stickman" + }, + { + "appid": 2085550, + "normalized_name": "truck simulator in city" + }, + { + "appid": 2085580, + "normalized_name": "hello cave monster!" + }, + { + "appid": 2085600, + "normalized_name": "gyro gear tournament+" + }, + { + "appid": 2085610, + "normalized_name": "franco and apollo" + }, + { + "appid": 2085620, + "normalized_name": "second sun" + }, + { + "appid": 2085640, + "normalized_name": "dreamy love" + }, + { + "appid": 2085660, + "normalized_name": "devices tycoon" + }, + { + "appid": 2085760, + "normalized_name": "rasant" + }, + { + "appid": 2085790, + "normalized_name": "mutant meltdown" + }, + { + "appid": 2085800, + "normalized_name": "kalinur" + }, + { + "appid": 2085860, + "normalized_name": "cat dungeon" + }, + { + "appid": 2085870, + "normalized_name": "混沌之地" + }, + { + "appid": 2085890, + "normalized_name": "rats in a cage" + }, + { + "appid": 2085910, + "normalized_name": "no time for caution" + }, + { + "appid": 2085920, + "normalized_name": "tyrone vs cops vr" + }, + { + "appid": 2085970, + "normalized_name": "cracking the cryptic" + }, + { + "appid": 2085980, + "normalized_name": "roll" + }, + { + "appid": 2086050, + "normalized_name": "oh so hero!" + }, + { + "appid": 2086060, + "normalized_name": "dimensional slaughter" + }, + { + "appid": 2086090, + "normalized_name": "violet's party mania" + }, + { + "appid": 2086120, + "normalized_name": "royal idiots" + }, + { + "appid": 2086130, + "normalized_name": "canfield solitaire collection" + }, + { + "appid": 2086140, + "normalized_name": "rice repetitive indie combat experience" + }, + { + "appid": 2086150, + "normalized_name": "curse of black bone" + }, + { + "appid": 2086180, + "normalized_name": "i commissioned some bees 4" + }, + { + "appid": 2086190, + "normalized_name": "protocol aftertime" + }, + { + "appid": 2086270, + "normalized_name": "dodgeking" + }, + { + "appid": 2086280, + "normalized_name": "deus novum" + }, + { + "appid": 2086320, + "normalized_name": "lofi checkers" + }, + { + "appid": 2086360, + "normalized_name": "double dragon advance" + }, + { + "appid": 2086370, + "normalized_name": "super double dragon" + }, + { + "appid": 2086380, + "normalized_name": "miss kobayashi's dragon maid burst forth!! choro gon☆breath director's cut" + }, + { + "appid": 2086390, + "normalized_name": "midnight saga the monster" + }, + { + "appid": 2086420, + "normalized_name": "我!刘备!卖鞋救汉!" + }, + { + "appid": 2086430, + "normalized_name": "nimrods" + }, + { + "appid": 2086440, + "normalized_name": "motorcycle racing vr" + }, + { + "appid": 2086450, + "normalized_name": "eggboy" + }, + { + "appid": 2086460, + "normalized_name": "idle factory" + }, + { + "appid": 2086490, + "normalized_name": "binary." + }, + { + "appid": 2086540, + "normalized_name": "alchemist tris's desire" + }, + { + "appid": 2086560, + "normalized_name": "银河轨迹:无尽战争" + }, + { + "appid": 2086570, + "normalized_name": "mmi" + }, + { + "appid": 2086580, + "normalized_name": "hiddens awakening" + }, + { + "appid": 2086640, + "normalized_name": "cat seeker" + }, + { + "appid": 2086680, + "normalized_name": "castle craft" + }, + { + "appid": 2086690, + "normalized_name": "enoch children of fate" + }, + { + "appid": 2086720, + "normalized_name": "elementary trolleyology" + }, + { + "appid": 2086740, + "normalized_name": "balam bounce hell" + }, + { + "appid": 2086760, + "normalized_name": "quatros noir" + }, + { + "appid": 2086780, + "normalized_name": "b.l.a.c.k. 1" + }, + { + "appid": 2086790, + "normalized_name": "this is land of mysterious" + }, + { + "appid": 2086800, + "normalized_name": "point rescue arcade" + }, + { + "appid": 2086810, + "normalized_name": "golden rails world’s fair" + }, + { + "appid": 2086820, + "normalized_name": "heroes of hellas origins part two" + }, + { + "appid": 2086840, + "normalized_name": "jumalien" + }, + { + "appid": 2086850, + "normalized_name": "guardians of holme" + }, + { + "appid": 2086880, + "normalized_name": "upgrader" + }, + { + "appid": 2086890, + "normalized_name": "connect the dots 3d" + }, + { + "appid": 2086910, + "normalized_name": "verses of enchantment" + }, + { + "appid": 2086970, + "normalized_name": "angel's awakening" + }, + { + "appid": 2086980, + "normalized_name": "the in between" + }, + { + "appid": 2086990, + "normalized_name": "tanks boom boom" + }, + { + "appid": 2087000, + "normalized_name": "idle baker boss" + }, + { + "appid": 2087010, + "normalized_name": "project albatros" + }, + { + "appid": 2087070, + "normalized_name": "obviously inappropriate content" + }, + { + "appid": 2087080, + "normalized_name": "land of borealia" + }, + { + "appid": 2087150, + "normalized_name": "sosso" + }, + { + "appid": 2087180, + "normalized_name": "都市媚影 cityfascination" + }, + { + "appid": 2087200, + "normalized_name": "anodos" + }, + { + "appid": 2087230, + "normalized_name": "big boss a villain simulator" + }, + { + "appid": 2087260, + "normalized_name": "living legends wrath of the beast collector's" + }, + { + "appid": 2087290, + "normalized_name": "bvovb bruising vengeance of the vintage boxer" + }, + { + "appid": 2087300, + "normalized_name": "rocketeer" + }, + { + "appid": 2087320, + "normalized_name": "nara facing fire" + }, + { + "appid": 2087350, + "normalized_name": "climb and fight mafia" + }, + { + "appid": 2087360, + "normalized_name": "wilderness game stalker vr north america" + }, + { + "appid": 2087370, + "normalized_name": "super maze planet" + }, + { + "appid": 2087390, + "normalized_name": "neon fighter" + }, + { + "appid": 2087430, + "normalized_name": "sneaky it support" + }, + { + "appid": 2087440, + "normalized_name": "hentai tentacle survivors" + }, + { + "appid": 2087450, + "normalized_name": "boooooooooobs" + }, + { + "appid": 2087460, + "normalized_name": "ruff ghanor" + }, + { + "appid": 2087470, + "normalized_name": "i commissioned some bees 5" + }, + { + "appid": 2087480, + "normalized_name": "i commissioned some bees 6" + }, + { + "appid": 2087500, + "normalized_name": "death of eternity" + }, + { + "appid": 2087510, + "normalized_name": "amazon quest" + }, + { + "appid": 2087610, + "normalized_name": "ufo unidentified falling objects" + }, + { + "appid": 2087630, + "normalized_name": "umbra sepulcri" + }, + { + "appid": 2087640, + "normalized_name": "game name" + }, + { + "appid": 2087840, + "normalized_name": "neon cyber samurai" + }, + { + "appid": 2087850, + "normalized_name": "tribe war" + }, + { + "appid": 2087860, + "normalized_name": "the lost" + }, + { + "appid": 2087880, + "normalized_name": "ending tau" + }, + { + "appid": 2087910, + "normalized_name": "soulvars" + }, + { + "appid": 2087920, + "normalized_name": "wispera" + }, + { + "appid": 2087940, + "normalized_name": "non stop raiders" + }, + { + "appid": 2087960, + "normalized_name": "custombullet" + }, + { + "appid": 2087980, + "normalized_name": "project bs" + }, + { + "appid": 2088000, + "normalized_name": "亂噏三國" + }, + { + "appid": 2088020, + "normalized_name": "undefeated genesis" + }, + { + "appid": 2088030, + "normalized_name": "长梦" + }, + { + "appid": 2088070, + "normalized_name": "zombie hunter" + }, + { + "appid": 2088080, + "normalized_name": "keek" + }, + { + "appid": 2088120, + "normalized_name": "bloodwatch" + }, + { + "appid": 2088160, + "normalized_name": "天外武林 (traveler of wuxia)" + }, + { + "appid": 2088170, + "normalized_name": "medal of guardians" + }, + { + "appid": 2088210, + "normalized_name": "toon team" + }, + { + "appid": 2088240, + "normalized_name": "wardogz" + }, + { + "appid": 2088250, + "normalized_name": "瘟疫清零计划 project zero" + }, + { + "appid": 2088270, + "normalized_name": "my sticker book" + }, + { + "appid": 2088280, + "normalized_name": "lazaret" + }, + { + "appid": 2088290, + "normalized_name": "natural disasters" + }, + { + "appid": 2088300, + "normalized_name": "restless lands" + }, + { + "appid": 2088330, + "normalized_name": "f2d steer to persevere" + }, + { + "appid": 2088340, + "normalized_name": "bratz flaunt your fashion" + }, + { + "appid": 2088360, + "normalized_name": "watch your plastic duck" + }, + { + "appid": 2088400, + "normalized_name": "fast royal" + }, + { + "appid": 2088420, + "normalized_name": "fill and cross pirate riddles 3" + }, + { + "appid": 2088430, + "normalized_name": "holiday jigsaw christmas 2" + }, + { + "appid": 2088440, + "normalized_name": "holiday jigsaw christmas 3" + }, + { + "appid": 2088450, + "normalized_name": "holiday jigsaw thanksgiving day 3" + }, + { + "appid": 2088460, + "normalized_name": "jigsaw boom 2" + }, + { + "appid": 2088520, + "normalized_name": "shooting game kari" + }, + { + "appid": 2088540, + "normalized_name": "teahouse of souls" + }, + { + "appid": 2088550, + "normalized_name": "dying breed" + }, + { + "appid": 2088570, + "normalized_name": "tiny rogues" + }, + { + "appid": 2088590, + "normalized_name": "eleven sunrises" + }, + { + "appid": 2088600, + "normalized_name": "vacation adventures park ranger 14" + }, + { + "appid": 2088630, + "normalized_name": "airport ground handling simulator vr" + }, + { + "appid": 2088650, + "normalized_name": "mist slayer" + }, + { + "appid": 2088660, + "normalized_name": "emiko's pledge 3" + }, + { + "appid": 2088670, + "normalized_name": "puzzline" + }, + { + "appid": 2088680, + "normalized_name": "天香与小百合 tinheung & sayuri" + }, + { + "appid": 2088710, + "normalized_name": "pud pud in weird world" + }, + { + "appid": 2088720, + "normalized_name": "hellfire" + }, + { + "appid": 2088730, + "normalized_name": "bicyclesim" + }, + { + "appid": 2088750, + "normalized_name": "mystic gate" + }, + { + "appid": 2088770, + "normalized_name": "deck of souls" + }, + { + "appid": 2088810, + "normalized_name": "perfect tides station to station" + }, + { + "appid": 2088840, + "normalized_name": "picayune dreams" + }, + { + "appid": 2088850, + "normalized_name": "just a gigolo going to wet cum!" + }, + { + "appid": 2088900, + "normalized_name": "hostile mars prologue" + }, + { + "appid": 2088910, + "normalized_name": "spark vs the marshmallows" + }, + { + "appid": 2088920, + "normalized_name": "logicircuit" + }, + { + "appid": 2088930, + "normalized_name": "try again" + }, + { + "appid": 2088960, + "normalized_name": "roghill incident" + }, + { + "appid": 2089000, + "normalized_name": "the past rhapsody" + }, + { + "appid": 2089040, + "normalized_name": "la sombra" + }, + { + "appid": 2089060, + "normalized_name": "furry boss 💼" + }, + { + "appid": 2089070, + "normalized_name": "beboop to the rescue! math game" + }, + { + "appid": 2089080, + "normalized_name": "loot box waifus" + }, + { + "appid": 2089110, + "normalized_name": "hotel greenwood" + }, + { + "appid": 2089120, + "normalized_name": "sex in the office" + }, + { + "appid": 2089140, + "normalized_name": "super patriota simulator" + }, + { + "appid": 2089170, + "normalized_name": "punchbots" + }, + { + "appid": 2089180, + "normalized_name": "vanilla brain exam" + }, + { + "appid": 2089230, + "normalized_name": "bounce classic" + }, + { + "appid": 2089250, + "normalized_name": "alpha response" + }, + { + "appid": 2089280, + "normalized_name": "noisy neighbor" + }, + { + "appid": 2089330, + "normalized_name": "双线交锋:收获日" + }, + { + "appid": 2089340, + "normalized_name": "adventures of quin85" + }, + { + "appid": 2089350, + "normalized_name": "hatsune miku logic paint s" + }, + { + "appid": 2089450, + "normalized_name": "hot springs story 2" + }, + { + "appid": 2089460, + "normalized_name": "demong hunter" + }, + { + "appid": 2089480, + "normalized_name": "the wave of monke" + }, + { + "appid": 2089490, + "normalized_name": "雛ちゃんブレイカー2ndbreak" + }, + { + "appid": 2089500, + "normalized_name": "arcana of paradise —the tower—" + }, + { + "appid": 2089510, + "normalized_name": "an opportunity" + }, + { + "appid": 2089520, + "normalized_name": "reborn vr" + }, + { + "appid": 2089590, + "normalized_name": "quantumvr" + }, + { + "appid": 2089600, + "normalized_name": "urban myth dissolution center" + }, + { + "appid": 2089620, + "normalized_name": "dragon prana" + }, + { + "appid": 2089630, + "normalized_name": "dark atlas infernum" + }, + { + "appid": 2089640, + "normalized_name": "lost color" + }, + { + "appid": 2089710, + "normalized_name": "a most extraordinary gnome" + }, + { + "appid": 2089750, + "normalized_name": "super spyroxo adventures island of dnfoo" + }, + { + "appid": 2089770, + "normalized_name": "house of pain" + }, + { + "appid": 2089780, + "normalized_name": "robo50" + }, + { + "appid": 2089790, + "normalized_name": "v3 kommando (tech preview)" + }, + { + "appid": 2089820, + "normalized_name": "wolfstar adventures in the inu system" + }, + { + "appid": 2089830, + "normalized_name": "beat slayer" + }, + { + "appid": 2089890, + "normalized_name": "replicore" + }, + { + "appid": 2089920, + "normalized_name": "shadow heroes" + }, + { + "appid": 2089930, + "normalized_name": "wine & war" + }, + { + "appid": 2089980, + "normalized_name": "extremely powerful capybaras" + }, + { + "appid": 2089990, + "normalized_name": "dash the fox & three dreadful pigs" + }, + { + "appid": 2090030, + "normalized_name": "blackbox" + }, + { + "appid": 2090040, + "normalized_name": "odium" + }, + { + "appid": 2090050, + "normalized_name": "girls vs zombies" + }, + { + "appid": 2090100, + "normalized_name": "extraction force" + }, + { + "appid": 2090130, + "normalized_name": "the rift between us" + }, + { + "appid": 2090140, + "normalized_name": "power ball 2022" + }, + { + "appid": 2090150, + "normalized_name": "furry sex poker 🃏♥" + }, + { + "appid": 2090160, + "normalized_name": "sissa's path" + }, + { + "appid": 2090170, + "normalized_name": "abigor" + }, + { + "appid": 2090180, + "normalized_name": "project possession" + }, + { + "appid": 2090200, + "normalized_name": "cryogenesis" + }, + { + "appid": 2090210, + "normalized_name": "threads of time" + }, + { + "appid": 2090220, + "normalized_name": "onehanded" + }, + { + "appid": 2090300, + "normalized_name": "grim survivor" + }, + { + "appid": 2090370, + "normalized_name": "river city rival showdown" + }, + { + "appid": 2090390, + "normalized_name": "schrödinger's call" + }, + { + "appid": 2090400, + "normalized_name": "seabed frog" + }, + { + "appid": 2090450, + "normalized_name": "lumba redux" + }, + { + "appid": 2090460, + "normalized_name": "bombviking" + }, + { + "appid": 2090480, + "normalized_name": "war of bellrook" + }, + { + "appid": 2090580, + "normalized_name": "matcha" + }, + { + "appid": 2090600, + "normalized_name": "thistlemine" + }, + { + "appid": 2090630, + "normalized_name": "planetoids" + }, + { + "appid": 2090640, + "normalized_name": "infinity blaster" + }, + { + "appid": 2090650, + "normalized_name": "栖云异梦" + }, + { + "appid": 2090660, + "normalized_name": "狠斗篮球" + }, + { + "appid": 2090700, + "normalized_name": "wikiarena" + }, + { + "appid": 2090760, + "normalized_name": "x invader" + }, + { + "appid": 2090800, + "normalized_name": "otaku‘sdaily" + }, + { + "appid": 2090810, + "normalized_name": "x angels" + }, + { + "appid": 2090830, + "normalized_name": "呜咽岛 the sob island" + }, + { + "appid": 2090840, + "normalized_name": "diamond skeeball" + }, + { + "appid": 2090890, + "normalized_name": "protect harem city" + }, + { + "appid": 2090960, + "normalized_name": "not quite a fairy tale" + }, + { + "appid": 2090980, + "normalized_name": "ninja or die shadow of the sun" + }, + { + "appid": 2091030, + "normalized_name": "timepunk" + }, + { + "appid": 2091080, + "normalized_name": "knights vs nature" + }, + { + "appid": 2091130, + "normalized_name": "tis true idle simulator" + }, + { + "appid": 2091150, + "normalized_name": "apocalypse factory" + }, + { + "appid": 2091160, + "normalized_name": "gamer girls futanari" + }, + { + "appid": 2091190, + "normalized_name": "path" + }, + { + "appid": 2091220, + "normalized_name": "kach" + }, + { + "appid": 2091230, + "normalized_name": "stories school" + }, + { + "appid": 2091240, + "normalized_name": "dagger of heroes" + }, + { + "appid": 2091250, + "normalized_name": "旅行こいし デスクトップ少女 ~ koishi navigation desktop youkai" + }, + { + "appid": 2091280, + "normalized_name": "veggies war" + }, + { + "appid": 2091300, + "normalized_name": "raimodula" + }, + { + "appid": 2091350, + "normalized_name": "twistingo collector's" + }, + { + "appid": 2091370, + "normalized_name": "songs from the iron sea" + }, + { + "appid": 2091380, + "normalized_name": "brains n' bullets" + }, + { + "appid": 2091410, + "normalized_name": "march of shrooms" + }, + { + "appid": 2091490, + "normalized_name": "shore sweepers" + }, + { + "appid": 2091500, + "normalized_name": "warlords under siege" + }, + { + "appid": 2091510, + "normalized_name": "traffic" + }, + { + "appid": 2091520, + "normalized_name": "aftertime" + }, + { + "appid": 2091530, + "normalized_name": "angry angus" + }, + { + "appid": 2091540, + "normalized_name": "rushaway" + }, + { + "appid": 2091550, + "normalized_name": "赌神模拟器:亚洲风云god of gamblers" + }, + { + "appid": 2091580, + "normalized_name": "synesthesia" + }, + { + "appid": 2091620, + "normalized_name": "septaroad voyager" + }, + { + "appid": 2091630, + "normalized_name": "exs2~ethnologysister2:structuralism of kinship system" + }, + { + "appid": 2091640, + "normalized_name": "hi eggplant!" + }, + { + "appid": 2091650, + "normalized_name": "myaosoftガラケーコレクション" + }, + { + "appid": 2091680, + "normalized_name": "tap the blocks" + }, + { + "appid": 2091700, + "normalized_name": "rollcats" + }, + { + "appid": 2091720, + "normalized_name": "nightmare" + }, + { + "appid": 2091730, + "normalized_name": "ideal nightmare" + }, + { + "appid": 2091740, + "normalized_name": "press lex to metaverx" + }, + { + "appid": 2091750, + "normalized_name": "cold way" + }, + { + "appid": 2091760, + "normalized_name": "endometric void" + }, + { + "appid": 2091770, + "normalized_name": "迷失" + }, + { + "appid": 2091790, + "normalized_name": "no more future" + }, + { + "appid": 2091800, + "normalized_name": "spiritales" + }, + { + "appid": 2091810, + "normalized_name": "logic circuit marble puzzle" + }, + { + "appid": 2091820, + "normalized_name": "grassland defender keita" + }, + { + "appid": 2091830, + "normalized_name": "add and multiply math tower 2" + }, + { + "appid": 2091840, + "normalized_name": "planetary defense an orbital turret defense system" + }, + { + "appid": 2091850, + "normalized_name": "pest control" + }, + { + "appid": 2091880, + "normalized_name": "klaystar" + }, + { + "appid": 2091890, + "normalized_name": "hidden in the dark" + }, + { + "appid": 2091910, + "normalized_name": "minschima" + }, + { + "appid": 2091920, + "normalized_name": "witches and butchers" + }, + { + "appid": 2091930, + "normalized_name": "2md vr football unleashed all✰star" + }, + { + "appid": 2091960, + "normalized_name": "the utility room" + }, + { + "appid": 2091980, + "normalized_name": "project swap" + }, + { + "appid": 2092000, + "normalized_name": "calamity sanctuary" + }, + { + "appid": 2092010, + "normalized_name": "attack of the trafalas" + }, + { + "appid": 2092030, + "normalized_name": "sanguinite" + }, + { + "appid": 2092040, + "normalized_name": "crypto clicker" + }, + { + "appid": 2092070, + "normalized_name": "escape" + }, + { + "appid": 2092090, + "normalized_name": "for me" + }, + { + "appid": 2092130, + "normalized_name": "notes from province" + }, + { + "appid": 2092140, + "normalized_name": "xxx i want you to keep fighting" + }, + { + "appid": 2092160, + "normalized_name": "legend of merchant 2" + }, + { + "appid": 2092180, + "normalized_name": "underwater battles" + }, + { + "appid": 2092190, + "normalized_name": "nomori prologue" + }, + { + "appid": 2092240, + "normalized_name": "anolock" + }, + { + "appid": 2092260, + "normalized_name": "pinch of fighting girls" + }, + { + "appid": 2092270, + "normalized_name": "resonant blade" + }, + { + "appid": 2092330, + "normalized_name": "powerful courses" + }, + { + "appid": 2092340, + "normalized_name": "spellshaper" + }, + { + "appid": 2092390, + "normalized_name": "mental salvo" + }, + { + "appid": 2092470, + "normalized_name": "kazu adventures" + }, + { + "appid": 2092480, + "normalized_name": "rogue dice" + }, + { + "appid": 2092510, + "normalized_name": "dome king cabbage" + }, + { + "appid": 2092520, + "normalized_name": "hero hours contract 2 a factory for magical girls" + }, + { + "appid": 2092530, + "normalized_name": "dark desire 3" + }, + { + "appid": 2092550, + "normalized_name": "afterglow" + }, + { + "appid": 2092560, + "normalized_name": "runscore" + }, + { + "appid": 2092620, + "normalized_name": "the dark egg demo" + }, + { + "appid": 2092660, + "normalized_name": "magnet block" + }, + { + "appid": 2092670, + "normalized_name": "chrono hunter" + }, + { + "appid": 2092700, + "normalized_name": "江湖群雄传" + }, + { + "appid": 2092710, + "normalized_name": "footpool" + }, + { + "appid": 2092730, + "normalized_name": "archaeogem" + }, + { + "appid": 2092750, + "normalized_name": "tina & rook! cookie quest!" + }, + { + "appid": 2092790, + "normalized_name": "wok planet" + }, + { + "appid": 2092820, + "normalized_name": "无尽之界/endless trek" + }, + { + "appid": 2092840, + "normalized_name": "the occultist" + }, + { + "appid": 2092850, + "normalized_name": "krzyżacy the knights of the cross" + }, + { + "appid": 2092970, + "normalized_name": "the book of aaru" + }, + { + "appid": 2093000, + "normalized_name": "homeseek" + }, + { + "appid": 2093010, + "normalized_name": "supernatural" + }, + { + "appid": 2093020, + "normalized_name": "lonely white" + }, + { + "appid": 2093050, + "normalized_name": "bakeborough" + }, + { + "appid": 2093060, + "normalized_name": "soulbound" + }, + { + "appid": 2093070, + "normalized_name": "spring dash" + }, + { + "appid": 2093100, + "normalized_name": "异世界的回响千雪之歌" + }, + { + "appid": 2093110, + "normalized_name": "sharp eyed" + }, + { + "appid": 2093220, + "normalized_name": "forbiddenword" + }, + { + "appid": 2093250, + "normalized_name": "witch schools love potions" + }, + { + "appid": 2093270, + "normalized_name": "death in the night" + }, + { + "appid": 2093290, + "normalized_name": "neon circle" + }, + { + "appid": 2093300, + "normalized_name": "robot tormod" + }, + { + "appid": 2093330, + "normalized_name": "party bunch" + }, + { + "appid": 2093340, + "normalized_name": "summer games (atari 2600/cpc/master system/spectrum)" + }, + { + "appid": 2093380, + "normalized_name": "noclipped" + }, + { + "appid": 2093390, + "normalized_name": "nightmares" + }, + { + "appid": 2093410, + "normalized_name": "supreme ruler 2030" + }, + { + "appid": 2093420, + "normalized_name": "making lovers after stories" + }, + { + "appid": 2093460, + "normalized_name": "kernel quest" + }, + { + "appid": 2093490, + "normalized_name": "chainski" + }, + { + "appid": 2093510, + "normalized_name": "odin's ring" + }, + { + "appid": 2093520, + "normalized_name": "roll a blade" + }, + { + "appid": 2093540, + "normalized_name": "the pier arcade" + }, + { + "appid": 2093550, + "normalized_name": "flock of the low god" + }, + { + "appid": 2093580, + "normalized_name": "mindventure" + }, + { + "appid": 2093590, + "normalized_name": "moorhuhn x crazy chicken x" + }, + { + "appid": 2093610, + "normalized_name": "happy sain† sheol" + }, + { + "appid": 2093630, + "normalized_name": "knights crypt" + }, + { + "appid": 2093640, + "normalized_name": "hook&loop the velkro man" + }, + { + "appid": 2093650, + "normalized_name": "neave 2" + }, + { + "appid": 2093680, + "normalized_name": "celadon" + }, + { + "appid": 2093750, + "normalized_name": "error found" + }, + { + "appid": 2093760, + "normalized_name": "nekomancy" + }, + { + "appid": 2093780, + "normalized_name": "last patrol" + }, + { + "appid": 2093800, + "normalized_name": "metal suits counter attack" + }, + { + "appid": 2093850, + "normalized_name": "knocking up my brother's wife my sister in law can't resist my seed" + }, + { + "appid": 2093860, + "normalized_name": "get the ball rolling" + }, + { + "appid": 2093870, + "normalized_name": "reddish" + }, + { + "appid": 2093900, + "normalized_name": "island cities jigsaw puzzle" + }, + { + "appid": 2093910, + "normalized_name": "time walker dark world" + }, + { + "appid": 2093920, + "normalized_name": "灾变前夜 dread dawn" + }, + { + "appid": 2093940, + "normalized_name": "vivid/stasis" + }, + { + "appid": 2093950, + "normalized_name": "boots quest dx" + }, + { + "appid": 2093960, + "normalized_name": "beast fists" + }, + { + "appid": 2093970, + "normalized_name": "犬神ディフェンダーズ / soul dog td" + }, + { + "appid": 2093980, + "normalized_name": "genewars" + }, + { + "appid": 2094000, + "normalized_name": "buddies in boxes" + }, + { + "appid": 2094070, + "normalized_name": "quest master" + }, + { + "appid": 2094090, + "normalized_name": "table ball" + }, + { + "appid": 2094120, + "normalized_name": "spread" + }, + { + "appid": 2094150, + "normalized_name": "hypogean" + }, + { + "appid": 2094160, + "normalized_name": "ghostkeeper" + }, + { + "appid": 2094170, + "normalized_name": "the cold forest" + }, + { + "appid": 2094180, + "normalized_name": "shoot the buuuuuuugs" + }, + { + "appid": 2094190, + "normalized_name": "苍白花树繁茂之时blood flowers" + }, + { + "appid": 2094200, + "normalized_name": "bear bovver" + }, + { + "appid": 2094210, + "normalized_name": "scp the paranormal" + }, + { + "appid": 2094220, + "normalized_name": "bless global" + }, + { + "appid": 2094230, + "normalized_name": "dark blue warriorr" + }, + { + "appid": 2094250, + "normalized_name": "英灵殿:女武神觉醒" + }, + { + "appid": 2094270, + "normalized_name": "lightracer spark" + }, + { + "appid": 2094290, + "normalized_name": "molar maul" + }, + { + "appid": 2094300, + "normalized_name": "virtual ai aki & mika" + }, + { + "appid": 2094320, + "normalized_name": "escape first alchemist ⚗" + }, + { + "appid": 2094340, + "normalized_name": "legend of zero" + }, + { + "appid": 2094350, + "normalized_name": "soulforged" + }, + { + "appid": 2094370, + "normalized_name": "alchemist the potion monger" + }, + { + "appid": 2094380, + "normalized_name": "chai" + }, + { + "appid": 2094390, + "normalized_name": "hellpit" + }, + { + "appid": 2094420, + "normalized_name": "darksite" + }, + { + "appid": 2094440, + "normalized_name": "house of witches" + }, + { + "appid": 2094480, + "normalized_name": "senet" + }, + { + "appid": 2094520, + "normalized_name": "world serpent" + }, + { + "appid": 2094540, + "normalized_name": "potion tales" + }, + { + "appid": 2094550, + "normalized_name": "saga of sins" + }, + { + "appid": 2094570, + "normalized_name": "jb hunter adventure" + }, + { + "appid": 2094580, + "normalized_name": "we. the refugees ticket to europe" + }, + { + "appid": 2094600, + "normalized_name": "nowhere mysterious artifacts" + }, + { + "appid": 2094610, + "normalized_name": "magocracy experimentation" + }, + { + "appid": 2094620, + "normalized_name": "noblesse oblige" + }, + { + "appid": 2094640, + "normalized_name": "save daddy trump 3 rise of evil" + }, + { + "appid": 2094650, + "normalized_name": "hopeless" + }, + { + "appid": 2094660, + "normalized_name": "stagehand survival simulator" + }, + { + "appid": 2094720, + "normalized_name": "tower fall" + }, + { + "appid": 2094730, + "normalized_name": "tux and fanny" + }, + { + "appid": 2094740, + "normalized_name": "dead heat" + }, + { + "appid": 2094750, + "normalized_name": "timeloop sink again beach" + }, + { + "appid": 2094760, + "normalized_name": "memomi" + }, + { + "appid": 2094780, + "normalized_name": "pussies wrestling dicks" + }, + { + "appid": 2094850, + "normalized_name": "the backrooms footage" + }, + { + "appid": 2094890, + "normalized_name": "walk with the living 2" + }, + { + "appid": 2094900, + "normalized_name": "v lights" + }, + { + "appid": 2094910, + "normalized_name": "pile up!" + }, + { + "appid": 2094920, + "normalized_name": "chibitama" + }, + { + "appid": 2094930, + "normalized_name": "farm wars" + }, + { + "appid": 2094950, + "normalized_name": "seasick" + }, + { + "appid": 2095010, + "normalized_name": "coffee break a sip away from doom" + }, + { + "appid": 2095030, + "normalized_name": "slink & snatch tales of thievery" + }, + { + "appid": 2095040, + "normalized_name": "猟奇リスナー ~ 狙われた姫配信者 ~ lunatic viewer streamer girl at risk" + }, + { + "appid": 2095060, + "normalized_name": "inhabit" + }, + { + "appid": 2095070, + "normalized_name": "外道催眠術師と囚われのマリオネット the savage hypnotist's puppets" + }, + { + "appid": 2095080, + "normalized_name": "paperback adventures" + }, + { + "appid": 2095090, + "normalized_name": "ウーマンコミュニケーション" + }, + { + "appid": 2095100, + "normalized_name": "nature escapes" + }, + { + "appid": 2095120, + "normalized_name": "s.e.c.u." + }, + { + "appid": 2095130, + "normalized_name": "液化物" + }, + { + "appid": 2095140, + "normalized_name": "locked in my darkness" + }, + { + "appid": 2095150, + "normalized_name": "wash card" + }, + { + "appid": 2095170, + "normalized_name": "chains of acquisition" + }, + { + "appid": 2095180, + "normalized_name": "numeral lord" + }, + { + "appid": 2095220, + "normalized_name": "scar in the void" + }, + { + "appid": 2095230, + "normalized_name": "limousine parking simulator" + }, + { + "appid": 2095250, + "normalized_name": "laser lab" + }, + { + "appid": 2095290, + "normalized_name": "theseus protocol" + }, + { + "appid": 2095300, + "normalized_name": "飞越13号房" + }, + { + "appid": 2095330, + "normalized_name": "backroomsnew" + }, + { + "appid": 2095340, + "normalized_name": "road 96 mile 0" + }, + { + "appid": 2095350, + "normalized_name": "nonogram kawaii cuties" + }, + { + "appid": 2095430, + "normalized_name": "dwarf's adventure" + }, + { + "appid": 2095440, + "normalized_name": "beat the markets" + }, + { + "appid": 2095450, + "normalized_name": "tiny tactics" + }, + { + "appid": 2095460, + "normalized_name": "tasukemono" + }, + { + "appid": 2095480, + "normalized_name": "simple trains" + }, + { + "appid": 2095490, + "normalized_name": "nyxia survivors" + }, + { + "appid": 2095510, + "normalized_name": "scholar's mate" + }, + { + "appid": 2095540, + "normalized_name": "lurch" + }, + { + "appid": 2095560, + "normalized_name": "incomer" + }, + { + "appid": 2095570, + "normalized_name": "chatfight!" + }, + { + "appid": 2095600, + "normalized_name": "刻一刻ト浦(こくいっこくとうら)" + }, + { + "appid": 2095620, + "normalized_name": "exodus of souls" + }, + { + "appid": 2095650, + "normalized_name": "サカモト危機弾発" + }, + { + "appid": 2095740, + "normalized_name": "survivor of the journey" + }, + { + "appid": 2095770, + "normalized_name": "pipes puzzles" + }, + { + "appid": 2095800, + "normalized_name": "nude crisis" + }, + { + "appid": 2095830, + "normalized_name": "crisis of dreamcell" + }, + { + "appid": 2095840, + "normalized_name": "death by begonia" + }, + { + "appid": 2095860, + "normalized_name": "异界双子 twin souls" + }, + { + "appid": 2095870, + "normalized_name": "expense" + }, + { + "appid": 2095880, + "normalized_name": "air splitter" + }, + { + "appid": 2095890, + "normalized_name": "black gunner wukong prologue" + }, + { + "appid": 2095900, + "normalized_name": "this girl does not exist" + }, + { + "appid": 2095910, + "normalized_name": "kyivan rus" + }, + { + "appid": 2095930, + "normalized_name": "horny witch hunt" + }, + { + "appid": 2095950, + "normalized_name": "pac man mega tunnel battle chomp champs" + }, + { + "appid": 2095960, + "normalized_name": "isostasy" + }, + { + "appid": 2096020, + "normalized_name": "viral reload ex" + }, + { + "appid": 2096030, + "normalized_name": "snow plowing simulator" + }, + { + "appid": 2096040, + "normalized_name": "virusum" + }, + { + "appid": 2096050, + "normalized_name": "warrior maiden" + }, + { + "appid": 2096070, + "normalized_name": "neverwards" + }, + { + "appid": 2096080, + "normalized_name": "agent in depth" + }, + { + "appid": 2096120, + "normalized_name": "alien invasion" + }, + { + "appid": 2096130, + "normalized_name": "adventure's calling" + }, + { + "appid": 2096150, + "normalized_name": "bang" + }, + { + "appid": 2096170, + "normalized_name": "furry superstar 🌟" + }, + { + "appid": 2096180, + "normalized_name": "a hero's quest pt1" + }, + { + "appid": 2096190, + "normalized_name": "temporian tale" + }, + { + "appid": 2096210, + "normalized_name": "gloop" + }, + { + "appid": 2096220, + "normalized_name": "last chance in xollywood" + }, + { + "appid": 2096250, + "normalized_name": "machine gun mages" + }, + { + "appid": 2096260, + "normalized_name": "mini tank mayhem" + }, + { + "appid": 2096280, + "normalized_name": "动物的游戏乐园(体感游戏)party of forest(motion sensing game)" + }, + { + "appid": 2096300, + "normalized_name": "rose city revenge the beginning" + }, + { + "appid": 2096380, + "normalized_name": "sangoku xiangqi" + }, + { + "appid": 2096390, + "normalized_name": "goblins factory" + }, + { + "appid": 2096400, + "normalized_name": "tamakagura tales of turmoil" + }, + { + "appid": 2096450, + "normalized_name": "troubleshooting" + }, + { + "appid": 2096480, + "normalized_name": "shattered star" + }, + { + "appid": 2096500, + "normalized_name": "holeshot drag racing" + }, + { + "appid": 2096510, + "normalized_name": "the ouroboros king" + }, + { + "appid": 2096540, + "normalized_name": "tennis the menace" + }, + { + "appid": 2096560, + "normalized_name": "the top" + }, + { + "appid": 2096570, + "normalized_name": "a fisherman's tale 2" + }, + { + "appid": 2096580, + "normalized_name": "nekonecro" + }, + { + "appid": 2096600, + "normalized_name": "crysis 2" + }, + { + "appid": 2096610, + "normalized_name": "crysis 3" + }, + { + "appid": 2096620, + "normalized_name": "death or treat" + }, + { + "appid": 2096630, + "normalized_name": "pipeline panic" + }, + { + "appid": 2096640, + "normalized_name": "super sean 007" + }, + { + "appid": 2096650, + "normalized_name": "crashout xtreme" + }, + { + "appid": 2096660, + "normalized_name": "pogo joins the circus" + }, + { + "appid": 2096670, + "normalized_name": "jigsaw puzzle belgium through the lens" + }, + { + "appid": 2096680, + "normalized_name": "lightspeed dating" + }, + { + "appid": 2096710, + "normalized_name": "听不到你的话语的我,想要静静聆听你的心" + }, + { + "appid": 2096720, + "normalized_name": "archetypes the rite of passage" + }, + { + "appid": 2096730, + "normalized_name": "peebi" + }, + { + "appid": 2096740, + "normalized_name": "paraopticon" + }, + { + "appid": 2096780, + "normalized_name": "crt7" + }, + { + "appid": 2096790, + "normalized_name": "assassin's vol." + }, + { + "appid": 2096800, + "normalized_name": "steel saviour reloaded" + }, + { + "appid": 2096820, + "normalized_name": "dama_hame_tosatsu_nikki" + }, + { + "appid": 2096860, + "normalized_name": "reclaim the sea" + }, + { + "appid": 2096930, + "normalized_name": "the folk" + }, + { + "appid": 2096960, + "normalized_name": "roll on dice" + }, + { + "appid": 2096980, + "normalized_name": "sam stoat safebreaker" + }, + { + "appid": 2097030, + "normalized_name": "union of gnomes" + }, + { + "appid": 2097090, + "normalized_name": "snow problem" + }, + { + "appid": 2097100, + "normalized_name": "jylko through the song" + }, + { + "appid": 2097130, + "normalized_name": "sudocity" + }, + { + "appid": 2097150, + "normalized_name": "crash & bump" + }, + { + "appid": 2097160, + "normalized_name": "monster mystery" + }, + { + "appid": 2097170, + "normalized_name": "iosis" + }, + { + "appid": 2097180, + "normalized_name": "oxu" + }, + { + "appid": 2097190, + "normalized_name": "astoaria" + }, + { + "appid": 2097200, + "normalized_name": "antishatter" + }, + { + "appid": 2097210, + "normalized_name": "you can't scare me" + }, + { + "appid": 2097230, + "normalized_name": "turnip boy robs a bank" + }, + { + "appid": 2097260, + "normalized_name": "star head" + }, + { + "appid": 2097410, + "normalized_name": "coin trader simulator" + }, + { + "appid": 2097470, + "normalized_name": "the land of babel" + }, + { + "appid": 2097480, + "normalized_name": "jam scrapz collection" + }, + { + "appid": 2097490, + "normalized_name": "desordre a puzzle game adventure" + }, + { + "appid": 2097520, + "normalized_name": "brick city" + }, + { + "appid": 2097540, + "normalized_name": "my first femboy date" + }, + { + "appid": 2097550, + "normalized_name": "folktale" + }, + { + "appid": 2097570, + "normalized_name": "starvaders" + }, + { + "appid": 2097620, + "normalized_name": "幻梦骑士" + }, + { + "appid": 2097630, + "normalized_name": "ka keepers & assassins" + }, + { + "appid": 2097670, + "normalized_name": "everett isle" + }, + { + "appid": 2097720, + "normalized_name": "バレットフィリア達の闇市場〜 100th black market." + }, + { + "appid": 2097730, + "normalized_name": "nitrous firetruck" + }, + { + "appid": 2097740, + "normalized_name": "akaiito hd remaster" + }, + { + "appid": 2097750, + "normalized_name": "aoishiro hd remaster" + }, + { + "appid": 2097770, + "normalized_name": "slave princess finne why did she sell out her own kingdom?" + }, + { + "appid": 2097790, + "normalized_name": "kemomi chan's journey ~enlightened girl and the innocent doll~" + }, + { + "appid": 2097810, + "normalized_name": "burger butt" + }, + { + "appid": 2097830, + "normalized_name": "climb it" + }, + { + "appid": 2097840, + "normalized_name": "co operation multiturn" + }, + { + "appid": 2097850, + "normalized_name": "jewel run" + }, + { + "appid": 2097860, + "normalized_name": "lo fi a year to fulfill my dream.mp3" + }, + { + "appid": 2097880, + "normalized_name": "nayla's castle" + }, + { + "appid": 2097890, + "normalized_name": "skull island rise of kong" + }, + { + "appid": 2097900, + "normalized_name": "hold or die" + }, + { + "appid": 2097910, + "normalized_name": "my sexual hospitalization" + }, + { + "appid": 2097920, + "normalized_name": "fly to hope" + }, + { + "appid": 2097930, + "normalized_name": "mood swings" + }, + { + "appid": 2097950, + "normalized_name": "anticitizen red" + }, + { + "appid": 2097960, + "normalized_name": "omg! not another isekai" + }, + { + "appid": 2098010, + "normalized_name": "dinolife" + }, + { + "appid": 2098040, + "normalized_name": "lich clicker" + }, + { + "appid": 2098070, + "normalized_name": "star ring" + }, + { + "appid": 2098080, + "normalized_name": "go go jump!!" + }, + { + "appid": 2098090, + "normalized_name": "lost lands sand captivity collector's" + }, + { + "appid": 2098100, + "normalized_name": "the madness of death" + }, + { + "appid": 2098120, + "normalized_name": "you've been banished." + }, + { + "appid": 2098130, + "normalized_name": "international basketball manager 23" + }, + { + "appid": 2098150, + "normalized_name": "orpheus" + }, + { + "appid": 2098160, + "normalized_name": "star vortex" + }, + { + "appid": 2098170, + "normalized_name": "anime knight card game" + }, + { + "appid": 2098210, + "normalized_name": "poly memory primates" + }, + { + "appid": 2098250, + "normalized_name": "shaytan" + }, + { + "appid": 2098280, + "normalized_name": "the perfect garden" + }, + { + "appid": 2098290, + "normalized_name": "project r4t" + }, + { + "appid": 2098330, + "normalized_name": "percy parcel" + }, + { + "appid": 2098350, + "normalized_name": "escape memoirs mini stories" + }, + { + "appid": 2098360, + "normalized_name": "the descent" + }, + { + "appid": 2098370, + "normalized_name": "apollo's adventure" + }, + { + "appid": 2098390, + "normalized_name": "planet surfer" + }, + { + "appid": 2098450, + "normalized_name": "cardboard hero" + }, + { + "appid": 2098470, + "normalized_name": "what if george washington was a girl?" + }, + { + "appid": 2098530, + "normalized_name": "intergalactic panic!!" + }, + { + "appid": 2098540, + "normalized_name": "슬픈 가족사 산장으로부터의 탈출" + }, + { + "appid": 2098550, + "normalized_name": "hex and tricks" + }, + { + "appid": 2098560, + "normalized_name": "youtuber survivors" + }, + { + "appid": 2098590, + "normalized_name": "secret of rosaria" + }, + { + "appid": 2098600, + "normalized_name": "kiss the demiurge" + }, + { + "appid": 2098670, + "normalized_name": "steel guardian" + }, + { + "appid": 2098690, + "normalized_name": "断崖のカルム / calme" + }, + { + "appid": 2098720, + "normalized_name": "overthespeedlimit" + }, + { + "appid": 2098760, + "normalized_name": "life matters season 1" + }, + { + "appid": 2098790, + "normalized_name": "群侠传,启动!" + }, + { + "appid": 2098820, + "normalized_name": "galaxy survivors" + }, + { + "appid": 2098830, + "normalized_name": "brink of war" + }, + { + "appid": 2098840, + "normalized_name": "sears the sky frontier" + }, + { + "appid": 2098860, + "normalized_name": "magic сity detective secret desire collector's" + }, + { + "appid": 2098870, + "normalized_name": "gods of savvarah | part i" + }, + { + "appid": 2098890, + "normalized_name": "emagineworld" + }, + { + "appid": 2098920, + "normalized_name": "inter solar 83" + }, + { + "appid": 2098930, + "normalized_name": "lucky pikinini ims death squad" + }, + { + "appid": 2098940, + "normalized_name": "torch" + }, + { + "appid": 2098950, + "normalized_name": "southern princesses" + }, + { + "appid": 2098960, + "normalized_name": "crossroads of life" + }, + { + "appid": 2098970, + "normalized_name": "future & girls" + }, + { + "appid": 2099000, + "normalized_name": "western girls" + }, + { + "appid": 2099010, + "normalized_name": "isla sinaloa" + }, + { + "appid": 2099030, + "normalized_name": "no men in this house" + }, + { + "appid": 2099040, + "normalized_name": "street & girls" + }, + { + "appid": 2099050, + "normalized_name": "home deco puzzles" + }, + { + "appid": 2099060, + "normalized_name": "rikki kuu" + }, + { + "appid": 2099080, + "normalized_name": "hidden cats in london" + }, + { + "appid": 2099090, + "normalized_name": "alaris" + }, + { + "appid": 2099110, + "normalized_name": "the classrooms" + }, + { + "appid": 2099120, + "normalized_name": "starr ringer" + }, + { + "appid": 2099140, + "normalized_name": "dictator's creed" + }, + { + "appid": 2099150, + "normalized_name": "dark maidens" + }, + { + "appid": 2099180, + "normalized_name": "kati the astronaut" + }, + { + "appid": 2099190, + "normalized_name": "edge of the end" + }, + { + "appid": 2099220, + "normalized_name": "mobmania" + }, + { + "appid": 2099240, + "normalized_name": "digital pierrot museum" + }, + { + "appid": 2099270, + "normalized_name": "projectzombiesurvivors" + }, + { + "appid": 2099280, + "normalized_name": "metro manager la" + }, + { + "appid": 2099290, + "normalized_name": "child of aether" + }, + { + "appid": 2099310, + "normalized_name": "guilds n glory" + }, + { + "appid": 2099320, + "normalized_name": "pieter both village" + }, + { + "appid": 2099330, + "normalized_name": "妖睨之境the sight of darkness" + }, + { + "appid": 2099350, + "normalized_name": "fighter x fighter" + }, + { + "appid": 2099370, + "normalized_name": "pip" + }, + { + "appid": 2099390, + "normalized_name": "umbral omen" + }, + { + "appid": 2099400, + "normalized_name": "odd guy meets odd farmers comedy boys love (bl) visual novel" + }, + { + "appid": 2099420, + "normalized_name": "not alone remake" + }, + { + "appid": 2099430, + "normalized_name": "dork" + }, + { + "appid": 2099440, + "normalized_name": "bananner nababber" + }, + { + "appid": 2099510, + "normalized_name": "smash the synth" + }, + { + "appid": 2099520, + "normalized_name": "squid on road" + }, + { + "appid": 2099570, + "normalized_name": "city massacre" + }, + { + "appid": 2099610, + "normalized_name": "tales of tarium awakening from the ashes" + }, + { + "appid": 2099630, + "normalized_name": "planet achelous" + }, + { + "appid": 2099650, + "normalized_name": "dual gun" + }, + { + "appid": 2099670, + "normalized_name": "pirates journey" + }, + { + "appid": 2099680, + "normalized_name": "rent a car simulator 24" + }, + { + "appid": 2099690, + "normalized_name": "dungeons diced" + }, + { + "appid": 2099730, + "normalized_name": "burn the witch" + }, + { + "appid": 2099750, + "normalized_name": "god please help me" + }, + { + "appid": 2099790, + "normalized_name": "the monstrous horror show" + }, + { + "appid": 2099830, + "normalized_name": "splash" + }, + { + "appid": 2099880, + "normalized_name": "アプリヴァルモノノ村開拓日記" + }, + { + "appid": 2099900, + "normalized_name": "4x4" + }, + { + "appid": 2099910, + "normalized_name": "infinity pinball" + }, + { + "appid": 2099920, + "normalized_name": "robot rejects" + }, + { + "appid": 2099940, + "normalized_name": "action vengeance" + }, + { + "appid": 2099990, + "normalized_name": "graveyard keeper" + }, + { + "appid": 2100010, + "normalized_name": "breakthrough" + }, + { + "appid": 2100020, + "normalized_name": "lou's lagoon" + }, + { + "appid": 2100040, + "normalized_name": "rune break" + }, + { + "appid": 2100050, + "normalized_name": "spell defender" + }, + { + "appid": 2100080, + "normalized_name": "the last premiere" + }, + { + "appid": 2100090, + "normalized_name": "dodge" + }, + { + "appid": 2100100, + "normalized_name": "allakin" + }, + { + "appid": 2100130, + "normalized_name": "territorial duck" + }, + { + "appid": 2100140, + "normalized_name": "summon masters" + }, + { + "appid": 2100150, + "normalized_name": "shadow of the depth" + }, + { + "appid": 2100160, + "normalized_name": "motogp23" + }, + { + "appid": 2100170, + "normalized_name": "no way out" + }, + { + "appid": 2100190, + "normalized_name": "divine duel" + }, + { + "appid": 2100200, + "normalized_name": "idle zombies clicker" + }, + { + "appid": 2100230, + "normalized_name": "easy simple game" + }, + { + "appid": 2100250, + "normalized_name": "stanislav" + }, + { + "appid": 2100270, + "normalized_name": "succuquest" + }, + { + "appid": 2100300, + "normalized_name": "abstract grind" + }, + { + "appid": 2100310, + "normalized_name": "ninja clan" + }, + { + "appid": 2100320, + "normalized_name": "khatyrka prelude" + }, + { + "appid": 2100340, + "normalized_name": "liminalia" + }, + { + "appid": 2100360, + "normalized_name": "berlin maniacs" + }, + { + "appid": 2100390, + "normalized_name": "zellige the tilemaker of granada" + }, + { + "appid": 2100400, + "normalized_name": "hexxen hunters" + }, + { + "appid": 2100410, + "normalized_name": "the last trophy" + }, + { + "appid": 2100440, + "normalized_name": "system restore" + }, + { + "appid": 2100460, + "normalized_name": "rainbow heights academy year 1" + }, + { + "appid": 2100470, + "normalized_name": "delivering letters" + }, + { + "appid": 2100500, + "normalized_name": "swimming poo" + }, + { + "appid": 2100510, + "normalized_name": "cyber lancer" + }, + { + "appid": 2100560, + "normalized_name": "karl marx and the ring of communism" + }, + { + "appid": 2100590, + "normalized_name": "yupi road 2 world" + }, + { + "appid": 2100600, + "normalized_name": "kabuto" + }, + { + "appid": 2100620, + "normalized_name": "rusl" + }, + { + "appid": 2100640, + "normalized_name": "wanderlight" + }, + { + "appid": 2100650, + "normalized_name": "tunnel boat terror" + }, + { + "appid": 2100710, + "normalized_name": "ambulance chauffeur simulator" + }, + { + "appid": 2100720, + "normalized_name": "rat cage" + }, + { + "appid": 2100730, + "normalized_name": "tiles ii multiplayer" + }, + { + "appid": 2100760, + "normalized_name": "house of moiré" + }, + { + "appid": 2100780, + "normalized_name": "spin time" + }, + { + "appid": 2100790, + "normalized_name": "funnypizzaland" + }, + { + "appid": 2100810, + "normalized_name": "cheesequest" + }, + { + "appid": 2100830, + "normalized_name": "the imaginary circle" + }, + { + "appid": 2100840, + "normalized_name": "neutrino" + }, + { + "appid": 2100880, + "normalized_name": "dark age of death" + }, + { + "appid": 2100940, + "normalized_name": "redhot rabbit" + }, + { + "appid": 2100970, + "normalized_name": "curl!" + }, + { + "appid": 2100980, + "normalized_name": "barji kart" + }, + { + "appid": 2101070, + "normalized_name": "those left behind" + }, + { + "appid": 2101100, + "normalized_name": "kaardik" + }, + { + "appid": 2101110, + "normalized_name": "東方蒼神縁起v" + }, + { + "appid": 2101130, + "normalized_name": "狂気より愛をこめて" + }, + { + "appid": 2101180, + "normalized_name": "underworld re card" + }, + { + "appid": 2101190, + "normalized_name": "oni road to be the mightiest oni" + }, + { + "appid": 2101220, + "normalized_name": "书之旅人 story walker" + }, + { + "appid": 2101250, + "normalized_name": "nebula" + }, + { + "appid": 2101260, + "normalized_name": "futanari sex office whores" + }, + { + "appid": 2101270, + "normalized_name": "computer club" + }, + { + "appid": 2101280, + "normalized_name": "the pyraplex" + }, + { + "appid": 2101290, + "normalized_name": "silver screen story" + }, + { + "appid": 2101330, + "normalized_name": "city legends trapped in mirror collector's" + }, + { + "appid": 2101340, + "normalized_name": "maze of realities reflection of light collector's" + }, + { + "appid": 2101350, + "normalized_name": "black sheep town" + }, + { + "appid": 2101360, + "normalized_name": "crossroad of worlds 100 doors collector's" + }, + { + "appid": 2101390, + "normalized_name": "lost and found co." + }, + { + "appid": 2101410, + "normalized_name": "lost beyond" + }, + { + "appid": 2101420, + "normalized_name": "gimmiko" + }, + { + "appid": 2101440, + "normalized_name": "dreamcell lost in nightmares" + }, + { + "appid": 2101450, + "normalized_name": "" + }, + { + "appid": 2101460, + "normalized_name": "cuckold princess" + }, + { + "appid": 2101470, + "normalized_name": "spellstruck" + }, + { + "appid": 2101480, + "normalized_name": "drunk relapsed" + }, + { + "appid": 2101490, + "normalized_name": "after wave downfall" + }, + { + "appid": 2101560, + "normalized_name": "kawaii hentai girls 3" + }, + { + "appid": 2101590, + "normalized_name": "reptile rehab" + }, + { + "appid": 2101600, + "normalized_name": "cult of babel prologue" + }, + { + "appid": 2101610, + "normalized_name": "shadow seven" + }, + { + "appid": 2101620, + "normalized_name": "tales from the burning sea" + }, + { + "appid": 2101630, + "normalized_name": "coins collector sport car" + }, + { + "appid": 2101650, + "normalized_name": "entanglement" + }, + { + "appid": 2101660, + "normalized_name": "fleeting" + }, + { + "appid": 2101680, + "normalized_name": "good game" + }, + { + "appid": 2101690, + "normalized_name": "space voyage the puzzle game" + }, + { + "appid": 2101710, + "normalized_name": "cube farmer puzzle" + }, + { + "appid": 2101730, + "normalized_name": "coinblock clicker" + }, + { + "appid": 2101740, + "normalized_name": "draw physics line" + }, + { + "appid": 2101750, + "normalized_name": "thousands rooms under the reality" + }, + { + "appid": 2101760, + "normalized_name": "magus pocus" + }, + { + "appid": 2101800, + "normalized_name": "the pinball wizard" + }, + { + "appid": 2101840, + "normalized_name": "balls & beats" + }, + { + "appid": 2101850, + "normalized_name": "cosmic companions" + }, + { + "appid": 2101880, + "normalized_name": "hard life" + }, + { + "appid": 2101890, + "normalized_name": "zoonomaly" + }, + { + "appid": 2101960, + "normalized_name": "cronos the new dawn" + }, + { + "appid": 2101980, + "normalized_name": "house of specters" + }, + { + "appid": 2101990, + "normalized_name": "super ball mania" + }, + { + "appid": 2102000, + "normalized_name": "hentai fantasy world" + }, + { + "appid": 2102020, + "normalized_name": "different strokes" + }, + { + "appid": 2102040, + "normalized_name": "my little puppy" + }, + { + "appid": 2102060, + "normalized_name": "broken dimensions" + }, + { + "appid": 2102070, + "normalized_name": "无极修仙传·序章" + }, + { + "appid": 2102080, + "normalized_name": "spacetime dimension" + }, + { + "appid": 2102110, + "normalized_name": "speed the card game" + }, + { + "appid": 2102130, + "normalized_name": "girl and demon 1" + }, + { + "appid": 2102180, + "normalized_name": "neurosis" + }, + { + "appid": 2102200, + "normalized_name": "let chat guess" + }, + { + "appid": 2102220, + "normalized_name": "memory puzzle futanari boss" + }, + { + "appid": 2102230, + "normalized_name": "call to strike" + }, + { + "appid": 2102240, + "normalized_name": "ravage road" + }, + { + "appid": 2102300, + "normalized_name": "eternal mist" + }, + { + "appid": 2102320, + "normalized_name": "mistrogue mist and the living dungeons" + }, + { + "appid": 2102330, + "normalized_name": "the reaper survivors" + }, + { + "appid": 2102400, + "normalized_name": "project exo" + }, + { + "appid": 2102410, + "normalized_name": "pop survivor" + }, + { + "appid": 2102420, + "normalized_name": "spooked hide & seek" + }, + { + "appid": 2102440, + "normalized_name": "super cave boy" + }, + { + "appid": 2102450, + "normalized_name": "enotria the last song" + }, + { + "appid": 2102460, + "normalized_name": "silent harbor" + }, + { + "appid": 2102470, + "normalized_name": "the pencil is cast!" + }, + { + "appid": 2102480, + "normalized_name": "biz builder delux" + }, + { + "appid": 2102490, + "normalized_name": "basketball club story" + }, + { + "appid": 2102500, + "normalized_name": "blacksmith weapon merchant" + }, + { + "appid": 2102520, + "normalized_name": "apex point" + }, + { + "appid": 2102530, + "normalized_name": "mega fast food a fast food simulator game" + }, + { + "appid": 2102540, + "normalized_name": "tropica survival 1095" + }, + { + "appid": 2102550, + "normalized_name": "love x time" + }, + { + "appid": 2102590, + "normalized_name": "hightide" + }, + { + "appid": 2102610, + "normalized_name": "rough love" + }, + { + "appid": 2102640, + "normalized_name": "indoor kickball" + }, + { + "appid": 2102670, + "normalized_name": "lost skies island creator" + }, + { + "appid": 2102680, + "normalized_name": "blinded by fear" + }, + { + "appid": 2102700, + "normalized_name": "dance by the river (former silence of switchblade)" + }, + { + "appid": 2102750, + "normalized_name": "pep pel" + }, + { + "appid": 2102760, + "normalized_name": "over‧devil legend of the sacred stone" + }, + { + "appid": 2102770, + "normalized_name": "evolife" + }, + { + "appid": 2102810, + "normalized_name": "cookie clicker but you type" + }, + { + "appid": 2102870, + "normalized_name": "over run (the day the world ended)" + }, + { + "appid": 2102880, + "normalized_name": "天剑局剑士" + }, + { + "appid": 2102930, + "normalized_name": "paper drifter" + }, + { + "appid": 2102940, + "normalized_name": "jade order" + }, + { + "appid": 2102970, + "normalized_name": "escape!!!" + }, + { + "appid": 2102980, + "normalized_name": "the tale of galariel" + }, + { + "appid": 2103000, + "normalized_name": "tropical" + }, + { + "appid": 2103020, + "normalized_name": "frightened" + }, + { + "appid": 2103070, + "normalized_name": "avani" + }, + { + "appid": 2103090, + "normalized_name": "campus life" + }, + { + "appid": 2103110, + "normalized_name": "neko cafe" + }, + { + "appid": 2103130, + "normalized_name": "matchmaking inc." + }, + { + "appid": 2103140, + "normalized_name": "magicraft" + }, + { + "appid": 2103150, + "normalized_name": "sea scenes" + }, + { + "appid": 2103160, + "normalized_name": "我是大官人" + }, + { + "appid": 2103180, + "normalized_name": "ignite" + }, + { + "appid": 2103190, + "normalized_name": "reilla ~sweets adventure~" + }, + { + "appid": 2103200, + "normalized_name": "toynip" + }, + { + "appid": 2103210, + "normalized_name": "shutter labs" + }, + { + "appid": 2103230, + "normalized_name": "macross shooting insight" + }, + { + "appid": 2103240, + "normalized_name": "friction" + }, + { + "appid": 2103270, + "normalized_name": "pit stoppers" + }, + { + "appid": 2103290, + "normalized_name": "anvil life" + }, + { + "appid": 2103300, + "normalized_name": "molytropia dead stars still shine here" + }, + { + "appid": 2103320, + "normalized_name": "screaming noppy" + }, + { + "appid": 2103340, + "normalized_name": "paragon pioneers" + }, + { + "appid": 2103350, + "normalized_name": "nick bounty the goat in the grey fedora" + }, + { + "appid": 2103370, + "normalized_name": "finis" + }, + { + "appid": 2103390, + "normalized_name": "runout" + }, + { + "appid": 2103400, + "normalized_name": "百煉登神 immortal tales of rebirth" + }, + { + "appid": 2103440, + "normalized_name": "shirime 2 the genesis of butt eye" + }, + { + "appid": 2103470, + "normalized_name": "republic of pirates" + }, + { + "appid": 2103480, + "normalized_name": "summer trip cruise" + }, + { + "appid": 2103500, + "normalized_name": "sombionic" + }, + { + "appid": 2103510, + "normalized_name": "spear song" + }, + { + "appid": 2103530, + "normalized_name": "idle clans" + }, + { + "appid": 2103590, + "normalized_name": "jahto savior of the sky" + }, + { + "appid": 2103620, + "normalized_name": "age of gladiators reforged" + }, + { + "appid": 2103630, + "normalized_name": "77 oleander avenue" + }, + { + "appid": 2103640, + "normalized_name": "axis football 2023" + }, + { + "appid": 2103660, + "normalized_name": "bugz bows and curses" + }, + { + "appid": 2103670, + "normalized_name": "sword islands" + }, + { + "appid": 2103680, + "normalized_name": "mediterranea inferno" + }, + { + "appid": 2103690, + "normalized_name": "monstir iradicator" + }, + { + "appid": 2103710, + "normalized_name": "gabenwood 99 hidden bucks" + }, + { + "appid": 2103930, + "normalized_name": "dead man's nightmares" + }, + { + "appid": 2103940, + "normalized_name": "skate rift" + }, + { + "appid": 2103950, + "normalized_name": "kritter" + }, + { + "appid": 2103960, + "normalized_name": "voxabular p.i. penny's first case" + }, + { + "appid": 2104010, + "normalized_name": "elowen's light" + }, + { + "appid": 2104060, + "normalized_name": "jigsaw puzzle futanari pool party" + }, + { + "appid": 2104110, + "normalized_name": "little hellions" + }, + { + "appid": 2104120, + "normalized_name": "tales of vaalundr" + }, + { + "appid": 2104260, + "normalized_name": "deck forge (mad gate)" + }, + { + "appid": 2104270, + "normalized_name": "clientele sexy deckbuilder" + }, + { + "appid": 2104310, + "normalized_name": "public land hunter" + }, + { + "appid": 2104320, + "normalized_name": "tos gamepad tester" + }, + { + "appid": 2104340, + "normalized_name": "neon dungeon" + }, + { + "appid": 2104390, + "normalized_name": "spaceboots" + }, + { + "appid": 2104400, + "normalized_name": "salvus aries" + }, + { + "appid": 2104440, + "normalized_name": "kyua創作の治療" + }, + { + "appid": 2104450, + "normalized_name": "termalloc" + }, + { + "appid": 2104460, + "normalized_name": "mala petaka" + }, + { + "appid": 2104520, + "normalized_name": "roll me home" + }, + { + "appid": 2104530, + "normalized_name": "dragonscales 1 7 collection" + }, + { + "appid": 2104560, + "normalized_name": "sowon" + }, + { + "appid": 2104570, + "normalized_name": "stunning policewoman" + }, + { + "appid": 2104600, + "normalized_name": "sex adventures the pool party" + }, + { + "appid": 2104610, + "normalized_name": "i am a caterpillar" + }, + { + "appid": 2104670, + "normalized_name": "plane accident prologue" + }, + { + "appid": 2104680, + "normalized_name": "disasters" + }, + { + "appid": 2104710, + "normalized_name": "солнышко светит что ещё нужно" + }, + { + "appid": 2104750, + "normalized_name": "arcade party" + }, + { + "appid": 2104760, + "normalized_name": "the absolute destroyer" + }, + { + "appid": 2104770, + "normalized_name": "car wash simulator" + }, + { + "appid": 2104780, + "normalized_name": "spooky mansion manager" + }, + { + "appid": 2104790, + "normalized_name": "griddy" + }, + { + "appid": 2104820, + "normalized_name": "loot luck & levels" + }, + { + "appid": 2104850, + "normalized_name": "moving jigsaw puzzles" + }, + { + "appid": 2104860, + "normalized_name": "surprise cat" + }, + { + "appid": 2104880, + "normalized_name": "undead inc." + }, + { + "appid": 2104890, + "normalized_name": "roadcraft" + }, + { + "appid": 2104910, + "normalized_name": "ただひと story of ellis shortversion" + }, + { + "appid": 2104920, + "normalized_name": "generally 2" + }, + { + "appid": 2104970, + "normalized_name": "lights out tpp shooter" + }, + { + "appid": 2104990, + "normalized_name": "garage sale" + }, + { + "appid": 2105000, + "normalized_name": "super choppy orc" + }, + { + "appid": 2105010, + "normalized_name": "the edge of the world z (will shock you) حافه العالم زيد" + }, + { + "appid": 2105020, + "normalized_name": "project xlows keyboard apocalypse tm" + }, + { + "appid": 2105060, + "normalized_name": "barboozeled" + }, + { + "appid": 2105070, + "normalized_name": "another space opera episode 1 the wake of the giant" + }, + { + "appid": 2105090, + "normalized_name": "speedrunners paradise sky is the limit" + }, + { + "appid": 2105120, + "normalized_name": "college basketball manager" + }, + { + "appid": 2105130, + "normalized_name": "observo" + }, + { + "appid": 2105140, + "normalized_name": "the packages" + }, + { + "appid": 2105170, + "normalized_name": "nature & wildlife jigsaw puzzle" + }, + { + "appid": 2105230, + "normalized_name": "adventure trip new york collector's" + }, + { + "appid": 2105250, + "normalized_name": "m doll" + }, + { + "appid": 2105260, + "normalized_name": "pizza kidd" + }, + { + "appid": 2105360, + "normalized_name": "waifu fighter" + }, + { + "appid": 2105370, + "normalized_name": "mortal fighter" + }, + { + "appid": 2105400, + "normalized_name": "terrorform" + }, + { + "appid": 2105430, + "normalized_name": "microscopic" + }, + { + "appid": 2105440, + "normalized_name": "fall of bali" + }, + { + "appid": 2105450, + "normalized_name": "flight level" + }, + { + "appid": 2105460, + "normalized_name": "scorphius" + }, + { + "appid": 2105470, + "normalized_name": "吃香蕉 eat bananas" + }, + { + "appid": 2105480, + "normalized_name": "soulsland last fight" + }, + { + "appid": 2105500, + "normalized_name": "mogrimera disciple of order" + }, + { + "appid": 2105510, + "normalized_name": "cop simulator" + }, + { + "appid": 2105530, + "normalized_name": "mapventure story" + }, + { + "appid": 2105600, + "normalized_name": "rpg stories" + }, + { + "appid": 2105610, + "normalized_name": "lost in the void chapter one" + }, + { + "appid": 2105620, + "normalized_name": "sektori" + }, + { + "appid": 2105660, + "normalized_name": "i live under your house." + }, + { + "appid": 2105670, + "normalized_name": "single player horror" + }, + { + "appid": 2105680, + "normalized_name": "a.i.t.w" + }, + { + "appid": 2105690, + "normalized_name": "in the darkness" + }, + { + "appid": 2105700, + "normalized_name": "guilded hearts" + }, + { + "appid": 2105730, + "normalized_name": "riddle of the jelly" + }, + { + "appid": 2105750, + "normalized_name": "こっそり召喚士" + }, + { + "appid": 2105760, + "normalized_name": "headz go racing" + }, + { + "appid": 2105770, + "normalized_name": "harvest mana" + }, + { + "appid": 2105820, + "normalized_name": "brave splat" + }, + { + "appid": 2105840, + "normalized_name": "order automatica" + }, + { + "appid": 2105850, + "normalized_name": "astrid reverie" + }, + { + "appid": 2105860, + "normalized_name": "station 37" + }, + { + "appid": 2105880, + "normalized_name": "kitty's venture" + }, + { + "appid": 2105890, + "normalized_name": "hours after midnight" + }, + { + "appid": 2105910, + "normalized_name": "garbanzo quest" + }, + { + "appid": 2105940, + "normalized_name": "synthalaxy" + }, + { + "appid": 2105960, + "normalized_name": "beach island deluxe" + }, + { + "appid": 2105980, + "normalized_name": "会计模拟器" + }, + { + "appid": 2105990, + "normalized_name": "lovebirb" + }, + { + "appid": 2106030, + "normalized_name": "hoton" + }, + { + "appid": 2106040, + "normalized_name": "panama canal clash" + }, + { + "appid": 2106080, + "normalized_name": "infinimine" + }, + { + "appid": 2106110, + "normalized_name": "mafia pigs" + }, + { + "appid": 2106150, + "normalized_name": "琉奈と悪夢の館" + }, + { + "appid": 2106170, + "normalized_name": "super weapon master 超级武器大师" + }, + { + "appid": 2106200, + "normalized_name": "that golf game" + }, + { + "appid": 2106230, + "normalized_name": "vex clock" + }, + { + "appid": 2106280, + "normalized_name": "moonbriar" + }, + { + "appid": 2106290, + "normalized_name": "blockurbs" + }, + { + "appid": 2106340, + "normalized_name": "night flight" + }, + { + "appid": 2106390, + "normalized_name": "percnops virtual rig" + }, + { + "appid": 2106420, + "normalized_name": "magic market" + }, + { + "appid": 2106450, + "normalized_name": "brave survivors" + }, + { + "appid": 2106490, + "normalized_name": "kanzo" + }, + { + "appid": 2106520, + "normalized_name": "私のリアルは充実しすぎている フルボイス版" + }, + { + "appid": 2106530, + "normalized_name": "putin in jail" + }, + { + "appid": 2106560, + "normalized_name": "cross tails" + }, + { + "appid": 2106590, + "normalized_name": "dyestributor" + }, + { + "appid": 2106600, + "normalized_name": "adventures of skye the slime maid" + }, + { + "appid": 2106610, + "normalized_name": "the smile alchemist" + }, + { + "appid": 2106620, + "normalized_name": "a tale of saviors garuda academy" + }, + { + "appid": 2106650, + "normalized_name": "division" + }, + { + "appid": 2106670, + "normalized_name": "gatekeeper" + }, + { + "appid": 2106680, + "normalized_name": "unhappy place" + }, + { + "appid": 2106720, + "normalized_name": "port cranes container age" + }, + { + "appid": 2106730, + "normalized_name": "phantom hellcat" + }, + { + "appid": 2106760, + "normalized_name": "the burrito quest" + }, + { + "appid": 2106770, + "normalized_name": "morris cave" + }, + { + "appid": 2106810, + "normalized_name": "the forest of drizzling rain" + }, + { + "appid": 2106820, + "normalized_name": "picot ether" + }, + { + "appid": 2106840, + "normalized_name": "paranormasight the seven mysteries of honjo" + }, + { + "appid": 2106860, + "normalized_name": "spy bros. (pipi & bibi's dx)" + }, + { + "appid": 2106910, + "normalized_name": "gods of defense" + }, + { + "appid": 2106930, + "normalized_name": "soulhot" + }, + { + "appid": 2106960, + "normalized_name": "paper can't fly" + }, + { + "appid": 2107030, + "normalized_name": "block fortress 2" + }, + { + "appid": 2107040, + "normalized_name": "rumple town" + }, + { + "appid": 2107060, + "normalized_name": "deathrun guys" + }, + { + "appid": 2107080, + "normalized_name": "pavor" + }, + { + "appid": 2107090, + "normalized_name": "kithack model club" + }, + { + "appid": 2107100, + "normalized_name": "quantum gravity" + }, + { + "appid": 2107130, + "normalized_name": "birdsborough town of alchemy" + }, + { + "appid": 2107150, + "normalized_name": "slavecorporation" + }, + { + "appid": 2107170, + "normalized_name": "beyond the mountains" + }, + { + "appid": 2107180, + "normalized_name": "the hungry fly" + }, + { + "appid": 2107220, + "normalized_name": "the legend of capa negra" + }, + { + "appid": 2107270, + "normalized_name": "closed island" + }, + { + "appid": 2107280, + "normalized_name": "laz3rz" + }, + { + "appid": 2107290, + "normalized_name": "pixxxel" + }, + { + "appid": 2107300, + "normalized_name": "back to home" + }, + { + "appid": 2107400, + "normalized_name": "nullblade collection" + }, + { + "appid": 2107420, + "normalized_name": "projekt everblood" + }, + { + "appid": 2107440, + "normalized_name": "best intruder" + }, + { + "appid": 2107460, + "normalized_name": "steel wound" + }, + { + "appid": 2107470, + "normalized_name": "zero to hero" + }, + { + "appid": 2107480, + "normalized_name": "hypogean" + }, + { + "appid": 2107500, + "normalized_name": "wega lost in the outer reaches" + }, + { + "appid": 2107520, + "normalized_name": "krimson" + }, + { + "appid": 2107540, + "normalized_name": "seafrog" + }, + { + "appid": 2107550, + "normalized_name": "valley peaks" + }, + { + "appid": 2107580, + "normalized_name": "amazing maze" + }, + { + "appid": 2107590, + "normalized_name": "magic or machinations?" + }, + { + "appid": 2107640, + "normalized_name": "bleeding metal rainbow" + }, + { + "appid": 2107650, + "normalized_name": "丛林守护者_guardian of the jungle" + }, + { + "appid": 2107710, + "normalized_name": "flowers of satsunai" + }, + { + "appid": 2107740, + "normalized_name": "freestyle mage 无穷秘法师" + }, + { + "appid": 2107770, + "normalized_name": "first time in hawaii" + }, + { + "appid": 2107780, + "normalized_name": "sokoboxes duo" + }, + { + "appid": 2107800, + "normalized_name": "a halloween valentine" + }, + { + "appid": 2107810, + "normalized_name": "marine survivors" + }, + { + "appid": 2107820, + "normalized_name": "null [remastered]" + }, + { + "appid": 2107860, + "normalized_name": "yggdra union" + }, + { + "appid": 2107870, + "normalized_name": "jade's adventure" + }, + { + "appid": 2107920, + "normalized_name": "mystery solitaire. dreamcatcher 2" + }, + { + "appid": 2107930, + "normalized_name": "star spectre" + }, + { + "appid": 2108060, + "normalized_name": "the ramsey" + }, + { + "appid": 2108080, + "normalized_name": "anant shrankhla" + }, + { + "appid": 2108110, + "normalized_name": "时空旅法师" + }, + { + "appid": 2108180, + "normalized_name": "swordhaven iron conspiracy" + }, + { + "appid": 2108210, + "normalized_name": "ender ocean your mission \"clean the ocean\"" + }, + { + "appid": 2108270, + "normalized_name": "mystical conquests" + }, + { + "appid": 2108290, + "normalized_name": "精靈之妊 用懷孕征服所有傲慢的精靈" + }, + { + "appid": 2108310, + "normalized_name": "live art impossible challenge" + }, + { + "appid": 2108370, + "normalized_name": "argonisos" + }, + { + "appid": 2108400, + "normalized_name": "atco2" + }, + { + "appid": 2108410, + "normalized_name": "attack on king vr reloaded" + }, + { + "appid": 2108420, + "normalized_name": "climb challenge castle" + }, + { + "appid": 2108430, + "normalized_name": "charley's day" + }, + { + "appid": 2108440, + "normalized_name": "lawless west" + }, + { + "appid": 2108520, + "normalized_name": "ghost shadow" + }, + { + "appid": 2108560, + "normalized_name": "harem king peasant to princess gotta breed 'em all!" + }, + { + "appid": 2108580, + "normalized_name": "重装战线" + }, + { + "appid": 2108600, + "normalized_name": "potato survival" + }, + { + "appid": 2108610, + "normalized_name": "theparcel" + }, + { + "appid": 2108640, + "normalized_name": "arise from shadows" + }, + { + "appid": 2108650, + "normalized_name": "run fire" + }, + { + "appid": 2108730, + "normalized_name": "mythlands dragon flight vr" + }, + { + "appid": 2108750, + "normalized_name": "bob the goose" + }, + { + "appid": 2108760, + "normalized_name": "hidden cube world top down 3d" + }, + { + "appid": 2108800, + "normalized_name": "synchronicity" + }, + { + "appid": 2108820, + "normalized_name": "pounce cat" + }, + { + "appid": 2108840, + "normalized_name": "reddoor" + }, + { + "appid": 2108870, + "normalized_name": "square rounds" + }, + { + "appid": 2108950, + "normalized_name": "mice tea" + }, + { + "appid": 2108960, + "normalized_name": "long live the king!" + }, + { + "appid": 2108980, + "normalized_name": "medieval warrior simulator" + }, + { + "appid": 2108990, + "normalized_name": "guilt" + }, + { + "appid": 2109010, + "normalized_name": "求闻编年史 ~ gensokyo recollection" + }, + { + "appid": 2109020, + "normalized_name": "koler" + }, + { + "appid": 2109030, + "normalized_name": "don't fraud my heart!" + }, + { + "appid": 2109060, + "normalized_name": "magenta horizon neverending harvest" + }, + { + "appid": 2109070, + "normalized_name": "volunteers" + }, + { + "appid": 2109090, + "normalized_name": "joey and penguin's 2 player adventure" + }, + { + "appid": 2109150, + "normalized_name": "节奏带师" + }, + { + "appid": 2109160, + "normalized_name": "parket evolution (beta)" + }, + { + "appid": 2109270, + "normalized_name": "preserve" + }, + { + "appid": 2109330, + "normalized_name": "仙侠世界" + }, + { + "appid": 2109360, + "normalized_name": "fake heart" + }, + { + "appid": 2109370, + "normalized_name": "the great war western front" + }, + { + "appid": 2109380, + "normalized_name": "furry striptease" + }, + { + "appid": 2109390, + "normalized_name": "overboss" + }, + { + "appid": 2109400, + "normalized_name": "sex with teachers" + }, + { + "appid": 2109420, + "normalized_name": "pactus" + }, + { + "appid": 2109430, + "normalized_name": "tron identity" + }, + { + "appid": 2109440, + "normalized_name": "vajont vr" + }, + { + "appid": 2109460, + "normalized_name": "乡村狂想曲" + }, + { + "appid": 2109510, + "normalized_name": "cybertd" + }, + { + "appid": 2109530, + "normalized_name": "classic snake" + }, + { + "appid": 2109570, + "normalized_name": "bombing!! 2 a graffiti paradise" + }, + { + "appid": 2109600, + "normalized_name": "shrink assault" + }, + { + "appid": 2109620, + "normalized_name": "aery path of corruption" + }, + { + "appid": 2109630, + "normalized_name": "sky tomb" + }, + { + "appid": 2109640, + "normalized_name": "cross concerto" + }, + { + "appid": 2109650, + "normalized_name": "raid healing" + }, + { + "appid": 2109660, + "normalized_name": "beam splitter" + }, + { + "appid": 2109700, + "normalized_name": "temple of horror" + }, + { + "appid": 2109710, + "normalized_name": "m.u.d.s. mean ugly dirty sport" + }, + { + "appid": 2109720, + "normalized_name": "roam survival" + }, + { + "appid": 2109750, + "normalized_name": "passion eye" + }, + { + "appid": 2109770, + "normalized_name": "kingmakers" + }, + { + "appid": 2109800, + "normalized_name": "my dear sister" + }, + { + "appid": 2109830, + "normalized_name": "immortal guns" + }, + { + "appid": 2109840, + "normalized_name": "the shadow of swallow" + }, + { + "appid": 2109850, + "normalized_name": "barbershop simulator vr" + }, + { + "appid": 2109860, + "normalized_name": "the bounce house" + }, + { + "appid": 2109870, + "normalized_name": "absolution’s apple" + }, + { + "appid": 2109880, + "normalized_name": "memory puzzle futanari gym" + }, + { + "appid": 2109930, + "normalized_name": "from the deep" + }, + { + "appid": 2109950, + "normalized_name": "he's nut your princess" + }, + { + "appid": 2109980, + "normalized_name": "apostate" + }, + { + "appid": 2110000, + "normalized_name": "all systems dance" + }, + { + "appid": 2110110, + "normalized_name": "motherless season 1" + }, + { + "appid": 2110150, + "normalized_name": "thesis of love 心动论证" + }, + { + "appid": 2110240, + "normalized_name": "puck runner" + }, + { + "appid": 2110300, + "normalized_name": "spike mtn" + }, + { + "appid": 2110320, + "normalized_name": "ash battle" + }, + { + "appid": 2110390, + "normalized_name": "the celestial seeker" + }, + { + "appid": 2110430, + "normalized_name": "depois da chuva de meteoros" + }, + { + "appid": 2110440, + "normalized_name": "arrow" + }, + { + "appid": 2110460, + "normalized_name": "cursed 3" + }, + { + "appid": 2110510, + "normalized_name": "dream logic" + }, + { + "appid": 2110520, + "normalized_name": "find me in the maze" + }, + { + "appid": 2110540, + "normalized_name": "the suits have gone mad!" + }, + { + "appid": 2110550, + "normalized_name": "executor" + }, + { + "appid": 2110600, + "normalized_name": "merchant's rush" + }, + { + "appid": 2110610, + "normalized_name": "open air" + }, + { + "appid": 2110630, + "normalized_name": "chernobyl again" + }, + { + "appid": 2110690, + "normalized_name": "exit the game – trial of the griffin" + }, + { + "appid": 2110700, + "normalized_name": "japanese goblins" + }, + { + "appid": 2110710, + "normalized_name": "voxsys" + }, + { + "appid": 2110740, + "normalized_name": "space" + }, + { + "appid": 2110760, + "normalized_name": "heist master" + }, + { + "appid": 2110820, + "normalized_name": "granny remake" + }, + { + "appid": 2110840, + "normalized_name": "legends of amberland ii the song of trees" + }, + { + "appid": 2110890, + "normalized_name": "crash san" + }, + { + "appid": 2110930, + "normalized_name": "zombie prison break" + }, + { + "appid": 2110990, + "normalized_name": "chip off the ol' stumbling block" + }, + { + "appid": 2111000, + "normalized_name": "klitorax the rush for flush" + }, + { + "appid": 2111010, + "normalized_name": "fell from another world" + }, + { + "appid": 2111020, + "normalized_name": "edge islands" + }, + { + "appid": 2111040, + "normalized_name": "dead beacon" + }, + { + "appid": 2111060, + "normalized_name": "the longest walk" + }, + { + "appid": 2111070, + "normalized_name": "荒土之上 on wasteland" + }, + { + "appid": 2111080, + "normalized_name": "lofirunner" + }, + { + "appid": 2111090, + "normalized_name": "let's! revolution!" + }, + { + "appid": 2111170, + "normalized_name": "story of seasons a wonderful life" + }, + { + "appid": 2111190, + "normalized_name": "mullet madjack" + }, + { + "appid": 2111200, + "normalized_name": "bride of darkness" + }, + { + "appid": 2111220, + "normalized_name": "the resurrection of amelia across two worlds" + }, + { + "appid": 2111230, + "normalized_name": "the rage of valhalla" + }, + { + "appid": 2111300, + "normalized_name": "the city cards challenge" + }, + { + "appid": 2111340, + "normalized_name": "swarmed nuts & bolts" + }, + { + "appid": 2111360, + "normalized_name": "extreme evolution drive to divinity" + }, + { + "appid": 2111370, + "normalized_name": "covert critter" + }, + { + "appid": 2111390, + "normalized_name": "the lost abyss" + }, + { + "appid": 2111400, + "normalized_name": "sun shot" + }, + { + "appid": 2111410, + "normalized_name": "unreal vendetta" + }, + { + "appid": 2111420, + "normalized_name": "obedient servant" + }, + { + "appid": 2111430, + "normalized_name": "forgotten house" + }, + { + "appid": 2111440, + "normalized_name": "orbital patrol the lani goodspeed story" + }, + { + "appid": 2111470, + "normalized_name": "wandering duelist" + }, + { + "appid": 2111480, + "normalized_name": "burst!" + }, + { + "appid": 2111490, + "normalized_name": "sins from magdala" + }, + { + "appid": 2111520, + "normalized_name": "sex adventures swingers gym" + }, + { + "appid": 2111540, + "normalized_name": "lovelust project stockholm" + }, + { + "appid": 2111550, + "normalized_name": "schrodinger's cat burglar" + }, + { + "appid": 2111590, + "normalized_name": "terminal breach" + }, + { + "appid": 2111600, + "normalized_name": "war of the fourteen dynasties" + }, + { + "appid": 2111610, + "normalized_name": "timmy's adventures" + }, + { + "appid": 2111630, + "normalized_name": "jr east train simulator" + }, + { + "appid": 2111660, + "normalized_name": "rock paper smash" + }, + { + "appid": 2111710, + "normalized_name": "the older chick said to be a dom is actually a sub!? i took her home and trained her!" + }, + { + "appid": 2111750, + "normalized_name": "just chill 佛系运动 vr" + }, + { + "appid": 2111760, + "normalized_name": "paradise cleaning pregnant ogre" + }, + { + "appid": 2111770, + "normalized_name": "star trust 3d shooter game" + }, + { + "appid": 2111870, + "normalized_name": "section 13" + }, + { + "appid": 2111900, + "normalized_name": "捕神局" + }, + { + "appid": 2111920, + "normalized_name": "fantasy climber. fun adventure" + }, + { + "appid": 2111980, + "normalized_name": "unstable rock" + }, + { + "appid": 2111990, + "normalized_name": "lose ctrl" + }, + { + "appid": 2112080, + "normalized_name": "swimming pool cleaner" + }, + { + "appid": 2112090, + "normalized_name": "downbass warriors heroes of maydamn" + }, + { + "appid": 2112140, + "normalized_name": "captroon" + }, + { + "appid": 2112150, + "normalized_name": "fishing game" + }, + { + "appid": 2112160, + "normalized_name": "among ass trilogy" + }, + { + "appid": 2112170, + "normalized_name": "bravehood" + }, + { + "appid": 2112200, + "normalized_name": "古巫竞技场 ancient witch arena" + }, + { + "appid": 2112210, + "normalized_name": "ensora" + }, + { + "appid": 2112260, + "normalized_name": "kraken odyssey" + }, + { + "appid": 2112270, + "normalized_name": "进入后室 get into backrooms" + }, + { + "appid": 2112290, + "normalized_name": "tide of thieves" + }, + { + "appid": 2112310, + "normalized_name": "the drone zone" + }, + { + "appid": 2112330, + "normalized_name": "epileptic seizure battle ball challenge" + }, + { + "appid": 2112360, + "normalized_name": "droneboi conquest" + }, + { + "appid": 2112370, + "normalized_name": "world of yggdrasil" + }, + { + "appid": 2112380, + "normalized_name": "negative atmosphere emergency room prototype" + }, + { + "appid": 2112420, + "normalized_name": "pillazon mmo drug lord tycoon" + }, + { + "appid": 2112500, + "normalized_name": "kaiju klash" + }, + { + "appid": 2112520, + "normalized_name": "her tears were my light" + }, + { + "appid": 2112530, + "normalized_name": "space adventure escape from siphilus 1b" + }, + { + "appid": 2112540, + "normalized_name": "the prowler hell" + }, + { + "appid": 2112550, + "normalized_name": "ice nosfe" + }, + { + "appid": 2112560, + "normalized_name": "merchant simulator" + }, + { + "appid": 2112570, + "normalized_name": "zombies td" + }, + { + "appid": 2112580, + "normalized_name": "elite forces next gen" + }, + { + "appid": 2112610, + "normalized_name": "last stand" + }, + { + "appid": 2112680, + "normalized_name": "darkness revenge" + }, + { + "appid": 2112730, + "normalized_name": "drag deal" + }, + { + "appid": 2112740, + "normalized_name": "humanica" + }, + { + "appid": 2112750, + "normalized_name": "toziuha night order of the alchemists" + }, + { + "appid": 2112760, + "normalized_name": "hook & go" + }, + { + "appid": 2112780, + "normalized_name": "goman stuck in the avici hell" + }, + { + "appid": 2112810, + "normalized_name": "何必江湖 why to jianghu" + }, + { + "appid": 2112820, + "normalized_name": "the godfeather a mafia pigeon saga" + }, + { + "appid": 2112830, + "normalized_name": "idle space war" + }, + { + "appid": 2112880, + "normalized_name": "十五" + }, + { + "appid": 2112910, + "normalized_name": "the fish" + }, + { + "appid": 2112920, + "normalized_name": "vr pingpong sweetie" + }, + { + "appid": 2112930, + "normalized_name": "vr mongolian eagle" + }, + { + "appid": 2112980, + "normalized_name": "麦格诺瓦" + }, + { + "appid": 2112990, + "normalized_name": "王子斗恶龙2 prince fighting dragon 2" + }, + { + "appid": 2113000, + "normalized_name": "cats in heat" + }, + { + "appid": 2113010, + "normalized_name": "fragment of humanity" + }, + { + "appid": 2113030, + "normalized_name": "the nameless" + }, + { + "appid": 2113040, + "normalized_name": "rungore" + }, + { + "appid": 2113050, + "normalized_name": "rungore beginner experience" + }, + { + "appid": 2113070, + "normalized_name": "newton's playground" + }, + { + "appid": 2113110, + "normalized_name": "rise and fall bronze age" + }, + { + "appid": 2113120, + "normalized_name": "verlet ascend" + }, + { + "appid": 2113140, + "normalized_name": "hu man dungeons" + }, + { + "appid": 2113150, + "normalized_name": "pussy 6" + }, + { + "appid": 2113170, + "normalized_name": "sticky steve's sticky situation" + }, + { + "appid": 2113180, + "normalized_name": "into the sinkhole" + }, + { + "appid": 2113190, + "normalized_name": "wordsearch story samuel's adventure 1" + }, + { + "appid": 2113200, + "normalized_name": "1387 mmo strategy" + }, + { + "appid": 2113210, + "normalized_name": "blue print" + }, + { + "appid": 2113220, + "normalized_name": "voxel miner dwellers of the deep" + }, + { + "appid": 2113230, + "normalized_name": "oil manager" + }, + { + "appid": 2113250, + "normalized_name": "gasolinegypsiesgame" + }, + { + "appid": 2113270, + "normalized_name": "disdain" + }, + { + "appid": 2113290, + "normalized_name": "spam text" + }, + { + "appid": 2113300, + "normalized_name": "holiday with gwen" + }, + { + "appid": 2113310, + "normalized_name": "morning kiss" + }, + { + "appid": 2113320, + "normalized_name": "pure love" + }, + { + "appid": 2113330, + "normalized_name": "pixel boy the legend of tain" + }, + { + "appid": 2113350, + "normalized_name": "heartspell horizon academy" + }, + { + "appid": 2113370, + "normalized_name": "hex picross" + }, + { + "appid": 2113410, + "normalized_name": "wicked west" + }, + { + "appid": 2113420, + "normalized_name": "the solace paradox" + }, + { + "appid": 2113440, + "normalized_name": "hooligan james" + }, + { + "appid": 2113450, + "normalized_name": "forests fields and fortresses" + }, + { + "appid": 2113460, + "normalized_name": "fortune familia" + }, + { + "appid": 2113470, + "normalized_name": "furry vtuber 🎭" + }, + { + "appid": 2113490, + "normalized_name": "mess quest" + }, + { + "appid": 2113530, + "normalized_name": "arrogation unlight of day" + }, + { + "appid": 2113540, + "normalized_name": "梦魇:无归 nightmare without return" + }, + { + "appid": 2113550, + "normalized_name": "the ghosts race | 亡霊競争" + }, + { + "appid": 2113570, + "normalized_name": "ascend reborn" + }, + { + "appid": 2113580, + "normalized_name": "haste miner 2" + }, + { + "appid": 2113590, + "normalized_name": "defenders of tetsoidea chrono chonus" + }, + { + "appid": 2113600, + "normalized_name": "vera the last hope" + }, + { + "appid": 2113630, + "normalized_name": "cursed crops" + }, + { + "appid": 2113650, + "normalized_name": "superhero girls" + }, + { + "appid": 2113660, + "normalized_name": "hentai furry 3" + }, + { + "appid": 2113680, + "normalized_name": "the dot" + }, + { + "appid": 2113690, + "normalized_name": "splash ship" + }, + { + "appid": 2113710, + "normalized_name": "apozomb" + }, + { + "appid": 2113770, + "normalized_name": "in woods" + }, + { + "appid": 2113790, + "normalized_name": "home office simulator" + }, + { + "appid": 2113810, + "normalized_name": "billion bastard bots" + }, + { + "appid": 2113820, + "normalized_name": "aberrant rift" + }, + { + "appid": 2113840, + "normalized_name": "chris'story" + }, + { + "appid": 2113850, + "normalized_name": "spirit city lofi sessions" + }, + { + "appid": 2113880, + "normalized_name": "cave crawler" + }, + { + "appid": 2113900, + "normalized_name": "touge shakai" + }, + { + "appid": 2113920, + "normalized_name": "英雄伝説 黎の軌跡ⅱ crimson sin" + }, + { + "appid": 2113940, + "normalized_name": "stratoskirmish" + }, + { + "appid": 2113960, + "normalized_name": "kvlt" + }, + { + "appid": 2113970, + "normalized_name": "原初之岛(the original island)" + }, + { + "appid": 2113990, + "normalized_name": "山海长歌" + }, + { + "appid": 2114020, + "normalized_name": "山间有点田 sweet in the mountains" + }, + { + "appid": 2114070, + "normalized_name": "talon city death from above" + }, + { + "appid": 2114090, + "normalized_name": "goetita turn based city" + }, + { + "appid": 2114100, + "normalized_name": "rewire" + }, + { + "appid": 2114130, + "normalized_name": "the glacial strain" + }, + { + "appid": 2114160, + "normalized_name": "red rebellion" + }, + { + "appid": 2114170, + "normalized_name": "눈 떠보니 임진왜란이었다 back to the joseon" + }, + { + "appid": 2114180, + "normalized_name": "magnet effect" + }, + { + "appid": 2114190, + "normalized_name": "星际王八传奇" + }, + { + "appid": 2114240, + "normalized_name": "ean's end" + }, + { + "appid": 2114300, + "normalized_name": "chronique des silencieux" + }, + { + "appid": 2114320, + "normalized_name": "paradise puzzle!" + }, + { + "appid": 2114330, + "normalized_name": "honeymancer" + }, + { + "appid": 2114350, + "normalized_name": "is it wrong to repay the debt in a dungeon?" + }, + { + "appid": 2114360, + "normalized_name": "maze blaze" + }, + { + "appid": 2114370, + "normalized_name": "takoyaki party survival" + }, + { + "appid": 2114380, + "normalized_name": "dungeon dungeon!" + }, + { + "appid": 2114430, + "normalized_name": "achievements city" + }, + { + "appid": 2114440, + "normalized_name": "elland the crystal wars" + }, + { + "appid": 2114470, + "normalized_name": "trade and fight" + }, + { + "appid": 2114480, + "normalized_name": "scripted land" + }, + { + "appid": 2114500, + "normalized_name": "伏魔天师" + }, + { + "appid": 2114520, + "normalized_name": "blood and sorcery" + }, + { + "appid": 2114540, + "normalized_name": "absolute matter" + }, + { + "appid": 2114580, + "normalized_name": "spells & secrets character creator" + }, + { + "appid": 2114640, + "normalized_name": "emancipator go!" + }, + { + "appid": 2114660, + "normalized_name": "contrast & girls" + }, + { + "appid": 2114670, + "normalized_name": "neko girls" + }, + { + "appid": 2114680, + "normalized_name": "science girls" + }, + { + "appid": 2114690, + "normalized_name": "defeat everyone" + }, + { + "appid": 2114710, + "normalized_name": "hikki girls" + }, + { + "appid": 2114740, + "normalized_name": "blasphemous 2" + }, + { + "appid": 2114750, + "normalized_name": "tsundere girls" + }, + { + "appid": 2114770, + "normalized_name": "零岁的星光" + }, + { + "appid": 2114790, + "normalized_name": "aidventure" + }, + { + "appid": 2114810, + "normalized_name": "tetris girls" + }, + { + "appid": 2114820, + "normalized_name": "dreamer's road" + }, + { + "appid": 2114830, + "normalized_name": "belt colony" + }, + { + "appid": 2114860, + "normalized_name": "gumnaam" + }, + { + "appid": 2114890, + "normalized_name": "war obelisks" + }, + { + "appid": 2114920, + "normalized_name": "deltatile" + }, + { + "appid": 2114960, + "normalized_name": "built different" + }, + { + "appid": 2114970, + "normalized_name": "skinny & franko fists of violence" + }, + { + "appid": 2114980, + "normalized_name": "mr.addon game maker" + }, + { + "appid": 2114990, + "normalized_name": "missile command recharged" + }, + { + "appid": 2115020, + "normalized_name": "froggin up" + }, + { + "appid": 2115030, + "normalized_name": "death rattle evil onslaught" + }, + { + "appid": 2115040, + "normalized_name": "spooky survivors" + }, + { + "appid": 2115050, + "normalized_name": "puzzle nature 2" + }, + { + "appid": 2115060, + "normalized_name": "magic kingdom" + }, + { + "appid": 2115070, + "normalized_name": "cardness" + }, + { + "appid": 2115080, + "normalized_name": "hex" + }, + { + "appid": 2115110, + "normalized_name": "outrun them" + }, + { + "appid": 2115120, + "normalized_name": "pedal to the metal" + }, + { + "appid": 2115130, + "normalized_name": "parkour legends" + }, + { + "appid": 2115140, + "normalized_name": "the levels of backrooms" + }, + { + "appid": 2115160, + "normalized_name": "lost fragments" + }, + { + "appid": 2115170, + "normalized_name": "jurassic clans" + }, + { + "appid": 2115180, + "normalized_name": "potion wilds" + }, + { + "appid": 2115190, + "normalized_name": "unify" + }, + { + "appid": 2115210, + "normalized_name": "urbano legends' debut" + }, + { + "appid": 2115300, + "normalized_name": "chroma key" + }, + { + "appid": 2115310, + "normalized_name": "jock studio" + }, + { + "appid": 2115340, + "normalized_name": "shale" + }, + { + "appid": 2115390, + "normalized_name": "project unknown" + }, + { + "appid": 2115400, + "normalized_name": "蛮王与女武神" + }, + { + "appid": 2115470, + "normalized_name": "pip 2" + }, + { + "appid": 2115480, + "normalized_name": "poly puzzle predators" + }, + { + "appid": 2115490, + "normalized_name": "high school dirty secrets" + }, + { + "appid": 2115500, + "normalized_name": "flopparena" + }, + { + "appid": 2115510, + "normalized_name": "interquel幕間折" + }, + { + "appid": 2115530, + "normalized_name": "grandmaster's revenge" + }, + { + "appid": 2115560, + "normalized_name": "slime runner" + }, + { + "appid": 2115610, + "normalized_name": "if only i could go home early" + }, + { + "appid": 2115650, + "normalized_name": "xeno command" + }, + { + "appid": 2115680, + "normalized_name": "illustris" + }, + { + "appid": 2115710, + "normalized_name": "necropolis of the angels" + }, + { + "appid": 2115720, + "normalized_name": "botanical td" + }, + { + "appid": 2115760, + "normalized_name": "oppidum" + }, + { + "appid": 2115800, + "normalized_name": "finding mosey" + }, + { + "appid": 2115810, + "normalized_name": "forest terror 2" + }, + { + "appid": 2115820, + "normalized_name": "adventure_with_firefly" + }, + { + "appid": 2115840, + "normalized_name": "dots" + }, + { + "appid": 2115850, + "normalized_name": "last holiday" + }, + { + "appid": 2115860, + "normalized_name": "good hell" + }, + { + "appid": 2115880, + "normalized_name": "void eagle" + }, + { + "appid": 2115890, + "normalized_name": "they came from dimension x" + }, + { + "appid": 2115920, + "normalized_name": "overdelivery" + }, + { + "appid": 2115930, + "normalized_name": "go nutz" + }, + { + "appid": 2115980, + "normalized_name": "super bull knight" + }, + { + "appid": 2116000, + "normalized_name": "阴桃花" + }, + { + "appid": 2116040, + "normalized_name": "gloomscape" + }, + { + "appid": 2116060, + "normalized_name": "epic auto towers" + }, + { + "appid": 2116080, + "normalized_name": "borrowhelen" + }, + { + "appid": 2116120, + "normalized_name": "incursion red river" + }, + { + "appid": 2116150, + "normalized_name": "the american war" + }, + { + "appid": 2116170, + "normalized_name": "out of jail" + }, + { + "appid": 2116180, + "normalized_name": "cats hiding in 3d" + }, + { + "appid": 2116190, + "normalized_name": "live shiver" + }, + { + "appid": 2116200, + "normalized_name": "eco breaker" + }, + { + "appid": 2116210, + "normalized_name": "devil peach soda" + }, + { + "appid": 2116250, + "normalized_name": "draft day sports college football 2023" + }, + { + "appid": 2116260, + "normalized_name": "relic dudes" + }, + { + "appid": 2116290, + "normalized_name": "soda powered penguin" + }, + { + "appid": 2116300, + "normalized_name": "epic survivors" + }, + { + "appid": 2116350, + "normalized_name": "build a lot big dreams" + }, + { + "appid": 2116380, + "normalized_name": "forgotten lands online" + }, + { + "appid": 2116390, + "normalized_name": "nevrosa rescape" + }, + { + "appid": 2116430, + "normalized_name": "maxwell's wicked dollhouse" + }, + { + "appid": 2116460, + "normalized_name": "anomaly" + }, + { + "appid": 2116510, + "normalized_name": "creepy redneck dinosaur mansion 3" + }, + { + "appid": 2116520, + "normalized_name": "fried panic" + }, + { + "appid": 2116590, + "normalized_name": "the dreamer must die" + }, + { + "appid": 2116600, + "normalized_name": "럭키 스태미나" + }, + { + "appid": 2116610, + "normalized_name": "seclusa" + }, + { + "appid": 2116620, + "normalized_name": "swords and sandals 3 redux" + }, + { + "appid": 2116670, + "normalized_name": "corndog" + }, + { + "appid": 2116680, + "normalized_name": "fairy tail beach volleyball havoc" + }, + { + "appid": 2116690, + "normalized_name": "protocol delta" + }, + { + "appid": 2116700, + "normalized_name": "reactor in danger" + }, + { + "appid": 2116710, + "normalized_name": "windsurfing mmx" + }, + { + "appid": 2116740, + "normalized_name": "infinity" + }, + { + "appid": 2116750, + "normalized_name": "lawnmower game space race" + }, + { + "appid": 2116760, + "normalized_name": "panda vs bugs" + }, + { + "appid": 2116770, + "normalized_name": "armoured cavalry operation varkiri" + }, + { + "appid": 2116780, + "normalized_name": "path to warband" + }, + { + "appid": 2116790, + "normalized_name": "warlocks quarry" + }, + { + "appid": 2116800, + "normalized_name": "モノマギア・カンタービレ" + }, + { + "appid": 2116840, + "normalized_name": "最后四人 the last four" + }, + { + "appid": 2116850, + "normalized_name": "another farm roguelike" + }, + { + "appid": 2116860, + "normalized_name": "crimerunner" + }, + { + "appid": 2116890, + "normalized_name": "zodiac fantasy 2" + }, + { + "appid": 2116920, + "normalized_name": "runic survivor" + }, + { + "appid": 2116930, + "normalized_name": "mozart requiem" + }, + { + "appid": 2116950, + "normalized_name": "tiny solar system" + }, + { + "appid": 2116970, + "normalized_name": "starstruck" + }, + { + "appid": 2116980, + "normalized_name": "the hideaway" + }, + { + "appid": 2117020, + "normalized_name": "farm wars the farmer´s wrath" + }, + { + "appid": 2117110, + "normalized_name": "trail of toads" + }, + { + "appid": 2117120, + "normalized_name": "horror girls" + }, + { + "appid": 2117130, + "normalized_name": "hentai pussy 4" + }, + { + "appid": 2117140, + "normalized_name": "sports babes" + }, + { + "appid": 2117160, + "normalized_name": "dead age survivors" + }, + { + "appid": 2117170, + "normalized_name": "kardun" + }, + { + "appid": 2117180, + "normalized_name": "gulu a tail's journey" + }, + { + "appid": 2117190, + "normalized_name": "spliced" + }, + { + "appid": 2117200, + "normalized_name": "future knight (cpc/spectrum)" + }, + { + "appid": 2117210, + "normalized_name": "underfoot queens" + }, + { + "appid": 2117230, + "normalized_name": "night of the wererat" + }, + { + "appid": 2117240, + "normalized_name": "quantum coherence" + }, + { + "appid": 2117290, + "normalized_name": "gordian rooms 2 a curious island prologue" + }, + { + "appid": 2117300, + "normalized_name": "g" + }, + { + "appid": 2117320, + "normalized_name": "fungal descent" + }, + { + "appid": 2117370, + "normalized_name": "mad world survivors" + }, + { + "appid": 2117400, + "normalized_name": "splittown" + }, + { + "appid": 2117410, + "normalized_name": "cosmotica" + }, + { + "appid": 2117420, + "normalized_name": "prime horror ii" + }, + { + "appid": 2117430, + "normalized_name": "purrrifiers cleaning chaos" + }, + { + "appid": 2117440, + "normalized_name": "lollypop" + }, + { + "appid": 2117450, + "normalized_name": "forbidden zone" + }, + { + "appid": 2117510, + "normalized_name": "jigsaw puzzle futanari threesome" + }, + { + "appid": 2117520, + "normalized_name": "english a game" + }, + { + "appid": 2117790, + "normalized_name": "crash override" + }, + { + "appid": 2117930, + "normalized_name": "drakkon world builder" + }, + { + "appid": 2117940, + "normalized_name": "the slush force" + }, + { + "appid": 2117960, + "normalized_name": "slay the zone" + }, + { + "appid": 2118000, + "normalized_name": "hot babes" + }, + { + "appid": 2118010, + "normalized_name": "chess dungeons shubousha" + }, + { + "appid": 2118030, + "normalized_name": "mushrun" + }, + { + "appid": 2118040, + "normalized_name": "pixelcivilization's creator" + }, + { + "appid": 2118060, + "normalized_name": "s.m.a.c.k." + }, + { + "appid": 2118100, + "normalized_name": "okubi" + }, + { + "appid": 2118110, + "normalized_name": "catlike magic" + }, + { + "appid": 2118120, + "normalized_name": "kind words 2 (lofi city pop)" + }, + { + "appid": 2118130, + "normalized_name": "chicken feet" + }, + { + "appid": 2118230, + "normalized_name": "necrotactics" + }, + { + "appid": 2118250, + "normalized_name": "kitchen crisis" + }, + { + "appid": 2118260, + "normalized_name": "1883" + }, + { + "appid": 2118320, + "normalized_name": "steal" + }, + { + "appid": 2118330, + "normalized_name": "pens ballad of the erasers" + }, + { + "appid": 2118370, + "normalized_name": "bosorka" + }, + { + "appid": 2118380, + "normalized_name": "dual chroma" + }, + { + "appid": 2118420, + "normalized_name": "stories from sol the gun dog" + }, + { + "appid": 2118500, + "normalized_name": "touhou library survivors" + }, + { + "appid": 2118520, + "normalized_name": "dune mechanic survive the steampunk era prologue" + }, + { + "appid": 2118540, + "normalized_name": "my big sister" + }, + { + "appid": 2118550, + "normalized_name": "fastrogue" + }, + { + "appid": 2118570, + "normalized_name": "hear your path" + }, + { + "appid": 2118580, + "normalized_name": "supertotalcarnage!" + }, + { + "appid": 2118600, + "normalized_name": "prison" + }, + { + "appid": 2118610, + "normalized_name": "wild west" + }, + { + "appid": 2118680, + "normalized_name": "kingdom of lust" + }, + { + "appid": 2118690, + "normalized_name": "blockpop heroes" + }, + { + "appid": 2118750, + "normalized_name": "crazycaps" + }, + { + "appid": 2118810, + "normalized_name": "breachway" + }, + { + "appid": 2118850, + "normalized_name": "daigaku gurashi" + }, + { + "appid": 2118890, + "normalized_name": "backrooms vhs" + }, + { + "appid": 2118900, + "normalized_name": "sonorous | deep down below" + }, + { + "appid": 2118910, + "normalized_name": "the chaput's baby" + }, + { + "appid": 2118940, + "normalized_name": "wander vyrosa" + }, + { + "appid": 2118990, + "normalized_name": "mars the new eden" + }, + { + "appid": 2119000, + "normalized_name": "elves christmas hentai puzzle" + }, + { + "appid": 2119010, + "normalized_name": "jet & sky" + }, + { + "appid": 2119050, + "normalized_name": "idle vikings clicker" + }, + { + "appid": 2119070, + "normalized_name": "bridge to another world cursed clouds collector's" + }, + { + "appid": 2119080, + "normalized_name": "cube heroes" + }, + { + "appid": 2119100, + "normalized_name": "faraway proximity" + }, + { + "appid": 2119110, + "normalized_name": "furry sex pirates 🏴☠" + }, + { + "appid": 2119160, + "normalized_name": "slurpies free" + }, + { + "appid": 2119210, + "normalized_name": "voyager" + }, + { + "appid": 2119240, + "normalized_name": "trash horror collection 2" + }, + { + "appid": 2119370, + "normalized_name": "marine hearts" + }, + { + "appid": 2119380, + "normalized_name": "amaya's lost soul" + }, + { + "appid": 2119390, + "normalized_name": "discvivors" + }, + { + "appid": 2119420, + "normalized_name": "soldier" + }, + { + "appid": 2119440, + "normalized_name": "world mahjong" + }, + { + "appid": 2119470, + "normalized_name": "fantastic fist" + }, + { + "appid": 2119550, + "normalized_name": "hot guns international missions" + }, + { + "appid": 2119570, + "normalized_name": "panda roll" + }, + { + "appid": 2119580, + "normalized_name": "golden record retriever" + }, + { + "appid": 2119590, + "normalized_name": "deducto 2" + }, + { + "appid": 2119620, + "normalized_name": "in the days of my life" + }, + { + "appid": 2119630, + "normalized_name": "nutty motorcars" + }, + { + "appid": 2119640, + "normalized_name": "cut master spades" + }, + { + "appid": 2119650, + "normalized_name": "convenience stories" + }, + { + "appid": 2119660, + "normalized_name": "dream park story" + }, + { + "appid": 2119670, + "normalized_name": "forest golf planner" + }, + { + "appid": 2119680, + "normalized_name": "tropical resort story" + }, + { + "appid": 2119730, + "normalized_name": "arcane arts academy 2" + }, + { + "appid": 2119740, + "normalized_name": "united heist" + }, + { + "appid": 2119830, + "normalized_name": "misery" + }, + { + "appid": 2119850, + "normalized_name": "maki paw of fury" + }, + { + "appid": 2119880, + "normalized_name": "phantom recall" + }, + { + "appid": 2119940, + "normalized_name": "her world" + }, + { + "appid": 2119960, + "normalized_name": "cursed house 11 match 3 puzzle" + }, + { + "appid": 2120050, + "normalized_name": "行路者:惊蛰" + }, + { + "appid": 2120060, + "normalized_name": "socrates jones pro philosopher" + }, + { + "appid": 2120070, + "normalized_name": "pro philosopher 2 governments & grievances" + }, + { + "appid": 2120100, + "normalized_name": "top fun 10 vr" + }, + { + "appid": 2120110, + "normalized_name": "project morph" + }, + { + "appid": 2120120, + "normalized_name": "grim tales horizon of wishes collector's" + }, + { + "appid": 2120130, + "normalized_name": "unmaker" + }, + { + "appid": 2120140, + "normalized_name": "marble on rails" + }, + { + "appid": 2120220, + "normalized_name": "kyubu kyubu dice" + }, + { + "appid": 2120240, + "normalized_name": "christmas blaster" + }, + { + "appid": 2120250, + "normalized_name": "war tortoise" + }, + { + "appid": 2120270, + "normalized_name": "bite nite" + }, + { + "appid": 2120300, + "normalized_name": "retrowave '84" + }, + { + "appid": 2120310, + "normalized_name": "sagres" + }, + { + "appid": 2120320, + "normalized_name": "wayhaven chronicles book three" + }, + { + "appid": 2120340, + "normalized_name": "zombie mansion" + }, + { + "appid": 2120350, + "normalized_name": "wronged us" + }, + { + "appid": 2120410, + "normalized_name": "the letter classic" + }, + { + "appid": 2120440, + "normalized_name": "beat shot" + }, + { + "appid": 2120510, + "normalized_name": "simple builder" + }, + { + "appid": 2120560, + "normalized_name": "test project" + }, + { + "appid": 2120640, + "normalized_name": "the barker & mustard files" + }, + { + "appid": 2120650, + "normalized_name": "trials of cascadia" + }, + { + "appid": 2120660, + "normalized_name": "slaughter cats" + }, + { + "appid": 2120670, + "normalized_name": "诡仙志异" + }, + { + "appid": 2120680, + "normalized_name": "bogey brian" + }, + { + "appid": 2120710, + "normalized_name": "みんなで人間メダルゲーム" + }, + { + "appid": 2120730, + "normalized_name": "broken cavalier" + }, + { + "appid": 2120750, + "normalized_name": "the first step" + }, + { + "appid": 2120790, + "normalized_name": "ringborn" + }, + { + "appid": 2120810, + "normalized_name": "the peak climb vr" + }, + { + "appid": 2120820, + "normalized_name": "final recurrence" + }, + { + "appid": 2120830, + "normalized_name": "mortal dark" + }, + { + "appid": 2120840, + "normalized_name": "peasant jump quest extreme ai 8k" + }, + { + "appid": 2120850, + "normalized_name": "the elder goddess" + }, + { + "appid": 2120870, + "normalized_name": "sister lize's suffering" + }, + { + "appid": 2120880, + "normalized_name": "doomsday contact" + }, + { + "appid": 2120900, + "normalized_name": "fears to fathom carson house" + }, + { + "appid": 2120910, + "normalized_name": "petite adventure" + }, + { + "appid": 2120930, + "normalized_name": "nocturnal visitors" + }, + { + "appid": 2120950, + "normalized_name": "hot milf 8" + }, + { + "appid": 2120960, + "normalized_name": "gold miner challenger" + }, + { + "appid": 2121000, + "normalized_name": "lair of anubis" + }, + { + "appid": 2121040, + "normalized_name": "phenom" + }, + { + "appid": 2121050, + "normalized_name": "phantom island" + }, + { + "appid": 2121090, + "normalized_name": "space intern" + }, + { + "appid": 2121100, + "normalized_name": "the cabin summer vacation" + }, + { + "appid": 2121120, + "normalized_name": "get it hard" + }, + { + "appid": 2121130, + "normalized_name": "tankron" + }, + { + "appid": 2121150, + "normalized_name": "chess for idiots" + }, + { + "appid": 2121170, + "normalized_name": "hero fodder" + }, + { + "appid": 2121180, + "normalized_name": "bqm blockquest maker" + }, + { + "appid": 2121190, + "normalized_name": "hermit home designer" + }, + { + "appid": 2121210, + "normalized_name": "femboy bangers 2" + }, + { + "appid": 2121220, + "normalized_name": "psion protocol" + }, + { + "appid": 2121260, + "normalized_name": "my mad scientist roommate turned me into her personal robotic battle maiden?!?" + }, + { + "appid": 2121320, + "normalized_name": "timelost" + }, + { + "appid": 2121350, + "normalized_name": "alpha box" + }, + { + "appid": 2121360, + "normalized_name": "东北之夏" + }, + { + "appid": 2121370, + "normalized_name": "rotatepdf a corporate tale" + }, + { + "appid": 2121390, + "normalized_name": "dice guy" + }, + { + "appid": 2121430, + "normalized_name": "みなも流し" + }, + { + "appid": 2121440, + "normalized_name": "monster slayer extermination" + }, + { + "appid": 2121450, + "normalized_name": "bangkok story a stray dog" + }, + { + "appid": 2121480, + "normalized_name": "the silent huntress" + }, + { + "appid": 2121490, + "normalized_name": "otome legends" + }, + { + "appid": 2121510, + "normalized_name": "tenebris somnia" + }, + { + "appid": 2121530, + "normalized_name": "primate father of universe" + }, + { + "appid": 2121550, + "normalized_name": "toybox security" + }, + { + "appid": 2121570, + "normalized_name": "scp infohazard" + }, + { + "appid": 2121590, + "normalized_name": "astrofall" + }, + { + "appid": 2121610, + "normalized_name": "the events at unity farm" + }, + { + "appid": 2121620, + "normalized_name": "memory puzzle futanari massage" + }, + { + "appid": 2121630, + "normalized_name": "furry hentai tangram" + }, + { + "appid": 2121640, + "normalized_name": "the war in chiapas" + }, + { + "appid": 2121710, + "normalized_name": "planet rhythm" + }, + { + "appid": 2121720, + "normalized_name": "custom fire" + }, + { + "appid": 2121740, + "normalized_name": "创业大亨" + }, + { + "appid": 2121760, + "normalized_name": "my furry trainer 🐾" + }, + { + "appid": 2121770, + "normalized_name": "reflex runner" + }, + { + "appid": 2121790, + "normalized_name": "periphery synthetic" + }, + { + "appid": 2121820, + "normalized_name": "正义的伙伴" + }, + { + "appid": 2121840, + "normalized_name": "江山如画" + }, + { + "appid": 2121850, + "normalized_name": "winter's ankh" + }, + { + "appid": 2121910, + "normalized_name": "bunny eureka" + }, + { + "appid": 2121930, + "normalized_name": "ghost cam" + }, + { + "appid": 2121960, + "normalized_name": "gamebreak" + }, + { + "appid": 2121980, + "normalized_name": "void stranger" + }, + { + "appid": 2121990, + "normalized_name": "god pill" + }, + { + "appid": 2122000, + "normalized_name": "tricky tracks" + }, + { + "appid": 2122010, + "normalized_name": "rise of a hero" + }, + { + "appid": 2122040, + "normalized_name": "dimensional gears" + }, + { + "appid": 2122070, + "normalized_name": "宝石少女/girl & gem magic" + }, + { + "appid": 2122080, + "normalized_name": "最后一秒/last second" + }, + { + "appid": 2122090, + "normalized_name": "forgotten but unbroken" + }, + { + "appid": 2122100, + "normalized_name": "av.runner" + }, + { + "appid": 2122110, + "normalized_name": "vdoll" + }, + { + "appid": 2122130, + "normalized_name": "streamer future wars" + }, + { + "appid": 2122170, + "normalized_name": "mega" + }, + { + "appid": 2122180, + "normalized_name": "orbhand" + }, + { + "appid": 2122190, + "normalized_name": "from atom to modern" + }, + { + "appid": 2122210, + "normalized_name": "battle of vukovar rain of steel" + }, + { + "appid": 2122230, + "normalized_name": "玻璃桥" + }, + { + "appid": 2122360, + "normalized_name": "giant wishes" + }, + { + "appid": 2122430, + "normalized_name": "renai x royale love's a battle" + }, + { + "appid": 2122470, + "normalized_name": "grumpy gumphrey supersleuth (cpc/spectrum)" + }, + { + "appid": 2122490, + "normalized_name": "机械兽:进化(mechanical beast evolution)" + }, + { + "appid": 2122550, + "normalized_name": "mushroom card rpg" + }, + { + "appid": 2122570, + "normalized_name": "wrangel island" + }, + { + "appid": 2122590, + "normalized_name": "call of dusk" + }, + { + "appid": 2122640, + "normalized_name": "a survivor girl" + }, + { + "appid": 2122680, + "normalized_name": "duct tape simulator" + }, + { + "appid": 2122700, + "normalized_name": "tk cosgan" + }, + { + "appid": 2122770, + "normalized_name": "kings and catapults" + }, + { + "appid": 2122780, + "normalized_name": "itribe" + }, + { + "appid": 2122810, + "normalized_name": "alpaclands" + }, + { + "appid": 2122830, + "normalized_name": "venus in furs sensual pleasure" + }, + { + "appid": 2122840, + "normalized_name": "fast or dead" + }, + { + "appid": 2122860, + "normalized_name": "tales of tsuki moon guardians" + }, + { + "appid": 2122880, + "normalized_name": "all hands on deck" + }, + { + "appid": 2122890, + "normalized_name": "bonerdale 2022" + }, + { + "appid": 2122910, + "normalized_name": "fishori" + }, + { + "appid": 2122960, + "normalized_name": "cyber attack vr board game" + }, + { + "appid": 2122980, + "normalized_name": "monkey party" + }, + { + "appid": 2123000, + "normalized_name": "save and conquer 8 years" + }, + { + "appid": 2123020, + "normalized_name": "across the globe" + }, + { + "appid": 2123030, + "normalized_name": "idle magic herb" + }, + { + "appid": 2123050, + "normalized_name": "takibi" + }, + { + "appid": 2123070, + "normalized_name": "nun with a gun" + }, + { + "appid": 2123090, + "normalized_name": "bloodpire" + }, + { + "appid": 2123100, + "normalized_name": "喵之旅人" + }, + { + "appid": 2123110, + "normalized_name": "space bot" + }, + { + "appid": 2123120, + "normalized_name": "protector" + }, + { + "appid": 2123140, + "normalized_name": "the scarlet demonslayer" + }, + { + "appid": 2123150, + "normalized_name": "somerholm" + }, + { + "appid": 2123230, + "normalized_name": "they come at night" + }, + { + "appid": 2123290, + "normalized_name": "wheel of naughtiness" + }, + { + "appid": 2123300, + "normalized_name": "catch flex ai dance game" + }, + { + "appid": 2123310, + "normalized_name": "洪荒:我挂机成圣" + }, + { + "appid": 2123320, + "normalized_name": "clearit 13" + }, + { + "appid": 2123330, + "normalized_name": "peck'em bird brawlers" + }, + { + "appid": 2123350, + "normalized_name": "hero's journey" + }, + { + "appid": 2123380, + "normalized_name": "mobius band*" + }, + { + "appid": 2123390, + "normalized_name": "cyberblocker" + }, + { + "appid": 2123400, + "normalized_name": "miramixi storyteller" + }, + { + "appid": 2123410, + "normalized_name": "seven dwarfs legends untold" + }, + { + "appid": 2123420, + "normalized_name": "vilomah" + }, + { + "appid": 2123430, + "normalized_name": "bullcrap!" + }, + { + "appid": 2123450, + "normalized_name": "blade shift rage" + }, + { + "appid": 2123510, + "normalized_name": "locomotion" + }, + { + "appid": 2123530, + "normalized_name": "stellabits" + }, + { + "appid": 2123540, + "normalized_name": "guitar zeros" + }, + { + "appid": 2123550, + "normalized_name": "road frog" + }, + { + "appid": 2123560, + "normalized_name": "frenzy" + }, + { + "appid": 2123630, + "normalized_name": "hackingbul" + }, + { + "appid": 2123640, + "normalized_name": "hollowbody" + }, + { + "appid": 2123650, + "normalized_name": "deception" + }, + { + "appid": 2123680, + "normalized_name": "tabula sono" + }, + { + "appid": 2123770, + "normalized_name": "distraction machine" + }, + { + "appid": 2123800, + "normalized_name": "thetravelgame" + }, + { + "appid": 2123840, + "normalized_name": "回忆画册~memoriesalbum~" + }, + { + "appid": 2123850, + "normalized_name": "puckit deluxe" + }, + { + "appid": 2123920, + "normalized_name": "defend your base" + }, + { + "appid": 2123940, + "normalized_name": "sector 666 the forgotten zone" + }, + { + "appid": 2123990, + "normalized_name": "shift of war" + }, + { + "appid": 2124000, + "normalized_name": "garden business" + }, + { + "appid": 2124010, + "normalized_name": "eternal seas" + }, + { + "appid": 2124040, + "normalized_name": "department of the devil" + }, + { + "appid": 2124070, + "normalized_name": "no worse" + }, + { + "appid": 2124100, + "normalized_name": "transience" + }, + { + "appid": 2124110, + "normalized_name": "vortix" + }, + { + "appid": 2124120, + "normalized_name": "sulfur" + }, + { + "appid": 2124150, + "normalized_name": "skirmish mayhem" + }, + { + "appid": 2124200, + "normalized_name": "nina aquila legal eagle chapter iv \"sacred feathers\"" + }, + { + "appid": 2124210, + "normalized_name": "orebody binder's tale" + }, + { + "appid": 2124240, + "normalized_name": "richbroker" + }, + { + "appid": 2124300, + "normalized_name": "shopping spree extreme!!!" + }, + { + "appid": 2124360, + "normalized_name": "hyper primate" + }, + { + "appid": 2124380, + "normalized_name": "super lesbian animal rpg" + }, + { + "appid": 2124390, + "normalized_name": "flagi" + }, + { + "appid": 2124420, + "normalized_name": "天命奇御:歸途 fate seeker journey" + }, + { + "appid": 2124440, + "normalized_name": "sic 1" + }, + { + "appid": 2124460, + "normalized_name": "asteroids and more asteroids" + }, + { + "appid": 2124480, + "normalized_name": "respark" + }, + { + "appid": 2124490, + "normalized_name": "silent hill 2" + }, + { + "appid": 2124500, + "normalized_name": "forlorn memories" + }, + { + "appid": 2124560, + "normalized_name": "jump journey" + }, + { + "appid": 2124570, + "normalized_name": "dark throne the queen rises" + }, + { + "appid": 2124640, + "normalized_name": "ninja hagakure" + }, + { + "appid": 2124650, + "normalized_name": "the king's castle" + }, + { + "appid": 2124660, + "normalized_name": "fix my cat doc" + }, + { + "appid": 2124680, + "normalized_name": "winning post 10" + }, + { + "appid": 2124690, + "normalized_name": "zen golf" + }, + { + "appid": 2124740, + "normalized_name": "lustcraft" + }, + { + "appid": 2124760, + "normalized_name": "manifest" + }, + { + "appid": 2124770, + "normalized_name": "tuin" + }, + { + "appid": 2124780, + "normalized_name": "endoparasitic" + }, + { + "appid": 2124790, + "normalized_name": "sir questionnaire" + }, + { + "appid": 2124800, + "normalized_name": "elya richi vs blackstone nuclear war" + }, + { + "appid": 2124810, + "normalized_name": "i̇frit" + }, + { + "appid": 2124870, + "normalized_name": "lustful ponies 2" + }, + { + "appid": 2124900, + "normalized_name": "swords and adventures" + }, + { + "appid": 2124910, + "normalized_name": "runeseeker" + }, + { + "appid": 2124930, + "normalized_name": "gum ball run" + }, + { + "appid": 2125050, + "normalized_name": "out of the cube" + }, + { + "appid": 2125070, + "normalized_name": "孤胆惊魂3 起源 fear3 origins" + }, + { + "appid": 2125090, + "normalized_name": "tintin reporter cigars of the pharaoh" + }, + { + "appid": 2125100, + "normalized_name": "be my loyal subject historical boys love (bl) visual novel" + }, + { + "appid": 2125110, + "normalized_name": "brazilian street food simulator" + }, + { + "appid": 2125120, + "normalized_name": "miss kawaii" + }, + { + "appid": 2125140, + "normalized_name": "eat me alive" + }, + { + "appid": 2125150, + "normalized_name": "godmod" + }, + { + "appid": 2125160, + "normalized_name": "prison life 2" + }, + { + "appid": 2125190, + "normalized_name": "bowling hills" + }, + { + "appid": 2125230, + "normalized_name": "healtreach fan game 1 heal tries vr" + }, + { + "appid": 2125250, + "normalized_name": "space runaway" + }, + { + "appid": 2125270, + "normalized_name": "ginnung" + }, + { + "appid": 2125300, + "normalized_name": "off to sleep" + }, + { + "appid": 2125320, + "normalized_name": "squirrels forest race" + }, + { + "appid": 2125340, + "normalized_name": "square off" + }, + { + "appid": 2125350, + "normalized_name": "typing simulator" + }, + { + "appid": 2125360, + "normalized_name": "ギャルアンドチェーンソー~girlandchainsaw~" + }, + { + "appid": 2125370, + "normalized_name": "cubenomics a puzzle game" + }, + { + "appid": 2125400, + "normalized_name": "snuff" + }, + { + "appid": 2125410, + "normalized_name": "into the spiritwell" + }, + { + "appid": 2125420, + "normalized_name": "zorbus" + }, + { + "appid": 2125430, + "normalized_name": "just drive" + }, + { + "appid": 2125460, + "normalized_name": "the hard game" + }, + { + "appid": 2125480, + "normalized_name": "outline dust" + }, + { + "appid": 2125490, + "normalized_name": "蓬莱之旅" + }, + { + "appid": 2125500, + "normalized_name": "two move chess" + }, + { + "appid": 2125540, + "normalized_name": "kādomon hyper auto battlers" + }, + { + "appid": 2125580, + "normalized_name": "锻灵elementforger" + }, + { + "appid": 2125600, + "normalized_name": "políticos memes kombat" + }, + { + "appid": 2125720, + "normalized_name": "rx racing 2022 pro" + }, + { + "appid": 2125750, + "normalized_name": "bounce racing car" + }, + { + "appid": 2125770, + "normalized_name": "beeny" + }, + { + "appid": 2125800, + "normalized_name": "gaze into fate" + }, + { + "appid": 2125810, + "normalized_name": "rome defenders the first wave" + }, + { + "appid": 2125820, + "normalized_name": "shortcuit" + }, + { + "appid": 2125840, + "normalized_name": "planet ü" + }, + { + "appid": 2125870, + "normalized_name": "30 days another" + }, + { + "appid": 2125880, + "normalized_name": "poly parkour" + }, + { + "appid": 2125900, + "normalized_name": "delicious solitaire" + }, + { + "appid": 2125920, + "normalized_name": "mining odyssey" + }, + { + "appid": 2125930, + "normalized_name": "super jagger bomb" + }, + { + "appid": 2125950, + "normalized_name": "hundred fires the rising of red star episode 2" + }, + { + "appid": 2126010, + "normalized_name": "soul guardians" + }, + { + "appid": 2126020, + "normalized_name": "legend of egypt pharaohs garden 2 the sacred crocodile" + }, + { + "appid": 2126090, + "normalized_name": "epsylon the guardians of xendron" + }, + { + "appid": 2126120, + "normalized_name": "railway fun adventure park" + }, + { + "appid": 2126190, + "normalized_name": "rue valley" + }, + { + "appid": 2126200, + "normalized_name": "isle of pochimoon" + }, + { + "appid": 2126250, + "normalized_name": "my bloody weekend" + }, + { + "appid": 2126270, + "normalized_name": "springtime mahjongg 2" + }, + { + "appid": 2126300, + "normalized_name": "fix my legs doc" + }, + { + "appid": 2126340, + "normalized_name": "恋ひ焦がるるカミカクシ" + }, + { + "appid": 2126360, + "normalized_name": "assembly rts unleash your forces" + }, + { + "appid": 2126370, + "normalized_name": "wraithbinder" + }, + { + "appid": 2126380, + "normalized_name": "fight until death" + }, + { + "appid": 2126400, + "normalized_name": "super kill boi 9000" + }, + { + "appid": 2126500, + "normalized_name": "wwii tanks forgotten battles" + }, + { + "appid": 2126580, + "normalized_name": "beatshot" + }, + { + "appid": 2126590, + "normalized_name": "brichi quest" + }, + { + "appid": 2126600, + "normalized_name": "astro vr" + }, + { + "appid": 2126620, + "normalized_name": "super dynostory" + }, + { + "appid": 2126630, + "normalized_name": "the fantastic kitty rue" + }, + { + "appid": 2126650, + "normalized_name": "the myriad" + }, + { + "appid": 2126670, + "normalized_name": "decks against destiny" + }, + { + "appid": 2126680, + "normalized_name": "lust academy season 2" + }, + { + "appid": 2126700, + "normalized_name": "double trouble" + }, + { + "appid": 2126770, + "normalized_name": "weird o's chaos royale" + }, + { + "appid": 2126790, + "normalized_name": "haxware comgam" + }, + { + "appid": 2126810, + "normalized_name": "memory's reach" + }, + { + "appid": 2126830, + "normalized_name": "zoogarnian" + }, + { + "appid": 2126860, + "normalized_name": "reptile park vr" + }, + { + "appid": 2126870, + "normalized_name": "himeyoku a sacrifice of lust and grace" + }, + { + "appid": 2126940, + "normalized_name": "burger impact solar strike" + }, + { + "appid": 2126950, + "normalized_name": "gamebook h. p. lovecraft the haunter of the dark" + }, + { + "appid": 2126960, + "normalized_name": "pandecrown" + }, + { + "appid": 2126970, + "normalized_name": "legend of snake" + }, + { + "appid": 2126980, + "normalized_name": "kleebuu craves fruit salad" + }, + { + "appid": 2126990, + "normalized_name": "lost world" + }, + { + "appid": 2127010, + "normalized_name": "handyman legend" + }, + { + "appid": 2127030, + "normalized_name": "date or destiny kiss or miss" + }, + { + "appid": 2127100, + "normalized_name": "grappling dash" + }, + { + "appid": 2127130, + "normalized_name": "coffee shop simulator" + }, + { + "appid": 2127230, + "normalized_name": "moonpong tales of epic lunacy" + }, + { + "appid": 2127240, + "normalized_name": "darkest light" + }, + { + "appid": 2127300, + "normalized_name": "killfest" + }, + { + "appid": 2127310, + "normalized_name": "deltazone reloaded" + }, + { + "appid": 2127330, + "normalized_name": "basic platformer" + }, + { + "appid": 2127340, + "normalized_name": "dawn one" + }, + { + "appid": 2127350, + "normalized_name": "journey express" + }, + { + "appid": 2127430, + "normalized_name": "loop8 summer of gods" + }, + { + "appid": 2127440, + "normalized_name": "中国式富豪" + }, + { + "appid": 2127470, + "normalized_name": "lost in the sand" + }, + { + "appid": 2127550, + "normalized_name": "detective tales a study in scarlet" + }, + { + "appid": 2127570, + "normalized_name": "greenhearth necromancer" + }, + { + "appid": 2127590, + "normalized_name": "lost in the backrooms" + }, + { + "appid": 2127610, + "normalized_name": "一号(one)" + }, + { + "appid": 2127660, + "normalized_name": "zimmer" + }, + { + "appid": 2127700, + "normalized_name": "noracam's slider challenge" + }, + { + "appid": 2127720, + "normalized_name": "hexcross" + }, + { + "appid": 2127750, + "normalized_name": "slide girls" + }, + { + "appid": 2127800, + "normalized_name": "bass blasters" + }, + { + "appid": 2127810, + "normalized_name": "learning geography countries of the world" + }, + { + "appid": 2127820, + "normalized_name": "battle thunder front 《战雷前线》" + }, + { + "appid": 2127830, + "normalized_name": "podcast vs viewer 《主观争霸》&《主播vs观众》" + }, + { + "appid": 2127920, + "normalized_name": "super greedy cat" + }, + { + "appid": 2127980, + "normalized_name": "hellrazor rise of the beast" + }, + { + "appid": 2127990, + "normalized_name": "when we lost" + }, + { + "appid": 2128000, + "normalized_name": "sneaky peeky" + }, + { + "appid": 2128010, + "normalized_name": "world of motors 2" + }, + { + "appid": 2128020, + "normalized_name": "step journey" + }, + { + "appid": 2128030, + "normalized_name": "catch them if you can" + }, + { + "appid": 2128040, + "normalized_name": "ice cream killer" + }, + { + "appid": 2128050, + "normalized_name": "refund me if you can lexy's story" + }, + { + "appid": 2128070, + "normalized_name": "particles of reality" + }, + { + "appid": 2128120, + "normalized_name": "pete's peril" + }, + { + "appid": 2128130, + "normalized_name": "the legend of gandar ii" + }, + { + "appid": 2128140, + "normalized_name": "deer hunting the season" + }, + { + "appid": 2128160, + "normalized_name": "ghost of ice valley" + }, + { + "appid": 2128220, + "normalized_name": "the most awesome game ever made" + }, + { + "appid": 2128230, + "normalized_name": "slap squad" + }, + { + "appid": 2128270, + "normalized_name": "path of achra" + }, + { + "appid": 2128290, + "normalized_name": "matrix hearts season 1" + }, + { + "appid": 2128300, + "normalized_name": "dungeon in a bottle" + }, + { + "appid": 2128310, + "normalized_name": "ceaseless night" + }, + { + "appid": 2128320, + "normalized_name": "the lost bloodline" + }, + { + "appid": 2128330, + "normalized_name": "the immolate" + }, + { + "appid": 2128340, + "normalized_name": "death trials (director's cut)" + }, + { + "appid": 2128360, + "normalized_name": "waking knightmare" + }, + { + "appid": 2128390, + "normalized_name": "leviathan an interactive comic book" + }, + { + "appid": 2128400, + "normalized_name": "code 29" + }, + { + "appid": 2128410, + "normalized_name": "world of naples" + }, + { + "appid": 2128430, + "normalized_name": "seven seas adventures" + }, + { + "appid": 2128440, + "normalized_name": "enclosure 3 d" + }, + { + "appid": 2128480, + "normalized_name": "staffer case a supernatural mystery adventure" + }, + { + "appid": 2128500, + "normalized_name": "kamaria" + }, + { + "appid": 2128530, + "normalized_name": "signal & echo iris is missing (demo)" + }, + { + "appid": 2128540, + "normalized_name": "stagdraft" + }, + { + "appid": 2128560, + "normalized_name": "mycorrhiza" + }, + { + "appid": 2128570, + "normalized_name": "路地を曲がれば~海峡の故郷~" + }, + { + "appid": 2128580, + "normalized_name": "demiurges" + }, + { + "appid": 2128590, + "normalized_name": "omnibullet" + }, + { + "appid": 2128600, + "normalized_name": "slime puzzle story" + }, + { + "appid": 2128610, + "normalized_name": "the blood amulet" + }, + { + "appid": 2128630, + "normalized_name": "to eternity" + }, + { + "appid": 2128680, + "normalized_name": "ファントムゾーンダイモンズ phantom zone daimons" + }, + { + "appid": 2128690, + "normalized_name": "super block crush 超级破坏球" + }, + { + "appid": 2128710, + "normalized_name": "chilljong" + }, + { + "appid": 2128730, + "normalized_name": "orb fort" + }, + { + "appid": 2128750, + "normalized_name": "your waifu juice" + }, + { + "appid": 2128760, + "normalized_name": "heartless" + }, + { + "appid": 2128770, + "normalized_name": "sgs okinawa" + }, + { + "appid": 2128810, + "normalized_name": "dinosaurs dominion" + }, + { + "appid": 2128830, + "normalized_name": "defect detector" + }, + { + "appid": 2128840, + "normalized_name": "hunting grounds" + }, + { + "appid": 2128910, + "normalized_name": "rebellion" + }, + { + "appid": 2128930, + "normalized_name": "crescent cauldron cafe" + }, + { + "appid": 2128940, + "normalized_name": "人魅" + }, + { + "appid": 2128990, + "normalized_name": "gold of lotusland" + }, + { + "appid": 2129000, + "normalized_name": "murders at tealwoods manor" + }, + { + "appid": 2129020, + "normalized_name": "last christmas" + }, + { + "appid": 2129030, + "normalized_name": "boulette hell" + }, + { + "appid": 2129050, + "normalized_name": "rex" + }, + { + "appid": 2129090, + "normalized_name": "hot blood" + }, + { + "appid": 2129130, + "normalized_name": "unprompted" + }, + { + "appid": 2129140, + "normalized_name": "my house is haunted" + }, + { + "appid": 2129150, + "normalized_name": "horror tale 1 kidnapper" + }, + { + "appid": 2129160, + "normalized_name": "blue wednesday" + }, + { + "appid": 2129200, + "normalized_name": "山村老屋" + }, + { + "appid": 2129220, + "normalized_name": "zoo simulator" + }, + { + "appid": 2129230, + "normalized_name": "神武战略版" + }, + { + "appid": 2129280, + "normalized_name": "蛇香之夜 ~allure of musk~第一夜欧洲篇" + }, + { + "appid": 2129290, + "normalized_name": "scary school simulator" + }, + { + "appid": 2129380, + "normalized_name": "wasd quartet" + }, + { + "appid": 2129390, + "normalized_name": "cataire gambling with cats" + }, + { + "appid": 2129410, + "normalized_name": "salt game" + }, + { + "appid": 2129490, + "normalized_name": "memory lost chapter one" + }, + { + "appid": 2129530, + "normalized_name": "reanimal" + }, + { + "appid": 2129540, + "normalized_name": "peregrine" + }, + { + "appid": 2129560, + "normalized_name": "fairy tag a game of divinities" + }, + { + "appid": 2129570, + "normalized_name": "operation jaeger" + }, + { + "appid": 2129600, + "normalized_name": "the bird" + }, + { + "appid": 2129660, + "normalized_name": "village and the witch" + }, + { + "appid": 2129670, + "normalized_name": "hardrock sex 3d" + }, + { + "appid": 2129680, + "normalized_name": "r.i.p. tour" + }, + { + "appid": 2129720, + "normalized_name": "guilty" + }, + { + "appid": 2129730, + "normalized_name": "zombiesquad ghouls guns n guts" + }, + { + "appid": 2129780, + "normalized_name": "the impossible knight runner" + }, + { + "appid": 2129800, + "normalized_name": "rectangle guy" + }, + { + "appid": 2129810, + "normalized_name": "reignbreaker" + }, + { + "appid": 2129830, + "normalized_name": "deathwish" + }, + { + "appid": 2129850, + "normalized_name": "corgi cove" + }, + { + "appid": 2129860, + "normalized_name": "little horror raiser" + }, + { + "appid": 2129870, + "normalized_name": "[gonochki] cars guns and metal!" + }, + { + "appid": 2129910, + "normalized_name": "chris isn't alone" + }, + { + "appid": 2129950, + "normalized_name": "horrorbox" + }, + { + "appid": 2129970, + "normalized_name": "my loving wife" + }, + { + "appid": 2130000, + "normalized_name": "tailbound" + }, + { + "appid": 2130010, + "normalized_name": "castle doombad 2 muahaha!" + }, + { + "appid": 2130030, + "normalized_name": "mannekin hessler storage" + }, + { + "appid": 2130050, + "normalized_name": "mechstorm" + }, + { + "appid": 2130060, + "normalized_name": "tower walker mmo grind simulator" + }, + { + "appid": 2130080, + "normalized_name": "wobble warriors" + }, + { + "appid": 2130170, + "normalized_name": "bubbbles" + }, + { + "appid": 2130230, + "normalized_name": "gravity box" + }, + { + "appid": 2130250, + "normalized_name": "runombie" + }, + { + "appid": 2130280, + "normalized_name": "bpm boy" + }, + { + "appid": 2130300, + "normalized_name": "eclipse shine of dawn" + }, + { + "appid": 2130380, + "normalized_name": "post apo builder prologue" + }, + { + "appid": 2130440, + "normalized_name": "decopins asset fighters series" + }, + { + "appid": 2130460, + "normalized_name": "fatal frame / project zero mask of the lunar eclipse" + }, + { + "appid": 2130470, + "normalized_name": "evening vibes" + }, + { + "appid": 2130500, + "normalized_name": "under observation" + }, + { + "appid": 2130510, + "normalized_name": "divinus vanitas" + }, + { + "appid": 2130540, + "normalized_name": "目盲/blind" + }, + { + "appid": 2130550, + "normalized_name": "let me out" + }, + { + "appid": 2130590, + "normalized_name": "punch fit" + }, + { + "appid": 2130650, + "normalized_name": "城市工人模拟器 city worker simulator" + }, + { + "appid": 2130680, + "normalized_name": "kris and the city of pleasure" + }, + { + "appid": 2130740, + "normalized_name": "hilm" + }, + { + "appid": 2130750, + "normalized_name": "cracked" + }, + { + "appid": 2130800, + "normalized_name": "hisako and shyla" + }, + { + "appid": 2130850, + "normalized_name": "after the flood" + }, + { + "appid": 2130940, + "normalized_name": "puzzle park" + }, + { + "appid": 2130980, + "normalized_name": "todd's adventures in slime world (lynx/mega drive)" + }, + { + "appid": 2131010, + "normalized_name": "the land beneath us" + }, + { + "appid": 2131020, + "normalized_name": "escape space" + }, + { + "appid": 2131050, + "normalized_name": "handyman" + }, + { + "appid": 2131080, + "normalized_name": "floppy disks from hell" + }, + { + "appid": 2131150, + "normalized_name": "terranny" + }, + { + "appid": 2131180, + "normalized_name": "dark days devil hunt" + }, + { + "appid": 2131200, + "normalized_name": "neversynth" + }, + { + "appid": 2131220, + "normalized_name": "neisis" + }, + { + "appid": 2131240, + "normalized_name": "battlestation" + }, + { + "appid": 2131260, + "normalized_name": "magnetism" + }, + { + "appid": 2131280, + "normalized_name": "ancient" + }, + { + "appid": 2131290, + "normalized_name": "iron frontier" + }, + { + "appid": 2131330, + "normalized_name": "guncar arena" + }, + { + "appid": 2131350, + "normalized_name": "my coworker is an idiot" + }, + { + "appid": 2131360, + "normalized_name": "journeyman" + }, + { + "appid": 2131380, + "normalized_name": "until lights out" + }, + { + "appid": 2131430, + "normalized_name": "wings of the universe" + }, + { + "appid": 2131460, + "normalized_name": "talon's blade" + }, + { + "appid": 2131500, + "normalized_name": "waifu packer" + }, + { + "appid": 2131510, + "normalized_name": "distorted echos" + }, + { + "appid": 2131520, + "normalized_name": "bottle" + }, + { + "appid": 2131530, + "normalized_name": "lewd guest 🍓" + }, + { + "appid": 2131620, + "normalized_name": "don't hide" + }, + { + "appid": 2131630, + "normalized_name": "metal gear solid master collection version" + }, + { + "appid": 2131640, + "normalized_name": "metal gear solid 2 sons of liberty master collection version" + }, + { + "appid": 2131650, + "normalized_name": "metal gear solid 3 snake eater master collection version" + }, + { + "appid": 2131660, + "normalized_name": "call of the golden valley" + }, + { + "appid": 2131670, + "normalized_name": "ant in training" + }, + { + "appid": 2131680, + "normalized_name": "metal gear & metal gear 2 solid snake" + }, + { + "appid": 2131700, + "normalized_name": "infinite miner" + }, + { + "appid": 2131780, + "normalized_name": "純情ギャルと幸せのカタチ ~shape of happiness~" + }, + { + "appid": 2131800, + "normalized_name": "gimmick! special" + }, + { + "appid": 2131820, + "normalized_name": "红月" + }, + { + "appid": 2131830, + "normalized_name": "firestorm deep dive" + }, + { + "appid": 2131840, + "normalized_name": "thelos" + }, + { + "appid": 2131860, + "normalized_name": "ashfall" + }, + { + "appid": 2131920, + "normalized_name": "super hamster ball" + }, + { + "appid": 2131960, + "normalized_name": "runbean galactic" + }, + { + "appid": 2131980, + "normalized_name": "lamp simulator" + }, + { + "appid": 2132040, + "normalized_name": "catherine ragnor blackbeards fury" + }, + { + "appid": 2132060, + "normalized_name": "rc dash" + }, + { + "appid": 2132070, + "normalized_name": "the billion clicker" + }, + { + "appid": 2132080, + "normalized_name": "vexation hand crafted hell" + }, + { + "appid": 2132090, + "normalized_name": "save the princess" + }, + { + "appid": 2132160, + "normalized_name": "mistress vs slave" + }, + { + "appid": 2132190, + "normalized_name": "capoeirogue" + }, + { + "appid": 2132220, + "normalized_name": "polestar" + }, + { + "appid": 2132260, + "normalized_name": "eight dragons 2" + }, + { + "appid": 2132270, + "normalized_name": "robotization the last human" + }, + { + "appid": 2132310, + "normalized_name": "caveshifter" + }, + { + "appid": 2132350, + "normalized_name": "train world" + }, + { + "appid": 2132370, + "normalized_name": "suns of wiraqocha" + }, + { + "appid": 2132380, + "normalized_name": "book of korvald" + }, + { + "appid": 2132410, + "normalized_name": "absorption battle racing" + }, + { + "appid": 2132430, + "normalized_name": "xxx_cyberrat_xxx" + }, + { + "appid": 2132450, + "normalized_name": "spectator" + }, + { + "appid": 2132460, + "normalized_name": "mr. healer" + }, + { + "appid": 2132480, + "normalized_name": "touhou fading illusion" + }, + { + "appid": 2132510, + "normalized_name": "32 in 1 game special" + }, + { + "appid": 2132520, + "normalized_name": "the magic world" + }, + { + "appid": 2132530, + "normalized_name": "last order" + }, + { + "appid": 2132540, + "normalized_name": "mr. run and jump" + }, + { + "appid": 2132560, + "normalized_name": "on your tail" + }, + { + "appid": 2132570, + "normalized_name": "total factory" + }, + { + "appid": 2132620, + "normalized_name": "just drive a lil it's a mini racing game!" + }, + { + "appid": 2132680, + "normalized_name": "universal truck simulator tow games" + }, + { + "appid": 2132690, + "normalized_name": "vivat slovakia" + }, + { + "appid": 2132710, + "normalized_name": "sokomelody" + }, + { + "appid": 2132770, + "normalized_name": "labyrinthatory" + }, + { + "appid": 2132840, + "normalized_name": "deliverance & reign" + }, + { + "appid": 2132850, + "normalized_name": "rabbit and steel" + }, + { + "appid": 2132860, + "normalized_name": "hanoi puzzles spin match" + }, + { + "appid": 2132870, + "normalized_name": "equilibrium" + }, + { + "appid": 2132890, + "normalized_name": "possessor(s)" + }, + { + "appid": 2132900, + "normalized_name": "/conspiracy/ girls >the madness of madison delaroux" + }, + { + "appid": 2132930, + "normalized_name": "paragonian 3 the warrior of light" + }, + { + "appid": 2132950, + "normalized_name": "slim chance" + }, + { + "appid": 2132970, + "normalized_name": "inumeda" + }, + { + "appid": 2132990, + "normalized_name": "氪金模拟器 pay to win simulator" + }, + { + "appid": 2133040, + "normalized_name": "荆轲新传(重制版)" + }, + { + "appid": 2133050, + "normalized_name": "computer virus simulator" + }, + { + "appid": 2133070, + "normalized_name": "vr basketball sweetie" + }, + { + "appid": 2133100, + "normalized_name": "angels of amsterdam" + }, + { + "appid": 2133110, + "normalized_name": "rustystreet" + }, + { + "appid": 2133170, + "normalized_name": "ball game" + }, + { + "appid": 2133180, + "normalized_name": "temporal riff" + }, + { + "appid": 2133250, + "normalized_name": "poly memory predators" + }, + { + "appid": 2133300, + "normalized_name": "the entity code" + }, + { + "appid": 2133330, + "normalized_name": "2tinycowboys" + }, + { + "appid": 2133350, + "normalized_name": "みらくるすいーぱー" + }, + { + "appid": 2133360, + "normalized_name": "fury of west" + }, + { + "appid": 2133400, + "normalized_name": "一九八九千山門" + }, + { + "appid": 2133440, + "normalized_name": "pixelmancer" + }, + { + "appid": 2133450, + "normalized_name": "exilio" + }, + { + "appid": 2133500, + "normalized_name": "keep those bugs away from the bomb" + }, + { + "appid": 2133520, + "normalized_name": "ertugrul of ulukayin" + }, + { + "appid": 2133530, + "normalized_name": "graveyard architect" + }, + { + "appid": 2133540, + "normalized_name": "blöck" + }, + { + "appid": 2133570, + "normalized_name": "spaceslog" + }, + { + "appid": 2133580, + "normalized_name": "mimetic love" + }, + { + "appid": 2133590, + "normalized_name": "fig." + }, + { + "appid": 2133620, + "normalized_name": "battle of decay survival" + }, + { + "appid": 2133650, + "normalized_name": "bonded forever" + }, + { + "appid": 2133730, + "normalized_name": "幻灵界:幻想小森林(fantasykingdom:fantasy tiny forest)" + }, + { + "appid": 2133760, + "normalized_name": "tiny bookshop" + }, + { + "appid": 2133770, + "normalized_name": "tyler tactics" + }, + { + "appid": 2133810, + "normalized_name": "sorry wrong door" + }, + { + "appid": 2133830, + "normalized_name": "brokenlore unfollow" + }, + { + "appid": 2133850, + "normalized_name": "broken reality 2000" + }, + { + "appid": 2133870, + "normalized_name": "golfinite" + }, + { + "appid": 2133890, + "normalized_name": "mixture" + }, + { + "appid": 2133930, + "normalized_name": "stillwater" + }, + { + "appid": 2133940, + "normalized_name": "precision break" + }, + { + "appid": 2133950, + "normalized_name": "living legends the blue chamber collector's" + }, + { + "appid": 2133970, + "normalized_name": "a friend called loneliness" + }, + { + "appid": 2133980, + "normalized_name": "gravity maze" + }, + { + "appid": 2134030, + "normalized_name": "picma picture enigmas" + }, + { + "appid": 2134050, + "normalized_name": "future reality racing league" + }, + { + "appid": 2134060, + "normalized_name": "quarterstaff" + }, + { + "appid": 2134100, + "normalized_name": "color the world" + }, + { + "appid": 2134120, + "normalized_name": "super anime waifu bbq simulator" + }, + { + "appid": 2134140, + "normalized_name": "business empire" + }, + { + "appid": 2134270, + "normalized_name": "tides of time" + }, + { + "appid": 2134280, + "normalized_name": "eclipse of the moon" + }, + { + "appid": 2134300, + "normalized_name": "parkto" + }, + { + "appid": 2134320, + "normalized_name": "ena dream bbq" + }, + { + "appid": 2134330, + "normalized_name": "牌师" + }, + { + "appid": 2134360, + "normalized_name": "89" + }, + { + "appid": 2134370, + "normalized_name": "fox and shadow" + }, + { + "appid": 2134400, + "normalized_name": "ruffhouse vr basketball simulator" + }, + { + "appid": 2134410, + "normalized_name": "rev up! rc grand prix" + }, + { + "appid": 2134420, + "normalized_name": "エクストリームバイクx" + }, + { + "appid": 2134430, + "normalized_name": "desktop basketball" + }, + { + "appid": 2134440, + "normalized_name": "our winter sports" + }, + { + "appid": 2134470, + "normalized_name": "34everlast" + }, + { + "appid": 2134510, + "normalized_name": "promethean hive wave defense" + }, + { + "appid": 2134530, + "normalized_name": "odyssey of dremid'ir" + }, + { + "appid": 2134540, + "normalized_name": "战争冒险 序章" + }, + { + "appid": 2134560, + "normalized_name": "9th sentinel sisters" + }, + { + "appid": 2134580, + "normalized_name": "实习班主任 practice teacher" + }, + { + "appid": 2134600, + "normalized_name": "pip 3" + }, + { + "appid": 2134630, + "normalized_name": "hot cleopatra" + }, + { + "appid": 2134640, + "normalized_name": "viking heroes 3" + }, + { + "appid": 2134650, + "normalized_name": "new yankee karma tales" + }, + { + "appid": 2134670, + "normalized_name": "shipswing" + }, + { + "appid": 2134680, + "normalized_name": "stardust league" + }, + { + "appid": 2134690, + "normalized_name": "injection" + }, + { + "appid": 2134720, + "normalized_name": "stormbinders" + }, + { + "appid": 2134760, + "normalized_name": "math adventures" + }, + { + "appid": 2134770, + "normalized_name": "steamworld build" + }, + { + "appid": 2134780, + "normalized_name": "守卫家园" + }, + { + "appid": 2134800, + "normalized_name": "warrior" + }, + { + "appid": 2134850, + "normalized_name": "space drilling station" + }, + { + "appid": 2134860, + "normalized_name": "my ex future family" + }, + { + "appid": 2134900, + "normalized_name": "scribbleman army" + }, + { + "appid": 2134910, + "normalized_name": "勇往小队" + }, + { + "appid": 2134920, + "normalized_name": "spirits' creek" + }, + { + "appid": 2134960, + "normalized_name": "anti sane" + }, + { + "appid": 2134970, + "normalized_name": "the hotel" + }, + { + "appid": 2134980, + "normalized_name": "soul dier part 1" + }, + { + "appid": 2135000, + "normalized_name": "norigin" + }, + { + "appid": 2135030, + "normalized_name": "hellescape" + }, + { + "appid": 2135150, + "normalized_name": "elin" + }, + { + "appid": 2135190, + "normalized_name": "shape of the toilet rim" + }, + { + "appid": 2135210, + "normalized_name": "stinky and loof in wonderland" + }, + { + "appid": 2135280, + "normalized_name": "england in london" + }, + { + "appid": 2135320, + "normalized_name": "castle warriors" + }, + { + "appid": 2135350, + "normalized_name": "fallen evolution" + }, + { + "appid": 2135380, + "normalized_name": "operation satoshi [early version alpha]" + }, + { + "appid": 2135460, + "normalized_name": "the slaughterday" + }, + { + "appid": 2135500, + "normalized_name": "sora no ao to shiro to" + }, + { + "appid": 2135510, + "normalized_name": "カルマの回収屋(karma collector)" + }, + { + "appid": 2135540, + "normalized_name": "the backworld prologue" + }, + { + "appid": 2135560, + "normalized_name": "arcane survivors" + }, + { + "appid": 2135570, + "normalized_name": "moksha" + }, + { + "appid": 2135580, + "normalized_name": "again and again" + }, + { + "appid": 2135600, + "normalized_name": "the chalk" + }, + { + "appid": 2135630, + "normalized_name": "best friend" + }, + { + "appid": 2135640, + "normalized_name": "hot mom" + }, + { + "appid": 2135650, + "normalized_name": "take the wheels!" + }, + { + "appid": 2135680, + "normalized_name": "die daddy die" + }, + { + "appid": 2135690, + "normalized_name": "提西探险社" + }, + { + "appid": 2135710, + "normalized_name": "atham battle simulator" + }, + { + "appid": 2135740, + "normalized_name": "moto trophy" + }, + { + "appid": 2135780, + "normalized_name": "shin galaxy alpha war" + }, + { + "appid": 2135800, + "normalized_name": "羁绊" + }, + { + "appid": 2135810, + "normalized_name": "mark of the void" + }, + { + "appid": 2135830, + "normalized_name": "connected through fate" + }, + { + "appid": 2135850, + "normalized_name": "tinytown" + }, + { + "appid": 2135860, + "normalized_name": "contraption simulator" + }, + { + "appid": 2135870, + "normalized_name": "warpvector" + }, + { + "appid": 2135890, + "normalized_name": "planet barren objective" + }, + { + "appid": 2135920, + "normalized_name": "tivick'ing! chronicles" + }, + { + "appid": 2135930, + "normalized_name": "dreamables" + }, + { + "appid": 2135960, + "normalized_name": "rhythm storm" + }, + { + "appid": 2135970, + "normalized_name": "magnus positive phototaxis" + }, + { + "appid": 2135990, + "normalized_name": "ringlorn saga" + }, + { + "appid": 2136060, + "normalized_name": "super arter" + }, + { + "appid": 2136090, + "normalized_name": "500 second challenge" + }, + { + "appid": 2136110, + "normalized_name": "vox populi brasil 2022" + }, + { + "appid": 2136130, + "normalized_name": "soul searching" + }, + { + "appid": 2136170, + "normalized_name": "to the top" + }, + { + "appid": 2136180, + "normalized_name": "the many deaths of lily kosen" + }, + { + "appid": 2136200, + "normalized_name": "无尽星海(endless stars)" + }, + { + "appid": 2136210, + "normalized_name": "ami's room" + }, + { + "appid": 2136220, + "normalized_name": "andromeda survivors" + }, + { + "appid": 2136280, + "normalized_name": "phd" + }, + { + "appid": 2136300, + "normalized_name": "infected friend" + }, + { + "appid": 2136310, + "normalized_name": "elven rivers the forgotten lands collector's" + }, + { + "appid": 2136320, + "normalized_name": "emergency crew 2 global warming" + }, + { + "appid": 2136340, + "normalized_name": "kakuriyo" + }, + { + "appid": 2136380, + "normalized_name": "hvs hitler vs stalin battle of moscow" + }, + { + "appid": 2136390, + "normalized_name": "run or boom" + }, + { + "appid": 2136400, + "normalized_name": "cycle of the moon" + }, + { + "appid": 2136420, + "normalized_name": "fire the first dreamer" + }, + { + "appid": 2136430, + "normalized_name": "projectile arena" + }, + { + "appid": 2136450, + "normalized_name": "super ball arena" + }, + { + "appid": 2136470, + "normalized_name": "eraser" + }, + { + "appid": 2136480, + "normalized_name": "bite me" + }, + { + "appid": 2136550, + "normalized_name": "highscore" + }, + { + "appid": 2136620, + "normalized_name": "bandit realms" + }, + { + "appid": 2136690, + "normalized_name": "honey magician" + }, + { + "appid": 2136700, + "normalized_name": "ソラナと陽の工房" + }, + { + "appid": 2136770, + "normalized_name": "dryft city kyngs" + }, + { + "appid": 2136800, + "normalized_name": "예측 게임" + }, + { + "appid": 2136810, + "normalized_name": "jam above jam below" + }, + { + "appid": 2136820, + "normalized_name": "the lord of isekai brothels" + }, + { + "appid": 2136860, + "normalized_name": "alien war" + }, + { + "appid": 2136890, + "normalized_name": "the lonely people" + }, + { + "appid": 2136910, + "normalized_name": "sanguis veil of the forgotten" + }, + { + "appid": 2136950, + "normalized_name": "forklift extreme deluxe" + }, + { + "appid": 2136970, + "normalized_name": "are you afraid of the dark" + }, + { + "appid": 2136990, + "normalized_name": "destruction simulator" + }, + { + "appid": 2137000, + "normalized_name": "hidden object vacation" + }, + { + "appid": 2137090, + "normalized_name": "lightning" + }, + { + "appid": 2137150, + "normalized_name": "super pentagon" + }, + { + "appid": 2137190, + "normalized_name": "pregnant ogre" + }, + { + "appid": 2137200, + "normalized_name": "novi cube" + }, + { + "appid": 2137250, + "normalized_name": "hidden office top down 3d" + }, + { + "appid": 2137260, + "normalized_name": "astro & luna vs. the solar system" + }, + { + "appid": 2137280, + "normalized_name": "graviton the great sand simulator" + }, + { + "appid": 2137300, + "normalized_name": "hitmen havoc" + }, + { + "appid": 2137330, + "normalized_name": "ankif 将棋定跡暗記アプリ" + }, + { + "appid": 2137350, + "normalized_name": "input chaos" + }, + { + "appid": 2137400, + "normalized_name": "emyliveshow s&m story" + }, + { + "appid": 2137430, + "normalized_name": "chasetag" + }, + { + "appid": 2137460, + "normalized_name": "jawbreaker" + }, + { + "appid": 2137470, + "normalized_name": "regency solitaire ii" + }, + { + "appid": 2137480, + "normalized_name": "on the peril of parrots" + }, + { + "appid": 2137510, + "normalized_name": "ghost of fall" + }, + { + "appid": 2137520, + "normalized_name": "sawdust" + }, + { + "appid": 2137540, + "normalized_name": "light in blood" + }, + { + "appid": 2137560, + "normalized_name": "reimus awesome holiday" + }, + { + "appid": 2137570, + "normalized_name": "cairn stone balancing" + }, + { + "appid": 2137580, + "normalized_name": "pinhole universe" + }, + { + "appid": 2137600, + "normalized_name": "huge jaws" + }, + { + "appid": 2137610, + "normalized_name": "grapple gal" + }, + { + "appid": 2137620, + "normalized_name": "korean bbq simulator" + }, + { + "appid": 2137660, + "normalized_name": "sanri" + }, + { + "appid": 2137670, + "normalized_name": "veridian expanse" + }, + { + "appid": 2137680, + "normalized_name": "rkr rush kill repeat" + }, + { + "appid": 2137690, + "normalized_name": "natives" + }, + { + "appid": 2137700, + "normalized_name": "i'm on observation duty 6" + }, + { + "appid": 2137740, + "normalized_name": "forbidden escape" + }, + { + "appid": 2137750, + "normalized_name": "frameland a binary tale" + }, + { + "appid": 2137760, + "normalized_name": "crafty survivors" + }, + { + "appid": 2137770, + "normalized_name": "dragon blast" + }, + { + "appid": 2137790, + "normalized_name": "memory's abyss (chapter zero)" + }, + { + "appid": 2137840, + "normalized_name": "wayward rose" + }, + { + "appid": 2137880, + "normalized_name": "ink inside" + }, + { + "appid": 2137900, + "normalized_name": "the good ghouls" + }, + { + "appid": 2137920, + "normalized_name": "umbra" + }, + { + "appid": 2137950, + "normalized_name": "the broken balance" + }, + { + "appid": 2137990, + "normalized_name": "age of the duel" + }, + { + "appid": 2138000, + "normalized_name": "hoshizora no memoria eternal heart hd" + }, + { + "appid": 2138010, + "normalized_name": "a clockwork ley line flowers falling in the morning mist" + }, + { + "appid": 2138050, + "normalized_name": "fallen feather" + }, + { + "appid": 2138080, + "normalized_name": "dim tower" + }, + { + "appid": 2138090, + "normalized_name": "atelier marie remake the alchemist of salburg" + }, + { + "appid": 2138100, + "normalized_name": "cabin of shadows dueling impostors" + }, + { + "appid": 2138110, + "normalized_name": "one more dream" + }, + { + "appid": 2138120, + "normalized_name": "nonogram girl's sweets" + }, + { + "appid": 2138140, + "normalized_name": "didactic jesus game" + }, + { + "appid": 2138150, + "normalized_name": "my stepsis is a furry futa fox" + }, + { + "appid": 2138180, + "normalized_name": "晨海星澜 追忆篇" + }, + { + "appid": 2138190, + "normalized_name": "startron" + }, + { + "appid": 2138230, + "normalized_name": "devolution 魔剣の王としもべたち" + }, + { + "appid": 2138240, + "normalized_name": "chronicles of cyberpunk lost dream" + }, + { + "appid": 2138270, + "normalized_name": "mercury" + }, + { + "appid": 2138290, + "normalized_name": "fraim survival rhythm aim trainer" + }, + { + "appid": 2138300, + "normalized_name": "skye tales" + }, + { + "appid": 2138340, + "normalized_name": "ships simulator 2024" + }, + { + "appid": 2138350, + "normalized_name": "双相" + }, + { + "appid": 2138360, + "normalized_name": "amerta" + }, + { + "appid": 2138380, + "normalized_name": "goliath playing with reality" + }, + { + "appid": 2138400, + "normalized_name": "slime hero" + }, + { + "appid": 2138410, + "normalized_name": "turnip mountain" + }, + { + "appid": 2138450, + "normalized_name": "the agnietta – the holy healer and the cursed dungeon" + }, + { + "appid": 2138460, + "normalized_name": "ovivim pra sua stream" + }, + { + "appid": 2138480, + "normalized_name": "capsule rush" + }, + { + "appid": 2138510, + "normalized_name": "hentai survivors" + }, + { + "appid": 2138520, + "normalized_name": "i'm a sardine keita" + }, + { + "appid": 2138560, + "normalized_name": "dissent on mars" + }, + { + "appid": 2138570, + "normalized_name": "mutants genesis" + }, + { + "appid": 2138580, + "normalized_name": "exotica petshop simulator" + }, + { + "appid": 2138600, + "normalized_name": "tapering tower" + }, + { + "appid": 2138610, + "normalized_name": "the legend of heroes trails through daybreak" + }, + { + "appid": 2138670, + "normalized_name": "tireless pig" + }, + { + "appid": 2138700, + "normalized_name": "crypt" + }, + { + "appid": 2138710, + "normalized_name": "sifu" + }, + { + "appid": 2138720, + "normalized_name": "rematch" + }, + { + "appid": 2138740, + "normalized_name": "throw your phone (into the ocean)" + }, + { + "appid": 2138780, + "normalized_name": "cashgrab" + }, + { + "appid": 2138790, + "normalized_name": "mr. white" + }, + { + "appid": 2138820, + "normalized_name": "abrupt valley" + }, + { + "appid": 2138840, + "normalized_name": "broken build simulator" + }, + { + "appid": 2138850, + "normalized_name": "aniahikoaexperiment a1a aver.aaa13032025aaa a a micro prince akihiko adisony akazaka & a a micro princess a" + }, + { + "appid": 2138860, + "normalized_name": "escape from pine mountain" + }, + { + "appid": 2138920, + "normalized_name": "budgie genetics simulator" + }, + { + "appid": 2138930, + "normalized_name": "dodge the missionaries" + }, + { + "appid": 2138960, + "normalized_name": "dot tanki" + }, + { + "appid": 2139020, + "normalized_name": "what the fog" + }, + { + "appid": 2139030, + "normalized_name": "boomshine plus" + }, + { + "appid": 2139040, + "normalized_name": "cook serve delicious re mustard!" + }, + { + "appid": 2139090, + "normalized_name": "project ethos" + }, + { + "appid": 2139100, + "normalized_name": "morbid" + }, + { + "appid": 2139180, + "normalized_name": "cosmic pebble" + }, + { + "appid": 2139290, + "normalized_name": "one tank army" + }, + { + "appid": 2139300, + "normalized_name": "redemption reapers" + }, + { + "appid": 2139310, + "normalized_name": "时无烬" + }, + { + "appid": 2139320, + "normalized_name": "bunker life" + }, + { + "appid": 2139330, + "normalized_name": "auto immune" + }, + { + "appid": 2139350, + "normalized_name": "dead second" + }, + { + "appid": 2139370, + "normalized_name": "court sort vr" + }, + { + "appid": 2139410, + "normalized_name": "chrono crimes" + }, + { + "appid": 2139440, + "normalized_name": "the wall mustn't fall" + }, + { + "appid": 2139460, + "normalized_name": "once human" + }, + { + "appid": 2139480, + "normalized_name": "girls slap" + }, + { + "appid": 2139500, + "normalized_name": "消耗阳寿1" + }, + { + "appid": 2139510, + "normalized_name": "amber trail" + }, + { + "appid": 2139580, + "normalized_name": "cave quest 3" + }, + { + "appid": 2139620, + "normalized_name": "fff" + }, + { + "appid": 2139630, + "normalized_name": "obedient women" + }, + { + "appid": 2139690, + "normalized_name": "everest truck simulator" + }, + { + "appid": 2139730, + "normalized_name": "maskonauts chat'attack" + }, + { + "appid": 2139770, + "normalized_name": "nagayami nights" + }, + { + "appid": 2139790, + "normalized_name": "halloween trouble 4" + }, + { + "appid": 2139800, + "normalized_name": "orcen axe" + }, + { + "appid": 2139820, + "normalized_name": "hustle simulator" + }, + { + "appid": 2139830, + "normalized_name": "paperplanes" + }, + { + "appid": 2139840, + "normalized_name": "skelethrone the chronicles of ericona" + }, + { + "appid": 2139850, + "normalized_name": "siana tales" + }, + { + "appid": 2139870, + "normalized_name": "skelethrone the prey" + }, + { + "appid": 2139890, + "normalized_name": "dream fight will" + }, + { + "appid": 2139960, + "normalized_name": "风景谜题三合一 scenery puzzle 3in1" + }, + { + "appid": 2140000, + "normalized_name": "cage of etha" + }, + { + "appid": 2140020, + "normalized_name": "stronghold" + }, + { + "appid": 2140050, + "normalized_name": "sgs battle for stalingrad" + }, + { + "appid": 2140070, + "normalized_name": "sinner 97 prologue" + }, + { + "appid": 2140080, + "normalized_name": "pretty overseer dating sim" + }, + { + "appid": 2140090, + "normalized_name": "dust kingdom" + }, + { + "appid": 2140100, + "normalized_name": "whisker squadron survivor" + }, + { + "appid": 2140110, + "normalized_name": "chiky poky" + }, + { + "appid": 2140150, + "normalized_name": "retrorange" + }, + { + "appid": 2140170, + "normalized_name": "sinned" + }, + { + "appid": 2140180, + "normalized_name": "fright knight legend" + }, + { + "appid": 2140200, + "normalized_name": "resolve" + }, + { + "appid": 2140210, + "normalized_name": "antivira" + }, + { + "appid": 2140310, + "normalized_name": "wish me well" + }, + { + "appid": 2140330, + "normalized_name": "madden nfl 24" + }, + { + "appid": 2140360, + "normalized_name": "控制论:年份游戏2022" + }, + { + "appid": 2140410, + "normalized_name": "target react force" + }, + { + "appid": 2140460, + "normalized_name": "body. electric." + }, + { + "appid": 2140470, + "normalized_name": "hotel story" + }, + { + "appid": 2140480, + "normalized_name": "virago trepidation" + }, + { + "appid": 2140510, + "normalized_name": "town of salem 2" + }, + { + "appid": 2140520, + "normalized_name": "dutch maximus out of the toy box" + }, + { + "appid": 2140540, + "normalized_name": "hellslinger" + }, + { + "appid": 2140550, + "normalized_name": "repressed" + }, + { + "appid": 2140570, + "normalized_name": "time is honey" + }, + { + "appid": 2140590, + "normalized_name": "cat and watermouse" + }, + { + "appid": 2140600, + "normalized_name": "ninano dream ranch" + }, + { + "appid": 2140620, + "normalized_name": "the bakerville case" + }, + { + "appid": 2140650, + "normalized_name": "harvest moon the winds of anthos" + }, + { + "appid": 2140680, + "normalized_name": "code r.u.b.i.k." + }, + { + "appid": 2140700, + "normalized_name": "so below" + }, + { + "appid": 2140740, + "normalized_name": "exquisite girls" + }, + { + "appid": 2140770, + "normalized_name": "千灵大陆 qianling mainland" + }, + { + "appid": 2140810, + "normalized_name": "trinity building editor" + }, + { + "appid": 2140840, + "normalized_name": "pop journey" + }, + { + "appid": 2140850, + "normalized_name": "looper tactics" + }, + { + "appid": 2140870, + "normalized_name": "stunt legends" + }, + { + "appid": 2140880, + "normalized_name": "me in the office" + }, + { + "appid": 2140900, + "normalized_name": "the unluckiest man" + }, + { + "appid": 2140960, + "normalized_name": "aqra tenses [learn english]" + }, + { + "appid": 2140980, + "normalized_name": "slumberer's universe" + }, + { + "appid": 2141000, + "normalized_name": "it's dark inside" + }, + { + "appid": 2141040, + "normalized_name": "formula retro racing world tour" + }, + { + "appid": 2141090, + "normalized_name": "fit puzzle blocks" + }, + { + "appid": 2141100, + "normalized_name": "pushing popo" + }, + { + "appid": 2141140, + "normalized_name": "rebirthing" + }, + { + "appid": 2141180, + "normalized_name": "servants of sumomon" + }, + { + "appid": 2141250, + "normalized_name": "avopug show" + }, + { + "appid": 2141280, + "normalized_name": "gladieaters" + }, + { + "appid": 2141330, + "normalized_name": "magical girl survivors prologue" + }, + { + "appid": 2141350, + "normalized_name": "jasper's dream" + }, + { + "appid": 2141360, + "normalized_name": "kingdom bash" + }, + { + "appid": 2141460, + "normalized_name": "rising star the horse game" + }, + { + "appid": 2141470, + "normalized_name": "bad writer" + }, + { + "appid": 2141490, + "normalized_name": "skirmishers" + }, + { + "appid": 2141520, + "normalized_name": "survivor mercs" + }, + { + "appid": 2141550, + "normalized_name": "panzer" + }, + { + "appid": 2141560, + "normalized_name": "star rising" + }, + { + "appid": 2141600, + "normalized_name": "lofi waifu jigsaw" + }, + { + "appid": 2141620, + "normalized_name": "landiscape" + }, + { + "appid": 2141640, + "normalized_name": "jump ball" + }, + { + "appid": 2141650, + "normalized_name": "endless engines" + }, + { + "appid": 2141690, + "normalized_name": "car dealership simulator" + }, + { + "appid": 2141710, + "normalized_name": "winged raider" + }, + { + "appid": 2141720, + "normalized_name": "tower numbers" + }, + { + "appid": 2141730, + "normalized_name": "backrooms escape together" + }, + { + "appid": 2141740, + "normalized_name": "rooftop postgirl" + }, + { + "appid": 2141770, + "normalized_name": "urbo" + }, + { + "appid": 2141780, + "normalized_name": "color pals" + }, + { + "appid": 2141790, + "normalized_name": "the boundary condition" + }, + { + "appid": 2141810, + "normalized_name": "gun king" + }, + { + "appid": 2141820, + "normalized_name": "onion assault" + }, + { + "appid": 2141850, + "normalized_name": "riddledale" + }, + { + "appid": 2141900, + "normalized_name": "ravyne" + }, + { + "appid": 2141910, + "normalized_name": "magic the gathering arena" + }, + { + "appid": 2141990, + "normalized_name": "魔塔三国之逆乱时空" + }, + { + "appid": 2142030, + "normalized_name": "fishton a town to remember" + }, + { + "appid": 2142040, + "normalized_name": "in the dark" + }, + { + "appid": 2142100, + "normalized_name": "a smooth game (unlike... life)" + }, + { + "appid": 2142110, + "normalized_name": "vr rock climbing" + }, + { + "appid": 2142130, + "normalized_name": "イマひとつの大学院生活" + }, + { + "appid": 2142140, + "normalized_name": "fritz&chesster learn to play chess" + }, + { + "appid": 2142160, + "normalized_name": "turlock holmes" + }, + { + "appid": 2142170, + "normalized_name": "burg wimmel" + }, + { + "appid": 2142220, + "normalized_name": "vr dragon flight" + }, + { + "appid": 2142230, + "normalized_name": "mercenaries saga 1 will of the white lions" + }, + { + "appid": 2142240, + "normalized_name": "mercenaries saga 2 order of the silver eagle" + }, + { + "appid": 2142250, + "normalized_name": "mercenaries saga 3 gray wolves of war" + }, + { + "appid": 2142260, + "normalized_name": "mercenaries wings the false phoenix" + }, + { + "appid": 2142300, + "normalized_name": "alquiem" + }, + { + "appid": 2142330, + "normalized_name": "bud spencer & terence hill slaps and beans 2" + }, + { + "appid": 2142370, + "normalized_name": "king of water" + }, + { + "appid": 2142380, + "normalized_name": "retro drive revamped" + }, + { + "appid": 2142390, + "normalized_name": "torn apart prototype" + }, + { + "appid": 2142400, + "normalized_name": "the riese project prologue" + }, + { + "appid": 2142420, + "normalized_name": "wonderland quest" + }, + { + "appid": 2142430, + "normalized_name": "score gun" + }, + { + "appid": 2142440, + "normalized_name": "charlie's delivery" + }, + { + "appid": 2142450, + "normalized_name": "z.o.n.a project x vr" + }, + { + "appid": 2142460, + "normalized_name": "retired waves" + }, + { + "appid": 2142470, + "normalized_name": "the doll's window" + }, + { + "appid": 2142490, + "normalized_name": "welcome color to world (wctw) part 1" + }, + { + "appid": 2142530, + "normalized_name": "mittin clean flat surfaces" + }, + { + "appid": 2142540, + "normalized_name": "magical girl clicker" + }, + { + "appid": 2142550, + "normalized_name": "nanokings" + }, + { + "appid": 2142570, + "normalized_name": "rust and resolve" + }, + { + "appid": 2142610, + "normalized_name": "night light" + }, + { + "appid": 2142630, + "normalized_name": "tower survivors" + }, + { + "appid": 2142640, + "normalized_name": "aery heaven & hell" + }, + { + "appid": 2142660, + "normalized_name": "go go! flambeau!" + }, + { + "appid": 2142680, + "normalized_name": "kiki" + }, + { + "appid": 2142710, + "normalized_name": "emi new beginning" + }, + { + "appid": 2142780, + "normalized_name": "hentai heaven's slutty salvation" + }, + { + "appid": 2142790, + "normalized_name": "fields of mistria" + }, + { + "appid": 2142810, + "normalized_name": "nameless the departed cycle" + }, + { + "appid": 2142820, + "normalized_name": "grave queen" + }, + { + "appid": 2142840, + "normalized_name": "light of alariya" + }, + { + "appid": 2142850, + "normalized_name": "conjury revell" + }, + { + "appid": 2142860, + "normalized_name": "neuro horror" + }, + { + "appid": 2142870, + "normalized_name": "水城守护战" + }, + { + "appid": 2142890, + "normalized_name": "trophy knight" + }, + { + "appid": 2142920, + "normalized_name": "bomber 3" + }, + { + "appid": 2142930, + "normalized_name": "꿈을 빼앗긴 남자 dream invader" + }, + { + "appid": 2142960, + "normalized_name": "fluffy smash" + }, + { + "appid": 2143000, + "normalized_name": "nothing can" + }, + { + "appid": 2143010, + "normalized_name": "convenient" + }, + { + "appid": 2143020, + "normalized_name": "miszou" + }, + { + "appid": 2143030, + "normalized_name": "cave crawlers" + }, + { + "appid": 2143050, + "normalized_name": "交界线 red line" + }, + { + "appid": 2143090, + "normalized_name": "survivor!" + }, + { + "appid": 2143110, + "normalized_name": "seven wonders" + }, + { + "appid": 2143140, + "normalized_name": "the eyes of dr kautzmann" + }, + { + "appid": 2143160, + "normalized_name": "air defenders" + }, + { + "appid": 2143170, + "normalized_name": "derp souls" + }, + { + "appid": 2143190, + "normalized_name": "the cat maze" + }, + { + "appid": 2143200, + "normalized_name": "meta lines" + }, + { + "appid": 2143210, + "normalized_name": "era of skytree" + }, + { + "appid": 2143250, + "normalized_name": "don't underestimate me" + }, + { + "appid": 2143280, + "normalized_name": "make them naked hentai" + }, + { + "appid": 2143290, + "normalized_name": "hidden shapes cat realm" + }, + { + "appid": 2143330, + "normalized_name": "the color of life" + }, + { + "appid": 2143340, + "normalized_name": "dark nights" + }, + { + "appid": 2143380, + "normalized_name": "canvas legacy" + }, + { + "appid": 2143390, + "normalized_name": "the adventures of snacky" + }, + { + "appid": 2143410, + "normalized_name": "rat shoot" + }, + { + "appid": 2143420, + "normalized_name": "chasing the unseen" + }, + { + "appid": 2143450, + "normalized_name": "strong moon" + }, + { + "appid": 2143500, + "normalized_name": "hello fucking world!" + }, + { + "appid": 2143540, + "normalized_name": "isekai janken hero" + }, + { + "appid": 2143550, + "normalized_name": "vranygrai" + }, + { + "appid": 2143590, + "normalized_name": "run and gun" + }, + { + "appid": 2143600, + "normalized_name": "axom conquest" + }, + { + "appid": 2143620, + "normalized_name": "流離之歌" + }, + { + "appid": 2143660, + "normalized_name": "electron flux" + }, + { + "appid": 2143680, + "normalized_name": "梦灯花 noctuary" + }, + { + "appid": 2143700, + "normalized_name": "blackjack at carrot" + }, + { + "appid": 2143710, + "normalized_name": "huntscape" + }, + { + "appid": 2143740, + "normalized_name": "fuktopia 4" + }, + { + "appid": 2143760, + "normalized_name": "her name" + }, + { + "appid": 2143770, + "normalized_name": "drift racing car" + }, + { + "appid": 2143790, + "normalized_name": "deanima" + }, + { + "appid": 2143810, + "normalized_name": "furry sex gamedev story 🎮" + }, + { + "appid": 2143840, + "normalized_name": "スズとマリの冒険2~lost colors and golden bells~" + }, + { + "appid": 2143870, + "normalized_name": "野的火" + }, + { + "appid": 2143880, + "normalized_name": "red haven" + }, + { + "appid": 2143930, + "normalized_name": "spirits of baciu prologue" + }, + { + "appid": 2143980, + "normalized_name": "wife of my boss" + }, + { + "appid": 2144010, + "normalized_name": "tale of two sardines" + }, + { + "appid": 2144020, + "normalized_name": "fish combat accelerated" + }, + { + "appid": 2144040, + "normalized_name": "dungeon golf" + }, + { + "appid": 2144080, + "normalized_name": "half hour hexagon" + }, + { + "appid": 2144100, + "normalized_name": "magical fairy force champion" + }, + { + "appid": 2144110, + "normalized_name": "pot breaker" + }, + { + "appid": 2144120, + "normalized_name": "lord of midchester" + }, + { + "appid": 2144130, + "normalized_name": "loop frogs" + }, + { + "appid": 2144180, + "normalized_name": "勇者联盟星耀传说" + }, + { + "appid": 2144220, + "normalized_name": "ダンジョンアーティファクト" + }, + { + "appid": 2144240, + "normalized_name": "hellspawn" + }, + { + "appid": 2144260, + "normalized_name": "mobius’ radio waves" + }, + { + "appid": 2144270, + "normalized_name": "自在逍遥:风起 tales of tianyuan dynasty" + }, + { + "appid": 2144280, + "normalized_name": "龙栖" + }, + { + "appid": 2144290, + "normalized_name": "idle gem quest" + }, + { + "appid": 2144320, + "normalized_name": "seven days" + }, + { + "appid": 2144330, + "normalized_name": "funny cell game" + }, + { + "appid": 2144350, + "normalized_name": "ubaste" + }, + { + "appid": 2144360, + "normalized_name": "pretty girls tile match" + }, + { + "appid": 2144390, + "normalized_name": "bengan yes" + }, + { + "appid": 2144410, + "normalized_name": "simfootball" + }, + { + "appid": 2144420, + "normalized_name": "xplorasi3d 2.0" + }, + { + "appid": 2144460, + "normalized_name": "path to purge" + }, + { + "appid": 2144470, + "normalized_name": "arata haunted asylum" + }, + { + "appid": 2144500, + "normalized_name": "love n war warlord by chance ii" + }, + { + "appid": 2144510, + "normalized_name": "mini skull" + }, + { + "appid": 2144530, + "normalized_name": "함부로 소설 쓰지 맙시다" + }, + { + "appid": 2144560, + "normalized_name": "save the kingdom" + }, + { + "appid": 2144580, + "normalized_name": "super bio man" + }, + { + "appid": 2144590, + "normalized_name": "take me vitaly" + }, + { + "appid": 2144610, + "normalized_name": "kosmocean the endless sea" + }, + { + "appid": 2144640, + "normalized_name": "endzone 2" + }, + { + "appid": 2144670, + "normalized_name": "llama the farm drama" + }, + { + "appid": 2144680, + "normalized_name": "save them all" + }, + { + "appid": 2144740, + "normalized_name": "ghostrunner 2" + }, + { + "appid": 2144750, + "normalized_name": "pocket quest" + }, + { + "appid": 2144800, + "normalized_name": "dystopian debugger" + }, + { + "appid": 2144810, + "normalized_name": "last look along woodward boulevard" + }, + { + "appid": 2144820, + "normalized_name": "女朋友?那他妈是被告!" + }, + { + "appid": 2144830, + "normalized_name": "voodolls" + }, + { + "appid": 2144870, + "normalized_name": "tribute" + }, + { + "appid": 2144910, + "normalized_name": "blueprints" + }, + { + "appid": 2144990, + "normalized_name": "bryce tiles" + }, + { + "appid": 2145000, + "normalized_name": "twilight of the gods" + }, + { + "appid": 2145030, + "normalized_name": "hardcube 2" + }, + { + "appid": 2145050, + "normalized_name": "clone" + }, + { + "appid": 2145080, + "normalized_name": "ballspell" + }, + { + "appid": 2145090, + "normalized_name": "combustion" + }, + { + "appid": 2145100, + "normalized_name": "ニンニン☆妖怪大戦争" + }, + { + "appid": 2145130, + "normalized_name": "jdm euphoria" + }, + { + "appid": 2145160, + "normalized_name": "fortune rewritten" + }, + { + "appid": 2145170, + "normalized_name": "tales of meadows" + }, + { + "appid": 2145190, + "normalized_name": "energy survivors" + }, + { + "appid": 2145210, + "normalized_name": "dynasthir" + }, + { + "appid": 2145220, + "normalized_name": "silence channel 2" + }, + { + "appid": 2145230, + "normalized_name": "memory puzzle mile high fun" + }, + { + "appid": 2145260, + "normalized_name": "coin cascade" + }, + { + "appid": 2145280, + "normalized_name": "rikua" + }, + { + "appid": 2145290, + "normalized_name": "mysteries of shaola the princess must die" + }, + { + "appid": 2145300, + "normalized_name": "the game store" + }, + { + "appid": 2145320, + "normalized_name": "super mando" + }, + { + "appid": 2145330, + "normalized_name": "vehicular rampage" + }, + { + "appid": 2145460, + "normalized_name": "foodslingers" + }, + { + "appid": 2145480, + "normalized_name": "inversion institute" + }, + { + "appid": 2145490, + "normalized_name": "sneaky rat" + }, + { + "appid": 2145510, + "normalized_name": "shovel escape" + }, + { + "appid": 2145530, + "normalized_name": "moonflower" + }, + { + "appid": 2145640, + "normalized_name": "mikiwam solarpunk herbalism" + }, + { + "appid": 2145700, + "normalized_name": "tead" + }, + { + "appid": 2145710, + "normalized_name": "crystal squad" + }, + { + "appid": 2145720, + "normalized_name": "petit petit petit" + }, + { + "appid": 2145740, + "normalized_name": "dancing pandas" + }, + { + "appid": 2145810, + "normalized_name": "bumblebee little bee adventure" + }, + { + "appid": 2145830, + "normalized_name": "don't get eaten!" + }, + { + "appid": 2145850, + "normalized_name": "sonder lights of little tokyo" + }, + { + "appid": 2145860, + "normalized_name": "photo toy oceans" + }, + { + "appid": 2145880, + "normalized_name": "horde" + }, + { + "appid": 2145950, + "normalized_name": "the woods" + }, + { + "appid": 2145960, + "normalized_name": "pixel chan" + }, + { + "appid": 2145980, + "normalized_name": "replaceable" + }, + { + "appid": 2146040, + "normalized_name": "ネクロサーガ" + }, + { + "appid": 2146050, + "normalized_name": "savage turret" + }, + { + "appid": 2146070, + "normalized_name": "lorena and the land of ruins" + }, + { + "appid": 2146100, + "normalized_name": "epic naval battle simulator" + }, + { + "appid": 2146140, + "normalized_name": "blackforge a smithing adventure" + }, + { + "appid": 2146170, + "normalized_name": "baten kaitos i & ii hd remaster" + }, + { + "appid": 2146180, + "normalized_name": "cyclo chambers" + }, + { + "appid": 2146230, + "normalized_name": "samurai pussy" + }, + { + "appid": 2146270, + "normalized_name": "way of vulcan" + }, + { + "appid": 2146280, + "normalized_name": "death corp" + }, + { + "appid": 2146290, + "normalized_name": "the big catch" + }, + { + "appid": 2146300, + "normalized_name": "exquisite fishing" + }, + { + "appid": 2146310, + "normalized_name": "don't kill rumble" + }, + { + "appid": 2146320, + "normalized_name": "dry school" + }, + { + "appid": 2146380, + "normalized_name": "manufactur’ inc." + }, + { + "appid": 2146390, + "normalized_name": "ctrl alt deal" + }, + { + "appid": 2146430, + "normalized_name": "siegebreaker" + }, + { + "appid": 2146440, + "normalized_name": "salvation of the soul" + }, + { + "appid": 2146450, + "normalized_name": "car racing highway driving simulator real parking driver sim speed traffic deluxe 2023" + }, + { + "appid": 2146470, + "normalized_name": "miramar" + }, + { + "appid": 2146490, + "normalized_name": "swarmcade" + }, + { + "appid": 2146500, + "normalized_name": "unluckily in love" + }, + { + "appid": 2146550, + "normalized_name": "great pilots" + }, + { + "appid": 2146560, + "normalized_name": "ghostboy" + }, + { + "appid": 2146570, + "normalized_name": "rkgk / rakugaki" + }, + { + "appid": 2146600, + "normalized_name": "i commissioned some bees 7" + }, + { + "appid": 2146610, + "normalized_name": "reality rash" + }, + { + "appid": 2146680, + "normalized_name": "coffee for robots" + }, + { + "appid": 2146720, + "normalized_name": "eon fighter" + }, + { + "appid": 2146730, + "normalized_name": "parlor" + }, + { + "appid": 2146760, + "normalized_name": "dungeon knight" + }, + { + "appid": 2146770, + "normalized_name": "deputinization" + }, + { + "appid": 2146790, + "normalized_name": "passed out prologue" + }, + { + "appid": 2146940, + "normalized_name": "pyrrhic paradise dissemble" + }, + { + "appid": 2146960, + "normalized_name": "void" + }, + { + "appid": 2146970, + "normalized_name": "灵魂差分" + }, + { + "appid": 2147020, + "normalized_name": "cards with personalities" + }, + { + "appid": 2147030, + "normalized_name": "kaz's adventure 2 lost souls" + }, + { + "appid": 2147050, + "normalized_name": "jumping cat" + }, + { + "appid": 2147080, + "normalized_name": "bomberguys" + }, + { + "appid": 2147110, + "normalized_name": "builders of greece prologue" + }, + { + "appid": 2147130, + "normalized_name": "crazy of stunts" + }, + { + "appid": 2147200, + "normalized_name": "secret parcel" + }, + { + "appid": 2147230, + "normalized_name": "だっかん!モンスターの島" + }, + { + "appid": 2147260, + "normalized_name": "extermination cars stadium" + }, + { + "appid": 2147290, + "normalized_name": "reddie and the redirected walker module 01 (alpha)" + }, + { + "appid": 2147310, + "normalized_name": "permanight" + }, + { + "appid": 2147330, + "normalized_name": "still joking" + }, + { + "appid": 2147340, + "normalized_name": "pastel putter" + }, + { + "appid": 2147360, + "normalized_name": "aimtropolis" + }, + { + "appid": 2147380, + "normalized_name": "silence of the siren" + }, + { + "appid": 2147410, + "normalized_name": "worldest d izzy game" + }, + { + "appid": 2147420, + "normalized_name": "blaster" + }, + { + "appid": 2147450, + "normalized_name": "幻塔" + }, + { + "appid": 2147530, + "normalized_name": "raining blood hellfire" + }, + { + "appid": 2147550, + "normalized_name": "tech invaders td" + }, + { + "appid": 2147560, + "normalized_name": "lands of xon" + }, + { + "appid": 2147580, + "normalized_name": "1990" + }, + { + "appid": 2147600, + "normalized_name": "chamber's reunion" + }, + { + "appid": 2147620, + "normalized_name": "scarlet manor the heir" + }, + { + "appid": 2147640, + "normalized_name": "chacara" + }, + { + "appid": 2147670, + "normalized_name": "meme quiz" + }, + { + "appid": 2147680, + "normalized_name": "card survival tropical island the first days" + }, + { + "appid": 2147690, + "normalized_name": "dungeon adventure gang" + }, + { + "appid": 2147700, + "normalized_name": "umbral core" + }, + { + "appid": 2147710, + "normalized_name": "forest spring" + }, + { + "appid": 2147730, + "normalized_name": "warkind" + }, + { + "appid": 2147740, + "normalized_name": "the escape" + }, + { + "appid": 2147770, + "normalized_name": "bride corruption 💍" + }, + { + "appid": 2147830, + "normalized_name": "the electric odyssey" + }, + { + "appid": 2147860, + "normalized_name": "midnight calling wise dragon collector's" + }, + { + "appid": 2147890, + "normalized_name": "demolish or die" + }, + { + "appid": 2147900, + "normalized_name": "evil nightmares" + }, + { + "appid": 2147950, + "normalized_name": "4d golf" + }, + { + "appid": 2147980, + "normalized_name": "spinner invaders 2 a mad revenge" + }, + { + "appid": 2147990, + "normalized_name": "motel life simulator" + }, + { + "appid": 2148010, + "normalized_name": "dawn of arba" + }, + { + "appid": 2148030, + "normalized_name": "geared for fear" + }, + { + "appid": 2148060, + "normalized_name": "hack & schlitz" + }, + { + "appid": 2148070, + "normalized_name": "actala the hero's shadow" + }, + { + "appid": 2148080, + "normalized_name": "saga cube" + }, + { + "appid": 2148110, + "normalized_name": "time titans vr" + }, + { + "appid": 2148120, + "normalized_name": "evard the hermit through fears" + }, + { + "appid": 2148170, + "normalized_name": "murtop" + }, + { + "appid": 2148190, + "normalized_name": "durus" + }, + { + "appid": 2148210, + "normalized_name": "divine legacy neo amburia" + }, + { + "appid": 2148220, + "normalized_name": "soul after" + }, + { + "appid": 2148230, + "normalized_name": "e girl next door exposed" + }, + { + "appid": 2148240, + "normalized_name": "insomnia" + }, + { + "appid": 2148280, + "normalized_name": "末日竟在我身边3 zombies everywhere 3" + }, + { + "appid": 2148320, + "normalized_name": "super galaxy ball" + }, + { + "appid": 2148390, + "normalized_name": "roadkill raceway" + }, + { + "appid": 2148400, + "normalized_name": "tits okay tits fine need more tits creampie" + }, + { + "appid": 2148510, + "normalized_name": "droid death vr" + }, + { + "appid": 2148560, + "normalized_name": "传说世界" + }, + { + "appid": 2148590, + "normalized_name": "the tainted lands" + }, + { + "appid": 2148610, + "normalized_name": "sex adventures modeling audition" + }, + { + "appid": 2148720, + "normalized_name": "cruise control mode on!" + }, + { + "appid": 2148730, + "normalized_name": "masterchef ice cream" + }, + { + "appid": 2148740, + "normalized_name": "fix my hand doc" + }, + { + "appid": 2148750, + "normalized_name": "jeeps offroad simulator" + }, + { + "appid": 2148760, + "normalized_name": "extreme truck stunts" + }, + { + "appid": 2148770, + "normalized_name": "the mountain" + }, + { + "appid": 2148780, + "normalized_name": "eye of nollyn" + }, + { + "appid": 2148790, + "normalized_name": "hazel & the deep" + }, + { + "appid": 2148830, + "normalized_name": "决战紫禁怀旧服" + }, + { + "appid": 2148850, + "normalized_name": "jenni's dong has got it goin' on the jenni trilogy" + }, + { + "appid": 2148880, + "normalized_name": "dagdrøm" + }, + { + "appid": 2148930, + "normalized_name": "pets hotel prologue" + }, + { + "appid": 2148940, + "normalized_name": "bunker builder simulator prologue" + }, + { + "appid": 2148970, + "normalized_name": "skygard arena" + }, + { + "appid": 2148990, + "normalized_name": "waste it" + }, + { + "appid": 2149000, + "normalized_name": "zombies" + }, + { + "appid": 2149070, + "normalized_name": "cosplay collection" + }, + { + "appid": 2149120, + "normalized_name": "dolphin spirit ocean mission" + }, + { + "appid": 2149190, + "normalized_name": "detriot" + }, + { + "appid": 2149200, + "normalized_name": "solitris" + }, + { + "appid": 2149240, + "normalized_name": "brasil fusion" + }, + { + "appid": 2149270, + "normalized_name": "phyakh" + }, + { + "appid": 2149290, + "normalized_name": "havoc" + }, + { + "appid": 2149330, + "normalized_name": "predictors" + }, + { + "appid": 2149340, + "normalized_name": "escape the testing facility" + }, + { + "appid": 2149370, + "normalized_name": "beverage hills" + }, + { + "appid": 2149400, + "normalized_name": "project dream" + }, + { + "appid": 2149420, + "normalized_name": "dino trauma" + }, + { + "appid": 2149430, + "normalized_name": "click to sail" + }, + { + "appid": 2149480, + "normalized_name": "card cowboy" + }, + { + "appid": 2149490, + "normalized_name": "seven skies to paradise" + }, + { + "appid": 2149520, + "normalized_name": "ハイスピードシューティングⅱ ~匿名希望の英雄~" + }, + { + "appid": 2149530, + "normalized_name": "horror hotel" + }, + { + "appid": 2149560, + "normalized_name": "unforgettable voyage" + }, + { + "appid": 2149580, + "normalized_name": "crush penguin" + }, + { + "appid": 2149610, + "normalized_name": "madshot road to madness" + }, + { + "appid": 2149630, + "normalized_name": "1 trait escape" + }, + { + "appid": 2149660, + "normalized_name": "personal chef to the stars" + }, + { + "appid": 2149690, + "normalized_name": "quentblast" + }, + { + "appid": 2149710, + "normalized_name": "the apothecary" + }, + { + "appid": 2149820, + "normalized_name": "medo do escuro" + }, + { + "appid": 2149840, + "normalized_name": "goblins strike back instant fuck heroines" + }, + { + "appid": 2149870, + "normalized_name": "closer to home" + }, + { + "appid": 2149880, + "normalized_name": "hallway defender" + }, + { + "appid": 2149900, + "normalized_name": "the moon hell" + }, + { + "appid": 2149940, + "normalized_name": "must flee" + }, + { + "appid": 2149960, + "normalized_name": "剑侠传说" + }, + { + "appid": 2149980, + "normalized_name": "the first mountain" + }, + { + "appid": 2149990, + "normalized_name": "gems defenders" + }, + { + "appid": 2150020, + "normalized_name": "the beastmaster princess" + }, + { + "appid": 2150060, + "normalized_name": "vacoo. the adventure in garbage city." + }, + { + "appid": 2150070, + "normalized_name": "trains electrostorm" + }, + { + "appid": 2150090, + "normalized_name": "fury turn" + }, + { + "appid": 2150100, + "normalized_name": "village defender" + }, + { + "appid": 2150110, + "normalized_name": "secret blade" + }, + { + "appid": 2150120, + "normalized_name": "survivter" + }, + { + "appid": 2150150, + "normalized_name": "treasure journey" + }, + { + "appid": 2150170, + "normalized_name": "decent checkers" + }, + { + "appid": 2150180, + "normalized_name": "deep dungeon" + }, + { + "appid": 2150200, + "normalized_name": "lockdown 2024" + }, + { + "appid": 2150210, + "normalized_name": "the chronicles of overlord" + }, + { + "appid": 2150300, + "normalized_name": "sgs we the people" + }, + { + "appid": 2150310, + "normalized_name": "元素召唤 summon elemental" + }, + { + "appid": 2150370, + "normalized_name": "running into the cyberpunk" + }, + { + "appid": 2150390, + "normalized_name": "buntasy" + }, + { + "appid": 2150460, + "normalized_name": "fisher's qualm" + }, + { + "appid": 2150490, + "normalized_name": "gnomdom" + }, + { + "appid": 2150510, + "normalized_name": "fantasia medieval" + }, + { + "appid": 2150530, + "normalized_name": "rubble" + }, + { + "appid": 2150560, + "normalized_name": "street paint playground" + }, + { + "appid": 2150580, + "normalized_name": "memory traces egypt" + }, + { + "appid": 2150660, + "normalized_name": "touhou new world" + }, + { + "appid": 2150700, + "normalized_name": "magic axolotl" + }, + { + "appid": 2150740, + "normalized_name": "survive the forest" + }, + { + "appid": 2150760, + "normalized_name": "seaberry keep" + }, + { + "appid": 2150770, + "normalized_name": "rodent retribution" + }, + { + "appid": 2150800, + "normalized_name": "ninja scroller" + }, + { + "appid": 2150810, + "normalized_name": "amorphous" + }, + { + "appid": 2150820, + "normalized_name": "living with dragons" + }, + { + "appid": 2150840, + "normalized_name": "hearthkeeper" + }, + { + "appid": 2150850, + "normalized_name": "i feel fine" + }, + { + "appid": 2150870, + "normalized_name": "你农哦农 need know what know" + }, + { + "appid": 2150890, + "normalized_name": "fungal front" + }, + { + "appid": 2150900, + "normalized_name": "celtique" + }, + { + "appid": 2150910, + "normalized_name": "spellcats auto card tactics" + }, + { + "appid": 2150930, + "normalized_name": "golden egg" + }, + { + "appid": 2150950, + "normalized_name": "paranormal observation" + }, + { + "appid": 2150970, + "normalized_name": "timore remake" + }, + { + "appid": 2151010, + "normalized_name": "romance of a demon kingdom's fall" + }, + { + "appid": 2151080, + "normalized_name": "raindrop umbrella (雨雫のアンブレラ)" + }, + { + "appid": 2151110, + "normalized_name": "jumpman" + }, + { + "appid": 2151130, + "normalized_name": "valora survival" + }, + { + "appid": 2151140, + "normalized_name": "horizonite" + }, + { + "appid": 2151150, + "normalized_name": "run foxy run!" + }, + { + "appid": 2151290, + "normalized_name": "football coach college dynasty" + }, + { + "appid": 2151310, + "normalized_name": "dusk hollow" + }, + { + "appid": 2151320, + "normalized_name": "dangerous fists" + }, + { + "appid": 2151360, + "normalized_name": "street volleyball invitation" + }, + { + "appid": 2151370, + "normalized_name": "alphablue" + }, + { + "appid": 2151410, + "normalized_name": "stray cat" + }, + { + "appid": 2151420, + "normalized_name": "word" + }, + { + "appid": 2151430, + "normalized_name": "nsg" + }, + { + "appid": 2151450, + "normalized_name": "quack my duck" + }, + { + "appid": 2151480, + "normalized_name": "susritual" + }, + { + "appid": 2151490, + "normalized_name": "valledi" + }, + { + "appid": 2151530, + "normalized_name": "you are the dinner" + }, + { + "appid": 2151580, + "normalized_name": "infinite tao" + }, + { + "appid": 2151590, + "normalized_name": "rush red & blue" + }, + { + "appid": 2151600, + "normalized_name": "nox timore remake" + }, + { + "appid": 2151630, + "normalized_name": "pip 4" + }, + { + "appid": 2151640, + "normalized_name": "bezombie anime invasion" + }, + { + "appid": 2151660, + "normalized_name": "the waterflame brothers" + }, + { + "appid": 2151700, + "normalized_name": "yokai's wish" + }, + { + "appid": 2151710, + "normalized_name": "singularity runner" + }, + { + "appid": 2151740, + "normalized_name": "treasure trap" + }, + { + "appid": 2151770, + "normalized_name": "fusion paradox 🔫" + }, + { + "appid": 2151790, + "normalized_name": "the hermit chronicles" + }, + { + "appid": 2151810, + "normalized_name": "darkwebstreamer" + }, + { + "appid": 2151820, + "normalized_name": "zombie arena" + }, + { + "appid": 2151830, + "normalized_name": "tbof (the book of fredley)" + }, + { + "appid": 2151840, + "normalized_name": "prophecy of the color spectrum" + }, + { + "appid": 2151850, + "normalized_name": "mikey & grover's unexpected adventures" + }, + { + "appid": 2151860, + "normalized_name": "chernobyl death may die" + }, + { + "appid": 2151900, + "normalized_name": "battle for borders" + }, + { + "appid": 2151910, + "normalized_name": "witch potion" + }, + { + "appid": 2151920, + "normalized_name": "folletti" + }, + { + "appid": 2151950, + "normalized_name": "voice of the wizard by brett farkas" + }, + { + "appid": 2151960, + "normalized_name": "golf 5 eclub" + }, + { + "appid": 2152000, + "normalized_name": "unscramble heroes" + }, + { + "appid": 2152030, + "normalized_name": "what they don't sea" + }, + { + "appid": 2152050, + "normalized_name": "treekeepers" + }, + { + "appid": 2152060, + "normalized_name": "astraea" + }, + { + "appid": 2152070, + "normalized_name": "my girlfriend is a futanari" + }, + { + "appid": 2152080, + "normalized_name": "futanari of the apocalypse" + }, + { + "appid": 2152090, + "normalized_name": "my futanari stepmom impregnated me" + }, + { + "appid": 2152100, + "normalized_name": "big bad futanari wolf" + }, + { + "appid": 2152120, + "normalized_name": "open course" + }, + { + "appid": 2152180, + "normalized_name": "dark moon motel" + }, + { + "appid": 2152190, + "normalized_name": "zombie apocalypse survival simulator" + }, + { + "appid": 2152250, + "normalized_name": "imperial storm" + }, + { + "appid": 2152270, + "normalized_name": "kittens with cannons" + }, + { + "appid": 2152290, + "normalized_name": "the night of the penanggalan" + }, + { + "appid": 2152300, + "normalized_name": "litha and the sunhouse" + }, + { + "appid": 2152320, + "normalized_name": "skid" + }, + { + "appid": 2152350, + "normalized_name": "paradise cleaning married woman cosplay life" + }, + { + "appid": 2152360, + "normalized_name": "remy raccoon and the lost temple halloween hijinks (volume 2)" + }, + { + "appid": 2152410, + "normalized_name": "witchcraft td" + }, + { + "appid": 2152420, + "normalized_name": "duck race" + }, + { + "appid": 2152460, + "normalized_name": "miniland adventure prologue" + }, + { + "appid": 2152480, + "normalized_name": "bowling" + }, + { + "appid": 2152540, + "normalized_name": "chronicles of forgotten tears" + }, + { + "appid": 2152560, + "normalized_name": "airline flight attendant simulator vr" + }, + { + "appid": 2152580, + "normalized_name": "heroes of drakemire" + }, + { + "appid": 2152590, + "normalized_name": "find you" + }, + { + "appid": 2152610, + "normalized_name": "이세계 동사무소" + }, + { + "appid": 2152630, + "normalized_name": "dream team basketball" + }, + { + "appid": 2152690, + "normalized_name": "actua soccer 2" + }, + { + "appid": 2152710, + "normalized_name": "actua ice hockey" + }, + { + "appid": 2152720, + "normalized_name": "actua ice hockey 2" + }, + { + "appid": 2152730, + "normalized_name": "actua tennis" + }, + { + "appid": 2152740, + "normalized_name": "亜電" + }, + { + "appid": 2152750, + "normalized_name": "shields of asgard" + }, + { + "appid": 2152780, + "normalized_name": "impeachment survivors" + }, + { + "appid": 2152810, + "normalized_name": "forge industry" + }, + { + "appid": 2152820, + "normalized_name": "akui the insane cultists" + }, + { + "appid": 2152830, + "normalized_name": "badsmith" + }, + { + "appid": 2152900, + "normalized_name": "the fall visual novel" + }, + { + "appid": 2152940, + "normalized_name": "hypno mama" + }, + { + "appid": 2152960, + "normalized_name": "mobspawn" + }, + { + "appid": 2152970, + "normalized_name": "absorb" + }, + { + "appid": 2152990, + "normalized_name": "dinogen online" + }, + { + "appid": 2153000, + "normalized_name": "dungeonoid" + }, + { + "appid": 2153020, + "normalized_name": "pilfer story of light" + }, + { + "appid": 2153040, + "normalized_name": "tankettes" + }, + { + "appid": 2153050, + "normalized_name": "clutter's greatest hits collector's" + }, + { + "appid": 2153090, + "normalized_name": "the crypt of treasure" + }, + { + "appid": 2153130, + "normalized_name": "trimming sails" + }, + { + "appid": 2153140, + "normalized_name": "just another life" + }, + { + "appid": 2153160, + "normalized_name": "blind sound" + }, + { + "appid": 2153190, + "normalized_name": "ghost at dawn" + }, + { + "appid": 2153240, + "normalized_name": "noodle samurai" + }, + { + "appid": 2153250, + "normalized_name": "captain blacksword" + }, + { + "appid": 2153280, + "normalized_name": "rhythm any music" + }, + { + "appid": 2153290, + "normalized_name": "geese and gats" + }, + { + "appid": 2153300, + "normalized_name": "escape chase monster" + }, + { + "appid": 2153310, + "normalized_name": "buriedbornes dungeon rpg" + }, + { + "appid": 2153320, + "normalized_name": "neither cross nor crown" + }, + { + "appid": 2153330, + "normalized_name": "otome * domain" + }, + { + "appid": 2153350, + "normalized_name": "brothers a tale of two sons remake" + }, + { + "appid": 2153390, + "normalized_name": "西部幻想 westfantasy" + }, + { + "appid": 2153400, + "normalized_name": "scientifically accurate dinosaur mating simulator 2022 american revolution 1775 1786" + }, + { + "appid": 2153410, + "normalized_name": "cyber slayer" + }, + { + "appid": 2153420, + "normalized_name": "don't stop" + }, + { + "appid": 2153430, + "normalized_name": "signal maze" + }, + { + "appid": 2153460, + "normalized_name": "灵界异闻录" + }, + { + "appid": 2153480, + "normalized_name": "hyouteki" + }, + { + "appid": 2153500, + "normalized_name": "oba doba" + }, + { + "appid": 2153550, + "normalized_name": "day of the dead" + }, + { + "appid": 2153570, + "normalized_name": "flawless" + }, + { + "appid": 2153590, + "normalized_name": "detective super star" + }, + { + "appid": 2153600, + "normalized_name": "hero jumper" + }, + { + "appid": 2153610, + "normalized_name": "virtual sailor ng" + }, + { + "appid": 2153630, + "normalized_name": "rebellion corporation" + }, + { + "appid": 2153640, + "normalized_name": "幻世九州" + }, + { + "appid": 2153690, + "normalized_name": "aphotic" + }, + { + "appid": 2153710, + "normalized_name": "hell's mouth" + }, + { + "appid": 2153720, + "normalized_name": "pixel gun master" + }, + { + "appid": 2153730, + "normalized_name": "alexios the protector" + }, + { + "appid": 2153750, + "normalized_name": "venture to the vile" + }, + { + "appid": 2153770, + "normalized_name": "coin flipper" + }, + { + "appid": 2153780, + "normalized_name": "survival nation" + }, + { + "appid": 2153800, + "normalized_name": "christmas wonderland 5" + }, + { + "appid": 2153810, + "normalized_name": "1001 jigsaw detective 3" + }, + { + "appid": 2153840, + "normalized_name": "boozeball" + }, + { + "appid": 2153850, + "normalized_name": "defective" + }, + { + "appid": 2153880, + "normalized_name": "a week" + }, + { + "appid": 2153900, + "normalized_name": "ember's love" + }, + { + "appid": 2153920, + "normalized_name": "downfallen" + }, + { + "appid": 2153950, + "normalized_name": "broken blade prelude" + }, + { + "appid": 2153970, + "normalized_name": "elven rivers 2 new horizons collector's" + }, + { + "appid": 2154000, + "normalized_name": "tokki" + }, + { + "appid": 2154030, + "normalized_name": "royal jigsaw 3" + }, + { + "appid": 2154040, + "normalized_name": "royal jigsaw 4" + }, + { + "appid": 2154070, + "normalized_name": "industria 2" + }, + { + "appid": 2154090, + "normalized_name": "vs chat pack" + }, + { + "appid": 2154130, + "normalized_name": "futa paradise" + }, + { + "appid": 2154140, + "normalized_name": "heroes of eroticism new beginnings" + }, + { + "appid": 2154190, + "normalized_name": "stellar fight" + }, + { + "appid": 2154200, + "normalized_name": "our mini adventure" + }, + { + "appid": 2154230, + "normalized_name": "ai art impostor" + }, + { + "appid": 2154240, + "normalized_name": "odinfall" + }, + { + "appid": 2154250, + "normalized_name": "third world the bottom dimension" + }, + { + "appid": 2154270, + "normalized_name": "pixel starships 2" + }, + { + "appid": 2154290, + "normalized_name": "simantik" + }, + { + "appid": 2154330, + "normalized_name": "the seven realms realm 1 terran" + }, + { + "appid": 2154350, + "normalized_name": "zombie slapper" + }, + { + "appid": 2154380, + "normalized_name": "a traveler to unknown thule" + }, + { + "appid": 2154400, + "normalized_name": "aery calm mind 3" + }, + { + "appid": 2154420, + "normalized_name": "never alone 2" + }, + { + "appid": 2154430, + "normalized_name": "kinetic storm" + }, + { + "appid": 2154470, + "normalized_name": "blue intervention" + }, + { + "appid": 2154490, + "normalized_name": "i am lewis" + }, + { + "appid": 2154520, + "normalized_name": "scenez" + }, + { + "appid": 2154530, + "normalized_name": "kingdom of secrets مملكة الأسرار" + }, + { + "appid": 2154570, + "normalized_name": "soulslinger" + }, + { + "appid": 2154630, + "normalized_name": "trash panda the adventures of ricky and boxman" + }, + { + "appid": 2154640, + "normalized_name": "realm of khaos" + }, + { + "appid": 2154650, + "normalized_name": "pawperty damage" + }, + { + "appid": 2154660, + "normalized_name": "toast the ghost" + }, + { + "appid": 2154700, + "normalized_name": "sokosignal" + }, + { + "appid": 2154710, + "normalized_name": "elite comet" + }, + { + "appid": 2154730, + "normalized_name": "building destruction" + }, + { + "appid": 2154750, + "normalized_name": "descentia" + }, + { + "appid": 2154760, + "normalized_name": "schildmaid mx" + }, + { + "appid": 2154770, + "normalized_name": "nobunaga's ambition hadou" + }, + { + "appid": 2154780, + "normalized_name": "elation for the wonder box 6000" + }, + { + "appid": 2154790, + "normalized_name": "sekisai puzzle action" + }, + { + "appid": 2154800, + "normalized_name": "夏休みは切島邸にて(ナツキリ)" + }, + { + "appid": 2154820, + "normalized_name": "el paso nightmare" + }, + { + "appid": 2154830, + "normalized_name": "iniquity survivors" + }, + { + "appid": 2154840, + "normalized_name": "the qin empire" + }, + { + "appid": 2154870, + "normalized_name": "astra defender" + }, + { + "appid": 2154940, + "normalized_name": "re |thm once upon a time" + }, + { + "appid": 2154950, + "normalized_name": "once upon a siege" + }, + { + "appid": 2154960, + "normalized_name": "俺が私に変わった日… becoming a she" + }, + { + "appid": 2154990, + "normalized_name": "angels bleeding" + }, + { + "appid": 2155010, + "normalized_name": "mindhunt" + }, + { + "appid": 2155020, + "normalized_name": "cannon shoot plane" + }, + { + "appid": 2155030, + "normalized_name": "无限高尔夫" + }, + { + "appid": 2155060, + "normalized_name": "heartbreak hotel" + }, + { + "appid": 2155100, + "normalized_name": "hazard horizon" + }, + { + "appid": 2155130, + "normalized_name": "the waking knot" + }, + { + "appid": 2155140, + "normalized_name": "police station simulator" + }, + { + "appid": 2155180, + "normalized_name": "pioneers of pagonia" + }, + { + "appid": 2155220, + "normalized_name": "petty's adventure desert" + }, + { + "appid": 2155270, + "normalized_name": "play pretend" + }, + { + "appid": 2155280, + "normalized_name": "defend earth xenos survivors" + }, + { + "appid": 2155320, + "normalized_name": "blackthorne keep" + }, + { + "appid": 2155350, + "normalized_name": "b.o.w ii vr" + }, + { + "appid": 2155370, + "normalized_name": "kings shire" + }, + { + "appid": 2155410, + "normalized_name": "los páramos" + }, + { + "appid": 2155460, + "normalized_name": "orbital clash" + }, + { + "appid": 2155480, + "normalized_name": "the googol clicker" + }, + { + "appid": 2155490, + "normalized_name": "valkkryes ashes of war" + }, + { + "appid": 2155500, + "normalized_name": "kfz" + }, + { + "appid": 2155570, + "normalized_name": "shuffled words" + }, + { + "appid": 2155600, + "normalized_name": "sex apocalypse 3d" + }, + { + "appid": 2155650, + "normalized_name": "slayer of sin" + }, + { + "appid": 2155660, + "normalized_name": "khitarii and khimoshi" + }, + { + "appid": 2155680, + "normalized_name": "darkenderek the last fallen" + }, + { + "appid": 2155710, + "normalized_name": "alice with gatling" + }, + { + "appid": 2155720, + "normalized_name": "camouflet" + }, + { + "appid": 2155730, + "normalized_name": "the darkest emptiness" + }, + { + "appid": 2155740, + "normalized_name": "elkabir" + }, + { + "appid": 2155750, + "normalized_name": "divine adventure rpg" + }, + { + "appid": 2155760, + "normalized_name": "8 ball 2" + }, + { + "appid": 2155770, + "normalized_name": "the muller powell principle" + }, + { + "appid": 2155800, + "normalized_name": "forest dongmul" + }, + { + "appid": 2155860, + "normalized_name": "nobody paradox" + }, + { + "appid": 2155970, + "normalized_name": "slave of lust" + }, + { + "appid": 2155980, + "normalized_name": "love formula" + }, + { + "appid": 2156000, + "normalized_name": "as above atumra so below" + }, + { + "appid": 2156150, + "normalized_name": "cat n can" + }, + { + "appid": 2156270, + "normalized_name": "taxi taxi sim" + }, + { + "appid": 2156280, + "normalized_name": "police transporter simulator" + }, + { + "appid": 2156290, + "normalized_name": "needy dragons" + }, + { + "appid": 2156330, + "normalized_name": "the unfettered" + }, + { + "appid": 2156350, + "normalized_name": "constraints" + }, + { + "appid": 2156390, + "normalized_name": "worldshards" + }, + { + "appid": 2156410, + "normalized_name": "konkan coast pirate solutions" + }, + { + "appid": 2156440, + "normalized_name": "raiding.zone" + }, + { + "appid": 2156450, + "normalized_name": "sweety kitty" + }, + { + "appid": 2156480, + "normalized_name": "evil fate" + }, + { + "appid": 2156540, + "normalized_name": "europe empire 2027" + }, + { + "appid": 2156550, + "normalized_name": "death race outer space" + }, + { + "appid": 2156590, + "normalized_name": "ruins" + }, + { + "appid": 2156610, + "normalized_name": "gemscape" + }, + { + "appid": 2156620, + "normalized_name": "the future radio and the artificial pigeons" + }, + { + "appid": 2156630, + "normalized_name": "zad maldan my bloody sacrifice" + }, + { + "appid": 2156770, + "normalized_name": "ghost signal a stellaris game" + }, + { + "appid": 2156790, + "normalized_name": "salvation of sisyphus" + }, + { + "appid": 2156810, + "normalized_name": "rhythm bang" + }, + { + "appid": 2156830, + "normalized_name": "words of yendor" + }, + { + "appid": 2156880, + "normalized_name": "sex adventures the bar hookup" + }, + { + "appid": 2156890, + "normalized_name": "murder on the stella" + }, + { + "appid": 2156950, + "normalized_name": "always in mind" + }, + { + "appid": 2156960, + "normalized_name": "number 217721" + }, + { + "appid": 2156970, + "normalized_name": "search all keys" + }, + { + "appid": 2156980, + "normalized_name": "killing boys" + }, + { + "appid": 2157050, + "normalized_name": "sacred ember" + }, + { + "appid": 2157060, + "normalized_name": "project malice" + }, + { + "appid": 2157070, + "normalized_name": "funeral" + }, + { + "appid": 2157100, + "normalized_name": "the villager and the werewolf a jigsaw puzzle tale" + }, + { + "appid": 2157110, + "normalized_name": "fuck hitler" + }, + { + "appid": 2157130, + "normalized_name": "this is hell" + }, + { + "appid": 2157190, + "normalized_name": "dark gaze curse of the black nazar" + }, + { + "appid": 2157210, + "normalized_name": "dead of darkness" + }, + { + "appid": 2157230, + "normalized_name": "carrot revenge" + }, + { + "appid": 2157250, + "normalized_name": "monsters 'til midnight" + }, + { + "appid": 2157260, + "normalized_name": "tahoe dragon the beginning updated 2023" + }, + { + "appid": 2157290, + "normalized_name": "azarine heart" + }, + { + "appid": 2157340, + "normalized_name": "meowjiro" + }, + { + "appid": 2157410, + "normalized_name": "underground sheriff" + }, + { + "appid": 2157440, + "normalized_name": "run run boy" + }, + { + "appid": 2157450, + "normalized_name": "stunts contest monster car" + }, + { + "appid": 2157460, + "normalized_name": "vuosterávdnjái" + }, + { + "appid": 2157470, + "normalized_name": "comet" + }, + { + "appid": 2157490, + "normalized_name": "无名勇者见闻录" + }, + { + "appid": 2157500, + "normalized_name": "in stone" + }, + { + "appid": 2157510, + "normalized_name": "pool game" + }, + { + "appid": 2157540, + "normalized_name": "lost amulets mystic land" + }, + { + "appid": 2157560, + "normalized_name": "granblue fantasy versus rising" + }, + { + "appid": 2157630, + "normalized_name": "healthy plane" + }, + { + "appid": 2157650, + "normalized_name": "dead city" + }, + { + "appid": 2157670, + "normalized_name": "big adventure trip to europe 2 collector's" + }, + { + "appid": 2157680, + "normalized_name": "lunar mirror the pavilion of desire" + }, + { + "appid": 2157710, + "normalized_name": "hordes of hunger" + }, + { + "appid": 2157760, + "normalized_name": "wetbread" + }, + { + "appid": 2157860, + "normalized_name": "iceline" + }, + { + "appid": 2157910, + "normalized_name": "technophobia dead metal tournament" + }, + { + "appid": 2157920, + "normalized_name": "haunted attack of the dead men" + }, + { + "appid": 2157940, + "normalized_name": "braverbots" + }, + { + "appid": 2157960, + "normalized_name": "restaurant at the end of time" + }, + { + "appid": 2158020, + "normalized_name": "gallery" + }, + { + "appid": 2158030, + "normalized_name": "retrorealms arcade" + }, + { + "appid": 2158040, + "normalized_name": "grade sword" + }, + { + "appid": 2158050, + "normalized_name": "space cheetah hyper runner" + }, + { + "appid": 2158130, + "normalized_name": "deadly harvest" + }, + { + "appid": 2158160, + "normalized_name": "tales of mathasia" + }, + { + "appid": 2158190, + "normalized_name": "robot programmer" + }, + { + "appid": 2158210, + "normalized_name": "murder next room" + }, + { + "appid": 2158220, + "normalized_name": "glitched? or programmed that way?" + }, + { + "appid": 2158240, + "normalized_name": "the trench" + }, + { + "appid": 2158270, + "normalized_name": "quatro!" + }, + { + "appid": 2158290, + "normalized_name": "necroffense" + }, + { + "appid": 2158360, + "normalized_name": "like a boss" + }, + { + "appid": 2158370, + "normalized_name": "坦克幸存者" + }, + { + "appid": 2158390, + "normalized_name": "before resignation" + }, + { + "appid": 2158430, + "normalized_name": "地府货铺" + }, + { + "appid": 2158500, + "normalized_name": "捉妖物语2" + }, + { + "appid": 2158530, + "normalized_name": "aerial platforms" + }, + { + "appid": 2158540, + "normalized_name": "mount farewell" + }, + { + "appid": 2158550, + "normalized_name": "birdcage" + }, + { + "appid": 2158590, + "normalized_name": "enigma do labirinto" + }, + { + "appid": 2158600, + "normalized_name": "cubematrix" + }, + { + "appid": 2158610, + "normalized_name": "city of elves" + }, + { + "appid": 2158620, + "normalized_name": "crimson phoenix rise" + }, + { + "appid": 2158650, + "normalized_name": "i did not buy this ticket" + }, + { + "appid": 2158690, + "normalized_name": "star rift saga" + }, + { + "appid": 2158700, + "normalized_name": "candlehead" + }, + { + "appid": 2158710, + "normalized_name": "up & away" + }, + { + "appid": 2158730, + "normalized_name": "hand simulator rendezvous" + }, + { + "appid": 2158740, + "normalized_name": "within the backrooms" + }, + { + "appid": 2158750, + "normalized_name": "fourspell survivors online" + }, + { + "appid": 2158760, + "normalized_name": "strip battle" + }, + { + "appid": 2158800, + "normalized_name": "battle gear" + }, + { + "appid": 2158810, + "normalized_name": "cosmic coliseum" + }, + { + "appid": 2158820, + "normalized_name": "divinity" + }, + { + "appid": 2158850, + "normalized_name": "spooky halloween in the voxel world (remake)" + }, + { + "appid": 2158870, + "normalized_name": "relation killer" + }, + { + "appid": 2158880, + "normalized_name": "tkium underground" + }, + { + "appid": 2158900, + "normalized_name": "automaton lung" + }, + { + "appid": 2158920, + "normalized_name": "scarebox" + }, + { + "appid": 2159020, + "normalized_name": "under the shack" + }, + { + "appid": 2159040, + "normalized_name": "save santa" + }, + { + "appid": 2159050, + "normalized_name": "blessed work" + }, + { + "appid": 2159060, + "normalized_name": "big adventure trip to europe 3 collector's" + }, + { + "appid": 2159090, + "normalized_name": "3d modellbahn studio v9" + }, + { + "appid": 2159120, + "normalized_name": "sur5" + }, + { + "appid": 2159170, + "normalized_name": "light fairytale episode 3" + }, + { + "appid": 2159180, + "normalized_name": "hidden shapes trick or cats" + }, + { + "appid": 2159200, + "normalized_name": "asia empire 2027" + }, + { + "appid": 2159210, + "normalized_name": "just a to the moon series beach episode" + }, + { + "appid": 2159230, + "normalized_name": "ace pilot europe" + }, + { + "appid": 2159240, + "normalized_name": "tribu" + }, + { + "appid": 2159260, + "normalized_name": "vampire rancher" + }, + { + "appid": 2159270, + "normalized_name": "kingdoms of the dump" + }, + { + "appid": 2159280, + "normalized_name": "flappy bat 2" + }, + { + "appid": 2159300, + "normalized_name": "aroma" + }, + { + "appid": 2159310, + "normalized_name": "dungeon of final glory" + }, + { + "appid": 2159350, + "normalized_name": "super jumpy ball" + }, + { + "appid": 2159370, + "normalized_name": "click for points" + }, + { + "appid": 2159390, + "normalized_name": "sumiii" + }, + { + "appid": 2159400, + "normalized_name": "escape the escape rooms" + }, + { + "appid": 2159440, + "normalized_name": "dwarf star" + }, + { + "appid": 2159450, + "normalized_name": "realm of dread" + }, + { + "appid": 2159470, + "normalized_name": "chicken fight" + }, + { + "appid": 2159500, + "normalized_name": "phaigex hyperspace survivors" + }, + { + "appid": 2159520, + "normalized_name": "desktop farm" + }, + { + "appid": 2159530, + "normalized_name": "on dark terms" + }, + { + "appid": 2159590, + "normalized_name": "lost in malul" + }, + { + "appid": 2159650, + "normalized_name": "drift space survival" + }, + { + "appid": 2159670, + "normalized_name": "maboroshi caravan" + }, + { + "appid": 2159680, + "normalized_name": "hypnotizing beautiful sisters who piss me off" + }, + { + "appid": 2159720, + "normalized_name": "キミもvtuberにならないか?" + }, + { + "appid": 2159730, + "normalized_name": "霸剑霄云录/the forgotten concluder" + }, + { + "appid": 2159770, + "normalized_name": "sticky notes" + }, + { + "appid": 2159780, + "normalized_name": "handyman corporation prologue" + }, + { + "appid": 2159860, + "normalized_name": "魔卡幻想(heroines fantasy inherit)" + }, + { + "appid": 2159870, + "normalized_name": "city metro simulator" + }, + { + "appid": 2159880, + "normalized_name": "highway cross" + }, + { + "appid": 2159900, + "normalized_name": "decks of the damned" + }, + { + "appid": 2159960, + "normalized_name": "corponation the sorting process" + }, + { + "appid": 2159980, + "normalized_name": "wild area" + }, + { + "appid": 2160000, + "normalized_name": "trapped with jester" + }, + { + "appid": 2160010, + "normalized_name": "morn" + }, + { + "appid": 2160030, + "normalized_name": "hypersense" + }, + { + "appid": 2160040, + "normalized_name": "katana ra shinobi rising" + }, + { + "appid": 2160070, + "normalized_name": "forge of the fae" + }, + { + "appid": 2160090, + "normalized_name": "strategy battles" + }, + { + "appid": 2160190, + "normalized_name": "journey into darkness" + }, + { + "appid": 2160200, + "normalized_name": "howlbreath" + }, + { + "appid": 2160220, + "normalized_name": "shipwrecked 64" + }, + { + "appid": 2160230, + "normalized_name": "morrow" + }, + { + "appid": 2160240, + "normalized_name": "sushi for robots" + }, + { + "appid": 2160250, + "normalized_name": "3d don't die mr robot" + }, + { + "appid": 2160270, + "normalized_name": "desktop trains" + }, + { + "appid": 2160340, + "normalized_name": "island defender jets" + }, + { + "appid": 2160360, + "normalized_name": "aero gpx" + }, + { + "appid": 2160380, + "normalized_name": "dragonspire" + }, + { + "appid": 2160420, + "normalized_name": "the backrooms multiplayer" + }, + { + "appid": 2160430, + "normalized_name": "x racing" + }, + { + "appid": 2160440, + "normalized_name": "oroboros" + }, + { + "appid": 2160460, + "normalized_name": "da tutu" + }, + { + "appid": 2160470, + "normalized_name": "zup! y" + }, + { + "appid": 2160480, + "normalized_name": "hellboy web of wyrd" + }, + { + "appid": 2160500, + "normalized_name": "many minigames" + }, + { + "appid": 2160560, + "normalized_name": "varidungeon" + }, + { + "appid": 2160570, + "normalized_name": "latin america empire 2027" + }, + { + "appid": 2160670, + "normalized_name": "i'm not happy" + }, + { + "appid": 2160680, + "normalized_name": "last kids on earth hit the deck!" + }, + { + "appid": 2160700, + "normalized_name": "vr sniper hunt" + }, + { + "appid": 2160710, + "normalized_name": "lost memories" + }, + { + "appid": 2160760, + "normalized_name": "liminal" + }, + { + "appid": 2160800, + "normalized_name": "gelatinous humanity lost" + }, + { + "appid": 2160810, + "normalized_name": "spaceship ace pilot" + }, + { + "appid": 2160840, + "normalized_name": "entangled souls" + }, + { + "appid": 2161000, + "normalized_name": "roost" + }, + { + "appid": 2161050, + "normalized_name": "boti byteland overclocked" + }, + { + "appid": 2161090, + "normalized_name": "spy swatter 2" + }, + { + "appid": 2161110, + "normalized_name": "the end is nahual if i may say so" + }, + { + "appid": 2161120, + "normalized_name": "slime ranger sokoban" + }, + { + "appid": 2161130, + "normalized_name": "rerun" + }, + { + "appid": 2161190, + "normalized_name": "multiverse mercenaries" + }, + { + "appid": 2161200, + "normalized_name": "scrap bastion" + }, + { + "appid": 2161230, + "normalized_name": "grapple gunners" + }, + { + "appid": 2161280, + "normalized_name": "chromatic /resonance" + }, + { + "appid": 2161330, + "normalized_name": "i love finding birds" + }, + { + "appid": 2161410, + "normalized_name": "gust" + }, + { + "appid": 2161430, + "normalized_name": "fake signals" + }, + { + "appid": 2161440, + "normalized_name": "风帆纪元 sailing era" + }, + { + "appid": 2161450, + "normalized_name": "sorry we're open" + }, + { + "appid": 2161490, + "normalized_name": "数据战争" + }, + { + "appid": 2161590, + "normalized_name": "bike arena" + }, + { + "appid": 2161600, + "normalized_name": "ghost bus simulator" + }, + { + "appid": 2161620, + "normalized_name": "lysfanga the time shift warrior" + }, + { + "appid": 2161630, + "normalized_name": "not born to be king" + }, + { + "appid": 2161640, + "normalized_name": "幻侠仙缘录" + }, + { + "appid": 2161660, + "normalized_name": "little witchelsa pumpkin peril" + }, + { + "appid": 2161700, + "normalized_name": "persona 3 reload" + }, + { + "appid": 2161730, + "normalized_name": "mike's arcade" + }, + { + "appid": 2161760, + "normalized_name": "garden renovator" + }, + { + "appid": 2161810, + "normalized_name": "scare girl" + }, + { + "appid": 2161830, + "normalized_name": "truer than you" + }, + { + "appid": 2161840, + "normalized_name": "aircraft pushback simulator" + }, + { + "appid": 2161900, + "normalized_name": "spin quest a slot adventure" + }, + { + "appid": 2161940, + "normalized_name": "anime girls trample" + }, + { + "appid": 2161950, + "normalized_name": "the magic garden 魔法花园" + }, + { + "appid": 2161960, + "normalized_name": "shadow's bullet" + }, + { + "appid": 2161980, + "normalized_name": "borealis descent" + }, + { + "appid": 2162020, + "normalized_name": "strayed lights" + }, + { + "appid": 2162050, + "normalized_name": "拯救公主 宿命的破除" + }, + { + "appid": 2162070, + "normalized_name": "ooglians" + }, + { + "appid": 2162130, + "normalized_name": "deck 'em!" + }, + { + "appid": 2162150, + "normalized_name": "vr run" + }, + { + "appid": 2162160, + "normalized_name": "the passenger" + }, + { + "appid": 2162210, + "normalized_name": "road trip usa 2 west collector's" + }, + { + "appid": 2162220, + "normalized_name": "crap" + }, + { + "appid": 2162260, + "normalized_name": "spiritus vindicta" + }, + { + "appid": 2162310, + "normalized_name": "existence the outer reach" + }, + { + "appid": 2162350, + "normalized_name": "routemania" + }, + { + "appid": 2162390, + "normalized_name": "the tower" + }, + { + "appid": 2162520, + "normalized_name": "emilia's playroom" + }, + { + "appid": 2162540, + "normalized_name": "melbourne route 96" + }, + { + "appid": 2162570, + "normalized_name": "cafe simulator" + }, + { + "appid": 2162580, + "normalized_name": "shipwrecked" + }, + { + "appid": 2162610, + "normalized_name": "conquer napoleonic wars" + }, + { + "appid": 2162680, + "normalized_name": "doom sweeper" + }, + { + "appid": 2162720, + "normalized_name": "shepherd's crossing" + }, + { + "appid": 2162730, + "normalized_name": "snek" + }, + { + "appid": 2162750, + "normalized_name": "draco" + }, + { + "appid": 2162770, + "normalized_name": "fraction reaction" + }, + { + "appid": 2162780, + "normalized_name": "e.e.r.i.e2" + }, + { + "appid": 2162790, + "normalized_name": "pricia defense" + }, + { + "appid": 2162800, + "normalized_name": "shapez 2" + }, + { + "appid": 2162810, + "normalized_name": "abnormal status ~tattoo / prohibited books / parasites~" + }, + { + "appid": 2162820, + "normalized_name": "蒐命のラスティル とこしえの迷宮城" + }, + { + "appid": 2162870, + "normalized_name": "frogjump" + }, + { + "appid": 2162890, + "normalized_name": "keep of the witch" + }, + { + "appid": 2162900, + "normalized_name": "antrabhara" + }, + { + "appid": 2162950, + "normalized_name": "a maiden astrologer divines the future" + }, + { + "appid": 2162960, + "normalized_name": "for mother matron" + }, + { + "appid": 2162970, + "normalized_name": "bargain platformer" + }, + { + "appid": 2162980, + "normalized_name": "milu milan" + }, + { + "appid": 2163000, + "normalized_name": "缄默咖啡厅" + }, + { + "appid": 2163030, + "normalized_name": "dreamcutter" + }, + { + "appid": 2163040, + "normalized_name": "doors" + }, + { + "appid": 2163050, + "normalized_name": "夢隠し dreamed away" + }, + { + "appid": 2163060, + "normalized_name": "summer crush" + }, + { + "appid": 2163100, + "normalized_name": "divided skies" + }, + { + "appid": 2163140, + "normalized_name": "ornament express" + }, + { + "appid": 2163160, + "normalized_name": "ovrlrd" + }, + { + "appid": 2163190, + "normalized_name": "liber prologue" + }, + { + "appid": 2163200, + "normalized_name": "area zero" + }, + { + "appid": 2163210, + "normalized_name": "the archipelago promise" + }, + { + "appid": 2163220, + "normalized_name": "s.p.l.i.c.e.d." + }, + { + "appid": 2163230, + "normalized_name": "witch guild survivor" + }, + { + "appid": 2163250, + "normalized_name": "small cell" + }, + { + "appid": 2163330, + "normalized_name": "yet another zombie survivors" + }, + { + "appid": 2163400, + "normalized_name": "magecraft" + }, + { + "appid": 2163430, + "normalized_name": "spinout drifter" + }, + { + "appid": 2163450, + "normalized_name": "molytropia cloud in shape of hurt" + }, + { + "appid": 2163460, + "normalized_name": "feathered run" + }, + { + "appid": 2163470, + "normalized_name": "ceplion" + }, + { + "appid": 2163480, + "normalized_name": "escape from the red planet" + }, + { + "appid": 2163500, + "normalized_name": "punzel chapter i toujours la meme histoire" + }, + { + "appid": 2163540, + "normalized_name": "sentinel" + }, + { + "appid": 2163560, + "normalized_name": "samurai's zenith shifting of the guard" + }, + { + "appid": 2163590, + "normalized_name": "hot pussy college 🍓🔞" + }, + { + "appid": 2163600, + "normalized_name": "tomb of the dead" + }, + { + "appid": 2163620, + "normalized_name": "azazel's christmas fable" + }, + { + "appid": 2163660, + "normalized_name": "loading..." + }, + { + "appid": 2163680, + "normalized_name": "it's locked" + }, + { + "appid": 2163690, + "normalized_name": "dicknosaurus prologue" + }, + { + "appid": 2163710, + "normalized_name": "aevumcore" + }, + { + "appid": 2163730, + "normalized_name": "color zone" + }, + { + "appid": 2163760, + "normalized_name": "bitter belief" + }, + { + "appid": 2163790, + "normalized_name": "lighten up" + }, + { + "appid": 2163800, + "normalized_name": "draft day sports pro football 2023" + }, + { + "appid": 2163860, + "normalized_name": "eureka" + }, + { + "appid": 2163890, + "normalized_name": "magic bubbles" + }, + { + "appid": 2163930, + "normalized_name": "skeleton punchers" + }, + { + "appid": 2164030, + "normalized_name": "stop dead" + }, + { + "appid": 2164040, + "normalized_name": "²pattern" + }, + { + "appid": 2164050, + "normalized_name": "#inner universe 1f0000" + }, + { + "appid": 2164060, + "normalized_name": "yeahzaprun" + }, + { + "appid": 2164080, + "normalized_name": "pep" + }, + { + "appid": 2164100, + "normalized_name": "so much stuff" + }, + { + "appid": 2164150, + "normalized_name": "rayless blade" + }, + { + "appid": 2164220, + "normalized_name": "who is there?" + }, + { + "appid": 2164280, + "normalized_name": "sorcerer standoff" + }, + { + "appid": 2164310, + "normalized_name": "escape from lavender island" + }, + { + "appid": 2164320, + "normalized_name": "oathbreakers" + }, + { + "appid": 2164370, + "normalized_name": "slender myth" + }, + { + "appid": 2164390, + "normalized_name": "skader" + }, + { + "appid": 2164400, + "normalized_name": "hellventure" + }, + { + "appid": 2164480, + "normalized_name": "realm of the fallen" + }, + { + "appid": 2164490, + "normalized_name": "emberfate tempest of elements" + }, + { + "appid": 2164500, + "normalized_name": "99 fails" + }, + { + "appid": 2164570, + "normalized_name": "meiqi 2021" + }, + { + "appid": 2164580, + "normalized_name": "puzzle pieces 5 fairy ring" + }, + { + "appid": 2164590, + "normalized_name": "fortune handlers" + }, + { + "appid": 2164610, + "normalized_name": "search all mice" + }, + { + "appid": 2164630, + "normalized_name": "breathe with you" + }, + { + "appid": 2164660, + "normalized_name": "grist" + }, + { + "appid": 2164690, + "normalized_name": "いのちのないうた" + }, + { + "appid": 2164720, + "normalized_name": "catching spirits" + }, + { + "appid": 2164740, + "normalized_name": "surfwords" + }, + { + "appid": 2164750, + "normalized_name": "kai yuan" + }, + { + "appid": 2164760, + "normalized_name": "touchdown girls" + }, + { + "appid": 2164780, + "normalized_name": "tile town" + }, + { + "appid": 2164790, + "normalized_name": "putin destroys alien" + }, + { + "appid": 2164810, + "normalized_name": "xyz" + }, + { + "appid": 2164820, + "normalized_name": "eons away" + }, + { + "appid": 2164870, + "normalized_name": "sinister entity" + }, + { + "appid": 2164880, + "normalized_name": "tilecraft" + }, + { + "appid": 2164930, + "normalized_name": "doll explorer" + }, + { + "appid": 2164970, + "normalized_name": "keep me posted" + }, + { + "appid": 2164980, + "normalized_name": "causal nexus" + }, + { + "appid": 2165030, + "normalized_name": "deathwatch" + }, + { + "appid": 2165040, + "normalized_name": "sally" + }, + { + "appid": 2165130, + "normalized_name": "hymn to the earless god" + }, + { + "appid": 2165140, + "normalized_name": "kentum" + }, + { + "appid": 2165160, + "normalized_name": "treasure hunter vr" + }, + { + "appid": 2165210, + "normalized_name": "nightmare" + }, + { + "appid": 2165280, + "normalized_name": "ragingstrike" + }, + { + "appid": 2165300, + "normalized_name": "africa empire 2027" + }, + { + "appid": 2165340, + "normalized_name": "quiz.com" + }, + { + "appid": 2165350, + "normalized_name": "lazerhawk" + }, + { + "appid": 2165370, + "normalized_name": "ankora lost days prologue" + }, + { + "appid": 2165380, + "normalized_name": "hunting labyrinth" + }, + { + "appid": 2165390, + "normalized_name": "神灵石之劫 tales of spark" + }, + { + "appid": 2165400, + "normalized_name": "chronocodex" + }, + { + "appid": 2165420, + "normalized_name": "ultra blade" + }, + { + "appid": 2165440, + "normalized_name": "meiqi 2020" + }, + { + "appid": 2165470, + "normalized_name": "taora survival" + }, + { + "appid": 2165510, + "normalized_name": "number 99 rogue racer" + }, + { + "appid": 2165520, + "normalized_name": "fuktopia 5" + }, + { + "appid": 2165530, + "normalized_name": "make me float" + }, + { + "appid": 2165550, + "normalized_name": "sex adventures bdsm dungeon" + }, + { + "appid": 2165560, + "normalized_name": "motherboard under attack" + }, + { + "appid": 2165600, + "normalized_name": "boo!" + }, + { + "appid": 2165610, + "normalized_name": "mosaique neko waifus 5" + }, + { + "appid": 2165620, + "normalized_name": "pool cleaning simulator" + }, + { + "appid": 2165650, + "normalized_name": "hoiwa hub" + }, + { + "appid": 2165690, + "normalized_name": "pro era" + }, + { + "appid": 2165720, + "normalized_name": "monsters of seabrook" + }, + { + "appid": 2165730, + "normalized_name": "park control simulator" + }, + { + "appid": 2165740, + "normalized_name": "sokofrog" + }, + { + "appid": 2165750, + "normalized_name": "tunnels under yorion" + }, + { + "appid": 2165810, + "normalized_name": "streets of rogue 2" + }, + { + "appid": 2165840, + "normalized_name": "ropu barastu no x" + }, + { + "appid": 2166020, + "normalized_name": "hexworld" + }, + { + "appid": 2166050, + "normalized_name": "moonleap" + }, + { + "appid": 2166060, + "normalized_name": "amanda the adventurer" + }, + { + "appid": 2166070, + "normalized_name": "spy girl 01" + }, + { + "appid": 2166120, + "normalized_name": "digit factory" + }, + { + "appid": 2166140, + "normalized_name": "milky quest ii" + }, + { + "appid": 2166150, + "normalized_name": "caesar's revenge" + }, + { + "appid": 2166170, + "normalized_name": "world zero" + }, + { + "appid": 2166180, + "normalized_name": "text adventure engine" + }, + { + "appid": 2166190, + "normalized_name": "juan sin miedo" + }, + { + "appid": 2166200, + "normalized_name": "cold massacre" + }, + { + "appid": 2166220, + "normalized_name": "students of light bonds typing rpg with character creation" + }, + { + "appid": 2166250, + "normalized_name": "hungry caveman" + }, + { + "appid": 2166260, + "normalized_name": "beat the devil" + }, + { + "appid": 2166310, + "normalized_name": "bones of halloween" + }, + { + "appid": 2166340, + "normalized_name": "null state" + }, + { + "appid": 2166360, + "normalized_name": "overkill" + }, + { + "appid": 2166370, + "normalized_name": "hentai sexy nurses" + }, + { + "appid": 2166420, + "normalized_name": "orbtangle" + }, + { + "appid": 2166430, + "normalized_name": "the senex bird" + }, + { + "appid": 2166450, + "normalized_name": "stay out of the farm" + }, + { + "appid": 2166470, + "normalized_name": "the survival of sarah rose" + }, + { + "appid": 2166480, + "normalized_name": "supermarket duck dash" + }, + { + "appid": 2166490, + "normalized_name": "stay out of the farm prologue" + }, + { + "appid": 2166500, + "normalized_name": "that makes sense" + }, + { + "appid": 2166510, + "normalized_name": "merchant of bohemia" + }, + { + "appid": 2166530, + "normalized_name": "rich teddy adventure" + }, + { + "appid": 2166540, + "normalized_name": "candice debébé's tantalising tricks" + }, + { + "appid": 2166580, + "normalized_name": "the janus problem" + }, + { + "appid": 2166610, + "normalized_name": "the shadow people" + }, + { + "appid": 2166620, + "normalized_name": "voids adrift island designer" + }, + { + "appid": 2166630, + "normalized_name": "search all buds" + }, + { + "appid": 2166640, + "normalized_name": "family curse" + }, + { + "appid": 2166690, + "normalized_name": "savage boss fight" + }, + { + "appid": 2166710, + "normalized_name": "fabric of reality" + }, + { + "appid": 2166720, + "normalized_name": "thief city" + }, + { + "appid": 2166730, + "normalized_name": "electrokinetic" + }, + { + "appid": 2166740, + "normalized_name": "artifact conquest" + }, + { + "appid": 2166750, + "normalized_name": "robbie" + }, + { + "appid": 2166780, + "normalized_name": "galaxy bricks" + }, + { + "appid": 2166820, + "normalized_name": "史莱姆冒险战slimewarfare" + }, + { + "appid": 2166850, + "normalized_name": "chased" + }, + { + "appid": 2166870, + "normalized_name": "the silent bells" + }, + { + "appid": 2166890, + "normalized_name": "starsim" + }, + { + "appid": 2166910, + "normalized_name": "呆呆大冒险" + }, + { + "appid": 2166920, + "normalized_name": "captain contraption's chocolate factory" + }, + { + "appid": 2166950, + "normalized_name": "goolems" + }, + { + "appid": 2166960, + "normalized_name": "the alchemist of nafiljar" + }, + { + "appid": 2166990, + "normalized_name": "crazy drift" + }, + { + "appid": 2167010, + "normalized_name": "winterthunder" + }, + { + "appid": 2167040, + "normalized_name": "pocket witch" + }, + { + "appid": 2167100, + "normalized_name": "to the earth" + }, + { + "appid": 2167110, + "normalized_name": "dark desire 4" + }, + { + "appid": 2167130, + "normalized_name": "cat's request" + }, + { + "appid": 2167190, + "normalized_name": "51 22 51" + }, + { + "appid": 2167210, + "normalized_name": "farewell" + }, + { + "appid": 2167220, + "normalized_name": "the bible" + }, + { + "appid": 2167260, + "normalized_name": "rendering ranger r² [rewind]" + }, + { + "appid": 2167340, + "normalized_name": "physics lab" + }, + { + "appid": 2167380, + "normalized_name": "ricochet rodeo" + }, + { + "appid": 2167390, + "normalized_name": "grotesque realm" + }, + { + "appid": 2167400, + "normalized_name": "the mixer" + }, + { + "appid": 2167430, + "normalized_name": "軍靴をはいた猫" + }, + { + "appid": 2167480, + "normalized_name": "cat tower" + }, + { + "appid": 2167530, + "normalized_name": "v's rage" + }, + { + "appid": 2167560, + "normalized_name": "一本橋ワタル" + }, + { + "appid": 2167580, + "normalized_name": "summoners war chronicles" + }, + { + "appid": 2167600, + "normalized_name": "star rabbits" + }, + { + "appid": 2167640, + "normalized_name": "编年史ol" + }, + { + "appid": 2167660, + "normalized_name": "brisk square" + }, + { + "appid": 2167750, + "normalized_name": "the demon within me" + }, + { + "appid": 2167760, + "normalized_name": "shong" + }, + { + "appid": 2167770, + "normalized_name": "lala hentai" + }, + { + "appid": 2167790, + "normalized_name": "风暴行动" + }, + { + "appid": 2167800, + "normalized_name": "idle cyber dungeon" + }, + { + "appid": 2167830, + "normalized_name": "epic ninja" + }, + { + "appid": 2167840, + "normalized_name": "inner call" + }, + { + "appid": 2167850, + "normalized_name": "puzzle triangles" + }, + { + "appid": 2167860, + "normalized_name": "dungeon & adventure" + }, + { + "appid": 2167870, + "normalized_name": "a bit of tactics" + }, + { + "appid": 2167880, + "normalized_name": "oylinder" + }, + { + "appid": 2167890, + "normalized_name": "lost hammer" + }, + { + "appid": 2167900, + "normalized_name": "puny bob" + }, + { + "appid": 2167910, + "normalized_name": "reeve" + }, + { + "appid": 2167930, + "normalized_name": "sweet holiday jigsaws trick or treat" + }, + { + "appid": 2167960, + "normalized_name": "买个可乐饼吧! buy a croquette!" + }, + { + "appid": 2167980, + "normalized_name": "reviver" + }, + { + "appid": 2167990, + "normalized_name": "bear no grudge" + }, + { + "appid": 2168000, + "normalized_name": "trader of the night" + }, + { + "appid": 2168060, + "normalized_name": "the planetarian" + }, + { + "appid": 2168070, + "normalized_name": "sorceress" + }, + { + "appid": 2168080, + "normalized_name": "abyss manager idle" + }, + { + "appid": 2168090, + "normalized_name": "stealth" + }, + { + "appid": 2168120, + "normalized_name": "anomalistic revolution" + }, + { + "appid": 2168150, + "normalized_name": "teslagrad" + }, + { + "appid": 2168170, + "normalized_name": "retro wave thunder" + }, + { + "appid": 2168190, + "normalized_name": "cataverse mvp" + }, + { + "appid": 2168200, + "normalized_name": "nervbox" + }, + { + "appid": 2168240, + "normalized_name": "kizuna ai touch the beat!" + }, + { + "appid": 2168260, + "normalized_name": "forgotten seas" + }, + { + "appid": 2168290, + "normalized_name": "玄成镜:乱世起源" + }, + { + "appid": 2168330, + "normalized_name": "helmscape" + }, + { + "appid": 2168380, + "normalized_name": "super spatial" + }, + { + "appid": 2168450, + "normalized_name": "dreamwild" + }, + { + "appid": 2168480, + "normalized_name": "janet demornay is a slumlord (and a witch)" + }, + { + "appid": 2168490, + "normalized_name": "masarada town story" + }, + { + "appid": 2168530, + "normalized_name": "越えざるは紅い花~対の月~" + }, + { + "appid": 2168600, + "normalized_name": "in the rural village of nagoro" + }, + { + "appid": 2168610, + "normalized_name": "雨にして人を外れ" + }, + { + "appid": 2168630, + "normalized_name": "l30 p4rd" + }, + { + "appid": 2168650, + "normalized_name": "the asafo journey" + }, + { + "appid": 2168660, + "normalized_name": "さくらいろプリズム" + }, + { + "appid": 2168680, + "normalized_name": "nuclear option" + }, + { + "appid": 2168710, + "normalized_name": "anvil" + }, + { + "appid": 2168760, + "normalized_name": "attic panic" + }, + { + "appid": 2168800, + "normalized_name": "the assailant's arrival" + }, + { + "appid": 2168810, + "normalized_name": "志怪者" + }, + { + "appid": 2168820, + "normalized_name": "classical music minesweeper" + }, + { + "appid": 2168830, + "normalized_name": "the story of barker" + }, + { + "appid": 2168870, + "normalized_name": "morendo" + }, + { + "appid": 2168880, + "normalized_name": "rogue blaster" + }, + { + "appid": 2168920, + "normalized_name": "middle east empire 2027" + }, + { + "appid": 2169000, + "normalized_name": "trachi – anarchy" + }, + { + "appid": 2169010, + "normalized_name": "dwarfs fight" + }, + { + "appid": 2169060, + "normalized_name": "crystal riders vr" + }, + { + "appid": 2169120, + "normalized_name": "lords of infinity" + }, + { + "appid": 2169140, + "normalized_name": "cantescapethebackrooms" + }, + { + "appid": 2169150, + "normalized_name": "ascended gods realm of origins" + }, + { + "appid": 2169160, + "normalized_name": "hero jumper demo" + }, + { + "appid": 2169200, + "normalized_name": "sniper elite resistance" + }, + { + "appid": 2169220, + "normalized_name": "gpro classic racing manager" + }, + { + "appid": 2169230, + "normalized_name": "i'm late" + }, + { + "appid": 2169250, + "normalized_name": "throw wizard" + }, + { + "appid": 2169260, + "normalized_name": "road to salvation" + }, + { + "appid": 2169270, + "normalized_name": "innocent's purgatory" + }, + { + "appid": 2169300, + "normalized_name": "dizzy rogues" + }, + { + "appid": 2169330, + "normalized_name": "roguetype typing game" + }, + { + "appid": 2169350, + "normalized_name": "strip n play with valerie" + }, + { + "appid": 2169370, + "normalized_name": "rcpg" + }, + { + "appid": 2169420, + "normalized_name": "horny witch crusade" + }, + { + "appid": 2169460, + "normalized_name": "argol kronoss' castle" + }, + { + "appid": 2169570, + "normalized_name": "the lost legends of redwall the scout anthology" + }, + { + "appid": 2169580, + "normalized_name": "the reluctant redemption of verity lux" + }, + { + "appid": 2169620, + "normalized_name": "frog in the well" + }, + { + "appid": 2169660, + "normalized_name": "adolf hitler rpg last minutes of the millennium empire" + }, + { + "appid": 2169680, + "normalized_name": "fishing with the homies" + }, + { + "appid": 2169700, + "normalized_name": "gramm" + }, + { + "appid": 2169730, + "normalized_name": "the archipelago" + }, + { + "appid": 2169760, + "normalized_name": "ninjafall" + }, + { + "appid": 2169790, + "normalized_name": "hexa rhythm" + }, + { + "appid": 2169800, + "normalized_name": "琳琳" + }, + { + "appid": 2169810, + "normalized_name": "mermaid" + }, + { + "appid": 2169830, + "normalized_name": "how a retired strategist saved the country" + }, + { + "appid": 2169930, + "normalized_name": "r type tactics i • ii cosmos" + }, + { + "appid": 2169940, + "normalized_name": "corrupted beats" + }, + { + "appid": 2169950, + "normalized_name": "yasha legends of the demon blade" + }, + { + "appid": 2170050, + "normalized_name": "wolfteam reboot" + }, + { + "appid": 2170060, + "normalized_name": "scp submerged" + }, + { + "appid": 2170090, + "normalized_name": "each other" + }, + { + "appid": 2170100, + "normalized_name": "volley pals" + }, + { + "appid": 2170160, + "normalized_name": "metal march" + }, + { + "appid": 2170170, + "normalized_name": "gallery moa's room" + }, + { + "appid": 2170210, + "normalized_name": "dosi" + }, + { + "appid": 2170230, + "normalized_name": "lumien" + }, + { + "appid": 2170240, + "normalized_name": "ハーレム過ぎる異世界は俺が救う isekai harem saver" + }, + { + "appid": 2170320, + "normalized_name": "final beacon" + }, + { + "appid": 2170350, + "normalized_name": "free my sight" + }, + { + "appid": 2170370, + "normalized_name": "spy×anya operation memories" + }, + { + "appid": 2170380, + "normalized_name": "biofusion" + }, + { + "appid": 2170390, + "normalized_name": "exil" + }, + { + "appid": 2170410, + "normalized_name": "phantom tides" + }, + { + "appid": 2170450, + "normalized_name": "cult chapter one" + }, + { + "appid": 2170490, + "normalized_name": "kind heart defenders" + }, + { + "appid": 2170500, + "normalized_name": "voxella" + }, + { + "appid": 2170520, + "normalized_name": "inescapable no rules no rescue" + }, + { + "appid": 2170580, + "normalized_name": "glass hearts" + }, + { + "appid": 2170590, + "normalized_name": "naomi's exhibition" + }, + { + "appid": 2170650, + "normalized_name": "mobilization" + }, + { + "appid": 2170680, + "normalized_name": "astonishing basketball manager" + }, + { + "appid": 2170690, + "normalized_name": "shotfightdisaster" + }, + { + "appid": 2170700, + "normalized_name": "arcade classics" + }, + { + "appid": 2170760, + "normalized_name": "saturn quest r. u. n. e. 3000" + }, + { + "appid": 2170790, + "normalized_name": "intra" + }, + { + "appid": 2170830, + "normalized_name": "row realms of war" + }, + { + "appid": 2170860, + "normalized_name": "homaysa" + }, + { + "appid": 2170880, + "normalized_name": "moonrock miners" + }, + { + "appid": 2170890, + "normalized_name": "missing pieces" + }, + { + "appid": 2170910, + "normalized_name": "justice for all" + }, + { + "appid": 2170920, + "normalized_name": "divine dawn" + }, + { + "appid": 2170960, + "normalized_name": "boot camp endless runner" + }, + { + "appid": 2171010, + "normalized_name": "the secret pyramid vr" + }, + { + "appid": 2171030, + "normalized_name": "clean energy creatures" + }, + { + "appid": 2171040, + "normalized_name": "windhelm" + }, + { + "appid": 2171060, + "normalized_name": "starway baraider" + }, + { + "appid": 2171100, + "normalized_name": "sword&magic" + }, + { + "appid": 2171240, + "normalized_name": "chaosworld" + }, + { + "appid": 2171250, + "normalized_name": "箭歌行贰之秦统天下 arrow song2" + }, + { + "appid": 2171260, + "normalized_name": "云之城" + }, + { + "appid": 2171270, + "normalized_name": "legend of feather" + }, + { + "appid": 2171310, + "normalized_name": "lost cartridge cold read" + }, + { + "appid": 2171350, + "normalized_name": "骑士与工匠 knights and craftsmen" + }, + { + "appid": 2171420, + "normalized_name": "platonically mauled by a magic cougar" + }, + { + "appid": 2171440, + "normalized_name": "fear & hunger 2 termina" + }, + { + "appid": 2171450, + "normalized_name": "bizarr adventure" + }, + { + "appid": 2171490, + "normalized_name": "against the backrooms" + }, + { + "appid": 2171500, + "normalized_name": "great ambition of the slimes" + }, + { + "appid": 2171530, + "normalized_name": "step by step hero" + }, + { + "appid": 2171550, + "normalized_name": "iron roads" + }, + { + "appid": 2171560, + "normalized_name": "morbid the lords of ire" + }, + { + "appid": 2171570, + "normalized_name": "whisker waters" + }, + { + "appid": 2171600, + "normalized_name": "enemy at the gates commander" + }, + { + "appid": 2171610, + "normalized_name": "mini star bakery" + }, + { + "appid": 2171630, + "normalized_name": "return from core" + }, + { + "appid": 2171640, + "normalized_name": "code reactors" + }, + { + "appid": 2171650, + "normalized_name": "walking in the abyss" + }, + { + "appid": 2171660, + "normalized_name": "tuda kuda" + }, + { + "appid": 2171680, + "normalized_name": "satanislas" + }, + { + "appid": 2171690, + "normalized_name": "handshakes" + }, + { + "appid": 2171700, + "normalized_name": "insane" + }, + { + "appid": 2171720, + "normalized_name": "mikos wish" + }, + { + "appid": 2171750, + "normalized_name": "editor's hell" + }, + { + "appid": 2171830, + "normalized_name": "jotunn day of judgement" + }, + { + "appid": 2171840, + "normalized_name": "project mirror" + }, + { + "appid": 2171880, + "normalized_name": "albatroz" + }, + { + "appid": 2171910, + "normalized_name": "forehead chip" + }, + { + "appid": 2171920, + "normalized_name": "light & shadow" + }, + { + "appid": 2171930, + "normalized_name": "deathwatch prelude" + }, + { + "appid": 2171970, + "normalized_name": "unified" + }, + { + "appid": 2171980, + "normalized_name": "romancing the kingdom" + }, + { + "appid": 2172010, + "normalized_name": "until dawn" + }, + { + "appid": 2172030, + "normalized_name": "elong plug" + }, + { + "appid": 2172060, + "normalized_name": "the lik" + }, + { + "appid": 2172090, + "normalized_name": "battle billiards" + }, + { + "appid": 2172110, + "normalized_name": "sex adventures gangbang surprise" + }, + { + "appid": 2172120, + "normalized_name": "rift rangers" + }, + { + "appid": 2172150, + "normalized_name": "angel droid" + }, + { + "appid": 2172180, + "normalized_name": "howl" + }, + { + "appid": 2172190, + "normalized_name": "stickman's arena" + }, + { + "appid": 2172260, + "normalized_name": "the complex expedition" + }, + { + "appid": 2172320, + "normalized_name": "last whisper" + }, + { + "appid": 2172350, + "normalized_name": "push a block" + }, + { + "appid": 2172370, + "normalized_name": "short staffed" + }, + { + "appid": 2172380, + "normalized_name": "lunch box" + }, + { + "appid": 2172410, + "normalized_name": "100animalease" + }, + { + "appid": 2172420, + "normalized_name": "wolfskin's curse" + }, + { + "appid": 2172470, + "normalized_name": "姬恋~缚羽的欠片 纯净中文版" + }, + { + "appid": 2172490, + "normalized_name": "detective ridelle" + }, + { + "appid": 2172500, + "normalized_name": "arcanima mist of oblivion prologue" + }, + { + "appid": 2172510, + "normalized_name": "fairy biography2:confidante" + }, + { + "appid": 2172520, + "normalized_name": "run blob run 2" + }, + { + "appid": 2172580, + "normalized_name": "spirit mancer" + }, + { + "appid": 2172600, + "normalized_name": "my universe my baby dragon" + }, + { + "appid": 2172610, + "normalized_name": "이별 끝에 만난다면" + }, + { + "appid": 2172620, + "normalized_name": "wojak this game" + }, + { + "appid": 2172630, + "normalized_name": "joy flight" + }, + { + "appid": 2172660, + "normalized_name": "the heart defenders" + }, + { + "appid": 2172750, + "normalized_name": "demolition party" + }, + { + "appid": 2172760, + "normalized_name": "couroland" + }, + { + "appid": 2172780, + "normalized_name": "poly puzzle dinosaurs" + }, + { + "appid": 2172800, + "normalized_name": "defi gravity" + }, + { + "appid": 2172870, + "normalized_name": "pip 5" + }, + { + "appid": 2172900, + "normalized_name": "little friends puppy island" + }, + { + "appid": 2172920, + "normalized_name": "christmas wonderland 4" + }, + { + "appid": 2172940, + "normalized_name": "aconite" + }, + { + "appid": 2172950, + "normalized_name": "thecube" + }, + { + "appid": 2172970, + "normalized_name": "lorne" + }, + { + "appid": 2172980, + "normalized_name": "fading light vr antiworld" + }, + { + "appid": 2173000, + "normalized_name": "the happies amber falcon" + }, + { + "appid": 2173150, + "normalized_name": "cleaner company prologue" + }, + { + "appid": 2173160, + "normalized_name": "fall into insanity" + }, + { + "appid": 2173170, + "normalized_name": "bob's journey" + }, + { + "appid": 2173190, + "normalized_name": "saving healer" + }, + { + "appid": 2173200, + "normalized_name": "age of heroes the beginning" + }, + { + "appid": 2173270, + "normalized_name": "fortune the fated" + }, + { + "appid": 2173300, + "normalized_name": "skull survivor" + }, + { + "appid": 2173330, + "normalized_name": "the kill zone" + }, + { + "appid": 2173350, + "normalized_name": "sushiman" + }, + { + "appid": 2173380, + "normalized_name": "jada fishin'" + }, + { + "appid": 2173420, + "normalized_name": "bugs and bullets" + }, + { + "appid": 2173460, + "normalized_name": "echoes of the living" + }, + { + "appid": 2173480, + "normalized_name": "non euclidean" + }, + { + "appid": 2173520, + "normalized_name": "霓虹 1999" + }, + { + "appid": 2173530, + "normalized_name": "locosoccer 2" + }, + { + "appid": 2173550, + "normalized_name": "冒险与魔法" + }, + { + "appid": 2173570, + "normalized_name": "breadsticks" + }, + { + "appid": 2173580, + "normalized_name": "clausum" + }, + { + "appid": 2173600, + "normalized_name": "beer factory prologue" + }, + { + "appid": 2173620, + "normalized_name": "eagle hunting journey" + }, + { + "appid": 2173640, + "normalized_name": "aery vr broken memories" + }, + { + "appid": 2173650, + "normalized_name": "aery vr a journey beyond time" + }, + { + "appid": 2173660, + "normalized_name": "aery vr dreamscape" + }, + { + "appid": 2173670, + "normalized_name": "aery vr calm mind" + }, + { + "appid": 2173680, + "normalized_name": "arenamania" + }, + { + "appid": 2173700, + "normalized_name": "furry meow" + }, + { + "appid": 2173730, + "normalized_name": "fancy!" + }, + { + "appid": 2173740, + "normalized_name": "dynamic" + }, + { + "appid": 2173750, + "normalized_name": "a potion for chamomile" + }, + { + "appid": 2173760, + "normalized_name": "super video golf" + }, + { + "appid": 2173770, + "normalized_name": "the wings of dawn" + }, + { + "appid": 2173800, + "normalized_name": "projekt passion season 1" + }, + { + "appid": 2173810, + "normalized_name": "listen me" + }, + { + "appid": 2173850, + "normalized_name": "assault shell 2" + }, + { + "appid": 2173860, + "normalized_name": "paradise tomb" + }, + { + "appid": 2173870, + "normalized_name": "i commissioned some bees 8" + }, + { + "appid": 2173880, + "normalized_name": "i commissioned some bees 9" + }, + { + "appid": 2173890, + "normalized_name": "i commissioned some bees 10" + }, + { + "appid": 2173900, + "normalized_name": "sex with hitler 3d" + }, + { + "appid": 2173910, + "normalized_name": "project waterfall" + }, + { + "appid": 2173920, + "normalized_name": "demon's wrath" + }, + { + "appid": 2173930, + "normalized_name": "ntraholic remix" + }, + { + "appid": 2173980, + "normalized_name": "quinidiom" + }, + { + "appid": 2174060, + "normalized_name": "sincognito" + }, + { + "appid": 2174080, + "normalized_name": "pal" + }, + { + "appid": 2174160, + "normalized_name": "sands of slumber the rpg" + }, + { + "appid": 2174180, + "normalized_name": "onlysociety dawn" + }, + { + "appid": 2174190, + "normalized_name": "元境vr" + }, + { + "appid": 2174210, + "normalized_name": "sun's edge" + }, + { + "appid": 2174220, + "normalized_name": "doteam" + }, + { + "appid": 2174260, + "normalized_name": "illusion lands prologue defenders of dune" + }, + { + "appid": 2174270, + "normalized_name": "shadow in hell" + }, + { + "appid": 2174300, + "normalized_name": "piczle world of puzzles" + }, + { + "appid": 2174320, + "normalized_name": "a foreign world" + }, + { + "appid": 2174330, + "normalized_name": "together with me" + }, + { + "appid": 2174370, + "normalized_name": "slugmania" + }, + { + "appid": 2174420, + "normalized_name": "lucky goal" + }, + { + "appid": 2174430, + "normalized_name": "welcome to lightford" + }, + { + "appid": 2174440, + "normalized_name": "jump'n'brawl" + }, + { + "appid": 2174460, + "normalized_name": "sky traveler" + }, + { + "appid": 2174500, + "normalized_name": "parasite black" + }, + { + "appid": 2174560, + "normalized_name": "bus flipper simulator" + }, + { + "appid": 2174600, + "normalized_name": "fairyside" + }, + { + "appid": 2174620, + "normalized_name": "agelast" + }, + { + "appid": 2174650, + "normalized_name": "the duelist sanaculus" + }, + { + "appid": 2174690, + "normalized_name": "sanguine 3" + }, + { + "appid": 2174710, + "normalized_name": "broken in time" + }, + { + "appid": 2174720, + "normalized_name": "the will of arthur flabbington" + }, + { + "appid": 2174750, + "normalized_name": "get your tentacles off my waifu!" + }, + { + "appid": 2174780, + "normalized_name": "fire of life new day" + }, + { + "appid": 2174790, + "normalized_name": "farmistic" + }, + { + "appid": 2174830, + "normalized_name": "little trouble on tribuda island" + }, + { + "appid": 2174840, + "normalized_name": "pressure within" + }, + { + "appid": 2174850, + "normalized_name": "dicey birdball" + }, + { + "appid": 2174900, + "normalized_name": "the secret of varonis" + }, + { + "appid": 2174930, + "normalized_name": "slippery richard! ~ he's taller than my husband ~" + }, + { + "appid": 2174940, + "normalized_name": "repossession" + }, + { + "appid": 2175000, + "normalized_name": "battle of britain norway and atlantic" + }, + { + "appid": 2175040, + "normalized_name": "loser's romance" + }, + { + "appid": 2175050, + "normalized_name": "growing industry" + }, + { + "appid": 2175070, + "normalized_name": "first blood persian legends" + }, + { + "appid": 2175080, + "normalized_name": "banana quest" + }, + { + "appid": 2175090, + "normalized_name": "knights & guns" + }, + { + "appid": 2175100, + "normalized_name": "sensual adventures episode 7" + }, + { + "appid": 2175110, + "normalized_name": "d.h.m." + }, + { + "appid": 2175120, + "normalized_name": "nemesis island" + }, + { + "appid": 2175150, + "normalized_name": "argh!" + }, + { + "appid": 2175170, + "normalized_name": "metamorphic rippers" + }, + { + "appid": 2175180, + "normalized_name": "primitive" + }, + { + "appid": 2175190, + "normalized_name": "forgotten souls" + }, + { + "appid": 2175200, + "normalized_name": "i love me i love me not" + }, + { + "appid": 2175210, + "normalized_name": "winter survival prologue" + }, + { + "appid": 2175250, + "normalized_name": "volley court" + }, + { + "appid": 2175390, + "normalized_name": "going rogue" + }, + { + "appid": 2175400, + "normalized_name": "ipo tower" + }, + { + "appid": 2175450, + "normalized_name": "rhythm stones" + }, + { + "appid": 2175460, + "normalized_name": "heavenlock" + }, + { + "appid": 2175480, + "normalized_name": "motionmelody" + }, + { + "appid": 2175490, + "normalized_name": "lost between the lines" + }, + { + "appid": 2175510, + "normalized_name": "campnight" + }, + { + "appid": 2175530, + "normalized_name": "my needy neighbour girls" + }, + { + "appid": 2175540, + "normalized_name": "dragon quest monsters the dark prince" + }, + { + "appid": 2175570, + "normalized_name": "eternamine" + }, + { + "appid": 2175610, + "normalized_name": "the last solver" + }, + { + "appid": 2175630, + "normalized_name": "they are in the trees" + }, + { + "appid": 2175640, + "normalized_name": "chibi ninja shino kun treasure of demon tower" + }, + { + "appid": 2175650, + "normalized_name": "polda 3" + }, + { + "appid": 2175670, + "normalized_name": "esdraz the throne of darkness" + }, + { + "appid": 2175690, + "normalized_name": "player non player" + }, + { + "appid": 2175700, + "normalized_name": "odd woods" + }, + { + "appid": 2175740, + "normalized_name": "refuge of embers" + }, + { + "appid": 2175750, + "normalized_name": "hotdog samurai" + }, + { + "appid": 2175770, + "normalized_name": "furry love & sex" + }, + { + "appid": 2175780, + "normalized_name": "dominance" + }, + { + "appid": 2175790, + "normalized_name": "meticulous" + }, + { + "appid": 2175800, + "normalized_name": "longeyed proj" + }, + { + "appid": 2175810, + "normalized_name": "void nomads" + }, + { + "appid": 2175840, + "normalized_name": "sunkissed city" + }, + { + "appid": 2175890, + "normalized_name": "medieval builders strongholds & castles" + }, + { + "appid": 2175900, + "normalized_name": "the last scape" + }, + { + "appid": 2175940, + "normalized_name": "space rats" + }, + { + "appid": 2175980, + "normalized_name": "ria" + }, + { + "appid": 2176000, + "normalized_name": "the search for paradisus" + }, + { + "appid": 2176020, + "normalized_name": "brutal td" + }, + { + "appid": 2176030, + "normalized_name": "lillysia" + }, + { + "appid": 2176040, + "normalized_name": "the extraterrestrials museum of earth exploration" + }, + { + "appid": 2176060, + "normalized_name": "paradise cleaning! sex loving family" + }, + { + "appid": 2176070, + "normalized_name": "transliminal beyond the backrooms" + }, + { + "appid": 2176090, + "normalized_name": "cursed angel time paradox" + }, + { + "appid": 2176130, + "normalized_name": "tower! simulator 3" + }, + { + "appid": 2176140, + "normalized_name": "云城异闻录" + }, + { + "appid": 2176160, + "normalized_name": "souls of tartarus" + }, + { + "appid": 2176180, + "normalized_name": "crossword world puzzle" + }, + { + "appid": 2176190, + "normalized_name": "escape first alchemist prologue" + }, + { + "appid": 2176200, + "normalized_name": "now you are the persecuted" + }, + { + "appid": 2176230, + "normalized_name": "voxel pirates" + }, + { + "appid": 2176240, + "normalized_name": "pedra crystal caves" + }, + { + "appid": 2176260, + "normalized_name": "the happies doomsday stories" + }, + { + "appid": 2176270, + "normalized_name": "miss kawaii 2" + }, + { + "appid": 2176310, + "normalized_name": "axiom" + }, + { + "appid": 2176320, + "normalized_name": "magical drop vi" + }, + { + "appid": 2176340, + "normalized_name": "haramase!semen transport project" + }, + { + "appid": 2176400, + "normalized_name": "baby storm" + }, + { + "appid": 2176430, + "normalized_name": "testament the order of high human" + }, + { + "appid": 2176450, + "normalized_name": "mr. hopp's playhouse 3" + }, + { + "appid": 2176460, + "normalized_name": "the lies we tell ourselves" + }, + { + "appid": 2176490, + "normalized_name": "star shift freelancers" + }, + { + "appid": 2176500, + "normalized_name": "rickstones" + }, + { + "appid": 2176510, + "normalized_name": "jrago the demon hunter" + }, + { + "appid": 2176540, + "normalized_name": "daemonum" + }, + { + "appid": 2176560, + "normalized_name": "dreamland" + }, + { + "appid": 2176570, + "normalized_name": "my holiness the gobliness" + }, + { + "appid": 2176580, + "normalized_name": "flipscapes" + }, + { + "appid": 2176640, + "normalized_name": "gloomy tales horrific show collector's" + }, + { + "appid": 2176670, + "normalized_name": "blobek" + }, + { + "appid": 2176710, + "normalized_name": "m.e.a.t. ii absolute zero" + }, + { + "appid": 2176730, + "normalized_name": "escape from ithara" + }, + { + "appid": 2176760, + "normalized_name": "maid for loving you" + }, + { + "appid": 2176770, + "normalized_name": "ragnarok begins" + }, + { + "appid": 2176790, + "normalized_name": "furry arena [18+]" + }, + { + "appid": 2176850, + "normalized_name": "suffer the night" + }, + { + "appid": 2176880, + "normalized_name": "road to devadatta" + }, + { + "appid": 2176900, + "normalized_name": "tales of fablecraft" + }, + { + "appid": 2176920, + "normalized_name": "flempire" + }, + { + "appid": 2176930, + "normalized_name": "trinity trigger" + }, + { + "appid": 2176940, + "normalized_name": "walk while my grandmother plays the piano" + }, + { + "appid": 2177010, + "normalized_name": "reclaimers" + }, + { + "appid": 2177020, + "normalized_name": "kanji rpg" + }, + { + "appid": 2177030, + "normalized_name": "daddy" + }, + { + "appid": 2177040, + "normalized_name": "temple of kasthet" + }, + { + "appid": 2177050, + "normalized_name": "main event wrestling manager" + }, + { + "appid": 2177060, + "normalized_name": "the lost village" + }, + { + "appid": 2177150, + "normalized_name": "scp the sentient box" + }, + { + "appid": 2177160, + "normalized_name": "mischief dungeon life 異世界転生した俺のイタズラダンジョンライフ クラーラedition" + }, + { + "appid": 2177170, + "normalized_name": "all of us are dead" + }, + { + "appid": 2177200, + "normalized_name": "mission in space" + }, + { + "appid": 2177210, + "normalized_name": "mantra" + }, + { + "appid": 2177230, + "normalized_name": "total world liberation" + }, + { + "appid": 2177260, + "normalized_name": "super planet life" + }, + { + "appid": 2177290, + "normalized_name": "sticky honey" + }, + { + "appid": 2177320, + "normalized_name": "cozy corner" + }, + { + "appid": 2177330, + "normalized_name": "wee survivors" + }, + { + "appid": 2177350, + "normalized_name": "six 3d metaverse" + }, + { + "appid": 2177450, + "normalized_name": "futtony y el copón mundial" + }, + { + "appid": 2177490, + "normalized_name": "春宵少女(spring x elixir)" + }, + { + "appid": 2177510, + "normalized_name": "ethra" + }, + { + "appid": 2177530, + "normalized_name": "the experiment" + }, + { + "appid": 2177540, + "normalized_name": "jewel match twilight" + }, + { + "appid": 2177550, + "normalized_name": "jewel match twilight 2" + }, + { + "appid": 2177570, + "normalized_name": "stone age digital" + }, + { + "appid": 2177610, + "normalized_name": "reality noclip the backrooms" + }, + { + "appid": 2177620, + "normalized_name": "ruza" + }, + { + "appid": 2177630, + "normalized_name": "henteria chronicles the peacekeepers" + }, + { + "appid": 2177640, + "normalized_name": "rebels under the spell of magic (chapter 3)" + }, + { + "appid": 2177660, + "normalized_name": "netdreams sudoku" + }, + { + "appid": 2177680, + "normalized_name": "missing pictures tsai ming liang" + }, + { + "appid": 2177690, + "normalized_name": "plairdes" + }, + { + "appid": 2177700, + "normalized_name": "missing pictures abel ferrara" + }, + { + "appid": 2177710, + "normalized_name": "missing pictures catherine hardwicke" + }, + { + "appid": 2177720, + "normalized_name": "missing pictures lee myung se" + }, + { + "appid": 2177730, + "normalized_name": "missing pictures naomi kawase" + }, + { + "appid": 2177800, + "normalized_name": "forgive my sins & desires father boys love (bl) visual novel" + }, + { + "appid": 2177810, + "normalized_name": "once in a blue moon" + }, + { + "appid": 2177820, + "normalized_name": "pantazil" + }, + { + "appid": 2177880, + "normalized_name": "cats kill zombies" + }, + { + "appid": 2177890, + "normalized_name": "god machines" + }, + { + "appid": 2177940, + "normalized_name": "odania sports arena" + }, + { + "appid": 2177990, + "normalized_name": "halloween stories mark on the bone collector's" + }, + { + "appid": 2178010, + "normalized_name": "runeverse" + }, + { + "appid": 2178030, + "normalized_name": "tesla's puzzles of lights" + }, + { + "appid": 2178060, + "normalized_name": "traitors in the hood" + }, + { + "appid": 2178070, + "normalized_name": "towers of aghasba" + }, + { + "appid": 2178090, + "normalized_name": "the kinky kitsune and the tantalizing tanuki" + }, + { + "appid": 2178100, + "normalized_name": "two beasts or not to beast!" + }, + { + "appid": 2178120, + "normalized_name": "return to paradise" + }, + { + "appid": 2178130, + "normalized_name": "bomber command" + }, + { + "appid": 2178160, + "normalized_name": "solar pall" + }, + { + "appid": 2178170, + "normalized_name": "scurvy dogs" + }, + { + "appid": 2178180, + "normalized_name": "io inner self the lava planet vr" + }, + { + "appid": 2178190, + "normalized_name": "underwater diving" + }, + { + "appid": 2178230, + "normalized_name": "the barnacle squad" + }, + { + "appid": 2178280, + "normalized_name": "pengreens" + }, + { + "appid": 2178290, + "normalized_name": "bitmagic" + }, + { + "appid": 2178300, + "normalized_name": "junk!" + }, + { + "appid": 2178310, + "normalized_name": "盗墓密探" + }, + { + "appid": 2178330, + "normalized_name": "glory & miserable survivors dx" + }, + { + "appid": 2178340, + "normalized_name": "reality" + }, + { + "appid": 2178360, + "normalized_name": "cramagear" + }, + { + "appid": 2178390, + "normalized_name": "myth survivor" + }, + { + "appid": 2178410, + "normalized_name": "last tour 終末旅行" + }, + { + "appid": 2178420, + "normalized_name": "트리 오브 세이비어" + }, + { + "appid": 2178430, + "normalized_name": "striker of sky" + }, + { + "appid": 2178440, + "normalized_name": "bazooka cat first episode" + }, + { + "appid": 2178470, + "normalized_name": "christmas fever!" + }, + { + "appid": 2178480, + "normalized_name": "不思議のダンジョン風来のシレン6とぐろ島探検録" + }, + { + "appid": 2178490, + "normalized_name": "seducing the devil" + }, + { + "appid": 2178550, + "normalized_name": "black cycle" + }, + { + "appid": 2178560, + "normalized_name": "horde hunters" + }, + { + "appid": 2178570, + "normalized_name": "arthas the game" + }, + { + "appid": 2178590, + "normalized_name": "coin pusher casino" + }, + { + "appid": 2178620, + "normalized_name": "final boss" + }, + { + "appid": 2178640, + "normalized_name": "lament of kyoto" + }, + { + "appid": 2178650, + "normalized_name": "fastraq" + }, + { + "appid": 2178670, + "normalized_name": "disminal" + }, + { + "appid": 2178740, + "normalized_name": "don't bow" + }, + { + "appid": 2178760, + "normalized_name": "rose's retirement run" + }, + { + "appid": 2178780, + "normalized_name": "uproot" + }, + { + "appid": 2178790, + "normalized_name": "trade and magic" + }, + { + "appid": 2178800, + "normalized_name": "teresa moontyners in the lair of the beast" + }, + { + "appid": 2178820, + "normalized_name": "space adventure" + }, + { + "appid": 2178840, + "normalized_name": "the umbridge estate" + }, + { + "appid": 2178860, + "normalized_name": "building our futature" + }, + { + "appid": 2178920, + "normalized_name": "行星记忆" + }, + { + "appid": 2178930, + "normalized_name": "sexbot" + }, + { + "appid": 2178960, + "normalized_name": "beat the odds" + }, + { + "appid": 2178970, + "normalized_name": "shanubis" + }, + { + "appid": 2178980, + "normalized_name": "ralo" + }, + { + "appid": 2178990, + "normalized_name": "sodaman" + }, + { + "appid": 2179000, + "normalized_name": "limentional" + }, + { + "appid": 2179020, + "normalized_name": "veiling mask" + }, + { + "appid": 2179030, + "normalized_name": "bot.vinnik chess prodigies" + }, + { + "appid": 2179040, + "normalized_name": "great powers at war" + }, + { + "appid": 2179060, + "normalized_name": "你微笑的一百种样子" + }, + { + "appid": 2179100, + "normalized_name": "talesworth adventure the lost artifacts" + }, + { + "appid": 2179130, + "normalized_name": "patty pepperton in the pumpkin patch" + }, + { + "appid": 2179170, + "normalized_name": "a tower full of cats" + }, + { + "appid": 2179180, + "normalized_name": "hex party" + }, + { + "appid": 2179190, + "normalized_name": "legend of nazera war" + }, + { + "appid": 2179210, + "normalized_name": "my hidden pets find my duck" + }, + { + "appid": 2179220, + "normalized_name": "around us" + }, + { + "appid": 2179260, + "normalized_name": "simple snooker" + }, + { + "appid": 2179270, + "normalized_name": "mudoba" + }, + { + "appid": 2179290, + "normalized_name": "herranwalt lawyers legacy" + }, + { + "appid": 2179300, + "normalized_name": "劍俠.風塵戀曲" + }, + { + "appid": 2179350, + "normalized_name": "detective agency gray tie collector's" + }, + { + "appid": 2179360, + "normalized_name": "incur survival" + }, + { + "appid": 2179370, + "normalized_name": "溯光行 retrace the light" + }, + { + "appid": 2179380, + "normalized_name": "sand box" + }, + { + "appid": 2179390, + "normalized_name": "dyer expedition" + }, + { + "appid": 2179440, + "normalized_name": "new heights realistic climbing and bouldering" + }, + { + "appid": 2179450, + "normalized_name": "massi" + }, + { + "appid": 2179460, + "normalized_name": "the legend of gwen" + }, + { + "appid": 2179470, + "normalized_name": "rocket inc" + }, + { + "appid": 2179480, + "normalized_name": "ardem" + }, + { + "appid": 2179490, + "normalized_name": "ravenous horde" + }, + { + "appid": 2179520, + "normalized_name": "クラブ・スーサイド" + }, + { + "appid": 2179530, + "normalized_name": "sunfall children of adiona" + }, + { + "appid": 2179560, + "normalized_name": "a meeting of dreams" + }, + { + "appid": 2179610, + "normalized_name": "conflux" + }, + { + "appid": 2179630, + "normalized_name": "onlyfap simulator 3 💦" + }, + { + "appid": 2179650, + "normalized_name": "space dudes vs alien dudes" + }, + { + "appid": 2179660, + "normalized_name": "hot milf 9" + }, + { + "appid": 2179690, + "normalized_name": "desktop pet" + }, + { + "appid": 2179720, + "normalized_name": "the seekers survival" + }, + { + "appid": 2179760, + "normalized_name": "我长大想去捡破烂 i want to pick up junk" + }, + { + "appid": 2179770, + "normalized_name": "unboxing" + }, + { + "appid": 2179790, + "normalized_name": "carpe diem project" + }, + { + "appid": 2179850, + "normalized_name": "cobalt core" + }, + { + "appid": 2179860, + "normalized_name": "prison city" + }, + { + "appid": 2179900, + "normalized_name": "the bunnyman" + }, + { + "appid": 2179940, + "normalized_name": "brink of death" + }, + { + "appid": 2180000, + "normalized_name": "elemental survivors" + }, + { + "appid": 2180010, + "normalized_name": "wheel of innocence" + }, + { + "appid": 2180040, + "normalized_name": "legacy's allure" + }, + { + "appid": 2180050, + "normalized_name": "wheels of war" + }, + { + "appid": 2180060, + "normalized_name": "trouble in tornado town" + }, + { + "appid": 2180070, + "normalized_name": "dead on arrival" + }, + { + "appid": 2180150, + "normalized_name": "itrp _ aero star" + }, + { + "appid": 2180180, + "normalized_name": "tickdown" + }, + { + "appid": 2180200, + "normalized_name": "golf with guns" + }, + { + "appid": 2180210, + "normalized_name": "冒险日记 adventure diary" + }, + { + "appid": 2180250, + "normalized_name": "survive the fog" + }, + { + "appid": 2180310, + "normalized_name": "basement of hellish" + }, + { + "appid": 2180330, + "normalized_name": "少女的求生之路2:血色洋馆" + }, + { + "appid": 2180340, + "normalized_name": "海山:昆仑镜" + }, + { + "appid": 2180350, + "normalized_name": "幻斋阴阳录 genzai serialization" + }, + { + "appid": 2180390, + "normalized_name": "boing" + }, + { + "appid": 2180410, + "normalized_name": "dark spell" + }, + { + "appid": 2180430, + "normalized_name": "meiqi 2023" + }, + { + "appid": 2180500, + "normalized_name": "age of the sirens" + }, + { + "appid": 2180550, + "normalized_name": "dragon princess is hungry" + }, + { + "appid": 2180570, + "normalized_name": "detective solitaire the ghost agency 2" + }, + { + "appid": 2180580, + "normalized_name": "mystery solitaire. dreamcatcher 3" + }, + { + "appid": 2180600, + "normalized_name": "heartwood online" + }, + { + "appid": 2180610, + "normalized_name": "cabbagers" + }, + { + "appid": 2180630, + "normalized_name": "seductive solitude" + }, + { + "appid": 2180660, + "normalized_name": "heimwald" + }, + { + "appid": 2180680, + "normalized_name": "sexual summer" + }, + { + "appid": 2180690, + "normalized_name": "chess champions" + }, + { + "appid": 2180700, + "normalized_name": "abi dos" + }, + { + "appid": 2180710, + "normalized_name": "hentai neko" + }, + { + "appid": 2180730, + "normalized_name": "head north the inevitable" + }, + { + "appid": 2180740, + "normalized_name": "sex toys" + }, + { + "appid": 2180750, + "normalized_name": "five nights at furry's" + }, + { + "appid": 2180800, + "normalized_name": "midnight margo" + }, + { + "appid": 2180810, + "normalized_name": "dictator chan island" + }, + { + "appid": 2180830, + "normalized_name": "super crazy chickens" + }, + { + "appid": 2180840, + "normalized_name": "sitri ~shadow walk~" + }, + { + "appid": 2180850, + "normalized_name": "fatherhood" + }, + { + "appid": 2180890, + "normalized_name": "bunny game" + }, + { + "appid": 2180920, + "normalized_name": "a lone piece" + }, + { + "appid": 2180930, + "normalized_name": "margo on the brink" + }, + { + "appid": 2180950, + "normalized_name": "porta tower" + }, + { + "appid": 2180970, + "normalized_name": "hello vic" + }, + { + "appid": 2180980, + "normalized_name": "war of gold 2 mission 99" + }, + { + "appid": 2181000, + "normalized_name": "primordial pain" + }, + { + "appid": 2181060, + "normalized_name": "obscene mansion" + }, + { + "appid": 2181100, + "normalized_name": "nevermind this" + }, + { + "appid": 2181130, + "normalized_name": "uh oh!" + }, + { + "appid": 2181140, + "normalized_name": "hope's end" + }, + { + "appid": 2181180, + "normalized_name": "crib" + }, + { + "appid": 2181220, + "normalized_name": "unplug the game" + }, + { + "appid": 2181230, + "normalized_name": "camping" + }, + { + "appid": 2181250, + "normalized_name": "scp facility" + }, + { + "appid": 2181320, + "normalized_name": "希尔维亚物语" + }, + { + "appid": 2181340, + "normalized_name": "bright sudoku" + }, + { + "appid": 2181350, + "normalized_name": "save the earth" + }, + { + "appid": 2181380, + "normalized_name": "ruinwaker" + }, + { + "appid": 2181440, + "normalized_name": "delivery man" + }, + { + "appid": 2181450, + "normalized_name": "幻境恋人 fairy tale plan" + }, + { + "appid": 2181480, + "normalized_name": "i fought the lawn" + }, + { + "appid": 2181550, + "normalized_name": "flife" + }, + { + "appid": 2181600, + "normalized_name": "re encryption" + }, + { + "appid": 2181610, + "normalized_name": "heretic's fork" + }, + { + "appid": 2181620, + "normalized_name": "monster knockout" + }, + { + "appid": 2181640, + "normalized_name": "人类动物园 human zoo" + }, + { + "appid": 2181700, + "normalized_name": "slime warrior sokoban" + }, + { + "appid": 2181710, + "normalized_name": "me with me" + }, + { + "appid": 2181720, + "normalized_name": "scarlet tower" + }, + { + "appid": 2181730, + "normalized_name": "illumina girls" + }, + { + "appid": 2181750, + "normalized_name": "black emperor" + }, + { + "appid": 2181770, + "normalized_name": "the outer space bugs" + }, + { + "appid": 2181790, + "normalized_name": "robox" + }, + { + "appid": 2181800, + "normalized_name": "just dodge lol" + }, + { + "appid": 2181820, + "normalized_name": "touch the balls vr" + }, + { + "appid": 2181830, + "normalized_name": "follow the crown" + }, + { + "appid": 2181840, + "normalized_name": "形者" + }, + { + "appid": 2181880, + "normalized_name": "keeper of the keys" + }, + { + "appid": 2181890, + "normalized_name": "breath of space" + }, + { + "appid": 2181930, + "normalized_name": "dr livesey rom and death" + }, + { + "appid": 2181940, + "normalized_name": "cividle" + }, + { + "appid": 2181950, + "normalized_name": "zero division" + }, + { + "appid": 2181960, + "normalized_name": "karma guardians" + }, + { + "appid": 2181980, + "normalized_name": "ranger danger" + }, + { + "appid": 2182000, + "normalized_name": "null district" + }, + { + "appid": 2182020, + "normalized_name": "assassins guild" + }, + { + "appid": 2182070, + "normalized_name": "band space" + }, + { + "appid": 2182110, + "normalized_name": "citizens far lands prologue" + }, + { + "appid": 2182130, + "normalized_name": "wrapped with a kiss" + }, + { + "appid": 2182160, + "normalized_name": "lingertoalive" + }, + { + "appid": 2182170, + "normalized_name": "dan's odyssey" + }, + { + "appid": 2182190, + "normalized_name": "popcorn rocket" + }, + { + "appid": 2182200, + "normalized_name": "unrush" + }, + { + "appid": 2182240, + "normalized_name": "dots in line" + }, + { + "appid": 2182290, + "normalized_name": "just walk" + }, + { + "appid": 2182310, + "normalized_name": "rolling realms" + }, + { + "appid": 2182320, + "normalized_name": "underwater cities" + }, + { + "appid": 2182390, + "normalized_name": "pandamonium" + }, + { + "appid": 2182400, + "normalized_name": "laughing to die" + }, + { + "appid": 2182420, + "normalized_name": "idle shapes" + }, + { + "appid": 2182440, + "normalized_name": "twin soul" + }, + { + "appid": 2182450, + "normalized_name": "fairy girl" + }, + { + "appid": 2182470, + "normalized_name": "wandering cat" + }, + { + "appid": 2182480, + "normalized_name": "enmity warfare" + }, + { + "appid": 2182490, + "normalized_name": "overwritten defeat the net" + }, + { + "appid": 2182530, + "normalized_name": "piranha" + }, + { + "appid": 2182540, + "normalized_name": "meka sigurat" + }, + { + "appid": 2182570, + "normalized_name": "boat builder andy's story" + }, + { + "appid": 2182580, + "normalized_name": "christmas wonderland 6" + }, + { + "appid": 2182590, + "normalized_name": "the fernweh saga book one" + }, + { + "appid": 2182610, + "normalized_name": "thorny times" + }, + { + "appid": 2182630, + "normalized_name": "mob factory" + }, + { + "appid": 2182690, + "normalized_name": "gore screaming show" + }, + { + "appid": 2182710, + "normalized_name": "cube dodge" + }, + { + "appid": 2182770, + "normalized_name": "escape from zombies" + }, + { + "appid": 2182790, + "normalized_name": "riff xr" + }, + { + "appid": 2182800, + "normalized_name": "beefriend" + }, + { + "appid": 2182820, + "normalized_name": "cyber bodies" + }, + { + "appid": 2182840, + "normalized_name": "lie of caelum" + }, + { + "appid": 2182850, + "normalized_name": "hidden dungeon top down 3d" + }, + { + "appid": 2182870, + "normalized_name": "tyken" + }, + { + "appid": 2182910, + "normalized_name": "video game trivia" + }, + { + "appid": 2182920, + "normalized_name": "retro racers" + }, + { + "appid": 2182930, + "normalized_name": "the music trivia challenge" + }, + { + "appid": 2182940, + "normalized_name": "ufo no!" + }, + { + "appid": 2182950, + "normalized_name": "vectoroids" + }, + { + "appid": 2182960, + "normalized_name": "martian invaders" + }, + { + "appid": 2182970, + "normalized_name": "the sports trivia challenge" + }, + { + "appid": 2182990, + "normalized_name": "autumn with the shiba inu" + }, + { + "appid": 2183030, + "normalized_name": "山谷主" + }, + { + "appid": 2183040, + "normalized_name": "trigonometric mash" + }, + { + "appid": 2183070, + "normalized_name": "tokyo necro" + }, + { + "appid": 2183080, + "normalized_name": "princess dating sim" + }, + { + "appid": 2183090, + "normalized_name": "corruption ranch" + }, + { + "appid": 2183100, + "normalized_name": "diffraction" + }, + { + "appid": 2183110, + "normalized_name": "paper needs inspiration!" + }, + { + "appid": 2183120, + "normalized_name": "dead trip hope" + }, + { + "appid": 2183170, + "normalized_name": "the slothgate experiment" + }, + { + "appid": 2183190, + "normalized_name": "osawari hockey えんこちゃん" + }, + { + "appid": 2183200, + "normalized_name": "chaqs" + }, + { + "appid": 2183210, + "normalized_name": "妖精カードローグ ~ fairy card rogue" + }, + { + "appid": 2183220, + "normalized_name": "undertunnel" + }, + { + "appid": 2183230, + "normalized_name": "talent club ~ match 3 puzzle" + }, + { + "appid": 2183240, + "normalized_name": "sukur" + }, + { + "appid": 2183320, + "normalized_name": "for your tranquility" + }, + { + "appid": 2183340, + "normalized_name": "keystone library" + }, + { + "appid": 2183360, + "normalized_name": "root" + }, + { + "appid": 2183370, + "normalized_name": "survival shot" + }, + { + "appid": 2183380, + "normalized_name": "dobbyxescape halloween adventure" + }, + { + "appid": 2183390, + "normalized_name": "onmyoji:the card game" + }, + { + "appid": 2183430, + "normalized_name": "my lovey dovey demon" + }, + { + "appid": 2183450, + "normalized_name": "supercrab extravaganza" + }, + { + "appid": 2183530, + "normalized_name": "zabawa karaoke" + }, + { + "appid": 2183550, + "normalized_name": "the keeper's book" + }, + { + "appid": 2183580, + "normalized_name": "outstand" + }, + { + "appid": 2183590, + "normalized_name": "都市夜战少女" + }, + { + "appid": 2183600, + "normalized_name": "kingdom under fire a war of heroes (gold edition)" + }, + { + "appid": 2183610, + "normalized_name": "stormbane" + }, + { + "appid": 2183630, + "normalized_name": "bar simulator" + }, + { + "appid": 2183650, + "normalized_name": "mega man x dive offline" + }, + { + "appid": 2183660, + "normalized_name": "osminog adventures the lost island" + }, + { + "appid": 2183670, + "normalized_name": "hotel galactic" + }, + { + "appid": 2183690, + "normalized_name": "sushi bar express" + }, + { + "appid": 2183700, + "normalized_name": "tasty slot machine" + }, + { + "appid": 2183710, + "normalized_name": "celebrity slot machine" + }, + { + "appid": 2183720, + "normalized_name": "lucky slots" + }, + { + "appid": 2183730, + "normalized_name": "the gravehouse" + }, + { + "appid": 2183740, + "normalized_name": "orestorm factory" + }, + { + "appid": 2183760, + "normalized_name": "pigship and the giant wolf" + }, + { + "appid": 2183770, + "normalized_name": "kick master" + }, + { + "appid": 2183780, + "normalized_name": "arcade vs player" + }, + { + "appid": 2183790, + "normalized_name": "bad draw" + }, + { + "appid": 2183800, + "normalized_name": "actua golf" + }, + { + "appid": 2183820, + "normalized_name": "ノロワレサイクル" + }, + { + "appid": 2183830, + "normalized_name": "su!" + }, + { + "appid": 2183860, + "normalized_name": "the witch's house" + }, + { + "appid": 2183870, + "normalized_name": "dimensionless" + }, + { + "appid": 2183890, + "normalized_name": "leak" + }, + { + "appid": 2183900, + "normalized_name": "warhammer 40 000 space marine 2" + }, + { + "appid": 2183910, + "normalized_name": "trap yuri garden" + }, + { + "appid": 2183920, + "normalized_name": "cat herders couch coop cat corralling!" + }, + { + "appid": 2183940, + "normalized_name": "perfect inventory organization puzzle" + }, + { + "appid": 2183950, + "normalized_name": "singularity 奇异岛" + }, + { + "appid": 2183960, + "normalized_name": "christmas wonderland 7" + }, + { + "appid": 2184010, + "normalized_name": "星躍物語star leaping story" + }, + { + "appid": 2184020, + "normalized_name": "lifted" + }, + { + "appid": 2184030, + "normalized_name": "noslrac" + }, + { + "appid": 2184040, + "normalized_name": "hljod" + }, + { + "appid": 2184080, + "normalized_name": "echo weaver" + }, + { + "appid": 2184090, + "normalized_name": "haru the armada of the astral void" + }, + { + "appid": 2184100, + "normalized_name": "bubbles swimsuit" + }, + { + "appid": 2184110, + "normalized_name": "survival in the backrooms" + }, + { + "appid": 2184130, + "normalized_name": "marequest" + }, + { + "appid": 2184140, + "normalized_name": "[redactor]" + }, + { + "appid": 2184150, + "normalized_name": "dead matter" + }, + { + "appid": 2184180, + "normalized_name": "tales of therapy" + }, + { + "appid": 2184200, + "normalized_name": "swarmed nuts & bolts non vr" + }, + { + "appid": 2184210, + "normalized_name": "conflict rpg" + }, + { + "appid": 2184220, + "normalized_name": "the wolf of derevnya" + }, + { + "appid": 2184230, + "normalized_name": "red tape" + }, + { + "appid": 2184250, + "normalized_name": "fishbowl kid" + }, + { + "appid": 2184260, + "normalized_name": "ricochet blur" + }, + { + "appid": 2184270, + "normalized_name": "traveler" + }, + { + "appid": 2184280, + "normalized_name": "vexlands" + }, + { + "appid": 2184290, + "normalized_name": "rising heat" + }, + { + "appid": 2184350, + "normalized_name": "guild saga vanished worlds" + }, + { + "appid": 2184370, + "normalized_name": "toon tale" + }, + { + "appid": 2184380, + "normalized_name": "halod's adventure times" + }, + { + "appid": 2184390, + "normalized_name": "mischief dungeon life 異世界転生した俺のイタズラダンジョンライフ ドロシーedition" + }, + { + "appid": 2184400, + "normalized_name": "mischief dungeon life 異世界転生した俺のイタズラダンジョンライフ アーシャedition" + }, + { + "appid": 2184410, + "normalized_name": "mischief dungeon life 異世界転生した俺のイタズラダンジョンライフ サツキedition" + }, + { + "appid": 2184420, + "normalized_name": "mischief dungeon life 異世界転生した俺のイタズラダンジョンライフ ジャニスedition" + }, + { + "appid": 2184430, + "normalized_name": "sonho trap star" + }, + { + "appid": 2184440, + "normalized_name": "asu global" + }, + { + "appid": 2184470, + "normalized_name": "south pole bebop" + }, + { + "appid": 2184480, + "normalized_name": "off shore" + }, + { + "appid": 2184490, + "normalized_name": "alphadia neo" + }, + { + "appid": 2184560, + "normalized_name": "deadhex" + }, + { + "appid": 2184570, + "normalized_name": "メモリーズオフ #5 とぎれたフィルム" + }, + { + "appid": 2184580, + "normalized_name": "メモリーズオフ6~t wave~" + }, + { + "appid": 2184590, + "normalized_name": "メモリーズオフ ゆびきりの記憶" + }, + { + "appid": 2184600, + "normalized_name": "声灵(the whisper soul)" + }, + { + "appid": 2184610, + "normalized_name": "hentai bodysuit" + }, + { + "appid": 2184620, + "normalized_name": "never 7 the end of infinity" + }, + { + "appid": 2184630, + "normalized_name": "hijiri in the succubus castle" + }, + { + "appid": 2184640, + "normalized_name": "drive west coast" + }, + { + "appid": 2184650, + "normalized_name": "absentedage2 アブセンテッドエイジ2 ~亡霊少女のローグライクアクションsrpg 依代の章" + }, + { + "appid": 2184660, + "normalized_name": "conduit to nexus" + }, + { + "appid": 2184720, + "normalized_name": "survivors three kingdoms" + }, + { + "appid": 2184740, + "normalized_name": "monster cube" + }, + { + "appid": 2184770, + "normalized_name": "broken lens" + }, + { + "appid": 2184820, + "normalized_name": "lament of kyoto prologue" + }, + { + "appid": 2184850, + "normalized_name": "darwake awakening from the nightmare" + }, + { + "appid": 2184870, + "normalized_name": "neon noir" + }, + { + "appid": 2184880, + "normalized_name": "the widow's boutique" + }, + { + "appid": 2184920, + "normalized_name": "vivat rex" + }, + { + "appid": 2184940, + "normalized_name": "salvando la isla perdida" + }, + { + "appid": 2184970, + "normalized_name": "lost amulets four guardians" + }, + { + "appid": 2185030, + "normalized_name": "dealer's life legend" + }, + { + "appid": 2185050, + "normalized_name": "keks slot machines" + }, + { + "appid": 2185060, + "normalized_name": "two point museum" + }, + { + "appid": 2185080, + "normalized_name": "sex simulator love room" + }, + { + "appid": 2185100, + "normalized_name": "children of the forest" + }, + { + "appid": 2185110, + "normalized_name": "metal survivor" + }, + { + "appid": 2185160, + "normalized_name": "survivorman vr the descent" + }, + { + "appid": 2185170, + "normalized_name": "how to catch a firefly" + }, + { + "appid": 2185180, + "normalized_name": "fantasy madness bloodbath" + }, + { + "appid": 2185190, + "normalized_name": "pumpkin ripper" + }, + { + "appid": 2185240, + "normalized_name": "starlite defender of justice hd" + }, + { + "appid": 2185250, + "normalized_name": "iron corbo kung fu janitor" + }, + { + "appid": 2185280, + "normalized_name": "alien on the radar" + }, + { + "appid": 2185290, + "normalized_name": "vtuber connect" + }, + { + "appid": 2185320, + "normalized_name": "lost trials" + }, + { + "appid": 2185400, + "normalized_name": "of moons and mania" + }, + { + "appid": 2185440, + "normalized_name": "sacred constellars ruin raiders" + }, + { + "appid": 2185470, + "normalized_name": "chinese characters" + }, + { + "appid": 2185490, + "normalized_name": "奇克八号盲目发射 blind no.8 chick shoot" + }, + { + "appid": 2185510, + "normalized_name": "touchstarved" + }, + { + "appid": 2185530, + "normalized_name": "vr t72 battle in afghanistan" + }, + { + "appid": 2185710, + "normalized_name": "ancient arrow" + }, + { + "appid": 2185720, + "normalized_name": "flowdim 05" + }, + { + "appid": 2185730, + "normalized_name": "cosplay fever!!" + }, + { + "appid": 2185760, + "normalized_name": "under the sky world" + }, + { + "appid": 2185770, + "normalized_name": "aonatsu line" + }, + { + "appid": 2185780, + "normalized_name": "return to abyss 重返深渊" + }, + { + "appid": 2185810, + "normalized_name": "ghost village" + }, + { + "appid": 2185840, + "normalized_name": "richman 6" + }, + { + "appid": 2185850, + "normalized_name": "richman 7" + }, + { + "appid": 2185860, + "normalized_name": "sokochess white" + }, + { + "appid": 2185870, + "normalized_name": "richman 8" + }, + { + "appid": 2185880, + "normalized_name": "wurdweb" + }, + { + "appid": 2185890, + "normalized_name": "vr solo noble(peg solitaire)" + }, + { + "appid": 2185900, + "normalized_name": "vr world of pandas" + }, + { + "appid": 2185920, + "normalized_name": "the last job" + }, + { + "appid": 2185930, + "normalized_name": "football club management 2023" + }, + { + "appid": 2185970, + "normalized_name": "belial wars" + }, + { + "appid": 2185990, + "normalized_name": "when the light dies" + }, + { + "appid": 2186000, + "normalized_name": "航海紛爭" + }, + { + "appid": 2186010, + "normalized_name": "shapebreaker prologue" + }, + { + "appid": 2186030, + "normalized_name": "deviant x" + }, + { + "appid": 2186090, + "normalized_name": "checkered flag" + }, + { + "appid": 2186100, + "normalized_name": "kaiser" + }, + { + "appid": 2186130, + "normalized_name": "zarlor mercenary" + }, + { + "appid": 2186140, + "normalized_name": "early worm" + }, + { + "appid": 2186210, + "normalized_name": "traffic tour" + }, + { + "appid": 2186240, + "normalized_name": "saint kotar the crawling man" + }, + { + "appid": 2186270, + "normalized_name": "她毕业了 goodbye my youth" + }, + { + "appid": 2186300, + "normalized_name": "tragedy of medusa" + }, + { + "appid": 2186320, + "normalized_name": "ages of conflict world war simulator" + }, + { + "appid": 2186350, + "normalized_name": "抛投大乱斗!(throwing master)" + }, + { + "appid": 2186360, + "normalized_name": "idun" + }, + { + "appid": 2186370, + "normalized_name": "resourcer" + }, + { + "appid": 2186380, + "normalized_name": "teahouse of the gods" + }, + { + "appid": 2186400, + "normalized_name": "pirate fighting simulator" + }, + { + "appid": 2186420, + "normalized_name": "effy one of unreasonable \"if\"" + }, + { + "appid": 2186430, + "normalized_name": "トリプル・キャノピーの魔女" + }, + { + "appid": 2186440, + "normalized_name": "間違った社員教育 まったく君の会社ではいったいどんな社員教育を(略)" + }, + { + "appid": 2186450, + "normalized_name": "dear friend" + }, + { + "appid": 2186460, + "normalized_name": "cybercontrol" + }, + { + "appid": 2186490, + "normalized_name": "refuge" + }, + { + "appid": 2186500, + "normalized_name": "vispo the video spot the difference game." + }, + { + "appid": 2186510, + "normalized_name": "a land dubai metaverse" + }, + { + "appid": 2186530, + "normalized_name": "my desktop girlfriend" + }, + { + "appid": 2186570, + "normalized_name": "teleforum" + }, + { + "appid": 2186580, + "normalized_name": "shuffle tactics" + }, + { + "appid": 2186610, + "normalized_name": "dark city international intrigue collector's" + }, + { + "appid": 2186660, + "normalized_name": "escape left to die" + }, + { + "appid": 2186670, + "normalized_name": "system escape" + }, + { + "appid": 2186680, + "normalized_name": "warhammer 40 000 rogue trader" + }, + { + "appid": 2186690, + "normalized_name": "brxken inside" + }, + { + "appid": 2186700, + "normalized_name": "contain" + }, + { + "appid": 2186730, + "normalized_name": "跳跃音符" + }, + { + "appid": 2186740, + "normalized_name": "darkness reborn" + }, + { + "appid": 2186780, + "normalized_name": "the heart of the teddy bear" + }, + { + "appid": 2186800, + "normalized_name": "incessant" + }, + { + "appid": 2186820, + "normalized_name": "death in the bunker" + }, + { + "appid": 2186940, + "normalized_name": "dark sweeper" + }, + { + "appid": 2186950, + "normalized_name": "the rifle man" + }, + { + "appid": 2186970, + "normalized_name": "the expedition squad" + }, + { + "appid": 2186980, + "normalized_name": "deluge sermon for the dead" + }, + { + "appid": 2187030, + "normalized_name": "blue funk" + }, + { + "appid": 2187050, + "normalized_name": "blackout football manager game" + }, + { + "appid": 2187060, + "normalized_name": "princess cage" + }, + { + "appid": 2187110, + "normalized_name": "弃儿孤城" + }, + { + "appid": 2187130, + "normalized_name": "rabat protocol metal rhapsody" + }, + { + "appid": 2187160, + "normalized_name": "touhou mini map" + }, + { + "appid": 2187190, + "normalized_name": "poly shoot" + }, + { + "appid": 2187220, + "normalized_name": "apollo justice ace attorney trilogy" + }, + { + "appid": 2187230, + "normalized_name": "altf42" + }, + { + "appid": 2187290, + "normalized_name": "wall world" + }, + { + "appid": 2187300, + "normalized_name": "active soccer 2023" + }, + { + "appid": 2187320, + "normalized_name": "ninza" + }, + { + "appid": 2187340, + "normalized_name": "exocolony planet survival" + }, + { + "appid": 2187370, + "normalized_name": "blindsight war of the wardens" + }, + { + "appid": 2187390, + "normalized_name": "conqueror of the seas" + }, + { + "appid": 2187420, + "normalized_name": "nightway" + }, + { + "appid": 2187450, + "normalized_name": "asterism" + }, + { + "appid": 2187560, + "normalized_name": "electrical safety vr training" + }, + { + "appid": 2187570, + "normalized_name": "mushrooman" + }, + { + "appid": 2187610, + "normalized_name": "crystalis descendant" + }, + { + "appid": 2187640, + "normalized_name": "hero z tps" + }, + { + "appid": 2187660, + "normalized_name": "soccer clubs 足球经理人" + }, + { + "appid": 2187670, + "normalized_name": "electrocop" + }, + { + "appid": 2187690, + "normalized_name": "cargorun" + }, + { + "appid": 2187730, + "normalized_name": "ihas" + }, + { + "appid": 2187740, + "normalized_name": "peek a boo" + }, + { + "appid": 2187840, + "normalized_name": "the legend of tiger and phoenix" + }, + { + "appid": 2187850, + "normalized_name": "minesweeper arcade" + }, + { + "appid": 2187860, + "normalized_name": "don't wake up" + }, + { + "appid": 2187920, + "normalized_name": "iron marines invasion" + }, + { + "appid": 2188010, + "normalized_name": "s.t.a.r space typing action rangers" + }, + { + "appid": 2188030, + "normalized_name": "elemental adventure" + }, + { + "appid": 2188180, + "normalized_name": "maruja mallo" + }, + { + "appid": 2188220, + "normalized_name": "across stitch" + }, + { + "appid": 2188230, + "normalized_name": "phoenix nightmare" + }, + { + "appid": 2188260, + "normalized_name": "portable ops" + }, + { + "appid": 2188300, + "normalized_name": "hookescaper high speed 3d action game" + }, + { + "appid": 2188380, + "normalized_name": "halcyon" + }, + { + "appid": 2188430, + "normalized_name": "equinox" + }, + { + "appid": 2188470, + "normalized_name": "save the queen" + }, + { + "appid": 2188480, + "normalized_name": "she who rises" + }, + { + "appid": 2188490, + "normalized_name": "heavy lies the crown" + }, + { + "appid": 2188500, + "normalized_name": "from the ashes" + }, + { + "appid": 2188510, + "normalized_name": "breath of the gods" + }, + { + "appid": 2188520, + "normalized_name": "the dragon's prophecy" + }, + { + "appid": 2188530, + "normalized_name": "virtual darling vr" + }, + { + "appid": 2188570, + "normalized_name": "the rings of powder" + }, + { + "appid": 2188620, + "normalized_name": "it returned to the desert" + }, + { + "appid": 2188630, + "normalized_name": "dear diary" + }, + { + "appid": 2188640, + "normalized_name": "lustful assistant" + }, + { + "appid": 2188660, + "normalized_name": "nonogram kawaii cuties 2nd" + }, + { + "appid": 2188670, + "normalized_name": "after dark" + }, + { + "appid": 2188690, + "normalized_name": "朱鹭子的奇妙冒险" + }, + { + "appid": 2188710, + "normalized_name": "jay's mod" + }, + { + "appid": 2188740, + "normalized_name": "phantasy series reference opus" + }, + { + "appid": 2188790, + "normalized_name": "unknown pyramid" + }, + { + "appid": 2188820, + "normalized_name": "the shelter of patient" + }, + { + "appid": 2188840, + "normalized_name": "doom cube" + }, + { + "appid": 2188860, + "normalized_name": "butchanaifu" + }, + { + "appid": 2188870, + "normalized_name": "hyper drill" + }, + { + "appid": 2188880, + "normalized_name": "evergreen mountain life simulator prologue" + }, + { + "appid": 2188890, + "normalized_name": "fantasy of war" + }, + { + "appid": 2188910, + "normalized_name": "waifu museum" + }, + { + "appid": 2188920, + "normalized_name": "angelic wishes" + }, + { + "appid": 2188930, + "normalized_name": "battlecrypt bombers" + }, + { + "appid": 2188960, + "normalized_name": "vampire slayer the resurrection" + }, + { + "appid": 2189040, + "normalized_name": "mean beans" + }, + { + "appid": 2189050, + "normalized_name": "think and co op" + }, + { + "appid": 2189110, + "normalized_name": "escape from this planet" + }, + { + "appid": 2189120, + "normalized_name": "villager's hideout" + }, + { + "appid": 2189150, + "normalized_name": "conspiracy td" + }, + { + "appid": 2189160, + "normalized_name": "まなことひとみのばわい" + }, + { + "appid": 2189200, + "normalized_name": "space saviour special" + }, + { + "appid": 2189230, + "normalized_name": "hell o corn" + }, + { + "appid": 2189260, + "normalized_name": "random dungeon game" + }, + { + "appid": 2189310, + "normalized_name": "letters to arralla" + }, + { + "appid": 2189350, + "normalized_name": "augmented introspection emel" + }, + { + "appid": 2189370, + "normalized_name": "feathered run worlds" + }, + { + "appid": 2189420, + "normalized_name": "骸心 mainbody" + }, + { + "appid": 2189430, + "normalized_name": "gilded destiny" + }, + { + "appid": 2189450, + "normalized_name": "boba tea shop simulator" + }, + { + "appid": 2189470, + "normalized_name": "welcome to levy" + }, + { + "appid": 2189490, + "normalized_name": "acid puzzle" + }, + { + "appid": 2189530, + "normalized_name": "heavenly beauty × silver bubble ninetales" + }, + { + "appid": 2189580, + "normalized_name": "the last lover" + }, + { + "appid": 2189590, + "normalized_name": "brutal strike" + }, + { + "appid": 2189620, + "normalized_name": "ruins of istanbul" + }, + { + "appid": 2189630, + "normalized_name": "only sex in the brothel" + }, + { + "appid": 2189640, + "normalized_name": "cannibal abduction" + }, + { + "appid": 2189670, + "normalized_name": "the black pool" + }, + { + "appid": 2189690, + "normalized_name": "speed up" + }, + { + "appid": 2189750, + "normalized_name": "mission aliens" + }, + { + "appid": 2189760, + "normalized_name": "mech vs. bugs" + }, + { + "appid": 2189790, + "normalized_name": "margaritari" + }, + { + "appid": 2189810, + "normalized_name": "mercs" + }, + { + "appid": 2189850, + "normalized_name": "disk dashers" + }, + { + "appid": 2189860, + "normalized_name": "outer terror" + }, + { + "appid": 2189890, + "normalized_name": "amber battle royale" + }, + { + "appid": 2189910, + "normalized_name": "mystic forest" + }, + { + "appid": 2189930, + "normalized_name": "new hire" + }, + { + "appid": 2189970, + "normalized_name": "exhibitors" + }, + { + "appid": 2190030, + "normalized_name": "barrel full of monkeys" + }, + { + "appid": 2190060, + "normalized_name": "tiny tanks" + }, + { + "appid": 2190070, + "normalized_name": "spot the difference photo for tesla and pc" + }, + { + "appid": 2190080, + "normalized_name": "beam cat" + }, + { + "appid": 2190120, + "normalized_name": "sprint.fire" + }, + { + "appid": 2190130, + "normalized_name": "b.i.g" + }, + { + "appid": 2190150, + "normalized_name": "the last humble bee" + }, + { + "appid": 2190160, + "normalized_name": "未然探偵 the protea cases" + }, + { + "appid": 2190170, + "normalized_name": "nusantara" + }, + { + "appid": 2190180, + "normalized_name": "smilexcorp 3" + }, + { + "appid": 2190190, + "normalized_name": "straycatdoors2" + }, + { + "appid": 2190200, + "normalized_name": "cockville [18+]" + }, + { + "appid": 2190210, + "normalized_name": "kink.inc [18+]" + }, + { + "appid": 2190220, + "normalized_name": "touhou danmaku kagura phantasia lost" + }, + { + "appid": 2190230, + "normalized_name": "dust and aliens" + }, + { + "appid": 2190240, + "normalized_name": "gamedev lituber simulator" + }, + { + "appid": 2190250, + "normalized_name": "blocks tracks trains" + }, + { + "appid": 2190260, + "normalized_name": "card crawl adventure" + }, + { + "appid": 2190270, + "normalized_name": "pip 6" + }, + { + "appid": 2190280, + "normalized_name": "poly memory dinosaurs" + }, + { + "appid": 2190290, + "normalized_name": "to be or not to be" + }, + { + "appid": 2190300, + "normalized_name": "space between" + }, + { + "appid": 2190320, + "normalized_name": "ziggy" + }, + { + "appid": 2190370, + "normalized_name": "ved purification" + }, + { + "appid": 2190380, + "normalized_name": "astral tracks" + }, + { + "appid": 2190390, + "normalized_name": "ocean is home island life simulator" + }, + { + "appid": 2190400, + "normalized_name": "toads of the bayou" + }, + { + "appid": 2190410, + "normalized_name": "beach runner" + }, + { + "appid": 2190420, + "normalized_name": "allon3" + }, + { + "appid": 2190460, + "normalized_name": "highrollers" + }, + { + "appid": 2190470, + "normalized_name": "russian train trip 2" + }, + { + "appid": 2190500, + "normalized_name": "vr painting spacetime" + }, + { + "appid": 2190570, + "normalized_name": "corsair`s madness prologue jungle`s island" + }, + { + "appid": 2190590, + "normalized_name": "valkie 64" + }, + { + "appid": 2190640, + "normalized_name": "cosmic holidays" + }, + { + "appid": 2190650, + "normalized_name": "mion and the cursed killer hamster" + }, + { + "appid": 2190680, + "normalized_name": "goofy dee" + }, + { + "appid": 2190690, + "normalized_name": "sex adventures office affairs" + }, + { + "appid": 2190700, + "normalized_name": "altered alma" + }, + { + "appid": 2190740, + "normalized_name": "gates of zendocon" + }, + { + "appid": 2190760, + "normalized_name": "sex adventures vampire express train" + }, + { + "appid": 2190840, + "normalized_name": "dracula defense!" + }, + { + "appid": 2190870, + "normalized_name": "希望与岛 hope with island" + }, + { + "appid": 2190880, + "normalized_name": "weaponeer" + }, + { + "appid": 2190900, + "normalized_name": "huddam" + }, + { + "appid": 2190910, + "normalized_name": "maze nuts" + }, + { + "appid": 2190920, + "normalized_name": "corebreaker" + }, + { + "appid": 2190930, + "normalized_name": "void" + }, + { + "appid": 2190950, + "normalized_name": "wordkour" + }, + { + "appid": 2190960, + "normalized_name": "the orphanage" + }, + { + "appid": 2190980, + "normalized_name": "move my moc" + }, + { + "appid": 2191020, + "normalized_name": "neko dating sim" + }, + { + "appid": 2191050, + "normalized_name": "life effect" + }, + { + "appid": 2191080, + "normalized_name": "poozle mania" + }, + { + "appid": 2191090, + "normalized_name": "fair princess under futa curse" + }, + { + "appid": 2191100, + "normalized_name": "crimson song yuri visual novel" + }, + { + "appid": 2191140, + "normalized_name": "rayna survivors" + }, + { + "appid": 2191160, + "normalized_name": "bowlout" + }, + { + "appid": 2191180, + "normalized_name": "little devil" + }, + { + "appid": 2191190, + "normalized_name": "find all 4 magic" + }, + { + "appid": 2191200, + "normalized_name": "scrum down" + }, + { + "appid": 2191210, + "normalized_name": "peach hills division" + }, + { + "appid": 2191220, + "normalized_name": "magical kingdom fantasy" + }, + { + "appid": 2191230, + "normalized_name": "sunny place 2" + }, + { + "appid": 2191260, + "normalized_name": "project faith" + }, + { + "appid": 2191270, + "normalized_name": "ease out" + }, + { + "appid": 2191280, + "normalized_name": "gurei" + }, + { + "appid": 2191310, + "normalized_name": "project survivor" + }, + { + "appid": 2191320, + "normalized_name": "boat train" + }, + { + "appid": 2191370, + "normalized_name": "a path to the princess" + }, + { + "appid": 2191400, + "normalized_name": "决斗小爱" + }, + { + "appid": 2191410, + "normalized_name": "for the crown" + }, + { + "appid": 2191450, + "normalized_name": "psyke" + }, + { + "appid": 2191480, + "normalized_name": "jumbo airport story" + }, + { + "appid": 2191490, + "normalized_name": "pocket academy 3" + }, + { + "appid": 2191500, + "normalized_name": "vampires bloodlord rising" + }, + { + "appid": 2191530, + "normalized_name": "ironknight" + }, + { + "appid": 2191540, + "normalized_name": "morkull ragast's rage" + }, + { + "appid": 2191550, + "normalized_name": "pleh!" + }, + { + "appid": 2191560, + "normalized_name": "volleyball challenge" + }, + { + "appid": 2191570, + "normalized_name": "로얄 블루의 마법 의상실" + }, + { + "appid": 2191590, + "normalized_name": "project glasloc" + }, + { + "appid": 2191610, + "normalized_name": "orbital cargo division" + }, + { + "appid": 2191620, + "normalized_name": "铭日记 重书 / mikoto remake" + }, + { + "appid": 2191660, + "normalized_name": "conquering married women through sex" + }, + { + "appid": 2191670, + "normalized_name": "nyanco impact" + }, + { + "appid": 2191680, + "normalized_name": "mistwinter bay" + }, + { + "appid": 2191690, + "normalized_name": "ectoplasm" + }, + { + "appid": 2191720, + "normalized_name": "carbonflesh" + }, + { + "appid": 2191770, + "normalized_name": "gregory horror show soul of roses" + }, + { + "appid": 2191820, + "normalized_name": "无尽战线 infinity war" + }, + { + "appid": 2191880, + "normalized_name": "naturia" + }, + { + "appid": 2191890, + "normalized_name": "ghostwage" + }, + { + "appid": 2191920, + "normalized_name": "pesticide" + }, + { + "appid": 2192020, + "normalized_name": "phones not allowed" + }, + { + "appid": 2192060, + "normalized_name": "nascar arcade rush" + }, + { + "appid": 2192070, + "normalized_name": "traildown downhill mountain biking" + }, + { + "appid": 2192080, + "normalized_name": "songs of the chalice" + }, + { + "appid": 2192120, + "normalized_name": "wipe factor" + }, + { + "appid": 2192170, + "normalized_name": "whackerball" + }, + { + "appid": 2192200, + "normalized_name": "sherlock holmes consulting detective the case of the banker's final debt" + }, + { + "appid": 2192220, + "normalized_name": "doughball descent" + }, + { + "appid": 2192240, + "normalized_name": "the ninja" + }, + { + "appid": 2192260, + "normalized_name": "infinadeck stonehenge" + }, + { + "appid": 2192270, + "normalized_name": "pumpum 2" + }, + { + "appid": 2192280, + "normalized_name": "architect" + }, + { + "appid": 2192290, + "normalized_name": "さらば劇薬 encore" + }, + { + "appid": 2192330, + "normalized_name": "red sea" + }, + { + "appid": 2192350, + "normalized_name": "shotgun shenanigans" + }, + { + "appid": 2192380, + "normalized_name": "begone beast" + }, + { + "appid": 2192400, + "normalized_name": "aunewyth" + }, + { + "appid": 2192460, + "normalized_name": "clockwork owl" + }, + { + "appid": 2192480, + "normalized_name": "luna & monsters tower defense the deprived magical kingdom" + }, + { + "appid": 2192490, + "normalized_name": "micro" + }, + { + "appid": 2192500, + "normalized_name": "train operator 377" + }, + { + "appid": 2192520, + "normalized_name": "senli 307" + }, + { + "appid": 2192530, + "normalized_name": "黑匣 dark box" + }, + { + "appid": 2192570, + "normalized_name": "vosphia" + }, + { + "appid": 2192600, + "normalized_name": "last dragoon awaken" + }, + { + "appid": 2192620, + "normalized_name": "ghostpia season one" + }, + { + "appid": 2192640, + "normalized_name": "the iron union" + }, + { + "appid": 2192650, + "normalized_name": "super clown 3 revenge" + }, + { + "appid": 2192660, + "normalized_name": "space ranger first meet" + }, + { + "appid": 2192670, + "normalized_name": "g modeアーカイブス+ 女神転生外伝 新約ラストバイブル" + }, + { + "appid": 2192680, + "normalized_name": "g modeアーカイブス+ 女神転生外伝 新約ラストバイブルii 始まりの福音" + }, + { + "appid": 2192730, + "normalized_name": "planet breakout 2" + }, + { + "appid": 2192750, + "normalized_name": "age of pyramids" + }, + { + "appid": 2192780, + "normalized_name": "grimdark survivors" + }, + { + "appid": 2192790, + "normalized_name": "the walking dead destinies" + }, + { + "appid": 2192800, + "normalized_name": "from_." + }, + { + "appid": 2192840, + "normalized_name": "terfenstein 3d" + }, + { + "appid": 2192890, + "normalized_name": "relaxing lawnmower simulator" + }, + { + "appid": 2192900, + "normalized_name": "knock'em out" + }, + { + "appid": 2192920, + "normalized_name": "an everyday story" + }, + { + "appid": 2192970, + "normalized_name": "all on board!" + }, + { + "appid": 2192990, + "normalized_name": "bloody downsizing" + }, + { + "appid": 2193010, + "normalized_name": "blue lightning" + }, + { + "appid": 2193040, + "normalized_name": "pool ball battle royale" + }, + { + "appid": 2193050, + "normalized_name": "bleak sword dx" + }, + { + "appid": 2193070, + "normalized_name": "returning to mia" + }, + { + "appid": 2193080, + "normalized_name": "amabilly" + }, + { + "appid": 2193090, + "normalized_name": "witch rise" + }, + { + "appid": 2193100, + "normalized_name": "videopac collection 1" + }, + { + "appid": 2193120, + "normalized_name": "zombie breakdown" + }, + { + "appid": 2193130, + "normalized_name": "chain detonation" + }, + { + "appid": 2193150, + "normalized_name": "kibu" + }, + { + "appid": 2193170, + "normalized_name": "funplace after hours" + }, + { + "appid": 2193190, + "normalized_name": "sulky manager" + }, + { + "appid": 2193270, + "normalized_name": "krusenstern a stellar sail" + }, + { + "appid": 2193370, + "normalized_name": "creative continents" + }, + { + "appid": 2193380, + "normalized_name": "image" + }, + { + "appid": 2193400, + "normalized_name": "monsuta" + }, + { + "appid": 2193410, + "normalized_name": "undercover blood bonds" + }, + { + "appid": 2193420, + "normalized_name": "undead world" + }, + { + "appid": 2193490, + "normalized_name": "first cut samurai duel" + }, + { + "appid": 2193500, + "normalized_name": "book travelers a victorian story collector's" + }, + { + "appid": 2193510, + "normalized_name": "way of animals" + }, + { + "appid": 2193530, + "normalized_name": "world of titans mmorpg" + }, + { + "appid": 2193540, + "normalized_name": "wizard of legend 2" + }, + { + "appid": 2193570, + "normalized_name": "elixir" + }, + { + "appid": 2193580, + "normalized_name": "cocktail rush" + }, + { + "appid": 2193590, + "normalized_name": "madzik episode 1" + }, + { + "appid": 2193600, + "normalized_name": "paranormal tales" + }, + { + "appid": 2193630, + "normalized_name": "the final bastion" + }, + { + "appid": 2193650, + "normalized_name": "sex hell 👹" + }, + { + "appid": 2193670, + "normalized_name": "cymut x mutrobo rpg" + }, + { + "appid": 2193690, + "normalized_name": "speedrunner" + }, + { + "appid": 2193720, + "normalized_name": "super dark deception" + }, + { + "appid": 2193730, + "normalized_name": "afflicted" + }, + { + "appid": 2193750, + "normalized_name": "desktop table tennis" + }, + { + "appid": 2193760, + "normalized_name": "desktop bowling" + }, + { + "appid": 2193770, + "normalized_name": "our summer sports" + }, + { + "appid": 2193870, + "normalized_name": "多比大冒险(doobi's adventure)" + }, + { + "appid": 2193900, + "normalized_name": "阴阳林" + }, + { + "appid": 2193920, + "normalized_name": "homerun miko" + }, + { + "appid": 2193930, + "normalized_name": "blockcorsair" + }, + { + "appid": 2193940, + "normalized_name": "the hidden and unknown" + }, + { + "appid": 2193990, + "normalized_name": "monster hunters frost giant" + }, + { + "appid": 2194000, + "normalized_name": "fates determination" + }, + { + "appid": 2194050, + "normalized_name": "summoner'ssurvival" + }, + { + "appid": 2194070, + "normalized_name": "bloons bomb gem 3 match" + }, + { + "appid": 2194090, + "normalized_name": "subspace hunter legacy" + }, + { + "appid": 2194100, + "normalized_name": "告白循环~ summer loops" + }, + { + "appid": 2194160, + "normalized_name": "hentai catmaid" + }, + { + "appid": 2194190, + "normalized_name": "ocelot sunrise" + }, + { + "appid": 2194200, + "normalized_name": "fear of the dark vr" + }, + { + "appid": 2194240, + "normalized_name": "little mall tycoon" + }, + { + "appid": 2194290, + "normalized_name": "剑仙的副本" + }, + { + "appid": 2194300, + "normalized_name": "g modeアーカイブス+ 女神転生外伝 新約ラストバイブルiii 夢幻の英雄" + }, + { + "appid": 2194340, + "normalized_name": "大家来找茬反转之找相同 spot the same" + }, + { + "appid": 2194400, + "normalized_name": "world of mystery" + }, + { + "appid": 2194410, + "normalized_name": "idle hamburgers save the world" + }, + { + "appid": 2194480, + "normalized_name": "explosive track crazy action arcade racing" + }, + { + "appid": 2194510, + "normalized_name": "retired hero gets slaves" + }, + { + "appid": 2194530, + "normalized_name": "yog sothoth’s yard" + }, + { + "appid": 2194540, + "normalized_name": "d&m dungeon and monsters the beginning" + }, + { + "appid": 2194560, + "normalized_name": "bat hero" + }, + { + "appid": 2194570, + "normalized_name": "blood red" + }, + { + "appid": 2194590, + "normalized_name": "roads of rome portals 2 collector’s" + }, + { + "appid": 2194600, + "normalized_name": "jane’s hotel new story collector’s" + }, + { + "appid": 2194610, + "normalized_name": "hero roy's wedding" + }, + { + "appid": 2194640, + "normalized_name": "project electric sheep" + }, + { + "appid": 2194660, + "normalized_name": "criminal expert" + }, + { + "appid": 2194670, + "normalized_name": "naval battle online" + }, + { + "appid": 2194690, + "normalized_name": "烈战世界" + }, + { + "appid": 2194700, + "normalized_name": "sex gym 3d" + }, + { + "appid": 2194710, + "normalized_name": "wanted driver" + }, + { + "appid": 2194730, + "normalized_name": "serviceit you can do it" + }, + { + "appid": 2194760, + "normalized_name": "don't remember" + }, + { + "appid": 2194780, + "normalized_name": "beachhead rogue" + }, + { + "appid": 2194790, + "normalized_name": "studio system guardian angel" + }, + { + "appid": 2194800, + "normalized_name": "onlyfap fitness baby 🔞💦" + }, + { + "appid": 2194810, + "normalized_name": "sex with hitler 2" + }, + { + "appid": 2194820, + "normalized_name": "koboo the tree spirit prologue" + }, + { + "appid": 2194840, + "normalized_name": "smells like burnt rubber" + }, + { + "appid": 2194880, + "normalized_name": "ferromon together" + }, + { + "appid": 2194910, + "normalized_name": "rocpain rock paper scissors" + }, + { + "appid": 2194930, + "normalized_name": "evil awaits" + }, + { + "appid": 2194940, + "normalized_name": "takenoko tilt five ar" + }, + { + "appid": 2194950, + "normalized_name": "cluppets" + }, + { + "appid": 2194980, + "normalized_name": "traveler's bastion" + }, + { + "appid": 2195010, + "normalized_name": "chase survivors" + }, + { + "appid": 2195030, + "normalized_name": "galactic starforce" + }, + { + "appid": 2195040, + "normalized_name": "beneath the graves" + }, + { + "appid": 2195050, + "normalized_name": "princess ruby" + }, + { + "appid": 2195060, + "normalized_name": "the lost castle escape room" + }, + { + "appid": 2195070, + "normalized_name": "the family castle" + }, + { + "appid": 2195090, + "normalized_name": "cuppy's" + }, + { + "appid": 2195120, + "normalized_name": "go go town!" + }, + { + "appid": 2195140, + "normalized_name": "volgarr the viking ii" + }, + { + "appid": 2195150, + "normalized_name": "the helper" + }, + { + "appid": 2195160, + "normalized_name": "new earth saga of the new gods" + }, + { + "appid": 2195190, + "normalized_name": "nuclear mages" + }, + { + "appid": 2195200, + "normalized_name": "find the key" + }, + { + "appid": 2195220, + "normalized_name": "tombstone tactics" + }, + { + "appid": 2195230, + "normalized_name": "仙界之剑 仙王少女战记" + }, + { + "appid": 2195240, + "normalized_name": "边境逃亡 border escape" + }, + { + "appid": 2195250, + "normalized_name": "ea sports fc 24" + }, + { + "appid": 2195340, + "normalized_name": "cyber girl zombie hentai" + }, + { + "appid": 2195350, + "normalized_name": "胡辣三国" + }, + { + "appid": 2195360, + "normalized_name": "lightwood" + }, + { + "appid": 2195390, + "normalized_name": "femdemic an idle world feminization game" + }, + { + "appid": 2195400, + "normalized_name": "shave & stuff" + }, + { + "appid": 2195410, + "normalized_name": "songs of silence" + }, + { + "appid": 2195450, + "normalized_name": "aether wizard life" + }, + { + "appid": 2195490, + "normalized_name": "the great sassanelli" + }, + { + "appid": 2195500, + "normalized_name": "green valley" + }, + { + "appid": 2195510, + "normalized_name": "midnight survivors" + }, + { + "appid": 2195520, + "normalized_name": "archolden" + }, + { + "appid": 2195530, + "normalized_name": "theocracy" + }, + { + "appid": 2195550, + "normalized_name": "d&m dungeon and monsters spark of fate" + }, + { + "appid": 2195560, + "normalized_name": "hallowed pumpkins" + }, + { + "appid": 2195570, + "normalized_name": "learn words use syllables" + }, + { + "appid": 2195590, + "normalized_name": "cactus venture" + }, + { + "appid": 2195630, + "normalized_name": "circloo" + }, + { + "appid": 2195650, + "normalized_name": "lucky island" + }, + { + "appid": 2195660, + "normalized_name": "dice survivor" + }, + { + "appid": 2195670, + "normalized_name": "epic princess" + }, + { + "appid": 2195680, + "normalized_name": "great fly invasion!" + }, + { + "appid": 2195690, + "normalized_name": "tropical hearts" + }, + { + "appid": 2195710, + "normalized_name": "the ghost and the phoenix" + }, + { + "appid": 2195720, + "normalized_name": "lil baby poop's nightmares" + }, + { + "appid": 2195730, + "normalized_name": "波克學院 polkeracademy" + }, + { + "appid": 2195750, + "normalized_name": "lr2 liars' race in lost ruins" + }, + { + "appid": 2195780, + "normalized_name": "class of heroes anniversary" + }, + { + "appid": 2195790, + "normalized_name": "class of heroes 2g remaster" + }, + { + "appid": 2195820, + "normalized_name": "sigil of kings" + }, + { + "appid": 2195890, + "normalized_name": "isolation" + }, + { + "appid": 2195910, + "normalized_name": "darkenstein 3d" + }, + { + "appid": 2195960, + "normalized_name": "lamina island" + }, + { + "appid": 2195970, + "normalized_name": "o reino em outro mundo" + }, + { + "appid": 2196020, + "normalized_name": "disquiet" + }, + { + "appid": 2196030, + "normalized_name": "kiru kiru kiru" + }, + { + "appid": 2196050, + "normalized_name": "outworld patrol" + }, + { + "appid": 2196060, + "normalized_name": "fragments" + }, + { + "appid": 2196100, + "normalized_name": "barren depths" + }, + { + "appid": 2196110, + "normalized_name": "odin's tea party" + }, + { + "appid": 2196120, + "normalized_name": "baker business 3" + }, + { + "appid": 2196140, + "normalized_name": "hellrazor64" + }, + { + "appid": 2196150, + "normalized_name": "castle defense battles" + }, + { + "appid": 2196170, + "normalized_name": "clad in iron chincha islands 1866" + }, + { + "appid": 2196190, + "normalized_name": "sky base venus" + }, + { + "appid": 2196210, + "normalized_name": "orbit" + }, + { + "appid": 2196230, + "normalized_name": "slasherrpg" + }, + { + "appid": 2196240, + "normalized_name": "furry survivals 18+" + }, + { + "appid": 2196270, + "normalized_name": "kabenaguri" + }, + { + "appid": 2196280, + "normalized_name": "查理公馆事件簿" + }, + { + "appid": 2196300, + "normalized_name": "grassgames hearts 3" + }, + { + "appid": 2196320, + "normalized_name": "space yugoslav 2d" + }, + { + "appid": 2196340, + "normalized_name": "mmo rpg dev tycoon" + }, + { + "appid": 2196350, + "normalized_name": "plague alchemist" + }, + { + "appid": 2196370, + "normalized_name": "cherry lady" + }, + { + "appid": 2196380, + "normalized_name": "candy maid" + }, + { + "appid": 2196390, + "normalized_name": "2022生存指南 2022 survival guide" + }, + { + "appid": 2196400, + "normalized_name": "fury of the furries 2" + }, + { + "appid": 2196410, + "normalized_name": "简单滚动" + }, + { + "appid": 2196420, + "normalized_name": "onlyfap simulator 4 💦" + }, + { + "appid": 2196430, + "normalized_name": "final age" + }, + { + "appid": 2196440, + "normalized_name": "gray" + }, + { + "appid": 2196490, + "normalized_name": "lust element season 1" + }, + { + "appid": 2196530, + "normalized_name": "the wolf within" + }, + { + "appid": 2196560, + "normalized_name": "my little sister fiona" + }, + { + "appid": 2196570, + "normalized_name": "escape!!" + }, + { + "appid": 2196590, + "normalized_name": "krytix" + }, + { + "appid": 2196640, + "normalized_name": "engine evolution 2023" + }, + { + "appid": 2196680, + "normalized_name": "charged rc racing" + }, + { + "appid": 2196700, + "normalized_name": "my swordsman" + }, + { + "appid": 2196740, + "normalized_name": "tvs the revival" + }, + { + "appid": 2196750, + "normalized_name": "b.i.r.d." + }, + { + "appid": 2196770, + "normalized_name": "spartacus born to be free" + }, + { + "appid": 2196780, + "normalized_name": "anxracers drift space" + }, + { + "appid": 2196790, + "normalized_name": "江湖幸存者" + }, + { + "appid": 2196810, + "normalized_name": "steel manticore" + }, + { + "appid": 2196840, + "normalized_name": "impromptu trip" + }, + { + "appid": 2196850, + "normalized_name": "soul survivor trials of the goddess" + }, + { + "appid": 2196870, + "normalized_name": "clouds ahoy!" + }, + { + "appid": 2196910, + "normalized_name": "throwing punches" + }, + { + "appid": 2196920, + "normalized_name": "究極大富豪(ultimate daifugo)" + }, + { + "appid": 2196930, + "normalized_name": "maintenance safety (pipes and acids) vr training" + }, + { + "appid": 2196950, + "normalized_name": "load slinging vr training" + }, + { + "appid": 2196980, + "normalized_name": "arcadie second born" + }, + { + "appid": 2197000, + "normalized_name": "drugrunner" + }, + { + "appid": 2197020, + "normalized_name": "remote planets" + }, + { + "appid": 2197030, + "normalized_name": "big survivor" + }, + { + "appid": 2197050, + "normalized_name": "xmas apocalypse" + }, + { + "appid": 2197060, + "normalized_name": "stealth kill vr missions" + }, + { + "appid": 2197130, + "normalized_name": "wintersdawn in the deep" + }, + { + "appid": 2197140, + "normalized_name": "schrodinger's code" + }, + { + "appid": 2197160, + "normalized_name": "castle of secrets prologue" + }, + { + "appid": 2197170, + "normalized_name": "aswang detective the case of new york" + }, + { + "appid": 2197230, + "normalized_name": "dragonshift" + }, + { + "appid": 2197240, + "normalized_name": "exiler" + }, + { + "appid": 2197280, + "normalized_name": "simulassword" + }, + { + "appid": 2197310, + "normalized_name": "project canopy prologue" + }, + { + "appid": 2197330, + "normalized_name": "card nova hyper" + }, + { + "appid": 2197340, + "normalized_name": "tinytiny" + }, + { + "appid": 2197360, + "normalized_name": "hot heat reset" + }, + { + "appid": 2197370, + "normalized_name": "reversed front" + }, + { + "appid": 2197410, + "normalized_name": "celestarium" + }, + { + "appid": 2197430, + "normalized_name": "knockback knockout" + }, + { + "appid": 2197450, + "normalized_name": "炸啦" + }, + { + "appid": 2197470, + "normalized_name": "puttzzle" + }, + { + "appid": 2197490, + "normalized_name": "white mourning museum in pale" + }, + { + "appid": 2197500, + "normalized_name": "mining copper" + }, + { + "appid": 2197510, + "normalized_name": "bon! music" + }, + { + "appid": 2197530, + "normalized_name": "what lies under" + }, + { + "appid": 2197540, + "normalized_name": "welme" + }, + { + "appid": 2197550, + "normalized_name": "love quest" + }, + { + "appid": 2197580, + "normalized_name": "kawaii elf girls" + }, + { + "appid": 2197600, + "normalized_name": "chess royale" + }, + { + "appid": 2197650, + "normalized_name": "ludus mortis" + }, + { + "appid": 2197670, + "normalized_name": "无边存在:空壳行动" + }, + { + "appid": 2197680, + "normalized_name": "that time i got reincarnated as a slime isekai chronicles" + }, + { + "appid": 2197690, + "normalized_name": "美少女大战僵尸" + }, + { + "appid": 2197740, + "normalized_name": "goblin dungeons" + }, + { + "appid": 2197750, + "normalized_name": "cafe 0 ~the sleeping beast~" + }, + { + "appid": 2197760, + "normalized_name": "midnight scenes from the woods" + }, + { + "appid": 2197780, + "normalized_name": "nash racing pursuit" + }, + { + "appid": 2197790, + "normalized_name": "cosmos survivors" + }, + { + "appid": 2197830, + "normalized_name": "what a ball" + }, + { + "appid": 2197840, + "normalized_name": "exterminator" + }, + { + "appid": 2197870, + "normalized_name": "married woman cosplay life" + }, + { + "appid": 2197890, + "normalized_name": "paranormal cleanup" + }, + { + "appid": 2197910, + "normalized_name": "dawnlands" + }, + { + "appid": 2197930, + "normalized_name": "bakken ski jumping" + }, + { + "appid": 2197950, + "normalized_name": "sweety kitty 2" + }, + { + "appid": 2197960, + "normalized_name": "house of jigsaw masters of art" + }, + { + "appid": 2197980, + "normalized_name": "pocket planet" + }, + { + "appid": 2197990, + "normalized_name": "mearth ii" + }, + { + "appid": 2198000, + "normalized_name": "curt maddox" + }, + { + "appid": 2198030, + "normalized_name": "iron mandate" + }, + { + "appid": 2198070, + "normalized_name": "cardboard town" + }, + { + "appid": 2198110, + "normalized_name": "clinkclink tag game" + }, + { + "appid": 2198120, + "normalized_name": "dragon inn" + }, + { + "appid": 2198150, + "normalized_name": "tiny glade" + }, + { + "appid": 2198170, + "normalized_name": "street's disciple" + }, + { + "appid": 2198220, + "normalized_name": "dawn of mages" + }, + { + "appid": 2198250, + "normalized_name": "death scourges" + }, + { + "appid": 2198280, + "normalized_name": "prehistoric warcraft" + }, + { + "appid": 2198290, + "normalized_name": "angels & demons" + }, + { + "appid": 2198310, + "normalized_name": "paleophage" + }, + { + "appid": 2198370, + "normalized_name": "redeemart a convenient apocalypse" + }, + { + "appid": 2198390, + "normalized_name": "scions battle eternal" + }, + { + "appid": 2198400, + "normalized_name": "yes comrade" + }, + { + "appid": 2198410, + "normalized_name": "boom42" + }, + { + "appid": 2198430, + "normalized_name": "space slaves" + }, + { + "appid": 2198460, + "normalized_name": "draft day sports pro basketball 2023" + }, + { + "appid": 2198510, + "normalized_name": "new cycle" + }, + { + "appid": 2198540, + "normalized_name": "catwave" + }, + { + "appid": 2198560, + "normalized_name": "mancala" + }, + { + "appid": 2198570, + "normalized_name": "neopunk" + }, + { + "appid": 2198590, + "normalized_name": "death unphased" + }, + { + "appid": 2198640, + "normalized_name": "digital eclipse arcade candy creeps" + }, + { + "appid": 2198650, + "normalized_name": "surrealidade" + }, + { + "appid": 2198680, + "normalized_name": "兰若异谭" + }, + { + "appid": 2198690, + "normalized_name": "partysparkers" + }, + { + "appid": 2198730, + "normalized_name": "adventure awaits" + }, + { + "appid": 2198740, + "normalized_name": "one wheel guy" + }, + { + "appid": 2198770, + "normalized_name": "lumba hangover" + }, + { + "appid": 2198790, + "normalized_name": "chippy's escape from seaberry keep" + }, + { + "appid": 2198800, + "normalized_name": "crumb circuit simulator" + }, + { + "appid": 2198820, + "normalized_name": "baklava simulator2" + }, + { + "appid": 2198830, + "normalized_name": "wet sand" + }, + { + "appid": 2198890, + "normalized_name": "nicely dicely" + }, + { + "appid": 2198920, + "normalized_name": "dodgeball world" + }, + { + "appid": 2198940, + "normalized_name": "just hit the button" + }, + { + "appid": 2198970, + "normalized_name": "land of towers" + }, + { + "appid": 2198980, + "normalized_name": "super kick off (game boy/game gear/master system/mega drive/snes)" + }, + { + "appid": 2199000, + "normalized_name": "impossiball" + }, + { + "appid": 2199060, + "normalized_name": "core devourer" + }, + { + "appid": 2199080, + "normalized_name": "the starbites" + }, + { + "appid": 2199120, + "normalized_name": "reacmaster" + }, + { + "appid": 2199130, + "normalized_name": "gourdstown" + }, + { + "appid": 2199180, + "normalized_name": "sex loving family" + }, + { + "appid": 2199230, + "normalized_name": "the winter tower" + }, + { + "appid": 2199250, + "normalized_name": "utopia" + }, + { + "appid": 2199270, + "normalized_name": "asian caprice" + }, + { + "appid": 2199280, + "normalized_name": "yuma" + }, + { + "appid": 2199290, + "normalized_name": "5.5 rooms" + }, + { + "appid": 2199300, + "normalized_name": "tower skydiver" + }, + { + "appid": 2199330, + "normalized_name": "aestik" + }, + { + "appid": 2199340, + "normalized_name": "smells like a mushroom" + }, + { + "appid": 2199350, + "normalized_name": "new rule the game is..." + }, + { + "appid": 2199360, + "normalized_name": "cow girl 2" + }, + { + "appid": 2199380, + "normalized_name": "laruaville 13 match 3 puzzle" + }, + { + "appid": 2199390, + "normalized_name": "lootem" + }, + { + "appid": 2199410, + "normalized_name": "超然" + }, + { + "appid": 2199420, + "normalized_name": "brickadia" + }, + { + "appid": 2199440, + "normalized_name": "my heart your soul" + }, + { + "appid": 2199450, + "normalized_name": "finding fifi" + }, + { + "appid": 2199490, + "normalized_name": "frupu vr fruit punch" + }, + { + "appid": 2199510, + "normalized_name": "herald the interactive period drama –" + }, + { + "appid": 2199540, + "normalized_name": "80's mania pinball" + }, + { + "appid": 2199560, + "normalized_name": "constructo dungeons builder" + }, + { + "appid": 2199570, + "normalized_name": "station 117" + }, + { + "appid": 2199580, + "normalized_name": "interstellar pilot 2" + }, + { + "appid": 2199610, + "normalized_name": "lincoln green" + }, + { + "appid": 2199640, + "normalized_name": "cyber cartels" + }, + { + "appid": 2199760, + "normalized_name": "one last time" + }, + { + "appid": 2199780, + "normalized_name": "engineered to purpose" + }, + { + "appid": 2199790, + "normalized_name": "home before winter (hbw)" + }, + { + "appid": 2199810, + "normalized_name": "cyber skirmish" + }, + { + "appid": 2199820, + "normalized_name": "stack stones" + }, + { + "appid": 2199830, + "normalized_name": "bavovna included!" + }, + { + "appid": 2199860, + "normalized_name": "animal trainer simulator" + }, + { + "appid": 2199890, + "normalized_name": "now you would destroy the earth" + }, + { + "appid": 2199930, + "normalized_name": "dreamworks trolls remix rescue" + }, + { + "appid": 2199950, + "normalized_name": "lured" + }, + { + "appid": 2199980, + "normalized_name": "alpha terminus" + }, + { + "appid": 2200030, + "normalized_name": "echo of the last light" + }, + { + "appid": 2200060, + "normalized_name": "starweave" + }, + { + "appid": 2200100, + "normalized_name": "yamc yet another minesweeper client" + }, + { + "appid": 2200170, + "normalized_name": "今宵、妖しい口づけを ~雅・京牙・沙門編~" + }, + { + "appid": 2200190, + "normalized_name": "[chilla's art] the karaoke | ヒトカラ🎤" + }, + { + "appid": 2200220, + "normalized_name": "vr pekin royal palace" + }, + { + "appid": 2200230, + "normalized_name": "cursedsword" + }, + { + "appid": 2200240, + "normalized_name": "vr pterosaur" + }, + { + "appid": 2200250, + "normalized_name": "vr dinosaur invasion" + }, + { + "appid": 2200260, + "normalized_name": "millie and molly" + }, + { + "appid": 2200270, + "normalized_name": "velocity rift" + }, + { + "appid": 2200320, + "normalized_name": "幽霊部員 ghost member" + }, + { + "appid": 2200330, + "normalized_name": "project nightlight" + }, + { + "appid": 2200340, + "normalized_name": "to the grave" + }, + { + "appid": 2200350, + "normalized_name": "蛇香之夜 ~allure of musk~第二夜亚洲篇" + }, + { + "appid": 2200360, + "normalized_name": "蛇香之夜 ~allure of musk~第三夜阿拉伯篇" + }, + { + "appid": 2200380, + "normalized_name": "fingerbang all bullets pointin'" + }, + { + "appid": 2200390, + "normalized_name": "my little miniatures" + }, + { + "appid": 2200400, + "normalized_name": "aohri's uprising" + }, + { + "appid": 2200410, + "normalized_name": "tales from candleforth" + }, + { + "appid": 2200420, + "normalized_name": "13 candles" + }, + { + "appid": 2200450, + "normalized_name": "奇雞快打" + }, + { + "appid": 2200470, + "normalized_name": "ok i pull up" + }, + { + "appid": 2200560, + "normalized_name": "n₂o" + }, + { + "appid": 2200580, + "normalized_name": "pocky & rocky reshrined" + }, + { + "appid": 2200590, + "normalized_name": "cowboys & zombies vr" + }, + { + "appid": 2200600, + "normalized_name": "fall dice" + }, + { + "appid": 2200620, + "normalized_name": "shopping center tycoon" + }, + { + "appid": 2200670, + "normalized_name": "forge of destiny" + }, + { + "appid": 2200700, + "normalized_name": "东方红雾缘起begin of scarlet family" + }, + { + "appid": 2200760, + "normalized_name": "the bogtavern" + }, + { + "appid": 2200770, + "normalized_name": "anime hunter" + }, + { + "appid": 2200780, + "normalized_name": "my dream setup" + }, + { + "appid": 2200790, + "normalized_name": "rootless memories of green chapter 1" + }, + { + "appid": 2200820, + "normalized_name": "thematic solitaire noir" + }, + { + "appid": 2200860, + "normalized_name": "zahak" + }, + { + "appid": 2200900, + "normalized_name": "the ranger a skyhopper tale" + }, + { + "appid": 2200910, + "normalized_name": "pigeon" + }, + { + "appid": 2200930, + "normalized_name": "bebok invasion" + }, + { + "appid": 2200940, + "normalized_name": "sword of the necromancer revenant" + }, + { + "appid": 2200990, + "normalized_name": "trigger fever" + }, + { + "appid": 2201000, + "normalized_name": "dodge barrage" + }, + { + "appid": 2201020, + "normalized_name": "the plane game" + }, + { + "appid": 2201030, + "normalized_name": "camelot 2 the holy grail" + }, + { + "appid": 2201040, + "normalized_name": "in cell" + }, + { + "appid": 2201070, + "normalized_name": "phylakterion" + }, + { + "appid": 2201110, + "normalized_name": "sotidrokhima" + }, + { + "appid": 2201130, + "normalized_name": "distributor simulator" + }, + { + "appid": 2201150, + "normalized_name": "eve of calamity" + }, + { + "appid": 2201160, + "normalized_name": "freddy frog 2" + }, + { + "appid": 2201170, + "normalized_name": "christmas wonderland 13" + }, + { + "appid": 2201180, + "normalized_name": "factoryopolis" + }, + { + "appid": 2201190, + "normalized_name": "futanari sex locker room affair" + }, + { + "appid": 2201230, + "normalized_name": "belial red" + }, + { + "appid": 2201240, + "normalized_name": "sex adventures the naughty maid" + }, + { + "appid": 2201260, + "normalized_name": "fiend heart" + }, + { + "appid": 2201320, + "normalized_name": "date everything!" + }, + { + "appid": 2201340, + "normalized_name": "crossroads escaping the dark collector's" + }, + { + "appid": 2201390, + "normalized_name": "palladise island:legendary space" + }, + { + "appid": 2201420, + "normalized_name": "lust colony" + }, + { + "appid": 2201450, + "normalized_name": "laf the game" + }, + { + "appid": 2201470, + "normalized_name": "remnant protocol" + }, + { + "appid": 2201500, + "normalized_name": "no name village" + }, + { + "appid": 2201530, + "normalized_name": "guilt" + }, + { + "appid": 2201540, + "normalized_name": "alone in the outback" + }, + { + "appid": 2201560, + "normalized_name": "freak show party game!" + }, + { + "appid": 2201620, + "normalized_name": "adaptory" + }, + { + "appid": 2201660, + "normalized_name": "marabundle" + }, + { + "appid": 2201680, + "normalized_name": "rocket escape" + }, + { + "appid": 2201700, + "normalized_name": "beyond the lens" + }, + { + "appid": 2201710, + "normalized_name": "three kingdoms zhao yun" + }, + { + "appid": 2201810, + "normalized_name": "筮灵 shiling" + }, + { + "appid": 2201830, + "normalized_name": "cluster fly" + }, + { + "appid": 2201840, + "normalized_name": "그녀가 다시 노래할 때까지." + }, + { + "appid": 2201880, + "normalized_name": "forbidden city journey" + }, + { + "appid": 2201910, + "normalized_name": "winds of arcana ruination" + }, + { + "appid": 2201930, + "normalized_name": "oriental valley" + }, + { + "appid": 2201940, + "normalized_name": "ship graveyard simulator 2" + }, + { + "appid": 2202000, + "normalized_name": "alkey the brave" + }, + { + "appid": 2202010, + "normalized_name": "neon ascending" + }, + { + "appid": 2202070, + "normalized_name": "qublyne dungeons" + }, + { + "appid": 2202110, + "normalized_name": "railways train simulator" + }, + { + "appid": 2202120, + "normalized_name": "63 days" + }, + { + "appid": 2202150, + "normalized_name": "not me" + }, + { + "appid": 2202200, + "normalized_name": "survive the orcs" + }, + { + "appid": 2202220, + "normalized_name": "animal trainer simulator prologue" + }, + { + "appid": 2202240, + "normalized_name": "horror adventure zombie" + }, + { + "appid": 2202270, + "normalized_name": "hunting life vr dove season" + }, + { + "appid": 2202320, + "normalized_name": "shovelfall" + }, + { + "appid": 2202330, + "normalized_name": "赏金物语 bounty world" + }, + { + "appid": 2202340, + "normalized_name": "stories from the cores" + }, + { + "appid": 2202360, + "normalized_name": "dungeon king" + }, + { + "appid": 2202370, + "normalized_name": "折镜(prism.im)" + }, + { + "appid": 2202380, + "normalized_name": "fiend's archive" + }, + { + "appid": 2202400, + "normalized_name": "soundstorm" + }, + { + "appid": 2202430, + "normalized_name": "uncharted ocean 2" + }, + { + "appid": 2202470, + "normalized_name": "no sun to worship" + }, + { + "appid": 2202480, + "normalized_name": "monster&strategy" + }, + { + "appid": 2202500, + "normalized_name": "rapscallions on deck friendship otome" + }, + { + "appid": 2202510, + "normalized_name": "iso" + }, + { + "appid": 2202580, + "normalized_name": "dearg" + }, + { + "appid": 2202590, + "normalized_name": "shape shifter formations" + }, + { + "appid": 2202650, + "normalized_name": "crescent county" + }, + { + "appid": 2202690, + "normalized_name": "gladiators and glory" + }, + { + "appid": 2202710, + "normalized_name": "athenian rhapsody thunder goober's personality dungeon" + }, + { + "appid": 2202720, + "normalized_name": "enemy at the gates the invincible sword" + }, + { + "appid": 2202750, + "normalized_name": "hardhat wombat" + }, + { + "appid": 2202770, + "normalized_name": "pizza hero" + }, + { + "appid": 2202850, + "normalized_name": "boulder escape" + }, + { + "appid": 2202880, + "normalized_name": "car parking" + }, + { + "appid": 2202890, + "normalized_name": "furious sword" + }, + { + "appid": 2202900, + "normalized_name": "out of the ground" + }, + { + "appid": 2202910, + "normalized_name": "shadow lens" + }, + { + "appid": 2202930, + "normalized_name": "tempo trigger" + }, + { + "appid": 2202950, + "normalized_name": "darkmatter the strange messenger" + }, + { + "appid": 2202980, + "normalized_name": "buy my snake oil" + }, + { + "appid": 2203040, + "normalized_name": "マーダーミステリーパラドクス このひと夏の十五年" + }, + { + "appid": 2203070, + "normalized_name": "dragonheir silent gods" + }, + { + "appid": 2203100, + "normalized_name": "megis adventure" + }, + { + "appid": 2203130, + "normalized_name": "levels" + }, + { + "appid": 2203140, + "normalized_name": "keep sheep" + }, + { + "appid": 2203170, + "normalized_name": "hentai darkelf" + }, + { + "appid": 2203200, + "normalized_name": "akari school trip" + }, + { + "appid": 2203210, + "normalized_name": "burggeist" + }, + { + "appid": 2203240, + "normalized_name": "程序员必须死 programmers must die" + }, + { + "appid": 2203260, + "normalized_name": "☆yasogaya murder cases☆【to each of their hearts】" + }, + { + "appid": 2203270, + "normalized_name": "labyrinth immortal oblivion" + }, + { + "appid": 2203290, + "normalized_name": "kaiju girls" + }, + { + "appid": 2203320, + "normalized_name": "meta ball" + }, + { + "appid": 2203350, + "normalized_name": "royal romances battle of the woods collector's" + }, + { + "appid": 2203370, + "normalized_name": "bolo legends an epic adventure" + }, + { + "appid": 2203410, + "normalized_name": "truck simulator world" + }, + { + "appid": 2203480, + "normalized_name": "reach the moon!" + }, + { + "appid": 2203500, + "normalized_name": "cars vs train" + }, + { + "appid": 2203510, + "normalized_name": "kung fu school" + }, + { + "appid": 2203530, + "normalized_name": "delusion" + }, + { + "appid": 2203540, + "normalized_name": "escape from school f.e.l.i.c" + }, + { + "appid": 2203550, + "normalized_name": "marshal in hell" + }, + { + "appid": 2203570, + "normalized_name": "cardiac powder" + }, + { + "appid": 2203580, + "normalized_name": "stay sane" + }, + { + "appid": 2203590, + "normalized_name": "tune in to the show" + }, + { + "appid": 2203710, + "normalized_name": "hunted kalevala" + }, + { + "appid": 2203720, + "normalized_name": "female prison" + }, + { + "appid": 2203730, + "normalized_name": "in the building cats" + }, + { + "appid": 2203770, + "normalized_name": "sex teacher" + }, + { + "appid": 2203780, + "normalized_name": "alien" + }, + { + "appid": 2203790, + "normalized_name": "sexy blonde" + }, + { + "appid": 2203800, + "normalized_name": "bad santa" + }, + { + "appid": 2203820, + "normalized_name": "the world of the candy girl" + }, + { + "appid": 2203830, + "normalized_name": "east wind" + }, + { + "appid": 2203850, + "normalized_name": "aw heck war!" + }, + { + "appid": 2203860, + "normalized_name": "populous" + }, + { + "appid": 2203890, + "normalized_name": "hank's quest for soup" + }, + { + "appid": 2203900, + "normalized_name": "the loophole that is my life" + }, + { + "appid": 2203920, + "normalized_name": "the search for a colour palette" + }, + { + "appid": 2203930, + "normalized_name": "purple eye" + }, + { + "appid": 2203970, + "normalized_name": "my incubi harem" + }, + { + "appid": 2203990, + "normalized_name": "commando hero" + }, + { + "appid": 2204030, + "normalized_name": "sword of wonder it's good to be a king" + }, + { + "appid": 2204040, + "normalized_name": "inheritance ladeina's path" + }, + { + "appid": 2204130, + "normalized_name": "sid meier's alpha centauri planetary pack" + }, + { + "appid": 2204160, + "normalized_name": "greenlander" + }, + { + "appid": 2204170, + "normalized_name": "splodey" + }, + { + "appid": 2204190, + "normalized_name": "hack the system" + }, + { + "appid": 2204210, + "normalized_name": "bandroll vr" + }, + { + "appid": 2204220, + "normalized_name": "full moon kit" + }, + { + "appid": 2204260, + "normalized_name": "matchmaker agency" + }, + { + "appid": 2204270, + "normalized_name": "rake" + }, + { + "appid": 2204350, + "normalized_name": "midnight heist" + }, + { + "appid": 2204360, + "normalized_name": "squid fighter" + }, + { + "appid": 2204400, + "normalized_name": "kitball 20000" + }, + { + "appid": 2204410, + "normalized_name": "manav" + }, + { + "appid": 2204430, + "normalized_name": "ruler of the waves 1916" + }, + { + "appid": 2204450, + "normalized_name": "balldventure" + }, + { + "appid": 2204470, + "normalized_name": "field clashers" + }, + { + "appid": 2204480, + "normalized_name": "project [xyz]" + }, + { + "appid": 2204490, + "normalized_name": "bank tycoon" + }, + { + "appid": 2204540, + "normalized_name": "grandstrategy" + }, + { + "appid": 2204560, + "normalized_name": "mineral madness" + }, + { + "appid": 2204570, + "normalized_name": "field tactics" + }, + { + "appid": 2204600, + "normalized_name": "last girl in futa sexpocalypse" + }, + { + "appid": 2204620, + "normalized_name": "king's blade" + }, + { + "appid": 2204650, + "normalized_name": "last days of future" + }, + { + "appid": 2204680, + "normalized_name": "cyber west hidden object games western" + }, + { + "appid": 2204710, + "normalized_name": "green garden" + }, + { + "appid": 2204720, + "normalized_name": "sunny memories" + }, + { + "appid": 2204730, + "normalized_name": "once upon a dungeon ii" + }, + { + "appid": 2204750, + "normalized_name": "happy town" + }, + { + "appid": 2204760, + "normalized_name": "cat life" + }, + { + "appid": 2204770, + "normalized_name": "language adventure" + }, + { + "appid": 2204810, + "normalized_name": "backrooms surreality" + }, + { + "appid": 2204820, + "normalized_name": "cerebral" + }, + { + "appid": 2204830, + "normalized_name": "street lords" + }, + { + "appid": 2204840, + "normalized_name": "adventure's pixel world" + }, + { + "appid": 2204850, + "normalized_name": "spooky men" + }, + { + "appid": 2204870, + "normalized_name": "how long can you survive" + }, + { + "appid": 2204880, + "normalized_name": "pavephobia" + }, + { + "appid": 2204900, + "normalized_name": "street uni x" + }, + { + "appid": 2204910, + "normalized_name": "slipgate" + }, + { + "appid": 2204920, + "normalized_name": "eyes of iyre" + }, + { + "appid": 2204940, + "normalized_name": "battle robots" + }, + { + "appid": 2204950, + "normalized_name": "alpaca rancher" + }, + { + "appid": 2204960, + "normalized_name": "null g" + }, + { + "appid": 2204970, + "normalized_name": "hidden harbor 2 top down 3d" + }, + { + "appid": 2204990, + "normalized_name": "uncured" + }, + { + "appid": 2205010, + "normalized_name": "cryodeath vr" + }, + { + "appid": 2205020, + "normalized_name": "fantasy tavern simulator" + }, + { + "appid": 2205090, + "normalized_name": "bridge engineer" + }, + { + "appid": 2205100, + "normalized_name": "七星探偵倶楽部~黄金虫たちの帰巣~" + }, + { + "appid": 2205130, + "normalized_name": "5 days" + }, + { + "appid": 2205190, + "normalized_name": "clown of duty" + }, + { + "appid": 2205230, + "normalized_name": "true colours" + }, + { + "appid": 2205260, + "normalized_name": "godfist" + }, + { + "appid": 2205270, + "normalized_name": "cuana" + }, + { + "appid": 2205290, + "normalized_name": "流光易逝的夏末 fleeting summer's end" + }, + { + "appid": 2205320, + "normalized_name": "saint ceri" + }, + { + "appid": 2205330, + "normalized_name": "scourge of war" + }, + { + "appid": 2205380, + "normalized_name": "ragnarök td" + }, + { + "appid": 2205410, + "normalized_name": "snake escape" + }, + { + "appid": 2205420, + "normalized_name": "pain below sanity (classic)" + }, + { + "appid": 2205460, + "normalized_name": "i̇bli̇s2 sorcery" + }, + { + "appid": 2205470, + "normalized_name": "vacation paradise france collector's" + }, + { + "appid": 2205490, + "normalized_name": "sliding puzzle deluxe the classic" + }, + { + "appid": 2205500, + "normalized_name": "tanks logic" + }, + { + "appid": 2205510, + "normalized_name": "witch's cursed kingdom quest" + }, + { + "appid": 2205520, + "normalized_name": "battle drones red rock resistance" + }, + { + "appid": 2205550, + "normalized_name": "familegion" + }, + { + "appid": 2205570, + "normalized_name": "thgitw" + }, + { + "appid": 2205600, + "normalized_name": "ojiv" + }, + { + "appid": 2205610, + "normalized_name": "beatpunk!" + }, + { + "appid": 2205630, + "normalized_name": "lotus the self made witch" + }, + { + "appid": 2205640, + "normalized_name": "是男人就上一百层" + }, + { + "appid": 2205650, + "normalized_name": "vr hourse racing sweetie" + }, + { + "appid": 2205660, + "normalized_name": "vr dinosaur pingpong" + }, + { + "appid": 2205670, + "normalized_name": "monster waifu" + }, + { + "appid": 2205680, + "normalized_name": "waifu desire" + }, + { + "appid": 2205690, + "normalized_name": "summer puzzles" + }, + { + "appid": 2205700, + "normalized_name": "shy girl" + }, + { + "appid": 2205710, + "normalized_name": "hentai beauty" + }, + { + "appid": 2205720, + "normalized_name": "pepper girl" + }, + { + "appid": 2205730, + "normalized_name": "horny clinic" + }, + { + "appid": 2205740, + "normalized_name": "sexy elf" + }, + { + "appid": 2205750, + "normalized_name": "女拳主義f ist!一般向版" + }, + { + "appid": 2205800, + "normalized_name": "cyberbrick" + }, + { + "appid": 2205850, + "normalized_name": "dwarves glory death and loot" + }, + { + "appid": 2205860, + "normalized_name": "vr racing on dinosaur island" + }, + { + "appid": 2205870, + "normalized_name": "inner abyss" + }, + { + "appid": 2205880, + "normalized_name": "neo citizen prologue" + }, + { + "appid": 2205930, + "normalized_name": "squirrel away" + }, + { + "appid": 2205950, + "normalized_name": "witchpunk" + }, + { + "appid": 2205960, + "normalized_name": "race rocket arena car extreme" + }, + { + "appid": 2206000, + "normalized_name": "orbital bombardment" + }, + { + "appid": 2206130, + "normalized_name": "tomb 盜墓" + }, + { + "appid": 2206140, + "normalized_name": "geodepths" + }, + { + "appid": 2206150, + "normalized_name": "hot and lovely :charm" + }, + { + "appid": 2206160, + "normalized_name": "battlemon" + }, + { + "appid": 2206180, + "normalized_name": "show ball tiger life" + }, + { + "appid": 2206210, + "normalized_name": "gylt" + }, + { + "appid": 2206230, + "normalized_name": "galaxy kingdoms" + }, + { + "appid": 2206240, + "normalized_name": "footgun underground" + }, + { + "appid": 2206270, + "normalized_name": "vampire hunters" + }, + { + "appid": 2206280, + "normalized_name": "horny spell" + }, + { + "appid": 2206290, + "normalized_name": "sexy waifu" + }, + { + "appid": 2206310, + "normalized_name": "bluetricks" + }, + { + "appid": 2206320, + "normalized_name": "hello neighbor vr search and rescue" + }, + { + "appid": 2206340, + "normalized_name": "aokana four rhythms across the blue extra2" + }, + { + "appid": 2206350, + "normalized_name": "farm manager world" + }, + { + "appid": 2206380, + "normalized_name": "candy tycoon" + }, + { + "appid": 2206390, + "normalized_name": "bandroll" + }, + { + "appid": 2206400, + "normalized_name": "zombinions" + }, + { + "appid": 2206410, + "normalized_name": "goblin dash" + }, + { + "appid": 2206450, + "normalized_name": "dwarfer" + }, + { + "appid": 2206460, + "normalized_name": "furry killer" + }, + { + "appid": 2206480, + "normalized_name": "gaszilla" + }, + { + "appid": 2206490, + "normalized_name": "ruined kingdom" + }, + { + "appid": 2206500, + "normalized_name": "star crystal warriors go!" + }, + { + "appid": 2206530, + "normalized_name": "hexfinder" + }, + { + "appid": 2206560, + "normalized_name": "zup! q" + }, + { + "appid": 2206570, + "normalized_name": "geolosys" + }, + { + "appid": 2206580, + "normalized_name": "gravity magician" + }, + { + "appid": 2206590, + "normalized_name": "fateel فتيل" + }, + { + "appid": 2206660, + "normalized_name": "tourist trap" + }, + { + "appid": 2206670, + "normalized_name": "dawn of yokai" + }, + { + "appid": 2206680, + "normalized_name": "halt" + }, + { + "appid": 2206690, + "normalized_name": "kalzoon" + }, + { + "appid": 2206700, + "normalized_name": "king smash" + }, + { + "appid": 2206720, + "normalized_name": "lab inspect" + }, + { + "appid": 2206730, + "normalized_name": "emerge" + }, + { + "appid": 2206750, + "normalized_name": "e3pdr" + }, + { + "appid": 2206790, + "normalized_name": "fog horror" + }, + { + "appid": 2206800, + "normalized_name": "so 108" + }, + { + "appid": 2206810, + "normalized_name": "the last dungeon" + }, + { + "appid": 2206820, + "normalized_name": "tokyo pinball" + }, + { + "appid": 2206850, + "normalized_name": "the cursewood" + }, + { + "appid": 2206860, + "normalized_name": "the unforeseen resurrection otome isekai rpg" + }, + { + "appid": 2206870, + "normalized_name": "star crosst" + }, + { + "appid": 2206890, + "normalized_name": "steel revenant" + }, + { + "appid": 2206930, + "normalized_name": "canterz paranormies 2" + }, + { + "appid": 2206960, + "normalized_name": "cloud house virtual arts space" + }, + { + "appid": 2206970, + "normalized_name": "keepers of the forest" + }, + { + "appid": 2206980, + "normalized_name": "與魔共舞" + }, + { + "appid": 2207010, + "normalized_name": "yōkaimaki" + }, + { + "appid": 2207030, + "normalized_name": "下山的试炼之江湖遗失录 a test before jianghu" + }, + { + "appid": 2207040, + "normalized_name": "myasoid" + }, + { + "appid": 2207050, + "normalized_name": "my soul forever" + }, + { + "appid": 2207060, + "normalized_name": "nanali in another world" + }, + { + "appid": 2207070, + "normalized_name": "social credit simulator" + }, + { + "appid": 2207080, + "normalized_name": "stolen dolls" + }, + { + "appid": 2207100, + "normalized_name": "tiny onion knight" + }, + { + "appid": 2207110, + "normalized_name": "power driver" + }, + { + "appid": 2207120, + "normalized_name": "my darkest witch" + }, + { + "appid": 2207160, + "normalized_name": "fallen stars" + }, + { + "appid": 2207180, + "normalized_name": "no fly drone" + }, + { + "appid": 2207220, + "normalized_name": "fish bone" + }, + { + "appid": 2207230, + "normalized_name": "black dragon mage" + }, + { + "appid": 2207260, + "normalized_name": "battle titan rainbow" + }, + { + "appid": 2207350, + "normalized_name": "pararecords" + }, + { + "appid": 2207440, + "normalized_name": "lok digital" + }, + { + "appid": 2207460, + "normalized_name": "assassinvisible" + }, + { + "appid": 2207470, + "normalized_name": "gods against machines" + }, + { + "appid": 2207480, + "normalized_name": "hellcard prologue" + }, + { + "appid": 2207490, + "normalized_name": "factory town idle" + }, + { + "appid": 2207500, + "normalized_name": "covenant project zero" + }, + { + "appid": 2207520, + "normalized_name": "mind corridors paroniria" + }, + { + "appid": 2207540, + "normalized_name": "时间切片:序章 pages of time prologue" + }, + { + "appid": 2207550, + "normalized_name": "infected chronicles surviving the zombie apocalypse" + }, + { + "appid": 2207560, + "normalized_name": "trojan" + }, + { + "appid": 2207580, + "normalized_name": "lost august" + }, + { + "appid": 2207590, + "normalized_name": "exorcist 2 crow magic" + }, + { + "appid": 2207600, + "normalized_name": "strix stg" + }, + { + "appid": 2207610, + "normalized_name": "beat the heat" + }, + { + "appid": 2207620, + "normalized_name": "fellowship of the oak" + }, + { + "appid": 2207630, + "normalized_name": "the unfound soul" + }, + { + "appid": 2207640, + "normalized_name": "little circuit" + }, + { + "appid": 2207670, + "normalized_name": "super beast hunt" + }, + { + "appid": 2207690, + "normalized_name": "bewells" + }, + { + "appid": 2207700, + "normalized_name": "hard survivor" + }, + { + "appid": 2207710, + "normalized_name": "relaxjong" + }, + { + "appid": 2207750, + "normalized_name": "extreme tag!" + }, + { + "appid": 2207760, + "normalized_name": "kovari legends emergence" + }, + { + "appid": 2207840, + "normalized_name": "mihirha's legacy" + }, + { + "appid": 2207900, + "normalized_name": "the work of your hands" + }, + { + "appid": 2207910, + "normalized_name": "super uriel" + }, + { + "appid": 2207920, + "normalized_name": "unsure" + }, + { + "appid": 2207940, + "normalized_name": "missing code" + }, + { + "appid": 2207960, + "normalized_name": "kayak league" + }, + { + "appid": 2207970, + "normalized_name": "interior worlds" + }, + { + "appid": 2207980, + "normalized_name": "house of ghosts" + }, + { + "appid": 2207990, + "normalized_name": "creator [deep.sleeper] saga" + }, + { + "appid": 2208000, + "normalized_name": "ranger quest the adventure begins" + }, + { + "appid": 2208040, + "normalized_name": "geojelly" + }, + { + "appid": 2208050, + "normalized_name": "deep sea trip" + }, + { + "appid": 2208060, + "normalized_name": "seaberry holiday" + }, + { + "appid": 2208070, + "normalized_name": "jigsaw puzzle best places" + }, + { + "appid": 2208130, + "normalized_name": "frog story the power tongue" + }, + { + "appid": 2208140, + "normalized_name": "battlez" + }, + { + "appid": 2208160, + "normalized_name": "cursed" + }, + { + "appid": 2208200, + "normalized_name": "人形作战兵器 automata" + }, + { + "appid": 2208220, + "normalized_name": "mislight" + }, + { + "appid": 2208260, + "normalized_name": "savvy courier" + }, + { + "appid": 2208270, + "normalized_name": "handless show" + }, + { + "appid": 2208280, + "normalized_name": "demon's draw" + }, + { + "appid": 2208300, + "normalized_name": "terrarium builder" + }, + { + "appid": 2208330, + "normalized_name": "last knight" + }, + { + "appid": 2208350, + "normalized_name": "total chaos" + }, + { + "appid": 2208360, + "normalized_name": "hentai doctor 2049" + }, + { + "appid": 2208390, + "normalized_name": "rabbit maze" + }, + { + "appid": 2208480, + "normalized_name": "beat back vr" + }, + { + "appid": 2208520, + "normalized_name": "井底之蛙 a frog in a well" + }, + { + "appid": 2208530, + "normalized_name": "alchemia story" + }, + { + "appid": 2208570, + "normalized_name": "dark hours" + }, + { + "appid": 2208610, + "normalized_name": "limits of sky" + }, + { + "appid": 2208620, + "normalized_name": "lustyverse shackbang" + }, + { + "appid": 2208680, + "normalized_name": "señorita chupacabra" + }, + { + "appid": 2208720, + "normalized_name": "bebop" + }, + { + "appid": 2208730, + "normalized_name": "raiders of ruin" + }, + { + "appid": 2208780, + "normalized_name": "psycho fear" + }, + { + "appid": 2208810, + "normalized_name": "jurassic park survival" + }, + { + "appid": 2208820, + "normalized_name": "grabitoons!" + }, + { + "appid": 2208840, + "normalized_name": "amazing space" + }, + { + "appid": 2208870, + "normalized_name": "wrestling manager 2023" + }, + { + "appid": 2208900, + "normalized_name": "world of unlit" + }, + { + "appid": 2208910, + "normalized_name": "anna exciting affection" + }, + { + "appid": 2208920, + "normalized_name": "assassin's creed valhalla" + }, + { + "appid": 2208930, + "normalized_name": "space time" + }, + { + "appid": 2208940, + "normalized_name": "geometric hell" + }, + { + "appid": 2208950, + "normalized_name": "see ya later!" + }, + { + "appid": 2208960, + "normalized_name": "gravity" + }, + { + "appid": 2208990, + "normalized_name": "模拟游戏大全2023" + }, + { + "appid": 2209020, + "normalized_name": "gemstones" + }, + { + "appid": 2209080, + "normalized_name": "polaris outpost" + }, + { + "appid": 2209130, + "normalized_name": "scavenia survivors" + }, + { + "appid": 2209140, + "normalized_name": "ascent of ashes" + }, + { + "appid": 2209150, + "normalized_name": "above snakes prologue" + }, + { + "appid": 2209180, + "normalized_name": "angira online" + }, + { + "appid": 2209190, + "normalized_name": "the princess of the tower wants a hero" + }, + { + "appid": 2209210, + "normalized_name": "iron guard" + }, + { + "appid": 2209220, + "normalized_name": "oniami" + }, + { + "appid": 2209270, + "normalized_name": "moorhuhn piraten crazy chicken pirates" + }, + { + "appid": 2209310, + "normalized_name": "1 rule sudoku" + }, + { + "appid": 2209320, + "normalized_name": "7days heroes" + }, + { + "appid": 2209330, + "normalized_name": "hentai island" + }, + { + "appid": 2209340, + "normalized_name": "have you herd?" + }, + { + "appid": 2209360, + "normalized_name": "reclamation of xanthros" + }, + { + "appid": 2209370, + "normalized_name": "lost in memory" + }, + { + "appid": 2209380, + "normalized_name": "chess morph the queen's wormholes" + }, + { + "appid": 2209390, + "normalized_name": "doggy up!" + }, + { + "appid": 2209430, + "normalized_name": "i feel the need" + }, + { + "appid": 2209440, + "normalized_name": "sim4d atc" + }, + { + "appid": 2209470, + "normalized_name": "interplayer" + }, + { + "appid": 2209500, + "normalized_name": "bullet destroyer" + }, + { + "appid": 2209520, + "normalized_name": "tozerath in ruins" + }, + { + "appid": 2209560, + "normalized_name": "noel nothing on elysion line" + }, + { + "appid": 2209580, + "normalized_name": "digital frida" + }, + { + "appid": 2209590, + "normalized_name": "delivoo delivery sim" + }, + { + "appid": 2209610, + "normalized_name": "aviator air combat" + }, + { + "appid": 2209620, + "normalized_name": "scan" + }, + { + "appid": 2209660, + "normalized_name": "awaken" + }, + { + "appid": 2209670, + "normalized_name": "university love affair" + }, + { + "appid": 2209680, + "normalized_name": "beach invasion 1944" + }, + { + "appid": 2209710, + "normalized_name": "skybox" + }, + { + "appid": 2209760, + "normalized_name": "crux the great outdoors" + }, + { + "appid": 2209790, + "normalized_name": "仙道孤旅" + }, + { + "appid": 2209800, + "normalized_name": "pog x" + }, + { + "appid": 2209810, + "normalized_name": "pip l" + }, + { + "appid": 2209820, + "normalized_name": "guardians of elderon" + }, + { + "appid": 2209860, + "normalized_name": "hentai leaked!? only for fans" + }, + { + "appid": 2209880, + "normalized_name": "nightmare inside" + }, + { + "appid": 2209890, + "normalized_name": "house hopper" + }, + { + "appid": 2209900, + "normalized_name": "moonlight peaks" + }, + { + "appid": 2209910, + "normalized_name": "siren head the horror experience" + }, + { + "appid": 2209930, + "normalized_name": "murder in omar's burger" + }, + { + "appid": 2209940, + "normalized_name": "talus" + }, + { + "appid": 2209980, + "normalized_name": "aposfera spacetrips" + }, + { + "appid": 2209990, + "normalized_name": "vr archeology secrets of kulikovo field" + }, + { + "appid": 2210000, + "normalized_name": "unnatural benighted" + }, + { + "appid": 2210020, + "normalized_name": "across the valley" + }, + { + "appid": 2210040, + "normalized_name": "dark data zero" + }, + { + "appid": 2210050, + "normalized_name": "dragonium adventure" + }, + { + "appid": 2210060, + "normalized_name": "cyber combat" + }, + { + "appid": 2210100, + "normalized_name": "one sex night" + }, + { + "appid": 2210130, + "normalized_name": "system of souls" + }, + { + "appid": 2210180, + "normalized_name": "sapiens league" + }, + { + "appid": 2210210, + "normalized_name": "a matter of principle" + }, + { + "appid": 2210220, + "normalized_name": "outfield" + }, + { + "appid": 2210240, + "normalized_name": "hoglands" + }, + { + "appid": 2210300, + "normalized_name": "the hellchemist" + }, + { + "appid": 2210410, + "normalized_name": "lims" + }, + { + "appid": 2210450, + "normalized_name": "dark desire 5" + }, + { + "appid": 2210500, + "normalized_name": "vetvr veterinary simulator" + }, + { + "appid": 2210520, + "normalized_name": "copa city" + }, + { + "appid": 2210590, + "normalized_name": "自由人生模拟 free life simulation" + }, + { + "appid": 2210620, + "normalized_name": "head basketball" + }, + { + "appid": 2210630, + "normalized_name": "pretty girls 2048 strike" + }, + { + "appid": 2210670, + "normalized_name": "torecower" + }, + { + "appid": 2210700, + "normalized_name": "pechka historical story adventure" + }, + { + "appid": 2210710, + "normalized_name": "zombie shooting star arcade" + }, + { + "appid": 2210750, + "normalized_name": "vr dinosaur hunter" + }, + { + "appid": 2210760, + "normalized_name": "vr jurassic adventure hd" + }, + { + "appid": 2210780, + "normalized_name": "hentai bunnygirl" + }, + { + "appid": 2210800, + "normalized_name": "monster racing league" + }, + { + "appid": 2210810, + "normalized_name": "mining factory" + }, + { + "appid": 2210840, + "normalized_name": "kaiju cleaner" + }, + { + "appid": 2210890, + "normalized_name": "lucy's heaven" + }, + { + "appid": 2210920, + "normalized_name": "my alien roommate" + }, + { + "appid": 2210980, + "normalized_name": "クラウディ・デイズ" + }, + { + "appid": 2211000, + "normalized_name": "inanima" + }, + { + "appid": 2211020, + "normalized_name": "scraps battle" + }, + { + "appid": 2211040, + "normalized_name": "spire" + }, + { + "appid": 2211090, + "normalized_name": "villain's legacy" + }, + { + "appid": 2211110, + "normalized_name": "brick odyssey" + }, + { + "appid": 2211120, + "normalized_name": "grapple whip" + }, + { + "appid": 2211130, + "normalized_name": "soulbound" + }, + { + "appid": 2211140, + "normalized_name": "funwreckers" + }, + { + "appid": 2211150, + "normalized_name": "wordspiral" + }, + { + "appid": 2211170, + "normalized_name": "unrailed 2 back on track" + }, + { + "appid": 2211190, + "normalized_name": "byte fyte (multiplayer)" + }, + { + "appid": 2211250, + "normalized_name": "of frost and flowers" + }, + { + "appid": 2211260, + "normalized_name": "something's out there" + }, + { + "appid": 2211270, + "normalized_name": "underpowered" + }, + { + "appid": 2211280, + "normalized_name": "roller champions" + }, + { + "appid": 2211320, + "normalized_name": "comet clash" + }, + { + "appid": 2211390, + "normalized_name": "time survivors" + }, + { + "appid": 2211400, + "normalized_name": "love's crescendo" + }, + { + "appid": 2211410, + "normalized_name": "rivenworld the first era" + }, + { + "appid": 2211440, + "normalized_name": "vampire tourist" + }, + { + "appid": 2211460, + "normalized_name": "naive riri" + }, + { + "appid": 2211490, + "normalized_name": "grav factor" + }, + { + "appid": 2211500, + "normalized_name": "cambrian dawn" + }, + { + "appid": 2211520, + "normalized_name": "doomed survivors" + }, + { + "appid": 2211570, + "normalized_name": "qwerty quest" + }, + { + "appid": 2211640, + "normalized_name": "who knocks" + }, + { + "appid": 2211660, + "normalized_name": "snekmp" + }, + { + "appid": 2211730, + "normalized_name": "killbug" + }, + { + "appid": 2211750, + "normalized_name": "bounty" + }, + { + "appid": 2211760, + "normalized_name": "float 飘" + }, + { + "appid": 2211780, + "normalized_name": "aniahikoaexperiment a2a aver.aaa13032025aaa a a micro prince akihiko adisony akitsushima & a a micro princess a" + }, + { + "appid": 2211790, + "normalized_name": "space moonshiner" + }, + { + "appid": 2211800, + "normalized_name": "mama die and retry" + }, + { + "appid": 2211840, + "normalized_name": "stellar sovereigns" + }, + { + "appid": 2211860, + "normalized_name": "gormadae" + }, + { + "appid": 2211870, + "normalized_name": "hospice vol. 1" + }, + { + "appid": 2211880, + "normalized_name": "nightshift" + }, + { + "appid": 2211910, + "normalized_name": "dirty horror" + }, + { + "appid": 2211920, + "normalized_name": "downtime" + }, + { + "appid": 2211930, + "normalized_name": "lone knight" + }, + { + "appid": 2211940, + "normalized_name": "doge simulator" + }, + { + "appid": 2211960, + "normalized_name": "counterspell" + }, + { + "appid": 2211970, + "normalized_name": "mindworks the great division" + }, + { + "appid": 2212050, + "normalized_name": "3xo xxx online" + }, + { + "appid": 2212110, + "normalized_name": "leaf blower man this game blows!" + }, + { + "appid": 2212200, + "normalized_name": "amber time pocket [rpg]" + }, + { + "appid": 2212250, + "normalized_name": "surrender" + }, + { + "appid": 2212280, + "normalized_name": "block slime cave" + }, + { + "appid": 2212310, + "normalized_name": "zen paint" + }, + { + "appid": 2212330, + "normalized_name": "your only move is hustle" + }, + { + "appid": 2212340, + "normalized_name": "传送门幸存者" + }, + { + "appid": 2212390, + "normalized_name": "aoi" + }, + { + "appid": 2212400, + "normalized_name": "gemion function" + }, + { + "appid": 2212410, + "normalized_name": "shadowkin" + }, + { + "appid": 2212440, + "normalized_name": "懐旧ノ絵詞" + }, + { + "appid": 2212450, + "normalized_name": "voidless" + }, + { + "appid": 2212490, + "normalized_name": "bulletlive" + }, + { + "appid": 2212500, + "normalized_name": "full gear" + }, + { + "appid": 2212520, + "normalized_name": "the last werewolf" + }, + { + "appid": 2212550, + "normalized_name": "plains of havoc" + }, + { + "appid": 2212580, + "normalized_name": "barbelé" + }, + { + "appid": 2212600, + "normalized_name": "town girls" + }, + { + "appid": 2212620, + "normalized_name": "snowglobe" + }, + { + "appid": 2212650, + "normalized_name": "zako slayer" + }, + { + "appid": 2212660, + "normalized_name": "boom 2020" + }, + { + "appid": 2212670, + "normalized_name": "makeroom" + }, + { + "appid": 2212680, + "normalized_name": "evil of fate" + }, + { + "appid": 2212690, + "normalized_name": "the dungeon rules" + }, + { + "appid": 2212710, + "normalized_name": "iwocon 2" + }, + { + "appid": 2212740, + "normalized_name": "dab 12" + }, + { + "appid": 2212750, + "normalized_name": "the asher asylum" + }, + { + "appid": 2212790, + "normalized_name": "asbury pines" + }, + { + "appid": 2212810, + "normalized_name": "crown of thorns" + }, + { + "appid": 2212830, + "normalized_name": "soul taker" + }, + { + "appid": 2212840, + "normalized_name": "dinosaur simulator" + }, + { + "appid": 2212850, + "normalized_name": "robocoder dwarf mountain" + }, + { + "appid": 2212880, + "normalized_name": "olho adventure the dark series" + }, + { + "appid": 2212940, + "normalized_name": "逆光追竹" + }, + { + "appid": 2212960, + "normalized_name": "人品大冒险" + }, + { + "appid": 2212970, + "normalized_name": "dream clovers" + }, + { + "appid": 2213070, + "normalized_name": "seed of pandora legend of the gaia tree" + }, + { + "appid": 2213120, + "normalized_name": "while we wait here" + }, + { + "appid": 2213140, + "normalized_name": "dark findings submerge" + }, + { + "appid": 2213190, + "normalized_name": "death note killer within" + }, + { + "appid": 2213260, + "normalized_name": "n.o.m.a.d. (cpc/spectrum)" + }, + { + "appid": 2213290, + "normalized_name": "asunder" + }, + { + "appid": 2213300, + "normalized_name": "might & magic clash of heroes" + }, + { + "appid": 2213330, + "normalized_name": "tiny lands 2" + }, + { + "appid": 2213340, + "normalized_name": "wind up" + }, + { + "appid": 2213390, + "normalized_name": "death swap end as one" + }, + { + "appid": 2213410, + "normalized_name": "turbo fat" + }, + { + "appid": 2213420, + "normalized_name": "recoil vs the world" + }, + { + "appid": 2213430, + "normalized_name": "barold inferno" + }, + { + "appid": 2213440, + "normalized_name": "机械师:machinist" + }, + { + "appid": 2213450, + "normalized_name": "hell runner" + }, + { + "appid": 2213460, + "normalized_name": "ghost guy" + }, + { + "appid": 2213480, + "normalized_name": "heralds of silence. chapter one" + }, + { + "appid": 2213490, + "normalized_name": "mr.wise" + }, + { + "appid": 2213500, + "normalized_name": "sven durchgeknallt" + }, + { + "appid": 2213550, + "normalized_name": "フックと鎧獣" + }, + { + "appid": 2213560, + "normalized_name": "endrays" + }, + { + "appid": 2213570, + "normalized_name": "excycle" + }, + { + "appid": 2213590, + "normalized_name": "しげるプラネット" + }, + { + "appid": 2213600, + "normalized_name": "medusa" + }, + { + "appid": 2213610, + "normalized_name": "a shaman's ballard" + }, + { + "appid": 2213640, + "normalized_name": "susurye of shadows" + }, + { + "appid": 2213650, + "normalized_name": "pincol" + }, + { + "appid": 2213660, + "normalized_name": "succubus summon" + }, + { + "appid": 2213680, + "normalized_name": "blocktiful" + }, + { + "appid": 2213700, + "normalized_name": "sintopia" + }, + { + "appid": 2213710, + "normalized_name": "highway to heal" + }, + { + "appid": 2213730, + "normalized_name": "shovelbear" + }, + { + "appid": 2213770, + "normalized_name": "mopgarden's veggie cart" + }, + { + "appid": 2213830, + "normalized_name": "the fallen night" + }, + { + "appid": 2213850, + "normalized_name": "list game of candles" + }, + { + "appid": 2213880, + "normalized_name": "the future ends" + }, + { + "appid": 2213890, + "normalized_name": "breu shadow hunt" + }, + { + "appid": 2213910, + "normalized_name": "rune it out" + }, + { + "appid": 2213920, + "normalized_name": "carrying carrots" + }, + { + "appid": 2213930, + "normalized_name": "survive and revenge" + }, + { + "appid": 2213950, + "normalized_name": "a game you can afford in this economy" + }, + { + "appid": 2213980, + "normalized_name": "caverns of mars recharged" + }, + { + "appid": 2213990, + "normalized_name": "my last 20" + }, + { + "appid": 2214000, + "normalized_name": "top racer collection" + }, + { + "appid": 2214010, + "normalized_name": "slime evolution" + }, + { + "appid": 2214020, + "normalized_name": "reflections of life spindle of fate collector's" + }, + { + "appid": 2214030, + "normalized_name": "aim expert" + }, + { + "appid": 2214040, + "normalized_name": "the humans meet the ancestors" + }, + { + "appid": 2214050, + "normalized_name": "dwarven mercenaries" + }, + { + "appid": 2214060, + "normalized_name": "shifted heart" + }, + { + "appid": 2214090, + "normalized_name": "hyper shapes" + }, + { + "appid": 2214120, + "normalized_name": "furry glory" + }, + { + "appid": 2214130, + "normalized_name": "furry immersion" + }, + { + "appid": 2214140, + "normalized_name": "tsubaki hata" + }, + { + "appid": 2214150, + "normalized_name": "pichi girl" + }, + { + "appid": 2214160, + "normalized_name": "stream runners heroes" + }, + { + "appid": 2214170, + "normalized_name": "wyoming winter" + }, + { + "appid": 2214180, + "normalized_name": "grimfield mystery" + }, + { + "appid": 2214220, + "normalized_name": "trench tales" + }, + { + "appid": 2214250, + "normalized_name": "falsepine" + }, + { + "appid": 2214260, + "normalized_name": "metal war" + }, + { + "appid": 2214320, + "normalized_name": "bone born" + }, + { + "appid": 2214360, + "normalized_name": "encounter of island(心岛)" + }, + { + "appid": 2214410, + "normalized_name": "birds vs dragons" + }, + { + "appid": 2214420, + "normalized_name": "九域异传(金乌劫)" + }, + { + "appid": 2214430, + "normalized_name": "星辰封神" + }, + { + "appid": 2214440, + "normalized_name": "noah in a dream" + }, + { + "appid": 2214460, + "normalized_name": "project feline" + }, + { + "appid": 2214470, + "normalized_name": "heroes" + }, + { + "appid": 2214480, + "normalized_name": "すいころ" + }, + { + "appid": 2214500, + "normalized_name": "x invader prologue" + }, + { + "appid": 2214570, + "normalized_name": "adventures of red and carmine" + }, + { + "appid": 2214590, + "normalized_name": "mushroom collector simulator" + }, + { + "appid": 2214620, + "normalized_name": "wizmans world re;try" + }, + { + "appid": 2214650, + "normalized_name": "rolando deluxe" + }, + { + "appid": 2214840, + "normalized_name": "the shadow over route 80" + }, + { + "appid": 2214860, + "normalized_name": "look for connecting stars" + }, + { + "appid": 2214870, + "normalized_name": "southern legends the temple defenders" + }, + { + "appid": 2214880, + "normalized_name": "europa" + }, + { + "appid": 2214890, + "normalized_name": "commander modern war" + }, + { + "appid": 2214900, + "normalized_name": "arcane tower defense" + }, + { + "appid": 2214940, + "normalized_name": "a slime in time" + }, + { + "appid": 2214950, + "normalized_name": "躲猫猫" + }, + { + "appid": 2214970, + "normalized_name": "get to the gate" + }, + { + "appid": 2215020, + "normalized_name": "maze monsters" + }, + { + "appid": 2215050, + "normalized_name": "cancelled" + }, + { + "appid": 2215060, + "normalized_name": "conquer humanity" + }, + { + "appid": 2215080, + "normalized_name": "twin mind nobody's here collector's" + }, + { + "appid": 2215120, + "normalized_name": "妖之梦" + }, + { + "appid": 2215180, + "normalized_name": "virago herstory" + }, + { + "appid": 2215190, + "normalized_name": "nanowar cells vs virus" + }, + { + "appid": 2215220, + "normalized_name": "jewel match winter wonderland 2 collector's" + }, + { + "appid": 2215260, + "normalized_name": "scott pilgrim vs. the world the game –" + }, + { + "appid": 2215270, + "normalized_name": "army troop" + }, + { + "appid": 2215280, + "normalized_name": "spikerman x" + }, + { + "appid": 2215290, + "normalized_name": "我在终点线等你" + }, + { + "appid": 2215300, + "normalized_name": "cheers!" + }, + { + "appid": 2215330, + "normalized_name": "speluncaphobia" + }, + { + "appid": 2215340, + "normalized_name": "shishi timeless prelude" + }, + { + "appid": 2215390, + "normalized_name": "five nights at freddy's secret of the mimic" + }, + { + "appid": 2215410, + "normalized_name": "anime city" + }, + { + "appid": 2215430, + "normalized_name": "ghost of tsushima director's cut" + }, + { + "appid": 2215460, + "normalized_name": "efpiyes" + }, + { + "appid": 2215500, + "normalized_name": "frogurai" + }, + { + "appid": 2215540, + "normalized_name": "colossal cave" + }, + { + "appid": 2215570, + "normalized_name": "retail wars" + }, + { + "appid": 2215590, + "normalized_name": "30 50 feral hogs" + }, + { + "appid": 2215650, + "normalized_name": "that time i got reincarnated as a succubus" + }, + { + "appid": 2215670, + "normalized_name": "subject f 011" + }, + { + "appid": 2215690, + "normalized_name": "click real fast" + }, + { + "appid": 2215710, + "normalized_name": "trinity of the fabled" + }, + { + "appid": 2215750, + "normalized_name": "brave the dungeon" + }, + { + "appid": 2215780, + "normalized_name": "抵御者 defender" + }, + { + "appid": 2215790, + "normalized_name": "gräuel" + }, + { + "appid": 2215820, + "normalized_name": "late photographer 6" + }, + { + "appid": 2215910, + "normalized_name": "metaball multiplayer basketball" + }, + { + "appid": 2215980, + "normalized_name": "finger trees" + }, + { + "appid": 2216000, + "normalized_name": "artificial" + }, + { + "appid": 2216010, + "normalized_name": "winter" + }, + { + "appid": 2216040, + "normalized_name": "how we know we're alive" + }, + { + "appid": 2216060, + "normalized_name": "another bar game" + }, + { + "appid": 2216090, + "normalized_name": "zabata!" + }, + { + "appid": 2216110, + "normalized_name": "枪神出击" + }, + { + "appid": 2216120, + "normalized_name": "magicube" + }, + { + "appid": 2216130, + "normalized_name": "沉默的蟋蟀" + }, + { + "appid": 2216160, + "normalized_name": "the ugly ducling" + }, + { + "appid": 2216170, + "normalized_name": "yummy girls 2" + }, + { + "appid": 2216180, + "normalized_name": "the swarm" + }, + { + "appid": 2216190, + "normalized_name": "stel" + }, + { + "appid": 2216240, + "normalized_name": "business war erp sandbox simulation" + }, + { + "appid": 2216250, + "normalized_name": "beta max" + }, + { + "appid": 2216260, + "normalized_name": "white sands" + }, + { + "appid": 2216270, + "normalized_name": "traveler the ai story" + }, + { + "appid": 2216290, + "normalized_name": "kitchen confidence" + }, + { + "appid": 2216320, + "normalized_name": "eggcelerate! to the north pole" + }, + { + "appid": 2216360, + "normalized_name": "disaster band" + }, + { + "appid": 2216370, + "normalized_name": "keeper of the valley" + }, + { + "appid": 2216430, + "normalized_name": "muscle giants" + }, + { + "appid": 2216440, + "normalized_name": "dark desire 6" + }, + { + "appid": 2216460, + "normalized_name": "prospect" + }, + { + "appid": 2216510, + "normalized_name": "postapo" + }, + { + "appid": 2216560, + "normalized_name": "bubble siege" + }, + { + "appid": 2216570, + "normalized_name": "project null" + }, + { + "appid": 2216580, + "normalized_name": "lost in darkness" + }, + { + "appid": 2216600, + "normalized_name": "korea dynasty (조선메타실록)" + }, + { + "appid": 2216650, + "normalized_name": "a slime and a civil war" + }, + { + "appid": 2216660, + "normalized_name": "mortal glory 2" + }, + { + "appid": 2216670, + "normalized_name": "diegotc toolbox" + }, + { + "appid": 2216690, + "normalized_name": "turret girl" + }, + { + "appid": 2216700, + "normalized_name": "decks of power" + }, + { + "appid": 2216710, + "normalized_name": "the last saviour search of truth" + }, + { + "appid": 2216750, + "normalized_name": "clay soldiers" + }, + { + "appid": 2216770, + "normalized_name": "joy of programming software engineering simulator" + }, + { + "appid": 2216830, + "normalized_name": "the jackbox party pack 10" + }, + { + "appid": 2216840, + "normalized_name": "backrooms no return" + }, + { + "appid": 2216850, + "normalized_name": "battle vision network" + }, + { + "appid": 2216860, + "normalized_name": "the gray man" + }, + { + "appid": 2216910, + "normalized_name": "金縛りkanashibari" + }, + { + "appid": 2216960, + "normalized_name": "super psycho baseball" + }, + { + "appid": 2216970, + "normalized_name": "hand simulator aliens" + }, + { + "appid": 2216980, + "normalized_name": "リフトピアもうひとのせ!" + }, + { + "appid": 2217000, + "normalized_name": "rivals of aether ii" + }, + { + "appid": 2217010, + "normalized_name": "titanic terror" + }, + { + "appid": 2217030, + "normalized_name": "off the tracks" + }, + { + "appid": 2217040, + "normalized_name": "far dawn" + }, + { + "appid": 2217060, + "normalized_name": "graceward" + }, + { + "appid": 2217100, + "normalized_name": "emma in the library" + }, + { + "appid": 2217180, + "normalized_name": "camellia vr" + }, + { + "appid": 2217210, + "normalized_name": "hentai nurse" + }, + { + "appid": 2217220, + "normalized_name": "抓根宝" + }, + { + "appid": 2217270, + "normalized_name": "王子斗恶龙3 绝望" + }, + { + "appid": 2217420, + "normalized_name": "aqua kitty udx" + }, + { + "appid": 2217440, + "normalized_name": "pair of stamps" + }, + { + "appid": 2217450, + "normalized_name": "stellar echoes" + }, + { + "appid": 2217530, + "normalized_name": "engine roar" + }, + { + "appid": 2217540, + "normalized_name": "3 households" + }, + { + "appid": 2217550, + "normalized_name": "wizard's wheel 2" + }, + { + "appid": 2217560, + "normalized_name": "sudden market" + }, + { + "appid": 2217580, + "normalized_name": "new star gp" + }, + { + "appid": 2217590, + "normalized_name": "àrengard invasion" + }, + { + "appid": 2217680, + "normalized_name": "kapital punishment 22xx" + }, + { + "appid": 2217720, + "normalized_name": "oxide room 208" + }, + { + "appid": 2217730, + "normalized_name": "theblu" + }, + { + "appid": 2217740, + "normalized_name": "kitty survivors rogues of catmere" + }, + { + "appid": 2217770, + "normalized_name": "h3x@g0n@l" + }, + { + "appid": 2217780, + "normalized_name": "esports jigsaw puzzles" + }, + { + "appid": 2217790, + "normalized_name": "cathexis" + }, + { + "appid": 2217800, + "normalized_name": "digital eclipse arcade invasion of the buffet snatchers" + }, + { + "appid": 2217810, + "normalized_name": "gachi space orgasm" + }, + { + "appid": 2217820, + "normalized_name": "mythlands dragon flight" + }, + { + "appid": 2217840, + "normalized_name": "in the backrooms" + }, + { + "appid": 2217860, + "normalized_name": "covert ultra" + }, + { + "appid": 2217880, + "normalized_name": "sexy sliders" + }, + { + "appid": 2217910, + "normalized_name": "neosprint" + }, + { + "appid": 2217980, + "normalized_name": "sex adventures cuckold gym" + }, + { + "appid": 2218030, + "normalized_name": "princess quest" + }, + { + "appid": 2218060, + "normalized_name": "backdraft" + }, + { + "appid": 2218090, + "normalized_name": "for goodness sake" + }, + { + "appid": 2218120, + "normalized_name": "colorway antics" + }, + { + "appid": 2218130, + "normalized_name": "threadbound" + }, + { + "appid": 2218190, + "normalized_name": "xaladia rise of the space pirates x2" + }, + { + "appid": 2218200, + "normalized_name": "herewith" + }, + { + "appid": 2218210, + "normalized_name": "the paladin & the succubi servant" + }, + { + "appid": 2218270, + "normalized_name": "samurai survivor undefeated blade" + }, + { + "appid": 2218290, + "normalized_name": "理想の恋人になりなさいっ! my dream lover" + }, + { + "appid": 2218300, + "normalized_name": "メンヘラアンサンブル needy girlfriends" + }, + { + "appid": 2218320, + "normalized_name": "boobsxboobs" + }, + { + "appid": 2218340, + "normalized_name": "ideal gas" + }, + { + "appid": 2218370, + "normalized_name": "thunderbolt poker" + }, + { + "appid": 2218400, + "normalized_name": "greedland" + }, + { + "appid": 2218420, + "normalized_name": "miss kawaii 3" + }, + { + "appid": 2218440, + "normalized_name": "tod fragments special fun" + }, + { + "appid": 2218460, + "normalized_name": "bunny guys!" + }, + { + "appid": 2218500, + "normalized_name": "vector wave" + }, + { + "appid": 2218540, + "normalized_name": "heavy duty construction" + }, + { + "appid": 2218570, + "normalized_name": "idle interstellar factory 2" + }, + { + "appid": 2218620, + "normalized_name": "out of nowhere" + }, + { + "appid": 2218630, + "normalized_name": "festive finds happy holidays calendar" + }, + { + "appid": 2218660, + "normalized_name": "onefold taxi simulator" + }, + { + "appid": 2218680, + "normalized_name": "interregnum false prophet" + }, + { + "appid": 2218690, + "normalized_name": "monster hide" + }, + { + "appid": 2218720, + "normalized_name": "ecosphere prologue" + }, + { + "appid": 2218740, + "normalized_name": "schnee" + }, + { + "appid": 2218750, + "normalized_name": "halls of torment" + }, + { + "appid": 2218760, + "normalized_name": "0xff" + }, + { + "appid": 2218770, + "normalized_name": "meat puppet" + }, + { + "appid": 2218780, + "normalized_name": "the epic fishhead adventure" + }, + { + "appid": 2218800, + "normalized_name": "sex adventures kinky bondage" + }, + { + "appid": 2218830, + "normalized_name": "grandtraveler" + }, + { + "appid": 2218840, + "normalized_name": "the children's friend" + }, + { + "appid": 2218850, + "normalized_name": "1 day later escape zombie hospital" + }, + { + "appid": 2218890, + "normalized_name": "against all odds" + }, + { + "appid": 2218900, + "normalized_name": "darker tides" + }, + { + "appid": 2218910, + "normalized_name": "chains of time" + }, + { + "appid": 2218930, + "normalized_name": "shut up and dance special" + }, + { + "appid": 2218950, + "normalized_name": "derision" + }, + { + "appid": 2218970, + "normalized_name": "plains of pain" + }, + { + "appid": 2218980, + "normalized_name": "sperma" + }, + { + "appid": 2219000, + "normalized_name": "a promise best left unkept" + }, + { + "appid": 2219020, + "normalized_name": "soccer board" + }, + { + "appid": 2219050, + "normalized_name": "long steel" + }, + { + "appid": 2219120, + "normalized_name": "for the love of jamie" + }, + { + "appid": 2219130, + "normalized_name": "the janitor" + }, + { + "appid": 2219140, + "normalized_name": "riboud and fairies 吕布与仙女" + }, + { + "appid": 2219150, + "normalized_name": "mua" + }, + { + "appid": 2219160, + "normalized_name": "a christmas yarn" + }, + { + "appid": 2219170, + "normalized_name": "out here alone" + }, + { + "appid": 2219180, + "normalized_name": "balance 97.261/100" + }, + { + "appid": 2219190, + "normalized_name": "balance 100" + }, + { + "appid": 2219240, + "normalized_name": "sisypush" + }, + { + "appid": 2219270, + "normalized_name": "sleep" + }, + { + "appid": 2219280, + "normalized_name": "the infernal masquerade" + }, + { + "appid": 2219360, + "normalized_name": "string along" + }, + { + "appid": 2219370, + "normalized_name": "kiro ii the wizards guild" + }, + { + "appid": 2219390, + "normalized_name": "imperial ambitions" + }, + { + "appid": 2219410, + "normalized_name": "warlord" + }, + { + "appid": 2219450, + "normalized_name": "seer's gambit" + }, + { + "appid": 2219470, + "normalized_name": "memories" + }, + { + "appid": 2219480, + "normalized_name": "fashion holiday a game of texas hold 'em" + }, + { + "appid": 2219520, + "normalized_name": "isolated room" + }, + { + "appid": 2219530, + "normalized_name": "objector" + }, + { + "appid": 2219580, + "normalized_name": "spaceflight factory prologue" + }, + { + "appid": 2219600, + "normalized_name": "the ravendree oracle" + }, + { + "appid": 2219620, + "normalized_name": "oni oneesan" + }, + { + "appid": 2219640, + "normalized_name": "kanji drive" + }, + { + "appid": 2219660, + "normalized_name": "edemn" + }, + { + "appid": 2219670, + "normalized_name": "legends reborn age of chance" + }, + { + "appid": 2219690, + "normalized_name": "dominator idle" + }, + { + "appid": 2219730, + "normalized_name": "the origin of hope" + }, + { + "appid": 2219800, + "normalized_name": "mechaneer resta's grand adventure" + }, + { + "appid": 2219810, + "normalized_name": "pixel town akanemachi mystery" + }, + { + "appid": 2219820, + "normalized_name": "kunoichi demon slayers" + }, + { + "appid": 2219830, + "normalized_name": "ricky's rockin' arcade" + }, + { + "appid": 2219840, + "normalized_name": "last escape dead complex" + }, + { + "appid": 2219850, + "normalized_name": "cartomantic" + }, + { + "appid": 2219880, + "normalized_name": "animal academy" + }, + { + "appid": 2219890, + "normalized_name": "the mute house" + }, + { + "appid": 2219910, + "normalized_name": "pueblo" + }, + { + "appid": 2219930, + "normalized_name": "laruaville 4 christmas match 3 puzzle" + }, + { + "appid": 2219960, + "normalized_name": "颈椎拯救者 neck savior" + }, + { + "appid": 2219970, + "normalized_name": "hentai aim trainer 2" + }, + { + "appid": 2219990, + "normalized_name": "hell miner" + }, + { + "appid": 2220040, + "normalized_name": "eye of d'akess" + }, + { + "appid": 2220060, + "normalized_name": "ducky bouncy" + }, + { + "appid": 2220070, + "normalized_name": "encoded war" + }, + { + "appid": 2220080, + "normalized_name": "crystal ball critters" + }, + { + "appid": 2220100, + "normalized_name": "joe dungeon" + }, + { + "appid": 2220110, + "normalized_name": "zoe the exhibitionist" + }, + { + "appid": 2220170, + "normalized_name": "2d dawg 2" + }, + { + "appid": 2220180, + "normalized_name": "題名のないゲーム理学会" + }, + { + "appid": 2220200, + "normalized_name": "drift with your pals" + }, + { + "appid": 2220260, + "normalized_name": "math world vr" + }, + { + "appid": 2220280, + "normalized_name": "code wizard java" + }, + { + "appid": 2220320, + "normalized_name": "space mercenary defense force" + }, + { + "appid": 2220330, + "normalized_name": "the spectator" + }, + { + "appid": 2220340, + "normalized_name": "dungeon furry" + }, + { + "appid": 2220350, + "normalized_name": "i commissioned some bees (advent)" + }, + { + "appid": 2220360, + "normalized_name": "paper lily chapter 1" + }, + { + "appid": 2220390, + "normalized_name": "the year of the carrot" + }, + { + "appid": 2220400, + "normalized_name": "elevenses" + }, + { + "appid": 2220420, + "normalized_name": "project regolith" + }, + { + "appid": 2220450, + "normalized_name": "embracing darkness" + }, + { + "appid": 2220480, + "normalized_name": "burst hero" + }, + { + "appid": 2220500, + "normalized_name": "project vts" + }, + { + "appid": 2220520, + "normalized_name": "zero g racer drone fpv arcade game" + }, + { + "appid": 2220570, + "normalized_name": "dwarves mining idle" + }, + { + "appid": 2220580, + "normalized_name": "conga cat" + }, + { + "appid": 2220590, + "normalized_name": "华夏五千年" + }, + { + "appid": 2220600, + "normalized_name": "craftia's defender" + }, + { + "appid": 2220660, + "normalized_name": "chiyo" + }, + { + "appid": 2220690, + "normalized_name": "life of slime" + }, + { + "appid": 2220710, + "normalized_name": "联盟花园大作战" + }, + { + "appid": 2220730, + "normalized_name": "game of rollink" + }, + { + "appid": 2220750, + "normalized_name": "color invader vr" + }, + { + "appid": 2220770, + "normalized_name": "walk and stroll" + }, + { + "appid": 2220810, + "normalized_name": "spire of glory" + }, + { + "appid": 2220850, + "normalized_name": "factor y" + }, + { + "appid": 2220860, + "normalized_name": "tsurugihime" + }, + { + "appid": 2220870, + "normalized_name": "fantasy survivors" + }, + { + "appid": 2220970, + "normalized_name": "calm cove" + }, + { + "appid": 2220980, + "normalized_name": "错误之事" + }, + { + "appid": 2221010, + "normalized_name": "redrum" + }, + { + "appid": 2221050, + "normalized_name": "neanderthallica" + }, + { + "appid": 2221060, + "normalized_name": "nephilim" + }, + { + "appid": 2221080, + "normalized_name": "umbrella escape" + }, + { + "appid": 2221090, + "normalized_name": "escape of pig" + }, + { + "appid": 2221100, + "normalized_name": "just one" + }, + { + "appid": 2221130, + "normalized_name": "jump adventures" + }, + { + "appid": 2221150, + "normalized_name": "button vr" + }, + { + "appid": 2221160, + "normalized_name": "arena battle" + }, + { + "appid": 2221170, + "normalized_name": "shalnor legends 2 trials of thunder" + }, + { + "appid": 2221190, + "normalized_name": "neon blast" + }, + { + "appid": 2221220, + "normalized_name": "finalcypher" + }, + { + "appid": 2221230, + "normalized_name": "candyboy" + }, + { + "appid": 2221270, + "normalized_name": "arkero vr" + }, + { + "appid": 2221390, + "normalized_name": "damned 2" + }, + { + "appid": 2221440, + "normalized_name": "kip and odosan" + }, + { + "appid": 2221490, + "normalized_name": "tom clancy’s the division 2" + }, + { + "appid": 2221500, + "normalized_name": "tostchu" + }, + { + "appid": 2221530, + "normalized_name": "vangaro tactics" + }, + { + "appid": 2221540, + "normalized_name": "extinction / zombie i̇nvasion 1" + }, + { + "appid": 2221620, + "normalized_name": "finding america the pacific northwest" + }, + { + "appid": 2221630, + "normalized_name": "nature escapes 2" + }, + { + "appid": 2221690, + "normalized_name": "afterschool adventurers club" + }, + { + "appid": 2221740, + "normalized_name": "vatazombie" + }, + { + "appid": 2221750, + "normalized_name": "star mars" + }, + { + "appid": 2221760, + "normalized_name": "oak adventure the maze" + }, + { + "appid": 2221780, + "normalized_name": "metavoidal" + }, + { + "appid": 2221790, + "normalized_name": "幻境咖啡馆 dreamland coffee" + }, + { + "appid": 2221800, + "normalized_name": "spell slinger" + }, + { + "appid": 2221820, + "normalized_name": "7 sins lost in labyrinth" + }, + { + "appid": 2221830, + "normalized_name": "market simulator" + }, + { + "appid": 2221840, + "normalized_name": "sex and the furry titty 3 come inside sweety" + }, + { + "appid": 2221850, + "normalized_name": "ebitapes" + }, + { + "appid": 2221910, + "normalized_name": "绚想争战" + }, + { + "appid": 2221920, + "normalized_name": "immortals fenyx rising" + }, + { + "appid": 2221980, + "normalized_name": "budget cuts" + }, + { + "appid": 2222020, + "normalized_name": "dungeon renovation simulator" + }, + { + "appid": 2222030, + "normalized_name": "strato breaker" + }, + { + "appid": 2222090, + "normalized_name": "rekt party" + }, + { + "appid": 2222150, + "normalized_name": "paintball 3 candy match factory" + }, + { + "appid": 2222160, + "normalized_name": "martial fire" + }, + { + "appid": 2222170, + "normalized_name": "crazy city driving" + }, + { + "appid": 2222180, + "normalized_name": "car parking 2" + }, + { + "appid": 2222190, + "normalized_name": "way of the wizard" + }, + { + "appid": 2222200, + "normalized_name": "springblades" + }, + { + "appid": 2222220, + "normalized_name": "facevalue" + }, + { + "appid": 2222240, + "normalized_name": "the darkest paths the house" + }, + { + "appid": 2222250, + "normalized_name": "mini knight's journey" + }, + { + "appid": 2222260, + "normalized_name": "gummy dummy battles" + }, + { + "appid": 2222310, + "normalized_name": "disavowed" + }, + { + "appid": 2222320, + "normalized_name": "silicon zephyr" + }, + { + "appid": 2222370, + "normalized_name": "knocking up my nympho neighbors" + }, + { + "appid": 2222420, + "normalized_name": "the curse of eclipse" + }, + { + "appid": 2222480, + "normalized_name": "clash robot detective" + }, + { + "appid": 2222490, + "normalized_name": "new year break" + }, + { + "appid": 2222520, + "normalized_name": "the last element" + }, + { + "appid": 2222530, + "normalized_name": "the motorcycle" + }, + { + "appid": 2222540, + "normalized_name": "bit.trip rerunner" + }, + { + "appid": 2222550, + "normalized_name": "feast or fracture" + }, + { + "appid": 2222670, + "normalized_name": "mystery case files the last resort collector's" + }, + { + "appid": 2222680, + "normalized_name": "markus ritter ghosts of the past" + }, + { + "appid": 2222690, + "normalized_name": "legends of mythology" + }, + { + "appid": 2222710, + "normalized_name": "the awakening program" + }, + { + "appid": 2222750, + "normalized_name": "hidden mars" + }, + { + "appid": 2222770, + "normalized_name": "mimi the cat mimi's scratcher" + }, + { + "appid": 2222830, + "normalized_name": "chasmal" + }, + { + "appid": 2222850, + "normalized_name": "shiitake showdown" + }, + { + "appid": 2222860, + "normalized_name": "forbidden love with my wife's sister" + }, + { + "appid": 2222870, + "normalized_name": "my boss' wife is my ex ~reluctantly drowning in sex deals after hours~" + }, + { + "appid": 2222890, + "normalized_name": "obscene medical records of a married nurse" + }, + { + "appid": 2222910, + "normalized_name": "hentai devilgirl" + }, + { + "appid": 2222920, + "normalized_name": "the cloud bazaar" + }, + { + "appid": 2222930, + "normalized_name": "project ryme" + }, + { + "appid": 2222950, + "normalized_name": "captain velvet meteor the jump+ dimensions" + }, + { + "appid": 2222970, + "normalized_name": "blood wizard odyssey" + }, + { + "appid": 2223000, + "normalized_name": "nonogram girl's sweets ii" + }, + { + "appid": 2223010, + "normalized_name": "dragonhill vr" + }, + { + "appid": 2223020, + "normalized_name": "glass heart" + }, + { + "appid": 2223040, + "normalized_name": "snowball fight game" + }, + { + "appid": 2223130, + "normalized_name": "tactical command" + }, + { + "appid": 2223150, + "normalized_name": "marquee candle" + }, + { + "appid": 2223170, + "normalized_name": "blow away survivors" + }, + { + "appid": 2223220, + "normalized_name": "choppie's" + }, + { + "appid": 2223230, + "normalized_name": "spherum 3d" + }, + { + "appid": 2223260, + "normalized_name": "project box" + }, + { + "appid": 2223270, + "normalized_name": "big butt bobby" + }, + { + "appid": 2223280, + "normalized_name": "april's diary" + }, + { + "appid": 2223300, + "normalized_name": "the lost ashford ring" + }, + { + "appid": 2223310, + "normalized_name": "tales of grimace" + }, + { + "appid": 2223320, + "normalized_name": "super sean 008 xelar's revenge" + }, + { + "appid": 2223350, + "normalized_name": "sacred zodongga defense" + }, + { + "appid": 2223380, + "normalized_name": "twistingo bird paradise collector's" + }, + { + "appid": 2223420, + "normalized_name": "voice of belldona" + }, + { + "appid": 2223430, + "normalized_name": "tenkei * love the last august star 苍蓝恋诗:殆尽的八月之星 视觉小说/galgame" + }, + { + "appid": 2223440, + "normalized_name": "pj masks power heroes mighty alliance" + }, + { + "appid": 2223450, + "normalized_name": "illegal excavation" + }, + { + "appid": 2223460, + "normalized_name": "last eclipse" + }, + { + "appid": 2223470, + "normalized_name": "skeleton runner" + }, + { + "appid": 2223480, + "normalized_name": "infinicity" + }, + { + "appid": 2223530, + "normalized_name": "jeju's fantasy" + }, + { + "appid": 2223540, + "normalized_name": "hot 21" + }, + { + "appid": 2223550, + "normalized_name": "ecocoru euclidean constructions compass & ruler" + }, + { + "appid": 2223570, + "normalized_name": "custom goban" + }, + { + "appid": 2223590, + "normalized_name": "2112td tower defense survival" + }, + { + "appid": 2223600, + "normalized_name": "fantasy mercenary wars" + }, + { + "appid": 2223620, + "normalized_name": "stressed out" + }, + { + "appid": 2223630, + "normalized_name": "squadron" + }, + { + "appid": 2223640, + "normalized_name": "towers turrets turtles" + }, + { + "appid": 2223700, + "normalized_name": "driftwood" + }, + { + "appid": 2223740, + "normalized_name": "agatha christie hercule poirot the london case" + }, + { + "appid": 2223760, + "normalized_name": "my daily pets" + }, + { + "appid": 2223800, + "normalized_name": "jessica's life the beginning" + }, + { + "appid": 2223810, + "normalized_name": "hedgewars" + }, + { + "appid": 2223820, + "normalized_name": "supermarket times" + }, + { + "appid": 2223840, + "normalized_name": "the casting of frank stone" + }, + { + "appid": 2223850, + "normalized_name": "crystal maidens unleashed" + }, + { + "appid": 2223880, + "normalized_name": "hunter revenge" + }, + { + "appid": 2223900, + "normalized_name": "backrooms the game" + }, + { + "appid": 2223920, + "normalized_name": "globe drone" + }, + { + "appid": 2223930, + "normalized_name": "cartastrophe" + }, + { + "appid": 2223980, + "normalized_name": "nomad drive" + }, + { + "appid": 2224000, + "normalized_name": "mountain madness" + }, + { + "appid": 2224020, + "normalized_name": "malovmetaart metaverse" + }, + { + "appid": 2224030, + "normalized_name": "flutter away" + }, + { + "appid": 2224060, + "normalized_name": "catrophy trail" + }, + { + "appid": 2224090, + "normalized_name": "kairos" + }, + { + "appid": 2224120, + "normalized_name": "zombie rollerz the last ship" + }, + { + "appid": 2224160, + "normalized_name": "citadel stormer 2" + }, + { + "appid": 2224200, + "normalized_name": "heirs of the kings" + }, + { + "appid": 2224260, + "normalized_name": "bloody heaven" + }, + { + "appid": 2224330, + "normalized_name": "outbreak 2030" + }, + { + "appid": 2224350, + "normalized_name": "名媛模拟器" + }, + { + "appid": 2224400, + "normalized_name": "bbirthday visual novel" + }, + { + "appid": 2224430, + "normalized_name": "satay shop tycoon" + }, + { + "appid": 2224440, + "normalized_name": "warung nasi campur" + }, + { + "appid": 2224450, + "normalized_name": "biplane baron 2 flying ace" + }, + { + "appid": 2224470, + "normalized_name": "bubu kong goes bananas" + }, + { + "appid": 2224510, + "normalized_name": "grombiez save souls" + }, + { + "appid": 2224520, + "normalized_name": "no13shelter" + }, + { + "appid": 2224530, + "normalized_name": "gas station tycoon" + }, + { + "appid": 2224540, + "normalized_name": "hamsterball potato's great escape" + }, + { + "appid": 2224550, + "normalized_name": "legend of apophyxis" + }, + { + "appid": 2224560, + "normalized_name": "international secret agent" + }, + { + "appid": 2224570, + "normalized_name": "billy in bubble trouble" + }, + { + "appid": 2224600, + "normalized_name": "boat simulator" + }, + { + "appid": 2224610, + "normalized_name": "project planet earth vs humanity" + }, + { + "appid": 2224640, + "normalized_name": "artisan td" + }, + { + "appid": 2224660, + "normalized_name": "animal survivors" + }, + { + "appid": 2224680, + "normalized_name": "our land" + }, + { + "appid": 2224740, + "normalized_name": "dreamworks all star kart racing" + }, + { + "appid": 2224750, + "normalized_name": "b1700" + }, + { + "appid": 2224760, + "normalized_name": "island bender" + }, + { + "appid": 2224780, + "normalized_name": "cosmo blaster" + }, + { + "appid": 2224790, + "normalized_name": "pien ぴえん & paon ぱおん plus" + }, + { + "appid": 2224830, + "normalized_name": "ansoku" + }, + { + "appid": 2224850, + "normalized_name": "empty shell prologue" + }, + { + "appid": 2224860, + "normalized_name": "unholy angel" + }, + { + "appid": 2224870, + "normalized_name": "glimpse" + }, + { + "appid": 2224900, + "normalized_name": "poly shooter" + }, + { + "appid": 2224910, + "normalized_name": "auver" + }, + { + "appid": 2225010, + "normalized_name": "plague london 1665" + }, + { + "appid": 2225020, + "normalized_name": "outerlands guilds" + }, + { + "appid": 2225030, + "normalized_name": "anubis clicker" + }, + { + "appid": 2225060, + "normalized_name": "black idea | فكره سوداء" + }, + { + "appid": 2225070, + "normalized_name": "trackmania" + }, + { + "appid": 2225080, + "normalized_name": "jump dash soar" + }, + { + "appid": 2225090, + "normalized_name": "cascadence" + }, + { + "appid": 2225130, + "normalized_name": "turtle racer" + }, + { + "appid": 2225210, + "normalized_name": "grape juice city" + }, + { + "appid": 2225220, + "normalized_name": "courier chief tycoon" + }, + { + "appid": 2225250, + "normalized_name": "slobbish dragon princess 3" + }, + { + "appid": 2225260, + "normalized_name": "shark rain" + }, + { + "appid": 2225290, + "normalized_name": "beau & bow" + }, + { + "appid": 2225300, + "normalized_name": "war card game_uvr" + }, + { + "appid": 2225340, + "normalized_name": "majo mail" + }, + { + "appid": 2225370, + "normalized_name": "as long as it's not illegal act i" + }, + { + "appid": 2225430, + "normalized_name": "v hunter puzzler dx" + }, + { + "appid": 2225450, + "normalized_name": "starway baraider vr free trial" + }, + { + "appid": 2225460, + "normalized_name": "word x word" + }, + { + "appid": 2225470, + "normalized_name": "妖闻录 strange" + }, + { + "appid": 2225480, + "normalized_name": "remore infested kingdom" + }, + { + "appid": 2225500, + "normalized_name": "contract bridge solo" + }, + { + "appid": 2225510, + "normalized_name": "evil castle & princess" + }, + { + "appid": 2225520, + "normalized_name": "爆裂!スイーツランド panic in sweets land" + }, + { + "appid": 2225530, + "normalized_name": "drawing from memory" + }, + { + "appid": 2225560, + "normalized_name": "maid_hunter" + }, + { + "appid": 2225600, + "normalized_name": "race code" + }, + { + "appid": 2225610, + "normalized_name": "ready steady ship!" + }, + { + "appid": 2225680, + "normalized_name": "sand in a box" + }, + { + "appid": 2225710, + "normalized_name": "to gather" + }, + { + "appid": 2225730, + "normalized_name": "mannytd" + }, + { + "appid": 2225740, + "normalized_name": "starstruck" + }, + { + "appid": 2225750, + "normalized_name": "tiny troopers joint ops xl" + }, + { + "appid": 2225800, + "normalized_name": "3х9 царство дорога приключений" + }, + { + "appid": 2225830, + "normalized_name": "cash cow dx" + }, + { + "appid": 2225870, + "normalized_name": "before the dawn" + }, + { + "appid": 2225890, + "normalized_name": "neo shock" + }, + { + "appid": 2225960, + "normalized_name": "noobs are coming" + }, + { + "appid": 2225990, + "normalized_name": "gambling paradise the escape call vr" + }, + { + "appid": 2226000, + "normalized_name": "temanava" + }, + { + "appid": 2226020, + "normalized_name": "sugar rush" + }, + { + "appid": 2226030, + "normalized_name": "out of three" + }, + { + "appid": 2226080, + "normalized_name": "robbie's tale" + }, + { + "appid": 2226090, + "normalized_name": "athena code" + }, + { + "appid": 2226110, + "normalized_name": "where is a toilet!?" + }, + { + "appid": 2226140, + "normalized_name": "crypt architect" + }, + { + "appid": 2226150, + "normalized_name": "table party" + }, + { + "appid": 2226160, + "normalized_name": "entropoly" + }, + { + "appid": 2226190, + "normalized_name": "my arcade" + }, + { + "appid": 2226280, + "normalized_name": "bapbap" + }, + { + "appid": 2226310, + "normalized_name": "orc survivors" + }, + { + "appid": 2226350, + "normalized_name": "cat + dog" + }, + { + "appid": 2226420, + "normalized_name": "project slime" + }, + { + "appid": 2226430, + "normalized_name": "craftcraft fantasy merchant simulator" + }, + { + "appid": 2226440, + "normalized_name": "the black knight" + }, + { + "appid": 2226460, + "normalized_name": "montamer" + }, + { + "appid": 2226470, + "normalized_name": "demonic pack" + }, + { + "appid": 2226480, + "normalized_name": "yummy girls 3" + }, + { + "appid": 2226500, + "normalized_name": "monsterlabshooter" + }, + { + "appid": 2226510, + "normalized_name": "rune monsters" + }, + { + "appid": 2226550, + "normalized_name": "redumption" + }, + { + "appid": 2226610, + "normalized_name": "aggregator elevator system" + }, + { + "appid": 2226640, + "normalized_name": "december 1914" + }, + { + "appid": 2226660, + "normalized_name": "plague of yamorn" + }, + { + "appid": 2226680, + "normalized_name": "sahara storms wwiii" + }, + { + "appid": 2226690, + "normalized_name": "villaging" + }, + { + "appid": 2226700, + "normalized_name": "挂姬恶魔 idle devils" + }, + { + "appid": 2226730, + "normalized_name": "stand alone" + }, + { + "appid": 2226750, + "normalized_name": "potion brew co op" + }, + { + "appid": 2226780, + "normalized_name": "rimward basilisk" + }, + { + "appid": 2226800, + "normalized_name": "eon of the green area delta (prologue)" + }, + { + "appid": 2226810, + "normalized_name": "substitute priest" + }, + { + "appid": 2226830, + "normalized_name": "royale battle warzone" + }, + { + "appid": 2226840, + "normalized_name": "the eagle keita" + }, + { + "appid": 2226870, + "normalized_name": "i frog ot" + }, + { + "appid": 2226890, + "normalized_name": "hentai pussy 5" + }, + { + "appid": 2226910, + "normalized_name": "prizma puzzle prime" + }, + { + "appid": 2226920, + "normalized_name": "road domination" + }, + { + "appid": 2226930, + "normalized_name": "esotarot vr" + }, + { + "appid": 2226940, + "normalized_name": "space haste 2" + }, + { + "appid": 2226960, + "normalized_name": "dissolved chapter one" + }, + { + "appid": 2226980, + "normalized_name": "iron diamond" + }, + { + "appid": 2226990, + "normalized_name": "crab digger" + }, + { + "appid": 2227030, + "normalized_name": "penny larceny gig economy supervillain" + }, + { + "appid": 2227040, + "normalized_name": "tales of polygonia" + }, + { + "appid": 2227070, + "normalized_name": "kittenmouse summer of love" + }, + { + "appid": 2227080, + "normalized_name": "snow moon flower" + }, + { + "appid": 2227100, + "normalized_name": "jerma's big adventure 2" + }, + { + "appid": 2227110, + "normalized_name": "hot milf 10 bikini" + }, + { + "appid": 2227130, + "normalized_name": "caves of lore" + }, + { + "appid": 2227150, + "normalized_name": "gwen the hen 64" + }, + { + "appid": 2227160, + "normalized_name": "无生之荣" + }, + { + "appid": 2227170, + "normalized_name": "東方謎縁塔 ~ forsaken labyrinth." + }, + { + "appid": 2227180, + "normalized_name": "water 2050" + }, + { + "appid": 2227220, + "normalized_name": "ball animals" + }, + { + "appid": 2227240, + "normalized_name": "grassassins" + }, + { + "appid": 2227290, + "normalized_name": "mysterious lab" + }, + { + "appid": 2227320, + "normalized_name": "signiverux" + }, + { + "appid": 2227340, + "normalized_name": "dfl2" + }, + { + "appid": 2227380, + "normalized_name": "air attack" + }, + { + "appid": 2227410, + "normalized_name": "lion the last homeland" + }, + { + "appid": 2227440, + "normalized_name": "unlimited fight strike" + }, + { + "appid": 2227450, + "normalized_name": "医療無法人おおやぶ死科クリニック" + }, + { + "appid": 2227480, + "normalized_name": "space academy" + }, + { + "appid": 2227490, + "normalized_name": "codingpack" + }, + { + "appid": 2227500, + "normalized_name": "dig down" + }, + { + "appid": 2227520, + "normalized_name": "hookscrap" + }, + { + "appid": 2227600, + "normalized_name": "hentai! waifu puzzles" + }, + { + "appid": 2227620, + "normalized_name": "furry tale" + }, + { + "appid": 2227630, + "normalized_name": "furry dream" + }, + { + "appid": 2227660, + "normalized_name": "the pharaoh's labyrinth" + }, + { + "appid": 2227690, + "normalized_name": "vampiric tower remix" + }, + { + "appid": 2227700, + "normalized_name": "astrodrop" + }, + { + "appid": 2227710, + "normalized_name": "the rocket jumper" + }, + { + "appid": 2227810, + "normalized_name": "qisah tomang cycle ends" + }, + { + "appid": 2227820, + "normalized_name": "山海:传承" + }, + { + "appid": 2227830, + "normalized_name": "do_or_die hunt to survive" + }, + { + "appid": 2227840, + "normalized_name": "the last door" + }, + { + "appid": 2227860, + "normalized_name": "異境迷走" + }, + { + "appid": 2227870, + "normalized_name": "akayo therapy" + }, + { + "appid": 2227900, + "normalized_name": "終わりの鐘が鳴る前に chapter.1 plus" + }, + { + "appid": 2227940, + "normalized_name": "魔法猫咪降临我身边" + }, + { + "appid": 2227960, + "normalized_name": "active opposition" + }, + { + "appid": 2227990, + "normalized_name": "etherion online" + }, + { + "appid": 2228000, + "normalized_name": "hazuki dies she has no name" + }, + { + "appid": 2228010, + "normalized_name": "right and down and dice" + }, + { + "appid": 2228030, + "normalized_name": "dr. fetus' mean meat machine" + }, + { + "appid": 2228040, + "normalized_name": "legacy of the pact" + }, + { + "appid": 2228090, + "normalized_name": "under fairy hill" + }, + { + "appid": 2228100, + "normalized_name": "zamakan" + }, + { + "appid": 2228120, + "normalized_name": "圣维丹物语" + }, + { + "appid": 2228140, + "normalized_name": "nox chapter 1" + }, + { + "appid": 2228150, + "normalized_name": "the soul's choice" + }, + { + "appid": 2228210, + "normalized_name": "project astra dominium" + }, + { + "appid": 2228220, + "normalized_name": "variant 22" + }, + { + "appid": 2228250, + "normalized_name": "endurance motorsport series" + }, + { + "appid": 2228280, + "normalized_name": "memoriapolis" + }, + { + "appid": 2228310, + "normalized_name": "ghost fake" + }, + { + "appid": 2228320, + "normalized_name": "winfray" + }, + { + "appid": 2228330, + "normalized_name": "package dudes" + }, + { + "appid": 2228340, + "normalized_name": "burning secrets a bara visual novel" + }, + { + "appid": 2228350, + "normalized_name": "cucumberunner" + }, + { + "appid": 2228380, + "normalized_name": "star mercenary" + }, + { + "appid": 2228390, + "normalized_name": "fairy fencer f refrain chord" + }, + { + "appid": 2228400, + "normalized_name": "unsolved case fatal clue collector's" + }, + { + "appid": 2228410, + "normalized_name": "lost hotel" + }, + { + "appid": 2228430, + "normalized_name": "skeletery" + }, + { + "appid": 2228450, + "normalized_name": "tank commander" + }, + { + "appid": 2228460, + "normalized_name": "necrotyper" + }, + { + "appid": 2228480, + "normalized_name": "sweep serf" + }, + { + "appid": 2228490, + "normalized_name": "atomic owl" + }, + { + "appid": 2228500, + "normalized_name": "asfalto" + }, + { + "appid": 2228710, + "normalized_name": "where is billy?" + }, + { + "appid": 2228720, + "normalized_name": "hack 'n' stack" + }, + { + "appid": 2228830, + "normalized_name": "those who crawl" + }, + { + "appid": 2228840, + "normalized_name": "whispers of west grove" + }, + { + "appid": 2228890, + "normalized_name": "a lonely cabin trip" + }, + { + "appid": 2228900, + "normalized_name": "it is a good knight to die" + }, + { + "appid": 2228910, + "normalized_name": "nofsky zombies" + }, + { + "appid": 2228940, + "normalized_name": "lucky simulation project" + }, + { + "appid": 2228960, + "normalized_name": "ninja vs zombies" + }, + { + "appid": 2228980, + "normalized_name": "christmas cats" + }, + { + "appid": 2229030, + "normalized_name": "little nemo and the nightmare fiends" + }, + { + "appid": 2229050, + "normalized_name": "chainmail bikini" + }, + { + "appid": 2229110, + "normalized_name": "a familiar world" + }, + { + "appid": 2229120, + "normalized_name": "colonizer" + }, + { + "appid": 2229150, + "normalized_name": "beach cafe caribbean sand" + }, + { + "appid": 2229160, + "normalized_name": "heroic city" + }, + { + "appid": 2229230, + "normalized_name": "hotbunz" + }, + { + "appid": 2229250, + "normalized_name": "今宵、妖しい口づけを ~綺龍・千影・雪之丞編~" + }, + { + "appid": 2229260, + "normalized_name": "eden eternal 聖境伝説" + }, + { + "appid": 2229300, + "normalized_name": "iragon" + }, + { + "appid": 2229320, + "normalized_name": "pulse codex ep" + }, + { + "appid": 2229350, + "normalized_name": "someday you'll return director's cut" + }, + { + "appid": 2229370, + "normalized_name": "titan force" + }, + { + "appid": 2229380, + "normalized_name": "dance fight" + }, + { + "appid": 2229420, + "normalized_name": "cleaning queens" + }, + { + "appid": 2229440, + "normalized_name": "the alien space cat" + }, + { + "appid": 2229450, + "normalized_name": "hellfight" + }, + { + "appid": 2229470, + "normalized_name": "korlax escape!" + }, + { + "appid": 2229480, + "normalized_name": "the heroines' last anthem" + }, + { + "appid": 2229490, + "normalized_name": "iragon prologue" + }, + { + "appid": 2229500, + "normalized_name": "grunt1991" + }, + { + "appid": 2229520, + "normalized_name": "justice seeker unsafe data" + }, + { + "appid": 2229560, + "normalized_name": "zet zillions" + }, + { + "appid": 2229570, + "normalized_name": "sex & drift" + }, + { + "appid": 2229590, + "normalized_name": "shape shipter" + }, + { + "appid": 2229670, + "normalized_name": "lucy´s world" + }, + { + "appid": 2229680, + "normalized_name": "fap & cum 💦" + }, + { + "appid": 2229710, + "normalized_name": "syren and friends roast the dev" + }, + { + "appid": 2229720, + "normalized_name": "tarmac legends" + }, + { + "appid": 2229730, + "normalized_name": "new spring survival" + }, + { + "appid": 2229740, + "normalized_name": "two timin' towers" + }, + { + "appid": 2229790, + "normalized_name": "yomaia" + }, + { + "appid": 2229830, + "normalized_name": "command & conquer and the covert operations" + }, + { + "appid": 2229840, + "normalized_name": "command & conquer red alert counterstrike and the aftermath" + }, + { + "appid": 2229850, + "normalized_name": "command & conquer red alert 2 and yuri’s revenge" + }, + { + "appid": 2229870, + "normalized_name": "command & conquer generals" + }, + { + "appid": 2229880, + "normalized_name": "command & conquer tiberian sun and firestorm" + }, + { + "appid": 2229890, + "normalized_name": "command & conquer renegade" + }, + { + "appid": 2229900, + "normalized_name": "chimera custom xg" + }, + { + "appid": 2229910, + "normalized_name": "demiurgos" + }, + { + "appid": 2229920, + "normalized_name": "temporian" + }, + { + "appid": 2229930, + "normalized_name": "squirrel university simulator" + }, + { + "appid": 2229940, + "normalized_name": "[redacted]" + }, + { + "appid": 2229950, + "normalized_name": "armed farm" + }, + { + "appid": 2229960, + "normalized_name": "nightmare of nady" + }, + { + "appid": 2229990, + "normalized_name": "dark night with floppa" + }, + { + "appid": 2230000, + "normalized_name": "1week" + }, + { + "appid": 2230030, + "normalized_name": "resultarias" + }, + { + "appid": 2230040, + "normalized_name": "2 many pixels" + }, + { + "appid": 2230050, + "normalized_name": "karakuri kengeki" + }, + { + "appid": 2230060, + "normalized_name": "night&scape" + }, + { + "appid": 2230070, + "normalized_name": "house of lizards" + }, + { + "appid": 2230080, + "normalized_name": "ballads and romances" + }, + { + "appid": 2230090, + "normalized_name": "furry uwu" + }, + { + "appid": 2230110, + "normalized_name": "fae farm" + }, + { + "appid": 2230120, + "normalized_name": "inky & blinky" + }, + { + "appid": 2230130, + "normalized_name": "collateral damage" + }, + { + "appid": 2230160, + "normalized_name": "末日循环 doomsday cycle" + }, + { + "appid": 2230170, + "normalized_name": "the cenozoic era" + }, + { + "appid": 2230180, + "normalized_name": "escape dream" + }, + { + "appid": 2230210, + "normalized_name": "hentai ojou" + }, + { + "appid": 2230220, + "normalized_name": "wilderless" + }, + { + "appid": 2230250, + "normalized_name": "labyrinth of chaos" + }, + { + "appid": 2230280, + "normalized_name": "方寸文明" + }, + { + "appid": 2230290, + "normalized_name": "dadoo twists turns and mischiefs" + }, + { + "appid": 2230330, + "normalized_name": "pot farmer" + }, + { + "appid": 2230370, + "normalized_name": "东方 月兔狂想曲" + }, + { + "appid": 2230410, + "normalized_name": "eaten by darkness" + }, + { + "appid": 2230420, + "normalized_name": "revenant in memory of the day" + }, + { + "appid": 2230430, + "normalized_name": "better save souls" + }, + { + "appid": 2230450, + "normalized_name": "moses & plato last train to clawville" + }, + { + "appid": 2230500, + "normalized_name": "project snowbound©" + }, + { + "appid": 2230530, + "normalized_name": "hotel clover" + }, + { + "appid": 2230540, + "normalized_name": "open fishing xl" + }, + { + "appid": 2230560, + "normalized_name": "僵尸特攻队" + }, + { + "appid": 2230590, + "normalized_name": "sushi clicker" + }, + { + "appid": 2230620, + "normalized_name": "maeldor quest of the artifact" + }, + { + "appid": 2230630, + "normalized_name": "web or dead" + }, + { + "appid": 2230650, + "normalized_name": "tevi" + }, + { + "appid": 2230680, + "normalized_name": "止境 ends" + }, + { + "appid": 2230720, + "normalized_name": "a mountain of one" + }, + { + "appid": 2230740, + "normalized_name": "gazolinas" + }, + { + "appid": 2230770, + "normalized_name": "overrun survivors" + }, + { + "appid": 2230790, + "normalized_name": "scary pictures yavez seven deadly sins" + }, + { + "appid": 2230800, + "normalized_name": "secret diaries manage a manor" + }, + { + "appid": 2230820, + "normalized_name": "sands" + }, + { + "appid": 2230830, + "normalized_name": "cop city" + }, + { + "appid": 2230840, + "normalized_name": "qlewds" + }, + { + "appid": 2230860, + "normalized_name": "stay alive paradise city" + }, + { + "appid": 2230940, + "normalized_name": "chuck the metalhead in medieval hell" + }, + { + "appid": 2230950, + "normalized_name": "monster mash" + }, + { + "appid": 2230960, + "normalized_name": "sports renovations" + }, + { + "appid": 2230980, + "normalized_name": "caribbean legend" + }, + { + "appid": 2230990, + "normalized_name": "project sphinx" + }, + { + "appid": 2231000, + "normalized_name": "match day & international match day (c64/cpc/spectrum)" + }, + { + "appid": 2231010, + "normalized_name": "fetish locator week three" + }, + { + "appid": 2231040, + "normalized_name": "coloring game studio" + }, + { + "appid": 2231060, + "normalized_name": "druidwalker" + }, + { + "appid": 2231070, + "normalized_name": "150 floors" + }, + { + "appid": 2231080, + "normalized_name": "sword of fargoal" + }, + { + "appid": 2231130, + "normalized_name": "lunar mad dogs" + }, + { + "appid": 2231160, + "normalized_name": "the past" + }, + { + "appid": 2231170, + "normalized_name": "gravity castle" + }, + { + "appid": 2231180, + "normalized_name": "dust dwellers" + }, + { + "appid": 2231190, + "normalized_name": "magical delicacy" + }, + { + "appid": 2231230, + "normalized_name": "solar survivors" + }, + { + "appid": 2231270, + "normalized_name": "new stars" + }, + { + "appid": 2231280, + "normalized_name": "spirit slider" + }, + { + "appid": 2231300, + "normalized_name": "dodgy deliveries" + }, + { + "appid": 2231310, + "normalized_name": "epic dragon" + }, + { + "appid": 2231380, + "normalized_name": "tom clancy's ghost recon breakpoint" + }, + { + "appid": 2231450, + "normalized_name": "pizza tower" + }, + { + "appid": 2231460, + "normalized_name": "roman sands re build" + }, + { + "appid": 2231490, + "normalized_name": "squared" + }, + { + "appid": 2231520, + "normalized_name": "touch and hypnosis ~ kunochi ninja kunai ~" + }, + { + "appid": 2231530, + "normalized_name": "idle drift kings" + }, + { + "appid": 2231540, + "normalized_name": "oztrich an adventure" + }, + { + "appid": 2231550, + "normalized_name": "the traveler's path" + }, + { + "appid": 2231560, + "normalized_name": "araka~jk exorcist horror rpg" + }, + { + "appid": 2231580, + "normalized_name": "we are the universe" + }, + { + "appid": 2231610, + "normalized_name": "secret dimension" + }, + { + "appid": 2231630, + "normalized_name": "chorus of the night" + }, + { + "appid": 2231680, + "normalized_name": "of sense and soul" + }, + { + "appid": 2231730, + "normalized_name": "stay still" + }, + { + "appid": 2231750, + "normalized_name": "the wonderful adventures of sip" + }, + { + "appid": 2231790, + "normalized_name": "pan'orama prologue" + }, + { + "appid": 2231800, + "normalized_name": "penguin with a pumpgun" + }, + { + "appid": 2231820, + "normalized_name": "sheep lad" + }, + { + "appid": 2231840, + "normalized_name": "ghost reaper" + }, + { + "appid": 2231850, + "normalized_name": "hoppy hop" + }, + { + "appid": 2231870, + "normalized_name": "persha and the magic labyrinth arabian nyaights" + }, + { + "appid": 2231880, + "normalized_name": "gacha party" + }, + { + "appid": 2231890, + "normalized_name": "the test secrets of the soul" + }, + { + "appid": 2231900, + "normalized_name": "fateweaver the alchemist's quandary" + }, + { + "appid": 2231920, + "normalized_name": "die känguru verschwörung" + }, + { + "appid": 2231940, + "normalized_name": "move on" + }, + { + "appid": 2231960, + "normalized_name": "lustful vampire" + }, + { + "appid": 2231970, + "normalized_name": "sex on the beach" + }, + { + "appid": 2232030, + "normalized_name": "the couch game" + }, + { + "appid": 2232040, + "normalized_name": "exalted seracthon" + }, + { + "appid": 2232060, + "normalized_name": "desktop dungeons rewind daily demo" + }, + { + "appid": 2232100, + "normalized_name": "towards the unknown" + }, + { + "appid": 2232110, + "normalized_name": "forrest paper doll" + }, + { + "appid": 2232120, + "normalized_name": "answenarium" + }, + { + "appid": 2232180, + "normalized_name": "backrooms descent multiplayer horror" + }, + { + "appid": 2232200, + "normalized_name": "first snow" + }, + { + "appid": 2232240, + "normalized_name": "office girls and games" + }, + { + "appid": 2232260, + "normalized_name": "daring detectives a new life!" + }, + { + "appid": 2232270, + "normalized_name": "awakening into the stars" + }, + { + "appid": 2232290, + "normalized_name": "from the rain" + }, + { + "appid": 2232320, + "normalized_name": "clean the sea!" + }, + { + "appid": 2232350, + "normalized_name": "shatter" + }, + { + "appid": 2232380, + "normalized_name": "glory to the robots!" + }, + { + "appid": 2232420, + "normalized_name": "cape of storms" + }, + { + "appid": 2232600, + "normalized_name": "anomaly exit" + }, + { + "appid": 2232650, + "normalized_name": "expand & exterminate terrytorial disputes endless base defense" + }, + { + "appid": 2232660, + "normalized_name": "call of the abyss" + }, + { + "appid": 2232680, + "normalized_name": "the big one" + }, + { + "appid": 2232760, + "normalized_name": "the last bot" + }, + { + "appid": 2232770, + "normalized_name": "captain kalani" + }, + { + "appid": 2232780, + "normalized_name": "first sexy night 2 second date" + }, + { + "appid": 2232790, + "normalized_name": "futanari sex naughty visit" + }, + { + "appid": 2232800, + "normalized_name": "swarm fortress" + }, + { + "appid": 2232810, + "normalized_name": "sex adventures swingers ca" + }, + { + "appid": 2232830, + "normalized_name": "indecent wife hana gravure" + }, + { + "appid": 2232840, + "normalized_name": "garten of banban" + }, + { + "appid": 2232870, + "normalized_name": "the backrooms origins" + }, + { + "appid": 2232880, + "normalized_name": "灵兽江湖" + }, + { + "appid": 2232900, + "normalized_name": "sisters of sodomorrah" + }, + { + "appid": 2232950, + "normalized_name": "bobo the cat" + }, + { + "appid": 2232970, + "normalized_name": "sisters hypnosis sex" + }, + { + "appid": 2233020, + "normalized_name": "the quintessential quintuplets omoide vr ~yotsuba~" + }, + { + "appid": 2233040, + "normalized_name": "superjumpworld rage" + }, + { + "appid": 2233080, + "normalized_name": "the wizard" + }, + { + "appid": 2233090, + "normalized_name": "chaosstorm strategy" + }, + { + "appid": 2233110, + "normalized_name": "mazecraft" + }, + { + "appid": 2233120, + "normalized_name": "a quiet place the road ahead" + }, + { + "appid": 2233140, + "normalized_name": "双线交锋:新世界" + }, + { + "appid": 2233150, + "normalized_name": "angola '86" + }, + { + "appid": 2233170, + "normalized_name": "re activated" + }, + { + "appid": 2233220, + "normalized_name": "spirits of the silicium forest" + }, + { + "appid": 2233240, + "normalized_name": "cyberheroes arena dx" + }, + { + "appid": 2233270, + "normalized_name": "god busters who watches the watchers?" + }, + { + "appid": 2233300, + "normalized_name": "miskal" + }, + { + "appid": 2233310, + "normalized_name": "cyber miner" + }, + { + "appid": 2233320, + "normalized_name": "trouble in space" + }, + { + "appid": 2233330, + "normalized_name": "cat dash go" + }, + { + "appid": 2233360, + "normalized_name": "snake" + }, + { + "appid": 2233370, + "normalized_name": "diced pilot" + }, + { + "appid": 2233390, + "normalized_name": "nuclear sub" + }, + { + "appid": 2233420, + "normalized_name": "sinner's tavern" + }, + { + "appid": 2233430, + "normalized_name": "horse reality" + }, + { + "appid": 2233540, + "normalized_name": "hentai slide puzzle" + }, + { + "appid": 2233550, + "normalized_name": "wind peaks 2" + }, + { + "appid": 2233560, + "normalized_name": "samba space parade" + }, + { + "appid": 2233570, + "normalized_name": "torrential" + }, + { + "appid": 2233580, + "normalized_name": "monkey doo" + }, + { + "appid": 2233590, + "normalized_name": "mummification" + }, + { + "appid": 2233600, + "normalized_name": "brothel simulator 🍓" + }, + { + "appid": 2233610, + "normalized_name": "mortal trace" + }, + { + "appid": 2233640, + "normalized_name": "bunker breakout" + }, + { + "appid": 2233660, + "normalized_name": "defaced dark abyss" + }, + { + "appid": 2233670, + "normalized_name": "hello lucia" + }, + { + "appid": 2233700, + "normalized_name": "last night in zombie village" + }, + { + "appid": 2233720, + "normalized_name": "not a thief simulator" + }, + { + "appid": 2233730, + "normalized_name": "aery the lost hero" + }, + { + "appid": 2233740, + "normalized_name": "caladria chronicles volume 2" + }, + { + "appid": 2233750, + "normalized_name": "koltera" + }, + { + "appid": 2233770, + "normalized_name": "the thief the witch the toad and the mushroom." + }, + { + "appid": 2233780, + "normalized_name": "gamblix" + }, + { + "appid": 2233790, + "normalized_name": "legendary creatures 2" + }, + { + "appid": 2233820, + "normalized_name": "vengeful castle" + }, + { + "appid": 2233830, + "normalized_name": "bit oz wonder crusher" + }, + { + "appid": 2233840, + "normalized_name": "lewd delivery" + }, + { + "appid": 2233850, + "normalized_name": "furry sex 2" + }, + { + "appid": 2233860, + "normalized_name": "タイピングで愛を伝えよ" + }, + { + "appid": 2233870, + "normalized_name": "bdsm love" + }, + { + "appid": 2233890, + "normalized_name": "prison wars" + }, + { + "appid": 2233900, + "normalized_name": "catacombs the beginning" + }, + { + "appid": 2233920, + "normalized_name": "woolly boy and the circus" + }, + { + "appid": 2233950, + "normalized_name": "farm in another world" + }, + { + "appid": 2233970, + "normalized_name": "temple of steel" + }, + { + "appid": 2233980, + "normalized_name": "agent team simulator" + }, + { + "appid": 2234000, + "normalized_name": "dawn of griseo" + }, + { + "appid": 2234020, + "normalized_name": "iso racer" + }, + { + "appid": 2234060, + "normalized_name": "warrior paint 2005 goty" + }, + { + "appid": 2234080, + "normalized_name": "a cats life" + }, + { + "appid": 2234100, + "normalized_name": "deadly platform" + }, + { + "appid": 2234140, + "normalized_name": "eat the rich" + }, + { + "appid": 2234150, + "normalized_name": "backrooms apprehension" + }, + { + "appid": 2234160, + "normalized_name": "planetary destruction" + }, + { + "appid": 2234200, + "normalized_name": "heroes of eternal quest" + }, + { + "appid": 2234230, + "normalized_name": "parsec" + }, + { + "appid": 2234250, + "normalized_name": "battlereign" + }, + { + "appid": 2234300, + "normalized_name": "gt vr" + }, + { + "appid": 2234310, + "normalized_name": "tumble" + }, + { + "appid": 2234320, + "normalized_name": "you're fired! revenge!" + }, + { + "appid": 2234370, + "normalized_name": "grinded meat" + }, + { + "appid": 2234380, + "normalized_name": "the doll sitter" + }, + { + "appid": 2234400, + "normalized_name": "eleonor's nightmares" + }, + { + "appid": 2234420, + "normalized_name": "flower memories" + }, + { + "appid": 2234440, + "normalized_name": "idle party leader" + }, + { + "appid": 2234470, + "normalized_name": "football streaker simulator" + }, + { + "appid": 2234490, + "normalized_name": "兩餸飯 | this this rice" + }, + { + "appid": 2234530, + "normalized_name": "pera episode 1 fjord island" + }, + { + "appid": 2234550, + "normalized_name": "the unknown" + }, + { + "appid": 2234570, + "normalized_name": "我是翼装人(wingsuit hero)" + }, + { + "appid": 2234600, + "normalized_name": "see you later" + }, + { + "appid": 2234630, + "normalized_name": "the lost uncle" + }, + { + "appid": 2234640, + "normalized_name": "native hunter" + }, + { + "appid": 2234650, + "normalized_name": "zotenhold" + }, + { + "appid": 2234670, + "normalized_name": "not us" + }, + { + "appid": 2234690, + "normalized_name": "день который забрал тебя" + }, + { + "appid": 2234720, + "normalized_name": "project sail" + }, + { + "appid": 2234740, + "normalized_name": "extermihate" + }, + { + "appid": 2234760, + "normalized_name": "star surfer" + }, + { + "appid": 2234770, + "normalized_name": "lachesis or atropos" + }, + { + "appid": 2234780, + "normalized_name": "ai kills all humans" + }, + { + "appid": 2234790, + "normalized_name": "search" + }, + { + "appid": 2234820, + "normalized_name": "that's a lot of pixels!" + }, + { + "appid": 2234870, + "normalized_name": "our little chase" + }, + { + "appid": 2234890, + "normalized_name": "urbex night security" + }, + { + "appid": 2234920, + "normalized_name": "holiday haywire" + }, + { + "appid": 2234930, + "normalized_name": "the last hair" + }, + { + "appid": 2234950, + "normalized_name": "path of yuusha" + }, + { + "appid": 2234960, + "normalized_name": "pygmalion" + }, + { + "appid": 2235010, + "normalized_name": "green cube" + }, + { + "appid": 2235020, + "normalized_name": "contra operation galuga" + }, + { + "appid": 2235090, + "normalized_name": "回溯勇者/backdate hero" + }, + { + "appid": 2235150, + "normalized_name": "brain show party game" + }, + { + "appid": 2235180, + "normalized_name": "型神:初见" + }, + { + "appid": 2235200, + "normalized_name": "neon abyss 2" + }, + { + "appid": 2235210, + "normalized_name": "cook fest" + }, + { + "appid": 2235220, + "normalized_name": "speed madness" + }, + { + "appid": 2235230, + "normalized_name": "super cycle (c64/cpc/spectrum)" + }, + { + "appid": 2235240, + "normalized_name": "taskpals" + }, + { + "appid": 2235340, + "normalized_name": "urban flow" + }, + { + "appid": 2235350, + "normalized_name": "family business" + }, + { + "appid": 2235360, + "normalized_name": "tactanks" + }, + { + "appid": 2235370, + "normalized_name": "cosmic overdrive" + }, + { + "appid": 2235390, + "normalized_name": "detective rosie morgan death at a dinner party" + }, + { + "appid": 2235400, + "normalized_name": "fairy tale academy" + }, + { + "appid": 2235430, + "normalized_name": "holstin" + }, + { + "appid": 2235440, + "normalized_name": "my little pony a zephyr heights mystery" + }, + { + "appid": 2235450, + "normalized_name": "marble ball racing 2022" + }, + { + "appid": 2235490, + "normalized_name": "restaurant builder" + }, + { + "appid": 2235500, + "normalized_name": "forest of relics" + }, + { + "appid": 2235530, + "normalized_name": "the green room experiment (episode 1)" + }, + { + "appid": 2235550, + "normalized_name": "glum" + }, + { + "appid": 2235570, + "normalized_name": "massive defense" + }, + { + "appid": 2235610, + "normalized_name": "sakura mirror" + }, + { + "appid": 2235620, + "normalized_name": "lobby cam by bryn oh" + }, + { + "appid": 2235670, + "normalized_name": "changeling charade" + }, + { + "appid": 2235690, + "normalized_name": "crochet cavalcade" + }, + { + "appid": 2235730, + "normalized_name": "meow master battle for catnip" + }, + { + "appid": 2235750, + "normalized_name": "ghost killers the revenge of the sucker fun" + }, + { + "appid": 2235760, + "normalized_name": "tanks battle" + }, + { + "appid": 2235780, + "normalized_name": "hidden post apocalyptic 3 top down 3d" + }, + { + "appid": 2235790, + "normalized_name": "howl of iron" + }, + { + "appid": 2235800, + "normalized_name": "futapunk 2069" + }, + { + "appid": 2235810, + "normalized_name": "异世界的雪与奇迹" + }, + { + "appid": 2235820, + "normalized_name": "jack holmes master of puppets" + }, + { + "appid": 2236060, + "normalized_name": "anthro heat" + }, + { + "appid": 2236070, + "normalized_name": "peaks of yore" + }, + { + "appid": 2236080, + "normalized_name": "1941 operation barbarossa" + }, + { + "appid": 2236100, + "normalized_name": "the lonker" + }, + { + "appid": 2236170, + "normalized_name": "grey galactic" + }, + { + "appid": 2236190, + "normalized_name": "vigilancer 2099" + }, + { + "appid": 2236220, + "normalized_name": "battlemon" + }, + { + "appid": 2236230, + "normalized_name": "christmas stories taxi of miracles collector's" + }, + { + "appid": 2236240, + "normalized_name": "dead unending" + }, + { + "appid": 2236300, + "normalized_name": "grand emprise time travel survival" + }, + { + "appid": 2236450, + "normalized_name": "entrenched" + }, + { + "appid": 2236460, + "normalized_name": "kyōtabi" + }, + { + "appid": 2236480, + "normalized_name": "僵尸(the jiang shi)" + }, + { + "appid": 2236490, + "normalized_name": "lost abroad café a language learning management sim" + }, + { + "appid": 2236590, + "normalized_name": "psionic awake" + }, + { + "appid": 2236600, + "normalized_name": "clad in iron war of the pacific 1879" + }, + { + "appid": 2236680, + "normalized_name": "llamasoft the jeff minter story" + }, + { + "appid": 2236790, + "normalized_name": "cool cats" + }, + { + "appid": 2236820, + "normalized_name": "anyone there?" + }, + { + "appid": 2236860, + "normalized_name": "basements n' basilisks storms of sorcery" + }, + { + "appid": 2236880, + "normalized_name": "i won't forget hue" + }, + { + "appid": 2236900, + "normalized_name": "oedo trigger!!" + }, + { + "appid": 2236920, + "normalized_name": "save the earth" + }, + { + "appid": 2236930, + "normalized_name": "vmva virtual museum for virtual art" + }, + { + "appid": 2236960, + "normalized_name": "qiybz" + }, + { + "appid": 2237000, + "normalized_name": "mofina island" + }, + { + "appid": 2237010, + "normalized_name": "thankskilling day" + }, + { + "appid": 2237070, + "normalized_name": "deathtide" + }, + { + "appid": 2237090, + "normalized_name": "fast coffee simulator" + }, + { + "appid": 2237120, + "normalized_name": "gravity vr" + }, + { + "appid": 2237150, + "normalized_name": "ladybugs and storm" + }, + { + "appid": 2237190, + "normalized_name": "hellfire" + }, + { + "appid": 2237200, + "normalized_name": "fire shark" + }, + { + "appid": 2237210, + "normalized_name": "dice & spells" + }, + { + "appid": 2237220, + "normalized_name": "cuttlefish" + }, + { + "appid": 2237230, + "normalized_name": "christmas fables holiday guardians collector's" + }, + { + "appid": 2237260, + "normalized_name": "evil tactics" + }, + { + "appid": 2237270, + "normalized_name": "firekrackers" + }, + { + "appid": 2237280, + "normalized_name": "wild growth td" + }, + { + "appid": 2237310, + "normalized_name": "transparent" + }, + { + "appid": 2237320, + "normalized_name": "dwarf delve" + }, + { + "appid": 2237350, + "normalized_name": "100 keys to your heart" + }, + { + "appid": 2237370, + "normalized_name": "cubis" + }, + { + "appid": 2237440, + "normalized_name": "digital eclipse arcade jollyball" + }, + { + "appid": 2237460, + "normalized_name": "last stance a juventures game" + }, + { + "appid": 2237470, + "normalized_name": "bremen hot strings" + }, + { + "appid": 2237480, + "normalized_name": "noxium" + }, + { + "appid": 2237510, + "normalized_name": "polarize" + }, + { + "appid": 2237520, + "normalized_name": "a summer in our hearts" + }, + { + "appid": 2237690, + "normalized_name": "hentai cybergirl" + }, + { + "appid": 2237700, + "normalized_name": "football legend" + }, + { + "appid": 2237710, + "normalized_name": "dead of the sea" + }, + { + "appid": 2237720, + "normalized_name": "grievous survivors" + }, + { + "appid": 2237740, + "normalized_name": "soul covenant" + }, + { + "appid": 2237760, + "normalized_name": "block jumper" + }, + { + "appid": 2237770, + "normalized_name": "mummy rumble vr" + }, + { + "appid": 2237800, + "normalized_name": "dragon's treasure" + }, + { + "appid": 2237810, + "normalized_name": "docile fright" + }, + { + "appid": 2237840, + "normalized_name": "gregor's notebook" + }, + { + "appid": 2237870, + "normalized_name": "biorganic" + }, + { + "appid": 2237940, + "normalized_name": "in the building cats 2" + }, + { + "appid": 2237950, + "normalized_name": "tick tank boom" + }, + { + "appid": 2237970, + "normalized_name": "outpath" + }, + { + "appid": 2237980, + "normalized_name": "outpath first journey" + }, + { + "appid": 2238010, + "normalized_name": "chiki chiki" + }, + { + "appid": 2238040, + "normalized_name": "tiny terry's turbo trip" + }, + { + "appid": 2238070, + "normalized_name": "evergreen the board game" + }, + { + "appid": 2238080, + "normalized_name": "pretty dancer" + }, + { + "appid": 2238110, + "normalized_name": "cosmos survivors prologue" + }, + { + "appid": 2238160, + "normalized_name": "overrider" + }, + { + "appid": 2238170, + "normalized_name": "fortune cookie" + }, + { + "appid": 2238180, + "normalized_name": "idle dice 2" + }, + { + "appid": 2238210, + "normalized_name": "sergeant squidley space cop!" + }, + { + "appid": 2238230, + "normalized_name": "akrivos vip" + }, + { + "appid": 2238240, + "normalized_name": "backrooms mainframe" + }, + { + "appid": 2238260, + "normalized_name": "gigantosaurus dino sports" + }, + { + "appid": 2238310, + "normalized_name": "the cooking class" + }, + { + "appid": 2238320, + "normalized_name": "hiden ruin" + }, + { + "appid": 2238340, + "normalized_name": "lendas do pebol mythic football" + }, + { + "appid": 2238350, + "normalized_name": "autosim 2" + }, + { + "appid": 2238360, + "normalized_name": "you have no time" + }, + { + "appid": 2238400, + "normalized_name": "pizzaboy" + }, + { + "appid": 2238410, + "normalized_name": "the kidnapped escape room" + }, + { + "appid": 2238430, + "normalized_name": "mon yu defeat monsters and gain strong weapons and armor. you may be defeated but don’t give up. become stronger. i believe there will be a day when the heroes defeat the devil king." + }, + { + "appid": 2238440, + "normalized_name": "the last craftsman" + }, + { + "appid": 2238450, + "normalized_name": "pious ari" + }, + { + "appid": 2238470, + "normalized_name": "grimshire" + }, + { + "appid": 2238510, + "normalized_name": "librarium" + }, + { + "appid": 2238620, + "normalized_name": "dr. finklestein's marvelous room" + }, + { + "appid": 2238630, + "normalized_name": "forgotten mines" + }, + { + "appid": 2238660, + "normalized_name": "neuron" + }, + { + "appid": 2238690, + "normalized_name": "chester into the light" + }, + { + "appid": 2238710, + "normalized_name": "australian football coach 2023 24" + }, + { + "appid": 2238740, + "normalized_name": "after stream" + }, + { + "appid": 2238750, + "normalized_name": "lost egg 3 the final" + }, + { + "appid": 2238760, + "normalized_name": "our casual battlefield" + }, + { + "appid": 2238810, + "normalized_name": "《乱步馆》 断崖 precipice" + }, + { + "appid": 2238850, + "normalized_name": "gape kape escape" + }, + { + "appid": 2238860, + "normalized_name": "ninjas in the dungeon" + }, + { + "appid": 2238900, + "normalized_name": "star ocean the second story r" + }, + { + "appid": 2238980, + "normalized_name": "hacker's restart" + }, + { + "appid": 2238990, + "normalized_name": "the heights" + }, + { + "appid": 2239020, + "normalized_name": "pitch silent" + }, + { + "appid": 2239040, + "normalized_name": "尘世界 dust world" + }, + { + "appid": 2239050, + "normalized_name": "poly puzzle animals" + }, + { + "appid": 2239060, + "normalized_name": "勇者起源" + }, + { + "appid": 2239110, + "normalized_name": "mouse dreams" + }, + { + "appid": 2239130, + "normalized_name": "reviver" + }, + { + "appid": 2239140, + "normalized_name": "grapples galore" + }, + { + "appid": 2239150, + "normalized_name": "thronefall" + }, + { + "appid": 2239190, + "normalized_name": "the klown" + }, + { + "appid": 2239200, + "normalized_name": "animal across afrika" + }, + { + "appid": 2239230, + "normalized_name": "epic cards battle 3 (tcg)" + }, + { + "appid": 2239320, + "normalized_name": "the visitor" + }, + { + "appid": 2239340, + "normalized_name": "golem builder" + }, + { + "appid": 2239350, + "normalized_name": "dracula’s vengeance" + }, + { + "appid": 2239360, + "normalized_name": "siheyuan" + }, + { + "appid": 2239420, + "normalized_name": "chess & guns" + }, + { + "appid": 2239450, + "normalized_name": "hexagonal explods" + }, + { + "appid": 2239470, + "normalized_name": "void blitzing" + }, + { + "appid": 2239490, + "normalized_name": "superspective" + }, + { + "appid": 2239520, + "normalized_name": "hazeron starship" + }, + { + "appid": 2239540, + "normalized_name": "the hostel night terrors" + }, + { + "appid": 2239550, + "normalized_name": "watch dogs legion" + }, + { + "appid": 2239640, + "normalized_name": "earthblade" + }, + { + "appid": 2239650, + "normalized_name": "proxos" + }, + { + "appid": 2239670, + "normalized_name": "glory to the heroes" + }, + { + "appid": 2239710, + "normalized_name": "into the dead our darkest days" + }, + { + "appid": 2239730, + "normalized_name": "小厨杂记" + }, + { + "appid": 2239750, + "normalized_name": "gus & stella's stellar adventure" + }, + { + "appid": 2239800, + "normalized_name": "one armed bandit" + }, + { + "appid": 2239820, + "normalized_name": "rabbit hole chapter 1" + }, + { + "appid": 2239830, + "normalized_name": "kingdom islands" + }, + { + "appid": 2239840, + "normalized_name": "venus one galactic overlords" + }, + { + "appid": 2239850, + "normalized_name": "one tap golf vr" + }, + { + "appid": 2239860, + "normalized_name": "culixcupric's temeritus dark scion" + }, + { + "appid": 2239870, + "normalized_name": "small people defense" + }, + { + "appid": 2239930, + "normalized_name": "never immortal" + }, + { + "appid": 2239960, + "normalized_name": "centauri's favourite archer" + }, + { + "appid": 2239990, + "normalized_name": "love n dream 3" + }, + { + "appid": 2240010, + "normalized_name": "fortress vr" + }, + { + "appid": 2240080, + "normalized_name": "spilled!" + }, + { + "appid": 2240090, + "normalized_name": "paper flight beyond time" + }, + { + "appid": 2240100, + "normalized_name": "bumpupghostbuster" + }, + { + "appid": 2240130, + "normalized_name": "towering" + }, + { + "appid": 2240150, + "normalized_name": "summer's gone season 1" + }, + { + "appid": 2240170, + "normalized_name": "environment protection ambassador" + }, + { + "appid": 2240200, + "normalized_name": "最终堡垒finalfort" + }, + { + "appid": 2240220, + "normalized_name": "ordinary day" + }, + { + "appid": 2240240, + "normalized_name": "four hundred catapults" + }, + { + "appid": 2240300, + "normalized_name": "ghouls of divinity" + }, + { + "appid": 2240390, + "normalized_name": "celebrity kombat" + }, + { + "appid": 2240410, + "normalized_name": "super hoopers" + }, + { + "appid": 2240430, + "normalized_name": "resttw" + }, + { + "appid": 2240440, + "normalized_name": "amanda's magic book 5 hansel and gretel" + }, + { + "appid": 2240450, + "normalized_name": "helga the viking warrior 2 ivar's revenge" + }, + { + "appid": 2240470, + "normalized_name": "amanda's magic book 6 aladdin's magic lamp" + }, + { + "appid": 2240480, + "normalized_name": "town in trouble" + }, + { + "appid": 2240530, + "normalized_name": "babbdi" + }, + { + "appid": 2240600, + "normalized_name": "シンセティック・デイズ" + }, + { + "appid": 2240620, + "normalized_name": "unbeatable" + }, + { + "appid": 2240630, + "normalized_name": "sokoball dreams" + }, + { + "appid": 2240660, + "normalized_name": "seventh star" + }, + { + "appid": 2240690, + "normalized_name": "starraver" + }, + { + "appid": 2240700, + "normalized_name": "simple rally" + }, + { + "appid": 2240720, + "normalized_name": "nonotown nonogram logic puzzle" + }, + { + "appid": 2240780, + "normalized_name": "307 racing" + }, + { + "appid": 2240790, + "normalized_name": "sucker for love date to die for" + }, + { + "appid": 2240890, + "normalized_name": "the dwarf" + }, + { + "appid": 2240900, + "normalized_name": "the king's feast" + }, + { + "appid": 2240910, + "normalized_name": "silence in the ca" + }, + { + "appid": 2240920, + "normalized_name": "vaudeville" + }, + { + "appid": 2240940, + "normalized_name": "recovery syndicate" + }, + { + "appid": 2240950, + "normalized_name": "captain carnage" + }, + { + "appid": 2241000, + "normalized_name": "barely working" + }, + { + "appid": 2241020, + "normalized_name": "garbage truck simulator" + }, + { + "appid": 2241130, + "normalized_name": "chess president" + }, + { + "appid": 2241150, + "normalized_name": "shadow hold" + }, + { + "appid": 2241180, + "normalized_name": "spacer rescue to valhalla" + }, + { + "appid": 2241190, + "normalized_name": "christmas luge" + }, + { + "appid": 2241200, + "normalized_name": "dyztopia post human rpg" + }, + { + "appid": 2241220, + "normalized_name": "beneath her starry sky" + }, + { + "appid": 2241230, + "normalized_name": "luciferian the conjuring book" + }, + { + "appid": 2241240, + "normalized_name": "dungeon walk-竜迷宮の管理者-" + }, + { + "appid": 2241250, + "normalized_name": "流浪荒岛" + }, + { + "appid": 2241350, + "normalized_name": "poly memory animals" + }, + { + "appid": 2241360, + "normalized_name": "oli one sneak in" + }, + { + "appid": 2241380, + "normalized_name": "ancient kingdoms" + }, + { + "appid": 2241390, + "normalized_name": "spelp" + }, + { + "appid": 2241410, + "normalized_name": "chex" + }, + { + "appid": 2241440, + "normalized_name": "reditus" + }, + { + "appid": 2241510, + "normalized_name": "fernageddon" + }, + { + "appid": 2241520, + "normalized_name": "click to escape" + }, + { + "appid": 2241540, + "normalized_name": "attack zone" + }, + { + "appid": 2241550, + "normalized_name": "blackroot medieval survival" + }, + { + "appid": 2241560, + "normalized_name": "angel's gear" + }, + { + "appid": 2241580, + "normalized_name": "kirin come" + }, + { + "appid": 2241590, + "normalized_name": "mage ball" + }, + { + "appid": 2241610, + "normalized_name": "voidwatch crosslust" + }, + { + "appid": 2241620, + "normalized_name": "starless hotel" + }, + { + "appid": 2241630, + "normalized_name": "julia a science journey" + }, + { + "appid": 2241660, + "normalized_name": "sessions" + }, + { + "appid": 2241710, + "normalized_name": "gravlist" + }, + { + "appid": 2241740, + "normalized_name": "cosmo's pizzarama" + }, + { + "appid": 2241760, + "normalized_name": "motorcubs rc" + }, + { + "appid": 2241770, + "normalized_name": "sleeping counting sheep" + }, + { + "appid": 2241790, + "normalized_name": "the hidden object guru" + }, + { + "appid": 2241800, + "normalized_name": "snow folks" + }, + { + "appid": 2241860, + "normalized_name": "world of fate" + }, + { + "appid": 2241880, + "normalized_name": "gunslinger top down shooter" + }, + { + "appid": 2241910, + "normalized_name": "sweets pusher friends" + }, + { + "appid": 2241920, + "normalized_name": "stay human" + }, + { + "appid": 2241970, + "normalized_name": "sugar tanks" + }, + { + "appid": 2241980, + "normalized_name": "tanky tanks 2" + }, + { + "appid": 2241990, + "normalized_name": "black hole survivor" + }, + { + "appid": 2242000, + "normalized_name": "bat n' ball" + }, + { + "appid": 2242050, + "normalized_name": "guns'n'wheels" + }, + { + "appid": 2242070, + "normalized_name": "100%hits" + }, + { + "appid": 2242080, + "normalized_name": "just chess" + }, + { + "appid": 2242090, + "normalized_name": "midnight alert" + }, + { + "appid": 2242100, + "normalized_name": "fargone" + }, + { + "appid": 2242110, + "normalized_name": "we are gladiators" + }, + { + "appid": 2242130, + "normalized_name": "summer village" + }, + { + "appid": 2242180, + "normalized_name": "tichi3d" + }, + { + "appid": 2242200, + "normalized_name": "retro kart" + }, + { + "appid": 2242220, + "normalized_name": "forest fire" + }, + { + "appid": 2242240, + "normalized_name": "seed in" + }, + { + "appid": 2242270, + "normalized_name": "captain disaster and the two worlds of riskara" + }, + { + "appid": 2242290, + "normalized_name": "high and dry" + }, + { + "appid": 2242310, + "normalized_name": "folcroft monastery" + }, + { + "appid": 2242320, + "normalized_name": "xdding" + }, + { + "appid": 2242330, + "normalized_name": "bucko" + }, + { + "appid": 2242340, + "normalized_name": "car rental simulator" + }, + { + "appid": 2242360, + "normalized_name": "ferus the dark abyss" + }, + { + "appid": 2242370, + "normalized_name": "aquascaping designer" + }, + { + "appid": 2242420, + "normalized_name": "the showdown effect reloaded" + }, + { + "appid": 2242430, + "normalized_name": "zombies aren't your friends" + }, + { + "appid": 2242440, + "normalized_name": "spellrain" + }, + { + "appid": 2242500, + "normalized_name": "cartoon cagematch" + }, + { + "appid": 2242510, + "normalized_name": "三国大领主" + }, + { + "appid": 2242600, + "normalized_name": "orphus a hentai ccg" + }, + { + "appid": 2242610, + "normalized_name": "time thief" + }, + { + "appid": 2242620, + "normalized_name": "eight winds" + }, + { + "appid": 2242630, + "normalized_name": "last ruler of vicissity" + }, + { + "appid": 2242660, + "normalized_name": "small bird forest" + }, + { + "appid": 2242710, + "normalized_name": "koi x shin ai kanojo" + }, + { + "appid": 2242750, + "normalized_name": "just fight" + }, + { + "appid": 2242760, + "normalized_name": "the escape together" + }, + { + "appid": 2242810, + "normalized_name": "ninety six" + }, + { + "appid": 2242820, + "normalized_name": "paradise cleaning conquering married women through sex" + }, + { + "appid": 2242840, + "normalized_name": "无梦少女 dreamlessgirl" + }, + { + "appid": 2242890, + "normalized_name": "grim knight" + }, + { + "appid": 2242930, + "normalized_name": "haunted tower tower defense" + }, + { + "appid": 2242950, + "normalized_name": "heroes of rome 3 the brotherhood" + }, + { + "appid": 2242970, + "normalized_name": "project tower" + }, + { + "appid": 2242980, + "normalized_name": "happysnowman" + }, + { + "appid": 2243000, + "normalized_name": "medieval tales solitaire" + }, + { + "appid": 2243040, + "normalized_name": "the cleaner" + }, + { + "appid": 2243050, + "normalized_name": "small town detective" + }, + { + "appid": 2243060, + "normalized_name": "moley christmas" + }, + { + "appid": 2243070, + "normalized_name": "kodama battles" + }, + { + "appid": 2243080, + "normalized_name": "grym wonder" + }, + { + "appid": 2243100, + "normalized_name": "幻想乡之玉" + }, + { + "appid": 2243110, + "normalized_name": "empty shell" + }, + { + "appid": 2243130, + "normalized_name": "remy raccoon and the lost temple festive frolics (volume 2)" + }, + { + "appid": 2243140, + "normalized_name": "guns & fishes" + }, + { + "appid": 2243150, + "normalized_name": "failure drill" + }, + { + "appid": 2243220, + "normalized_name": "greenland" + }, + { + "appid": 2243250, + "normalized_name": "moonlight pulse" + }, + { + "appid": 2243260, + "normalized_name": "peoplewillmoney" + }, + { + "appid": 2243320, + "normalized_name": "shinrin yoku" + }, + { + "appid": 2243330, + "normalized_name": "wrapturous adventure (a yuri bdsm theme game)" + }, + { + "appid": 2243370, + "normalized_name": "11 years ago" + }, + { + "appid": 2243380, + "normalized_name": "ugano game" + }, + { + "appid": 2243420, + "normalized_name": "flying 'n frying popcorn dude" + }, + { + "appid": 2243470, + "normalized_name": "3 last chances" + }, + { + "appid": 2243480, + "normalized_name": "the fisherman and the sea" + }, + { + "appid": 2243510, + "normalized_name": "qomp2" + }, + { + "appid": 2243550, + "normalized_name": "vega" + }, + { + "appid": 2243560, + "normalized_name": "\"i know this place..?\" chapter i (prologue)" + }, + { + "appid": 2243570, + "normalized_name": "orc covenant gay bara orc visual novel" + }, + { + "appid": 2243580, + "normalized_name": "food fight culinary combat" + }, + { + "appid": 2243660, + "normalized_name": "cursed fables twisted tower collector's" + }, + { + "appid": 2243670, + "normalized_name": "return to grace" + }, + { + "appid": 2243690, + "normalized_name": "b.c. piezophile" + }, + { + "appid": 2243700, + "normalized_name": "isle of leil" + }, + { + "appid": 2243710, + "normalized_name": "rune factory 3 special" + }, + { + "appid": 2243850, + "normalized_name": "frosty's cold hard produce!" + }, + { + "appid": 2243880, + "normalized_name": "the specter chronicles episode 1 the false prophet" + }, + { + "appid": 2243900, + "normalized_name": "unexpected futa corruption" + }, + { + "appid": 2243920, + "normalized_name": "the 2nd page of the medical examination diary another story of exciting days of me and my senpai" + }, + { + "appid": 2243950, + "normalized_name": "hentai miko" + }, + { + "appid": 2243980, + "normalized_name": "marshmallow imouto succubus" + }, + { + "appid": 2243990, + "normalized_name": "withersworn" + }, + { + "appid": 2244010, + "normalized_name": "seas of strife" + }, + { + "appid": 2244020, + "normalized_name": "riley in the abyss" + }, + { + "appid": 2244030, + "normalized_name": "rubato" + }, + { + "appid": 2244040, + "normalized_name": "little eternal chronicle" + }, + { + "appid": 2244050, + "normalized_name": "paint by pixel" + }, + { + "appid": 2244060, + "normalized_name": "鳞魂dinosouls" + }, + { + "appid": 2244080, + "normalized_name": "erozld" + }, + { + "appid": 2244100, + "normalized_name": "stolen wife ~cucked on a hot spring company trip~" + }, + { + "appid": 2244110, + "normalized_name": "save the girls" + }, + { + "appid": 2244130, + "normalized_name": "ratopia" + }, + { + "appid": 2244150, + "normalized_name": "トリスティア:リストア" + }, + { + "appid": 2244160, + "normalized_name": "トリスティア:レガシー" + }, + { + "appid": 2244170, + "normalized_name": "cyber detective" + }, + { + "appid": 2244200, + "normalized_name": "random chat" + }, + { + "appid": 2244300, + "normalized_name": "turis station" + }, + { + "appid": 2244320, + "normalized_name": "林中人forest life" + }, + { + "appid": 2244330, + "normalized_name": "crossroad of worlds mystery agency collector's" + }, + { + "appid": 2244350, + "normalized_name": "red sunrise" + }, + { + "appid": 2244360, + "normalized_name": "armageddon (c64/spectrum)" + }, + { + "appid": 2244380, + "normalized_name": "futa heroism" + }, + { + "appid": 2244400, + "normalized_name": "button pop" + }, + { + "appid": 2244410, + "normalized_name": "santa and present chaos" + }, + { + "appid": 2244420, + "normalized_name": "情人泪" + }, + { + "appid": 2244430, + "normalized_name": "color lim" + }, + { + "appid": 2244440, + "normalized_name": "adventure mosaics. lost expedition" + }, + { + "appid": 2244450, + "normalized_name": "adventure mosaics. autumn journey" + }, + { + "appid": 2244460, + "normalized_name": "adventure mosaics. winter holidays" + }, + { + "appid": 2244470, + "normalized_name": "train valley world" + }, + { + "appid": 2244480, + "normalized_name": "remedium sentinels" + }, + { + "appid": 2244500, + "normalized_name": "caterpilla (spectrum/vic 20)" + }, + { + "appid": 2244520, + "normalized_name": "hoop fighters party basketball" + }, + { + "appid": 2244530, + "normalized_name": "christmas land opposite worlds" + }, + { + "appid": 2244540, + "normalized_name": "marvelous marbles" + }, + { + "appid": 2244550, + "normalized_name": "don't steal my christmas!" + }, + { + "appid": 2244570, + "normalized_name": "space landing" + }, + { + "appid": 2244580, + "normalized_name": "somewhere in between" + }, + { + "appid": 2244610, + "normalized_name": "the remains of the day" + }, + { + "appid": 2244620, + "normalized_name": "blacklight" + }, + { + "appid": 2244630, + "normalized_name": "lovux" + }, + { + "appid": 2244640, + "normalized_name": "trophy chaser" + }, + { + "appid": 2244650, + "normalized_name": "hexlands" + }, + { + "appid": 2244660, + "normalized_name": "spicy strip poker" + }, + { + "appid": 2244690, + "normalized_name": "forest of frequencies" + }, + { + "appid": 2244700, + "normalized_name": "glasshouse" + }, + { + "appid": 2244770, + "normalized_name": "stonga bird" + }, + { + "appid": 2244780, + "normalized_name": "abyss world apocalypse" + }, + { + "appid": 2244800, + "normalized_name": "force of nature 2 prologue" + }, + { + "appid": 2244810, + "normalized_name": "dawn of shadow" + }, + { + "appid": 2244830, + "normalized_name": "nautikin adventures" + }, + { + "appid": 2244840, + "normalized_name": "fears of glasses o o world war" + }, + { + "appid": 2244860, + "normalized_name": "soliloquy" + }, + { + "appid": 2244880, + "normalized_name": "fantasy jigsaw puzzles" + }, + { + "appid": 2244900, + "normalized_name": "ocean of mermaids" + }, + { + "appid": 2244920, + "normalized_name": "to the top" + }, + { + "appid": 2244930, + "normalized_name": "sex adventures hot sauna" + }, + { + "appid": 2244970, + "normalized_name": "no more snow" + }, + { + "appid": 2245000, + "normalized_name": "enter the slayer" + }, + { + "appid": 2245010, + "normalized_name": "ankewill" + }, + { + "appid": 2245020, + "normalized_name": "rogue rogue baby!" + }, + { + "appid": 2245030, + "normalized_name": "sex simulator the ca" + }, + { + "appid": 2245040, + "normalized_name": "battle support" + }, + { + "appid": 2245080, + "normalized_name": "desktop sex doll" + }, + { + "appid": 2245090, + "normalized_name": "cuckold life simulator 😳🔞" + }, + { + "appid": 2245130, + "normalized_name": "handshakes hands on" + }, + { + "appid": 2245180, + "normalized_name": "voron" + }, + { + "appid": 2245210, + "normalized_name": "leaf blowing simulator" + }, + { + "appid": 2245250, + "normalized_name": "孤独行者" + }, + { + "appid": 2245270, + "normalized_name": "hentai christmas" + }, + { + "appid": 2245300, + "normalized_name": "bellhop" + }, + { + "appid": 2245310, + "normalized_name": "the secrets of hope" + }, + { + "appid": 2245320, + "normalized_name": "ex_holics.exe" + }, + { + "appid": 2245330, + "normalized_name": "tin edge" + }, + { + "appid": 2245370, + "normalized_name": "another man's wife" + }, + { + "appid": 2245390, + "normalized_name": "闯关游戏" + }, + { + "appid": 2245420, + "normalized_name": "soul passage" + }, + { + "appid": 2245430, + "normalized_name": "down with fear" + }, + { + "appid": 2245450, + "normalized_name": "champ at dawn" + }, + { + "appid": 2245460, + "normalized_name": "dead end" + }, + { + "appid": 2245470, + "normalized_name": "up above" + }, + { + "appid": 2245480, + "normalized_name": "demon lord tamer" + }, + { + "appid": 2245490, + "normalized_name": "pumpkin majo" + }, + { + "appid": 2245500, + "normalized_name": "abstract winter" + }, + { + "appid": 2245510, + "normalized_name": "castle of plague" + }, + { + "appid": 2245610, + "normalized_name": "otherplane" + }, + { + "appid": 2245620, + "normalized_name": "tangy td" + }, + { + "appid": 2245630, + "normalized_name": "carkour" + }, + { + "appid": 2245670, + "normalized_name": "stella's pointless castle awakening" + }, + { + "appid": 2245700, + "normalized_name": "idle game x100" + }, + { + "appid": 2245730, + "normalized_name": "plushie bomber" + }, + { + "appid": 2245750, + "normalized_name": "city z" + }, + { + "appid": 2245780, + "normalized_name": "kidnapped in vostok" + }, + { + "appid": 2245790, + "normalized_name": "kendo warrior" + }, + { + "appid": 2245820, + "normalized_name": "jackie descend into madness" + }, + { + "appid": 2245850, + "normalized_name": "gverse" + }, + { + "appid": 2245890, + "normalized_name": "margo" + }, + { + "appid": 2245900, + "normalized_name": "tennis online duel" + }, + { + "appid": 2245960, + "normalized_name": "sex adventures swingers resort" + }, + { + "appid": 2245980, + "normalized_name": "hyperdope" + }, + { + "appid": 2246010, + "normalized_name": "kemps" + }, + { + "appid": 2246030, + "normalized_name": "meer's escape" + }, + { + "appid": 2246070, + "normalized_name": "回响之战" + }, + { + "appid": 2246110, + "normalized_name": "q" + }, + { + "appid": 2246120, + "normalized_name": "coralina" + }, + { + "appid": 2246130, + "normalized_name": "hiyoku no tori" + }, + { + "appid": 2246180, + "normalized_name": "flamingo go with gun" + }, + { + "appid": 2246250, + "normalized_name": "explottens rise of k.l.a.w" + }, + { + "appid": 2246290, + "normalized_name": "entasy online" + }, + { + "appid": 2246300, + "normalized_name": "no more money season 1" + }, + { + "appid": 2246310, + "normalized_name": "a rum tale" + }, + { + "appid": 2246330, + "normalized_name": "rescue team magnetic storm" + }, + { + "appid": 2246340, + "normalized_name": "monster hunter wilds" + }, + { + "appid": 2246350, + "normalized_name": "backroom warfare ii" + }, + { + "appid": 2246360, + "normalized_name": "orc killer" + }, + { + "appid": 2246370, + "normalized_name": "music power up" + }, + { + "appid": 2246390, + "normalized_name": "void edge of existence" + }, + { + "appid": 2246400, + "normalized_name": "confabulation" + }, + { + "appid": 2246410, + "normalized_name": "moonbeam" + }, + { + "appid": 2246460, + "normalized_name": "from the forgotten" + }, + { + "appid": 2246470, + "normalized_name": "kulebra and the souls of limbo" + }, + { + "appid": 2246490, + "normalized_name": "paccsu" + }, + { + "appid": 2246510, + "normalized_name": "planetary strike" + }, + { + "appid": 2246520, + "normalized_name": "strip 4 detention bounce" + }, + { + "appid": 2246530, + "normalized_name": "ace pilot pacific" + }, + { + "appid": 2246550, + "normalized_name": "interkosmos 2000" + }, + { + "appid": 2246560, + "normalized_name": "wake" + }, + { + "appid": 2246570, + "normalized_name": "bionic slammer" + }, + { + "appid": 2246590, + "normalized_name": "glitchstorm" + }, + { + "appid": 2246640, + "normalized_name": "tiny atolls" + }, + { + "appid": 2246650, + "normalized_name": "szybowcowa '87" + }, + { + "appid": 2246700, + "normalized_name": "tet" + }, + { + "appid": 2246710, + "normalized_name": "cyberscape" + }, + { + "appid": 2246740, + "normalized_name": "voidside" + }, + { + "appid": 2246760, + "normalized_name": "cosmogonic" + }, + { + "appid": 2246780, + "normalized_name": "ranger quest the elemental orbs" + }, + { + "appid": 2246790, + "normalized_name": "battle mage" + }, + { + "appid": 2246800, + "normalized_name": "paranormal files price of a secret collector's" + }, + { + "appid": 2246810, + "normalized_name": "wild americas" + }, + { + "appid": 2246820, + "normalized_name": "lord of bones" + }, + { + "appid": 2246840, + "normalized_name": "a desert christmas story" + }, + { + "appid": 2246850, + "normalized_name": "sex room [18+]" + }, + { + "appid": 2246880, + "normalized_name": "standbox" + }, + { + "appid": 2246940, + "normalized_name": "only a dream" + }, + { + "appid": 2247050, + "normalized_name": "dodd goes to the museum" + }, + { + "appid": 2247080, + "normalized_name": "glyph guesser" + }, + { + "appid": 2247190, + "normalized_name": "first report unreal" + }, + { + "appid": 2247200, + "normalized_name": "g9 league of aces" + }, + { + "appid": 2247220, + "normalized_name": "revenblade" + }, + { + "appid": 2247240, + "normalized_name": "tanks+ new era" + }, + { + "appid": 2247270, + "normalized_name": "exitor" + }, + { + "appid": 2247360, + "normalized_name": "little porp" + }, + { + "appid": 2247410, + "normalized_name": "colorless" + }, + { + "appid": 2247450, + "normalized_name": "seeking asylum the game (demo)" + }, + { + "appid": 2247480, + "normalized_name": "pixel slayer" + }, + { + "appid": 2247490, + "normalized_name": "stepmom" + }, + { + "appid": 2247500, + "normalized_name": "狐族·起源" + }, + { + "appid": 2247510, + "normalized_name": "snowbrawll" + }, + { + "appid": 2247540, + "normalized_name": "the eyes of mars" + }, + { + "appid": 2247550, + "normalized_name": "umichan two scoops" + }, + { + "appid": 2247570, + "normalized_name": "don duality" + }, + { + "appid": 2247580, + "normalized_name": "the last vagabonds" + }, + { + "appid": 2247610, + "normalized_name": "pretty hentai girls" + }, + { + "appid": 2247620, + "normalized_name": "hero survival" + }, + { + "appid": 2247630, + "normalized_name": "awesome pea 3" + }, + { + "appid": 2247640, + "normalized_name": "bone dust" + }, + { + "appid": 2247660, + "normalized_name": "advenger of stuart" + }, + { + "appid": 2247670, + "normalized_name": "hide and seek" + }, + { + "appid": 2247680, + "normalized_name": "read clock time" + }, + { + "appid": 2247700, + "normalized_name": "apocalypse lords" + }, + { + "appid": 2247730, + "normalized_name": "restricted footage" + }, + { + "appid": 2247760, + "normalized_name": "revive & prosper" + }, + { + "appid": 2247790, + "normalized_name": "snake robot" + }, + { + "appid": 2247800, + "normalized_name": "touch me" + }, + { + "appid": 2247820, + "normalized_name": "rogue station" + }, + { + "appid": 2247830, + "normalized_name": "holo & veil" + }, + { + "appid": 2247850, + "normalized_name": "hexdefense" + }, + { + "appid": 2247860, + "normalized_name": "cybersurfer" + }, + { + "appid": 2247880, + "normalized_name": "游戏策划面试模拟器" + }, + { + "appid": 2247930, + "normalized_name": "rider of justice" + }, + { + "appid": 2247950, + "normalized_name": "digital virus" + }, + { + "appid": 2247970, + "normalized_name": "benders of moona" + }, + { + "appid": 2248000, + "normalized_name": "roids" + }, + { + "appid": 2248010, + "normalized_name": "instarion" + }, + { + "appid": 2248020, + "normalized_name": "adventure apple robots" + }, + { + "appid": 2248120, + "normalized_name": "light and shadow doppelganger" + }, + { + "appid": 2248130, + "normalized_name": "warbringers of angrul" + }, + { + "appid": 2248150, + "normalized_name": "gunmetal gothic" + }, + { + "appid": 2248170, + "normalized_name": "drink human beans" + }, + { + "appid": 2248180, + "normalized_name": "just xiangqi" + }, + { + "appid": 2248190, + "normalized_name": "ハーデリアクエスト" + }, + { + "appid": 2248220, + "normalized_name": "bosses" + }, + { + "appid": 2248230, + "normalized_name": "yestersol" + }, + { + "appid": 2248250, + "normalized_name": "听说这里有怪兽" + }, + { + "appid": 2248270, + "normalized_name": "cardboard fish" + }, + { + "appid": 2248280, + "normalized_name": "the kaiyo mission" + }, + { + "appid": 2248290, + "normalized_name": "sparky marky online do you see sparky?" + }, + { + "appid": 2248330, + "normalized_name": "backrooms break" + }, + { + "appid": 2248340, + "normalized_name": "unrestrained" + }, + { + "appid": 2248350, + "normalized_name": "taste of war" + }, + { + "appid": 2248380, + "normalized_name": "the last sword" + }, + { + "appid": 2248390, + "normalized_name": "citadelic" + }, + { + "appid": 2248400, + "normalized_name": "neospace prologue" + }, + { + "appid": 2248420, + "normalized_name": "infinity trials" + }, + { + "appid": 2248430, + "normalized_name": "touhou artificial dream in arcadia" + }, + { + "appid": 2248470, + "normalized_name": "hentai jigsaw puzzle collection christmas" + }, + { + "appid": 2248480, + "normalized_name": "fruit switch" + }, + { + "appid": 2248520, + "normalized_name": "rescape" + }, + { + "appid": 2248540, + "normalized_name": "sanctum arcadia" + }, + { + "appid": 2248570, + "normalized_name": "i commissioned some bees 12 days" + }, + { + "appid": 2248580, + "normalized_name": "lovely crush" + }, + { + "appid": 2248590, + "normalized_name": "chestnut grove" + }, + { + "appid": 2248670, + "normalized_name": "martian conquer" + }, + { + "appid": 2248740, + "normalized_name": "spectre's library" + }, + { + "appid": 2248760, + "normalized_name": "car for sale simulator 2023" + }, + { + "appid": 2248790, + "normalized_name": "洪荒超级签到系统" + }, + { + "appid": 2248800, + "normalized_name": "some deadly years" + }, + { + "appid": 2248810, + "normalized_name": "dungeon shooter dark temple" + }, + { + "appid": 2248820, + "normalized_name": "five nights at smog's" + }, + { + "appid": 2248830, + "normalized_name": "street fighting grandma" + }, + { + "appid": 2248870, + "normalized_name": "little white man" + }, + { + "appid": 2248880, + "normalized_name": "the cullfield ritual" + }, + { + "appid": 2248890, + "normalized_name": "the beekeeper's picnic a sherlockian adventure" + }, + { + "appid": 2248900, + "normalized_name": "master of chess" + }, + { + "appid": 2248920, + "normalized_name": "super kids racing mini" + }, + { + "appid": 2248950, + "normalized_name": "trans siberian railway simulator prologue" + }, + { + "appid": 2248960, + "normalized_name": "for evelyn ii shards of creation" + }, + { + "appid": 2249020, + "normalized_name": "mindbytes learn to read japanese" + }, + { + "appid": 2249040, + "normalized_name": "blood moon" + }, + { + "appid": 2249060, + "normalized_name": "edenfall legacy of the first wardens" + }, + { + "appid": 2249070, + "normalized_name": "strip fighter zero" + }, + { + "appid": 2249080, + "normalized_name": "cubic crush streamer showdown" + }, + { + "appid": 2249100, + "normalized_name": "spelltanks" + }, + { + "appid": 2249120, + "normalized_name": "blockappend" + }, + { + "appid": 2249160, + "normalized_name": "september 7th" + }, + { + "appid": 2249210, + "normalized_name": "heavenly peaks cultivation" + }, + { + "appid": 2249250, + "normalized_name": "halves" + }, + { + "appid": 2249290, + "normalized_name": "dungeon of theseus 忒修斯地城" + }, + { + "appid": 2249320, + "normalized_name": "metal detecting simulator" + }, + { + "appid": 2249360, + "normalized_name": "virtual girlfriend eliza" + }, + { + "appid": 2249440, + "normalized_name": "we are not alone" + }, + { + "appid": 2249450, + "normalized_name": "butterfly's poison; blood chains" + }, + { + "appid": 2249510, + "normalized_name": "spearheads" + }, + { + "appid": 2249530, + "normalized_name": "cozy cabin coffee boutique" + }, + { + "appid": 2249550, + "normalized_name": "warleague" + }, + { + "appid": 2249570, + "normalized_name": "模拟经营我的大学 be president of a university" + }, + { + "appid": 2249580, + "normalized_name": "整蛊骰子 prank of dice" + }, + { + "appid": 2249590, + "normalized_name": "all you need is help" + }, + { + "appid": 2249600, + "normalized_name": "drag racing 3d streets 2" + }, + { + "appid": 2249690, + "normalized_name": "super death game show! vr" + }, + { + "appid": 2249700, + "normalized_name": "篝火与尾巴" + }, + { + "appid": 2249730, + "normalized_name": "the great artists" + }, + { + "appid": 2249800, + "normalized_name": "a millionaire's story" + }, + { + "appid": 2249830, + "normalized_name": "《奇门遁甲》" + }, + { + "appid": 2249850, + "normalized_name": "cats everywhere" + }, + { + "appid": 2249890, + "normalized_name": "king's hand" + }, + { + "appid": 2249950, + "normalized_name": "nith realms" + }, + { + "appid": 2249960, + "normalized_name": "jetpack george!" + }, + { + "appid": 2249970, + "normalized_name": "umichan sentoryu" + }, + { + "appid": 2250020, + "normalized_name": "mindbytes learn to read music" + }, + { + "appid": 2250060, + "normalized_name": "i commissioned some bees 0" + }, + { + "appid": 2250080, + "normalized_name": "the last man survivor" + }, + { + "appid": 2250090, + "normalized_name": "missing hiker" + }, + { + "appid": 2250100, + "normalized_name": "red flower" + }, + { + "appid": 2250110, + "normalized_name": "blue sky" + }, + { + "appid": 2250160, + "normalized_name": "dead pedal" + }, + { + "appid": 2250170, + "normalized_name": "probo rush" + }, + { + "appid": 2250180, + "normalized_name": "don't blame you" + }, + { + "appid": 2250190, + "normalized_name": "hightail" + }, + { + "appid": 2250210, + "normalized_name": "office mayhem" + }, + { + "appid": 2250230, + "normalized_name": "house spirit cat" + }, + { + "appid": 2250250, + "normalized_name": "mighty mage" + }, + { + "appid": 2250270, + "normalized_name": "revival quest" + }, + { + "appid": 2250290, + "normalized_name": "castle capture topkapi" + }, + { + "appid": 2250300, + "normalized_name": "wheel stars" + }, + { + "appid": 2250330, + "normalized_name": "play rough" + }, + { + "appid": 2250340, + "normalized_name": "i commissioned some bunnies" + }, + { + "appid": 2250370, + "normalized_name": "back 4 more" + }, + { + "appid": 2250390, + "normalized_name": "bionic crusade" + }, + { + "appid": 2250400, + "normalized_name": "microcrawl" + }, + { + "appid": 2250410, + "normalized_name": "battle bows" + }, + { + "appid": 2250450, + "normalized_name": "powershift" + }, + { + "appid": 2250460, + "normalized_name": "knightward" + }, + { + "appid": 2250470, + "normalized_name": "screams from the past" + }, + { + "appid": 2250480, + "normalized_name": "kenchana oath of a magical spear" + }, + { + "appid": 2250510, + "normalized_name": "ex angelus" + }, + { + "appid": 2250520, + "normalized_name": "doodle world deluxe" + }, + { + "appid": 2250530, + "normalized_name": "nessy the ... robot" + }, + { + "appid": 2250550, + "normalized_name": "tornado research and rescue" + }, + { + "appid": 2250560, + "normalized_name": "sciware defense" + }, + { + "appid": 2250590, + "normalized_name": "hentai eroelf" + }, + { + "appid": 2250600, + "normalized_name": "disgaea 7 vows of the virtueless" + }, + { + "appid": 2250670, + "normalized_name": "我心江湖(woxinjianghu)" + }, + { + "appid": 2250690, + "normalized_name": "skystrikers" + }, + { + "appid": 2250710, + "normalized_name": "sapu" + }, + { + "appid": 2250740, + "normalized_name": "waning moon" + }, + { + "appid": 2250750, + "normalized_name": "菲菲大冒险feifei's adventure" + }, + { + "appid": 2250780, + "normalized_name": "rooster tale (2d platformer)" + }, + { + "appid": 2250790, + "normalized_name": "東方幻想魔録w ~ the devil of decline" + }, + { + "appid": 2250820, + "normalized_name": "party party time" + }, + { + "appid": 2250830, + "normalized_name": "vr dinosaur gladiators" + }, + { + "appid": 2250840, + "normalized_name": "vr dinosaur rescue project x" + }, + { + "appid": 2250850, + "normalized_name": "pretty dinosaur adventures of ancient earth vr" + }, + { + "appid": 2250870, + "normalized_name": "xenofeud" + }, + { + "appid": 2250960, + "normalized_name": "the voices games extra collection" + }, + { + "appid": 2251010, + "normalized_name": "the witch's cauldron" + }, + { + "appid": 2251020, + "normalized_name": "逆光迷途 lost in darklight" + }, + { + "appid": 2251030, + "normalized_name": "mutant monty (c64/cpc/spectrum)" + }, + { + "appid": 2251040, + "normalized_name": "puppetmaster pose viewer" + }, + { + "appid": 2251080, + "normalized_name": "teampunk" + }, + { + "appid": 2251120, + "normalized_name": "league manager 2023" + }, + { + "appid": 2251170, + "normalized_name": "zwaard" + }, + { + "appid": 2251180, + "normalized_name": "fort valen" + }, + { + "appid": 2251210, + "normalized_name": "couchquiz!" + }, + { + "appid": 2251220, + "normalized_name": "high times dating/cooking sim" + }, + { + "appid": 2251240, + "normalized_name": "police car simulator" + }, + { + "appid": 2251270, + "normalized_name": "employee simulator" + }, + { + "appid": 2251280, + "normalized_name": "nymphs of the forest" + }, + { + "appid": 2251310, + "normalized_name": "ctrlc" + }, + { + "appid": 2251320, + "normalized_name": "sylvio and the mountain giants" + }, + { + "appid": 2251340, + "normalized_name": "royal affairs" + }, + { + "appid": 2251380, + "normalized_name": "escape from russia mobilization" + }, + { + "appid": 2251400, + "normalized_name": "everdeep aurora" + }, + { + "appid": 2251420, + "normalized_name": "cruise ship manager prologue maiden voyage" + }, + { + "appid": 2251430, + "normalized_name": "original" + }, + { + "appid": 2251450, + "normalized_name": "mystery trackers fall of iron rock collector's" + }, + { + "appid": 2251480, + "normalized_name": "crowd medieval city war" + }, + { + "appid": 2251500, + "normalized_name": "crunch time! beat the clock" + }, + { + "appid": 2251510, + "normalized_name": "sister wish" + }, + { + "appid": 2251540, + "normalized_name": "ibis am" + }, + { + "appid": 2251570, + "normalized_name": "pain cage tournament" + }, + { + "appid": 2251580, + "normalized_name": "i the forgotten one" + }, + { + "appid": 2251620, + "normalized_name": "sunrider 4 the captain's return" + }, + { + "appid": 2251630, + "normalized_name": "deadly desire" + }, + { + "appid": 2251650, + "normalized_name": "mimicry" + }, + { + "appid": 2251660, + "normalized_name": "subtension" + }, + { + "appid": 2251670, + "normalized_name": "at the dream end" + }, + { + "appid": 2251680, + "normalized_name": "epic assassin" + }, + { + "appid": 2251730, + "normalized_name": "catacombs the asper case" + }, + { + "appid": 2251740, + "normalized_name": "a simple square" + }, + { + "appid": 2251780, + "normalized_name": "poolcore" + }, + { + "appid": 2251810, + "normalized_name": "hole in won" + }, + { + "appid": 2251840, + "normalized_name": "alien up" + }, + { + "appid": 2251850, + "normalized_name": "punchman online" + }, + { + "appid": 2251870, + "normalized_name": "the backrooms nightmare dimension" + }, + { + "appid": 2251900, + "normalized_name": "raffucus piedron the ancient hero" + }, + { + "appid": 2251910, + "normalized_name": "third" + }, + { + "appid": 2251920, + "normalized_name": "limitless" + }, + { + "appid": 2251930, + "normalized_name": "cgi the game" + }, + { + "appid": 2251970, + "normalized_name": "tokyo stories" + }, + { + "appid": 2252000, + "normalized_name": "diehexegy" + }, + { + "appid": 2252070, + "normalized_name": "[subject]" + }, + { + "appid": 2252170, + "normalized_name": "world soccer kid" + }, + { + "appid": 2252180, + "normalized_name": "claris the princess knight ~ extra story" + }, + { + "appid": 2252190, + "normalized_name": "koreanwarmemorial" + }, + { + "appid": 2252290, + "normalized_name": "ancient sacrifice" + }, + { + "appid": 2252310, + "normalized_name": "dog days of summer v4.1" + }, + { + "appid": 2252330, + "normalized_name": "clicker guardians" + }, + { + "appid": 2252360, + "normalized_name": "lesson learned cult of the elizabeth" + }, + { + "appid": 2252470, + "normalized_name": "snuff tv" + }, + { + "appid": 2252520, + "normalized_name": "dragon pinball" + }, + { + "appid": 2252530, + "normalized_name": "vriking" + }, + { + "appid": 2252550, + "normalized_name": "hope" + }, + { + "appid": 2252570, + "normalized_name": "football manager 2024" + }, + { + "appid": 2252680, + "normalized_name": "farlands" + }, + { + "appid": 2252710, + "normalized_name": "hotel simulator" + }, + { + "appid": 2252750, + "normalized_name": "way in the stars the threat" + }, + { + "appid": 2252760, + "normalized_name": "pedro (c64/spectrum)" + }, + { + "appid": 2252790, + "normalized_name": "vaccine rebirth" + }, + { + "appid": 2252820, + "normalized_name": "locked in mind" + }, + { + "appid": 2252830, + "normalized_name": "johnny explorer" + }, + { + "appid": 2252850, + "normalized_name": "in the building cats 3" + }, + { + "appid": 2252870, + "normalized_name": "tactical vengeance play the games" + }, + { + "appid": 2252900, + "normalized_name": "defending earth" + }, + { + "appid": 2252930, + "normalized_name": "pong ping" + }, + { + "appid": 2252940, + "normalized_name": "up to clouds" + }, + { + "appid": 2252960, + "normalized_name": "flashback" + }, + { + "appid": 2252970, + "normalized_name": "synth pong" + }, + { + "appid": 2252980, + "normalized_name": "quest action 3d" + }, + { + "appid": 2253070, + "normalized_name": "sands of sodis" + }, + { + "appid": 2253080, + "normalized_name": "vlobs" + }, + { + "appid": 2253100, + "normalized_name": "everwind" + }, + { + "appid": 2253110, + "normalized_name": "ragmonton" + }, + { + "appid": 2253130, + "normalized_name": "quantum fantasy" + }, + { + "appid": 2253160, + "normalized_name": "quest master's realm" + }, + { + "appid": 2253200, + "normalized_name": "the devil's face" + }, + { + "appid": 2253260, + "normalized_name": "enchantment siege" + }, + { + "appid": 2253290, + "normalized_name": "my grandparents' christmas mystery" + }, + { + "appid": 2253300, + "normalized_name": "upheaval" + }, + { + "appid": 2253360, + "normalized_name": "mistcaller" + }, + { + "appid": 2253370, + "normalized_name": "powers of hex" + }, + { + "appid": 2253460, + "normalized_name": "bright tracer" + }, + { + "appid": 2253510, + "normalized_name": "air star" + }, + { + "appid": 2253560, + "normalized_name": "terix survivors" + }, + { + "appid": 2253580, + "normalized_name": "the space bar" + }, + { + "appid": 2253590, + "normalized_name": "bingo girl" + }, + { + "appid": 2253650, + "normalized_name": "离散纪元" + }, + { + "appid": 2253660, + "normalized_name": "hotloop" + }, + { + "appid": 2253680, + "normalized_name": "nature" + }, + { + "appid": 2253710, + "normalized_name": "adventure tanks" + }, + { + "appid": 2253720, + "normalized_name": "sim companies" + }, + { + "appid": 2253730, + "normalized_name": "madorica real estate 2 the mystery of the new property" + }, + { + "appid": 2253740, + "normalized_name": "国产手机帝国 mobile phone empire" + }, + { + "appid": 2253760, + "normalized_name": "rising city" + }, + { + "appid": 2253770, + "normalized_name": "grow your pets" + }, + { + "appid": 2253780, + "normalized_name": "scrapyard arena" + }, + { + "appid": 2253880, + "normalized_name": "christmas wonderland 13 collector's" + }, + { + "appid": 2253900, + "normalized_name": "formula 2707 all stars kombat" + }, + { + "appid": 2253910, + "normalized_name": "mothership forever" + }, + { + "appid": 2253930, + "normalized_name": "kamikaze lassplanes" + }, + { + "appid": 2253940, + "normalized_name": "b.c. bill (c64/spectrum)" + }, + { + "appid": 2253970, + "normalized_name": "yusha prototype 原型勇者" + }, + { + "appid": 2254000, + "normalized_name": "rescue dash management puzzle" + }, + { + "appid": 2254020, + "normalized_name": "take care vr" + }, + { + "appid": 2254030, + "normalized_name": "tribe dash stone age time management" + }, + { + "appid": 2254060, + "normalized_name": "eskimo eddie (c64/spectrum)" + }, + { + "appid": 2254100, + "normalized_name": "ハッカータイピング" + }, + { + "appid": 2254110, + "normalized_name": "old bira´s farm" + }, + { + "appid": 2254140, + "normalized_name": "project screwed" + }, + { + "appid": 2254200, + "normalized_name": "汐留 train simulator" + }, + { + "appid": 2254210, + "normalized_name": "finding xavier" + }, + { + "appid": 2254270, + "normalized_name": "mythrera" + }, + { + "appid": 2254310, + "normalized_name": "mecha blade" + }, + { + "appid": 2254340, + "normalized_name": "dungeon slave" + }, + { + "appid": 2254350, + "normalized_name": "retro short game" + }, + { + "appid": 2254380, + "normalized_name": "synthrunner" + }, + { + "appid": 2254390, + "normalized_name": "neptune's garden" + }, + { + "appid": 2254410, + "normalized_name": "blacksmith simulator prologue" + }, + { + "appid": 2254430, + "normalized_name": "stunts above clouds" + }, + { + "appid": 2254490, + "normalized_name": "squirrel launcher" + }, + { + "appid": 2254540, + "normalized_name": "grip on reality" + }, + { + "appid": 2254550, + "normalized_name": "2032 a new threat" + }, + { + "appid": 2254590, + "normalized_name": "quill" + }, + { + "appid": 2254600, + "normalized_name": "let's pet pets" + }, + { + "appid": 2254670, + "normalized_name": "던전 청소부" + }, + { + "appid": 2254710, + "normalized_name": "death trick double blind" + }, + { + "appid": 2254740, + "normalized_name": "persona 5 tactica" + }, + { + "appid": 2254750, + "normalized_name": "悟能大战白骨精" + }, + { + "appid": 2254780, + "normalized_name": "we're party together!" + }, + { + "appid": 2254830, + "normalized_name": "diggersim excavator & heavy equipment simulator vr" + }, + { + "appid": 2254860, + "normalized_name": "inexplicable geeks #restorethemillercut" + }, + { + "appid": 2254890, + "normalized_name": "致命解药" + }, + { + "appid": 2254900, + "normalized_name": "nanoforce tactical surgeon fighter" + }, + { + "appid": 2254910, + "normalized_name": "100 hidden frogs 2" + }, + { + "appid": 2254940, + "normalized_name": "stardome" + }, + { + "appid": 2254950, + "normalized_name": "the eternal life of goldman" + }, + { + "appid": 2254990, + "normalized_name": "permafrost" + }, + { + "appid": 2255000, + "normalized_name": "slave" + }, + { + "appid": 2255020, + "normalized_name": "qdice" + }, + { + "appid": 2255050, + "normalized_name": "the sword that kills christmas" + }, + { + "appid": 2255080, + "normalized_name": "kingdom run vr" + }, + { + "appid": 2255090, + "normalized_name": "cosmic stronghold" + }, + { + "appid": 2255120, + "normalized_name": "museum of monoliths" + }, + { + "appid": 2255140, + "normalized_name": "paranoia party" + }, + { + "appid": 2255150, + "normalized_name": "thrusta x" + }, + { + "appid": 2255210, + "normalized_name": "meme duel" + }, + { + "appid": 2255290, + "normalized_name": "el ne rue" + }, + { + "appid": 2255300, + "normalized_name": "the starving tournament" + }, + { + "appid": 2255350, + "normalized_name": "wild seas" + }, + { + "appid": 2255360, + "normalized_name": "throwia" + }, + { + "appid": 2255370, + "normalized_name": "directive 8020" + }, + { + "appid": 2255380, + "normalized_name": "sass vs fash girlballs of steel" + }, + { + "appid": 2255390, + "normalized_name": "sally's dungeon" + }, + { + "appid": 2255420, + "normalized_name": "kinky cosplay gyarus gone wild" + }, + { + "appid": 2255440, + "normalized_name": "astrobit" + }, + { + "appid": 2255480, + "normalized_name": "idle banshee alliance" + }, + { + "appid": 2255490, + "normalized_name": "ioua" + }, + { + "appid": 2255530, + "normalized_name": "regenesis" + }, + { + "appid": 2255550, + "normalized_name": "taxi copter" + }, + { + "appid": 2255560, + "normalized_name": "knifeplayground" + }, + { + "appid": 2255600, + "normalized_name": "mr.welder's pinball defence" + }, + { + "appid": 2255630, + "normalized_name": "sorcerers summit" + }, + { + "appid": 2255670, + "normalized_name": "from within" + }, + { + "appid": 2255730, + "normalized_name": "告死天使复仇之夜 death angel nightmare" + }, + { + "appid": 2255760, + "normalized_name": "parts unknown" + }, + { + "appid": 2255820, + "normalized_name": "dawn of hell" + }, + { + "appid": 2255830, + "normalized_name": "our memories hentai" + }, + { + "appid": 2255910, + "normalized_name": "dark days devil hunt prologue" + }, + { + "appid": 2255950, + "normalized_name": "max massacre" + }, + { + "appid": 2255970, + "normalized_name": "nacht sama is quitting being the demon king!" + }, + { + "appid": 2255980, + "normalized_name": "dino v. xeno tower defense" + }, + { + "appid": 2256100, + "normalized_name": "leap from hell" + }, + { + "appid": 2256110, + "normalized_name": "into the sky" + }, + { + "appid": 2256160, + "normalized_name": "survive now" + }, + { + "appid": 2256190, + "normalized_name": "pip d" + }, + { + "appid": 2256200, + "normalized_name": "bad friends shooter" + }, + { + "appid": 2256220, + "normalized_name": "follow me" + }, + { + "appid": 2256230, + "normalized_name": "bad cat sam" + }, + { + "appid": 2256240, + "normalized_name": "vivid tale" + }, + { + "appid": 2256260, + "normalized_name": "ends" + }, + { + "appid": 2256280, + "normalized_name": "project skyward" + }, + { + "appid": 2256290, + "normalized_name": "roxroria treasure island | rpg" + }, + { + "appid": 2256300, + "normalized_name": "no brake no gain" + }, + { + "appid": 2256340, + "normalized_name": "final remedy" + }, + { + "appid": 2256350, + "normalized_name": "phantom pursuit" + }, + { + "appid": 2256360, + "normalized_name": "shooting saucer" + }, + { + "appid": 2256370, + "normalized_name": "sleepy time jack digital talking body pillow" + }, + { + "appid": 2256380, + "normalized_name": "yokai art survival" + }, + { + "appid": 2256390, + "normalized_name": "eon reset" + }, + { + "appid": 2256410, + "normalized_name": "war of celestials" + }, + { + "appid": 2256420, + "normalized_name": "infiltrator" + }, + { + "appid": 2256430, + "normalized_name": "fiendish freddy's big top o' fun" + }, + { + "appid": 2256440, + "normalized_name": "infiltrator ii the next day" + }, + { + "appid": 2256450, + "normalized_name": "ram random access mayhem" + }, + { + "appid": 2256520, + "normalized_name": "gunslinger nova" + }, + { + "appid": 2256550, + "normalized_name": "choi" + }, + { + "appid": 2256600, + "normalized_name": "希望之光1:灵菌涅槃" + }, + { + "appid": 2256650, + "normalized_name": "agentroy secure the temple" + }, + { + "appid": 2256690, + "normalized_name": "saadex defense" + }, + { + "appid": 2256750, + "normalized_name": "whispers of gold" + }, + { + "appid": 2256760, + "normalized_name": "lichtreich willa" + }, + { + "appid": 2256770, + "normalized_name": "old shadow" + }, + { + "appid": 2256780, + "normalized_name": "gachi christmas party 🎄" + }, + { + "appid": 2256790, + "normalized_name": "gamedev life simulator 🎮🕹" + }, + { + "appid": 2256810, + "normalized_name": "soul's spectrum" + }, + { + "appid": 2256830, + "normalized_name": "antique restorer" + }, + { + "appid": 2256840, + "normalized_name": "holy ocean" + }, + { + "appid": 2256860, + "normalized_name": "graamaseva" + }, + { + "appid": 2256880, + "normalized_name": "duplicado" + }, + { + "appid": 2256900, + "normalized_name": "frack the world" + }, + { + "appid": 2256920, + "normalized_name": "friendly facade" + }, + { + "appid": 2256940, + "normalized_name": "tear" + }, + { + "appid": 2256950, + "normalized_name": "oblivion eagle" + }, + { + "appid": 2256970, + "normalized_name": "ecto" + }, + { + "appid": 2256990, + "normalized_name": "road trucker" + }, + { + "appid": 2257010, + "normalized_name": "creeper world ixe" + }, + { + "appid": 2257030, + "normalized_name": "slimecatcher" + }, + { + "appid": 2257040, + "normalized_name": "figures of heroes" + }, + { + "appid": 2257050, + "normalized_name": "flaming thunderer" + }, + { + "appid": 2257060, + "normalized_name": "lone traveler" + }, + { + "appid": 2257070, + "normalized_name": "crime scene" + }, + { + "appid": 2257100, + "normalized_name": "breathless winds lgbt visual novel" + }, + { + "appid": 2257110, + "normalized_name": "stack & the grumblepuff from above" + }, + { + "appid": 2257120, + "normalized_name": "metal glove exodus" + }, + { + "appid": 2257140, + "normalized_name": "ball punchers" + }, + { + "appid": 2257170, + "normalized_name": "disaster area" + }, + { + "appid": 2257190, + "normalized_name": "bikini brickout" + }, + { + "appid": 2257220, + "normalized_name": "cybervault" + }, + { + "appid": 2257290, + "normalized_name": "just futanari" + }, + { + "appid": 2257360, + "normalized_name": "sacred earth alternative" + }, + { + "appid": 2257380, + "normalized_name": "easy game" + }, + { + "appid": 2257400, + "normalized_name": "girlfriend vr" + }, + { + "appid": 2257410, + "normalized_name": "crashy laps" + }, + { + "appid": 2257440, + "normalized_name": "tom the postgirl" + }, + { + "appid": 2257450, + "normalized_name": "nash racing 70 seconds left" + }, + { + "appid": 2257460, + "normalized_name": "file destined" + }, + { + "appid": 2257490, + "normalized_name": "mine battles" + }, + { + "appid": 2257510, + "normalized_name": "pure gore (sandbox&playground)" + }, + { + "appid": 2257560, + "normalized_name": "kill the climbers" + }, + { + "appid": 2257580, + "normalized_name": "candy arkanoid" + }, + { + "appid": 2257590, + "normalized_name": "alien agent x" + }, + { + "appid": 2257610, + "normalized_name": "a moment of bliss" + }, + { + "appid": 2257630, + "normalized_name": "panda's village" + }, + { + "appid": 2257640, + "normalized_name": "virtual chemistry lab" + }, + { + "appid": 2257650, + "normalized_name": "the way of the tiger (cpc/spectrum)" + }, + { + "appid": 2257680, + "normalized_name": "controller" + }, + { + "appid": 2257720, + "normalized_name": "above the clouds episode 1" + }, + { + "appid": 2257750, + "normalized_name": "colors zero" + }, + { + "appid": 2257770, + "normalized_name": "not for broadcast vr" + }, + { + "appid": 2257780, + "normalized_name": "3dxchat" + }, + { + "appid": 2257790, + "normalized_name": "trapers platformer" + }, + { + "appid": 2257800, + "normalized_name": "cannon climbing" + }, + { + "appid": 2257830, + "normalized_name": "moth kubit" + }, + { + "appid": 2257840, + "normalized_name": "斗技场物语~盗贼与姬骑士篇~" + }, + { + "appid": 2257850, + "normalized_name": "strange case" + }, + { + "appid": 2257870, + "normalized_name": "a legend of wisdom part i" + }, + { + "appid": 2257910, + "normalized_name": "project zero" + }, + { + "appid": 2257920, + "normalized_name": "devices company tycoon inc" + }, + { + "appid": 2257940, + "normalized_name": "exorsite" + }, + { + "appid": 2258010, + "normalized_name": "webcam sex" + }, + { + "appid": 2258020, + "normalized_name": "the last hike" + }, + { + "appid": 2258040, + "normalized_name": "world of turtle" + }, + { + "appid": 2258060, + "normalized_name": "the passengers" + }, + { + "appid": 2258080, + "normalized_name": "afterimpakt" + }, + { + "appid": 2258090, + "normalized_name": "goosey guess" + }, + { + "appid": 2258100, + "normalized_name": "bloodlust&mercy" + }, + { + "appid": 2258110, + "normalized_name": "sphere game legendary" + }, + { + "appid": 2258120, + "normalized_name": "orcs coming td" + }, + { + "appid": 2258130, + "normalized_name": "mr. stretch and the stolen fortune" + }, + { + "appid": 2258170, + "normalized_name": "pyreside waltz" + }, + { + "appid": 2258180, + "normalized_name": "days of doom" + }, + { + "appid": 2258260, + "normalized_name": "cache grabbers" + }, + { + "appid": 2258290, + "normalized_name": "jury episode 1 before the trial" + }, + { + "appid": 2258300, + "normalized_name": "gridlocke" + }, + { + "appid": 2258320, + "normalized_name": "dreaming isles" + }, + { + "appid": 2258330, + "normalized_name": "valorous" + }, + { + "appid": 2258350, + "normalized_name": "alive" + }, + { + "appid": 2258380, + "normalized_name": "pact of steel" + }, + { + "appid": 2258420, + "normalized_name": "pinhi!" + }, + { + "appid": 2258480, + "normalized_name": "gunforged" + }, + { + "appid": 2258490, + "normalized_name": "wildwood hearth & horizon" + }, + { + "appid": 2258500, + "normalized_name": "crymachina" + }, + { + "appid": 2258510, + "normalized_name": "tower defense infinite war" + }, + { + "appid": 2258530, + "normalized_name": "没落陰陽絵巻 tale of the fallen onmyoji" + }, + { + "appid": 2258550, + "normalized_name": "demon invasion endless" + }, + { + "appid": 2258560, + "normalized_name": "viral complex" + }, + { + "appid": 2258580, + "normalized_name": "hentai gyaru" + }, + { + "appid": 2258590, + "normalized_name": "富甲天下3" + }, + { + "appid": 2258670, + "normalized_name": "crawlspace 2" + }, + { + "appid": 2258770, + "normalized_name": "the shell part i inferno" + }, + { + "appid": 2258790, + "normalized_name": "activate 激活" + }, + { + "appid": 2258830, + "normalized_name": "nothing to lose" + }, + { + "appid": 2258840, + "normalized_name": "bio synthetica" + }, + { + "appid": 2258890, + "normalized_name": "xanadu land" + }, + { + "appid": 2258910, + "normalized_name": "horror tale 2 samantha" + }, + { + "appid": 2258930, + "normalized_name": "the void calls" + }, + { + "appid": 2258940, + "normalized_name": "mage kanade's futanari dungeon quest" + }, + { + "appid": 2258950, + "normalized_name": "angkara the horde" + }, + { + "appid": 2258960, + "normalized_name": "adventure with the goddess" + }, + { + "appid": 2259050, + "normalized_name": "valkyrie dawn of ragnarok" + }, + { + "appid": 2259060, + "normalized_name": "混沌骑士" + }, + { + "appid": 2259070, + "normalized_name": "raising taiyaki" + }, + { + "appid": 2259080, + "normalized_name": "pog xl" + }, + { + "appid": 2259100, + "normalized_name": "ball army vs zombie" + }, + { + "appid": 2259130, + "normalized_name": "emil a hero's journey prologue" + }, + { + "appid": 2259180, + "normalized_name": "no questions asked" + }, + { + "appid": 2259190, + "normalized_name": "protos magos" + }, + { + "appid": 2259210, + "normalized_name": "mega city force" + }, + { + "appid": 2259220, + "normalized_name": "海上求生survival at sea" + }, + { + "appid": 2259230, + "normalized_name": "sym.bios torn asunder" + }, + { + "appid": 2259240, + "normalized_name": "despa" + }, + { + "appid": 2259260, + "normalized_name": "tyrant's realm" + }, + { + "appid": 2259270, + "normalized_name": "有个小村:逍遥" + }, + { + "appid": 2259300, + "normalized_name": "floramancer seeds and spells" + }, + { + "appid": 2259310, + "normalized_name": "order 13" + }, + { + "appid": 2259320, + "normalized_name": "meowmunitions prologue" + }, + { + "appid": 2259330, + "normalized_name": "mind diver" + }, + { + "appid": 2259340, + "normalized_name": "don't wake god" + }, + { + "appid": 2259360, + "normalized_name": "c.i.e.b the backrooms" + }, + { + "appid": 2259370, + "normalized_name": "the prospector" + }, + { + "appid": 2259380, + "normalized_name": "backroom" + }, + { + "appid": 2259390, + "normalized_name": "nine rounds rapid" + }, + { + "appid": 2259400, + "normalized_name": "oathbound arena" + }, + { + "appid": 2259460, + "normalized_name": "chess undress" + }, + { + "appid": 2259530, + "normalized_name": "a spider to a fly" + }, + { + "appid": 2259590, + "normalized_name": "arcticide" + }, + { + "appid": 2259620, + "normalized_name": "harvest hills" + }, + { + "appid": 2259640, + "normalized_name": "magemania" + }, + { + "appid": 2259690, + "normalized_name": "aikagi after days" + }, + { + "appid": 2259700, + "normalized_name": "chamberbound" + }, + { + "appid": 2259730, + "normalized_name": "soundscape" + }, + { + "appid": 2259740, + "normalized_name": "光明王传说" + }, + { + "appid": 2259990, + "normalized_name": "auto riskrisk" + }, + { + "appid": 2260030, + "normalized_name": "delirium" + }, + { + "appid": 2260050, + "normalized_name": "baalzebub" + }, + { + "appid": 2260060, + "normalized_name": "cybertown prologue" + }, + { + "appid": 2260100, + "normalized_name": "borderwatch dark armada" + }, + { + "appid": 2260130, + "normalized_name": "offroad mechanic simulator prologue first job" + }, + { + "appid": 2260150, + "normalized_name": "pomegranate tea" + }, + { + "appid": 2260170, + "normalized_name": "final forge" + }, + { + "appid": 2260220, + "normalized_name": "swarm horror" + }, + { + "appid": 2260230, + "normalized_name": "midnight dash" + }, + { + "appid": 2260260, + "normalized_name": "hack and shoot heroes" + }, + { + "appid": 2260310, + "normalized_name": "star hive the menace" + }, + { + "appid": 2260330, + "normalized_name": "futanari girls 3d ⚧👧🍆" + }, + { + "appid": 2260350, + "normalized_name": "elfboarders" + }, + { + "appid": 2260360, + "normalized_name": "zooblies" + }, + { + "appid": 2260450, + "normalized_name": "poveglia the island of non return" + }, + { + "appid": 2260480, + "normalized_name": "random acts of madness" + }, + { + "appid": 2260530, + "normalized_name": "hidden cats in new york" + }, + { + "appid": 2260540, + "normalized_name": "endless nesla" + }, + { + "appid": 2260550, + "normalized_name": "pitchfork battles" + }, + { + "appid": 2260560, + "normalized_name": "banana yetti" + }, + { + "appid": 2260630, + "normalized_name": "to back from afterlife" + }, + { + "appid": 2260650, + "normalized_name": "arcadia colony" + }, + { + "appid": 2260680, + "normalized_name": "plasmarena" + }, + { + "appid": 2260700, + "normalized_name": "butchers don't surf!" + }, + { + "appid": 2260720, + "normalized_name": "fast burger simulator" + }, + { + "appid": 2260750, + "normalized_name": "what is snowman made of?" + }, + { + "appid": 2260800, + "normalized_name": "nothing_matters" + }, + { + "appid": 2260850, + "normalized_name": "人类保存计划 human save plan" + }, + { + "appid": 2260930, + "normalized_name": "kill pill" + }, + { + "appid": 2260950, + "normalized_name": "cornucopia (gba)" + }, + { + "appid": 2260960, + "normalized_name": "training shooter fps" + }, + { + "appid": 2260980, + "normalized_name": "university life visual novel" + }, + { + "appid": 2261000, + "normalized_name": "call of firework" + }, + { + "appid": 2261030, + "normalized_name": "project bonsai" + }, + { + "appid": 2261040, + "normalized_name": "numanuin" + }, + { + "appid": 2261050, + "normalized_name": "for the queen" + }, + { + "appid": 2261070, + "normalized_name": "chinese rail sim" + }, + { + "appid": 2261090, + "normalized_name": "三國立志傳" + }, + { + "appid": 2261100, + "normalized_name": "rise of the funkys" + }, + { + "appid": 2261110, + "normalized_name": "der trapstand" + }, + { + "appid": 2261120, + "normalized_name": "exp!a" + }, + { + "appid": 2261130, + "normalized_name": "reverseroom" + }, + { + "appid": 2261140, + "normalized_name": "hollow" + }, + { + "appid": 2261150, + "normalized_name": "elven city simulator" + }, + { + "appid": 2261200, + "normalized_name": "slingshell by muno!" + }, + { + "appid": 2261220, + "normalized_name": "fray" + }, + { + "appid": 2261240, + "normalized_name": "nope nope nope nurses" + }, + { + "appid": 2261250, + "normalized_name": "hello exo" + }, + { + "appid": 2261280, + "normalized_name": "dark city" + }, + { + "appid": 2261290, + "normalized_name": "alpo way home" + }, + { + "appid": 2261310, + "normalized_name": "tower inc." + }, + { + "appid": 2261330, + "normalized_name": "droid wars duel" + }, + { + "appid": 2261350, + "normalized_name": "cozy keep farm craft manage" + }, + { + "appid": 2261360, + "normalized_name": "geode climb" + }, + { + "appid": 2261380, + "normalized_name": "croakwood" + }, + { + "appid": 2261400, + "normalized_name": "depths of helheim" + }, + { + "appid": 2261410, + "normalized_name": "bargain blocz" + }, + { + "appid": 2261420, + "normalized_name": "boxloop 2" + }, + { + "appid": 2261430, + "normalized_name": "lumentale memories of trey" + }, + { + "appid": 2261440, + "normalized_name": "ballz" + }, + { + "appid": 2261500, + "normalized_name": "shoot! vr" + }, + { + "appid": 2261540, + "normalized_name": "旧天使" + }, + { + "appid": 2261550, + "normalized_name": "龙眠的夏天" + }, + { + "appid": 2261560, + "normalized_name": "we the people" + }, + { + "appid": 2261570, + "normalized_name": "st world" + }, + { + "appid": 2261600, + "normalized_name": "hunting pearl creek" + }, + { + "appid": 2261610, + "normalized_name": "dummy pirates ocean tales" + }, + { + "appid": 2261640, + "normalized_name": "missing stars" + }, + { + "appid": 2261650, + "normalized_name": "pet dragon girl" + }, + { + "appid": 2261660, + "normalized_name": "my neighbor neko" + }, + { + "appid": 2261680, + "normalized_name": "precision" + }, + { + "appid": 2261690, + "normalized_name": "kitten kingdom" + }, + { + "appid": 2261720, + "normalized_name": "banbard" + }, + { + "appid": 2261750, + "normalized_name": "towers deck" + }, + { + "appid": 2261760, + "normalized_name": "simp" + }, + { + "appid": 2261890, + "normalized_name": "sinoven" + }, + { + "appid": 2261900, + "normalized_name": "panspermia horror myson mansion" + }, + { + "appid": 2261910, + "normalized_name": "the last golden fox" + }, + { + "appid": 2261920, + "normalized_name": "find the whales" + }, + { + "appid": 2261930, + "normalized_name": "altered algorithm" + }, + { + "appid": 2261940, + "normalized_name": "dungeon merchant" + }, + { + "appid": 2262010, + "normalized_name": "催眠スクールデイズ hypnotic school days" + }, + { + "appid": 2262020, + "normalized_name": "exo rally championship" + }, + { + "appid": 2262040, + "normalized_name": "姉恋ごっこ siblings role play" + }, + { + "appid": 2262060, + "normalized_name": "skyfighter arcade" + }, + { + "appid": 2262070, + "normalized_name": "invasion" + }, + { + "appid": 2262080, + "normalized_name": "omega crafter" + }, + { + "appid": 2262110, + "normalized_name": "【vr】physical exam / イタズラ身体測定" + }, + { + "appid": 2262120, + "normalized_name": "merchant legends the founding" + }, + { + "appid": 2262170, + "normalized_name": "rose" + }, + { + "appid": 2262180, + "normalized_name": "brazen thief" + }, + { + "appid": 2262190, + "normalized_name": "hentai beach" + }, + { + "appid": 2262200, + "normalized_name": "fubg fight unknown battleground" + }, + { + "appid": 2262210, + "normalized_name": "evorevo" + }, + { + "appid": 2262220, + "normalized_name": "glowing stones heroes' awakening" + }, + { + "appid": 2262230, + "normalized_name": "bargain toader" + }, + { + "appid": 2262240, + "normalized_name": "logiking" + }, + { + "appid": 2262250, + "normalized_name": "tiny house!" + }, + { + "appid": 2262320, + "normalized_name": "lab.ar" + }, + { + "appid": 2262330, + "normalized_name": "photonverse" + }, + { + "appid": 2262340, + "normalized_name": "boom adventures" + }, + { + "appid": 2262370, + "normalized_name": "love menu" + }, + { + "appid": 2262410, + "normalized_name": "a terrible place" + }, + { + "appid": 2262450, + "normalized_name": "hell distant lights" + }, + { + "appid": 2262470, + "normalized_name": "planets" + }, + { + "appid": 2262520, + "normalized_name": "aerial antics 20th anniversary" + }, + { + "appid": 2262540, + "normalized_name": "col verse" + }, + { + "appid": 2262550, + "normalized_name": "fear the phantom" + }, + { + "appid": 2262560, + "normalized_name": "rogue cube defense" + }, + { + "appid": 2262570, + "normalized_name": "alice running adventures" + }, + { + "appid": 2262580, + "normalized_name": "monsters mess" + }, + { + "appid": 2262600, + "normalized_name": "firewall" + }, + { + "appid": 2262610, + "normalized_name": "endless monday dreams and deadlines" + }, + { + "appid": 2262620, + "normalized_name": "broombot battlegrounds" + }, + { + "appid": 2262630, + "normalized_name": "wish upon a llama" + }, + { + "appid": 2262680, + "normalized_name": "epic race the stadium" + }, + { + "appid": 2262690, + "normalized_name": "roxy raccoon's mancala madness" + }, + { + "appid": 2262730, + "normalized_name": "outcasts of the rift" + }, + { + "appid": 2262740, + "normalized_name": "rc match 3" + }, + { + "appid": 2262750, + "normalized_name": "space escaper" + }, + { + "appid": 2262770, + "normalized_name": "garten of banban 2" + }, + { + "appid": 2262790, + "normalized_name": "lingyao garden | 虚空灵药园" + }, + { + "appid": 2262820, + "normalized_name": "永生之庭" + }, + { + "appid": 2262880, + "normalized_name": "heli cats" + }, + { + "appid": 2262890, + "normalized_name": "whispers in the dark" + }, + { + "appid": 2262900, + "normalized_name": "folia the king's revelry" + }, + { + "appid": 2262910, + "normalized_name": "that last girl" + }, + { + "appid": 2262930, + "normalized_name": "bombe" + }, + { + "appid": 2262950, + "normalized_name": "时空之石" + }, + { + "appid": 2262960, + "normalized_name": "artur's pinball" + }, + { + "appid": 2262970, + "normalized_name": "elle portal" + }, + { + "appid": 2262980, + "normalized_name": "ringlorn saga gaiden" + }, + { + "appid": 2262990, + "normalized_name": "manager can be tough! case of the kidnapped waitress" + }, + { + "appid": 2263000, + "normalized_name": "hellgrinder" + }, + { + "appid": 2263010, + "normalized_name": "pineapple on pizza" + }, + { + "appid": 2263040, + "normalized_name": "一个人的木偶剧" + }, + { + "appid": 2263050, + "normalized_name": "skyland" + }, + { + "appid": 2263120, + "normalized_name": "outrune" + }, + { + "appid": 2263130, + "normalized_name": "lunar mountain" + }, + { + "appid": 2263150, + "normalized_name": "sehoni island monsters and adventures" + }, + { + "appid": 2263160, + "normalized_name": "传说之始" + }, + { + "appid": 2263170, + "normalized_name": "maiz" + }, + { + "appid": 2263210, + "normalized_name": "multiverse crush" + }, + { + "appid": 2263220, + "normalized_name": "fear of the undead rise of evil" + }, + { + "appid": 2263230, + "normalized_name": "wink & the broken robot" + }, + { + "appid": 2263240, + "normalized_name": "deep in the snowy night" + }, + { + "appid": 2263250, + "normalized_name": "a song of sunlight" + }, + { + "appid": 2263260, + "normalized_name": "house of shadow" + }, + { + "appid": 2263290, + "normalized_name": "gravitaws" + }, + { + "appid": 2263330, + "normalized_name": "the crimson kingdom" + }, + { + "appid": 2263340, + "normalized_name": "the duck song game" + }, + { + "appid": 2263360, + "normalized_name": "hyperbeat" + }, + { + "appid": 2263380, + "normalized_name": "fast run" + }, + { + "appid": 2263390, + "normalized_name": "lawnmower game ufo chase" + }, + { + "appid": 2263430, + "normalized_name": "darkblood gaiden" + }, + { + "appid": 2263450, + "normalized_name": "endless samurai 無限武者" + }, + { + "appid": 2263490, + "normalized_name": "人球の逆娘/reverse woman of human ball" + }, + { + "appid": 2263500, + "normalized_name": "look locked" + }, + { + "appid": 2263510, + "normalized_name": "the simulacrum" + }, + { + "appid": 2263520, + "normalized_name": "chemical" + }, + { + "appid": 2263530, + "normalized_name": "paramedics! ems simulator" + }, + { + "appid": 2263560, + "normalized_name": "eternal fidelity" + }, + { + "appid": 2263570, + "normalized_name": "unusual ghost" + }, + { + "appid": 2263660, + "normalized_name": "something amazing room" + }, + { + "appid": 2263680, + "normalized_name": "furry owo" + }, + { + "appid": 2263700, + "normalized_name": "manabaz" + }, + { + "appid": 2263710, + "normalized_name": "t rex dinosaur game" + }, + { + "appid": 2263720, + "normalized_name": "hentai15puzzle02" + }, + { + "appid": 2263740, + "normalized_name": "project swarm drone space exploration program" + }, + { + "appid": 2263760, + "normalized_name": "keeping it shrimple" + }, + { + "appid": 2263780, + "normalized_name": "the inverse" + }, + { + "appid": 2263860, + "normalized_name": "insert rich family name" + }, + { + "appid": 2263920, + "normalized_name": "multiplayer platform golf" + }, + { + "appid": 2263950, + "normalized_name": "animal vs human farm at war" + }, + { + "appid": 2263960, + "normalized_name": "ultra fishing" + }, + { + "appid": 2263970, + "normalized_name": "dot" + }, + { + "appid": 2263980, + "normalized_name": "memories millennium girl" + }, + { + "appid": 2264000, + "normalized_name": "养老小镇" + }, + { + "appid": 2264020, + "normalized_name": "saiko no sutoka no shiki" + }, + { + "appid": 2264050, + "normalized_name": "海伦的神迹" + }, + { + "appid": 2264090, + "normalized_name": "desktop garage kit" + }, + { + "appid": 2264110, + "normalized_name": "hell grinder" + }, + { + "appid": 2264120, + "normalized_name": "glr10x10" + }, + { + "appid": 2264140, + "normalized_name": "how 2 escape" + }, + { + "appid": 2264160, + "normalized_name": "traffic brains 2" + }, + { + "appid": 2264190, + "normalized_name": "4d games" + }, + { + "appid": 2264200, + "normalized_name": "domination war of nations" + }, + { + "appid": 2264210, + "normalized_name": "hentai puzzle universe" + }, + { + "appid": 2264240, + "normalized_name": "waiter" + }, + { + "appid": 2264290, + "normalized_name": "vega" + }, + { + "appid": 2264300, + "normalized_name": "fullybroken way home a roguelike shooter" + }, + { + "appid": 2264310, + "normalized_name": "christmas night" + }, + { + "appid": 2264340, + "normalized_name": "tiebreak+ official game of the atp and wta" + }, + { + "appid": 2264390, + "normalized_name": "evotales" + }, + { + "appid": 2264400, + "normalized_name": "nightly trash" + }, + { + "appid": 2264410, + "normalized_name": "the survivors" + }, + { + "appid": 2264420, + "normalized_name": "sleepy daniel" + }, + { + "appid": 2264430, + "normalized_name": "froojarspootz! the cleaning monster" + }, + { + "appid": 2264440, + "normalized_name": "micro games volume 1" + }, + { + "appid": 2264460, + "normalized_name": "underbackrooms" + }, + { + "appid": 2264470, + "normalized_name": "diesel the pug warrior" + }, + { + "appid": 2264490, + "normalized_name": "bozalleth's curse" + }, + { + "appid": 2264500, + "normalized_name": "guacomole" + }, + { + "appid": 2264510, + "normalized_name": "cudo" + }, + { + "appid": 2264550, + "normalized_name": "fliese" + }, + { + "appid": 2264580, + "normalized_name": "gladiator's arena" + }, + { + "appid": 2264600, + "normalized_name": "find the whales español" + }, + { + "appid": 2264690, + "normalized_name": "groundzero" + }, + { + "appid": 2264730, + "normalized_name": "hentai sportsgirl" + }, + { + "appid": 2264740, + "normalized_name": "highway speeder" + }, + { + "appid": 2264750, + "normalized_name": "let them fight" + }, + { + "appid": 2264760, + "normalized_name": "lifetime" + }, + { + "appid": 2264770, + "normalized_name": "spellsphere" + }, + { + "appid": 2264780, + "normalized_name": "legion of judgment fallen angel" + }, + { + "appid": 2264820, + "normalized_name": "丰收之路:漂洋过海的美食" + }, + { + "appid": 2264840, + "normalized_name": "(para)normal commute" + }, + { + "appid": 2264880, + "normalized_name": "my milf stepmom💋" + }, + { + "appid": 2264930, + "normalized_name": "『lackgirl i \"astra inclinant sed non obligant.\"』" + }, + { + "appid": 2264950, + "normalized_name": "mr. bear's bizarre adventure" + }, + { + "appid": 2264970, + "normalized_name": "丧尸世界 经典策略卡牌养成" + }, + { + "appid": 2265010, + "normalized_name": "草食系男子の言いなり入院生活 a passive boy at the huntress clinic" + }, + { + "appid": 2265020, + "normalized_name": "dark desire mute 1" + }, + { + "appid": 2265040, + "normalized_name": "cracks in hell" + }, + { + "appid": 2265080, + "normalized_name": "hands of victory" + }, + { + "appid": 2265120, + "normalized_name": "无限投影2" + }, + { + "appid": 2265130, + "normalized_name": "survivor stay in the light" + }, + { + "appid": 2265160, + "normalized_name": "logic keypad" + }, + { + "appid": 2265180, + "normalized_name": "sex with succubus ❤🔥" + }, + { + "appid": 2265190, + "normalized_name": "tactics greed" + }, + { + "appid": 2265210, + "normalized_name": "sexy milfs" + }, + { + "appid": 2265220, + "normalized_name": "tits okay tits fine lewd me darling" + }, + { + "appid": 2265240, + "normalized_name": "ryo the haunted office" + }, + { + "appid": 2265270, + "normalized_name": "every summer holiday bl (boys love) visual novel" + }, + { + "appid": 2265290, + "normalized_name": "drag the dead" + }, + { + "appid": 2265310, + "normalized_name": "bug & seek" + }, + { + "appid": 2265320, + "normalized_name": "torico's b day gift hunt" + }, + { + "appid": 2265370, + "normalized_name": "the risen survival" + }, + { + "appid": 2265380, + "normalized_name": "seroutte" + }, + { + "appid": 2265400, + "normalized_name": "maximum" + }, + { + "appid": 2265410, + "normalized_name": "color x memory" + }, + { + "appid": 2265420, + "normalized_name": "underquest" + }, + { + "appid": 2265440, + "normalized_name": "retro mystery club vol.1 the ise shima case" + }, + { + "appid": 2265450, + "normalized_name": "astral coconut" + }, + { + "appid": 2265460, + "normalized_name": "hera" + }, + { + "appid": 2265490, + "normalized_name": "chess match" + }, + { + "appid": 2265520, + "normalized_name": "drop it block paradise!" + }, + { + "appid": 2265530, + "normalized_name": "solitary paperplane" + }, + { + "appid": 2265590, + "normalized_name": "the goblin lord" + }, + { + "appid": 2265610, + "normalized_name": "ashes of war" + }, + { + "appid": 2265640, + "normalized_name": "x mode" + }, + { + "appid": 2265650, + "normalized_name": "slippery flippers episode one amulet of the gods" + }, + { + "appid": 2265680, + "normalized_name": "the king of cats" + }, + { + "appid": 2265730, + "normalized_name": "evil evo" + }, + { + "appid": 2265750, + "normalized_name": "tonalities" + }, + { + "appid": 2265760, + "normalized_name": "chosun zombie defense" + }, + { + "appid": 2265800, + "normalized_name": "最弱骸骨兵 the weakest skeleton" + }, + { + "appid": 2265830, + "normalized_name": "virnap" + }, + { + "appid": 2265870, + "normalized_name": "病菌幸存者" + }, + { + "appid": 2265920, + "normalized_name": "castle of blackwater" + }, + { + "appid": 2265940, + "normalized_name": "evil dungeon" + }, + { + "appid": 2265950, + "normalized_name": "doggo ninjas" + }, + { + "appid": 2265960, + "normalized_name": "stick bros" + }, + { + "appid": 2265990, + "normalized_name": "endalor" + }, + { + "appid": 2266000, + "normalized_name": "hell evolution – devil girls raising (r 18)" + }, + { + "appid": 2266010, + "normalized_name": "the reacher" + }, + { + "appid": 2266020, + "normalized_name": "zombie watch part ii" + }, + { + "appid": 2266030, + "normalized_name": "blood money good money" + }, + { + "appid": 2266050, + "normalized_name": "own the throne" + }, + { + "appid": 2266060, + "normalized_name": "psalm vr" + }, + { + "appid": 2266090, + "normalized_name": "cube" + }, + { + "appid": 2266130, + "normalized_name": "勇士末路 the end of warriors" + }, + { + "appid": 2266150, + "normalized_name": "monster shopper" + }, + { + "appid": 2266160, + "normalized_name": "modules" + }, + { + "appid": 2266190, + "normalized_name": "finland corruption simulator" + }, + { + "appid": 2266200, + "normalized_name": "downhill pro racer" + }, + { + "appid": 2266260, + "normalized_name": "hold the door" + }, + { + "appid": 2266270, + "normalized_name": "rhythm taichi xr" + }, + { + "appid": 2266320, + "normalized_name": "the you testament the 2d coming" + }, + { + "appid": 2266360, + "normalized_name": "thumb tanks" + }, + { + "appid": 2266370, + "normalized_name": "a special place in hell" + }, + { + "appid": 2266400, + "normalized_name": "the last duskreaper" + }, + { + "appid": 2266500, + "normalized_name": "nusnur" + }, + { + "appid": 2266510, + "normalized_name": "desert spirit grave" + }, + { + "appid": 2266530, + "normalized_name": "beanz!?" + }, + { + "appid": 2266570, + "normalized_name": "kinda knirpsi" + }, + { + "appid": 2266580, + "normalized_name": "посылка" + }, + { + "appid": 2266590, + "normalized_name": "vandaan" + }, + { + "appid": 2266600, + "normalized_name": "guts 'n grunts" + }, + { + "appid": 2266640, + "normalized_name": "astro link" + }, + { + "appid": 2266700, + "normalized_name": "abhorrent light" + }, + { + "appid": 2266740, + "normalized_name": "twinkle hunter" + }, + { + "appid": 2266750, + "normalized_name": "lightsup!" + }, + { + "appid": 2266780, + "normalized_name": "ascendant" + }, + { + "appid": 2266790, + "normalized_name": "键盘侠keyboardmen" + }, + { + "appid": 2266820, + "normalized_name": "lilith wants to buy your soul" + }, + { + "appid": 2266840, + "normalized_name": "人世间:海岛" + }, + { + "appid": 2266850, + "normalized_name": "senpai puzzle waifu summer" + }, + { + "appid": 2266870, + "normalized_name": "valley of the old masters" + }, + { + "appid": 2266890, + "normalized_name": "becrowned" + }, + { + "appid": 2266910, + "normalized_name": "chinese expeditionary force assault team" + }, + { + "appid": 2266920, + "normalized_name": "far far away" + }, + { + "appid": 2266930, + "normalized_name": "ruslicstan invades" + }, + { + "appid": 2266980, + "normalized_name": "cyber strider" + }, + { + "appid": 2267010, + "normalized_name": "kong hero" + }, + { + "appid": 2267040, + "normalized_name": "light the backrooms" + }, + { + "appid": 2267070, + "normalized_name": "cosmic holes" + }, + { + "appid": 2267100, + "normalized_name": "animal kingdom" + }, + { + "appid": 2267120, + "normalized_name": "sudoku vacation 2" + }, + { + "appid": 2267140, + "normalized_name": "a look into..." + }, + { + "appid": 2267170, + "normalized_name": "vradark's revenge" + }, + { + "appid": 2267220, + "normalized_name": "tamerlane" + }, + { + "appid": 2267230, + "normalized_name": "chicken scratch" + }, + { + "appid": 2267260, + "normalized_name": "horror explus" + }, + { + "appid": 2267290, + "normalized_name": "anime rpg isekai journey" + }, + { + "appid": 2267310, + "normalized_name": "quadice" + }, + { + "appid": 2267320, + "normalized_name": "myristica" + }, + { + "appid": 2267340, + "normalized_name": "operation eronta" + }, + { + "appid": 2267360, + "normalized_name": "fragmented city" + }, + { + "appid": 2267370, + "normalized_name": "hidden futa" + }, + { + "appid": 2267480, + "normalized_name": "沙盘战火调度" + }, + { + "appid": 2267500, + "normalized_name": "shape" + }, + { + "appid": 2267520, + "normalized_name": "建造师模拟器 constructor simulator" + }, + { + "appid": 2267560, + "normalized_name": "roborne" + }, + { + "appid": 2267570, + "normalized_name": "dark night maze" + }, + { + "appid": 2267580, + "normalized_name": "nameless bastard" + }, + { + "appid": 2267590, + "normalized_name": "她的脚" + }, + { + "appid": 2267600, + "normalized_name": "lost day" + }, + { + "appid": 2267630, + "normalized_name": "ternion" + }, + { + "appid": 2267650, + "normalized_name": "z world" + }, + { + "appid": 2267660, + "normalized_name": "the app find everything and everybody" + }, + { + "appid": 2267680, + "normalized_name": "agni fighter" + }, + { + "appid": 2267710, + "normalized_name": "vignette memories of baruu" + }, + { + "appid": 2267770, + "normalized_name": "xploquest 3" + }, + { + "appid": 2267790, + "normalized_name": "neanderthal" + }, + { + "appid": 2267800, + "normalized_name": "rpg fitness vr" + }, + { + "appid": 2267810, + "normalized_name": "locke(d)" + }, + { + "appid": 2267840, + "normalized_name": "trained by a succubus" + }, + { + "appid": 2267860, + "normalized_name": "project x" + }, + { + "appid": 2267870, + "normalized_name": "stewart the fox" + }, + { + "appid": 2267900, + "normalized_name": "tank hunter tow operator" + }, + { + "appid": 2267930, + "normalized_name": "mite terror in the forest" + }, + { + "appid": 2267940, + "normalized_name": "adventurer flower" + }, + { + "appid": 2267970, + "normalized_name": "nekopirate" + }, + { + "appid": 2267990, + "normalized_name": "simulator z" + }, + { + "appid": 2268000, + "normalized_name": "the multi maze" + }, + { + "appid": 2268040, + "normalized_name": "tracadie bird shit" + }, + { + "appid": 2268050, + "normalized_name": "sky high games horror collection" + }, + { + "appid": 2268140, + "normalized_name": "mental the dark night" + }, + { + "appid": 2268160, + "normalized_name": "maze / break" + }, + { + "appid": 2268200, + "normalized_name": "wakavr" + }, + { + "appid": 2268220, + "normalized_name": "have a bloody goal" + }, + { + "appid": 2268250, + "normalized_name": "hoping forest" + }, + { + "appid": 2268260, + "normalized_name": "samhain" + }, + { + "appid": 2268280, + "normalized_name": "full court heroes" + }, + { + "appid": 2268300, + "normalized_name": "心灵连线 心靈連線 angel link エンジェルリンク 엔젤 링크" + }, + { + "appid": 2268310, + "normalized_name": "cookie match enhanced" + }, + { + "appid": 2268330, + "normalized_name": "adventure field 5" + }, + { + "appid": 2268340, + "normalized_name": "good night every night" + }, + { + "appid": 2268430, + "normalized_name": "adepts arena" + }, + { + "appid": 2268440, + "normalized_name": "aby's playground" + }, + { + "appid": 2268460, + "normalized_name": "dark shrine" + }, + { + "appid": 2268470, + "normalized_name": "hope left me" + }, + { + "appid": 2268520, + "normalized_name": "divided land" + }, + { + "appid": 2268540, + "normalized_name": "ragdoll fall and destroy" + }, + { + "appid": 2268550, + "normalized_name": "trans theft horso" + }, + { + "appid": 2268560, + "normalized_name": "zombie survival game online" + }, + { + "appid": 2268580, + "normalized_name": "grenade drone simulator" + }, + { + "appid": 2268600, + "normalized_name": "boosthead" + }, + { + "appid": 2268720, + "normalized_name": "mullet hell" + }, + { + "appid": 2268780, + "normalized_name": "cosmic guardians" + }, + { + "appid": 2268800, + "normalized_name": "cockroach simulator household survivor" + }, + { + "appid": 2268880, + "normalized_name": "girlpuzzle 2" + }, + { + "appid": 2268960, + "normalized_name": "gyrogunner" + }, + { + "appid": 2269000, + "normalized_name": "the book gunsmith's battles echoes" + }, + { + "appid": 2269010, + "normalized_name": "hentai casual slider" + }, + { + "appid": 2269030, + "normalized_name": "gorfest" + }, + { + "appid": 2269060, + "normalized_name": "videohole episode ii" + }, + { + "appid": 2269070, + "normalized_name": "drift city underground" + }, + { + "appid": 2269090, + "normalized_name": "furniture toss" + }, + { + "appid": 2269120, + "normalized_name": "the dark side of mars" + }, + { + "appid": 2269170, + "normalized_name": "keyboard warrior dreamstate prologue" + }, + { + "appid": 2269220, + "normalized_name": "futa training" + }, + { + "appid": 2269230, + "normalized_name": "how i escaped futa prison" + }, + { + "appid": 2269270, + "normalized_name": "desolation" + }, + { + "appid": 2269280, + "normalized_name": "pretend cars racing" + }, + { + "appid": 2269290, + "normalized_name": "what is sleeping in my room?" + }, + { + "appid": 2269300, + "normalized_name": "luippy" + }, + { + "appid": 2269310, + "normalized_name": "starlight and the silver key" + }, + { + "appid": 2269320, + "normalized_name": "natti" + }, + { + "appid": 2269330, + "normalized_name": "amazevr megan thee stallion vr concert" + }, + { + "appid": 2269350, + "normalized_name": "mrwang and love" + }, + { + "appid": 2269360, + "normalized_name": "unwound" + }, + { + "appid": 2269380, + "normalized_name": "lost oliver" + }, + { + "appid": 2269410, + "normalized_name": "profound" + }, + { + "appid": 2269420, + "normalized_name": "phanotia i escavive" + }, + { + "appid": 2269450, + "normalized_name": "eye 4 eye" + }, + { + "appid": 2269460, + "normalized_name": "創業王 ceo" + }, + { + "appid": 2269490, + "normalized_name": "small town emo" + }, + { + "appid": 2269500, + "normalized_name": "leap of legends" + }, + { + "appid": 2269530, + "normalized_name": "haha" + }, + { + "appid": 2269540, + "normalized_name": "aniwars" + }, + { + "appid": 2269580, + "normalized_name": "metal march beginner experience" + }, + { + "appid": 2269590, + "normalized_name": "banhown" + }, + { + "appid": 2269640, + "normalized_name": "the last life" + }, + { + "appid": 2269650, + "normalized_name": "flood escape" + }, + { + "appid": 2269680, + "normalized_name": "tedram" + }, + { + "appid": 2269690, + "normalized_name": "you can do!mino" + }, + { + "appid": 2269700, + "normalized_name": "lilly's flower shop" + }, + { + "appid": 2269710, + "normalized_name": "mega sudoku binary & suguru" + }, + { + "appid": 2269720, + "normalized_name": "puzzle pieces 4 farewell dear winter" + }, + { + "appid": 2269730, + "normalized_name": "rotten apple" + }, + { + "appid": 2269750, + "normalized_name": "메스가키 영애님!" + }, + { + "appid": 2269770, + "normalized_name": "calloftree" + }, + { + "appid": 2269800, + "normalized_name": "the big mining" + }, + { + "appid": 2269860, + "normalized_name": "风与鸟 wind and bird" + }, + { + "appid": 2269880, + "normalized_name": "battle of 2048 fantasy" + }, + { + "appid": 2269930, + "normalized_name": "hoshimago" + }, + { + "appid": 2269950, + "normalized_name": "the karters 2 turbo charged" + }, + { + "appid": 2269970, + "normalized_name": "accurate adjacent ballistics simulator" + }, + { + "appid": 2269980, + "normalized_name": "fur squadron" + }, + { + "appid": 2270000, + "normalized_name": "golden gloves vr" + }, + { + "appid": 2270020, + "normalized_name": "人形限界" + }, + { + "appid": 2270040, + "normalized_name": "the kantist" + }, + { + "appid": 2270120, + "normalized_name": "hivecorp" + }, + { + "appid": 2270130, + "normalized_name": "bloodhound first day in hell" + }, + { + "appid": 2270150, + "normalized_name": "mental harm" + }, + { + "appid": 2270200, + "normalized_name": "simnetzero" + }, + { + "appid": 2270210, + "normalized_name": "dunhero" + }, + { + "appid": 2270220, + "normalized_name": "dragon survivors" + }, + { + "appid": 2270230, + "normalized_name": "glitch party" + }, + { + "appid": 2270240, + "normalized_name": "ascribe" + }, + { + "appid": 2270250, + "normalized_name": "devastated path" + }, + { + "appid": 2270270, + "normalized_name": "guest uncovered" + }, + { + "appid": 2270280, + "normalized_name": "project down" + }, + { + "appid": 2270290, + "normalized_name": "rock rush" + }, + { + "appid": 2270310, + "normalized_name": "paratives" + }, + { + "appid": 2270320, + "normalized_name": "my gym mommy treats me like a kid" + }, + { + "appid": 2270340, + "normalized_name": "mayhem" + }, + { + "appid": 2270350, + "normalized_name": "break everything living room" + }, + { + "appid": 2270360, + "normalized_name": "moki the escape" + }, + { + "appid": 2270370, + "normalized_name": "wobbles" + }, + { + "appid": 2270400, + "normalized_name": "artovya" + }, + { + "appid": 2270410, + "normalized_name": "farmburgh" + }, + { + "appid": 2270420, + "normalized_name": "speedway ringer" + }, + { + "appid": 2270460, + "normalized_name": "intervallic" + }, + { + "appid": 2270500, + "normalized_name": "inn hand" + }, + { + "appid": 2270520, + "normalized_name": "no way out" + }, + { + "appid": 2270530, + "normalized_name": "hentai fox" + }, + { + "appid": 2270540, + "normalized_name": "fun with ragdolls plus" + }, + { + "appid": 2270550, + "normalized_name": "ronnarium" + }, + { + "appid": 2270570, + "normalized_name": "dead on your lawn" + }, + { + "appid": 2270590, + "normalized_name": "《蜀山:初章》网络版" + }, + { + "appid": 2270600, + "normalized_name": "open at nine" + }, + { + "appid": 2270610, + "normalized_name": "厌山夜话" + }, + { + "appid": 2270630, + "normalized_name": "project eternal" + }, + { + "appid": 2270640, + "normalized_name": "grim tales the time traveler collector's" + }, + { + "appid": 2270700, + "normalized_name": "metal punch" + }, + { + "appid": 2270720, + "normalized_name": "unlimited" + }, + { + "appid": 2270750, + "normalized_name": "black gunner wukong" + }, + { + "appid": 2270900, + "normalized_name": "retrocausality" + }, + { + "appid": 2270910, + "normalized_name": "poly puzzle butterflies" + }, + { + "appid": 2270930, + "normalized_name": "f1 crazy stunts" + }, + { + "appid": 2270940, + "normalized_name": "builder simulator vr" + }, + { + "appid": 2270960, + "normalized_name": "blobi sprint" + }, + { + "appid": 2270970, + "normalized_name": "fight & crush" + }, + { + "appid": 2270980, + "normalized_name": "spider hunter" + }, + { + "appid": 2271000, + "normalized_name": "rayland 2" + }, + { + "appid": 2271030, + "normalized_name": "tacape" + }, + { + "appid": 2271040, + "normalized_name": "domino galaxy" + }, + { + "appid": 2271050, + "normalized_name": "resistor" + }, + { + "appid": 2271060, + "normalized_name": "last memories" + }, + { + "appid": 2271100, + "normalized_name": "vacation adventures park ranger 14 collector's" + }, + { + "appid": 2271110, + "normalized_name": "rogueviz collection" + }, + { + "appid": 2271120, + "normalized_name": "danger cliff" + }, + { + "appid": 2271130, + "normalized_name": "aleon's nightmare 2" + }, + { + "appid": 2271140, + "normalized_name": "studio 5" + }, + { + "appid": 2271150, + "normalized_name": "loya" + }, + { + "appid": 2271160, + "normalized_name": "snowball christmas festival" + }, + { + "appid": 2271170, + "normalized_name": "horny hotel maids" + }, + { + "appid": 2271180, + "normalized_name": "demon hentai slayer" + }, + { + "appid": 2271190, + "normalized_name": "slayin 2" + }, + { + "appid": 2271200, + "normalized_name": "assault on proxima" + }, + { + "appid": 2271250, + "normalized_name": "emergent z" + }, + { + "appid": 2271270, + "normalized_name": "devil's liminal" + }, + { + "appid": 2271280, + "normalized_name": "rogle" + }, + { + "appid": 2271300, + "normalized_name": "safehouse" + }, + { + "appid": 2271320, + "normalized_name": "dodge it! online" + }, + { + "appid": 2271360, + "normalized_name": "isochess" + }, + { + "appid": 2271380, + "normalized_name": "sokomage" + }, + { + "appid": 2271390, + "normalized_name": "elemental survivors roguelike" + }, + { + "appid": 2271430, + "normalized_name": "four color puzzle" + }, + { + "appid": 2271490, + "normalized_name": "ravva and the phantom library" + }, + { + "appid": 2271500, + "normalized_name": "emplacement" + }, + { + "appid": 2271520, + "normalized_name": "glass wings" + }, + { + "appid": 2271530, + "normalized_name": "prototype原型" + }, + { + "appid": 2271540, + "normalized_name": "enkate" + }, + { + "appid": 2271560, + "normalized_name": "hentai mission bombass" + }, + { + "appid": 2271570, + "normalized_name": "reflexia" + }, + { + "appid": 2271590, + "normalized_name": "the secret of darkwoods" + }, + { + "appid": 2271740, + "normalized_name": "ring racer" + }, + { + "appid": 2271750, + "normalized_name": "3001 a milf odyssey nsfw sci fi porn" + }, + { + "appid": 2271760, + "normalized_name": "boba boyz" + }, + { + "appid": 2271810, + "normalized_name": "adt pilot 01" + }, + { + "appid": 2271890, + "normalized_name": "firework simulator" + }, + { + "appid": 2271900, + "normalized_name": "mana's manual" + }, + { + "appid": 2271920, + "normalized_name": "bubble troops" + }, + { + "appid": 2271930, + "normalized_name": "ifsunsets" + }, + { + "appid": 2271940, + "normalized_name": "ハグサバイバー" + }, + { + "appid": 2271980, + "normalized_name": "adorable witch5 lingering" + }, + { + "appid": 2272010, + "normalized_name": "minibots td" + }, + { + "appid": 2272040, + "normalized_name": "homebound new beginnings" + }, + { + "appid": 2272050, + "normalized_name": "fairy biography3 obsession" + }, + { + "appid": 2272070, + "normalized_name": "death gunfire kill the zombie" + }, + { + "appid": 2272090, + "normalized_name": "aashaa" + }, + { + "appid": 2272120, + "normalized_name": "baker street breakouts a sherlockian escape adventure" + }, + { + "appid": 2272140, + "normalized_name": "dragon forest" + }, + { + "appid": 2272150, + "normalized_name": "eightrun" + }, + { + "appid": 2272180, + "normalized_name": "real time general" + }, + { + "appid": 2272190, + "normalized_name": "kristal mağara" + }, + { + "appid": 2272220, + "normalized_name": "earth mars vr" + }, + { + "appid": 2272250, + "normalized_name": "forgive me father 2" + }, + { + "appid": 2272290, + "normalized_name": "bottoms up! part 1" + }, + { + "appid": 2272300, + "normalized_name": "differlands" + }, + { + "appid": 2272310, + "normalized_name": "colourblind" + }, + { + "appid": 2272400, + "normalized_name": "station to station" + }, + { + "appid": 2272410, + "normalized_name": "shards between us" + }, + { + "appid": 2272420, + "normalized_name": "thief simulator 2 prologue" + }, + { + "appid": 2272430, + "normalized_name": "mayhem heroes" + }, + { + "appid": 2272480, + "normalized_name": "gninja pig" + }, + { + "appid": 2272520, + "normalized_name": "saki sakuseikan." + }, + { + "appid": 2272540, + "normalized_name": "fbc firebreak" + }, + { + "appid": 2272560, + "normalized_name": "the bread must rise" + }, + { + "appid": 2272600, + "normalized_name": "sam's last nightmare" + }, + { + "appid": 2272630, + "normalized_name": "peak.53" + }, + { + "appid": 2272640, + "normalized_name": "me && mory" + }, + { + "appid": 2272710, + "normalized_name": "hexagon puzzle blocks" + }, + { + "appid": 2272720, + "normalized_name": "exodium part 1" + }, + { + "appid": 2272730, + "normalized_name": "spaceminers" + }, + { + "appid": 2272770, + "normalized_name": "luckily my arm is a shotgun" + }, + { + "appid": 2272800, + "normalized_name": "mr. pogo" + }, + { + "appid": 2272850, + "normalized_name": "love birds" + }, + { + "appid": 2272860, + "normalized_name": "rogue tank" + }, + { + "appid": 2272870, + "normalized_name": "my first horse adventures on seahorse island" + }, + { + "appid": 2272880, + "normalized_name": "parashotical arktivibeatings" + }, + { + "appid": 2272900, + "normalized_name": "mirthwood" + }, + { + "appid": 2272940, + "normalized_name": "find the birds" + }, + { + "appid": 2272950, + "normalized_name": "deal & wheeler" + }, + { + "appid": 2272970, + "normalized_name": "gerascopia" + }, + { + "appid": 2273040, + "normalized_name": "illusion of being adult rated chapter 1" + }, + { + "appid": 2273050, + "normalized_name": "dirty dirty pirates" + }, + { + "appid": 2273060, + "normalized_name": "neon sex dream" + }, + { + "appid": 2273110, + "normalized_name": "dunjunguy" + }, + { + "appid": 2273180, + "normalized_name": "鏖战三国" + }, + { + "appid": 2273210, + "normalized_name": "cryptozoo" + }, + { + "appid": 2273220, + "normalized_name": "axium's box" + }, + { + "appid": 2273280, + "normalized_name": "孤岛救援 the island rescue" + }, + { + "appid": 2273390, + "normalized_name": "fantasya" + }, + { + "appid": 2273420, + "normalized_name": "peeping dorm manager" + }, + { + "appid": 2273430, + "normalized_name": "blazblue entropy effect" + }, + { + "appid": 2273440, + "normalized_name": "可识此阵" + }, + { + "appid": 2273460, + "normalized_name": "go over the edge" + }, + { + "appid": 2273470, + "normalized_name": "music store simulator prologue" + }, + { + "appid": 2273490, + "normalized_name": "convenient encounters" + }, + { + "appid": 2273500, + "normalized_name": "join tiles anatolian game to play" + }, + { + "appid": 2273510, + "normalized_name": "winnie the pooh the serial killer" + }, + { + "appid": 2273520, + "normalized_name": "boom lift operator" + }, + { + "appid": 2273530, + "normalized_name": "stuck on earth" + }, + { + "appid": 2273550, + "normalized_name": "postmouse" + }, + { + "appid": 2273570, + "normalized_name": "speed dates" + }, + { + "appid": 2273630, + "normalized_name": "pip x" + }, + { + "appid": 2273650, + "normalized_name": "scp josie" + }, + { + "appid": 2273720, + "normalized_name": "eidolon awakened" + }, + { + "appid": 2273810, + "normalized_name": "击魂z / beat the soul z" + }, + { + "appid": 2273820, + "normalized_name": "food maze" + }, + { + "appid": 2273850, + "normalized_name": "beacon patrol" + }, + { + "appid": 2273880, + "normalized_name": "arms evolution zombie destroyer" + }, + { + "appid": 2273920, + "normalized_name": "wojak rush" + }, + { + "appid": 2273980, + "normalized_name": "orcs must die! deathtrap" + }, + { + "appid": 2274000, + "normalized_name": "shells" + }, + { + "appid": 2274010, + "normalized_name": "animal portal puzzle" + }, + { + "appid": 2274050, + "normalized_name": "slovsurvival" + }, + { + "appid": 2274110, + "normalized_name": "the elephant collection" + }, + { + "appid": 2274120, + "normalized_name": "nsfw solitaire" + }, + { + "appid": 2274150, + "normalized_name": "zoolovelogy" + }, + { + "appid": 2274160, + "normalized_name": "gimmick's gadgets" + }, + { + "appid": 2274190, + "normalized_name": "party shift" + }, + { + "appid": 2274200, + "normalized_name": "arken age" + }, + { + "appid": 2274250, + "normalized_name": "ultratoro" + }, + { + "appid": 2274270, + "normalized_name": "bvb burglars vs brats" + }, + { + "appid": 2274320, + "normalized_name": "marginal break" + }, + { + "appid": 2274330, + "normalized_name": "poslor city" + }, + { + "appid": 2274340, + "normalized_name": "colossal cave vr" + }, + { + "appid": 2274380, + "normalized_name": "homeward" + }, + { + "appid": 2274390, + "normalized_name": "lawbringer" + }, + { + "appid": 2274410, + "normalized_name": "weird and unfortunate things are happening" + }, + { + "appid": 2274420, + "normalized_name": "toybox puzzle" + }, + { + "appid": 2274430, + "normalized_name": "under maintenance" + }, + { + "appid": 2274460, + "normalized_name": "succuseka resist succubus temptation" + }, + { + "appid": 2274480, + "normalized_name": "merchant of the six kingdoms" + }, + { + "appid": 2274500, + "normalized_name": "love too easily" + }, + { + "appid": 2274510, + "normalized_name": "hood warfare" + }, + { + "appid": 2274530, + "normalized_name": "goma ayakaze" + }, + { + "appid": 2274550, + "normalized_name": "cycle chaser h 5" + }, + { + "appid": 2274560, + "normalized_name": "恋してしまった星の王子 ~誓願院編~" + }, + { + "appid": 2274580, + "normalized_name": "恋してしまった星の王子 ~制裁院編~" + }, + { + "appid": 2274610, + "normalized_name": "桃の華は鮮血に染まる" + }, + { + "appid": 2274620, + "normalized_name": "discounty" + }, + { + "appid": 2274700, + "normalized_name": "daily dadish" + }, + { + "appid": 2274710, + "normalized_name": "cyber courier 2088" + }, + { + "appid": 2274730, + "normalized_name": "dungeon in grid puzzles" + }, + { + "appid": 2274800, + "normalized_name": "agent roy zombie hunt" + }, + { + "appid": 2274810, + "normalized_name": "mindless breakpoint" + }, + { + "appid": 2274820, + "normalized_name": "search all worms" + }, + { + "appid": 2274850, + "normalized_name": "yellow history" + }, + { + "appid": 2274860, + "normalized_name": "bus simulator car driving" + }, + { + "appid": 2274870, + "normalized_name": "garden of god" + }, + { + "appid": 2274880, + "normalized_name": "master heroes" + }, + { + "appid": 2274890, + "normalized_name": "mordath" + }, + { + "appid": 2274970, + "normalized_name": "when the devil takes hold" + }, + { + "appid": 2274980, + "normalized_name": "my neighbor's lonely wife 2" + }, + { + "appid": 2274990, + "normalized_name": "bargain invaders" + }, + { + "appid": 2275000, + "normalized_name": "basterd blitz" + }, + { + "appid": 2275010, + "normalized_name": "ardent wilds" + }, + { + "appid": 2275020, + "normalized_name": "backrooms rec." + }, + { + "appid": 2275070, + "normalized_name": "miwa the sacred fox" + }, + { + "appid": 2275100, + "normalized_name": "overencumbered in another world" + }, + { + "appid": 2275120, + "normalized_name": "knights of dice" + }, + { + "appid": 2275130, + "normalized_name": "rope bowling" + }, + { + "appid": 2275150, + "normalized_name": "sludge life 2" + }, + { + "appid": 2275180, + "normalized_name": "in the gym (memes horror game)" + }, + { + "appid": 2275220, + "normalized_name": "frontline survivors" + }, + { + "appid": 2275230, + "normalized_name": "kindergarten secret" + }, + { + "appid": 2275240, + "normalized_name": "working title" + }, + { + "appid": 2275290, + "normalized_name": "under the map" + }, + { + "appid": 2275300, + "normalized_name": "folk emerging" + }, + { + "appid": 2275340, + "normalized_name": "blind frontiers" + }, + { + "appid": 2275350, + "normalized_name": "obsta loop" + }, + { + "appid": 2275370, + "normalized_name": "static mag" + }, + { + "appid": 2275420, + "normalized_name": "click here" + }, + { + "appid": 2275440, + "normalized_name": "solar nations 2" + }, + { + "appid": 2275450, + "normalized_name": "pine tar poker" + }, + { + "appid": 2275490, + "normalized_name": "kaizen a factory story" + }, + { + "appid": 2275560, + "normalized_name": "westview academy season 1" + }, + { + "appid": 2275600, + "normalized_name": "star armada" + }, + { + "appid": 2275650, + "normalized_name": "back rank chess" + }, + { + "appid": 2275680, + "normalized_name": "wizard hentai survivors" + }, + { + "appid": 2275700, + "normalized_name": "futanari universe" + }, + { + "appid": 2275720, + "normalized_name": "alchemy shop" + }, + { + "appid": 2275750, + "normalized_name": "ascendance" + }, + { + "appid": 2275760, + "normalized_name": "operation dead man" + }, + { + "appid": 2275780, + "normalized_name": "round trip" + }, + { + "appid": 2275790, + "normalized_name": "foreign body" + }, + { + "appid": 2275820, + "normalized_name": "kitchen chaos learn game development" + }, + { + "appid": 2275840, + "normalized_name": "deliverywarth" + }, + { + "appid": 2275870, + "normalized_name": "escapegame timelessroom" + }, + { + "appid": 2275880, + "normalized_name": "endlessrunner" + }, + { + "appid": 2275920, + "normalized_name": "energy fighters" + }, + { + "appid": 2275940, + "normalized_name": "rogue hex" + }, + { + "appid": 2275960, + "normalized_name": "jump tale" + }, + { + "appid": 2275970, + "normalized_name": "eggsplorer" + }, + { + "appid": 2275980, + "normalized_name": "learn japanese" + }, + { + "appid": 2275990, + "normalized_name": "midnight彌奈" + }, + { + "appid": 2276030, + "normalized_name": "colors’ heartbeat" + }, + { + "appid": 2276040, + "normalized_name": "froggonit" + }, + { + "appid": 2276050, + "normalized_name": "proving grounds" + }, + { + "appid": 2276060, + "normalized_name": "truck simulator 3d" + }, + { + "appid": 2276080, + "normalized_name": "star rangers" + }, + { + "appid": 2276090, + "normalized_name": "goblin party" + }, + { + "appid": 2276100, + "normalized_name": "strength & virtue trials of the romer" + }, + { + "appid": 2276110, + "normalized_name": "cush's amazin' adventure!!" + }, + { + "appid": 2276120, + "normalized_name": "skyemont battle" + }, + { + "appid": 2276130, + "normalized_name": "swiftrace canyon" + }, + { + "appid": 2276140, + "normalized_name": "distant sun" + }, + { + "appid": 2276180, + "normalized_name": "onenellemoo" + }, + { + "appid": 2276230, + "normalized_name": "cuberun 2" + }, + { + "appid": 2276260, + "normalized_name": "lagoda odyssey" + }, + { + "appid": 2276270, + "normalized_name": "8 ball 3" + }, + { + "appid": 2276340, + "normalized_name": "binarion" + }, + { + "appid": 2276400, + "normalized_name": "dod" + }, + { + "appid": 2276420, + "normalized_name": "绝命游歌" + }, + { + "appid": 2276440, + "normalized_name": "鞭炮&烟花:春节模拟器firecrackers&fireworks:china new year simulation" + }, + { + "appid": 2276460, + "normalized_name": "boomsweeper vr" + }, + { + "appid": 2276480, + "normalized_name": "monster tower quest" + }, + { + "appid": 2276500, + "normalized_name": "portal guardians" + }, + { + "appid": 2276540, + "normalized_name": "iron sky a lunar adventure" + }, + { + "appid": 2276550, + "normalized_name": "bang bang land" + }, + { + "appid": 2276570, + "normalized_name": "the golden light guardian" + }, + { + "appid": 2276620, + "normalized_name": "the undead war" + }, + { + "appid": 2276720, + "normalized_name": "战争时代" + }, + { + "appid": 2276740, + "normalized_name": "drink stand tycoon" + }, + { + "appid": 2276770, + "normalized_name": "possible one lunar industries" + }, + { + "appid": 2276780, + "normalized_name": "truth seekers" + }, + { + "appid": 2276800, + "normalized_name": "goblin colony" + }, + { + "appid": 2276810, + "normalized_name": "paranormal investigators" + }, + { + "appid": 2276830, + "normalized_name": "kingsvein" + }, + { + "appid": 2276840, + "normalized_name": "quiz quest" + }, + { + "appid": 2276850, + "normalized_name": "the voidness lidar horror survival game" + }, + { + "appid": 2276880, + "normalized_name": "space entity" + }, + { + "appid": 2276930, + "normalized_name": "chillquarium" + }, + { + "appid": 2276960, + "normalized_name": "a land goo's crazy" + }, + { + "appid": 2276980, + "normalized_name": "faceminer" + }, + { + "appid": 2277000, + "normalized_name": "futa jigsaw dating" + }, + { + "appid": 2277050, + "normalized_name": "hentai fantasy chicks" + }, + { + "appid": 2277070, + "normalized_name": "please fuck me my sexy neighbor" + }, + { + "appid": 2277090, + "normalized_name": "daemon masquerade" + }, + { + "appid": 2277110, + "normalized_name": "arcracer" + }, + { + "appid": 2277160, + "normalized_name": "body count" + }, + { + "appid": 2277250, + "normalized_name": "stream defense" + }, + { + "appid": 2277300, + "normalized_name": "ntr'd by clumsiness" + }, + { + "appid": 2277310, + "normalized_name": "golden rails valuable package" + }, + { + "appid": 2277320, + "normalized_name": "necrosmith 2" + }, + { + "appid": 2277350, + "normalized_name": "mountain alpaca" + }, + { + "appid": 2277400, + "normalized_name": "东方梦世录 ~ adventure of dreaming world" + }, + { + "appid": 2277410, + "normalized_name": "under the sky world~another~" + }, + { + "appid": 2277420, + "normalized_name": "survival on snow" + }, + { + "appid": 2277490, + "normalized_name": "mystery solitaire. the black raven 4" + }, + { + "appid": 2277500, + "normalized_name": "mystery solitaire. the black raven 5" + }, + { + "appid": 2277510, + "normalized_name": "nature mahjong" + }, + { + "appid": 2277520, + "normalized_name": "mini driver" + }, + { + "appid": 2277560, + "normalized_name": "wuchang fallen feathers" + }, + { + "appid": 2277600, + "normalized_name": "grabe 4x4" + }, + { + "appid": 2277610, + "normalized_name": "castle destroyers" + }, + { + "appid": 2277670, + "normalized_name": "hank straightjacket" + }, + { + "appid": 2277680, + "normalized_name": "wuxian" + }, + { + "appid": 2277720, + "normalized_name": "red glare" + }, + { + "appid": 2277740, + "normalized_name": "steer madness" + }, + { + "appid": 2277770, + "normalized_name": "vacation adventures park ranger 13 collector's" + }, + { + "appid": 2277790, + "normalized_name": "dododge" + }, + { + "appid": 2277830, + "normalized_name": "occult chambers" + }, + { + "appid": 2277840, + "normalized_name": "mythology waifus mahjong" + }, + { + "appid": 2277850, + "normalized_name": "midnight pufferfish show" + }, + { + "appid": 2277870, + "normalized_name": "the midnight crimes" + }, + { + "appid": 2277910, + "normalized_name": "i commissioned some bees 14" + }, + { + "appid": 2277940, + "normalized_name": "emergent magic" + }, + { + "appid": 2277950, + "normalized_name": "autumn time trade up" + }, + { + "appid": 2277960, + "normalized_name": "b horror subway" + }, + { + "appid": 2278000, + "normalized_name": "abyss深淵" + }, + { + "appid": 2278010, + "normalized_name": "six ages 2 lights going out" + }, + { + "appid": 2278080, + "normalized_name": "kingdoms" + }, + { + "appid": 2278110, + "normalized_name": "tower builder" + }, + { + "appid": 2278120, + "normalized_name": "break everything park" + }, + { + "appid": 2278130, + "normalized_name": "hidden post apocalyptic 4 top down 3d" + }, + { + "appid": 2278160, + "normalized_name": "onmyoudou origins" + }, + { + "appid": 2278180, + "normalized_name": "the secret of crystal mountain" + }, + { + "appid": 2278190, + "normalized_name": "the resurrection of naxa" + }, + { + "appid": 2278200, + "normalized_name": "compicactus" + }, + { + "appid": 2278220, + "normalized_name": "hentai hanako" + }, + { + "appid": 2278270, + "normalized_name": "legend of kungfu" + }, + { + "appid": 2278290, + "normalized_name": "god touch" + }, + { + "appid": 2278300, + "normalized_name": "a symmetric escape" + }, + { + "appid": 2278360, + "normalized_name": "fear followers" + }, + { + "appid": 2278380, + "normalized_name": "haunting of the evil spirit horror choose your own adventure novel" + }, + { + "appid": 2278390, + "normalized_name": "yni^" + }, + { + "appid": 2278430, + "normalized_name": "moonyou" + }, + { + "appid": 2278480, + "normalized_name": "buzz" + }, + { + "appid": 2278530, + "normalized_name": "jack and kenne" + }, + { + "appid": 2278550, + "normalized_name": "deck of the dead" + }, + { + "appid": 2278600, + "normalized_name": "carta nostra" + }, + { + "appid": 2278630, + "normalized_name": "livestream 2 escape from togaezuka happy place" + }, + { + "appid": 2278640, + "normalized_name": "love on leave" + }, + { + "appid": 2278690, + "normalized_name": "manor maze" + }, + { + "appid": 2278760, + "normalized_name": "superstein" + }, + { + "appid": 2278780, + "normalized_name": "cats in heat summer fling" + }, + { + "appid": 2278790, + "normalized_name": "grapple dogs cosmic canines" + }, + { + "appid": 2278820, + "normalized_name": "archery club" + }, + { + "appid": 2278830, + "normalized_name": "gunsuit guardians" + }, + { + "appid": 2278910, + "normalized_name": "rich uncle a gay adventure" + }, + { + "appid": 2278920, + "normalized_name": "subnet escape room adventure" + }, + { + "appid": 2278930, + "normalized_name": "boxing legend" + }, + { + "appid": 2278940, + "normalized_name": "noxia somnia" + }, + { + "appid": 2279040, + "normalized_name": "dance loop" + }, + { + "appid": 2279060, + "normalized_name": "stack machines" + }, + { + "appid": 2279080, + "normalized_name": "perfect lap" + }, + { + "appid": 2279120, + "normalized_name": "東方弾幕infinity" + }, + { + "appid": 2279160, + "normalized_name": "twistales" + }, + { + "appid": 2279180, + "normalized_name": "death nomad" + }, + { + "appid": 2279220, + "normalized_name": "diceheart" + }, + { + "appid": 2279260, + "normalized_name": "beneath the woods" + }, + { + "appid": 2279270, + "normalized_name": "the duduk master" + }, + { + "appid": 2279280, + "normalized_name": "eldritch 2" + }, + { + "appid": 2279310, + "normalized_name": "pixel town akanemachi mystery 2" + }, + { + "appid": 2279330, + "normalized_name": "savant ascent remix" + }, + { + "appid": 2279350, + "normalized_name": "sex adventures love yacht" + }, + { + "appid": 2279370, + "normalized_name": "plunder islands" + }, + { + "appid": 2279380, + "normalized_name": "nixxsz castle" + }, + { + "appid": 2279390, + "normalized_name": "made in ohio" + }, + { + "appid": 2279410, + "normalized_name": "the zombie neighborhood" + }, + { + "appid": 2279420, + "normalized_name": "roterra 4 magical revolution" + }, + { + "appid": 2279430, + "normalized_name": "resistance forces" + }, + { + "appid": 2279440, + "normalized_name": "soul mates" + }, + { + "appid": 2279450, + "normalized_name": "goobnballoonsdx" + }, + { + "appid": 2279490, + "normalized_name": "containment zone" + }, + { + "appid": 2279510, + "normalized_name": "sexts" + }, + { + "appid": 2279530, + "normalized_name": "myriad hotel" + }, + { + "appid": 2279550, + "normalized_name": "between" + }, + { + "appid": 2279560, + "normalized_name": "furry sweeper" + }, + { + "appid": 2279570, + "normalized_name": "jadoraki" + }, + { + "appid": 2279600, + "normalized_name": "raw metal" + }, + { + "appid": 2279610, + "normalized_name": "house of lies" + }, + { + "appid": 2279620, + "normalized_name": "14 days of desire" + }, + { + "appid": 2279640, + "normalized_name": "roll freak" + }, + { + "appid": 2279660, + "normalized_name": "pythonmancer" + }, + { + "appid": 2279700, + "normalized_name": "elder trial" + }, + { + "appid": 2279710, + "normalized_name": "logicats" + }, + { + "appid": 2279730, + "normalized_name": "king arthur legends rise" + }, + { + "appid": 2279740, + "normalized_name": "dungeon survive" + }, + { + "appid": 2279800, + "normalized_name": "挂机吧兄弟" + }, + { + "appid": 2279810, + "normalized_name": "super fight" + }, + { + "appid": 2279860, + "normalized_name": "pottery" + }, + { + "appid": 2279870, + "normalized_name": "project nosferatu" + }, + { + "appid": 2279930, + "normalized_name": "little land war srpg" + }, + { + "appid": 2279940, + "normalized_name": "baking success" + }, + { + "appid": 2279960, + "normalized_name": "self defense kinda..." + }, + { + "appid": 2279980, + "normalized_name": "prison life simulator 2023 world fight battle" + }, + { + "appid": 2280020, + "normalized_name": "lindwyrm" + }, + { + "appid": 2280060, + "normalized_name": "tenebris terra incognita" + }, + { + "appid": 2280140, + "normalized_name": "merge me!" + }, + { + "appid": 2280150, + "normalized_name": "almost" + }, + { + "appid": 2280200, + "normalized_name": "dream bright" + }, + { + "appid": 2280220, + "normalized_name": "gunwatch conflict survival" + }, + { + "appid": 2280260, + "normalized_name": "kori's fable visual novel" + }, + { + "appid": 2280320, + "normalized_name": "amigo kebab simulator" + }, + { + "appid": 2280330, + "normalized_name": "vireracers" + }, + { + "appid": 2280350, + "normalized_name": "turbo dismount 2" + }, + { + "appid": 2280360, + "normalized_name": "scarecrow" + }, + { + "appid": 2280370, + "normalized_name": "save the world" + }, + { + "appid": 2280390, + "normalized_name": "tennis manager 2023" + }, + { + "appid": 2280430, + "normalized_name": "the berlin apartment" + }, + { + "appid": 2280440, + "normalized_name": "ogre chambers dx" + }, + { + "appid": 2280450, + "normalized_name": "fish folk jumpy" + }, + { + "appid": 2280460, + "normalized_name": "disgusting puzzle" + }, + { + "appid": 2280470, + "normalized_name": "snakes ltd vr" + }, + { + "appid": 2280490, + "normalized_name": "metal ascension" + }, + { + "appid": 2280510, + "normalized_name": "side scape" + }, + { + "appid": 2280520, + "normalized_name": "vampire mansion" + }, + { + "appid": 2280540, + "normalized_name": "last saintess" + }, + { + "appid": 2280570, + "normalized_name": "war on the street" + }, + { + "appid": 2280580, + "normalized_name": "dragon abyss" + }, + { + "appid": 2280590, + "normalized_name": "reborn to veer" + }, + { + "appid": 2280630, + "normalized_name": "aquahero" + }, + { + "appid": 2280640, + "normalized_name": "haunted hotel personal nightmare collector's" + }, + { + "appid": 2280670, + "normalized_name": "fumpers" + }, + { + "appid": 2280700, + "normalized_name": "skera vr" + }, + { + "appid": 2280710, + "normalized_name": "intake anomalous occurrence management training" + }, + { + "appid": 2280740, + "normalized_name": "potio mellow" + }, + { + "appid": 2280810, + "normalized_name": "doug's nightmare" + }, + { + "appid": 2280870, + "normalized_name": "karakuru" + }, + { + "appid": 2280890, + "normalized_name": "kanji islands learn to read japanese" + }, + { + "appid": 2280900, + "normalized_name": "blood rot 1918" + }, + { + "appid": 2280910, + "normalized_name": "swords & bones 3" + }, + { + "appid": 2280970, + "normalized_name": "elaria the corrupted throne" + }, + { + "appid": 2280990, + "normalized_name": "tropity" + }, + { + "appid": 2281040, + "normalized_name": "ヴィデオの中に私" + }, + { + "appid": 2281070, + "normalized_name": "bitter heaven" + }, + { + "appid": 2281080, + "normalized_name": "dunge" + }, + { + "appid": 2281100, + "normalized_name": "fox of the moon" + }, + { + "appid": 2281130, + "normalized_name": "equal people" + }, + { + "appid": 2281150, + "normalized_name": "zaoça šäaiks lagush" + }, + { + "appid": 2281160, + "normalized_name": "kayserrotz" + }, + { + "appid": 2281170, + "normalized_name": "v art vr painting studio" + }, + { + "appid": 2281200, + "normalized_name": "polygone" + }, + { + "appid": 2281230, + "normalized_name": "endless" + }, + { + "appid": 2281270, + "normalized_name": "yumemori" + }, + { + "appid": 2281300, + "normalized_name": "沃瑞尔:荒境" + }, + { + "appid": 2281310, + "normalized_name": "farsiders" + }, + { + "appid": 2281340, + "normalized_name": "song song" + }, + { + "appid": 2281360, + "normalized_name": "old coin pusher friends 2" + }, + { + "appid": 2281370, + "normalized_name": "dashton+" + }, + { + "appid": 2281390, + "normalized_name": "boundary walls" + }, + { + "appid": 2281410, + "normalized_name": "江城创业记 river town factory" + }, + { + "appid": 2281470, + "normalized_name": "your train" + }, + { + "appid": 2281480, + "normalized_name": "battle grid" + }, + { + "appid": 2281520, + "normalized_name": "dino dash party" + }, + { + "appid": 2281530, + "normalized_name": "dungeon seekers" + }, + { + "appid": 2281540, + "normalized_name": "japanese rail sim operating the meitetsu line" + }, + { + "appid": 2281550, + "normalized_name": "jump de pon" + }, + { + "appid": 2281580, + "normalized_name": "trollge the incidents maker" + }, + { + "appid": 2281610, + "normalized_name": "scrappage" + }, + { + "appid": 2281620, + "normalized_name": "mars horizon 2 the search for life" + }, + { + "appid": 2281650, + "normalized_name": "an ankou" + }, + { + "appid": 2281700, + "normalized_name": "crystal storm" + }, + { + "appid": 2281720, + "normalized_name": "chicken path" + }, + { + "appid": 2281730, + "normalized_name": "combat master season 4" + }, + { + "appid": 2281760, + "normalized_name": "looking familiar" + }, + { + "appid": 2281790, + "normalized_name": "視靈" + }, + { + "appid": 2281800, + "normalized_name": "crystania wars 2" + }, + { + "appid": 2281820, + "normalized_name": "evolings" + }, + { + "appid": 2281850, + "normalized_name": "hentai ninja" + }, + { + "appid": 2281860, + "normalized_name": "duelyst gg" + }, + { + "appid": 2281870, + "normalized_name": "digs td" + }, + { + "appid": 2281890, + "normalized_name": "primitive environment survival" + }, + { + "appid": 2281900, + "normalized_name": "fairytale theatre" + }, + { + "appid": 2281940, + "normalized_name": "the mobius machine" + }, + { + "appid": 2281980, + "normalized_name": "unilife" + }, + { + "appid": 2282010, + "normalized_name": "loose or escape" + }, + { + "appid": 2282020, + "normalized_name": "city idle" + }, + { + "appid": 2282050, + "normalized_name": "sanctumate" + }, + { + "appid": 2282080, + "normalized_name": "highlighters cosmic puzzle action" + }, + { + "appid": 2282110, + "normalized_name": "march march! european warfare" + }, + { + "appid": 2282130, + "normalized_name": "man 2" + }, + { + "appid": 2282190, + "normalized_name": "stale nation" + }, + { + "appid": 2282200, + "normalized_name": "echo storm" + }, + { + "appid": 2282260, + "normalized_name": "run gunners' revenge" + }, + { + "appid": 2282310, + "normalized_name": "chimeras blinding love collector's" + }, + { + "appid": 2282330, + "normalized_name": "crime passional" + }, + { + "appid": 2282340, + "normalized_name": "wonder wand" + }, + { + "appid": 2282350, + "normalized_name": "la quimera" + }, + { + "appid": 2282360, + "normalized_name": "chicken coop" + }, + { + "appid": 2282380, + "normalized_name": "endlesschoice" + }, + { + "appid": 2282400, + "normalized_name": "hearth's light potion shop" + }, + { + "appid": 2282410, + "normalized_name": "mini market simulator vr" + }, + { + "appid": 2282480, + "normalized_name": "cave crawler" + }, + { + "appid": 2282540, + "normalized_name": "scary turnaround" + }, + { + "appid": 2282600, + "normalized_name": "ultra mega planet battles" + }, + { + "appid": 2282620, + "normalized_name": "death road" + }, + { + "appid": 2282630, + "normalized_name": "world annihilation operations parts i iv" + }, + { + "appid": 2282650, + "normalized_name": "holiday party mascot brawl" + }, + { + "appid": 2282690, + "normalized_name": "pattaya" + }, + { + "appid": 2282700, + "normalized_name": "alien battlefield" + }, + { + "appid": 2282720, + "normalized_name": "deep assault" + }, + { + "appid": 2282730, + "normalized_name": "dive to the abyssal void" + }, + { + "appid": 2282740, + "normalized_name": "batsugun saturn tribute boosted" + }, + { + "appid": 2282760, + "normalized_name": "goblr goblin date night simulator" + }, + { + "appid": 2282780, + "normalized_name": "feed him" + }, + { + "appid": 2282790, + "normalized_name": "riftstorm" + }, + { + "appid": 2282810, + "normalized_name": "rich milf drama" + }, + { + "appid": 2282820, + "normalized_name": "emotions social medie" + }, + { + "appid": 2282840, + "normalized_name": "agis" + }, + { + "appid": 2282890, + "normalized_name": "folklands" + }, + { + "appid": 2282900, + "normalized_name": "zombie apocalypse the last fortress" + }, + { + "appid": 2282910, + "normalized_name": "lair of goblins" + }, + { + "appid": 2282920, + "normalized_name": "catagaia" + }, + { + "appid": 2282930, + "normalized_name": "meet me on the mountain" + }, + { + "appid": 2282940, + "normalized_name": "moriarty chronicles" + }, + { + "appid": 2282990, + "normalized_name": "droidmals lavanlier town" + }, + { + "appid": 2283050, + "normalized_name": "avenger (c64/cpc/spectrum)" + }, + { + "appid": 2283060, + "normalized_name": "christmas squirt!" + }, + { + "appid": 2283070, + "normalized_name": "mega giga cookie destroyer td" + }, + { + "appid": 2283090, + "normalized_name": "shotgun recovery" + }, + { + "appid": 2283110, + "normalized_name": "hexical" + }, + { + "appid": 2283120, + "normalized_name": "ソウエンノイセキ" + }, + { + "appid": 2283140, + "normalized_name": "fincester tower" + }, + { + "appid": 2283170, + "normalized_name": "percy the potty pigeon (c64/spectrum)" + }, + { + "appid": 2283200, + "normalized_name": "eleanor in miami" + }, + { + "appid": 2283230, + "normalized_name": "project shikai" + }, + { + "appid": 2283240, + "normalized_name": "flight simulator pro" + }, + { + "appid": 2283250, + "normalized_name": "dark dawn the chronicles of a doll" + }, + { + "appid": 2283280, + "normalized_name": "minibob" + }, + { + "appid": 2283310, + "normalized_name": "tal arctic 5" + }, + { + "appid": 2283330, + "normalized_name": "military battlefield enlisted" + }, + { + "appid": 2283340, + "normalized_name": "astarian adventures" + }, + { + "appid": 2283350, + "normalized_name": "reborn a zombie!" + }, + { + "appid": 2283360, + "normalized_name": "forced sacrifice hejled" + }, + { + "appid": 2283380, + "normalized_name": "charrua soccer pro" + }, + { + "appid": 2283390, + "normalized_name": "komodo 3k arena" + }, + { + "appid": 2283400, + "normalized_name": "my home/zombie center" + }, + { + "appid": 2283410, + "normalized_name": "cthuloot" + }, + { + "appid": 2283440, + "normalized_name": "find the energy" + }, + { + "appid": 2283460, + "normalized_name": "sex with hitler 2069" + }, + { + "appid": 2283470, + "normalized_name": "runa & the chaikurú legacy" + }, + { + "appid": 2283490, + "normalized_name": "hexield" + }, + { + "appid": 2283540, + "normalized_name": "therapy simulator 2023" + }, + { + "appid": 2283580, + "normalized_name": "voxile" + }, + { + "appid": 2283600, + "normalized_name": "cataclysm upon us" + }, + { + "appid": 2283630, + "normalized_name": "no water in hell" + }, + { + "appid": 2283640, + "normalized_name": "behind the barrier" + }, + { + "appid": 2283650, + "normalized_name": "overwritten enter the net" + }, + { + "appid": 2283660, + "normalized_name": "time hoppers the silk road" + }, + { + "appid": 2283670, + "normalized_name": "栽培人计划:meet a date!" + }, + { + "appid": 2283690, + "normalized_name": "the adventures of linshanhai" + }, + { + "appid": 2283710, + "normalized_name": "アパシー学校であった怖い話 極" + }, + { + "appid": 2283720, + "normalized_name": "city of despair shadows over tokyo" + }, + { + "appid": 2283780, + "normalized_name": "stranded in space" + }, + { + "appid": 2283800, + "normalized_name": "fingerspelling unleashed banzsl" + }, + { + "appid": 2283820, + "normalized_name": "drifted" + }, + { + "appid": 2283850, + "normalized_name": "the justitia files" + }, + { + "appid": 2283860, + "normalized_name": "sex simulator hot sauna" + }, + { + "appid": 2283870, + "normalized_name": "the backrooms experiment" + }, + { + "appid": 2283880, + "normalized_name": "shoulders of giants" + }, + { + "appid": 2283910, + "normalized_name": "viva zalata" + }, + { + "appid": 2283930, + "normalized_name": "hentai erocum" + }, + { + "appid": 2283940, + "normalized_name": "ancient guardians the dragon" + }, + { + "appid": 2283950, + "normalized_name": "mythrel" + }, + { + "appid": 2284000, + "normalized_name": "running riot" + }, + { + "appid": 2284060, + "normalized_name": "crazy cars" + }, + { + "appid": 2284080, + "normalized_name": "rank warmaster bunker buster" + }, + { + "appid": 2284090, + "normalized_name": "last dawn" + }, + { + "appid": 2284100, + "normalized_name": "notes of the young lady in turbulent times" + }, + { + "appid": 2284140, + "normalized_name": "greenfield" + }, + { + "appid": 2284160, + "normalized_name": "team five" + }, + { + "appid": 2284190, + "normalized_name": "poglings" + }, + { + "appid": 2284200, + "normalized_name": "artificer's tower" + }, + { + "appid": 2284210, + "normalized_name": "crafting combat" + }, + { + "appid": 2284240, + "normalized_name": "the grindstone" + }, + { + "appid": 2284260, + "normalized_name": "the wailer" + }, + { + "appid": 2284270, + "normalized_name": "adventurer farmer save my son!" + }, + { + "appid": 2284290, + "normalized_name": "aircraft infinity" + }, + { + "appid": 2284310, + "normalized_name": "elephantasy flipside" + }, + { + "appid": 2284370, + "normalized_name": "pyramis" + }, + { + "appid": 2284380, + "normalized_name": "the regions" + }, + { + "appid": 2284390, + "normalized_name": "castle kingdom wars" + }, + { + "appid": 2284410, + "normalized_name": "路地裏漂流記" + }, + { + "appid": 2284430, + "normalized_name": "小白的保卫战 xiaobai's defense war" + }, + { + "appid": 2284460, + "normalized_name": "traumacore violence" + }, + { + "appid": 2284480, + "normalized_name": "soar" + }, + { + "appid": 2284510, + "normalized_name": "イーシャの魔法図書室" + }, + { + "appid": 2284520, + "normalized_name": "marble escape" + }, + { + "appid": 2284530, + "normalized_name": "tears rain tears of goddess" + }, + { + "appid": 2284590, + "normalized_name": "fiery rivaz" + }, + { + "appid": 2284600, + "normalized_name": "codex lost" + }, + { + "appid": 2284630, + "normalized_name": "hold position zombie" + }, + { + "appid": 2284640, + "normalized_name": "meteor commander" + }, + { + "appid": 2284650, + "normalized_name": "sweet dreams dahlia" + }, + { + "appid": 2284680, + "normalized_name": "boop a cat" + }, + { + "appid": 2284770, + "normalized_name": "clear the space" + }, + { + "appid": 2284780, + "normalized_name": "huabing" + }, + { + "appid": 2284800, + "normalized_name": "arms race 2" + }, + { + "appid": 2284810, + "normalized_name": "through time" + }, + { + "appid": 2284840, + "normalized_name": "across the wilds" + }, + { + "appid": 2284860, + "normalized_name": "vrosty" + }, + { + "appid": 2284870, + "normalized_name": "lunar lander" + }, + { + "appid": 2284900, + "normalized_name": "alignment" + }, + { + "appid": 2284990, + "normalized_name": "oxygen caliber" + }, + { + "appid": 2285000, + "normalized_name": "the misadventures of xenos" + }, + { + "appid": 2285040, + "normalized_name": "blood bottom" + }, + { + "appid": 2285090, + "normalized_name": "life in the twilight" + }, + { + "appid": 2285120, + "normalized_name": "hentai hasshaku" + }, + { + "appid": 2285140, + "normalized_name": "瞬忆" + }, + { + "appid": 2285150, + "normalized_name": "the front" + }, + { + "appid": 2285160, + "normalized_name": "wak attak" + }, + { + "appid": 2285180, + "normalized_name": "dream catcher" + }, + { + "appid": 2285190, + "normalized_name": "dreadmist" + }, + { + "appid": 2285210, + "normalized_name": "blue wednesday prologue" + }, + { + "appid": 2285250, + "normalized_name": "jo jo wo" + }, + { + "appid": 2285270, + "normalized_name": "转厝" + }, + { + "appid": 2285280, + "normalized_name": "more than words" + }, + { + "appid": 2285320, + "normalized_name": "愛する妻、美咲の不倫証拠 『旦那とどっちが気持ちいい?』→『貴方の方が…あっ、ダメッ、またイッちゃうッ…!』" + }, + { + "appid": 2285330, + "normalized_name": "愛する妻、玲奈の浮気告白 『お、俺より気持ち良かったのか...?』→『...うん。凄かった』" + }, + { + "appid": 2285340, + "normalized_name": "愛する妻が目の前で他人棒に貫かれ、よがり喘いでいく ~ゴメンなさいあなた。でも、私気持ちいいの…〜" + }, + { + "appid": 2285350, + "normalized_name": "他の男の精液で孕むとき ~襖の向こうで弟に精液を注ぎ込まれている妻~" + }, + { + "appid": 2285390, + "normalized_name": "lhama clicker" + }, + { + "appid": 2285400, + "normalized_name": "towers together beginnings" + }, + { + "appid": 2285410, + "normalized_name": "leta adventure" + }, + { + "appid": 2285420, + "normalized_name": "あのちゃんを病院に連れてって" + }, + { + "appid": 2285430, + "normalized_name": "bad hop baseball" + }, + { + "appid": 2285490, + "normalized_name": "square garden" + }, + { + "appid": 2285500, + "normalized_name": "flora domina" + }, + { + "appid": 2285520, + "normalized_name": "doomsday survivors" + }, + { + "appid": 2285540, + "normalized_name": "dutch's chickens" + }, + { + "appid": 2285550, + "normalized_name": "doloc town" + }, + { + "appid": 2285570, + "normalized_name": "觅仙" + }, + { + "appid": 2285610, + "normalized_name": "人形の傷跡:姉の謎を追うサイコホラー" + }, + { + "appid": 2285620, + "normalized_name": "warfarebattle" + }, + { + "appid": 2285630, + "normalized_name": "survivors of the dawn" + }, + { + "appid": 2285640, + "normalized_name": "tales of sintra the dark vortex" + }, + { + "appid": 2285650, + "normalized_name": "仙劍客棧" + }, + { + "appid": 2285730, + "normalized_name": "aeterna rubra plena" + }, + { + "appid": 2285750, + "normalized_name": "epidemic" + }, + { + "appid": 2285820, + "normalized_name": "idling gears" + }, + { + "appid": 2285830, + "normalized_name": "knight death and the devil" + }, + { + "appid": 2285860, + "normalized_name": "engineering mystery of the ancient clock" + }, + { + "appid": 2285880, + "normalized_name": "paranormal girlfriend" + }, + { + "appid": 2285890, + "normalized_name": "the dark pictures anthology the devil in me friend's pass" + }, + { + "appid": 2285940, + "normalized_name": "hollow survivors" + }, + { + "appid": 2285950, + "normalized_name": "sakura battle" + }, + { + "appid": 2285980, + "normalized_name": "pocket mini golf 2" + }, + { + "appid": 2285990, + "normalized_name": "up step maid" + }, + { + "appid": 2286000, + "normalized_name": "cracks where the light gets in" + }, + { + "appid": 2286020, + "normalized_name": "the pyramid of bones" + }, + { + "appid": 2286070, + "normalized_name": "tale of ren ~ [searching for heart droplets] ~" + }, + { + "appid": 2286080, + "normalized_name": "sparklewand puzzle" + }, + { + "appid": 2286090, + "normalized_name": "quadremor" + }, + { + "appid": 2286110, + "normalized_name": "hyper pop" + }, + { + "appid": 2286200, + "normalized_name": "disgusting puzzle 2" + }, + { + "appid": 2286220, + "normalized_name": "dark desire mute 2" + }, + { + "appid": 2286230, + "normalized_name": "galactic economy" + }, + { + "appid": 2286240, + "normalized_name": "polyturned" + }, + { + "appid": 2286250, + "normalized_name": "tokyo neural groove" + }, + { + "appid": 2286260, + "normalized_name": "infinite incantation" + }, + { + "appid": 2286280, + "normalized_name": "spacepunk survival" + }, + { + "appid": 2286300, + "normalized_name": "hentai casual slider 2" + }, + { + "appid": 2286320, + "normalized_name": "mikrocosmos" + }, + { + "appid": 2286330, + "normalized_name": "goose ronnie" + }, + { + "appid": 2286380, + "normalized_name": "9 realms" + }, + { + "appid": 2286390, + "normalized_name": "tunnet" + }, + { + "appid": 2286440, + "normalized_name": "puzzle playing cards" + }, + { + "appid": 2286450, + "normalized_name": "striving for light survival" + }, + { + "appid": 2286510, + "normalized_name": "move nature" + }, + { + "appid": 2286520, + "normalized_name": "garden of roses summerset" + }, + { + "appid": 2286530, + "normalized_name": "a vøid" + }, + { + "appid": 2286540, + "normalized_name": "destiny duel" + }, + { + "appid": 2286560, + "normalized_name": "battle of guardians" + }, + { + "appid": 2286580, + "normalized_name": "deer crusade" + }, + { + "appid": 2286600, + "normalized_name": "hotel barcelona" + }, + { + "appid": 2286620, + "normalized_name": "styling shop vr" + }, + { + "appid": 2286680, + "normalized_name": "pinbuilder" + }, + { + "appid": 2286690, + "normalized_name": "pick up the waste" + }, + { + "appid": 2286720, + "normalized_name": "glimmer chain" + }, + { + "appid": 2286730, + "normalized_name": "sleight of hand dynasty" + }, + { + "appid": 2286750, + "normalized_name": "space guardians" + }, + { + "appid": 2286760, + "normalized_name": "sudoku classic" + }, + { + "appid": 2286770, + "normalized_name": "纸嫁衣4红丝缠" + }, + { + "appid": 2286780, + "normalized_name": "aeruta" + }, + { + "appid": 2286790, + "normalized_name": "helmetman" + }, + { + "appid": 2286800, + "normalized_name": "高考夺魁记" + }, + { + "appid": 2286830, + "normalized_name": "deep blue fantasy" + }, + { + "appid": 2286840, + "normalized_name": "dark traveller" + }, + { + "appid": 2286880, + "normalized_name": "endless fireworks simulator" + }, + { + "appid": 2286890, + "normalized_name": "面仙" + }, + { + "appid": 2286940, + "normalized_name": "faculty" + }, + { + "appid": 2286950, + "normalized_name": "find the murderer 3" + }, + { + "appid": 2286960, + "normalized_name": "spellarium 9 match 3 puzzle" + }, + { + "appid": 2286990, + "normalized_name": "beep's escape" + }, + { + "appid": 2287000, + "normalized_name": "ninja kidz time masters" + }, + { + "appid": 2287010, + "normalized_name": "masterchef el videojuego oficial edición españa" + }, + { + "appid": 2287030, + "normalized_name": "sigformation" + }, + { + "appid": 2287040, + "normalized_name": "o o" + }, + { + "appid": 2287060, + "normalized_name": "extreme car drift simulator" + }, + { + "appid": 2287070, + "normalized_name": "omega survivors" + }, + { + "appid": 2287080, + "normalized_name": "fluctuoid" + }, + { + "appid": 2287090, + "normalized_name": "烁光暗影" + }, + { + "appid": 2287100, + "normalized_name": "paths of fight samurai" + }, + { + "appid": 2287130, + "normalized_name": "the hidden room pyramid" + }, + { + "appid": 2287140, + "normalized_name": "mooselutions" + }, + { + "appid": 2287150, + "normalized_name": "revenge of the mage" + }, + { + "appid": 2287170, + "normalized_name": "surviving skeleton island" + }, + { + "appid": 2287180, + "normalized_name": "for mankind" + }, + { + "appid": 2287190, + "normalized_name": "the king is dead" + }, + { + "appid": 2287220, + "normalized_name": "f1 manager 2023" + }, + { + "appid": 2287330, + "normalized_name": "empire of the ants" + }, + { + "appid": 2287350, + "normalized_name": "chief emoji officer" + }, + { + "appid": 2287360, + "normalized_name": "chess defense saga" + }, + { + "appid": 2287370, + "normalized_name": "anima song from the abyss" + }, + { + "appid": 2287390, + "normalized_name": "draw the road" + }, + { + "appid": 2287420, + "normalized_name": "nanoplanet survivors" + }, + { + "appid": 2287430, + "normalized_name": "metropolis 1998" + }, + { + "appid": 2287440, + "normalized_name": "tile titans" + }, + { + "appid": 2287500, + "normalized_name": "white wolf treasure hunter" + }, + { + "appid": 2287520, + "normalized_name": "five nights at freddy's help wanted 2" + }, + { + "appid": 2287550, + "normalized_name": "farm rpg" + }, + { + "appid": 2287560, + "normalized_name": "vengeance of mr. peppermint" + }, + { + "appid": 2287600, + "normalized_name": "jump fucker" + }, + { + "appid": 2287650, + "normalized_name": "hitler bdsm bunker" + }, + { + "appid": 2287710, + "normalized_name": "where the heart is season 1" + }, + { + "appid": 2287720, + "normalized_name": "chymicalia" + }, + { + "appid": 2287760, + "normalized_name": "brave soldier invasion of cyborgs" + }, + { + "appid": 2287770, + "normalized_name": "league of tabletop games vr" + }, + { + "appid": 2287780, + "normalized_name": "东方妖灵传 / touhou legend of fairy souls" + }, + { + "appid": 2287790, + "normalized_name": "tide girl phenomena" + }, + { + "appid": 2287950, + "normalized_name": "escape room vr gone man" + }, + { + "appid": 2287960, + "normalized_name": "stigmata of sacrilege" + }, + { + "appid": 2287970, + "normalized_name": "dungeon's legion" + }, + { + "appid": 2287980, + "normalized_name": "country bumpkin yutaka" + }, + { + "appid": 2287990, + "normalized_name": "gemcrusty" + }, + { + "appid": 2288020, + "normalized_name": "tanklab" + }, + { + "appid": 2288050, + "normalized_name": "isle of the jötunn" + }, + { + "appid": 2288060, + "normalized_name": "stepsister" + }, + { + "appid": 2288070, + "normalized_name": "the ninja saviors return of the warriors" + }, + { + "appid": 2288080, + "normalized_name": "maumau and the labyrinth" + }, + { + "appid": 2288090, + "normalized_name": "foad" + }, + { + "appid": 2288100, + "normalized_name": "time's disillusion" + }, + { + "appid": 2288110, + "normalized_name": "illwind" + }, + { + "appid": 2288150, + "normalized_name": "romance of the three kingdoms 8 remake" + }, + { + "appid": 2288190, + "normalized_name": "liam_99" + }, + { + "appid": 2288210, + "normalized_name": "三国真龙传" + }, + { + "appid": 2288280, + "normalized_name": "be frugal" + }, + { + "appid": 2288300, + "normalized_name": "dare to spread" + }, + { + "appid": 2288310, + "normalized_name": "five nights at tinky's" + }, + { + "appid": 2288330, + "normalized_name": "metabolis (c64/spectrum)" + }, + { + "appid": 2288350, + "normalized_name": "raidou the mystery of the soulless army" + }, + { + "appid": 2288460, + "normalized_name": "it's barbaric euroza" + }, + { + "appid": 2288470, + "normalized_name": "aethermancer" + }, + { + "appid": 2288480, + "normalized_name": "kiss effect" + }, + { + "appid": 2288520, + "normalized_name": "the quiet things" + }, + { + "appid": 2288530, + "normalized_name": "a pretty broken adventure" + }, + { + "appid": 2288560, + "normalized_name": "fighting pudding" + }, + { + "appid": 2288570, + "normalized_name": "badman" + }, + { + "appid": 2288600, + "normalized_name": "son of a gun" + }, + { + "appid": 2288630, + "normalized_name": "taiko no tatsujin rhythm festival" + }, + { + "appid": 2288640, + "normalized_name": "torpedo boat" + }, + { + "appid": 2288660, + "normalized_name": "furry reich 🐺" + }, + { + "appid": 2288710, + "normalized_name": "the defense of trewel towers" + }, + { + "appid": 2288730, + "normalized_name": "wastelan wars" + }, + { + "appid": 2288760, + "normalized_name": "night run" + }, + { + "appid": 2288770, + "normalized_name": "lawnmower game find trump" + }, + { + "appid": 2288840, + "normalized_name": "halloween in hollywood" + }, + { + "appid": 2288880, + "normalized_name": "acolyte of the altar" + }, + { + "appid": 2288950, + "normalized_name": "spade investigations" + }, + { + "appid": 2289000, + "normalized_name": "battle bros." + }, + { + "appid": 2289040, + "normalized_name": "first odium" + }, + { + "appid": 2289080, + "normalized_name": "avia corporation" + }, + { + "appid": 2289090, + "normalized_name": "gunspectre" + }, + { + "appid": 2289120, + "normalized_name": "maxix robotics" + }, + { + "appid": 2289130, + "normalized_name": "weekend warriors mma" + }, + { + "appid": 2289210, + "normalized_name": "brothel of darkness" + }, + { + "appid": 2289220, + "normalized_name": "it happened here streaming lives collector's" + }, + { + "appid": 2289230, + "normalized_name": "frogvival" + }, + { + "appid": 2289270, + "normalized_name": "years of division" + }, + { + "appid": 2289370, + "normalized_name": "battle for the board" + }, + { + "appid": 2289390, + "normalized_name": "crab god" + }, + { + "appid": 2289400, + "normalized_name": "mad way" + }, + { + "appid": 2289420, + "normalized_name": "capture the flag" + }, + { + "appid": 2289450, + "normalized_name": "idle cave miner" + }, + { + "appid": 2289460, + "normalized_name": "my time" + }, + { + "appid": 2289490, + "normalized_name": "kaleidoscope chateau" + }, + { + "appid": 2289550, + "normalized_name": "回溯星空 space recall" + }, + { + "appid": 2289560, + "normalized_name": "从0开始的vup生活" + }, + { + "appid": 2289580, + "normalized_name": "witchmore" + }, + { + "appid": 2289590, + "normalized_name": "homage godless grotto" + }, + { + "appid": 2289610, + "normalized_name": "toast" + }, + { + "appid": 2289630, + "normalized_name": "shambles sons of apocalypse" + }, + { + "appid": 2289640, + "normalized_name": "cratered" + }, + { + "appid": 2289650, + "normalized_name": "mini airways" + }, + { + "appid": 2289660, + "normalized_name": "moonscavenger" + }, + { + "appid": 2289670, + "normalized_name": "ghosting vandal" + }, + { + "appid": 2289720, + "normalized_name": "kaiju princess 2" + }, + { + "appid": 2289740, + "normalized_name": "power sink" + }, + { + "appid": 2289750, + "normalized_name": "super fantasy kingdom" + }, + { + "appid": 2289770, + "normalized_name": "project umbra" + }, + { + "appid": 2289860, + "normalized_name": "buggy" + }, + { + "appid": 2289910, + "normalized_name": "looking for lokae" + }, + { + "appid": 2289920, + "normalized_name": "street boss" + }, + { + "appid": 2289930, + "normalized_name": "kiting mechanics" + }, + { + "appid": 2289960, + "normalized_name": "my neighbor's lonely wife" + }, + { + "appid": 2289970, + "normalized_name": "in sink a co op escape prologue" + }, + { + "appid": 2290000, + "normalized_name": "terrascape" + }, + { + "appid": 2290010, + "normalized_name": "beyond the wall" + }, + { + "appid": 2290070, + "normalized_name": "army war shooting simulator" + }, + { + "appid": 2290140, + "normalized_name": "subway outbreak" + }, + { + "appid": 2290180, + "normalized_name": "riders republic" + }, + { + "appid": 2290190, + "normalized_name": "burning skies arcade" + }, + { + "appid": 2290200, + "normalized_name": "neon city survivor" + }, + { + "appid": 2290210, + "normalized_name": "sausage wars" + }, + { + "appid": 2290250, + "normalized_name": "astronomic date" + }, + { + "appid": 2290270, + "normalized_name": "habroxia" + }, + { + "appid": 2290280, + "normalized_name": "3d whac a mole" + }, + { + "appid": 2290290, + "normalized_name": "1000 rogues" + }, + { + "appid": 2290300, + "normalized_name": "chest 寶箱" + }, + { + "appid": 2290310, + "normalized_name": "the crimping" + }, + { + "appid": 2290320, + "normalized_name": "secrets of the witch house" + }, + { + "appid": 2290360, + "normalized_name": "targets" + }, + { + "appid": 2290440, + "normalized_name": "mega button soccer" + }, + { + "appid": 2290450, + "normalized_name": "james peris 2 la fuente de la eterna embriaguez" + }, + { + "appid": 2290480, + "normalized_name": "the obscura experiment" + }, + { + "appid": 2290490, + "normalized_name": "helpless" + }, + { + "appid": 2290500, + "normalized_name": "flee the backrooms" + }, + { + "appid": 2290520, + "normalized_name": "sneaky pirates" + }, + { + "appid": 2290530, + "normalized_name": "space wackos" + }, + { + "appid": 2290550, + "normalized_name": "donut adventure" + }, + { + "appid": 2290600, + "normalized_name": "lord of empires" + }, + { + "appid": 2290610, + "normalized_name": "hkons beanrunner" + }, + { + "appid": 2290650, + "normalized_name": "spirit of midnight prologue" + }, + { + "appid": 2290680, + "normalized_name": "don't die in space!" + }, + { + "appid": 2290700, + "normalized_name": "snowy mountain" + }, + { + "appid": 2290760, + "normalized_name": "neighbors" + }, + { + "appid": 2290770, + "normalized_name": "the art of reflection" + }, + { + "appid": 2290850, + "normalized_name": "back to dust hold it together" + }, + { + "appid": 2290860, + "normalized_name": "touhou fractured transience" + }, + { + "appid": 2290870, + "normalized_name": "clown meat" + }, + { + "appid": 2290880, + "normalized_name": "knightly routine" + }, + { + "appid": 2290890, + "normalized_name": "endless dark" + }, + { + "appid": 2290930, + "normalized_name": "space dust" + }, + { + "appid": 2290950, + "normalized_name": "super party game" + }, + { + "appid": 2290960, + "normalized_name": "yayla" + }, + { + "appid": 2291020, + "normalized_name": "anonymous;code" + }, + { + "appid": 2291060, + "normalized_name": "earth defense force 6" + }, + { + "appid": 2291120, + "normalized_name": "cyberlinxxx" + }, + { + "appid": 2291130, + "normalized_name": "long time no see" + }, + { + "appid": 2291140, + "normalized_name": "manafall" + }, + { + "appid": 2291160, + "normalized_name": "automata" + }, + { + "appid": 2291190, + "normalized_name": "doodle td" + }, + { + "appid": 2291210, + "normalized_name": "mechjestic" + }, + { + "appid": 2291250, + "normalized_name": "musicmenia" + }, + { + "appid": 2291340, + "normalized_name": "the baby in yellow" + }, + { + "appid": 2291390, + "normalized_name": "peaceful lands" + }, + { + "appid": 2291400, + "normalized_name": "the best of us better together" + }, + { + "appid": 2291490, + "normalized_name": "city ambulance car driving" + }, + { + "appid": 2291510, + "normalized_name": "gen 2.1. no escape" + }, + { + "appid": 2291530, + "normalized_name": "my summer jobs dialing for dreams!" + }, + { + "appid": 2291660, + "normalized_name": "r.a.t.t.z. maze" + }, + { + "appid": 2291680, + "normalized_name": "the arrogant kaiju princess & the detective servant" + }, + { + "appid": 2291690, + "normalized_name": "caroline's fantasies" + }, + { + "appid": 2291700, + "normalized_name": "tarnished blood 🩸 [tactic rpg]" + }, + { + "appid": 2291740, + "normalized_name": "nightfall hollow" + }, + { + "appid": 2291760, + "normalized_name": "papa's freezeria deluxe" + }, + { + "appid": 2291780, + "normalized_name": "vr fishtank" + }, + { + "appid": 2291810, + "normalized_name": "manga maker's mega milkers" + }, + { + "appid": 2291850, + "normalized_name": "underground blossom" + }, + { + "appid": 2291870, + "normalized_name": "walkies" + }, + { + "appid": 2291880, + "normalized_name": "murder is game over streaming death" + }, + { + "appid": 2291910, + "normalized_name": "robo rob" + }, + { + "appid": 2291920, + "normalized_name": "wonder trips" + }, + { + "appid": 2291950, + "normalized_name": "samira taken from time" + }, + { + "appid": 2291980, + "normalized_name": "pencil plus the wrath of the spankster" + }, + { + "appid": 2292010, + "normalized_name": "earl vs. the mutants" + }, + { + "appid": 2292030, + "normalized_name": "little garden" + }, + { + "appid": 2292060, + "normalized_name": "spell disk" + }, + { + "appid": 2292080, + "normalized_name": "dreamscape runners" + }, + { + "appid": 2292140, + "normalized_name": "chronicles of lussaria" + }, + { + "appid": 2292160, + "normalized_name": "remorses" + }, + { + "appid": 2292180, + "normalized_name": "celestial force magical mayhem" + }, + { + "appid": 2292210, + "normalized_name": "pigskin punter!" + }, + { + "appid": 2292220, + "normalized_name": "dungeons of the obelisk" + }, + { + "appid": 2292250, + "normalized_name": "wild hunting" + }, + { + "appid": 2292260, + "normalized_name": "star wars dark forces remaster" + }, + { + "appid": 2292280, + "normalized_name": "mabus 3000" + }, + { + "appid": 2292300, + "normalized_name": "奔向繁星" + }, + { + "appid": 2292350, + "normalized_name": "acronia" + }, + { + "appid": 2292360, + "normalized_name": "jigsaw puzzle lovers" + }, + { + "appid": 2292370, + "normalized_name": "playm2m" + }, + { + "appid": 2292400, + "normalized_name": "grundheim" + }, + { + "appid": 2292410, + "normalized_name": "timek" + }, + { + "appid": 2292440, + "normalized_name": "inrun" + }, + { + "appid": 2292520, + "normalized_name": "kaiyos castle" + }, + { + "appid": 2292540, + "normalized_name": "cosmic waves" + }, + { + "appid": 2292550, + "normalized_name": "poly memory butterflies" + }, + { + "appid": 2292580, + "normalized_name": "tall tales" + }, + { + "appid": 2292590, + "normalized_name": "sexy valentine 🍆 💜" + }, + { + "appid": 2292600, + "normalized_name": "in the weeds" + }, + { + "appid": 2292610, + "normalized_name": "horror adventure" + }, + { + "appid": 2292630, + "normalized_name": "horror adventure zombie vr" + }, + { + "appid": 2292650, + "normalized_name": "escape from mystwood mansion" + }, + { + "appid": 2292690, + "normalized_name": "efemeris dtda games" + }, + { + "appid": 2292700, + "normalized_name": "mother dear" + }, + { + "appid": 2292710, + "normalized_name": "waterfall prisoner" + }, + { + "appid": 2292720, + "normalized_name": "eden create world" + }, + { + "appid": 2292740, + "normalized_name": "in & out alive" + }, + { + "appid": 2292750, + "normalized_name": "mind the pipes!" + }, + { + "appid": 2292780, + "normalized_name": "nqc non qualia character" + }, + { + "appid": 2292790, + "normalized_name": "for the motherland" + }, + { + "appid": 2292800, + "normalized_name": "blacksmith master" + }, + { + "appid": 2292810, + "normalized_name": "eternal dreamers rising" + }, + { + "appid": 2292840, + "normalized_name": "my lovely pets collector's" + }, + { + "appid": 2292860, + "normalized_name": "claire a la mode" + }, + { + "appid": 2292870, + "normalized_name": "eternal rising" + }, + { + "appid": 2292880, + "normalized_name": "the city superhero flying experience" + }, + { + "appid": 2292890, + "normalized_name": "investormania" + }, + { + "appid": 2292910, + "normalized_name": "final dose" + }, + { + "appid": 2292920, + "normalized_name": "ft adventure" + }, + { + "appid": 2292940, + "normalized_name": "multiplayer werewolves" + }, + { + "appid": 2292960, + "normalized_name": "mdf magical defense force" + }, + { + "appid": 2292970, + "normalized_name": "shit clicker" + }, + { + "appid": 2292980, + "normalized_name": "silent station" + }, + { + "appid": 2293010, + "normalized_name": "onlyfap simulator 6 💦" + }, + { + "appid": 2293030, + "normalized_name": "they love them" + }, + { + "appid": 2293080, + "normalized_name": "great again" + }, + { + "appid": 2293180, + "normalized_name": "banana attack vr" + }, + { + "appid": 2293190, + "normalized_name": "heart agency" + }, + { + "appid": 2293200, + "normalized_name": "crux" + }, + { + "appid": 2293210, + "normalized_name": "maze (the amazing labyrinth)" + }, + { + "appid": 2293260, + "normalized_name": "the backrooms investigate and escape" + }, + { + "appid": 2293280, + "normalized_name": "the cursed oasis" + }, + { + "appid": 2293300, + "normalized_name": "search" + }, + { + "appid": 2293310, + "normalized_name": "chromacell" + }, + { + "appid": 2293320, + "normalized_name": "checkerboard collection" + }, + { + "appid": 2293330, + "normalized_name": "dropoff dealer" + }, + { + "appid": 2293340, + "normalized_name": "deadly dealings" + }, + { + "appid": 2293400, + "normalized_name": "moleshine cooking simulator" + }, + { + "appid": 2293410, + "normalized_name": "drift experience japan" + }, + { + "appid": 2293420, + "normalized_name": "симулятор лазанья по заброшкам" + }, + { + "appid": 2293430, + "normalized_name": "pumpkin hack" + }, + { + "appid": 2293440, + "normalized_name": "retropolis 2 never say goodbye" + }, + { + "appid": 2293460, + "normalized_name": "the bride horror game" + }, + { + "appid": 2293510, + "normalized_name": "the last pawn" + }, + { + "appid": 2293520, + "normalized_name": "roman empire vs. barbarians" + }, + { + "appid": 2293530, + "normalized_name": "fight plane 機戰" + }, + { + "appid": 2293540, + "normalized_name": "exodus" + }, + { + "appid": 2293570, + "normalized_name": "potato" + }, + { + "appid": 2293610, + "normalized_name": "polar bear game" + }, + { + "appid": 2293620, + "normalized_name": "universe survivors" + }, + { + "appid": 2293640, + "normalized_name": "alter evo" + }, + { + "appid": 2293650, + "normalized_name": "man 3 the social media wars" + }, + { + "appid": 2293660, + "normalized_name": "he fucked the girl out of me" + }, + { + "appid": 2293680, + "normalized_name": "crestfallen medieval survival" + }, + { + "appid": 2293700, + "normalized_name": "crimson veil" + }, + { + "appid": 2293730, + "normalized_name": "downhillmadness" + }, + { + "appid": 2293750, + "normalized_name": "我的拿汀學姐" + }, + { + "appid": 2293760, + "normalized_name": "adventure trip amazing world 2 collector's" + }, + { + "appid": 2293780, + "normalized_name": "faster racer boom boom" + }, + { + "appid": 2293810, + "normalized_name": "starstorm" + }, + { + "appid": 2293820, + "normalized_name": "hentai magicalgirl" + }, + { + "appid": 2293830, + "normalized_name": "let's go back to our village" + }, + { + "appid": 2293850, + "normalized_name": "hole dweller" + }, + { + "appid": 2293860, + "normalized_name": "the voice from the well the velessar saga" + }, + { + "appid": 2293880, + "normalized_name": "castillo the nine circles" + }, + { + "appid": 2293900, + "normalized_name": "asura" + }, + { + "appid": 2294020, + "normalized_name": "demon dark i" + }, + { + "appid": 2294030, + "normalized_name": "samurai sword stage" + }, + { + "appid": 2294050, + "normalized_name": "chromatic shift" + }, + { + "appid": 2294080, + "normalized_name": "my sister in law won't let go of my cock ~seduced by a widowed proprietress~" + }, + { + "appid": 2294090, + "normalized_name": "ラストクラウディア" + }, + { + "appid": 2294100, + "normalized_name": "putridum horror" + }, + { + "appid": 2294120, + "normalized_name": "magic potion liberators" + }, + { + "appid": 2294130, + "normalized_name": "goobies" + }, + { + "appid": 2294160, + "normalized_name": "isle of swaps" + }, + { + "appid": 2294180, + "normalized_name": "crazy 21" + }, + { + "appid": 2294210, + "normalized_name": "ultra pro wrestling" + }, + { + "appid": 2294230, + "normalized_name": "backrooms the project" + }, + { + "appid": 2294250, + "normalized_name": "speed golf royale" + }, + { + "appid": 2294280, + "normalized_name": "backrooms cycle" + }, + { + "appid": 2294290, + "normalized_name": "pandora" + }, + { + "appid": 2294300, + "normalized_name": "touchdown pinball" + }, + { + "appid": 2294320, + "normalized_name": "pip xl" + }, + { + "appid": 2294330, + "normalized_name": "lastro" + }, + { + "appid": 2294430, + "normalized_name": "the fabric of the mind" + }, + { + "appid": 2294450, + "normalized_name": "casecracker2" + }, + { + "appid": 2294530, + "normalized_name": "幻夜图书馆 library of phantom night" + }, + { + "appid": 2294540, + "normalized_name": "sex love & girls❤💦" + }, + { + "appid": 2294550, + "normalized_name": "hellcome" + }, + { + "appid": 2294590, + "normalized_name": "l'affaire est dans le sac" + }, + { + "appid": 2294600, + "normalized_name": "the house sitter's 5 nights" + }, + { + "appid": 2294620, + "normalized_name": "blood peace" + }, + { + "appid": 2294640, + "normalized_name": "letifer" + }, + { + "appid": 2294660, + "normalized_name": "the quinfall" + }, + { + "appid": 2294670, + "normalized_name": "insomnia" + }, + { + "appid": 2294690, + "normalized_name": "sollarion" + }, + { + "appid": 2294720, + "normalized_name": "land drifters" + }, + { + "appid": 2294730, + "normalized_name": "milfs of sunville season 2" + }, + { + "appid": 2294780, + "normalized_name": "backpack survivors" + }, + { + "appid": 2294790, + "normalized_name": "vivat sloboda (2019)" + }, + { + "appid": 2294860, + "normalized_name": "space game star we there yet?" + }, + { + "appid": 2294880, + "normalized_name": "bodhi 'n' friends" + }, + { + "appid": 2294890, + "normalized_name": "dark tonic's blunderbusted guns out bluns out" + }, + { + "appid": 2294910, + "normalized_name": "fish simulator agonik lake" + }, + { + "appid": 2294920, + "normalized_name": "dream fire" + }, + { + "appid": 2294930, + "normalized_name": "i wish it was morning all the time" + }, + { + "appid": 2294950, + "normalized_name": "kill the cute" + }, + { + "appid": 2294980, + "normalized_name": "marion surgical robot game" + }, + { + "appid": 2294990, + "normalized_name": "the homecoming exhibition" + }, + { + "appid": 2295060, + "normalized_name": "beyond these stars" + }, + { + "appid": 2295070, + "normalized_name": "poems & codes" + }, + { + "appid": 2295110, + "normalized_name": "i want to have your babies! ~long awaited reunion! my childhood friend got sexy and horny~" + }, + { + "appid": 2295120, + "normalized_name": "creature creation station" + }, + { + "appid": 2295150, + "normalized_name": "dragonfall" + }, + { + "appid": 2295170, + "normalized_name": "emberville" + }, + { + "appid": 2295200, + "normalized_name": "furry armpits" + }, + { + "appid": 2295210, + "normalized_name": "the aching" + }, + { + "appid": 2295220, + "normalized_name": "protocol null" + }, + { + "appid": 2295280, + "normalized_name": "love exalt 8372" + }, + { + "appid": 2295290, + "normalized_name": "delivery kore" + }, + { + "appid": 2295300, + "normalized_name": "tokyo waning moon" + }, + { + "appid": 2295320, + "normalized_name": "after the turn" + }, + { + "appid": 2295370, + "normalized_name": "мафия шахматы (жмурки)" + }, + { + "appid": 2295390, + "normalized_name": "mr. mat hematic" + }, + { + "appid": 2295410, + "normalized_name": "ragnarok survivors valhalla" + }, + { + "appid": 2295430, + "normalized_name": "dungeon cleaner" + }, + { + "appid": 2295450, + "normalized_name": "gunpowder punk" + }, + { + "appid": 2295520, + "normalized_name": "gladiators survival in rome" + }, + { + "appid": 2295530, + "normalized_name": "connected hearts the musketeers saga collector's" + }, + { + "appid": 2295570, + "normalized_name": "shy cats hidden orchestra" + }, + { + "appid": 2295580, + "normalized_name": "police car armored cop simulator" + }, + { + "appid": 2295610, + "normalized_name": "abathor" + }, + { + "appid": 2295650, + "normalized_name": "citadale resurrection" + }, + { + "appid": 2295660, + "normalized_name": "in the well" + }, + { + "appid": 2295700, + "normalized_name": "berry people" + }, + { + "appid": 2295740, + "normalized_name": "astropuffs" + }, + { + "appid": 2295790, + "normalized_name": "become a star" + }, + { + "appid": 2295830, + "normalized_name": "jigsaw realm 3d" + }, + { + "appid": 2295870, + "normalized_name": "igknight" + }, + { + "appid": 2295920, + "normalized_name": "ship graveyard simulator 2 prologue" + }, + { + "appid": 2295930, + "normalized_name": "dongeng bayang kulit" + }, + { + "appid": 2295970, + "normalized_name": "ufo robot grendizer the feast of the wolves" + }, + { + "appid": 2295980, + "normalized_name": "lunar siege" + }, + { + "appid": 2296000, + "normalized_name": "undying fortress" + }, + { + "appid": 2296020, + "normalized_name": "atlantis academy" + }, + { + "appid": 2296050, + "normalized_name": "deco deck" + }, + { + "appid": 2296060, + "normalized_name": "crazy poker" + }, + { + "appid": 2296080, + "normalized_name": "sector 598" + }, + { + "appid": 2296120, + "normalized_name": "dreadstone keep" + }, + { + "appid": 2296270, + "normalized_name": "sex adventures the job promotion" + }, + { + "appid": 2296380, + "normalized_name": "i expect you to die 3 cog in the machine" + }, + { + "appid": 2296460, + "normalized_name": "chinese empire prologue" + }, + { + "appid": 2296490, + "normalized_name": "dungeon dot ruby" + }, + { + "appid": 2296500, + "normalized_name": "potato mash!" + }, + { + "appid": 2296510, + "normalized_name": "chromatic cruiser" + }, + { + "appid": 2296540, + "normalized_name": "crosmorf adventures" + }, + { + "appid": 2296550, + "normalized_name": "axon td uprising tower defense" + }, + { + "appid": 2296580, + "normalized_name": "atomic surf" + }, + { + "appid": 2296590, + "normalized_name": "milfy cases damsels in distress" + }, + { + "appid": 2296610, + "normalized_name": "百鬼幻想記 ~100 demon fantasia~" + }, + { + "appid": 2296740, + "normalized_name": "lost in nowhere" + }, + { + "appid": 2296750, + "normalized_name": "on point" + }, + { + "appid": 2296790, + "normalized_name": "idlenetics" + }, + { + "appid": 2296850, + "normalized_name": "first person hooper" + }, + { + "appid": 2296870, + "normalized_name": "crimson connect origin" + }, + { + "appid": 2296880, + "normalized_name": "quiet soul" + }, + { + "appid": 2296910, + "normalized_name": "book of shadows" + }, + { + "appid": 2296950, + "normalized_name": "out of the ashes" + }, + { + "appid": 2296960, + "normalized_name": "dangerous road" + }, + { + "appid": 2296980, + "normalized_name": "de feet" + }, + { + "appid": 2296990, + "normalized_name": "we were here expeditions the friendship" + }, + { + "appid": 2297010, + "normalized_name": "combat mission battle for normandy" + }, + { + "appid": 2297040, + "normalized_name": "custom desktop pet 自定义桌面宠物" + }, + { + "appid": 2297130, + "normalized_name": "stay in" + }, + { + "appid": 2297140, + "normalized_name": "smash point (arcade edition)" + }, + { + "appid": 2297150, + "normalized_name": "taxi driver simulator car parking" + }, + { + "appid": 2297160, + "normalized_name": "lightballs" + }, + { + "appid": 2297180, + "normalized_name": "思い出して/思い出せなくて罪" + }, + { + "appid": 2297200, + "normalized_name": "size story" + }, + { + "appid": 2297210, + "normalized_name": "plungeroo" + }, + { + "appid": 2297220, + "normalized_name": "harmony islands" + }, + { + "appid": 2297230, + "normalized_name": "settris" + }, + { + "appid": 2297240, + "normalized_name": "cartoon rage" + }, + { + "appid": 2297260, + "normalized_name": "the gunslinger" + }, + { + "appid": 2297270, + "normalized_name": "ait" + }, + { + "appid": 2297320, + "normalized_name": "robot room cleaner" + }, + { + "appid": 2297330, + "normalized_name": "the search lost dreams" + }, + { + "appid": 2297360, + "normalized_name": "deckweaver descent into chaos" + }, + { + "appid": 2297430, + "normalized_name": "alien garden" + }, + { + "appid": 2297450, + "normalized_name": "conflict fps" + }, + { + "appid": 2297490, + "normalized_name": "orbrider" + }, + { + "appid": 2297510, + "normalized_name": "valravn" + }, + { + "appid": 2297530, + "normalized_name": "gabenwood 3 99 hidden yen" + }, + { + "appid": 2297540, + "normalized_name": "the hero's journey through time" + }, + { + "appid": 2297570, + "normalized_name": "proxy adventure simulation room" + }, + { + "appid": 2297590, + "normalized_name": "glory hunters" + }, + { + "appid": 2297600, + "normalized_name": "dreamwalker" + }, + { + "appid": 2297650, + "normalized_name": "re fresh" + }, + { + "appid": 2297670, + "normalized_name": "chivalrish" + }, + { + "appid": 2297690, + "normalized_name": "honey time! with pooh!" + }, + { + "appid": 2297800, + "normalized_name": "fear tape" + }, + { + "appid": 2297880, + "normalized_name": "coding robo" + }, + { + "appid": 2297960, + "normalized_name": "relic odyssey ruins of xantao" + }, + { + "appid": 2297990, + "normalized_name": "reversed rebecca" + }, + { + "appid": 2298010, + "normalized_name": "chrome wolf" + }, + { + "appid": 2298020, + "normalized_name": "escape from mu" + }, + { + "appid": 2298060, + "normalized_name": "polyrhythm master" + }, + { + "appid": 2298080, + "normalized_name": "snafu" + }, + { + "appid": 2298140, + "normalized_name": "run gun zr" + }, + { + "appid": 2298160, + "normalized_name": "warzone" + }, + { + "appid": 2298210, + "normalized_name": "physical layer" + }, + { + "appid": 2298250, + "normalized_name": "geargrit" + }, + { + "appid": 2298280, + "normalized_name": "curse of kisera" + }, + { + "appid": 2298300, + "normalized_name": "carnage offering tower defense" + }, + { + "appid": 2298330, + "normalized_name": "hellfurnace" + }, + { + "appid": 2298350, + "normalized_name": "the lost sheep" + }, + { + "appid": 2298390, + "normalized_name": "paranormal vhs" + }, + { + "appid": 2298460, + "normalized_name": "strawb" + }, + { + "appid": 2298480, + "normalized_name": "semmelweis" + }, + { + "appid": 2298500, + "normalized_name": "feudal fantasy incremental" + }, + { + "appid": 2298560, + "normalized_name": "hot ice" + }, + { + "appid": 2298570, + "normalized_name": "輝滅 elsia war" + }, + { + "appid": 2298590, + "normalized_name": "sex with hitler ww2" + }, + { + "appid": 2298610, + "normalized_name": "click & cum 💘💦" + }, + { + "appid": 2298620, + "normalized_name": "raiders of valhalla" + }, + { + "appid": 2298630, + "normalized_name": "e30 drift car simulator" + }, + { + "appid": 2298650, + "normalized_name": "magnet mania 3d" + }, + { + "appid": 2298660, + "normalized_name": "fallen symphony" + }, + { + "appid": 2298690, + "normalized_name": "realpolitiks 3 earth and beyond" + }, + { + "appid": 2298730, + "normalized_name": "neko chan's club" + }, + { + "appid": 2298740, + "normalized_name": "sinister soul the cursed forest" + }, + { + "appid": 2298750, + "normalized_name": "lakatos" + }, + { + "appid": 2298880, + "normalized_name": "breast simulator" + }, + { + "appid": 2298900, + "normalized_name": "vacation adventures cruise director 8 collectors" + }, + { + "appid": 2298940, + "normalized_name": "federation" + }, + { + "appid": 2298950, + "normalized_name": "flying tank" + }, + { + "appid": 2298960, + "normalized_name": "mimic hunters" + }, + { + "appid": 2298990, + "normalized_name": "web crawlies {multiplayer}" + }, + { + "appid": 2299040, + "normalized_name": "digital exorcist case_(0);" + }, + { + "appid": 2299080, + "normalized_name": "grippy golf" + }, + { + "appid": 2299130, + "normalized_name": "sex doll simulator🔞" + }, + { + "appid": 2299150, + "normalized_name": "dusk of the cage" + }, + { + "appid": 2299230, + "normalized_name": "duckball" + }, + { + "appid": 2299240, + "normalized_name": "fateweaver smash or pass" + }, + { + "appid": 2299270, + "normalized_name": "the abyss" + }, + { + "appid": 2299280, + "normalized_name": "angry cubes" + }, + { + "appid": 2299400, + "normalized_name": "aquascapers" + }, + { + "appid": 2299430, + "normalized_name": "shinogi chess club 2 resistance" + }, + { + "appid": 2299450, + "normalized_name": "วีรบุรุษปรุงยา กะเพรา (apothecary hero)" + }, + { + "appid": 2299460, + "normalized_name": "knights of the round peg" + }, + { + "appid": 2299470, + "normalized_name": "noah please!" + }, + { + "appid": 2299480, + "normalized_name": "soccer footballers tactics" + }, + { + "appid": 2299490, + "normalized_name": "zombie warz" + }, + { + "appid": 2299520, + "normalized_name": "日本式打天九" + }, + { + "appid": 2299610, + "normalized_name": "連縁无現里 ~ misremembered memories" + }, + { + "appid": 2299650, + "normalized_name": "gods from the abyss" + }, + { + "appid": 2299660, + "normalized_name": "fossilfuel 2" + }, + { + "appid": 2299690, + "normalized_name": "香恋ready!" + }, + { + "appid": 2299700, + "normalized_name": "the cinema vr" + }, + { + "appid": 2299710, + "normalized_name": "the elven forest vr" + }, + { + "appid": 2299730, + "normalized_name": "dual chroma academy carols" + }, + { + "appid": 2299740, + "normalized_name": "tales of rein ravine" + }, + { + "appid": 2299750, + "normalized_name": "patchouli's adventure in doll's house" + }, + { + "appid": 2299760, + "normalized_name": "project moonborn" + }, + { + "appid": 2299790, + "normalized_name": "the orc invasion" + }, + { + "appid": 2299840, + "normalized_name": "memory land extreme" + }, + { + "appid": 2299870, + "normalized_name": "next sweetstop" + }, + { + "appid": 2299890, + "normalized_name": "cosmoodyssey 2 comeback to origin" + }, + { + "appid": 2299900, + "normalized_name": "felvidek" + }, + { + "appid": 2299920, + "normalized_name": "cartoonite" + }, + { + "appid": 2299930, + "normalized_name": "フィズとにじいろの星" + }, + { + "appid": 2299940, + "normalized_name": "the button effect" + }, + { + "appid": 2299950, + "normalized_name": "ovrdark a do not open story" + }, + { + "appid": 2299990, + "normalized_name": "into the wonderland" + }, + { + "appid": 2300040, + "normalized_name": "gangster city mafia car driving" + }, + { + "appid": 2300090, + "normalized_name": "seeker halina" + }, + { + "appid": 2300100, + "normalized_name": "seeker quest the creature collector" + }, + { + "appid": 2300110, + "normalized_name": "nightzoid" + }, + { + "appid": 2300120, + "normalized_name": "painkiller" + }, + { + "appid": 2300130, + "normalized_name": "we are things" + }, + { + "appid": 2300160, + "normalized_name": "death from above a ukrainian drone warstory" + }, + { + "appid": 2300230, + "normalized_name": "feather party" + }, + { + "appid": 2300240, + "normalized_name": "foxnox" + }, + { + "appid": 2300260, + "normalized_name": "thz" + }, + { + "appid": 2300270, + "normalized_name": "labyrinthian lost 'til dawn" + }, + { + "appid": 2300280, + "normalized_name": "ragbrawl" + }, + { + "appid": 2300300, + "normalized_name": "growth" + }, + { + "appid": 2300310, + "normalized_name": "the way of joy" + }, + { + "appid": 2300320, + "normalized_name": "farming simulator 25" + }, + { + "appid": 2300330, + "normalized_name": "dungeon dash tales of the necromancer" + }, + { + "appid": 2300340, + "normalized_name": "night stones" + }, + { + "appid": 2300370, + "normalized_name": "天羽传奇online" + }, + { + "appid": 2300380, + "normalized_name": "shadow of ether" + }, + { + "appid": 2300390, + "normalized_name": "i commissioned some cats" + }, + { + "appid": 2300400, + "normalized_name": "quacktown smackdown" + }, + { + "appid": 2300440, + "normalized_name": "the backrooms liminal reality" + }, + { + "appid": 2300470, + "normalized_name": "sofia" + }, + { + "appid": 2300520, + "normalized_name": "infernal elements" + }, + { + "appid": 2300530, + "normalized_name": "everyone's happy place" + }, + { + "appid": 2300570, + "normalized_name": "turn out the lights" + }, + { + "appid": 2300580, + "normalized_name": "meeting her" + }, + { + "appid": 2300590, + "normalized_name": "time attacker" + }, + { + "appid": 2300600, + "normalized_name": "abandoned world" + }, + { + "appid": 2300620, + "normalized_name": "art gallery simulator" + }, + { + "appid": 2300660, + "normalized_name": "lusty god" + }, + { + "appid": 2300690, + "normalized_name": "the fall of aether station" + }, + { + "appid": 2300730, + "normalized_name": "superspy steve" + }, + { + "appid": 2300750, + "normalized_name": "mathcar" + }, + { + "appid": 2300760, + "normalized_name": "obscure depths" + }, + { + "appid": 2300840, + "normalized_name": "subliminal" + }, + { + "appid": 2300850, + "normalized_name": "she and rope" + }, + { + "appid": 2300860, + "normalized_name": "apoth" + }, + { + "appid": 2300880, + "normalized_name": "dinodash" + }, + { + "appid": 2300910, + "normalized_name": "ball" + }, + { + "appid": 2300920, + "normalized_name": "succubus prison" + }, + { + "appid": 2300930, + "normalized_name": "k.i.a" + }, + { + "appid": 2300950, + "normalized_name": "undergrown" + }, + { + "appid": 2300960, + "normalized_name": "gt and the evil factory" + }, + { + "appid": 2300970, + "normalized_name": "aniahikoaexperiment a3a aver.aaa30042025aaa a a micro prince akihiko albert azumeragi & a a micro princess a" + }, + { + "appid": 2301000, + "normalized_name": "where is sarah?" + }, + { + "appid": 2301040, + "normalized_name": "hentai secrets" + }, + { + "appid": 2301060, + "normalized_name": "hand2hand" + }, + { + "appid": 2301100, + "normalized_name": "reverie sweet as" + }, + { + "appid": 2301130, + "normalized_name": "undead quest" + }, + { + "appid": 2301150, + "normalized_name": "question mark" + }, + { + "appid": 2301190, + "normalized_name": "the adventures of mr. willickers the rotting mule" + }, + { + "appid": 2301210, + "normalized_name": "busway islands puzzle" + }, + { + "appid": 2301230, + "normalized_name": "逃出空间" + }, + { + "appid": 2301250, + "normalized_name": "falling into dreams" + }, + { + "appid": 2301310, + "normalized_name": "take a little" + }, + { + "appid": 2301330, + "normalized_name": "demonic supremacy" + }, + { + "appid": 2301340, + "normalized_name": "pato martinez" + }, + { + "appid": 2301370, + "normalized_name": "fantasy world souls" + }, + { + "appid": 2301400, + "normalized_name": "journey to the rift" + }, + { + "appid": 2301450, + "normalized_name": "somethingwithspace" + }, + { + "appid": 2301470, + "normalized_name": "dynamite joe vs the deep sea invasion" + }, + { + "appid": 2301480, + "normalized_name": "cuckoo mask" + }, + { + "appid": 2301500, + "normalized_name": "paper planes" + }, + { + "appid": 2301510, + "normalized_name": "blackout hospital" + }, + { + "appid": 2301540, + "normalized_name": "primal hunt" + }, + { + "appid": 2301560, + "normalized_name": "tempus rail" + }, + { + "appid": 2301570, + "normalized_name": "the lost hotel" + }, + { + "appid": 2301580, + "normalized_name": "cyphen" + }, + { + "appid": 2301590, + "normalized_name": "magic and legend time knights" + }, + { + "appid": 2301600, + "normalized_name": "touhoutraveler" + }, + { + "appid": 2301630, + "normalized_name": "goblins" + }, + { + "appid": 2301640, + "normalized_name": "misteri rumah pak rt" + }, + { + "appid": 2301670, + "normalized_name": "ai solitaire" + }, + { + "appid": 2301690, + "normalized_name": "vagrant knight" + }, + { + "appid": 2301750, + "normalized_name": "peasant kingdom" + }, + { + "appid": 2301770, + "normalized_name": "ven'rif" + }, + { + "appid": 2301790, + "normalized_name": "三国:寻将传" + }, + { + "appid": 2301830, + "normalized_name": "sold out" + }, + { + "appid": 2301850, + "normalized_name": "story of animal sprite" + }, + { + "appid": 2301870, + "normalized_name": "星空骑士" + }, + { + "appid": 2301880, + "normalized_name": "conflux" + }, + { + "appid": 2301900, + "normalized_name": "lost with you" + }, + { + "appid": 2301920, + "normalized_name": "mimics the bots" + }, + { + "appid": 2301940, + "normalized_name": "blow up avenge humanity" + }, + { + "appid": 2301960, + "normalized_name": "cube roller" + }, + { + "appid": 2301970, + "normalized_name": "bubble sweeper" + }, + { + "appid": 2301990, + "normalized_name": "rally31" + }, + { + "appid": 2302000, + "normalized_name": "clownscapades rally" + }, + { + "appid": 2302020, + "normalized_name": "shadows of the night" + }, + { + "appid": 2302030, + "normalized_name": "the dragon queen" + }, + { + "appid": 2302040, + "normalized_name": "the great divide" + }, + { + "appid": 2302050, + "normalized_name": "first light" + }, + { + "appid": 2302080, + "normalized_name": "death of a wish" + }, + { + "appid": 2302120, + "normalized_name": "infinitum the backrooms story" + }, + { + "appid": 2302140, + "normalized_name": "q.u.q." + }, + { + "appid": 2302150, + "normalized_name": "against great darkness" + }, + { + "appid": 2302160, + "normalized_name": "stacks space!" + }, + { + "appid": 2302180, + "normalized_name": "destroy simulator vr" + }, + { + "appid": 2302210, + "normalized_name": "larry's new wheelchair" + }, + { + "appid": 2302230, + "normalized_name": "within time" + }, + { + "appid": 2302310, + "normalized_name": "tiny squads" + }, + { + "appid": 2302320, + "normalized_name": "poke all toads" + }, + { + "appid": 2302340, + "normalized_name": "mech tech" + }, + { + "appid": 2302350, + "normalized_name": "too many chickens!" + }, + { + "appid": 2302380, + "normalized_name": "bleeding deities" + }, + { + "appid": 2302410, + "normalized_name": "cx6" + }, + { + "appid": 2302470, + "normalized_name": "full fathom" + }, + { + "appid": 2302510, + "normalized_name": "hentai military" + }, + { + "appid": 2302530, + "normalized_name": "mementomori afkrpg" + }, + { + "appid": 2302540, + "normalized_name": "花火与幽灵少女 hanabi and ghost girl" + }, + { + "appid": 2302620, + "normalized_name": "sentinels inc." + }, + { + "appid": 2302640, + "normalized_name": "skyisland" + }, + { + "appid": 2302660, + "normalized_name": "homicipher" + }, + { + "appid": 2302670, + "normalized_name": "重返越南" + }, + { + "appid": 2302680, + "normalized_name": "manacle | 猪仔" + }, + { + "appid": 2302760, + "normalized_name": "zombie hunter face the sins" + }, + { + "appid": 2302770, + "normalized_name": "space gears" + }, + { + "appid": 2302820, + "normalized_name": "fas fight action sandbox" + }, + { + "appid": 2302840, + "normalized_name": "compass of destiny istanbul" + }, + { + "appid": 2302870, + "normalized_name": "class reunion chat room" + }, + { + "appid": 2302960, + "normalized_name": "the castle burns!" + }, + { + "appid": 2302990, + "normalized_name": "vacuum warrior idle game" + }, + { + "appid": 2303060, + "normalized_name": "film studio manager" + }, + { + "appid": 2303130, + "normalized_name": "rabbit hole" + }, + { + "appid": 2303160, + "normalized_name": "great north shelter 2" + }, + { + "appid": 2303180, + "normalized_name": "resoraki the racing" + }, + { + "appid": 2303200, + "normalized_name": "darkswarm" + }, + { + "appid": 2303290, + "normalized_name": "a slug's dream" + }, + { + "appid": 2303300, + "normalized_name": "real zombie war simulator" + }, + { + "appid": 2303320, + "normalized_name": "three minutes to eight" + }, + { + "appid": 2303350, + "normalized_name": "sticky business" + }, + { + "appid": 2303360, + "normalized_name": "animujump" + }, + { + "appid": 2303390, + "normalized_name": "planetary factory an idle automation game" + }, + { + "appid": 2303410, + "normalized_name": "lana and the milking table" + }, + { + "appid": 2303420, + "normalized_name": "bubumbu" + }, + { + "appid": 2303440, + "normalized_name": "idle mars colony simulator and farming tycoon" + }, + { + "appid": 2303450, + "normalized_name": "holua's arcades" + }, + { + "appid": 2303470, + "normalized_name": "wildwood a town building game" + }, + { + "appid": 2303480, + "normalized_name": "zom rise of the apocalypse" + }, + { + "appid": 2303500, + "normalized_name": "mf 01 aerostrike" + }, + { + "appid": 2303530, + "normalized_name": "cowboys & rustlers" + }, + { + "appid": 2303550, + "normalized_name": "zehlar" + }, + { + "appid": 2303560, + "normalized_name": "best pearl" + }, + { + "appid": 2303570, + "normalized_name": "crazy clown" + }, + { + "appid": 2303610, + "normalized_name": "fragrance point" + }, + { + "appid": 2303620, + "normalized_name": "turn on the lights carefully" + }, + { + "appid": 2303630, + "normalized_name": "saint warner's angels" + }, + { + "appid": 2303670, + "normalized_name": "escape from the sun" + }, + { + "appid": 2303720, + "normalized_name": "multiplayer cowboys" + }, + { + "appid": 2303730, + "normalized_name": "magnetik" + }, + { + "appid": 2303740, + "normalized_name": "virtual families 3" + }, + { + "appid": 2303770, + "normalized_name": "fling d'block" + }, + { + "appid": 2303780, + "normalized_name": "photons" + }, + { + "appid": 2303800, + "normalized_name": "my life as a cult leader" + }, + { + "appid": 2303810, + "normalized_name": "obscurite magie the blood of kings" + }, + { + "appid": 2303820, + "normalized_name": "verum" + }, + { + "appid": 2303850, + "normalized_name": "toxic crusaders" + }, + { + "appid": 2303910, + "normalized_name": "chrono rift" + }, + { + "appid": 2303940, + "normalized_name": "head coach tactics" + }, + { + "appid": 2303950, + "normalized_name": "trauma broken paradise" + }, + { + "appid": 2304030, + "normalized_name": "天下霸圖" + }, + { + "appid": 2304090, + "normalized_name": "wars of cards roma" + }, + { + "appid": 2304120, + "normalized_name": "narco wars" + }, + { + "appid": 2304160, + "normalized_name": "furry futa 💘" + }, + { + "appid": 2304170, + "normalized_name": "because i love her" + }, + { + "appid": 2304180, + "normalized_name": "gyno tales season 1" + }, + { + "appid": 2304190, + "normalized_name": "deep death dungeon darkness" + }, + { + "appid": 2304200, + "normalized_name": "owlman" + }, + { + "appid": 2304210, + "normalized_name": "clarity the seven demons of vanguardia" + }, + { + "appid": 2304230, + "normalized_name": "i'm on merrymaking watch" + }, + { + "appid": 2304240, + "normalized_name": "moving through life" + }, + { + "appid": 2304290, + "normalized_name": "volatility" + }, + { + "appid": 2304310, + "normalized_name": "bookypets legends" + }, + { + "appid": 2304330, + "normalized_name": "恩索姆战士" + }, + { + "appid": 2304340, + "normalized_name": "jack the nipper ii (c64/cpc/spectrum)" + }, + { + "appid": 2304350, + "normalized_name": "psychworld" + }, + { + "appid": 2304360, + "normalized_name": "mainland" + }, + { + "appid": 2304410, + "normalized_name": "space coaster vr" + }, + { + "appid": 2304430, + "normalized_name": "the directorate the spy who killed a saint" + }, + { + "appid": 2304440, + "normalized_name": "creatures of ava" + }, + { + "appid": 2304450, + "normalized_name": "thalassic" + }, + { + "appid": 2304480, + "normalized_name": "elite rogue" + }, + { + "appid": 2304490, + "normalized_name": "project sword art" + }, + { + "appid": 2304510, + "normalized_name": "trashmorfers" + }, + { + "appid": 2304520, + "normalized_name": "the final matrix (cpc/spectrum)" + }, + { + "appid": 2304540, + "normalized_name": "don't flee" + }, + { + "appid": 2304570, + "normalized_name": "heavy armored assassin" + }, + { + "appid": 2304580, + "normalized_name": "the abandoned presence" + }, + { + "appid": 2304590, + "normalized_name": "bloody horror plant" + }, + { + "appid": 2304600, + "normalized_name": "stack masters" + }, + { + "appid": 2304620, + "normalized_name": "backrooms society" + }, + { + "appid": 2304640, + "normalized_name": "hidden through time 2 myths & magic" + }, + { + "appid": 2304650, + "normalized_name": "the scrap" + }, + { + "appid": 2304660, + "normalized_name": "a twisted path to renown" + }, + { + "appid": 2304680, + "normalized_name": "tofas sahin online car driving" + }, + { + "appid": 2304710, + "normalized_name": "hands of gold" + }, + { + "appid": 2304730, + "normalized_name": "carnival massacre" + }, + { + "appid": 2304740, + "normalized_name": "flip that coin!" + }, + { + "appid": 2304770, + "normalized_name": "neurotypical" + }, + { + "appid": 2304780, + "normalized_name": "polarup" + }, + { + "appid": 2304790, + "normalized_name": "project chaos" + }, + { + "appid": 2304820, + "normalized_name": "the groundskeeper early access" + }, + { + "appid": 2304860, + "normalized_name": "project nova" + }, + { + "appid": 2304900, + "normalized_name": "the little witch shop new in town" + }, + { + "appid": 2304970, + "normalized_name": "shita ni" + }, + { + "appid": 2304980, + "normalized_name": "surface project dawn collector's" + }, + { + "appid": 2304990, + "normalized_name": "crypto miner tycoon simulator starter" + }, + { + "appid": 2305030, + "normalized_name": "sex simulator the yacht" + }, + { + "appid": 2305050, + "normalized_name": "phase line raider assault" + }, + { + "appid": 2305060, + "normalized_name": "hentai jigsaw puzzle collection valentine’s" + }, + { + "appid": 2305100, + "normalized_name": "loppy planet hopper" + }, + { + "appid": 2305110, + "normalized_name": "photon engineer" + }, + { + "appid": 2305130, + "normalized_name": "the danger zone" + }, + { + "appid": 2305160, + "normalized_name": "manabi sandbox" + }, + { + "appid": 2305180, + "normalized_name": "you are the judge!" + }, + { + "appid": 2305190, + "normalized_name": "limbo control" + }, + { + "appid": 2305210, + "normalized_name": "skyformer" + }, + { + "appid": 2305310, + "normalized_name": "blind and schizophrenic" + }, + { + "appid": 2305320, + "normalized_name": "平凡的我與幽靈的同居生活" + }, + { + "appid": 2305330, + "normalized_name": "car dealer's life" + }, + { + "appid": 2305360, + "normalized_name": "velo" + }, + { + "appid": 2305380, + "normalized_name": "attack on hex island" + }, + { + "appid": 2305400, + "normalized_name": "seed of the world" + }, + { + "appid": 2305420, + "normalized_name": "the lithium moon incident" + }, + { + "appid": 2305480, + "normalized_name": "觅光:第一章 seeking light chapter 1" + }, + { + "appid": 2305490, + "normalized_name": "the segment twins" + }, + { + "appid": 2305500, + "normalized_name": "fairy tail dungeons" + }, + { + "appid": 2305510, + "normalized_name": "deaded" + }, + { + "appid": 2305520, + "normalized_name": "project drift" + }, + { + "appid": 2305560, + "normalized_name": "枝江小镇:二重虚拟宇宙" + }, + { + "appid": 2305640, + "normalized_name": "bladesong" + }, + { + "appid": 2305650, + "normalized_name": "三国世界 tkworld" + }, + { + "appid": 2305720, + "normalized_name": "whispering shadows" + }, + { + "appid": 2305740, + "normalized_name": "miami horizon 2077" + }, + { + "appid": 2305750, + "normalized_name": "blood & ash" + }, + { + "appid": 2305760, + "normalized_name": "人間牧場 residence" + }, + { + "appid": 2305770, + "normalized_name": "plunko champion of the roundlands" + }, + { + "appid": 2305790, + "normalized_name": "1v1.lol battle royale game" + }, + { + "appid": 2305800, + "normalized_name": "anipocalypse" + }, + { + "appid": 2305810, + "normalized_name": "low oxygen" + }, + { + "appid": 2305840, + "normalized_name": "cat quest iii" + }, + { + "appid": 2305870, + "normalized_name": "tour de force (cpc/spectrum)" + }, + { + "appid": 2305880, + "normalized_name": "hexapoda" + }, + { + "appid": 2305900, + "normalized_name": "gunfield" + }, + { + "appid": 2305940, + "normalized_name": "offroad jeep 4x4 car driving simulator" + }, + { + "appid": 2305970, + "normalized_name": "королевская ночь" + }, + { + "appid": 2305990, + "normalized_name": "street basket challenge" + }, + { + "appid": 2306010, + "normalized_name": "surviving the fall" + }, + { + "appid": 2306020, + "normalized_name": "limbs" + }, + { + "appid": 2306030, + "normalized_name": "ebola village" + }, + { + "appid": 2306040, + "normalized_name": "the world's hardest game 3d world" + }, + { + "appid": 2306050, + "normalized_name": "devil hunters" + }, + { + "appid": 2306080, + "normalized_name": "kingdom of explorers" + }, + { + "appid": 2306090, + "normalized_name": "misaligned" + }, + { + "appid": 2306120, + "normalized_name": "lockdown vr forgotten temple" + }, + { + "appid": 2306150, + "normalized_name": "cryonation" + }, + { + "appid": 2306160, + "normalized_name": "multiplayer knights" + }, + { + "appid": 2306200, + "normalized_name": "skate horse" + }, + { + "appid": 2306240, + "normalized_name": "hustlerix" + }, + { + "appid": 2306250, + "normalized_name": "when sword sinks into flowers" + }, + { + "appid": 2306380, + "normalized_name": "sally can't sleep" + }, + { + "appid": 2306390, + "normalized_name": "soul knight the forest of spirits" + }, + { + "appid": 2306400, + "normalized_name": "lost surreal hell" + }, + { + "appid": 2306450, + "normalized_name": "tartarus longo itinere" + }, + { + "appid": 2306480, + "normalized_name": "dogs day" + }, + { + "appid": 2306530, + "normalized_name": "reign of the renegade" + }, + { + "appid": 2306590, + "normalized_name": "apewar" + }, + { + "appid": 2306630, + "normalized_name": "frontline panzers & generals vol. i" + }, + { + "appid": 2306670, + "normalized_name": "better me tree daily affirmations" + }, + { + "appid": 2306710, + "normalized_name": "enigma manor" + }, + { + "appid": 2306740, + "normalized_name": "metal gear solid master collection vol.1 bonus content" + }, + { + "appid": 2306780, + "normalized_name": "spellshot" + }, + { + "appid": 2306840, + "normalized_name": "fantasy shop" + }, + { + "appid": 2306850, + "normalized_name": "parcel problems" + }, + { + "appid": 2306880, + "normalized_name": "街机捕鱼城 经典万炮捕鱼" + }, + { + "appid": 2306900, + "normalized_name": "abyss of light" + }, + { + "appid": 2306960, + "normalized_name": "valkyrie eternal" + }, + { + "appid": 2306980, + "normalized_name": "replik survivors" + }, + { + "appid": 2307010, + "normalized_name": "modo defence" + }, + { + "appid": 2307020, + "normalized_name": "alien boom boom" + }, + { + "appid": 2307030, + "normalized_name": "yeet" + }, + { + "appid": 2307050, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.1「仮面幻想殺人事件」" + }, + { + "appid": 2307060, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.2「海楼館殺人事件」" + }, + { + "appid": 2307070, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.3「死者の楽園」" + }, + { + "appid": 2307080, + "normalized_name": "pasha planet reborn" + }, + { + "appid": 2307090, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.4「白鷺に紅の羽」" + }, + { + "appid": 2307100, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.5「昏い匣の上」" + }, + { + "appid": 2307120, + "normalized_name": "苦主救助中心 ⅲ" + }, + { + "appid": 2307150, + "normalized_name": "bom bom bombian ~ ボン ボン ボンビアン ~" + }, + { + "appid": 2307160, + "normalized_name": "yukiiro sign" + }, + { + "appid": 2307170, + "normalized_name": "everwarder" + }, + { + "appid": 2307180, + "normalized_name": "king clicker league" + }, + { + "appid": 2307220, + "normalized_name": "tsundere milfin" + }, + { + "appid": 2307250, + "normalized_name": "neko hentai girl beach match 3" + }, + { + "appid": 2307260, + "normalized_name": "cardeneer" + }, + { + "appid": 2307300, + "normalized_name": "kurone's feelings" + }, + { + "appid": 2307320, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.6「対交錯事件」" + }, + { + "appid": 2307330, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.7「音成刑事の捜査メモ」" + }, + { + "appid": 2307350, + "normalized_name": "into the radius 2" + }, + { + "appid": 2307370, + "normalized_name": "hot heat reset chapter 1" + }, + { + "appid": 2307400, + "normalized_name": "the last king" + }, + { + "appid": 2307410, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.8「仮面幻影殺人事件」" + }, + { + "appid": 2307420, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.9「五月雨は鈍色の調べ」" + }, + { + "appid": 2307430, + "normalized_name": "ghost ac 130 close air support" + }, + { + "appid": 2307450, + "normalized_name": "hentai blackjack" + }, + { + "appid": 2307500, + "normalized_name": "suvi the blossoming lust" + }, + { + "appid": 2307520, + "normalized_name": "krakout (c64/cpc/spectrum)" + }, + { + "appid": 2307550, + "normalized_name": "elysium restaurant" + }, + { + "appid": 2307570, + "normalized_name": "speedrush" + }, + { + "appid": 2307580, + "normalized_name": "cargo truck simulator 2023" + }, + { + "appid": 2307610, + "normalized_name": "r lyke reverse" + }, + { + "appid": 2307630, + "normalized_name": "fremdganger the cheating demon" + }, + { + "appid": 2307660, + "normalized_name": "moving in" + }, + { + "appid": 2307690, + "normalized_name": "ancient saga vikings journey" + }, + { + "appid": 2307760, + "normalized_name": "bedrock high" + }, + { + "appid": 2307780, + "normalized_name": "caball" + }, + { + "appid": 2307790, + "normalized_name": "containment search" + }, + { + "appid": 2307830, + "normalized_name": "sharkking" + }, + { + "appid": 2307840, + "normalized_name": "sandbox skyline" + }, + { + "appid": 2307870, + "normalized_name": "outrage fight fest" + }, + { + "appid": 2307890, + "normalized_name": "the magic land" + }, + { + "appid": 2307910, + "normalized_name": "pi fu fighter" + }, + { + "appid": 2307950, + "normalized_name": "zombie survivals [18+]🧟♀🔞" + }, + { + "appid": 2308000, + "normalized_name": "centipede gun" + }, + { + "appid": 2308020, + "normalized_name": "tragala" + }, + { + "appid": 2308040, + "normalized_name": "gorufoo" + }, + { + "appid": 2308050, + "normalized_name": "christmas smash" + }, + { + "appid": 2308110, + "normalized_name": "bug riders" + }, + { + "appid": 2308120, + "normalized_name": "dark rift" + }, + { + "appid": 2308130, + "normalized_name": "zany golf" + }, + { + "appid": 2308220, + "normalized_name": "abyss of fire" + }, + { + "appid": 2308260, + "normalized_name": "capybara hotel" + }, + { + "appid": 2308340, + "normalized_name": "hero of giants dinosaurs strike vr" + }, + { + "appid": 2308360, + "normalized_name": "sun down survivors" + }, + { + "appid": 2308370, + "normalized_name": "dangoverse" + }, + { + "appid": 2308400, + "normalized_name": "花街萬事屋" + }, + { + "appid": 2308410, + "normalized_name": "一剑苍穹" + }, + { + "appid": 2308430, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.10「永劫会事件」" + }, + { + "appid": 2308460, + "normalized_name": "僵尸幸存者1" + }, + { + "appid": 2308470, + "normalized_name": "pixel wars" + }, + { + "appid": 2308520, + "normalized_name": "popup" + }, + { + "appid": 2308540, + "normalized_name": "sinful soul" + }, + { + "appid": 2308550, + "normalized_name": "stivenelvro legends" + }, + { + "appid": 2308580, + "normalized_name": "災難探偵サイガ~名状できない怪事件~" + }, + { + "appid": 2308630, + "normalized_name": "dawnfolk" + }, + { + "appid": 2308650, + "normalized_name": "golgotha" + }, + { + "appid": 2308660, + "normalized_name": "arkos 2" + }, + { + "appid": 2308670, + "normalized_name": "卡牌侦探" + }, + { + "appid": 2308690, + "normalized_name": "ground of aces" + }, + { + "appid": 2308700, + "normalized_name": "gb basic" + }, + { + "appid": 2308770, + "normalized_name": "escape from the depth" + }, + { + "appid": 2308790, + "normalized_name": "undress!" + }, + { + "appid": 2308810, + "normalized_name": "san fernando" + }, + { + "appid": 2308820, + "normalized_name": "qualification as rogue" + }, + { + "appid": 2308850, + "normalized_name": "fight in the arena by daniel da silva" + }, + { + "appid": 2308870, + "normalized_name": "overlewd" + }, + { + "appid": 2308890, + "normalized_name": "sliding swords" + }, + { + "appid": 2308920, + "normalized_name": "classic car simulator car driving" + }, + { + "appid": 2308940, + "normalized_name": "vr construction lab" + }, + { + "appid": 2308950, + "normalized_name": "dragon title" + }, + { + "appid": 2308960, + "normalized_name": "zlime arena" + }, + { + "appid": 2309010, + "normalized_name": "geko entering the pipe" + }, + { + "appid": 2309030, + "normalized_name": "50 days to survive" + }, + { + "appid": 2309040, + "normalized_name": "snow mountain" + }, + { + "appid": 2309060, + "normalized_name": "roterra 3 a sovereign twist" + }, + { + "appid": 2309070, + "normalized_name": "the monke games" + }, + { + "appid": 2309090, + "normalized_name": "erin and the otherworld" + }, + { + "appid": 2309120, + "normalized_name": "my fake goblin wife" + }, + { + "appid": 2309230, + "normalized_name": "sweet science – the girls of silversee castle" + }, + { + "appid": 2309240, + "normalized_name": "digital eclipse arcade q.p.i.d." + }, + { + "appid": 2309250, + "normalized_name": "tribefort" + }, + { + "appid": 2309270, + "normalized_name": "uc love" + }, + { + "appid": 2309280, + "normalized_name": "mini star cafe" + }, + { + "appid": 2309350, + "normalized_name": "disease z zombie city" + }, + { + "appid": 2309400, + "normalized_name": "the devourer hunted souls" + }, + { + "appid": 2309440, + "normalized_name": "combat champions" + }, + { + "appid": 2309460, + "normalized_name": "the faceless" + }, + { + "appid": 2309470, + "normalized_name": "galactic gladiators" + }, + { + "appid": 2309520, + "normalized_name": "雷雨漫漫endless thunder" + }, + { + "appid": 2309550, + "normalized_name": "fight with keys" + }, + { + "appid": 2309630, + "normalized_name": "the devilry reservation" + }, + { + "appid": 2309640, + "normalized_name": "mademoiselle kshatriya" + }, + { + "appid": 2309650, + "normalized_name": "蒂羅森紫花詠tirosens thistle 中文版" + }, + { + "appid": 2309690, + "normalized_name": "shadow of the night" + }, + { + "appid": 2309720, + "normalized_name": "from the streets to the script a carabanchel story" + }, + { + "appid": 2309730, + "normalized_name": "ドラマチックロード 風の発端" + }, + { + "appid": 2309740, + "normalized_name": "motherbored" + }, + { + "appid": 2309760, + "normalized_name": "weggye's adventures" + }, + { + "appid": 2309800, + "normalized_name": "ウワガキアイ" + }, + { + "appid": 2309830, + "normalized_name": "laser tanks" + }, + { + "appid": 2309840, + "normalized_name": "betroyal" + }, + { + "appid": 2309870, + "normalized_name": "pandora" + }, + { + "appid": 2309880, + "normalized_name": "zombi rockstar" + }, + { + "appid": 2309890, + "normalized_name": "mahjong legacy of the toltecs" + }, + { + "appid": 2309900, + "normalized_name": "shadows of deceit" + }, + { + "appid": 2309920, + "normalized_name": "lost veridian" + }, + { + "appid": 2310010, + "normalized_name": "runerampage" + }, + { + "appid": 2310030, + "normalized_name": "in the building hamsters" + }, + { + "appid": 2310070, + "normalized_name": "farm station" + }, + { + "appid": 2310100, + "normalized_name": "arsonist heaven" + }, + { + "appid": 2310130, + "normalized_name": "spinshot party" + }, + { + "appid": 2310150, + "normalized_name": "tome of fates" + }, + { + "appid": 2310160, + "normalized_name": "operation polygon storm" + }, + { + "appid": 2310190, + "normalized_name": "monsters idle rpg" + }, + { + "appid": 2310200, + "normalized_name": "blood 'n bullets" + }, + { + "appid": 2310220, + "normalized_name": "knight raider" + }, + { + "appid": 2310230, + "normalized_name": "finding fern" + }, + { + "appid": 2310260, + "normalized_name": "super smash asteroids" + }, + { + "appid": 2310290, + "normalized_name": "音浄め otokiyome" + }, + { + "appid": 2310300, + "normalized_name": "the meme hunter" + }, + { + "appid": 2310360, + "normalized_name": "up all night daybreak" + }, + { + "appid": 2310400, + "normalized_name": "gender dysphoria" + }, + { + "appid": 2310430, + "normalized_name": "arrows and antiquity" + }, + { + "appid": 2310440, + "normalized_name": "cryspace" + }, + { + "appid": 2310500, + "normalized_name": "ortheo's interdimensional jam session" + }, + { + "appid": 2310550, + "normalized_name": "swap" + }, + { + "appid": 2310590, + "normalized_name": "depths of insanity" + }, + { + "appid": 2310610, + "normalized_name": "vessel blue" + }, + { + "appid": 2310620, + "normalized_name": "ballooni balloon homunculus" + }, + { + "appid": 2310630, + "normalized_name": "citizens on mars" + }, + { + "appid": 2310660, + "normalized_name": "dead eat dead" + }, + { + "appid": 2310670, + "normalized_name": "midnight arrow" + }, + { + "appid": 2310690, + "normalized_name": "extra lives" + }, + { + "appid": 2310700, + "normalized_name": "shadow corridor 2 雨ノ四葩" + }, + { + "appid": 2310710, + "normalized_name": "vona / she" + }, + { + "appid": 2310720, + "normalized_name": "【rtart】リアルタイムアシストリプレイタイム ~閉店までの1分間~" + }, + { + "appid": 2310730, + "normalized_name": "小紅娘大冒險" + }, + { + "appid": 2310740, + "normalized_name": "hero world the quest" + }, + { + "appid": 2310770, + "normalized_name": "intergalactic genocide" + }, + { + "appid": 2310780, + "normalized_name": "vincent's horror story" + }, + { + "appid": 2310810, + "normalized_name": "tents and trees" + }, + { + "appid": 2310830, + "normalized_name": "samurai connemabi" + }, + { + "appid": 2310840, + "normalized_name": "mechafare" + }, + { + "appid": 2310860, + "normalized_name": "radical road" + }, + { + "appid": 2310870, + "normalized_name": "plastic soul" + }, + { + "appid": 2310880, + "normalized_name": "cursor story" + }, + { + "appid": 2310900, + "normalized_name": "hedge fund tycoon" + }, + { + "appid": 2310920, + "normalized_name": "the editor" + }, + { + "appid": 2310940, + "normalized_name": "unplug" + }, + { + "appid": 2310980, + "normalized_name": "interstellar conquest" + }, + { + "appid": 2310990, + "normalized_name": "emergency parking only" + }, + { + "appid": 2311020, + "normalized_name": "dragon dodge valley" + }, + { + "appid": 2311060, + "normalized_name": "downward spear" + }, + { + "appid": 2311070, + "normalized_name": "devil's dive" + }, + { + "appid": 2311090, + "normalized_name": "hentai pussy 6" + }, + { + "appid": 2311140, + "normalized_name": "natural disaster a butterfly's guide to mass destruction" + }, + { + "appid": 2311150, + "normalized_name": "wooden battles spec ops" + }, + { + "appid": 2311190, + "normalized_name": "garten of banban 3" + }, + { + "appid": 2311200, + "normalized_name": "test cricket manager" + }, + { + "appid": 2311210, + "normalized_name": "line defense" + }, + { + "appid": 2311220, + "normalized_name": "maybe tomorrow" + }, + { + "appid": 2311230, + "normalized_name": "passage a job interview simulator!" + }, + { + "appid": 2311260, + "normalized_name": "英灵学院 soul academy" + }, + { + "appid": 2311290, + "normalized_name": "hentai sera" + }, + { + "appid": 2311310, + "normalized_name": "xbattlecarspvp" + }, + { + "appid": 2311320, + "normalized_name": "失与寻 ~ the awaited recollection ~" + }, + { + "appid": 2311350, + "normalized_name": "スイートルームで悪戯なキス" + }, + { + "appid": 2311360, + "normalized_name": "cyber girl 1.1 reboot" + }, + { + "appid": 2311410, + "normalized_name": "reincarnation hero of the gun" + }, + { + "appid": 2311460, + "normalized_name": "orbital drop shipping" + }, + { + "appid": 2311510, + "normalized_name": "8 ball pocket" + }, + { + "appid": 2311520, + "normalized_name": "speedway racing" + }, + { + "appid": 2311530, + "normalized_name": "princess maker2 regeneration" + }, + { + "appid": 2311540, + "normalized_name": "basketball pinball" + }, + { + "appid": 2311550, + "normalized_name": "slave princess finne ~ if story 1" + }, + { + "appid": 2311560, + "normalized_name": "crisis island" + }, + { + "appid": 2311600, + "normalized_name": "tap shap the world's first multi platform reaction game" + }, + { + "appid": 2311680, + "normalized_name": "magic research" + }, + { + "appid": 2311760, + "normalized_name": "house designer fix & flip" + }, + { + "appid": 2311780, + "normalized_name": "the azmodeus project" + }, + { + "appid": 2311790, + "normalized_name": "hostile dreams" + }, + { + "appid": 2311820, + "normalized_name": "special operations unit signal forces" + }, + { + "appid": 2311840, + "normalized_name": "the wandering corinne" + }, + { + "appid": 2311880, + "normalized_name": "galvarino regresa" + }, + { + "appid": 2311890, + "normalized_name": "project surfing" + }, + { + "appid": 2311940, + "normalized_name": "dungeon x dungeon" + }, + { + "appid": 2311950, + "normalized_name": "dreamkeeper" + }, + { + "appid": 2311980, + "normalized_name": "gravarior" + }, + { + "appid": 2311990, + "normalized_name": "rack and slay" + }, + { + "appid": 2312040, + "normalized_name": "l/right reflection" + }, + { + "appid": 2312110, + "normalized_name": "jetpactoo" + }, + { + "appid": 2312130, + "normalized_name": "akairo no kaii 赤色の怪異" + }, + { + "appid": 2312160, + "normalized_name": "frogun encore" + }, + { + "appid": 2312170, + "normalized_name": "pwordle" + }, + { + "appid": 2312190, + "normalized_name": "porndle" + }, + { + "appid": 2312270, + "normalized_name": "collect call" + }, + { + "appid": 2312280, + "normalized_name": "7 days blood moons" + }, + { + "appid": 2312340, + "normalized_name": "nyan nyan punch!" + }, + { + "appid": 2312360, + "normalized_name": "the abyss" + }, + { + "appid": 2312370, + "normalized_name": "bloodcrave" + }, + { + "appid": 2312380, + "normalized_name": "steel racer" + }, + { + "appid": 2312390, + "normalized_name": "ghosts from the house of flesh" + }, + { + "appid": 2312400, + "normalized_name": "money maker" + }, + { + "appid": 2312430, + "normalized_name": "makato your fantasy shop" + }, + { + "appid": 2312450, + "normalized_name": "slime slayer" + }, + { + "appid": 2312490, + "normalized_name": "beaming stingray" + }, + { + "appid": 2312500, + "normalized_name": "hidden world 3 top down 3d" + }, + { + "appid": 2312510, + "normalized_name": "hidden post apocalyptic 2 top down 3d" + }, + { + "appid": 2312520, + "normalized_name": "everholm" + }, + { + "appid": 2312560, + "normalized_name": "dragons heart" + }, + { + "appid": 2312580, + "normalized_name": "cyber souls" + }, + { + "appid": 2312620, + "normalized_name": "the devil lives down here" + }, + { + "appid": 2312730, + "normalized_name": "ballistic the story of marble and the energy core" + }, + { + "appid": 2312770, + "normalized_name": "linkito" + }, + { + "appid": 2312780, + "normalized_name": "toleo" + }, + { + "appid": 2312790, + "normalized_name": "魔物酒馆(monster bar)" + }, + { + "appid": 2312830, + "normalized_name": "soundtown" + }, + { + "appid": 2312860, + "normalized_name": "sexy dream girl puzzle" + }, + { + "appid": 2312890, + "normalized_name": "endless spaceship" + }, + { + "appid": 2312900, + "normalized_name": "captain meow" + }, + { + "appid": 2312920, + "normalized_name": "the longest dungeon" + }, + { + "appid": 2312930, + "normalized_name": "snails have skeletons" + }, + { + "appid": 2312950, + "normalized_name": "the legend of lorosity" + }, + { + "appid": 2312960, + "normalized_name": "pitball winter waifus" + }, + { + "appid": 2312980, + "normalized_name": "マグロマッチョアドベンチャー" + }, + { + "appid": 2313000, + "normalized_name": "a true story" + }, + { + "appid": 2313010, + "normalized_name": "date time❤ melissa❤ morris❤ anna❤" + }, + { + "appid": 2313020, + "normalized_name": "umamusume pretty derby party dash" + }, + { + "appid": 2313030, + "normalized_name": "nuke survivors" + }, + { + "appid": 2313130, + "normalized_name": "异世界的城主大人(国际服)" + }, + { + "appid": 2313140, + "normalized_name": "oppai ero app academy bigger better electric boobaloo!" + }, + { + "appid": 2313160, + "normalized_name": "闇鍋人狼" + }, + { + "appid": 2313170, + "normalized_name": "clash of digital rumble smash" + }, + { + "appid": 2313180, + "normalized_name": "el panadero the baker" + }, + { + "appid": 2313210, + "normalized_name": "spiderattack" + }, + { + "appid": 2313220, + "normalized_name": "never forgotten" + }, + { + "appid": 2313230, + "normalized_name": "maveus" + }, + { + "appid": 2313240, + "normalized_name": "cats hidden in italy" + }, + { + "appid": 2313250, + "normalized_name": "cats hidden in paris" + }, + { + "appid": 2313260, + "normalized_name": "the fog" + }, + { + "appid": 2313270, + "normalized_name": "blightlands blacksmith" + }, + { + "appid": 2313330, + "normalized_name": "terratech worlds" + }, + { + "appid": 2313380, + "normalized_name": "vicious red" + }, + { + "appid": 2313420, + "normalized_name": "jewel match aquascapes collector's" + }, + { + "appid": 2313440, + "normalized_name": "demonslayer aka me" + }, + { + "appid": 2313490, + "normalized_name": "whisper" + }, + { + "appid": 2313530, + "normalized_name": "poly jigsaw cats" + }, + { + "appid": 2313560, + "normalized_name": "arrowmongers" + }, + { + "appid": 2313570, + "normalized_name": "rhya's crusade the aradia's reavers" + }, + { + "appid": 2313590, + "normalized_name": "broken blade airgetlam" + }, + { + "appid": 2313600, + "normalized_name": "shot supreme" + }, + { + "appid": 2313630, + "normalized_name": "mittin" + }, + { + "appid": 2313660, + "normalized_name": "milo no senki 3" + }, + { + "appid": 2313670, + "normalized_name": "drake's dungeon" + }, + { + "appid": 2313700, + "normalized_name": "constance" + }, + { + "appid": 2313710, + "normalized_name": "奇怪的涂装车间" + }, + { + "appid": 2313720, + "normalized_name": "noun town language learning" + }, + { + "appid": 2313740, + "normalized_name": "after gym gym simulator game" + }, + { + "appid": 2313760, + "normalized_name": "toy rider" + }, + { + "appid": 2313780, + "normalized_name": "bad dream purgatory" + }, + { + "appid": 2313810, + "normalized_name": "the girl who wasn't there" + }, + { + "appid": 2313830, + "normalized_name": "the alpha wolf" + }, + { + "appid": 2313850, + "normalized_name": "knock out walls" + }, + { + "appid": 2313930, + "normalized_name": "nfl pro era ii" + }, + { + "appid": 2313940, + "normalized_name": "anjos do duelo" + }, + { + "appid": 2313950, + "normalized_name": "crazy guy" + }, + { + "appid": 2313960, + "normalized_name": "dark rune" + }, + { + "appid": 2313970, + "normalized_name": "turbo racing" + }, + { + "appid": 2313980, + "normalized_name": "station 99" + }, + { + "appid": 2313990, + "normalized_name": "robots invaders" + }, + { + "appid": 2314020, + "normalized_name": "torico's mine quest!" + }, + { + "appid": 2314050, + "normalized_name": "waifu space conquest" + }, + { + "appid": 2314060, + "normalized_name": "haunted hotel xvi beyond the page collector's" + }, + { + "appid": 2314070, + "normalized_name": "foto boy a new job" + }, + { + "appid": 2314080, + "normalized_name": "grim tales horizon of wishes" + }, + { + "appid": 2314090, + "normalized_name": "saccharine pale?" + }, + { + "appid": 2314100, + "normalized_name": "hyper hitboxing" + }, + { + "appid": 2314110, + "normalized_name": "shutter" + }, + { + "appid": 2314130, + "normalized_name": "detectives united the darkest shrine collector's" + }, + { + "appid": 2314160, + "normalized_name": "tactical assault vr" + }, + { + "appid": 2314180, + "normalized_name": "silent nights" + }, + { + "appid": 2314240, + "normalized_name": "mtbf" + }, + { + "appid": 2314270, + "normalized_name": "jump by coronho chapter 2" + }, + { + "appid": 2314330, + "normalized_name": "a bard's last song" + }, + { + "appid": 2314340, + "normalized_name": "heroic" + }, + { + "appid": 2314350, + "normalized_name": "xurb" + }, + { + "appid": 2314380, + "normalized_name": "billie eternal and the jetcats in... escape from the black hole!" + }, + { + "appid": 2314430, + "normalized_name": "夜不收:荡寇风云" + }, + { + "appid": 2314440, + "normalized_name": "paddle flap" + }, + { + "appid": 2314450, + "normalized_name": "the honeypot murders" + }, + { + "appid": 2314460, + "normalized_name": "culturehouse" + }, + { + "appid": 2314470, + "normalized_name": "minigames master" + }, + { + "appid": 2314510, + "normalized_name": "valentine candy break" + }, + { + "appid": 2314530, + "normalized_name": "astraea" + }, + { + "appid": 2314580, + "normalized_name": "jigsaw puzzle fever" + }, + { + "appid": 2314610, + "normalized_name": "slide puzzle cute moe girls" + }, + { + "appid": 2314630, + "normalized_name": "death tapes" + }, + { + "appid": 2314650, + "normalized_name": "gray haven witch's garden" + }, + { + "appid": 2314680, + "normalized_name": "tiledeck td" + }, + { + "appid": 2314720, + "normalized_name": "[chilla's art] parasocial | パラソーシャル" + }, + { + "appid": 2314790, + "normalized_name": "fishjong" + }, + { + "appid": 2314820, + "normalized_name": "ヒラヒラヒヒル" + }, + { + "appid": 2314850, + "normalized_name": "the legend of skye" + }, + { + "appid": 2314890, + "normalized_name": "飛花令~夏天的綠豆糕 飞花令~夏天的绿豆糕 recite poems the second" + }, + { + "appid": 2314930, + "normalized_name": "far tale" + }, + { + "appid": 2314940, + "normalized_name": "land of ramchin between dimensions" + }, + { + "appid": 2314950, + "normalized_name": "pop some eyes" + }, + { + "appid": 2314960, + "normalized_name": "trans agent x" + }, + { + "appid": 2314980, + "normalized_name": "fishjong 2" + }, + { + "appid": 2315000, + "normalized_name": "dead inside" + }, + { + "appid": 2315010, + "normalized_name": "farming tractor simulator big farm" + }, + { + "appid": 2315020, + "normalized_name": "froguelike" + }, + { + "appid": 2315040, + "normalized_name": "火炬之光:无限" + }, + { + "appid": 2315050, + "normalized_name": "where are we?" + }, + { + "appid": 2315080, + "normalized_name": "manual overcycle" + }, + { + "appid": 2315100, + "normalized_name": "the great smog" + }, + { + "appid": 2315110, + "normalized_name": "voidship redux" + }, + { + "appid": 2315130, + "normalized_name": "happy" + }, + { + "appid": 2315140, + "normalized_name": "madgun" + }, + { + "appid": 2315400, + "normalized_name": "knights in tight spaces" + }, + { + "appid": 2315430, + "normalized_name": "the executive movie industry tycoon" + }, + { + "appid": 2315450, + "normalized_name": "street of secrets" + }, + { + "appid": 2315460, + "normalized_name": "nightsteel survivors" + }, + { + "appid": 2315490, + "normalized_name": "quack invasion" + }, + { + "appid": 2315520, + "normalized_name": "ambiguum" + }, + { + "appid": 2315570, + "normalized_name": "heirloom" + }, + { + "appid": 2315580, + "normalized_name": "ice flame" + }, + { + "appid": 2315590, + "normalized_name": "kitbashers 2 [multiplayer]" + }, + { + "appid": 2315610, + "normalized_name": "muscle milf" + }, + { + "appid": 2315620, + "normalized_name": "root connections" + }, + { + "appid": 2315680, + "normalized_name": "futanari stepsis" + }, + { + "appid": 2315690, + "normalized_name": "wwe 2k24" + }, + { + "appid": 2315700, + "normalized_name": "gore storm" + }, + { + "appid": 2315800, + "normalized_name": "morte accendere" + }, + { + "appid": 2315830, + "normalized_name": "人妻学園~営み指導で調教ッ!?ハメ堕ちする清純妻~" + }, + { + "appid": 2315900, + "normalized_name": "wholesome monster girl academia" + }, + { + "appid": 2315920, + "normalized_name": "夕飯を命をかけて取り戻せ ニャン蔵のアクションゲーム" + }, + { + "appid": 2315940, + "normalized_name": "little bo reap" + }, + { + "appid": 2315970, + "normalized_name": "sharks" + }, + { + "appid": 2315990, + "normalized_name": "孵化之地 wild eclosion" + }, + { + "appid": 2316010, + "normalized_name": "迷之战果" + }, + { + "appid": 2316020, + "normalized_name": "alpaca sprint" + }, + { + "appid": 2316030, + "normalized_name": "pickup point simulator" + }, + { + "appid": 2316070, + "normalized_name": "path reverse 轨迹逆转" + }, + { + "appid": 2316110, + "normalized_name": "saving mei" + }, + { + "appid": 2316210, + "normalized_name": "crusader's march" + }, + { + "appid": 2316240, + "normalized_name": "splash out!" + }, + { + "appid": 2316290, + "normalized_name": "cerulean days" + }, + { + "appid": 2316300, + "normalized_name": "utopia no.8" + }, + { + "appid": 2316310, + "normalized_name": "ugmania" + }, + { + "appid": 2316320, + "normalized_name": "red knight light rpg" + }, + { + "appid": 2316330, + "normalized_name": "shogun showdown prologue" + }, + { + "appid": 2316340, + "normalized_name": "my summer adventure memories of another life — day 1" + }, + { + "appid": 2316400, + "normalized_name": "hot pussy college 2 🍓🔞" + }, + { + "appid": 2316410, + "normalized_name": "universe in cum 💦 🌎" + }, + { + "appid": 2316420, + "normalized_name": "track day a racing career of mere mortals" + }, + { + "appid": 2316430, + "normalized_name": "experiment one" + }, + { + "appid": 2316450, + "normalized_name": "free kick football 3d soccer" + }, + { + "appid": 2316480, + "normalized_name": "擒贼先擒王" + }, + { + "appid": 2316580, + "normalized_name": "tales of kenzera zau" + }, + { + "appid": 2316590, + "normalized_name": "words of wisdom" + }, + { + "appid": 2316640, + "normalized_name": "cat engineer light on" + }, + { + "appid": 2316660, + "normalized_name": "halls of torment prelude" + }, + { + "appid": 2316680, + "normalized_name": "末日的旋转城堡" + }, + { + "appid": 2316690, + "normalized_name": "raids inc." + }, + { + "appid": 2316700, + "normalized_name": "cursed halls" + }, + { + "appid": 2316710, + "normalized_name": "rootman bodycam horror footage" + }, + { + "appid": 2316750, + "normalized_name": "finger football goal in one" + }, + { + "appid": 2316770, + "normalized_name": "fuzz" + }, + { + "appid": 2316800, + "normalized_name": "kids land" + }, + { + "appid": 2316820, + "normalized_name": "rudra a tale of time" + }, + { + "appid": 2316840, + "normalized_name": "cardshark" + }, + { + "appid": 2316860, + "normalized_name": "doomsday derby" + }, + { + "appid": 2316870, + "normalized_name": "the end of sanity" + }, + { + "appid": 2316880, + "normalized_name": "fabulous field trip" + }, + { + "appid": 2316900, + "normalized_name": "metavaxx" + }, + { + "appid": 2316930, + "normalized_name": "beat the humans" + }, + { + "appid": 2316950, + "normalized_name": "monster battle" + }, + { + "appid": 2316960, + "normalized_name": "moorhuhn 'traps and treasures'" + }, + { + "appid": 2316970, + "normalized_name": "moorhuhn jump and run 'traps and treasures 2'" + }, + { + "appid": 2317010, + "normalized_name": "periculum" + }, + { + "appid": 2317070, + "normalized_name": "maska" + }, + { + "appid": 2317080, + "normalized_name": "asura's trial" + }, + { + "appid": 2317110, + "normalized_name": "shapeless" + }, + { + "appid": 2317120, + "normalized_name": "in ukrainian soil" + }, + { + "appid": 2317140, + "normalized_name": "pino the elemental" + }, + { + "appid": 2317170, + "normalized_name": "i remember" + }, + { + "appid": 2317180, + "normalized_name": "cube crusaders" + }, + { + "appid": 2317190, + "normalized_name": "retro life" + }, + { + "appid": 2317220, + "normalized_name": "project break//down" + }, + { + "appid": 2317250, + "normalized_name": "neko house" + }, + { + "appid": 2317300, + "normalized_name": "access denied escape" + }, + { + "appid": 2317310, + "normalized_name": "hentaihotlady" + }, + { + "appid": 2317320, + "normalized_name": "orb devils" + }, + { + "appid": 2317330, + "normalized_name": "trance trauma" + }, + { + "appid": 2317340, + "normalized_name": "rabbi t" + }, + { + "appid": 2317390, + "normalized_name": "toyland" + }, + { + "appid": 2317420, + "normalized_name": "aether fly" + }, + { + "appid": 2317430, + "normalized_name": "golden legend harald quest" + }, + { + "appid": 2317440, + "normalized_name": "beasts vs legends" + }, + { + "appid": 2317510, + "normalized_name": "revenant" + }, + { + "appid": 2317520, + "normalized_name": "tap sword black smith" + }, + { + "appid": 2317540, + "normalized_name": "ocean man" + }, + { + "appid": 2317550, + "normalized_name": "stellar insurgency" + }, + { + "appid": 2317560, + "normalized_name": "3 days war" + }, + { + "appid": 2317570, + "normalized_name": "crazy designer" + }, + { + "appid": 2317610, + "normalized_name": "demon tormentor" + }, + { + "appid": 2317640, + "normalized_name": "jump king quest" + }, + { + "appid": 2317680, + "normalized_name": "koloni" + }, + { + "appid": 2317690, + "normalized_name": "untold love stories" + }, + { + "appid": 2317700, + "normalized_name": "sprydite" + }, + { + "appid": 2317760, + "normalized_name": "unholy angel 2" + }, + { + "appid": 2317790, + "normalized_name": "titan the ascension" + }, + { + "appid": 2317810, + "normalized_name": "elevatrix" + }, + { + "appid": 2317820, + "normalized_name": "feudal friends" + }, + { + "appid": 2317870, + "normalized_name": "worldwide warfare league of cities" + }, + { + "appid": 2317880, + "normalized_name": "bullet bunny" + }, + { + "appid": 2317890, + "normalized_name": "hat'venture" + }, + { + "appid": 2317910, + "normalized_name": "chinese frontiers prologue" + }, + { + "appid": 2317950, + "normalized_name": "jewel match atlantis solitaire 4 collector's" + }, + { + "appid": 2317960, + "normalized_name": "samurai survivors" + }, + { + "appid": 2318020, + "normalized_name": "yondu's journey" + }, + { + "appid": 2318070, + "normalized_name": "little big adventure – twinsen’s quest" + }, + { + "appid": 2318090, + "normalized_name": "sole salvation" + }, + { + "appid": 2318100, + "normalized_name": "tales of the magic ball the lost sorcerer" + }, + { + "appid": 2318120, + "normalized_name": "juruna game" + }, + { + "appid": 2318180, + "normalized_name": "knight cats leaves on the road collector's" + }, + { + "appid": 2318230, + "normalized_name": "behind the frame the finest scenery vr" + }, + { + "appid": 2318250, + "normalized_name": "everybody's stranger" + }, + { + "appid": 2318260, + "normalized_name": "helivr simulator" + }, + { + "appid": 2318280, + "normalized_name": "beyond a coral sea" + }, + { + "appid": 2318290, + "normalized_name": "neon skylines" + }, + { + "appid": 2318300, + "normalized_name": "di debt is inevitable" + }, + { + "appid": 2318310, + "normalized_name": "class of '09 the re up" + }, + { + "appid": 2318330, + "normalized_name": "neverway" + }, + { + "appid": 2318350, + "normalized_name": "inside scp 167" + }, + { + "appid": 2318420, + "normalized_name": "glypha vintage" + }, + { + "appid": 2318430, + "normalized_name": "forbidden dojo" + }, + { + "appid": 2318440, + "normalized_name": "girls tennis league" + }, + { + "appid": 2318480, + "normalized_name": "last train outta' wormtown" + }, + { + "appid": 2318510, + "normalized_name": "众星象" + }, + { + "appid": 2318520, + "normalized_name": "pip battle for the arctic" + }, + { + "appid": 2318550, + "normalized_name": "deathly dangerous" + }, + { + "appid": 2318570, + "normalized_name": "super crane bug" + }, + { + "appid": 2318580, + "normalized_name": "delivery issues" + }, + { + "appid": 2318590, + "normalized_name": "school booster" + }, + { + "appid": 2318610, + "normalized_name": "russian psychiatric pastoral prologue" + }, + { + "appid": 2318630, + "normalized_name": "the territory of egg" + }, + { + "appid": 2318640, + "normalized_name": "tales of the vagabond" + }, + { + "appid": 2318660, + "normalized_name": "which way up galaxy games" + }, + { + "appid": 2318670, + "normalized_name": "angrbotha mountains" + }, + { + "appid": 2318680, + "normalized_name": "sokosolitaire" + }, + { + "appid": 2318720, + "normalized_name": "gunshots in the barren hills" + }, + { + "appid": 2318740, + "normalized_name": "new day" + }, + { + "appid": 2318760, + "normalized_name": "space pop bubble shooter" + }, + { + "appid": 2318780, + "normalized_name": "cottageville" + }, + { + "appid": 2318800, + "normalized_name": "projected dreams" + }, + { + "appid": 2318810, + "normalized_name": "hazama_queen" + }, + { + "appid": 2318820, + "normalized_name": "simple increment" + }, + { + "appid": 2318830, + "normalized_name": "digital diamond baseball v11" + }, + { + "appid": 2318860, + "normalized_name": "architecture zeitgeist" + }, + { + "appid": 2318870, + "normalized_name": "pizza spy" + }, + { + "appid": 2318880, + "normalized_name": "pogo girlfriend 👧🏼" + }, + { + "appid": 2318900, + "normalized_name": "alice and the ancients" + }, + { + "appid": 2318920, + "normalized_name": "re touring" + }, + { + "appid": 2318950, + "normalized_name": "exit doors" + }, + { + "appid": 2319060, + "normalized_name": "beacon of the bellrock" + }, + { + "appid": 2319080, + "normalized_name": "retro style pixel art jigsaw puzzles" + }, + { + "appid": 2319100, + "normalized_name": "robocock" + }, + { + "appid": 2319160, + "normalized_name": "duel revolution" + }, + { + "appid": 2319170, + "normalized_name": "eye uv eve" + }, + { + "appid": 2319180, + "normalized_name": "the chronicles of rovania darkest bridge" + }, + { + "appid": 2319220, + "normalized_name": "milkshake!" + }, + { + "appid": 2319240, + "normalized_name": "planetsprite" + }, + { + "appid": 2319260, + "normalized_name": "toon toon racing" + }, + { + "appid": 2319290, + "normalized_name": "夢之拼圖大學" + }, + { + "appid": 2319300, + "normalized_name": "spiritoké" + }, + { + "appid": 2319310, + "normalized_name": "bombo rumble" + }, + { + "appid": 2319320, + "normalized_name": "walk the past vr" + }, + { + "appid": 2319330, + "normalized_name": "vemari worlds" + }, + { + "appid": 2319350, + "normalized_name": "the last team 最后的小队" + }, + { + "appid": 2319360, + "normalized_name": "memento dawn" + }, + { + "appid": 2319370, + "normalized_name": "anime jigsaw puzzle" + }, + { + "appid": 2319390, + "normalized_name": "kvark" + }, + { + "appid": 2319400, + "normalized_name": "rootown" + }, + { + "appid": 2319410, + "normalized_name": "whytaoism" + }, + { + "appid": 2319470, + "normalized_name": "a tavern for tea" + }, + { + "appid": 2319490, + "normalized_name": "the bean trials" + }, + { + "appid": 2319540, + "normalized_name": "the very brief and meaningless adventure of hero man" + }, + { + "appid": 2319550, + "normalized_name": "spectrum forces" + }, + { + "appid": 2319560, + "normalized_name": "road to place" + }, + { + "appid": 2319580, + "normalized_name": "super cakeboy" + }, + { + "appid": 2319620, + "normalized_name": "kore vr" + }, + { + "appid": 2319640, + "normalized_name": "rise of gun" + }, + { + "appid": 2319700, + "normalized_name": "hotel boom!" + }, + { + "appid": 2319730, + "normalized_name": "winnie's hole" + }, + { + "appid": 2319770, + "normalized_name": "town of illustive" + }, + { + "appid": 2319790, + "normalized_name": "captain wayne vacation desperation" + }, + { + "appid": 2319800, + "normalized_name": "the land past redemption" + }, + { + "appid": 2319830, + "normalized_name": "hentai festival" + }, + { + "appid": 2319870, + "normalized_name": "the sewer job" + }, + { + "appid": 2319920, + "normalized_name": "cantirium god slayer" + }, + { + "appid": 2319940, + "normalized_name": "great toy showdown" + }, + { + "appid": 2320020, + "normalized_name": "slave princess finne ~ if story 2" + }, + { + "appid": 2320040, + "normalized_name": "skies above the great war" + }, + { + "appid": 2320080, + "normalized_name": "russian psychiatric pastoral" + }, + { + "appid": 2320130, + "normalized_name": "farm empire" + }, + { + "appid": 2320150, + "normalized_name": "chronicles of tal'dun the longing" + }, + { + "appid": 2320170, + "normalized_name": "medieval coin hunt" + }, + { + "appid": 2320220, + "normalized_name": "royal romances forbidden magic collector's" + }, + { + "appid": 2320230, + "normalized_name": "cavimilation" + }, + { + "appid": 2320250, + "normalized_name": "zefyr prologue" + }, + { + "appid": 2320260, + "normalized_name": "piratopia raiders of pirate bay" + }, + { + "appid": 2320280, + "normalized_name": "nova strike" + }, + { + "appid": 2320340, + "normalized_name": "adrenaline dungeon" + }, + { + "appid": 2320400, + "normalized_name": "darkzan arena" + }, + { + "appid": 2320410, + "normalized_name": "scavenger of dunomini" + }, + { + "appid": 2320460, + "normalized_name": "build and drive racing" + }, + { + "appid": 2320480, + "normalized_name": "unsevered" + }, + { + "appid": 2320500, + "normalized_name": "chloé’s requiem encore" + }, + { + "appid": 2320530, + "normalized_name": "kilager" + }, + { + "appid": 2320550, + "normalized_name": "the respawn banter" + }, + { + "appid": 2320560, + "normalized_name": "the last wish" + }, + { + "appid": 2320570, + "normalized_name": "tamagoneko" + }, + { + "appid": 2320620, + "normalized_name": "the guard" + }, + { + "appid": 2320630, + "normalized_name": "make them stop" + }, + { + "appid": 2320660, + "normalized_name": "1000 man general" + }, + { + "appid": 2320710, + "normalized_name": "mauled" + }, + { + "appid": 2320720, + "normalized_name": "agrchamp" + }, + { + "appid": 2320730, + "normalized_name": "neon death drop" + }, + { + "appid": 2320740, + "normalized_name": "exodus of descent" + }, + { + "appid": 2320770, + "normalized_name": "pinewood valley" + }, + { + "appid": 2320800, + "normalized_name": "finesse" + }, + { + "appid": 2320860, + "normalized_name": "we will get revenge" + }, + { + "appid": 2320880, + "normalized_name": "terror of the seven seas" + }, + { + "appid": 2320890, + "normalized_name": "midnight at the disco" + }, + { + "appid": 2320900, + "normalized_name": "xc cross country racing" + }, + { + "appid": 2320910, + "normalized_name": "amid evil vr" + }, + { + "appid": 2320980, + "normalized_name": "loftia" + }, + { + "appid": 2320990, + "normalized_name": "hentai puzzles the origin" + }, + { + "appid": 2321000, + "normalized_name": "beacon's bluff" + }, + { + "appid": 2321040, + "normalized_name": "mercenaries lament requiem of the silver wolf" + }, + { + "appid": 2321060, + "normalized_name": "ai cards" + }, + { + "appid": 2321070, + "normalized_name": "dungeons and tiles" + }, + { + "appid": 2321120, + "normalized_name": "voice love on air" + }, + { + "appid": 2321180, + "normalized_name": "shuffle! episode 2 ~kami ni mo akuma ni mo nerawareteiru otoko~" + }, + { + "appid": 2321200, + "normalized_name": "fire and brim co." + }, + { + "appid": 2321210, + "normalized_name": "neon echo" + }, + { + "appid": 2321240, + "normalized_name": "骰出生路" + }, + { + "appid": 2321250, + "normalized_name": "a corgi's cozy hike" + }, + { + "appid": 2321260, + "normalized_name": "within" + }, + { + "appid": 2321270, + "normalized_name": "大懒子勇闯魔王城" + }, + { + "appid": 2321290, + "normalized_name": "天羽online" + }, + { + "appid": 2321300, + "normalized_name": "traitor's gambit" + }, + { + "appid": 2321310, + "normalized_name": "hidden cats in town" + }, + { + "appid": 2321350, + "normalized_name": "stormedge" + }, + { + "appid": 2321420, + "normalized_name": "房间的秘密2:起点" + }, + { + "appid": 2321430, + "normalized_name": "三國群英傳m" + }, + { + "appid": 2321450, + "normalized_name": "qr escape" + }, + { + "appid": 2321460, + "normalized_name": "dynopunk welcome to synth city" + }, + { + "appid": 2321470, + "normalized_name": "deep rock galactic survivor" + }, + { + "appid": 2321520, + "normalized_name": "aussie bogan hero" + }, + { + "appid": 2321630, + "normalized_name": "animal jigsaw vr" + }, + { + "appid": 2321650, + "normalized_name": "old forest ranch" + }, + { + "appid": 2321690, + "normalized_name": "the voyager" + }, + { + "appid": 2321700, + "normalized_name": "escalar the tower of treasures" + }, + { + "appid": 2321740, + "normalized_name": "hank loves the beach" + }, + { + "appid": 2321770, + "normalized_name": "the druid" + }, + { + "appid": 2321790, + "normalized_name": "remote control" + }, + { + "appid": 2321820, + "normalized_name": "restart" + }, + { + "appid": 2321860, + "normalized_name": "8th heaven" + }, + { + "appid": 2321870, + "normalized_name": "lawnmower game zombies" + }, + { + "appid": 2321880, + "normalized_name": "spire horizon" + }, + { + "appid": 2321890, + "normalized_name": "swordai" + }, + { + "appid": 2321900, + "normalized_name": "archons arena" + }, + { + "appid": 2321940, + "normalized_name": "sorrowful night" + }, + { + "appid": 2321950, + "normalized_name": "fantasy boy" + }, + { + "appid": 2321970, + "normalized_name": "not anyone's business but my own" + }, + { + "appid": 2322010, + "normalized_name": "god of war ragnarök" + }, + { + "appid": 2322020, + "normalized_name": "seafeud" + }, + { + "appid": 2322050, + "normalized_name": "bikeout" + }, + { + "appid": 2322060, + "normalized_name": "moonless" + }, + { + "appid": 2322070, + "normalized_name": "ritmania" + }, + { + "appid": 2322080, + "normalized_name": "banana clicker" + }, + { + "appid": 2322090, + "normalized_name": "crystal guardians td" + }, + { + "appid": 2322110, + "normalized_name": "travel cuisine collector's" + }, + { + "appid": 2322120, + "normalized_name": "emergency crew 3 perfect getaway collector's" + }, + { + "appid": 2322130, + "normalized_name": "gnomes garden lifeseeds collector's" + }, + { + "appid": 2322140, + "normalized_name": "cosmic dungeon" + }, + { + "appid": 2322170, + "normalized_name": "stages of life" + }, + { + "appid": 2322180, + "normalized_name": "a tiny sticker tale" + }, + { + "appid": 2322260, + "normalized_name": "don't kill them all" + }, + { + "appid": 2322280, + "normalized_name": "hentai cheerleader" + }, + { + "appid": 2322300, + "normalized_name": "the last grape" + }, + { + "appid": 2322320, + "normalized_name": "lost to riches" + }, + { + "appid": 2322330, + "normalized_name": "matchbox driving adventures" + }, + { + "appid": 2322340, + "normalized_name": "monster high skulltimate secrets" + }, + { + "appid": 2322370, + "normalized_name": "fullback simulator" + }, + { + "appid": 2322380, + "normalized_name": "spongebob squarepants the patrick star game" + }, + { + "appid": 2322410, + "normalized_name": "drift experience japan supporter" + }, + { + "appid": 2322420, + "normalized_name": "stack island survival card game" + }, + { + "appid": 2322440, + "normalized_name": "metal slug attack reloaded" + }, + { + "appid": 2322450, + "normalized_name": "mining survivors" + }, + { + "appid": 2322500, + "normalized_name": "starblast 3d wars" + }, + { + "appid": 2322510, + "normalized_name": "荒野枪神" + }, + { + "appid": 2322520, + "normalized_name": "world league baseball" + }, + { + "appid": 2322530, + "normalized_name": "archery battle vr" + }, + { + "appid": 2322540, + "normalized_name": "the adventures of linshanhai chapter2 bus bombing" + }, + { + "appid": 2322550, + "normalized_name": "fox4elite" + }, + { + "appid": 2322560, + "normalized_name": "love is all around" + }, + { + "appid": 2322580, + "normalized_name": "pieces of the abyss succubus" + }, + { + "appid": 2322600, + "normalized_name": "destiny of a wizard 3 beyond the world" + }, + { + "appid": 2322640, + "normalized_name": "dash king" + }, + { + "appid": 2322660, + "normalized_name": "blood strike" + }, + { + "appid": 2322690, + "normalized_name": "bloodshell conviction" + }, + { + "appid": 2322700, + "normalized_name": "predatory islands" + }, + { + "appid": 2322710, + "normalized_name": "island" + }, + { + "appid": 2322720, + "normalized_name": "crossroad of worlds mirrors to other worlds collector's" + }, + { + "appid": 2322830, + "normalized_name": "hot lap racing" + }, + { + "appid": 2322850, + "normalized_name": "good luck baby!" + }, + { + "appid": 2322860, + "normalized_name": "acorn hunt" + }, + { + "appid": 2322900, + "normalized_name": "gift" + }, + { + "appid": 2322940, + "normalized_name": "jurassic pinball" + }, + { + "appid": 2322950, + "normalized_name": "hentai casual swap" + }, + { + "appid": 2323050, + "normalized_name": "nordstrums treasure" + }, + { + "appid": 2323060, + "normalized_name": "monster factory" + }, + { + "appid": 2323070, + "normalized_name": "lokaa" + }, + { + "appid": 2323080, + "normalized_name": "tiny survivors" + }, + { + "appid": 2323120, + "normalized_name": "great hopes city" + }, + { + "appid": 2323140, + "normalized_name": "ringash" + }, + { + "appid": 2323150, + "normalized_name": "underground roof fall hazard assessment vr training" + }, + { + "appid": 2323200, + "normalized_name": "神罪降临 uberich advent sinners" + }, + { + "appid": 2323220, + "normalized_name": "aa soldiers" + }, + { + "appid": 2323240, + "normalized_name": "animo stars arena" + }, + { + "appid": 2323260, + "normalized_name": "odyssée numérique" + }, + { + "appid": 2323280, + "normalized_name": "project dark" + }, + { + "appid": 2323300, + "normalized_name": "hot secretary puzzle" + }, + { + "appid": 2323340, + "normalized_name": "power solenoid" + }, + { + "appid": 2323360, + "normalized_name": "defective sectors" + }, + { + "appid": 2323370, + "normalized_name": "you are sick" + }, + { + "appid": 2323380, + "normalized_name": "void bound" + }, + { + "appid": 2323400, + "normalized_name": "pitch black" + }, + { + "appid": 2323440, + "normalized_name": "mimi and lisa adventure for children" + }, + { + "appid": 2323500, + "normalized_name": "shattered souls" + }, + { + "appid": 2323520, + "normalized_name": "dark life excalibur" + }, + { + "appid": 2323540, + "normalized_name": "mirrored souls" + }, + { + "appid": 2323550, + "normalized_name": "udo" + }, + { + "appid": 2323560, + "normalized_name": "how" + }, + { + "appid": 2323570, + "normalized_name": "origin unknown" + }, + { + "appid": 2323580, + "normalized_name": "before the green moon" + }, + { + "appid": 2323630, + "normalized_name": "ninja otedama r~忍者お手玉r~" + }, + { + "appid": 2323650, + "normalized_name": "clash blue mirage" + }, + { + "appid": 2323660, + "normalized_name": "headlong hunt" + }, + { + "appid": 2323670, + "normalized_name": "jigsaw puzzle delicious foods" + }, + { + "appid": 2323690, + "normalized_name": "jigsaw puzzles fantasy landscapes" + }, + { + "appid": 2323710, + "normalized_name": "damsels of vice 2 project mesmer" + }, + { + "appid": 2323720, + "normalized_name": "grimmy tales" + }, + { + "appid": 2323730, + "normalized_name": "shelltered" + }, + { + "appid": 2323750, + "normalized_name": "lattice dancer" + }, + { + "appid": 2323780, + "normalized_name": "elodya" + }, + { + "appid": 2323810, + "normalized_name": "defendun hero defense" + }, + { + "appid": 2323840, + "normalized_name": "red titans" + }, + { + "appid": 2323860, + "normalized_name": "lambda spellcrafting academy" + }, + { + "appid": 2323900, + "normalized_name": "obelisk" + }, + { + "appid": 2323920, + "normalized_name": "missile city aeroleague" + }, + { + "appid": 2323980, + "normalized_name": "dungeons & jewels" + }, + { + "appid": 2324000, + "normalized_name": "mocaverse" + }, + { + "appid": 2324060, + "normalized_name": "the catapult vr" + }, + { + "appid": 2324070, + "normalized_name": "文字遊戯 第零章(日本語版)" + }, + { + "appid": 2324110, + "normalized_name": "fmtc" + }, + { + "appid": 2324120, + "normalized_name": "master builder" + }, + { + "appid": 2324150, + "normalized_name": "neuroshima hex" + }, + { + "appid": 2324180, + "normalized_name": "tranquil isle" + }, + { + "appid": 2324190, + "normalized_name": "inu loas'fate" + }, + { + "appid": 2324210, + "normalized_name": "transformers galactic trials" + }, + { + "appid": 2324220, + "normalized_name": "viccp 2 core" + }, + { + "appid": 2324230, + "normalized_name": "project liminal redux" + }, + { + "appid": 2324260, + "normalized_name": "dungeon legends 2 tale of light and shadow" + }, + { + "appid": 2324270, + "normalized_name": "saint patrick's day break" + }, + { + "appid": 2324300, + "normalized_name": "run sausage run!" + }, + { + "appid": 2324340, + "normalized_name": "hentai casual slider 3" + }, + { + "appid": 2324360, + "normalized_name": "h girl" + }, + { + "appid": 2324370, + "normalized_name": "12 labours of hercules xv little big adventure" + }, + { + "appid": 2324380, + "normalized_name": "demons infernalize" + }, + { + "appid": 2324390, + "normalized_name": "knights of the road" + }, + { + "appid": 2324410, + "normalized_name": "summerhill" + }, + { + "appid": 2324440, + "normalized_name": "delicious cooking and romance" + }, + { + "appid": 2324450, + "normalized_name": "孔明锁" + }, + { + "appid": 2324460, + "normalized_name": "copter strike vr" + }, + { + "appid": 2324470, + "normalized_name": "time ocean" + }, + { + "appid": 2324500, + "normalized_name": "tank online war shooting simulator" + }, + { + "appid": 2324520, + "normalized_name": "kanji industry" + }, + { + "appid": 2324530, + "normalized_name": "grow your team" + }, + { + "appid": 2324550, + "normalized_name": "robo frenzy" + }, + { + "appid": 2324570, + "normalized_name": "maid's melancholy" + }, + { + "appid": 2324610, + "normalized_name": "xanthiom zero" + }, + { + "appid": 2324650, + "normalized_name": "the murder of sonic the hedgehog" + }, + { + "appid": 2324660, + "normalized_name": "cart life" + }, + { + "appid": 2324670, + "normalized_name": "police heroes" + }, + { + "appid": 2324680, + "normalized_name": "rugby sevens 23" + }, + { + "appid": 2324700, + "normalized_name": "whitestone" + }, + { + "appid": 2324730, + "normalized_name": "necogram" + }, + { + "appid": 2324750, + "normalized_name": "planeta 55" + }, + { + "appid": 2324760, + "normalized_name": "florida interstate '86" + }, + { + "appid": 2324780, + "normalized_name": "arcade asylum" + }, + { + "appid": 2324790, + "normalized_name": "three potions" + }, + { + "appid": 2324870, + "normalized_name": "war shore" + }, + { + "appid": 2324900, + "normalized_name": "supervoid" + }, + { + "appid": 2324930, + "normalized_name": "50 rounds" + }, + { + "appid": 2324940, + "normalized_name": "aesir online" + }, + { + "appid": 2324960, + "normalized_name": "sex simulator pool party" + }, + { + "appid": 2325030, + "normalized_name": "project horror tales" + }, + { + "appid": 2325040, + "normalized_name": "detuned" + }, + { + "appid": 2325060, + "normalized_name": "alpacalypse" + }, + { + "appid": 2325070, + "normalized_name": "bitsy" + }, + { + "appid": 2325090, + "normalized_name": "american eristics" + }, + { + "appid": 2325150, + "normalized_name": "luxaren allure" + }, + { + "appid": 2325170, + "normalized_name": "hag" + }, + { + "appid": 2325180, + "normalized_name": "mirage 7" + }, + { + "appid": 2325190, + "normalized_name": "cat jigsaw puzzle games" + }, + { + "appid": 2325200, + "normalized_name": "legends of castile" + }, + { + "appid": 2325290, + "normalized_name": "sky children of the light" + }, + { + "appid": 2325310, + "normalized_name": "幻想乡:有罪推定~夜明前的三色堇" + }, + { + "appid": 2325340, + "normalized_name": "bedo" + }, + { + "appid": 2325350, + "normalized_name": "the hunted" + }, + { + "appid": 2325390, + "normalized_name": "airboost 天空機士" + }, + { + "appid": 2325440, + "normalized_name": "ビタースイート 家出少女とワケあり同棲生活 bitter sweet cohabitation" + }, + { + "appid": 2325470, + "normalized_name": "sorcerer's choice angel or demon?" + }, + { + "appid": 2325490, + "normalized_name": "みなもちファクトリー" + }, + { + "appid": 2325530, + "normalized_name": "the suspense" + }, + { + "appid": 2325570, + "normalized_name": "lip! lewd idol project vol. 2 hot springs and beach episodes" + }, + { + "appid": 2325640, + "normalized_name": "sexy nurse puzzle" + }, + { + "appid": 2325650, + "normalized_name": "fobia ...worse than fear." + }, + { + "appid": 2325660, + "normalized_name": "coerced unexpected detention" + }, + { + "appid": 2325690, + "normalized_name": "apocalypticsoup's racing sim experience (a.r.s.e)" + }, + { + "appid": 2325710, + "normalized_name": "the gentle art of slaughter" + }, + { + "appid": 2325720, + "normalized_name": "cyber mission" + }, + { + "appid": 2325740, + "normalized_name": "minidwellers" + }, + { + "appid": 2325750, + "normalized_name": "sex prison" + }, + { + "appid": 2325770, + "normalized_name": "snowmen" + }, + { + "appid": 2325800, + "normalized_name": "gearhead karting simulator mechanic & racing" + }, + { + "appid": 2325840, + "normalized_name": "denbora" + }, + { + "appid": 2325860, + "normalized_name": "route 66 simulator the free ride" + }, + { + "appid": 2325880, + "normalized_name": "battle of zodiacs card game" + }, + { + "appid": 2325920, + "normalized_name": "forestrike" + }, + { + "appid": 2325950, + "normalized_name": "medchess" + }, + { + "appid": 2325990, + "normalized_name": "unpogable" + }, + { + "appid": 2326000, + "normalized_name": "courier a cyberpunk adventure" + }, + { + "appid": 2326020, + "normalized_name": "save room the merchant" + }, + { + "appid": 2326040, + "normalized_name": "wendigo hunter" + }, + { + "appid": 2326050, + "normalized_name": "dethroned" + }, + { + "appid": 2326070, + "normalized_name": "rush for the ages" + }, + { + "appid": 2326100, + "normalized_name": "reclusive" + }, + { + "appid": 2326190, + "normalized_name": "goospace" + }, + { + "appid": 2326200, + "normalized_name": "neo berlin 2087" + }, + { + "appid": 2326210, + "normalized_name": "innkeeper's basement" + }, + { + "appid": 2326220, + "normalized_name": "furry sniper" + }, + { + "appid": 2326240, + "normalized_name": "mimik" + }, + { + "appid": 2326260, + "normalized_name": "island hopper" + }, + { + "appid": 2326290, + "normalized_name": "redspaceops" + }, + { + "appid": 2326300, + "normalized_name": "paranormal files silent willow collector's" + }, + { + "appid": 2326350, + "normalized_name": "grey area" + }, + { + "appid": 2326380, + "normalized_name": "king datchi" + }, + { + "appid": 2326410, + "normalized_name": "one flag a 2d puzzle platformer" + }, + { + "appid": 2326420, + "normalized_name": "halfway down" + }, + { + "appid": 2326430, + "normalized_name": "nanovoid" + }, + { + "appid": 2326450, + "normalized_name": "ball drop" + }, + { + "appid": 2326460, + "normalized_name": "the magical land of canada" + }, + { + "appid": 2326480, + "normalized_name": "to aerthen" + }, + { + "appid": 2326500, + "normalized_name": "march of the drunken sailors" + }, + { + "appid": 2326510, + "normalized_name": "ettrian the elf prince" + }, + { + "appid": 2326540, + "normalized_name": "the archives" + }, + { + "appid": 2326550, + "normalized_name": "the doorway effect" + }, + { + "appid": 2326590, + "normalized_name": "kakuriyo village ~moratorium of adolescence~" + }, + { + "appid": 2326600, + "normalized_name": "【異常奇象】動く遺体 / moving corpse" + }, + { + "appid": 2326610, + "normalized_name": "games to learn programming" + }, + { + "appid": 2326630, + "normalized_name": "one step to paradise" + }, + { + "appid": 2326640, + "normalized_name": "timeless tesseract" + }, + { + "appid": 2326650, + "normalized_name": "antkeep" + }, + { + "appid": 2326670, + "normalized_name": "vr rescue girls" + }, + { + "appid": 2326690, + "normalized_name": "cat souls" + }, + { + "appid": 2326710, + "normalized_name": "dune of the desert" + }, + { + "appid": 2326720, + "normalized_name": "brutalism22" + }, + { + "appid": 2326730, + "normalized_name": "the case of andrew d." + }, + { + "appid": 2326740, + "normalized_name": "galactic empire" + }, + { + "appid": 2326770, + "normalized_name": "flea the cat" + }, + { + "appid": 2326780, + "normalized_name": "embarrassed shina chan~ the naked wandering college girl" + }, + { + "appid": 2326790, + "normalized_name": "the milked busty stepsister" + }, + { + "appid": 2326800, + "normalized_name": "fall of gods" + }, + { + "appid": 2326820, + "normalized_name": "shaper" + }, + { + "appid": 2326830, + "normalized_name": "deeper in the dark" + }, + { + "appid": 2326840, + "normalized_name": "hentai miko" + }, + { + "appid": 2326860, + "normalized_name": "meow meow wizard arena" + }, + { + "appid": 2326890, + "normalized_name": "1980s & 90s style retro track car racer" + }, + { + "appid": 2326910, + "normalized_name": "scroll scramble" + }, + { + "appid": 2326960, + "normalized_name": "battle of hořice 1423" + }, + { + "appid": 2327010, + "normalized_name": "wave of elms" + }, + { + "appid": 2327030, + "normalized_name": "棋魂 chess soul" + }, + { + "appid": 2327060, + "normalized_name": "adspectabilis" + }, + { + "appid": 2327080, + "normalized_name": "furies & magazines episode 1" + }, + { + "appid": 2327090, + "normalized_name": "jetpack birdie" + }, + { + "appid": 2327110, + "normalized_name": "snap quest" + }, + { + "appid": 2327130, + "normalized_name": "xenon runner" + }, + { + "appid": 2327140, + "normalized_name": "daemonium" + }, + { + "appid": 2327160, + "normalized_name": "i commissioned some dogs" + }, + { + "appid": 2327190, + "normalized_name": "i commissioned some bees 15" + }, + { + "appid": 2327200, + "normalized_name": "i commissioned some dogs 2" + }, + { + "appid": 2327220, + "normalized_name": "survive the backrooms" + }, + { + "appid": 2327250, + "normalized_name": "metal ape" + }, + { + "appid": 2327260, + "normalized_name": "earth's greatest defender" + }, + { + "appid": 2327270, + "normalized_name": "grid m" + }, + { + "appid": 2327330, + "normalized_name": "andromeda" + }, + { + "appid": 2327340, + "normalized_name": "sleigh strikers" + }, + { + "appid": 2327350, + "normalized_name": "fury" + }, + { + "appid": 2327360, + "normalized_name": "webcott dungeon" + }, + { + "appid": 2327370, + "normalized_name": "insurgence chains of renegade" + }, + { + "appid": 2327380, + "normalized_name": "insurgence second assault" + }, + { + "appid": 2327430, + "normalized_name": "four knight" + }, + { + "appid": 2327480, + "normalized_name": "backrooms realm of shadows" + }, + { + "appid": 2327490, + "normalized_name": "shape theory" + }, + { + "appid": 2327510, + "normalized_name": "screws loose" + }, + { + "appid": 2327560, + "normalized_name": "endless railway" + }, + { + "appid": 2327580, + "normalized_name": "simpoly drive" + }, + { + "appid": 2327590, + "normalized_name": "chi ninja" + }, + { + "appid": 2327600, + "normalized_name": "on the job" + }, + { + "appid": 2327610, + "normalized_name": "纯白医院whitedary" + }, + { + "appid": 2327640, + "normalized_name": "deadlock station" + }, + { + "appid": 2327660, + "normalized_name": "pigeon protocol" + }, + { + "appid": 2327670, + "normalized_name": "pipe dreams" + }, + { + "appid": 2327690, + "normalized_name": "the orphan" + }, + { + "appid": 2327700, + "normalized_name": "shootem" + }, + { + "appid": 2327710, + "normalized_name": "escape the unknown awaken the realm" + }, + { + "appid": 2327720, + "normalized_name": "city car driving 2.0" + }, + { + "appid": 2327730, + "normalized_name": "draft in the woods" + }, + { + "appid": 2327740, + "normalized_name": "bird watch central park" + }, + { + "appid": 2327750, + "normalized_name": "moon is not the limit" + }, + { + "appid": 2327780, + "normalized_name": "haele 3d feet poses pro drawing references" + }, + { + "appid": 2327790, + "normalized_name": "sexy new year" + }, + { + "appid": 2327800, + "normalized_name": "strippers" + }, + { + "appid": 2327810, + "normalized_name": "girls love toys" + }, + { + "appid": 2327820, + "normalized_name": "sex gym" + }, + { + "appid": 2327830, + "normalized_name": "the cure" + }, + { + "appid": 2327840, + "normalized_name": "ghost hunter" + }, + { + "appid": 2327850, + "normalized_name": "gold rush" + }, + { + "appid": 2327860, + "normalized_name": "crazy prisoner" + }, + { + "appid": 2327870, + "normalized_name": "goblin's journey" + }, + { + "appid": 2327930, + "normalized_name": "方案之困" + }, + { + "appid": 2327950, + "normalized_name": "citadel anew" + }, + { + "appid": 2327970, + "normalized_name": "jump barrel" + }, + { + "appid": 2327980, + "normalized_name": "last stop" + }, + { + "appid": 2328070, + "normalized_name": "the dorm is yours!" + }, + { + "appid": 2328090, + "normalized_name": "hentai galaxy" + }, + { + "appid": 2328110, + "normalized_name": "4 seasons runner" + }, + { + "appid": 2328140, + "normalized_name": "unloop" + }, + { + "appid": 2328150, + "normalized_name": "emery" + }, + { + "appid": 2328160, + "normalized_name": "i commissioned some ladybugs" + }, + { + "appid": 2328180, + "normalized_name": "winning hearts wrestling otome" + }, + { + "appid": 2328240, + "normalized_name": "the alchemist of ars magna" + }, + { + "appid": 2328260, + "normalized_name": "walstikski" + }, + { + "appid": 2328270, + "normalized_name": "island of the dead" + }, + { + "appid": 2328280, + "normalized_name": "christ's revenge ascension" + }, + { + "appid": 2328290, + "normalized_name": "hentai oni" + }, + { + "appid": 2328310, + "normalized_name": "custom mech wars" + }, + { + "appid": 2328340, + "normalized_name": "十月怪谈 insane rules" + }, + { + "appid": 2328360, + "normalized_name": "the bubbleboy project" + }, + { + "appid": 2328370, + "normalized_name": "pursuit of laughter" + }, + { + "appid": 2328380, + "normalized_name": "paw paw destiny" + }, + { + "appid": 2328410, + "normalized_name": "vinterget" + }, + { + "appid": 2328450, + "normalized_name": "fear the unknown dave story" + }, + { + "appid": 2328480, + "normalized_name": "ascension" + }, + { + "appid": 2328500, + "normalized_name": "aquaphobia" + }, + { + "appid": 2328520, + "normalized_name": "climber" + }, + { + "appid": 2328530, + "normalized_name": "survival quiz city おまつり編" + }, + { + "appid": 2328540, + "normalized_name": "咒 incantation" + }, + { + "appid": 2328640, + "normalized_name": "兽食欲animal appetite" + }, + { + "appid": 2328650, + "normalized_name": "locomoto" + }, + { + "appid": 2328660, + "normalized_name": "rogue day" + }, + { + "appid": 2328670, + "normalized_name": "hentai mikky" + }, + { + "appid": 2328680, + "normalized_name": "karpov" + }, + { + "appid": 2328690, + "normalized_name": "psychic investigation of sakuragi haru" + }, + { + "appid": 2328710, + "normalized_name": "genesis of a small god" + }, + { + "appid": 2328730, + "normalized_name": "polimines 2" + }, + { + "appid": 2328740, + "normalized_name": "lustyverse passion on display" + }, + { + "appid": 2328750, + "normalized_name": "my little universe" + }, + { + "appid": 2328760, + "normalized_name": "pinball fx" + }, + { + "appid": 2328770, + "normalized_name": "house sitter escape game" + }, + { + "appid": 2328780, + "normalized_name": "pro basketball manager 2024" + }, + { + "appid": 2328840, + "normalized_name": "the first mine" + }, + { + "appid": 2328860, + "normalized_name": "emerald isle" + }, + { + "appid": 2328870, + "normalized_name": "zzoom" + }, + { + "appid": 2328890, + "normalized_name": "device of bakudan" + }, + { + "appid": 2328910, + "normalized_name": "aniballs" + }, + { + "appid": 2328960, + "normalized_name": "flappy souls" + }, + { + "appid": 2328970, + "normalized_name": "heroes of eroticism amorous advances" + }, + { + "appid": 2328980, + "normalized_name": "dude simulator 5" + }, + { + "appid": 2328990, + "normalized_name": "dystobel" + }, + { + "appid": 2329020, + "normalized_name": "omni" + }, + { + "appid": 2329050, + "normalized_name": "charon zhetan chronicles" + }, + { + "appid": 2329060, + "normalized_name": "청구야담 팔도견문록" + }, + { + "appid": 2329070, + "normalized_name": "postfrost" + }, + { + "appid": 2329080, + "normalized_name": "rolling revolt" + }, + { + "appid": 2329090, + "normalized_name": "the squire" + }, + { + "appid": 2329110, + "normalized_name": "moonchild" + }, + { + "appid": 2329130, + "normalized_name": "rewind or die" + }, + { + "appid": 2329160, + "normalized_name": "cards and guns" + }, + { + "appid": 2329170, + "normalized_name": "bloxs" + }, + { + "appid": 2329190, + "normalized_name": "antivirus_snake" + }, + { + "appid": 2329250, + "normalized_name": "hentai senpai cyberpussy 2069" + }, + { + "appid": 2329290, + "normalized_name": "mr.e" + }, + { + "appid": 2329300, + "normalized_name": "ghost mission" + }, + { + "appid": 2329380, + "normalized_name": "狂信ちゃん" + }, + { + "appid": 2329390, + "normalized_name": "ernesto's asteroid arcade" + }, + { + "appid": 2329470, + "normalized_name": "8" + }, + { + "appid": 2329480, + "normalized_name": "parametric engine" + }, + { + "appid": 2329490, + "normalized_name": "phantom hunter" + }, + { + "appid": 2329520, + "normalized_name": "santas basement" + }, + { + "appid": 2329530, + "normalized_name": "enter the cyberjungle" + }, + { + "appid": 2329580, + "normalized_name": "the whisperer" + }, + { + "appid": 2329600, + "normalized_name": "dirty vampires an rpg tower defence adventure" + }, + { + "appid": 2329610, + "normalized_name": "everdate the let's play dating game" + }, + { + "appid": 2329630, + "normalized_name": "神的不在場sex" + }, + { + "appid": 2329660, + "normalized_name": "desktop soccer 2" + }, + { + "appid": 2329670, + "normalized_name": "ancient polis" + }, + { + "appid": 2329690, + "normalized_name": "kook" + }, + { + "appid": 2329760, + "normalized_name": "vampire memories 吸血鬼的回忆" + }, + { + "appid": 2329790, + "normalized_name": "steal it" + }, + { + "appid": 2329800, + "normalized_name": "away to the stars" + }, + { + "appid": 2329840, + "normalized_name": "super cambur the sacred orbs" + }, + { + "appid": 2329880, + "normalized_name": "viking survivors" + }, + { + "appid": 2329900, + "normalized_name": "the last exam" + }, + { + "appid": 2329910, + "normalized_name": "scp operations" + }, + { + "appid": 2329930, + "normalized_name": "undead zone" + }, + { + "appid": 2329940, + "normalized_name": "tyrium dawn of a new era" + }, + { + "appid": 2329950, + "normalized_name": "kill your shapes" + }, + { + "appid": 2329980, + "normalized_name": "scavenger" + }, + { + "appid": 2330030, + "normalized_name": "the murder of h." + }, + { + "appid": 2330040, + "normalized_name": "命运棋途" + }, + { + "appid": 2330060, + "normalized_name": "kill the puppeteer" + }, + { + "appid": 2330070, + "normalized_name": "chip's challenge (amiga/c64/lynx/mega drive/snes/spectrum)" + }, + { + "appid": 2330090, + "normalized_name": "skip" + }, + { + "appid": 2330130, + "normalized_name": "glimpse" + }, + { + "appid": 2330140, + "normalized_name": "run on home" + }, + { + "appid": 2330160, + "normalized_name": "one more try" + }, + { + "appid": 2330190, + "normalized_name": "chests city clicker" + }, + { + "appid": 2330210, + "normalized_name": "labrys" + }, + { + "appid": 2330250, + "normalized_name": "记忆之境:牵绊" + }, + { + "appid": 2330260, + "normalized_name": "corr" + }, + { + "appid": 2330270, + "normalized_name": "mission diamond back" + }, + { + "appid": 2330290, + "normalized_name": "socket fighters" + }, + { + "appid": 2330300, + "normalized_name": "ecstatic" + }, + { + "appid": 2330310, + "normalized_name": "bent oak island" + }, + { + "appid": 2330320, + "normalized_name": "aqua marbles ocean" + }, + { + "appid": 2330360, + "normalized_name": "pixel art academy learn mode" + }, + { + "appid": 2330380, + "normalized_name": "golf vs zombies" + }, + { + "appid": 2330400, + "normalized_name": "i have no nose and i must climb" + }, + { + "appid": 2330410, + "normalized_name": "vom drachentöten" + }, + { + "appid": 2330430, + "normalized_name": "looney tunes wacky world of sports" + }, + { + "appid": 2330440, + "normalized_name": "heck city delivery" + }, + { + "appid": 2330490, + "normalized_name": "flies flies flies" + }, + { + "appid": 2330500, + "normalized_name": "beton brutal" + }, + { + "appid": 2330510, + "normalized_name": "little kingdoms" + }, + { + "appid": 2330520, + "normalized_name": "echoes of somewhere series 1" + }, + { + "appid": 2330550, + "normalized_name": "bridge to another world cursed clouds" + }, + { + "appid": 2330570, + "normalized_name": "camplandia" + }, + { + "appid": 2330600, + "normalized_name": "veni vidi vici" + }, + { + "appid": 2330610, + "normalized_name": "milfvania ep. 2" + }, + { + "appid": 2330640, + "normalized_name": "tiny tied" + }, + { + "appid": 2330660, + "normalized_name": "twin stick heroes 2" + }, + { + "appid": 2330700, + "normalized_name": "vico 3 tale of the seven seas" + }, + { + "appid": 2330720, + "normalized_name": "chipwits" + }, + { + "appid": 2330740, + "normalized_name": "royal razzle" + }, + { + "appid": 2330750, + "normalized_name": "cataclysm dark days ahead" + }, + { + "appid": 2330760, + "normalized_name": "hentai cookie" + }, + { + "appid": 2330770, + "normalized_name": "flowball" + }, + { + "appid": 2330780, + "normalized_name": "little elf tanks" + }, + { + "appid": 2330810, + "normalized_name": "alien frontier" + }, + { + "appid": 2330850, + "normalized_name": "system critical 2" + }, + { + "appid": 2330870, + "normalized_name": "cd 2 trap master" + }, + { + "appid": 2330920, + "normalized_name": "方城战记" + }, + { + "appid": 2330930, + "normalized_name": "nocturnal quest" + }, + { + "appid": 2330960, + "normalized_name": "smoky white" + }, + { + "appid": 2330970, + "normalized_name": "zippy detective cats hidden" + }, + { + "appid": 2330990, + "normalized_name": "christmasjong" + }, + { + "appid": 2331000, + "normalized_name": "dirty room" + }, + { + "appid": 2331040, + "normalized_name": "kassei road cycling" + }, + { + "appid": 2331050, + "normalized_name": "go alone" + }, + { + "appid": 2331060, + "normalized_name": "gambit shifter" + }, + { + "appid": 2331070, + "normalized_name": "vasilisa and baba yaga" + }, + { + "appid": 2331080, + "normalized_name": "浮生九还" + }, + { + "appid": 2331110, + "normalized_name": "风筝" + }, + { + "appid": 2331130, + "normalized_name": "just another night shift" + }, + { + "appid": 2331140, + "normalized_name": "苦主救助中心 ⅳ" + }, + { + "appid": 2331150, + "normalized_name": "legendary realms a fantasy world odyssey" + }, + { + "appid": 2331160, + "normalized_name": "liber 2 lost in time" + }, + { + "appid": 2331170, + "normalized_name": "point of mew" + }, + { + "appid": 2331180, + "normalized_name": "crabling" + }, + { + "appid": 2331210, + "normalized_name": "quit smoking vr therapist" + }, + { + "appid": 2331220, + "normalized_name": "1 million zombies" + }, + { + "appid": 2331240, + "normalized_name": "wizard of wyndmoor" + }, + { + "appid": 2331260, + "normalized_name": "very bad dreams free dive" + }, + { + "appid": 2331280, + "normalized_name": "medieval crafter blacksmith" + }, + { + "appid": 2331330, + "normalized_name": "the bridge curse 2 the extrication" + }, + { + "appid": 2331340, + "normalized_name": "tales of three kingdoms the mortal world" + }, + { + "appid": 2331350, + "normalized_name": "requia online" + }, + { + "appid": 2331360, + "normalized_name": "pigeon strike" + }, + { + "appid": 2331370, + "normalized_name": "kits" + }, + { + "appid": 2331390, + "normalized_name": "hired assassin simulator" + }, + { + "appid": 2331420, + "normalized_name": "minimally invasive" + }, + { + "appid": 2331470, + "normalized_name": "animalkingdom cats" + }, + { + "appid": 2331480, + "normalized_name": "card chronicles devious deck" + }, + { + "appid": 2331490, + "normalized_name": "sentient steel" + }, + { + "appid": 2331530, + "normalized_name": "pirate island" + }, + { + "appid": 2331580, + "normalized_name": "dave the bird" + }, + { + "appid": 2331590, + "normalized_name": "世界岛编辑器" + }, + { + "appid": 2331600, + "normalized_name": "shepherd" + }, + { + "appid": 2331660, + "normalized_name": "词影" + }, + { + "appid": 2331680, + "normalized_name": "mighty math" + }, + { + "appid": 2331710, + "normalized_name": "sky survivors" + }, + { + "appid": 2331750, + "normalized_name": "neon music drums" + }, + { + "appid": 2331780, + "normalized_name": "push battle royale" + }, + { + "appid": 2331810, + "normalized_name": "shattered wasteland dominion" + }, + { + "appid": 2331850, + "normalized_name": "anime puzzle quest" + }, + { + "appid": 2331860, + "normalized_name": "battle for the hill" + }, + { + "appid": 2331870, + "normalized_name": "hibernation day" + }, + { + "appid": 2331880, + "normalized_name": "otok" + }, + { + "appid": 2331890, + "normalized_name": "cozy together ☕" + }, + { + "appid": 2331920, + "normalized_name": "holyhunt" + }, + { + "appid": 2331950, + "normalized_name": "webcum empire tycoon 📷 💦" + }, + { + "appid": 2331960, + "normalized_name": "cybercum pussy attack❗" + }, + { + "appid": 2331970, + "normalized_name": "fap & cum simulator 🔞💦" + }, + { + "appid": 2331980, + "normalized_name": "unrelaxing quacks" + }, + { + "appid": 2331990, + "normalized_name": "food boy" + }, + { + "appid": 2332030, + "normalized_name": "planetary defense force" + }, + { + "appid": 2332040, + "normalized_name": "dragon courier" + }, + { + "appid": 2332050, + "normalized_name": "as talk as walk wayfarer team land of music" + }, + { + "appid": 2332060, + "normalized_name": "blightwreck" + }, + { + "appid": 2332080, + "normalized_name": "marble puzzles" + }, + { + "appid": 2332110, + "normalized_name": "grim tales the time traveler" + }, + { + "appid": 2332120, + "normalized_name": "one card one shot mafia" + }, + { + "appid": 2332130, + "normalized_name": "life after magic" + }, + { + "appid": 2332150, + "normalized_name": "frog island" + }, + { + "appid": 2332170, + "normalized_name": "pandamonium" + }, + { + "appid": 2332180, + "normalized_name": "treacherous journeys" + }, + { + "appid": 2332190, + "normalized_name": "hunt" + }, + { + "appid": 2332210, + "normalized_name": "born again" + }, + { + "appid": 2332240, + "normalized_name": "beyond shadowgate" + }, + { + "appid": 2332250, + "normalized_name": "deformed" + }, + { + "appid": 2332260, + "normalized_name": "feed the deep" + }, + { + "appid": 2332280, + "normalized_name": "gregor" + }, + { + "appid": 2332390, + "normalized_name": "magnetron rebellion fully loaded" + }, + { + "appid": 2332410, + "normalized_name": "hero of fate" + }, + { + "appid": 2332450, + "normalized_name": "loading screen simulator" + }, + { + "appid": 2332460, + "normalized_name": "medved hellraiser" + }, + { + "appid": 2332500, + "normalized_name": "isekai frontier" + }, + { + "appid": 2332540, + "normalized_name": "riftania" + }, + { + "appid": 2332550, + "normalized_name": "monster lover balasque" + }, + { + "appid": 2332560, + "normalized_name": "pan·gaia" + }, + { + "appid": 2332590, + "normalized_name": "无双契约" + }, + { + "appid": 2332600, + "normalized_name": "reverie" + }, + { + "appid": 2332680, + "normalized_name": "pporite" + }, + { + "appid": 2332780, + "normalized_name": "mr rabbit's cambridge point and click adventure" + }, + { + "appid": 2332800, + "normalized_name": "titans pinball" + }, + { + "appid": 2332820, + "normalized_name": "pirates pinball" + }, + { + "appid": 2332840, + "normalized_name": "御剑传说" + }, + { + "appid": 2332850, + "normalized_name": "defensecraft" + }, + { + "appid": 2332930, + "normalized_name": "typing tempo" + }, + { + "appid": 2332940, + "normalized_name": "typechart studio" + }, + { + "appid": 2332960, + "normalized_name": "ed's world story" + }, + { + "appid": 2332970, + "normalized_name": "arc seed" + }, + { + "appid": 2332980, + "normalized_name": "king war [rts]" + }, + { + "appid": 2333000, + "normalized_name": "silver pines" + }, + { + "appid": 2333020, + "normalized_name": "sokfest" + }, + { + "appid": 2333040, + "normalized_name": "fear of neighbours" + }, + { + "appid": 2333060, + "normalized_name": "search all fruits" + }, + { + "appid": 2333130, + "normalized_name": "tower of fire the sword of unspoken misc" + }, + { + "appid": 2333190, + "normalized_name": "go banana" + }, + { + "appid": 2333220, + "normalized_name": "back to the collis" + }, + { + "appid": 2333240, + "normalized_name": "logic town" + }, + { + "appid": 2333280, + "normalized_name": "the platform" + }, + { + "appid": 2333320, + "normalized_name": "hit" + }, + { + "appid": 2333330, + "normalized_name": "bing chilling" + }, + { + "appid": 2333390, + "normalized_name": "cricket captain 2023" + }, + { + "appid": 2333400, + "normalized_name": "dark desire mute 3" + }, + { + "appid": 2333410, + "normalized_name": "bullet maidens" + }, + { + "appid": 2333420, + "normalized_name": "dungeon mage" + }, + { + "appid": 2333430, + "normalized_name": "running guys" + }, + { + "appid": 2333460, + "normalized_name": "volar" + }, + { + "appid": 2333470, + "normalized_name": "the puzzle factory" + }, + { + "appid": 2333480, + "normalized_name": "raid shadow legends" + }, + { + "appid": 2333510, + "normalized_name": "blade prince academy" + }, + { + "appid": 2333530, + "normalized_name": "dinobot and tiara present applepop" + }, + { + "appid": 2333580, + "normalized_name": "magia story" + }, + { + "appid": 2333590, + "normalized_name": "mystery case files the dalimar legacy collector's" + }, + { + "appid": 2333710, + "normalized_name": "不屈者传说 no give up" + }, + { + "appid": 2333720, + "normalized_name": "draft day sports college basketball 2023" + }, + { + "appid": 2333740, + "normalized_name": "wealth project" + }, + { + "appid": 2333760, + "normalized_name": "marblous" + }, + { + "appid": 2333790, + "normalized_name": "dog's world" + }, + { + "appid": 2333820, + "normalized_name": "derealized" + }, + { + "appid": 2333840, + "normalized_name": "simple arcade" + }, + { + "appid": 2333860, + "normalized_name": "pack man in rio" + }, + { + "appid": 2333930, + "normalized_name": "kitchen sync aloha!" + }, + { + "appid": 2333940, + "normalized_name": "acuvac a suck and blow adventure" + }, + { + "appid": 2334030, + "normalized_name": "camera anima" + }, + { + "appid": 2334040, + "normalized_name": "yinyang street" + }, + { + "appid": 2334050, + "normalized_name": "sword smash" + }, + { + "appid": 2334060, + "normalized_name": "the willow man" + }, + { + "appid": 2334080, + "normalized_name": "last dream fishing arcade" + }, + { + "appid": 2334100, + "normalized_name": "fractured fury" + }, + { + "appid": 2334130, + "normalized_name": "love challenge" + }, + { + "appid": 2334150, + "normalized_name": "mechanical fury" + }, + { + "appid": 2334170, + "normalized_name": "metal bringer" + }, + { + "appid": 2334210, + "normalized_name": "no.breakbrick" + }, + { + "appid": 2334220, + "normalized_name": "home sweet home online" + }, + { + "appid": 2334250, + "normalized_name": "miuratale" + }, + { + "appid": 2334280, + "normalized_name": "stick to the plan" + }, + { + "appid": 2334300, + "normalized_name": "souljah kingdom rise" + }, + { + "appid": 2334320, + "normalized_name": "cthulhu keeper" + }, + { + "appid": 2334330, + "normalized_name": "cassette boy" + }, + { + "appid": 2334340, + "normalized_name": "apex armor swap trainer" + }, + { + "appid": 2334390, + "normalized_name": "cuberun" + }, + { + "appid": 2334400, + "normalized_name": "the tale of lumi" + }, + { + "appid": 2334410, + "normalized_name": "heist haven" + }, + { + "appid": 2334450, + "normalized_name": "ghostcatcher" + }, + { + "appid": 2334470, + "normalized_name": "囚牢" + }, + { + "appid": 2334480, + "normalized_name": "where is my cat?" + }, + { + "appid": 2334490, + "normalized_name": "mechanical survivor" + }, + { + "appid": 2334500, + "normalized_name": "wizard shrimp" + }, + { + "appid": 2334520, + "normalized_name": "sky" + }, + { + "appid": 2334540, + "normalized_name": "my office" + }, + { + "appid": 2334550, + "normalized_name": "super cat simulator" + }, + { + "appid": 2334560, + "normalized_name": "alcofox" + }, + { + "appid": 2334570, + "normalized_name": "nuclear winter" + }, + { + "appid": 2334590, + "normalized_name": "zong" + }, + { + "appid": 2334600, + "normalized_name": "family land farmer simulator" + }, + { + "appid": 2334620, + "normalized_name": "poly jigsaw birds" + }, + { + "appid": 2334640, + "normalized_name": "block & balls" + }, + { + "appid": 2334650, + "normalized_name": "meiqi phoenix and the chamber of secrets" + }, + { + "appid": 2334660, + "normalized_name": "至れり尽くせリ" + }, + { + "appid": 2334670, + "normalized_name": "battle tea" + }, + { + "appid": 2334680, + "normalized_name": "novus" + }, + { + "appid": 2334710, + "normalized_name": "i was born poor" + }, + { + "appid": 2334720, + "normalized_name": "planet fights" + }, + { + "appid": 2334730, + "normalized_name": "death must die" + }, + { + "appid": 2334760, + "normalized_name": "the elderseed" + }, + { + "appid": 2334770, + "normalized_name": "here we exist" + }, + { + "appid": 2334780, + "normalized_name": "canine" + }, + { + "appid": 2334800, + "normalized_name": "harm other" + }, + { + "appid": 2334820, + "normalized_name": "the girl from the snuff video" + }, + { + "appid": 2334850, + "normalized_name": "shirime the curse of butt eye" + }, + { + "appid": 2334910, + "normalized_name": "the chalice of illusion" + }, + { + "appid": 2334920, + "normalized_name": "young mage" + }, + { + "appid": 2334930, + "normalized_name": "deepest fear" + }, + { + "appid": 2334940, + "normalized_name": "cosmic worm food" + }, + { + "appid": 2334990, + "normalized_name": "green new deal simulator" + }, + { + "appid": 2335050, + "normalized_name": "lip! lewd idol project vol. 3" + }, + { + "appid": 2335060, + "normalized_name": "ra ra boom" + }, + { + "appid": 2335110, + "normalized_name": "starwulf" + }, + { + "appid": 2335130, + "normalized_name": "from ashes bloom" + }, + { + "appid": 2335140, + "normalized_name": "machine armor zero" + }, + { + "appid": 2335190, + "normalized_name": "missing critters" + }, + { + "appid": 2335200, + "normalized_name": "project horror anthology project prequel" + }, + { + "appid": 2335220, + "normalized_name": "dolls" + }, + { + "appid": 2335250, + "normalized_name": "mini sports" + }, + { + "appid": 2335300, + "normalized_name": "master maker 3d" + }, + { + "appid": 2335330, + "normalized_name": "uncle kenny the game" + }, + { + "appid": 2335340, + "normalized_name": "asteroids multiplayer" + }, + { + "appid": 2335350, + "normalized_name": "linxy the lynx" + }, + { + "appid": 2335370, + "normalized_name": "virvius" + }, + { + "appid": 2335450, + "normalized_name": "cook'n'slash" + }, + { + "appid": 2335510, + "normalized_name": "backgaminion" + }, + { + "appid": 2335540, + "normalized_name": "the mystery of the moon" + }, + { + "appid": 2335550, + "normalized_name": "delivery impossible" + }, + { + "appid": 2335580, + "normalized_name": "the emperor penguin keita" + }, + { + "appid": 2335590, + "normalized_name": "the pit" + }, + { + "appid": 2335610, + "normalized_name": "itemday" + }, + { + "appid": 2335620, + "normalized_name": "delve into pawssion" + }, + { + "appid": 2335640, + "normalized_name": "kay's destiny" + }, + { + "appid": 2335680, + "normalized_name": "exit maze" + }, + { + "appid": 2335690, + "normalized_name": "the house of e." + }, + { + "appid": 2335720, + "normalized_name": "69 balls" + }, + { + "appid": 2335740, + "normalized_name": "jeff the hungry fish" + }, + { + "appid": 2335780, + "normalized_name": "fight for your resurrection" + }, + { + "appid": 2335790, + "normalized_name": "future breach 64" + }, + { + "appid": 2335800, + "normalized_name": "temporal shore" + }, + { + "appid": 2335810, + "normalized_name": "beach club simulator" + }, + { + "appid": 2335830, + "normalized_name": "fist food" + }, + { + "appid": 2335890, + "normalized_name": "project elementals" + }, + { + "appid": 2335910, + "normalized_name": "mini golf aeons" + }, + { + "appid": 2335920, + "normalized_name": "brutal bullet hell rpg" + }, + { + "appid": 2335940, + "normalized_name": "kingless pawns" + }, + { + "appid": 2335960, + "normalized_name": "cards we're dealt" + }, + { + "appid": 2335970, + "normalized_name": "super passport bros" + }, + { + "appid": 2336040, + "normalized_name": "dc3 viral menace" + }, + { + "appid": 2336060, + "normalized_name": "world class" + }, + { + "appid": 2336080, + "normalized_name": "cubey vs. the universe" + }, + { + "appid": 2336090, + "normalized_name": "a lost note" + }, + { + "appid": 2336100, + "normalized_name": "garden of earthly delights" + }, + { + "appid": 2336120, + "normalized_name": "do not press the button (or you'll delete the multiverse)" + }, + { + "appid": 2336160, + "normalized_name": "bugtdx" + }, + { + "appid": 2336170, + "normalized_name": "pc futbol 8" + }, + { + "appid": 2336180, + "normalized_name": "midnight witch" + }, + { + "appid": 2336200, + "normalized_name": "choo choo survivor" + }, + { + "appid": 2336210, + "normalized_name": "monochrome heights" + }, + { + "appid": 2336220, + "normalized_name": "feed the cups" + }, + { + "appid": 2336230, + "normalized_name": "super sonday" + }, + { + "appid": 2336240, + "normalized_name": "airscrew racing" + }, + { + "appid": 2336250, + "normalized_name": "stop the crawl" + }, + { + "appid": 2336260, + "normalized_name": "recital of the heart" + }, + { + "appid": 2336290, + "normalized_name": "well..." + }, + { + "appid": 2336310, + "normalized_name": "kingmini" + }, + { + "appid": 2336330, + "normalized_name": "tower song" + }, + { + "appid": 2336340, + "normalized_name": "smash runner" + }, + { + "appid": 2336360, + "normalized_name": "sethtek sandbox" + }, + { + "appid": 2336370, + "normalized_name": "space wing cadet" + }, + { + "appid": 2336390, + "normalized_name": "into the depths below" + }, + { + "appid": 2336420, + "normalized_name": "school days" + }, + { + "appid": 2336430, + "normalized_name": "poligonvr" + }, + { + "appid": 2336440, + "normalized_name": "once alive" + }, + { + "appid": 2336450, + "normalized_name": "mechanical siege" + }, + { + "appid": 2336520, + "normalized_name": "hope" + }, + { + "appid": 2336540, + "normalized_name": "don't beg for help" + }, + { + "appid": 2336550, + "normalized_name": "chinese chess party (xiangqi)" + }, + { + "appid": 2336580, + "normalized_name": "mareld" + }, + { + "appid": 2336590, + "normalized_name": "white night dream" + }, + { + "appid": 2336600, + "normalized_name": "alpen ghoul prologue" + }, + { + "appid": 2336610, + "normalized_name": "draconic date" + }, + { + "appid": 2336640, + "normalized_name": "dream survival" + }, + { + "appid": 2336650, + "normalized_name": "the die is cast" + }, + { + "appid": 2336660, + "normalized_name": "get to the sus bus" + }, + { + "appid": 2336690, + "normalized_name": "magica planta botanica" + }, + { + "appid": 2336720, + "normalized_name": "greed of man" + }, + { + "appid": 2336730, + "normalized_name": "dungeon survivors" + }, + { + "appid": 2336760, + "normalized_name": "immortal hunters" + }, + { + "appid": 2336800, + "normalized_name": "shodot" + }, + { + "appid": 2336810, + "normalized_name": "squad tactics" + }, + { + "appid": 2336820, + "normalized_name": "oni academy" + }, + { + "appid": 2336840, + "normalized_name": "taka taka" + }, + { + "appid": 2336970, + "normalized_name": "bots chaos" + }, + { + "appid": 2336980, + "normalized_name": "ファミレスを享受せよ" + }, + { + "appid": 2336990, + "normalized_name": "zombie rollerz the last ship prologue" + }, + { + "appid": 2337000, + "normalized_name": "穿梭世界" + }, + { + "appid": 2337060, + "normalized_name": "hentai snowy" + }, + { + "appid": 2337070, + "normalized_name": "forgetting" + }, + { + "appid": 2337090, + "normalized_name": "real dive world" + }, + { + "appid": 2337100, + "normalized_name": "undeliverable" + }, + { + "appid": 2337140, + "normalized_name": "can't live without electricity" + }, + { + "appid": 2337170, + "normalized_name": "海盗纹章" + }, + { + "appid": 2337180, + "normalized_name": "i need space" + }, + { + "appid": 2337190, + "normalized_name": "仙途 immortal journey" + }, + { + "appid": 2337230, + "normalized_name": "survivors of the mare vitalis" + }, + { + "appid": 2337250, + "normalized_name": "the nine’s showdown" + }, + { + "appid": 2337270, + "normalized_name": "aboriginal" + }, + { + "appid": 2337280, + "normalized_name": "stack clack clock!" + }, + { + "appid": 2337290, + "normalized_name": "ruku's heart balloon" + }, + { + "appid": 2337310, + "normalized_name": "a viking's quest the lost continent" + }, + { + "appid": 2337360, + "normalized_name": "story of the olivia" + }, + { + "appid": 2337450, + "normalized_name": "lkyt." + }, + { + "appid": 2337460, + "normalized_name": "gym manager" + }, + { + "appid": 2337470, + "normalized_name": "破碎原像" + }, + { + "appid": 2337500, + "normalized_name": "guardian of dynamite a bomb protector" + }, + { + "appid": 2337610, + "normalized_name": "sunny place 3 microgods" + }, + { + "appid": 2337630, + "normalized_name": "afl 23" + }, + { + "appid": 2337640, + "normalized_name": "pinball m" + }, + { + "appid": 2337650, + "normalized_name": "curfew" + }, + { + "appid": 2337660, + "normalized_name": "boomerang battles" + }, + { + "appid": 2337690, + "normalized_name": "battle tanks arena" + }, + { + "appid": 2337710, + "normalized_name": "the last survivors" + }, + { + "appid": 2337730, + "normalized_name": "broom royale" + }, + { + "appid": 2337760, + "normalized_name": "sky division" + }, + { + "appid": 2337770, + "normalized_name": "tsetseg's adventure" + }, + { + "appid": 2337820, + "normalized_name": "the crush house" + }, + { + "appid": 2337840, + "normalized_name": "trials of imorah" + }, + { + "appid": 2337850, + "normalized_name": "furry furries" + }, + { + "appid": 2337860, + "normalized_name": "nubs! arena" + }, + { + "appid": 2337880, + "normalized_name": "tower tales" + }, + { + "appid": 2337910, + "normalized_name": "asuji the legend of you" + }, + { + "appid": 2337920, + "normalized_name": "amazo'" + }, + { + "appid": 2337940, + "normalized_name": "war of wheels" + }, + { + "appid": 2337960, + "normalized_name": "venus the flytrap" + }, + { + "appid": 2337970, + "normalized_name": "タルパの行進ザナドゥ" + }, + { + "appid": 2337990, + "normalized_name": "kohlrabi starship" + }, + { + "appid": 2338010, + "normalized_name": "parabellum artifacts of war" + }, + { + "appid": 2338020, + "normalized_name": "mistified" + }, + { + "appid": 2338040, + "normalized_name": "cards survivors" + }, + { + "appid": 2338070, + "normalized_name": "airborne" + }, + { + "appid": 2338080, + "normalized_name": "rapid fury" + }, + { + "appid": 2338090, + "normalized_name": "full moon rush" + }, + { + "appid": 2338120, + "normalized_name": "outlive" + }, + { + "appid": 2338130, + "normalized_name": "akhra the treasures" + }, + { + "appid": 2338140, + "normalized_name": "dokapon kingdom connect" + }, + { + "appid": 2338180, + "normalized_name": "celestial crowns" + }, + { + "appid": 2338200, + "normalized_name": "medieval delivery" + }, + { + "appid": 2338210, + "normalized_name": "land of tales" + }, + { + "appid": 2338220, + "normalized_name": "irradiant" + }, + { + "appid": 2338240, + "normalized_name": "searching for rest" + }, + { + "appid": 2338260, + "normalized_name": "human multiplayer game" + }, + { + "appid": 2338280, + "normalized_name": "cum on bus" + }, + { + "appid": 2338300, + "normalized_name": "operation crustacean" + }, + { + "appid": 2338360, + "normalized_name": "rise and grind!" + }, + { + "appid": 2338410, + "normalized_name": "malware derby" + }, + { + "appid": 2338470, + "normalized_name": "galactic ruler enlightenment" + }, + { + "appid": 2338490, + "normalized_name": "twilight oracle" + }, + { + "appid": 2338500, + "normalized_name": "utter takedown" + }, + { + "appid": 2338510, + "normalized_name": "sex simulator office affairs" + }, + { + "appid": 2338600, + "normalized_name": "dark city international intrigue" + }, + { + "appid": 2338620, + "normalized_name": "instance destroy" + }, + { + "appid": 2338630, + "normalized_name": "drilbert" + }, + { + "appid": 2338710, + "normalized_name": "tickling girls" + }, + { + "appid": 2338740, + "normalized_name": "warbox arcane" + }, + { + "appid": 2338770, + "normalized_name": "nba 2k24" + }, + { + "appid": 2338800, + "normalized_name": "天台物语 rooftop story" + }, + { + "appid": 2338820, + "normalized_name": "datajack 2020" + }, + { + "appid": 2338850, + "normalized_name": "shiner" + }, + { + "appid": 2338860, + "normalized_name": "vira" + }, + { + "appid": 2338890, + "normalized_name": "starship colony" + }, + { + "appid": 2338910, + "normalized_name": "behold battle" + }, + { + "appid": 2338920, + "normalized_name": "romantic shooter" + }, + { + "appid": 2338940, + "normalized_name": "cyberrush" + }, + { + "appid": 2338950, + "normalized_name": "dream ploy will" + }, + { + "appid": 2338990, + "normalized_name": "warbits+" + }, + { + "appid": 2339000, + "normalized_name": "portabellows" + }, + { + "appid": 2339020, + "normalized_name": "magic city detective rage under moon collector's" + }, + { + "appid": 2339040, + "normalized_name": "landnama" + }, + { + "appid": 2339050, + "normalized_name": "under dead" + }, + { + "appid": 2339080, + "normalized_name": "pigments" + }, + { + "appid": 2339090, + "normalized_name": "sunhara ecorpy islands" + }, + { + "appid": 2339110, + "normalized_name": "milita aventuro" + }, + { + "appid": 2339130, + "normalized_name": "adventures of steve the cat" + }, + { + "appid": 2339140, + "normalized_name": "minesweeper💥girl" + }, + { + "appid": 2339160, + "normalized_name": "heart vs hp" + }, + { + "appid": 2339180, + "normalized_name": "rescue agency the kidnapper of happiness" + }, + { + "appid": 2339220, + "normalized_name": "迷你道教" + }, + { + "appid": 2339260, + "normalized_name": "voltorometer recharged +" + }, + { + "appid": 2339300, + "normalized_name": "派对之星" + }, + { + "appid": 2339310, + "normalized_name": "one soul" + }, + { + "appid": 2339320, + "normalized_name": "nick jr. party adventure" + }, + { + "appid": 2339330, + "normalized_name": "the lacerator" + }, + { + "appid": 2339340, + "normalized_name": "tank simulator" + }, + { + "appid": 2339350, + "normalized_name": "末日疾潮:aw计划" + }, + { + "appid": 2339380, + "normalized_name": "eleanor's handmaid" + }, + { + "appid": 2339480, + "normalized_name": "thriller garden" + }, + { + "appid": 2339490, + "normalized_name": "pirate patrol" + }, + { + "appid": 2339500, + "normalized_name": "the moroccan castle 3 behind the secrets" + }, + { + "appid": 2339520, + "normalized_name": "industrix" + }, + { + "appid": 2339530, + "normalized_name": "stone tribes" + }, + { + "appid": 2339570, + "normalized_name": "dhl box stacker pro" + }, + { + "appid": 2339580, + "normalized_name": "knightmares" + }, + { + "appid": 2339590, + "normalized_name": "paint over" + }, + { + "appid": 2339600, + "normalized_name": "battle mages erotica" + }, + { + "appid": 2339610, + "normalized_name": "沉舟:序章" + }, + { + "appid": 2339650, + "normalized_name": "rome the mystery of the chronovisor" + }, + { + "appid": 2339680, + "normalized_name": "project_0 a favour" + }, + { + "appid": 2339690, + "normalized_name": "outpost" + }, + { + "appid": 2339720, + "normalized_name": "scp distorted spacetime" + }, + { + "appid": 2339780, + "normalized_name": "dickland" + }, + { + "appid": 2339820, + "normalized_name": "manic archers bullseye demo" + }, + { + "appid": 2339840, + "normalized_name": "enter the gungeon 2" + }, + { + "appid": 2339890, + "normalized_name": "phantom chains" + }, + { + "appid": 2339930, + "normalized_name": "trash horror collection 3" + }, + { + "appid": 2339940, + "normalized_name": "sexdew city" + }, + { + "appid": 2339950, + "normalized_name": "watarcade" + }, + { + "appid": 2339970, + "normalized_name": "robohunters" + }, + { + "appid": 2339980, + "normalized_name": "epochrypha" + }, + { + "appid": 2340000, + "normalized_name": "awara" + }, + { + "appid": 2340010, + "normalized_name": "ritual" + }, + { + "appid": 2340030, + "normalized_name": "hell of a racket" + }, + { + "appid": 2340050, + "normalized_name": "little gods" + }, + { + "appid": 2340130, + "normalized_name": "ground zero" + }, + { + "appid": 2340150, + "normalized_name": "wojak wants hentai" + }, + { + "appid": 2340160, + "normalized_name": "sexy cyberpunk puzzle" + }, + { + "appid": 2340170, + "normalized_name": "melon knight" + }, + { + "appid": 2340180, + "normalized_name": "angels of darkness angels of light" + }, + { + "appid": 2340190, + "normalized_name": "beyond polaris guardian" + }, + { + "appid": 2340210, + "normalized_name": "blade abyss" + }, + { + "appid": 2340250, + "normalized_name": "fatrifice" + }, + { + "appid": 2340280, + "normalized_name": "编程工厂" + }, + { + "appid": 2340290, + "normalized_name": "dungeon knight" + }, + { + "appid": 2340300, + "normalized_name": "lobby loitering" + }, + { + "appid": 2340320, + "normalized_name": "kagami an odyssey in japanese language learning" + }, + { + "appid": 2340330, + "normalized_name": "the clown's forest 2 waking shadows" + }, + { + "appid": 2340360, + "normalized_name": "t.d.z. 3 dark way of stalker" + }, + { + "appid": 2340380, + "normalized_name": "out of the world" + }, + { + "appid": 2340390, + "normalized_name": "the penguingame antarctic savior" + }, + { + "appid": 2340400, + "normalized_name": "r2beat(アールツービート)" + }, + { + "appid": 2340440, + "normalized_name": "fragment of ciscd" + }, + { + "appid": 2340460, + "normalized_name": "one way home" + }, + { + "appid": 2340500, + "normalized_name": "创造三国志" + }, + { + "appid": 2340510, + "normalized_name": "moon's creed" + }, + { + "appid": 2340520, + "normalized_name": "tales of seikyu" + }, + { + "appid": 2340550, + "normalized_name": "delphiniums rise" + }, + { + "appid": 2340600, + "normalized_name": "工业战争" + }, + { + "appid": 2340620, + "normalized_name": "battle for the void" + }, + { + "appid": 2340640, + "normalized_name": "snow bros. 2 special" + }, + { + "appid": 2340650, + "normalized_name": "古龙风云录" + }, + { + "appid": 2340670, + "normalized_name": "brie parmesan mysteries" + }, + { + "appid": 2340720, + "normalized_name": "美利坚英雄传说:第二次革命战争 the heroic legend of america second revolutionary war" + }, + { + "appid": 2340790, + "normalized_name": "winnie the pooh's book writing speedrunner" + }, + { + "appid": 2340800, + "normalized_name": "life changer" + }, + { + "appid": 2340810, + "normalized_name": "assassins of darkness" + }, + { + "appid": 2340860, + "normalized_name": "way of the bullet" + }, + { + "appid": 2340870, + "normalized_name": "rugby 25" + }, + { + "appid": 2340890, + "normalized_name": "northern tales 6 oath to the gods collector's" + }, + { + "appid": 2340960, + "normalized_name": "rethink | evolved 5" + }, + { + "appid": 2340980, + "normalized_name": "project colored mountains" + }, + { + "appid": 2340990, + "normalized_name": "jump jump cyberpunk" + }, + { + "appid": 2341030, + "normalized_name": "grim tides old school rpg" + }, + { + "appid": 2341050, + "normalized_name": "cat needs" + }, + { + "appid": 2341070, + "normalized_name": "the banished vault" + }, + { + "appid": 2341080, + "normalized_name": "priscillas dream" + }, + { + "appid": 2341090, + "normalized_name": "sisyphus.12.20.03" + }, + { + "appid": 2341100, + "normalized_name": "lost in cheese" + }, + { + "appid": 2341110, + "normalized_name": "narcalid" + }, + { + "appid": 2341130, + "normalized_name": "the turgenev study" + }, + { + "appid": 2341140, + "normalized_name": "draw rider remake" + }, + { + "appid": 2341160, + "normalized_name": "harvest uranus" + }, + { + "appid": 2341200, + "normalized_name": "cube de grace" + }, + { + "appid": 2341210, + "normalized_name": "stack" + }, + { + "appid": 2341220, + "normalized_name": "abaddon" + }, + { + "appid": 2341240, + "normalized_name": "shotgun knight" + }, + { + "appid": 2341300, + "normalized_name": "car delivery man" + }, + { + "appid": 2341330, + "normalized_name": "lost alone" + }, + { + "appid": 2341350, + "normalized_name": "tribute" + }, + { + "appid": 2341360, + "normalized_name": "capybarista" + }, + { + "appid": 2341370, + "normalized_name": "witch hunt academy" + }, + { + "appid": 2341410, + "normalized_name": "wizard's way out" + }, + { + "appid": 2341420, + "normalized_name": "barrett foster prologue" + }, + { + "appid": 2341430, + "normalized_name": "wild wild space" + }, + { + "appid": 2341450, + "normalized_name": "shade the border collie flycatcher" + }, + { + "appid": 2341530, + "normalized_name": "forevr bowl vr" + }, + { + "appid": 2341540, + "normalized_name": "train to nowhere" + }, + { + "appid": 2341560, + "normalized_name": "infest" + }, + { + "appid": 2341580, + "normalized_name": "mining simulator" + }, + { + "appid": 2341600, + "normalized_name": "1414 crossroads" + }, + { + "appid": 2341610, + "normalized_name": "shadow boxr" + }, + { + "appid": 2341620, + "normalized_name": "alpine lake" + }, + { + "appid": 2341640, + "normalized_name": "our summer festival" + }, + { + "appid": 2341680, + "normalized_name": "live with mary" + }, + { + "appid": 2341700, + "normalized_name": "akpala" + }, + { + "appid": 2341710, + "normalized_name": "commander tiberius troubleson" + }, + { + "appid": 2341760, + "normalized_name": "defensurvivor" + }, + { + "appid": 2341780, + "normalized_name": "i love finding furbabies" + }, + { + "appid": 2341790, + "normalized_name": "ある春の日" + }, + { + "appid": 2341800, + "normalized_name": "magic and machines" + }, + { + "appid": 2341860, + "normalized_name": "1001 jigsaw. cute cats 4" + }, + { + "appid": 2341870, + "normalized_name": "1001 jigsaw. cute cats 5" + }, + { + "appid": 2341890, + "normalized_name": "摩沙島大冒險.南都的秘密" + }, + { + "appid": 2341900, + "normalized_name": "panel rabbit" + }, + { + "appid": 2341920, + "normalized_name": "三國立志傳2" + }, + { + "appid": 2342000, + "normalized_name": "reso seeker" + }, + { + "appid": 2342020, + "normalized_name": "fire chat k bulmung" + }, + { + "appid": 2342030, + "normalized_name": "military tanks" + }, + { + "appid": 2342050, + "normalized_name": "beach cafe ii the escape room" + }, + { + "appid": 2342070, + "normalized_name": "escape room bank robbery gone wrong" + }, + { + "appid": 2342150, + "normalized_name": "folk hero" + }, + { + "appid": 2342170, + "normalized_name": "fallen kingdom" + }, + { + "appid": 2342180, + "normalized_name": "midevil" + }, + { + "appid": 2342190, + "normalized_name": "totally accurate dating simulator" + }, + { + "appid": 2342210, + "normalized_name": "genie" + }, + { + "appid": 2342230, + "normalized_name": "qchat" + }, + { + "appid": 2342240, + "normalized_name": "hentai journey" + }, + { + "appid": 2342250, + "normalized_name": "eastern heroes" + }, + { + "appid": 2342260, + "normalized_name": "haunted the chronicles" + }, + { + "appid": 2342280, + "normalized_name": "ten seconds trillion" + }, + { + "appid": 2342320, + "normalized_name": "insane escape" + }, + { + "appid": 2342330, + "normalized_name": "dungeon of argion" + }, + { + "appid": 2342340, + "normalized_name": "save my dreams" + }, + { + "appid": 2342360, + "normalized_name": "dead hook" + }, + { + "appid": 2342390, + "normalized_name": "sugamenia" + }, + { + "appid": 2342400, + "normalized_name": "wat?" + }, + { + "appid": 2342410, + "normalized_name": "i thought there'd be stars..." + }, + { + "appid": 2342430, + "normalized_name": "elysium heights" + }, + { + "appid": 2342480, + "normalized_name": "dubspace chapter 1" + }, + { + "appid": 2342550, + "normalized_name": "tooncop" + }, + { + "appid": 2342610, + "normalized_name": "carlife simulator" + }, + { + "appid": 2342630, + "normalized_name": "battles in space" + }, + { + "appid": 2342690, + "normalized_name": "call of boba" + }, + { + "appid": 2342700, + "normalized_name": "marsel the alien clown" + }, + { + "appid": 2342710, + "normalized_name": "space pirates for life" + }, + { + "appid": 2342720, + "normalized_name": "halftime builders" + }, + { + "appid": 2342730, + "normalized_name": "zero vortex" + }, + { + "appid": 2342750, + "normalized_name": "shadows of duat" + }, + { + "appid": 2342760, + "normalized_name": "slingshot battle" + }, + { + "appid": 2342770, + "normalized_name": "hinami bay" + }, + { + "appid": 2342780, + "normalized_name": "neo harbor rescue squad" + }, + { + "appid": 2342830, + "normalized_name": "skedaddling in egypt" + }, + { + "appid": 2342860, + "normalized_name": "twell" + }, + { + "appid": 2342870, + "normalized_name": "the chronicles of eleos the hall of azaron" + }, + { + "appid": 2342880, + "normalized_name": "rfa station" + }, + { + "appid": 2342920, + "normalized_name": "obscura" + }, + { + "appid": 2342930, + "normalized_name": "evil superhero vr superhero simulator" + }, + { + "appid": 2342940, + "normalized_name": "wisp catacombs" + }, + { + "appid": 2342950, + "normalized_name": "god of weapons" + }, + { + "appid": 2342980, + "normalized_name": "it comes in waves" + }, + { + "appid": 2342990, + "normalized_name": "armor blitz" + }, + { + "appid": 2343000, + "normalized_name": "wyrd gun" + }, + { + "appid": 2343060, + "normalized_name": "僵尸封锁" + }, + { + "appid": 2343090, + "normalized_name": "porkotyler's captain dodger" + }, + { + "appid": 2343100, + "normalized_name": "titanic ii orchestra for dying at sea" + }, + { + "appid": 2343110, + "normalized_name": "virballs" + }, + { + "appid": 2343120, + "normalized_name": "deep space scoundrel" + }, + { + "appid": 2343130, + "normalized_name": "hollow mission" + }, + { + "appid": 2343140, + "normalized_name": "my bath tub companion" + }, + { + "appid": 2343150, + "normalized_name": "yokai hero" + }, + { + "appid": 2343160, + "normalized_name": "rogue fp" + }, + { + "appid": 2343170, + "normalized_name": "polyfight" + }, + { + "appid": 2343220, + "normalized_name": "clampship" + }, + { + "appid": 2343230, + "normalized_name": "iterazers" + }, + { + "appid": 2343240, + "normalized_name": "wretched depths" + }, + { + "appid": 2343250, + "normalized_name": "mommy milkers miko" + }, + { + "appid": 2343270, + "normalized_name": "samurado" + }, + { + "appid": 2343290, + "normalized_name": "axe party vr" + }, + { + "appid": 2343320, + "normalized_name": "stellar empires" + }, + { + "appid": 2343330, + "normalized_name": "skippy's diner" + }, + { + "appid": 2343340, + "normalized_name": "i can see you" + }, + { + "appid": 2343350, + "normalized_name": "杀戮梦工厂" + }, + { + "appid": 2343370, + "normalized_name": "the last root" + }, + { + "appid": 2343380, + "normalized_name": "rabbit simulator" + }, + { + "appid": 2343410, + "normalized_name": "don't destroy the rocket" + }, + { + "appid": 2343450, + "normalized_name": "random clicker" + }, + { + "appid": 2343460, + "normalized_name": "sassy cybergirl" + }, + { + "appid": 2343470, + "normalized_name": "unwashed" + }, + { + "appid": 2343480, + "normalized_name": "just find it" + }, + { + "appid": 2343550, + "normalized_name": "skirmish" + }, + { + "appid": 2343560, + "normalized_name": "sangraciner" + }, + { + "appid": 2343570, + "normalized_name": "bullet runner the first slaughter" + }, + { + "appid": 2343580, + "normalized_name": "ghoul fright" + }, + { + "appid": 2343600, + "normalized_name": "endgame of devil" + }, + { + "appid": 2343610, + "normalized_name": "文字遊戯(日本語版)" + }, + { + "appid": 2343630, + "normalized_name": "華触の典" + }, + { + "appid": 2343640, + "normalized_name": "ottopunks gangs of bosphorus" + }, + { + "appid": 2343650, + "normalized_name": "waven" + }, + { + "appid": 2343660, + "normalized_name": "the old man and his cat" + }, + { + "appid": 2343680, + "normalized_name": "slave princess finne ~ if story 3" + }, + { + "appid": 2343700, + "normalized_name": "spirit of the backwaters" + }, + { + "appid": 2343720, + "normalized_name": "spooky shelter" + }, + { + "appid": 2343730, + "normalized_name": "spies spies spies" + }, + { + "appid": 2343740, + "normalized_name": "pickleball smash" + }, + { + "appid": 2343750, + "normalized_name": "lobstpurr" + }, + { + "appid": 2343780, + "normalized_name": "the song of the nightrider" + }, + { + "appid": 2343810, + "normalized_name": "hero planter" + }, + { + "appid": 2343820, + "normalized_name": "hertz" + }, + { + "appid": 2343850, + "normalized_name": "martian panic" + }, + { + "appid": 2343880, + "normalized_name": "the diary" + }, + { + "appid": 2343890, + "normalized_name": "autobulletsurvivor" + }, + { + "appid": 2343900, + "normalized_name": "project werewulf" + }, + { + "appid": 2343910, + "normalized_name": "brageskålen" + }, + { + "appid": 2343920, + "normalized_name": "trackline express" + }, + { + "appid": 2343930, + "normalized_name": "eyes of war" + }, + { + "appid": 2343960, + "normalized_name": "巫族 witch race" + }, + { + "appid": 2343990, + "normalized_name": "sliming" + }, + { + "appid": 2344020, + "normalized_name": "silver box classics" + }, + { + "appid": 2344040, + "normalized_name": "lovers in playa rosa" + }, + { + "appid": 2344060, + "normalized_name": "dimensional animals" + }, + { + "appid": 2344070, + "normalized_name": "恶灵植物园:梦兆温室 precognition dream's greenhouse" + }, + { + "appid": 2344110, + "normalized_name": "secrets of wynne" + }, + { + "appid": 2344130, + "normalized_name": "kings love" + }, + { + "appid": 2344180, + "normalized_name": "realm divided" + }, + { + "appid": 2344190, + "normalized_name": "riverflow" + }, + { + "appid": 2344240, + "normalized_name": "streetstep 21st century basketball" + }, + { + "appid": 2344320, + "normalized_name": "legacy steel & sorcery" + }, + { + "appid": 2344350, + "normalized_name": "farm day 2023" + }, + { + "appid": 2344390, + "normalized_name": "tetramage" + }, + { + "appid": 2344410, + "normalized_name": "danger in body" + }, + { + "appid": 2344450, + "normalized_name": "scroter" + }, + { + "appid": 2344520, + "normalized_name": "diablo iv" + }, + { + "appid": 2344550, + "normalized_name": "magecraft" + }, + { + "appid": 2344570, + "normalized_name": "无限rpg" + }, + { + "appid": 2344580, + "normalized_name": "meeple jump" + }, + { + "appid": 2344590, + "normalized_name": "red man follows" + }, + { + "appid": 2344620, + "normalized_name": "sculpture of chance" + }, + { + "appid": 2344630, + "normalized_name": "galactic conquest battle infinity" + }, + { + "appid": 2344640, + "normalized_name": "a snowman's chance" + }, + { + "appid": 2344650, + "normalized_name": "mushroom pin" + }, + { + "appid": 2344680, + "normalized_name": "super vhs" + }, + { + "appid": 2344710, + "normalized_name": "duckified cosmic legends" + }, + { + "appid": 2344750, + "normalized_name": "peanut butter jelly wars" + }, + { + "appid": 2344800, + "normalized_name": "milky animals" + }, + { + "appid": 2344820, + "normalized_name": "puzzle wizards" + }, + { + "appid": 2344830, + "normalized_name": "ethereal requiem of repose" + }, + { + "appid": 2344880, + "normalized_name": "scrap warden" + }, + { + "appid": 2344890, + "normalized_name": "破洞小世界 呆望窗 hole small world" + }, + { + "appid": 2344930, + "normalized_name": "endless tower" + }, + { + "appid": 2344950, + "normalized_name": "strip'em iii" + }, + { + "appid": 2344980, + "normalized_name": "not the hero" + }, + { + "appid": 2344990, + "normalized_name": "trolley problem" + }, + { + "appid": 2345000, + "normalized_name": "vertical quest" + }, + { + "appid": 2345010, + "normalized_name": "回到农村" + }, + { + "appid": 2345020, + "normalized_name": "bee island" + }, + { + "appid": 2345030, + "normalized_name": "hexoria" + }, + { + "appid": 2345040, + "normalized_name": "アザリスの迷宮" + }, + { + "appid": 2345050, + "normalized_name": "big adventure trip to europe 4 collector's" + }, + { + "appid": 2345060, + "normalized_name": "vegan challenge" + }, + { + "appid": 2345080, + "normalized_name": "cats vs ghosts" + }, + { + "appid": 2345090, + "normalized_name": "samurai revenge 2" + }, + { + "appid": 2345100, + "normalized_name": "offiatrix rise of the team leader" + }, + { + "appid": 2345110, + "normalized_name": "洛國的復興" + }, + { + "appid": 2345140, + "normalized_name": "day in day out" + }, + { + "appid": 2345150, + "normalized_name": "discarded empire" + }, + { + "appid": 2345170, + "normalized_name": "rise again" + }, + { + "appid": 2345190, + "normalized_name": "pixel petals" + }, + { + "appid": 2345200, + "normalized_name": "zombie town!" + }, + { + "appid": 2345220, + "normalized_name": "roody 2d" + }, + { + "appid": 2345230, + "normalized_name": "200 tolerance" + }, + { + "appid": 2345250, + "normalized_name": "yogurt wet dreams" + }, + { + "appid": 2345290, + "normalized_name": "automatonics" + }, + { + "appid": 2345300, + "normalized_name": "king of swords" + }, + { + "appid": 2345340, + "normalized_name": "space travellers" + }, + { + "appid": 2345360, + "normalized_name": "dungeon of insanity" + }, + { + "appid": 2345370, + "normalized_name": "digs mini icy" + }, + { + "appid": 2345380, + "normalized_name": "100% challenge" + }, + { + "appid": 2345410, + "normalized_name": "molecular warfare" + }, + { + "appid": 2345430, + "normalized_name": "escape from crimson manor trapped together" + }, + { + "appid": 2345440, + "normalized_name": "piscirazzi fish photo shooter" + }, + { + "appid": 2345470, + "normalized_name": "amazing trip to europe" + }, + { + "appid": 2345480, + "normalized_name": "alien planet survival" + }, + { + "appid": 2345490, + "normalized_name": "星辰大海" + }, + { + "appid": 2345500, + "normalized_name": "red lands" + }, + { + "appid": 2345540, + "normalized_name": "perfect hand of nostalpix [remaster]" + }, + { + "appid": 2345550, + "normalized_name": "meow legion" + }, + { + "appid": 2345570, + "normalized_name": "stellar stroll" + }, + { + "appid": 2345590, + "normalized_name": "puzzlepops! plus" + }, + { + "appid": 2345630, + "normalized_name": "the gap" + }, + { + "appid": 2345640, + "normalized_name": "forbidden fantasy the rpg" + }, + { + "appid": 2345660, + "normalized_name": "謳歌的聖女" + }, + { + "appid": 2345700, + "normalized_name": "heart of nadia" + }, + { + "appid": 2345740, + "normalized_name": "rogue tactics" + }, + { + "appid": 2345770, + "normalized_name": "superpantsu tentikun" + }, + { + "appid": 2345870, + "normalized_name": "tile lands" + }, + { + "appid": 2345890, + "normalized_name": "things to get" + }, + { + "appid": 2345910, + "normalized_name": "within a dead city" + }, + { + "appid": 2345920, + "normalized_name": "蕾拉 layla" + }, + { + "appid": 2345930, + "normalized_name": "hell of verdun" + }, + { + "appid": 2345940, + "normalized_name": "lost lands" + }, + { + "appid": 2345960, + "normalized_name": "flocity" + }, + { + "appid": 2345990, + "normalized_name": "my first grade fantasy adventure" + }, + { + "appid": 2346000, + "normalized_name": "the way of death" + }, + { + "appid": 2346010, + "normalized_name": "neon magic witch shop" + }, + { + "appid": 2346140, + "normalized_name": "i commissioned some frogs" + }, + { + "appid": 2346150, + "normalized_name": "eol end of line" + }, + { + "appid": 2346160, + "normalized_name": "gachahell" + }, + { + "appid": 2346180, + "normalized_name": "final gun a multiplayer arms race" + }, + { + "appid": 2346230, + "normalized_name": "ravenwood" + }, + { + "appid": 2346280, + "normalized_name": "don't be scared of the factory" + }, + { + "appid": 2346290, + "normalized_name": "attack from the void" + }, + { + "appid": 2346320, + "normalized_name": "astral guardian" + }, + { + "appid": 2346360, + "normalized_name": "witchy woes" + }, + { + "appid": 2346370, + "normalized_name": "hentai maturecat" + }, + { + "appid": 2346390, + "normalized_name": "where is my cat" + }, + { + "appid": 2346410, + "normalized_name": "border pioneer" + }, + { + "appid": 2346420, + "normalized_name": "屌丝变美女:夺命轮回" + }, + { + "appid": 2346440, + "normalized_name": "ninja sneaking vs" + }, + { + "appid": 2346450, + "normalized_name": "rhythm rabbit" + }, + { + "appid": 2346470, + "normalized_name": "all goblin" + }, + { + "appid": 2346490, + "normalized_name": "loop" + }, + { + "appid": 2346500, + "normalized_name": "desert island in summer?" + }, + { + "appid": 2346510, + "normalized_name": "rainbowcore hypernova" + }, + { + "appid": 2346530, + "normalized_name": "foresia the lust curse" + }, + { + "appid": 2346540, + "normalized_name": "amulet of iovar" + }, + { + "appid": 2346550, + "normalized_name": "rise of eros" + }, + { + "appid": 2346560, + "normalized_name": "d.c.k. dock chess king" + }, + { + "appid": 2346570, + "normalized_name": "songs of life" + }, + { + "appid": 2346580, + "normalized_name": "sentimental death loop" + }, + { + "appid": 2346650, + "normalized_name": "puym lake" + }, + { + "appid": 2346660, + "normalized_name": "dfhack dwarf fortress modding engine" + }, + { + "appid": 2346710, + "normalized_name": "protolife other side" + }, + { + "appid": 2346730, + "normalized_name": "day at the races" + }, + { + "appid": 2346760, + "normalized_name": "inpulse" + }, + { + "appid": 2346780, + "normalized_name": "all in the game crime strategy" + }, + { + "appid": 2346810, + "normalized_name": "scholar's mate first move" + }, + { + "appid": 2346840, + "normalized_name": "one eyed likho" + }, + { + "appid": 2346870, + "normalized_name": "the big lez video game" + }, + { + "appid": 2346880, + "normalized_name": "multiverse go" + }, + { + "appid": 2346890, + "normalized_name": "bananaguy" + }, + { + "appid": 2346900, + "normalized_name": "bonds of unity" + }, + { + "appid": 2346930, + "normalized_name": "clueless crosswords" + }, + { + "appid": 2346980, + "normalized_name": "magic bean🍃" + }, + { + "appid": 2347000, + "normalized_name": "panzer party" + }, + { + "appid": 2347030, + "normalized_name": "princess survivors" + }, + { + "appid": 2347040, + "normalized_name": "rc revolution" + }, + { + "appid": 2347080, + "normalized_name": "frosthaven" + }, + { + "appid": 2347090, + "normalized_name": "landline" + }, + { + "appid": 2347120, + "normalized_name": "my kingdom for the princess" + }, + { + "appid": 2347180, + "normalized_name": "cat&gold" + }, + { + "appid": 2347190, + "normalized_name": "lunar legacy" + }, + { + "appid": 2347200, + "normalized_name": "ceteris paribus" + }, + { + "appid": 2347210, + "normalized_name": "they bite!" + }, + { + "appid": 2347280, + "normalized_name": "usurper" + }, + { + "appid": 2347290, + "normalized_name": "sea chronicles" + }, + { + "appid": 2347320, + "normalized_name": "dirty aim trainer vr" + }, + { + "appid": 2347340, + "normalized_name": "slidemagi" + }, + { + "appid": 2347350, + "normalized_name": "on the brink" + }, + { + "appid": 2347360, + "normalized_name": "into the backrooms" + }, + { + "appid": 2347380, + "normalized_name": "witch's garden" + }, + { + "appid": 2347390, + "normalized_name": "hell denizen" + }, + { + "appid": 2347410, + "normalized_name": "the phoenix initiative" + }, + { + "appid": 2347440, + "normalized_name": "the feudal" + }, + { + "appid": 2347450, + "normalized_name": "heroes stand tall m.e.t.a" + }, + { + "appid": 2347460, + "normalized_name": "survival sprint" + }, + { + "appid": 2347470, + "normalized_name": "bullet brawl" + }, + { + "appid": 2347520, + "normalized_name": "starithm" + }, + { + "appid": 2347530, + "normalized_name": "independant" + }, + { + "appid": 2347550, + "normalized_name": "cowboy 3030" + }, + { + "appid": 2347580, + "normalized_name": "the illusion curse" + }, + { + "appid": 2347610, + "normalized_name": "glory or dominance the world of kleiverog" + }, + { + "appid": 2347630, + "normalized_name": "nivoz running canned" + }, + { + "appid": 2347680, + "normalized_name": "book travelers a victorian story" + }, + { + "appid": 2347740, + "normalized_name": "venusblood gaia international" + }, + { + "appid": 2347750, + "normalized_name": "hidden harbor 3 top down 3d" + }, + { + "appid": 2347760, + "normalized_name": "sex cyber lust vr" + }, + { + "appid": 2347840, + "normalized_name": "endless nights zombie apocalypse" + }, + { + "appid": 2347860, + "normalized_name": "bum fights" + }, + { + "appid": 2347890, + "normalized_name": "snowscapes" + }, + { + "appid": 2347910, + "normalized_name": "seal what the fun" + }, + { + "appid": 2347930, + "normalized_name": "horde" + }, + { + "appid": 2347940, + "normalized_name": "sea of survivors" + }, + { + "appid": 2347950, + "normalized_name": "eloriasha" + }, + { + "appid": 2347960, + "normalized_name": "d life" + }, + { + "appid": 2347980, + "normalized_name": "on a summer night" + }, + { + "appid": 2348000, + "normalized_name": "bullet heck" + }, + { + "appid": 2348030, + "normalized_name": "the riddler" + }, + { + "appid": 2348070, + "normalized_name": "侠义九州" + }, + { + "appid": 2348090, + "normalized_name": "crop rotation" + }, + { + "appid": 2348100, + "normalized_name": "yeah! you want \"those games \" right? so here you go! now let's see you clear them!" + }, + { + "appid": 2348120, + "normalized_name": "kagura survivors endless night" + }, + { + "appid": 2348140, + "normalized_name": "the first horde" + }, + { + "appid": 2348170, + "normalized_name": "kuroinu redux" + }, + { + "appid": 2348190, + "normalized_name": "magic garden insect from elden world" + }, + { + "appid": 2348250, + "normalized_name": "13z the zodiac trials" + }, + { + "appid": 2348260, + "normalized_name": "raging bytes" + }, + { + "appid": 2348280, + "normalized_name": "whispike survivors sword of the necromancer" + }, + { + "appid": 2348290, + "normalized_name": "hentai pool" + }, + { + "appid": 2348330, + "normalized_name": "4 days in ***" + }, + { + "appid": 2348350, + "normalized_name": "bytes the reverse tower defense" + }, + { + "appid": 2348360, + "normalized_name": "grisaia chronos rebellion" + }, + { + "appid": 2348380, + "normalized_name": "niels penguin adventure" + }, + { + "appid": 2348400, + "normalized_name": "techno banter" + }, + { + "appid": 2348420, + "normalized_name": "nightmare of gemstone" + }, + { + "appid": 2348440, + "normalized_name": "dangerous land" + }, + { + "appid": 2348500, + "normalized_name": "the paths we cross" + }, + { + "appid": 2348530, + "normalized_name": "wizard's watch" + }, + { + "appid": 2348540, + "normalized_name": "berserk b.i.t.s" + }, + { + "appid": 2348610, + "normalized_name": "slime 3k rise against despot" + }, + { + "appid": 2348650, + "normalized_name": "古今東西おきつね物語" + }, + { + "appid": 2348660, + "normalized_name": "puzzle valley" + }, + { + "appid": 2348680, + "normalized_name": "the lust city" + }, + { + "appid": 2348700, + "normalized_name": "wild omission" + }, + { + "appid": 2348720, + "normalized_name": "the dragons' twilight iii" + }, + { + "appid": 2348730, + "normalized_name": "hauntsville" + }, + { + "appid": 2348740, + "normalized_name": "casino heist" + }, + { + "appid": 2348810, + "normalized_name": "amaze!" + }, + { + "appid": 2348820, + "normalized_name": "living in a brothel" + }, + { + "appid": 2348830, + "normalized_name": "pocket oasis" + }, + { + "appid": 2348850, + "normalized_name": "ainmora the impending disaster" + }, + { + "appid": 2348870, + "normalized_name": "cannonfire" + }, + { + "appid": 2348880, + "normalized_name": "春待ちトロイダル" + }, + { + "appid": 2348900, + "normalized_name": "block ops 3d" + }, + { + "appid": 2348920, + "normalized_name": "don't rage" + }, + { + "appid": 2348970, + "normalized_name": "checkmaze" + }, + { + "appid": 2348980, + "normalized_name": "puppet seed" + }, + { + "appid": 2349000, + "normalized_name": "lapsus" + }, + { + "appid": 2349010, + "normalized_name": "hidden world 4 top down 3d" + }, + { + "appid": 2349030, + "normalized_name": "b project ryusei*fantasia" + }, + { + "appid": 2349040, + "normalized_name": "dinky guardians" + }, + { + "appid": 2349060, + "normalized_name": "tiny man's revenge" + }, + { + "appid": 2349090, + "normalized_name": "number 8" + }, + { + "appid": 2349100, + "normalized_name": "flipper soccer" + }, + { + "appid": 2349110, + "normalized_name": "lunarwardens" + }, + { + "appid": 2349130, + "normalized_name": "the sorcerer's sword" + }, + { + "appid": 2349140, + "normalized_name": "konosuba god's blessing on this wonderful world! love for these clothes of desire!" + }, + { + "appid": 2349180, + "normalized_name": "空と無垢の6機" + }, + { + "appid": 2349200, + "normalized_name": "midnight market" + }, + { + "appid": 2349230, + "normalized_name": "antibots" + }, + { + "appid": 2349240, + "normalized_name": "oslo 2084" + }, + { + "appid": 2349250, + "normalized_name": "violations will be punished" + }, + { + "appid": 2349260, + "normalized_name": "fishing stories" + }, + { + "appid": 2349320, + "normalized_name": "glass tactics" + }, + { + "appid": 2349350, + "normalized_name": "knockout 2 wrath of the karen" + }, + { + "appid": 2349380, + "normalized_name": "clomper" + }, + { + "appid": 2349410, + "normalized_name": "forging ahead" + }, + { + "appid": 2349420, + "normalized_name": "eldrimar" + }, + { + "appid": 2349430, + "normalized_name": "ancestral players" + }, + { + "appid": 2349440, + "normalized_name": "scramble all fighters" + }, + { + "appid": 2349460, + "normalized_name": "techbrawlogy into the robodome" + }, + { + "appid": 2349480, + "normalized_name": "space slaughter" + }, + { + "appid": 2349490, + "normalized_name": "otoko cross pretty boys breakup!" + }, + { + "appid": 2349500, + "normalized_name": "otoko cross pretty boys dropout!" + }, + { + "appid": 2349550, + "normalized_name": "the test secrets of the soul 2" + }, + { + "appid": 2349570, + "normalized_name": "oneway.exe" + }, + { + "appid": 2349590, + "normalized_name": "brasil simuleitor" + }, + { + "appid": 2349630, + "normalized_name": "litchi town" + }, + { + "appid": 2349640, + "normalized_name": "zeta wolf chronicles" + }, + { + "appid": 2349660, + "normalized_name": "峰哥亡命天涯" + }, + { + "appid": 2349670, + "normalized_name": "ram 1982" + }, + { + "appid": 2349760, + "normalized_name": "toing's pops" + }, + { + "appid": 2349820, + "normalized_name": "hero's land" + }, + { + "appid": 2349830, + "normalized_name": "touhou gensokyo survivors" + }, + { + "appid": 2349840, + "normalized_name": "moba esport manager 25" + }, + { + "appid": 2349850, + "normalized_name": "lennod jump game" + }, + { + "appid": 2349870, + "normalized_name": "your average bear" + }, + { + "appid": 2349910, + "normalized_name": "onigo hunter" + }, + { + "appid": 2349920, + "normalized_name": "puzzle panic island" + }, + { + "appid": 2349940, + "normalized_name": "sligga trigger" + }, + { + "appid": 2349950, + "normalized_name": "riddles and sieges" + }, + { + "appid": 2349980, + "normalized_name": "地牢危城 suicide hero" + }, + { + "appid": 2349990, + "normalized_name": "fateful mages" + }, + { + "appid": 2350000, + "normalized_name": "space hero intergalactic titan" + }, + { + "appid": 2350010, + "normalized_name": "zoid zoid tetsoidea" + }, + { + "appid": 2350020, + "normalized_name": "start over" + }, + { + "appid": 2350030, + "normalized_name": "群雄策・牌 heroes strategy・kards" + }, + { + "appid": 2350050, + "normalized_name": "cosmic survivor" + }, + { + "appid": 2350070, + "normalized_name": "void funk" + }, + { + "appid": 2350080, + "normalized_name": "curse of the draugr kings" + }, + { + "appid": 2350090, + "normalized_name": "fantasy fighters" + }, + { + "appid": 2350180, + "normalized_name": "神奇三国 kingdoms hegemony" + }, + { + "appid": 2350190, + "normalized_name": "ascendant's roguelike" + }, + { + "appid": 2350220, + "normalized_name": "outside the blocks" + }, + { + "appid": 2350230, + "normalized_name": "clayverse" + }, + { + "appid": 2350260, + "normalized_name": "tournament tower" + }, + { + "appid": 2350270, + "normalized_name": "primal planet" + }, + { + "appid": 2350280, + "normalized_name": "monster jam showdown" + }, + { + "appid": 2350290, + "normalized_name": "shooting star vr" + }, + { + "appid": 2350310, + "normalized_name": "monica's newlywed life" + }, + { + "appid": 2350370, + "normalized_name": "profi girls" + }, + { + "appid": 2350380, + "normalized_name": "level up the gamer girls" + }, + { + "appid": 2350390, + "normalized_name": "neko office nightlife adventures" + }, + { + "appid": 2350400, + "normalized_name": "pignator" + }, + { + "appid": 2350430, + "normalized_name": "dirty streamer puzzle" + }, + { + "appid": 2350460, + "normalized_name": "chickenauts" + }, + { + "appid": 2350480, + "normalized_name": "the viriditas chapel of perpetual adoration" + }, + { + "appid": 2350500, + "normalized_name": "childhood dreams jigsaw puzzle" + }, + { + "appid": 2350520, + "normalized_name": "dragonstrike" + }, + { + "appid": 2350530, + "normalized_name": "fantasy empires" + }, + { + "appid": 2350540, + "normalized_name": "deathkeep" + }, + { + "appid": 2350550, + "normalized_name": "spelljammer pirates of realmspace" + }, + { + "appid": 2350590, + "normalized_name": "cybertitans" + }, + { + "appid": 2350620, + "normalized_name": "asteroid king" + }, + { + "appid": 2350630, + "normalized_name": "dark age legends" + }, + { + "appid": 2350640, + "normalized_name": "where is agnes?" + }, + { + "appid": 2350660, + "normalized_name": "h girl 2" + }, + { + "appid": 2350700, + "normalized_name": "project apidom" + }, + { + "appid": 2350720, + "normalized_name": "tower of boin" + }, + { + "appid": 2350730, + "normalized_name": "moirae:紡生之樓的人偶" + }, + { + "appid": 2350760, + "normalized_name": "holy catch the star night story" + }, + { + "appid": 2350770, + "normalized_name": "daydreamy" + }, + { + "appid": 2350790, + "normalized_name": "moonlighter 2 the endless vault" + }, + { + "appid": 2350810, + "normalized_name": "glory room" + }, + { + "appid": 2350880, + "normalized_name": "furydough" + }, + { + "appid": 2350890, + "normalized_name": "the declassifier" + }, + { + "appid": 2350900, + "normalized_name": "hifuu os hack into the barrier" + }, + { + "appid": 2350920, + "normalized_name": "cube sumbledore" + }, + { + "appid": 2350990, + "normalized_name": "车辆对战僵尸 vehicle beat zombie" + }, + { + "appid": 2351020, + "normalized_name": "xissai the snake temple" + }, + { + "appid": 2351060, + "normalized_name": "the way home" + }, + { + "appid": 2351080, + "normalized_name": "magic pussy chapter 1" + }, + { + "appid": 2351090, + "normalized_name": "sex standing" + }, + { + "appid": 2351100, + "normalized_name": "foxblade" + }, + { + "appid": 2351110, + "normalized_name": "take a leak" + }, + { + "appid": 2351120, + "normalized_name": "ebenezer and the invisible world" + }, + { + "appid": 2351160, + "normalized_name": "airborne sea" + }, + { + "appid": 2351170, + "normalized_name": "doomsday jetlag" + }, + { + "appid": 2351200, + "normalized_name": "producer tycoon" + }, + { + "appid": 2351300, + "normalized_name": "paradox guardians" + }, + { + "appid": 2351330, + "normalized_name": "brokenlore don't watch" + }, + { + "appid": 2351360, + "normalized_name": "forgotten memories" + }, + { + "appid": 2351400, + "normalized_name": "that racecar game" + }, + { + "appid": 2351420, + "normalized_name": "xingchenbian online" + }, + { + "appid": 2351450, + "normalized_name": "dunland survivors story" + }, + { + "appid": 2351490, + "normalized_name": "alpha warrior" + }, + { + "appid": 2351510, + "normalized_name": "polygunner" + }, + { + "appid": 2351550, + "normalized_name": "the disasters" + }, + { + "appid": 2351560, + "normalized_name": "apocalypse party" + }, + { + "appid": 2351570, + "normalized_name": "kreeps" + }, + { + "appid": 2351610, + "normalized_name": "the most lecherous" + }, + { + "appid": 2351630, + "normalized_name": "kingdom unwritten" + }, + { + "appid": 2351640, + "normalized_name": "times trials" + }, + { + "appid": 2351660, + "normalized_name": "mindbug online" + }, + { + "appid": 2351700, + "normalized_name": "the gun is good" + }, + { + "appid": 2351720, + "normalized_name": "downhill dash" + }, + { + "appid": 2351730, + "normalized_name": "idle simple rpg" + }, + { + "appid": 2351740, + "normalized_name": "premonition" + }, + { + "appid": 2351770, + "normalized_name": "era of celestials" + }, + { + "appid": 2351810, + "normalized_name": "netorare wife yukiko 20 years after marriage" + }, + { + "appid": 2351820, + "normalized_name": "stellarace (demo)" + }, + { + "appid": 2351850, + "normalized_name": "庆余年" + }, + { + "appid": 2351860, + "normalized_name": "tower of kalemonvo" + }, + { + "appid": 2351890, + "normalized_name": "blooddome99" + }, + { + "appid": 2351900, + "normalized_name": "wish us luck" + }, + { + "appid": 2351930, + "normalized_name": "swarm survivor" + }, + { + "appid": 2351970, + "normalized_name": "monster girl 1 000" + }, + { + "appid": 2351990, + "normalized_name": "anseion fantasy mmorpg" + }, + { + "appid": 2352000, + "normalized_name": "destroy the monoliths" + }, + { + "appid": 2352010, + "normalized_name": "fallen slayers" + }, + { + "appid": 2352020, + "normalized_name": "survival & horror the damned city" + }, + { + "appid": 2352040, + "normalized_name": "肥羊危机" + }, + { + "appid": 2352050, + "normalized_name": "sector zero" + }, + { + "appid": 2352060, + "normalized_name": "voodoo strikers" + }, + { + "appid": 2352100, + "normalized_name": "warlock survivors" + }, + { + "appid": 2352130, + "normalized_name": "superposition" + }, + { + "appid": 2352190, + "normalized_name": "truck preparation for driving vr training" + }, + { + "appid": 2352230, + "normalized_name": "little big adventure purple empire" + }, + { + "appid": 2352260, + "normalized_name": "boom royale" + }, + { + "appid": 2352350, + "normalized_name": "road accident with dangerous goods vr training" + }, + { + "appid": 2352380, + "normalized_name": "ugra tale of agna" + }, + { + "appid": 2352390, + "normalized_name": "density limit" + }, + { + "appid": 2352400, + "normalized_name": "abalon arena multiplayer card tactics" + }, + { + "appid": 2352410, + "normalized_name": "oxygen cocktail" + }, + { + "appid": 2352420, + "normalized_name": "mike's garden" + }, + { + "appid": 2352480, + "normalized_name": "catsacks" + }, + { + "appid": 2352500, + "normalized_name": "sex simulator girl on girl" + }, + { + "appid": 2352510, + "normalized_name": "fuse the bomb" + }, + { + "appid": 2352520, + "normalized_name": "pale cinder" + }, + { + "appid": 2352540, + "normalized_name": "erin's naughty friday prologue" + }, + { + "appid": 2352600, + "normalized_name": "weak soul" + }, + { + "appid": 2352620, + "normalized_name": "fellowship" + }, + { + "appid": 2352630, + "normalized_name": "horla" + }, + { + "appid": 2352640, + "normalized_name": "you are peter shorts" + }, + { + "appid": 2352670, + "normalized_name": "arcadium space odyssey" + }, + { + "appid": 2352680, + "normalized_name": "colonization simulator" + }, + { + "appid": 2352710, + "normalized_name": "shoot & neon" + }, + { + "appid": 2352740, + "normalized_name": "the mountaineers" + }, + { + "appid": 2352770, + "normalized_name": "keyboard warrior" + }, + { + "appid": 2352790, + "normalized_name": "goblin lord wants me to become a virgin wizard by managing the brothel!?" + }, + { + "appid": 2352810, + "normalized_name": "diggy diggy dwarf" + }, + { + "appid": 2352820, + "normalized_name": "rogues don't cry" + }, + { + "appid": 2352850, + "normalized_name": "rogue jungle" + }, + { + "appid": 2352890, + "normalized_name": "hentai ariel" + }, + { + "appid": 2352960, + "normalized_name": "squid grid" + }, + { + "appid": 2353010, + "normalized_name": "strange shadow" + }, + { + "appid": 2353040, + "normalized_name": "lethal application リーサルアプリケーション" + }, + { + "appid": 2353050, + "normalized_name": "wtf waifu tactical force" + }, + { + "appid": 2353100, + "normalized_name": "ember the werefox" + }, + { + "appid": 2353120, + "normalized_name": "the last of the core" + }, + { + "appid": 2353130, + "normalized_name": "刻印战记2:七圣英雄" + }, + { + "appid": 2353160, + "normalized_name": "捕鱼娱乐城 真人千炮3d捕鱼" + }, + { + "appid": 2353180, + "normalized_name": "scrapchasers" + }, + { + "appid": 2353190, + "normalized_name": "night of spirits" + }, + { + "appid": 2353220, + "normalized_name": "tales of legendary lust aphrodisia" + }, + { + "appid": 2353250, + "normalized_name": "astrometica" + }, + { + "appid": 2353270, + "normalized_name": "launch the baby" + }, + { + "appid": 2353280, + "normalized_name": "fantavision 202x" + }, + { + "appid": 2353310, + "normalized_name": "3d矿工" + }, + { + "appid": 2353320, + "normalized_name": "n+1:失业青年新生活!" + }, + { + "appid": 2353340, + "normalized_name": "kamitsubaki city regenerate" + }, + { + "appid": 2353360, + "normalized_name": "battleguild" + }, + { + "appid": 2353370, + "normalized_name": "meow town" + }, + { + "appid": 2353380, + "normalized_name": "연오와 세오" + }, + { + "appid": 2353410, + "normalized_name": "hex plat" + }, + { + "appid": 2353420, + "normalized_name": "court connect capture" + }, + { + "appid": 2353440, + "normalized_name": "carry onward" + }, + { + "appid": 2353470, + "normalized_name": "succubus alchemist transformation orgasming hell" + }, + { + "appid": 2353520, + "normalized_name": "elemental fury" + }, + { + "appid": 2353570, + "normalized_name": "ln of zombies" + }, + { + "appid": 2353580, + "normalized_name": "creatures on island" + }, + { + "appid": 2353640, + "normalized_name": "virus infinite" + }, + { + "appid": 2353650, + "normalized_name": "dobbyxescape pirate adventure" + }, + { + "appid": 2353660, + "normalized_name": "blood sunset" + }, + { + "appid": 2353680, + "normalized_name": "dice world" + }, + { + "appid": 2353690, + "normalized_name": "drift island" + }, + { + "appid": 2353700, + "normalized_name": "realms of bondage" + }, + { + "appid": 2353730, + "normalized_name": "space expedition" + }, + { + "appid": 2353760, + "normalized_name": "landfall archives" + }, + { + "appid": 2353790, + "normalized_name": "jump puzzle" + }, + { + "appid": 2353800, + "normalized_name": "shapes & shots prologue" + }, + { + "appid": 2353820, + "normalized_name": "poly jigsaw animals" + }, + { + "appid": 2353830, + "normalized_name": "l room" + }, + { + "appid": 2353840, + "normalized_name": "a storm unsung" + }, + { + "appid": 2353850, + "normalized_name": "零号协议agreementzero" + }, + { + "appid": 2353870, + "normalized_name": "unsolved case murderous script collector's" + }, + { + "appid": 2353880, + "normalized_name": "wall shooter" + }, + { + "appid": 2353900, + "normalized_name": "jigsaw puzzle baby animals" + }, + { + "appid": 2353910, + "normalized_name": "三千零一页 3001 pages a fairy tale for 33" + }, + { + "appid": 2353930, + "normalized_name": "infected backrooms multiplayer" + }, + { + "appid": 2353950, + "normalized_name": "monkey splash!!" + }, + { + "appid": 2353980, + "normalized_name": "levity race" + }, + { + "appid": 2354000, + "normalized_name": "slackers carts of glory" + }, + { + "appid": 2354040, + "normalized_name": "spaceship survivors" + }, + { + "appid": 2354050, + "normalized_name": "dreieck" + }, + { + "appid": 2354060, + "normalized_name": "twin stick tennis" + }, + { + "appid": 2354070, + "normalized_name": "dealership simulator" + }, + { + "appid": 2354090, + "normalized_name": "real nightmares" + }, + { + "appid": 2354120, + "normalized_name": "mortanis prisoners #1" + }, + { + "appid": 2354200, + "normalized_name": "an action roguelite for when you have 20 minutes to spare" + }, + { + "appid": 2354250, + "normalized_name": "ayla's dollhouse" + }, + { + "appid": 2354300, + "normalized_name": "sex × hex" + }, + { + "appid": 2354310, + "normalized_name": "adventures of a snowboarder" + }, + { + "appid": 2354330, + "normalized_name": "keep keepers" + }, + { + "appid": 2354400, + "normalized_name": "vr drums streamer" + }, + { + "appid": 2354450, + "normalized_name": "survive or die" + }, + { + "appid": 2354460, + "normalized_name": "exodus sunflower on the horizon" + }, + { + "appid": 2354520, + "normalized_name": "roommate corruption 😈" + }, + { + "appid": 2354560, + "normalized_name": "clickerogue" + }, + { + "appid": 2354570, + "normalized_name": "realm of simplicity mmorpg" + }, + { + "appid": 2354580, + "normalized_name": "spaceman memories" + }, + { + "appid": 2354600, + "normalized_name": "renfield bring your own blood" + }, + { + "appid": 2354630, + "normalized_name": "project spike" + }, + { + "appid": 2354640, + "normalized_name": "dieseldome oil & blood" + }, + { + "appid": 2354670, + "normalized_name": "paper caper" + }, + { + "appid": 2354710, + "normalized_name": "creatures" + }, + { + "appid": 2354730, + "normalized_name": "天穹下的格林" + }, + { + "appid": 2354760, + "normalized_name": "no friends" + }, + { + "appid": 2354770, + "normalized_name": "oni onsen" + }, + { + "appid": 2354780, + "normalized_name": "together tree romance 911" + }, + { + "appid": 2354810, + "normalized_name": "elysium" + }, + { + "appid": 2354830, + "normalized_name": "wise garden" + }, + { + "appid": 2354840, + "normalized_name": "the guestlist" + }, + { + "appid": 2354870, + "normalized_name": "hell hell ヘルヘル" + }, + { + "appid": 2354880, + "normalized_name": "bigfoot vs scots" + }, + { + "appid": 2354890, + "normalized_name": "darksy's adventure" + }, + { + "appid": 2354910, + "normalized_name": "onchu" + }, + { + "appid": 2354920, + "normalized_name": "fallen force" + }, + { + "appid": 2354930, + "normalized_name": "counterclocking" + }, + { + "appid": 2354940, + "normalized_name": "catch & cook fishing adventure" + }, + { + "appid": 2354960, + "normalized_name": "beanwars" + }, + { + "appid": 2354970, + "normalized_name": "climb vr new york parkour" + }, + { + "appid": 2355000, + "normalized_name": "少女幸存者" + }, + { + "appid": 2355010, + "normalized_name": "betrayal of blood a strength & virtue rpg" + }, + { + "appid": 2355020, + "normalized_name": "lost hellden" + }, + { + "appid": 2355070, + "normalized_name": "void strife" + }, + { + "appid": 2355080, + "normalized_name": "hentai melody" + }, + { + "appid": 2355100, + "normalized_name": "awareness" + }, + { + "appid": 2355110, + "normalized_name": "dignacia" + }, + { + "appid": 2355130, + "normalized_name": "umbratica tactics" + }, + { + "appid": 2355140, + "normalized_name": "the symbiant re union" + }, + { + "appid": 2355150, + "normalized_name": "mudborne frog management sim" + }, + { + "appid": 2355170, + "normalized_name": "neon nexus" + }, + { + "appid": 2355220, + "normalized_name": "the twin paradox" + }, + { + "appid": 2355250, + "normalized_name": "idle biceps" + }, + { + "appid": 2355270, + "normalized_name": "thrift shop" + }, + { + "appid": 2355290, + "normalized_name": "eden crest" + }, + { + "appid": 2355330, + "normalized_name": "solar system simulator" + }, + { + "appid": 2355350, + "normalized_name": "confabulation homestead" + }, + { + "appid": 2355410, + "normalized_name": "little monki" + }, + { + "appid": 2355440, + "normalized_name": "nocturia the game" + }, + { + "appid": 2355470, + "normalized_name": "溯源之塔/tower of traceability" + }, + { + "appid": 2355520, + "normalized_name": "guild keeper" + }, + { + "appid": 2355530, + "normalized_name": "the one chapter 2" + }, + { + "appid": 2355630, + "normalized_name": "sixty jumps to ceres" + }, + { + "appid": 2355650, + "normalized_name": "咖啡机coffee machine" + }, + { + "appid": 2355660, + "normalized_name": "kronian titans" + }, + { + "appid": 2355670, + "normalized_name": "i will obey you mistress" + }, + { + "appid": 2355700, + "normalized_name": "ballsvoid" + }, + { + "appid": 2355740, + "normalized_name": "eklips" + }, + { + "appid": 2355750, + "normalized_name": "aker fern rdzeń szatrisa/ the shatris core demo" + }, + { + "appid": 2355770, + "normalized_name": "kongming's fiendish maze" + }, + { + "appid": 2355790, + "normalized_name": "zombie rush" + }, + { + "appid": 2355810, + "normalized_name": "the hidden crystals" + }, + { + "appid": 2355830, + "normalized_name": "with eyes of ice" + }, + { + "appid": 2355840, + "normalized_name": "american christmas 2" + }, + { + "appid": 2355860, + "normalized_name": "eggstraction" + }, + { + "appid": 2355910, + "normalized_name": "philotes trials" + }, + { + "appid": 2355930, + "normalized_name": "cicada springs" + }, + { + "appid": 2355950, + "normalized_name": "happy binge day to you! (u.c.h.e.w.s #2)" + }, + { + "appid": 2355960, + "normalized_name": "deathstreak" + }, + { + "appid": 2355990, + "normalized_name": "dippy & chippy" + }, + { + "appid": 2356040, + "normalized_name": "reefland odyssey" + }, + { + "appid": 2356050, + "normalized_name": "学園ハンサムfighters" + }, + { + "appid": 2356060, + "normalized_name": "hentai ayumi" + }, + { + "appid": 2356070, + "normalized_name": "an eye for optical theory 1666" + }, + { + "appid": 2356140, + "normalized_name": "malice" + }, + { + "appid": 2356150, + "normalized_name": "arcane assembly" + }, + { + "appid": 2356160, + "normalized_name": "fashion contract" + }, + { + "appid": 2356180, + "normalized_name": "hentai spacesuit" + }, + { + "appid": 2356190, + "normalized_name": "ufo the ranch" + }, + { + "appid": 2356220, + "normalized_name": "the adventures of linshanhai chapter3 the headless woman" + }, + { + "appid": 2356300, + "normalized_name": "alex's tunnel" + }, + { + "appid": 2356310, + "normalized_name": "continent of the ninth golden" + }, + { + "appid": 2356330, + "normalized_name": "candlelight lament" + }, + { + "appid": 2356350, + "normalized_name": "grand war rome" + }, + { + "appid": 2356360, + "normalized_name": "不双修就去异世界探险吧!" + }, + { + "appid": 2356390, + "normalized_name": "chaos coming" + }, + { + "appid": 2356440, + "normalized_name": "the lancaster leak o'brien state park" + }, + { + "appid": 2356450, + "normalized_name": "a street cat's tale 2 outside is dangerous" + }, + { + "appid": 2356460, + "normalized_name": "untitled ghost game" + }, + { + "appid": 2356470, + "normalized_name": "lost chapter" + }, + { + "appid": 2356480, + "normalized_name": "girls bus adventure" + }, + { + "appid": 2356500, + "normalized_name": "cats hidden in bali" + }, + { + "appid": 2356520, + "normalized_name": "gameraworld" + }, + { + "appid": 2356530, + "normalized_name": "landelver" + }, + { + "appid": 2356550, + "normalized_name": "desperate island" + }, + { + "appid": 2356560, + "normalized_name": "monster hunter stories" + }, + { + "appid": 2356640, + "normalized_name": "appearances" + }, + { + "appid": 2356660, + "normalized_name": "final frontier" + }, + { + "appid": 2356720, + "normalized_name": "western quest" + }, + { + "appid": 2356730, + "normalized_name": "스쿨라이프" + }, + { + "appid": 2356780, + "normalized_name": "dungeon clawler" + }, + { + "appid": 2356810, + "normalized_name": "tales of shadowland" + }, + { + "appid": 2356850, + "normalized_name": "inside a dungeon" + }, + { + "appid": 2356920, + "normalized_name": "brown bob" + }, + { + "appid": 2356930, + "normalized_name": "roguebot" + }, + { + "appid": 2356970, + "normalized_name": "黑貓:逆光|black cat:back light" + }, + { + "appid": 2357000, + "normalized_name": "kill it with fire 2" + }, + { + "appid": 2357020, + "normalized_name": "save the queen" + }, + { + "appid": 2357040, + "normalized_name": "drink and girls" + }, + { + "appid": 2357050, + "normalized_name": "fishing and girls" + }, + { + "appid": 2357060, + "normalized_name": "nfbl national fantasy basketball league" + }, + { + "appid": 2357070, + "normalized_name": "hippy girls" + }, + { + "appid": 2357080, + "normalized_name": "pink girls" + }, + { + "appid": 2357090, + "normalized_name": "vampire girls" + }, + { + "appid": 2357100, + "normalized_name": "knights and goblins" + }, + { + "appid": 2357130, + "normalized_name": "mars colonization" + }, + { + "appid": 2357150, + "normalized_name": "blondes" + }, + { + "appid": 2357200, + "normalized_name": "sentinel stones of disruption" + }, + { + "appid": 2357230, + "normalized_name": "cyberpunkxxx" + }, + { + "appid": 2357290, + "normalized_name": "farcaster" + }, + { + "appid": 2357310, + "normalized_name": "randoville" + }, + { + "appid": 2357340, + "normalized_name": "jake's apple harvest" + }, + { + "appid": 2357350, + "normalized_name": "primal fray" + }, + { + "appid": 2357380, + "normalized_name": "tako no himitsu ocean of secrets" + }, + { + "appid": 2357390, + "normalized_name": "brave archer" + }, + { + "appid": 2357400, + "normalized_name": "mary skelter finale" + }, + { + "appid": 2357410, + "normalized_name": "cylinder puzzles returned" + }, + { + "appid": 2357430, + "normalized_name": "fingernail floss" + }, + { + "appid": 2357450, + "normalized_name": "sokolab" + }, + { + "appid": 2357510, + "normalized_name": "rompiche 8" + }, + { + "appid": 2357550, + "normalized_name": "angelstrike" + }, + { + "appid": 2357570, + "normalized_name": "overwatch 2" + }, + { + "appid": 2357590, + "normalized_name": "starveil" + }, + { + "appid": 2357610, + "normalized_name": "wrestle story" + }, + { + "appid": 2357670, + "normalized_name": "fourteen fiends" + }, + { + "appid": 2357740, + "normalized_name": "agents of somecompany" + }, + { + "appid": 2357750, + "normalized_name": "stackhoops" + }, + { + "appid": 2357760, + "normalized_name": "the jeffy game" + }, + { + "appid": 2357770, + "normalized_name": "slyme breaker" + }, + { + "appid": 2357790, + "normalized_name": "omi momi" + }, + { + "appid": 2357800, + "normalized_name": "goremon" + }, + { + "appid": 2357810, + "normalized_name": "shattered" + }, + { + "appid": 2357850, + "normalized_name": "core lords" + }, + { + "appid": 2357910, + "normalized_name": "home safety hotline" + }, + { + "appid": 2357950, + "normalized_name": "q2 humanity" + }, + { + "appid": 2357970, + "normalized_name": "finely diced" + }, + { + "appid": 2357990, + "normalized_name": "bye bye swingby" + }, + { + "appid": 2358040, + "normalized_name": "magisterium fantasy craft" + }, + { + "appid": 2358050, + "normalized_name": "graalonline era" + }, + { + "appid": 2358060, + "normalized_name": "card artisan" + }, + { + "appid": 2358090, + "normalized_name": "midnight heaven" + }, + { + "appid": 2358100, + "normalized_name": "九霄风云录 legends of the divine land" + }, + { + "appid": 2358120, + "normalized_name": "criminals within" + }, + { + "appid": 2358160, + "normalized_name": "little crab fisher" + }, + { + "appid": 2358170, + "normalized_name": "executioner girls" + }, + { + "appid": 2358190, + "normalized_name": "棒!音乐" + }, + { + "appid": 2358200, + "normalized_name": "blockrunner the blockside" + }, + { + "appid": 2358210, + "normalized_name": "全城警戒 世界大战一触即发,跪求指挥官!" + }, + { + "appid": 2358220, + "normalized_name": "blade mistress" + }, + { + "appid": 2358230, + "normalized_name": "ferb" + }, + { + "appid": 2358240, + "normalized_name": "heroes of orn darkness" + }, + { + "appid": 2358260, + "normalized_name": "cricket 24" + }, + { + "appid": 2358270, + "normalized_name": "satelliteinfection" + }, + { + "appid": 2358280, + "normalized_name": "so much stuff 2" + }, + { + "appid": 2358320, + "normalized_name": "drifthub" + }, + { + "appid": 2358360, + "normalized_name": "ricave" + }, + { + "appid": 2358390, + "normalized_name": "under the snow" + }, + { + "appid": 2358420, + "normalized_name": "madhouse madness streamer's fate" + }, + { + "appid": 2358440, + "normalized_name": "monster museum" + }, + { + "appid": 2358470, + "normalized_name": "海宴:潮汐" + }, + { + "appid": 2358490, + "normalized_name": "goblin down" + }, + { + "appid": 2358500, + "normalized_name": "nothing is forever" + }, + { + "appid": 2358520, + "normalized_name": "contraptions 2" + }, + { + "appid": 2358540, + "normalized_name": "alveron withering roots" + }, + { + "appid": 2358580, + "normalized_name": "dark angel" + }, + { + "appid": 2358590, + "normalized_name": "asmr food experience prologue" + }, + { + "appid": 2358600, + "normalized_name": "death harvest" + }, + { + "appid": 2358610, + "normalized_name": "abathor atlantis landing" + }, + { + "appid": 2358620, + "normalized_name": "spectator 2" + }, + { + "appid": 2358630, + "normalized_name": "western rye" + }, + { + "appid": 2358720, + "normalized_name": "black myth wukong" + }, + { + "appid": 2358740, + "normalized_name": "12 angry hours" + }, + { + "appid": 2358750, + "normalized_name": "forsaken woods" + }, + { + "appid": 2358770, + "normalized_name": "million monster militia" + }, + { + "appid": 2358780, + "normalized_name": "the desolation" + }, + { + "appid": 2358790, + "normalized_name": "survival & horror hangman's rope" + }, + { + "appid": 2358800, + "normalized_name": "love love diary" + }, + { + "appid": 2358860, + "normalized_name": "the books tale a hop adventure!" + }, + { + "appid": 2358870, + "normalized_name": "marwan's haunting" + }, + { + "appid": 2358880, + "normalized_name": "inflorescences" + }, + { + "appid": 2358900, + "normalized_name": "lockstone mountains" + }, + { + "appid": 2358910, + "normalized_name": "tranquil garden adventurer's" + }, + { + "appid": 2358920, + "normalized_name": "survival for treasure" + }, + { + "appid": 2358950, + "normalized_name": "super soakdown" + }, + { + "appid": 2358970, + "normalized_name": "verisim skies" + }, + { + "appid": 2358980, + "normalized_name": "russell's range" + }, + { + "appid": 2358990, + "normalized_name": "六道图录" + }, + { + "appid": 2359020, + "normalized_name": "trail hogs" + }, + { + "appid": 2359030, + "normalized_name": "desires of the amazons" + }, + { + "appid": 2359070, + "normalized_name": "waifu puzzles" + }, + { + "appid": 2359100, + "normalized_name": "enfilade" + }, + { + "appid": 2359120, + "normalized_name": "consume me" + }, + { + "appid": 2359130, + "normalized_name": "brain damage" + }, + { + "appid": 2359150, + "normalized_name": "blackball" + }, + { + "appid": 2359170, + "normalized_name": "witch's rhythm puzzle" + }, + { + "appid": 2359220, + "normalized_name": "planting trees" + }, + { + "appid": 2359270, + "normalized_name": "bravest chicken" + }, + { + "appid": 2359280, + "normalized_name": "edgerunner" + }, + { + "appid": 2359300, + "normalized_name": "combo bombo" + }, + { + "appid": 2359310, + "normalized_name": "bale out" + }, + { + "appid": 2359320, + "normalized_name": "被坏女人骗成冒险者!" + }, + { + "appid": 2359330, + "normalized_name": "forgebeast" + }, + { + "appid": 2359340, + "normalized_name": "hundred acre wood" + }, + { + "appid": 2359370, + "normalized_name": "saltaria" + }, + { + "appid": 2359390, + "normalized_name": "just climb" + }, + { + "appid": 2359410, + "normalized_name": "sansagari" + }, + { + "appid": 2359460, + "normalized_name": "rise of the high elf king a legacy of blood" + }, + { + "appid": 2359470, + "normalized_name": "strayed" + }, + { + "appid": 2359500, + "normalized_name": "tagger mascot" + }, + { + "appid": 2359510, + "normalized_name": "my furry girlfriend 🐾" + }, + { + "appid": 2359560, + "normalized_name": "美妙的薅网管大冒险" + }, + { + "appid": 2359570, + "normalized_name": "순정만화가 너무 어려워!" + }, + { + "appid": 2359600, + "normalized_name": "perfect new world" + }, + { + "appid": 2359610, + "normalized_name": "jumppower" + }, + { + "appid": 2359640, + "normalized_name": "沙盒启示录 revelation" + }, + { + "appid": 2359660, + "normalized_name": "arisen force vonimir" + }, + { + "appid": 2359700, + "normalized_name": "black ocean" + }, + { + "appid": 2359760, + "normalized_name": "wild legion" + }, + { + "appid": 2359800, + "normalized_name": "medieval idle quest" + }, + { + "appid": 2359810, + "normalized_name": "谎言城堡" + }, + { + "appid": 2359830, + "normalized_name": "bounty hunter" + }, + { + "appid": 2359860, + "normalized_name": "battle plan jester's knife" + }, + { + "appid": 2359880, + "normalized_name": "late stage" + }, + { + "appid": 2359910, + "normalized_name": "dragabox" + }, + { + "appid": 2359920, + "normalized_name": "blackfall" + }, + { + "appid": 2359940, + "normalized_name": "undead village" + }, + { + "appid": 2359950, + "normalized_name": "还有一个小愿望 one more wish" + }, + { + "appid": 2359980, + "normalized_name": "the slime plague" + }, + { + "appid": 2360000, + "normalized_name": "broken soul" + }, + { + "appid": 2360020, + "normalized_name": "kao the kangaroo (2000 re release)" + }, + { + "appid": 2360030, + "normalized_name": "kao the kangaroo mystery of the volcano (2005 re release)" + }, + { + "appid": 2360040, + "normalized_name": "fool's gold" + }, + { + "appid": 2360070, + "normalized_name": "spaceship racer portal" + }, + { + "appid": 2360090, + "normalized_name": "boardquest tales of liria" + }, + { + "appid": 2360130, + "normalized_name": "killer dolls dark abyss" + }, + { + "appid": 2360160, + "normalized_name": "3 triplets 18 tits" + }, + { + "appid": 2360210, + "normalized_name": "rune coliseum" + }, + { + "appid": 2360250, + "normalized_name": "asterix & obelix slap them all! 2" + }, + { + "appid": 2360260, + "normalized_name": "hot therapy" + }, + { + "appid": 2360290, + "normalized_name": "dungeon and craft" + }, + { + "appid": 2360310, + "normalized_name": "freelancer simulator" + }, + { + "appid": 2360340, + "normalized_name": "whitewater vr extreme kayaking adventure" + }, + { + "appid": 2360350, + "normalized_name": "crimson moon" + }, + { + "appid": 2360390, + "normalized_name": "undead space" + }, + { + "appid": 2360440, + "normalized_name": "dreamians card battle" + }, + { + "appid": 2360490, + "normalized_name": "membal" + }, + { + "appid": 2360550, + "normalized_name": "hold your breath" + }, + { + "appid": 2360560, + "normalized_name": "heralds of the avirentes ch. 1 wings of change" + }, + { + "appid": 2360580, + "normalized_name": "journey to natsai" + }, + { + "appid": 2360590, + "normalized_name": "东方羽灵传 touhou hareiden" + }, + { + "appid": 2360620, + "normalized_name": "the queendom of lithzena" + }, + { + "appid": 2360640, + "normalized_name": "jump n shooters" + }, + { + "appid": 2360670, + "normalized_name": "dungeon legend" + }, + { + "appid": 2360690, + "normalized_name": "pixel ripped 1978 an atari adventure" + }, + { + "appid": 2360700, + "normalized_name": "robot lawn mower" + }, + { + "appid": 2360710, + "normalized_name": "cruo domine" + }, + { + "appid": 2360730, + "normalized_name": "the way home a typing adventure" + }, + { + "appid": 2360770, + "normalized_name": "coreupt" + }, + { + "appid": 2360810, + "normalized_name": "stickdown!" + }, + { + "appid": 2360840, + "normalized_name": "heroes of olympus" + }, + { + "appid": 2360860, + "normalized_name": "killmist enclave" + }, + { + "appid": 2360870, + "normalized_name": "rhythm realm" + }, + { + "appid": 2360880, + "normalized_name": "protozed" + }, + { + "appid": 2360890, + "normalized_name": "tales from centropolis" + }, + { + "appid": 2360900, + "normalized_name": "hentai aori" + }, + { + "appid": 2360940, + "normalized_name": "100 humans vs gorilla" + }, + { + "appid": 2360950, + "normalized_name": "nutshot" + }, + { + "appid": 2360970, + "normalized_name": "punchimals" + }, + { + "appid": 2361000, + "normalized_name": "battlefield commander wwii" + }, + { + "appid": 2361030, + "normalized_name": "time limit harvest(タイムリミットハーベスト)" + }, + { + "appid": 2361040, + "normalized_name": "cawez's puzzlebox hiraeth" + }, + { + "appid": 2361070, + "normalized_name": "smol kobold garden" + }, + { + "appid": 2361080, + "normalized_name": "step by step" + }, + { + "appid": 2361100, + "normalized_name": "getting to the other side!!!" + }, + { + "appid": 2361140, + "normalized_name": "terminal velocity" + }, + { + "appid": 2361160, + "normalized_name": "adventures of helio" + }, + { + "appid": 2361240, + "normalized_name": "天神印(the blockade)" + }, + { + "appid": 2361260, + "normalized_name": "venox the alien survivors" + }, + { + "appid": 2361320, + "normalized_name": "电子祭祖" + }, + { + "appid": 2361340, + "normalized_name": "friends world" + }, + { + "appid": 2361350, + "normalized_name": "hero world" + }, + { + "appid": 2361360, + "normalized_name": "hentai maid memories" + }, + { + "appid": 2361370, + "normalized_name": "sandbox god simulator" + }, + { + "appid": 2361390, + "normalized_name": "全球戒备" + }, + { + "appid": 2361430, + "normalized_name": "disaster survival" + }, + { + "appid": 2361450, + "normalized_name": "missiles away" + }, + { + "appid": 2361460, + "normalized_name": "toy shire" + }, + { + "appid": 2361500, + "normalized_name": "farmtech" + }, + { + "appid": 2361510, + "normalized_name": "andarin weppes pre dementia" + }, + { + "appid": 2361520, + "normalized_name": "the cursed village td" + }, + { + "appid": 2361530, + "normalized_name": "arcane depths" + }, + { + "appid": 2361540, + "normalized_name": "ntrstory" + }, + { + "appid": 2361560, + "normalized_name": "dr. emmerson's nocturnes" + }, + { + "appid": 2361570, + "normalized_name": "cronous" + }, + { + "appid": 2361610, + "normalized_name": "in his time" + }, + { + "appid": 2361680, + "normalized_name": "path of kung fu" + }, + { + "appid": 2361690, + "normalized_name": "succubus sessions mami mamiya's sweet slice of hell" + }, + { + "appid": 2361700, + "normalized_name": "destiny star girlfriend" + }, + { + "appid": 2361740, + "normalized_name": "destiny star girlfriend 2" + }, + { + "appid": 2361750, + "normalized_name": "destiny star girlfriend 3" + }, + { + "appid": 2361760, + "normalized_name": "real anime situation! 2" + }, + { + "appid": 2361770, + "normalized_name": "shinobi art of vengeance" + }, + { + "appid": 2361780, + "normalized_name": "dig deep" + }, + { + "appid": 2361830, + "normalized_name": "slum dweller" + }, + { + "appid": 2361840, + "normalized_name": "cyber puncake" + }, + { + "appid": 2361850, + "normalized_name": "kartmania" + }, + { + "appid": 2361860, + "normalized_name": "words for kids" + }, + { + "appid": 2361900, + "normalized_name": "feet sweeper" + }, + { + "appid": 2361930, + "normalized_name": "月光のソードブレイカー アメリア編" + }, + { + "appid": 2361940, + "normalized_name": "ninja golf 2" + }, + { + "appid": 2361950, + "normalized_name": "varsity high school football" + }, + { + "appid": 2362010, + "normalized_name": "impact" + }, + { + "appid": 2362020, + "normalized_name": "sword & spatula" + }, + { + "appid": 2362040, + "normalized_name": "into the underworld" + }, + { + "appid": 2362070, + "normalized_name": "hollow home" + }, + { + "appid": 2362080, + "normalized_name": "the green room experiment (episode 1) vr" + }, + { + "appid": 2362090, + "normalized_name": "chicken police into the hive!" + }, + { + "appid": 2362120, + "normalized_name": "finding hannah" + }, + { + "appid": 2362140, + "normalized_name": "crazy rabbits" + }, + { + "appid": 2362150, + "normalized_name": "13iew" + }, + { + "appid": 2362200, + "normalized_name": "tactics unlimited" + }, + { + "appid": 2362260, + "normalized_name": "decadent" + }, + { + "appid": 2362280, + "normalized_name": "sky symphony" + }, + { + "appid": 2362300, + "normalized_name": "train sim world 4" + }, + { + "appid": 2362320, + "normalized_name": "rev'd up racing" + }, + { + "appid": 2362330, + "normalized_name": "neko's rage" + }, + { + "appid": 2362350, + "normalized_name": "crossroads escaping the dark" + }, + { + "appid": 2362400, + "normalized_name": "vitam finire" + }, + { + "appid": 2362420, + "normalized_name": "mass effect 2 (2010)" + }, + { + "appid": 2362480, + "normalized_name": "model eight" + }, + { + "appid": 2362490, + "normalized_name": "fujiwara phoenix" + }, + { + "appid": 2362510, + "normalized_name": "doki simp club" + }, + { + "appid": 2362520, + "normalized_name": "thesmophoria" + }, + { + "appid": 2362540, + "normalized_name": "pandora" + }, + { + "appid": 2362550, + "normalized_name": "total football" + }, + { + "appid": 2362560, + "normalized_name": "sexy memory puzzle kawaii" + }, + { + "appid": 2362570, + "normalized_name": "roll it to the end" + }, + { + "appid": 2362580, + "normalized_name": "typhon bot vs bot" + }, + { + "appid": 2362590, + "normalized_name": "the wingless bee" + }, + { + "appid": 2362620, + "normalized_name": "legion" + }, + { + "appid": 2362630, + "normalized_name": "orbital defense force" + }, + { + "appid": 2362660, + "normalized_name": "seeb defender" + }, + { + "appid": 2362680, + "normalized_name": "grandma no!" + }, + { + "appid": 2362740, + "normalized_name": "poostall royale" + }, + { + "appid": 2362780, + "normalized_name": "curilemu" + }, + { + "appid": 2362790, + "normalized_name": "the dungeon vendor" + }, + { + "appid": 2362830, + "normalized_name": "raptor rush" + }, + { + "appid": 2362840, + "normalized_name": "kingsblade king's keep prologue" + }, + { + "appid": 2362900, + "normalized_name": "devil dumper doris" + }, + { + "appid": 2362930, + "normalized_name": "异界旅客:序章" + }, + { + "appid": 2362980, + "normalized_name": "morbid catastrophe" + }, + { + "appid": 2363000, + "normalized_name": "apocalypse run!" + }, + { + "appid": 2363010, + "normalized_name": "a night with neil" + }, + { + "appid": 2363030, + "normalized_name": "tasking" + }, + { + "appid": 2363080, + "normalized_name": "art therapy portraits" + }, + { + "appid": 2363120, + "normalized_name": "tiny terrariums" + }, + { + "appid": 2363140, + "normalized_name": "forevr pool vr" + }, + { + "appid": 2363150, + "normalized_name": "shelley's haunted house" + }, + { + "appid": 2363160, + "normalized_name": "haphazard angel" + }, + { + "appid": 2363180, + "normalized_name": "dark auction hitler’s estate" + }, + { + "appid": 2363200, + "normalized_name": "fae & fauna" + }, + { + "appid": 2363220, + "normalized_name": "the cube of world" + }, + { + "appid": 2363230, + "normalized_name": "大野逐龙" + }, + { + "appid": 2363260, + "normalized_name": "mizz survival" + }, + { + "appid": 2363280, + "normalized_name": "nullspace" + }, + { + "appid": 2363290, + "normalized_name": "fireworks frenzy" + }, + { + "appid": 2363300, + "normalized_name": "sun rush" + }, + { + "appid": 2363310, + "normalized_name": "orderly havoc" + }, + { + "appid": 2363330, + "normalized_name": "witch world" + }, + { + "appid": 2363390, + "normalized_name": "cat pipes" + }, + { + "appid": 2363400, + "normalized_name": "crossing borders" + }, + { + "appid": 2363420, + "normalized_name": "nova rally" + }, + { + "appid": 2363430, + "normalized_name": "temple of aeryn" + }, + { + "appid": 2363440, + "normalized_name": "orbital defence unit" + }, + { + "appid": 2363460, + "normalized_name": "merging cubes" + }, + { + "appid": 2363480, + "normalized_name": "fantasy quest prologue" + }, + { + "appid": 2363510, + "normalized_name": "super scramble simulator (amiga/c64/cpc/spectrum)" + }, + { + "appid": 2363530, + "normalized_name": "kemono friends opening day" + }, + { + "appid": 2363560, + "normalized_name": "alter" + }, + { + "appid": 2363570, + "normalized_name": "rise of jericho" + }, + { + "appid": 2363580, + "normalized_name": "hentai ellie" + }, + { + "appid": 2363590, + "normalized_name": "h.i.a horror investigation agency" + }, + { + "appid": 2363600, + "normalized_name": "biotopia" + }, + { + "appid": 2363620, + "normalized_name": "robosquad revolution (beta)" + }, + { + "appid": 2363630, + "normalized_name": "duck shoot (c64/vic 20)" + }, + { + "appid": 2363640, + "normalized_name": "major motion" + }, + { + "appid": 2363660, + "normalized_name": "black magic (c64/cpc/spectrum)" + }, + { + "appid": 2363670, + "normalized_name": "watchers of the universe i'm outta here!" + }, + { + "appid": 2363680, + "normalized_name": "green squares" + }, + { + "appid": 2363700, + "normalized_name": "eukarion tales 2" + }, + { + "appid": 2363730, + "normalized_name": "escape memoirs questionable side stories" + }, + { + "appid": 2363760, + "normalized_name": "relinked" + }, + { + "appid": 2363780, + "normalized_name": "dash & swing" + }, + { + "appid": 2363790, + "normalized_name": "grapple league" + }, + { + "appid": 2363810, + "normalized_name": "long truck simulator" + }, + { + "appid": 2363840, + "normalized_name": "aikyam" + }, + { + "appid": 2363860, + "normalized_name": "mechawing adventure" + }, + { + "appid": 2363910, + "normalized_name": "zero lilium bloom" + }, + { + "appid": 2363920, + "normalized_name": "jigsaw puzzle world memories" + }, + { + "appid": 2363930, + "normalized_name": "evil is back" + }, + { + "appid": 2363950, + "normalized_name": "cards of lust" + }, + { + "appid": 2363960, + "normalized_name": "bomhops" + }, + { + "appid": 2364030, + "normalized_name": "crystal blast vr" + }, + { + "appid": 2364050, + "normalized_name": "puncherman! first day" + }, + { + "appid": 2364080, + "normalized_name": "bake in time" + }, + { + "appid": 2364090, + "normalized_name": "aphotic descent" + }, + { + "appid": 2364140, + "normalized_name": "fluxion" + }, + { + "appid": 2364180, + "normalized_name": "the merry fairy" + }, + { + "appid": 2364190, + "normalized_name": "metro penguin eutopia" + }, + { + "appid": 2364230, + "normalized_name": "pandash" + }, + { + "appid": 2364290, + "normalized_name": "shadow stalker" + }, + { + "appid": 2364320, + "normalized_name": "重生" + }, + { + "appid": 2364330, + "normalized_name": "secrets of magonia" + }, + { + "appid": 2364360, + "normalized_name": "pixel war 3d" + }, + { + "appid": 2364370, + "normalized_name": "zombie jokers 2" + }, + { + "appid": 2364390, + "normalized_name": "arcanika" + }, + { + "appid": 2364430, + "normalized_name": "embervale" + }, + { + "appid": 2364460, + "normalized_name": "captain moviestar 3d" + }, + { + "appid": 2364490, + "normalized_name": "wick3r cheese keys & speed" + }, + { + "appid": 2364520, + "normalized_name": "tamageddon" + }, + { + "appid": 2364530, + "normalized_name": "fireball spam" + }, + { + "appid": 2364540, + "normalized_name": "invaders" + }, + { + "appid": 2364560, + "normalized_name": "demonheart the cursed trial" + }, + { + "appid": 2364570, + "normalized_name": "multiplayer shooter fps" + }, + { + "appid": 2364610, + "normalized_name": "enypnion redreamed" + }, + { + "appid": 2364630, + "normalized_name": "swipe tennis" + }, + { + "appid": 2364660, + "normalized_name": "bugbots" + }, + { + "appid": 2364700, + "normalized_name": "hellstorm reign" + }, + { + "appid": 2364720, + "normalized_name": "cy cyberpunk survivors" + }, + { + "appid": 2364760, + "normalized_name": "project genome" + }, + { + "appid": 2364770, + "normalized_name": "kingdom incremental" + }, + { + "appid": 2364790, + "normalized_name": "daedalus" + }, + { + "appid": 2364800, + "normalized_name": "sakura kanji ketchi" + }, + { + "appid": 2364810, + "normalized_name": "gold girls" + }, + { + "appid": 2364830, + "normalized_name": "color summoners" + }, + { + "appid": 2364880, + "normalized_name": "the abc" + }, + { + "appid": 2364900, + "normalized_name": "バーチャルな君に恋する" + }, + { + "appid": 2364910, + "normalized_name": "修罗" + }, + { + "appid": 2364920, + "normalized_name": "the white dreams road to gate 1" + }, + { + "appid": 2364930, + "normalized_name": "drag racing kaos \"one more run\"" + }, + { + "appid": 2364940, + "normalized_name": "guardians of the forest" + }, + { + "appid": 2364950, + "normalized_name": "战争螺旋" + }, + { + "appid": 2364960, + "normalized_name": "special squad versus zombies" + }, + { + "appid": 2364970, + "normalized_name": "revenge of the shadow ninja" + }, + { + "appid": 2364990, + "normalized_name": "metawork hotel simulator" + }, + { + "appid": 2365020, + "normalized_name": "mystillion" + }, + { + "appid": 2365030, + "normalized_name": "sheepdogs" + }, + { + "appid": 2365040, + "normalized_name": "ai dreams of roses of desert" + }, + { + "appid": 2365050, + "normalized_name": "a heart sprouting pink a memory burning red" + }, + { + "appid": 2365060, + "normalized_name": "monsters' gambits" + }, + { + "appid": 2365070, + "normalized_name": "live factory" + }, + { + "appid": 2365090, + "normalized_name": "sex simulator the private jet" + }, + { + "appid": 2365110, + "normalized_name": "text twist 3" + }, + { + "appid": 2365120, + "normalized_name": "grim world survival" + }, + { + "appid": 2365130, + "normalized_name": "the backpacker" + }, + { + "appid": 2365140, + "normalized_name": "the artist" + }, + { + "appid": 2365150, + "normalized_name": "sin & host the diner" + }, + { + "appid": 2365200, + "normalized_name": "loop" + }, + { + "appid": 2365220, + "normalized_name": "砰砰乌鸦 pong pong crows" + }, + { + "appid": 2365230, + "normalized_name": "lovesotea" + }, + { + "appid": 2365240, + "normalized_name": "mechanical gods" + }, + { + "appid": 2365250, + "normalized_name": "the last veggies" + }, + { + "appid": 2365300, + "normalized_name": "elis in winterland" + }, + { + "appid": 2365310, + "normalized_name": "fly me to the moon" + }, + { + "appid": 2365350, + "normalized_name": "training and war simulation (tws)" + }, + { + "appid": 2365380, + "normalized_name": "maze chase" + }, + { + "appid": 2365410, + "normalized_name": "a call from under the house" + }, + { + "appid": 2365420, + "normalized_name": "quecksilber" + }, + { + "appid": 2365440, + "normalized_name": "angus and the gates of chaos" + }, + { + "appid": 2365470, + "normalized_name": "geistfrei gmbh" + }, + { + "appid": 2365500, + "normalized_name": "不被忘记的你" + }, + { + "appid": 2365540, + "normalized_name": "endless pinball" + }, + { + "appid": 2365550, + "normalized_name": "m/a" + }, + { + "appid": 2365560, + "normalized_name": "iguarpg" + }, + { + "appid": 2365570, + "normalized_name": "curse of the corsair" + }, + { + "appid": 2365600, + "normalized_name": "anima reprise" + }, + { + "appid": 2365640, + "normalized_name": "form fitting" + }, + { + "appid": 2365660, + "normalized_name": "線路の祠 ~真の放置ゲーム~" + }, + { + "appid": 2365670, + "normalized_name": "hyper hentai bikini party" + }, + { + "appid": 2365680, + "normalized_name": "fallen" + }, + { + "appid": 2365750, + "normalized_name": "lurkers" + }, + { + "appid": 2365780, + "normalized_name": "红与黑 red&black" + }, + { + "appid": 2365790, + "normalized_name": "let's build a dungeon" + }, + { + "appid": 2365800, + "normalized_name": "shogi!" + }, + { + "appid": 2365810, + "normalized_name": "pseudoregalia" + }, + { + "appid": 2365820, + "normalized_name": "neural synapse" + }, + { + "appid": 2365840, + "normalized_name": "the red" + }, + { + "appid": 2365860, + "normalized_name": "the pair annihilation" + }, + { + "appid": 2365870, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.11「あねの壁」" + }, + { + "appid": 2365880, + "normalized_name": "鳥魂 ~みんなでチキン度診断~" + }, + { + "appid": 2365890, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.12「泣かない依頼人」" + }, + { + "appid": 2365920, + "normalized_name": "scarlet record" + }, + { + "appid": 2365960, + "normalized_name": "presence lookout" + }, + { + "appid": 2365980, + "normalized_name": "le château" + }, + { + "appid": 2366000, + "normalized_name": "lords and tactics" + }, + { + "appid": 2366030, + "normalized_name": "my dear dad 父亲" + }, + { + "appid": 2366050, + "normalized_name": "bumper tanks" + }, + { + "appid": 2366060, + "normalized_name": "weyrdlets idle desktop pets" + }, + { + "appid": 2366070, + "normalized_name": "神赐之争" + }, + { + "appid": 2366080, + "normalized_name": "911 cannibal" + }, + { + "appid": 2366100, + "normalized_name": "a long survive" + }, + { + "appid": 2366120, + "normalized_name": "build master marsville" + }, + { + "appid": 2366130, + "normalized_name": "flint treasure of oblivion" + }, + { + "appid": 2366190, + "normalized_name": "deckeleven's railroads 2" + }, + { + "appid": 2366210, + "normalized_name": "slice and bite" + }, + { + "appid": 2366230, + "normalized_name": "hentai pink" + }, + { + "appid": 2366240, + "normalized_name": "unsung ballads" + }, + { + "appid": 2366250, + "normalized_name": "american airport simulator" + }, + { + "appid": 2366270, + "normalized_name": "balloo's mall" + }, + { + "appid": 2366290, + "normalized_name": "ants in space!" + }, + { + "appid": 2366300, + "normalized_name": "hentai casual swap 2" + }, + { + "appid": 2366350, + "normalized_name": "novastride" + }, + { + "appid": 2366360, + "normalized_name": "chronicles of errodean" + }, + { + "appid": 2366400, + "normalized_name": "space battle royale" + }, + { + "appid": 2366430, + "normalized_name": "windy meadow a roadwarden tale" + }, + { + "appid": 2366440, + "normalized_name": "happy wagon" + }, + { + "appid": 2366450, + "normalized_name": "fortune follow the mansion" + }, + { + "appid": 2366500, + "normalized_name": "runequest warlords" + }, + { + "appid": 2366530, + "normalized_name": "flashpoint campaigns southern storm" + }, + { + "appid": 2366600, + "normalized_name": "detectives united origins collector's" + }, + { + "appid": 2366690, + "normalized_name": "hit n' bit" + }, + { + "appid": 2366700, + "normalized_name": "isekai slave" + }, + { + "appid": 2366710, + "normalized_name": "dickland quest" + }, + { + "appid": 2366730, + "normalized_name": "pactum + episode 1" + }, + { + "appid": 2366760, + "normalized_name": "hentai kaiya" + }, + { + "appid": 2366770, + "normalized_name": "alice into the panopticon" + }, + { + "appid": 2366850, + "normalized_name": "dair" + }, + { + "appid": 2366910, + "normalized_name": "michi" + }, + { + "appid": 2366950, + "normalized_name": "aya tale of tails" + }, + { + "appid": 2366970, + "normalized_name": "arco" + }, + { + "appid": 2366980, + "normalized_name": "thank goodness you're here!" + }, + { + "appid": 2366990, + "normalized_name": "hentai senpai sukebe nekomimi no yoru" + }, + { + "appid": 2367050, + "normalized_name": "scraponauts" + }, + { + "appid": 2367120, + "normalized_name": "blood lily ghoststories" + }, + { + "appid": 2367150, + "normalized_name": "vertex rush" + }, + { + "appid": 2367190, + "normalized_name": "looks good" + }, + { + "appid": 2367230, + "normalized_name": "[chilla's art] night security | 夜間警備" + }, + { + "appid": 2367280, + "normalized_name": "3d world rivals" + }, + { + "appid": 2367320, + "normalized_name": "spaceworm" + }, + { + "appid": 2367330, + "normalized_name": "tribal legends" + }, + { + "appid": 2367370, + "normalized_name": "pirate skeleton treasure (shooting series chapter 1)" + }, + { + "appid": 2367420, + "normalized_name": "kletba vlčího moru" + }, + { + "appid": 2367440, + "normalized_name": "archery red" + }, + { + "appid": 2367460, + "normalized_name": "outlaw kingdom" + }, + { + "appid": 2367470, + "normalized_name": "jigsaw puzzle world" + }, + { + "appid": 2367480, + "normalized_name": "speed crew" + }, + { + "appid": 2367500, + "normalized_name": "chrono crystal" + }, + { + "appid": 2367560, + "normalized_name": "home designer makeover blast" + }, + { + "appid": 2367570, + "normalized_name": "slime mutation" + }, + { + "appid": 2367580, + "normalized_name": "bingo beavers design & board game" + }, + { + "appid": 2367590, + "normalized_name": "matchventures match 3 puzzle & city builder" + }, + { + "appid": 2367600, + "normalized_name": "super retro gp" + }, + { + "appid": 2367610, + "normalized_name": "critter café" + }, + { + "appid": 2367640, + "normalized_name": "heroes quest survival vampire and zombie apocalypse" + }, + { + "appid": 2367650, + "normalized_name": "mystery society 2 hidden puzzles" + }, + { + "appid": 2367660, + "normalized_name": "crash cars driven to destruction" + }, + { + "appid": 2367680, + "normalized_name": "countryside dating" + }, + { + "appid": 2367690, + "normalized_name": "greymarsh" + }, + { + "appid": 2367710, + "normalized_name": "legend of the wargod" + }, + { + "appid": 2367730, + "normalized_name": "detective solitaire. butler story 2" + }, + { + "appid": 2367740, + "normalized_name": "mystery solitaire. grimm's tales 8" + }, + { + "appid": 2367750, + "normalized_name": "mystery solitaire. cthulhu mythos 2" + }, + { + "appid": 2367760, + "normalized_name": "the empress of mahjong" + }, + { + "appid": 2367770, + "normalized_name": "detective solitaire. butler story 3" + }, + { + "appid": 2367780, + "normalized_name": "mystery solitaire. grimm's tales 9" + }, + { + "appid": 2367790, + "normalized_name": "mystery solitaire. cthulhu mythos 3" + }, + { + "appid": 2367800, + "normalized_name": "mystery solitaire. the black raven 6" + }, + { + "appid": 2367820, + "normalized_name": "despelote" + }, + { + "appid": 2367840, + "normalized_name": "blazing ace" + }, + { + "appid": 2367850, + "normalized_name": "solene's spin story" + }, + { + "appid": 2367880, + "normalized_name": "calling home" + }, + { + "appid": 2367960, + "normalized_name": "sinking simulator legacy" + }, + { + "appid": 2368030, + "normalized_name": "delusion out of space" + }, + { + "appid": 2368070, + "normalized_name": "simple game" + }, + { + "appid": 2368080, + "normalized_name": "evowars new era" + }, + { + "appid": 2368100, + "normalized_name": "the lonely hacker" + }, + { + "appid": 2368130, + "normalized_name": "bearskull" + }, + { + "appid": 2368160, + "normalized_name": "bullet blaze" + }, + { + "appid": 2368190, + "normalized_name": "bem feito" + }, + { + "appid": 2368200, + "normalized_name": "rhythm soccer" + }, + { + "appid": 2368220, + "normalized_name": "drift reign" + }, + { + "appid": 2368250, + "normalized_name": "masonic mysteries secrets unveiled" + }, + { + "appid": 2368260, + "normalized_name": "the crisis zone" + }, + { + "appid": 2368300, + "normalized_name": "warside" + }, + { + "appid": 2368310, + "normalized_name": "sequential dungeon" + }, + { + "appid": 2368320, + "normalized_name": "cold salvage" + }, + { + "appid": 2368330, + "normalized_name": "brickworks" + }, + { + "appid": 2368340, + "normalized_name": "pixeria online" + }, + { + "appid": 2368350, + "normalized_name": "guardians survival" + }, + { + "appid": 2368370, + "normalized_name": "here there be bears" + }, + { + "appid": 2368390, + "normalized_name": "doggo garden defense" + }, + { + "appid": 2368400, + "normalized_name": "コンプレックスループ" + }, + { + "appid": 2368430, + "normalized_name": "toon td" + }, + { + "appid": 2368460, + "normalized_name": "inkubus sukkubus she of a thousand names" + }, + { + "appid": 2368470, + "normalized_name": "an arcade full of cats" + }, + { + "appid": 2368490, + "normalized_name": "montaro 2" + }, + { + "appid": 2368510, + "normalized_name": "soulvester vs lil' beezey" + }, + { + "appid": 2368530, + "normalized_name": "forum mortuorum" + }, + { + "appid": 2368540, + "normalized_name": "guardian planet defense" + }, + { + "appid": 2368570, + "normalized_name": "弹弹弹" + }, + { + "appid": 2368650, + "normalized_name": "gunship" + }, + { + "appid": 2368670, + "normalized_name": "恋来い温泉物語 non vr" + }, + { + "appid": 2368720, + "normalized_name": "starryard" + }, + { + "appid": 2368780, + "normalized_name": "drift abyss" + }, + { + "appid": 2368800, + "normalized_name": "millennial simulator" + }, + { + "appid": 2368810, + "normalized_name": "cosmic cleaner" + }, + { + "appid": 2368820, + "normalized_name": "chelesste" + }, + { + "appid": 2368840, + "normalized_name": "check & clean" + }, + { + "appid": 2368860, + "normalized_name": "paws of coal" + }, + { + "appid": 2368880, + "normalized_name": "midnight thunder drive" + }, + { + "appid": 2368930, + "normalized_name": "islanders new shores" + }, + { + "appid": 2368940, + "normalized_name": "jurl" + }, + { + "appid": 2369100, + "normalized_name": "cities of the world jigsaw puzzles" + }, + { + "appid": 2369130, + "normalized_name": "slimes cannon combat" + }, + { + "appid": 2369140, + "normalized_name": "幻影魔都" + }, + { + "appid": 2369170, + "normalized_name": "dominus solaris" + }, + { + "appid": 2369250, + "normalized_name": "little army" + }, + { + "appid": 2369320, + "normalized_name": "magical town" + }, + { + "appid": 2369380, + "normalized_name": "kill baby kill" + }, + { + "appid": 2369390, + "normalized_name": "far cry 6" + }, + { + "appid": 2369400, + "normalized_name": "dormitory hentai clicker" + }, + { + "appid": 2369410, + "normalized_name": "lotte" + }, + { + "appid": 2369430, + "normalized_name": "serafina's saga awakened" + }, + { + "appid": 2369440, + "normalized_name": "rushlane" + }, + { + "appid": 2369460, + "normalized_name": "first christmas" + }, + { + "appid": 2369480, + "normalized_name": "reflections of life spindle of fate" + }, + { + "appid": 2369500, + "normalized_name": "cyber tamer" + }, + { + "appid": 2369520, + "normalized_name": "hunchback's dungeon" + }, + { + "appid": 2369550, + "normalized_name": "mike and the zombies" + }, + { + "appid": 2369580, + "normalized_name": "mad king redemption" + }, + { + "appid": 2369590, + "normalized_name": "skysouls" + }, + { + "appid": 2369600, + "normalized_name": "nimblefoot" + }, + { + "appid": 2369610, + "normalized_name": "veriscape" + }, + { + "appid": 2369630, + "normalized_name": "grimwalker" + }, + { + "appid": 2369640, + "normalized_name": "vanova's stories" + }, + { + "appid": 2369730, + "normalized_name": "kaiten sushi vr" + }, + { + "appid": 2369740, + "normalized_name": "einheriar" + }, + { + "appid": 2369750, + "normalized_name": "垃圾游戏" + }, + { + "appid": 2369760, + "normalized_name": "17.waves td" + }, + { + "appid": 2369780, + "normalized_name": "unnatural worlds" + }, + { + "appid": 2369810, + "normalized_name": "s.o.v passenger 23" + }, + { + "appid": 2369850, + "normalized_name": "dolven" + }, + { + "appid": 2369880, + "normalized_name": "地牢求生" + }, + { + "appid": 2369900, + "normalized_name": "castlevania dominus collection" + }, + { + "appid": 2369930, + "normalized_name": "archesis" + }, + { + "appid": 2369940, + "normalized_name": "造 物 终 端" + }, + { + "appid": 2369950, + "normalized_name": "blade of the netherworld" + }, + { + "appid": 2369970, + "normalized_name": "grow on the go" + }, + { + "appid": 2370020, + "normalized_name": "chain ninja" + }, + { + "appid": 2370030, + "normalized_name": "bingo pinball gameroom" + }, + { + "appid": 2370060, + "normalized_name": "essential power" + }, + { + "appid": 2370070, + "normalized_name": "nightmare worlds collide" + }, + { + "appid": 2370100, + "normalized_name": "smash room" + }, + { + "appid": 2370110, + "normalized_name": "定時制の人妻jk married girls' night school" + }, + { + "appid": 2370130, + "normalized_name": "bottle grannies" + }, + { + "appid": 2370140, + "normalized_name": "my demonic romance" + }, + { + "appid": 2370170, + "normalized_name": "earth defense force world brothers 2" + }, + { + "appid": 2370180, + "normalized_name": "shrommzzz mushroom foraging" + }, + { + "appid": 2370230, + "normalized_name": "edegard puqq" + }, + { + "appid": 2370270, + "normalized_name": "patou" + }, + { + "appid": 2370280, + "normalized_name": "nobody's left" + }, + { + "appid": 2370290, + "normalized_name": "ebola 4" + }, + { + "appid": 2370300, + "normalized_name": "connect far away tale" + }, + { + "appid": 2370310, + "normalized_name": "mountaincore" + }, + { + "appid": 2370320, + "normalized_name": "bendo" + }, + { + "appid": 2370330, + "normalized_name": "linia stripes" + }, + { + "appid": 2370380, + "normalized_name": "异界之门 d world gate" + }, + { + "appid": 2370390, + "normalized_name": "farm business" + }, + { + "appid": 2370420, + "normalized_name": "chronomon" + }, + { + "appid": 2370540, + "normalized_name": "my klutzy cupid" + }, + { + "appid": 2370560, + "normalized_name": "draken's shrine" + }, + { + "appid": 2370600, + "normalized_name": "slarcher" + }, + { + "appid": 2370640, + "normalized_name": "that potato game" + }, + { + "appid": 2370650, + "normalized_name": "argumentum ad culpam" + }, + { + "appid": 2370660, + "normalized_name": "börd killer" + }, + { + "appid": 2370680, + "normalized_name": "backrooms project the lost file" + }, + { + "appid": 2370740, + "normalized_name": "ネジ込みシミュレーターvol5 巨乳のヤギ娘ちゃんを宙吊りにしておっぱいばるんばるんさせながらめちゃくちゃセックスするお触りゲーム 【性器拡張・ガチセックス】" + }, + { + "appid": 2370760, + "normalized_name": "interlinked" + }, + { + "appid": 2370770, + "normalized_name": "cydoku" + }, + { + "appid": 2370790, + "normalized_name": "the mine" + }, + { + "appid": 2370800, + "normalized_name": "celestial raider" + }, + { + "appid": 2370880, + "normalized_name": "cards of the realm" + }, + { + "appid": 2370920, + "normalized_name": "spiral smash" + }, + { + "appid": 2370950, + "normalized_name": "zombie exterminator" + }, + { + "appid": 2370990, + "normalized_name": "merk mayhem" + }, + { + "appid": 2371040, + "normalized_name": "5 star fishy" + }, + { + "appid": 2371060, + "normalized_name": "it consumes" + }, + { + "appid": 2371110, + "normalized_name": "fitting in" + }, + { + "appid": 2371120, + "normalized_name": "lore curse of the elemental" + }, + { + "appid": 2371130, + "normalized_name": "duels of fortune" + }, + { + "appid": 2371160, + "normalized_name": "when god left us" + }, + { + "appid": 2371190, + "normalized_name": "fusillade" + }, + { + "appid": 2371220, + "normalized_name": "sender" + }, + { + "appid": 2371230, + "normalized_name": "margaret's little shop of wonders" + }, + { + "appid": 2371240, + "normalized_name": "dolos your best future" + }, + { + "appid": 2371260, + "normalized_name": "land of zombies" + }, + { + "appid": 2371270, + "normalized_name": "pongspin" + }, + { + "appid": 2371280, + "normalized_name": "tether" + }, + { + "appid": 2371290, + "normalized_name": "sinder blade" + }, + { + "appid": 2371310, + "normalized_name": "books of grandura" + }, + { + "appid": 2371330, + "normalized_name": "endlessex" + }, + { + "appid": 2371350, + "normalized_name": "调和师物语 beverage craft" + }, + { + "appid": 2371390, + "normalized_name": "ds epoch" + }, + { + "appid": 2371400, + "normalized_name": "tuttle star flower harvest" + }, + { + "appid": 2371410, + "normalized_name": "blade fury" + }, + { + "appid": 2371430, + "normalized_name": "lavrock:卫巢之歌" + }, + { + "appid": 2371450, + "normalized_name": "ocean explorer" + }, + { + "appid": 2371460, + "normalized_name": "blue epic" + }, + { + "appid": 2371470, + "normalized_name": "美少女ストリーマーの秘密恋愛 secret romance with streamer girls" + }, + { + "appid": 2371480, + "normalized_name": "vr tractor farming" + }, + { + "appid": 2371490, + "normalized_name": "pasture the livestock simulator" + }, + { + "appid": 2371510, + "normalized_name": "endlesscar" + }, + { + "appid": 2371520, + "normalized_name": "gain foxes" + }, + { + "appid": 2371550, + "normalized_name": "pedros eggventure" + }, + { + "appid": 2371560, + "normalized_name": "alpha sorcerer" + }, + { + "appid": 2371630, + "normalized_name": "sword art online integral factor" + }, + { + "appid": 2371650, + "normalized_name": "brewess" + }, + { + "appid": 2371670, + "normalized_name": "chess royal" + }, + { + "appid": 2371680, + "normalized_name": "the trashcan games" + }, + { + "appid": 2371690, + "normalized_name": "fun2box" + }, + { + "appid": 2371710, + "normalized_name": "omnigon" + }, + { + "appid": 2371720, + "normalized_name": "connect legendofautumn" + }, + { + "appid": 2371750, + "normalized_name": "that rocket game" + }, + { + "appid": 2371800, + "normalized_name": "cute girls" + }, + { + "appid": 2371820, + "normalized_name": "my best friend kouta" + }, + { + "appid": 2371850, + "normalized_name": "abuga warp zone" + }, + { + "appid": 2371880, + "normalized_name": "alterspace" + }, + { + "appid": 2371890, + "normalized_name": "chronicles of the wolf" + }, + { + "appid": 2371900, + "normalized_name": "pirate plight" + }, + { + "appid": 2371910, + "normalized_name": "demon command token 御妖令" + }, + { + "appid": 2371920, + "normalized_name": "plasma drone" + }, + { + "appid": 2371990, + "normalized_name": "dewborne dawn" + }, + { + "appid": 2372030, + "normalized_name": "aurendor" + }, + { + "appid": 2372040, + "normalized_name": "medieval darkness" + }, + { + "appid": 2372050, + "normalized_name": "otter turmoil" + }, + { + "appid": 2372060, + "normalized_name": "saucers" + }, + { + "appid": 2372070, + "normalized_name": "bone boy" + }, + { + "appid": 2372080, + "normalized_name": "deep dark dungeon of anglaus" + }, + { + "appid": 2372090, + "normalized_name": "rollerball" + }, + { + "appid": 2372110, + "normalized_name": "toon tumble" + }, + { + "appid": 2372120, + "normalized_name": "arkem" + }, + { + "appid": 2372150, + "normalized_name": "escape from norwood" + }, + { + "appid": 2372170, + "normalized_name": "nidus" + }, + { + "appid": 2372180, + "normalized_name": "cyberheart" + }, + { + "appid": 2372190, + "normalized_name": "cloud realms" + }, + { + "appid": 2372200, + "normalized_name": "yukimura" + }, + { + "appid": 2372220, + "normalized_name": "wonderway" + }, + { + "appid": 2372240, + "normalized_name": "黑夜轮回 re night" + }, + { + "appid": 2372250, + "normalized_name": "run a café" + }, + { + "appid": 2372280, + "normalized_name": "world p" + }, + { + "appid": 2372300, + "normalized_name": "steel thunder" + }, + { + "appid": 2372320, + "normalized_name": "portable vr" + }, + { + "appid": 2372330, + "normalized_name": "血之诗 月之蚀" + }, + { + "appid": 2372340, + "normalized_name": "threedays" + }, + { + "appid": 2372350, + "normalized_name": "巴哈姆特2外傳 來戰吧(bahamut2 come on fight)" + }, + { + "appid": 2372370, + "normalized_name": "blood moon horror" + }, + { + "appid": 2372400, + "normalized_name": "mushroots" + }, + { + "appid": 2372430, + "normalized_name": "lasting moonlight" + }, + { + "appid": 2372440, + "normalized_name": "aphelion headhunters" + }, + { + "appid": 2372450, + "normalized_name": "rootin' tootin' lootin' & shootin'" + }, + { + "appid": 2372480, + "normalized_name": "project otherside" + }, + { + "appid": 2372490, + "normalized_name": "异变危机" + }, + { + "appid": 2372500, + "normalized_name": "trolley delayma" + }, + { + "appid": 2372510, + "normalized_name": "aクラス" + }, + { + "appid": 2372520, + "normalized_name": "cat rescue" + }, + { + "appid": 2372550, + "normalized_name": "nonfullcontrol" + }, + { + "appid": 2372560, + "normalized_name": "back to the dark" + }, + { + "appid": 2372580, + "normalized_name": "dominoes colors" + }, + { + "appid": 2372610, + "normalized_name": "city defence artillery" + }, + { + "appid": 2372620, + "normalized_name": "o7" + }, + { + "appid": 2372750, + "normalized_name": "afropenguin & the forbidden ramen" + }, + { + "appid": 2372760, + "normalized_name": "eternal roadster" + }, + { + "appid": 2372770, + "normalized_name": "secret of a dream" + }, + { + "appid": 2372800, + "normalized_name": "calamity" + }, + { + "appid": 2372860, + "normalized_name": "coaching simulator" + }, + { + "appid": 2372870, + "normalized_name": "the black within" + }, + { + "appid": 2372880, + "normalized_name": "as crônicas de mar céu" + }, + { + "appid": 2372890, + "normalized_name": "shadow of the treasure" + }, + { + "appid": 2372910, + "normalized_name": "folcdark" + }, + { + "appid": 2372930, + "normalized_name": "shadow of murders" + }, + { + "appid": 2372950, + "normalized_name": "meteorfall rustbowl rumble" + }, + { + "appid": 2372970, + "normalized_name": "ai unbound" + }, + { + "appid": 2372980, + "normalized_name": "space shark wrangle fest" + }, + { + "appid": 2373000, + "normalized_name": "shh! this is a mystery game! but watch out for spoilers" + }, + { + "appid": 2373020, + "normalized_name": "the tedium and you" + }, + { + "appid": 2373030, + "normalized_name": "simply survive" + }, + { + "appid": 2373050, + "normalized_name": "pandamander's projector platformer" + }, + { + "appid": 2373060, + "normalized_name": "game dev fantasy" + }, + { + "appid": 2373080, + "normalized_name": "peace is your destiny" + }, + { + "appid": 2373100, + "normalized_name": "bum ball bears" + }, + { + "appid": 2373130, + "normalized_name": "dungeons of edera 2" + }, + { + "appid": 2373180, + "normalized_name": "fabled style" + }, + { + "appid": 2373200, + "normalized_name": "unhinged 2" + }, + { + "appid": 2373220, + "normalized_name": "spriters hopes blooming dawn" + }, + { + "appid": 2373280, + "normalized_name": "the pellar" + }, + { + "appid": 2373290, + "normalized_name": "the game of annie 安妮的游戏" + }, + { + "appid": 2373340, + "normalized_name": "monster line of defense" + }, + { + "appid": 2373360, + "normalized_name": "witchcraft candy hunt" + }, + { + "appid": 2373380, + "normalized_name": "kennedy approach" + }, + { + "appid": 2373390, + "normalized_name": "vvav one" + }, + { + "appid": 2373440, + "normalized_name": "miners settlement" + }, + { + "appid": 2373450, + "normalized_name": "watermelon" + }, + { + "appid": 2373460, + "normalized_name": "chess!" + }, + { + "appid": 2373490, + "normalized_name": "freak crossing" + }, + { + "appid": 2373500, + "normalized_name": "horst der ultimatives rollenspiel" + }, + { + "appid": 2373540, + "normalized_name": "year 500" + }, + { + "appid": 2373550, + "normalized_name": "cosmantic cluster" + }, + { + "appid": 2373560, + "normalized_name": "panic lane" + }, + { + "appid": 2373580, + "normalized_name": "nightmetal" + }, + { + "appid": 2373590, + "normalized_name": "tinker tanks" + }, + { + "appid": 2373600, + "normalized_name": "knowledge fever" + }, + { + "appid": 2373630, + "normalized_name": "moonring" + }, + { + "appid": 2373690, + "normalized_name": "aerion the last alchemist" + }, + { + "appid": 2373700, + "normalized_name": "saikin" + }, + { + "appid": 2373720, + "normalized_name": "mix the forgotten" + }, + { + "appid": 2373760, + "normalized_name": "multiverser" + }, + { + "appid": 2373780, + "normalized_name": "javier" + }, + { + "appid": 2373800, + "normalized_name": "conclave virtual tabletop" + }, + { + "appid": 2373810, + "normalized_name": "luckie ball" + }, + { + "appid": 2373830, + "normalized_name": "hyper hentai sister nun" + }, + { + "appid": 2373850, + "normalized_name": "bullet hell monday black" + }, + { + "appid": 2373860, + "normalized_name": "jessica's uncomfortable hanukkah adventure" + }, + { + "appid": 2373890, + "normalized_name": "into samomor" + }, + { + "appid": 2373900, + "normalized_name": "strato supremacy" + }, + { + "appid": 2373910, + "normalized_name": "fusionist" + }, + { + "appid": 2373920, + "normalized_name": "deep blue odyssey" + }, + { + "appid": 2373940, + "normalized_name": "james is bananas" + }, + { + "appid": 2373950, + "normalized_name": "表天记" + }, + { + "appid": 2373960, + "normalized_name": "borderline homicide" + }, + { + "appid": 2373970, + "normalized_name": "indie game farmer" + }, + { + "appid": 2373990, + "normalized_name": "solo leveling arise" + }, + { + "appid": 2374000, + "normalized_name": "谍:惊蛰" + }, + { + "appid": 2374010, + "normalized_name": "tenders fight" + }, + { + "appid": 2374030, + "normalized_name": "five nights no escape (vr co op)" + }, + { + "appid": 2374040, + "normalized_name": "pixel driver" + }, + { + "appid": 2374090, + "normalized_name": "asterix & obelix heroes" + }, + { + "appid": 2374170, + "normalized_name": "星空之瞭望" + }, + { + "appid": 2374190, + "normalized_name": "nikoderiko the magical world — director’s cut" + }, + { + "appid": 2374210, + "normalized_name": "situation tarfu" + }, + { + "appid": 2374240, + "normalized_name": "honeydew" + }, + { + "appid": 2374280, + "normalized_name": "the king's campaign" + }, + { + "appid": 2374290, + "normalized_name": "crab raid tactics" + }, + { + "appid": 2374320, + "normalized_name": "heroes of loot gauntlet of power" + }, + { + "appid": 2374340, + "normalized_name": "gobyworld" + }, + { + "appid": 2374360, + "normalized_name": "fantasy love" + }, + { + "appid": 2374410, + "normalized_name": "my hero after the fall" + }, + { + "appid": 2374420, + "normalized_name": "100 steps" + }, + { + "appid": 2374430, + "normalized_name": "pickup artist trouble" + }, + { + "appid": 2374440, + "normalized_name": "a.s.s. awesome street skaters" + }, + { + "appid": 2374480, + "normalized_name": "naked hero" + }, + { + "appid": 2374550, + "normalized_name": "omnipresence" + }, + { + "appid": 2374560, + "normalized_name": "eliminator the encapsuled nemesis" + }, + { + "appid": 2374570, + "normalized_name": "car parkour" + }, + { + "appid": 2374580, + "normalized_name": "phrixothrix" + }, + { + "appid": 2374590, + "normalized_name": "sugar sweet temptation" + }, + { + "appid": 2374610, + "normalized_name": "memeside" + }, + { + "appid": 2374620, + "normalized_name": "superbot arena" + }, + { + "appid": 2374660, + "normalized_name": "绝密档案" + }, + { + "appid": 2374730, + "normalized_name": "the next world" + }, + { + "appid": 2374820, + "normalized_name": "i’ll kill her" + }, + { + "appid": 2374990, + "normalized_name": "primeval horizon" + }, + { + "appid": 2375020, + "normalized_name": "hexbat" + }, + { + "appid": 2375040, + "normalized_name": "위험한 그놈들 여성향 스릴러 연애 스토리" + }, + { + "appid": 2375050, + "normalized_name": "simple shapes" + }, + { + "appid": 2375070, + "normalized_name": "the final exhibition" + }, + { + "appid": 2375080, + "normalized_name": "sakura bunny girls" + }, + { + "appid": 2375090, + "normalized_name": "busy bee" + }, + { + "appid": 2375100, + "normalized_name": "run penguin run" + }, + { + "appid": 2375160, + "normalized_name": "i am sakuya vr touhou fps game" + }, + { + "appid": 2375180, + "normalized_name": "hypno mart" + }, + { + "appid": 2375190, + "normalized_name": "queen of the otaku there can only be one" + }, + { + "appid": 2375220, + "normalized_name": "rainy day" + }, + { + "appid": 2375260, + "normalized_name": "tattoo tycoon" + }, + { + "appid": 2375280, + "normalized_name": "i had a plan!" + }, + { + "appid": 2375290, + "normalized_name": "hi eggplant the birth of sprites" + }, + { + "appid": 2375330, + "normalized_name": "《蜀山:初章》online" + }, + { + "appid": 2375380, + "normalized_name": "eraser advent" + }, + { + "appid": 2375400, + "normalized_name": "mystery in the office" + }, + { + "appid": 2375410, + "normalized_name": "辉石纪:远征" + }, + { + "appid": 2375420, + "normalized_name": "cursed house match 3 puzzle" + }, + { + "appid": 2375430, + "normalized_name": "laruaville match 3 puzzle" + }, + { + "appid": 2375450, + "normalized_name": "flavor favor" + }, + { + "appid": 2375480, + "normalized_name": "space saga" + }, + { + "appid": 2375530, + "normalized_name": "descenders next" + }, + { + "appid": 2375540, + "normalized_name": "hentai casual jigsaw witches" + }, + { + "appid": 2375550, + "normalized_name": "like a dragon gaiden the man who erased his name" + }, + { + "appid": 2375560, + "normalized_name": "poly jigsaw butterflies" + }, + { + "appid": 2375570, + "normalized_name": "champion's chalice" + }, + { + "appid": 2375580, + "normalized_name": "dark bows" + }, + { + "appid": 2375590, + "normalized_name": "huntsmen" + }, + { + "appid": 2375600, + "normalized_name": "restaurant battle" + }, + { + "appid": 2375610, + "normalized_name": "breach in space" + }, + { + "appid": 2375640, + "normalized_name": "a cairn tale" + }, + { + "appid": 2375650, + "normalized_name": "bold" + }, + { + "appid": 2375710, + "normalized_name": "hunt hide run" + }, + { + "appid": 2375730, + "normalized_name": "mercenaries of the kingdom first blood" + }, + { + "appid": 2375740, + "normalized_name": "5 minute climb" + }, + { + "appid": 2375760, + "normalized_name": "aery calm mind 4" + }, + { + "appid": 2375810, + "normalized_name": "rise of robots" + }, + { + "appid": 2375850, + "normalized_name": "conundrum catacombs" + }, + { + "appid": 2375870, + "normalized_name": "the revolt fire rising" + }, + { + "appid": 2375930, + "normalized_name": "simple multipliers" + }, + { + "appid": 2375940, + "normalized_name": "deadly delivery" + }, + { + "appid": 2375960, + "normalized_name": "entogious" + }, + { + "appid": 2375990, + "normalized_name": "coralina a memory tale" + }, + { + "appid": 2376020, + "normalized_name": "castlewatch" + }, + { + "appid": 2376030, + "normalized_name": "minor scale" + }, + { + "appid": 2376070, + "normalized_name": "quadrium" + }, + { + "appid": 2376080, + "normalized_name": "danse macabre ai text rpg" + }, + { + "appid": 2376140, + "normalized_name": "space captain mccallery episode 4 the turquoise temple" + }, + { + "appid": 2376160, + "normalized_name": "deckmate!" + }, + { + "appid": 2376170, + "normalized_name": "hamster combat" + }, + { + "appid": 2376190, + "normalized_name": "water buddy" + }, + { + "appid": 2376210, + "normalized_name": "treasure star" + }, + { + "appid": 2376250, + "normalized_name": "nullschwert" + }, + { + "appid": 2376260, + "normalized_name": "mariachi legends" + }, + { + "appid": 2376270, + "normalized_name": "lunar lander beyond" + }, + { + "appid": 2376280, + "normalized_name": "whisker witchery" + }, + { + "appid": 2376290, + "normalized_name": "derf party" + }, + { + "appid": 2376300, + "normalized_name": "cash dash" + }, + { + "appid": 2376310, + "normalized_name": "castle war" + }, + { + "appid": 2376320, + "normalized_name": "slag" + }, + { + "appid": 2376340, + "normalized_name": "dominoo" + }, + { + "appid": 2376370, + "normalized_name": "xenocide" + }, + { + "appid": 2376380, + "normalized_name": "madcus show" + }, + { + "appid": 2376390, + "normalized_name": "sea dove" + }, + { + "appid": 2376410, + "normalized_name": "bird's eye odyssey" + }, + { + "appid": 2376430, + "normalized_name": "a rocket's intensity" + }, + { + "appid": 2376450, + "normalized_name": "lighthouse of the souls (lots)" + }, + { + "appid": 2376470, + "normalized_name": "enid" + }, + { + "appid": 2376510, + "normalized_name": "floating coffin" + }, + { + "appid": 2376540, + "normalized_name": "猛鬼大廈" + }, + { + "appid": 2376550, + "normalized_name": "haunted heye apartment" + }, + { + "appid": 2376570, + "normalized_name": "wonder wandelier" + }, + { + "appid": 2376580, + "normalized_name": "tribe nine" + }, + { + "appid": 2376600, + "normalized_name": "ptero pursuit" + }, + { + "appid": 2376610, + "normalized_name": "underboard" + }, + { + "appid": 2376620, + "normalized_name": "殺陣物語" + }, + { + "appid": 2376690, + "normalized_name": "highrise guardian" + }, + { + "appid": 2376710, + "normalized_name": "muted" + }, + { + "appid": 2376720, + "normalized_name": "shred a bunch!" + }, + { + "appid": 2376740, + "normalized_name": "200 days zombie apocalypse" + }, + { + "appid": 2376750, + "normalized_name": "ancient mind" + }, + { + "appid": 2376760, + "normalized_name": "mondrian 99" + }, + { + "appid": 2376770, + "normalized_name": "ソードコレクター" + }, + { + "appid": 2376780, + "normalized_name": "battery samurai" + }, + { + "appid": 2376870, + "normalized_name": "mechcrisis" + }, + { + "appid": 2376930, + "normalized_name": "cuthbert in the jungle" + }, + { + "appid": 2376970, + "normalized_name": "my horse bonded spirits" + }, + { + "appid": 2376980, + "normalized_name": "panic" + }, + { + "appid": 2376990, + "normalized_name": "meduziak" + }, + { + "appid": 2377020, + "normalized_name": "unbroken the awakening" + }, + { + "appid": 2377070, + "normalized_name": "slingshot trip" + }, + { + "appid": 2377090, + "normalized_name": "willow guard" + }, + { + "appid": 2377100, + "normalized_name": "lawless confessions fight for the west!" + }, + { + "appid": 2377110, + "normalized_name": "pocket waifu rekindled" + }, + { + "appid": 2377120, + "normalized_name": "elena's journal to atlantis" + }, + { + "appid": 2377140, + "normalized_name": "axolotl kingdom" + }, + { + "appid": 2377160, + "normalized_name": "not only nine" + }, + { + "appid": 2377210, + "normalized_name": "little turrets" + }, + { + "appid": 2377230, + "normalized_name": "claws & chaos" + }, + { + "appid": 2377240, + "normalized_name": "sex room 2 [18+]" + }, + { + "appid": 2377250, + "normalized_name": "whimel academy" + }, + { + "appid": 2377260, + "normalized_name": "blossom" + }, + { + "appid": 2377270, + "normalized_name": "hivefall" + }, + { + "appid": 2377280, + "normalized_name": "eriksholm the stolen dream" + }, + { + "appid": 2377300, + "normalized_name": "rest house iii chlorophilia" + }, + { + "appid": 2377320, + "normalized_name": "berry hunt survivors" + }, + { + "appid": 2377340, + "normalized_name": "swarmsurge" + }, + { + "appid": 2377360, + "normalized_name": "horror maze 2" + }, + { + "appid": 2377380, + "normalized_name": "dark desire mute 4" + }, + { + "appid": 2377410, + "normalized_name": "forsaken quartet" + }, + { + "appid": 2377420, + "normalized_name": "eris dysnomia" + }, + { + "appid": 2377430, + "normalized_name": "pixel tennis" + }, + { + "appid": 2377450, + "normalized_name": "mayor may knott" + }, + { + "appid": 2377480, + "normalized_name": "suds" + }, + { + "appid": 2377490, + "normalized_name": "psychiatric hospital" + }, + { + "appid": 2377520, + "normalized_name": "2d dogfight" + }, + { + "appid": 2377530, + "normalized_name": "sweet office" + }, + { + "appid": 2377590, + "normalized_name": "skeler boy" + }, + { + "appid": 2377600, + "normalized_name": "cozy dungeons" + }, + { + "appid": 2377610, + "normalized_name": "infasia" + }, + { + "appid": 2377620, + "normalized_name": "lord o' pirates" + }, + { + "appid": 2377630, + "normalized_name": "project athenia" + }, + { + "appid": 2377660, + "normalized_name": "jane austen's 8 bit adventure" + }, + { + "appid": 2377700, + "normalized_name": "ocean cat" + }, + { + "appid": 2377720, + "normalized_name": "super power racing" + }, + { + "appid": 2377780, + "normalized_name": "终极功德模拟器 | zen simulator" + }, + { + "appid": 2377860, + "normalized_name": "princess of mekana" + }, + { + "appid": 2377890, + "normalized_name": "windwalker" + }, + { + "appid": 2377910, + "normalized_name": "航海纷争" + }, + { + "appid": 2377920, + "normalized_name": "perseus" + }, + { + "appid": 2377930, + "normalized_name": "destiny of immortal" + }, + { + "appid": 2377970, + "normalized_name": "cats hidden around the world" + }, + { + "appid": 2377980, + "normalized_name": "dye the bunny" + }, + { + "appid": 2377990, + "normalized_name": "渡灵师 demon subduing master" + }, + { + "appid": 2378010, + "normalized_name": "英雄与霸主 heroes and overlord" + }, + { + "appid": 2378060, + "normalized_name": "dino want to survive" + }, + { + "appid": 2378100, + "normalized_name": "legacy of allard" + }, + { + "appid": 2378120, + "normalized_name": "咸鱼修仙指南" + }, + { + "appid": 2378130, + "normalized_name": "the last explorer" + }, + { + "appid": 2378140, + "normalized_name": "blackthorn winter" + }, + { + "appid": 2378150, + "normalized_name": "pincrediball" + }, + { + "appid": 2378160, + "normalized_name": "autarkis" + }, + { + "appid": 2378220, + "normalized_name": "psycho world" + }, + { + "appid": 2378230, + "normalized_name": "neo junk city" + }, + { + "appid": 2378250, + "normalized_name": "tomb of dread" + }, + { + "appid": 2378290, + "normalized_name": "grasshoping" + }, + { + "appid": 2378300, + "normalized_name": "the enemy weapons are better" + }, + { + "appid": 2378310, + "normalized_name": "divine pearl survivors" + }, + { + "appid": 2378370, + "normalized_name": "puddies" + }, + { + "appid": 2378380, + "normalized_name": "lunarpunk" + }, + { + "appid": 2378390, + "normalized_name": "little keepers" + }, + { + "appid": 2378400, + "normalized_name": "shuvani" + }, + { + "appid": 2378410, + "normalized_name": "gloom reaper" + }, + { + "appid": 2378460, + "normalized_name": "午前五時にピアノを弾く" + }, + { + "appid": 2378480, + "normalized_name": "gallowshill" + }, + { + "appid": 2378490, + "normalized_name": "two hands eggs" + }, + { + "appid": 2378520, + "normalized_name": "senju" + }, + { + "appid": 2378540, + "normalized_name": "hentai dream" + }, + { + "appid": 2378620, + "normalized_name": "anomaly agent" + }, + { + "appid": 2378640, + "normalized_name": "the great war 3032" + }, + { + "appid": 2378690, + "normalized_name": "倩女幽魂2023" + }, + { + "appid": 2378720, + "normalized_name": "roach invasion" + }, + { + "appid": 2378810, + "normalized_name": "it hell" + }, + { + "appid": 2378880, + "normalized_name": "v.o.i.d. vexation of infinite dungeons" + }, + { + "appid": 2378900, + "normalized_name": "the coffin of andy and leyley" + }, + { + "appid": 2378910, + "normalized_name": "settlements rising" + }, + { + "appid": 2378970, + "normalized_name": "medusa vr" + }, + { + "appid": 2378990, + "normalized_name": "presence" + }, + { + "appid": 2379010, + "normalized_name": "solar raiders" + }, + { + "appid": 2379030, + "normalized_name": "barro t23" + }, + { + "appid": 2379060, + "normalized_name": "it belongs in a museum" + }, + { + "appid": 2379070, + "normalized_name": "operation excision" + }, + { + "appid": 2379160, + "normalized_name": "signy & mino against all gods" + }, + { + "appid": 2379200, + "normalized_name": "sol uknight" + }, + { + "appid": 2379230, + "normalized_name": "blessed burden" + }, + { + "appid": 2379280, + "normalized_name": "zilla shadow of the bridge" + }, + { + "appid": 2379300, + "normalized_name": "get those bugs" + }, + { + "appid": 2379340, + "normalized_name": "candy lattice" + }, + { + "appid": 2379360, + "normalized_name": "melancholy date" + }, + { + "appid": 2379370, + "normalized_name": "colors of nobility" + }, + { + "appid": 2379390, + "normalized_name": "tom clancy’s rainbow six extraction" + }, + { + "appid": 2379460, + "normalized_name": "threat actor" + }, + { + "appid": 2379470, + "normalized_name": "cadence cuties" + }, + { + "appid": 2379520, + "normalized_name": "vr fitness" + }, + { + "appid": 2379580, + "normalized_name": "cargospace" + }, + { + "appid": 2379590, + "normalized_name": "hope's final defense" + }, + { + "appid": 2379610, + "normalized_name": "a silly goofy dream 2" + }, + { + "appid": 2379620, + "normalized_name": "the unfallens awakening" + }, + { + "appid": 2379650, + "normalized_name": "clicks of courage" + }, + { + "appid": 2379680, + "normalized_name": "云端派对" + }, + { + "appid": 2379690, + "normalized_name": "retirement home tower defense" + }, + { + "appid": 2379700, + "normalized_name": "珍珠梦" + }, + { + "appid": 2379720, + "normalized_name": "every letter" + }, + { + "appid": 2379730, + "normalized_name": "edelweiss" + }, + { + "appid": 2379740, + "normalized_name": "wizardry variants daphne" + }, + { + "appid": 2379750, + "normalized_name": "xochi's apothecary" + }, + { + "appid": 2379770, + "normalized_name": "boobsle" + }, + { + "appid": 2379780, + "normalized_name": "balatro" + }, + { + "appid": 2379790, + "normalized_name": "lost3" + }, + { + "appid": 2379800, + "normalized_name": "run on" + }, + { + "appid": 2379810, + "normalized_name": "bazaar simulator" + }, + { + "appid": 2379820, + "normalized_name": "forty niner" + }, + { + "appid": 2379830, + "normalized_name": "fortress of the undead" + }, + { + "appid": 2379850, + "normalized_name": "super box delivery beyond the horizon" + }, + { + "appid": 2379880, + "normalized_name": "neon survivors" + }, + { + "appid": 2379890, + "normalized_name": "forgotten war" + }, + { + "appid": 2379910, + "normalized_name": "dystopika" + }, + { + "appid": 2379960, + "normalized_name": "ruins of the lost" + }, + { + "appid": 2380050, + "normalized_name": "star trucker" + }, + { + "appid": 2380070, + "normalized_name": "slime squadron harpy raiders" + }, + { + "appid": 2380090, + "normalized_name": "new york mysteries power of art collector's" + }, + { + "appid": 2380130, + "normalized_name": "tears fall low" + }, + { + "appid": 2380150, + "normalized_name": "good luck citizen" + }, + { + "appid": 2380190, + "normalized_name": "paradise cleaning! sexual massage shop akari" + }, + { + "appid": 2380220, + "normalized_name": "materialization of memories" + }, + { + "appid": 2380230, + "normalized_name": "呪巣 怨ノ章" + }, + { + "appid": 2380240, + "normalized_name": "sparky marky episode 1" + }, + { + "appid": 2380250, + "normalized_name": "swinging over it with alin lucian" + }, + { + "appid": 2380300, + "normalized_name": "super cars (amiga/c64/cpc/spectrum)" + }, + { + "appid": 2380310, + "normalized_name": "living cell" + }, + { + "appid": 2380320, + "normalized_name": "choice of life wild islands" + }, + { + "appid": 2380340, + "normalized_name": "hazy mind" + }, + { + "appid": 2380360, + "normalized_name": "mathland" + }, + { + "appid": 2380410, + "normalized_name": "sex tentacles [18+]" + }, + { + "appid": 2380450, + "normalized_name": "machine love 2069" + }, + { + "appid": 2380490, + "normalized_name": "pengun" + }, + { + "appid": 2380520, + "normalized_name": "parkour running" + }, + { + "appid": 2380540, + "normalized_name": "fliptiles warp lines" + }, + { + "appid": 2380550, + "normalized_name": "consortium" + }, + { + "appid": 2380560, + "normalized_name": "deserted island" + }, + { + "appid": 2380590, + "normalized_name": "hentai angel smite the nazis" + }, + { + "appid": 2380600, + "normalized_name": "bread or dead" + }, + { + "appid": 2380620, + "normalized_name": "steel rampart" + }, + { + "appid": 2380710, + "normalized_name": "pungolo a prickly adventure" + }, + { + "appid": 2380720, + "normalized_name": "sqube darkness" + }, + { + "appid": 2380760, + "normalized_name": "lofi milk delivery" + }, + { + "appid": 2380780, + "normalized_name": "wyvia prologue" + }, + { + "appid": 2380810, + "normalized_name": "internull" + }, + { + "appid": 2380820, + "normalized_name": "saber ball" + }, + { + "appid": 2380830, + "normalized_name": "duel timers" + }, + { + "appid": 2380840, + "normalized_name": "plasmablast 1.0.2 beta" + }, + { + "appid": 2380850, + "normalized_name": "emberwood (beta)" + }, + { + "appid": 2380860, + "normalized_name": "illum" + }, + { + "appid": 2380870, + "normalized_name": "pieclicker" + }, + { + "appid": 2380910, + "normalized_name": "not the north pole" + }, + { + "appid": 2380920, + "normalized_name": "mad aliens seeking the soul" + }, + { + "appid": 2380930, + "normalized_name": "coral caper" + }, + { + "appid": 2380940, + "normalized_name": "the shape killer sniper game" + }, + { + "appid": 2380990, + "normalized_name": "endless anime golf" + }, + { + "appid": 2381010, + "normalized_name": "ashes to ashes" + }, + { + "appid": 2381040, + "normalized_name": "cirrus business" + }, + { + "appid": 2381050, + "normalized_name": "hyper hentai elf attendant" + }, + { + "appid": 2381060, + "normalized_name": "alnico smithery" + }, + { + "appid": 2381100, + "normalized_name": "steelracer" + }, + { + "appid": 2381160, + "normalized_name": "quest for the golden candelabra" + }, + { + "appid": 2381170, + "normalized_name": "g.o.m.p!" + }, + { + "appid": 2381230, + "normalized_name": "simplicity" + }, + { + "appid": 2381240, + "normalized_name": "plantsportation" + }, + { + "appid": 2381260, + "normalized_name": "rheinland" + }, + { + "appid": 2381270, + "normalized_name": "stickman and the sword of legends" + }, + { + "appid": 2381290, + "normalized_name": "section gamma" + }, + { + "appid": 2381310, + "normalized_name": "genjiro samurai defense" + }, + { + "appid": 2381320, + "normalized_name": "人造機械之翼 artificial wings" + }, + { + "appid": 2381330, + "normalized_name": "capybarun" + }, + { + "appid": 2381340, + "normalized_name": "256" + }, + { + "appid": 2381430, + "normalized_name": "coffee plis" + }, + { + "appid": 2381460, + "normalized_name": "the icon battles game" + }, + { + "appid": 2381520, + "normalized_name": "unrecord" + }, + { + "appid": 2381550, + "normalized_name": "fist of yokai" + }, + { + "appid": 2381600, + "normalized_name": "steel republic rail defender" + }, + { + "appid": 2381620, + "normalized_name": "steam engine simulator" + }, + { + "appid": 2381630, + "normalized_name": "waxheart" + }, + { + "appid": 2381640, + "normalized_name": "gothel" + }, + { + "appid": 2381670, + "normalized_name": "the sinking of the dream chaser" + }, + { + "appid": 2381690, + "normalized_name": "monkey business" + }, + { + "appid": 2381710, + "normalized_name": "galactic gluttony" + }, + { + "appid": 2381740, + "normalized_name": "hexguardian" + }, + { + "appid": 2381770, + "normalized_name": "arcane audit" + }, + { + "appid": 2381800, + "normalized_name": "dunia the north wood episode 0" + }, + { + "appid": 2381810, + "normalized_name": "the paper arcade" + }, + { + "appid": 2381850, + "normalized_name": "path of deities" + }, + { + "appid": 2381860, + "normalized_name": "the red selene" + }, + { + "appid": 2381870, + "normalized_name": "electric enigma vr" + }, + { + "appid": 2381880, + "normalized_name": "square wave" + }, + { + "appid": 2381930, + "normalized_name": "project infogrid" + }, + { + "appid": 2381940, + "normalized_name": "sector one" + }, + { + "appid": 2381950, + "normalized_name": "card age" + }, + { + "appid": 2381990, + "normalized_name": "paintopia" + }, + { + "appid": 2382000, + "normalized_name": "world strategy war" + }, + { + "appid": 2382040, + "normalized_name": "hellcat 2 the riot inferno" + }, + { + "appid": 2382050, + "normalized_name": "puzzled runner" + }, + { + "appid": 2382060, + "normalized_name": "dickland mini games" + }, + { + "appid": 2382070, + "normalized_name": "evershire" + }, + { + "appid": 2382080, + "normalized_name": "vivian carmine" + }, + { + "appid": 2382090, + "normalized_name": "员工生存指南" + }, + { + "appid": 2382110, + "normalized_name": "1001 jigsaw. castles and palaces 4" + }, + { + "appid": 2382120, + "normalized_name": "mahjong travel" + }, + { + "appid": 2382130, + "normalized_name": "tasty jigsaw. happy hour 3" + }, + { + "appid": 2382140, + "normalized_name": "1001 jigsaw. world tour thailand" + }, + { + "appid": 2382150, + "normalized_name": "1001 jigsaw. castles and palaces 5" + }, + { + "appid": 2382160, + "normalized_name": "1001 jigsaw world tour china" + }, + { + "appid": 2382170, + "normalized_name": "1001 jigsaw detective 4" + }, + { + "appid": 2382180, + "normalized_name": "1001 jigsaw world tour japan" + }, + { + "appid": 2382190, + "normalized_name": "tasty jigsaw. happy hour 4" + }, + { + "appid": 2382200, + "normalized_name": "1001 jigsaw world tour south korea" + }, + { + "appid": 2382210, + "normalized_name": "space guardian" + }, + { + "appid": 2382230, + "normalized_name": "the egg" + }, + { + "appid": 2382240, + "normalized_name": "awita journey of hope" + }, + { + "appid": 2382250, + "normalized_name": "seven nights ghost" + }, + { + "appid": 2382260, + "normalized_name": "puzzle go!" + }, + { + "appid": 2382280, + "normalized_name": "plumber 3d" + }, + { + "appid": 2382310, + "normalized_name": "the last society" + }, + { + "appid": 2382350, + "normalized_name": "rainbow rendezvous" + }, + { + "appid": 2382380, + "normalized_name": "magician's cat diary" + }, + { + "appid": 2382410, + "normalized_name": "block gun" + }, + { + "appid": 2382440, + "normalized_name": "biki biki flip" + }, + { + "appid": 2382450, + "normalized_name": "rocket!" + }, + { + "appid": 2382470, + "normalized_name": "ball wall" + }, + { + "appid": 2382490, + "normalized_name": "salah simulator" + }, + { + "appid": 2382520, + "normalized_name": "erenshor" + }, + { + "appid": 2382540, + "normalized_name": "hit the bit" + }, + { + "appid": 2382570, + "normalized_name": "xenosis" + }, + { + "appid": 2382580, + "normalized_name": "a game called paako" + }, + { + "appid": 2382600, + "normalized_name": "nomad" + }, + { + "appid": 2382610, + "normalized_name": "machine heart" + }, + { + "appid": 2382620, + "normalized_name": "the stoevi curse" + }, + { + "appid": 2382630, + "normalized_name": "crash course builder" + }, + { + "appid": 2382640, + "normalized_name": "death requiem" + }, + { + "appid": 2382650, + "normalized_name": "i swear this hentai game was a gift" + }, + { + "appid": 2382660, + "normalized_name": "the flying feathers" + }, + { + "appid": 2382670, + "normalized_name": "gangs of asia" + }, + { + "appid": 2382710, + "normalized_name": "hare 136" + }, + { + "appid": 2382730, + "normalized_name": "axecutioners" + }, + { + "appid": 2382770, + "normalized_name": "yappie! knockout" + }, + { + "appid": 2382780, + "normalized_name": "the monster war" + }, + { + "appid": 2382810, + "normalized_name": "dream channel zero" + }, + { + "appid": 2382870, + "normalized_name": "elevator" + }, + { + "appid": 2382910, + "normalized_name": "got winter is coming m" + }, + { + "appid": 2382920, + "normalized_name": "munchy mammals" + }, + { + "appid": 2382960, + "normalized_name": "runic defenders trials of ascension" + }, + { + "appid": 2382970, + "normalized_name": "crafty county" + }, + { + "appid": 2383020, + "normalized_name": "全民街篮" + }, + { + "appid": 2383050, + "normalized_name": "nature escapes 3" + }, + { + "appid": 2383080, + "normalized_name": "create your own universe" + }, + { + "appid": 2383120, + "normalized_name": "garten of banban 4" + }, + { + "appid": 2383130, + "normalized_name": "project mist" + }, + { + "appid": 2383180, + "normalized_name": "radiant guardians of light" + }, + { + "appid": 2383190, + "normalized_name": "creeping deck pharaoh's curse prologue" + }, + { + "appid": 2383200, + "normalized_name": "patapon 1+2 replay" + }, + { + "appid": 2383220, + "normalized_name": "detective stella porta case" + }, + { + "appid": 2383240, + "normalized_name": "ecumene aztec" + }, + { + "appid": 2383310, + "normalized_name": "the shadow's terror" + }, + { + "appid": 2383380, + "normalized_name": "puzzle party vr" + }, + { + "appid": 2383450, + "normalized_name": "rethink life" + }, + { + "appid": 2383520, + "normalized_name": "ziggy's labyrinth" + }, + { + "appid": 2383530, + "normalized_name": "廃病院探索" + }, + { + "appid": 2383620, + "normalized_name": "jolly roger" + }, + { + "appid": 2383650, + "normalized_name": "queen of dark" + }, + { + "appid": 2383660, + "normalized_name": "railed up" + }, + { + "appid": 2383700, + "normalized_name": "fursona festival" + }, + { + "appid": 2383710, + "normalized_name": "caveman ransom" + }, + { + "appid": 2383760, + "normalized_name": "monopoly madness" + }, + { + "appid": 2383770, + "normalized_name": "i commissioned some mice" + }, + { + "appid": 2383780, + "normalized_name": "treasure hunter history of monastery gold" + }, + { + "appid": 2383820, + "normalized_name": "super 10 pin" + }, + { + "appid": 2383830, + "normalized_name": "graveyard sprint" + }, + { + "appid": 2383850, + "normalized_name": "vacuum cleaner robot simulator pile sos" + }, + { + "appid": 2383860, + "normalized_name": "octodad (student edition)" + }, + { + "appid": 2383870, + "normalized_name": "fate of new albans" + }, + { + "appid": 2383880, + "normalized_name": "market warfare" + }, + { + "appid": 2383900, + "normalized_name": "forbidden sparks of passion" + }, + { + "appid": 2383920, + "normalized_name": "full quiet" + }, + { + "appid": 2383940, + "normalized_name": "tiny realms" + }, + { + "appid": 2383960, + "normalized_name": "shroom siege" + }, + { + "appid": 2383970, + "normalized_name": "your world vr" + }, + { + "appid": 2383990, + "normalized_name": "ghostbusters spirits unleashed ecto" + }, + { + "appid": 2384000, + "normalized_name": "molten horn" + }, + { + "appid": 2384010, + "normalized_name": "grandma's cheese" + }, + { + "appid": 2384050, + "normalized_name": "moon0011" + }, + { + "appid": 2384090, + "normalized_name": "dice dice dice a roll playing game" + }, + { + "appid": 2384120, + "normalized_name": "wreck" + }, + { + "appid": 2384130, + "normalized_name": "shell of a king" + }, + { + "appid": 2384140, + "normalized_name": "luminous skies a short adventure" + }, + { + "appid": 2384190, + "normalized_name": "brave bubble heart" + }, + { + "appid": 2384230, + "normalized_name": "meatgun" + }, + { + "appid": 2384240, + "normalized_name": "never meet your heroes" + }, + { + "appid": 2384250, + "normalized_name": "mystic blast" + }, + { + "appid": 2384280, + "normalized_name": "love love joe biden the joe biden dating simulator" + }, + { + "appid": 2384290, + "normalized_name": "吞食魏蜀吴" + }, + { + "appid": 2384300, + "normalized_name": "duck hunt vr" + }, + { + "appid": 2384310, + "normalized_name": "neverhome ch.1 hall of apathy" + }, + { + "appid": 2384320, + "normalized_name": "the goblins are coming" + }, + { + "appid": 2384350, + "normalized_name": "penguin noir" + }, + { + "appid": 2384360, + "normalized_name": "ultranova" + }, + { + "appid": 2384380, + "normalized_name": "family farm 2023" + }, + { + "appid": 2384390, + "normalized_name": "coffee dates" + }, + { + "appid": 2384430, + "normalized_name": "driving strikers" + }, + { + "appid": 2384440, + "normalized_name": "game master module" + }, + { + "appid": 2384470, + "normalized_name": "blood pivot" + }, + { + "appid": 2384510, + "normalized_name": "broken world restored" + }, + { + "appid": 2384580, + "normalized_name": "dynasty warriors origins" + }, + { + "appid": 2384600, + "normalized_name": "monster college" + }, + { + "appid": 2384610, + "normalized_name": "franchise hockey manager 10" + }, + { + "appid": 2384640, + "normalized_name": "wild tactics" + }, + { + "appid": 2384680, + "normalized_name": "little ghosthunter" + }, + { + "appid": 2384710, + "normalized_name": "midline '85" + }, + { + "appid": 2384720, + "normalized_name": "astebros" + }, + { + "appid": 2384730, + "normalized_name": "beyond the ice palace 2" + }, + { + "appid": 2384780, + "normalized_name": "idle dragon clicker" + }, + { + "appid": 2384790, + "normalized_name": "paranormal mission" + }, + { + "appid": 2384800, + "normalized_name": "starjet fights" + }, + { + "appid": 2384840, + "normalized_name": "category challenge" + }, + { + "appid": 2384850, + "normalized_name": "bottle" + }, + { + "appid": 2384860, + "normalized_name": "capitals quizzer" + }, + { + "appid": 2384890, + "normalized_name": "get out joey!" + }, + { + "appid": 2384900, + "normalized_name": "shudderstep" + }, + { + "appid": 2384920, + "normalized_name": "消防员康纳 firefighter connor" + }, + { + "appid": 2384940, + "normalized_name": "pixel madness" + }, + { + "appid": 2384990, + "normalized_name": "kidnapped" + }, + { + "appid": 2385090, + "normalized_name": "アパシー学校であった怖い話1995特別編" + }, + { + "appid": 2385120, + "normalized_name": "wild mutation" + }, + { + "appid": 2385140, + "normalized_name": "personal trainer" + }, + { + "appid": 2385190, + "normalized_name": "precision of insight" + }, + { + "appid": 2385210, + "normalized_name": "tulgey wood" + }, + { + "appid": 2385230, + "normalized_name": "bad times at the silver lake" + }, + { + "appid": 2385240, + "normalized_name": "spellstrife" + }, + { + "appid": 2385260, + "normalized_name": "grim tales dual disposition collector's" + }, + { + "appid": 2385280, + "normalized_name": "palm blocks" + }, + { + "appid": 2385290, + "normalized_name": "spacejump" + }, + { + "appid": 2385310, + "normalized_name": "wordsock classic" + }, + { + "appid": 2385320, + "normalized_name": "virgin knight is my onahole tonight" + }, + { + "appid": 2385330, + "normalized_name": "emiline the ghost of white willow" + }, + { + "appid": 2385350, + "normalized_name": "mahjong stories vampire romance" + }, + { + "appid": 2385360, + "normalized_name": "ecomahjong" + }, + { + "appid": 2385370, + "normalized_name": "patchwork beast" + }, + { + "appid": 2385450, + "normalized_name": "ucaptain2 world of fishing" + }, + { + "appid": 2385480, + "normalized_name": "daahrien's active and operational" + }, + { + "appid": 2385490, + "normalized_name": "unfortunate tales of violet" + }, + { + "appid": 2385510, + "normalized_name": "infinity fury" + }, + { + "appid": 2385520, + "normalized_name": "inverse" + }, + { + "appid": 2385530, + "normalized_name": "pga tour 2k25" + }, + { + "appid": 2385550, + "normalized_name": "underground22" + }, + { + "appid": 2385560, + "normalized_name": "shadow prisoner" + }, + { + "appid": 2385590, + "normalized_name": "telluria forebodings" + }, + { + "appid": 2385620, + "normalized_name": "cavera the island of apes" + }, + { + "appid": 2385630, + "normalized_name": "clawed cult" + }, + { + "appid": 2385660, + "normalized_name": "the city of fury" + }, + { + "appid": 2385670, + "normalized_name": "down under" + }, + { + "appid": 2385680, + "normalized_name": "cordelia" + }, + { + "appid": 2385690, + "normalized_name": "shanghai1920 xz" + }, + { + "appid": 2385720, + "normalized_name": "the police mystery" + }, + { + "appid": 2385780, + "normalized_name": "boxr" + }, + { + "appid": 2385800, + "normalized_name": "a good place to die" + }, + { + "appid": 2385810, + "normalized_name": "little world" + }, + { + "appid": 2385850, + "normalized_name": "jackpot" + }, + { + "appid": 2385910, + "normalized_name": "x dead detective" + }, + { + "appid": 2385920, + "normalized_name": "jump and challenge 100 floors" + }, + { + "appid": 2385970, + "normalized_name": "kardashev" + }, + { + "appid": 2385980, + "normalized_name": "shadow saboteur" + }, + { + "appid": 2385990, + "normalized_name": "pixels n pistols" + }, + { + "appid": 2386000, + "normalized_name": "果てのマキナ" + }, + { + "appid": 2386070, + "normalized_name": "反弹枪 rebound gun" + }, + { + "appid": 2386090, + "normalized_name": "reincarnation" + }, + { + "appid": 2386160, + "normalized_name": "skeleton hotel season 10" + }, + { + "appid": 2386200, + "normalized_name": "psi" + }, + { + "appid": 2386240, + "normalized_name": "lus last unit standing" + }, + { + "appid": 2386250, + "normalized_name": "it gets so lonely here" + }, + { + "appid": 2386310, + "normalized_name": "ultros" + }, + { + "appid": 2386330, + "normalized_name": "cat search in medieval times" + }, + { + "appid": 2386350, + "normalized_name": "marauder of dystopia the weakest go to the wall" + }, + { + "appid": 2386370, + "normalized_name": "last life" + }, + { + "appid": 2386380, + "normalized_name": "the mighty claw" + }, + { + "appid": 2386400, + "normalized_name": "road dealer simulator" + }, + { + "appid": 2386420, + "normalized_name": "momoinc" + }, + { + "appid": 2386430, + "normalized_name": "thunderday" + }, + { + "appid": 2386450, + "normalized_name": "i am rabbit" + }, + { + "appid": 2386470, + "normalized_name": "kikstart off road simulator (c64/c128)" + }, + { + "appid": 2386490, + "normalized_name": "lands of shinoah" + }, + { + "appid": 2386520, + "normalized_name": "pixel tank" + }, + { + "appid": 2386560, + "normalized_name": "carnage cuisine" + }, + { + "appid": 2386580, + "normalized_name": "project hardline" + }, + { + "appid": 2386590, + "normalized_name": "dwarfender" + }, + { + "appid": 2386610, + "normalized_name": "wandering skies" + }, + { + "appid": 2386620, + "normalized_name": "labyrinth" + }, + { + "appid": 2386670, + "normalized_name": "shooter" + }, + { + "appid": 2386700, + "normalized_name": "enchanted voyage" + }, + { + "appid": 2386710, + "normalized_name": "everlasting abundance" + }, + { + "appid": 2386720, + "normalized_name": "straftat" + }, + { + "appid": 2386750, + "normalized_name": "hentai pussy 7" + }, + { + "appid": 2386770, + "normalized_name": "hardlight" + }, + { + "appid": 2386790, + "normalized_name": "nomad station" + }, + { + "appid": 2386800, + "normalized_name": "space order mine" + }, + { + "appid": 2386840, + "normalized_name": "数据结构之森" + }, + { + "appid": 2386850, + "normalized_name": "raw nerve" + }, + { + "appid": 2386870, + "normalized_name": "furry femboys" + }, + { + "appid": 2386880, + "normalized_name": "snow queen a fairy tale for a big boy" + }, + { + "appid": 2386910, + "normalized_name": "starshapes" + }, + { + "appid": 2386920, + "normalized_name": "cast out colony" + }, + { + "appid": 2386930, + "normalized_name": "nature is hungry" + }, + { + "appid": 2386970, + "normalized_name": "bifröst through the realms" + }, + { + "appid": 2387010, + "normalized_name": "infested lands" + }, + { + "appid": 2387020, + "normalized_name": "winter stealth" + }, + { + "appid": 2387030, + "normalized_name": "brave adventurer" + }, + { + "appid": 2387040, + "normalized_name": "legends of the round table" + }, + { + "appid": 2387100, + "normalized_name": "derpy dino" + }, + { + "appid": 2387110, + "normalized_name": "green reaper" + }, + { + "appid": 2387120, + "normalized_name": "interstellar expedition" + }, + { + "appid": 2387130, + "normalized_name": "kaisho" + }, + { + "appid": 2387140, + "normalized_name": "lazy jiangshi" + }, + { + "appid": 2387150, + "normalized_name": "hentai breeding simulator" + }, + { + "appid": 2387200, + "normalized_name": "the final front" + }, + { + "appid": 2387210, + "normalized_name": "mirage" + }, + { + "appid": 2387270, + "normalized_name": "frenemies" + }, + { + "appid": 2387280, + "normalized_name": "operation space force" + }, + { + "appid": 2387290, + "normalized_name": "nbf0" + }, + { + "appid": 2387300, + "normalized_name": "绝尘" + }, + { + "appid": 2387310, + "normalized_name": "magic paper" + }, + { + "appid": 2387350, + "normalized_name": "nebula's descent" + }, + { + "appid": 2387380, + "normalized_name": "bare witness" + }, + { + "appid": 2387400, + "normalized_name": "commander world war ii" + }, + { + "appid": 2387410, + "normalized_name": "aleph" + }, + { + "appid": 2387430, + "normalized_name": "sky the scraper" + }, + { + "appid": 2387450, + "normalized_name": "slay the abyss" + }, + { + "appid": 2387460, + "normalized_name": "aureole wings of hope" + }, + { + "appid": 2387470, + "normalized_name": "mr. elevator" + }, + { + "appid": 2387480, + "normalized_name": "somewhere" + }, + { + "appid": 2387560, + "normalized_name": "the meridian gate" + }, + { + "appid": 2387590, + "normalized_name": "fairy biography4 affair" + }, + { + "appid": 2387660, + "normalized_name": "absurdika" + }, + { + "appid": 2387670, + "normalized_name": "as one we survive" + }, + { + "appid": 2387700, + "normalized_name": "settle gliese" + }, + { + "appid": 2387720, + "normalized_name": "おいでませ、こくりさん welcome kokurisan" + }, + { + "appid": 2387740, + "normalized_name": "light of atlantis" + }, + { + "appid": 2387750, + "normalized_name": "rune bender vr" + }, + { + "appid": 2387770, + "normalized_name": "pens the freeware collection" + }, + { + "appid": 2387780, + "normalized_name": "龙傲天的多元宇宙" + }, + { + "appid": 2387820, + "normalized_name": "beach gas gas" + }, + { + "appid": 2387830, + "normalized_name": "people jumping tower" + }, + { + "appid": 2387840, + "normalized_name": "residential evaluation" + }, + { + "appid": 2387950, + "normalized_name": "kalevania" + }, + { + "appid": 2388010, + "normalized_name": "drone operator guerilla warfare" + }, + { + "appid": 2388020, + "normalized_name": "invasion family ties" + }, + { + "appid": 2388030, + "normalized_name": "logigolf" + }, + { + "appid": 2388070, + "normalized_name": "criminal archives alphabetic murders collector's" + }, + { + "appid": 2388110, + "normalized_name": "murder cases" + }, + { + "appid": 2388140, + "normalized_name": "a shadow of time" + }, + { + "appid": 2388190, + "normalized_name": "rite as rain" + }, + { + "appid": 2388200, + "normalized_name": "cattle hyperdrive" + }, + { + "appid": 2388250, + "normalized_name": "uprising humanum" + }, + { + "appid": 2388360, + "normalized_name": "(val)iant or val's guide to having a broken vag" + }, + { + "appid": 2388390, + "normalized_name": "3d puzzle vintage house" + }, + { + "appid": 2388400, + "normalized_name": "mech mastery" + }, + { + "appid": 2388410, + "normalized_name": "world war an age of industry & magic" + }, + { + "appid": 2388420, + "normalized_name": "steam punks" + }, + { + "appid": 2388430, + "normalized_name": "the interview chapter one" + }, + { + "appid": 2388440, + "normalized_name": "battlecore robots" + }, + { + "appid": 2388460, + "normalized_name": "pathfinder gallowspire survivors" + }, + { + "appid": 2388470, + "normalized_name": "aphrodite's bathhouse" + }, + { + "appid": 2388480, + "normalized_name": "hatland" + }, + { + "appid": 2388510, + "normalized_name": "mage tower a tower defense card game" + }, + { + "appid": 2388520, + "normalized_name": "kessler syndrome" + }, + { + "appid": 2388540, + "normalized_name": "reikon reawaken" + }, + { + "appid": 2388580, + "normalized_name": "forest of deceit" + }, + { + "appid": 2388600, + "normalized_name": "mythical mayhem" + }, + { + "appid": 2388610, + "normalized_name": "champions of quortz" + }, + { + "appid": 2388620, + "normalized_name": "d.o.r.f. real time strategic conflict" + }, + { + "appid": 2388670, + "normalized_name": "speedy guys" + }, + { + "appid": 2388690, + "normalized_name": "forever in the backrooms" + }, + { + "appid": 2388720, + "normalized_name": "veronica" + }, + { + "appid": 2388740, + "normalized_name": "spectra echo vr" + }, + { + "appid": 2388750, + "normalized_name": "arm of satan chapter 1" + }, + { + "appid": 2388810, + "normalized_name": "霓幻云端 neonhclouds" + }, + { + "appid": 2388820, + "normalized_name": "eternal survivor" + }, + { + "appid": 2388850, + "normalized_name": "wukong odyssey" + }, + { + "appid": 2388860, + "normalized_name": "star apprentice dazzling danmaku detective" + }, + { + "appid": 2388880, + "normalized_name": "2 volt" + }, + { + "appid": 2388890, + "normalized_name": "save king" + }, + { + "appid": 2388900, + "normalized_name": "bor dungeon" + }, + { + "appid": 2388920, + "normalized_name": "soulers" + }, + { + "appid": 2388970, + "normalized_name": "我的大四幸福生活" + }, + { + "appid": 2388980, + "normalized_name": "shovelboy" + }, + { + "appid": 2388990, + "normalized_name": "shadowkitty thief by night" + }, + { + "appid": 2389000, + "normalized_name": "dr wan" + }, + { + "appid": 2389010, + "normalized_name": "琉璃异闻录:远行序章" + }, + { + "appid": 2389020, + "normalized_name": "dreadwoods gatekeeper" + }, + { + "appid": 2389030, + "normalized_name": "soul cliff" + }, + { + "appid": 2389040, + "normalized_name": "shapehero factory" + }, + { + "appid": 2389100, + "normalized_name": "z ape tower defense" + }, + { + "appid": 2389120, + "normalized_name": "战姬军团" + }, + { + "appid": 2389140, + "normalized_name": "swordmin'z dream" + }, + { + "appid": 2389150, + "normalized_name": "sword & shield simulator prologue" + }, + { + "appid": 2389170, + "normalized_name": "华夏史诗:战国" + }, + { + "appid": 2389220, + "normalized_name": "sandara city of a thousand eclipses" + }, + { + "appid": 2389230, + "normalized_name": "necrotic haze" + }, + { + "appid": 2389240, + "normalized_name": "g.o.p.o.t.a" + }, + { + "appid": 2389250, + "normalized_name": "mailpop" + }, + { + "appid": 2389260, + "normalized_name": "aldro" + }, + { + "appid": 2389270, + "normalized_name": "ink neko maid" + }, + { + "appid": 2389290, + "normalized_name": "please" + }, + { + "appid": 2389310, + "normalized_name": "love sex & fitness" + }, + { + "appid": 2389340, + "normalized_name": "phantom blaze" + }, + { + "appid": 2389360, + "normalized_name": "darwins trash" + }, + { + "appid": 2389410, + "normalized_name": "amber's tale" + }, + { + "appid": 2389420, + "normalized_name": "the last z vr" + }, + { + "appid": 2389440, + "normalized_name": "little postman" + }, + { + "appid": 2389480, + "normalized_name": "starcade factions" + }, + { + "appid": 2389500, + "normalized_name": "skiing frenzy" + }, + { + "appid": 2389530, + "normalized_name": "barrett foster chapter one" + }, + { + "appid": 2389560, + "normalized_name": "9 lives to defend" + }, + { + "appid": 2389570, + "normalized_name": "sniper killer" + }, + { + "appid": 2389600, + "normalized_name": "tuya" + }, + { + "appid": 2389610, + "normalized_name": "reflectile" + }, + { + "appid": 2389660, + "normalized_name": "farkas the last redhaft" + }, + { + "appid": 2389680, + "normalized_name": "cannonpistol" + }, + { + "appid": 2389700, + "normalized_name": "my monstrous roommate. (étude)" + }, + { + "appid": 2389710, + "normalized_name": "rain and respite" + }, + { + "appid": 2389770, + "normalized_name": "arobynn below the surface" + }, + { + "appid": 2389800, + "normalized_name": "inferno quest journey through the lava cavern" + }, + { + "appid": 2389810, + "normalized_name": "georgie and me" + }, + { + "appid": 2389830, + "normalized_name": "閃攻機人アスラ asura the striker" + }, + { + "appid": 2389860, + "normalized_name": "h girl 3" + }, + { + "appid": 2389880, + "normalized_name": "the adventures of linshanhai chapter4 vanishing masterpiece" + }, + { + "appid": 2389890, + "normalized_name": "city of dusk" + }, + { + "appid": 2389900, + "normalized_name": "不测之星" + }, + { + "appid": 2389930, + "normalized_name": "ayase the sexy archer" + }, + { + "appid": 2389940, + "normalized_name": "jump dodge die repeat" + }, + { + "appid": 2390000, + "normalized_name": "alchemist's fantasy r ~ a girl's alchemic furnace ~" + }, + { + "appid": 2390020, + "normalized_name": "press axe" + }, + { + "appid": 2390060, + "normalized_name": "deskape" + }, + { + "appid": 2390070, + "normalized_name": "pocket puzzle" + }, + { + "appid": 2390130, + "normalized_name": "design and conjure" + }, + { + "appid": 2390160, + "normalized_name": "琉璃烟火 flame in glass" + }, + { + "appid": 2390170, + "normalized_name": "birnchen & friends minor confrontations" + }, + { + "appid": 2390220, + "normalized_name": "expel" + }, + { + "appid": 2390230, + "normalized_name": "the chef's shift" + }, + { + "appid": 2390260, + "normalized_name": "topple tactics" + }, + { + "appid": 2390290, + "normalized_name": "d96 kansei" + }, + { + "appid": 2390310, + "normalized_name": "deadblast" + }, + { + "appid": 2390360, + "normalized_name": "aviophobia" + }, + { + "appid": 2390410, + "normalized_name": "1 billion spells" + }, + { + "appid": 2390420, + "normalized_name": "being the game" + }, + { + "appid": 2390450, + "normalized_name": "stryke" + }, + { + "appid": 2390480, + "normalized_name": "beach invasion 1945 pacific" + }, + { + "appid": 2390490, + "normalized_name": "neocars" + }, + { + "appid": 2390500, + "normalized_name": "there's always a madman fight or flight" + }, + { + "appid": 2390510, + "normalized_name": "you have 10 seconds (2023)" + }, + { + "appid": 2390520, + "normalized_name": "trans neuronica" + }, + { + "appid": 2390530, + "normalized_name": "planet of war the legend of fu" + }, + { + "appid": 2390580, + "normalized_name": "hyper hentai devil hell" + }, + { + "appid": 2390590, + "normalized_name": "i commissioned some butterflies" + }, + { + "appid": 2390600, + "normalized_name": "i commissioned some letters" + }, + { + "appid": 2390650, + "normalized_name": "boomeraxe" + }, + { + "appid": 2390660, + "normalized_name": "collapsed galaxy 2" + }, + { + "appid": 2390670, + "normalized_name": "assassin the first list (beta)" + }, + { + "appid": 2390680, + "normalized_name": "arcane warlords" + }, + { + "appid": 2390700, + "normalized_name": "edingir odyssey" + }, + { + "appid": 2390730, + "normalized_name": "knight trail" + }, + { + "appid": 2390750, + "normalized_name": "doppa" + }, + { + "appid": 2390780, + "normalized_name": "1984" + }, + { + "appid": 2390820, + "normalized_name": "save city r" + }, + { + "appid": 2390840, + "normalized_name": "zombie defense the last frontier" + }, + { + "appid": 2390850, + "normalized_name": "ially" + }, + { + "appid": 2390860, + "normalized_name": "mine" + }, + { + "appid": 2390880, + "normalized_name": "super sad banana" + }, + { + "appid": 2390900, + "normalized_name": "stim" + }, + { + "appid": 2390910, + "normalized_name": "arcane revolt" + }, + { + "appid": 2390940, + "normalized_name": "pempe" + }, + { + "appid": 2391040, + "normalized_name": "teacher certification hell" + }, + { + "appid": 2391050, + "normalized_name": "blaster panic" + }, + { + "appid": 2391080, + "normalized_name": "zone vx" + }, + { + "appid": 2391090, + "normalized_name": "astronave" + }, + { + "appid": 2391100, + "normalized_name": "button vr expeditions" + }, + { + "appid": 2391110, + "normalized_name": "rhythm league heroes" + }, + { + "appid": 2391120, + "normalized_name": "amalgamare" + }, + { + "appid": 2391140, + "normalized_name": "hotel manibella" + }, + { + "appid": 2391180, + "normalized_name": "warlock's gantlet" + }, + { + "appid": 2391200, + "normalized_name": "floomy" + }, + { + "appid": 2391240, + "normalized_name": "traitorous trek" + }, + { + "appid": 2391260, + "normalized_name": "pixel fish" + }, + { + "appid": 2391300, + "normalized_name": "the dev enter the blockchain" + }, + { + "appid": 2391310, + "normalized_name": "lies of astaroth" + }, + { + "appid": 2391400, + "normalized_name": "grand tanks" + }, + { + "appid": 2391420, + "normalized_name": "below the surface uncovering the truth in the sewers" + }, + { + "appid": 2391440, + "normalized_name": "life saver" + }, + { + "appid": 2391490, + "normalized_name": "sorcerer's mid month exam" + }, + { + "appid": 2391570, + "normalized_name": "battle for cosmos" + }, + { + "appid": 2391580, + "normalized_name": "bindmancer" + }, + { + "appid": 2391610, + "normalized_name": "horse life find horses in open world survive in wild nature as a foal or pony" + }, + { + "appid": 2391640, + "normalized_name": "binding of elements" + }, + { + "appid": 2391650, + "normalized_name": "monarchy" + }, + { + "appid": 2391680, + "normalized_name": "月藍傳奇remake古文明之謎" + }, + { + "appid": 2391690, + "normalized_name": "blue maiden" + }, + { + "appid": 2391750, + "normalized_name": "tiny elf" + }, + { + "appid": 2391780, + "normalized_name": "hime's blossom" + }, + { + "appid": 2391800, + "normalized_name": "square brain" + }, + { + "appid": 2391830, + "normalized_name": "word warrior zombie typocalypse" + }, + { + "appid": 2391840, + "normalized_name": "ネジ込みシミュレーターtma01 たゆゆなメイドの限定裏配信 【巨乳メイドを強力ピストンバイブで連続アクメ調教】" + }, + { + "appid": 2391870, + "normalized_name": "marequest an interactive tail" + }, + { + "appid": 2391900, + "normalized_name": "champion shift" + }, + { + "appid": 2391910, + "normalized_name": "gather" + }, + { + "appid": 2391940, + "normalized_name": "enigma station" + }, + { + "appid": 2391950, + "normalized_name": "a thug's ascension" + }, + { + "appid": 2391990, + "normalized_name": "highland panic" + }, + { + "appid": 2392000, + "normalized_name": "ultra foodmess 2" + }, + { + "appid": 2392010, + "normalized_name": "heat division rescue team" + }, + { + "appid": 2392040, + "normalized_name": "antbassador" + }, + { + "appid": 2392060, + "normalized_name": "闲置显摆器" + }, + { + "appid": 2392070, + "normalized_name": "bullet time battle" + }, + { + "appid": 2392140, + "normalized_name": "eye of saccharine" + }, + { + "appid": 2392150, + "normalized_name": "jump up jerry!" + }, + { + "appid": 2392160, + "normalized_name": "abscission" + }, + { + "appid": 2392230, + "normalized_name": "the groom of gallagher mansion" + }, + { + "appid": 2392280, + "normalized_name": "tds tower defense strategy" + }, + { + "appid": 2392310, + "normalized_name": "エルミナージュoriginal ~闇の巫女と神々の指輪~" + }, + { + "appid": 2392330, + "normalized_name": "the red sun" + }, + { + "appid": 2392400, + "normalized_name": "island paradise" + }, + { + "appid": 2392420, + "normalized_name": "wisplight" + }, + { + "appid": 2392430, + "normalized_name": "carrot the first seed" + }, + { + "appid": 2392440, + "normalized_name": "crescent lands" + }, + { + "appid": 2392480, + "normalized_name": "monster memory" + }, + { + "appid": 2392500, + "normalized_name": "ever 17 the out of infinity" + }, + { + "appid": 2392520, + "normalized_name": "power & revolution 2023" + }, + { + "appid": 2392660, + "normalized_name": "mencia. a never was tale." + }, + { + "appid": 2392690, + "normalized_name": "medieval simulators baker" + }, + { + "appid": 2392730, + "normalized_name": "notes of my silence" + }, + { + "appid": 2392740, + "normalized_name": "cave digger 2" + }, + { + "appid": 2392760, + "normalized_name": "glass2" + }, + { + "appid": 2392780, + "normalized_name": "viking invaders" + }, + { + "appid": 2392790, + "normalized_name": "ssen" + }, + { + "appid": 2392810, + "normalized_name": "wound man" + }, + { + "appid": 2392850, + "normalized_name": "triplane furball" + }, + { + "appid": 2392900, + "normalized_name": "mechanical keyboard building simulator" + }, + { + "appid": 2392960, + "normalized_name": "goblin survivors" + }, + { + "appid": 2392980, + "normalized_name": "heart electric" + }, + { + "appid": 2392990, + "normalized_name": "trailblazer (c64/cpc/spectrum)" + }, + { + "appid": 2393030, + "normalized_name": "solo hunt" + }, + { + "appid": 2393050, + "normalized_name": "winterland" + }, + { + "appid": 2393100, + "normalized_name": "gokadu" + }, + { + "appid": 2393130, + "normalized_name": "spellarium" + }, + { + "appid": 2393140, + "normalized_name": "slave of the succubus" + }, + { + "appid": 2393160, + "normalized_name": "nice day for fishing" + }, + { + "appid": 2393180, + "normalized_name": "darkfall survival" + }, + { + "appid": 2393250, + "normalized_name": "zomg!" + }, + { + "appid": 2393290, + "normalized_name": "they speak from the abyss zenith" + }, + { + "appid": 2393330, + "normalized_name": "on the wind's breath" + }, + { + "appid": 2393340, + "normalized_name": "runeroots td" + }, + { + "appid": 2393370, + "normalized_name": "dustgrave a sandbox rpg" + }, + { + "appid": 2393410, + "normalized_name": "the rusty longsword" + }, + { + "appid": 2393420, + "normalized_name": "silence of elven mage rin" + }, + { + "appid": 2393460, + "normalized_name": "city of corals" + }, + { + "appid": 2393470, + "normalized_name": "edge of grief" + }, + { + "appid": 2393490, + "normalized_name": "night of wolves" + }, + { + "appid": 2393510, + "normalized_name": "master of luna" + }, + { + "appid": 2393550, + "normalized_name": "jump to survive 2" + }, + { + "appid": 2393580, + "normalized_name": "the dead await" + }, + { + "appid": 2393590, + "normalized_name": "blockade a game of blocks" + }, + { + "appid": 2393630, + "normalized_name": "frontera" + }, + { + "appid": 2393670, + "normalized_name": "magic toenail" + }, + { + "appid": 2393730, + "normalized_name": "legendary pilots" + }, + { + "appid": 2393760, + "normalized_name": "tall trails" + }, + { + "appid": 2393770, + "normalized_name": "bang average football" + }, + { + "appid": 2393790, + "normalized_name": "sweetland slumber party" + }, + { + "appid": 2393810, + "normalized_name": "fffl brutalball manager" + }, + { + "appid": 2393820, + "normalized_name": "游乐园奇妙夜" + }, + { + "appid": 2393860, + "normalized_name": "paradise nowhere" + }, + { + "appid": 2393870, + "normalized_name": "whispers of the luminaries" + }, + { + "appid": 2393880, + "normalized_name": "幽霊屋敷haunted house" + }, + { + "appid": 2393890, + "normalized_name": "ignistone" + }, + { + "appid": 2393900, + "normalized_name": "无限之书:侠之章 story of infinity xia" + }, + { + "appid": 2393910, + "normalized_name": "runelight" + }, + { + "appid": 2393920, + "normalized_name": "angeline era" + }, + { + "appid": 2394060, + "normalized_name": "tiling towers" + }, + { + "appid": 2394070, + "normalized_name": "melody mania" + }, + { + "appid": 2394110, + "normalized_name": "dickland tower defense" + }, + { + "appid": 2394130, + "normalized_name": "let's make a potion" + }, + { + "appid": 2394170, + "normalized_name": "bouncy motors" + }, + { + "appid": 2394190, + "normalized_name": "kid chaos" + }, + { + "appid": 2394240, + "normalized_name": "triad ball" + }, + { + "appid": 2394250, + "normalized_name": "rich dad simulator" + }, + { + "appid": 2394260, + "normalized_name": "rich dad simulator prologue" + }, + { + "appid": 2394300, + "normalized_name": "monster run downfall of the empire" + }, + { + "appid": 2394310, + "normalized_name": "inukari fateful detour" + }, + { + "appid": 2394330, + "normalized_name": "adventures of ben rabbit run" + }, + { + "appid": 2394350, + "normalized_name": "aerofly rc 10 rc flight simulator" + }, + { + "appid": 2394400, + "normalized_name": "dating izzie" + }, + { + "appid": 2394410, + "normalized_name": "plunder masters" + }, + { + "appid": 2394430, + "normalized_name": "professor goodboi's ballistics" + }, + { + "appid": 2394440, + "normalized_name": "the great below" + }, + { + "appid": 2394450, + "normalized_name": "frozen shelter" + }, + { + "appid": 2394460, + "normalized_name": "the outer rim" + }, + { + "appid": 2394500, + "normalized_name": "ia scatter city" + }, + { + "appid": 2394590, + "normalized_name": "just survive" + }, + { + "appid": 2394600, + "normalized_name": "last day of zombies" + }, + { + "appid": 2394610, + "normalized_name": "destroy all zombies" + }, + { + "appid": 2394630, + "normalized_name": "cursed fables twisted tower" + }, + { + "appid": 2394650, + "normalized_name": "crypt custodian" + }, + { + "appid": 2394680, + "normalized_name": "rocket jump frenzy" + }, + { + "appid": 2394740, + "normalized_name": "先端恐怖症" + }, + { + "appid": 2394770, + "normalized_name": "cabin of souls" + }, + { + "appid": 2394780, + "normalized_name": "guards new sequel" + }, + { + "appid": 2394810, + "normalized_name": "address1" + }, + { + "appid": 2394830, + "normalized_name": "snakedate" + }, + { + "appid": 2394840, + "normalized_name": "lucy's adventure" + }, + { + "appid": 2394870, + "normalized_name": "blood of a demon" + }, + { + "appid": 2394910, + "normalized_name": "young hearts" + }, + { + "appid": 2394930, + "normalized_name": "train games" + }, + { + "appid": 2394940, + "normalized_name": "secret backrooms 2" + }, + { + "appid": 2395000, + "normalized_name": "final nation" + }, + { + "appid": 2395010, + "normalized_name": "wished on guilt" + }, + { + "appid": 2395030, + "normalized_name": "melee spaceship" + }, + { + "appid": 2395060, + "normalized_name": "throne of egypt" + }, + { + "appid": 2395080, + "normalized_name": "dream of echo" + }, + { + "appid": 2395120, + "normalized_name": "milfvania ep. 1" + }, + { + "appid": 2395150, + "normalized_name": "demon lord reincarnation" + }, + { + "appid": 2395190, + "normalized_name": "unicyclist" + }, + { + "appid": 2395210, + "normalized_name": "tony hawk's pro skater 1 + 2" + }, + { + "appid": 2395220, + "normalized_name": "corpobots" + }, + { + "appid": 2395230, + "normalized_name": "forrace gt2d" + }, + { + "appid": 2395260, + "normalized_name": "midnight shift" + }, + { + "appid": 2395300, + "normalized_name": "octavio camacho" + }, + { + "appid": 2395310, + "normalized_name": "presences dark awakening" + }, + { + "appid": 2395360, + "normalized_name": "slime knight" + }, + { + "appid": 2395380, + "normalized_name": "ducklyte" + }, + { + "appid": 2395400, + "normalized_name": "exolotl zian" + }, + { + "appid": 2395410, + "normalized_name": "sol last light" + }, + { + "appid": 2395450, + "normalized_name": "re loaded" + }, + { + "appid": 2395460, + "normalized_name": "dinosaurs united" + }, + { + "appid": 2395470, + "normalized_name": "dungeonsmash" + }, + { + "appid": 2395510, + "normalized_name": "racing tanks!" + }, + { + "appid": 2395520, + "normalized_name": "karpatia order of the comet" + }, + { + "appid": 2395530, + "normalized_name": "sexual massage shop akari" + }, + { + "appid": 2395550, + "normalized_name": "desktop girlfriend neo" + }, + { + "appid": 2395580, + "normalized_name": "三国吞天传 幻想姬武神战记" + }, + { + "appid": 2395590, + "normalized_name": "御寇三世:龙虾天国" + }, + { + "appid": 2395620, + "normalized_name": "女神守护者" + }, + { + "appid": 2395630, + "normalized_name": "uchikano living with my lovers" + }, + { + "appid": 2395680, + "normalized_name": "unyielding succubus princess of arrogance" + }, + { + "appid": 2395690, + "normalized_name": "hentai casual jigsaw zombies" + }, + { + "appid": 2395730, + "normalized_name": "spiral up" + }, + { + "appid": 2395760, + "normalized_name": "magiccraft" + }, + { + "appid": 2395770, + "normalized_name": "never grave the witch and the curse" + }, + { + "appid": 2395790, + "normalized_name": "shark pinball" + }, + { + "appid": 2395810, + "normalized_name": "富豪派对重制版" + }, + { + "appid": 2395820, + "normalized_name": "safari pinball" + }, + { + "appid": 2395840, + "normalized_name": "world soccer pinball" + }, + { + "appid": 2395850, + "normalized_name": "dessert diy" + }, + { + "appid": 2395860, + "normalized_name": "mystical mixing" + }, + { + "appid": 2395890, + "normalized_name": "mummy pinball" + }, + { + "appid": 2395900, + "normalized_name": "halloween pinball" + }, + { + "appid": 2395910, + "normalized_name": "werewolf pinball" + }, + { + "appid": 2395940, + "normalized_name": "archihexago" + }, + { + "appid": 2395960, + "normalized_name": "ice truckers" + }, + { + "appid": 2396000, + "normalized_name": "poly jigsaw dinosaurs" + }, + { + "appid": 2396010, + "normalized_name": "laugh it up" + }, + { + "appid": 2396060, + "normalized_name": "survivor castaway island" + }, + { + "appid": 2396090, + "normalized_name": "aery flow of time" + }, + { + "appid": 2396120, + "normalized_name": "atom☭grad" + }, + { + "appid": 2396140, + "normalized_name": "paper dash ghost hunt" + }, + { + "appid": 2396150, + "normalized_name": "paper flight future battles" + }, + { + "appid": 2396160, + "normalized_name": "paper flight relic hunter" + }, + { + "appid": 2396180, + "normalized_name": "dragon wings" + }, + { + "appid": 2396190, + "normalized_name": "while sleeping" + }, + { + "appid": 2396200, + "normalized_name": "letalis" + }, + { + "appid": 2396220, + "normalized_name": "infinipicross 3" + }, + { + "appid": 2396240, + "normalized_name": "steamworld heist ii" + }, + { + "appid": 2396250, + "normalized_name": "matinta" + }, + { + "appid": 2396300, + "normalized_name": "my life of repayment" + }, + { + "appid": 2396320, + "normalized_name": "2023 alien bugs invade earth" + }, + { + "appid": 2396330, + "normalized_name": "forbidden magic" + }, + { + "appid": 2396340, + "normalized_name": "their majesties' pleasure" + }, + { + "appid": 2396350, + "normalized_name": "hentai beach memories" + }, + { + "appid": 2396380, + "normalized_name": "黑暗塔 (the dark tower)" + }, + { + "appid": 2396400, + "normalized_name": "canvas menagerie" + }, + { + "appid": 2396450, + "normalized_name": "violent selection" + }, + { + "appid": 2396510, + "normalized_name": "castaway station" + }, + { + "appid": 2396530, + "normalized_name": "brainroll" + }, + { + "appid": 2396540, + "normalized_name": "mediterranean vr" + }, + { + "appid": 2396620, + "normalized_name": "a hint of purple" + }, + { + "appid": 2396630, + "normalized_name": "unsupervised" + }, + { + "appid": 2396640, + "normalized_name": "catch the fox" + }, + { + "appid": 2396660, + "normalized_name": "anchored hearts a tale of destiny" + }, + { + "appid": 2396670, + "normalized_name": "mystic mischief" + }, + { + "appid": 2396680, + "normalized_name": "madness chambers" + }, + { + "appid": 2396690, + "normalized_name": "just life a new farmer's story" + }, + { + "appid": 2396740, + "normalized_name": "morningstar book of the fallen" + }, + { + "appid": 2396760, + "normalized_name": "shellshot arena" + }, + { + "appid": 2396770, + "normalized_name": "balium" + }, + { + "appid": 2396800, + "normalized_name": "ボクらの消しゴム落とし3 世界編" + }, + { + "appid": 2396830, + "normalized_name": "boxed tower actual tower defense" + }, + { + "appid": 2396860, + "normalized_name": "肉食ギャルは清純派!? ~ innocent stuck up girls ~" + }, + { + "appid": 2396900, + "normalized_name": "엔스펠" + }, + { + "appid": 2396910, + "normalized_name": "吞食天地2:誕生reborn" + }, + { + "appid": 2396980, + "normalized_name": "fate/stay night" + }, + { + "appid": 2397000, + "normalized_name": "no border" + }, + { + "appid": 2397110, + "normalized_name": "最後の恋、僕にください" + }, + { + "appid": 2397120, + "normalized_name": "subpar pool" + }, + { + "appid": 2397140, + "normalized_name": "tokyo psychodemic" + }, + { + "appid": 2397230, + "normalized_name": "freak hunter a retro type" + }, + { + "appid": 2397240, + "normalized_name": "frozen below arctic expedition" + }, + { + "appid": 2397250, + "normalized_name": "big helmet heroes" + }, + { + "appid": 2397260, + "normalized_name": "loot and shoot" + }, + { + "appid": 2397300, + "normalized_name": "half sword" + }, + { + "appid": 2397370, + "normalized_name": "missile collector man" + }, + { + "appid": 2397380, + "normalized_name": "the cold hand" + }, + { + "appid": 2397400, + "normalized_name": "unnatural season two" + }, + { + "appid": 2397420, + "normalized_name": "hot candy land" + }, + { + "appid": 2397440, + "normalized_name": "momogatari" + }, + { + "appid": 2397450, + "normalized_name": "dust raiders" + }, + { + "appid": 2397490, + "normalized_name": "the tarot experience vr" + }, + { + "appid": 2397500, + "normalized_name": "the smurfs 2 the prisoner of the green stone" + }, + { + "appid": 2397510, + "normalized_name": "corsairs battle of the caribbean" + }, + { + "appid": 2397600, + "normalized_name": "realms of flow" + }, + { + "appid": 2397630, + "normalized_name": "bad egg" + }, + { + "appid": 2397690, + "normalized_name": "blooby block" + }, + { + "appid": 2397700, + "normalized_name": "crystal of atlantis" + }, + { + "appid": 2397750, + "normalized_name": "the omins" + }, + { + "appid": 2397770, + "normalized_name": "seduce her harem" + }, + { + "appid": 2397810, + "normalized_name": "jet attack" + }, + { + "appid": 2397830, + "normalized_name": "hexa puzzle saga" + }, + { + "appid": 2397840, + "normalized_name": "owinka shooter 2" + }, + { + "appid": 2397880, + "normalized_name": "a maze dream the puzzle journey" + }, + { + "appid": 2397910, + "normalized_name": "transfusion" + }, + { + "appid": 2397950, + "normalized_name": "蒼い夏休み" + }, + { + "appid": 2398000, + "normalized_name": "mega maze" + }, + { + "appid": 2398010, + "normalized_name": "polygon游戏编辑器" + }, + { + "appid": 2398020, + "normalized_name": "tuk tuk race" + }, + { + "appid": 2398030, + "normalized_name": "fpv logic" + }, + { + "appid": 2398110, + "normalized_name": "get rich slow" + }, + { + "appid": 2398120, + "normalized_name": "roma incognita" + }, + { + "appid": 2398130, + "normalized_name": "supergalactix" + }, + { + "appid": 2398140, + "normalized_name": "bail force cyberpunk bounty hunters" + }, + { + "appid": 2398170, + "normalized_name": "bore blasters" + }, + { + "appid": 2398190, + "normalized_name": "labophobia" + }, + { + "appid": 2398210, + "normalized_name": "interactive gun range" + }, + { + "appid": 2398220, + "normalized_name": "the hero's way" + }, + { + "appid": 2398240, + "normalized_name": "milites fortunae" + }, + { + "appid": 2398260, + "normalized_name": "池畔追思 poolcore reflection" + }, + { + "appid": 2398290, + "normalized_name": "king of the arcade" + }, + { + "appid": 2398300, + "normalized_name": "chris the element runner" + }, + { + "appid": 2398310, + "normalized_name": "alter ego" + }, + { + "appid": 2398350, + "normalized_name": "eclectic expansion enterprise" + }, + { + "appid": 2398360, + "normalized_name": "destroy the wall" + }, + { + "appid": 2398370, + "normalized_name": "don't drown" + }, + { + "appid": 2398410, + "normalized_name": "hyper hentai sexy sensei" + }, + { + "appid": 2398430, + "normalized_name": "perfect dice" + }, + { + "appid": 2398450, + "normalized_name": "classic marathon" + }, + { + "appid": 2398480, + "normalized_name": "keystone titans vr" + }, + { + "appid": 2398490, + "normalized_name": "classic marathon 2" + }, + { + "appid": 2398520, + "normalized_name": "classic marathon infinity" + }, + { + "appid": 2398530, + "normalized_name": "top pua" + }, + { + "appid": 2398540, + "normalized_name": "冬猎" + }, + { + "appid": 2398550, + "normalized_name": "sect machina" + }, + { + "appid": 2398570, + "normalized_name": "d or d" + }, + { + "appid": 2398580, + "normalized_name": "cooktopia" + }, + { + "appid": 2398590, + "normalized_name": "azure orphanage" + }, + { + "appid": 2398630, + "normalized_name": "holidays in khrushchevsk" + }, + { + "appid": 2398640, + "normalized_name": "noxious weeds prologue" + }, + { + "appid": 2398660, + "normalized_name": "ユメノメイキュウ" + }, + { + "appid": 2398680, + "normalized_name": "niktophobia" + }, + { + "appid": 2398720, + "normalized_name": "三国符文之语" + }, + { + "appid": 2398730, + "normalized_name": "cosmic critters" + }, + { + "appid": 2398750, + "normalized_name": "the trade prince" + }, + { + "appid": 2398760, + "normalized_name": "overdrive escape" + }, + { + "appid": 2398800, + "normalized_name": "wings of angels" + }, + { + "appid": 2398870, + "normalized_name": "ourworld" + }, + { + "appid": 2398880, + "normalized_name": "the mask game" + }, + { + "appid": 2398900, + "normalized_name": "star farmer warlock of the universe" + }, + { + "appid": 2398920, + "normalized_name": "predators" + }, + { + "appid": 2398930, + "normalized_name": "marbles in space" + }, + { + "appid": 2398940, + "normalized_name": "ceiba" + }, + { + "appid": 2398950, + "normalized_name": "guncade" + }, + { + "appid": 2398980, + "normalized_name": "avenger sharks" + }, + { + "appid": 2399040, + "normalized_name": "sentinels" + }, + { + "appid": 2399060, + "normalized_name": "dread weight" + }, + { + "appid": 2399070, + "normalized_name": "the vengeance of lady witch arpg" + }, + { + "appid": 2399080, + "normalized_name": "idle catfarmia" + }, + { + "appid": 2399100, + "normalized_name": "yuying mansion" + }, + { + "appid": 2399110, + "normalized_name": "teenage demon slayer society" + }, + { + "appid": 2399120, + "normalized_name": "efgh escape from garbage house 【ゴミ屋敷脱出ゲーム】" + }, + { + "appid": 2399130, + "normalized_name": "streamer girl simulator" + }, + { + "appid": 2399140, + "normalized_name": "兰古传奇 legend of langu" + }, + { + "appid": 2399160, + "normalized_name": "soulash 2" + }, + { + "appid": 2399170, + "normalized_name": "turn by turn villain" + }, + { + "appid": 2399180, + "normalized_name": "oh satan i gotta hide" + }, + { + "appid": 2399190, + "normalized_name": "星际探索" + }, + { + "appid": 2399200, + "normalized_name": "racing storm chase" + }, + { + "appid": 2399220, + "normalized_name": "nukitashi" + }, + { + "appid": 2399310, + "normalized_name": "lhama clicker prologue" + }, + { + "appid": 2399370, + "normalized_name": "slippy the frog 🐸💦" + }, + { + "appid": 2399420, + "normalized_name": "le mans" + }, + { + "appid": 2399430, + "normalized_name": "combat kart" + }, + { + "appid": 2399450, + "normalized_name": "frosthaven official companion" + }, + { + "appid": 2399540, + "normalized_name": "schlag den star das 3. spiel" + }, + { + "appid": 2399570, + "normalized_name": "skystead ranch" + }, + { + "appid": 2399590, + "normalized_name": "puppetmaster movie viewer" + }, + { + "appid": 2399600, + "normalized_name": "the wonderful one after school hero" + }, + { + "appid": 2399640, + "normalized_name": "samurai kento" + }, + { + "appid": 2399670, + "normalized_name": "slave lord elven conquest" + }, + { + "appid": 2399700, + "normalized_name": "荷莱horae" + }, + { + "appid": 2399710, + "normalized_name": "trash bunny house" + }, + { + "appid": 2399730, + "normalized_name": "front mission 1st remake" + }, + { + "appid": 2399760, + "normalized_name": "time bandit" + }, + { + "appid": 2399770, + "normalized_name": "night of horror" + }, + { + "appid": 2399810, + "normalized_name": "skoory rush" + }, + { + "appid": 2399830, + "normalized_name": "ark survival ascended" + }, + { + "appid": 2399840, + "normalized_name": "angry waifu" + }, + { + "appid": 2399860, + "normalized_name": "凌盘之境" + }, + { + "appid": 2399910, + "normalized_name": "byakuya museum" + }, + { + "appid": 2399930, + "normalized_name": "imprisoned hyperion 2" + }, + { + "appid": 2400060, + "normalized_name": "little devils" + }, + { + "appid": 2400100, + "normalized_name": "odoya" + }, + { + "appid": 2400160, + "normalized_name": "glyphica typing survival" + }, + { + "appid": 2400170, + "normalized_name": "brainz defender" + }, + { + "appid": 2400180, + "normalized_name": "notedrop" + }, + { + "appid": 2400190, + "normalized_name": "halfblood a quest to olympus" + }, + { + "appid": 2400280, + "normalized_name": "富甲天下4" + }, + { + "appid": 2400290, + "normalized_name": "富甲天下2" + }, + { + "appid": 2400340, + "normalized_name": "東方獣王園 〜 unfinished dream of all living ghost." + }, + { + "appid": 2400370, + "normalized_name": "veiled skies" + }, + { + "appid": 2400380, + "normalized_name": "the shifting cavern" + }, + { + "appid": 2400420, + "normalized_name": "land of the survivors" + }, + { + "appid": 2400430, + "normalized_name": "capcom fighting collection 2" + }, + { + "appid": 2400510, + "normalized_name": "dungeons & degenerate gamblers" + }, + { + "appid": 2400520, + "normalized_name": "puzzle go" + }, + { + "appid": 2400540, + "normalized_name": "the witch’s cookbook" + }, + { + "appid": 2400550, + "normalized_name": "neighborhood" + }, + { + "appid": 2400590, + "normalized_name": "彗星战团" + }, + { + "appid": 2400640, + "normalized_name": "nanoapostle" + }, + { + "appid": 2400650, + "normalized_name": "valeria the pagan priestess" + }, + { + "appid": 2400670, + "normalized_name": "alpha mmxxv" + }, + { + "appid": 2400690, + "normalized_name": "xon" + }, + { + "appid": 2400700, + "normalized_name": "beginning of the rain" + }, + { + "appid": 2400730, + "normalized_name": "hentai witch" + }, + { + "appid": 2400740, + "normalized_name": "pigblue" + }, + { + "appid": 2400760, + "normalized_name": "bike offroad simulator" + }, + { + "appid": 2400770, + "normalized_name": "dungeon tycoon" + }, + { + "appid": 2400790, + "normalized_name": "city of cats" + }, + { + "appid": 2400810, + "normalized_name": "cube escape" + }, + { + "appid": 2400840, + "normalized_name": "phantom line" + }, + { + "appid": 2400850, + "normalized_name": "big sword hero" + }, + { + "appid": 2400860, + "normalized_name": "super monkie bounce fatal" + }, + { + "appid": 2400880, + "normalized_name": "haunted investigation" + }, + { + "appid": 2400960, + "normalized_name": "solforge fusion" + }, + { + "appid": 2400980, + "normalized_name": "among the wild" + }, + { + "appid": 2401030, + "normalized_name": "tag" + }, + { + "appid": 2401040, + "normalized_name": "sex simulator gym girls" + }, + { + "appid": 2401060, + "normalized_name": "百日行 hundred day journey" + }, + { + "appid": 2401080, + "normalized_name": "alien breeding program first contact" + }, + { + "appid": 2401090, + "normalized_name": "cleanup crew" + }, + { + "appid": 2401100, + "normalized_name": "necromancers' arena" + }, + { + "appid": 2401220, + "normalized_name": "watchmakers" + }, + { + "appid": 2401230, + "normalized_name": "clone drone in the hyperdome" + }, + { + "appid": 2401240, + "normalized_name": "don salmon" + }, + { + "appid": 2401280, + "normalized_name": "forastero" + }, + { + "appid": 2401340, + "normalized_name": "hells bend on wounded knee" + }, + { + "appid": 2401350, + "normalized_name": "timeless rain" + }, + { + "appid": 2401370, + "normalized_name": "dogs club" + }, + { + "appid": 2401380, + "normalized_name": "castle crafter" + }, + { + "appid": 2401410, + "normalized_name": "cabernet" + }, + { + "appid": 2401420, + "normalized_name": "blast attack" + }, + { + "appid": 2401450, + "normalized_name": "pyrami head" + }, + { + "appid": 2401460, + "normalized_name": "tamas awakening" + }, + { + "appid": 2401540, + "normalized_name": "one last tale" + }, + { + "appid": 2401580, + "normalized_name": "拾光集" + }, + { + "appid": 2401680, + "normalized_name": "pet shop simulator" + }, + { + "appid": 2401730, + "normalized_name": "hot springs | 温泉 (onsen)" + }, + { + "appid": 2401740, + "normalized_name": "shattered lands (破碎之地)" + }, + { + "appid": 2401810, + "normalized_name": "on the other side" + }, + { + "appid": 2401870, + "normalized_name": "vague" + }, + { + "appid": 2401910, + "normalized_name": "dart racer" + }, + { + "appid": 2401920, + "normalized_name": "biscuitts 5" + }, + { + "appid": 2401950, + "normalized_name": "ned iron outlaw" + }, + { + "appid": 2401970, + "normalized_name": "ace attorney investigations collection" + }, + { + "appid": 2402010, + "normalized_name": "craft wars" + }, + { + "appid": 2402020, + "normalized_name": "dubai simulator" + }, + { + "appid": 2402060, + "normalized_name": "hero well" + }, + { + "appid": 2402070, + "normalized_name": "にわとりになったおれ〜コドクな魔女との5日間〜" + }, + { + "appid": 2402080, + "normalized_name": "nephtyke" + }, + { + "appid": 2402090, + "normalized_name": "mass conflict ignition" + }, + { + "appid": 2402100, + "normalized_name": "cube airport puzzle" + }, + { + "appid": 2402170, + "normalized_name": "veggie quest the puzzle game" + }, + { + "appid": 2402200, + "normalized_name": "hidden kitten" + }, + { + "appid": 2402220, + "normalized_name": "monolith's dreamers" + }, + { + "appid": 2402230, + "normalized_name": "path of disdain" + }, + { + "appid": 2402270, + "normalized_name": "hero of the golden talisman (c64/cpc)" + }, + { + "appid": 2402280, + "normalized_name": "werewolf the apocalypse — the book of hungry names" + }, + { + "appid": 2402310, + "normalized_name": "crazy flasher 7 mercenary empire(stand alone version)" + }, + { + "appid": 2402340, + "normalized_name": "another fishing game" + }, + { + "appid": 2402450, + "normalized_name": "zero grounds" + }, + { + "appid": 2402460, + "normalized_name": "kalimour" + }, + { + "appid": 2402470, + "normalized_name": "world of anterra" + }, + { + "appid": 2402500, + "normalized_name": "hayaku! island of darkness" + }, + { + "appid": 2402520, + "normalized_name": "teeny tiny terror" + }, + { + "appid": 2402530, + "normalized_name": "outland rogue / 异界无赖" + }, + { + "appid": 2402540, + "normalized_name": "crab rhapsody (vol.1)" + }, + { + "appid": 2402620, + "normalized_name": "world guesser" + }, + { + "appid": 2402630, + "normalized_name": "egypt frontiers" + }, + { + "appid": 2402640, + "normalized_name": "shorkie software presents proto" + }, + { + "appid": 2402650, + "normalized_name": "rusty's day off episode one janitor on duty" + }, + { + "appid": 2402680, + "normalized_name": "dimraeth" + }, + { + "appid": 2402690, + "normalized_name": "pet sanctuary" + }, + { + "appid": 2402710, + "normalized_name": "dps idle 2" + }, + { + "appid": 2402720, + "normalized_name": "axe me down" + }, + { + "appid": 2402760, + "normalized_name": "ms holmes the case of the dancing men collector's" + }, + { + "appid": 2402770, + "normalized_name": "blaster arcade" + }, + { + "appid": 2402790, + "normalized_name": "thereafter" + }, + { + "appid": 2402820, + "normalized_name": "hololive room visitor" + }, + { + "appid": 2402860, + "normalized_name": "the night market" + }, + { + "appid": 2402900, + "normalized_name": "hoboman" + }, + { + "appid": 2402920, + "normalized_name": "beyond doors" + }, + { + "appid": 2402930, + "normalized_name": "deviko td" + }, + { + "appid": 2402950, + "normalized_name": "maveldor saga of the twin mirrors" + }, + { + "appid": 2402980, + "normalized_name": "office waifu" + }, + { + "appid": 2402990, + "normalized_name": "not in my cave" + }, + { + "appid": 2403000, + "normalized_name": "幻欲游乐园" + }, + { + "appid": 2403020, + "normalized_name": "a priest walks into a graveyard" + }, + { + "appid": 2403040, + "normalized_name": "unsung chicken" + }, + { + "appid": 2403050, + "normalized_name": "below the surface assassin's prison" + }, + { + "appid": 2403060, + "normalized_name": "dinosaur land aerial photograph" + }, + { + "appid": 2403080, + "normalized_name": "vr animal kids rumble" + }, + { + "appid": 2403090, + "normalized_name": "vr escape from jurassic island" + }, + { + "appid": 2403100, + "normalized_name": "costa verde transport department" + }, + { + "appid": 2403110, + "normalized_name": "dungeon of destiny" + }, + { + "appid": 2403120, + "normalized_name": "don dim dum" + }, + { + "appid": 2403130, + "normalized_name": "absolute rummy for windows 11" + }, + { + "appid": 2403160, + "normalized_name": "gates of the mind" + }, + { + "appid": 2403240, + "normalized_name": "i'm in charge" + }, + { + "appid": 2403250, + "normalized_name": "armor attack" + }, + { + "appid": 2403260, + "normalized_name": "ancient weapon holly" + }, + { + "appid": 2403270, + "normalized_name": "hot and lovely :violet" + }, + { + "appid": 2403290, + "normalized_name": "boyhood's end" + }, + { + "appid": 2403320, + "normalized_name": "冬日树下的回忆(memoriesofthewinter tree)" + }, + { + "appid": 2403340, + "normalized_name": "大科学家" + }, + { + "appid": 2403350, + "normalized_name": "みんなでクイズ ラビィとふしぎな惑星" + }, + { + "appid": 2403370, + "normalized_name": "|][ @i7 in vitro #デッド・インヴィトロ" + }, + { + "appid": 2403380, + "normalized_name": "atganga spectacle for the gods" + }, + { + "appid": 2403390, + "normalized_name": "absolute skat for windows 11" + }, + { + "appid": 2403430, + "normalized_name": "soccer kids alpha" + }, + { + "appid": 2403450, + "normalized_name": "gaslamp cases 5 the dreadful city" + }, + { + "appid": 2403500, + "normalized_name": "the planetologist" + }, + { + "appid": 2403550, + "normalized_name": "where is my son?" + }, + { + "appid": 2403560, + "normalized_name": "royal class poker" + }, + { + "appid": 2403570, + "normalized_name": "malviolence" + }, + { + "appid": 2403590, + "normalized_name": "hikari no hime a magic fiction" + }, + { + "appid": 2403600, + "normalized_name": "jamboy a jelly cious hero" + }, + { + "appid": 2403610, + "normalized_name": "harpoon reef hunter" + }, + { + "appid": 2403620, + "normalized_name": "air twister" + }, + { + "appid": 2403640, + "normalized_name": "karta centauri" + }, + { + "appid": 2403660, + "normalized_name": "eddie's arcade" + }, + { + "appid": 2403670, + "normalized_name": "firestorm deadland" + }, + { + "appid": 2403680, + "normalized_name": "lexicon" + }, + { + "appid": 2403730, + "normalized_name": "grocery grab" + }, + { + "appid": 2403780, + "normalized_name": "warped" + }, + { + "appid": 2403830, + "normalized_name": "brave new wonders" + }, + { + "appid": 2403880, + "normalized_name": "code zodiac" + }, + { + "appid": 2403900, + "normalized_name": "the blood mage by daniel da silva" + }, + { + "appid": 2403940, + "normalized_name": "autoheroes" + }, + { + "appid": 2403950, + "normalized_name": "double cheeseburger medium fries" + }, + { + "appid": 2404000, + "normalized_name": "benefitship" + }, + { + "appid": 2404010, + "normalized_name": "cell wars" + }, + { + "appid": 2404060, + "normalized_name": "mr. mookie and the runaway cookie" + }, + { + "appid": 2404070, + "normalized_name": "death's toll" + }, + { + "appid": 2404100, + "normalized_name": "女王" + }, + { + "appid": 2404110, + "normalized_name": "镜花饴情 mirage sugar acacia" + }, + { + "appid": 2404160, + "normalized_name": "flying carpets over shark infested waters" + }, + { + "appid": 2404170, + "normalized_name": "museum no.9" + }, + { + "appid": 2404190, + "normalized_name": "borefest" + }, + { + "appid": 2404210, + "normalized_name": "redraptor" + }, + { + "appid": 2404230, + "normalized_name": "extreme volleyball infernal league" + }, + { + "appid": 2404240, + "normalized_name": "失魂" + }, + { + "appid": 2404280, + "normalized_name": "sync adventure" + }, + { + "appid": 2404300, + "normalized_name": "xyleron" + }, + { + "appid": 2404330, + "normalized_name": "捕快阿七:病镇 bailiff a qi sick town" + }, + { + "appid": 2404360, + "normalized_name": "翎之歌" + }, + { + "appid": 2404370, + "normalized_name": "yohane the parhelion blaze in the deepblue" + }, + { + "appid": 2404390, + "normalized_name": "b.e.s.t" + }, + { + "appid": 2404400, + "normalized_name": "search all ufo" + }, + { + "appid": 2404420, + "normalized_name": "七楼幸存者" + }, + { + "appid": 2404430, + "normalized_name": "duck's despair" + }, + { + "appid": 2404490, + "normalized_name": "zosu ocean vr" + }, + { + "appid": 2404510, + "normalized_name": "lucky hero" + }, + { + "appid": 2404530, + "normalized_name": "endless fucker" + }, + { + "appid": 2404550, + "normalized_name": "charge!" + }, + { + "appid": 2404610, + "normalized_name": "you are tre" + }, + { + "appid": 2404620, + "normalized_name": "the squeal of the pig" + }, + { + "appid": 2404630, + "normalized_name": "coding day" + }, + { + "appid": 2404670, + "normalized_name": "illegal drift" + }, + { + "appid": 2404700, + "normalized_name": "another chance" + }, + { + "appid": 2404720, + "normalized_name": "抵御者2 defender 2" + }, + { + "appid": 2404770, + "normalized_name": "chicken tricks" + }, + { + "appid": 2404790, + "normalized_name": "furia de weichafes" + }, + { + "appid": 2404800, + "normalized_name": "idle medieval tavern" + }, + { + "appid": 2404820, + "normalized_name": "human farm rehabilitation" + }, + { + "appid": 2404850, + "normalized_name": "autopista" + }, + { + "appid": 2404870, + "normalized_name": "camping park simulator" + }, + { + "appid": 2404880, + "normalized_name": "car dealer simulator" + }, + { + "appid": 2404890, + "normalized_name": "neon d fence remaster" + }, + { + "appid": 2404900, + "normalized_name": "cursed house 12" + }, + { + "appid": 2404920, + "normalized_name": "lonely path" + }, + { + "appid": 2404950, + "normalized_name": "onlysociety midgard imperial" + }, + { + "appid": 2404960, + "normalized_name": "paranormal records" + }, + { + "appid": 2404970, + "normalized_name": "parallel paths" + }, + { + "appid": 2404990, + "normalized_name": "the dark pursuer" + }, + { + "appid": 2405020, + "normalized_name": "primal rift" + }, + { + "appid": 2405060, + "normalized_name": "kiborg" + }, + { + "appid": 2405070, + "normalized_name": "unswappers" + }, + { + "appid": 2405110, + "normalized_name": "world of borecraft" + }, + { + "appid": 2405120, + "normalized_name": "pillars" + }, + { + "appid": 2405170, + "normalized_name": "the two moons" + }, + { + "appid": 2405270, + "normalized_name": "project asteroids" + }, + { + "appid": 2405280, + "normalized_name": "office perks" + }, + { + "appid": 2405290, + "normalized_name": "cutie crowd control" + }, + { + "appid": 2405310, + "normalized_name": "countryball the real time strategy game" + }, + { + "appid": 2405330, + "normalized_name": "parina's demon lair adventure" + }, + { + "appid": 2405340, + "normalized_name": "dead on arrival" + }, + { + "appid": 2405350, + "normalized_name": "ofuxë the guardian of nature" + }, + { + "appid": 2405360, + "normalized_name": "再上一层" + }, + { + "appid": 2405390, + "normalized_name": "greenisland" + }, + { + "appid": 2405400, + "normalized_name": "helping ani" + }, + { + "appid": 2405420, + "normalized_name": "unreal world" + }, + { + "appid": 2405450, + "normalized_name": "when night comes" + }, + { + "appid": 2405480, + "normalized_name": "umba" + }, + { + "appid": 2405540, + "normalized_name": "cargo truck racer" + }, + { + "appid": 2405640, + "normalized_name": "visk" + }, + { + "appid": 2405660, + "normalized_name": "farwest colony" + }, + { + "appid": 2405670, + "normalized_name": "tendrils and plates" + }, + { + "appid": 2405680, + "normalized_name": "loyuno horror escape" + }, + { + "appid": 2405690, + "normalized_name": "sweet forest guardian" + }, + { + "appid": 2405730, + "normalized_name": "nmo no more operators" + }, + { + "appid": 2405740, + "normalized_name": "russian train trip 3" + }, + { + "appid": 2405800, + "normalized_name": "dreaming city" + }, + { + "appid": 2405830, + "normalized_name": "lost bits" + }, + { + "appid": 2405860, + "normalized_name": "baby climbing" + }, + { + "appid": 2405870, + "normalized_name": "the infinity road" + }, + { + "appid": 2405900, + "normalized_name": "bit the apple so what?" + }, + { + "appid": 2405920, + "normalized_name": "inversed world" + }, + { + "appid": 2405970, + "normalized_name": "snowboard league" + }, + { + "appid": 2405980, + "normalized_name": "blacksite theta" + }, + { + "appid": 2405990, + "normalized_name": "corporate fat cat" + }, + { + "appid": 2406030, + "normalized_name": "cross impact" + }, + { + "appid": 2406050, + "normalized_name": "doom's day" + }, + { + "appid": 2406060, + "normalized_name": "bog roll" + }, + { + "appid": 2406080, + "normalized_name": "a night with maru" + }, + { + "appid": 2406100, + "normalized_name": "联城" + }, + { + "appid": 2406110, + "normalized_name": "fall into decay" + }, + { + "appid": 2406120, + "normalized_name": "across the void" + }, + { + "appid": 2406140, + "normalized_name": "aikode" + }, + { + "appid": 2406150, + "normalized_name": "仿生羊游戏" + }, + { + "appid": 2406160, + "normalized_name": "jewel of clementia" + }, + { + "appid": 2406180, + "normalized_name": "knights within" + }, + { + "appid": 2406190, + "normalized_name": "lowpoly drifting" + }, + { + "appid": 2406200, + "normalized_name": "vr hentai simulation" + }, + { + "appid": 2406220, + "normalized_name": "40 seconds" + }, + { + "appid": 2406230, + "normalized_name": "foviki empieria" + }, + { + "appid": 2406360, + "normalized_name": "speedoverflow" + }, + { + "appid": 2406370, + "normalized_name": "darkblade ascent" + }, + { + "appid": 2406400, + "normalized_name": "ぼくは人狼になりたい" + }, + { + "appid": 2406470, + "normalized_name": "slavfight" + }, + { + "appid": 2406480, + "normalized_name": "the lightless world" + }, + { + "appid": 2406490, + "normalized_name": "you'll stay here forever" + }, + { + "appid": 2406520, + "normalized_name": "mr. semmel" + }, + { + "appid": 2406540, + "normalized_name": "orb flight" + }, + { + "appid": 2406550, + "normalized_name": "a heart of butterblue" + }, + { + "appid": 2406560, + "normalized_name": "how many deaths to clear?" + }, + { + "appid": 2406570, + "normalized_name": "draikai" + }, + { + "appid": 2406590, + "normalized_name": "hermes the fury of megaera" + }, + { + "appid": 2406610, + "normalized_name": "three of us 我们仨" + }, + { + "appid": 2406630, + "normalized_name": "capt crabs a slimy adventure" + }, + { + "appid": 2406640, + "normalized_name": "fungus reaper" + }, + { + "appid": 2406660, + "normalized_name": "valden saga" + }, + { + "appid": 2406680, + "normalized_name": "kromlech" + }, + { + "appid": 2406690, + "normalized_name": "space crafter" + }, + { + "appid": 2406730, + "normalized_name": "dead mire" + }, + { + "appid": 2406750, + "normalized_name": "momatron" + }, + { + "appid": 2406770, + "normalized_name": "bodycam" + }, + { + "appid": 2406810, + "normalized_name": "emblems sunless vow" + }, + { + "appid": 2406830, + "normalized_name": "rolling ball sphere guider" + }, + { + "appid": 2406870, + "normalized_name": "battlepopes" + }, + { + "appid": 2406880, + "normalized_name": "casting whispers" + }, + { + "appid": 2406910, + "normalized_name": "36 questions" + }, + { + "appid": 2406930, + "normalized_name": "monkey math" + }, + { + "appid": 2406940, + "normalized_name": "squid commando" + }, + { + "appid": 2406950, + "normalized_name": "survivalextreme" + }, + { + "appid": 2406960, + "normalized_name": "yugowave" + }, + { + "appid": 2406970, + "normalized_name": "詭偶" + }, + { + "appid": 2406990, + "normalized_name": "kortstrid" + }, + { + "appid": 2407010, + "normalized_name": "木夕镇的午夜轮回 midnight cycle in muxi town" + }, + { + "appid": 2407070, + "normalized_name": "妖姬猎人" + }, + { + "appid": 2407090, + "normalized_name": "please be kind to the chickens" + }, + { + "appid": 2407100, + "normalized_name": "giant defense" + }, + { + "appid": 2407120, + "normalized_name": "丧尸收割者" + }, + { + "appid": 2407160, + "normalized_name": "深入龙巢" + }, + { + "appid": 2407200, + "normalized_name": "overwhelmed" + }, + { + "appid": 2407230, + "normalized_name": "listenbourg" + }, + { + "appid": 2407240, + "normalized_name": "super bear hunt for the lost beer" + }, + { + "appid": 2407270, + "normalized_name": "ai limit" + }, + { + "appid": 2407300, + "normalized_name": "asteroids ++" + }, + { + "appid": 2407310, + "normalized_name": "the last orgasm" + }, + { + "appid": 2407330, + "normalized_name": "mewmew pewpew" + }, + { + "appid": 2407350, + "normalized_name": "cybercity sex saga" + }, + { + "appid": 2407370, + "normalized_name": "hope for us" + }, + { + "appid": 2407400, + "normalized_name": "molly medusa queen of spit" + }, + { + "appid": 2407460, + "normalized_name": "station 13" + }, + { + "appid": 2407470, + "normalized_name": "kind nature" + }, + { + "appid": 2407520, + "normalized_name": "astro engineers" + }, + { + "appid": 2407550, + "normalized_name": "phantom thief effie" + }, + { + "appid": 2407590, + "normalized_name": "void warden" + }, + { + "appid": 2407600, + "normalized_name": "horrible game" + }, + { + "appid": 2407610, + "normalized_name": "felicat’s urban odyssey" + }, + { + "appid": 2407620, + "normalized_name": "hexagon survivors" + }, + { + "appid": 2407630, + "normalized_name": "无目的地 aimless" + }, + { + "appid": 2407660, + "normalized_name": "c.b.t" + }, + { + "appid": 2407680, + "normalized_name": "liminal lands" + }, + { + "appid": 2407710, + "normalized_name": "hotwire vr" + }, + { + "appid": 2407720, + "normalized_name": "aenas 猫与海:序章(aenas cat and the sea prologue)" + }, + { + "appid": 2407780, + "normalized_name": "gus game" + }, + { + "appid": 2407800, + "normalized_name": "demon scrolls" + }, + { + "appid": 2407830, + "normalized_name": "trash goblin" + }, + { + "appid": 2407840, + "normalized_name": "lobber" + }, + { + "appid": 2407900, + "normalized_name": "b b0 the delivery bot" + }, + { + "appid": 2407910, + "normalized_name": "racket club" + }, + { + "appid": 2407920, + "normalized_name": "neon fantasy animals" + }, + { + "appid": 2407950, + "normalized_name": "life's too short!" + }, + { + "appid": 2407960, + "normalized_name": "tense" + }, + { + "appid": 2408030, + "normalized_name": "anime tokyo" + }, + { + "appid": 2408060, + "normalized_name": "low and furious" + }, + { + "appid": 2408070, + "normalized_name": "nanuk the dusk of the brutes" + }, + { + "appid": 2408080, + "normalized_name": "breezy" + }, + { + "appid": 2408090, + "normalized_name": "we carry the fire" + }, + { + "appid": 2408110, + "normalized_name": "starship 43 the last astronautvr" + }, + { + "appid": 2408120, + "normalized_name": "solar showdown" + }, + { + "appid": 2408150, + "normalized_name": "fumetaverse haunted mansion" + }, + { + "appid": 2408180, + "normalized_name": "witch's house beginning" + }, + { + "appid": 2408210, + "normalized_name": "terres" + }, + { + "appid": 2408220, + "normalized_name": "that's my space" + }, + { + "appid": 2408240, + "normalized_name": "fly wheel" + }, + { + "appid": 2408260, + "normalized_name": "the multiverse cleaner" + }, + { + "appid": 2408270, + "normalized_name": "the dark book" + }, + { + "appid": 2408280, + "normalized_name": "tuna the cat" + }, + { + "appid": 2408290, + "normalized_name": "interlopers" + }, + { + "appid": 2408310, + "normalized_name": "cat" + }, + { + "appid": 2408330, + "normalized_name": "fps1" + }, + { + "appid": 2408340, + "normalized_name": "only climber" + }, + { + "appid": 2408350, + "normalized_name": "hermit and pig" + }, + { + "appid": 2408370, + "normalized_name": "stalker girl" + }, + { + "appid": 2408380, + "normalized_name": "fallinbara" + }, + { + "appid": 2408460, + "normalized_name": "project arrow" + }, + { + "appid": 2408600, + "normalized_name": "stsp super titty space prison" + }, + { + "appid": 2408610, + "normalized_name": "paint by pixel 2" + }, + { + "appid": 2408630, + "normalized_name": "journey" + }, + { + "appid": 2408640, + "normalized_name": "nomad" + }, + { + "appid": 2408670, + "normalized_name": "april '86" + }, + { + "appid": 2408680, + "normalized_name": "the strongest tofu" + }, + { + "appid": 2408700, + "normalized_name": "mysterious battlefield" + }, + { + "appid": 2408710, + "normalized_name": "small world of golf" + }, + { + "appid": 2408720, + "normalized_name": "ninnin" + }, + { + "appid": 2408740, + "normalized_name": "öd ögöd chronobreak" + }, + { + "appid": 2408750, + "normalized_name": "heartlink" + }, + { + "appid": 2408760, + "normalized_name": "the paradell" + }, + { + "appid": 2408790, + "normalized_name": "zombiflux sleepless war" + }, + { + "appid": 2408820, + "normalized_name": "luma island" + }, + { + "appid": 2408870, + "normalized_name": "hex strikers" + }, + { + "appid": 2408880, + "normalized_name": "hunting the hunter" + }, + { + "appid": 2408890, + "normalized_name": "the life of a magical circle" + }, + { + "appid": 2408920, + "normalized_name": "森林之子" + }, + { + "appid": 2409000, + "normalized_name": "marine glory" + }, + { + "appid": 2409010, + "normalized_name": "the battle for vega" + }, + { + "appid": 2409040, + "normalized_name": "tribes & monsters" + }, + { + "appid": 2409050, + "normalized_name": "wildstrive" + }, + { + "appid": 2409060, + "normalized_name": "tacticool" + }, + { + "appid": 2409080, + "normalized_name": "树根守护者rootkeeper" + }, + { + "appid": 2409100, + "normalized_name": "backrooms the hunt" + }, + { + "appid": 2409110, + "normalized_name": "real web legends carter's quest" + }, + { + "appid": 2409130, + "normalized_name": "heavenly badonkers angel bitches" + }, + { + "appid": 2409140, + "normalized_name": "picket line" + }, + { + "appid": 2409160, + "normalized_name": "treasure mountain" + }, + { + "appid": 2409200, + "normalized_name": "rolling toolman" + }, + { + "appid": 2409240, + "normalized_name": "bricks crusher breaker ball" + }, + { + "appid": 2409250, + "normalized_name": "submarine terror" + }, + { + "appid": 2409260, + "normalized_name": "mannequin" + }, + { + "appid": 2409320, + "normalized_name": "drill keeper" + }, + { + "appid": 2409360, + "normalized_name": "pixel cafe" + }, + { + "appid": 2409390, + "normalized_name": "wheelie life" + }, + { + "appid": 2409410, + "normalized_name": "i commissioned some unicorns" + }, + { + "appid": 2409430, + "normalized_name": "ominous stew" + }, + { + "appid": 2409450, + "normalized_name": "garden of pizzlerat" + }, + { + "appid": 2409490, + "normalized_name": "blue man adventure" + }, + { + "appid": 2409500, + "normalized_name": "inspector gadget mad time party" + }, + { + "appid": 2409540, + "normalized_name": "momon relic seekers" + }, + { + "appid": 2409570, + "normalized_name": "вий визуальная новелла" + }, + { + "appid": 2409580, + "normalized_name": "hero quest god of chaos" + }, + { + "appid": 2409670, + "normalized_name": "bounty hunting time" + }, + { + "appid": 2409680, + "normalized_name": "космо азс" + }, + { + "appid": 2409690, + "normalized_name": "kingmaker academy warrior's duels" + }, + { + "appid": 2409700, + "normalized_name": "the source" + }, + { + "appid": 2409710, + "normalized_name": "adam" + }, + { + "appid": 2409780, + "normalized_name": "breeze of passion" + }, + { + "appid": 2409790, + "normalized_name": "shattered legacy" + }, + { + "appid": 2409840, + "normalized_name": "hidden bunny" + }, + { + "appid": 2409850, + "normalized_name": "cubic figures" + }, + { + "appid": 2409920, + "normalized_name": "home a story of light" + }, + { + "appid": 2409950, + "normalized_name": "tricula" + }, + { + "appid": 2409970, + "normalized_name": "sex simulator the beach house" + }, + { + "appid": 2409990, + "normalized_name": "sayfield defense" + }, + { + "appid": 2410010, + "normalized_name": "gloomy village" + }, + { + "appid": 2410030, + "normalized_name": "vinebound tangled together" + }, + { + "appid": 2410080, + "normalized_name": "the dusk alliance" + }, + { + "appid": 2410100, + "normalized_name": "detective patch" + }, + { + "appid": 2410110, + "normalized_name": "timeshift" + }, + { + "appid": 2410130, + "normalized_name": "gatetail" + }, + { + "appid": 2410140, + "normalized_name": "the adventures of beanman" + }, + { + "appid": 2410150, + "normalized_name": "blackheart" + }, + { + "appid": 2410170, + "normalized_name": "the nameless slay dragon" + }, + { + "appid": 2410190, + "normalized_name": "easy mahjong" + }, + { + "appid": 2410200, + "normalized_name": "the maze" + }, + { + "appid": 2410230, + "normalized_name": "hero's quest lost memories" + }, + { + "appid": 2410260, + "normalized_name": "death rabbit arena" + }, + { + "appid": 2410310, + "normalized_name": "battle of zama" + }, + { + "appid": 2410320, + "normalized_name": "exosoul" + }, + { + "appid": 2410360, + "normalized_name": "mirth island" + }, + { + "appid": 2410370, + "normalized_name": "send it the game" + }, + { + "appid": 2410390, + "normalized_name": "pandora's box" + }, + { + "appid": 2410420, + "normalized_name": "kidney stone clicker" + }, + { + "appid": 2410430, + "normalized_name": "the beast in the shadows" + }, + { + "appid": 2410440, + "normalized_name": "lost colony" + }, + { + "appid": 2410460, + "normalized_name": "mossasis 苔蘚綠洲" + }, + { + "appid": 2410470, + "normalized_name": "the dream of cocoon" + }, + { + "appid": 2410480, + "normalized_name": "魔力チャージの二重奏" + }, + { + "appid": 2410490, + "normalized_name": "sneak out" + }, + { + "appid": 2410500, + "normalized_name": "险恶游戏(sinister games)" + }, + { + "appid": 2410590, + "normalized_name": "dunk dunk" + }, + { + "appid": 2410610, + "normalized_name": "bewitched balls" + }, + { + "appid": 2410620, + "normalized_name": "thirty years later" + }, + { + "appid": 2410640, + "normalized_name": "shark! shark!" + }, + { + "appid": 2410680, + "normalized_name": "9 ball pocket" + }, + { + "appid": 2410690, + "normalized_name": "the cursed amulet" + }, + { + "appid": 2410700, + "normalized_name": "isop0dyssey" + }, + { + "appid": 2410730, + "normalized_name": "wilderness survival" + }, + { + "appid": 2410740, + "normalized_name": "creepless" + }, + { + "appid": 2410750, + "normalized_name": "chronicles of vipers" + }, + { + "appid": 2410780, + "normalized_name": "goblin conqueror" + }, + { + "appid": 2410800, + "normalized_name": "the time plague" + }, + { + "appid": 2410810, + "normalized_name": "riversiders" + }, + { + "appid": 2410820, + "normalized_name": "too many sheep" + }, + { + "appid": 2410850, + "normalized_name": "stellar serenity" + }, + { + "appid": 2410860, + "normalized_name": "the truth" + }, + { + "appid": 2410870, + "normalized_name": "the traveller" + }, + { + "appid": 2410880, + "normalized_name": "the garden of silvergrass" + }, + { + "appid": 2410890, + "normalized_name": "el dorado the golden city builder prologue" + }, + { + "appid": 2410900, + "normalized_name": "time raiders" + }, + { + "appid": 2410910, + "normalized_name": "地城冒险岛" + }, + { + "appid": 2410930, + "normalized_name": "grouphack" + }, + { + "appid": 2410940, + "normalized_name": "der pfad des pinguins" + }, + { + "appid": 2410960, + "normalized_name": "normal person" + }, + { + "appid": 2410970, + "normalized_name": "lim beyond one on one basketball" + }, + { + "appid": 2411050, + "normalized_name": "sinkhole" + }, + { + "appid": 2411060, + "normalized_name": "spielbahn" + }, + { + "appid": 2411100, + "normalized_name": "mind control bloody renaissance" + }, + { + "appid": 2411110, + "normalized_name": "biosmose" + }, + { + "appid": 2411120, + "normalized_name": "samurai vr" + }, + { + "appid": 2411140, + "normalized_name": "linia super" + }, + { + "appid": 2411150, + "normalized_name": "nightbeast vr" + }, + { + "appid": 2411170, + "normalized_name": "academy become a hero" + }, + { + "appid": 2411200, + "normalized_name": "underkeep" + }, + { + "appid": 2411210, + "normalized_name": "mop of the dead" + }, + { + "appid": 2411240, + "normalized_name": "uwd you will die!" + }, + { + "appid": 2411250, + "normalized_name": "the warrior" + }, + { + "appid": 2411260, + "normalized_name": "start link vr" + }, + { + "appid": 2411280, + "normalized_name": "the bornless" + }, + { + "appid": 2411310, + "normalized_name": "card rpg orphan" + }, + { + "appid": 2411320, + "normalized_name": "noroi e susan's memories" + }, + { + "appid": 2411340, + "normalized_name": "magehunter phoenix flame" + }, + { + "appid": 2411360, + "normalized_name": "food fighter clicker games" + }, + { + "appid": 2411370, + "normalized_name": "mature comedy visual novel" + }, + { + "appid": 2411380, + "normalized_name": "double detective" + }, + { + "appid": 2411390, + "normalized_name": "top villain total domination" + }, + { + "appid": 2411410, + "normalized_name": "meteorite miner" + }, + { + "appid": 2411430, + "normalized_name": "不和我推谈恋爱就会死?!" + }, + { + "appid": 2411470, + "normalized_name": "sigils" + }, + { + "appid": 2411510, + "normalized_name": "abyssal" + }, + { + "appid": 2411530, + "normalized_name": "type king" + }, + { + "appid": 2411560, + "normalized_name": "debtors' club" + }, + { + "appid": 2411590, + "normalized_name": "swollen to bursting until i am disappearing on purpose" + }, + { + "appid": 2411610, + "normalized_name": "boundworlds" + }, + { + "appid": 2411620, + "normalized_name": "hoop city manager" + }, + { + "appid": 2411640, + "normalized_name": "demegraunt" + }, + { + "appid": 2411660, + "normalized_name": "magic machine gun" + }, + { + "appid": 2411670, + "normalized_name": "holy ship" + }, + { + "appid": 2411730, + "normalized_name": "lord privateer" + }, + { + "appid": 2411760, + "normalized_name": "a collection of mini games" + }, + { + "appid": 2411770, + "normalized_name": "the twisting trail of clues" + }, + { + "appid": 2411780, + "normalized_name": "blood on the dusty trail" + }, + { + "appid": 2411790, + "normalized_name": "amygdala prelude" + }, + { + "appid": 2411830, + "normalized_name": "yunoia" + }, + { + "appid": 2411850, + "normalized_name": "ragdoll destroyer" + }, + { + "appid": 2411870, + "normalized_name": "zombiewave fm" + }, + { + "appid": 2411880, + "normalized_name": "systemcrash 92" + }, + { + "appid": 2411890, + "normalized_name": "lila's synthetic shadows" + }, + { + "appid": 2411910, + "normalized_name": "嘣境回收战" + }, + { + "appid": 2411920, + "normalized_name": "calmed by the dark shin neon" + }, + { + "appid": 2411950, + "normalized_name": "迷宫坦克大战" + }, + { + "appid": 2411960, + "normalized_name": "平安果" + }, + { + "appid": 2411970, + "normalized_name": "bumpy grumpy" + }, + { + "appid": 2411980, + "normalized_name": "amedama" + }, + { + "appid": 2412000, + "normalized_name": "one thousand cuts" + }, + { + "appid": 2412010, + "normalized_name": "konike" + }, + { + "appid": 2412050, + "normalized_name": "no ghost in sky elevator" + }, + { + "appid": 2412090, + "normalized_name": "total reload" + }, + { + "appid": 2412100, + "normalized_name": "puzzle game miko" + }, + { + "appid": 2412110, + "normalized_name": "rogue labyrinth" + }, + { + "appid": 2412120, + "normalized_name": "ss:死线" + }, + { + "appid": 2412140, + "normalized_name": "sex with maids" + }, + { + "appid": 2412150, + "normalized_name": "furry milfs" + }, + { + "appid": 2412160, + "normalized_name": "bîme" + }, + { + "appid": 2412170, + "normalized_name": "crazy the clown's balloon animal massacre" + }, + { + "appid": 2412180, + "normalized_name": "caracoles" + }, + { + "appid": 2412190, + "normalized_name": "meaningless" + }, + { + "appid": 2412200, + "normalized_name": "cthulhu's reach devil reef" + }, + { + "appid": 2412240, + "normalized_name": "bubble ghost remake" + }, + { + "appid": 2412280, + "normalized_name": "valiant tactics" + }, + { + "appid": 2412310, + "normalized_name": "burder" + }, + { + "appid": 2412410, + "normalized_name": "disco simulator prologue" + }, + { + "appid": 2412420, + "normalized_name": "star defence" + }, + { + "appid": 2412430, + "normalized_name": "untitledshootergame" + }, + { + "appid": 2412460, + "normalized_name": "mankind's last stand" + }, + { + "appid": 2412490, + "normalized_name": "abandoned souls" + }, + { + "appid": 2412540, + "normalized_name": "subway nomads" + }, + { + "appid": 2412580, + "normalized_name": "samurai yokai" + }, + { + "appid": 2412600, + "normalized_name": "reaper's ace" + }, + { + "appid": 2412620, + "normalized_name": "fishing" + }, + { + "appid": 2412640, + "normalized_name": "another day" + }, + { + "appid": 2412650, + "normalized_name": "the severn rising 2222" + }, + { + "appid": 2412700, + "normalized_name": "it is ticking" + }, + { + "appid": 2412710, + "normalized_name": "royal romances the power of chosen one collector's" + }, + { + "appid": 2412730, + "normalized_name": "biomech hell" + }, + { + "appid": 2412740, + "normalized_name": "ascent quest" + }, + { + "appid": 2412750, + "normalized_name": "hooligan simulator survive in urban jungle" + }, + { + "appid": 2412780, + "normalized_name": "bounda forever" + }, + { + "appid": 2412810, + "normalized_name": "forty foes" + }, + { + "appid": 2412830, + "normalized_name": "magic seeker a mimic's odyssey chapter 1" + }, + { + "appid": 2412850, + "normalized_name": "hot worlds" + }, + { + "appid": 2412880, + "normalized_name": "tavern of empire" + }, + { + "appid": 2412960, + "normalized_name": "breathedge 2" + }, + { + "appid": 2412970, + "normalized_name": "entanglement" + }, + { + "appid": 2413000, + "normalized_name": "magic cube 4d vr" + }, + { + "appid": 2413030, + "normalized_name": "golf with the lads" + }, + { + "appid": 2413040, + "normalized_name": "jets a blazin'" + }, + { + "appid": 2413050, + "normalized_name": "retrowave world" + }, + { + "appid": 2413060, + "normalized_name": "pallet" + }, + { + "appid": 2413080, + "normalized_name": "project carnevil" + }, + { + "appid": 2413090, + "normalized_name": "oppai samurai knocked up by a no name novice" + }, + { + "appid": 2413140, + "normalized_name": "titor's time traveling tale" + }, + { + "appid": 2413160, + "normalized_name": "symphony of souls" + }, + { + "appid": 2413190, + "normalized_name": "emergency cleanup co." + }, + { + "appid": 2413210, + "normalized_name": "escape from ivy & piper" + }, + { + "appid": 2413220, + "normalized_name": "exterminators of saturn" + }, + { + "appid": 2413230, + "normalized_name": "liminal space" + }, + { + "appid": 2413300, + "normalized_name": "tsukichi chronicles" + }, + { + "appid": 2413310, + "normalized_name": "j town a visual novel" + }, + { + "appid": 2413330, + "normalized_name": "caved in" + }, + { + "appid": 2413340, + "normalized_name": "ketamina" + }, + { + "appid": 2413370, + "normalized_name": "cavemen the rise of tribe" + }, + { + "appid": 2413410, + "normalized_name": "kam thunder" + }, + { + "appid": 2413450, + "normalized_name": "mortified" + }, + { + "appid": 2413470, + "normalized_name": "knights of the throne" + }, + { + "appid": 2413480, + "normalized_name": "through the mist" + }, + { + "appid": 2413490, + "normalized_name": "crown of light" + }, + { + "appid": 2413500, + "normalized_name": "the last seal" + }, + { + "appid": 2413510, + "normalized_name": "a heroine story" + }, + { + "appid": 2413520, + "normalized_name": "disaster plan z" + }, + { + "appid": 2413570, + "normalized_name": "the necromancer arises" + }, + { + "appid": 2413580, + "normalized_name": "hope unlived life" + }, + { + "appid": 2413590, + "normalized_name": "hope winter tale" + }, + { + "appid": 2413620, + "normalized_name": "pogo3d" + }, + { + "appid": 2413640, + "normalized_name": "countless army" + }, + { + "appid": 2413660, + "normalized_name": "bucket brawl ahlman" + }, + { + "appid": 2413690, + "normalized_name": "uncaptive" + }, + { + "appid": 2413710, + "normalized_name": "insanias" + }, + { + "appid": 2413720, + "normalized_name": "date with foxgirl" + }, + { + "appid": 2413730, + "normalized_name": "zombie hunter d day" + }, + { + "appid": 2413750, + "normalized_name": "poly jigsaw dogs" + }, + { + "appid": 2413800, + "normalized_name": "samurai pizza cats blast from the past!" + }, + { + "appid": 2413840, + "normalized_name": "cute capybaras" + }, + { + "appid": 2413860, + "normalized_name": "tobi path of truth" + }, + { + "appid": 2413920, + "normalized_name": "legends of savvarah flowers and scorpions" + }, + { + "appid": 2413930, + "normalized_name": "cream soda club" + }, + { + "appid": 2413940, + "normalized_name": "liberation" + }, + { + "appid": 2413950, + "normalized_name": "final sentence" + }, + { + "appid": 2413960, + "normalized_name": "dark" + }, + { + "appid": 2414000, + "normalized_name": "dashes & squares" + }, + { + "appid": 2414010, + "normalized_name": "garage flipper prologue" + }, + { + "appid": 2414020, + "normalized_name": "the picture of café au lait" + }, + { + "appid": 2414110, + "normalized_name": "builderment" + }, + { + "appid": 2414140, + "normalized_name": "longjuice squeeze" + }, + { + "appid": 2414190, + "normalized_name": "you must become a lich" + }, + { + "appid": 2414210, + "normalized_name": "text twist classic" + }, + { + "appid": 2414240, + "normalized_name": "a crazy guy" + }, + { + "appid": 2414260, + "normalized_name": "athena's revenge" + }, + { + "appid": 2414270, + "normalized_name": "sunderfolk" + }, + { + "appid": 2414310, + "normalized_name": "wyred" + }, + { + "appid": 2414320, + "normalized_name": "veil of darkness" + }, + { + "appid": 2414330, + "normalized_name": "the soulwalkers" + }, + { + "appid": 2414340, + "normalized_name": "star general" + }, + { + "appid": 2414350, + "normalized_name": "the summoning" + }, + { + "appid": 2414360, + "normalized_name": "dark legions" + }, + { + "appid": 2414410, + "normalized_name": "tri city monsters" + }, + { + "appid": 2414420, + "normalized_name": "avalon lost" + }, + { + "appid": 2414440, + "normalized_name": "soulgasm" + }, + { + "appid": 2414450, + "normalized_name": "prophecy island" + }, + { + "appid": 2414470, + "normalized_name": "way of the punch" + }, + { + "appid": 2414500, + "normalized_name": "limos' lair" + }, + { + "appid": 2414520, + "normalized_name": "the lunar world experience" + }, + { + "appid": 2414530, + "normalized_name": "phanotia interlude i aubzan abbey" + }, + { + "appid": 2414550, + "normalized_name": "madison vr" + }, + { + "appid": 2414570, + "normalized_name": "belenus" + }, + { + "appid": 2414580, + "normalized_name": "power champions" + }, + { + "appid": 2414600, + "normalized_name": "drum roll" + }, + { + "appid": 2414630, + "normalized_name": "hollow cocoon" + }, + { + "appid": 2414640, + "normalized_name": "bite size terrors erobos heaven" + }, + { + "appid": 2414650, + "normalized_name": "tower of the mad wizard" + }, + { + "appid": 2414660, + "normalized_name": "legends of duels" + }, + { + "appid": 2414680, + "normalized_name": "task force 9" + }, + { + "appid": 2414710, + "normalized_name": "bee man" + }, + { + "appid": 2414730, + "normalized_name": "elf of era! idols project" + }, + { + "appid": 2414740, + "normalized_name": "sunset survival station" + }, + { + "appid": 2414750, + "normalized_name": "风岬 the everlasting lovestory at the windcap" + }, + { + "appid": 2414790, + "normalized_name": "food magician" + }, + { + "appid": 2414810, + "normalized_name": "vt harmony" + }, + { + "appid": 2414850, + "normalized_name": "umbra veins of vengeance" + }, + { + "appid": 2414900, + "normalized_name": "soulknight survivor" + }, + { + "appid": 2414920, + "normalized_name": "no zombie land lucy" + }, + { + "appid": 2414950, + "normalized_name": "bus simulator 23" + }, + { + "appid": 2414990, + "normalized_name": "lifelong" + }, + { + "appid": 2415000, + "normalized_name": "blackout" + }, + { + "appid": 2415010, + "normalized_name": "a date with death" + }, + { + "appid": 2415030, + "normalized_name": "crimson hollow" + }, + { + "appid": 2415050, + "normalized_name": "neve" + }, + { + "appid": 2415080, + "normalized_name": "chicken fighter" + }, + { + "appid": 2415120, + "normalized_name": "abstract driver" + }, + { + "appid": 2415130, + "normalized_name": "land of crystals" + }, + { + "appid": 2415180, + "normalized_name": "cute puzzles!!!" + }, + { + "appid": 2415240, + "normalized_name": "leaving dna" + }, + { + "appid": 2415320, + "normalized_name": "insect wars" + }, + { + "appid": 2415340, + "normalized_name": "elf world adventure" + }, + { + "appid": 2415430, + "normalized_name": "draftycar legacy" + }, + { + "appid": 2415450, + "normalized_name": "fight for your resurrection vr" + }, + { + "appid": 2415470, + "normalized_name": "thirty days" + }, + { + "appid": 2415480, + "normalized_name": "dungeon and darkness" + }, + { + "appid": 2415500, + "normalized_name": "black finger jet" + }, + { + "appid": 2415530, + "normalized_name": "dungeon's anima" + }, + { + "appid": 2415540, + "normalized_name": "the paradixion son's room" + }, + { + "appid": 2415640, + "normalized_name": "cargo delivery" + }, + { + "appid": 2415650, + "normalized_name": "mages of osmea" + }, + { + "appid": 2415660, + "normalized_name": "raventure" + }, + { + "appid": 2415670, + "normalized_name": "tutenstone" + }, + { + "appid": 2415680, + "normalized_name": "wholesome heartdrawn" + }, + { + "appid": 2415770, + "normalized_name": "flyto" + }, + { + "appid": 2415850, + "normalized_name": "mordobble spot the match" + }, + { + "appid": 2415950, + "normalized_name": "pegafuerte el terrible" + }, + { + "appid": 2415960, + "normalized_name": "femboy aim trainer" + }, + { + "appid": 2415980, + "normalized_name": "dream job delivery simulator" + }, + { + "appid": 2416000, + "normalized_name": "blind fishes" + }, + { + "appid": 2416030, + "normalized_name": "roboden" + }, + { + "appid": 2416050, + "normalized_name": "cento" + }, + { + "appid": 2416060, + "normalized_name": "the last frontier" + }, + { + "appid": 2416100, + "normalized_name": "goodnight universe" + }, + { + "appid": 2416120, + "normalized_name": "h girl kemonomimi" + }, + { + "appid": 2416150, + "normalized_name": "zombie ants vr" + }, + { + "appid": 2416190, + "normalized_name": "ichima san" + }, + { + "appid": 2416250, + "normalized_name": "chronautical" + }, + { + "appid": 2416260, + "normalized_name": "sujeto 124 el hombre de traje" + }, + { + "appid": 2416290, + "normalized_name": "plong" + }, + { + "appid": 2416350, + "normalized_name": "yard sale simulator" + }, + { + "appid": 2416360, + "normalized_name": "uzg" + }, + { + "appid": 2416370, + "normalized_name": "cruel reality a horrible dream" + }, + { + "appid": 2416380, + "normalized_name": "juuden youshuugi ~ crimson paraselene" + }, + { + "appid": 2416410, + "normalized_name": "tiny dungeons" + }, + { + "appid": 2416450, + "normalized_name": "mouse p.i. for hire" + }, + { + "appid": 2416460, + "normalized_name": "unknown memoirs the rental" + }, + { + "appid": 2416470, + "normalized_name": "bloody doctor" + }, + { + "appid": 2416480, + "normalized_name": "缘起" + }, + { + "appid": 2416490, + "normalized_name": "legends of savvarah children of the sun" + }, + { + "appid": 2416500, + "normalized_name": "legends of savvarah time of pariah" + }, + { + "appid": 2416510, + "normalized_name": "gundroid" + }, + { + "appid": 2416550, + "normalized_name": "morrok" + }, + { + "appid": 2416600, + "normalized_name": "frightence" + }, + { + "appid": 2416630, + "normalized_name": "murder at the house" + }, + { + "appid": 2416650, + "normalized_name": "night stroll" + }, + { + "appid": 2416710, + "normalized_name": "mother ghoul the curse of unborns" + }, + { + "appid": 2416720, + "normalized_name": "quadrium 2" + }, + { + "appid": 2416740, + "normalized_name": "dark desire mute 5" + }, + { + "appid": 2416760, + "normalized_name": "how to build your igloo" + }, + { + "appid": 2416770, + "normalized_name": "绛河之上 under supernova" + }, + { + "appid": 2416780, + "normalized_name": "the sleep experiment" + }, + { + "appid": 2416790, + "normalized_name": "old school rpg" + }, + { + "appid": 2416830, + "normalized_name": "异梦残响 | endless dream" + }, + { + "appid": 2416860, + "normalized_name": "all is fair in love and vore the tavorion collection" + }, + { + "appid": 2416880, + "normalized_name": "duck life 9 the flock" + }, + { + "appid": 2416920, + "normalized_name": "groob" + }, + { + "appid": 2416930, + "normalized_name": "where are you cinderella?" + }, + { + "appid": 2416940, + "normalized_name": "space crab vs" + }, + { + "appid": 2416960, + "normalized_name": "esylium mmorpg" + }, + { + "appid": 2416970, + "normalized_name": "vesna" + }, + { + "appid": 2416990, + "normalized_name": "代号:文字生存" + }, + { + "appid": 2417000, + "normalized_name": "hunter the reckoning — the beast of glenkildove" + }, + { + "appid": 2417030, + "normalized_name": "potential" + }, + { + "appid": 2417090, + "normalized_name": "memoryland prelude" + }, + { + "appid": 2417100, + "normalized_name": "just date" + }, + { + "appid": 2417130, + "normalized_name": "neoclip" + }, + { + "appid": 2417140, + "normalized_name": "girls divers" + }, + { + "appid": 2417150, + "normalized_name": "smiling girls" + }, + { + "appid": 2417160, + "normalized_name": "just skill shooter" + }, + { + "appid": 2417180, + "normalized_name": "backroom constructions" + }, + { + "appid": 2417240, + "normalized_name": "the isolated town" + }, + { + "appid": 2417250, + "normalized_name": "mr.t survival" + }, + { + "appid": 2417260, + "normalized_name": "deceived by the host" + }, + { + "appid": 2417270, + "normalized_name": "endless apocalypse" + }, + { + "appid": 2417300, + "normalized_name": "sybil is haunted" + }, + { + "appid": 2417310, + "normalized_name": "forevr cornhole vr" + }, + { + "appid": 2417340, + "normalized_name": "nobody's dilemma" + }, + { + "appid": 2417400, + "normalized_name": "defiled survivors prologue" + }, + { + "appid": 2417430, + "normalized_name": "path to knighthood" + }, + { + "appid": 2417480, + "normalized_name": "madness in the dark" + }, + { + "appid": 2417490, + "normalized_name": "holehole" + }, + { + "appid": 2417510, + "normalized_name": "rourox" + }, + { + "appid": 2417520, + "normalized_name": "火山噴火で隕石を破壊するゲーム" + }, + { + "appid": 2417530, + "normalized_name": "button city soccer days" + }, + { + "appid": 2417560, + "normalized_name": "voidseekers" + }, + { + "appid": 2417580, + "normalized_name": "bonnie's bakery" + }, + { + "appid": 2417590, + "normalized_name": "epidemic escape a race for the cure" + }, + { + "appid": 2417600, + "normalized_name": "bricklike" + }, + { + "appid": 2417610, + "normalized_name": "metal gear solid δ snake eater" + }, + { + "appid": 2417620, + "normalized_name": "pogglewash" + }, + { + "appid": 2417630, + "normalized_name": "our last dayz" + }, + { + "appid": 2417650, + "normalized_name": "carrom slam!" + }, + { + "appid": 2417660, + "normalized_name": "cotton tale" + }, + { + "appid": 2417700, + "normalized_name": "the malice kingdom" + }, + { + "appid": 2417710, + "normalized_name": "the siege of jeomdo" + }, + { + "appid": 2417730, + "normalized_name": "the night of the inquisitor" + }, + { + "appid": 2417790, + "normalized_name": "clear mosaic" + }, + { + "appid": 2417840, + "normalized_name": "이세계메이드" + }, + { + "appid": 2417850, + "normalized_name": "yolk heroes a long tamago" + }, + { + "appid": 2417890, + "normalized_name": "于垂花门后" + }, + { + "appid": 2417900, + "normalized_name": "squiigee" + }, + { + "appid": 2417930, + "normalized_name": "runeshroom" + }, + { + "appid": 2417940, + "normalized_name": "hero emblems ii" + }, + { + "appid": 2417950, + "normalized_name": "astra noctis" + }, + { + "appid": 2417960, + "normalized_name": "reaktorhallen r1 zombie shooter" + }, + { + "appid": 2417970, + "normalized_name": "risky sanctuary" + }, + { + "appid": 2417990, + "normalized_name": "war and peace" + }, + { + "appid": 2418000, + "normalized_name": "combat mission red thunder" + }, + { + "appid": 2418020, + "normalized_name": "弈人寻梦" + }, + { + "appid": 2418040, + "normalized_name": "beyond the plastic wall" + }, + { + "appid": 2418110, + "normalized_name": "combat medic" + }, + { + "appid": 2418120, + "normalized_name": "saviour of the wasteland" + }, + { + "appid": 2418170, + "normalized_name": "cuboy" + }, + { + "appid": 2418240, + "normalized_name": "wild witch" + }, + { + "appid": 2418290, + "normalized_name": "sparky marky episode 2" + }, + { + "appid": 2418320, + "normalized_name": "9 lives" + }, + { + "appid": 2418340, + "normalized_name": "freedom tower" + }, + { + "appid": 2418380, + "normalized_name": "finding fate" + }, + { + "appid": 2418440, + "normalized_name": "fortune miles away" + }, + { + "appid": 2418450, + "normalized_name": "jellycod" + }, + { + "appid": 2418480, + "normalized_name": "one life parkour project" + }, + { + "appid": 2418490, + "normalized_name": "trakonius" + }, + { + "appid": 2418500, + "normalized_name": "clutter reflexive the diceman cometh collector's" + }, + { + "appid": 2418520, + "normalized_name": "farm together 2" + }, + { + "appid": 2418550, + "normalized_name": "my hypnotized family episode 1" + }, + { + "appid": 2418600, + "normalized_name": "los pingheros" + }, + { + "appid": 2418610, + "normalized_name": "under siege" + }, + { + "appid": 2418630, + "normalized_name": "the haunted hospice" + }, + { + "appid": 2418680, + "normalized_name": "revenguard" + }, + { + "appid": 2418700, + "normalized_name": "pajithko" + }, + { + "appid": 2418720, + "normalized_name": "tap craft" + }, + { + "appid": 2418730, + "normalized_name": "slothtopia" + }, + { + "appid": 2418740, + "normalized_name": "tits and shadows" + }, + { + "appid": 2418780, + "normalized_name": "your spaceport!" + }, + { + "appid": 2418820, + "normalized_name": "august walk" + }, + { + "appid": 2418840, + "normalized_name": "schoolmare" + }, + { + "appid": 2418870, + "normalized_name": "slimewest" + }, + { + "appid": 2418890, + "normalized_name": "docking ships" + }, + { + "appid": 2418930, + "normalized_name": "shadowfall" + }, + { + "appid": 2418940, + "normalized_name": "reconnecting" + }, + { + "appid": 2418980, + "normalized_name": "puffer pop" + }, + { + "appid": 2418990, + "normalized_name": "fight for eden heat" + }, + { + "appid": 2419010, + "normalized_name": "backrooms wit's end" + }, + { + "appid": 2419020, + "normalized_name": "flawless darkness" + }, + { + "appid": 2419090, + "normalized_name": "star wars bounty hunter" + }, + { + "appid": 2419120, + "normalized_name": "grave robber" + }, + { + "appid": 2419180, + "normalized_name": "posthaste emporium" + }, + { + "appid": 2419200, + "normalized_name": "hymble ventures" + }, + { + "appid": 2419210, + "normalized_name": "chronos affinity" + }, + { + "appid": 2419220, + "normalized_name": "gnome" + }, + { + "appid": 2419240, + "normalized_name": "sushi ben" + }, + { + "appid": 2419250, + "normalized_name": "cosmotrons" + }, + { + "appid": 2419290, + "normalized_name": "vamps imulator" + }, + { + "appid": 2419300, + "normalized_name": "city slickers" + }, + { + "appid": 2419330, + "normalized_name": "familiar battle of the labyrinth" + }, + { + "appid": 2419360, + "normalized_name": "music summoner" + }, + { + "appid": 2419370, + "normalized_name": "universal flight simulator" + }, + { + "appid": 2419380, + "normalized_name": "ghost maze" + }, + { + "appid": 2419410, + "normalized_name": "sky fury" + }, + { + "appid": 2419430, + "normalized_name": "zombiax evil" + }, + { + "appid": 2419440, + "normalized_name": "head hunters" + }, + { + "appid": 2419500, + "normalized_name": "mossroot" + }, + { + "appid": 2419550, + "normalized_name": "月之魔阵录" + }, + { + "appid": 2419610, + "normalized_name": "tower forge dark defense" + }, + { + "appid": 2419640, + "normalized_name": "elzzup" + }, + { + "appid": 2419660, + "normalized_name": "gimmickheart" + }, + { + "appid": 2419670, + "normalized_name": "eclipsium" + }, + { + "appid": 2419690, + "normalized_name": "quadroids" + }, + { + "appid": 2419710, + "normalized_name": "saloon simulator prologue" + }, + { + "appid": 2419720, + "normalized_name": "adrenaline rampage" + }, + { + "appid": 2419730, + "normalized_name": "speed run" + }, + { + "appid": 2419740, + "normalized_name": "soulssss" + }, + { + "appid": 2419770, + "normalized_name": "louloudi asteri ~save the solar system~" + }, + { + "appid": 2419800, + "normalized_name": "harem in another world" + }, + { + "appid": 2419830, + "normalized_name": "balls and coins" + }, + { + "appid": 2419870, + "normalized_name": "where is mr cloud" + }, + { + "appid": 2419880, + "normalized_name": "honey are you there?" + }, + { + "appid": 2419900, + "normalized_name": "apartament 1406 horror" + }, + { + "appid": 2419930, + "normalized_name": "koboldkroniken" + }, + { + "appid": 2419970, + "normalized_name": "pigeon flight simulator" + }, + { + "appid": 2420000, + "normalized_name": "ghoul yeah bunny" + }, + { + "appid": 2420040, + "normalized_name": "backrooms lost place" + }, + { + "appid": 2420050, + "normalized_name": "butterflies" + }, + { + "appid": 2420090, + "normalized_name": "realms of wilorth" + }, + { + "appid": 2420100, + "normalized_name": "manitas kitchen" + }, + { + "appid": 2420110, + "normalized_name": "horizon forbidden west" + }, + { + "appid": 2420140, + "normalized_name": "crushing depths" + }, + { + "appid": 2420220, + "normalized_name": "no legs? no problem!" + }, + { + "appid": 2420230, + "normalized_name": "multiplayer military" + }, + { + "appid": 2420240, + "normalized_name": "harem!ranch life" + }, + { + "appid": 2420250, + "normalized_name": "simply cubic" + }, + { + "appid": 2420290, + "normalized_name": "universo" + }, + { + "appid": 2420300, + "normalized_name": "rap attack!" + }, + { + "appid": 2420330, + "normalized_name": "the mildew children chapter 1" + }, + { + "appid": 2420350, + "normalized_name": "the mildew children" + }, + { + "appid": 2420390, + "normalized_name": "coda" + }, + { + "appid": 2420450, + "normalized_name": "abandoned void" + }, + { + "appid": 2420460, + "normalized_name": "having a hard time" + }, + { + "appid": 2420470, + "normalized_name": "fist of the stray dog" + }, + { + "appid": 2420500, + "normalized_name": "pulsars & crowbars" + }, + { + "appid": 2420510, + "normalized_name": "holocure save the fans!" + }, + { + "appid": 2420520, + "normalized_name": "office affairs" + }, + { + "appid": 2420530, + "normalized_name": "sexy memory puzzle spanking girls" + }, + { + "appid": 2420540, + "normalized_name": "peraglees the ooloufian resistance" + }, + { + "appid": 2420560, + "normalized_name": "oyster wars" + }, + { + "appid": 2420580, + "normalized_name": "alyssa" + }, + { + "appid": 2420590, + "normalized_name": "sex simulator dirty doctor" + }, + { + "appid": 2420620, + "normalized_name": "demon slayer shion" + }, + { + "appid": 2420630, + "normalized_name": "pixel town akanemachi sideshow" + }, + { + "appid": 2420640, + "normalized_name": "angel tear goddess betrayed" + }, + { + "appid": 2420660, + "normalized_name": "neva" + }, + { + "appid": 2420690, + "normalized_name": "atnrpg" + }, + { + "appid": 2420700, + "normalized_name": "creej's corruption" + }, + { + "appid": 2420710, + "normalized_name": "volatile particle" + }, + { + "appid": 2420740, + "normalized_name": "the last hero journey to the unknown" + }, + { + "appid": 2420750, + "normalized_name": "flybye" + }, + { + "appid": 2420780, + "normalized_name": "hotel perkkow and the two vegetarian werewolves" + }, + { + "appid": 2420790, + "normalized_name": "roguestone 2 open world" + }, + { + "appid": 2420800, + "normalized_name": "sol mates" + }, + { + "appid": 2420810, + "normalized_name": "chrome sweat" + }, + { + "appid": 2420820, + "normalized_name": "vae victis" + }, + { + "appid": 2420860, + "normalized_name": "at the dream end 2 beyond gods" + }, + { + "appid": 2420870, + "normalized_name": "roober" + }, + { + "appid": 2420880, + "normalized_name": "witchhand" + }, + { + "appid": 2420890, + "normalized_name": "devil apartment" + }, + { + "appid": 2420910, + "normalized_name": "chime candy" + }, + { + "appid": 2420930, + "normalized_name": "heroes of spyria" + }, + { + "appid": 2420960, + "normalized_name": "enchantment secret hideaway" + }, + { + "appid": 2420970, + "normalized_name": "classified death in the alley" + }, + { + "appid": 2420980, + "normalized_name": "cleanup project" + }, + { + "appid": 2420990, + "normalized_name": "ancient wonders pharaoh's tomb" + }, + { + "appid": 2421000, + "normalized_name": "bandit knight" + }, + { + "appid": 2421010, + "normalized_name": "midnight door" + }, + { + "appid": 2421020, + "normalized_name": "sublime element" + }, + { + "appid": 2421080, + "normalized_name": "synth beasts" + }, + { + "appid": 2421110, + "normalized_name": "animal kostume" + }, + { + "appid": 2421190, + "normalized_name": "setheria a quest for moonaris" + }, + { + "appid": 2421200, + "normalized_name": "palesuckers" + }, + { + "appid": 2421240, + "normalized_name": "mutantity" + }, + { + "appid": 2421250, + "normalized_name": "izio the pixel kishi" + }, + { + "appid": 2421270, + "normalized_name": "crystal caverns" + }, + { + "appid": 2421290, + "normalized_name": "weapons party" + }, + { + "appid": 2421300, + "normalized_name": "侠客春秋" + }, + { + "appid": 2421310, + "normalized_name": "桃色武林" + }, + { + "appid": 2421350, + "normalized_name": "雙修武林" + }, + { + "appid": 2421370, + "normalized_name": "cryptis" + }, + { + "appid": 2421390, + "normalized_name": "talker tales" + }, + { + "appid": 2421410, + "normalized_name": "cyber manhunt 2 new world the hacking simulator" + }, + { + "appid": 2421430, + "normalized_name": "war for galaxy" + }, + { + "appid": 2421440, + "normalized_name": "chronicles of vaeltaja in search of the great wanderer" + }, + { + "appid": 2421450, + "normalized_name": "backrooms versus" + }, + { + "appid": 2421470, + "normalized_name": "kagidoko a deep learning horror game" + }, + { + "appid": 2421480, + "normalized_name": "poly" + }, + { + "appid": 2421510, + "normalized_name": "crescent quest" + }, + { + "appid": 2421520, + "normalized_name": "cosmula" + }, + { + "appid": 2421540, + "normalized_name": "白猫骑士物语/white cat stories" + }, + { + "appid": 2421560, + "normalized_name": "wolf souls" + }, + { + "appid": 2421620, + "normalized_name": "psyqik" + }, + { + "appid": 2421640, + "normalized_name": "retro rocket raiders" + }, + { + "appid": 2421660, + "normalized_name": "girl next door" + }, + { + "appid": 2421690, + "normalized_name": "palladium" + }, + { + "appid": 2421720, + "normalized_name": "delivery life simulator" + }, + { + "appid": 2421750, + "normalized_name": "gunman contracts stand alone" + }, + { + "appid": 2421770, + "normalized_name": "demoniac words" + }, + { + "appid": 2421780, + "normalized_name": "orgasm simulator 2023" + }, + { + "appid": 2421800, + "normalized_name": "lewd puzzle [18+]" + }, + { + "appid": 2421820, + "normalized_name": "cybersex chronicles [18+]" + }, + { + "appid": 2421830, + "normalized_name": "vroom vroom valley" + }, + { + "appid": 2421840, + "normalized_name": "terrors of war" + }, + { + "appid": 2421850, + "normalized_name": "velocity vortex" + }, + { + "appid": 2421880, + "normalized_name": "3 hit blunders bundle" + }, + { + "appid": 2421910, + "normalized_name": "ratyrinth" + }, + { + "appid": 2421950, + "normalized_name": "the guardian of nature" + }, + { + "appid": 2422040, + "normalized_name": "808cc" + }, + { + "appid": 2422050, + "normalized_name": "siidequest" + }, + { + "appid": 2422080, + "normalized_name": "ajax’s trial" + }, + { + "appid": 2422090, + "normalized_name": "treasure chest clicker" + }, + { + "appid": 2422110, + "normalized_name": "axis football 2024" + }, + { + "appid": 2422170, + "normalized_name": "anonymous messages" + }, + { + "appid": 2422180, + "normalized_name": "it clicker dinosaur in the code world" + }, + { + "appid": 2422210, + "normalized_name": "bearnard" + }, + { + "appid": 2422310, + "normalized_name": "trupki" + }, + { + "appid": 2422340, + "normalized_name": "haunted legends the call of despair collector's" + }, + { + "appid": 2422360, + "normalized_name": "the four paths" + }, + { + "appid": 2422390, + "normalized_name": "citizens on mars prologue" + }, + { + "appid": 2422450, + "normalized_name": "checkmate challenge" + }, + { + "appid": 2422540, + "normalized_name": "burning branch" + }, + { + "appid": 2422560, + "normalized_name": "stack making neighbors" + }, + { + "appid": 2422570, + "normalized_name": "wine hunt aim fidelity" + }, + { + "appid": 2422590, + "normalized_name": "ezerath's last hope" + }, + { + "appid": 2422610, + "normalized_name": "love love candy" + }, + { + "appid": 2422710, + "normalized_name": "disasters escape the island" + }, + { + "appid": 2422720, + "normalized_name": "blackout memphis" + }, + { + "appid": 2422770, + "normalized_name": "the stars are hungry" + }, + { + "appid": 2422810, + "normalized_name": "red entropy" + }, + { + "appid": 2422840, + "normalized_name": "a whisper in the twilight chapter one" + }, + { + "appid": 2422850, + "normalized_name": "the unknown" + }, + { + "appid": 2422870, + "normalized_name": "bronzebeard's tavern" + }, + { + "appid": 2422880, + "normalized_name": "hepo" + }, + { + "appid": 2422910, + "normalized_name": "love quest vr los angeles" + }, + { + "appid": 2422990, + "normalized_name": "weather dominance" + }, + { + "appid": 2423000, + "normalized_name": "fenrir's fury" + }, + { + "appid": 2423020, + "normalized_name": "kingdom flipper" + }, + { + "appid": 2423050, + "normalized_name": "root of win" + }, + { + "appid": 2423070, + "normalized_name": "speakeasy" + }, + { + "appid": 2423080, + "normalized_name": "detective agency gray tie 2 collector's" + }, + { + "appid": 2423090, + "normalized_name": "reincarnated as a noble rpg" + }, + { + "appid": 2423100, + "normalized_name": "terrierble logic" + }, + { + "appid": 2423130, + "normalized_name": "gun and girl" + }, + { + "appid": 2423140, + "normalized_name": "they're not monsters" + }, + { + "appid": 2423180, + "normalized_name": "liberta rise of freedom" + }, + { + "appid": 2423200, + "normalized_name": "duty 3 factory guard" + }, + { + "appid": 2423270, + "normalized_name": "pilo and the holobook" + }, + { + "appid": 2423280, + "normalized_name": "pirates rogue's fortune" + }, + { + "appid": 2423290, + "normalized_name": "handmancers" + }, + { + "appid": 2423300, + "normalized_name": "迷宮校舎 | school labyrinth" + }, + { + "appid": 2423320, + "normalized_name": "homicipher demo" + }, + { + "appid": 2423360, + "normalized_name": "empire origin rise" + }, + { + "appid": 2423470, + "normalized_name": "suicide guy the lost dreams" + }, + { + "appid": 2423480, + "normalized_name": "pussy cum with me" + }, + { + "appid": 2423590, + "normalized_name": "dr. carlos' personality exam" + }, + { + "appid": 2423620, + "normalized_name": "星际工业国" + }, + { + "appid": 2423650, + "normalized_name": "3d puzzle port" + }, + { + "appid": 2423660, + "normalized_name": "3d puzzle last of city" + }, + { + "appid": 2423670, + "normalized_name": "let's bounce! popsicle boy!" + }, + { + "appid": 2423710, + "normalized_name": "eldritchvania" + }, + { + "appid": 2423770, + "normalized_name": "audsdg" + }, + { + "appid": 2423780, + "normalized_name": "strategy game but with a penguin who has a sword" + }, + { + "appid": 2423830, + "normalized_name": "multiplayer turtles" + }, + { + "appid": 2423860, + "normalized_name": "flock party" + }, + { + "appid": 2423940, + "normalized_name": "broken minds" + }, + { + "appid": 2423960, + "normalized_name": "lord of the click interstellar wars" + }, + { + "appid": 2424000, + "normalized_name": "wisp child" + }, + { + "appid": 2424010, + "normalized_name": "parcel simulator" + }, + { + "appid": 2424040, + "normalized_name": "maronia" + }, + { + "appid": 2424050, + "normalized_name": "r4yl (run for your life!)" + }, + { + "appid": 2424110, + "normalized_name": "demon slayer kimetsu no yaiba sweep the board!" + }, + { + "appid": 2424160, + "normalized_name": "survivor's end" + }, + { + "appid": 2424170, + "normalized_name": "convolution of fear" + }, + { + "appid": 2424230, + "normalized_name": "locuras en el banaverso" + }, + { + "appid": 2424240, + "normalized_name": "プリンと盾琴" + }, + { + "appid": 2424270, + "normalized_name": "something wicked lies beneath" + }, + { + "appid": 2424300, + "normalized_name": "grey heritage noble duty" + }, + { + "appid": 2424310, + "normalized_name": "rexuelinhun dynasty" + }, + { + "appid": 2424330, + "normalized_name": "quest machina" + }, + { + "appid": 2424440, + "normalized_name": "lilith rising season 1" + }, + { + "appid": 2424450, + "normalized_name": "circuit breakout dual polarity" + }, + { + "appid": 2424470, + "normalized_name": "speedrunnerz" + }, + { + "appid": 2424480, + "normalized_name": "no heroes here 2" + }, + { + "appid": 2424500, + "normalized_name": "the wind's path" + }, + { + "appid": 2424510, + "normalized_name": "versus" + }, + { + "appid": 2424630, + "normalized_name": "mansion mystery" + }, + { + "appid": 2424650, + "normalized_name": "froggy's battle" + }, + { + "appid": 2424660, + "normalized_name": "game of evolution season 1" + }, + { + "appid": 2424680, + "normalized_name": "i believe in capybara supremacy!" + }, + { + "appid": 2424710, + "normalized_name": "mayhems world" + }, + { + "appid": 2424720, + "normalized_name": "破碎之家" + }, + { + "appid": 2424730, + "normalized_name": "tlo casmita" + }, + { + "appid": 2424740, + "normalized_name": "希望之城 the city of hope" + }, + { + "appid": 2424810, + "normalized_name": "lost at birth" + }, + { + "appid": 2424820, + "normalized_name": "the adventures of linshanhai chapter5 three trees" + }, + { + "appid": 2424830, + "normalized_name": "bamg2023(篮球经理模拟器)" + }, + { + "appid": 2424850, + "normalized_name": "deep sea rhapsody" + }, + { + "appid": 2424910, + "normalized_name": "red ops the first infection" + }, + { + "appid": 2424970, + "normalized_name": "perfect ninja painter" + }, + { + "appid": 2425010, + "normalized_name": "astra and the new constellation" + }, + { + "appid": 2425080, + "normalized_name": "idle multipliers" + }, + { + "appid": 2425090, + "normalized_name": "lost in the shadows" + }, + { + "appid": 2425110, + "normalized_name": "marki game collection" + }, + { + "appid": 2425130, + "normalized_name": "hacked the streamer" + }, + { + "appid": 2425150, + "normalized_name": "king of retail 2" + }, + { + "appid": 2425160, + "normalized_name": "protect the planet" + }, + { + "appid": 2425190, + "normalized_name": "隐流传说" + }, + { + "appid": 2425200, + "normalized_name": "haruka beyond the stars" + }, + { + "appid": 2425260, + "normalized_name": "roman conquest rise to power" + }, + { + "appid": 2425270, + "normalized_name": "胡服騎射 hufu riding and shooting" + }, + { + "appid": 2425280, + "normalized_name": "zombreak the last escape" + }, + { + "appid": 2425290, + "normalized_name": "project third eye" + }, + { + "appid": 2425300, + "normalized_name": "mind" + }, + { + "appid": 2425310, + "normalized_name": "sweet hut" + }, + { + "appid": 2425320, + "normalized_name": "blind bullet" + }, + { + "appid": 2425360, + "normalized_name": "datura time" + }, + { + "appid": 2425370, + "normalized_name": "《梅花易数》" + }, + { + "appid": 2425380, + "normalized_name": "我和妹子的爱恨情仇" + }, + { + "appid": 2425400, + "normalized_name": "birds aren't real" + }, + { + "appid": 2425410, + "normalized_name": "alia's carnival! flowering sky" + }, + { + "appid": 2425420, + "normalized_name": "starlights / 별빛 아래" + }, + { + "appid": 2425460, + "normalized_name": "starfuse" + }, + { + "appid": 2425480, + "normalized_name": "dead shapes" + }, + { + "appid": 2425500, + "normalized_name": "project proxima" + }, + { + "appid": 2425540, + "normalized_name": "vikings hnefatafl kings of the dark age" + }, + { + "appid": 2425570, + "normalized_name": "roots need control 3.0" + }, + { + "appid": 2425580, + "normalized_name": "ex vitro" + }, + { + "appid": 2425620, + "normalized_name": "the alpine express" + }, + { + "appid": 2425650, + "normalized_name": "scales and spells" + }, + { + "appid": 2425670, + "normalized_name": "dread descent" + }, + { + "appid": 2425680, + "normalized_name": "the witch in the woods" + }, + { + "appid": 2425700, + "normalized_name": "puzzle adventures" + }, + { + "appid": 2425720, + "normalized_name": "shards of the past" + }, + { + "appid": 2425740, + "normalized_name": "竹书纪年:三国志风云录" + }, + { + "appid": 2425770, + "normalized_name": "my unusual feline friend" + }, + { + "appid": 2425780, + "normalized_name": "the legend of tiny man" + }, + { + "appid": 2425790, + "normalized_name": "road rampage" + }, + { + "appid": 2425870, + "normalized_name": "cat's meow live wallpaper" + }, + { + "appid": 2425890, + "normalized_name": "crossing damaged bridge" + }, + { + "appid": 2425920, + "normalized_name": "加纳战刃" + }, + { + "appid": 2425950, + "normalized_name": "a car that turns" + }, + { + "appid": 2425960, + "normalized_name": "farting simulator" + }, + { + "appid": 2425970, + "normalized_name": "minesweeper madness" + }, + { + "appid": 2426000, + "normalized_name": "morganica bloody harvest" + }, + { + "appid": 2426020, + "normalized_name": "indemon tales" + }, + { + "appid": 2426030, + "normalized_name": "sector clear hryaken destroy" + }, + { + "appid": 2426070, + "normalized_name": "a steamboat willie" + }, + { + "appid": 2426100, + "normalized_name": "w.t." + }, + { + "appid": 2426120, + "normalized_name": "concubine" + }, + { + "appid": 2426150, + "normalized_name": "anomalous assault" + }, + { + "appid": 2426220, + "normalized_name": "math ascension" + }, + { + "appid": 2426230, + "normalized_name": "wake up" + }, + { + "appid": 2426250, + "normalized_name": "halls of watershot" + }, + { + "appid": 2426260, + "normalized_name": "nextnight" + }, + { + "appid": 2426280, + "normalized_name": "dwarf legacy" + }, + { + "appid": 2426290, + "normalized_name": "land of honey and wine" + }, + { + "appid": 2426310, + "normalized_name": "arcana heat and cold. stories" + }, + { + "appid": 2426330, + "normalized_name": "greed and grind" + }, + { + "appid": 2426350, + "normalized_name": "champy the useless vampire" + }, + { + "appid": 2426370, + "normalized_name": "long" + }, + { + "appid": 2426380, + "normalized_name": "pact of joy prologue" + }, + { + "appid": 2426400, + "normalized_name": "road to top g" + }, + { + "appid": 2426460, + "normalized_name": "meteor down!" + }, + { + "appid": 2426500, + "normalized_name": "2 minutes 16 seconds (2分16秒)" + }, + { + "appid": 2426520, + "normalized_name": "dead city defense" + }, + { + "appid": 2426530, + "normalized_name": "nova roma" + }, + { + "appid": 2426590, + "normalized_name": "unsheltered" + }, + { + "appid": 2426610, + "normalized_name": "interstellar sentinel" + }, + { + "appid": 2426640, + "normalized_name": "kobold castle" + }, + { + "appid": 2426660, + "normalized_name": "magic potion stories" + }, + { + "appid": 2426710, + "normalized_name": "split personality doctor" + }, + { + "appid": 2426770, + "normalized_name": "runner roy" + }, + { + "appid": 2426780, + "normalized_name": "puzzle thing" + }, + { + "appid": 2426800, + "normalized_name": "pressure washer" + }, + { + "appid": 2426830, + "normalized_name": "how to tame a succubus" + }, + { + "appid": 2426840, + "normalized_name": "dragot" + }, + { + "appid": 2426860, + "normalized_name": "vapor tanks" + }, + { + "appid": 2426890, + "normalized_name": "小拾逅 gathering our childhoods" + }, + { + "appid": 2426900, + "normalized_name": "call of zombie" + }, + { + "appid": 2426960, + "normalized_name": "summoners war" + }, + { + "appid": 2426990, + "normalized_name": "delearnia fractions of hope" + }, + { + "appid": 2427000, + "normalized_name": "3d printmaster simulator printer" + }, + { + "appid": 2427050, + "normalized_name": "munch" + }, + { + "appid": 2427070, + "normalized_name": "schrott" + }, + { + "appid": 2427100, + "normalized_name": "cafe master story" + }, + { + "appid": 2427120, + "normalized_name": "home run batter vs fairy tales" + }, + { + "appid": 2427130, + "normalized_name": "the girl who kicked a rabbit" + }, + { + "appid": 2427140, + "normalized_name": "musa" + }, + { + "appid": 2427160, + "normalized_name": "小学生はませている。" + }, + { + "appid": 2427220, + "normalized_name": "tyrannical chickens" + }, + { + "appid": 2427230, + "normalized_name": "raven the goblin hunter" + }, + { + "appid": 2427270, + "normalized_name": "echoes of the forgotten" + }, + { + "appid": 2427280, + "normalized_name": "block tower prologue" + }, + { + "appid": 2427290, + "normalized_name": "collectamon" + }, + { + "appid": 2427310, + "normalized_name": "heróis de noname acesso antecipado" + }, + { + "appid": 2427320, + "normalized_name": "santa's monster shootout" + }, + { + "appid": 2427360, + "normalized_name": "idle taoist mage warrior" + }, + { + "appid": 2427410, + "normalized_name": "s.t.a.l.k.e.r. shadow of chornobyl enhanced" + }, + { + "appid": 2427420, + "normalized_name": "s.t.a.l.k.e.r. clear sky enhanced" + }, + { + "appid": 2427430, + "normalized_name": "s.t.a.l.k.e.r. call of prypiat enhanced" + }, + { + "appid": 2427450, + "normalized_name": "flick shot rogues" + }, + { + "appid": 2427460, + "normalized_name": "tattoos and tulips" + }, + { + "appid": 2427470, + "normalized_name": "red moon survival" + }, + { + "appid": 2427510, + "normalized_name": "thetawave" + }, + { + "appid": 2427530, + "normalized_name": "the nightscarred forgotten gods" + }, + { + "appid": 2427540, + "normalized_name": "magnir saga part 1" + }, + { + "appid": 2427550, + "normalized_name": "moonlight knight" + }, + { + "appid": 2427570, + "normalized_name": "block tower td" + }, + { + "appid": 2427590, + "normalized_name": "ma3" + }, + { + "appid": 2427610, + "normalized_name": "fruit 66" + }, + { + "appid": 2427640, + "normalized_name": "buildy stacky 2" + }, + { + "appid": 2427660, + "normalized_name": "ruins and refuge" + }, + { + "appid": 2427680, + "normalized_name": "puppets' dream td" + }, + { + "appid": 2427700, + "normalized_name": "backpack battles" + }, + { + "appid": 2427770, + "normalized_name": "burger cooking simulator" + }, + { + "appid": 2427790, + "normalized_name": "goldilock one the mists of jakaíra" + }, + { + "appid": 2427800, + "normalized_name": "mini drifters world racing '89" + }, + { + "appid": 2427810, + "normalized_name": "垂钓日记 the sailor’s guide to game design" + }, + { + "appid": 2427820, + "normalized_name": "longstory 2" + }, + { + "appid": 2427840, + "normalized_name": "vulpis" + }, + { + "appid": 2427850, + "normalized_name": "project apparition" + }, + { + "appid": 2427870, + "normalized_name": "gamblemancer td" + }, + { + "appid": 2427910, + "normalized_name": "neonscape" + }, + { + "appid": 2427940, + "normalized_name": "deep down" + }, + { + "appid": 2427950, + "normalized_name": "decimate drive" + }, + { + "appid": 2427960, + "normalized_name": "calcium contract" + }, + { + "appid": 2427980, + "normalized_name": "monterona" + }, + { + "appid": 2428020, + "normalized_name": "the abyss within" + }, + { + "appid": 2428100, + "normalized_name": "opposyte" + }, + { + "appid": 2428140, + "normalized_name": "tachyonest rewrite" + }, + { + "appid": 2428170, + "normalized_name": "ballbastic!" + }, + { + "appid": 2428190, + "normalized_name": "黄昏之城(town of dusk)" + }, + { + "appid": 2428200, + "normalized_name": "third defender" + }, + { + "appid": 2428230, + "normalized_name": "overlode battle over azmonite" + }, + { + "appid": 2428260, + "normalized_name": "butterfly//circuit" + }, + { + "appid": 2428310, + "normalized_name": "天行镖客 (sky escort)" + }, + { + "appid": 2428320, + "normalized_name": "just find it 2" + }, + { + "appid": 2428370, + "normalized_name": "ponk's jam the tulip thief" + }, + { + "appid": 2428390, + "normalized_name": "novalight z" + }, + { + "appid": 2428410, + "normalized_name": "light of coco" + }, + { + "appid": 2428420, + "normalized_name": "umbraclaw" + }, + { + "appid": 2428440, + "normalized_name": "new day" + }, + { + "appid": 2428450, + "normalized_name": "south words hero" + }, + { + "appid": 2428460, + "normalized_name": "怪才俱乐部2 the immortal beloved2" + }, + { + "appid": 2428470, + "normalized_name": "stars stripes and subgames" + }, + { + "appid": 2428480, + "normalized_name": "irang the last hope" + }, + { + "appid": 2428490, + "normalized_name": "swimsuit samurai" + }, + { + "appid": 2428520, + "normalized_name": "quest for gold" + }, + { + "appid": 2428600, + "normalized_name": "マスカレード・キス~危険な駆け引き~" + }, + { + "appid": 2428620, + "normalized_name": "feeble light" + }, + { + "appid": 2428640, + "normalized_name": "net defender" + }, + { + "appid": 2428660, + "normalized_name": "openflower" + }, + { + "appid": 2428680, + "normalized_name": "infernal apocalypse rise of the underworld" + }, + { + "appid": 2428690, + "normalized_name": "neon parkour 2" + }, + { + "appid": 2428700, + "normalized_name": "fallen light" + }, + { + "appid": 2428730, + "normalized_name": "swat commander prologue" + }, + { + "appid": 2428750, + "normalized_name": "saikyo robots" + }, + { + "appid": 2428780, + "normalized_name": "the last stand at camp zombie" + }, + { + "appid": 2428790, + "normalized_name": "des racines et des graines" + }, + { + "appid": 2428800, + "normalized_name": "nom nom cozy forest café" + }, + { + "appid": 2428810, + "normalized_name": "lego horizon adventures" + }, + { + "appid": 2428840, + "normalized_name": "miniatures" + }, + { + "appid": 2428920, + "normalized_name": "painted peril" + }, + { + "appid": 2428940, + "normalized_name": "recordance" + }, + { + "appid": 2428960, + "normalized_name": "the world's hardest game 3d nostalgia" + }, + { + "appid": 2428980, + "normalized_name": "bye sweet carole" + }, + { + "appid": 2428990, + "normalized_name": "brothers in hell" + }, + { + "appid": 2429000, + "normalized_name": "liona's adventure" + }, + { + "appid": 2429040, + "normalized_name": "lord of terror" + }, + { + "appid": 2429050, + "normalized_name": "fretless the wrath of riffson" + }, + { + "appid": 2429070, + "normalized_name": "gentlemen's puzzle club" + }, + { + "appid": 2429090, + "normalized_name": "garden buddies" + }, + { + "appid": 2429100, + "normalized_name": "homestar runner halloween hide n' seek" + }, + { + "appid": 2429140, + "normalized_name": "procambarus fallax" + }, + { + "appid": 2429160, + "normalized_name": "doughbee" + }, + { + "appid": 2429190, + "normalized_name": "amerzone the explorer's legacy" + }, + { + "appid": 2429200, + "normalized_name": "phil's contract" + }, + { + "appid": 2429220, + "normalized_name": "haunted hotel personal nightmare" + }, + { + "appid": 2429230, + "normalized_name": "megabat" + }, + { + "appid": 2429240, + "normalized_name": "soulslinger envoy of death" + }, + { + "appid": 2429250, + "normalized_name": "rags to liches" + }, + { + "appid": 2429260, + "normalized_name": "daycare descent" + }, + { + "appid": 2429270, + "normalized_name": "the rpg" + }, + { + "appid": 2429280, + "normalized_name": "rune song" + }, + { + "appid": 2429310, + "normalized_name": "noxious weeds" + }, + { + "appid": 2429330, + "normalized_name": "vr 太阳系" + }, + { + "appid": 2429340, + "normalized_name": "valley of the savage run" + }, + { + "appid": 2429350, + "normalized_name": "mypopgoes" + }, + { + "appid": 2429360, + "normalized_name": "the sandwich making experience" + }, + { + "appid": 2429380, + "normalized_name": "淤積的祈禱(silted prayer)" + }, + { + "appid": 2429410, + "normalized_name": "nighthover" + }, + { + "appid": 2429420, + "normalized_name": "solivagant" + }, + { + "appid": 2429440, + "normalized_name": "store story" + }, + { + "appid": 2429450, + "normalized_name": "woodcutter" + }, + { + "appid": 2429480, + "normalized_name": "gotchaball" + }, + { + "appid": 2429490, + "normalized_name": "nextbots in the backrooms" + }, + { + "appid": 2429530, + "normalized_name": "crystal tower defense" + }, + { + "appid": 2429540, + "normalized_name": "harmonis the hand made kingdoms" + }, + { + "appid": 2429580, + "normalized_name": "gate one" + }, + { + "appid": 2429590, + "normalized_name": "caislean paranormal" + }, + { + "appid": 2429600, + "normalized_name": "herdles" + }, + { + "appid": 2429620, + "normalized_name": "typing bullets" + }, + { + "appid": 2429630, + "normalized_name": "ai.cybercraft" + }, + { + "appid": 2429640, + "normalized_name": "throne and liberty" + }, + { + "appid": 2429710, + "normalized_name": "神经联结(neural nexus)" + }, + { + "appid": 2429720, + "normalized_name": "effugium" + }, + { + "appid": 2429750, + "normalized_name": "hooked" + }, + { + "appid": 2429760, + "normalized_name": "johnny rocketfingers game collection!" + }, + { + "appid": 2429810, + "normalized_name": "the hauntings dark passenger" + }, + { + "appid": 2429860, + "normalized_name": "living with sister monochrome fantasy" + }, + { + "appid": 2429870, + "normalized_name": "quarta amethyst" + }, + { + "appid": 2429890, + "normalized_name": "incubus quest" + }, + { + "appid": 2429930, + "normalized_name": "power network tycoon" + }, + { + "appid": 2429960, + "normalized_name": "forwards" + }, + { + "appid": 2429970, + "normalized_name": "翔太の毕业季" + }, + { + "appid": 2430010, + "normalized_name": "gennady" + }, + { + "appid": 2430020, + "normalized_name": "infinium" + }, + { + "appid": 2430080, + "normalized_name": "the struggle to survive the dragon siege" + }, + { + "appid": 2430110, + "normalized_name": "sapiens craft" + }, + { + "appid": 2430160, + "normalized_name": "taimanin asagi" + }, + { + "appid": 2430170, + "normalized_name": "hidden pass" + }, + { + "appid": 2430190, + "normalized_name": "翻转的梦 flippeddream" + }, + { + "appid": 2430200, + "normalized_name": "hot girls delivery club" + }, + { + "appid": 2430220, + "normalized_name": "catass" + }, + { + "appid": 2430250, + "normalized_name": "苍之世界:迷途" + }, + { + "appid": 2430260, + "normalized_name": "pure fun vr" + }, + { + "appid": 2430280, + "normalized_name": "who did it?" + }, + { + "appid": 2430290, + "normalized_name": "neon fantasy furries" + }, + { + "appid": 2430300, + "normalized_name": "hauma a detective noir story prologue" + }, + { + "appid": 2430310, + "normalized_name": "mighty marbles" + }, + { + "appid": 2430360, + "normalized_name": "code of war 3d online shooter" + }, + { + "appid": 2430370, + "normalized_name": "striker zone" + }, + { + "appid": 2430380, + "normalized_name": "war gun" + }, + { + "appid": 2430390, + "normalized_name": "dysplaced" + }, + { + "appid": 2430410, + "normalized_name": "myth" + }, + { + "appid": 2430440, + "normalized_name": "time raiders" + }, + { + "appid": 2430470, + "normalized_name": "vilde" + }, + { + "appid": 2430500, + "normalized_name": "delven" + }, + { + "appid": 2430510, + "normalized_name": "pyramid curse" + }, + { + "appid": 2430540, + "normalized_name": "radix chronicle" + }, + { + "appid": 2430580, + "normalized_name": "astrosmash" + }, + { + "appid": 2430590, + "normalized_name": "true maze defiance" + }, + { + "appid": 2430620, + "normalized_name": "castle of terror" + }, + { + "appid": 2430630, + "normalized_name": "sensual adventures episode 8" + }, + { + "appid": 2430640, + "normalized_name": "sensual adventures episode 9" + }, + { + "appid": 2430660, + "normalized_name": "micegard" + }, + { + "appid": 2430680, + "normalized_name": "hope is gone" + }, + { + "appid": 2430690, + "normalized_name": "幸运草的约定" + }, + { + "appid": 2430700, + "normalized_name": "love x crotch x gym" + }, + { + "appid": 2430710, + "normalized_name": "operator observation" + }, + { + "appid": 2430730, + "normalized_name": "my child lebensborn" + }, + { + "appid": 2430760, + "normalized_name": "family arcade" + }, + { + "appid": 2430770, + "normalized_name": "violet bricks" + }, + { + "appid": 2430790, + "normalized_name": "phonk cats" + }, + { + "appid": 2430800, + "normalized_name": "laser survivor" + }, + { + "appid": 2430810, + "normalized_name": "roll the dark heart" + }, + { + "appid": 2430820, + "normalized_name": "squab" + }, + { + "appid": 2430830, + "normalized_name": "strongblade puzzle quest and match 3 adventure" + }, + { + "appid": 2430860, + "normalized_name": "sea of chaos" + }, + { + "appid": 2430900, + "normalized_name": "among ashes" + }, + { + "appid": 2430910, + "normalized_name": "unknown fpv drone simulator" + }, + { + "appid": 2430980, + "normalized_name": "staircase55 a scp 087 story" + }, + { + "appid": 2430990, + "normalized_name": "their land" + }, + { + "appid": 2431030, + "normalized_name": "spicier than sugar!" + }, + { + "appid": 2431070, + "normalized_name": "98xx" + }, + { + "appid": 2431090, + "normalized_name": "fishgun" + }, + { + "appid": 2431100, + "normalized_name": "that which gave chase" + }, + { + "appid": 2431110, + "normalized_name": "furry futanari jigsaw 2" + }, + { + "appid": 2431130, + "normalized_name": "procrastinaut" + }, + { + "appid": 2431140, + "normalized_name": "pegdrop hearts" + }, + { + "appid": 2431200, + "normalized_name": "popologist camera slinger" + }, + { + "appid": 2431210, + "normalized_name": "no one's escaped" + }, + { + "appid": 2431220, + "normalized_name": "fiadh" + }, + { + "appid": 2431230, + "normalized_name": "cyber ninja that climbs the city" + }, + { + "appid": 2431260, + "normalized_name": "ad victoriam" + }, + { + "appid": 2431280, + "normalized_name": "grandmasters ascent" + }, + { + "appid": 2431310, + "normalized_name": "anyu" + }, + { + "appid": 2431320, + "normalized_name": "cat aclysm" + }, + { + "appid": 2431330, + "normalized_name": "galactic grinder" + }, + { + "appid": 2431360, + "normalized_name": "末日校园" + }, + { + "appid": 2431370, + "normalized_name": "cube clash rumble and smash" + }, + { + "appid": 2431390, + "normalized_name": "magicarchitect" + }, + { + "appid": 2431410, + "normalized_name": "grab the goblins!" + }, + { + "appid": 2431480, + "normalized_name": "breached" + }, + { + "appid": 2431490, + "normalized_name": "英雄之旅" + }, + { + "appid": 2431510, + "normalized_name": "bluesuburbia" + }, + { + "appid": 2431520, + "normalized_name": "horny dungeon tales from aesion" + }, + { + "appid": 2431560, + "normalized_name": "feast manor" + }, + { + "appid": 2431570, + "normalized_name": "fire breakout" + }, + { + "appid": 2431580, + "normalized_name": "rip ridiculously injury prone" + }, + { + "appid": 2431590, + "normalized_name": "starship crafter" + }, + { + "appid": 2431600, + "normalized_name": "废土华夏wasteland of east" + }, + { + "appid": 2431610, + "normalized_name": "ikuzo" + }, + { + "appid": 2431640, + "normalized_name": "gravity" + }, + { + "appid": 2431650, + "normalized_name": "captain buttface" + }, + { + "appid": 2431690, + "normalized_name": "we are lost" + }, + { + "appid": 2431700, + "normalized_name": "vampire the masquerade justice" + }, + { + "appid": 2431720, + "normalized_name": "sea rivals vr" + }, + { + "appid": 2431730, + "normalized_name": "v air traffic control" + }, + { + "appid": 2431760, + "normalized_name": "infinite random defense" + }, + { + "appid": 2431790, + "normalized_name": "cyber paradise" + }, + { + "appid": 2431820, + "normalized_name": "secret shuffle" + }, + { + "appid": 2431830, + "normalized_name": "the dark climb" + }, + { + "appid": 2431840, + "normalized_name": "cannibal tales episode 1" + }, + { + "appid": 2431850, + "normalized_name": "bumper arena" + }, + { + "appid": 2431880, + "normalized_name": "high sea saga dx" + }, + { + "appid": 2431920, + "normalized_name": "heir of the dog" + }, + { + "appid": 2431940, + "normalized_name": "time knight vs. zombies" + }, + { + "appid": 2431960, + "normalized_name": "擱淺地 dream antique" + }, + { + "appid": 2431980, + "normalized_name": "goblin camp" + }, + { + "appid": 2432000, + "normalized_name": "inside the labs" + }, + { + "appid": 2432010, + "normalized_name": "the stranded traveler" + }, + { + "appid": 2432030, + "normalized_name": "city legends the ghost of misty hill collector's" + }, + { + "appid": 2432040, + "normalized_name": "ネジ込みシミュレーターtma02" + }, + { + "appid": 2432060, + "normalized_name": "sel mounta siege the demon castle" + }, + { + "appid": 2432100, + "normalized_name": "one." + }, + { + "appid": 2432110, + "normalized_name": "white album memories like falling snow" + }, + { + "appid": 2432190, + "normalized_name": "metania" + }, + { + "appid": 2432230, + "normalized_name": "glitter justice" + }, + { + "appid": 2432240, + "normalized_name": "smash it wild" + }, + { + "appid": 2432250, + "normalized_name": "wordsearch attack" + }, + { + "appid": 2432260, + "normalized_name": "ringleaders" + }, + { + "appid": 2432280, + "normalized_name": "rome frontiers" + }, + { + "appid": 2432300, + "normalized_name": "leatherneck" + }, + { + "appid": 2432310, + "normalized_name": "connect lyrical spectacle forest" + }, + { + "appid": 2432450, + "normalized_name": "invicta the next queen" + }, + { + "appid": 2432460, + "normalized_name": "born to rise" + }, + { + "appid": 2432470, + "normalized_name": "andara rise for rebellion" + }, + { + "appid": 2432490, + "normalized_name": "broke signal badlands a world of desert adventure" + }, + { + "appid": 2432500, + "normalized_name": "panchin is frustrated" + }, + { + "appid": 2432510, + "normalized_name": "vecter assault battle for survival" + }, + { + "appid": 2432530, + "normalized_name": "revamped" + }, + { + "appid": 2432580, + "normalized_name": "chasm bound" + }, + { + "appid": 2432600, + "normalized_name": "martial arts tycoon brazil" + }, + { + "appid": 2432630, + "normalized_name": "mythical agent" + }, + { + "appid": 2432660, + "normalized_name": "clan monsters" + }, + { + "appid": 2432670, + "normalized_name": "sex coach hot yoga" + }, + { + "appid": 2432770, + "normalized_name": "project teddy" + }, + { + "appid": 2432780, + "normalized_name": "sex simulator bdsm" + }, + { + "appid": 2432860, + "normalized_name": "menace" + }, + { + "appid": 2432900, + "normalized_name": "aggregate core" + }, + { + "appid": 2432930, + "normalized_name": "monster souls chains of chimera" + }, + { + "appid": 2432940, + "normalized_name": "nuke them all" + }, + { + "appid": 2432980, + "normalized_name": "traffic racer highway online" + }, + { + "appid": 2432990, + "normalized_name": "sanguivore" + }, + { + "appid": 2433010, + "normalized_name": "small nights" + }, + { + "appid": 2433090, + "normalized_name": "" + }, + { + "appid": 2433150, + "normalized_name": "loop loop room" + }, + { + "appid": 2433160, + "normalized_name": "luffi homebound" + }, + { + "appid": 2433170, + "normalized_name": "ciudad alfombra" + }, + { + "appid": 2433220, + "normalized_name": "reflector rhythm master" + }, + { + "appid": 2433230, + "normalized_name": "reel life" + }, + { + "appid": 2433240, + "normalized_name": "タングステンの復讐劇 the revenge of tungsten" + }, + { + "appid": 2433280, + "normalized_name": "streetthugz" + }, + { + "appid": 2433320, + "normalized_name": "mage mayhem" + }, + { + "appid": 2433330, + "normalized_name": "garrison one man army" + }, + { + "appid": 2433360, + "normalized_name": "warja" + }, + { + "appid": 2433370, + "normalized_name": "jungle gems vr" + }, + { + "appid": 2433380, + "normalized_name": "yggdrasill" + }, + { + "appid": 2433390, + "normalized_name": "grim tales echo of the past" + }, + { + "appid": 2433400, + "normalized_name": "chimeras blinding love" + }, + { + "appid": 2433460, + "normalized_name": "腾起之蛇:现世" + }, + { + "appid": 2433470, + "normalized_name": "romance club stories i play" + }, + { + "appid": 2433480, + "normalized_name": "the mystery of cargo ship 1769" + }, + { + "appid": 2433500, + "normalized_name": "cosmic persecution" + }, + { + "appid": 2433560, + "normalized_name": "meadgard" + }, + { + "appid": 2433600, + "normalized_name": "bid auction hunter" + }, + { + "appid": 2433610, + "normalized_name": "subway simulator underground train ride" + }, + { + "appid": 2433620, + "normalized_name": "sky runners infinite parkour" + }, + { + "appid": 2433630, + "normalized_name": "the left behind" + }, + { + "appid": 2433640, + "normalized_name": "jumpcat" + }, + { + "appid": 2433670, + "normalized_name": "deep loop" + }, + { + "appid": 2433680, + "normalized_name": "ways" + }, + { + "appid": 2433690, + "normalized_name": "deleted" + }, + { + "appid": 2433700, + "normalized_name": "boaty tanks" + }, + { + "appid": 2433710, + "normalized_name": "boaty tanks 2" + }, + { + "appid": 2433730, + "normalized_name": "unsorted horror" + }, + { + "appid": 2433740, + "normalized_name": "slay to the end" + }, + { + "appid": 2433760, + "normalized_name": "mutrix" + }, + { + "appid": 2433790, + "normalized_name": "tiny tires" + }, + { + "appid": 2433810, + "normalized_name": "celente immortal" + }, + { + "appid": 2433820, + "normalized_name": "supracore" + }, + { + "appid": 2433830, + "normalized_name": "蜘蛛" + }, + { + "appid": 2433850, + "normalized_name": "arcane tower survivors" + }, + { + "appid": 2433860, + "normalized_name": "the shaman's ark" + }, + { + "appid": 2433910, + "normalized_name": "escape the office" + }, + { + "appid": 2433940, + "normalized_name": "fall from space" + }, + { + "appid": 2433950, + "normalized_name": "fall of the stick knights" + }, + { + "appid": 2433960, + "normalized_name": "snow fortress 2" + }, + { + "appid": 2434000, + "normalized_name": "the puppeteer" + }, + { + "appid": 2434020, + "normalized_name": "我是大房东" + }, + { + "appid": 2434050, + "normalized_name": "the sisters 2 road to fame" + }, + { + "appid": 2434060, + "normalized_name": "jetpack battle" + }, + { + "appid": 2434080, + "normalized_name": "catcha snatcha" + }, + { + "appid": 2434090, + "normalized_name": "death roads tournament prologue" + }, + { + "appid": 2434100, + "normalized_name": "monti the hidden secret" + }, + { + "appid": 2434110, + "normalized_name": "arctic 51" + }, + { + "appid": 2434120, + "normalized_name": "pista motorsport" + }, + { + "appid": 2434130, + "normalized_name": "jesus uncrossed" + }, + { + "appid": 2434160, + "normalized_name": "office is my harem🔞" + }, + { + "appid": 2434290, + "normalized_name": "box dungeons" + }, + { + "appid": 2434300, + "normalized_name": "barkelona" + }, + { + "appid": 2434310, + "normalized_name": "maximum apocalypse" + }, + { + "appid": 2434330, + "normalized_name": "welcome to mars 9" + }, + { + "appid": 2434340, + "normalized_name": "black box lss 闪耀的永生者" + }, + { + "appid": 2434380, + "normalized_name": "breach chicago war zone" + }, + { + "appid": 2434400, + "normalized_name": "ghost simulator" + }, + { + "appid": 2434420, + "normalized_name": "arashi castles of sin final cut" + }, + { + "appid": 2434440, + "normalized_name": "king of silence" + }, + { + "appid": 2434450, + "normalized_name": "skystrider" + }, + { + "appid": 2434480, + "normalized_name": "mystery case files incident at pendle tower" + }, + { + "appid": 2434490, + "normalized_name": "queen of moths" + }, + { + "appid": 2434510, + "normalized_name": "gravity waves" + }, + { + "appid": 2434540, + "normalized_name": "stranded engineers" + }, + { + "appid": 2434570, + "normalized_name": "tag tower attack game" + }, + { + "appid": 2434590, + "normalized_name": "little odyssey" + }, + { + "appid": 2434600, + "normalized_name": "shantytown" + }, + { + "appid": 2434620, + "normalized_name": "super words" + }, + { + "appid": 2434640, + "normalized_name": "the deepwater" + }, + { + "appid": 2434670, + "normalized_name": "mommy sensei horny homework" + }, + { + "appid": 2434710, + "normalized_name": "tank and roll" + }, + { + "appid": 2434720, + "normalized_name": "maces and dices" + }, + { + "appid": 2434760, + "normalized_name": "staros" + }, + { + "appid": 2434810, + "normalized_name": "next move" + }, + { + "appid": 2434830, + "normalized_name": "surfpunk" + }, + { + "appid": 2434860, + "normalized_name": "stoneman's adventure" + }, + { + "appid": 2434870, + "normalized_name": "splatterpus" + }, + { + "appid": 2434910, + "normalized_name": "antipsychotic" + }, + { + "appid": 2434930, + "normalized_name": "blue ridge hunting" + }, + { + "appid": 2434940, + "normalized_name": "废墟:重生之门" + }, + { + "appid": 2435010, + "normalized_name": "xr22 seaguard" + }, + { + "appid": 2435020, + "normalized_name": "怨禍" + }, + { + "appid": 2435030, + "normalized_name": "sirius 4" + }, + { + "appid": 2435040, + "normalized_name": "freedom is piracy" + }, + { + "appid": 2435050, + "normalized_name": "月蝕" + }, + { + "appid": 2435060, + "normalized_name": "it is just a story horror game" + }, + { + "appid": 2435090, + "normalized_name": "talented" + }, + { + "appid": 2435120, + "normalized_name": "let's kill hitler the game" + }, + { + "appid": 2435180, + "normalized_name": "neyasnoe" + }, + { + "appid": 2435200, + "normalized_name": "oblation" + }, + { + "appid": 2435220, + "normalized_name": "god's plan" + }, + { + "appid": 2435230, + "normalized_name": "space mutants" + }, + { + "appid": 2435240, + "normalized_name": "sulphur memories alchemist" + }, + { + "appid": 2435250, + "normalized_name": "highschool53" + }, + { + "appid": 2435270, + "normalized_name": "mana expel" + }, + { + "appid": 2435280, + "normalized_name": "arlo's ascension" + }, + { + "appid": 2435300, + "normalized_name": "aetherise" + }, + { + "appid": 2435310, + "normalized_name": "stunt paradise" + }, + { + "appid": 2435320, + "normalized_name": "terra toy" + }, + { + "appid": 2435330, + "normalized_name": "zombiepede" + }, + { + "appid": 2435350, + "normalized_name": "the trip" + }, + { + "appid": 2435360, + "normalized_name": "escape stories virtual reality" + }, + { + "appid": 2435390, + "normalized_name": "retrosurge" + }, + { + "appid": 2435410, + "normalized_name": "trials of randoom" + }, + { + "appid": 2435450, + "normalized_name": "azoove" + }, + { + "appid": 2435460, + "normalized_name": "loopsters" + }, + { + "appid": 2435470, + "normalized_name": "fightcore forge" + }, + { + "appid": 2435490, + "normalized_name": "unispies chapter 1 havana cuba" + }, + { + "appid": 2435510, + "normalized_name": "trow's space" + }, + { + "appid": 2435520, + "normalized_name": "avalanca" + }, + { + "appid": 2435560, + "normalized_name": "the escort (special edition)" + }, + { + "appid": 2435590, + "normalized_name": "i commissioned some pigeons" + }, + { + "appid": 2435600, + "normalized_name": "the dark tones loss" + }, + { + "appid": 2435610, + "normalized_name": "my neighbour is a bunny demon" + }, + { + "appid": 2435620, + "normalized_name": "b.. evasive" + }, + { + "appid": 2435680, + "normalized_name": "magma fever" + }, + { + "appid": 2435690, + "normalized_name": "break them all" + }, + { + "appid": 2435710, + "normalized_name": "i hate (other) animals!" + }, + { + "appid": 2435720, + "normalized_name": "i want to be buried in slime!" + }, + { + "appid": 2435730, + "normalized_name": "mixed unit tactics" + }, + { + "appid": 2435750, + "normalized_name": "escape from lighthouse" + }, + { + "appid": 2435770, + "normalized_name": "impeached 2" + }, + { + "appid": 2435800, + "normalized_name": "kenny 7" + }, + { + "appid": 2435810, + "normalized_name": "black box lss 慈爱的救济者" + }, + { + "appid": 2435840, + "normalized_name": "colorlines" + }, + { + "appid": 2435870, + "normalized_name": "blood rush" + }, + { + "appid": 2435880, + "normalized_name": "akatsuki zero" + }, + { + "appid": 2435890, + "normalized_name": "snotty's sewer" + }, + { + "appid": 2435900, + "normalized_name": "sharpshooter3d" + }, + { + "appid": 2435910, + "normalized_name": "ghoul smash" + }, + { + "appid": 2435920, + "normalized_name": "heaven's paws" + }, + { + "appid": 2435960, + "normalized_name": "hitler waifu" + }, + { + "appid": 2435980, + "normalized_name": "space odyssey" + }, + { + "appid": 2435990, + "normalized_name": "gun to the zone" + }, + { + "appid": 2436030, + "normalized_name": "mitrapunk" + }, + { + "appid": 2436070, + "normalized_name": "prophecy" + }, + { + "appid": 2436090, + "normalized_name": "if walls could answer" + }, + { + "appid": 2436110, + "normalized_name": "karnal" + }, + { + "appid": 2436130, + "normalized_name": "polyroll pocket" + }, + { + "appid": 2436140, + "normalized_name": "mortal holdings" + }, + { + "appid": 2436150, + "normalized_name": "king story prologue" + }, + { + "appid": 2436160, + "normalized_name": "europa one" + }, + { + "appid": 2436180, + "normalized_name": "sunset moon" + }, + { + "appid": 2436190, + "normalized_name": "survivors will 幸存者意志" + }, + { + "appid": 2436230, + "normalized_name": "cooking pix" + }, + { + "appid": 2436240, + "normalized_name": "gobbo's gambit" + }, + { + "appid": 2436280, + "normalized_name": "bung ball" + }, + { + "appid": 2436330, + "normalized_name": "dickland horror quest" + }, + { + "appid": 2436340, + "normalized_name": "ゆらぎ荘の幽奈さん 湯けむり迷宮 極み" + }, + { + "appid": 2436350, + "normalized_name": "dotdot" + }, + { + "appid": 2436380, + "normalized_name": "狐狸探險記 歸途" + }, + { + "appid": 2436390, + "normalized_name": "gamedev trash" + }, + { + "appid": 2436400, + "normalized_name": "future theater" + }, + { + "appid": 2436410, + "normalized_name": "asfalia fear" + }, + { + "appid": 2436420, + "normalized_name": "天书江湖" + }, + { + "appid": 2436440, + "normalized_name": "zodiark reform bandage rewind" + }, + { + "appid": 2436470, + "normalized_name": "cannon target" + }, + { + "appid": 2436480, + "normalized_name": "坦克世界:铁甲风暴" + }, + { + "appid": 2436490, + "normalized_name": "veil" + }, + { + "appid": 2436500, + "normalized_name": "trophies" + }, + { + "appid": 2436570, + "normalized_name": "dragon quest builders" + }, + { + "appid": 2436660, + "normalized_name": "splatterbot" + }, + { + "appid": 2436680, + "normalized_name": "crimen mercenary tales" + }, + { + "appid": 2436730, + "normalized_name": "london cab" + }, + { + "appid": 2436750, + "normalized_name": "baro kart" + }, + { + "appid": 2436810, + "normalized_name": "go! go! mister chickums" + }, + { + "appid": 2436850, + "normalized_name": "enmazened" + }, + { + "appid": 2436870, + "normalized_name": "sigilfarer" + }, + { + "appid": 2436940, + "normalized_name": "sephiria" + }, + { + "appid": 2436970, + "normalized_name": "wild city" + }, + { + "appid": 2437000, + "normalized_name": "astra hunter zosma" + }, + { + "appid": 2437040, + "normalized_name": "reigns three kingdoms" + }, + { + "appid": 2437080, + "normalized_name": "stardust defenders" + }, + { + "appid": 2437110, + "normalized_name": "append" + }, + { + "appid": 2437120, + "normalized_name": "the last martian" + }, + { + "appid": 2437150, + "normalized_name": "paint fiesta" + }, + { + "appid": 2437170, + "normalized_name": "smite 2" + }, + { + "appid": 2437180, + "normalized_name": "tavern ventures guilds & tales" + }, + { + "appid": 2437230, + "normalized_name": "trim for your dream" + }, + { + "appid": 2437300, + "normalized_name": "sojo" + }, + { + "appid": 2437310, + "normalized_name": "onslaught rift" + }, + { + "appid": 2437330, + "normalized_name": "novus orbis" + }, + { + "appid": 2437360, + "normalized_name": "the hookmarine" + }, + { + "appid": 2437390, + "normalized_name": "enginefall" + }, + { + "appid": 2437400, + "normalized_name": "medieval simulators tavern" + }, + { + "appid": 2437430, + "normalized_name": "devinica" + }, + { + "appid": 2437490, + "normalized_name": "reaper's isle" + }, + { + "appid": 2437510, + "normalized_name": "btd btd" + }, + { + "appid": 2437530, + "normalized_name": "novantica" + }, + { + "appid": 2437550, + "normalized_name": "elidriel" + }, + { + "appid": 2437560, + "normalized_name": "phantom of zana" + }, + { + "appid": 2437570, + "normalized_name": "chambers" + }, + { + "appid": 2437640, + "normalized_name": "parfum nostalgique full bloom" + }, + { + "appid": 2437660, + "normalized_name": "astrominer" + }, + { + "appid": 2437670, + "normalized_name": "dagger directive" + }, + { + "appid": 2437680, + "normalized_name": "grand escape" + }, + { + "appid": 2437690, + "normalized_name": "zoo park story" + }, + { + "appid": 2437700, + "normalized_name": "let's study japanese a sexy and fun way to learn japanese vol1" + }, + { + "appid": 2437710, + "normalized_name": "蜀境传说 回合" + }, + { + "appid": 2437740, + "normalized_name": "bloba's adventure" + }, + { + "appid": 2437750, + "normalized_name": "paradise lust 2" + }, + { + "appid": 2437760, + "normalized_name": "the dead are not dead" + }, + { + "appid": 2437800, + "normalized_name": "ensol" + }, + { + "appid": 2437870, + "normalized_name": "abyssmare" + }, + { + "appid": 2437890, + "normalized_name": "the pulse of evil" + }, + { + "appid": 2437910, + "normalized_name": "reformpunk重組叛客" + }, + { + "appid": 2437930, + "normalized_name": "vertical fighters" + }, + { + "appid": 2437940, + "normalized_name": "crossroads inn 2 tavern manager" + }, + { + "appid": 2437950, + "normalized_name": "around us zombie shooter" + }, + { + "appid": 2437980, + "normalized_name": "ball bash" + }, + { + "appid": 2437990, + "normalized_name": "slayer" + }, + { + "appid": 2438010, + "normalized_name": "samurai beat" + }, + { + "appid": 2438020, + "normalized_name": "sandbox" + }, + { + "appid": 2438050, + "normalized_name": "illuminate frame" + }, + { + "appid": 2438090, + "normalized_name": "a void hope" + }, + { + "appid": 2438110, + "normalized_name": "medical shift the emergency room simulator" + }, + { + "appid": 2438120, + "normalized_name": "runout hothead paws" + }, + { + "appid": 2438140, + "normalized_name": "variator" + }, + { + "appid": 2438160, + "normalized_name": "world war armies" + }, + { + "appid": 2438170, + "normalized_name": "sizif" + }, + { + "appid": 2438180, + "normalized_name": "doggy don't care" + }, + { + "appid": 2438190, + "normalized_name": "lethalcrisis リーサルクライシス" + }, + { + "appid": 2438200, + "normalized_name": "lethal crisis proto sphere リーサルクライシスプロトスフィア" + }, + { + "appid": 2438210, + "normalized_name": "smoots pinball" + }, + { + "appid": 2438220, + "normalized_name": "divine guardian | vệ thần" + }, + { + "appid": 2438230, + "normalized_name": "桌球大比拼" + }, + { + "appid": 2438240, + "normalized_name": "demonic episode" + }, + { + "appid": 2438260, + "normalized_name": "tiny kingdom" + }, + { + "appid": 2438270, + "normalized_name": "landfall survival" + }, + { + "appid": 2438290, + "normalized_name": "hanctt origins" + }, + { + "appid": 2438330, + "normalized_name": "pale coins" + }, + { + "appid": 2438340, + "normalized_name": "elemental odyssey" + }, + { + "appid": 2438380, + "normalized_name": "jigsaw puzzle anime girls" + }, + { + "appid": 2438410, + "normalized_name": "the world of nifty craft" + }, + { + "appid": 2438440, + "normalized_name": "hammer of pain" + }, + { + "appid": 2438460, + "normalized_name": "evil robots" + }, + { + "appid": 2438490, + "normalized_name": "firerun 逃生門" + }, + { + "appid": 2438520, + "normalized_name": "nemurimouto" + }, + { + "appid": 2438540, + "normalized_name": "sci fi builder" + }, + { + "appid": 2438570, + "normalized_name": "hearth's pantheon" + }, + { + "appid": 2438610, + "normalized_name": "be 忍者" + }, + { + "appid": 2438630, + "normalized_name": "apocalypse blitz" + }, + { + "appid": 2438680, + "normalized_name": "airborne empire" + }, + { + "appid": 2438760, + "normalized_name": "eos 503" + }, + { + "appid": 2438770, + "normalized_name": "chores of corruption" + }, + { + "appid": 2438780, + "normalized_name": "mythic battlegrounds demonic siege" + }, + { + "appid": 2438790, + "normalized_name": "once upon a slime" + }, + { + "appid": 2438900, + "normalized_name": "get slapped!" + }, + { + "appid": 2438930, + "normalized_name": "escapemono" + }, + { + "appid": 2438950, + "normalized_name": "karen the chicken" + }, + { + "appid": 2438960, + "normalized_name": "silent rooms chapter 1" + }, + { + "appid": 2438970, + "normalized_name": "cascadia" + }, + { + "appid": 2438980, + "normalized_name": "the isle of cats" + }, + { + "appid": 2438990, + "normalized_name": "ark nova" + }, + { + "appid": 2439000, + "normalized_name": "alien protection" + }, + { + "appid": 2439010, + "normalized_name": "unibat" + }, + { + "appid": 2439020, + "normalized_name": "hotel simulator 2024" + }, + { + "appid": 2439100, + "normalized_name": "abel" + }, + { + "appid": 2439120, + "normalized_name": "dropsol" + }, + { + "appid": 2439180, + "normalized_name": "square inertia" + }, + { + "appid": 2439220, + "normalized_name": "disney villains cursed café" + }, + { + "appid": 2439280, + "normalized_name": "clockwork revolution" + }, + { + "appid": 2439290, + "normalized_name": "pirateer high seas" + }, + { + "appid": 2439310, + "normalized_name": "midnight dreams" + }, + { + "appid": 2439350, + "normalized_name": "lowlander" + }, + { + "appid": 2439370, + "normalized_name": "eco friendly car vr maintenance training" + }, + { + "appid": 2439380, + "normalized_name": "blobbers" + }, + { + "appid": 2439460, + "normalized_name": "turi kaapora" + }, + { + "appid": 2439490, + "normalized_name": "三国志威力无双" + }, + { + "appid": 2439500, + "normalized_name": "overhours" + }, + { + "appid": 2439510, + "normalized_name": "doomsday last survivors" + }, + { + "appid": 2439530, + "normalized_name": "lisle engle heavy distance" + }, + { + "appid": 2439540, + "normalized_name": "solemn knights entirely ours classic" + }, + { + "appid": 2439550, + "normalized_name": "cyber dose" + }, + { + "appid": 2439560, + "normalized_name": "alice's world" + }, + { + "appid": 2439580, + "normalized_name": "hawaii detective killing of a krypto king" + }, + { + "appid": 2439620, + "normalized_name": "nun and light's unreachable forest" + }, + { + "appid": 2439640, + "normalized_name": "old boy" + }, + { + "appid": 2439650, + "normalized_name": "nightmare tale" + }, + { + "appid": 2439660, + "normalized_name": "the lost adventure" + }, + { + "appid": 2439670, + "normalized_name": "munchie strikers" + }, + { + "appid": 2439700, + "normalized_name": "multitales" + }, + { + "appid": 2439710, + "normalized_name": "skybreakers" + }, + { + "appid": 2439720, + "normalized_name": "wastelandelysium" + }, + { + "appid": 2439730, + "normalized_name": "bosshunter vr" + }, + { + "appid": 2439740, + "normalized_name": "wolf west" + }, + { + "appid": 2439750, + "normalized_name": "xuan yuan sword the fight of heroes" + }, + { + "appid": 2439760, + "normalized_name": "要来点百合吗 love yuri" + }, + { + "appid": 2439770, + "normalized_name": "project mix" + }, + { + "appid": 2439780, + "normalized_name": "godzilla voxel wars" + }, + { + "appid": 2439790, + "normalized_name": "crystal void" + }, + { + "appid": 2439810, + "normalized_name": "the adventures of nerdstan" + }, + { + "appid": 2439820, + "normalized_name": "the cult" + }, + { + "appid": 2439830, + "normalized_name": "demon loop" + }, + { + "appid": 2439870, + "normalized_name": "super archer" + }, + { + "appid": 2439960, + "normalized_name": "degenheim" + }, + { + "appid": 2439980, + "normalized_name": "glitch core" + }, + { + "appid": 2439990, + "normalized_name": "rocket penguin" + }, + { + "appid": 2440010, + "normalized_name": "twilight memoria freedom" + }, + { + "appid": 2440030, + "normalized_name": "crownless abyss" + }, + { + "appid": 2440060, + "normalized_name": "rush on" + }, + { + "appid": 2440080, + "normalized_name": "marble abduction! patti hattu" + }, + { + "appid": 2440100, + "normalized_name": "quintus and the formidable curse" + }, + { + "appid": 2440110, + "normalized_name": "fish flop" + }, + { + "appid": 2440200, + "normalized_name": "aura hentai cards" + }, + { + "appid": 2440210, + "normalized_name": "lost beacon" + }, + { + "appid": 2440220, + "normalized_name": "warbyte operation falcon" + }, + { + "appid": 2440270, + "normalized_name": "sex simulator bdsm girls" + }, + { + "appid": 2440280, + "normalized_name": "sqwrk" + }, + { + "appid": 2440310, + "normalized_name": "bot crafter" + }, + { + "appid": 2440320, + "normalized_name": "gobbo goes adventures" + }, + { + "appid": 2440350, + "normalized_name": "計画keikaku" + }, + { + "appid": 2440360, + "normalized_name": "temporadox" + }, + { + "appid": 2440380, + "normalized_name": "megaloot" + }, + { + "appid": 2440400, + "normalized_name": "love girls" + }, + { + "appid": 2440480, + "normalized_name": "green zone" + }, + { + "appid": 2440500, + "normalized_name": "herosquare" + }, + { + "appid": 2440510, + "normalized_name": "forza motorsport" + }, + { + "appid": 2440520, + "normalized_name": "露露的装备店" + }, + { + "appid": 2440550, + "normalized_name": "dungeon rebound" + }, + { + "appid": 2440580, + "normalized_name": "xero" + }, + { + "appid": 2440590, + "normalized_name": "ar3na" + }, + { + "appid": 2440600, + "normalized_name": "forklift fury" + }, + { + "appid": 2440620, + "normalized_name": "rocococo audiogame fantastique" + }, + { + "appid": 2440650, + "normalized_name": "cosmic carnage" + }, + { + "appid": 2440690, + "normalized_name": "boogie bashers" + }, + { + "appid": 2440710, + "normalized_name": "surface runner" + }, + { + "appid": 2440720, + "normalized_name": "armored souls" + }, + { + "appid": 2440730, + "normalized_name": "snoody one of the ayrie" + }, + { + "appid": 2440750, + "normalized_name": "silent north" + }, + { + "appid": 2440780, + "normalized_name": "chip & sparky" + }, + { + "appid": 2440810, + "normalized_name": "murder at mystic high" + }, + { + "appid": 2440860, + "normalized_name": "reinforced machine" + }, + { + "appid": 2440890, + "normalized_name": "nobody nowhere" + }, + { + "appid": 2440900, + "normalized_name": "tag online" + }, + { + "appid": 2440950, + "normalized_name": "maidgardener" + }, + { + "appid": 2440960, + "normalized_name": "以闪亮之名" + }, + { + "appid": 2440970, + "normalized_name": "飞仙诀(福利版) 上线送v15+万元真充+无限抽奖" + }, + { + "appid": 2440980, + "normalized_name": "bl00d.exe" + }, + { + "appid": 2441070, + "normalized_name": "酒,音乐和虚无论" + }, + { + "appid": 2441080, + "normalized_name": "godsvivors" + }, + { + "appid": 2441090, + "normalized_name": "adorabilis" + }, + { + "appid": 2441100, + "normalized_name": "unrooted" + }, + { + "appid": 2441120, + "normalized_name": "viking heroes 4" + }, + { + "appid": 2441150, + "normalized_name": "pinchimono the videogame" + }, + { + "appid": 2441160, + "normalized_name": "orm" + }, + { + "appid": 2441170, + "normalized_name": "magicshop2" + }, + { + "appid": 2441180, + "normalized_name": "felonian special forces" + }, + { + "appid": 2441190, + "normalized_name": "flowerpeer" + }, + { + "appid": 2441200, + "normalized_name": "trauma squad" + }, + { + "appid": 2441240, + "normalized_name": "the cake adventure" + }, + { + "appid": 2441260, + "normalized_name": "event race" + }, + { + "appid": 2441270, + "normalized_name": "kill the crows" + }, + { + "appid": 2441300, + "normalized_name": "poly jigsaw predators" + }, + { + "appid": 2441310, + "normalized_name": "haunted memories the return" + }, + { + "appid": 2441360, + "normalized_name": "あけておねがい" + }, + { + "appid": 2441470, + "normalized_name": "elements path of the wizard" + }, + { + "appid": 2441490, + "normalized_name": "call of waifu warzone" + }, + { + "appid": 2441500, + "normalized_name": "kid bubblegum" + }, + { + "appid": 2441530, + "normalized_name": "final goal" + }, + { + "appid": 2441570, + "normalized_name": "train capacity 300%" + }, + { + "appid": 2441580, + "normalized_name": "hexaduel" + }, + { + "appid": 2441590, + "normalized_name": "ark:release" + }, + { + "appid": 2441610, + "normalized_name": "debug quest" + }, + { + "appid": 2441620, + "normalized_name": "piverantum" + }, + { + "appid": 2441630, + "normalized_name": "the necromancer cometh! td" + }, + { + "appid": 2441670, + "normalized_name": "carnival in the hut" + }, + { + "appid": 2441700, + "normalized_name": "underdogs" + }, + { + "appid": 2441890, + "normalized_name": "nevultra" + }, + { + "appid": 2441910, + "normalized_name": "jump to success" + }, + { + "appid": 2441960, + "normalized_name": "maginet" + }, + { + "appid": 2442020, + "normalized_name": "dangeresque the roomisode triungulate" + }, + { + "appid": 2442040, + "normalized_name": "swapshot" + }, + { + "appid": 2442050, + "normalized_name": "edmund and eliza" + }, + { + "appid": 2442060, + "normalized_name": "nightmare zapping" + }, + { + "appid": 2442080, + "normalized_name": "camping" + }, + { + "appid": 2442100, + "normalized_name": "the galactic harem handbook chapter 1 nsfw sci fi porn" + }, + { + "appid": 2442120, + "normalized_name": "drifter wanderlust" + }, + { + "appid": 2442140, + "normalized_name": "cellquest" + }, + { + "appid": 2442150, + "normalized_name": "heavy metal titans" + }, + { + "appid": 2442170, + "normalized_name": "top jump hardest parkour game" + }, + { + "appid": 2442230, + "normalized_name": "brave nine" + }, + { + "appid": 2442260, + "normalized_name": "deal with nyarlathotep" + }, + { + "appid": 2442340, + "normalized_name": "world auto racing" + }, + { + "appid": 2442380, + "normalized_name": "snk vs. capcom svc chaos" + }, + { + "appid": 2442390, + "normalized_name": "escape from the room of the serving doll" + }, + { + "appid": 2442400, + "normalized_name": "sex doll came to life" + }, + { + "appid": 2442410, + "normalized_name": "colony city 27λ" + }, + { + "appid": 2442440, + "normalized_name": "no delivery" + }, + { + "appid": 2442460, + "normalized_name": "citizen sleeper 2 starward vector" + }, + { + "appid": 2442470, + "normalized_name": "mech realm" + }, + { + "appid": 2442480, + "normalized_name": "super g downhill racing" + }, + { + "appid": 2442490, + "normalized_name": "the last breath" + }, + { + "appid": 2442510, + "normalized_name": "naratha" + }, + { + "appid": 2442520, + "normalized_name": "lita's dream" + }, + { + "appid": 2442530, + "normalized_name": "shards of her" + }, + { + "appid": 2442550, + "normalized_name": "fluffy developers" + }, + { + "appid": 2442590, + "normalized_name": "kardventure" + }, + { + "appid": 2442610, + "normalized_name": "美人姉妹と入れ替わり生活 becoming your beautiful cousin" + }, + { + "appid": 2442620, + "normalized_name": "あまあま人妻包囲網 stuck with naughty housewives" + }, + { + "appid": 2442640, + "normalized_name": "wicked wreck" + }, + { + "appid": 2442660, + "normalized_name": "dansparkling" + }, + { + "appid": 2442670, + "normalized_name": "ss.archives" + }, + { + "appid": 2442690, + "normalized_name": "gigachad survivals" + }, + { + "appid": 2442710, + "normalized_name": "sex survivals" + }, + { + "appid": 2442730, + "normalized_name": "a bonnie odyssey" + }, + { + "appid": 2442760, + "normalized_name": "jorōgumo じょろうぐも" + }, + { + "appid": 2442770, + "normalized_name": "defenders of legends" + }, + { + "appid": 2442800, + "normalized_name": "luyện ngục" + }, + { + "appid": 2442820, + "normalized_name": "ascending inferno" + }, + { + "appid": 2442830, + "normalized_name": "simpletd" + }, + { + "appid": 2442860, + "normalized_name": "math & topology" + }, + { + "appid": 2442880, + "normalized_name": "a bad day for a hangover" + }, + { + "appid": 2442910, + "normalized_name": "fix fixer" + }, + { + "appid": 2442960, + "normalized_name": "三界" + }, + { + "appid": 2442970, + "normalized_name": "斩毒:罪与罚(narcotics police crime and punish)" + }, + { + "appid": 2443000, + "normalized_name": "lidar survival" + }, + { + "appid": 2443030, + "normalized_name": "cybergrid runner" + }, + { + "appid": 2443050, + "normalized_name": "silent shores" + }, + { + "appid": 2443090, + "normalized_name": "deathless survivors" + }, + { + "appid": 2443110, + "normalized_name": "south scrimshaw part one" + }, + { + "appid": 2443120, + "normalized_name": "i am neutron" + }, + { + "appid": 2443150, + "normalized_name": "trash bandits" + }, + { + "appid": 2443160, + "normalized_name": "rat catcher" + }, + { + "appid": 2443170, + "normalized_name": "survivor challenge td" + }, + { + "appid": 2443190, + "normalized_name": "pine creek the book of judith" + }, + { + "appid": 2443210, + "normalized_name": "grim tales the hunger collector's" + }, + { + "appid": 2443250, + "normalized_name": "urgent message" + }, + { + "appid": 2443270, + "normalized_name": "parsec lost in space" + }, + { + "appid": 2443300, + "normalized_name": "elite status platinum concierge" + }, + { + "appid": 2443320, + "normalized_name": "just a walk in the park" + }, + { + "appid": 2443350, + "normalized_name": "traders of natac" + }, + { + "appid": 2443360, + "normalized_name": "zortch" + }, + { + "appid": 2443370, + "normalized_name": "witchcraft survivors" + }, + { + "appid": 2443400, + "normalized_name": "stellar version 1.0" + }, + { + "appid": 2443410, + "normalized_name": "emme saves the galaxy" + }, + { + "appid": 2443440, + "normalized_name": "drainscape" + }, + { + "appid": 2443500, + "normalized_name": "ramas' call twisted timing" + }, + { + "appid": 2443510, + "normalized_name": "mujina maze game" + }, + { + "appid": 2443520, + "normalized_name": "purrfect rescue" + }, + { + "appid": 2443550, + "normalized_name": "cow girls 3 stories" + }, + { + "appid": 2443560, + "normalized_name": "succubus's making lunch" + }, + { + "appid": 2443580, + "normalized_name": "outer wards proving grounds" + }, + { + "appid": 2443590, + "normalized_name": "diecast" + }, + { + "appid": 2443630, + "normalized_name": "star wars episode i jedi power battles" + }, + { + "appid": 2443640, + "normalized_name": "hell of nightmares chapter 1" + }, + { + "appid": 2443740, + "normalized_name": "kill the god" + }, + { + "appid": 2443750, + "normalized_name": "as above so below" + }, + { + "appid": 2443760, + "normalized_name": "forklift racer" + }, + { + "appid": 2443770, + "normalized_name": "will you wheel?" + }, + { + "appid": 2443780, + "normalized_name": "settlemoon" + }, + { + "appid": 2443790, + "normalized_name": "terror in the kitchen" + }, + { + "appid": 2443800, + "normalized_name": "frisson" + }, + { + "appid": 2443820, + "normalized_name": "52 / 0 = ∞" + }, + { + "appid": 2443840, + "normalized_name": "sorrow tales from a worse world" + }, + { + "appid": 2443870, + "normalized_name": "降妖师demon subduing master" + }, + { + "appid": 2443900, + "normalized_name": "a simple expurriment" + }, + { + "appid": 2443910, + "normalized_name": "the death clock" + }, + { + "appid": 2443920, + "normalized_name": "mythstal shadow of the sun" + }, + { + "appid": 2443960, + "normalized_name": "room in dream" + }, + { + "appid": 2443980, + "normalized_name": "affair" + }, + { + "appid": 2443990, + "normalized_name": "engaging destiny" + }, + { + "appid": 2444000, + "normalized_name": "ラーメンあぶら集め" + }, + { + "appid": 2444010, + "normalized_name": "hector the cat treasure hunter" + }, + { + "appid": 2444060, + "normalized_name": "wav ocs cruise game" + }, + { + "appid": 2444090, + "normalized_name": "warehouse seduction" + }, + { + "appid": 2444140, + "normalized_name": "single malt apocalypse" + }, + { + "appid": 2444160, + "normalized_name": "the phantom" + }, + { + "appid": 2444180, + "normalized_name": "the envolution of wandaland" + }, + { + "appid": 2444210, + "normalized_name": "hana hide and seek" + }, + { + "appid": 2444230, + "normalized_name": "exchange student" + }, + { + "appid": 2444250, + "normalized_name": "flipshot" + }, + { + "appid": 2444290, + "normalized_name": "hyper space" + }, + { + "appid": 2444340, + "normalized_name": "dvalloc" + }, + { + "appid": 2444350, + "normalized_name": "enchanted portals" + }, + { + "appid": 2444370, + "normalized_name": "49 squares" + }, + { + "appid": 2444380, + "normalized_name": "mines of moritania" + }, + { + "appid": 2444420, + "normalized_name": "sunya" + }, + { + "appid": 2444440, + "normalized_name": "pitu" + }, + { + "appid": 2444470, + "normalized_name": "terminal 81" + }, + { + "appid": 2444480, + "normalized_name": "riddle for your life" + }, + { + "appid": 2444520, + "normalized_name": "stick mountain" + }, + { + "appid": 2444530, + "normalized_name": "wreckage" + }, + { + "appid": 2444540, + "normalized_name": "sexy anime puzzle game a hentai girl puzzle adventure" + }, + { + "appid": 2444600, + "normalized_name": "times of war" + }, + { + "appid": 2444610, + "normalized_name": "crossdresserdetective2" + }, + { + "appid": 2444630, + "normalized_name": "sexual sword master" + }, + { + "appid": 2444660, + "normalized_name": "네개의 빛 제 1세계 [iruka route]" + }, + { + "appid": 2444700, + "normalized_name": "the event" + }, + { + "appid": 2444710, + "normalized_name": "貴方が狼カードデス!" + }, + { + "appid": 2444740, + "normalized_name": "in wonderland" + }, + { + "appid": 2444750, + "normalized_name": "shape of dreams" + }, + { + "appid": 2444760, + "normalized_name": "nexomon 3" + }, + { + "appid": 2444790, + "normalized_name": "小白人对决x(little white man vs x)" + }, + { + "appid": 2444810, + "normalized_name": "voltage genesis" + }, + { + "appid": 2444840, + "normalized_name": "cryptid" + }, + { + "appid": 2444850, + "normalized_name": "neverending check in the hotel stories" + }, + { + "appid": 2444860, + "normalized_name": "自由江湖" + }, + { + "appid": 2444890, + "normalized_name": "launch director" + }, + { + "appid": 2444900, + "normalized_name": "walpurgis raid" + }, + { + "appid": 2444930, + "normalized_name": "worm game" + }, + { + "appid": 2444940, + "normalized_name": "escape from demon island" + }, + { + "appid": 2444960, + "normalized_name": "wild west pistolero" + }, + { + "appid": 2444980, + "normalized_name": "chasing rabbits in snow" + }, + { + "appid": 2445020, + "normalized_name": "auto checkup simulator" + }, + { + "appid": 2445040, + "normalized_name": "realm craft" + }, + { + "appid": 2445060, + "normalized_name": "hirocato the delivery hero" + }, + { + "appid": 2445090, + "normalized_name": "keepers of astraela" + }, + { + "appid": 2445110, + "normalized_name": "cecil hollow" + }, + { + "appid": 2445130, + "normalized_name": "furry toys" + }, + { + "appid": 2445140, + "normalized_name": "turn on the light jigsaw" + }, + { + "appid": 2445160, + "normalized_name": "zeta leporis rts" + }, + { + "appid": 2445170, + "normalized_name": "el drifto" + }, + { + "appid": 2445200, + "normalized_name": "cards n' varmints" + }, + { + "appid": 2445210, + "normalized_name": "空想少女 imaginary girl 前日譚 prequel" + }, + { + "appid": 2445270, + "normalized_name": "snow cone" + }, + { + "appid": 2445290, + "normalized_name": "c17" + }, + { + "appid": 2445330, + "normalized_name": "三国计 q萌回合制卡牌" + }, + { + "appid": 2445340, + "normalized_name": "love n life lucky teacher" + }, + { + "appid": 2445350, + "normalized_name": "spelly cat" + }, + { + "appid": 2445370, + "normalized_name": "jammo" + }, + { + "appid": 2445380, + "normalized_name": "alien cube" + }, + { + "appid": 2445390, + "normalized_name": "late night drive" + }, + { + "appid": 2445410, + "normalized_name": "checkmate magic" + }, + { + "appid": 2445420, + "normalized_name": "kāla" + }, + { + "appid": 2445430, + "normalized_name": "tensei brave" + }, + { + "appid": 2445440, + "normalized_name": "hunter nightmare" + }, + { + "appid": 2445460, + "normalized_name": "happiness market" + }, + { + "appid": 2445490, + "normalized_name": "majoneko" + }, + { + "appid": 2445510, + "normalized_name": "contenders arena" + }, + { + "appid": 2445540, + "normalized_name": "monster rampage vr" + }, + { + "appid": 2445590, + "normalized_name": "completely fictional story about a city inside a whale" + }, + { + "appid": 2445640, + "normalized_name": "retro revengers" + }, + { + "appid": 2445660, + "normalized_name": "shipping manager" + }, + { + "appid": 2445680, + "normalized_name": "godmode epochs" + }, + { + "appid": 2445690, + "normalized_name": "lost castle 2" + }, + { + "appid": 2445700, + "normalized_name": "rpg alchemy" + }, + { + "appid": 2445750, + "normalized_name": "level up boxing vr" + }, + { + "appid": 2445780, + "normalized_name": "grifford academy" + }, + { + "appid": 2445790, + "normalized_name": "bennu bennu protect the pyramid" + }, + { + "appid": 2445820, + "normalized_name": "maldives in dream" + }, + { + "appid": 2445840, + "normalized_name": "annulus" + }, + { + "appid": 2445870, + "normalized_name": "fellowship" + }, + { + "appid": 2445900, + "normalized_name": "魅控" + }, + { + "appid": 2445910, + "normalized_name": "shield king" + }, + { + "appid": 2445940, + "normalized_name": "games advent calendar 25 days 25 surprises" + }, + { + "appid": 2445970, + "normalized_name": "family adventures paris" + }, + { + "appid": 2445980, + "normalized_name": "g rebels" + }, + { + "appid": 2445990, + "normalized_name": "bloomtown a different story" + }, + { + "appid": 2446010, + "normalized_name": "bluecloud summit" + }, + { + "appid": 2446020, + "normalized_name": "orpheus tale of a lover" + }, + { + "appid": 2446030, + "normalized_name": "blooddome classic" + }, + { + "appid": 2446040, + "normalized_name": "days in hill" + }, + { + "appid": 2446070, + "normalized_name": "tiny visitors" + }, + { + "appid": 2446080, + "normalized_name": "roomno.404" + }, + { + "appid": 2446130, + "normalized_name": "sounds of nature" + }, + { + "appid": 2446160, + "normalized_name": "destruct blocks" + }, + { + "appid": 2446170, + "normalized_name": "hero trial" + }, + { + "appid": 2446180, + "normalized_name": "backdoors" + }, + { + "appid": 2446190, + "normalized_name": "晨晨力量人 adventure of roger" + }, + { + "appid": 2446200, + "normalized_name": "dice mayor" + }, + { + "appid": 2446250, + "normalized_name": "guard the tower!" + }, + { + "appid": 2446270, + "normalized_name": "花园魔三国2 thesacrificialgirlofthefantasy3kingdoms 2" + }, + { + "appid": 2446320, + "normalized_name": "i have a dream" + }, + { + "appid": 2446330, + "normalized_name": "ニャンパヤ" + }, + { + "appid": 2446340, + "normalized_name": "garestia" + }, + { + "appid": 2446370, + "normalized_name": "a birthday present" + }, + { + "appid": 2446390, + "normalized_name": "daisy grotto" + }, + { + "appid": 2446430, + "normalized_name": "grounders" + }, + { + "appid": 2446440, + "normalized_name": "illusion within" + }, + { + "appid": 2446470, + "normalized_name": "pinging" + }, + { + "appid": 2446480, + "normalized_name": "my earth" + }, + { + "appid": 2446500, + "normalized_name": "the silicon shadow" + }, + { + "appid": 2446510, + "normalized_name": "untold atlas otome sim inspired by expedition adventures" + }, + { + "appid": 2446520, + "normalized_name": "pixel piracy online" + }, + { + "appid": 2446540, + "normalized_name": "sleep awake" + }, + { + "appid": 2446550, + "normalized_name": "star wars battlefront classic collection" + }, + { + "appid": 2446560, + "normalized_name": "waking atlas" + }, + { + "appid": 2446590, + "normalized_name": "mask beyond lies" + }, + { + "appid": 2446600, + "normalized_name": "dark deity 2" + }, + { + "appid": 2446620, + "normalized_name": "communite" + }, + { + "appid": 2446660, + "normalized_name": "dragonscale monastery" + }, + { + "appid": 2446680, + "normalized_name": "drive me to hell" + }, + { + "appid": 2446700, + "normalized_name": "doomies (damikira)" + }, + { + "appid": 2446710, + "normalized_name": "cyberside picnic" + }, + { + "appid": 2446740, + "normalized_name": "x force under attack" + }, + { + "appid": 2446760, + "normalized_name": "yasuke a lost descendant" + }, + { + "appid": 2446820, + "normalized_name": "drag her!" + }, + { + "appid": 2446870, + "normalized_name": "monotonia" + }, + { + "appid": 2446890, + "normalized_name": "noah" + }, + { + "appid": 2446920, + "normalized_name": "gorgon shield" + }, + { + "appid": 2446960, + "normalized_name": "sud oh ku furry playtime" + }, + { + "appid": 2446990, + "normalized_name": "knight foretold" + }, + { + "appid": 2447010, + "normalized_name": "the hunted witch" + }, + { + "appid": 2447030, + "normalized_name": "planetiles" + }, + { + "appid": 2447060, + "normalized_name": "monster tiles td tower wars" + }, + { + "appid": 2447080, + "normalized_name": "miasma" + }, + { + "appid": 2447100, + "normalized_name": "scarred" + }, + { + "appid": 2447110, + "normalized_name": "npcville story of the blacksmith" + }, + { + "appid": 2447120, + "normalized_name": "veiled edge" + }, + { + "appid": 2447150, + "normalized_name": "cynostone" + }, + { + "appid": 2447190, + "normalized_name": "hyakki yako oh&s" + }, + { + "appid": 2447230, + "normalized_name": "sáivu" + }, + { + "appid": 2447240, + "normalized_name": "roving rovers" + }, + { + "appid": 2447260, + "normalized_name": "cats on duty" + }, + { + "appid": 2447290, + "normalized_name": "machi above the void" + }, + { + "appid": 2447310, + "normalized_name": "knight overloaded" + }, + { + "appid": 2447330, + "normalized_name": "hades nebula (c64/spectrum)" + }, + { + "appid": 2447340, + "normalized_name": "grave deceiver" + }, + { + "appid": 2447420, + "normalized_name": "a train9 train construction" + }, + { + "appid": 2447430, + "normalized_name": "wraithborn" + }, + { + "appid": 2447460, + "normalized_name": "conquered dread" + }, + { + "appid": 2447480, + "normalized_name": "dungeon raiders" + }, + { + "appid": 2447490, + "normalized_name": "after school" + }, + { + "appid": 2447510, + "normalized_name": "heart of mobius" + }, + { + "appid": 2447530, + "normalized_name": "xargon remake ep.3" + }, + { + "appid": 2447540, + "normalized_name": "anamnesis" + }, + { + "appid": 2447550, + "normalized_name": "kdimension" + }, + { + "appid": 2447580, + "normalized_name": "疾风猎人 上线送v10,超变独家版本" + }, + { + "appid": 2447680, + "normalized_name": "island notes" + }, + { + "appid": 2447700, + "normalized_name": "god brawl" + }, + { + "appid": 2447720, + "normalized_name": "burger zombies" + }, + { + "appid": 2447730, + "normalized_name": "artifice" + }, + { + "appid": 2447750, + "normalized_name": "secret agent no. 6" + }, + { + "appid": 2447790, + "normalized_name": "遠古大陸 經商世界" + }, + { + "appid": 2447800, + "normalized_name": "re bounder" + }, + { + "appid": 2447820, + "normalized_name": "survivor's guilt" + }, + { + "appid": 2447830, + "normalized_name": "a deep rest" + }, + { + "appid": 2447880, + "normalized_name": "project hoyrá" + }, + { + "appid": 2447890, + "normalized_name": "orbit express" + }, + { + "appid": 2447920, + "normalized_name": "québec mortis" + }, + { + "appid": 2447930, + "normalized_name": "sgs battle for fort donelson" + }, + { + "appid": 2447970, + "normalized_name": "soul detective" + }, + { + "appid": 2447980, + "normalized_name": "crown gambit" + }, + { + "appid": 2448000, + "normalized_name": "frog king" + }, + { + "appid": 2448020, + "normalized_name": "yooka replaylee" + }, + { + "appid": 2448130, + "normalized_name": "sex on beach" + }, + { + "appid": 2448140, + "normalized_name": "sweet feets" + }, + { + "appid": 2448200, + "normalized_name": "青十字病院 東京都支部 怪異解剖部署" + }, + { + "appid": 2448230, + "normalized_name": "snapback" + }, + { + "appid": 2448270, + "normalized_name": "mars survivors" + }, + { + "appid": 2448340, + "normalized_name": "try again" + }, + { + "appid": 2448420, + "normalized_name": "deadfall" + }, + { + "appid": 2448450, + "normalized_name": "michael's nonograms" + }, + { + "appid": 2448460, + "normalized_name": "shimazu" + }, + { + "appid": 2448490, + "normalized_name": "hentai jigsaw puzzle collection spring" + }, + { + "appid": 2448540, + "normalized_name": "oberak (prelude)" + }, + { + "appid": 2448550, + "normalized_name": "a test" + }, + { + "appid": 2448610, + "normalized_name": "beast slayer" + }, + { + "appid": 2448620, + "normalized_name": "revenge of noxi" + }, + { + "appid": 2448660, + "normalized_name": "last hope" + }, + { + "appid": 2448680, + "normalized_name": "the monarch" + }, + { + "appid": 2448700, + "normalized_name": "墨色三国志ⅱ" + }, + { + "appid": 2448710, + "normalized_name": "you're my penguin" + }, + { + "appid": 2448730, + "normalized_name": "swords and hexes" + }, + { + "appid": 2448760, + "normalized_name": "furni jumpin'" + }, + { + "appid": 2448780, + "normalized_name": "battle junk" + }, + { + "appid": 2448810, + "normalized_name": "golf hole in one" + }, + { + "appid": 2448830, + "normalized_name": "time handlers" + }, + { + "appid": 2448880, + "normalized_name": "戀 lian re call" + }, + { + "appid": 2448900, + "normalized_name": "shuruka boxing" + }, + { + "appid": 2448910, + "normalized_name": "pixel p.i." + }, + { + "appid": 2448930, + "normalized_name": "starstruck vagabond" + }, + { + "appid": 2448940, + "normalized_name": "flappy bird ultra" + }, + { + "appid": 2448980, + "normalized_name": "提西探险社:春日女王" + }, + { + "appid": 2449030, + "normalized_name": "plastic tactics online" + }, + { + "appid": 2449040, + "normalized_name": "cursorblade" + }, + { + "appid": 2449050, + "normalized_name": "tirta" + }, + { + "appid": 2449060, + "normalized_name": "15 minutes dungeon" + }, + { + "appid": 2449080, + "normalized_name": "dungeon no dungeon tyrant's endgame" + }, + { + "appid": 2449130, + "normalized_name": "magic kaleidoscope (desktop and vr)" + }, + { + "appid": 2449160, + "normalized_name": "while waiting" + }, + { + "appid": 2449180, + "normalized_name": "环形杀手 circle killer" + }, + { + "appid": 2449210, + "normalized_name": "uprunner" + }, + { + "appid": 2449270, + "normalized_name": "planet iridium" + }, + { + "appid": 2449280, + "normalized_name": "project fireball" + }, + { + "appid": 2449300, + "normalized_name": "mutants (c64/amstrad/spectrum)" + }, + { + "appid": 2449310, + "normalized_name": "breaking friendships" + }, + { + "appid": 2449320, + "normalized_name": "non virtual reality games" + }, + { + "appid": 2449360, + "normalized_name": "oome" + }, + { + "appid": 2449390, + "normalized_name": "vegangsters" + }, + { + "appid": 2449400, + "normalized_name": "my furry succubus 🐾" + }, + { + "appid": 2449430, + "normalized_name": "incremental factory" + }, + { + "appid": 2449450, + "normalized_name": "clonizer" + }, + { + "appid": 2449490, + "normalized_name": "plasmatic" + }, + { + "appid": 2449510, + "normalized_name": "schleich dinosaurs mission dino camp" + }, + { + "appid": 2449530, + "normalized_name": "gehenna" + }, + { + "appid": 2449630, + "normalized_name": "tower of pandemonium" + }, + { + "appid": 2449640, + "normalized_name": "tagtime" + }, + { + "appid": 2449680, + "normalized_name": "koi zen opposite colors" + }, + { + "appid": 2449690, + "normalized_name": "underdose" + }, + { + "appid": 2449700, + "normalized_name": "highway patrol simulator" + }, + { + "appid": 2449710, + "normalized_name": "town of sins" + }, + { + "appid": 2449720, + "normalized_name": "chase" + }, + { + "appid": 2449730, + "normalized_name": "sugar bear" + }, + { + "appid": 2449780, + "normalized_name": "cleaning time vr" + }, + { + "appid": 2449800, + "normalized_name": "sparky marky episode 3" + }, + { + "appid": 2449820, + "normalized_name": "my gf doesn't know what i'm into" + }, + { + "appid": 2449830, + "normalized_name": "forest horror" + }, + { + "appid": 2449840, + "normalized_name": "royalevia" + }, + { + "appid": 2449890, + "normalized_name": "route 13" + }, + { + "appid": 2449900, + "normalized_name": "selfish cupid bl dating sim" + }, + { + "appid": 2450030, + "normalized_name": "labyrink" + }, + { + "appid": 2450040, + "normalized_name": "aftershock coastline" + }, + { + "appid": 2450050, + "normalized_name": "秘密事件:瓦尔普吉斯之夜" + }, + { + "appid": 2450060, + "normalized_name": "rionag survey fleet" + }, + { + "appid": 2450080, + "normalized_name": "scroomage" + }, + { + "appid": 2450090, + "normalized_name": "the blue stars" + }, + { + "appid": 2450100, + "normalized_name": "西游幸存者" + }, + { + "appid": 2450110, + "normalized_name": "sex campus story 🔞" + }, + { + "appid": 2450120, + "normalized_name": "naughty college 18+" + }, + { + "appid": 2450130, + "normalized_name": "sex hotel simulator 🏩" + }, + { + "appid": 2450200, + "normalized_name": "mule" + }, + { + "appid": 2450230, + "normalized_name": "lifedev" + }, + { + "appid": 2450240, + "normalized_name": "trans ops transitional operations" + }, + { + "appid": 2450250, + "normalized_name": "cluck a thon" + }, + { + "appid": 2450270, + "normalized_name": "se/\\/se" + }, + { + "appid": 2450290, + "normalized_name": "considerable grandfather" + }, + { + "appid": 2450350, + "normalized_name": "fat goblins" + }, + { + "appid": 2450360, + "normalized_name": "okashi towers" + }, + { + "appid": 2450400, + "normalized_name": "trash of the titans" + }, + { + "appid": 2450410, + "normalized_name": "rainette" + }, + { + "appid": 2450430, + "normalized_name": "探しものは、夏ですか。" + }, + { + "appid": 2450450, + "normalized_name": "megaton musashi w wired" + }, + { + "appid": 2450480, + "normalized_name": "放置修仙世界" + }, + { + "appid": 2450530, + "normalized_name": "sex simulator bdsm 2" + }, + { + "appid": 2450570, + "normalized_name": "end of edge" + }, + { + "appid": 2450600, + "normalized_name": "sensual saga" + }, + { + "appid": 2450620, + "normalized_name": "a tale of moss & bone" + }, + { + "appid": 2450660, + "normalized_name": "strip president of tendoryu / kinetic strip party" + }, + { + "appid": 2450700, + "normalized_name": "drug lord tycoon" + }, + { + "appid": 2450720, + "normalized_name": "lucky mark" + }, + { + "appid": 2450740, + "normalized_name": "kitchen madness" + }, + { + "appid": 2450750, + "normalized_name": "yume memory" + }, + { + "appid": 2450820, + "normalized_name": "radiant silvergun" + }, + { + "appid": 2450840, + "normalized_name": "detective dotson" + }, + { + "appid": 2450870, + "normalized_name": "main action" + }, + { + "appid": 2450930, + "normalized_name": "lilly's potion shop" + }, + { + "appid": 2450950, + "normalized_name": "天规天条 rule" + }, + { + "appid": 2451010, + "normalized_name": "project hunt" + }, + { + "appid": 2451040, + "normalized_name": "scarlet lake" + }, + { + "appid": 2451050, + "normalized_name": "maid in wonderland" + }, + { + "appid": 2451060, + "normalized_name": "wish a wish" + }, + { + "appid": 2451100, + "normalized_name": "little rocket lab" + }, + { + "appid": 2451110, + "normalized_name": "end of knights" + }, + { + "appid": 2451140, + "normalized_name": "mannequin the spotting" + }, + { + "appid": 2451190, + "normalized_name": "kebabstar" + }, + { + "appid": 2451200, + "normalized_name": "sands of solaris" + }, + { + "appid": 2451230, + "normalized_name": "starship traders mmo" + }, + { + "appid": 2451250, + "normalized_name": "dimensional dexterity" + }, + { + "appid": 2451280, + "normalized_name": "poor man's adventure narco sub simulator" + }, + { + "appid": 2451290, + "normalized_name": "hot rider" + }, + { + "appid": 2451310, + "normalized_name": "monster mop up" + }, + { + "appid": 2451320, + "normalized_name": "bulletstorm vr" + }, + { + "appid": 2451340, + "normalized_name": "the nightmare escape" + }, + { + "appid": 2451360, + "normalized_name": "hair dice" + }, + { + "appid": 2451370, + "normalized_name": "slime masters" + }, + { + "appid": 2451380, + "normalized_name": "traincraft" + }, + { + "appid": 2451390, + "normalized_name": "witchmarsh tea party of the damned" + }, + { + "appid": 2451460, + "normalized_name": "lazarus a.d. 2222" + }, + { + "appid": 2451470, + "normalized_name": "the order of the snake scale" + }, + { + "appid": 2451500, + "normalized_name": "slippery sammy" + }, + { + "appid": 2451510, + "normalized_name": "idle industries" + }, + { + "appid": 2451530, + "normalized_name": "warsphere" + }, + { + "appid": 2451550, + "normalized_name": "jeller fellers" + }, + { + "appid": 2451570, + "normalized_name": "hide n' explode" + }, + { + "appid": 2451620, + "normalized_name": "saddle up and drive" + }, + { + "appid": 2451630, + "normalized_name": "a tale of two lovers" + }, + { + "appid": 2451640, + "normalized_name": "furry myth 🦁" + }, + { + "appid": 2451680, + "normalized_name": "scp the mystery man" + }, + { + "appid": 2451700, + "normalized_name": "atrion project" + }, + { + "appid": 2451720, + "normalized_name": "slayin dx" + }, + { + "appid": 2451730, + "normalized_name": "the case of the serialized killer" + }, + { + "appid": 2451750, + "normalized_name": "nok" + }, + { + "appid": 2451760, + "normalized_name": "spell legion" + }, + { + "appid": 2451820, + "normalized_name": "brawl tactics origins" + }, + { + "appid": 2451860, + "normalized_name": "幻梦" + }, + { + "appid": 2451880, + "normalized_name": "find with seoul story puzzle" + }, + { + "appid": 2451940, + "normalized_name": "forest phantoms" + }, + { + "appid": 2451980, + "normalized_name": "gold and glory" + }, + { + "appid": 2452010, + "normalized_name": "都市小面馆" + }, + { + "appid": 2452070, + "normalized_name": "unvoiced" + }, + { + "appid": 2452080, + "normalized_name": "saga frontier 2" + }, + { + "appid": 2452100, + "normalized_name": "nephilim" + }, + { + "appid": 2452110, + "normalized_name": "semicolon island" + }, + { + "appid": 2452130, + "normalized_name": "anlife motion learning life evolution" + }, + { + "appid": 2452160, + "normalized_name": "unsane 2" + }, + { + "appid": 2452170, + "normalized_name": "freeman the resistance" + }, + { + "appid": 2452220, + "normalized_name": "sevyal" + }, + { + "appid": 2452240, + "normalized_name": "desktop mark" + }, + { + "appid": 2452280, + "normalized_name": "mecha break" + }, + { + "appid": 2452290, + "normalized_name": "join our cult n chill" + }, + { + "appid": 2452300, + "normalized_name": "restaurant simulator 2023" + }, + { + "appid": 2452320, + "normalized_name": "folly of the wizards" + }, + { + "appid": 2452330, + "normalized_name": "puzzle world" + }, + { + "appid": 2452350, + "normalized_name": "hamboy autochess survivor" + }, + { + "appid": 2452370, + "normalized_name": "a shadow cast on water" + }, + { + "appid": 2452390, + "normalized_name": "project vostok episodes 2 & 3" + }, + { + "appid": 2452420, + "normalized_name": "line's guarder" + }, + { + "appid": 2452480, + "normalized_name": "neon fantasy girls" + }, + { + "appid": 2452520, + "normalized_name": "近地防卫军" + }, + { + "appid": 2452590, + "normalized_name": "mobbers" + }, + { + "appid": 2452640, + "normalized_name": "cart legends" + }, + { + "appid": 2452650, + "normalized_name": "hell throne" + }, + { + "appid": 2452720, + "normalized_name": "mystic strife" + }, + { + "appid": 2452760, + "normalized_name": "tv head eight pages" + }, + { + "appid": 2452790, + "normalized_name": "rubicon cubindom" + }, + { + "appid": 2452800, + "normalized_name": "eon trooper" + }, + { + "appid": 2452810, + "normalized_name": "alien iq exam human phase 1" + }, + { + "appid": 2452820, + "normalized_name": "skogdal" + }, + { + "appid": 2452840, + "normalized_name": "spike schema" + }, + { + "appid": 2452850, + "normalized_name": "land above sea below prologue" + }, + { + "appid": 2452860, + "normalized_name": "heaven & hell vs the void" + }, + { + "appid": 2452890, + "normalized_name": "catacomb rogue clawsaders" + }, + { + "appid": 2452900, + "normalized_name": "terraforge" + }, + { + "appid": 2452910, + "normalized_name": "goblins never die" + }, + { + "appid": 2452920, + "normalized_name": "ouros" + }, + { + "appid": 2452930, + "normalized_name": "one s'more" + }, + { + "appid": 2452940, + "normalized_name": "approaching cao army" + }, + { + "appid": 2453060, + "normalized_name": "dreamcore" + }, + { + "appid": 2453150, + "normalized_name": "defence of the arcane realms" + }, + { + "appid": 2453160, + "normalized_name": "sword of the sea" + }, + { + "appid": 2453180, + "normalized_name": "cat lobster simulator" + }, + { + "appid": 2453200, + "normalized_name": "metalstorm" + }, + { + "appid": 2453240, + "normalized_name": "penta terra" + }, + { + "appid": 2453260, + "normalized_name": "坦克英雄 tankhero" + }, + { + "appid": 2453280, + "normalized_name": "doozie the unicorn" + }, + { + "appid": 2453290, + "normalized_name": "zompell" + }, + { + "appid": 2453310, + "normalized_name": "妖狐的戀愛學程" + }, + { + "appid": 2453320, + "normalized_name": "dobuki's epic journey" + }, + { + "appid": 2453340, + "normalized_name": "muta and nightmares" + }, + { + "appid": 2453360, + "normalized_name": "鸡械绿洲 (cluckmech oasis)" + }, + { + "appid": 2453380, + "normalized_name": "supermarket security simulator" + }, + { + "appid": 2453390, + "normalized_name": "settler's odyssey" + }, + { + "appid": 2453400, + "normalized_name": "儒林外史·范进篇" + }, + { + "appid": 2453430, + "normalized_name": "daedalus you have been chosen" + }, + { + "appid": 2453440, + "normalized_name": "重生之时 rebirth moment" + }, + { + "appid": 2453520, + "normalized_name": "idle generators" + }, + { + "appid": 2453530, + "normalized_name": "white blade" + }, + { + "appid": 2453550, + "normalized_name": "the cannon fighters" + }, + { + "appid": 2453560, + "normalized_name": "otherworld hero" + }, + { + "appid": 2453570, + "normalized_name": "remains of the past" + }, + { + "appid": 2453580, + "normalized_name": "dildo catcher" + }, + { + "appid": 2453590, + "normalized_name": "latitude 76 land of the onkilons" + }, + { + "appid": 2453600, + "normalized_name": "danger drop" + }, + { + "appid": 2453610, + "normalized_name": "towerful defense a rogue td" + }, + { + "appid": 2453640, + "normalized_name": "no stone unturned" + }, + { + "appid": 2453650, + "normalized_name": "skycop" + }, + { + "appid": 2453660, + "normalized_name": "hoop land" + }, + { + "appid": 2453690, + "normalized_name": "lethal operation episode1 healer rugittaリーサルオペレーション ルギッタ編" + }, + { + "appid": 2453700, + "normalized_name": "lethal operation episode 2 destroyer rei リーサルオペレーションレイ編" + }, + { + "appid": 2453710, + "normalized_name": "lethal operation episode 3 lethal arms of justice リーサルアームズオブジャスティス" + }, + { + "appid": 2453720, + "normalized_name": "fate collectors" + }, + { + "appid": 2453730, + "normalized_name": "迷失之地" + }, + { + "appid": 2453740, + "normalized_name": "air offense command" + }, + { + "appid": 2453760, + "normalized_name": "hongkong noir" + }, + { + "appid": 2453770, + "normalized_name": "pop and chicks" + }, + { + "appid": 2453780, + "normalized_name": "bittersweet detectives' tea party" + }, + { + "appid": 2453820, + "normalized_name": "don't find me !!" + }, + { + "appid": 2453830, + "normalized_name": "dollhouse survive or death" + }, + { + "appid": 2453840, + "normalized_name": "dark quest 4" + }, + { + "appid": 2453920, + "normalized_name": "amygdala" + }, + { + "appid": 2453950, + "normalized_name": "machines of madness" + }, + { + "appid": 2453980, + "normalized_name": "super world run bosses" + }, + { + "appid": 2454000, + "normalized_name": "rafting frenzy" + }, + { + "appid": 2454020, + "normalized_name": "mimi the cat new friends" + }, + { + "appid": 2454030, + "normalized_name": "spook a pooh!" + }, + { + "appid": 2454040, + "normalized_name": "floppy cat bow golf!" + }, + { + "appid": 2454060, + "normalized_name": "mazemaze" + }, + { + "appid": 2454070, + "normalized_name": "desolated district" + }, + { + "appid": 2454110, + "normalized_name": "coraland the worst rescuer" + }, + { + "appid": 2454140, + "normalized_name": "bichito clicker" + }, + { + "appid": 2454150, + "normalized_name": "metarides racing" + }, + { + "appid": 2454160, + "normalized_name": "impulse" + }, + { + "appid": 2454170, + "normalized_name": "doodle dice monsters" + }, + { + "appid": 2454210, + "normalized_name": "魔王传说" + }, + { + "appid": 2454230, + "normalized_name": "maze girl" + }, + { + "appid": 2454240, + "normalized_name": "cats game stray cat pet kitty dog simulation adventure" + }, + { + "appid": 2454350, + "normalized_name": "redline crooks" + }, + { + "appid": 2454360, + "normalized_name": "irrational" + }, + { + "appid": 2454420, + "normalized_name": "paragon pioneers 2" + }, + { + "appid": 2454430, + "normalized_name": "blamed" + }, + { + "appid": 2454480, + "normalized_name": "只因兄弟(brochicken)" + }, + { + "appid": 2454500, + "normalized_name": "covid19 toilet paper run" + }, + { + "appid": 2454510, + "normalized_name": "dan factory" + }, + { + "appid": 2454540, + "normalized_name": "fatpets" + }, + { + "appid": 2454550, + "normalized_name": "robohunt" + }, + { + "appid": 2454570, + "normalized_name": "race of life act 1" + }, + { + "appid": 2454600, + "normalized_name": "ironsand" + }, + { + "appid": 2454620, + "normalized_name": "秦こころ弾幕連" + }, + { + "appid": 2454710, + "normalized_name": "moldlab" + }, + { + "appid": 2454740, + "normalized_name": "puzzled towers" + }, + { + "appid": 2454750, + "normalized_name": "liekki" + }, + { + "appid": 2454820, + "normalized_name": "technophobia do androids go to heaven?" + }, + { + "appid": 2454830, + "normalized_name": "purgatory survivors" + }, + { + "appid": 2454850, + "normalized_name": "slipbreak" + }, + { + "appid": 2454890, + "normalized_name": "death in unison" + }, + { + "appid": 2454900, + "normalized_name": "vocabulary galaxy orrery" + }, + { + "appid": 2454950, + "normalized_name": "武侠:开宗立派(wuxia:sect)" + }, + { + "appid": 2454960, + "normalized_name": "the great villainess strategy of lily" + }, + { + "appid": 2454980, + "normalized_name": "drakantos" + }, + { + "appid": 2454990, + "normalized_name": "rescue to the parallel" + }, + { + "appid": 2455020, + "normalized_name": "sexorcism" + }, + { + "appid": 2455040, + "normalized_name": "炭熄" + }, + { + "appid": 2455060, + "normalized_name": "禁忌试炼" + }, + { + "appid": 2455070, + "normalized_name": "long way" + }, + { + "appid": 2455080, + "normalized_name": "雪境公园" + }, + { + "appid": 2455090, + "normalized_name": "trolley" + }, + { + "appid": 2455110, + "normalized_name": "yokai art survival prologue" + }, + { + "appid": 2455140, + "normalized_name": "wings of seduction bust 'em out!" + }, + { + "appid": 2455170, + "normalized_name": "clock ticker" + }, + { + "appid": 2455180, + "normalized_name": "moose lost in the woods" + }, + { + "appid": 2455190, + "normalized_name": "vr pterosaur rock climbing" + }, + { + "appid": 2455220, + "normalized_name": "puppet saurus" + }, + { + "appid": 2455260, + "normalized_name": "roundrunners playground" + }, + { + "appid": 2455340, + "normalized_name": "together in between" + }, + { + "appid": 2455350, + "normalized_name": "the deadly path" + }, + { + "appid": 2455360, + "normalized_name": "cooking simulator 2 better together" + }, + { + "appid": 2455370, + "normalized_name": "russian village simulator" + }, + { + "appid": 2455380, + "normalized_name": "vaulted" + }, + { + "appid": 2455390, + "normalized_name": "halcyon the waveborn" + }, + { + "appid": 2455420, + "normalized_name": "glais gawizt" + }, + { + "appid": 2455430, + "normalized_name": "justaxe" + }, + { + "appid": 2455440, + "normalized_name": "senpai arena" + }, + { + "appid": 2455460, + "normalized_name": "milord" + }, + { + "appid": 2455490, + "normalized_name": "reapers inc." + }, + { + "appid": 2455500, + "normalized_name": "time survivors chapter 0" + }, + { + "appid": 2455510, + "normalized_name": "jezebel givin' love a shot" + }, + { + "appid": 2455570, + "normalized_name": "hao diary make a game" + }, + { + "appid": 2455610, + "normalized_name": "ボクセル築城ずんだもんキャッスル" + }, + { + "appid": 2455630, + "normalized_name": "the key" + }, + { + "appid": 2455640, + "normalized_name": "romancing saga 2 revenge of the seven" + }, + { + "appid": 2455660, + "normalized_name": "cute hentai waifu numbers" + }, + { + "appid": 2455680, + "normalized_name": "ayako's mission" + }, + { + "appid": 2455710, + "normalized_name": "golembert" + }, + { + "appid": 2455720, + "normalized_name": "red lightning" + }, + { + "appid": 2455730, + "normalized_name": "light of hope the redeemer" + }, + { + "appid": 2455740, + "normalized_name": "rad venture" + }, + { + "appid": 2455780, + "normalized_name": "eventide matter" + }, + { + "appid": 2455790, + "normalized_name": "weapon meister" + }, + { + "appid": 2455820, + "normalized_name": "bite size terrors see no fear" + }, + { + "appid": 2455840, + "normalized_name": "bite size terrors guyguy toys" + }, + { + "appid": 2455850, + "normalized_name": "bite size terrors reverse blue" + }, + { + "appid": 2455860, + "normalized_name": "strange parallel:sele" + }, + { + "appid": 2455870, + "normalized_name": "bite size terrors speechless" + }, + { + "appid": 2455880, + "normalized_name": "re/terra" + }, + { + "appid": 2455920, + "normalized_name": "mimic logic" + }, + { + "appid": 2455930, + "normalized_name": "swinghard vr" + }, + { + "appid": 2455940, + "normalized_name": "after school" + }, + { + "appid": 2456020, + "normalized_name": "withering way" + }, + { + "appid": 2456070, + "normalized_name": "motorbike evolution 2024" + }, + { + "appid": 2456080, + "normalized_name": "formula evolution 2024" + }, + { + "appid": 2456090, + "normalized_name": "sidecar evolution 2024" + }, + { + "appid": 2456100, + "normalized_name": "stickman's bad luck" + }, + { + "appid": 2456110, + "normalized_name": "predefined a programming puzzle game" + }, + { + "appid": 2456120, + "normalized_name": "claw machine sim" + }, + { + "appid": 2456130, + "normalized_name": "demon's bane" + }, + { + "appid": 2456140, + "normalized_name": "scoops a story of samples" + }, + { + "appid": 2456160, + "normalized_name": "doors & loot" + }, + { + "appid": 2456180, + "normalized_name": "chosen card chronicles" + }, + { + "appid": 2456190, + "normalized_name": "color odyssey" + }, + { + "appid": 2456230, + "normalized_name": "night terrors" + }, + { + "appid": 2456240, + "normalized_name": "tempo mayhem" + }, + { + "appid": 2456260, + "normalized_name": "while waiting my turn" + }, + { + "appid": 2456280, + "normalized_name": "this morning i decided to die" + }, + { + "appid": 2456290, + "normalized_name": "midnight havoc" + }, + { + "appid": 2456300, + "normalized_name": "汉末霸业免费版" + }, + { + "appid": 2456320, + "normalized_name": "cervus blade" + }, + { + "appid": 2456330, + "normalized_name": "bloompunk" + }, + { + "appid": 2456340, + "normalized_name": "太公传承" + }, + { + "appid": 2456350, + "normalized_name": "the scourge | tai ương" + }, + { + "appid": 2456410, + "normalized_name": "ゴブリンスレイヤー another adventurer nightmare feast" + }, + { + "appid": 2456420, + "normalized_name": "hunter×hunter nen×impact" + }, + { + "appid": 2456430, + "normalized_name": "athena crisis" + }, + { + "appid": 2456500, + "normalized_name": "parallel destiny" + }, + { + "appid": 2456550, + "normalized_name": "front" + }, + { + "appid": 2456570, + "normalized_name": "surveillance simulator" + }, + { + "appid": 2456580, + "normalized_name": "nantara adventures" + }, + { + "appid": 2456640, + "normalized_name": "innsmouth 22" + }, + { + "appid": 2456650, + "normalized_name": "阿西娅:回到梦境" + }, + { + "appid": 2456660, + "normalized_name": "family adventure" + }, + { + "appid": 2456690, + "normalized_name": "piece of..horror" + }, + { + "appid": 2456740, + "normalized_name": "inzoi" + }, + { + "appid": 2456820, + "normalized_name": "falling limbs" + }, + { + "appid": 2456860, + "normalized_name": "the last train" + }, + { + "appid": 2456870, + "normalized_name": "big job" + }, + { + "appid": 2456880, + "normalized_name": "the owl the thief and the strawberries" + }, + { + "appid": 2456960, + "normalized_name": "the 7th guest vr" + }, + { + "appid": 2456980, + "normalized_name": "scare fatal picture" + }, + { + "appid": 2457000, + "normalized_name": "space vikings" + }, + { + "appid": 2457010, + "normalized_name": "yodel oh!" + }, + { + "appid": 2457030, + "normalized_name": "gt manager" + }, + { + "appid": 2457050, + "normalized_name": "mearcair/system pulse" + }, + { + "appid": 2457060, + "normalized_name": "mearcair/system pulse prologue" + }, + { + "appid": 2457200, + "normalized_name": "gradient flow" + }, + { + "appid": 2457210, + "normalized_name": "undershadows" + }, + { + "appid": 2457220, + "normalized_name": "avowed" + }, + { + "appid": 2457280, + "normalized_name": "errships" + }, + { + "appid": 2457310, + "normalized_name": "buhei" + }, + { + "appid": 2457350, + "normalized_name": "terracodex the stolen relics" + }, + { + "appid": 2457410, + "normalized_name": "choice of rebels stormwright" + }, + { + "appid": 2457430, + "normalized_name": "limit choice" + }, + { + "appid": 2457470, + "normalized_name": "the last oasis before chastity" + }, + { + "appid": 2457500, + "normalized_name": "ophelia's chapter" + }, + { + "appid": 2457540, + "normalized_name": "カードファイト!! ヴァンガード ディアデイズ2" + }, + { + "appid": 2457580, + "normalized_name": "fight crab 2" + }, + { + "appid": 2457600, + "normalized_name": "叛逆军团vr / revolt legion vr" + }, + { + "appid": 2457610, + "normalized_name": "ember reignition" + }, + { + "appid": 2457630, + "normalized_name": "milk me darling tits fairy" + }, + { + "appid": 2457640, + "normalized_name": "heartrender" + }, + { + "appid": 2457700, + "normalized_name": "panpu ja" + }, + { + "appid": 2457720, + "normalized_name": "如影随形 (loopush)" + }, + { + "appid": 2457730, + "normalized_name": "free.kspeak" + }, + { + "appid": 2457770, + "normalized_name": "underthestars 阿兰若" + }, + { + "appid": 2457780, + "normalized_name": "fi knight kingdom" + }, + { + "appid": 2457820, + "normalized_name": "darkflow" + }, + { + "appid": 2457870, + "normalized_name": "sandy's great escape" + }, + { + "appid": 2457890, + "normalized_name": "dracomaton" + }, + { + "appid": 2457920, + "normalized_name": "gonshit infarct" + }, + { + "appid": 2457930, + "normalized_name": "vr dinosaur city war" + }, + { + "appid": 2457940, + "normalized_name": "dark farm" + }, + { + "appid": 2457960, + "normalized_name": "space tales" + }, + { + "appid": 2457970, + "normalized_name": "amicade" + }, + { + "appid": 2458010, + "normalized_name": "dungeon mutation" + }, + { + "appid": 2458060, + "normalized_name": "dogu the adventurer" + }, + { + "appid": 2458080, + "normalized_name": "聊斋搜神记" + }, + { + "appid": 2458120, + "normalized_name": "mononeko a rhythm adventure" + }, + { + "appid": 2458210, + "normalized_name": "tamer vale" + }, + { + "appid": 2458230, + "normalized_name": "street sports baseball" + }, + { + "appid": 2458240, + "normalized_name": "self simulated" + }, + { + "appid": 2458250, + "normalized_name": "cry babies magic tears the big game" + }, + { + "appid": 2458260, + "normalized_name": "rage of fluffy looters" + }, + { + "appid": 2458280, + "normalized_name": "tribe quest" + }, + { + "appid": 2458300, + "normalized_name": "planetgore" + }, + { + "appid": 2458310, + "normalized_name": "new arc line" + }, + { + "appid": 2458330, + "normalized_name": "sex simulator futanari bdsm" + }, + { + "appid": 2458370, + "normalized_name": "chronicles of the soulforged" + }, + { + "appid": 2458410, + "normalized_name": "hex racer" + }, + { + "appid": 2458430, + "normalized_name": "leila" + }, + { + "appid": 2458480, + "normalized_name": "the naughty vampire and the moaning forest" + }, + { + "appid": 2458490, + "normalized_name": "fallen shinobi" + }, + { + "appid": 2458530, + "normalized_name": "魔女的夜宴" + }, + { + "appid": 2458540, + "normalized_name": "twist & turn" + }, + { + "appid": 2458560, + "normalized_name": "zoochosis" + }, + { + "appid": 2458580, + "normalized_name": "loading simulator" + }, + { + "appid": 2458590, + "normalized_name": "wizavior" + }, + { + "appid": 2458620, + "normalized_name": "fred's cereal company" + }, + { + "appid": 2458700, + "normalized_name": "mad miner" + }, + { + "appid": 2458780, + "normalized_name": "numb just don't think about it" + }, + { + "appid": 2458800, + "normalized_name": "train operator 377 free version" + }, + { + "appid": 2458830, + "normalized_name": "towerborne" + }, + { + "appid": 2458840, + "normalized_name": "mysterious place" + }, + { + "appid": 2458860, + "normalized_name": "summer clover" + }, + { + "appid": 2458920, + "normalized_name": "wagon" + }, + { + "appid": 2458940, + "normalized_name": "farm keeper" + }, + { + "appid": 2458980, + "normalized_name": "dimhaven enigmas" + }, + { + "appid": 2459030, + "normalized_name": "locator" + }, + { + "appid": 2459090, + "normalized_name": "glaivebound" + }, + { + "appid": 2459100, + "normalized_name": "pro strategy football 2024" + }, + { + "appid": 2459130, + "normalized_name": "coke bugs" + }, + { + "appid": 2459150, + "normalized_name": "tyrannis co prosperity" + }, + { + "appid": 2459170, + "normalized_name": "agent jump" + }, + { + "appid": 2459180, + "normalized_name": "praise dead" + }, + { + "appid": 2459190, + "normalized_name": "last signal" + }, + { + "appid": 2459250, + "normalized_name": "squirrel day" + }, + { + "appid": 2459270, + "normalized_name": "space chimp" + }, + { + "appid": 2459280, + "normalized_name": "ecstasy / light / inertia" + }, + { + "appid": 2459290, + "normalized_name": "hungry dogs" + }, + { + "appid": 2459350, + "normalized_name": "taboo university book one" + }, + { + "appid": 2459370, + "normalized_name": "praia ardente" + }, + { + "appid": 2459400, + "normalized_name": "九天之起源" + }, + { + "appid": 2459410, + "normalized_name": "机战新世纪" + }, + { + "appid": 2459420, + "normalized_name": "無職転生 ~異世界行ったら本気だす~ quest of memories(mushoku tensei jobless reincarnation quest of memories)" + }, + { + "appid": 2459430, + "normalized_name": "plastomorphosis" + }, + { + "appid": 2459450, + "normalized_name": "tero terror hour" + }, + { + "appid": 2459460, + "normalized_name": "grapplania" + }, + { + "appid": 2459490, + "normalized_name": "this grand life 2" + }, + { + "appid": 2459510, + "normalized_name": "teratale tide of wishes" + }, + { + "appid": 2459530, + "normalized_name": "light bearers 2" + }, + { + "appid": 2459550, + "normalized_name": "emberward" + }, + { + "appid": 2459560, + "normalized_name": "paris transylvania" + }, + { + "appid": 2459610, + "normalized_name": "the argument solver" + }, + { + "appid": 2459620, + "normalized_name": "william and sly" + }, + { + "appid": 2459750, + "normalized_name": "幻日のヨハネ numazu in the mirage" + }, + { + "appid": 2459790, + "normalized_name": "逆乱水浒之山贼王" + }, + { + "appid": 2459820, + "normalized_name": "flat spot" + }, + { + "appid": 2459840, + "normalized_name": "barbarian saga the beastmaster" + }, + { + "appid": 2459850, + "normalized_name": "sneaky seekers" + }, + { + "appid": 2459860, + "normalized_name": "spgp super polygon grand prix" + }, + { + "appid": 2459870, + "normalized_name": "drop doll" + }, + { + "appid": 2459890, + "normalized_name": "bobls" + }, + { + "appid": 2459900, + "normalized_name": "fritz your chess coach" + }, + { + "appid": 2459920, + "normalized_name": "el norte salvaje juego de cartas rpg" + }, + { + "appid": 2459950, + "normalized_name": "ион.а" + }, + { + "appid": 2459960, + "normalized_name": "perfect landing" + }, + { + "appid": 2459980, + "normalized_name": "wastepunk" + }, + { + "appid": 2460000, + "normalized_name": "sakura in paris" + }, + { + "appid": 2460010, + "normalized_name": "epic pandemonium" + }, + { + "appid": 2460020, + "normalized_name": "soar up the charts" + }, + { + "appid": 2460050, + "normalized_name": "gate of souls" + }, + { + "appid": 2460060, + "normalized_name": "vasilisa the wise" + }, + { + "appid": 2460070, + "normalized_name": "half demon shinobi" + }, + { + "appid": 2460120, + "normalized_name": "blood samurai" + }, + { + "appid": 2460130, + "normalized_name": "teenage mutant ninja turtles mutants unleashed" + }, + { + "appid": 2460190, + "normalized_name": "city gridlock" + }, + { + "appid": 2460210, + "normalized_name": "hazy monochrome wand" + }, + { + "appid": 2460230, + "normalized_name": "dungeon journey" + }, + { + "appid": 2460260, + "normalized_name": "swiggart's last will" + }, + { + "appid": 2460270, + "normalized_name": "戲假成真" + }, + { + "appid": 2460310, + "normalized_name": "wendigo" + }, + { + "appid": 2460350, + "normalized_name": "brave mouse cartographer trilogy" + }, + { + "appid": 2460360, + "normalized_name": "my mistress lu bu" + }, + { + "appid": 2460450, + "normalized_name": "3 scary games" + }, + { + "appid": 2460460, + "normalized_name": "chimera bloodlines" + }, + { + "appid": 2460480, + "normalized_name": "kill crab" + }, + { + "appid": 2460490, + "normalized_name": "quantum recharged" + }, + { + "appid": 2460520, + "normalized_name": "pretty dreadful heritage" + }, + { + "appid": 2460570, + "normalized_name": "sex story ruby and hunter episode 1" + }, + { + "appid": 2460580, + "normalized_name": "eldrimar prologue" + }, + { + "appid": 2460640, + "normalized_name": "dreaming diorama" + }, + { + "appid": 2460660, + "normalized_name": "a dark room" + }, + { + "appid": 2460680, + "normalized_name": "bubblegum bandit" + }, + { + "appid": 2460730, + "normalized_name": "future offline" + }, + { + "appid": 2460770, + "normalized_name": "the complex iv" + }, + { + "appid": 2460840, + "normalized_name": "remnants of dawn" + }, + { + "appid": 2460880, + "normalized_name": "鸡肉哥哥 chicken brother" + }, + { + "appid": 2460900, + "normalized_name": "cursed bet" + }, + { + "appid": 2460910, + "normalized_name": "pandora" + }, + { + "appid": 2460920, + "normalized_name": "acres" + }, + { + "appid": 2460940, + "normalized_name": "zero below the sun" + }, + { + "appid": 2460960, + "normalized_name": "strikethrøugh" + }, + { + "appid": 2460970, + "normalized_name": "pathogen purge tower defense" + }, + { + "appid": 2460980, + "normalized_name": "tide—1927—" + }, + { + "appid": 2461000, + "normalized_name": "let's learn lingít" + }, + { + "appid": 2461010, + "normalized_name": "curse of the shadow samurai" + }, + { + "appid": 2461040, + "normalized_name": "crazy brain" + }, + { + "appid": 2461050, + "normalized_name": "晨昏线" + }, + { + "appid": 2461070, + "normalized_name": "blackout early access" + }, + { + "appid": 2461080, + "normalized_name": "spacetron" + }, + { + "appid": 2461110, + "normalized_name": "anidu animal doll’s adventure" + }, + { + "appid": 2461120, + "normalized_name": "抗日英雄anti japanese heroes" + }, + { + "appid": 2461130, + "normalized_name": "沈める楽園" + }, + { + "appid": 2461140, + "normalized_name": "animalism" + }, + { + "appid": 2461150, + "normalized_name": "神奏三国詩" + }, + { + "appid": 2461190, + "normalized_name": "pipelinks" + }, + { + "appid": 2461240, + "normalized_name": "black & white lite" + }, + { + "appid": 2461260, + "normalized_name": "maze psychic" + }, + { + "appid": 2461270, + "normalized_name": "southside racing" + }, + { + "appid": 2461280, + "normalized_name": "lessaria fantasy kingdom sim" + }, + { + "appid": 2461290, + "normalized_name": "beyond the fringe" + }, + { + "appid": 2461300, + "normalized_name": "dream sports platform" + }, + { + "appid": 2461340, + "normalized_name": "feluna base" + }, + { + "appid": 2461370, + "normalized_name": "sisters hypnosis sex2" + }, + { + "appid": 2461400, + "normalized_name": "crocs world construction kit 2" + }, + { + "appid": 2461430, + "normalized_name": "the assistant season 1" + }, + { + "appid": 2461440, + "normalized_name": "bylina" + }, + { + "appid": 2461450, + "normalized_name": "panomap" + }, + { + "appid": 2461460, + "normalized_name": "womanizer" + }, + { + "appid": 2461490, + "normalized_name": "the adventure of ted and the lost magic crystals" + }, + { + "appid": 2461540, + "normalized_name": "artificial fright" + }, + { + "appid": 2461550, + "normalized_name": "pulse of love" + }, + { + "appid": 2461560, + "normalized_name": "water defense" + }, + { + "appid": 2461570, + "normalized_name": "jump malcolm jump" + }, + { + "appid": 2461580, + "normalized_name": "ruiga pirates" + }, + { + "appid": 2461600, + "normalized_name": "evil officer" + }, + { + "appid": 2461630, + "normalized_name": "my littlest skeleton" + }, + { + "appid": 2461730, + "normalized_name": "mana sisters" + }, + { + "appid": 2461750, + "normalized_name": "my name is uncle groucho you win a fat cigar" + }, + { + "appid": 2461760, + "normalized_name": "asteroid colony" + }, + { + "appid": 2461770, + "normalized_name": "hardboiledfarm" + }, + { + "appid": 2461780, + "normalized_name": "网瘾少年2005 internet addicted youth 2005" + }, + { + "appid": 2461810, + "normalized_name": "crimson loop" + }, + { + "appid": 2461840, + "normalized_name": "defenders of the omniverse" + }, + { + "appid": 2461850, + "normalized_name": "senua’s saga hellblade ii" + }, + { + "appid": 2461890, + "normalized_name": "space ball vr" + }, + { + "appid": 2461910, + "normalized_name": "福报修仙" + }, + { + "appid": 2461980, + "normalized_name": "faunamorph" + }, + { + "appid": 2461990, + "normalized_name": "tales of maana lucy" + }, + { + "appid": 2462000, + "normalized_name": "roboom" + }, + { + "appid": 2462050, + "normalized_name": "text adventure" + }, + { + "appid": 2462060, + "normalized_name": "graveyard gunslingers" + }, + { + "appid": 2462080, + "normalized_name": "human wall simulator" + }, + { + "appid": 2462090, + "normalized_name": "star knight order of the vortex" + }, + { + "appid": 2462100, + "normalized_name": "they dug too deep" + }, + { + "appid": 2462110, + "normalized_name": "memorybombs" + }, + { + "appid": 2462120, + "normalized_name": "drugz 2d drug empire simulator" + }, + { + "appid": 2462150, + "normalized_name": "the richmond rut (in search of fenton)" + }, + { + "appid": 2462210, + "normalized_name": "stardawn heroes" + }, + { + "appid": 2462220, + "normalized_name": "pippin's mysterious garden" + }, + { + "appid": 2462230, + "normalized_name": "wanted guns" + }, + { + "appid": 2462260, + "normalized_name": "monster truck fury" + }, + { + "appid": 2462310, + "normalized_name": "looper★looper" + }, + { + "appid": 2462320, + "normalized_name": "stolen hearts wolf knight" + }, + { + "appid": 2462340, + "normalized_name": "鬼轉身" + }, + { + "appid": 2462380, + "normalized_name": "skydribble" + }, + { + "appid": 2462390, + "normalized_name": "ラピスの弾丸" + }, + { + "appid": 2462440, + "normalized_name": "phantom" + }, + { + "appid": 2462450, + "normalized_name": "conludus" + }, + { + "appid": 2462520, + "normalized_name": "i'm on observation duty 7" + }, + { + "appid": 2462540, + "normalized_name": "the white cube" + }, + { + "appid": 2462560, + "normalized_name": "resourceful.world" + }, + { + "appid": 2462570, + "normalized_name": "thor's ascension nine realms" + }, + { + "appid": 2462580, + "normalized_name": "fista 3 in 1 retro pack (carpet shark plummet challenge game & the arm wrestling classic)" + }, + { + "appid": 2462600, + "normalized_name": "forest of lesbians (nymph's tale ep1)" + }, + { + "appid": 2462610, + "normalized_name": "magi's dream" + }, + { + "appid": 2462620, + "normalized_name": "anime slayer" + }, + { + "appid": 2462660, + "normalized_name": "the legend of santa" + }, + { + "appid": 2462790, + "normalized_name": "aether" + }, + { + "appid": 2462810, + "normalized_name": "ligo" + }, + { + "appid": 2462830, + "normalized_name": "autumn spirit" + }, + { + "appid": 2462840, + "normalized_name": "into the inferno" + }, + { + "appid": 2462850, + "normalized_name": "crisis control" + }, + { + "appid": 2462880, + "normalized_name": "amogus td 2 defense of the sus" + }, + { + "appid": 2462890, + "normalized_name": "zacisa defense of the crayon dimension!" + }, + { + "appid": 2462910, + "normalized_name": "lucky shield" + }, + { + "appid": 2462960, + "normalized_name": "vacuum pilot 2" + }, + { + "appid": 2462970, + "normalized_name": "chimera island" + }, + { + "appid": 2463000, + "normalized_name": "keribato!" + }, + { + "appid": 2463020, + "normalized_name": "blind hope" + }, + { + "appid": 2463030, + "normalized_name": "humans & vampires" + }, + { + "appid": 2463040, + "normalized_name": "mildred's tarot battle" + }, + { + "appid": 2463080, + "normalized_name": "zombie hunter" + }, + { + "appid": 2463150, + "normalized_name": "puzzle time seasons" + }, + { + "appid": 2463160, + "normalized_name": "farmer simulator" + }, + { + "appid": 2463170, + "normalized_name": "rogueout" + }, + { + "appid": 2463210, + "normalized_name": "poly jigsaw primates" + }, + { + "appid": 2463220, + "normalized_name": "lone fungus melody of spores" + }, + { + "appid": 2463250, + "normalized_name": "gaia survivors" + }, + { + "appid": 2463260, + "normalized_name": "有所思 yearning" + }, + { + "appid": 2463290, + "normalized_name": "the adventure of popo" + }, + { + "appid": 2463340, + "normalized_name": "night escape" + }, + { + "appid": 2463360, + "normalized_name": "true abstraction rewind" + }, + { + "appid": 2463420, + "normalized_name": "etrom 20th anniversary" + }, + { + "appid": 2463440, + "normalized_name": "delta" + }, + { + "appid": 2463450, + "normalized_name": "castlemancer" + }, + { + "appid": 2463480, + "normalized_name": "alaric's quest" + }, + { + "appid": 2463490, + "normalized_name": "poly ego" + }, + { + "appid": 2463500, + "normalized_name": "backrooms abyss" + }, + { + "appid": 2463510, + "normalized_name": "atlas brave" + }, + { + "appid": 2463530, + "normalized_name": "vacation paradise florida collector's" + }, + { + "appid": 2463550, + "normalized_name": "racketeers" + }, + { + "appid": 2463560, + "normalized_name": "the ripe blood anthology this world is just for the two of us" + }, + { + "appid": 2463570, + "normalized_name": "hamsterball soccer" + }, + { + "appid": 2463610, + "normalized_name": "spooky crew mask of the mysterium" + }, + { + "appid": 2463620, + "normalized_name": "connection the nightmare within" + }, + { + "appid": 2463660, + "normalized_name": "sweet girl gurumelo" + }, + { + "appid": 2463690, + "normalized_name": "strange seed" + }, + { + "appid": 2463700, + "normalized_name": "chimp quest spirit isle" + }, + { + "appid": 2463710, + "normalized_name": "i love finding cats & pups" + }, + { + "appid": 2463720, + "normalized_name": "paint by pixel 3" + }, + { + "appid": 2463730, + "normalized_name": "so much stuff 3 odds & ends" + }, + { + "appid": 2463800, + "normalized_name": "iron saga vs" + }, + { + "appid": 2463820, + "normalized_name": "coffee brakes" + }, + { + "appid": 2463830, + "normalized_name": "sand tanble war the crusandes" + }, + { + "appid": 2463920, + "normalized_name": "little monkey king's big quest" + }, + { + "appid": 2463930, + "normalized_name": "to my forever love" + }, + { + "appid": 2463980, + "normalized_name": "werewolf the apocalypse — purgatory" + }, + { + "appid": 2463990, + "normalized_name": "soulker defense" + }, + { + "appid": 2464030, + "normalized_name": "local news with cliff rockslide" + }, + { + "appid": 2464090, + "normalized_name": "purrfectly hidden cats kittenwood" + }, + { + "appid": 2464120, + "normalized_name": "yume 3" + }, + { + "appid": 2464130, + "normalized_name": "dead wolf" + }, + { + "appid": 2464190, + "normalized_name": "accelerate zone" + }, + { + "appid": 2464210, + "normalized_name": "stonebound" + }, + { + "appid": 2464220, + "normalized_name": "stronghold conquest" + }, + { + "appid": 2464260, + "normalized_name": "sapphic space" + }, + { + "appid": 2464270, + "normalized_name": "astroventure unchartred planet" + }, + { + "appid": 2464280, + "normalized_name": "tormented souls 2" + }, + { + "appid": 2464330, + "normalized_name": "末路之旅~高雄篇~" + }, + { + "appid": 2464450, + "normalized_name": "r body adventure" + }, + { + "appid": 2464460, + "normalized_name": "portal fantasy" + }, + { + "appid": 2464470, + "normalized_name": "bingo pets save the pets" + }, + { + "appid": 2464480, + "normalized_name": "against great darkness prologue" + }, + { + "appid": 2464490, + "normalized_name": "fate and judgement" + }, + { + "appid": 2464500, + "normalized_name": "hentai glass" + }, + { + "appid": 2464510, + "normalized_name": "sylvantia" + }, + { + "appid": 2464520, + "normalized_name": "surviving deponia" + }, + { + "appid": 2464530, + "normalized_name": "voin" + }, + { + "appid": 2464540, + "normalized_name": "paws (cpc/spectrum)" + }, + { + "appid": 2464620, + "normalized_name": "tatonka the space whale" + }, + { + "appid": 2464630, + "normalized_name": "lusófona games collection 2023" + }, + { + "appid": 2464640, + "normalized_name": "forsaken lands" + }, + { + "appid": 2464660, + "normalized_name": "warbreeds" + }, + { + "appid": 2464670, + "normalized_name": "take no prisoners" + }, + { + "appid": 2464680, + "normalized_name": "necrodome" + }, + { + "appid": 2464690, + "normalized_name": "cyclones" + }, + { + "appid": 2464700, + "normalized_name": "digital girlfriend" + }, + { + "appid": 2464740, + "normalized_name": "elemental realms" + }, + { + "appid": 2464750, + "normalized_name": "cards and towers" + }, + { + "appid": 2464770, + "normalized_name": "the journey of piggy" + }, + { + "appid": 2464800, + "normalized_name": "apex heroines" + }, + { + "appid": 2464880, + "normalized_name": "terracards" + }, + { + "appid": 2464890, + "normalized_name": "agent heart deception" + }, + { + "appid": 2464900, + "normalized_name": "soulcoom" + }, + { + "appid": 2464950, + "normalized_name": "the puzzle maker cebba’s odyssey" + }, + { + "appid": 2464980, + "normalized_name": "infinite robotics" + }, + { + "appid": 2465060, + "normalized_name": "hollow mine" + }, + { + "appid": 2465080, + "normalized_name": "jelly & toast" + }, + { + "appid": 2465090, + "normalized_name": "escape the dark tower" + }, + { + "appid": 2465100, + "normalized_name": "transmuters" + }, + { + "appid": 2465110, + "normalized_name": "heavy sword" + }, + { + "appid": 2465240, + "normalized_name": "harmony" + }, + { + "appid": 2465300, + "normalized_name": "loop kingdom" + }, + { + "appid": 2465310, + "normalized_name": "cosmos kitten" + }, + { + "appid": 2465360, + "normalized_name": "oudbiao's world" + }, + { + "appid": 2465380, + "normalized_name": "primal earth" + }, + { + "appid": 2465460, + "normalized_name": "妖精天祈祷2 ~ 大悪魔のリターンマッチ ~" + }, + { + "appid": 2465490, + "normalized_name": "nine realms revolt" + }, + { + "appid": 2465510, + "normalized_name": "exelio" + }, + { + "appid": 2465530, + "normalized_name": "as talk as walk wayfarer team – one percent sleepy" + }, + { + "appid": 2465670, + "normalized_name": "mamashroom" + }, + { + "appid": 2465690, + "normalized_name": "dice captain" + }, + { + "appid": 2465730, + "normalized_name": "once upon a tile" + }, + { + "appid": 2465770, + "normalized_name": "star keeper" + }, + { + "appid": 2465780, + "normalized_name": "push that cat!!" + }, + { + "appid": 2465830, + "normalized_name": "robin hood sherwood builders bandit's trail" + }, + { + "appid": 2465840, + "normalized_name": "club velvet rose midnight bliss" + }, + { + "appid": 2465870, + "normalized_name": "危城逃生" + }, + { + "appid": 2465880, + "normalized_name": "touch force" + }, + { + "appid": 2465930, + "normalized_name": "vaporwave pinball" + }, + { + "appid": 2466000, + "normalized_name": "superstore simulator" + }, + { + "appid": 2466090, + "normalized_name": "meat and metal" + }, + { + "appid": 2466130, + "normalized_name": "bonnie bear saves frogtime" + }, + { + "appid": 2466160, + "normalized_name": "runman race around the world" + }, + { + "appid": 2466190, + "normalized_name": "timekeepers defense" + }, + { + "appid": 2466230, + "normalized_name": "愚人之夜" + }, + { + "appid": 2466240, + "normalized_name": "cosmopirates" + }, + { + "appid": 2466290, + "normalized_name": "fox run" + }, + { + "appid": 2466350, + "normalized_name": "spaceforge" + }, + { + "appid": 2466370, + "normalized_name": "food truck time machine" + }, + { + "appid": 2466400, + "normalized_name": "rec beyond the lens" + }, + { + "appid": 2466410, + "normalized_name": "sundown survival" + }, + { + "appid": 2466450, + "normalized_name": "mechanics" + }, + { + "appid": 2466500, + "normalized_name": "hoppy square dx" + }, + { + "appid": 2466520, + "normalized_name": "bungo's bungite collector" + }, + { + "appid": 2466640, + "normalized_name": "chaos pattern" + }, + { + "appid": 2466660, + "normalized_name": "village & monsters" + }, + { + "appid": 2466680, + "normalized_name": "kebab simulator prologue" + }, + { + "appid": 2466700, + "normalized_name": "junglering2d" + }, + { + "appid": 2466790, + "normalized_name": "kiyo bunny tyranny" + }, + { + "appid": 2466820, + "normalized_name": "imprecision" + }, + { + "appid": 2466850, + "normalized_name": "3d puzzle battle royal" + }, + { + "appid": 2466870, + "normalized_name": "3d puzzle desert wind" + }, + { + "appid": 2466880, + "normalized_name": "3d puzzle farming" + }, + { + "appid": 2466890, + "normalized_name": "3d puzzle medieval inn" + }, + { + "appid": 2466900, + "normalized_name": "the posthumous investigation" + }, + { + "appid": 2466920, + "normalized_name": "finish report" + }, + { + "appid": 2466970, + "normalized_name": "ricky's furry duck hunt" + }, + { + "appid": 2466990, + "normalized_name": "beast dungeon" + }, + { + "appid": 2467000, + "normalized_name": "bobr sprint" + }, + { + "appid": 2467030, + "normalized_name": "the castle" + }, + { + "appid": 2467070, + "normalized_name": "inner seasons" + }, + { + "appid": 2467120, + "normalized_name": "frostpanic whispers of sertão" + }, + { + "appid": 2467190, + "normalized_name": "三國立志傳3" + }, + { + "appid": 2467200, + "normalized_name": "realms and ruins abencor" + }, + { + "appid": 2467210, + "normalized_name": "chinese chess wargame" + }, + { + "appid": 2467220, + "normalized_name": "taptap princess" + }, + { + "appid": 2467230, + "normalized_name": "锚点降临 近未来科幻rpg" + }, + { + "appid": 2467250, + "normalized_name": "casino of desire" + }, + { + "appid": 2467280, + "normalized_name": "人偶工坊" + }, + { + "appid": 2467300, + "normalized_name": "hoofobia" + }, + { + "appid": 2467310, + "normalized_name": "fung" + }, + { + "appid": 2467370, + "normalized_name": "target party" + }, + { + "appid": 2467380, + "normalized_name": "galactico" + }, + { + "appid": 2467400, + "normalized_name": "parryrobot" + }, + { + "appid": 2467410, + "normalized_name": "time hunters ミクイ黄金像の呪い" + }, + { + "appid": 2467480, + "normalized_name": "border clash" + }, + { + "appid": 2467510, + "normalized_name": "dark ride simulator" + }, + { + "appid": 2467540, + "normalized_name": "secret agent" + }, + { + "appid": 2467590, + "normalized_name": "tides of despair" + }, + { + "appid": 2467630, + "normalized_name": "game of crafts vr immersion in the world of russian folk art" + }, + { + "appid": 2467710, + "normalized_name": "dash for your life" + }, + { + "appid": 2467720, + "normalized_name": "블록과 미연시와 고대 그리스" + }, + { + "appid": 2467790, + "normalized_name": "joker show horror escape" + }, + { + "appid": 2467800, + "normalized_name": "attack of the petscii robots (dos)" + }, + { + "appid": 2467810, + "normalized_name": "orebound" + }, + { + "appid": 2467830, + "normalized_name": "dreamscape abyss" + }, + { + "appid": 2467840, + "normalized_name": "artemis cosmos" + }, + { + "appid": 2467850, + "normalized_name": "wild growth" + }, + { + "appid": 2467860, + "normalized_name": "forbidden tapes" + }, + { + "appid": 2467870, + "normalized_name": "dying under nightfall" + }, + { + "appid": 2467890, + "normalized_name": "pet shop world" + }, + { + "appid": 2467910, + "normalized_name": "pirate runner" + }, + { + "appid": 2467920, + "normalized_name": "epic knight 2" + }, + { + "appid": 2467930, + "normalized_name": "oma one man army" + }, + { + "appid": 2467940, + "normalized_name": "school of gods" + }, + { + "appid": 2467950, + "normalized_name": "kill the man in the house" + }, + { + "appid": 2468030, + "normalized_name": "throwback" + }, + { + "appid": 2468060, + "normalized_name": "breaking survivors" + }, + { + "appid": 2468100, + "normalized_name": "pyrene" + }, + { + "appid": 2468110, + "normalized_name": "telmari" + }, + { + "appid": 2468120, + "normalized_name": "slimegeon" + }, + { + "appid": 2468210, + "normalized_name": "seagull kart racing" + }, + { + "appid": 2468230, + "normalized_name": "cyber rail" + }, + { + "appid": 2468250, + "normalized_name": "silkbulb test" + }, + { + "appid": 2468300, + "normalized_name": "dommebreaker" + }, + { + "appid": 2468400, + "normalized_name": "hot wheels monster trucks stunt mayhem" + }, + { + "appid": 2468430, + "normalized_name": "frogreign" + }, + { + "appid": 2468440, + "normalized_name": "westhalla" + }, + { + "appid": 2468470, + "normalized_name": "soulbind tales of the underworld" + }, + { + "appid": 2468490, + "normalized_name": "eredia 2 the great war" + }, + { + "appid": 2468540, + "normalized_name": "superkraft open world survival crafting game" + }, + { + "appid": 2468550, + "normalized_name": "vivid world" + }, + { + "appid": 2468560, + "normalized_name": "tay son dynasty" + }, + { + "appid": 2468600, + "normalized_name": "我的修仙传奇" + }, + { + "appid": 2468610, + "normalized_name": "the night shift" + }, + { + "appid": 2468630, + "normalized_name": "magic inn" + }, + { + "appid": 2468650, + "normalized_name": "valiant" + }, + { + "appid": 2468670, + "normalized_name": "little locked rooms" + }, + { + "appid": 2468680, + "normalized_name": "wacky wonderland wollop a 3d platformer for the ages game of the year greatest game of all time the game" + }, + { + "appid": 2468720, + "normalized_name": "hellwatch" + }, + { + "appid": 2468730, + "normalized_name": "dungeon stalkers" + }, + { + "appid": 2468740, + "normalized_name": "sunny village" + }, + { + "appid": 2468780, + "normalized_name": "team six armored troops" + }, + { + "appid": 2468800, + "normalized_name": "don't let him in" + }, + { + "appid": 2468810, + "normalized_name": "sylvana's chronicles" + }, + { + "appid": 2468820, + "normalized_name": "cubic survivor" + }, + { + "appid": 2468920, + "normalized_name": "the mice plight" + }, + { + "appid": 2468940, + "normalized_name": "medved hellraiser 2" + }, + { + "appid": 2468950, + "normalized_name": "bonding now" + }, + { + "appid": 2468960, + "normalized_name": "the old house" + }, + { + "appid": 2468970, + "normalized_name": "the farming frontier" + }, + { + "appid": 2468990, + "normalized_name": "idle" + }, + { + "appid": 2469030, + "normalized_name": "sex dating on mars" + }, + { + "appid": 2469050, + "normalized_name": "kittengumi the sakabato's thief" + }, + { + "appid": 2469080, + "normalized_name": "curse of blood" + }, + { + "appid": 2469130, + "normalized_name": "cybertrash statyx" + }, + { + "appid": 2469160, + "normalized_name": "quizfizz" + }, + { + "appid": 2469190, + "normalized_name": "gluck" + }, + { + "appid": 2469200, + "normalized_name": "fera the sundered tribes" + }, + { + "appid": 2469240, + "normalized_name": "zombikini pinballz" + }, + { + "appid": 2469260, + "normalized_name": "parkour labs" + }, + { + "appid": 2469280, + "normalized_name": "mushroom picnic party" + }, + { + "appid": 2469290, + "normalized_name": "adverse effects" + }, + { + "appid": 2469320, + "normalized_name": "cthulhu must die" + }, + { + "appid": 2469360, + "normalized_name": "grapploteer" + }, + { + "appid": 2469370, + "normalized_name": "eggsplosion" + }, + { + "appid": 2469410, + "normalized_name": "icode stem universe" + }, + { + "appid": 2469440, + "normalized_name": "martial law our spring" + }, + { + "appid": 2469490, + "normalized_name": "elemental world" + }, + { + "appid": 2469550, + "normalized_name": "survival & horror mortanis prisoners prologue" + }, + { + "appid": 2469560, + "normalized_name": "coloniser" + }, + { + "appid": 2469570, + "normalized_name": "oberty" + }, + { + "appid": 2469590, + "normalized_name": "back to home" + }, + { + "appid": 2469610, + "normalized_name": "forklift simulator 2023" + }, + { + "appid": 2469640, + "normalized_name": "clear the train" + }, + { + "appid": 2469650, + "normalized_name": "no body otherworldly rpg prologue" + }, + { + "appid": 2469690, + "normalized_name": "isekai'd" + }, + { + "appid": 2469710, + "normalized_name": "forest of strays" + }, + { + "appid": 2469740, + "normalized_name": "heist force" + }, + { + "appid": 2469880, + "normalized_name": "putin must die defend the white house" + }, + { + "appid": 2469890, + "normalized_name": "the wand wizard" + }, + { + "appid": 2469900, + "normalized_name": "pew pew rocket!" + }, + { + "appid": 2469930, + "normalized_name": "necrodepths" + }, + { + "appid": 2469950, + "normalized_name": "siren's call escape velocity" + }, + { + "appid": 2469990, + "normalized_name": "rune seeker" + }, + { + "appid": 2470010, + "normalized_name": "defect" + }, + { + "appid": 2470020, + "normalized_name": "愛する妻の穴は他人の穴だった…… ~美尻を差しだし、兄貴の肉棒をおねだりする淫ら妻~" + }, + { + "appid": 2470030, + "normalized_name": "rotting rumble" + }, + { + "appid": 2470060, + "normalized_name": "60clicks read select connected worlds" + }, + { + "appid": 2470110, + "normalized_name": "rival party" + }, + { + "appid": 2470120, + "normalized_name": "flower flurry" + }, + { + "appid": 2470130, + "normalized_name": "御姐初长成" + }, + { + "appid": 2470160, + "normalized_name": "time circuit" + }, + { + "appid": 2470200, + "normalized_name": "tales of spark probation" + }, + { + "appid": 2470230, + "normalized_name": "东方梦想终点~touhou fantasy destination" + }, + { + "appid": 2470240, + "normalized_name": "salt aquarium fish simulator" + }, + { + "appid": 2470270, + "normalized_name": "the endless dream" + }, + { + "appid": 2470290, + "normalized_name": "brick exorcist" + }, + { + "appid": 2470300, + "normalized_name": "hookah haze" + }, + { + "appid": 2470310, + "normalized_name": "lost tenet" + }, + { + "appid": 2470330, + "normalized_name": "babyrace/宝贝快跑" + }, + { + "appid": 2470350, + "normalized_name": "gunpunk vr" + }, + { + "appid": 2470370, + "normalized_name": "wgw kt 传送门世界 王国传说 warp gate world kingdom tales" + }, + { + "appid": 2470390, + "normalized_name": "professor doctor jetpack" + }, + { + "appid": 2470420, + "normalized_name": "pirates of rectangular" + }, + { + "appid": 2470440, + "normalized_name": "エッグウォーパズル" + }, + { + "appid": 2470470, + "normalized_name": "chalice of souls grahan" + }, + { + "appid": 2470530, + "normalized_name": "晴れし靄かな" + }, + { + "appid": 2470610, + "normalized_name": "progress chess" + }, + { + "appid": 2470620, + "normalized_name": "recycle bin battle" + }, + { + "appid": 2470630, + "normalized_name": "bullet town" + }, + { + "appid": 2470650, + "normalized_name": "cones in space" + }, + { + "appid": 2470670, + "normalized_name": "there are dinosaurs" + }, + { + "appid": 2470690, + "normalized_name": "jumpah" + }, + { + "appid": 2470700, + "normalized_name": "stay home" + }, + { + "appid": 2470710, + "normalized_name": "joyride lowpoly world" + }, + { + "appid": 2470740, + "normalized_name": "worldwide battle royale" + }, + { + "appid": 2470770, + "normalized_name": "triple treble triumph" + }, + { + "appid": 2470780, + "normalized_name": "carlos klauss episodio zerø" + }, + { + "appid": 2470790, + "normalized_name": "inferius" + }, + { + "appid": 2470800, + "normalized_name": "veil alter unknown" + }, + { + "appid": 2470830, + "normalized_name": "repeat after me" + }, + { + "appid": 2470860, + "normalized_name": "knockout master" + }, + { + "appid": 2470910, + "normalized_name": "evie the echo condition" + }, + { + "appid": 2470920, + "normalized_name": "mystery trackers fatal lesson collector's" + }, + { + "appid": 2470930, + "normalized_name": "botanical warden" + }, + { + "appid": 2470980, + "normalized_name": "bunny bond" + }, + { + "appid": 2470990, + "normalized_name": "llamalandia" + }, + { + "appid": 2471000, + "normalized_name": "swift by knight" + }, + { + "appid": 2471020, + "normalized_name": "scramble star crossing" + }, + { + "appid": 2471060, + "normalized_name": "divine shock" + }, + { + "appid": 2471070, + "normalized_name": "neon city of desires" + }, + { + "appid": 2471090, + "normalized_name": "gah!" + }, + { + "appid": 2471100, + "normalized_name": "unnamed space idle" + }, + { + "appid": 2471110, + "normalized_name": "dr. psycho hospital escape 2" + }, + { + "appid": 2471120, + "normalized_name": "rocket jockey" + }, + { + "appid": 2471130, + "normalized_name": "obsidian" + }, + { + "appid": 2471140, + "normalized_name": "arthur's birthday" + }, + { + "appid": 2471150, + "normalized_name": "arthur's teacher trouble" + }, + { + "appid": 2471160, + "normalized_name": "arthur's reading race" + }, + { + "appid": 2471170, + "normalized_name": "arthur's computer adventure" + }, + { + "appid": 2471250, + "normalized_name": "fun.io arena battle" + }, + { + "appid": 2471290, + "normalized_name": "the void" + }, + { + "appid": 2471320, + "normalized_name": "the rift" + }, + { + "appid": 2471340, + "normalized_name": "clay monkey the master potter and the kiln god" + }, + { + "appid": 2471350, + "normalized_name": "balloons" + }, + { + "appid": 2471380, + "normalized_name": "every year banjir" + }, + { + "appid": 2471390, + "normalized_name": "bloodrush undying wish" + }, + { + "appid": 2471480, + "normalized_name": "vox populi españa 2023" + }, + { + "appid": 2471490, + "normalized_name": "slingshot protocol" + }, + { + "appid": 2471540, + "normalized_name": "时空之海(space time ocean)" + }, + { + "appid": 2471550, + "normalized_name": "wizard world" + }, + { + "appid": 2471590, + "normalized_name": "starboost" + }, + { + "appid": 2471600, + "normalized_name": "impossible stunts" + }, + { + "appid": 2471620, + "normalized_name": "fly fly dragon!" + }, + { + "appid": 2471630, + "normalized_name": "displaced defense" + }, + { + "appid": 2471650, + "normalized_name": "sassy girl" + }, + { + "appid": 2471660, + "normalized_name": "succubus heaven" + }, + { + "appid": 2471670, + "normalized_name": "bean" + }, + { + "appid": 2471680, + "normalized_name": "risimon" + }, + { + "appid": 2471690, + "normalized_name": "stress chess" + }, + { + "appid": 2471710, + "normalized_name": "dragon jump" + }, + { + "appid": 2471730, + "normalized_name": "pebble" + }, + { + "appid": 2471760, + "normalized_name": "dekamara" + }, + { + "appid": 2471770, + "normalized_name": "dark bunny" + }, + { + "appid": 2471780, + "normalized_name": "lost connections" + }, + { + "appid": 2471790, + "normalized_name": "скуфный день" + }, + { + "appid": 2471800, + "normalized_name": "something something spaceship" + }, + { + "appid": 2471850, + "normalized_name": "discarded memories mysteries of the past" + }, + { + "appid": 2471890, + "normalized_name": "一个小镇" + }, + { + "appid": 2471900, + "normalized_name": "[e]island hop academic version" + }, + { + "appid": 2471910, + "normalized_name": "neon runner" + }, + { + "appid": 2471920, + "normalized_name": "sex simulator locker room" + }, + { + "appid": 2471940, + "normalized_name": "squares and stuff" + }, + { + "appid": 2471950, + "normalized_name": "be king" + }, + { + "appid": 2471960, + "normalized_name": "draconiano" + }, + { + "appid": 2471970, + "normalized_name": "planetary life" + }, + { + "appid": 2471980, + "normalized_name": "plague attack the world" + }, + { + "appid": 2472000, + "normalized_name": "sap school days" + }, + { + "appid": 2472010, + "normalized_name": "eydigard" + }, + { + "appid": 2472120, + "normalized_name": "demon dodger" + }, + { + "appid": 2472140, + "normalized_name": "all chess" + }, + { + "appid": 2472170, + "normalized_name": "slightly overweight superhero and the seven levels of death" + }, + { + "appid": 2472180, + "normalized_name": "gash" + }, + { + "appid": 2472200, + "normalized_name": "puzzlesquare" + }, + { + "appid": 2472230, + "normalized_name": "the inner demons" + }, + { + "appid": 2472240, + "normalized_name": "职场上升记" + }, + { + "appid": 2472250, + "normalized_name": "sparky" + }, + { + "appid": 2472260, + "normalized_name": "project shiba" + }, + { + "appid": 2472270, + "normalized_name": "goldenminer" + }, + { + "appid": 2472300, + "normalized_name": "走失的2012" + }, + { + "appid": 2472340, + "normalized_name": "fox spirit contract" + }, + { + "appid": 2472390, + "normalized_name": "a technician's nightmare" + }, + { + "appid": 2472410, + "normalized_name": "the continuum" + }, + { + "appid": 2472470, + "normalized_name": "叶碎/leaf fragments" + }, + { + "appid": 2472510, + "normalized_name": "captain stu" + }, + { + "appid": 2472530, + "normalized_name": "pillory" + }, + { + "appid": 2472550, + "normalized_name": "conquistadorio" + }, + { + "appid": 2472570, + "normalized_name": "under the water depths" + }, + { + "appid": 2472630, + "normalized_name": "flow state max chill" + }, + { + "appid": 2472670, + "normalized_name": "jet soccer" + }, + { + "appid": 2472690, + "normalized_name": "bloc age path of the oracle" + }, + { + "appid": 2472700, + "normalized_name": "tombstone taxi" + }, + { + "appid": 2472740, + "normalized_name": "chains of the goddess" + }, + { + "appid": 2472760, + "normalized_name": "flow last origins" + }, + { + "appid": 2472770, + "normalized_name": "automate it factory puzzle" + }, + { + "appid": 2472790, + "normalized_name": "truth" + }, + { + "appid": 2472810, + "normalized_name": "viral fear" + }, + { + "appid": 2472820, + "normalized_name": "hunt grounds" + }, + { + "appid": 2472830, + "normalized_name": "frontier of madness" + }, + { + "appid": 2472840, + "normalized_name": "ducks can drive" + }, + { + "appid": 2472860, + "normalized_name": "desktop hippo" + }, + { + "appid": 2472870, + "normalized_name": "doctor cat" + }, + { + "appid": 2472930, + "normalized_name": "formation" + }, + { + "appid": 2472940, + "normalized_name": "wanderer the fragments of fate" + }, + { + "appid": 2472970, + "normalized_name": "hoverkitty in the hoververse chapter two" + }, + { + "appid": 2472990, + "normalized_name": "paper plane" + }, + { + "appid": 2473000, + "normalized_name": "愛する妻、渚の浮気告白 奥ゆかしい妻のカラダが、あいつの激ピストンでとろけていた真実" + }, + { + "appid": 2473030, + "normalized_name": "scroll the pain away" + }, + { + "appid": 2473040, + "normalized_name": "don't punch me" + }, + { + "appid": 2473050, + "normalized_name": "manbikishita osanazuma ni namahame nakadashi" + }, + { + "appid": 2473070, + "normalized_name": "absorber" + }, + { + "appid": 2473090, + "normalized_name": "falling down" + }, + { + "appid": 2473110, + "normalized_name": "odyssey moon" + }, + { + "appid": 2473130, + "normalized_name": "forest frenzy" + }, + { + "appid": 2473140, + "normalized_name": "deck of bullets" + }, + { + "appid": 2473150, + "normalized_name": "cards we're dealt prologue" + }, + { + "appid": 2473210, + "normalized_name": "covid 23 test labs" + }, + { + "appid": 2473240, + "normalized_name": "dungeon evolution nemesis" + }, + { + "appid": 2473260, + "normalized_name": "claymores of the lost kingdom" + }, + { + "appid": 2473270, + "normalized_name": "solar system experience" + }, + { + "appid": 2473310, + "normalized_name": "fledge" + }, + { + "appid": 2473340, + "normalized_name": "弹珠竞技场" + }, + { + "appid": 2473400, + "normalized_name": "void ninja" + }, + { + "appid": 2473450, + "normalized_name": "where's fido?" + }, + { + "appid": 2473470, + "normalized_name": "wyrmicide" + }, + { + "appid": 2473480, + "normalized_name": "tails of iron 2 whiskers of winter" + }, + { + "appid": 2473500, + "normalized_name": "寝取られ妻明日香 ~私、他の男の人でこんなに感じちゃってる……~" + }, + { + "appid": 2473590, + "normalized_name": "robot td" + }, + { + "appid": 2473620, + "normalized_name": "you've been remaid!" + }, + { + "appid": 2473630, + "normalized_name": "scrap story" + }, + { + "appid": 2473640, + "normalized_name": "ecognomix" + }, + { + "appid": 2473650, + "normalized_name": "drevepsina" + }, + { + "appid": 2473670, + "normalized_name": "followers of krow" + }, + { + "appid": 2473710, + "normalized_name": "abyss school" + }, + { + "appid": 2473720, + "normalized_name": "vulture unlimited frontier /0" + }, + { + "appid": 2473740, + "normalized_name": "magic vs metal" + }, + { + "appid": 2473750, + "normalized_name": "dark past darker future" + }, + { + "appid": 2473790, + "normalized_name": "defenders of cardom" + }, + { + "appid": 2473820, + "normalized_name": "movierooms cinema management" + }, + { + "appid": 2473830, + "normalized_name": "endless dreamland" + }, + { + "appid": 2473870, + "normalized_name": "plenty karts" + }, + { + "appid": 2473890, + "normalized_name": "ddinosaur with double d's" + }, + { + "appid": 2473950, + "normalized_name": "hidden series 1" + }, + { + "appid": 2473980, + "normalized_name": "draw" + }, + { + "appid": 2473990, + "normalized_name": "crowned" + }, + { + "appid": 2474010, + "normalized_name": "jarpug" + }, + { + "appid": 2474020, + "normalized_name": "the amazing crackpots club!" + }, + { + "appid": 2474030, + "normalized_name": "an english haunting" + }, + { + "appid": 2474050, + "normalized_name": "ogo" + }, + { + "appid": 2474140, + "normalized_name": "a murder of crows" + }, + { + "appid": 2474150, + "normalized_name": "pho king my life" + }, + { + "appid": 2474170, + "normalized_name": "astral rot" + }, + { + "appid": 2474180, + "normalized_name": "save the settlers" + }, + { + "appid": 2474190, + "normalized_name": "slinger" + }, + { + "appid": 2474220, + "normalized_name": "death the guitar" + }, + { + "appid": 2474250, + "normalized_name": "an other golf game" + }, + { + "appid": 2474280, + "normalized_name": "odichat" + }, + { + "appid": 2474290, + "normalized_name": "wrangler" + }, + { + "appid": 2474320, + "normalized_name": "a risen heart" + }, + { + "appid": 2474360, + "normalized_name": "red genie an eidola tale" + }, + { + "appid": 2474420, + "normalized_name": "diesel mechs" + }, + { + "appid": 2474430, + "normalized_name": "tethergeist" + }, + { + "appid": 2474460, + "normalized_name": "rise of koreth" + }, + { + "appid": 2474550, + "normalized_name": "mandela syndrome" + }, + { + "appid": 2474590, + "normalized_name": "astral horizon" + }, + { + "appid": 2474610, + "normalized_name": "美尻を揺らし他の男と快楽を貪る淫ら妻 ~ごめんなさい、でもあなたのモノじゃ私満足出来ないの……~" + }, + { + "appid": 2474640, + "normalized_name": "15 minutes at the world's end" + }, + { + "appid": 2474660, + "normalized_name": "swimming dynasty" + }, + { + "appid": 2474670, + "normalized_name": "gascraft" + }, + { + "appid": 2474690, + "normalized_name": "hazelnut hex" + }, + { + "appid": 2474700, + "normalized_name": "あかやあかしやあやかしの 綴" + }, + { + "appid": 2474750, + "normalized_name": "欢乐牌(happy poker)" + }, + { + "appid": 2474770, + "normalized_name": "momento" + }, + { + "appid": 2474790, + "normalized_name": "pellet dodge" + }, + { + "appid": 2474800, + "normalized_name": "挂机修仙之我能合成功法!" + }, + { + "appid": 2474820, + "normalized_name": "scape run" + }, + { + "appid": 2474830, + "normalized_name": "guns of succubus 2" + }, + { + "appid": 2474840, + "normalized_name": "dark watcher" + }, + { + "appid": 2474850, + "normalized_name": "wisdom watcher" + }, + { + "appid": 2474880, + "normalized_name": "paint by cubes" + }, + { + "appid": 2474900, + "normalized_name": "duskborn" + }, + { + "appid": 2474920, + "normalized_name": "battle 3d zombie" + }, + { + "appid": 2474930, + "normalized_name": "bleak frontier" + }, + { + "appid": 2474940, + "normalized_name": "nope nope nope nope nurses" + }, + { + "appid": 2474950, + "normalized_name": "cursed realm" + }, + { + "appid": 2474960, + "normalized_name": "neon fantasy birds" + }, + { + "appid": 2474970, + "normalized_name": "hentai magical girls" + }, + { + "appid": 2475010, + "normalized_name": "pizza bandit" + }, + { + "appid": 2475020, + "normalized_name": "light speed ride out" + }, + { + "appid": 2475040, + "normalized_name": "纯爱独白:小小 purelove monologue xiaoxiao" + }, + { + "appid": 2475080, + "normalized_name": "florarium" + }, + { + "appid": 2475150, + "normalized_name": "succuboss💋 我的上司是魅魔" + }, + { + "appid": 2475170, + "normalized_name": "cosmic race galactic showdown" + }, + { + "appid": 2475220, + "normalized_name": "deidthraw" + }, + { + "appid": 2475240, + "normalized_name": "bear it" + }, + { + "appid": 2475250, + "normalized_name": "testament of power" + }, + { + "appid": 2475270, + "normalized_name": "女神侦探2" + }, + { + "appid": 2475290, + "normalized_name": "orbit zero" + }, + { + "appid": 2475300, + "normalized_name": "carmen sandiego" + }, + { + "appid": 2475330, + "normalized_name": "moonlight mayhem" + }, + { + "appid": 2475350, + "normalized_name": "my little blood cult let's summon demons" + }, + { + "appid": 2475380, + "normalized_name": "the basement" + }, + { + "appid": 2475390, + "normalized_name": "bootlegger's mafia racing story" + }, + { + "appid": 2475400, + "normalized_name": "buried alive breathless rescue" + }, + { + "appid": 2475410, + "normalized_name": "whittingham asylum the investigation" + }, + { + "appid": 2475420, + "normalized_name": "parking tycoon business simulator" + }, + { + "appid": 2475430, + "normalized_name": "wilderness edge" + }, + { + "appid": 2475440, + "normalized_name": "last hope bunker zombie survival" + }, + { + "appid": 2475450, + "normalized_name": "drone strike engineer simulator" + }, + { + "appid": 2475460, + "normalized_name": "sos ops!" + }, + { + "appid": 2475480, + "normalized_name": "waking tides" + }, + { + "appid": 2475490, + "normalized_name": "mouthwashing" + }, + { + "appid": 2475510, + "normalized_name": "takoyaki surprise" + }, + { + "appid": 2475520, + "normalized_name": "innertial" + }, + { + "appid": 2475550, + "normalized_name": "the game for free" + }, + { + "appid": 2475600, + "normalized_name": "wizards owl magic delivery" + }, + { + "appid": 2475610, + "normalized_name": "isle of maligree" + }, + { + "appid": 2475620, + "normalized_name": "misgiven" + }, + { + "appid": 2475640, + "normalized_name": "homeless guy" + }, + { + "appid": 2475670, + "normalized_name": "starboy adventures" + }, + { + "appid": 2475720, + "normalized_name": "sumo tanks" + }, + { + "appid": 2475730, + "normalized_name": "mtn chaos" + }, + { + "appid": 2475780, + "normalized_name": "the shrink season one" + }, + { + "appid": 2475790, + "normalized_name": "war of being" + }, + { + "appid": 2475800, + "normalized_name": "surface project dawn" + }, + { + "appid": 2475810, + "normalized_name": "knight cats leaves on the road" + }, + { + "appid": 2475820, + "normalized_name": "strange investigations secrets can be deadly collector's" + }, + { + "appid": 2475860, + "normalized_name": "bengbo" + }, + { + "appid": 2475890, + "normalized_name": "hell trigger" + }, + { + "appid": 2475910, + "normalized_name": "fashion designer simulator design studio creator master" + }, + { + "appid": 2475980, + "normalized_name": "gobliiins5" + }, + { + "appid": 2476020, + "normalized_name": "good luck my lord" + }, + { + "appid": 2476030, + "normalized_name": "goliath" + }, + { + "appid": 2476040, + "normalized_name": "abaddon's veil" + }, + { + "appid": 2476050, + "normalized_name": "sex story ruby and hunter episode 2" + }, + { + "appid": 2476070, + "normalized_name": "endless suburbia" + }, + { + "appid": 2476100, + "normalized_name": "creepy tale some other place" + }, + { + "appid": 2476150, + "normalized_name": "stickfigurez" + }, + { + "appid": 2476160, + "normalized_name": "いせらん!〜異世界乱闘!〜" + }, + { + "appid": 2476170, + "normalized_name": "missile wars" + }, + { + "appid": 2476190, + "normalized_name": "keys and kastles" + }, + { + "appid": 2476200, + "normalized_name": "laboratory x 29" + }, + { + "appid": 2476250, + "normalized_name": "keyboard warrior talk smack get smacked" + }, + { + "appid": 2476270, + "normalized_name": "hellheim a norse saga" + }, + { + "appid": 2476310, + "normalized_name": "mini ranger" + }, + { + "appid": 2476330, + "normalized_name": "guilty me" + }, + { + "appid": 2476350, + "normalized_name": "neko odyssey" + }, + { + "appid": 2476420, + "normalized_name": "a dino date" + }, + { + "appid": 2476490, + "normalized_name": "isekai rondo" + }, + { + "appid": 2476500, + "normalized_name": "alphadia i & ii" + }, + { + "appid": 2476580, + "normalized_name": "versus vampire" + }, + { + "appid": 2476610, + "normalized_name": "summoner arise!" + }, + { + "appid": 2476620, + "normalized_name": "一克大冒险" + }, + { + "appid": 2476630, + "normalized_name": "扶摇录" + }, + { + "appid": 2476640, + "normalized_name": "dollar king" + }, + { + "appid": 2476650, + "normalized_name": "do you even forklift?" + }, + { + "appid": 2476660, + "normalized_name": "魍魉村" + }, + { + "appid": 2476670, + "normalized_name": "new yankee mary's dark side" + }, + { + "appid": 2476680, + "normalized_name": "arc tracker" + }, + { + "appid": 2476690, + "normalized_name": "arie moonprayer" + }, + { + "appid": 2476710, + "normalized_name": "dire island" + }, + { + "appid": 2476720, + "normalized_name": "metastrike" + }, + { + "appid": 2476730, + "normalized_name": "myriad mayhem" + }, + { + "appid": 2476760, + "normalized_name": "eye on the world" + }, + { + "appid": 2476780, + "normalized_name": "edge road" + }, + { + "appid": 2476820, + "normalized_name": "last survivors" + }, + { + "appid": 2476840, + "normalized_name": "浮游" + }, + { + "appid": 2476850, + "normalized_name": "pantheon card game of hentai part 1" + }, + { + "appid": 2476860, + "normalized_name": "alice in dinerland" + }, + { + "appid": 2476960, + "normalized_name": "death slayer" + }, + { + "appid": 2476990, + "normalized_name": "bike stunt 3d freestyle" + }, + { + "appid": 2477000, + "normalized_name": "next station zombies" + }, + { + "appid": 2477010, + "normalized_name": "ticket to ride" + }, + { + "appid": 2477020, + "normalized_name": "pin crasher" + }, + { + "appid": 2477030, + "normalized_name": "trippy's disc golf" + }, + { + "appid": 2477070, + "normalized_name": "garbage truck driving simulator" + }, + { + "appid": 2477090, + "normalized_name": "mosa lina" + }, + { + "appid": 2477100, + "normalized_name": "zombiolence" + }, + { + "appid": 2477110, + "normalized_name": "to last" + }, + { + "appid": 2477130, + "normalized_name": "märchen kanna" + }, + { + "appid": 2477140, + "normalized_name": "twilight town a cyberpunk fps" + }, + { + "appid": 2477160, + "normalized_name": "over islands" + }, + { + "appid": 2477170, + "normalized_name": "仙途" + }, + { + "appid": 2477200, + "normalized_name": "zombie arena survival" + }, + { + "appid": 2477230, + "normalized_name": "timemelters friend pass" + }, + { + "appid": 2477250, + "normalized_name": "canopy" + }, + { + "appid": 2477270, + "normalized_name": "lust's cupid" + }, + { + "appid": 2477280, + "normalized_name": "supermarket bash" + }, + { + "appid": 2477300, + "normalized_name": "float champions" + }, + { + "appid": 2477340, + "normalized_name": "expeditions a mudrunner game" + }, + { + "appid": 2477350, + "normalized_name": "a normal home i̇n ohio" + }, + { + "appid": 2477380, + "normalized_name": "immoral shadows" + }, + { + "appid": 2477390, + "normalized_name": "desert dungeons" + }, + { + "appid": 2477420, + "normalized_name": "hermetica" + }, + { + "appid": 2477470, + "normalized_name": "the chronos event" + }, + { + "appid": 2477480, + "normalized_name": "bloody hills" + }, + { + "appid": 2477490, + "normalized_name": "it happened here streaming lives" + }, + { + "appid": 2477540, + "normalized_name": "the lost myth" + }, + { + "appid": 2477590, + "normalized_name": "an evening of wonders" + }, + { + "appid": 2477600, + "normalized_name": "offscreen" + }, + { + "appid": 2477630, + "normalized_name": "fandominion" + }, + { + "appid": 2477650, + "normalized_name": "write warz" + }, + { + "appid": 2477690, + "normalized_name": "shove" + }, + { + "appid": 2477710, + "normalized_name": "nimbit frontier" + }, + { + "appid": 2477740, + "normalized_name": "basics in intermediate filmmaking" + }, + { + "appid": 2477750, + "normalized_name": "dunderbeck" + }, + { + "appid": 2477770, + "normalized_name": "summer party time" + }, + { + "appid": 2477780, + "normalized_name": "roguenarok" + }, + { + "appid": 2477790, + "normalized_name": "max's tales" + }, + { + "appid": 2477870, + "normalized_name": "monster war 3d" + }, + { + "appid": 2477900, + "normalized_name": "我的仙途" + }, + { + "appid": 2477920, + "normalized_name": "hatsune miku the planet of wonder and fragments of wishes" + }, + { + "appid": 2477930, + "normalized_name": "geotra" + }, + { + "appid": 2477950, + "normalized_name": "文字密室逃脱" + }, + { + "appid": 2478020, + "normalized_name": "ray’z arcade chronology" + }, + { + "appid": 2478040, + "normalized_name": "slugs and bugs conversion" + }, + { + "appid": 2478060, + "normalized_name": "keltika" + }, + { + "appid": 2478120, + "normalized_name": "nekograms" + }, + { + "appid": 2478130, + "normalized_name": "project survival #working title" + }, + { + "appid": 2478140, + "normalized_name": "twisted lovestruck otome" + }, + { + "appid": 2478160, + "normalized_name": "shan hai express" + }, + { + "appid": 2478190, + "normalized_name": "lichbound" + }, + { + "appid": 2478240, + "normalized_name": "bright side riddles and puzzles" + }, + { + "appid": 2478260, + "normalized_name": "contraptions 3" + }, + { + "appid": 2478270, + "normalized_name": "bongus bright eye & the great axe stravaganza" + }, + { + "appid": 2478290, + "normalized_name": "pepper blast" + }, + { + "appid": 2478310, + "normalized_name": "dere. some answers before i..." + }, + { + "appid": 2478330, + "normalized_name": "barbie project friendship" + }, + { + "appid": 2478340, + "normalized_name": "sokoban 3d" + }, + { + "appid": 2478420, + "normalized_name": "dualis" + }, + { + "appid": 2478430, + "normalized_name": "jetpack kiwi" + }, + { + "appid": 2478450, + "normalized_name": "moen" + }, + { + "appid": 2478470, + "normalized_name": "末日" + }, + { + "appid": 2478500, + "normalized_name": "city car parking simulator" + }, + { + "appid": 2478540, + "normalized_name": "miskatonic university" + }, + { + "appid": 2478560, + "normalized_name": "ropebot" + }, + { + "appid": 2478580, + "normalized_name": "絶体絶命少女 虚空の方程式" + }, + { + "appid": 2478600, + "normalized_name": "bloodmoon" + }, + { + "appid": 2478640, + "normalized_name": "spider fox" + }, + { + "appid": 2478680, + "normalized_name": "invincible big cat" + }, + { + "appid": 2478690, + "normalized_name": "etheral" + }, + { + "appid": 2478710, + "normalized_name": "football tactics & glory world" + }, + { + "appid": 2478730, + "normalized_name": "it's a gluttonous life" + }, + { + "appid": 2478750, + "normalized_name": "demon hunter" + }, + { + "appid": 2478810, + "normalized_name": "strangers on paper" + }, + { + "appid": 2478820, + "normalized_name": "area 37" + }, + { + "appid": 2478840, + "normalized_name": "demon's blood" + }, + { + "appid": 2478850, + "normalized_name": "murder is game over deal killer" + }, + { + "appid": 2478860, + "normalized_name": "hatone" + }, + { + "appid": 2478870, + "normalized_name": "worlds align beginning collector's" + }, + { + "appid": 2478890, + "normalized_name": "fire all weapons" + }, + { + "appid": 2478900, + "normalized_name": "hislittlecuzin's airsoft pew pew" + }, + { + "appid": 2478910, + "normalized_name": "over & under" + }, + { + "appid": 2478940, + "normalized_name": "boots and daggers" + }, + { + "appid": 2478960, + "normalized_name": "eternal sacrifice" + }, + { + "appid": 2478970, + "normalized_name": "tomb raider i iii starring lara croft" + }, + { + "appid": 2479010, + "normalized_name": "the coming end fresh force frustrations (a gay superhero visual novel)" + }, + { + "appid": 2479020, + "normalized_name": "penni's adventure" + }, + { + "appid": 2479030, + "normalized_name": "goliath depot" + }, + { + "appid": 2479070, + "normalized_name": "shadows of revenge" + }, + { + "appid": 2479090, + "normalized_name": "prelude dark pain" + }, + { + "appid": 2479120, + "normalized_name": "zoned" + }, + { + "appid": 2479140, + "normalized_name": "turtlequest" + }, + { + "appid": 2479150, + "normalized_name": "unhuman nightmare" + }, + { + "appid": 2479160, + "normalized_name": "the math problem killer" + }, + { + "appid": 2479170, + "normalized_name": "tonight i die in my sleep" + }, + { + "appid": 2479190, + "normalized_name": "colorspace" + }, + { + "appid": 2479210, + "normalized_name": "swarmsign" + }, + { + "appid": 2479220, + "normalized_name": "the knight's path" + }, + { + "appid": 2479230, + "normalized_name": "planet x3 (dos)" + }, + { + "appid": 2479240, + "normalized_name": "grabby lust ghost" + }, + { + "appid": 2479290, + "normalized_name": "computer repair shop" + }, + { + "appid": 2479300, + "normalized_name": "a promise best left unkept aya" + }, + { + "appid": 2479320, + "normalized_name": "pesticide not required" + }, + { + "appid": 2479340, + "normalized_name": "boxing simulator" + }, + { + "appid": 2479370, + "normalized_name": "forgotten waters" + }, + { + "appid": 2479420, + "normalized_name": "lift the last days of the westwind" + }, + { + "appid": 2479440, + "normalized_name": "beast blasters" + }, + { + "appid": 2479490, + "normalized_name": "unraveling angel" + }, + { + "appid": 2479500, + "normalized_name": "hyperons" + }, + { + "appid": 2479510, + "normalized_name": "neon little soul" + }, + { + "appid": 2479520, + "normalized_name": "hypurrx" + }, + { + "appid": 2479530, + "normalized_name": "crystal math" + }, + { + "appid": 2479560, + "normalized_name": "top out" + }, + { + "appid": 2479580, + "normalized_name": "prop game" + }, + { + "appid": 2479610, + "normalized_name": "take the king!" + }, + { + "appid": 2479620, + "normalized_name": "恶魔契约者 demon contract warrior" + }, + { + "appid": 2479630, + "normalized_name": "my lord is hiring" + }, + { + "appid": 2479640, + "normalized_name": "破晓幸存者 daybreakers" + }, + { + "appid": 2479660, + "normalized_name": "glorp" + }, + { + "appid": 2479670, + "normalized_name": "街机休闲捕鱼 classic arcade fishing" + }, + { + "appid": 2479720, + "normalized_name": "斗牌魂" + }, + { + "appid": 2479740, + "normalized_name": "pieces of me" + }, + { + "appid": 2479770, + "normalized_name": "troublemaker 2 beyond dream" + }, + { + "appid": 2479780, + "normalized_name": "warlocks deeds" + }, + { + "appid": 2479810, + "normalized_name": "gray zone warfare" + }, + { + "appid": 2479820, + "normalized_name": "零度撤离 zero degrees" + }, + { + "appid": 2479830, + "normalized_name": "the braves" + }, + { + "appid": 2479840, + "normalized_name": "pawn planet" + }, + { + "appid": 2479890, + "normalized_name": "friends 0 the last stand" + }, + { + "appid": 2479920, + "normalized_name": "異体の館 chimera's mansion" + }, + { + "appid": 2479930, + "normalized_name": "police car suv simulator" + }, + { + "appid": 2479950, + "normalized_name": "cosmo cheats at poker" + }, + { + "appid": 2479960, + "normalized_name": "animal planner" + }, + { + "appid": 2479970, + "normalized_name": "par for the dungeon" + }, + { + "appid": 2479990, + "normalized_name": "autofading_se disparaître" + }, + { + "appid": 2480000, + "normalized_name": "nightshift survival" + }, + { + "appid": 2480010, + "normalized_name": "sugar mess let's play jolly battle" + }, + { + "appid": 2480020, + "normalized_name": "dungeon crawl tower run" + }, + { + "appid": 2480090, + "normalized_name": "san xing dui(三星堆)" + }, + { + "appid": 2480100, + "normalized_name": "世界岛 · 宅急送" + }, + { + "appid": 2480170, + "normalized_name": "rise of block" + }, + { + "appid": 2480180, + "normalized_name": "shivering stone" + }, + { + "appid": 2480200, + "normalized_name": "sex of thrones 👑" + }, + { + "appid": 2480210, + "normalized_name": "ewe shall not pass" + }, + { + "appid": 2480250, + "normalized_name": "varista" + }, + { + "appid": 2480260, + "normalized_name": "aexia" + }, + { + "appid": 2480290, + "normalized_name": "just the two of us" + }, + { + "appid": 2480410, + "normalized_name": "bankwave neon networth" + }, + { + "appid": 2480480, + "normalized_name": "tomorrow will be dying" + }, + { + "appid": 2480560, + "normalized_name": "geneforge 2 infestation" + }, + { + "appid": 2480590, + "normalized_name": "dungeon heroes" + }, + { + "appid": 2480650, + "normalized_name": "肝試しゴルフ[kimodameshigolf]" + }, + { + "appid": 2480660, + "normalized_name": "missing kitty" + }, + { + "appid": 2480710, + "normalized_name": "death ration back to 19xx" + }, + { + "appid": 2480720, + "normalized_name": "10minutes" + }, + { + "appid": 2480740, + "normalized_name": "mushy score" + }, + { + "appid": 2480780, + "normalized_name": "my lovely pets 2 collector's" + }, + { + "appid": 2480800, + "normalized_name": "donut land clicker" + }, + { + "appid": 2480820, + "normalized_name": "avalog" + }, + { + "appid": 2480830, + "normalized_name": "voronica goes to town a vore adventure" + }, + { + "appid": 2480840, + "normalized_name": "wesley smith's repair game" + }, + { + "appid": 2480850, + "normalized_name": "the pit arcade" + }, + { + "appid": 2480910, + "normalized_name": "adventure in wachirawit world" + }, + { + "appid": 2480930, + "normalized_name": "the experiment" + }, + { + "appid": 2480950, + "normalized_name": "amusement park simulator" + }, + { + "appid": 2480970, + "normalized_name": "mandew vs the forever rain+" + }, + { + "appid": 2480980, + "normalized_name": "fur and fists" + }, + { + "appid": 2481020, + "normalized_name": "vampire therapist" + }, + { + "appid": 2481120, + "normalized_name": "murder generation cream city chaos" + }, + { + "appid": 2481160, + "normalized_name": "the hungry town" + }, + { + "appid": 2481170, + "normalized_name": "planet x2 (c64)" + }, + { + "appid": 2481190, + "normalized_name": "kamigami spirits of the nature" + }, + { + "appid": 2481220, + "normalized_name": "automate defend repeat" + }, + { + "appid": 2481230, + "normalized_name": "malkin" + }, + { + "appid": 2481260, + "normalized_name": "仙豆奇缘 magicbeans" + }, + { + "appid": 2481270, + "normalized_name": "sufficiency" + }, + { + "appid": 2481310, + "normalized_name": "辩游记" + }, + { + "appid": 2481340, + "normalized_name": "quantum rail" + }, + { + "appid": 2481380, + "normalized_name": "phantom wardrobe" + }, + { + "appid": 2481400, + "normalized_name": "炸鸡块与天使" + }, + { + "appid": 2481440, + "normalized_name": "pick a pocket" + }, + { + "appid": 2481470, + "normalized_name": "symbol of sacrifice" + }, + { + "appid": 2481520, + "normalized_name": "glowstrike robot obliteration" + }, + { + "appid": 2481560, + "normalized_name": "stress out!" + }, + { + "appid": 2481570, + "normalized_name": "waifu club ayame" + }, + { + "appid": 2481610, + "normalized_name": "枪神细胞 gunnery cell" + }, + { + "appid": 2481630, + "normalized_name": "my trailer park life" + }, + { + "appid": 2481640, + "normalized_name": "mage and monsters ii" + }, + { + "appid": 2481660, + "normalized_name": "take the earth" + }, + { + "appid": 2481670, + "normalized_name": "dino path trail" + }, + { + "appid": 2481710, + "normalized_name": "rethink | lite" + }, + { + "appid": 2481780, + "normalized_name": "no numbers" + }, + { + "appid": 2481790, + "normalized_name": "sex simulator beach resort" + }, + { + "appid": 2481820, + "normalized_name": "trade city" + }, + { + "appid": 2481850, + "normalized_name": "hidden village top down 3d" + }, + { + "appid": 2481870, + "normalized_name": "sex story ruby and hunter episode 3" + }, + { + "appid": 2481890, + "normalized_name": "real drift multiplayer" + }, + { + "appid": 2481920, + "normalized_name": "lifeforms binary fission" + }, + { + "appid": 2481930, + "normalized_name": "scamper" + }, + { + "appid": 2481960, + "normalized_name": "russpuppy kid books" + }, + { + "appid": 2481970, + "normalized_name": "sunny side down by muno!" + }, + { + "appid": 2481980, + "normalized_name": "untamed kingdom" + }, + { + "appid": 2481990, + "normalized_name": "garganta" + }, + { + "appid": 2482000, + "normalized_name": "purrfect tale" + }, + { + "appid": 2482010, + "normalized_name": "waspkeeper" + }, + { + "appid": 2482020, + "normalized_name": "shadow rasa" + }, + { + "appid": 2482030, + "normalized_name": "aikagura" + }, + { + "appid": 2482110, + "normalized_name": "rogue mech" + }, + { + "appid": 2482130, + "normalized_name": "final resistance" + }, + { + "appid": 2482140, + "normalized_name": "escape from exile" + }, + { + "appid": 2482150, + "normalized_name": "tensei" + }, + { + "appid": 2482180, + "normalized_name": "as i began to dream" + }, + { + "appid": 2482190, + "normalized_name": "power fantasy" + }, + { + "appid": 2482200, + "normalized_name": "emergency call 112 the attack squad" + }, + { + "appid": 2482210, + "normalized_name": "eldritch town" + }, + { + "appid": 2482270, + "normalized_name": "stilt" + }, + { + "appid": 2482340, + "normalized_name": "an engineer and the great machine" + }, + { + "appid": 2482360, + "normalized_name": "eukarion tales origins" + }, + { + "appid": 2482420, + "normalized_name": "云游道士" + }, + { + "appid": 2482430, + "normalized_name": "rivencrest" + }, + { + "appid": 2482440, + "normalized_name": "leap up no justu double" + }, + { + "appid": 2482490, + "normalized_name": "digital city" + }, + { + "appid": 2482550, + "normalized_name": "for enigma" + }, + { + "appid": 2482560, + "normalized_name": "lefka 空垣" + }, + { + "appid": 2482630, + "normalized_name": "quickclaw" + }, + { + "appid": 2482640, + "normalized_name": "descensus" + }, + { + "appid": 2482650, + "normalized_name": "inn the dark" + }, + { + "appid": 2482660, + "normalized_name": "horror gallery" + }, + { + "appid": 2482670, + "normalized_name": "my lovely dog adventure" + }, + { + "appid": 2482690, + "normalized_name": "bullezine" + }, + { + "appid": 2482760, + "normalized_name": "hunting simulator 3" + }, + { + "appid": 2482780, + "normalized_name": "gun shop simulator" + }, + { + "appid": 2482810, + "normalized_name": "beer n pee dreams vr" + }, + { + "appid": 2482820, + "normalized_name": "sokochess black" + }, + { + "appid": 2482840, + "normalized_name": "sky harvest" + }, + { + "appid": 2482850, + "normalized_name": "polaris" + }, + { + "appid": 2482870, + "normalized_name": "roy rattler" + }, + { + "appid": 2482900, + "normalized_name": "witch hunter izana" + }, + { + "appid": 2482920, + "normalized_name": "flower in us" + }, + { + "appid": 2482950, + "normalized_name": "夕照原" + }, + { + "appid": 2482970, + "normalized_name": "packet.breach()" + }, + { + "appid": 2482980, + "normalized_name": "just in crime" + }, + { + "appid": 2483030, + "normalized_name": "whale fall" + }, + { + "appid": 2483050, + "normalized_name": "project city" + }, + { + "appid": 2483070, + "normalized_name": "wtf platformer" + }, + { + "appid": 2483100, + "normalized_name": "the mind's decay" + }, + { + "appid": 2483130, + "normalized_name": "cube kingdoms" + }, + { + "appid": 2483140, + "normalized_name": "containcorp" + }, + { + "appid": 2483150, + "normalized_name": "8 colors star guardians +" + }, + { + "appid": 2483200, + "normalized_name": "protobots" + }, + { + "appid": 2483220, + "normalized_name": "living dolls rebirth alpha" + }, + { + "appid": 2483230, + "normalized_name": "maanu academic version" + }, + { + "appid": 2483240, + "normalized_name": "molt" + }, + { + "appid": 2483250, + "normalized_name": "where the music dies" + }, + { + "appid": 2483270, + "normalized_name": "bubbits" + }, + { + "appid": 2483290, + "normalized_name": "hentai bella" + }, + { + "appid": 2483300, + "normalized_name": "a nest for us" + }, + { + "appid": 2483350, + "normalized_name": "regenesis ultimatum" + }, + { + "appid": 2483370, + "normalized_name": "fightbots" + }, + { + "appid": 2483380, + "normalized_name": "six nights to die" + }, + { + "appid": 2483400, + "normalized_name": "the deadlands" + }, + { + "appid": 2483420, + "normalized_name": "the book of death for dummies" + }, + { + "appid": 2483430, + "normalized_name": "screen king" + }, + { + "appid": 2483440, + "normalized_name": "shroomtopia" + }, + { + "appid": 2483450, + "normalized_name": "cloak hero" + }, + { + "appid": 2483470, + "normalized_name": "cracked" + }, + { + "appid": 2483480, + "normalized_name": "walk the times" + }, + { + "appid": 2483520, + "normalized_name": "寻物少女 quest girl" + }, + { + "appid": 2483540, + "normalized_name": "omen(one man's eternal night)" + }, + { + "appid": 2483570, + "normalized_name": "castillon" + }, + { + "appid": 2483620, + "normalized_name": "vr action game kit" + }, + { + "appid": 2483630, + "normalized_name": "god of stickfights" + }, + { + "appid": 2483660, + "normalized_name": "a story in bronze ware" + }, + { + "appid": 2483680, + "normalized_name": "pretty girls klondike solitaire plus" + }, + { + "appid": 2483700, + "normalized_name": "harma" + }, + { + "appid": 2483730, + "normalized_name": "banner of conquest" + }, + { + "appid": 2483760, + "normalized_name": "scroll" + }, + { + "appid": 2483770, + "normalized_name": "the customer is always right!" + }, + { + "appid": 2483850, + "normalized_name": "lord goblin" + }, + { + "appid": 2483880, + "normalized_name": "龙之塔" + }, + { + "appid": 2483920, + "normalized_name": "2x4 nails" + }, + { + "appid": 2483930, + "normalized_name": "white flame inna daughter of the void" + }, + { + "appid": 2483950, + "normalized_name": "under pressure" + }, + { + "appid": 2483960, + "normalized_name": "carachnophobia" + }, + { + "appid": 2483970, + "normalized_name": "honeymoon mystery journey" + }, + { + "appid": 2484010, + "normalized_name": "the cosmic tramp" + }, + { + "appid": 2484020, + "normalized_name": "メンヘラオタ姫サークル needy princess nerd club" + }, + { + "appid": 2484030, + "normalized_name": "年上お姉さんの恋愛トレーニング ~elder sister's love training~" + }, + { + "appid": 2484060, + "normalized_name": "i toaster" + }, + { + "appid": 2484100, + "normalized_name": "последнее желание" + }, + { + "appid": 2484110, + "normalized_name": "final fantasy vii ever crisis" + }, + { + "appid": 2484120, + "normalized_name": "cthulhu tower" + }, + { + "appid": 2484130, + "normalized_name": "fruitbus" + }, + { + "appid": 2484140, + "normalized_name": "wicked brawler" + }, + { + "appid": 2484160, + "normalized_name": "it was a human." + }, + { + "appid": 2484170, + "normalized_name": "carnal contract" + }, + { + "appid": 2484180, + "normalized_name": "deadshot" + }, + { + "appid": 2484220, + "normalized_name": "conundrum 929" + }, + { + "appid": 2484230, + "normalized_name": "captain goose" + }, + { + "appid": 2484240, + "normalized_name": "phantom peak" + }, + { + "appid": 2484250, + "normalized_name": "astra knights of veda" + }, + { + "appid": 2484270, + "normalized_name": "shred the undead" + }, + { + "appid": 2484280, + "normalized_name": "kingdoms rise and fall" + }, + { + "appid": 2484330, + "normalized_name": "hannah & henry" + }, + { + "appid": 2484340, + "normalized_name": "jolly putt mini golf & arcade" + }, + { + "appid": 2484350, + "normalized_name": "cubicle farter" + }, + { + "appid": 2484360, + "normalized_name": "please forgive me" + }, + { + "appid": 2484370, + "normalized_name": "package runner" + }, + { + "appid": 2484410, + "normalized_name": "glass" + }, + { + "appid": 2484420, + "normalized_name": "fat rat pinball" + }, + { + "appid": 2484430, + "normalized_name": "undomestic" + }, + { + "appid": 2484460, + "normalized_name": "rusty robot wants to cry" + }, + { + "appid": 2484500, + "normalized_name": "ontotis" + }, + { + "appid": 2484510, + "normalized_name": "steam panic" + }, + { + "appid": 2484520, + "normalized_name": "heart of iona" + }, + { + "appid": 2484540, + "normalized_name": "save my sister" + }, + { + "appid": 2484570, + "normalized_name": "kid pilot vr" + }, + { + "appid": 2484580, + "normalized_name": "mushroom musume" + }, + { + "appid": 2484610, + "normalized_name": "pan's survivor chess" + }, + { + "appid": 2484660, + "normalized_name": "hot noon" + }, + { + "appid": 2484670, + "normalized_name": "chess remix chess variants" + }, + { + "appid": 2484700, + "normalized_name": "tales of aravorn reign of war" + }, + { + "appid": 2484780, + "normalized_name": "oblivistar" + }, + { + "appid": 2484790, + "normalized_name": "bambie" + }, + { + "appid": 2484810, + "normalized_name": "chronique" + }, + { + "appid": 2484830, + "normalized_name": "protocole hedera" + }, + { + "appid": 2484860, + "normalized_name": "bloodsong" + }, + { + "appid": 2484880, + "normalized_name": "alfredo's sneaky meal" + }, + { + "appid": 2484890, + "normalized_name": "deeper still" + }, + { + "appid": 2484960, + "normalized_name": "1v1 deathmatch" + }, + { + "appid": 2484970, + "normalized_name": "nightmare labyrinth" + }, + { + "appid": 2484980, + "normalized_name": "game design at wvu arcade" + }, + { + "appid": 2485000, + "normalized_name": "darksword battle eternity" + }, + { + "appid": 2485060, + "normalized_name": "w.o.l.f" + }, + { + "appid": 2485070, + "normalized_name": "magical girl dash" + }, + { + "appid": 2485080, + "normalized_name": "death elevator" + }, + { + "appid": 2485090, + "normalized_name": "charles the bee" + }, + { + "appid": 2485120, + "normalized_name": "dream of a square" + }, + { + "appid": 2485130, + "normalized_name": "凌晨四点的医院" + }, + { + "appid": 2485150, + "normalized_name": "rat it plague hunter" + }, + { + "appid": 2485170, + "normalized_name": "凶星:歼灭 (vicious star kill all)" + }, + { + "appid": 2485180, + "normalized_name": "cats hidden in georgia" + }, + { + "appid": 2485270, + "normalized_name": "midnight paradise" + }, + { + "appid": 2485330, + "normalized_name": "powercharge" + }, + { + "appid": 2485340, + "normalized_name": "cannon fotter" + }, + { + "appid": 2485350, + "normalized_name": "river towns" + }, + { + "appid": 2485410, + "normalized_name": "slowly sliding ducks" + }, + { + "appid": 2485430, + "normalized_name": "bullets & brains" + }, + { + "appid": 2485460, + "normalized_name": "state of survival" + }, + { + "appid": 2485470, + "normalized_name": "poly jigsaw furries" + }, + { + "appid": 2485530, + "normalized_name": "astra intra" + }, + { + "appid": 2485540, + "normalized_name": "never ending nightmare" + }, + { + "appid": 2485560, + "normalized_name": "wedge lock scaffolding vr training" + }, + { + "appid": 2485590, + "normalized_name": "mecha nun chuck redeemer" + }, + { + "appid": 2485610, + "normalized_name": "santa’s letters vr" + }, + { + "appid": 2485620, + "normalized_name": "astrality" + }, + { + "appid": 2485650, + "normalized_name": "jump mechanic" + }, + { + "appid": 2485660, + "normalized_name": "ladderway" + }, + { + "appid": 2485750, + "normalized_name": "midnight scenes a safe place" + }, + { + "appid": 2485820, + "normalized_name": "hexiv" + }, + { + "appid": 2485860, + "normalized_name": "wanderer broken bed" + }, + { + "appid": 2485870, + "normalized_name": "lust hostel" + }, + { + "appid": 2485890, + "normalized_name": "conspyration" + }, + { + "appid": 2485900, + "normalized_name": "undead wilderness survival" + }, + { + "appid": 2485910, + "normalized_name": "sol" + }, + { + "appid": 2485950, + "normalized_name": "horror engine tech demo" + }, + { + "appid": 2485980, + "normalized_name": "hakan's war manager" + }, + { + "appid": 2486000, + "normalized_name": "the adventures of panzer 2" + }, + { + "appid": 2486020, + "normalized_name": "late night delivery the bewitched collection" + }, + { + "appid": 2486030, + "normalized_name": "pandemommyum! hot single moms in my area" + }, + { + "appid": 2486040, + "normalized_name": "wrenched" + }, + { + "appid": 2486110, + "normalized_name": "invisible x" + }, + { + "appid": 2486140, + "normalized_name": "dōbumon" + }, + { + "appid": 2486160, + "normalized_name": "lobo" + }, + { + "appid": 2486180, + "normalized_name": "scp 479 shadows of the mind" + }, + { + "appid": 2486240, + "normalized_name": "seekers enlightenment" + }, + { + "appid": 2486280, + "normalized_name": "quinn & flynn" + }, + { + "appid": 2486310, + "normalized_name": "knights of fresco" + }, + { + "appid": 2486340, + "normalized_name": "blade of tsunami" + }, + { + "appid": 2486360, + "normalized_name": "squeeks trickshot festival" + }, + { + "appid": 2486370, + "normalized_name": "bare knuckle sandwich" + }, + { + "appid": 2486390, + "normalized_name": "shroom keeper" + }, + { + "appid": 2486400, + "normalized_name": "lil johnny goes home" + }, + { + "appid": 2486430, + "normalized_name": "bilattice" + }, + { + "appid": 2486510, + "normalized_name": "rinbo" + }, + { + "appid": 2486520, + "normalized_name": "paint desk simulator" + }, + { + "appid": 2486530, + "normalized_name": "save my human" + }, + { + "appid": 2486540, + "normalized_name": "剑客暗夜王" + }, + { + "appid": 2486560, + "normalized_name": "february of cards" + }, + { + "appid": 2486570, + "normalized_name": "scram!" + }, + { + "appid": 2486590, + "normalized_name": "bondage play" + }, + { + "appid": 2486620, + "normalized_name": "uptown outbreak" + }, + { + "appid": 2486670, + "normalized_name": "td tower defense" + }, + { + "appid": 2486700, + "normalized_name": "travelin' across europe" + }, + { + "appid": 2486730, + "normalized_name": "art is rifle" + }, + { + "appid": 2486740, + "normalized_name": "sledders" + }, + { + "appid": 2486750, + "normalized_name": "beecarbonize" + }, + { + "appid": 2486760, + "normalized_name": "crocogame" + }, + { + "appid": 2486810, + "normalized_name": "team rise" + }, + { + "appid": 2486820, + "normalized_name": "sonic racing crossworlds" + }, + { + "appid": 2486880, + "normalized_name": "sex in the sky" + }, + { + "appid": 2486910, + "normalized_name": "cosmic holes junior" + }, + { + "appid": 2486930, + "normalized_name": "dark riddle" + }, + { + "appid": 2486970, + "normalized_name": "bellus battle" + }, + { + "appid": 2487000, + "normalized_name": "yubu the shoeventure" + }, + { + "appid": 2487060, + "normalized_name": "anonymous hacker simulator" + }, + { + "appid": 2487070, + "normalized_name": "anonymous hacker simulator prologue" + }, + { + "appid": 2487110, + "normalized_name": "alchemy deck" + }, + { + "appid": 2487120, + "normalized_name": "fetish room 18+" + }, + { + "appid": 2487130, + "normalized_name": "sex city 2069" + }, + { + "appid": 2487140, + "normalized_name": "exorcist simulator" + }, + { + "appid": 2487150, + "normalized_name": "deconstruction simulator" + }, + { + "appid": 2487160, + "normalized_name": "unsolved case the scarlet hyacinth collector's" + }, + { + "appid": 2487190, + "normalized_name": "main sequence" + }, + { + "appid": 2487200, + "normalized_name": "chaotic era" + }, + { + "appid": 2487270, + "normalized_name": "slide ball master" + }, + { + "appid": 2487340, + "normalized_name": "momibosu" + }, + { + "appid": 2487350, + "normalized_name": "alex jones nwo wars" + }, + { + "appid": 2487370, + "normalized_name": "the unwanted war" + }, + { + "appid": 2487390, + "normalized_name": "for the ghosts" + }, + { + "appid": 2487420, + "normalized_name": "you will not survive" + }, + { + "appid": 2487490, + "normalized_name": "sakura succubus 8" + }, + { + "appid": 2487560, + "normalized_name": "hentai uni 2" + }, + { + "appid": 2487590, + "normalized_name": "rhythmmmo" + }, + { + "appid": 2487620, + "normalized_name": "unreachable" + }, + { + "appid": 2487640, + "normalized_name": "a not troll game" + }, + { + "appid": 2487650, + "normalized_name": "ellan the lost soul" + }, + { + "appid": 2487680, + "normalized_name": "burger kombat" + }, + { + "appid": 2487710, + "normalized_name": "eonia revelations" + }, + { + "appid": 2487730, + "normalized_name": "medimon" + }, + { + "appid": 2487740, + "normalized_name": "fabled frontier" + }, + { + "appid": 2487850, + "normalized_name": "unstable scientific" + }, + { + "appid": 2487870, + "normalized_name": "escape shadow storm" + }, + { + "appid": 2487880, + "normalized_name": "滩涂地—在魅魔统治的世界追求男♂魂!" + }, + { + "appid": 2487930, + "normalized_name": "unearth" + }, + { + "appid": 2487940, + "normalized_name": "homebound haerold" + }, + { + "appid": 2487950, + "normalized_name": "mecha kucha gacha defence" + }, + { + "appid": 2487970, + "normalized_name": "him" + }, + { + "appid": 2488050, + "normalized_name": "the winning secret of the newbie strategist princess" + }, + { + "appid": 2488060, + "normalized_name": "the great hunt" + }, + { + "appid": 2488090, + "normalized_name": "moving down" + }, + { + "appid": 2488100, + "normalized_name": "m.s. salmon" + }, + { + "appid": 2488120, + "normalized_name": "folktale misfits" + }, + { + "appid": 2488180, + "normalized_name": "ninja" + }, + { + "appid": 2488190, + "normalized_name": "梅洛可奇遇" + }, + { + "appid": 2488200, + "normalized_name": "cave of evil" + }, + { + "appid": 2488240, + "normalized_name": "light city district" + }, + { + "appid": 2488250, + "normalized_name": "ploko" + }, + { + "appid": 2488290, + "normalized_name": "rushing beat x return of brawl brothers" + }, + { + "appid": 2488300, + "normalized_name": "assault suit leynos 2 saturn tribute" + }, + { + "appid": 2488340, + "normalized_name": "dream town island" + }, + { + "appid": 2488360, + "normalized_name": "super tank attack" + }, + { + "appid": 2488370, + "normalized_name": "cash cleaner simulator" + }, + { + "appid": 2488390, + "normalized_name": "l'angolo di farenz avventure vampiresche" + }, + { + "appid": 2488410, + "normalized_name": "tarantula virus" + }, + { + "appid": 2488420, + "normalized_name": "spellslayer" + }, + { + "appid": 2488430, + "normalized_name": "nuclear gladiators 3000" + }, + { + "appid": 2488450, + "normalized_name": "boreas" + }, + { + "appid": 2488470, + "normalized_name": "politon" + }, + { + "appid": 2488480, + "normalized_name": "prostitute simulator 2" + }, + { + "appid": 2488490, + "normalized_name": "quicksand" + }, + { + "appid": 2488500, + "normalized_name": "katuba's poacher" + }, + { + "appid": 2488510, + "normalized_name": "fatalzone" + }, + { + "appid": 2488540, + "normalized_name": "crimson capes" + }, + { + "appid": 2488570, + "normalized_name": "grotesque insight" + }, + { + "appid": 2488590, + "normalized_name": "dungeons of blood and dream" + }, + { + "appid": 2488620, + "normalized_name": "f1 24" + }, + { + "appid": 2488630, + "normalized_name": "mannequin" + }, + { + "appid": 2488640, + "normalized_name": "multiplayer mercs" + }, + { + "appid": 2488650, + "normalized_name": "fungal colony simulator" + }, + { + "appid": 2488690, + "normalized_name": "desktop beach girls" + }, + { + "appid": 2488760, + "normalized_name": "crimson spirit" + }, + { + "appid": 2488770, + "normalized_name": "the boy and the cathedral" + }, + { + "appid": 2488780, + "normalized_name": "bionic momentum" + }, + { + "appid": 2488790, + "normalized_name": "café manager" + }, + { + "appid": 2488830, + "normalized_name": "zero medal the galaxy champions" + }, + { + "appid": 2488850, + "normalized_name": "my father lied" + }, + { + "appid": 2488880, + "normalized_name": "tales of mist" + }, + { + "appid": 2488890, + "normalized_name": "the telephone" + }, + { + "appid": 2488900, + "normalized_name": "aquatia" + }, + { + "appid": 2488930, + "normalized_name": "gosickrogue" + }, + { + "appid": 2488940, + "normalized_name": "afterlife gladiator" + }, + { + "appid": 2489000, + "normalized_name": "rager" + }, + { + "appid": 2489010, + "normalized_name": "geometry survivor" + }, + { + "appid": 2489040, + "normalized_name": "murmallmaus" + }, + { + "appid": 2489090, + "normalized_name": "東南牌ewsn card" + }, + { + "appid": 2489110, + "normalized_name": "sages of kaboom" + }, + { + "appid": 2489160, + "normalized_name": "oceanscramble ageofexploration" + }, + { + "appid": 2489240, + "normalized_name": "with them frontlines" + }, + { + "appid": 2489250, + "normalized_name": "meatgrinder" + }, + { + "appid": 2489270, + "normalized_name": "asteroidc" + }, + { + "appid": 2489300, + "normalized_name": "days end" + }, + { + "appid": 2489310, + "normalized_name": "black journey to the west" + }, + { + "appid": 2489330, + "normalized_name": "whiskerwood" + }, + { + "appid": 2489340, + "normalized_name": "the one who stands behind" + }, + { + "appid": 2489370, + "normalized_name": "internet cafe owner" + }, + { + "appid": 2489440, + "normalized_name": "path of ascension" + }, + { + "appid": 2489450, + "normalized_name": "the road to recovery" + }, + { + "appid": 2489460, + "normalized_name": "cropisle td" + }, + { + "appid": 2489510, + "normalized_name": "jack holmes master of puppets prologue" + }, + { + "appid": 2489520, + "normalized_name": "last emperor" + }, + { + "appid": 2489560, + "normalized_name": "elewar fused survivors" + }, + { + "appid": 2489610, + "normalized_name": "trishu drift" + }, + { + "appid": 2489620, + "normalized_name": "wicked angels" + }, + { + "appid": 2489650, + "normalized_name": "pripri" + }, + { + "appid": 2489660, + "normalized_name": "the way of wine" + }, + { + "appid": 2489670, + "normalized_name": "the witch and the bottle of concepts" + }, + { + "appid": 2489700, + "normalized_name": "navigavia kirka's island" + }, + { + "appid": 2489710, + "normalized_name": "rocket horizon" + }, + { + "appid": 2489720, + "normalized_name": "drakontias" + }, + { + "appid": 2489730, + "normalized_name": "karsus" + }, + { + "appid": 2489760, + "normalized_name": "creature battle simulator" + }, + { + "appid": 2489770, + "normalized_name": "climbing mountain sins" + }, + { + "appid": 2489800, + "normalized_name": "robodash" + }, + { + "appid": 2489810, + "normalized_name": "cryptower" + }, + { + "appid": 2489820, + "normalized_name": "death animal parade" + }, + { + "appid": 2489850, + "normalized_name": "slave lords of the galaxy" + }, + { + "appid": 2489880, + "normalized_name": "guerra sangrenta" + }, + { + "appid": 2489900, + "normalized_name": "venator universe" + }, + { + "appid": 2489930, + "normalized_name": "探花行" + }, + { + "appid": 2489950, + "normalized_name": "tales of wakana" + }, + { + "appid": 2489960, + "normalized_name": "mockingbird" + }, + { + "appid": 2489970, + "normalized_name": "speard" + }, + { + "appid": 2489990, + "normalized_name": "jeepney simulator" + }, + { + "appid": 2490020, + "normalized_name": "さよならナイト・キャップ" + }, + { + "appid": 2490030, + "normalized_name": "escape from castle matsumoto" + }, + { + "appid": 2490040, + "normalized_name": "solar systems for kids" + }, + { + "appid": 2490060, + "normalized_name": "martial arts peerless war" + }, + { + "appid": 2490080, + "normalized_name": "last hopeless" + }, + { + "appid": 2490090, + "normalized_name": "keep killing" + }, + { + "appid": 2490100, + "normalized_name": "soulsland 3 spider invasion" + }, + { + "appid": 2490140, + "normalized_name": "frogflop" + }, + { + "appid": 2490160, + "normalized_name": "necroattack!" + }, + { + "appid": 2490210, + "normalized_name": "blitz runner" + }, + { + "appid": 2490240, + "normalized_name": "logic colors" + }, + { + "appid": 2490270, + "normalized_name": "what the hell" + }, + { + "appid": 2490300, + "normalized_name": "deep nest" + }, + { + "appid": 2490310, + "normalized_name": "runes of aereal" + }, + { + "appid": 2490330, + "normalized_name": "parasite in love" + }, + { + "appid": 2490420, + "normalized_name": "mugen sweeper" + }, + { + "appid": 2490440, + "normalized_name": "caster's trap" + }, + { + "appid": 2490510, + "normalized_name": "hentai beauties" + }, + { + "appid": 2490530, + "normalized_name": "hexawars" + }, + { + "appid": 2490580, + "normalized_name": "cookfriends" + }, + { + "appid": 2490650, + "normalized_name": "market owner simulator" + }, + { + "appid": 2490670, + "normalized_name": "all we need" + }, + { + "appid": 2490680, + "normalized_name": "r00000" + }, + { + "appid": 2490690, + "normalized_name": "jump tracks" + }, + { + "appid": 2490730, + "normalized_name": "explore the backrooms" + }, + { + "appid": 2490750, + "normalized_name": "the dungeon tower" + }, + { + "appid": 2490760, + "normalized_name": "refidenptio" + }, + { + "appid": 2490770, + "normalized_name": "junkybots" + }, + { + "appid": 2490790, + "normalized_name": "joyville" + }, + { + "appid": 2490820, + "normalized_name": "ovine replica" + }, + { + "appid": 2490850, + "normalized_name": "fallen angel hell survival" + }, + { + "appid": 2490890, + "normalized_name": "the light of the darkness origins" + }, + { + "appid": 2490900, + "normalized_name": "blocks and bones" + }, + { + "appid": 2490910, + "normalized_name": "富甲天下5" + }, + { + "appid": 2490930, + "normalized_name": "富甲天下w" + }, + { + "appid": 2490950, + "normalized_name": "嘘からはじまる" + }, + { + "appid": 2490960, + "normalized_name": "驱灵天师" + }, + { + "appid": 2490990, + "normalized_name": "visions of mana" + }, + { + "appid": 2491030, + "normalized_name": "三国:223" + }, + { + "appid": 2491040, + "normalized_name": "higurashi when they cry hou+" + }, + { + "appid": 2491050, + "normalized_name": "像素猎魔人" + }, + { + "appid": 2491070, + "normalized_name": "grandmaster's gambit" + }, + { + "appid": 2491080, + "normalized_name": "kooky kids fort defense" + }, + { + "appid": 2491120, + "normalized_name": "mega snake" + }, + { + "appid": 2491130, + "normalized_name": "split square" + }, + { + "appid": 2491200, + "normalized_name": "東方幻想麻雀 touhou gensou mahjong" + }, + { + "appid": 2491240, + "normalized_name": "となりのおばけ" + }, + { + "appid": 2491250, + "normalized_name": "wanted wizard 2" + }, + { + "appid": 2491260, + "normalized_name": "space cowboys riders of the storm" + }, + { + "appid": 2491300, + "normalized_name": "spire of lust & fetish" + }, + { + "appid": 2491310, + "normalized_name": "webshooters" + }, + { + "appid": 2491320, + "normalized_name": "wildtrax racing" + }, + { + "appid": 2491360, + "normalized_name": "召唤之王 (supreme summoner)" + }, + { + "appid": 2491380, + "normalized_name": "marble magicks" + }, + { + "appid": 2491420, + "normalized_name": "mariposa" + }, + { + "appid": 2491460, + "normalized_name": "mole royal" + }, + { + "appid": 2491500, + "normalized_name": "tales from my ass slice of death" + }, + { + "appid": 2491520, + "normalized_name": "cyber assault" + }, + { + "appid": 2491540, + "normalized_name": "ambush tactics advanced" + }, + { + "appid": 2491620, + "normalized_name": "dimenders" + }, + { + "appid": 2491640, + "normalized_name": "snake farm" + }, + { + "appid": 2491660, + "normalized_name": "scratch man" + }, + { + "appid": 2491670, + "normalized_name": "wanted shadows" + }, + { + "appid": 2491690, + "normalized_name": "shroom & doom" + }, + { + "appid": 2491700, + "normalized_name": "puropu defense squad" + }, + { + "appid": 2491710, + "normalized_name": "asurya's embers" + }, + { + "appid": 2491720, + "normalized_name": "kneedle knight" + }, + { + "appid": 2491770, + "normalized_name": "we need to cook drug empire simulator" + }, + { + "appid": 2491790, + "normalized_name": "high strategy oradros" + }, + { + "appid": 2491810, + "normalized_name": "shadow of mammon" + }, + { + "appid": 2491820, + "normalized_name": "stepan 's life (beta)" + }, + { + "appid": 2491830, + "normalized_name": "zero losses" + }, + { + "appid": 2491860, + "normalized_name": "lepidoptera" + }, + { + "appid": 2491880, + "normalized_name": "simple tower defense" + }, + { + "appid": 2491890, + "normalized_name": "taking root academic version" + }, + { + "appid": 2491950, + "normalized_name": "chained horror experiences" + }, + { + "appid": 2491990, + "normalized_name": "铁罐勇士" + }, + { + "appid": 2492010, + "normalized_name": "cube jump" + }, + { + "appid": 2492020, + "normalized_name": "rundat" + }, + { + "appid": 2492030, + "normalized_name": "rbm studio's gettysburg" + }, + { + "appid": 2492040, + "normalized_name": "fatal fury city of the wolves" + }, + { + "appid": 2492050, + "normalized_name": "尸者之界 realm of the dead" + }, + { + "appid": 2492070, + "normalized_name": "king static" + }, + { + "appid": 2492080, + "normalized_name": "star charms" + }, + { + "appid": 2492110, + "normalized_name": "the dynasty of cats" + }, + { + "appid": 2492120, + "normalized_name": "saeko giantess dating sim" + }, + { + "appid": 2492130, + "normalized_name": "infinity pirate" + }, + { + "appid": 2492240, + "normalized_name": "after sunset" + }, + { + "appid": 2492270, + "normalized_name": "warkestra" + }, + { + "appid": 2492290, + "normalized_name": "uncover the smoking gun" + }, + { + "appid": 2492300, + "normalized_name": "west ride" + }, + { + "appid": 2492310, + "normalized_name": "undercover speed dating (with wolves)" + }, + { + "appid": 2492330, + "normalized_name": "bronana" + }, + { + "appid": 2492340, + "normalized_name": "speed truck racing" + }, + { + "appid": 2492350, + "normalized_name": "痛格斗 生意兴隆 pain fighting" + }, + { + "appid": 2492370, + "normalized_name": "king's son" + }, + { + "appid": 2492390, + "normalized_name": "logiart grimoire" + }, + { + "appid": 2492400, + "normalized_name": "le bonk academic version" + }, + { + "appid": 2492410, + "normalized_name": "bootleg steamer" + }, + { + "appid": 2492420, + "normalized_name": "live cycling manager 2023" + }, + { + "appid": 2492430, + "normalized_name": "火焰征程" + }, + { + "appid": 2492490, + "normalized_name": "quarantine town" + }, + { + "appid": 2492560, + "normalized_name": "labyrinth of rage" + }, + { + "appid": 2492570, + "normalized_name": "inspector schmidt the ebbing" + }, + { + "appid": 2492580, + "normalized_name": "rally rock 'n racing" + }, + { + "appid": 2492600, + "normalized_name": "rampage agents" + }, + { + "appid": 2492610, + "normalized_name": "tret" + }, + { + "appid": 2492620, + "normalized_name": "fattening career" + }, + { + "appid": 2492650, + "normalized_name": "injection π23 'ars regia'" + }, + { + "appid": 2492680, + "normalized_name": "hellspresso" + }, + { + "appid": 2492710, + "normalized_name": "crossroad of worlds magic stars collector's" + }, + { + "appid": 2492730, + "normalized_name": "dark elf historia" + }, + { + "appid": 2492740, + "normalized_name": "project 13 taxidermy trails" + }, + { + "appid": 2492780, + "normalized_name": "with eyes closed season 1" + }, + { + "appid": 2492800, + "normalized_name": "cat's cosmic atlas" + }, + { + "appid": 2492820, + "normalized_name": "sameshadow" + }, + { + "appid": 2492830, + "normalized_name": "hell god" + }, + { + "appid": 2492850, + "normalized_name": "the other me" + }, + { + "appid": 2492870, + "normalized_name": "goblins please" + }, + { + "appid": 2492880, + "normalized_name": "escape darkness" + }, + { + "appid": 2492890, + "normalized_name": "spacemine" + }, + { + "appid": 2492910, + "normalized_name": "kart life" + }, + { + "appid": 2492930, + "normalized_name": "nexus warfare" + }, + { + "appid": 2492950, + "normalized_name": "to the sky" + }, + { + "appid": 2492990, + "normalized_name": "locura" + }, + { + "appid": 2493010, + "normalized_name": "mutus meteora" + }, + { + "appid": 2493030, + "normalized_name": "timo boll beats table tennis" + }, + { + "appid": 2493050, + "normalized_name": "method of entry" + }, + { + "appid": 2493080, + "normalized_name": "oleksandr lytvynenko" + }, + { + "appid": 2493110, + "normalized_name": "dragons dominion" + }, + { + "appid": 2493130, + "normalized_name": "train planet" + }, + { + "appid": 2493140, + "normalized_name": "sons of saturn" + }, + { + "appid": 2493160, + "normalized_name": "1 bit survivor" + }, + { + "appid": 2493170, + "normalized_name": "eastern tactics one ninth of fate" + }, + { + "appid": 2493180, + "normalized_name": "the lullaby of life" + }, + { + "appid": 2493210, + "normalized_name": "neural dominion" + }, + { + "appid": 2493220, + "normalized_name": "gynocracy" + }, + { + "appid": 2493240, + "normalized_name": "nihongo school" + }, + { + "appid": 2493250, + "normalized_name": "lawnmower game mission x" + }, + { + "appid": 2493340, + "normalized_name": "東方菈菈队" + }, + { + "appid": 2493360, + "normalized_name": "dark and deep" + }, + { + "appid": 2493430, + "normalized_name": "haikuna" + }, + { + "appid": 2493470, + "normalized_name": "rts football" + }, + { + "appid": 2493510, + "normalized_name": "cyberfield" + }, + { + "appid": 2493520, + "normalized_name": "a silent statue" + }, + { + "appid": 2493560, + "normalized_name": "heros and monsters idle incremental" + }, + { + "appid": 2493580, + "normalized_name": "blazing dragon" + }, + { + "appid": 2493590, + "normalized_name": "shattered time" + }, + { + "appid": 2493600, + "normalized_name": "simil" + }, + { + "appid": 2493630, + "normalized_name": "this game is easy" + }, + { + "appid": 2493670, + "normalized_name": "deja vu the backrooms" + }, + { + "appid": 2493710, + "normalized_name": "hop step sing! shikiri shiishiba by my side" + }, + { + "appid": 2493730, + "normalized_name": "diversion" + }, + { + "appid": 2493910, + "normalized_name": "eldritch exterminators" + }, + { + "appid": 2493920, + "normalized_name": "try dying" + }, + { + "appid": 2493930, + "normalized_name": "withering flowers" + }, + { + "appid": 2493940, + "normalized_name": "destination unknown" + }, + { + "appid": 2493950, + "normalized_name": "拯救异世界" + }, + { + "appid": 2493960, + "normalized_name": "abyss" + }, + { + "appid": 2493980, + "normalized_name": "the friends we left behind" + }, + { + "appid": 2494020, + "normalized_name": "samurai unicorn" + }, + { + "appid": 2494030, + "normalized_name": "zenoken" + }, + { + "appid": 2494110, + "normalized_name": "lily in puzzle world" + }, + { + "appid": 2494270, + "normalized_name": "glowpop" + }, + { + "appid": 2494340, + "normalized_name": "tour de france 2024" + }, + { + "appid": 2494350, + "normalized_name": "pro cycling manager 2024" + }, + { + "appid": 2494360, + "normalized_name": "bullet" + }, + { + "appid": 2494370, + "normalized_name": "stories one" + }, + { + "appid": 2494400, + "normalized_name": "一克帝国迷你版" + }, + { + "appid": 2494410, + "normalized_name": "neon fantasy boys" + }, + { + "appid": 2494440, + "normalized_name": "toy trains" + }, + { + "appid": 2494450, + "normalized_name": "the last soldier of the ming dynasty" + }, + { + "appid": 2494480, + "normalized_name": "truth of beauty witch marine's treasure ship" + }, + { + "appid": 2494500, + "normalized_name": "wild alone" + }, + { + "appid": 2494610, + "normalized_name": "grandma's legacy vr – the mystery puzzle solving escape room game" + }, + { + "appid": 2494650, + "normalized_name": "return" + }, + { + "appid": 2494660, + "normalized_name": "love tavern 2 beastmen kingdoms" + }, + { + "appid": 2494680, + "normalized_name": "dickland racing" + }, + { + "appid": 2494690, + "normalized_name": "wolf simulator rpg" + }, + { + "appid": 2494710, + "normalized_name": "hentai crystals" + }, + { + "appid": 2494720, + "normalized_name": "little man has a day" + }, + { + "appid": 2494730, + "normalized_name": "the prospector odyssey" + }, + { + "appid": 2494770, + "normalized_name": "gold rush" + }, + { + "appid": 2494780, + "normalized_name": "#drive rally" + }, + { + "appid": 2494790, + "normalized_name": "dot to dot sweep" + }, + { + "appid": 2494810, + "normalized_name": "dark hunting ground" + }, + { + "appid": 2494830, + "normalized_name": "hero of luxuria" + }, + { + "appid": 2494840, + "normalized_name": "mary help me !" + }, + { + "appid": 2494870, + "normalized_name": "sky settlers" + }, + { + "appid": 2494920, + "normalized_name": "khaligrad" + }, + { + "appid": 2494930, + "normalized_name": "sludge life the big mud sessions" + }, + { + "appid": 2494990, + "normalized_name": "ppp" + }, + { + "appid": 2495000, + "normalized_name": "viridian sage" + }, + { + "appid": 2495010, + "normalized_name": "stupid camera" + }, + { + "appid": 2495040, + "normalized_name": "electation" + }, + { + "appid": 2495050, + "normalized_name": "merge adventure magic dragons" + }, + { + "appid": 2495080, + "normalized_name": "hexxaris" + }, + { + "appid": 2495090, + "normalized_name": "lost traces unsolved cases genesis" + }, + { + "appid": 2495100, + "normalized_name": "hello kitty island adventure" + }, + { + "appid": 2495130, + "normalized_name": "pixelpusher" + }, + { + "appid": 2495160, + "normalized_name": "puppeteer control" + }, + { + "appid": 2495180, + "normalized_name": "connected! 2" + }, + { + "appid": 2495200, + "normalized_name": "mountains of madness" + }, + { + "appid": 2495240, + "normalized_name": "弾弾~dandan~" + }, + { + "appid": 2495260, + "normalized_name": "ulton's quest" + }, + { + "appid": 2495270, + "normalized_name": "lab cat escape" + }, + { + "appid": 2495290, + "normalized_name": "only one bodycam" + }, + { + "appid": 2495300, + "normalized_name": "the fall of elements" + }, + { + "appid": 2495320, + "normalized_name": "monsterpatch" + }, + { + "appid": 2495340, + "normalized_name": "20 doors" + }, + { + "appid": 2495350, + "normalized_name": "bashtronaut" + }, + { + "appid": 2495380, + "normalized_name": "three days to chicago" + }, + { + "appid": 2495430, + "normalized_name": "twin gods" + }, + { + "appid": 2495450, + "normalized_name": "winter memories" + }, + { + "appid": 2495480, + "normalized_name": "tank strike" + }, + { + "appid": 2495490, + "normalized_name": "labyrinth shadows of the kingdom" + }, + { + "appid": 2495500, + "normalized_name": "alien war 2 dogfight" + }, + { + "appid": 2495510, + "normalized_name": "modelmaker" + }, + { + "appid": 2495530, + "normalized_name": "dark eyed angels" + }, + { + "appid": 2495560, + "normalized_name": "crime pays" + }, + { + "appid": 2495570, + "normalized_name": "shinjuku hearts" + }, + { + "appid": 2495580, + "normalized_name": "teenage wasteland" + }, + { + "appid": 2495620, + "normalized_name": "grace of letoile" + }, + { + "appid": 2495650, + "normalized_name": "rising sun mahjong" + }, + { + "appid": 2495660, + "normalized_name": "greatest dynasties mahjong" + }, + { + "appid": 2495670, + "normalized_name": "panda choice mahjong" + }, + { + "appid": 2495700, + "normalized_name": "flowfall" + }, + { + "appid": 2495720, + "normalized_name": "chasemaster" + }, + { + "appid": 2495730, + "normalized_name": "provoron" + }, + { + "appid": 2495780, + "normalized_name": "the way rpg" + }, + { + "appid": 2495820, + "normalized_name": "cometsoldier" + }, + { + "appid": 2495830, + "normalized_name": "warmongers" + }, + { + "appid": 2495950, + "normalized_name": "pongball" + }, + { + "appid": 2495960, + "normalized_name": "the divine speaker a bounty hunter's first christmas" + }, + { + "appid": 2495970, + "normalized_name": "the armardisp" + }, + { + "appid": 2495980, + "normalized_name": "箭箭剑 arrow a row" + }, + { + "appid": 2495990, + "normalized_name": "gore doctor" + }, + { + "appid": 2496000, + "normalized_name": "fractals of destiny" + }, + { + "appid": 2496010, + "normalized_name": "adventures of squeak bottoms" + }, + { + "appid": 2496090, + "normalized_name": "whisper of the swallows" + }, + { + "appid": 2496130, + "normalized_name": "hello your order..." + }, + { + "appid": 2496160, + "normalized_name": "rebel!" + }, + { + "appid": 2496180, + "normalized_name": "ghost town" + }, + { + "appid": 2496200, + "normalized_name": "gobo’s arena" + }, + { + "appid": 2496220, + "normalized_name": "spooky bay" + }, + { + "appid": 2496270, + "normalized_name": "super smash gals orgy" + }, + { + "appid": 2496300, + "normalized_name": "po go no!" + }, + { + "appid": 2496330, + "normalized_name": "tremble of towers" + }, + { + "appid": 2496390, + "normalized_name": "the dreamlurker" + }, + { + "appid": 2496440, + "normalized_name": "turncoat chronicle" + }, + { + "appid": 2496460, + "normalized_name": "tatari the arrival" + }, + { + "appid": 2496530, + "normalized_name": "mu gen no tou" + }, + { + "appid": 2496550, + "normalized_name": "gnome enchanted jigsaw puzzles" + }, + { + "appid": 2496590, + "normalized_name": "untraveled lands chantico" + }, + { + "appid": 2496640, + "normalized_name": "futanari di funghi" + }, + { + "appid": 2496720, + "normalized_name": "bushido saga nightmare of the samurai" + }, + { + "appid": 2496760, + "normalized_name": "gravity survivors" + }, + { + "appid": 2496770, + "normalized_name": "silver moonlight" + }, + { + "appid": 2496790, + "normalized_name": "beach vacation simulator" + }, + { + "appid": 2496800, + "normalized_name": "orblike madness" + }, + { + "appid": 2496830, + "normalized_name": "commander keen in keen dreams" + }, + { + "appid": 2496850, + "normalized_name": "bombshell barista speed dating" + }, + { + "appid": 2496890, + "normalized_name": "abysswalkers" + }, + { + "appid": 2496920, + "normalized_name": "开局一只蛋" + }, + { + "appid": 2496940, + "normalized_name": "grandpa's house" + }, + { + "appid": 2496950, + "normalized_name": "dawn of marionette" + }, + { + "appid": 2496980, + "normalized_name": "chester into the darkness" + }, + { + "appid": 2497010, + "normalized_name": "机甲之旅" + }, + { + "appid": 2497020, + "normalized_name": "sick samurai" + }, + { + "appid": 2497040, + "normalized_name": "东方雪人战争 touhousnowclash" + }, + { + "appid": 2497070, + "normalized_name": "cosmic coop" + }, + { + "appid": 2497090, + "normalized_name": "ghost in the brain/孵る明晰夢" + }, + { + "appid": 2497110, + "normalized_name": "idle weaponshop" + }, + { + "appid": 2497150, + "normalized_name": "up to the sky" + }, + { + "appid": 2497160, + "normalized_name": "severed lands" + }, + { + "appid": 2497170, + "normalized_name": "laura of reigetsu" + }, + { + "appid": 2497210, + "normalized_name": "pusher drug tycoon" + }, + { + "appid": 2497280, + "normalized_name": "joy life" + }, + { + "appid": 2497300, + "normalized_name": "political mastery" + }, + { + "appid": 2497310, + "normalized_name": "r & p prologue" + }, + { + "appid": 2497340, + "normalized_name": "rolling atop it" + }, + { + "appid": 2497380, + "normalized_name": "brightstone mysteries the others" + }, + { + "appid": 2497390, + "normalized_name": "viking hiking" + }, + { + "appid": 2497430, + "normalized_name": "星际工业国:崛起" + }, + { + "appid": 2497450, + "normalized_name": "fuzzy flip matching game" + }, + { + "appid": 2497480, + "normalized_name": "raptoid" + }, + { + "appid": 2497500, + "normalized_name": "restorart fairwood hills collector's" + }, + { + "appid": 2497510, + "normalized_name": "detective montgomery fox the case of diamond necklace" + }, + { + "appid": 2497520, + "normalized_name": "rush only up multiplayer" + }, + { + "appid": 2497560, + "normalized_name": "skibidi escape from toilets!" + }, + { + "appid": 2497570, + "normalized_name": "afterwar" + }, + { + "appid": 2497580, + "normalized_name": "citron world forward zero" + }, + { + "appid": 2497610, + "normalized_name": "人魔 mandemon" + }, + { + "appid": 2497630, + "normalized_name": "escape from the police" + }, + { + "appid": 2497650, + "normalized_name": "tiny europe" + }, + { + "appid": 2497670, + "normalized_name": "genso manège" + }, + { + "appid": 2497840, + "normalized_name": "dungeon watchers" + }, + { + "appid": 2497850, + "normalized_name": "nunna prologue" + }, + { + "appid": 2497870, + "normalized_name": "wall protection" + }, + { + "appid": 2497890, + "normalized_name": "horn sounds" + }, + { + "appid": 2497900, + "normalized_name": "don't scream" + }, + { + "appid": 2497910, + "normalized_name": "into the dungeon" + }, + { + "appid": 2497920, + "normalized_name": "a difficult game about climbing" + }, + { + "appid": 2497930, + "normalized_name": "the grey dream" + }, + { + "appid": 2497940, + "normalized_name": "viking chef feast frenzy" + }, + { + "appid": 2497950, + "normalized_name": "tercios honor and glory" + }, + { + "appid": 2497960, + "normalized_name": "the t.o.t.e." + }, + { + "appid": 2497980, + "normalized_name": "heroes suck" + }, + { + "appid": 2498010, + "normalized_name": "doki boki international hentai language school" + }, + { + "appid": 2498020, + "normalized_name": "the perdition man" + }, + { + "appid": 2498070, + "normalized_name": "how i learned to stop worrying and enjoy the end of the world" + }, + { + "appid": 2498080, + "normalized_name": "fruits of fury" + }, + { + "appid": 2498090, + "normalized_name": "trigger tennis" + }, + { + "appid": 2498100, + "normalized_name": "glorious storm" + }, + { + "appid": 2498160, + "normalized_name": "ava's adventure" + }, + { + "appid": 2498170, + "normalized_name": "medieval thief vr" + }, + { + "appid": 2498180, + "normalized_name": "causal effect" + }, + { + "appid": 2498220, + "normalized_name": "lost in winter" + }, + { + "appid": 2498260, + "normalized_name": "to the grave the battle for faenora" + }, + { + "appid": 2498300, + "normalized_name": "the witch knight anna the black serpent and the golden wind" + }, + { + "appid": 2498310, + "normalized_name": "dreadnoughts of caelus" + }, + { + "appid": 2498340, + "normalized_name": "drop pane not only match 3" + }, + { + "appid": 2498370, + "normalized_name": "wage slave td" + }, + { + "appid": 2498480, + "normalized_name": "milthm" + }, + { + "appid": 2498490, + "normalized_name": "synthwave ascension" + }, + { + "appid": 2498570, + "normalized_name": "canvas of kings" + }, + { + "appid": 2498580, + "normalized_name": "接触 第一章(the encounter chapter one)" + }, + { + "appid": 2498600, + "normalized_name": "everwayne" + }, + { + "appid": 2498610, + "normalized_name": "dissonators" + }, + { + "appid": 2498620, + "normalized_name": "king krieg" + }, + { + "appid": 2498630, + "normalized_name": "the frozen garden" + }, + { + "appid": 2498650, + "normalized_name": "amp" + }, + { + "appid": 2498680, + "normalized_name": "prison loop" + }, + { + "appid": 2498730, + "normalized_name": "cold verdict 2" + }, + { + "appid": 2498740, + "normalized_name": "dark pact" + }, + { + "appid": 2498790, + "normalized_name": "puzzillion" + }, + { + "appid": 2498800, + "normalized_name": "cross seekers" + }, + { + "appid": 2498830, + "normalized_name": "chess club valley" + }, + { + "appid": 2498870, + "normalized_name": "elysium trials" + }, + { + "appid": 2498890, + "normalized_name": "boom! buster" + }, + { + "appid": 2498910, + "normalized_name": "technofumer" + }, + { + "appid": 2498920, + "normalized_name": "don't not live" + }, + { + "appid": 2498940, + "normalized_name": "amare inversus" + }, + { + "appid": 2498970, + "normalized_name": "upon the eldritch planet" + }, + { + "appid": 2498980, + "normalized_name": "may angels fall down" + }, + { + "appid": 2498990, + "normalized_name": "achievement display cabinet" + }, + { + "appid": 2499040, + "normalized_name": "volkolak the will of gods" + }, + { + "appid": 2499080, + "normalized_name": "top gnome" + }, + { + "appid": 2499100, + "normalized_name": "cuplex" + }, + { + "appid": 2499120, + "normalized_name": "chip crafters" + }, + { + "appid": 2499150, + "normalized_name": "aonar" + }, + { + "appid": 2499210, + "normalized_name": "哀哭竜のメモリア" + }, + { + "appid": 2499260, + "normalized_name": "menyr" + }, + { + "appid": 2499270, + "normalized_name": "the mobius apartment" + }, + { + "appid": 2499290, + "normalized_name": "lunch the card game" + }, + { + "appid": 2499310, + "normalized_name": "foggy rainfall escapade" + }, + { + "appid": 2499320, + "normalized_name": "the last exodus" + }, + { + "appid": 2499330, + "normalized_name": "battle rockets" + }, + { + "appid": 2499400, + "normalized_name": "dragon ranch" + }, + { + "appid": 2499420, + "normalized_name": "broken hearts island" + }, + { + "appid": 2499470, + "normalized_name": "pumping simulator 2" + }, + { + "appid": 2499480, + "normalized_name": "quest arrest" + }, + { + "appid": 2499500, + "normalized_name": "haunting hijinx" + }, + { + "appid": 2499510, + "normalized_name": "荒镇 返家" + }, + { + "appid": 2499520, + "normalized_name": "be my horde" + }, + { + "appid": 2499570, + "normalized_name": "cat at home" + }, + { + "appid": 2499590, + "normalized_name": "white hat" + }, + { + "appid": 2499620, + "normalized_name": "the leverage game" + }, + { + "appid": 2499640, + "normalized_name": "deities flush" + }, + { + "appid": 2499650, + "normalized_name": "plunged" + }, + { + "appid": 2499670, + "normalized_name": "idol cultivation process :unspoken rules ★ミ" + }, + { + "appid": 2499680, + "normalized_name": "pacifist kunoichi kikyo" + }, + { + "appid": 2499700, + "normalized_name": "sleeve shock" + }, + { + "appid": 2499710, + "normalized_name": "アパシー学校であった怖い話 visual novel version" + }, + { + "appid": 2499730, + "normalized_name": "幽灵小镇 spooky town" + }, + { + "appid": 2499740, + "normalized_name": "frip and froop's logical labyrinth dx" + }, + { + "appid": 2499750, + "normalized_name": "时间秩序" + }, + { + "appid": 2499770, + "normalized_name": "goblin adventurer hunting" + }, + { + "appid": 2499780, + "normalized_name": "garten of banban 5" + }, + { + "appid": 2499800, + "normalized_name": "garten of banban 6" + }, + { + "appid": 2499820, + "normalized_name": "robinson alchemy" + }, + { + "appid": 2499880, + "normalized_name": "last bloody snack" + }, + { + "appid": 2499910, + "normalized_name": "他の男の精液で孕むとき2 ―障子に映る、快感に悶え狂った妻の影―" + }, + { + "appid": 2499930, + "normalized_name": "detective montgomery fox the case of the missing ballerinas" + }, + { + "appid": 2499940, + "normalized_name": "shattered lands" + }, + { + "appid": 2499950, + "normalized_name": "lastonestanding" + }, + { + "appid": 2499970, + "normalized_name": "detective montgomery fox the revenge of victor draven" + }, + { + "appid": 2499990, + "normalized_name": "the rumble fish +" + }, + { + "appid": 2500010, + "normalized_name": "crazy world" + }, + { + "appid": 2500020, + "normalized_name": "kill all lice" + }, + { + "appid": 2500040, + "normalized_name": "secret agent cold war espionage" + }, + { + "appid": 2500050, + "normalized_name": "super dragon punch force 3" + }, + { + "appid": 2500080, + "normalized_name": "webventure" + }, + { + "appid": 2500090, + "normalized_name": "dating after becoming vtuber" + }, + { + "appid": 2500120, + "normalized_name": "stellar tunes" + }, + { + "appid": 2500130, + "normalized_name": "guilty force wish of the colony" + }, + { + "appid": 2500190, + "normalized_name": "paver simulator" + }, + { + "appid": 2500200, + "normalized_name": "run away" + }, + { + "appid": 2500230, + "normalized_name": "末日迷窟 doomsday cave" + }, + { + "appid": 2500240, + "normalized_name": "crossroad of worlds cursed letters collector's" + }, + { + "appid": 2500250, + "normalized_name": "surfing legends" + }, + { + "appid": 2500290, + "normalized_name": "bubble blasters" + }, + { + "appid": 2500400, + "normalized_name": "king island 3" + }, + { + "appid": 2500410, + "normalized_name": "king island 2" + }, + { + "appid": 2500420, + "normalized_name": "fantasy kommander eukarion wars" + }, + { + "appid": 2500450, + "normalized_name": "anx defense" + }, + { + "appid": 2500460, + "normalized_name": "inventorix" + }, + { + "appid": 2500470, + "normalized_name": "chroma wars" + }, + { + "appid": 2500570, + "normalized_name": "little droid" + }, + { + "appid": 2500610, + "normalized_name": "hidden series prologue" + }, + { + "appid": 2500620, + "normalized_name": "ruin" + }, + { + "appid": 2500680, + "normalized_name": "tiny chaos" + }, + { + "appid": 2500690, + "normalized_name": "dumbriel magnificent adventure in hell" + }, + { + "appid": 2500700, + "normalized_name": "free the lazy dogs" + }, + { + "appid": 2500710, + "normalized_name": "voidbound" + }, + { + "appid": 2500720, + "normalized_name": "cheerleader's choice new york spirit" + }, + { + "appid": 2500740, + "normalized_name": "naturals" + }, + { + "appid": 2500750, + "normalized_name": "only climb better together" + }, + { + "appid": 2500760, + "normalized_name": "かぞえ飯" + }, + { + "appid": 2500780, + "normalized_name": "waifu club azumi" + }, + { + "appid": 2500910, + "normalized_name": "fania" + }, + { + "appid": 2500920, + "normalized_name": "kingdom simulator" + }, + { + "appid": 2500930, + "normalized_name": "legendary survivors" + }, + { + "appid": 2501160, + "normalized_name": "idle transport tycoon" + }, + { + "appid": 2501210, + "normalized_name": "orz" + }, + { + "appid": 2501230, + "normalized_name": "bombard" + }, + { + "appid": 2501370, + "normalized_name": "dante's cowboy" + }, + { + "appid": 2501390, + "normalized_name": "末日公会 apocalypse guild" + }, + { + "appid": 2501400, + "normalized_name": "let's fight! box" + }, + { + "appid": 2501430, + "normalized_name": "world war 2 ww2 strategy games" + }, + { + "appid": 2501500, + "normalized_name": "cocktail magic" + }, + { + "appid": 2501550, + "normalized_name": "bullet hell monday finale" + }, + { + "appid": 2501590, + "normalized_name": "squeebing up the tower of friendship" + }, + { + "appid": 2501600, + "normalized_name": "diceomancer" + }, + { + "appid": 2501620, + "normalized_name": "kandyland" + }, + { + "appid": 2501650, + "normalized_name": "electrogical" + }, + { + "appid": 2501670, + "normalized_name": "z zombies battle royale" + }, + { + "appid": 2501680, + "normalized_name": "car factory" + }, + { + "appid": 2501730, + "normalized_name": "sex with the devil 2" + }, + { + "appid": 2501750, + "normalized_name": "tactical zone" + }, + { + "appid": 2501820, + "normalized_name": "nothing left give up" + }, + { + "appid": 2501830, + "normalized_name": "dreaming chicken" + }, + { + "appid": 2501920, + "normalized_name": "realms of madness" + }, + { + "appid": 2501980, + "normalized_name": "towers and powers" + }, + { + "appid": 2502030, + "normalized_name": "castaway coalition" + }, + { + "appid": 2502040, + "normalized_name": "the lemonade" + }, + { + "appid": 2502120, + "normalized_name": "unoxi" + }, + { + "appid": 2502200, + "normalized_name": "project ;cold case.mirage" + }, + { + "appid": 2502210, + "normalized_name": "speedrooms" + }, + { + "appid": 2502220, + "normalized_name": "only ban!" + }, + { + "appid": 2502310, + "normalized_name": "midnight blood rush" + }, + { + "appid": 2502390, + "normalized_name": "曙光之命运之子" + }, + { + "appid": 2502400, + "normalized_name": "rhythm dodge" + }, + { + "appid": 2502420, + "normalized_name": "cabezurrio vs robots" + }, + { + "appid": 2502430, + "normalized_name": "terminal error" + }, + { + "appid": 2502600, + "normalized_name": "furry bdsm" + }, + { + "appid": 2502650, + "normalized_name": "daisho survival of a samurai" + }, + { + "appid": 2502680, + "normalized_name": "ハクスラダンジョンⅲ" + }, + { + "appid": 2502710, + "normalized_name": "武道神尊" + }, + { + "appid": 2502730, + "normalized_name": "shin galaxy engage" + }, + { + "appid": 2502750, + "normalized_name": "battery hunter" + }, + { + "appid": 2502760, + "normalized_name": "wolvesville" + }, + { + "appid": 2502790, + "normalized_name": "love story" + }, + { + "appid": 2502830, + "normalized_name": "heaven's dream" + }, + { + "appid": 2502870, + "normalized_name": "kanun 1919" + }, + { + "appid": 2502880, + "normalized_name": "aurora adventure a sunglade planet tale" + }, + { + "appid": 2502890, + "normalized_name": "ballistic" + }, + { + "appid": 2502940, + "normalized_name": "ヘレの海底都市計画 ~箱庭に空気を植えるslg~" + }, + { + "appid": 2502980, + "normalized_name": "succubus roommate" + }, + { + "appid": 2503030, + "normalized_name": "hideout" + }, + { + "appid": 2503050, + "normalized_name": "they who dwell below" + }, + { + "appid": 2503070, + "normalized_name": "dead petals bliss" + }, + { + "appid": 2503100, + "normalized_name": "dark city trouble nights" + }, + { + "appid": 2503130, + "normalized_name": "only fortress" + }, + { + "appid": 2503150, + "normalized_name": "coast defender" + }, + { + "appid": 2503180, + "normalized_name": "run from mummies" + }, + { + "appid": 2503190, + "normalized_name": "the bugger!" + }, + { + "appid": 2503210, + "normalized_name": "interspace" + }, + { + "appid": 2503220, + "normalized_name": "karting superstars" + }, + { + "appid": 2503230, + "normalized_name": "bogdan's cross" + }, + { + "appid": 2503240, + "normalized_name": "bridge crossing" + }, + { + "appid": 2503250, + "normalized_name": "行地无疆 (roam across)" + }, + { + "appid": 2503260, + "normalized_name": "blood midnight blossom" + }, + { + "appid": 2503280, + "normalized_name": "path to the devil" + }, + { + "appid": 2503290, + "normalized_name": "grid runner" + }, + { + "appid": 2503300, + "normalized_name": "fantasy td battles" + }, + { + "appid": 2503330, + "normalized_name": "asmodeus" + }, + { + "appid": 2503360, + "normalized_name": "containment zones" + }, + { + "appid": 2503430, + "normalized_name": "sanguine" + }, + { + "appid": 2503470, + "normalized_name": "the tower of the spells" + }, + { + "appid": 2503490, + "normalized_name": "廃集落探索" + }, + { + "appid": 2503550, + "normalized_name": "operation octo" + }, + { + "appid": 2503600, + "normalized_name": "the isle survival" + }, + { + "appid": 2503620, + "normalized_name": "little monster" + }, + { + "appid": 2503640, + "normalized_name": "kazu aether origins" + }, + { + "appid": 2503690, + "normalized_name": "selene's unbearable night" + }, + { + "appid": 2503710, + "normalized_name": "only one way up" + }, + { + "appid": 2503740, + "normalized_name": "storm striker" + }, + { + "appid": 2503750, + "normalized_name": "千山弈途" + }, + { + "appid": 2503770, + "normalized_name": "house of legacy" + }, + { + "appid": 2503780, + "normalized_name": "lunar maiden river side angel and the godlike moment" + }, + { + "appid": 2503890, + "normalized_name": "bloodecay" + }, + { + "appid": 2503900, + "normalized_name": "surreal house" + }, + { + "appid": 2503950, + "normalized_name": "ion shift" + }, + { + "appid": 2503990, + "normalized_name": "13 playing cards of demon" + }, + { + "appid": 2504000, + "normalized_name": "abyssey" + }, + { + "appid": 2504040, + "normalized_name": "lord of the race" + }, + { + "appid": 2504060, + "normalized_name": "空想少女 imaginary girl 後日譚 sequel" + }, + { + "appid": 2504090, + "normalized_name": "heroes of valor" + }, + { + "appid": 2504110, + "normalized_name": "dear brother" + }, + { + "appid": 2504130, + "normalized_name": "wild" + }, + { + "appid": 2504210, + "normalized_name": "the leverage game business" + }, + { + "appid": 2504250, + "normalized_name": "telebbit" + }, + { + "appid": 2504270, + "normalized_name": "searchbar detective" + }, + { + "appid": 2504380, + "normalized_name": "survival nation lost horizon" + }, + { + "appid": 2504390, + "normalized_name": "air hockey vr" + }, + { + "appid": 2504400, + "normalized_name": "deep space tavern" + }, + { + "appid": 2504440, + "normalized_name": "dui" + }, + { + "appid": 2504450, + "normalized_name": "slug gear" + }, + { + "appid": 2504460, + "normalized_name": "csol" + }, + { + "appid": 2504470, + "normalized_name": "doodle taxi" + }, + { + "appid": 2504480, + "normalized_name": "indigo park chapter 1" + }, + { + "appid": 2504540, + "normalized_name": "cube royale" + }, + { + "appid": 2504580, + "normalized_name": "will.exe" + }, + { + "appid": 2504610, + "normalized_name": "felon e" + }, + { + "appid": 2504620, + "normalized_name": "match gem 99" + }, + { + "appid": 2504630, + "normalized_name": "ur" + }, + { + "appid": 2504640, + "normalized_name": "the king in the shades" + }, + { + "appid": 2504660, + "normalized_name": "chickado" + }, + { + "appid": 2504730, + "normalized_name": "a lonesome tale" + }, + { + "appid": 2504740, + "normalized_name": "keepers" + }, + { + "appid": 2504810, + "normalized_name": "arcane arena" + }, + { + "appid": 2504830, + "normalized_name": "kinlings" + }, + { + "appid": 2504840, + "normalized_name": "bingaboll" + }, + { + "appid": 2504880, + "normalized_name": "son of sparta" + }, + { + "appid": 2504900, + "normalized_name": "protoshock" + }, + { + "appid": 2505020, + "normalized_name": "m.e.a.t. veterans" + }, + { + "appid": 2505060, + "normalized_name": "dum game" + }, + { + "appid": 2505070, + "normalized_name": "intergalactic mystery" + }, + { + "appid": 2505080, + "normalized_name": "across kiloparsecs" + }, + { + "appid": 2505090, + "normalized_name": "boogeyman 3" + }, + { + "appid": 2505100, + "normalized_name": "crossing the sands" + }, + { + "appid": 2505120, + "normalized_name": "plant therapy" + }, + { + "appid": 2505160, + "normalized_name": "xaphan battle simulator" + }, + { + "appid": 2505180, + "normalized_name": "ursine science" + }, + { + "appid": 2505200, + "normalized_name": "shadows labyrinth" + }, + { + "appid": 2505210, + "normalized_name": "awakening sarah" + }, + { + "appid": 2505230, + "normalized_name": "dreadwinter" + }, + { + "appid": 2505250, + "normalized_name": "jett rider" + }, + { + "appid": 2505330, + "normalized_name": "令和罕见物语" + }, + { + "appid": 2505350, + "normalized_name": "survivors of the plague" + }, + { + "appid": 2505370, + "normalized_name": "future weapon 2d" + }, + { + "appid": 2505400, + "normalized_name": "elseworld" + }, + { + "appid": 2505430, + "normalized_name": "pickaxe friends" + }, + { + "appid": 2505440, + "normalized_name": "shanghai angel 18+ adult only" + }, + { + "appid": 2505450, + "normalized_name": "deepbreath" + }, + { + "appid": 2505460, + "normalized_name": "signal creek" + }, + { + "appid": 2505470, + "normalized_name": "slime climb scrum" + }, + { + "appid": 2505510, + "normalized_name": "artisan story" + }, + { + "appid": 2505530, + "normalized_name": "ranphon" + }, + { + "appid": 2505550, + "normalized_name": "cosmic breakout" + }, + { + "appid": 2505560, + "normalized_name": "horny recruiter" + }, + { + "appid": 2505570, + "normalized_name": "burger shop 3" + }, + { + "appid": 2505580, + "normalized_name": "life in middle east" + }, + { + "appid": 2505590, + "normalized_name": "三国朋克 爱与破坏之神" + }, + { + "appid": 2505620, + "normalized_name": "cyberstrike chronicles" + }, + { + "appid": 2505630, + "normalized_name": "vertical velocity" + }, + { + "appid": 2505640, + "normalized_name": "一起感染吧 dyin to live" + }, + { + "appid": 2505670, + "normalized_name": "raidkids" + }, + { + "appid": 2505700, + "normalized_name": "beadspopper" + }, + { + "appid": 2505740, + "normalized_name": "dominating eyes" + }, + { + "appid": 2505760, + "normalized_name": "プロ野球スピリッツ myballpark" + }, + { + "appid": 2505780, + "normalized_name": "2bbee" + }, + { + "appid": 2505800, + "normalized_name": "廃遊園地のメメントメモリア" + }, + { + "appid": 2505820, + "normalized_name": "主动防御(active defense)" + }, + { + "appid": 2505840, + "normalized_name": "gutasaga" + }, + { + "appid": 2505940, + "normalized_name": "rock 'n racing off road dx" + }, + { + "appid": 2505950, + "normalized_name": "grand prix rock 'n racing" + }, + { + "appid": 2506000, + "normalized_name": "bald man climbs up" + }, + { + "appid": 2506020, + "normalized_name": "the last windmill" + }, + { + "appid": 2506060, + "normalized_name": "yusha prototype family friendly" + }, + { + "appid": 2506070, + "normalized_name": "wassermann" + }, + { + "appid": 2506080, + "normalized_name": "virtual training ship" + }, + { + "appid": 2506100, + "normalized_name": "shadows of the afterland" + }, + { + "appid": 2506110, + "normalized_name": "the guest" + }, + { + "appid": 2506120, + "normalized_name": "idle worlds" + }, + { + "appid": 2506130, + "normalized_name": "council of mages the party game" + }, + { + "appid": 2506140, + "normalized_name": "biohazard escape room" + }, + { + "appid": 2506160, + "normalized_name": "fears to fathom ironbark lookout" + }, + { + "appid": 2506290, + "normalized_name": "nova hearts" + }, + { + "appid": 2506340, + "normalized_name": "casting shadows" + }, + { + "appid": 2506360, + "normalized_name": "skinny girls" + }, + { + "appid": 2506370, + "normalized_name": "bloom runner" + }, + { + "appid": 2506390, + "normalized_name": "chester the chest" + }, + { + "appid": 2506400, + "normalized_name": "sweety sweets" + }, + { + "appid": 2506410, + "normalized_name": "secret relationship with subordinate's cocky gal wife" + }, + { + "appid": 2506420, + "normalized_name": "vipunk shield of valhalla" + }, + { + "appid": 2506430, + "normalized_name": "lovely brides" + }, + { + "appid": 2506440, + "normalized_name": "trolddom" + }, + { + "appid": 2506450, + "normalized_name": "guayota" + }, + { + "appid": 2506460, + "normalized_name": "girls rest" + }, + { + "appid": 2506470, + "normalized_name": "hunter girls" + }, + { + "appid": 2506480, + "normalized_name": "clue/cluedo" + }, + { + "appid": 2506500, + "normalized_name": "who's the traitor" + }, + { + "appid": 2506510, + "normalized_name": "声锁 sound lock" + }, + { + "appid": 2506530, + "normalized_name": "it has my face" + }, + { + "appid": 2506540, + "normalized_name": "escapeland" + }, + { + "appid": 2506550, + "normalized_name": "high fructose" + }, + { + "appid": 2506580, + "normalized_name": "gearbits" + }, + { + "appid": 2506680, + "normalized_name": "haunted station" + }, + { + "appid": 2506690, + "normalized_name": "visco collection" + }, + { + "appid": 2506730, + "normalized_name": "i feel very lonely and i don't remember myself" + }, + { + "appid": 2506740, + "normalized_name": "abyssal descent" + }, + { + "appid": 2506780, + "normalized_name": "chef survivor" + }, + { + "appid": 2506790, + "normalized_name": "dino world" + }, + { + "appid": 2506810, + "normalized_name": "pest apocalypse" + }, + { + "appid": 2506820, + "normalized_name": "demonsomnia" + }, + { + "appid": 2506830, + "normalized_name": "forevr suck it! vr" + }, + { + "appid": 2506850, + "normalized_name": "cleaning girls" + }, + { + "appid": 2506860, + "normalized_name": "cuties" + }, + { + "appid": 2506870, + "normalized_name": "hidden scifi city top down 3d" + }, + { + "appid": 2506880, + "normalized_name": "hidden kingdom top down 3d" + }, + { + "appid": 2506890, + "normalized_name": "s lost chapters" + }, + { + "appid": 2506900, + "normalized_name": "gobs and gods" + }, + { + "appid": 2506930, + "normalized_name": "cody's nightmare" + }, + { + "appid": 2506980, + "normalized_name": "closing time" + }, + { + "appid": 2507000, + "normalized_name": "shadows of zana" + }, + { + "appid": 2507040, + "normalized_name": "gunslinger express" + }, + { + "appid": 2507080, + "normalized_name": "cecelia" + }, + { + "appid": 2507090, + "normalized_name": "tales of terrabanthis fall of the demonlords" + }, + { + "appid": 2507130, + "normalized_name": "catniptic" + }, + { + "appid": 2507370, + "normalized_name": "乘风破浪(ride the wind and waves)" + }, + { + "appid": 2507380, + "normalized_name": "sudoban" + }, + { + "appid": 2507400, + "normalized_name": "penny blood hellbound" + }, + { + "appid": 2507500, + "normalized_name": "bounty hunters" + }, + { + "appid": 2507510, + "normalized_name": "灵域之主" + }, + { + "appid": 2507540, + "normalized_name": "mystery box 4 the journey" + }, + { + "appid": 2507560, + "normalized_name": "type noise shonen shojo" + }, + { + "appid": 2507570, + "normalized_name": "matchmaker dungeon heart" + }, + { + "appid": 2507590, + "normalized_name": "the mouse game" + }, + { + "appid": 2507610, + "normalized_name": "the quintessential quintuplets memories of a quintessential summer" + }, + { + "appid": 2507620, + "normalized_name": "the quintessential quintuplets five memories spent with you" + }, + { + "appid": 2507630, + "normalized_name": "zombie party 丧尸派对" + }, + { + "appid": 2507640, + "normalized_name": "pyroworks" + }, + { + "appid": 2507650, + "normalized_name": "我的次元崩坏了" + }, + { + "appid": 2507670, + "normalized_name": "blight bubbles" + }, + { + "appid": 2507690, + "normalized_name": "thalassophobia" + }, + { + "appid": 2507700, + "normalized_name": "the infirmity" + }, + { + "appid": 2507710, + "normalized_name": "super fighting heroes" + }, + { + "appid": 2507750, + "normalized_name": "poly jigsaw furries 2" + }, + { + "appid": 2507770, + "normalized_name": "meine oma(88)" + }, + { + "appid": 2507780, + "normalized_name": "quarantine z survival" + }, + { + "appid": 2507820, + "normalized_name": "bloodgrounds" + }, + { + "appid": 2507830, + "normalized_name": "labyrinth of lust" + }, + { + "appid": 2507840, + "normalized_name": "whispered promises ~ 14 days of love with anna" + }, + { + "appid": 2507850, + "normalized_name": "bird ball" + }, + { + "appid": 2507870, + "normalized_name": "mahjick the realm taker" + }, + { + "appid": 2507880, + "normalized_name": "sunbeam" + }, + { + "appid": 2507890, + "normalized_name": "cool lady" + }, + { + "appid": 2507900, + "normalized_name": "girls in pajamas" + }, + { + "appid": 2507950, + "normalized_name": "delta force" + }, + { + "appid": 2507980, + "normalized_name": "meta ghost the breaking show" + }, + { + "appid": 2507990, + "normalized_name": "tilt frog" + }, + { + "appid": 2508000, + "normalized_name": "summoned hero" + }, + { + "appid": 2508030, + "normalized_name": "bot crisis" + }, + { + "appid": 2508050, + "normalized_name": "morigami" + }, + { + "appid": 2508070, + "normalized_name": "knightman" + }, + { + "appid": 2508090, + "normalized_name": "matchpoop" + }, + { + "appid": 2508100, + "normalized_name": "block buster" + }, + { + "appid": 2508110, + "normalized_name": "midforest survivor" + }, + { + "appid": 2508130, + "normalized_name": "werk" + }, + { + "appid": 2508150, + "normalized_name": "untrusted hackers at large" + }, + { + "appid": 2508210, + "normalized_name": "lair of torment" + }, + { + "appid": 2508220, + "normalized_name": "50 stars" + }, + { + "appid": 2508230, + "normalized_name": "under the bed" + }, + { + "appid": 2508280, + "normalized_name": "psychiatrist simulator 2 prologue" + }, + { + "appid": 2508290, + "normalized_name": "tax force" + }, + { + "appid": 2508400, + "normalized_name": "mothers and daughters" + }, + { + "appid": 2508410, + "normalized_name": "golful" + }, + { + "appid": 2508420, + "normalized_name": "combat spec ops" + }, + { + "appid": 2508440, + "normalized_name": "angel guardian" + }, + { + "appid": 2508460, + "normalized_name": "the demon's lust" + }, + { + "appid": 2508550, + "normalized_name": "secret forest" + }, + { + "appid": 2508560, + "normalized_name": "mechanic 8230 mission citytone" + }, + { + "appid": 2508580, + "normalized_name": "shattered reflections the abyss within" + }, + { + "appid": 2508610, + "normalized_name": "estelaroid escape room" + }, + { + "appid": 2508630, + "normalized_name": "space girls" + }, + { + "appid": 2508640, + "normalized_name": "terranlands" + }, + { + "appid": 2508670, + "normalized_name": "joy n help me" + }, + { + "appid": 2508680, + "normalized_name": "guardians of lodino forest" + }, + { + "appid": 2508690, + "normalized_name": "sugar girls" + }, + { + "appid": 2508720, + "normalized_name": "exilium" + }, + { + "appid": 2508730, + "normalized_name": "specters of the sun" + }, + { + "appid": 2508740, + "normalized_name": "defendron td" + }, + { + "appid": 2508770, + "normalized_name": "farmagia" + }, + { + "appid": 2508780, + "normalized_name": "story of seasons grand bazaar" + }, + { + "appid": 2508810, + "normalized_name": "nova cyborg survivor" + }, + { + "appid": 2508870, + "normalized_name": "last broadcast" + }, + { + "appid": 2508890, + "normalized_name": "etaine magic survivor / 伊泰恩:魔法幸存者" + }, + { + "appid": 2508940, + "normalized_name": "mythical concept starnaut" + }, + { + "appid": 2508950, + "normalized_name": "dreadfall" + }, + { + "appid": 2508960, + "normalized_name": "calculator the game" + }, + { + "appid": 2508970, + "normalized_name": "misled madness" + }, + { + "appid": 2508980, + "normalized_name": "pathogen x" + }, + { + "appid": 2509050, + "normalized_name": "late night cleaning simulator" + }, + { + "appid": 2509070, + "normalized_name": "말리온" + }, + { + "appid": 2509110, + "normalized_name": "snakehaus" + }, + { + "appid": 2509120, + "normalized_name": "atmasphere 2" + }, + { + "appid": 2509130, + "normalized_name": "princess chessboard" + }, + { + "appid": 2509150, + "normalized_name": "football city" + }, + { + "appid": 2509190, + "normalized_name": "a night with angel" + }, + { + "appid": 2509200, + "normalized_name": "era one" + }, + { + "appid": 2509210, + "normalized_name": "blitz guard" + }, + { + "appid": 2509240, + "normalized_name": "gloaming comedian simulator" + }, + { + "appid": 2509270, + "normalized_name": "tank storage" + }, + { + "appid": 2509280, + "normalized_name": "swords and shotguns" + }, + { + "appid": 2509290, + "normalized_name": "cars girls and rock 'n' roll" + }, + { + "appid": 2509320, + "normalized_name": "darklight" + }, + { + "appid": 2509340, + "normalized_name": "revenge of chickens" + }, + { + "appid": 2509360, + "normalized_name": "water me & you" + }, + { + "appid": 2509370, + "normalized_name": "cleric and goblins" + }, + { + "appid": 2509380, + "normalized_name": "hear my cult" + }, + { + "appid": 2509420, + "normalized_name": "blocked in" + }, + { + "appid": 2509440, + "normalized_name": "nightborn" + }, + { + "appid": 2509460, + "normalized_name": "这是生活" + }, + { + "appid": 2509530, + "normalized_name": "rogue survivors" + }, + { + "appid": 2509550, + "normalized_name": "shy dogs hidden orchestra" + }, + { + "appid": 2509610, + "normalized_name": "operator drones" + }, + { + "appid": 2509650, + "normalized_name": "mint christmas" + }, + { + "appid": 2509660, + "normalized_name": "unit down charge" + }, + { + "appid": 2509690, + "normalized_name": "spawn master" + }, + { + "appid": 2509700, + "normalized_name": "mimi the cat meow together" + }, + { + "appid": 2509710, + "normalized_name": "fly with the yellow crane" + }, + { + "appid": 2509720, + "normalized_name": "mannarites gold" + }, + { + "appid": 2509800, + "normalized_name": "versionthree invisible raid" + }, + { + "appid": 2509820, + "normalized_name": "eternal summer" + }, + { + "appid": 2509830, + "normalized_name": "mgcm combat" + }, + { + "appid": 2509840, + "normalized_name": "frogs also struggle" + }, + { + "appid": 2509850, + "normalized_name": "reincarnatio" + }, + { + "appid": 2509870, + "normalized_name": "time to wake up" + }, + { + "appid": 2509920, + "normalized_name": "sliding rails" + }, + { + "appid": 2509940, + "normalized_name": "erotic dream puzzle" + }, + { + "appid": 2510010, + "normalized_name": "nightmare manor" + }, + { + "appid": 2510020, + "normalized_name": "placid plastic deck a quiet quest" + }, + { + "appid": 2510040, + "normalized_name": "cats on broombas" + }, + { + "appid": 2510050, + "normalized_name": "plant gallery a short botanic experience" + }, + { + "appid": 2510060, + "normalized_name": "flaw" + }, + { + "appid": 2510130, + "normalized_name": "auto sale life" + }, + { + "appid": 2510160, + "normalized_name": "bounce & roll" + }, + { + "appid": 2510170, + "normalized_name": "insanity's grip" + }, + { + "appid": 2510180, + "normalized_name": "deep space directive" + }, + { + "appid": 2510210, + "normalized_name": "truck sim usa" + }, + { + "appid": 2510220, + "normalized_name": "scarlet rain" + }, + { + "appid": 2510420, + "normalized_name": "dark zone" + }, + { + "appid": 2510480, + "normalized_name": "bofyne unit the omega contract" + }, + { + "appid": 2510490, + "normalized_name": "the crazy hyper dungeon chronicles" + }, + { + "appid": 2510510, + "normalized_name": "commander zombie wars" + }, + { + "appid": 2510540, + "normalized_name": "astro heist" + }, + { + "appid": 2510570, + "normalized_name": "defenders of kronos" + }, + { + "appid": 2510660, + "normalized_name": "angular velocity" + }, + { + "appid": 2510670, + "normalized_name": "kem alpha 1" + }, + { + "appid": 2510680, + "normalized_name": "orcish skies" + }, + { + "appid": 2510710, + "normalized_name": "kunitsu gami path of the goddess" + }, + { + "appid": 2510730, + "normalized_name": "strike back" + }, + { + "appid": 2510740, + "normalized_name": "sling" + }, + { + "appid": 2510760, + "normalized_name": "诸神战纪" + }, + { + "appid": 2510770, + "normalized_name": "stella of the end" + }, + { + "appid": 2510780, + "normalized_name": "watch▷" + }, + { + "appid": 2510810, + "normalized_name": "突然*恋人" + }, + { + "appid": 2510820, + "normalized_name": "extermination shock" + }, + { + "appid": 2510830, + "normalized_name": "blazing priestess shizune" + }, + { + "appid": 2510850, + "normalized_name": "slay the minotaur" + }, + { + "appid": 2510860, + "normalized_name": "amant" + }, + { + "appid": 2510880, + "normalized_name": "master the sky drones unleashed" + }, + { + "appid": 2510890, + "normalized_name": "pricolage idolized" + }, + { + "appid": 2510950, + "normalized_name": "fly caster vr fly fishing" + }, + { + "appid": 2510960, + "normalized_name": "temtem swarm" + }, + { + "appid": 2510970, + "normalized_name": "the dream office" + }, + { + "appid": 2511000, + "normalized_name": "dinosaur cousin squad" + }, + { + "appid": 2511010, + "normalized_name": "galaxy commanders" + }, + { + "appid": 2511030, + "normalized_name": "deep secret" + }, + { + "appid": 2511040, + "normalized_name": "the third age" + }, + { + "appid": 2511050, + "normalized_name": "brazen blaze 3vs3 brawl arena" + }, + { + "appid": 2511060, + "normalized_name": "merged gravity" + }, + { + "appid": 2511110, + "normalized_name": "z grav clash" + }, + { + "appid": 2511120, + "normalized_name": "新・他の男の精液で孕んでもいいですか…?2 ~ 全身汗だく浮気セックスで妊娠したウェディングプランナーの婚約者 ~" + }, + { + "appid": 2511130, + "normalized_name": "pro shooter vr" + }, + { + "appid": 2511160, + "normalized_name": "clean up squad" + }, + { + "appid": 2511180, + "normalized_name": "pixel royale 3d" + }, + { + "appid": 2511200, + "normalized_name": "twyla" + }, + { + "appid": 2511210, + "normalized_name": "gunboat god" + }, + { + "appid": 2511220, + "normalized_name": "the hallways" + }, + { + "appid": 2511230, + "normalized_name": "pixel boy lost in the castle" + }, + { + "appid": 2511290, + "normalized_name": "two cubes" + }, + { + "appid": 2511300, + "normalized_name": "synapse lockdown" + }, + { + "appid": 2511310, + "normalized_name": "pro cycling manager 25" + }, + { + "appid": 2511320, + "normalized_name": "tour de france 2025" + }, + { + "appid": 2511340, + "normalized_name": "storybook of tactics" + }, + { + "appid": 2511350, + "normalized_name": "make them walk" + }, + { + "appid": 2511400, + "normalized_name": "project revolution" + }, + { + "appid": 2511420, + "normalized_name": "jurassicdragon and the binary relic" + }, + { + "appid": 2511430, + "normalized_name": "the mirror dimension" + }, + { + "appid": 2511440, + "normalized_name": "infinite seek and find" + }, + { + "appid": 2511450, + "normalized_name": "there's no dinosaurs" + }, + { + "appid": 2511500, + "normalized_name": "dominions 6 rise of the pantokrator" + }, + { + "appid": 2511550, + "normalized_name": "voice quest" + }, + { + "appid": 2511570, + "normalized_name": "little shrimp:legend reborn" + }, + { + "appid": 2511600, + "normalized_name": "terre・scramble!" + }, + { + "appid": 2511610, + "normalized_name": "boxes" + }, + { + "appid": 2511620, + "normalized_name": "polyglot language learning quiz" + }, + { + "appid": 2511650, + "normalized_name": "burden of the blue" + }, + { + "appid": 2511660, + "normalized_name": "unfated" + }, + { + "appid": 2511720, + "normalized_name": "where i belong" + }, + { + "appid": 2511730, + "normalized_name": "monstabox" + }, + { + "appid": 2511740, + "normalized_name": "bespoken" + }, + { + "appid": 2511760, + "normalized_name": "nothorian" + }, + { + "appid": 2511770, + "normalized_name": "my kingdom for the princess ii" + }, + { + "appid": 2511780, + "normalized_name": "vestiges fallen tribes" + }, + { + "appid": 2511800, + "normalized_name": "dead in antares" + }, + { + "appid": 2511820, + "normalized_name": "unfeigned depths" + }, + { + "appid": 2511870, + "normalized_name": "hot beaver camp" + }, + { + "appid": 2511890, + "normalized_name": "rowtropia" + }, + { + "appid": 2511900, + "normalized_name": "warrior next" + }, + { + "appid": 2511930, + "normalized_name": "cosmic clash" + }, + { + "appid": 2511940, + "normalized_name": "disruptive" + }, + { + "appid": 2511960, + "normalized_name": "我想要你的心" + }, + { + "appid": 2511970, + "normalized_name": "wonder record shop" + }, + { + "appid": 2511990, + "normalized_name": "quantum war" + }, + { + "appid": 2512010, + "normalized_name": "dog – den letzten beißen die hunde" + }, + { + "appid": 2512040, + "normalized_name": "kniffel" + }, + { + "appid": 2512050, + "normalized_name": "we got compagnie!" + }, + { + "appid": 2512070, + "normalized_name": "the endgame" + }, + { + "appid": 2512080, + "normalized_name": "ddi rally championship" + }, + { + "appid": 2512090, + "normalized_name": "the political machine 2024" + }, + { + "appid": 2512100, + "normalized_name": "dear virginia" + }, + { + "appid": 2512160, + "normalized_name": "monday meltdown" + }, + { + "appid": 2512190, + "normalized_name": "magic pussy chapter 2" + }, + { + "appid": 2512200, + "normalized_name": "universe in cum 2 💦 🌎" + }, + { + "appid": 2512210, + "normalized_name": "blobber" + }, + { + "appid": 2512250, + "normalized_name": "potions & emotions" + }, + { + "appid": 2512260, + "normalized_name": "guns and donuts" + }, + { + "appid": 2512280, + "normalized_name": "spectral trail" + }, + { + "appid": 2512290, + "normalized_name": "sex story ruby and hunter episode 4" + }, + { + "appid": 2512370, + "normalized_name": "a date for the ages" + }, + { + "appid": 2512380, + "normalized_name": "cult of flies" + }, + { + "appid": 2512430, + "normalized_name": "void survivors" + }, + { + "appid": 2512440, + "normalized_name": "marble dash" + }, + { + "appid": 2512450, + "normalized_name": "soulquest" + }, + { + "appid": 2512460, + "normalized_name": "stream basketball" + }, + { + "appid": 2512480, + "normalized_name": "boyfriend exorcist" + }, + { + "appid": 2512490, + "normalized_name": "forgenator" + }, + { + "appid": 2512500, + "normalized_name": "thursday nite thunkin'" + }, + { + "appid": 2512510, + "normalized_name": "trifute online button soccer" + }, + { + "appid": 2512550, + "normalized_name": "clash" + }, + { + "appid": 2512560, + "normalized_name": "butcher's creek" + }, + { + "appid": 2512620, + "normalized_name": "pow vista" + }, + { + "appid": 2512630, + "normalized_name": "one life to alice" + }, + { + "appid": 2512660, + "normalized_name": "vectorball" + }, + { + "appid": 2512680, + "normalized_name": "i'm not sleepy" + }, + { + "appid": 2512690, + "normalized_name": "paradise cleaning sister x slaves" + }, + { + "appid": 2512700, + "normalized_name": "word dungeons" + }, + { + "appid": 2512720, + "normalized_name": "purrfect survivors" + }, + { + "appid": 2512750, + "normalized_name": "oedo trigger vr!!" + }, + { + "appid": 2512800, + "normalized_name": "orbituous" + }, + { + "appid": 2512810, + "normalized_name": "pixel kane" + }, + { + "appid": 2512820, + "normalized_name": "boomeroad" + }, + { + "appid": 2512830, + "normalized_name": "nottolot" + }, + { + "appid": 2512840, + "normalized_name": "doronko wanko" + }, + { + "appid": 2512850, + "normalized_name": "tales of the laser knights" + }, + { + "appid": 2512860, + "normalized_name": "fight! olyn island" + }, + { + "appid": 2512870, + "normalized_name": "d day vr museum" + }, + { + "appid": 2512910, + "normalized_name": "소녀는 꿈의 숲을 여행합니다." + }, + { + "appid": 2512920, + "normalized_name": "garlic builder" + }, + { + "appid": 2512930, + "normalized_name": "guardians of the sanctree" + }, + { + "appid": 2513040, + "normalized_name": "run for exodus" + }, + { + "appid": 2513060, + "normalized_name": "远东四季故事:hello world" + }, + { + "appid": 2513080, + "normalized_name": "to have and to hold" + }, + { + "appid": 2513090, + "normalized_name": "云玩家 口口" + }, + { + "appid": 2513100, + "normalized_name": "blue sky aces" + }, + { + "appid": 2513110, + "normalized_name": "cocked and loaded" + }, + { + "appid": 2513130, + "normalized_name": "intruders" + }, + { + "appid": 2513140, + "normalized_name": "江华号" + }, + { + "appid": 2513170, + "normalized_name": "origami lovers" + }, + { + "appid": 2513180, + "normalized_name": "fruitalistic!" + }, + { + "appid": 2513200, + "normalized_name": "mystic land the search for maphaldo" + }, + { + "appid": 2513220, + "normalized_name": "match war" + }, + { + "appid": 2513230, + "normalized_name": "pawggle" + }, + { + "appid": 2513240, + "normalized_name": "hero tale" + }, + { + "appid": 2513270, + "normalized_name": "uvsu" + }, + { + "appid": 2513280, + "normalized_name": "sonic x shadow generations" + }, + { + "appid": 2513310, + "normalized_name": "bunny revenge" + }, + { + "appid": 2513360, + "normalized_name": "kinny and the star track puzzle" + }, + { + "appid": 2513380, + "normalized_name": "logic escape" + }, + { + "appid": 2513440, + "normalized_name": "eworlds" + }, + { + "appid": 2513490, + "normalized_name": "hell galaxy" + }, + { + "appid": 2513510, + "normalized_name": "superior iq" + }, + { + "appid": 2513540, + "normalized_name": "dreadnought" + }, + { + "appid": 2513580, + "normalized_name": "veritus" + }, + { + "appid": 2513620, + "normalized_name": "伏羲氏" + }, + { + "appid": 2513640, + "normalized_name": "hexagoner" + }, + { + "appid": 2513660, + "normalized_name": "space maze" + }, + { + "appid": 2513700, + "normalized_name": "last week of a king" + }, + { + "appid": 2513810, + "normalized_name": "the forest of conx" + }, + { + "appid": 2513850, + "normalized_name": "apocalypse zombie city" + }, + { + "appid": 2513890, + "normalized_name": "the penguingame 2 lies of penguin" + }, + { + "appid": 2514090, + "normalized_name": "mayday" + }, + { + "appid": 2514100, + "normalized_name": "keepers of the lost arts" + }, + { + "appid": 2514110, + "normalized_name": "verve" + }, + { + "appid": 2514140, + "normalized_name": "tanked out!" + }, + { + "appid": 2514180, + "normalized_name": "excised" + }, + { + "appid": 2514310, + "normalized_name": "mr. k.i.s.s." + }, + { + "appid": 2514330, + "normalized_name": "the rabbit haul" + }, + { + "appid": 2514340, + "normalized_name": "project z the beginning of the end. chapter i" + }, + { + "appid": 2514360, + "normalized_name": "fate of aruna" + }, + { + "appid": 2514390, + "normalized_name": "junk o tron" + }, + { + "appid": 2514400, + "normalized_name": "servonauts" + }, + { + "appid": 2514430, + "normalized_name": "school bus driving simulator" + }, + { + "appid": 2514460, + "normalized_name": "guards!" + }, + { + "appid": 2514470, + "normalized_name": "my mundane life is threatened by the tropes of an rpg!!!" + }, + { + "appid": 2514540, + "normalized_name": "away times" + }, + { + "appid": 2514580, + "normalized_name": "斗鱼战争" + }, + { + "appid": 2514620, + "normalized_name": "touhou dungeon maker the labyrinth of heart" + }, + { + "appid": 2514630, + "normalized_name": "marisa of liartop mountain" + }, + { + "appid": 2514640, + "normalized_name": "all in abyss judge the fake" + }, + { + "appid": 2514650, + "normalized_name": "greed and fear and the rest" + }, + { + "appid": 2514680, + "normalized_name": "时空传说:佣兵王战记" + }, + { + "appid": 2514800, + "normalized_name": "salaryman rescue!" + }, + { + "appid": 2514850, + "normalized_name": "maid slaves & golden dungeon" + }, + { + "appid": 2514890, + "normalized_name": "reverb" + }, + { + "appid": 2514900, + "normalized_name": "your journey of survival" + }, + { + "appid": 2514910, + "normalized_name": "kkckc" + }, + { + "appid": 2514920, + "normalized_name": "emilia's playroom vr" + }, + { + "appid": 2514930, + "normalized_name": "haunted mansion" + }, + { + "appid": 2514950, + "normalized_name": "mini continental saga" + }, + { + "appid": 2514960, + "normalized_name": "refind self the personality test game" + }, + { + "appid": 2514970, + "normalized_name": "kero" + }, + { + "appid": 2515020, + "normalized_name": "final fantasy xvi" + }, + { + "appid": 2515030, + "normalized_name": "dark lord" + }, + { + "appid": 2515050, + "normalized_name": "vault of power" + }, + { + "appid": 2515060, + "normalized_name": "infernal wave" + }, + { + "appid": 2515070, + "normalized_name": "あくありうむ。" + }, + { + "appid": 2515110, + "normalized_name": "about cannons & sparrows" + }, + { + "appid": 2515120, + "normalized_name": "only jump gohome回家" + }, + { + "appid": 2515180, + "normalized_name": "調教カテイ~性開発された肢体は元カレを忘れられない~" + }, + { + "appid": 2515190, + "normalized_name": "blocxlide" + }, + { + "appid": 2515210, + "normalized_name": "skibidi backrooms" + }, + { + "appid": 2515240, + "normalized_name": "welcome to kowloon" + }, + { + "appid": 2515270, + "normalized_name": "キラーの謎 quest of killer" + }, + { + "appid": 2515290, + "normalized_name": "frontball planet" + }, + { + "appid": 2515300, + "normalized_name": "a night in prison" + }, + { + "appid": 2515310, + "normalized_name": "one night burlesque" + }, + { + "appid": 2515340, + "normalized_name": "traintastic" + }, + { + "appid": 2515360, + "normalized_name": "ashcroft" + }, + { + "appid": 2515370, + "normalized_name": "zombie parkour apocalypse" + }, + { + "appid": 2515410, + "normalized_name": "o legado de um herói" + }, + { + "appid": 2515430, + "normalized_name": "sanctua" + }, + { + "appid": 2515470, + "normalized_name": "arinn" + }, + { + "appid": 2515480, + "normalized_name": "frame of mind a game of thoughts." + }, + { + "appid": 2515490, + "normalized_name": "noga" + }, + { + "appid": 2515500, + "normalized_name": "kombate mexicano elexiones" + }, + { + "appid": 2515520, + "normalized_name": "fall of the son" + }, + { + "appid": 2515530, + "normalized_name": "everlasting snooze" + }, + { + "appid": 2515540, + "normalized_name": "battle of tarlis" + }, + { + "appid": 2515560, + "normalized_name": "artificial instincts" + }, + { + "appid": 2515570, + "normalized_name": "project robotomania" + }, + { + "appid": 2515580, + "normalized_name": "spirit of meda" + }, + { + "appid": 2515620, + "normalized_name": "the perfect tower" + }, + { + "appid": 2515660, + "normalized_name": "bloodsworn" + }, + { + "appid": 2515790, + "normalized_name": "g scramble" + }, + { + "appid": 2515860, + "normalized_name": "what?!" + }, + { + "appid": 2515910, + "normalized_name": "laruaville 14" + }, + { + "appid": 2515920, + "normalized_name": "sex simulator beach resort girls" + }, + { + "appid": 2515930, + "normalized_name": "mast up! seas of desire" + }, + { + "appid": 2515950, + "normalized_name": "galactic warship" + }, + { + "appid": 2515960, + "normalized_name": "validus mortis" + }, + { + "appid": 2516030, + "normalized_name": "i will obey you mistress 2" + }, + { + "appid": 2516040, + "normalized_name": "soluble dream" + }, + { + "appid": 2516050, + "normalized_name": "the island" + }, + { + "appid": 2516080, + "normalized_name": "click dungeon" + }, + { + "appid": 2516090, + "normalized_name": "prison colony a convict's tale" + }, + { + "appid": 2516100, + "normalized_name": "skyguard 0 air arcade" + }, + { + "appid": 2516110, + "normalized_name": "soviet zombies" + }, + { + "appid": 2516130, + "normalized_name": "grasshoppers!" + }, + { + "appid": 2516150, + "normalized_name": "codered 911" + }, + { + "appid": 2516170, + "normalized_name": "g.i. joe wrath of cobra" + }, + { + "appid": 2516180, + "normalized_name": "final flock" + }, + { + "appid": 2516190, + "normalized_name": "black jackal" + }, + { + "appid": 2516200, + "normalized_name": "umbra" + }, + { + "appid": 2516220, + "normalized_name": "the legend of legacy hd" + }, + { + "appid": 2516240, + "normalized_name": "save the dungeon!" + }, + { + "appid": 2516270, + "normalized_name": "pa!nt" + }, + { + "appid": 2516280, + "normalized_name": "seoirye" + }, + { + "appid": 2516310, + "normalized_name": "真三国割草 dynastykick" + }, + { + "appid": 2516350, + "normalized_name": "breath of the depth 深海之息" + }, + { + "appid": 2516390, + "normalized_name": "spacebase power 天基火力" + }, + { + "appid": 2516400, + "normalized_name": "tetrocombat" + }, + { + "appid": 2516430, + "normalized_name": "cyborg3003" + }, + { + "appid": 2516460, + "normalized_name": "altered visions" + }, + { + "appid": 2516470, + "normalized_name": "weird rpg 2" + }, + { + "appid": 2516510, + "normalized_name": "dashgunner 0" + }, + { + "appid": 2516530, + "normalized_name": "galvanic bride" + }, + { + "appid": 2516540, + "normalized_name": "herotower(勇者塔)" + }, + { + "appid": 2516550, + "normalized_name": "margoq's lair" + }, + { + "appid": 2516570, + "normalized_name": "infinite borders" + }, + { + "appid": 2516590, + "normalized_name": "human farm practice section" + }, + { + "appid": 2516610, + "normalized_name": "gem galaxy" + }, + { + "appid": 2516650, + "normalized_name": "the m/s cornelia ii incident" + }, + { + "appid": 2516750, + "normalized_name": "vr dinosaur village" + }, + { + "appid": 2516770, + "normalized_name": "my first craft survival" + }, + { + "appid": 2516780, + "normalized_name": "crowned control" + }, + { + "appid": 2516810, + "normalized_name": "dianqi 典妻" + }, + { + "appid": 2516820, + "normalized_name": "luckland" + }, + { + "appid": 2516870, + "normalized_name": "escape from the nursing home" + }, + { + "appid": 2516890, + "normalized_name": "andarin weppes" + }, + { + "appid": 2516900, + "normalized_name": "cats & castles" + }, + { + "appid": 2516910, + "normalized_name": "ronia's guardians" + }, + { + "appid": 2516920, + "normalized_name": "the chef's shift first course" + }, + { + "appid": 2516940, + "normalized_name": "the august before chapter one" + }, + { + "appid": 2516980, + "normalized_name": "heroes & redemption" + }, + { + "appid": 2516990, + "normalized_name": "gunner chan!" + }, + { + "appid": 2517000, + "normalized_name": "byle" + }, + { + "appid": 2517010, + "normalized_name": "九条命" + }, + { + "appid": 2517050, + "normalized_name": "hentai aim puzzle" + }, + { + "appid": 2517060, + "normalized_name": "tune my car tuning studio & car mechanic simulator 2023" + }, + { + "appid": 2517080, + "normalized_name": "psychotic bathtub" + }, + { + "appid": 2517090, + "normalized_name": "黒猫からの挑戦状" + }, + { + "appid": 2517130, + "normalized_name": "invention 4" + }, + { + "appid": 2517150, + "normalized_name": "vagneria" + }, + { + "appid": 2517180, + "normalized_name": "adopted passion realize your dream" + }, + { + "appid": 2517190, + "normalized_name": "champion of venus tayla's big adventure" + }, + { + "appid": 2517200, + "normalized_name": "repair this!" + }, + { + "appid": 2517210, + "normalized_name": "pixels with comics" + }, + { + "appid": 2517220, + "normalized_name": "entity the black day" + }, + { + "appid": 2517240, + "normalized_name": "hazy hollow" + }, + { + "appid": 2517330, + "normalized_name": "wings of redemption" + }, + { + "appid": 2517340, + "normalized_name": "florida love stories" + }, + { + "appid": 2517360, + "normalized_name": "magical blaster" + }, + { + "appid": 2517410, + "normalized_name": "the camp" + }, + { + "appid": 2517440, + "normalized_name": "mini city mayhem" + }, + { + "appid": 2517470, + "normalized_name": "can strike" + }, + { + "appid": 2517500, + "normalized_name": "toymaker" + }, + { + "appid": 2517560, + "normalized_name": "squidding over it" + }, + { + "appid": 2517680, + "normalized_name": "egg game" + }, + { + "appid": 2517760, + "normalized_name": "infection x" + }, + { + "appid": 2517770, + "normalized_name": "swordcar" + }, + { + "appid": 2517790, + "normalized_name": "football star life 23/24" + }, + { + "appid": 2517800, + "normalized_name": "bouncers" + }, + { + "appid": 2517810, + "normalized_name": "the last flame prologue" + }, + { + "appid": 2517840, + "normalized_name": "mastery of fate phantom king's rise" + }, + { + "appid": 2517850, + "normalized_name": "toy shire room one" + }, + { + "appid": 2517860, + "normalized_name": "justwatchmycat" + }, + { + "appid": 2517870, + "normalized_name": "experimentation" + }, + { + "appid": 2517900, + "normalized_name": "noad the priest" + }, + { + "appid": 2517910, + "normalized_name": "finding america the great lakes" + }, + { + "appid": 2517920, + "normalized_name": "nature escapes 4" + }, + { + "appid": 2517940, + "normalized_name": "century of steam" + }, + { + "appid": 2517970, + "normalized_name": "survive the jurassic" + }, + { + "appid": 2517990, + "normalized_name": "project stratarch" + }, + { + "appid": 2518000, + "normalized_name": "rage of mechs" + }, + { + "appid": 2518010, + "normalized_name": "mixing ammos" + }, + { + "appid": 2518200, + "normalized_name": "world spin" + }, + { + "appid": 2518230, + "normalized_name": "another world in the morning" + }, + { + "appid": 2518250, + "normalized_name": "cas puz camera surface puzzle" + }, + { + "appid": 2518260, + "normalized_name": "shapeguard" + }, + { + "appid": 2518270, + "normalized_name": "td tactics" + }, + { + "appid": 2518280, + "normalized_name": "the arena pit" + }, + { + "appid": 2518310, + "normalized_name": "babies vs monsters" + }, + { + "appid": 2518320, + "normalized_name": "dead underworld" + }, + { + "appid": 2518350, + "normalized_name": "match it sexy" + }, + { + "appid": 2518360, + "normalized_name": "sorrow asylum" + }, + { + "appid": 2518410, + "normalized_name": "moroi" + }, + { + "appid": 2518430, + "normalized_name": "the backrooms last expedition" + }, + { + "appid": 2518460, + "normalized_name": "checkers rpg online battles" + }, + { + "appid": 2518480, + "normalized_name": "rocketman" + }, + { + "appid": 2518490, + "normalized_name": "dataminers" + }, + { + "appid": 2518520, + "normalized_name": "woofchat" + }, + { + "appid": 2518540, + "normalized_name": "可可味大冒险" + }, + { + "appid": 2518550, + "normalized_name": "triplets trouble!!!" + }, + { + "appid": 2518560, + "normalized_name": "哥布林信条:起源 goblin creed origins" + }, + { + "appid": 2518590, + "normalized_name": "i'm just a slime" + }, + { + "appid": 2518600, + "normalized_name": "snake jump" + }, + { + "appid": 2518610, + "normalized_name": "where beasts were born" + }, + { + "appid": 2518630, + "normalized_name": "none shall intrude" + }, + { + "appid": 2518660, + "normalized_name": "pet" + }, + { + "appid": 2518670, + "normalized_name": "the wild outback" + }, + { + "appid": 2518680, + "normalized_name": "theory" + }, + { + "appid": 2518690, + "normalized_name": "short warp deep space bounty" + }, + { + "appid": 2518770, + "normalized_name": "forest spirit" + }, + { + "appid": 2518790, + "normalized_name": "hieronymus" + }, + { + "appid": 2518810, + "normalized_name": "sweet dreams" + }, + { + "appid": 2518900, + "normalized_name": "manny's" + }, + { + "appid": 2518910, + "normalized_name": "bluejay's quest" + }, + { + "appid": 2518940, + "normalized_name": "twistex" + }, + { + "appid": 2518960, + "normalized_name": "wizardry proving grounds of the mad overlord" + }, + { + "appid": 2518970, + "normalized_name": "project darkheaz" + }, + { + "appid": 2518990, + "normalized_name": "white wolf treasure hunter 2" + }, + { + "appid": 2519010, + "normalized_name": "ekans" + }, + { + "appid": 2519060, + "normalized_name": "call of duty modern warfare iii" + }, + { + "appid": 2519170, + "normalized_name": "bunraku" + }, + { + "appid": 2519190, + "normalized_name": "stomping grounds" + }, + { + "appid": 2519220, + "normalized_name": "god within vr" + }, + { + "appid": 2519240, + "normalized_name": "feywing" + }, + { + "appid": 2519260, + "normalized_name": "roadpipe" + }, + { + "appid": 2519280, + "normalized_name": "spellsword" + }, + { + "appid": 2519290, + "normalized_name": "gravity force" + }, + { + "appid": 2519310, + "normalized_name": "僵尸禁地 艾希" + }, + { + "appid": 2519370, + "normalized_name": "フィッシュオアチキン チキンサバイバー" + }, + { + "appid": 2519380, + "normalized_name": "hentai devil" + }, + { + "appid": 2519400, + "normalized_name": "escape from nalaxion" + }, + { + "appid": 2519420, + "normalized_name": "cat city" + }, + { + "appid": 2519440, + "normalized_name": "tangled crisis" + }, + { + "appid": 2519450, + "normalized_name": "hidden nightmares" + }, + { + "appid": 2519470, + "normalized_name": "project rogue" + }, + { + "appid": 2519510, + "normalized_name": "bonfire kingdom" + }, + { + "appid": 2519520, + "normalized_name": "死写 shisya" + }, + { + "appid": 2519550, + "normalized_name": "a scoundrel in the underlair" + }, + { + "appid": 2519560, + "normalized_name": "the lancaster leak crisis at call center" + }, + { + "appid": 2519570, + "normalized_name": "higher or black" + }, + { + "appid": 2519580, + "normalized_name": "jtac beats" + }, + { + "appid": 2519650, + "normalized_name": "mana quest" + }, + { + "appid": 2519700, + "normalized_name": "convicted" + }, + { + "appid": 2519790, + "normalized_name": "forlorn outcast" + }, + { + "appid": 2519830, + "normalized_name": "resonite" + }, + { + "appid": 2519850, + "normalized_name": "pigsaw" + }, + { + "appid": 2519860, + "normalized_name": "ecosphere" + }, + { + "appid": 2519880, + "normalized_name": "entropic decay prologue" + }, + { + "appid": 2519890, + "normalized_name": "菲利斯的堕落日记" + }, + { + "appid": 2519900, + "normalized_name": "十位灵魂" + }, + { + "appid": 2519910, + "normalized_name": "creature rumble" + }, + { + "appid": 2519930, + "normalized_name": "浪漫进程" + }, + { + "appid": 2519940, + "normalized_name": "deru" + }, + { + "appid": 2519970, + "normalized_name": "jaden & jasmine lost memories" + }, + { + "appid": 2519980, + "normalized_name": "demise survival uncharted" + }, + { + "appid": 2519990, + "normalized_name": "idle build rpg" + }, + { + "appid": 2520000, + "normalized_name": "hynpytol" + }, + { + "appid": 2520010, + "normalized_name": "hell university" + }, + { + "appid": 2520030, + "normalized_name": "random blocks" + }, + { + "appid": 2520100, + "normalized_name": "puda + the kid" + }, + { + "appid": 2520110, + "normalized_name": "milfvania ep. 3" + }, + { + "appid": 2520130, + "normalized_name": "rv kingdom 0x0297" + }, + { + "appid": 2520180, + "normalized_name": "onlyrun" + }, + { + "appid": 2520190, + "normalized_name": "cats in heat convenience coworkers" + }, + { + "appid": 2520240, + "normalized_name": "platformer helmet" + }, + { + "appid": 2520250, + "normalized_name": "catty cathy" + }, + { + "appid": 2520280, + "normalized_name": "powers in the basement" + }, + { + "appid": 2520310, + "normalized_name": "turret rampage" + }, + { + "appid": 2520320, + "normalized_name": "the elder tales" + }, + { + "appid": 2520360, + "normalized_name": "warm monkey" + }, + { + "appid": 2520370, + "normalized_name": "like birds" + }, + { + "appid": 2520400, + "normalized_name": "nox mortalis" + }, + { + "appid": 2520410, + "normalized_name": "dragons legacy" + }, + { + "appid": 2520430, + "normalized_name": "project watcher" + }, + { + "appid": 2520460, + "normalized_name": "unease" + }, + { + "appid": 2520490, + "normalized_name": "mirror throne auto battler" + }, + { + "appid": 2520520, + "normalized_name": "daikon creatures" + }, + { + "appid": 2520530, + "normalized_name": "junkyard fury breakout" + }, + { + "appid": 2520560, + "normalized_name": "killon" + }, + { + "appid": 2520570, + "normalized_name": "gumbowl's adventure" + }, + { + "appid": 2520580, + "normalized_name": "up n' down" + }, + { + "appid": 2520590, + "normalized_name": "femdom university 0" + }, + { + "appid": 2520600, + "normalized_name": "void chaser" + }, + { + "appid": 2520610, + "normalized_name": "4d xd" + }, + { + "appid": 2520630, + "normalized_name": "game time glizzys" + }, + { + "appid": 2520650, + "normalized_name": "esoterica order" + }, + { + "appid": 2520660, + "normalized_name": "flow of sound" + }, + { + "appid": 2520670, + "normalized_name": "ioo" + }, + { + "appid": 2520690, + "normalized_name": "way to fall" + }, + { + "appid": 2520760, + "normalized_name": "fantasy up" + }, + { + "appid": 2520770, + "normalized_name": "骑士派对" + }, + { + "appid": 2520780, + "normalized_name": "net raiders" + }, + { + "appid": 2520860, + "normalized_name": "lawin catch the kim" + }, + { + "appid": 2520870, + "normalized_name": "love in the dark" + }, + { + "appid": 2520890, + "normalized_name": "turqu chan in the hentai laboratory" + }, + { + "appid": 2520900, + "normalized_name": "the house on ninth avenue" + }, + { + "appid": 2520920, + "normalized_name": "tragedy theater" + }, + { + "appid": 2520930, + "normalized_name": "loverse" + }, + { + "appid": 2520940, + "normalized_name": "who killed the streamer?" + }, + { + "appid": 2520950, + "normalized_name": "the light in the darkness" + }, + { + "appid": 2520960, + "normalized_name": "dawnofcombat" + }, + { + "appid": 2521010, + "normalized_name": "expedition wildlife" + }, + { + "appid": 2521020, + "normalized_name": "tales of landor" + }, + { + "appid": 2521070, + "normalized_name": "prv" + }, + { + "appid": 2521100, + "normalized_name": "obby" + }, + { + "appid": 2521110, + "normalized_name": "only cum!" + }, + { + "appid": 2521140, + "normalized_name": "creeper" + }, + { + "appid": 2521150, + "normalized_name": "galactic heroes rise of the black alliance" + }, + { + "appid": 2521160, + "normalized_name": "the merlies" + }, + { + "appid": 2521170, + "normalized_name": "looking for fael" + }, + { + "appid": 2521180, + "normalized_name": "迷走 二律背反" + }, + { + "appid": 2521190, + "normalized_name": "werelderfgoed romeins aquaduct van nijmegen en berg en dal" + }, + { + "appid": 2521200, + "normalized_name": "wicked game" + }, + { + "appid": 2521230, + "normalized_name": "space blade" + }, + { + "appid": 2521240, + "normalized_name": "rush commander" + }, + { + "appid": 2521250, + "normalized_name": "penguru" + }, + { + "appid": 2521270, + "normalized_name": "roc's odyssey" + }, + { + "appid": 2521330, + "normalized_name": "call of farming" + }, + { + "appid": 2521350, + "normalized_name": "heatchain" + }, + { + "appid": 2521380, + "normalized_name": "legacy of kain soul reaver 1&2" + }, + { + "appid": 2521390, + "normalized_name": "darker skies for pc" + }, + { + "appid": 2521400, + "normalized_name": "愚人船 narrenschiff" + }, + { + "appid": 2521450, + "normalized_name": "pteranodon" + }, + { + "appid": 2521460, + "normalized_name": "evasion from cluster 42" + }, + { + "appid": 2521470, + "normalized_name": "zen with a pen" + }, + { + "appid": 2521480, + "normalized_name": "the lands of hyberian" + }, + { + "appid": 2521490, + "normalized_name": "black powder desolation" + }, + { + "appid": 2521500, + "normalized_name": "speechbound a language rpg" + }, + { + "appid": 2521510, + "normalized_name": "partysaur dino mayhem" + }, + { + "appid": 2521530, + "normalized_name": "damocles gaze" + }, + { + "appid": 2521550, + "normalized_name": "shroomchitect" + }, + { + "appid": 2521560, + "normalized_name": "furious farm total reap out" + }, + { + "appid": 2521590, + "normalized_name": "liferoot.bat" + }, + { + "appid": 2521600, + "normalized_name": "little known galaxy" + }, + { + "appid": 2521630, + "normalized_name": "mini settlers" + }, + { + "appid": 2521650, + "normalized_name": "forgotten lectures fall of a dynasty the beginning" + }, + { + "appid": 2521660, + "normalized_name": "mendacium" + }, + { + "appid": 2521670, + "normalized_name": "escape the charon" + }, + { + "appid": 2521730, + "normalized_name": "der anzeigenhauptmeister" + }, + { + "appid": 2521740, + "normalized_name": "shipwrecked" + }, + { + "appid": 2521760, + "normalized_name": "slimeria" + }, + { + "appid": 2521800, + "normalized_name": "vrso bare knuckle fighting" + }, + { + "appid": 2521890, + "normalized_name": "hues of hope a painter's tale" + }, + { + "appid": 2521910, + "normalized_name": "태백 가문의 사람들 prologue" + }, + { + "appid": 2521920, + "normalized_name": "wizard heist" + }, + { + "appid": 2521940, + "normalized_name": "square word back to work🐯" + }, + { + "appid": 2521950, + "normalized_name": "deaduction" + }, + { + "appid": 2521970, + "normalized_name": "omnifate" + }, + { + "appid": 2522040, + "normalized_name": "epic trains 4" + }, + { + "appid": 2522060, + "normalized_name": "stacks jungle!" + }, + { + "appid": 2522120, + "normalized_name": "airframe ultra" + }, + { + "appid": 2522160, + "normalized_name": "letter lancers" + }, + { + "appid": 2522190, + "normalized_name": "the night watch ranger survival" + }, + { + "appid": 2522200, + "normalized_name": "旅者" + }, + { + "appid": 2522210, + "normalized_name": "myth of the moirai" + }, + { + "appid": 2522270, + "normalized_name": "rune gate" + }, + { + "appid": 2522280, + "normalized_name": "心跳女友 千雅篇" + }, + { + "appid": 2522290, + "normalized_name": "bridge hunter" + }, + { + "appid": 2522300, + "normalized_name": "tactical rampart" + }, + { + "appid": 2522370, + "normalized_name": "only down" + }, + { + "appid": 2522410, + "normalized_name": "the foreigner" + }, + { + "appid": 2522430, + "normalized_name": "break arts iii" + }, + { + "appid": 2522440, + "normalized_name": "dark killing" + }, + { + "appid": 2522450, + "normalized_name": "the midnight town stories adam's diary" + }, + { + "appid": 2522520, + "normalized_name": "only up with friends" + }, + { + "appid": 2522530, + "normalized_name": "last hit defense" + }, + { + "appid": 2522550, + "normalized_name": "mini garden cafe" + }, + { + "appid": 2522560, + "normalized_name": "sister x slaves" + }, + { + "appid": 2522570, + "normalized_name": "kingdom" + }, + { + "appid": 2522590, + "normalized_name": "monster is me" + }, + { + "appid": 2522620, + "normalized_name": "幸运宝石" + }, + { + "appid": 2522630, + "normalized_name": "mechanical growth" + }, + { + "appid": 2522650, + "normalized_name": "horror loop" + }, + { + "appid": 2522660, + "normalized_name": "deep under" + }, + { + "appid": 2522670, + "normalized_name": "fun infused arcade" + }, + { + "appid": 2522740, + "normalized_name": "honeysun" + }, + { + "appid": 2522760, + "normalized_name": "music man 2 new land" + }, + { + "appid": 2522780, + "normalized_name": "sifc survival (in first contact)" + }, + { + "appid": 2522830, + "normalized_name": "heroes project" + }, + { + "appid": 2522850, + "normalized_name": "the pleasuremancer" + }, + { + "appid": 2522860, + "normalized_name": "the abyss" + }, + { + "appid": 2522900, + "normalized_name": "goddess of immortality" + }, + { + "appid": 2522920, + "normalized_name": "rise & muse" + }, + { + "appid": 2522940, + "normalized_name": "hyperlight survivor" + }, + { + "appid": 2522970, + "normalized_name": "rotting rumble zombie football" + }, + { + "appid": 2523070, + "normalized_name": "crowd" + }, + { + "appid": 2523090, + "normalized_name": "hentai neon nights" + }, + { + "appid": 2523100, + "normalized_name": "grey lines" + }, + { + "appid": 2523120, + "normalized_name": "king of the bridge" + }, + { + "appid": 2523150, + "normalized_name": "the flat" + }, + { + "appid": 2523160, + "normalized_name": "诡雅异俗" + }, + { + "appid": 2523250, + "normalized_name": "fatalzone outbreak" + }, + { + "appid": 2523310, + "normalized_name": "lingo 2" + }, + { + "appid": 2523320, + "normalized_name": "mr. amo" + }, + { + "appid": 2523340, + "normalized_name": "laruaville 2" + }, + { + "appid": 2523360, + "normalized_name": "laruaville 3" + }, + { + "appid": 2523390, + "normalized_name": "chat guess games" + }, + { + "appid": 2523400, + "normalized_name": "disclosure" + }, + { + "appid": 2523430, + "normalized_name": "please leave a message" + }, + { + "appid": 2523440, + "normalized_name": "vogvhathos" + }, + { + "appid": 2523450, + "normalized_name": "survivors last stand" + }, + { + "appid": 2523460, + "normalized_name": "backrooms interception" + }, + { + "appid": 2523500, + "normalized_name": "one fine tourney" + }, + { + "appid": 2523510, + "normalized_name": "piroot" + }, + { + "appid": 2523530, + "normalized_name": "womb" + }, + { + "appid": 2523550, + "normalized_name": "sexwife no limit" + }, + { + "appid": 2523620, + "normalized_name": "self portrait" + }, + { + "appid": 2523630, + "normalized_name": "sex story ruby and hunter episode 5" + }, + { + "appid": 2523640, + "normalized_name": "echoes of karma" + }, + { + "appid": 2523650, + "normalized_name": "ninpaw" + }, + { + "appid": 2523690, + "normalized_name": "king crab" + }, + { + "appid": 2523720, + "normalized_name": "gears of war reloaded" + }, + { + "appid": 2523780, + "normalized_name": "no gravity no sanity" + }, + { + "appid": 2523800, + "normalized_name": "isolation one" + }, + { + "appid": 2523820, + "normalized_name": "three random archives" + }, + { + "appid": 2523890, + "normalized_name": "whispers of the eyeless" + }, + { + "appid": 2523910, + "normalized_name": "the entrepreneur" + }, + { + "appid": 2523930, + "normalized_name": "sexual super hero" + }, + { + "appid": 2523960, + "normalized_name": "roanoke" + }, + { + "appid": 2523980, + "normalized_name": "grave digging me" + }, + { + "appid": 2524000, + "normalized_name": "shop is done" + }, + { + "appid": 2524010, + "normalized_name": "merchant master" + }, + { + "appid": 2524150, + "normalized_name": "heroes de peronia" + }, + { + "appid": 2524170, + "normalized_name": "chaotic pursuit" + }, + { + "appid": 2524180, + "normalized_name": "antigolfity" + }, + { + "appid": 2524190, + "normalized_name": "circus elephant" + }, + { + "appid": 2524200, + "normalized_name": "killa" + }, + { + "appid": 2524220, + "normalized_name": "古魂" + }, + { + "appid": 2524270, + "normalized_name": "coco" + }, + { + "appid": 2524280, + "normalized_name": "ジグソーアイランド" + }, + { + "appid": 2524290, + "normalized_name": "kanji kitchen learn japanese" + }, + { + "appid": 2524300, + "normalized_name": "exit veil" + }, + { + "appid": 2524340, + "normalized_name": "corrupt" + }, + { + "appid": 2524360, + "normalized_name": "with my past" + }, + { + "appid": 2524400, + "normalized_name": "洞腹境【aplacedominatedbyholes】" + }, + { + "appid": 2524410, + "normalized_name": "it's hot pot time!" + }, + { + "appid": 2524420, + "normalized_name": "shadows on the walls" + }, + { + "appid": 2524480, + "normalized_name": "cozy space 物宅空间" + }, + { + "appid": 2524490, + "normalized_name": "labyrinth trials" + }, + { + "appid": 2524500, + "normalized_name": "metafighters" + }, + { + "appid": 2524530, + "normalized_name": "fun with the fitzgeralds" + }, + { + "appid": 2524570, + "normalized_name": "异星孤垒" + }, + { + "appid": 2524580, + "normalized_name": "embers return to dragonland" + }, + { + "appid": 2524590, + "normalized_name": "soul's majesty rise of gilda" + }, + { + "appid": 2524610, + "normalized_name": "кукуево / kukuevo" + }, + { + "appid": 2524630, + "normalized_name": "pim the forgotten" + }, + { + "appid": 2524650, + "normalized_name": "chaos crafters" + }, + { + "appid": 2524700, + "normalized_name": "altarium" + }, + { + "appid": 2524710, + "normalized_name": "corrupted" + }, + { + "appid": 2524720, + "normalized_name": "little eden" + }, + { + "appid": 2524740, + "normalized_name": "day off simulator" + }, + { + "appid": 2524780, + "normalized_name": "echo of the waves" + }, + { + "appid": 2524860, + "normalized_name": "spot the object" + }, + { + "appid": 2524870, + "normalized_name": "adrift in the backrooms" + }, + { + "appid": 2524890, + "normalized_name": "pixel gun 3d pc" + }, + { + "appid": 2524920, + "normalized_name": "deadpoint" + }, + { + "appid": 2524930, + "normalized_name": "we escaped a twisted game" + }, + { + "appid": 2524950, + "normalized_name": "lumiel the awakening" + }, + { + "appid": 2524980, + "normalized_name": "under pressure" + }, + { + "appid": 2525040, + "normalized_name": "etos" + }, + { + "appid": 2525110, + "normalized_name": "yarashii hotel" + }, + { + "appid": 2525120, + "normalized_name": "鈴集無名の丘 ~ little doll queen" + }, + { + "appid": 2525130, + "normalized_name": "我!墨姬!造人抗秦!" + }, + { + "appid": 2525140, + "normalized_name": "godwalker" + }, + { + "appid": 2525150, + "normalized_name": "garden of aiden" + }, + { + "appid": 2525170, + "normalized_name": "mystical riddles ship from beyond collector's" + }, + { + "appid": 2525190, + "normalized_name": "the rush" + }, + { + "appid": 2525210, + "normalized_name": "timespinner 2 unwoven dream" + }, + { + "appid": 2525230, + "normalized_name": "my lovely stepsister" + }, + { + "appid": 2525270, + "normalized_name": "the house [zebaxx]" + }, + { + "appid": 2525300, + "normalized_name": "bahamut and the waqwaq tree" + }, + { + "appid": 2525310, + "normalized_name": "drop duchy" + }, + { + "appid": 2525380, + "normalized_name": "tomb raider iv vi" + }, + { + "appid": 2525410, + "normalized_name": "no vacancy tonight" + }, + { + "appid": 2525420, + "normalized_name": "sex simulator yoga class" + }, + { + "appid": 2525440, + "normalized_name": "scrumlords" + }, + { + "appid": 2525450, + "normalized_name": "eyra the crow maiden" + }, + { + "appid": 2525490, + "normalized_name": "harvest havoc" + }, + { + "appid": 2525510, + "normalized_name": "nitro gen omega" + }, + { + "appid": 2525530, + "normalized_name": "champions ascension" + }, + { + "appid": 2525550, + "normalized_name": "they linger" + }, + { + "appid": 2525560, + "normalized_name": "candles" + }, + { + "appid": 2525570, + "normalized_name": "happy mask" + }, + { + "appid": 2525580, + "normalized_name": "planet valley" + }, + { + "appid": 2525620, + "normalized_name": "waifu force" + }, + { + "appid": 2525630, + "normalized_name": "adventure of the skullmancer" + }, + { + "appid": 2525650, + "normalized_name": "御剑" + }, + { + "appid": 2525660, + "normalized_name": "dead wells the devil fragment" + }, + { + "appid": 2525680, + "normalized_name": "pp" + }, + { + "appid": 2525690, + "normalized_name": "lost balloons airy mates" + }, + { + "appid": 2525720, + "normalized_name": "g ump" + }, + { + "appid": 2525750, + "normalized_name": "heaven attack!" + }, + { + "appid": 2525810, + "normalized_name": "witch and lilies" + }, + { + "appid": 2525830, + "normalized_name": "the lost prince" + }, + { + "appid": 2525870, + "normalized_name": "what's outside" + }, + { + "appid": 2525880, + "normalized_name": "sanguo's ambition 4 three kingdoms" + }, + { + "appid": 2525940, + "normalized_name": "the winter's embrace celestial gateway" + }, + { + "appid": 2525950, + "normalized_name": "silly frog" + }, + { + "appid": 2525990, + "normalized_name": "quad battle" + }, + { + "appid": 2526010, + "normalized_name": "star legacy vr" + }, + { + "appid": 2526040, + "normalized_name": "alchemist the garden" + }, + { + "appid": 2526060, + "normalized_name": "vapor up! with man with apple" + }, + { + "appid": 2526070, + "normalized_name": "dirt and flo" + }, + { + "appid": 2526080, + "normalized_name": "juna the dreamwalker" + }, + { + "appid": 2526130, + "normalized_name": "straycloud" + }, + { + "appid": 2526140, + "normalized_name": "rope & ball" + }, + { + "appid": 2526150, + "normalized_name": "cyber sprint" + }, + { + "appid": 2526160, + "normalized_name": "damsels in distress" + }, + { + "appid": 2526200, + "normalized_name": "eyes never wake" + }, + { + "appid": 2526210, + "normalized_name": "hope of bion" + }, + { + "appid": 2526220, + "normalized_name": "knights only a brush with destiny" + }, + { + "appid": 2526270, + "normalized_name": "son of killwa" + }, + { + "appid": 2526300, + "normalized_name": "cube rpg" + }, + { + "appid": 2526310, + "normalized_name": "out of sight" + }, + { + "appid": 2526360, + "normalized_name": "secret school" + }, + { + "appid": 2526370, + "normalized_name": "the lord of the night pombero reborn" + }, + { + "appid": 2526380, + "normalized_name": "sword of convallaria" + }, + { + "appid": 2526390, + "normalized_name": "police car escape simulator" + }, + { + "appid": 2526410, + "normalized_name": "athos" + }, + { + "appid": 2526450, + "normalized_name": "conviction" + }, + { + "appid": 2526470, + "normalized_name": "treasure royale" + }, + { + "appid": 2526490, + "normalized_name": "noble's life kingdom reborn prologue" + }, + { + "appid": 2526500, + "normalized_name": "caught on camera" + }, + { + "appid": 2526510, + "normalized_name": "chump" + }, + { + "appid": 2526520, + "normalized_name": "deck of darkness infernal depths" + }, + { + "appid": 2526560, + "normalized_name": "faire trade" + }, + { + "appid": 2526570, + "normalized_name": "band of crusaders" + }, + { + "appid": 2526580, + "normalized_name": "backrooms doors" + }, + { + "appid": 2526600, + "normalized_name": "herosbine the unknown island" + }, + { + "appid": 2526610, + "normalized_name": "wiki's wild ride" + }, + { + "appid": 2526620, + "normalized_name": "we're closed sorry" + }, + { + "appid": 2526670, + "normalized_name": "chemical sort" + }, + { + "appid": 2526850, + "normalized_name": "plants in rush" + }, + { + "appid": 2526860, + "normalized_name": "exodus" + }, + { + "appid": 2526880, + "normalized_name": "defender bros" + }, + { + "appid": 2526940, + "normalized_name": "non fellows" + }, + { + "appid": 2526990, + "normalized_name": "ravenwood acres" + }, + { + "appid": 2527030, + "normalized_name": "hook adventure" + }, + { + "appid": 2527040, + "normalized_name": "spy racing" + }, + { + "appid": 2527050, + "normalized_name": "wrong landing" + }, + { + "appid": 2527080, + "normalized_name": "chaos" + }, + { + "appid": 2527140, + "normalized_name": "platform gun" + }, + { + "appid": 2527160, + "normalized_name": "desktop explorer" + }, + { + "appid": 2527170, + "normalized_name": "纷争乱斗" + }, + { + "appid": 2527260, + "normalized_name": "cyber cell" + }, + { + "appid": 2527270, + "normalized_name": "warofgods athena" + }, + { + "appid": 2527300, + "normalized_name": "lily fantasia" + }, + { + "appid": 2527310, + "normalized_name": "void obscura part one lost little lilith" + }, + { + "appid": 2527320, + "normalized_name": "xiangqi—the chinese chess" + }, + { + "appid": 2527340, + "normalized_name": "cosmic roads" + }, + { + "appid": 2527350, + "normalized_name": "水母之夜" + }, + { + "appid": 2527360, + "normalized_name": "mizeria" + }, + { + "appid": 2527370, + "normalized_name": "darkless" + }, + { + "appid": 2527390, + "normalized_name": "dead rising deluxe remaster" + }, + { + "appid": 2527400, + "normalized_name": "plowing" + }, + { + "appid": 2527420, + "normalized_name": "climbing over it with a spear" + }, + { + "appid": 2527450, + "normalized_name": "nie no hakoniwa" + }, + { + "appid": 2527460, + "normalized_name": "arcana alchemia" + }, + { + "appid": 2527500, + "normalized_name": "miside" + }, + { + "appid": 2527540, + "normalized_name": "uncharted ocean 2" + }, + { + "appid": 2527550, + "normalized_name": "roll the bones" + }, + { + "appid": 2527570, + "normalized_name": "drone warfare global ops" + }, + { + "appid": 2527580, + "normalized_name": "teenage mutant ninja turtles arcade wrath of the mutants" + }, + { + "appid": 2527600, + "normalized_name": "the detective reaper invites" + }, + { + "appid": 2527610, + "normalized_name": "journey record" + }, + { + "appid": 2527640, + "normalized_name": "alvara" + }, + { + "appid": 2527650, + "normalized_name": "system reject" + }, + { + "appid": 2527660, + "normalized_name": "the awakener forgotten oath" + }, + { + "appid": 2527670, + "normalized_name": "parafron" + }, + { + "appid": 2527690, + "normalized_name": "快穿少女拼图" + }, + { + "appid": 2527700, + "normalized_name": "내 여동생과 친구의 여동생을 교환해 보았다" + }, + { + "appid": 2527710, + "normalized_name": "texnoplazm" + }, + { + "appid": 2527750, + "normalized_name": "lost oath" + }, + { + "appid": 2527760, + "normalized_name": "search & find hidden objects" + }, + { + "appid": 2527850, + "normalized_name": "gloom system breach" + }, + { + "appid": 2527880, + "normalized_name": "undead west" + }, + { + "appid": 2527890, + "normalized_name": "car detailing simulator vr" + }, + { + "appid": 2527940, + "normalized_name": "little cheese works" + }, + { + "appid": 2527970, + "normalized_name": "sea of rifts" + }, + { + "appid": 2527980, + "normalized_name": "home restoration vr" + }, + { + "appid": 2528000, + "normalized_name": "dead underground" + }, + { + "appid": 2528010, + "normalized_name": "santaower defense" + }, + { + "appid": 2528080, + "normalized_name": "west town defense" + }, + { + "appid": 2528100, + "normalized_name": "yello adventures" + }, + { + "appid": 2528110, + "normalized_name": "baseball club" + }, + { + "appid": 2528120, + "normalized_name": "ruled by rule" + }, + { + "appid": 2528130, + "normalized_name": "cameraman the pilot episode" + }, + { + "appid": 2528140, + "normalized_name": "coin smith" + }, + { + "appid": 2528210, + "normalized_name": "dragon's ruler" + }, + { + "appid": 2528230, + "normalized_name": "fallback!" + }, + { + "appid": 2528240, + "normalized_name": "tinkertech" + }, + { + "appid": 2528340, + "normalized_name": "the secrets of skellig" + }, + { + "appid": 2528400, + "normalized_name": "albatross" + }, + { + "appid": 2528410, + "normalized_name": "price for freedom gold and sand" + }, + { + "appid": 2528430, + "normalized_name": "feed me chef" + }, + { + "appid": 2528450, + "normalized_name": "i am short" + }, + { + "appid": 2528470, + "normalized_name": "the last light" + }, + { + "appid": 2528520, + "normalized_name": "jank cube vr" + }, + { + "appid": 2528580, + "normalized_name": "jake's halloween night" + }, + { + "appid": 2528600, + "normalized_name": "garnouille must live!" + }, + { + "appid": 2528610, + "normalized_name": "adventure field remake" + }, + { + "appid": 2528640, + "normalized_name": "suborbital" + }, + { + "appid": 2528650, + "normalized_name": "the shrouded parchments" + }, + { + "appid": 2528710, + "normalized_name": "meowing point" + }, + { + "appid": 2528730, + "normalized_name": "nh bid at mscypaa the game" + }, + { + "appid": 2528800, + "normalized_name": "talents" + }, + { + "appid": 2528820, + "normalized_name": "a step from insanity" + }, + { + "appid": 2528850, + "normalized_name": "bellboy boris" + }, + { + "appid": 2528860, + "normalized_name": "dirty texts melissa's secret" + }, + { + "appid": 2528870, + "normalized_name": "dirty texts new intern" + }, + { + "appid": 2528880, + "normalized_name": "dirty texts are you sure?" + }, + { + "appid": 2528890, + "normalized_name": "pin zhi" + }, + { + "appid": 2528900, + "normalized_name": "the ceo love me" + }, + { + "appid": 2528910, + "normalized_name": "labyrinthum" + }, + { + "appid": 2528920, + "normalized_name": "the dark door" + }, + { + "appid": 2528930, + "normalized_name": "warriors of freedom" + }, + { + "appid": 2528940, + "normalized_name": "unending" + }, + { + "appid": 2528950, + "normalized_name": "jelly battle" + }, + { + "appid": 2528960, + "normalized_name": "03" + }, + { + "appid": 2528980, + "normalized_name": "crowded mysteries" + }, + { + "appid": 2529010, + "normalized_name": "one more try prologue" + }, + { + "appid": 2529020, + "normalized_name": "cyber souls prologue" + }, + { + "appid": 2529050, + "normalized_name": "a doctor's term" + }, + { + "appid": 2529080, + "normalized_name": "stellar initiative" + }, + { + "appid": 2529090, + "normalized_name": "drill to the stars" + }, + { + "appid": 2529110, + "normalized_name": "medice to arms" + }, + { + "appid": 2529120, + "normalized_name": "old school" + }, + { + "appid": 2529130, + "normalized_name": "urbo dream one" + }, + { + "appid": 2529140, + "normalized_name": "kaleidola" + }, + { + "appid": 2529160, + "normalized_name": "giggly's park" + }, + { + "appid": 2529170, + "normalized_name": "storage hustle" + }, + { + "appid": 2529180, + "normalized_name": "color splash cats" + }, + { + "appid": 2529190, + "normalized_name": "build a city block" + }, + { + "appid": 2529210, + "normalized_name": "revenge of ilcoin" + }, + { + "appid": 2529220, + "normalized_name": "anarchy park" + }, + { + "appid": 2529230, + "normalized_name": "launcher heroes" + }, + { + "appid": 2529260, + "normalized_name": "diorama drift" + }, + { + "appid": 2529270, + "normalized_name": "harrowed world portents in red modern gothic vampire rpg" + }, + { + "appid": 2529280, + "normalized_name": "deadville" + }, + { + "appid": 2529290, + "normalized_name": "dampf the cozy tower defense" + }, + { + "appid": 2529340, + "normalized_name": "the lost son" + }, + { + "appid": 2529400, + "normalized_name": "legend of peks" + }, + { + "appid": 2529410, + "normalized_name": "noiramore academy" + }, + { + "appid": 2529450, + "normalized_name": "fishman's last stand" + }, + { + "appid": 2529460, + "normalized_name": "lonely turret 2" + }, + { + "appid": 2529490, + "normalized_name": "cooldown" + }, + { + "appid": 2529510, + "normalized_name": "fish on the desktop" + }, + { + "appid": 2529520, + "normalized_name": "magical girl konoha" + }, + { + "appid": 2529530, + "normalized_name": "starfall invaders" + }, + { + "appid": 2529540, + "normalized_name": "硬币与仙人掌 (coins & wishpalm)" + }, + { + "appid": 2529560, + "normalized_name": "legend of the nine colored deer (九色鹿传说)" + }, + { + "appid": 2529570, + "normalized_name": "enigma code prologue" + }, + { + "appid": 2529580, + "normalized_name": "warzoom" + }, + { + "appid": 2529590, + "normalized_name": "童子命 序章" + }, + { + "appid": 2529610, + "normalized_name": "para ark" + }, + { + "appid": 2529620, + "normalized_name": "anime angels (feat. tomozero)" + }, + { + "appid": 2529710, + "normalized_name": "modulor" + }, + { + "appid": 2529740, + "normalized_name": "bring the chickens home" + }, + { + "appid": 2529750, + "normalized_name": "raining city millions recollections" + }, + { + "appid": 2529770, + "normalized_name": "chromosome evil 2" + }, + { + "appid": 2529780, + "normalized_name": "ムラヤキヴィラン" + }, + { + "appid": 2529790, + "normalized_name": "grime ii" + }, + { + "appid": 2529810, + "normalized_name": "dark desire mute 6" + }, + { + "appid": 2529820, + "normalized_name": "wedding witch" + }, + { + "appid": 2529830, + "normalized_name": "pixel colony" + }, + { + "appid": 2529880, + "normalized_name": "royal card clash" + }, + { + "appid": 2529910, + "normalized_name": "the brittle epoch" + }, + { + "appid": 2529930, + "normalized_name": "pleasure party 2" + }, + { + "appid": 2529960, + "normalized_name": "alpha nomos" + }, + { + "appid": 2530030, + "normalized_name": "the creature zone vr nightfall" + }, + { + "appid": 2530040, + "normalized_name": "magic smasher" + }, + { + "appid": 2530050, + "normalized_name": "platform game maker" + }, + { + "appid": 2530060, + "normalized_name": "improbability control bureau" + }, + { + "appid": 2530080, + "normalized_name": "cyber prison management" + }, + { + "appid": 2530100, + "normalized_name": "horny spy secret mission" + }, + { + "appid": 2530150, + "normalized_name": "volden idle" + }, + { + "appid": 2530160, + "normalized_name": "stream or die!" + }, + { + "appid": 2530170, + "normalized_name": "perimeter legate" + }, + { + "appid": 2530180, + "normalized_name": "more orke" + }, + { + "appid": 2530240, + "normalized_name": "top jump prologue" + }, + { + "appid": 2530250, + "normalized_name": "parkside decayed soul manipulation" + }, + { + "appid": 2530260, + "normalized_name": "bug bots" + }, + { + "appid": 2530280, + "normalized_name": "blooming" + }, + { + "appid": 2530300, + "normalized_name": "落叶归根 climbing back to the mothership" + }, + { + "appid": 2530310, + "normalized_name": "gifted the tombs" + }, + { + "appid": 2530420, + "normalized_name": "fatermyth" + }, + { + "appid": 2530430, + "normalized_name": "terror at oakheart" + }, + { + "appid": 2530450, + "normalized_name": "continuum" + }, + { + "appid": 2530460, + "normalized_name": "hypnofantasis" + }, + { + "appid": 2530470, + "normalized_name": "garden of witches" + }, + { + "appid": 2530490, + "normalized_name": "lost eidolons veil of the witch" + }, + { + "appid": 2530500, + "normalized_name": "dropkick navvy first step" + }, + { + "appid": 2530530, + "normalized_name": "the dark cowboy" + }, + { + "appid": 2530540, + "normalized_name": "mighty slap" + }, + { + "appid": 2530550, + "normalized_name": "cerulean singe" + }, + { + "appid": 2530560, + "normalized_name": "rusty rabbit" + }, + { + "appid": 2530570, + "normalized_name": "idle stellar" + }, + { + "appid": 2530600, + "normalized_name": "rim soul jar" + }, + { + "appid": 2530620, + "normalized_name": "soul devourer" + }, + { + "appid": 2530670, + "normalized_name": "ironwolf free non vr" + }, + { + "appid": 2530680, + "normalized_name": "world of rune" + }, + { + "appid": 2530690, + "normalized_name": "blood rose ~ origin of the plague" + }, + { + "appid": 2530710, + "normalized_name": "marionette eden breakers" + }, + { + "appid": 2530730, + "normalized_name": "hentai abigail" + }, + { + "appid": 2530810, + "normalized_name": "ghost in the mirror" + }, + { + "appid": 2530850, + "normalized_name": "vampire domain" + }, + { + "appid": 2530860, + "normalized_name": "elemental escape" + }, + { + "appid": 2530870, + "normalized_name": "garbage country" + }, + { + "appid": 2530890, + "normalized_name": "fruit conflict" + }, + { + "appid": 2530920, + "normalized_name": "神様ノ筐庭" + }, + { + "appid": 2530930, + "normalized_name": "azorius" + }, + { + "appid": 2530940, + "normalized_name": "what the gravity" + }, + { + "appid": 2530950, + "normalized_name": "rock star life simulator" + }, + { + "appid": 2530970, + "normalized_name": "ominous" + }, + { + "appid": 2530980, + "normalized_name": "tales of graces f" + }, + { + "appid": 2530990, + "normalized_name": "solitaire quest garden story" + }, + { + "appid": 2531000, + "normalized_name": "five night at scapegoat" + }, + { + "appid": 2531010, + "normalized_name": "fallen prince" + }, + { + "appid": 2531040, + "normalized_name": "rune golf" + }, + { + "appid": 2531050, + "normalized_name": "cannon block ball" + }, + { + "appid": 2531060, + "normalized_name": "last minute" + }, + { + "appid": 2531080, + "normalized_name": "toy racer turbo wheels playground zone" + }, + { + "appid": 2531160, + "normalized_name": "rageblocks" + }, + { + "appid": 2531170, + "normalized_name": "lord of darkness aftermath" + }, + { + "appid": 2531210, + "normalized_name": "wizard of foam magic" + }, + { + "appid": 2531230, + "normalized_name": "whispering shadows" + }, + { + "appid": 2531240, + "normalized_name": "crossroads what was lost collector's" + }, + { + "appid": 2531300, + "normalized_name": "sylvio black waters" + }, + { + "appid": 2531310, + "normalized_name": "the last of us part ii" + }, + { + "appid": 2531330, + "normalized_name": "jaderaze inferno" + }, + { + "appid": 2531340, + "normalized_name": "oasis tokyo" + }, + { + "appid": 2531360, + "normalized_name": "something's in the air redux" + }, + { + "appid": 2531370, + "normalized_name": "blacksmith. song of two kings." + }, + { + "appid": 2531410, + "normalized_name": "stick and balls" + }, + { + "appid": 2531420, + "normalized_name": "bird watching simulator" + }, + { + "appid": 2531440, + "normalized_name": "redneck joe vs the swamp zombies" + }, + { + "appid": 2531460, + "normalized_name": "robo rush" + }, + { + "appid": 2531530, + "normalized_name": "sex simulator yoga girls" + }, + { + "appid": 2531540, + "normalized_name": "she fell off" + }, + { + "appid": 2531550, + "normalized_name": "shooter" + }, + { + "appid": 2531560, + "normalized_name": "project arcade" + }, + { + "appid": 2531570, + "normalized_name": "soundgrass" + }, + { + "appid": 2531760, + "normalized_name": "mindful ways" + }, + { + "appid": 2531780, + "normalized_name": "one perfect day" + }, + { + "appid": 2531790, + "normalized_name": "froggin' around" + }, + { + "appid": 2531830, + "normalized_name": "horrors of helmsfirth" + }, + { + "appid": 2531840, + "normalized_name": "goeland" + }, + { + "appid": 2531890, + "normalized_name": "the button game" + }, + { + "appid": 2531910, + "normalized_name": "cards of destiny" + }, + { + "appid": 2531930, + "normalized_name": "alien land" + }, + { + "appid": 2531940, + "normalized_name": "stray path" + }, + { + "appid": 2531950, + "normalized_name": "白河村" + }, + { + "appid": 2531960, + "normalized_name": "help no brake" + }, + { + "appid": 2531970, + "normalized_name": "nobody's home" + }, + { + "appid": 2532010, + "normalized_name": "territorial hissing" + }, + { + "appid": 2532020, + "normalized_name": "psycholog" + }, + { + "appid": 2532050, + "normalized_name": "vampires' melody 2" + }, + { + "appid": 2532110, + "normalized_name": "cabbageball" + }, + { + "appid": 2532130, + "normalized_name": "捣塔英雄(dotower)" + }, + { + "appid": 2532160, + "normalized_name": "case closed" + }, + { + "appid": 2532180, + "normalized_name": "dead end mission" + }, + { + "appid": 2532210, + "normalized_name": "time of the wizard" + }, + { + "appid": 2532230, + "normalized_name": "scp nemesi alpha testing" + }, + { + "appid": 2532270, + "normalized_name": "currently unstable" + }, + { + "appid": 2532300, + "normalized_name": "the weird dream" + }, + { + "appid": 2532310, + "normalized_name": "line link" + }, + { + "appid": 2532320, + "normalized_name": "樱花校园之恋模拟器" + }, + { + "appid": 2532340, + "normalized_name": "unaware in the city" + }, + { + "appid": 2532350, + "normalized_name": "duskbound" + }, + { + "appid": 2532360, + "normalized_name": "point salad the board game" + }, + { + "appid": 2532430, + "normalized_name": "supernormal" + }, + { + "appid": 2532470, + "normalized_name": "bellfortis" + }, + { + "appid": 2532480, + "normalized_name": "warhammer 40 000 mechanicus ii" + }, + { + "appid": 2532490, + "normalized_name": "rise of industry 2" + }, + { + "appid": 2532500, + "normalized_name": "formilion" + }, + { + "appid": 2532550, + "normalized_name": "lizards must die" + }, + { + "appid": 2532590, + "normalized_name": "sea of treasures" + }, + { + "appid": 2532620, + "normalized_name": "detective barnett the cursed artifact" + }, + { + "appid": 2532640, + "normalized_name": "eternal battle vr" + }, + { + "appid": 2532660, + "normalized_name": "castle push" + }, + { + "appid": 2532700, + "normalized_name": "end up alone" + }, + { + "appid": 2532720, + "normalized_name": "the red beret 红色贝雷帽" + }, + { + "appid": 2532730, + "normalized_name": "super monsters" + }, + { + "appid": 2532760, + "normalized_name": "dreadsite survival" + }, + { + "appid": 2532770, + "normalized_name": "dragonero" + }, + { + "appid": 2532780, + "normalized_name": "anaphora" + }, + { + "appid": 2532830, + "normalized_name": "dark galaxy" + }, + { + "appid": 2532880, + "normalized_name": "void wars" + }, + { + "appid": 2532910, + "normalized_name": "dash or die" + }, + { + "appid": 2532930, + "normalized_name": "heroes of egypt the curse of sethos collector's" + }, + { + "appid": 2532940, + "normalized_name": "ardaria" + }, + { + "appid": 2532990, + "normalized_name": "cursed fables a voice to die for collector's" + }, + { + "appid": 2533000, + "normalized_name": "small kingdoms" + }, + { + "appid": 2533020, + "normalized_name": "renaissance kingdom wars" + }, + { + "appid": 2533030, + "normalized_name": "small kingdoms prologue" + }, + { + "appid": 2533050, + "normalized_name": "sex story cuckold life episode 1" + }, + { + "appid": 2533060, + "normalized_name": "heart and core" + }, + { + "appid": 2533120, + "normalized_name": "peepo hop!" + }, + { + "appid": 2533140, + "normalized_name": "endless night the darkness within" + }, + { + "appid": 2533180, + "normalized_name": "mellowollem" + }, + { + "appid": 2533230, + "normalized_name": "immortal love true treasure" + }, + { + "appid": 2533260, + "normalized_name": "simply moose" + }, + { + "appid": 2533280, + "normalized_name": "twisty puzzle world" + }, + { + "appid": 2533320, + "normalized_name": "living legends bound by wishes" + }, + { + "appid": 2533330, + "normalized_name": "artificia armata" + }, + { + "appid": 2533350, + "normalized_name": "arctic's adventure" + }, + { + "appid": 2533370, + "normalized_name": "heads up! phones down" + }, + { + "appid": 2533410, + "normalized_name": "quadruzzle" + }, + { + "appid": 2533420, + "normalized_name": "junkyard dive" + }, + { + "appid": 2533430, + "normalized_name": "poly backrooms" + }, + { + "appid": 2533470, + "normalized_name": "bizarre mushroom cycle simulator" + }, + { + "appid": 2533600, + "normalized_name": "bloodthief" + }, + { + "appid": 2533700, + "normalized_name": "love in debt!?" + }, + { + "appid": 2533740, + "normalized_name": "the book of hiro prologue" + }, + { + "appid": 2533830, + "normalized_name": "bareback reincarnation it's just that easy to brave a different world" + }, + { + "appid": 2533850, + "normalized_name": "geopolaris conquer & dominate" + }, + { + "appid": 2533870, + "normalized_name": "the book of hiro" + }, + { + "appid": 2533890, + "normalized_name": "conrad's quest" + }, + { + "appid": 2533910, + "normalized_name": "她的连裤袜" + }, + { + "appid": 2533920, + "normalized_name": "sp(l/r)ite スプライト" + }, + { + "appid": 2533950, + "normalized_name": "hot and lovely :uniform" + }, + { + "appid": 2533960, + "normalized_name": "summerhouse" + }, + { + "appid": 2533970, + "normalized_name": "fisher's wharf" + }, + { + "appid": 2533980, + "normalized_name": "big adventure trip to europe 5 collector's" + }, + { + "appid": 2534010, + "normalized_name": "vacation adventures park ranger 15 collector's" + }, + { + "appid": 2534020, + "normalized_name": "dungeon tale" + }, + { + "appid": 2534060, + "normalized_name": "xonix casual" + }, + { + "appid": 2534120, + "normalized_name": "self defense dojo" + }, + { + "appid": 2534140, + "normalized_name": "culture warz" + }, + { + "appid": 2534190, + "normalized_name": "the eastern drive car simulator" + }, + { + "appid": 2534200, + "normalized_name": "five days of hell" + }, + { + "appid": 2534210, + "normalized_name": "that damn goat" + }, + { + "appid": 2534250, + "normalized_name": "nerobi" + }, + { + "appid": 2534300, + "normalized_name": "zomwick" + }, + { + "appid": 2534310, + "normalized_name": "bomber party" + }, + { + "appid": 2534370, + "normalized_name": "yars rising" + }, + { + "appid": 2534450, + "normalized_name": "geko in search of the big fly" + }, + { + "appid": 2534470, + "normalized_name": "roll & ball" + }, + { + "appid": 2534490, + "normalized_name": "vexed heroes" + }, + { + "appid": 2534520, + "normalized_name": "the north woods" + }, + { + "appid": 2534550, + "normalized_name": "hate me not" + }, + { + "appid": 2534620, + "normalized_name": "side by size" + }, + { + "appid": 2534630, + "normalized_name": "falling ever" + }, + { + "appid": 2534650, + "normalized_name": "meet her there" + }, + { + "appid": 2534660, + "normalized_name": "alaca" + }, + { + "appid": 2534670, + "normalized_name": "elon simulator spend like a trillionaire" + }, + { + "appid": 2534780, + "normalized_name": "cryowakers" + }, + { + "appid": 2534790, + "normalized_name": "landraisers" + }, + { + "appid": 2534830, + "normalized_name": "大话战国online" + }, + { + "appid": 2534850, + "normalized_name": "micro rogue" + }, + { + "appid": 2534860, + "normalized_name": "real motocross driving simulator" + }, + { + "appid": 2534930, + "normalized_name": "super mayor" + }, + { + "appid": 2534940, + "normalized_name": "desktop basketball 2" + }, + { + "appid": 2534980, + "normalized_name": "stories in glass winter" + }, + { + "appid": 2534990, + "normalized_name": "just find it 3" + }, + { + "appid": 2535010, + "normalized_name": "hollybound" + }, + { + "appid": 2535060, + "normalized_name": "a world of wishes" + }, + { + "appid": 2535370, + "normalized_name": "tyrant's twilight" + }, + { + "appid": 2535380, + "normalized_name": "星火" + }, + { + "appid": 2535410, + "normalized_name": "homeland defense" + }, + { + "appid": 2535420, + "normalized_name": "sex with ogre 😈🍆👩" + }, + { + "appid": 2535440, + "normalized_name": "shadows of the damned hella" + }, + { + "appid": 2535490, + "normalized_name": "一起放烟花" + }, + { + "appid": 2535560, + "normalized_name": "sunstone war" + }, + { + "appid": 2535570, + "normalized_name": "skyline sprinters" + }, + { + "appid": 2535600, + "normalized_name": "at light speed" + }, + { + "appid": 2535640, + "normalized_name": "mystery box 3 escape the room" + }, + { + "appid": 2535670, + "normalized_name": "frog's adventure" + }, + { + "appid": 2535680, + "normalized_name": "riot control simulator rookie day" + }, + { + "appid": 2535690, + "normalized_name": "offroad survival" + }, + { + "appid": 2535700, + "normalized_name": "reactomatic" + }, + { + "appid": 2535730, + "normalized_name": "lost girl in mirror" + }, + { + "appid": 2535770, + "normalized_name": "黄毛漂流记" + }, + { + "appid": 2535780, + "normalized_name": "witch cram sorceries" + }, + { + "appid": 2535790, + "normalized_name": "episode 666" + }, + { + "appid": 2535800, + "normalized_name": "v恋" + }, + { + "appid": 2535810, + "normalized_name": "last resort" + }, + { + "appid": 2535820, + "normalized_name": "arkanoid eternal battle battle royale f2p" + }, + { + "appid": 2535830, + "normalized_name": "squirrel stapler" + }, + { + "appid": 2535840, + "normalized_name": "sand sails pirate legends" + }, + { + "appid": 2535850, + "normalized_name": "ada tainted soil" + }, + { + "appid": 2535860, + "normalized_name": "russian fight simulator" + }, + { + "appid": 2535870, + "normalized_name": "aimrogue" + }, + { + "appid": 2535880, + "normalized_name": "laruaville 5" + }, + { + "appid": 2535890, + "normalized_name": "laruaville 6" + }, + { + "appid": 2535910, + "normalized_name": "pirate haven" + }, + { + "appid": 2535920, + "normalized_name": "reach the light" + }, + { + "appid": 2535960, + "normalized_name": "winken" + }, + { + "appid": 2535970, + "normalized_name": "league td" + }, + { + "appid": 2535990, + "normalized_name": "ghost seeker hunter simulation" + }, + { + "appid": 2536020, + "normalized_name": "expiri tenebris" + }, + { + "appid": 2536070, + "normalized_name": "nephilim uprising" + }, + { + "appid": 2536090, + "normalized_name": "there's a duck behind you!" + }, + { + "appid": 2536120, + "normalized_name": "mousey" + }, + { + "appid": 2536130, + "normalized_name": "son of perun kharkiv" + }, + { + "appid": 2536140, + "normalized_name": "red dust colony" + }, + { + "appid": 2536220, + "normalized_name": "moons of true magic" + }, + { + "appid": 2536250, + "normalized_name": "vagrant strider" + }, + { + "appid": 2536260, + "normalized_name": "mayhemers" + }, + { + "appid": 2536300, + "normalized_name": "the monk" + }, + { + "appid": 2536330, + "normalized_name": "cloud jump" + }, + { + "appid": 2536420, + "normalized_name": "midnight acres" + }, + { + "appid": 2536460, + "normalized_name": "shutdown" + }, + { + "appid": 2536470, + "normalized_name": "mankind" + }, + { + "appid": 2536490, + "normalized_name": "cartel simulator" + }, + { + "appid": 2536500, + "normalized_name": "entities" + }, + { + "appid": 2536530, + "normalized_name": "the pony factory" + }, + { + "appid": 2536570, + "normalized_name": "mercenary warriors" + }, + { + "appid": 2536590, + "normalized_name": "stick survivors" + }, + { + "appid": 2536600, + "normalized_name": "dusty derby" + }, + { + "appid": 2536650, + "normalized_name": "typecast" + }, + { + "appid": 2536660, + "normalized_name": "death again" + }, + { + "appid": 2536670, + "normalized_name": "project vesperi" + }, + { + "appid": 2536710, + "normalized_name": "absence of light" + }, + { + "appid": 2536730, + "normalized_name": "butterfly again" + }, + { + "appid": 2536750, + "normalized_name": "afterlife" + }, + { + "appid": 2536760, + "normalized_name": "paper planes plus" + }, + { + "appid": 2536800, + "normalized_name": "theurgic" + }, + { + "appid": 2536810, + "normalized_name": "どきどきシャッターチャンス~恋のパズルを組み立てて♡~" + }, + { + "appid": 2536820, + "normalized_name": "天下統一ssb" + }, + { + "appid": 2536840, + "normalized_name": "ginka" + }, + { + "appid": 2536870, + "normalized_name": "nazizombie's slayer" + }, + { + "appid": 2536890, + "normalized_name": "everspell" + }, + { + "appid": 2536960, + "normalized_name": "shadowveil legend of the five rings" + }, + { + "appid": 2536970, + "normalized_name": "motel simulator create renovate & grow business" + }, + { + "appid": 2536990, + "normalized_name": "tomb stalkers" + }, + { + "appid": 2537010, + "normalized_name": "mistery" + }, + { + "appid": 2537020, + "normalized_name": "shelflife art school detective" + }, + { + "appid": 2537040, + "normalized_name": "starship scramble" + }, + { + "appid": 2537050, + "normalized_name": "микрорайон" + }, + { + "appid": 2537070, + "normalized_name": "mushroom path" + }, + { + "appid": 2537120, + "normalized_name": "911 prey" + }, + { + "appid": 2537140, + "normalized_name": "islanders vr" + }, + { + "appid": 2537150, + "normalized_name": "everbee" + }, + { + "appid": 2537190, + "normalized_name": "vicera" + }, + { + "appid": 2537220, + "normalized_name": "ardent passions" + }, + { + "appid": 2537270, + "normalized_name": "4am" + }, + { + "appid": 2537290, + "normalized_name": "fantasy adventure builder" + }, + { + "appid": 2537300, + "normalized_name": "大宋英雄传(songheros)" + }, + { + "appid": 2537330, + "normalized_name": "up to the unknown" + }, + { + "appid": 2537360, + "normalized_name": "aurora" + }, + { + "appid": 2537380, + "normalized_name": "frog bridge scape" + }, + { + "appid": 2537390, + "normalized_name": "deathwave aftermath" + }, + { + "appid": 2537430, + "normalized_name": "solar smash annihilation" + }, + { + "appid": 2537450, + "normalized_name": "my little career" + }, + { + "appid": 2537470, + "normalized_name": "vultures scavengers of death" + }, + { + "appid": 2537480, + "normalized_name": "boyscout patrick's town" + }, + { + "appid": 2537490, + "normalized_name": "psyche60s" + }, + { + "appid": 2537510, + "normalized_name": "fittest fire" + }, + { + "appid": 2537550, + "normalized_name": "polymino" + }, + { + "appid": 2537560, + "normalized_name": "进击的打工人 attack of the worker" + }, + { + "appid": 2537590, + "normalized_name": "microsoft flight simulator 2024" + }, + { + "appid": 2537630, + "normalized_name": "the last golfer" + }, + { + "appid": 2537650, + "normalized_name": "meatshot" + }, + { + "appid": 2537730, + "normalized_name": "noblesse oblige legacy of the sorcerer kings" + }, + { + "appid": 2537750, + "normalized_name": "alex's hope & alex's solitude" + }, + { + "appid": 2537760, + "normalized_name": "phantom's call" + }, + { + "appid": 2537770, + "normalized_name": "stay still 2" + }, + { + "appid": 2537780, + "normalized_name": "brood ma dadda" + }, + { + "appid": 2537910, + "normalized_name": "black otaku 2 taekwondo is in my blood" + }, + { + "appid": 2537920, + "normalized_name": "just crow things" + }, + { + "appid": 2537960, + "normalized_name": "dirt bicycle rider simulator" + }, + { + "appid": 2537970, + "normalized_name": "莎比编辑器 sube" + }, + { + "appid": 2537980, + "normalized_name": "drăculești" + }, + { + "appid": 2538000, + "normalized_name": "dojo masters" + }, + { + "appid": 2538030, + "normalized_name": "bunny's pizza tycoon" + }, + { + "appid": 2538070, + "normalized_name": "the puzzle of blocks" + }, + { + "appid": 2538090, + "normalized_name": "park up car" + }, + { + "appid": 2538100, + "normalized_name": "鬼小队 ghostbros" + }, + { + "appid": 2538120, + "normalized_name": "gob" + }, + { + "appid": 2538160, + "normalized_name": "stealth blade" + }, + { + "appid": 2538170, + "normalized_name": "the clubies" + }, + { + "appid": 2538180, + "normalized_name": "arcade fc" + }, + { + "appid": 2538200, + "normalized_name": "villa escape escape room" + }, + { + "appid": 2538220, + "normalized_name": "joint recall" + }, + { + "appid": 2538250, + "normalized_name": "steampunk runner" + }, + { + "appid": 2538270, + "normalized_name": "project_03" + }, + { + "appid": 2538280, + "normalized_name": "dreaming in the mountains" + }, + { + "appid": 2538300, + "normalized_name": "scp contamination" + }, + { + "appid": 2538330, + "normalized_name": "finding anastasia" + }, + { + "appid": 2538340, + "normalized_name": "liquid space dimension" + }, + { + "appid": 2538350, + "normalized_name": "folklore shadows of the shackled" + }, + { + "appid": 2538370, + "normalized_name": "long story short" + }, + { + "appid": 2538380, + "normalized_name": "flower simulator" + }, + { + "appid": 2538390, + "normalized_name": "angry penguin" + }, + { + "appid": 2538430, + "normalized_name": "school cafeteria simulator" + }, + { + "appid": 2538440, + "normalized_name": "giant robot game" + }, + { + "appid": 2538480, + "normalized_name": "collecstar" + }, + { + "appid": 2538490, + "normalized_name": "the house" + }, + { + "appid": 2538510, + "normalized_name": "chromaticasters" + }, + { + "appid": 2538520, + "normalized_name": "double date yuri visual novel" + }, + { + "appid": 2538570, + "normalized_name": "m.e.r.c. genesis" + }, + { + "appid": 2538580, + "normalized_name": "games for stream!" + }, + { + "appid": 2538670, + "normalized_name": "as planned" + }, + { + "appid": 2538710, + "normalized_name": "samira´s house" + }, + { + "appid": 2538730, + "normalized_name": "lover's trophy" + }, + { + "appid": 2538750, + "normalized_name": "disorder in the court" + }, + { + "appid": 2538780, + "normalized_name": "keali" + }, + { + "appid": 2538790, + "normalized_name": "drift odyssey" + }, + { + "appid": 2538830, + "normalized_name": "mini star survivor" + }, + { + "appid": 2538840, + "normalized_name": "horizon to crinoa have faith in radiance prototype" + }, + { + "appid": 2538860, + "normalized_name": "追气球之旅" + }, + { + "appid": 2538870, + "normalized_name": "false hero" + }, + { + "appid": 2538880, + "normalized_name": "灵拳 spirit x strike" + }, + { + "appid": 2538890, + "normalized_name": "steel circuit" + }, + { + "appid": 2538910, + "normalized_name": "夏末白夜" + }, + { + "appid": 2539000, + "normalized_name": "squat ops" + }, + { + "appid": 2539070, + "normalized_name": "i commissioned some bunnies 2" + }, + { + "appid": 2539090, + "normalized_name": "cosmo rider" + }, + { + "appid": 2539110, + "normalized_name": "gravity league" + }, + { + "appid": 2539120, + "normalized_name": "erotic justice" + }, + { + "appid": 2539160, + "normalized_name": "the solar queen" + }, + { + "appid": 2539180, + "normalized_name": "mayhem survivors animals" + }, + { + "appid": 2539200, + "normalized_name": "終わりの鐘が鳴る前に chapter.2" + }, + { + "appid": 2539210, + "normalized_name": "ice cold case detective rpg" + }, + { + "appid": 2539230, + "normalized_name": "the sweetest ring" + }, + { + "appid": 2539280, + "normalized_name": "deserted \"firefly islands\" chronicles" + }, + { + "appid": 2539330, + "normalized_name": "george mcgeehan gamer hero" + }, + { + "appid": 2539340, + "normalized_name": "planetsmith" + }, + { + "appid": 2539350, + "normalized_name": "myths of rules" + }, + { + "appid": 2539360, + "normalized_name": "the world is drowning" + }, + { + "appid": 2539420, + "normalized_name": "midnight witch starlight" + }, + { + "appid": 2539440, + "normalized_name": "stay" + }, + { + "appid": 2539520, + "normalized_name": "z.o.n.a origin" + }, + { + "appid": 2539560, + "normalized_name": "fill multicolor" + }, + { + "appid": 2539570, + "normalized_name": "quantum cortex" + }, + { + "appid": 2539600, + "normalized_name": "only jump!" + }, + { + "appid": 2539620, + "normalized_name": "the sun shines over us" + }, + { + "appid": 2539730, + "normalized_name": "aatral" + }, + { + "appid": 2539790, + "normalized_name": "夏日事件簿 summer fantasy" + }, + { + "appid": 2539800, + "normalized_name": "dog years" + }, + { + "appid": 2539820, + "normalized_name": "lapidary jewel craft simulator" + }, + { + "appid": 2539840, + "normalized_name": "ping pong deluxe" + }, + { + "appid": 2539850, + "normalized_name": "nightscape" + }, + { + "appid": 2539870, + "normalized_name": "haunt or heist" + }, + { + "appid": 2539880, + "normalized_name": "c.a.r.d.s. rpg the misty battlefield" + }, + { + "appid": 2539890, + "normalized_name": "vr dinosaur island paradise" + }, + { + "appid": 2539910, + "normalized_name": "xf extreme formula" + }, + { + "appid": 2539940, + "normalized_name": "jinn" + }, + { + "appid": 2539960, + "normalized_name": "orbo's odyssey" + }, + { + "appid": 2539990, + "normalized_name": "talivan" + }, + { + "appid": 2540000, + "normalized_name": "super spooky subgame spectacular" + }, + { + "appid": 2540060, + "normalized_name": "nodelord" + }, + { + "appid": 2540080, + "normalized_name": "rust'n ruin" + }, + { + "appid": 2540100, + "normalized_name": "crime scene cleaner prologue" + }, + { + "appid": 2540110, + "normalized_name": "666 second rule" + }, + { + "appid": 2540160, + "normalized_name": "interstellar impact" + }, + { + "appid": 2540230, + "normalized_name": "vae victis khan" + }, + { + "appid": 2540260, + "normalized_name": "spellslinger" + }, + { + "appid": 2540270, + "normalized_name": "rainbow cream saga" + }, + { + "appid": 2540310, + "normalized_name": "listen" + }, + { + "appid": 2540400, + "normalized_name": "puppetmaster" + }, + { + "appid": 2540410, + "normalized_name": "adventures with alan parkour 3d" + }, + { + "appid": 2540420, + "normalized_name": "alibi the dinner party" + }, + { + "appid": 2540450, + "normalized_name": "the unseen" + }, + { + "appid": 2540460, + "normalized_name": "faded stories full moon" + }, + { + "appid": 2540480, + "normalized_name": "sculpt" + }, + { + "appid": 2540490, + "normalized_name": "cool cucumber cricket" + }, + { + "appid": 2540510, + "normalized_name": "twistingo turtle bay collector's" + }, + { + "appid": 2540530, + "normalized_name": "cabbie!" + }, + { + "appid": 2540540, + "normalized_name": "escape hades's jails vr" + }, + { + "appid": 2540550, + "normalized_name": "thinkexplosive" + }, + { + "appid": 2540620, + "normalized_name": "astro" + }, + { + "appid": 2540630, + "normalized_name": "cooking craze" + }, + { + "appid": 2540650, + "normalized_name": "keyframes" + }, + { + "appid": 2540670, + "normalized_name": "terralysia" + }, + { + "appid": 2540680, + "normalized_name": "a loving family episode 1" + }, + { + "appid": 2540690, + "normalized_name": "ufindo" + }, + { + "appid": 2540800, + "normalized_name": "dreamsweeper" + }, + { + "appid": 2540810, + "normalized_name": "nyran survivors" + }, + { + "appid": 2540820, + "normalized_name": "starfend" + }, + { + "appid": 2540840, + "normalized_name": "mega hero" + }, + { + "appid": 2540860, + "normalized_name": "生嚿叉燒好過生你" + }, + { + "appid": 2540940, + "normalized_name": "last rebirth" + }, + { + "appid": 2540960, + "normalized_name": "2099 gravity havoc" + }, + { + "appid": 2540970, + "normalized_name": "stançact sexy tenacious girls" + }, + { + "appid": 2540980, + "normalized_name": "lighthouse simulator" + }, + { + "appid": 2541020, + "normalized_name": "parry king" + }, + { + "appid": 2541050, + "normalized_name": "dungeon ∞ create" + }, + { + "appid": 2541070, + "normalized_name": "legendary slide platinum" + }, + { + "appid": 2541100, + "normalized_name": "goblin's bizarre adventure" + }, + { + "appid": 2541140, + "normalized_name": "the echo whispers" + }, + { + "appid": 2541150, + "normalized_name": "the simplest game in the world" + }, + { + "appid": 2541160, + "normalized_name": "新宿葬命" + }, + { + "appid": 2541170, + "normalized_name": "g modeアーカイブス+ 女神異聞録ペルソナ 異空の塔編" + }, + { + "appid": 2541180, + "normalized_name": "g modeアーカイブス+ 魔神転生 blind thinker" + }, + { + "appid": 2541190, + "normalized_name": "g modeアーカイブス49 グレゴリーホラーショー" + }, + { + "appid": 2541200, + "normalized_name": "デジプラコレクション まるごと鉄道!ミニ ~jr東日本編~" + }, + { + "appid": 2541210, + "normalized_name": "eldgear" + }, + { + "appid": 2541300, + "normalized_name": "within the unknown" + }, + { + "appid": 2541310, + "normalized_name": "the cable guy" + }, + { + "appid": 2541320, + "normalized_name": "tilted" + }, + { + "appid": 2541360, + "normalized_name": "tales from the arcade starship murder" + }, + { + "appid": 2541370, + "normalized_name": "hentai direct her" + }, + { + "appid": 2541380, + "normalized_name": "mystery box 2 evolution" + }, + { + "appid": 2541400, + "normalized_name": "dead alone" + }, + { + "appid": 2541440, + "normalized_name": "3am in leicester" + }, + { + "appid": 2541470, + "normalized_name": "年上お姉さんを独り占めしたい! possessing my older sister" + }, + { + "appid": 2541480, + "normalized_name": "take a deep breath" + }, + { + "appid": 2541520, + "normalized_name": "deep dark space" + }, + { + "appid": 2541530, + "normalized_name": "aethus" + }, + { + "appid": 2541550, + "normalized_name": "one box one goal" + }, + { + "appid": 2541560, + "normalized_name": "archetype blue" + }, + { + "appid": 2541580, + "normalized_name": "cosmic resistance" + }, + { + "appid": 2541590, + "normalized_name": "flow parkour" + }, + { + "appid": 2541670, + "normalized_name": "steel executor" + }, + { + "appid": 2541740, + "normalized_name": "the hallway escape room" + }, + { + "appid": 2541750, + "normalized_name": "journey beyond the edge of the world" + }, + { + "appid": 2541770, + "normalized_name": "ether@net" + }, + { + "appid": 2541780, + "normalized_name": "trident's tale" + }, + { + "appid": 2541820, + "normalized_name": "possibly endless golf" + }, + { + "appid": 2541890, + "normalized_name": "abnormality" + }, + { + "appid": 2541900, + "normalized_name": "battledrive.io" + }, + { + "appid": 2541930, + "normalized_name": "cozynauts" + }, + { + "appid": 2541940, + "normalized_name": "lust of god" + }, + { + "appid": 2541950, + "normalized_name": "sirens" + }, + { + "appid": 2541980, + "normalized_name": "melvin's blocky adventure" + }, + { + "appid": 2541990, + "normalized_name": "dash x survivors" + }, + { + "appid": 2542010, + "normalized_name": "only wish" + }, + { + "appid": 2542020, + "normalized_name": "duskfade" + }, + { + "appid": 2542060, + "normalized_name": "天のゆくるる" + }, + { + "appid": 2542080, + "normalized_name": "shoot & sow" + }, + { + "appid": 2542090, + "normalized_name": "latmos explorer" + }, + { + "appid": 2542100, + "normalized_name": "geometric paradox td" + }, + { + "appid": 2542110, + "normalized_name": "mimicries" + }, + { + "appid": 2542120, + "normalized_name": "ninja gaiden ragebound" + }, + { + "appid": 2542140, + "normalized_name": "ketz galactic overlords" + }, + { + "appid": 2542170, + "normalized_name": "moonshire" + }, + { + "appid": 2542190, + "normalized_name": "rhino runner" + }, + { + "appid": 2542310, + "normalized_name": "fatal run 2089" + }, + { + "appid": 2542320, + "normalized_name": "dcop" + }, + { + "appid": 2542350, + "normalized_name": "masks of the void" + }, + { + "appid": 2542370, + "normalized_name": "dune dasher" + }, + { + "appid": 2542380, + "normalized_name": "cyber space driver" + }, + { + "appid": 2542390, + "normalized_name": "soul war" + }, + { + "appid": 2542430, + "normalized_name": "5050" + }, + { + "appid": 2542440, + "normalized_name": "2024 u.s. election simulator" + }, + { + "appid": 2542450, + "normalized_name": "aplovvare collection" + }, + { + "appid": 2542460, + "normalized_name": "monstronomy" + }, + { + "appid": 2542470, + "normalized_name": "chain reaction" + }, + { + "appid": 2542520, + "normalized_name": "v gate" + }, + { + "appid": 2542530, + "normalized_name": "waking up way back home" + }, + { + "appid": 2542550, + "normalized_name": "momo and the mine" + }, + { + "appid": 2542560, + "normalized_name": "tale of two cranes" + }, + { + "appid": 2542580, + "normalized_name": "rodolfo mascarpone y ramón cazanuecos amenaza en el molinillo" + }, + { + "appid": 2542600, + "normalized_name": "stab" + }, + { + "appid": 2542630, + "normalized_name": "football stars legend 24" + }, + { + "appid": 2542650, + "normalized_name": "sole seeker" + }, + { + "appid": 2542670, + "normalized_name": "cookie game" + }, + { + "appid": 2542680, + "normalized_name": "god vs. sin" + }, + { + "appid": 2542750, + "normalized_name": "monculi" + }, + { + "appid": 2542800, + "normalized_name": "upload simulator silicon" + }, + { + "appid": 2542810, + "normalized_name": "primate wars" + }, + { + "appid": 2542830, + "normalized_name": "events" + }, + { + "appid": 2542840, + "normalized_name": "electoral dynasty" + }, + { + "appid": 2542850, + "normalized_name": "1001 nights" + }, + { + "appid": 2542860, + "normalized_name": "conquest of empires 2" + }, + { + "appid": 2542890, + "normalized_name": "creatures by candlelight" + }, + { + "appid": 2542950, + "normalized_name": "破月执行 the broken moon" + }, + { + "appid": 2543030, + "normalized_name": "midnight ramen" + }, + { + "appid": 2543040, + "normalized_name": "halcyon days" + }, + { + "appid": 2543050, + "normalized_name": "anon's neko waifus" + }, + { + "appid": 2543070, + "normalized_name": "idle crypto capitalist" + }, + { + "appid": 2543100, + "normalized_name": "jissou land" + }, + { + "appid": 2543110, + "normalized_name": "lucky bastard" + }, + { + "appid": 2543150, + "normalized_name": "dmvr" + }, + { + "appid": 2543180, + "normalized_name": "popucom" + }, + { + "appid": 2543210, + "normalized_name": "tales up" + }, + { + "appid": 2543220, + "normalized_name": "escaperoom romyproject" + }, + { + "appid": 2543300, + "normalized_name": "joy life 2" + }, + { + "appid": 2543310, + "normalized_name": "project t.a.g" + }, + { + "appid": 2543320, + "normalized_name": "uncult" + }, + { + "appid": 2543340, + "normalized_name": "only go up" + }, + { + "appid": 2543350, + "normalized_name": "koroneko" + }, + { + "appid": 2543370, + "normalized_name": "honeycome come come party" + }, + { + "appid": 2543380, + "normalized_name": "lea" + }, + { + "appid": 2543410, + "normalized_name": "unrestricted pest control" + }, + { + "appid": 2543460, + "normalized_name": "van helsing the lightmaker" + }, + { + "appid": 2543490, + "normalized_name": "train traffic manager" + }, + { + "appid": 2543510, + "normalized_name": "guntouchables" + }, + { + "appid": 2543560, + "normalized_name": "technocide" + }, + { + "appid": 2543590, + "normalized_name": "brain escape" + }, + { + "appid": 2543610, + "normalized_name": "tip of the tongue" + }, + { + "appid": 2543630, + "normalized_name": "warwar battle kingdom" + }, + { + "appid": 2543650, + "normalized_name": "长路江湖 九州群芳" + }, + { + "appid": 2543660, + "normalized_name": "legends of elementia" + }, + { + "appid": 2543690, + "normalized_name": "redline" + }, + { + "appid": 2543710, + "normalized_name": "chariot of girl" + }, + { + "appid": 2543740, + "normalized_name": "embers off" + }, + { + "appid": 2543750, + "normalized_name": "eternal vigil crystal defender" + }, + { + "appid": 2543760, + "normalized_name": "shadow of the ninja reborn" + }, + { + "appid": 2543770, + "normalized_name": "it was raining that night" + }, + { + "appid": 2543840, + "normalized_name": "evelone wrath" + }, + { + "appid": 2543920, + "normalized_name": "nameless adventure" + }, + { + "appid": 2543930, + "normalized_name": "terrastorm" + }, + { + "appid": 2543940, + "normalized_name": "sky sojourn" + }, + { + "appid": 2543950, + "normalized_name": "52beatup" + }, + { + "appid": 2543970, + "normalized_name": "quest party life" + }, + { + "appid": 2543990, + "normalized_name": "solar war" + }, + { + "appid": 2544010, + "normalized_name": "shadows of the past" + }, + { + "appid": 2544020, + "normalized_name": "double trouble" + }, + { + "appid": 2544030, + "normalized_name": "quiet on set" + }, + { + "appid": 2544040, + "normalized_name": "starfire skies" + }, + { + "appid": 2544060, + "normalized_name": "the galaxy rider" + }, + { + "appid": 2544090, + "normalized_name": "milfy city final" + }, + { + "appid": 2544100, + "normalized_name": "hoptix" + }, + { + "appid": 2544110, + "normalized_name": "broken sword shadow of the templars reforged" + }, + { + "appid": 2544120, + "normalized_name": "bestial reception" + }, + { + "appid": 2544140, + "normalized_name": "f.o.o.d.s." + }, + { + "appid": 2544150, + "normalized_name": "cruzecraze" + }, + { + "appid": 2544160, + "normalized_name": "aenigma game storm hacker" + }, + { + "appid": 2544220, + "normalized_name": "chrono mirror" + }, + { + "appid": 2544230, + "normalized_name": "my father's house" + }, + { + "appid": 2544280, + "normalized_name": "rebels under the spell of magic (chapter 4)" + }, + { + "appid": 2544300, + "normalized_name": "night poetry" + }, + { + "appid": 2544330, + "normalized_name": "start running" + }, + { + "appid": 2544410, + "normalized_name": "call center" + }, + { + "appid": 2544480, + "normalized_name": "extreme bus driver simulator" + }, + { + "appid": 2544490, + "normalized_name": "parkourier" + }, + { + "appid": 2544500, + "normalized_name": "get them boats orca revenge" + }, + { + "appid": 2544550, + "normalized_name": "guidelicious" + }, + { + "appid": 2544570, + "normalized_name": "luminenight" + }, + { + "appid": 2544590, + "normalized_name": "리프 인 부트스트랩 leap in bootstrap" + }, + { + "appid": 2544610, + "normalized_name": "varkij dream and nightmare" + }, + { + "appid": 2544620, + "normalized_name": "蜥学东渐" + }, + { + "appid": 2544640, + "normalized_name": "campfire stories episode 1" + }, + { + "appid": 2544660, + "normalized_name": "rolling for romance" + }, + { + "appid": 2544680, + "normalized_name": "legacy of animal hog's life 2" + }, + { + "appid": 2544690, + "normalized_name": "summer sprint" + }, + { + "appid": 2544720, + "normalized_name": "workplace fantasy" + }, + { + "appid": 2544730, + "normalized_name": "gateworlds" + }, + { + "appid": 2544740, + "normalized_name": "thanks light." + }, + { + "appid": 2544760, + "normalized_name": "kuroinu 2 redux" + }, + { + "appid": 2544820, + "normalized_name": "the first explorers" + }, + { + "appid": 2544870, + "normalized_name": "total vengeance" + }, + { + "appid": 2544880, + "normalized_name": "dreamland" + }, + { + "appid": 2544900, + "normalized_name": "doodle adventure of chameleon" + }, + { + "appid": 2544930, + "normalized_name": "subzero tides" + }, + { + "appid": 2544990, + "normalized_name": "hypnosis card" + }, + { + "appid": 2545010, + "normalized_name": "new perspective" + }, + { + "appid": 2545020, + "normalized_name": "ring stars" + }, + { + "appid": 2545030, + "normalized_name": "drop point" + }, + { + "appid": 2545090, + "normalized_name": "hana exposure! a blooming flower~" + }, + { + "appid": 2545130, + "normalized_name": "zombie horde dominator" + }, + { + "appid": 2545170, + "normalized_name": "just fighting" + }, + { + "appid": 2545180, + "normalized_name": "落日满天星" + }, + { + "appid": 2545200, + "normalized_name": "アニマロイドガール" + }, + { + "appid": 2545220, + "normalized_name": "tormenture" + }, + { + "appid": 2545310, + "normalized_name": "热血战警" + }, + { + "appid": 2545320, + "normalized_name": "kuroba" + }, + { + "appid": 2545330, + "normalized_name": "miniature mayhem!" + }, + { + "appid": 2545340, + "normalized_name": "witches' hallow" + }, + { + "appid": 2545360, + "normalized_name": "lonely mountains snow riders" + }, + { + "appid": 2545380, + "normalized_name": "open hunting xl" + }, + { + "appid": 2545390, + "normalized_name": "frostfire battle frenzy" + }, + { + "appid": 2545400, + "normalized_name": "drongo's festive adventures" + }, + { + "appid": 2545410, + "normalized_name": "zero piece" + }, + { + "appid": 2545450, + "normalized_name": "eldrimar the card game" + }, + { + "appid": 2545530, + "normalized_name": "go outside" + }, + { + "appid": 2545550, + "normalized_name": "the white prison" + }, + { + "appid": 2545560, + "normalized_name": "frontline world at war" + }, + { + "appid": 2545570, + "normalized_name": "hidden cat outlaws" + }, + { + "appid": 2545650, + "normalized_name": "doom eternal idstudio" + }, + { + "appid": 2545710, + "normalized_name": "tony hawk's pro skater 3 + 4" + }, + { + "appid": 2545740, + "normalized_name": "hive jump 2 survivors" + }, + { + "appid": 2545760, + "normalized_name": "flag defender!" + }, + { + "appid": 2545780, + "normalized_name": "pillow champ" + }, + { + "appid": 2545790, + "normalized_name": "cosmotroid" + }, + { + "appid": 2545810, + "normalized_name": "floating cuboid" + }, + { + "appid": 2545830, + "normalized_name": "cum clicker" + }, + { + "appid": 2545880, + "normalized_name": "historicity florence" + }, + { + "appid": 2545920, + "normalized_name": "matriarchy attack" + }, + { + "appid": 2545950, + "normalized_name": "gorathar" + }, + { + "appid": 2546030, + "normalized_name": "two putt" + }, + { + "appid": 2546090, + "normalized_name": "at winter's end" + }, + { + "appid": 2546110, + "normalized_name": "color of my sound volume 1" + }, + { + "appid": 2546140, + "normalized_name": "bastognebreakout" + }, + { + "appid": 2546150, + "normalized_name": "entities" + }, + { + "appid": 2546160, + "normalized_name": "envyus" + }, + { + "appid": 2546170, + "normalized_name": "memory fragment" + }, + { + "appid": 2546200, + "normalized_name": "raicing" + }, + { + "appid": 2546240, + "normalized_name": "baulaquest" + }, + { + "appid": 2546310, + "normalized_name": "sandtrix+" + }, + { + "appid": 2546320, + "normalized_name": "daughter of crone" + }, + { + "appid": 2546340, + "normalized_name": "鸢之歌:归途" + }, + { + "appid": 2546350, + "normalized_name": "fair and square" + }, + { + "appid": 2546480, + "normalized_name": "infinity islets" + }, + { + "appid": 2546570, + "normalized_name": "hakoiri" + }, + { + "appid": 2546620, + "normalized_name": "9 to die" + }, + { + "appid": 2546630, + "normalized_name": "zombie survivor undead city attack" + }, + { + "appid": 2546640, + "normalized_name": "my camp of memories episode 1" + }, + { + "appid": 2546650, + "normalized_name": "breach signal" + }, + { + "appid": 2546680, + "normalized_name": "ninja maker" + }, + { + "appid": 2546690, + "normalized_name": "tram simulator urban transit" + }, + { + "appid": 2546710, + "normalized_name": "my daughter is a cultist! se" + }, + { + "appid": 2546720, + "normalized_name": "project kunlun" + }, + { + "appid": 2546750, + "normalized_name": "one more hound!" + }, + { + "appid": 2546760, + "normalized_name": "武道传说 league of fighters" + }, + { + "appid": 2546780, + "normalized_name": "yaz" + }, + { + "appid": 2546810, + "normalized_name": "broken sword parzival's stone" + }, + { + "appid": 2546930, + "normalized_name": "space dezinsector" + }, + { + "appid": 2546940, + "normalized_name": "boinkgame" + }, + { + "appid": 2546970, + "normalized_name": "冬日树下的回忆after" + }, + { + "appid": 2547010, + "normalized_name": "mik" + }, + { + "appid": 2547020, + "normalized_name": "ceo fish" + }, + { + "appid": 2547030, + "normalized_name": "catch up" + }, + { + "appid": 2547090, + "normalized_name": "lunar ascendant" + }, + { + "appid": 2547120, + "normalized_name": "修炼成仙" + }, + { + "appid": 2547140, + "normalized_name": "undercroft warriors" + }, + { + "appid": 2547150, + "normalized_name": "the police interceptors simulator war against racers" + }, + { + "appid": 2547180, + "normalized_name": "on call" + }, + { + "appid": 2547200, + "normalized_name": "monotonia first contact" + }, + { + "appid": 2547210, + "normalized_name": "midsummer leg's dream" + }, + { + "appid": 2547240, + "normalized_name": "spleef game" + }, + { + "appid": 2547260, + "normalized_name": "the inner descent vr" + }, + { + "appid": 2547280, + "normalized_name": "draft day sports college football 2024" + }, + { + "appid": 2547320, + "normalized_name": "evolit" + }, + { + "appid": 2547330, + "normalized_name": "dr. lunatic supreme with steam" + }, + { + "appid": 2547400, + "normalized_name": "the spectral web hitodama" + }, + { + "appid": 2547410, + "normalized_name": "mimic" + }, + { + "appid": 2547430, + "normalized_name": "dark pages" + }, + { + "appid": 2547510, + "normalized_name": "冒险公会与传说 adventure story" + }, + { + "appid": 2547570, + "normalized_name": "蜜桃" + }, + { + "appid": 2547590, + "normalized_name": "summoners defense" + }, + { + "appid": 2547610, + "normalized_name": "走れ!クレアちゃん" + }, + { + "appid": 2547620, + "normalized_name": "sleembo" + }, + { + "appid": 2547670, + "normalized_name": "stickspinner" + }, + { + "appid": 2547730, + "normalized_name": "zakantosh cardgame" + }, + { + "appid": 2547740, + "normalized_name": "crystalline bliss" + }, + { + "appid": 2547750, + "normalized_name": "e startup 2 business tycoon" + }, + { + "appid": 2547760, + "normalized_name": "digitanks!" + }, + { + "appid": 2547810, + "normalized_name": "the tower stories green 1" + }, + { + "appid": 2547830, + "normalized_name": "one life clicker" + }, + { + "appid": 2547860, + "normalized_name": "6n23" + }, + { + "appid": 2547890, + "normalized_name": "mecha mayhem" + }, + { + "appid": 2547930, + "normalized_name": "two hour escape mystery a puzzling voyage" + }, + { + "appid": 2547940, + "normalized_name": "hoops world" + }, + { + "appid": 2547960, + "normalized_name": "クロスダンジョン" + }, + { + "appid": 2547980, + "normalized_name": "sex story cuckold life episode 2" + }, + { + "appid": 2548000, + "normalized_name": "highway cleaners" + }, + { + "appid": 2548010, + "normalized_name": "sex simulator camgirl audition" + }, + { + "appid": 2548050, + "normalized_name": "fast & blast" + }, + { + "appid": 2548070, + "normalized_name": "yujiro's mansion" + }, + { + "appid": 2548140, + "normalized_name": "arcane's watch" + }, + { + "appid": 2548160, + "normalized_name": "repair adventure" + }, + { + "appid": 2548180, + "normalized_name": "萝塔战记" + }, + { + "appid": 2548200, + "normalized_name": "love & country the first mission" + }, + { + "appid": 2548250, + "normalized_name": "requiem memory" + }, + { + "appid": 2548260, + "normalized_name": "the devil's typist" + }, + { + "appid": 2548270, + "normalized_name": "world ends wednesday" + }, + { + "appid": 2548280, + "normalized_name": "conquest of eldinar" + }, + { + "appid": 2548330, + "normalized_name": "the paper trials" + }, + { + "appid": 2548360, + "normalized_name": "gadget guy the beginning" + }, + { + "appid": 2548370, + "normalized_name": "white middle class guy simulator" + }, + { + "appid": 2548390, + "normalized_name": "valdamour" + }, + { + "appid": 2548400, + "normalized_name": "float" + }, + { + "appid": 2548410, + "normalized_name": "in the same boat" + }, + { + "appid": 2548500, + "normalized_name": "evil doll" + }, + { + "appid": 2548530, + "normalized_name": "regicidex" + }, + { + "appid": 2548580, + "normalized_name": "vahluna corp." + }, + { + "appid": 2548640, + "normalized_name": "ord upp" + }, + { + "appid": 2548650, + "normalized_name": "run or die" + }, + { + "appid": 2548670, + "normalized_name": "luminis heal them all" + }, + { + "appid": 2548680, + "normalized_name": "chapters 1 3 little kingdoms" + }, + { + "appid": 2548720, + "normalized_name": "fatrifice 2" + }, + { + "appid": 2548770, + "normalized_name": "roach race" + }, + { + "appid": 2548780, + "normalized_name": "304 seconds" + }, + { + "appid": 2548800, + "normalized_name": "sinner’s ridge" + }, + { + "appid": 2548810, + "normalized_name": "cloud 9" + }, + { + "appid": 2548820, + "normalized_name": "shadowstrike blades of survival" + }, + { + "appid": 2548830, + "normalized_name": "island master" + }, + { + "appid": 2548880, + "normalized_name": "divine frequency" + }, + { + "appid": 2548910, + "normalized_name": "peacemaker bloody emperor" + }, + { + "appid": 2548920, + "normalized_name": "dark lovers extended" + }, + { + "appid": 2548940, + "normalized_name": "divaラヴァーズ" + }, + { + "appid": 2548950, + "normalized_name": "武林立志傳" + }, + { + "appid": 2549000, + "normalized_name": "summeraftertenyears steam" + }, + { + "appid": 2549020, + "normalized_name": "nemo is going to school" + }, + { + "appid": 2549030, + "normalized_name": "sculpturn" + }, + { + "appid": 2549040, + "normalized_name": "night of the slayers" + }, + { + "appid": 2549080, + "normalized_name": "free for all" + }, + { + "appid": 2549100, + "normalized_name": "eraturn" + }, + { + "appid": 2549130, + "normalized_name": "asurajang" + }, + { + "appid": 2549150, + "normalized_name": "redline racing" + }, + { + "appid": 2549160, + "normalized_name": "core trials" + }, + { + "appid": 2549190, + "normalized_name": "弥留" + }, + { + "appid": 2549200, + "normalized_name": "fate and life the mystery of vaulinhorn" + }, + { + "appid": 2549240, + "normalized_name": "toree saturn" + }, + { + "appid": 2549250, + "normalized_name": "噩梦漩涡(nightmare vortex)" + }, + { + "appid": 2549260, + "normalized_name": "dendam justice and law for the murderer" + }, + { + "appid": 2549270, + "normalized_name": "code name operation dawn" + }, + { + "appid": 2549350, + "normalized_name": "神州豪侠" + }, + { + "appid": 2549380, + "normalized_name": "cryptical path" + }, + { + "appid": 2549390, + "normalized_name": "panzer rollen" + }, + { + "appid": 2549440, + "normalized_name": "rings of harmony" + }, + { + "appid": 2549480, + "normalized_name": "bring me home" + }, + { + "appid": 2549490, + "normalized_name": "micro manager 90 days probation" + }, + { + "appid": 2549540, + "normalized_name": "evotactics" + }, + { + "appid": 2549550, + "normalized_name": "porusz umysł plus" + }, + { + "appid": 2549580, + "normalized_name": "up or lava!" + }, + { + "appid": 2549600, + "normalized_name": "dynamic shooting vr" + }, + { + "appid": 2549620, + "normalized_name": "morphaverse" + }, + { + "appid": 2549630, + "normalized_name": "osseous and swordy" + }, + { + "appid": 2549650, + "normalized_name": "ammo and oxygen" + }, + { + "appid": 2549660, + "normalized_name": "crossroad of worlds star riddle collector's" + }, + { + "appid": 2549680, + "normalized_name": "raddoll" + }, + { + "appid": 2549700, + "normalized_name": "part time adventure" + }, + { + "appid": 2549720, + "normalized_name": "burger restaurant simulator" + }, + { + "appid": 2549750, + "normalized_name": "mow that lawn" + }, + { + "appid": 2549760, + "normalized_name": "rebellion the beginning" + }, + { + "appid": 2549780, + "normalized_name": "the karate kid street rumble" + }, + { + "appid": 2549870, + "normalized_name": "my hobby needlework galore" + }, + { + "appid": 2549880, + "normalized_name": "red antz" + }, + { + "appid": 2549900, + "normalized_name": "spider bounce" + }, + { + "appid": 2549930, + "normalized_name": "ostrich farm" + }, + { + "appid": 2549940, + "normalized_name": "i will make you scared of this red box." + }, + { + "appid": 2549950, + "normalized_name": "stick slasher" + }, + { + "appid": 2549960, + "normalized_name": "making memories" + }, + { + "appid": 2549980, + "normalized_name": "ranger commando" + }, + { + "appid": 2550020, + "normalized_name": "kiss me" + }, + { + "appid": 2550030, + "normalized_name": "hentai 18+" + }, + { + "appid": 2550040, + "normalized_name": "subside" + }, + { + "appid": 2550100, + "normalized_name": "dice crypt" + }, + { + "appid": 2550120, + "normalized_name": "tower pets" + }, + { + "appid": 2550140, + "normalized_name": "lust island🌴[18+]" + }, + { + "appid": 2550170, + "normalized_name": "wild sex wet girls" + }, + { + "appid": 2550230, + "normalized_name": "kinduo 2 frostbite" + }, + { + "appid": 2550240, + "normalized_name": "void crawler" + }, + { + "appid": 2550270, + "normalized_name": "mars training camp vr" + }, + { + "appid": 2550290, + "normalized_name": "who wears the crown?" + }, + { + "appid": 2550300, + "normalized_name": "jetturbo" + }, + { + "appid": 2550320, + "normalized_name": "delicards a delicious card game" + }, + { + "appid": 2550330, + "normalized_name": "长征1934 1936" + }, + { + "appid": 2550340, + "normalized_name": "keep flip" + }, + { + "appid": 2550350, + "normalized_name": "slime siege" + }, + { + "appid": 2550370, + "normalized_name": "找起来!" + }, + { + "appid": 2550410, + "normalized_name": "convergence" + }, + { + "appid": 2550420, + "normalized_name": "block_up" + }, + { + "appid": 2550440, + "normalized_name": "dynaforce" + }, + { + "appid": 2550460, + "normalized_name": "the johnny papa" + }, + { + "appid": 2550470, + "normalized_name": "station unknown" + }, + { + "appid": 2550480, + "normalized_name": "skibidi toilets invasion" + }, + { + "appid": 2550630, + "normalized_name": "808s&genetics" + }, + { + "appid": 2550660, + "normalized_name": "up against aliens" + }, + { + "appid": 2550690, + "normalized_name": "olho spectral" + }, + { + "appid": 2550700, + "normalized_name": "grozs fantasy world" + }, + { + "appid": 2550720, + "normalized_name": "fireworks xr 烟花秀" + }, + { + "appid": 2550730, + "normalized_name": "勇者屠龙 之 永恒幻想" + }, + { + "appid": 2550740, + "normalized_name": "cyberskyscrupper" + }, + { + "appid": 2550790, + "normalized_name": "live hard die hard" + }, + { + "appid": 2550840, + "normalized_name": "golf by the way" + }, + { + "appid": 2550860, + "normalized_name": "crow forest new world" + }, + { + "appid": 2550910, + "normalized_name": "go deep or go home" + }, + { + "appid": 2550930, + "normalized_name": "zombie battlefield survivors" + }, + { + "appid": 2550980, + "normalized_name": "beach cafe iii the escape room" + }, + { + "appid": 2550990, + "normalized_name": "roseline" + }, + { + "appid": 2551010, + "normalized_name": "gravity strike" + }, + { + "appid": 2551020, + "normalized_name": "one armed robber" + }, + { + "appid": 2551030, + "normalized_name": "the balls" + }, + { + "appid": 2551050, + "normalized_name": "transilio" + }, + { + "appid": 2551070, + "normalized_name": "driving stage" + }, + { + "appid": 2551110, + "normalized_name": "combat mission fortress italy" + }, + { + "appid": 2551170, + "normalized_name": "cats hidden in maple hollow 🍂" + }, + { + "appid": 2551200, + "normalized_name": "killfish" + }, + { + "appid": 2551210, + "normalized_name": "touhoudewvalley" + }, + { + "appid": 2551240, + "normalized_name": "rise of the overseer" + }, + { + "appid": 2551250, + "normalized_name": "hexforger" + }, + { + "appid": 2551260, + "normalized_name": "color splash dogs" + }, + { + "appid": 2551280, + "normalized_name": "arthas 2" + }, + { + "appid": 2551290, + "normalized_name": "hilda and the tower of lust" + }, + { + "appid": 2551300, + "normalized_name": "broken life" + }, + { + "appid": 2551380, + "normalized_name": "beyond r rule ripper" + }, + { + "appid": 2551430, + "normalized_name": "the firm" + }, + { + "appid": 2551440, + "normalized_name": "kill a million rats" + }, + { + "appid": 2551500, + "normalized_name": "巫兎 kannagi usagi" + }, + { + "appid": 2551550, + "normalized_name": "goodbye seoul" + }, + { + "appid": 2551570, + "normalized_name": "parking world build & manage" + }, + { + "appid": 2551590, + "normalized_name": "章节六的镇魂曲" + }, + { + "appid": 2551660, + "normalized_name": "astral rift" + }, + { + "appid": 2551690, + "normalized_name": "sex bar simulator 🍸🔞" + }, + { + "appid": 2551700, + "normalized_name": "lumi starbound adventure" + }, + { + "appid": 2551720, + "normalized_name": "das geheimnis von lakeshore" + }, + { + "appid": 2551730, + "normalized_name": "rescue cable" + }, + { + "appid": 2551740, + "normalized_name": "tiny touring cars" + }, + { + "appid": 2551750, + "normalized_name": "supercharged" + }, + { + "appid": 2551780, + "normalized_name": "midnight monitor anomaly watch" + }, + { + "appid": 2551790, + "normalized_name": "tribe of the accord" + }, + { + "appid": 2551810, + "normalized_name": "the faceless ones" + }, + { + "appid": 2551820, + "normalized_name": "from the deep" + }, + { + "appid": 2551830, + "normalized_name": "echoes of numa" + }, + { + "appid": 2551840, + "normalized_name": "from light" + }, + { + "appid": 2551850, + "normalized_name": "the crimson pearl" + }, + { + "appid": 2551860, + "normalized_name": "knightess" + }, + { + "appid": 2551870, + "normalized_name": "running fox" + }, + { + "appid": 2551920, + "normalized_name": "tools up!" + }, + { + "appid": 2551940, + "normalized_name": "unread messages" + }, + { + "appid": 2551970, + "normalized_name": "outcast tales" + }, + { + "appid": 2551980, + "normalized_name": "fable forts! tower defense" + }, + { + "appid": 2552000, + "normalized_name": "road to exotics" + }, + { + "appid": 2552100, + "normalized_name": "license to breed" + }, + { + "appid": 2552130, + "normalized_name": "unexpected consequences" + }, + { + "appid": 2552170, + "normalized_name": "zen fisher" + }, + { + "appid": 2552190, + "normalized_name": "dr. bowow's eco extraction" + }, + { + "appid": 2552200, + "normalized_name": "apothecary" + }, + { + "appid": 2552230, + "normalized_name": "lost and found" + }, + { + "appid": 2552240, + "normalized_name": "rabbit's fall" + }, + { + "appid": 2552260, + "normalized_name": "dead flamingo" + }, + { + "appid": 2552290, + "normalized_name": "codebreaker defuse or boom" + }, + { + "appid": 2552310, + "normalized_name": "dungeon inn" + }, + { + "appid": 2552340, + "normalized_name": "tempest tower of probatio" + }, + { + "appid": 2552410, + "normalized_name": "liminal border part i" + }, + { + "appid": 2552420, + "normalized_name": "tenioha! feat. mami" + }, + { + "appid": 2552430, + "normalized_name": "kingdom hearts hd 1.5+2.5 remix" + }, + { + "appid": 2552440, + "normalized_name": "kingdom hearts hd 2.8 final chapter prologue" + }, + { + "appid": 2552450, + "normalized_name": "kingdom hearts iii + re mind (dlc)" + }, + { + "appid": 2552560, + "normalized_name": "panzer commander" + }, + { + "appid": 2552570, + "normalized_name": "クウルウ見聞録" + }, + { + "appid": 2552600, + "normalized_name": "muscle ninja vr" + }, + { + "appid": 2552610, + "normalized_name": "witchy dare" + }, + { + "appid": 2552660, + "normalized_name": "orin" + }, + { + "appid": 2552680, + "normalized_name": "rogue samurai" + }, + { + "appid": 2552740, + "normalized_name": "plagueborn survivor" + }, + { + "appid": 2552770, + "normalized_name": "kemet x" + }, + { + "appid": 2552820, + "normalized_name": "zbuki zoo strategic comedy" + }, + { + "appid": 2552850, + "normalized_name": "tricky doors" + }, + { + "appid": 2552900, + "normalized_name": "cipher 8" + }, + { + "appid": 2553040, + "normalized_name": "nested lands" + }, + { + "appid": 2553050, + "normalized_name": "estate agent simulator" + }, + { + "appid": 2553080, + "normalized_name": "beneath the bleeding moon" + }, + { + "appid": 2553150, + "normalized_name": "the projection room of malka spitzer" + }, + { + "appid": 2553160, + "normalized_name": "只管战斗 unorthodox game" + }, + { + "appid": 2553180, + "normalized_name": "mazepocalypse" + }, + { + "appid": 2553210, + "normalized_name": "ocean protector" + }, + { + "appid": 2553220, + "normalized_name": "when life gives you lemons" + }, + { + "appid": 2553240, + "normalized_name": "shadow overlord the beginning" + }, + { + "appid": 2553250, + "normalized_name": "monument village" + }, + { + "appid": 2553260, + "normalized_name": "mad viking games vr experience" + }, + { + "appid": 2553270, + "normalized_name": "heart knots" + }, + { + "appid": 2553290, + "normalized_name": "mission space" + }, + { + "appid": 2553320, + "normalized_name": "unc pathfinder" + }, + { + "appid": 2553330, + "normalized_name": "elemdian" + }, + { + "appid": 2553340, + "normalized_name": "helltrench" + }, + { + "appid": 2553350, + "normalized_name": "toufra" + }, + { + "appid": 2553360, + "normalized_name": "death's web" + }, + { + "appid": 2553390, + "normalized_name": "the battle of embers" + }, + { + "appid": 2553410, + "normalized_name": "welcome to everdell" + }, + { + "appid": 2553420, + "normalized_name": "outta hand" + }, + { + "appid": 2553440, + "normalized_name": "egyptian ratslap card game" + }, + { + "appid": 2553470, + "normalized_name": "dark year" + }, + { + "appid": 2553480, + "normalized_name": "viral" + }, + { + "appid": 2553510, + "normalized_name": "cyberpigeon" + }, + { + "appid": 2553530, + "normalized_name": "super spy raccoon" + }, + { + "appid": 2553560, + "normalized_name": "project perun" + }, + { + "appid": 2553580, + "normalized_name": "go marbles!" + }, + { + "appid": 2553590, + "normalized_name": "keo and the cosmic crystals" + }, + { + "appid": 2553600, + "normalized_name": "the capture games" + }, + { + "appid": 2553640, + "normalized_name": "blood hunting" + }, + { + "appid": 2553690, + "normalized_name": "canyon rush" + }, + { + "appid": 2553700, + "normalized_name": "basilisk" + }, + { + "appid": 2553710, + "normalized_name": "birds aren't real the game" + }, + { + "appid": 2553720, + "normalized_name": "vigilante racer" + }, + { + "appid": 2553780, + "normalized_name": "subject debris" + }, + { + "appid": 2553790, + "normalized_name": "final exerion" + }, + { + "appid": 2553800, + "normalized_name": "负罪者:方石" + }, + { + "appid": 2553830, + "normalized_name": "circular logic games" + }, + { + "appid": 2553840, + "normalized_name": "blood fuel ammo & speed" + }, + { + "appid": 2553860, + "normalized_name": "skids 'n wrecks" + }, + { + "appid": 2553870, + "normalized_name": "the genesis order" + }, + { + "appid": 2553880, + "normalized_name": "young team sounds" + }, + { + "appid": 2553890, + "normalized_name": "the edibles" + }, + { + "appid": 2553910, + "normalized_name": "amazing grace what color is your attribute?" + }, + { + "appid": 2553920, + "normalized_name": "king of avalon" + }, + { + "appid": 2553930, + "normalized_name": "soul drifter" + }, + { + "appid": 2553960, + "normalized_name": "conquistadorio prologue" + }, + { + "appid": 2554670, + "normalized_name": "stormshot" + }, + { + "appid": 2554690, + "normalized_name": "too shroom!" + }, + { + "appid": 2554740, + "normalized_name": "operation noogy" + }, + { + "appid": 2554770, + "normalized_name": "fantasy monster clicker" + }, + { + "appid": 2554780, + "normalized_name": "quadrilla" + }, + { + "appid": 2554800, + "normalized_name": "cactus cowboy desert warfare" + }, + { + "appid": 2554820, + "normalized_name": "celebrities hacked" + }, + { + "appid": 2554880, + "normalized_name": "haddie's pizzeria" + }, + { + "appid": 2554930, + "normalized_name": "shadows are alive" + }, + { + "appid": 2554950, + "normalized_name": "raioh" + }, + { + "appid": 2554960, + "normalized_name": "warf" + }, + { + "appid": 2554970, + "normalized_name": "hell games" + }, + { + "appid": 2554980, + "normalized_name": "last warrior arena" + }, + { + "appid": 2554990, + "normalized_name": "beacon patrol first horizons" + }, + { + "appid": 2555010, + "normalized_name": "voiceover" + }, + { + "appid": 2555030, + "normalized_name": "limsod" + }, + { + "appid": 2555040, + "normalized_name": "royal romances endless winter collector's" + }, + { + "appid": 2555060, + "normalized_name": "tis 2 true idle simulator 2" + }, + { + "appid": 2555090, + "normalized_name": "outminer" + }, + { + "appid": 2555120, + "normalized_name": "cook a geddon" + }, + { + "appid": 2555160, + "normalized_name": "雨宿り" + }, + { + "appid": 2555220, + "normalized_name": "lovanium the rising suns" + }, + { + "appid": 2555230, + "normalized_name": "logistic master" + }, + { + "appid": 2555260, + "normalized_name": "rage simulator" + }, + { + "appid": 2555270, + "normalized_name": "lost friends adventure" + }, + { + "appid": 2555300, + "normalized_name": "the clean knife" + }, + { + "appid": 2555320, + "normalized_name": "повестка" + }, + { + "appid": 2555350, + "normalized_name": "entangled" + }, + { + "appid": 2555390, + "normalized_name": "xanthiom 2" + }, + { + "appid": 2555430, + "normalized_name": "tradesman deal to dealer" + }, + { + "appid": 2555440, + "normalized_name": "the mythical city" + }, + { + "appid": 2555460, + "normalized_name": "charon's crossing" + }, + { + "appid": 2555480, + "normalized_name": "ooze the great and powerful" + }, + { + "appid": 2555570, + "normalized_name": "age of goblins" + }, + { + "appid": 2555580, + "normalized_name": "russian warship" + }, + { + "appid": 2555690, + "normalized_name": "cat city" + }, + { + "appid": 2555710, + "normalized_name": "expest" + }, + { + "appid": 2555760, + "normalized_name": "century of anticipation" + }, + { + "appid": 2555780, + "normalized_name": "dancedoudoou" + }, + { + "appid": 2555830, + "normalized_name": "dino tower arena" + }, + { + "appid": 2555840, + "normalized_name": "ultramassive" + }, + { + "appid": 2555850, + "normalized_name": "失落的王国 lost kingdom" + }, + { + "appid": 2555900, + "normalized_name": "three blades ranch" + }, + { + "appid": 2555910, + "normalized_name": "a nutritious boyfriend" + }, + { + "appid": 2555920, + "normalized_name": "on life and living" + }, + { + "appid": 2555930, + "normalized_name": "ヌースジャンプの前奏曲" + }, + { + "appid": 2555940, + "normalized_name": "梦海泣泡(bubble surge)" + }, + { + "appid": 2555950, + "normalized_name": "million depth" + }, + { + "appid": 2555970, + "normalized_name": "一梦封神" + }, + { + "appid": 2555980, + "normalized_name": "huecube" + }, + { + "appid": 2556000, + "normalized_name": "manhattan dolls" + }, + { + "appid": 2556010, + "normalized_name": "lastsafezone" + }, + { + "appid": 2556030, + "normalized_name": "becca" + }, + { + "appid": 2556040, + "normalized_name": "傀儡の宿 kairai inn" + }, + { + "appid": 2556050, + "normalized_name": "astral quester" + }, + { + "appid": 2556060, + "normalized_name": "脳みそジャーニー" + }, + { + "appid": 2556080, + "normalized_name": "烦人勇者(pesky hero)" + }, + { + "appid": 2556090, + "normalized_name": "rhino puzzle" + }, + { + "appid": 2556100, + "normalized_name": "骰子模拟器" + }, + { + "appid": 2556160, + "normalized_name": "cute farmer life" + }, + { + "appid": 2556180, + "normalized_name": "minute" + }, + { + "appid": 2556210, + "normalized_name": "home trip" + }, + { + "appid": 2556240, + "normalized_name": "brews & bastards" + }, + { + "appid": 2556280, + "normalized_name": "neo testament" + }, + { + "appid": 2556450, + "normalized_name": "哈希绿洲 hash oasis" + }, + { + "appid": 2556470, + "normalized_name": "fantastic haven" + }, + { + "appid": 2556480, + "normalized_name": "end of space project" + }, + { + "appid": 2556490, + "normalized_name": "drift vector" + }, + { + "appid": 2556540, + "normalized_name": "anachronic" + }, + { + "appid": 2556620, + "normalized_name": "true boxing vr" + }, + { + "appid": 2556630, + "normalized_name": "复仇者小队" + }, + { + "appid": 2556670, + "normalized_name": "spellslinger" + }, + { + "appid": 2556690, + "normalized_name": "imagindar" + }, + { + "appid": 2556730, + "normalized_name": "i made this game in 3 days" + }, + { + "appid": 2556740, + "normalized_name": "the intruder" + }, + { + "appid": 2556750, + "normalized_name": "taking root" + }, + { + "appid": 2556810, + "normalized_name": "half alive" + }, + { + "appid": 2556830, + "normalized_name": "shoot for fun's sake" + }, + { + "appid": 2556870, + "normalized_name": "2nd child" + }, + { + "appid": 2556930, + "normalized_name": "chrysolite" + }, + { + "appid": 2556940, + "normalized_name": "! shakabula *" + }, + { + "appid": 2556950, + "normalized_name": "midnight prowl | 深夜徘徊" + }, + { + "appid": 2556990, + "normalized_name": "beyond good & evil 20th anniversary" + }, + { + "appid": 2557020, + "normalized_name": "eon rush" + }, + { + "appid": 2557080, + "normalized_name": "kitten tales" + }, + { + "appid": 2557330, + "normalized_name": "funset studios" + }, + { + "appid": 2557370, + "normalized_name": "tornado" + }, + { + "appid": 2557430, + "normalized_name": "echoes of you" + }, + { + "appid": 2557440, + "normalized_name": "metazoo cryptid clash" + }, + { + "appid": 2557460, + "normalized_name": "glitchers hack 'em up" + }, + { + "appid": 2557470, + "normalized_name": "skull scavenger" + }, + { + "appid": 2557480, + "normalized_name": "overroot" + }, + { + "appid": 2557490, + "normalized_name": "dirt bike racer simulator" + }, + { + "appid": 2557510, + "normalized_name": "disciples of varahces" + }, + { + "appid": 2557520, + "normalized_name": "together synergy" + }, + { + "appid": 2557580, + "normalized_name": "cellosseum" + }, + { + "appid": 2557630, + "normalized_name": "fomography" + }, + { + "appid": 2557640, + "normalized_name": "ronshade" + }, + { + "appid": 2557660, + "normalized_name": "jack dragon and the stone of peace" + }, + { + "appid": 2557700, + "normalized_name": "intergalactic" + }, + { + "appid": 2557720, + "normalized_name": "all alone" + }, + { + "appid": 2557730, + "normalized_name": "意识空间" + }, + { + "appid": 2557740, + "normalized_name": "fairune fragment isles" + }, + { + "appid": 2557750, + "normalized_name": "absolutely nothing" + }, + { + "appid": 2557770, + "normalized_name": "precision point vr" + }, + { + "appid": 2557790, + "normalized_name": "life museum" + }, + { + "appid": 2557860, + "normalized_name": "card crafter genesis" + }, + { + "appid": 2557870, + "normalized_name": "异度浮生记" + }, + { + "appid": 2557880, + "normalized_name": "chinese pope door" + }, + { + "appid": 2557890, + "normalized_name": "elysium skies" + }, + { + "appid": 2557900, + "normalized_name": "survival on a deserted island" + }, + { + "appid": 2557940, + "normalized_name": "缠罗深梦" + }, + { + "appid": 2557950, + "normalized_name": "snowdrop the blade master" + }, + { + "appid": 2558020, + "normalized_name": "reactfuse" + }, + { + "appid": 2558050, + "normalized_name": "emberrush" + }, + { + "appid": 2558060, + "normalized_name": "secrets of the haunted mansion" + }, + { + "appid": 2558070, + "normalized_name": "the impossible tower" + }, + { + "appid": 2558090, + "normalized_name": "logic" + }, + { + "appid": 2558110, + "normalized_name": "skibidi toilet skibidi boom" + }, + { + "appid": 2558120, + "normalized_name": "clash of the elements" + }, + { + "appid": 2558150, + "normalized_name": "time for revenge" + }, + { + "appid": 2558200, + "normalized_name": "call of sentinels" + }, + { + "appid": 2558240, + "normalized_name": "warlock the bounty hunter" + }, + { + "appid": 2558250, + "normalized_name": "debt deadline" + }, + { + "appid": 2558260, + "normalized_name": "cool go" + }, + { + "appid": 2558290, + "normalized_name": "excalibur's swordstone idle forge" + }, + { + "appid": 2558300, + "normalized_name": "heroes of the ashenwatch" + }, + { + "appid": 2558320, + "normalized_name": "super dr corona" + }, + { + "appid": 2558330, + "normalized_name": "monolith o pesadelo" + }, + { + "appid": 2558350, + "normalized_name": "courier 79" + }, + { + "appid": 2558360, + "normalized_name": "ag legacy builder" + }, + { + "appid": 2558390, + "normalized_name": "go go zombies" + }, + { + "appid": 2558420, + "normalized_name": "axembler" + }, + { + "appid": 2558440, + "normalized_name": "block & shot" + }, + { + "appid": 2558480, + "normalized_name": "碧海潮生怀旧版" + }, + { + "appid": 2558500, + "normalized_name": "the hangman" + }, + { + "appid": 2558510, + "normalized_name": "pearlglow cafe sweet crumb kisses" + }, + { + "appid": 2558520, + "normalized_name": "slay the dragon! the fire breathing tyrant meets her match!" + }, + { + "appid": 2558560, + "normalized_name": "adventures in anglonia" + }, + { + "appid": 2558570, + "normalized_name": "壊漢 kaikan" + }, + { + "appid": 2558580, + "normalized_name": "the backrooms unbounded" + }, + { + "appid": 2558620, + "normalized_name": "galvanized" + }, + { + "appid": 2558630, + "normalized_name": "resident fear redistribution" + }, + { + "appid": 2558650, + "normalized_name": "terrain explorer" + }, + { + "appid": 2558660, + "normalized_name": "brave trial" + }, + { + "appid": 2558670, + "normalized_name": "maze shooter" + }, + { + "appid": 2558680, + "normalized_name": "boxing champion" + }, + { + "appid": 2558690, + "normalized_name": "challenge" + }, + { + "appid": 2558700, + "normalized_name": "the backrooms deluxe" + }, + { + "appid": 2558730, + "normalized_name": "enigmatic worlds" + }, + { + "appid": 2558750, + "normalized_name": "emyliveshow hentai puzzle game" + }, + { + "appid": 2558800, + "normalized_name": "grunenberg" + }, + { + "appid": 2558820, + "normalized_name": "jet up" + }, + { + "appid": 2558830, + "normalized_name": "sorrow asylum 2" + }, + { + "appid": 2558880, + "normalized_name": "the hunter's journals return to wight chapel" + }, + { + "appid": 2558930, + "normalized_name": "hoversteppers" + }, + { + "appid": 2558940, + "normalized_name": "pedro of brazil" + }, + { + "appid": 2558970, + "normalized_name": "evelynn" + }, + { + "appid": 2558980, + "normalized_name": "the hero gives up! ... wait what!?" + }, + { + "appid": 2559020, + "normalized_name": "neo dance" + }, + { + "appid": 2559050, + "normalized_name": "dimensions" + }, + { + "appid": 2559060, + "normalized_name": "totality" + }, + { + "appid": 2559070, + "normalized_name": "learn to dodge" + }, + { + "appid": 2559110, + "normalized_name": "spiral clicker 2" + }, + { + "appid": 2559140, + "normalized_name": "geoboxer" + }, + { + "appid": 2559170, + "normalized_name": "day 10 909" + }, + { + "appid": 2559220, + "normalized_name": "towerbolt" + }, + { + "appid": 2559250, + "normalized_name": "true dice roller" + }, + { + "appid": 2559270, + "normalized_name": "gym simulator 24" + }, + { + "appid": 2559280, + "normalized_name": "drift cars zombie crusher" + }, + { + "appid": 2559290, + "normalized_name": "gold rush clicker" + }, + { + "appid": 2559340, + "normalized_name": "hex jump" + }, + { + "appid": 2559350, + "normalized_name": "lexicon" + }, + { + "appid": 2559360, + "normalized_name": "symmodance" + }, + { + "appid": 2559370, + "normalized_name": "the scramble vice" + }, + { + "appid": 2559400, + "normalized_name": "豆丁人 doudingman" + }, + { + "appid": 2559420, + "normalized_name": "猫咪公寓" + }, + { + "appid": 2559450, + "normalized_name": "bump and run racing" + }, + { + "appid": 2559470, + "normalized_name": "鬼道:地府甦醒" + }, + { + "appid": 2559500, + "normalized_name": "survivors of mayhem" + }, + { + "appid": 2559510, + "normalized_name": "omnivael founding of valtoria" + }, + { + "appid": 2559520, + "normalized_name": "bony bones adventures" + }, + { + "appid": 2559530, + "normalized_name": "backrooms run for your life!" + }, + { + "appid": 2559540, + "normalized_name": "capybro" + }, + { + "appid": 2559550, + "normalized_name": "zxc" + }, + { + "appid": 2559600, + "normalized_name": "unexpected visitors" + }, + { + "appid": 2559630, + "normalized_name": "hentai maze" + }, + { + "appid": 2559640, + "normalized_name": "liar's game" + }, + { + "appid": 2559680, + "normalized_name": "space digger" + }, + { + "appid": 2559690, + "normalized_name": "draco and the seven scales" + }, + { + "appid": 2559710, + "normalized_name": "glitch moba" + }, + { + "appid": 2559740, + "normalized_name": "the tower of tears" + }, + { + "appid": 2559760, + "normalized_name": "untold tales of citadale the shadow maker" + }, + { + "appid": 2559780, + "normalized_name": "letter bunny" + }, + { + "appid": 2559790, + "normalized_name": "strange hill" + }, + { + "appid": 2559810, + "normalized_name": "不可思议的召唤师" + }, + { + "appid": 2559820, + "normalized_name": "special ops operation assault" + }, + { + "appid": 2559840, + "normalized_name": "lust kingdom" + }, + { + "appid": 2559860, + "normalized_name": "three goblin wobblin'" + }, + { + "appid": 2559870, + "normalized_name": "heroes of eroticism opportunities of love" + }, + { + "appid": 2559880, + "normalized_name": "z ops deadzone" + }, + { + "appid": 2559900, + "normalized_name": "rocket jump race" + }, + { + "appid": 2559930, + "normalized_name": "the queen's quest" + }, + { + "appid": 2559950, + "normalized_name": "broken mind" + }, + { + "appid": 2559960, + "normalized_name": "red dawn" + }, + { + "appid": 2559970, + "normalized_name": "global transport" + }, + { + "appid": 2559980, + "normalized_name": "i commissioned some ladybugs 2" + }, + { + "appid": 2559990, + "normalized_name": "bug ball" + }, + { + "appid": 2560020, + "normalized_name": "a walk in the park" + }, + { + "appid": 2560040, + "normalized_name": "defend earth xenos survivors prelude" + }, + { + "appid": 2560050, + "normalized_name": "the local" + }, + { + "appid": 2560060, + "normalized_name": "ballistic showdown" + }, + { + "appid": 2560090, + "normalized_name": "ritual path of darkness" + }, + { + "appid": 2560100, + "normalized_name": "midnight special" + }, + { + "appid": 2560110, + "normalized_name": "bunny battle" + }, + { + "appid": 2560120, + "normalized_name": "roles & dice" + }, + { + "appid": 2560210, + "normalized_name": "astromeda" + }, + { + "appid": 2560220, + "normalized_name": "getting out alive" + }, + { + "appid": 2560240, + "normalized_name": "biped 2" + }, + { + "appid": 2560250, + "normalized_name": "观察者observer" + }, + { + "appid": 2560260, + "normalized_name": "oni station" + }, + { + "appid": 2560280, + "normalized_name": "edmund puzzle and the mystery of the sacred relics" + }, + { + "appid": 2560320, + "normalized_name": "little mages" + }, + { + "appid": 2560330, + "normalized_name": "ironmarked" + }, + { + "appid": 2560340, + "normalized_name": "bonaparte a mechanized revolution" + }, + { + "appid": 2560360, + "normalized_name": "six souls requiem for forgotten birds" + }, + { + "appid": 2560380, + "normalized_name": "100 rounds" + }, + { + "appid": 2560390, + "normalized_name": "superanthony's joltzsi" + }, + { + "appid": 2560460, + "normalized_name": "hidden cats in spooky town" + }, + { + "appid": 2560480, + "normalized_name": "beam bound" + }, + { + "appid": 2560490, + "normalized_name": "the world's hardest game on steam" + }, + { + "appid": 2560500, + "normalized_name": "astral throne" + }, + { + "appid": 2560510, + "normalized_name": "scp equestrian" + }, + { + "appid": 2560520, + "normalized_name": "castle guardian" + }, + { + "appid": 2560530, + "normalized_name": "hidden cats in rome" + }, + { + "appid": 2560540, + "normalized_name": "historia realis rome" + }, + { + "appid": 2560590, + "normalized_name": "egg drop" + }, + { + "appid": 2560620, + "normalized_name": "der geistermeister" + }, + { + "appid": 2560640, + "normalized_name": "orgasm simulator 2024 💦" + }, + { + "appid": 2560650, + "normalized_name": "college sex party 🔞" + }, + { + "appid": 2560660, + "normalized_name": "educational suite" + }, + { + "appid": 2560670, + "normalized_name": "succubus sex story" + }, + { + "appid": 2560680, + "normalized_name": "the paradixion laboratory" + }, + { + "appid": 2560690, + "normalized_name": "chimeras heavenfall secrets collector's" + }, + { + "appid": 2560720, + "normalized_name": "akasha" + }, + { + "appid": 2560730, + "normalized_name": "saucelore" + }, + { + "appid": 2560740, + "normalized_name": "beyond fantasy" + }, + { + "appid": 2560750, + "normalized_name": "astra strike" + }, + { + "appid": 2560790, + "normalized_name": "sex story cuckold life episode 3" + }, + { + "appid": 2560820, + "normalized_name": "dung beetle adventure" + }, + { + "appid": 2560830, + "normalized_name": "a mazing3d" + }, + { + "appid": 2560850, + "normalized_name": "gem blast" + }, + { + "appid": 2560870, + "normalized_name": "the specter's desire" + }, + { + "appid": 2560910, + "normalized_name": "stock the shelves" + }, + { + "appid": 2560940, + "normalized_name": "slime experiments" + }, + { + "appid": 2560950, + "normalized_name": "upbound" + }, + { + "appid": 2560960, + "normalized_name": "valerosa" + }, + { + "appid": 2561020, + "normalized_name": "flips¿de" + }, + { + "appid": 2561050, + "normalized_name": "street clean td" + }, + { + "appid": 2561080, + "normalized_name": "stations in seoul card game" + }, + { + "appid": 2561090, + "normalized_name": "stellar bewitching (remastered)" + }, + { + "appid": 2561120, + "normalized_name": "ratking" + }, + { + "appid": 2561140, + "normalized_name": "clash of blades" + }, + { + "appid": 2561150, + "normalized_name": "brave22 ブレイブ22" + }, + { + "appid": 2561180, + "normalized_name": "rescue team mineral of miracles" + }, + { + "appid": 2561190, + "normalized_name": "claire's cruisin' cafe fest frenzy" + }, + { + "appid": 2561200, + "normalized_name": "envoy" + }, + { + "appid": 2561210, + "normalized_name": "carball 360 (beta)" + }, + { + "appid": 2561220, + "normalized_name": "cadde" + }, + { + "appid": 2561230, + "normalized_name": "suspicious shuffle free for all" + }, + { + "appid": 2561260, + "normalized_name": "hyperdrive inn" + }, + { + "appid": 2561270, + "normalized_name": "skibidi toilet hero" + }, + { + "appid": 2561280, + "normalized_name": "farm garden simulator" + }, + { + "appid": 2561310, + "normalized_name": "k2 digital" + }, + { + "appid": 2561330, + "normalized_name": "妖变速递 mutant express" + }, + { + "appid": 2561340, + "normalized_name": "deliver us home" + }, + { + "appid": 2561360, + "normalized_name": "steampunk jigsaw puzzles" + }, + { + "appid": 2561370, + "normalized_name": "misty islands" + }, + { + "appid": 2561380, + "normalized_name": "creature evolution simulator" + }, + { + "appid": 2561390, + "normalized_name": "curator" + }, + { + "appid": 2561460, + "normalized_name": "burning sword death sun" + }, + { + "appid": 2561470, + "normalized_name": "rainbow" + }, + { + "appid": 2561480, + "normalized_name": "worst case" + }, + { + "appid": 2561500, + "normalized_name": "tears of adria" + }, + { + "appid": 2561530, + "normalized_name": "they come in waves" + }, + { + "appid": 2561580, + "normalized_name": "horizon zero dawn" + }, + { + "appid": 2561610, + "normalized_name": "艾人的长夜" + }, + { + "appid": 2561650, + "normalized_name": "gunrun" + }, + { + "appid": 2561660, + "normalized_name": "hunters uprising" + }, + { + "appid": 2561680, + "normalized_name": "backrooms the phobolore" + }, + { + "appid": 2561710, + "normalized_name": "bruteforce" + }, + { + "appid": 2561720, + "normalized_name": "scarlet thread" + }, + { + "appid": 2561770, + "normalized_name": "square city builder" + }, + { + "appid": 2561780, + "normalized_name": "ancient relics egypt" + }, + { + "appid": 2561810, + "normalized_name": "hamsumo" + }, + { + "appid": 2561860, + "normalized_name": "kappa kanji adventure" + }, + { + "appid": 2561870, + "normalized_name": "kata" + }, + { + "appid": 2561920, + "normalized_name": "dimension omega" + }, + { + "appid": 2561970, + "normalized_name": "elysian echoes" + }, + { + "appid": 2561980, + "normalized_name": "hovercraft" + }, + { + "appid": 2562000, + "normalized_name": "argo" + }, + { + "appid": 2562010, + "normalized_name": "hillbomb" + }, + { + "appid": 2562020, + "normalized_name": "worldshaper idle" + }, + { + "appid": 2562040, + "normalized_name": "conge's crunch time" + }, + { + "appid": 2562100, + "normalized_name": "deadlocked" + }, + { + "appid": 2562130, + "normalized_name": "sternly worded adventures" + }, + { + "appid": 2562210, + "normalized_name": "quandary" + }, + { + "appid": 2562240, + "normalized_name": "only up!" + }, + { + "appid": 2562280, + "normalized_name": "the bullet hopper" + }, + { + "appid": 2562290, + "normalized_name": "penrose" + }, + { + "appid": 2562300, + "normalized_name": "don't go" + }, + { + "appid": 2562310, + "normalized_name": "idles of torment" + }, + { + "appid": 2562350, + "normalized_name": "escape escape" + }, + { + "appid": 2562360, + "normalized_name": "nightshift" + }, + { + "appid": 2562380, + "normalized_name": "enfynyty" + }, + { + "appid": 2562390, + "normalized_name": "bennys backrooms" + }, + { + "appid": 2562400, + "normalized_name": "dong wu odyssey" + }, + { + "appid": 2562410, + "normalized_name": "地下城与女教师(dungeons and female teachers)" + }, + { + "appid": 2562430, + "normalized_name": "sweetcore brews an otome game inspired by witchy sitcoms" + }, + { + "appid": 2562450, + "normalized_name": "大千 vast" + }, + { + "appid": 2562460, + "normalized_name": "そろそろ寿司を食べないと死ぬぜ!ユニバース" + }, + { + "appid": 2562470, + "normalized_name": "pop off 2" + }, + { + "appid": 2562510, + "normalized_name": "on air island survival chat" + }, + { + "appid": 2562540, + "normalized_name": "indoras" + }, + { + "appid": 2562550, + "normalized_name": "mylene and the lust temple" + }, + { + "appid": 2562580, + "normalized_name": "shine of fullmoon" + }, + { + "appid": 2562590, + "normalized_name": "c.h.(シーエイチ)" + }, + { + "appid": 2562610, + "normalized_name": "lost & found agency collector's" + }, + { + "appid": 2562620, + "normalized_name": "the palace on the hill" + }, + { + "appid": 2562670, + "normalized_name": "dead end" + }, + { + "appid": 2562710, + "normalized_name": "level up your body" + }, + { + "appid": 2562730, + "normalized_name": "samawa idle" + }, + { + "appid": 2562810, + "normalized_name": "sky conquest" + }, + { + "appid": 2562870, + "normalized_name": "puzzle game" + }, + { + "appid": 2562900, + "normalized_name": "eden genesis" + }, + { + "appid": 2562910, + "normalized_name": "creatures of the night" + }, + { + "appid": 2562980, + "normalized_name": "kwark" + }, + { + "appid": 2563010, + "normalized_name": "hyper sentinel fusion" + }, + { + "appid": 2563030, + "normalized_name": "we could be heroes" + }, + { + "appid": 2563050, + "normalized_name": "time to escape" + }, + { + "appid": 2563090, + "normalized_name": "hume index" + }, + { + "appid": 2563120, + "normalized_name": "survivors" + }, + { + "appid": 2563130, + "normalized_name": "backrooms infinite halls" + }, + { + "appid": 2563140, + "normalized_name": "star farmer prologue" + }, + { + "appid": 2563160, + "normalized_name": "国際指定怪異124号 東京廃村" + }, + { + "appid": 2563180, + "normalized_name": "悪夢のような日々でした" + }, + { + "appid": 2563230, + "normalized_name": "skeletons uprising" + }, + { + "appid": 2563250, + "normalized_name": "逍遥游兮" + }, + { + "appid": 2563300, + "normalized_name": "dream #46" + }, + { + "appid": 2563310, + "normalized_name": "nyana" + }, + { + "appid": 2563340, + "normalized_name": "幻现的花海 sea of phantom flowers" + }, + { + "appid": 2563350, + "normalized_name": "hidden cats in amusement park" + }, + { + "appid": 2563360, + "normalized_name": "锁望仙锋" + }, + { + "appid": 2563400, + "normalized_name": "zone trip" + }, + { + "appid": 2563410, + "normalized_name": "skibidi up bizarre climbing" + }, + { + "appid": 2563430, + "normalized_name": "haunted hotel pheonix" + }, + { + "appid": 2563440, + "normalized_name": "degraman act ii. victor" + }, + { + "appid": 2563460, + "normalized_name": "bob the elementalist" + }, + { + "appid": 2563470, + "normalized_name": "evil diary" + }, + { + "appid": 2563480, + "normalized_name": "zombies aliens and guns" + }, + { + "appid": 2563490, + "normalized_name": "xatrom command" + }, + { + "appid": 2563540, + "normalized_name": "英雄远征" + }, + { + "appid": 2563550, + "normalized_name": "闲置神话" + }, + { + "appid": 2563570, + "normalized_name": "jump like a grad student" + }, + { + "appid": 2563580, + "normalized_name": "sim the sand" + }, + { + "appid": 2563690, + "normalized_name": "bug heroes tower defense" + }, + { + "appid": 2563740, + "normalized_name": "polygons tower defense" + }, + { + "appid": 2563760, + "normalized_name": "bmx bastards" + }, + { + "appid": 2563770, + "normalized_name": "school the hardest rpg in your life" + }, + { + "appid": 2563780, + "normalized_name": "rift saviours" + }, + { + "appid": 2563790, + "normalized_name": "parcel dash" + }, + { + "appid": 2563800, + "normalized_name": "the last game" + }, + { + "appid": 2563820, + "normalized_name": "slasher party" + }, + { + "appid": 2563850, + "normalized_name": "slime volley" + }, + { + "appid": 2563880, + "normalized_name": "ghost hand" + }, + { + "appid": 2563920, + "normalized_name": "女装フィッシング" + }, + { + "appid": 2563930, + "normalized_name": "惯性球 inertia ball" + }, + { + "appid": 2563960, + "normalized_name": "necroslayer" + }, + { + "appid": 2563980, + "normalized_name": "little loki & the yggdrasil maze" + }, + { + "appid": 2564020, + "normalized_name": "gridlock gladiators" + }, + { + "appid": 2564040, + "normalized_name": "the queen's conditioning in captivity" + }, + { + "appid": 2564050, + "normalized_name": "service of love" + }, + { + "appid": 2564070, + "normalized_name": "bloodcrawler" + }, + { + "appid": 2564080, + "normalized_name": "seductive sister" + }, + { + "appid": 2564090, + "normalized_name": "master of deception" + }, + { + "appid": 2564100, + "normalized_name": "girl in crimson dress tales of the demons in the mountain" + }, + { + "appid": 2564120, + "normalized_name": "project k1" + }, + { + "appid": 2564140, + "normalized_name": "desktop garage kit go" + }, + { + "appid": 2564200, + "normalized_name": "dungeonpreneur" + }, + { + "appid": 2564240, + "normalized_name": "a dragon's tale fading light" + }, + { + "appid": 2564260, + "normalized_name": "blue cradle signifie" + }, + { + "appid": 2564320, + "normalized_name": "private military manager tactical auto battler" + }, + { + "appid": 2564330, + "normalized_name": "sweet neighbors" + }, + { + "appid": 2564340, + "normalized_name": "dark age" + }, + { + "appid": 2564370, + "normalized_name": "超级机霸(super ship blaster)" + }, + { + "appid": 2564410, + "normalized_name": "bloodflood" + }, + { + "appid": 2564440, + "normalized_name": "mechanization" + }, + { + "appid": 2564450, + "normalized_name": "auroria" + }, + { + "appid": 2564460, + "normalized_name": "banter" + }, + { + "appid": 2564480, + "normalized_name": "nomad steppeborn saga" + }, + { + "appid": 2564520, + "normalized_name": "lost in random the eternal die" + }, + { + "appid": 2564550, + "normalized_name": "dropingballs" + }, + { + "appid": 2564560, + "normalized_name": "it's a match!!" + }, + { + "appid": 2564590, + "normalized_name": "dark inquisition" + }, + { + "appid": 2564600, + "normalized_name": "until the last bullet" + }, + { + "appid": 2564630, + "normalized_name": "3xtinction" + }, + { + "appid": 2564660, + "normalized_name": "frontline 1942" + }, + { + "appid": 2564680, + "normalized_name": "power line rider" + }, + { + "appid": 2564700, + "normalized_name": "lofi kitten" + }, + { + "appid": 2564720, + "normalized_name": "50ck3t" + }, + { + "appid": 2564740, + "normalized_name": "all noobs must die" + }, + { + "appid": 2564770, + "normalized_name": "we'rewolves" + }, + { + "appid": 2564810, + "normalized_name": "phantom thief sylphy 2 the collector" + }, + { + "appid": 2564820, + "normalized_name": "cosmorists" + }, + { + "appid": 2564850, + "normalized_name": "destroy korcity" + }, + { + "appid": 2564860, + "normalized_name": "castaway" + }, + { + "appid": 2564870, + "normalized_name": "pumpkinman" + }, + { + "appid": 2564880, + "normalized_name": "departed away" + }, + { + "appid": 2564910, + "normalized_name": "cryo" + }, + { + "appid": 2564920, + "normalized_name": "a stupidly realistic medieval war simulator" + }, + { + "appid": 2564940, + "normalized_name": "sun rise.exe" + }, + { + "appid": 2564950, + "normalized_name": "paraido" + }, + { + "appid": 2564970, + "normalized_name": "university days season 1" + }, + { + "appid": 2565000, + "normalized_name": "why god?" + }, + { + "appid": 2565010, + "normalized_name": "tenet of the spark" + }, + { + "appid": 2565180, + "normalized_name": "sniper wild west shooting simulator" + }, + { + "appid": 2565190, + "normalized_name": "bowave" + }, + { + "appid": 2565200, + "normalized_name": "fractal glide" + }, + { + "appid": 2565210, + "normalized_name": "mountain bicycle rider simulator" + }, + { + "appid": 2565260, + "normalized_name": "notice" + }, + { + "appid": 2565310, + "normalized_name": "hello cruel world" + }, + { + "appid": 2565320, + "normalized_name": "gulf echoes memories of the past" + }, + { + "appid": 2565340, + "normalized_name": "gulf echoes tent of treason" + }, + { + "appid": 2565350, + "normalized_name": "voyeur sex toons" + }, + { + "appid": 2565440, + "normalized_name": "the princess's dragon" + }, + { + "appid": 2565450, + "normalized_name": "greebles" + }, + { + "appid": 2565460, + "normalized_name": "the darkened halls" + }, + { + "appid": 2565470, + "normalized_name": "spark mk1" + }, + { + "appid": 2565490, + "normalized_name": "fantasy temptations" + }, + { + "appid": 2565520, + "normalized_name": "year unknown" + }, + { + "appid": 2565550, + "normalized_name": "beyond hanwell" + }, + { + "appid": 2565560, + "normalized_name": "cosmic cowabunnies" + }, + { + "appid": 2565590, + "normalized_name": "goob" + }, + { + "appid": 2565600, + "normalized_name": "seybul tech" + }, + { + "appid": 2565650, + "normalized_name": "scp event xk" + }, + { + "appid": 2565730, + "normalized_name": "super gorilla quest" + }, + { + "appid": 2565960, + "normalized_name": "only up! 1" + }, + { + "appid": 2566020, + "normalized_name": "raindrop sprinters" + }, + { + "appid": 2566030, + "normalized_name": "animus toil" + }, + { + "appid": 2566090, + "normalized_name": "missile dancer 2" + }, + { + "appid": 2566130, + "normalized_name": "wheelchair tester" + }, + { + "appid": 2566140, + "normalized_name": "mythic trials" + }, + { + "appid": 2566150, + "normalized_name": "rpg golf with vampires" + }, + { + "appid": 2566160, + "normalized_name": "shut up rabbit!" + }, + { + "appid": 2566190, + "normalized_name": "jigsaw land" + }, + { + "appid": 2566200, + "normalized_name": "humanoid" + }, + { + "appid": 2566210, + "normalized_name": "真修世界(fairy land)" + }, + { + "appid": 2566230, + "normalized_name": "little dew drop" + }, + { + "appid": 2566240, + "normalized_name": "snaky survivor" + }, + { + "appid": 2566260, + "normalized_name": "shepherd planet" + }, + { + "appid": 2566270, + "normalized_name": "castle empire" + }, + { + "appid": 2566310, + "normalized_name": "thanatophobia" + }, + { + "appid": 2566320, + "normalized_name": "the shadows of fallen city" + }, + { + "appid": 2566340, + "normalized_name": "gedonia 2" + }, + { + "appid": 2566350, + "normalized_name": "i got trapped in the succubus's dream!" + }, + { + "appid": 2566360, + "normalized_name": "mind puzzle 2023" + }, + { + "appid": 2566370, + "normalized_name": "alborada" + }, + { + "appid": 2566380, + "normalized_name": "island of mogambo" + }, + { + "appid": 2566430, + "normalized_name": "dere vengeance" + }, + { + "appid": 2566440, + "normalized_name": "farmcraft" + }, + { + "appid": 2566450, + "normalized_name": "farmcraft 2" + }, + { + "appid": 2566470, + "normalized_name": "my kingdom for the princess |||" + }, + { + "appid": 2566480, + "normalized_name": "canter crossing" + }, + { + "appid": 2566490, + "normalized_name": "blue bird's song" + }, + { + "appid": 2566510, + "normalized_name": "the bearer & the last flame" + }, + { + "appid": 2566520, + "normalized_name": "breaking box walk!" + }, + { + "appid": 2566580, + "normalized_name": "无剑骑士 knight without sword" + }, + { + "appid": 2566620, + "normalized_name": "froggies at the zoo" + }, + { + "appid": 2566650, + "normalized_name": "king of hearts" + }, + { + "appid": 2566700, + "normalized_name": "the last general" + }, + { + "appid": 2566730, + "normalized_name": "our tribe above all" + }, + { + "appid": 2566830, + "normalized_name": "blockfeet" + }, + { + "appid": 2566840, + "normalized_name": "sands of skullcreek" + }, + { + "appid": 2566870, + "normalized_name": "plinko ball falling 3d 2d" + }, + { + "appid": 2566880, + "normalized_name": "mood" + }, + { + "appid": 2566970, + "normalized_name": "catcat save the world" + }, + { + "appid": 2567040, + "normalized_name": "only up" + }, + { + "appid": 2567050, + "normalized_name": "orb of the watcher" + }, + { + "appid": 2567060, + "normalized_name": "ship regulus" + }, + { + "appid": 2567070, + "normalized_name": "persevera" + }, + { + "appid": 2567090, + "normalized_name": "剑隐/hidden sword" + }, + { + "appid": 2567170, + "normalized_name": "you're not family" + }, + { + "appid": 2567190, + "normalized_name": "otome riron to sono shuuhen école de paris" + }, + { + "appid": 2567210, + "normalized_name": "real boxing steel champions vr" + }, + { + "appid": 2567230, + "normalized_name": "cozy fishing" + }, + { + "appid": 2567260, + "normalized_name": "nonlinear door 非线性之门" + }, + { + "appid": 2567290, + "normalized_name": "the keyboard" + }, + { + "appid": 2567300, + "normalized_name": "the purge" + }, + { + "appid": 2567320, + "normalized_name": "the heirloom" + }, + { + "appid": 2567340, + "normalized_name": "flappyparrot" + }, + { + "appid": 2567360, + "normalized_name": "dummydoodle" + }, + { + "appid": 2567380, + "normalized_name": "luctus" + }, + { + "appid": 2567390, + "normalized_name": "story of mine company" + }, + { + "appid": 2567410, + "normalized_name": "the green room experiment (episode 2)" + }, + { + "appid": 2567430, + "normalized_name": "cardverse" + }, + { + "appid": 2567480, + "normalized_name": "hero's delirium" + }, + { + "appid": 2567490, + "normalized_name": "mobile store simulator" + }, + { + "appid": 2567510, + "normalized_name": "sex play bdsm" + }, + { + "appid": 2567520, + "normalized_name": "match it sexy free" + }, + { + "appid": 2567530, + "normalized_name": "test lab inc." + }, + { + "appid": 2567550, + "normalized_name": "moto rally racing vr" + }, + { + "appid": 2567590, + "normalized_name": "はいすくーる☆さばいばる" + }, + { + "appid": 2567600, + "normalized_name": "scare girl 2" + }, + { + "appid": 2567620, + "normalized_name": "electronics puzzle lab" + }, + { + "appid": 2567630, + "normalized_name": "cruxflaw" + }, + { + "appid": 2567670, + "normalized_name": "a lively haunt" + }, + { + "appid": 2567680, + "normalized_name": "rage of towers" + }, + { + "appid": 2567700, + "normalized_name": "juicy ass" + }, + { + "appid": 2567710, + "normalized_name": "sexy ladies" + }, + { + "appid": 2567730, + "normalized_name": "crunky's fun rager" + }, + { + "appid": 2567750, + "normalized_name": "reptile chronicles" + }, + { + "appid": 2567760, + "normalized_name": "lucia and the possessed world" + }, + { + "appid": 2567770, + "normalized_name": "bonefield bodycam horror" + }, + { + "appid": 2567780, + "normalized_name": "death rabbit" + }, + { + "appid": 2567790, + "normalized_name": "shotgun exorcist" + }, + { + "appid": 2567800, + "normalized_name": "slime alchemist" + }, + { + "appid": 2567810, + "normalized_name": "kingdom's gambit" + }, + { + "appid": 2567820, + "normalized_name": "the maze of zabendo" + }, + { + "appid": 2567870, + "normalized_name": "chained together" + }, + { + "appid": 2567880, + "normalized_name": "gloves on!" + }, + { + "appid": 2567910, + "normalized_name": "hostagehub" + }, + { + "appid": 2567920, + "normalized_name": "ninjathea 2" + }, + { + "appid": 2567930, + "normalized_name": "cog the rogue machine" + }, + { + "appid": 2567950, + "normalized_name": "gem wizard" + }, + { + "appid": 2567970, + "normalized_name": "idledev" + }, + { + "appid": 2568000, + "normalized_name": "漫游后室 roaming backrooms" + }, + { + "appid": 2568040, + "normalized_name": "メガロサミア 木星絶対防衛圏 heaven's fall" + }, + { + "appid": 2568050, + "normalized_name": "bar" + }, + { + "appid": 2568060, + "normalized_name": "星际岸vr 生命启迪计划" + }, + { + "appid": 2568410, + "normalized_name": "第九竞技场" + }, + { + "appid": 2568460, + "normalized_name": "parcel packing simulator" + }, + { + "appid": 2568480, + "normalized_name": "whispering fears" + }, + { + "appid": 2568510, + "normalized_name": "match 3d" + }, + { + "appid": 2568520, + "normalized_name": "echoes of humanity" + }, + { + "appid": 2568540, + "normalized_name": "hentai maya" + }, + { + "appid": 2568560, + "normalized_name": "anvil of tristheim" + }, + { + "appid": 2568600, + "normalized_name": "the sentinel" + }, + { + "appid": 2568610, + "normalized_name": "invaders 360" + }, + { + "appid": 2568620, + "normalized_name": "fakeway" + }, + { + "appid": 2568640, + "normalized_name": "孤高之人" + }, + { + "appid": 2568650, + "normalized_name": "carnival survivors the parade" + }, + { + "appid": 2568690, + "normalized_name": "super mega awesome typing" + }, + { + "appid": 2568700, + "normalized_name": "turbo tails" + }, + { + "appid": 2568710, + "normalized_name": "boing bang adventure" + }, + { + "appid": 2568730, + "normalized_name": "void climber" + }, + { + "appid": 2568760, + "normalized_name": "nounishpunk" + }, + { + "appid": 2568780, + "normalized_name": "empolicy" + }, + { + "appid": 2568800, + "normalized_name": "astral outcast" + }, + { + "appid": 2568810, + "normalized_name": "friends play pool" + }, + { + "appid": 2568860, + "normalized_name": "taxi simulator in city" + }, + { + "appid": 2568870, + "normalized_name": "homebound" + }, + { + "appid": 2568880, + "normalized_name": "the hardest game ever" + }, + { + "appid": 2568890, + "normalized_name": "drinkrime" + }, + { + "appid": 2568910, + "normalized_name": "after university doner simulator" + }, + { + "appid": 2568930, + "normalized_name": "solitaire collection" + }, + { + "appid": 2568960, + "normalized_name": "dark moon deities" + }, + { + "appid": 2568990, + "normalized_name": "champion of andia" + }, + { + "appid": 2569030, + "normalized_name": "depthris" + }, + { + "appid": 2569060, + "normalized_name": "delineation" + }, + { + "appid": 2569130, + "normalized_name": "fence" + }, + { + "appid": 2569170, + "normalized_name": "widow in the endless labyrinth" + }, + { + "appid": 2569220, + "normalized_name": "linemaze" + }, + { + "appid": 2569240, + "normalized_name": "王侯将相 充一返三(三倍返利版)" + }, + { + "appid": 2569280, + "normalized_name": "below nowhere" + }, + { + "appid": 2569310, + "normalized_name": "copper corrosion" + }, + { + "appid": 2569320, + "normalized_name": "tiny candy guardian 御菓子島の魔法使い" + }, + { + "appid": 2569330, + "normalized_name": "pixel descent" + }, + { + "appid": 2569390, + "normalized_name": "malicewave" + }, + { + "appid": 2569410, + "normalized_name": "war of castles" + }, + { + "appid": 2569430, + "normalized_name": "sex goddess punishment" + }, + { + "appid": 2569440, + "normalized_name": "vault apocalypse" + }, + { + "appid": 2569460, + "normalized_name": "the crusade is nigh" + }, + { + "appid": 2569470, + "normalized_name": "dead humanity" + }, + { + "appid": 2569500, + "normalized_name": "office life" + }, + { + "appid": 2569510, + "normalized_name": "mlb rivals" + }, + { + "appid": 2569520, + "normalized_name": "naturpark lillebælt vr" + }, + { + "appid": 2569560, + "normalized_name": "hyper mirror run" + }, + { + "appid": 2569570, + "normalized_name": "flightmare" + }, + { + "appid": 2569580, + "normalized_name": "dreams unlimited links" + }, + { + "appid": 2569590, + "normalized_name": "glix" + }, + { + "appid": 2569600, + "normalized_name": "bee in the valley" + }, + { + "appid": 2569610, + "normalized_name": "turbo chicken simulator" + }, + { + "appid": 2569650, + "normalized_name": "two sides of hell" + }, + { + "appid": 2569660, + "normalized_name": "interballistic symphony" + }, + { + "appid": 2569670, + "normalized_name": "farmer's dynasty 2" + }, + { + "appid": 2569680, + "normalized_name": "charles haunted mansion" + }, + { + "appid": 2569710, + "normalized_name": "都市物语 city story" + }, + { + "appid": 2569760, + "normalized_name": "the mound omen of cthulhu" + }, + { + "appid": 2569780, + "normalized_name": "tiki tandems" + }, + { + "appid": 2569820, + "normalized_name": "manic mechanics" + }, + { + "appid": 2569830, + "normalized_name": "vaccine rebirth vr" + }, + { + "appid": 2569840, + "normalized_name": "good fruit" + }, + { + "appid": 2569850, + "normalized_name": "blindspell" + }, + { + "appid": 2569870, + "normalized_name": "sound of silence" + }, + { + "appid": 2569890, + "normalized_name": "le corps glitch (multitudes)" + }, + { + "appid": 2569910, + "normalized_name": "japp just another precise platformer" + }, + { + "appid": 2569930, + "normalized_name": "buti" + }, + { + "appid": 2569980, + "normalized_name": "the fading worlds" + }, + { + "appid": 2570040, + "normalized_name": "oa family" + }, + { + "appid": 2570080, + "normalized_name": "grow your guarden" + }, + { + "appid": 2570110, + "normalized_name": "angel of death" + }, + { + "appid": 2570130, + "normalized_name": "honey's sweet revenge" + }, + { + "appid": 2570140, + "normalized_name": "sensory deprivation pitfall" + }, + { + "appid": 2570150, + "normalized_name": "psychopath hunt chapter two" + }, + { + "appid": 2570160, + "normalized_name": "untamed" + }, + { + "appid": 2570200, + "normalized_name": "medcom origin" + }, + { + "appid": 2570210, + "normalized_name": "eden crafters" + }, + { + "appid": 2570280, + "normalized_name": "cosmos stella returns" + }, + { + "appid": 2570300, + "normalized_name": "lost soul" + }, + { + "appid": 2570380, + "normalized_name": "the attic" + }, + { + "appid": 2570390, + "normalized_name": "dave's fun algebra class" + }, + { + "appid": 2570410, + "normalized_name": "the nascent necromancer" + }, + { + "appid": 2570430, + "normalized_name": "dojo masters editor" + }, + { + "appid": 2570450, + "normalized_name": "solomon's link" + }, + { + "appid": 2570580, + "normalized_name": "ground zero hero" + }, + { + "appid": 2570630, + "normalized_name": "20 small mazes" + }, + { + "appid": 2570640, + "normalized_name": "idle space navy" + }, + { + "appid": 2570690, + "normalized_name": "atlas of the starry night" + }, + { + "appid": 2570710, + "normalized_name": "let him cook" + }, + { + "appid": 2570720, + "normalized_name": "无尽之国 玩梗模拟器" + }, + { + "appid": 2570740, + "normalized_name": "deadly contagion" + }, + { + "appid": 2570810, + "normalized_name": "ys x nordics" + }, + { + "appid": 2570830, + "normalized_name": "floralgraphic memory" + }, + { + "appid": 2570850, + "normalized_name": "heart cage" + }, + { + "appid": 2570870, + "normalized_name": "bananarang the scattered shards" + }, + { + "appid": 2570880, + "normalized_name": "出击吧!勇者 let's go! brave" + }, + { + "appid": 2570900, + "normalized_name": "s.a.b.a.h. (sun as biased as harmony)" + }, + { + "appid": 2570950, + "normalized_name": "nurtopu" + }, + { + "appid": 2570980, + "normalized_name": "death life beyond purgatory" + }, + { + "appid": 2571120, + "normalized_name": "只有向下 only down" + }, + { + "appid": 2571140, + "normalized_name": "escape z" + }, + { + "appid": 2571160, + "normalized_name": "this is my place" + }, + { + "appid": 2571170, + "normalized_name": "tiny balls" + }, + { + "appid": 2571180, + "normalized_name": "hammer dudes" + }, + { + "appid": 2571200, + "normalized_name": "dj clicker world tour" + }, + { + "appid": 2571240, + "normalized_name": "房间的秘密3:女团回归夜" + }, + { + "appid": 2571270, + "normalized_name": "microsstep" + }, + { + "appid": 2571280, + "normalized_name": "梦染深秋" + }, + { + "appid": 2571290, + "normalized_name": "golf odyssey 2 dx" + }, + { + "appid": 2571310, + "normalized_name": "xerme" + }, + { + "appid": 2571330, + "normalized_name": "celbugs" + }, + { + "appid": 2571350, + "normalized_name": "soul of war legions" + }, + { + "appid": 2571400, + "normalized_name": "kitten's wardrobe" + }, + { + "appid": 2571410, + "normalized_name": "500 caliber contractz" + }, + { + "appid": 2571420, + "normalized_name": "猫咪黑帮" + }, + { + "appid": 2571490, + "normalized_name": "castle of void" + }, + { + "appid": 2571500, + "normalized_name": "speedollama" + }, + { + "appid": 2571540, + "normalized_name": "obesity simulator" + }, + { + "appid": 2571550, + "normalized_name": "redemption wrath of sin" + }, + { + "appid": 2571560, + "normalized_name": "arcana" + }, + { + "appid": 2571580, + "normalized_name": "playroom invasion td" + }, + { + "appid": 2571600, + "normalized_name": "meurtre au florian" + }, + { + "appid": 2571610, + "normalized_name": "vitrified" + }, + { + "appid": 2571650, + "normalized_name": "mutation madness" + }, + { + "appid": 2571670, + "normalized_name": "wild west saloon" + }, + { + "appid": 2571720, + "normalized_name": "the sacrifice" + }, + { + "appid": 2571730, + "normalized_name": "halchemist" + }, + { + "appid": 2571780, + "normalized_name": "jewel match aquascapes 2 collector's" + }, + { + "appid": 2571800, + "normalized_name": "laruaville 8" + }, + { + "appid": 2571810, + "normalized_name": "laruaville 9" + }, + { + "appid": 2571840, + "normalized_name": "defense of nations" + }, + { + "appid": 2571880, + "normalized_name": "free will" + }, + { + "appid": 2571900, + "normalized_name": "sex story cuckold life episode 4" + }, + { + "appid": 2571980, + "normalized_name": "the war of 2022" + }, + { + "appid": 2572040, + "normalized_name": "woodo" + }, + { + "appid": 2572060, + "normalized_name": "pixel washer" + }, + { + "appid": 2572100, + "normalized_name": "stress ball" + }, + { + "appid": 2572130, + "normalized_name": "bright day" + }, + { + "appid": 2572150, + "normalized_name": "my virgin roommate" + }, + { + "appid": 2572260, + "normalized_name": "gwiryungdan joseon's twelve" + }, + { + "appid": 2572280, + "normalized_name": "the soul of too birds game" + }, + { + "appid": 2572300, + "normalized_name": "row divers" + }, + { + "appid": 2572320, + "normalized_name": "3d survivors" + }, + { + "appid": 2572330, + "normalized_name": "bloodoomoon survivor" + }, + { + "appid": 2572340, + "normalized_name": "franzen" + }, + { + "appid": 2572360, + "normalized_name": "inoutpath" + }, + { + "appid": 2572400, + "normalized_name": "kingdom dungeon and hero" + }, + { + "appid": 2572540, + "normalized_name": "mutants of mist" + }, + { + "appid": 2572560, + "normalized_name": "messy up" + }, + { + "appid": 2572600, + "normalized_name": "molar underground" + }, + { + "appid": 2572620, + "normalized_name": "aetherift" + }, + { + "appid": 2572630, + "normalized_name": "the girl with the guitar" + }, + { + "appid": 2572670, + "normalized_name": "debug girl" + }, + { + "appid": 2572690, + "normalized_name": "囚われホテル" + }, + { + "appid": 2572820, + "normalized_name": "zra stories" + }, + { + "appid": 2572860, + "normalized_name": "旅人酒馆" + }, + { + "appid": 2572870, + "normalized_name": "堕落女警" + }, + { + "appid": 2572930, + "normalized_name": "project silver shield 银色盾牌" + }, + { + "appid": 2572990, + "normalized_name": "mindform" + }, + { + "appid": 2573000, + "normalized_name": "真寻的奇妙冒险" + }, + { + "appid": 2573010, + "normalized_name": "启云的世界qiyun's world" + }, + { + "appid": 2573030, + "normalized_name": "dough a crime strategy rpg" + }, + { + "appid": 2573040, + "normalized_name": "tokeis" + }, + { + "appid": 2573050, + "normalized_name": "zero end chapter one" + }, + { + "appid": 2573100, + "normalized_name": "unreal lust theory" + }, + { + "appid": 2573150, + "normalized_name": "neon dash tales" + }, + { + "appid": 2573170, + "normalized_name": "united sects of america" + }, + { + "appid": 2573190, + "normalized_name": "battle zombie" + }, + { + "appid": 2573200, + "normalized_name": "squeaky squad" + }, + { + "appid": 2573230, + "normalized_name": "suicide runners" + }, + { + "appid": 2573240, + "normalized_name": "sex simulator camgirl audition 2" + }, + { + "appid": 2573260, + "normalized_name": "古代风流传" + }, + { + "appid": 2573320, + "normalized_name": "beyond hanwell teaser the royal hallamshire" + }, + { + "appid": 2573350, + "normalized_name": "vampire's kiss" + }, + { + "appid": 2573420, + "normalized_name": "visual novel for the kids lumi and baby hamster and baby dragon" + }, + { + "appid": 2573440, + "normalized_name": "paradox metal" + }, + { + "appid": 2573470, + "normalized_name": "dice assassin" + }, + { + "appid": 2573490, + "normalized_name": "tongue tale" + }, + { + "appid": 2573530, + "normalized_name": "changdong's bikini adventure" + }, + { + "appid": 2573540, + "normalized_name": "dux solaris" + }, + { + "appid": 2573610, + "normalized_name": "impossibowl" + }, + { + "appid": 2573620, + "normalized_name": "mow vr challenge your limits" + }, + { + "appid": 2573640, + "normalized_name": "dashbounce" + }, + { + "appid": 2573670, + "normalized_name": "fragment a story in growing" + }, + { + "appid": 2573770, + "normalized_name": "chez croggy" + }, + { + "appid": 2573840, + "normalized_name": "humbug tales keeper of the swarm" + }, + { + "appid": 2573860, + "normalized_name": "原魂" + }, + { + "appid": 2573910, + "normalized_name": "eight balls" + }, + { + "appid": 2573930, + "normalized_name": "skolly's adventure" + }, + { + "appid": 2573940, + "normalized_name": "squid squabble" + }, + { + "appid": 2573950, + "normalized_name": "sun breed" + }, + { + "appid": 2573960, + "normalized_name": "follow the leader" + }, + { + "appid": 2573980, + "normalized_name": "vanbay mosh it up" + }, + { + "appid": 2573990, + "normalized_name": "tempest inc." + }, + { + "appid": 2574000, + "normalized_name": "femboy burgers" + }, + { + "appid": 2574010, + "normalized_name": "gem" + }, + { + "appid": 2574020, + "normalized_name": "soulless steel" + }, + { + "appid": 2574030, + "normalized_name": "巫蛇夜宴" + }, + { + "appid": 2574040, + "normalized_name": "spookermarket" + }, + { + "appid": 2574120, + "normalized_name": "ppa pickleball tour 2025" + }, + { + "appid": 2574190, + "normalized_name": "rooms" + }, + { + "appid": 2574260, + "normalized_name": "brain overload calculate" + }, + { + "appid": 2574270, + "normalized_name": "alien investigator" + }, + { + "appid": 2574340, + "normalized_name": "the source" + }, + { + "appid": 2574350, + "normalized_name": "speedin' shotgun" + }, + { + "appid": 2574360, + "normalized_name": "wizardwars.online" + }, + { + "appid": 2574370, + "normalized_name": "beatmons 2" + }, + { + "appid": 2574420, + "normalized_name": "olive's art venture" + }, + { + "appid": 2574430, + "normalized_name": "underlevel" + }, + { + "appid": 2574460, + "normalized_name": "scars of mars" + }, + { + "appid": 2574470, + "normalized_name": "exit the backrooms" + }, + { + "appid": 2574520, + "normalized_name": "vasilisas torment" + }, + { + "appid": 2574550, + "normalized_name": "culinary survivors" + }, + { + "appid": 2574590, + "normalized_name": "追杀" + }, + { + "appid": 2574640, + "normalized_name": "dark samurai" + }, + { + "appid": 2574650, + "normalized_name": "shape hunter" + }, + { + "appid": 2574690, + "normalized_name": "clarent saga prologue" + }, + { + "appid": 2574760, + "normalized_name": "party pirates" + }, + { + "appid": 2574800, + "normalized_name": "cronie the assassin's mission ~ the teddy bear payment" + }, + { + "appid": 2574820, + "normalized_name": "benderman vr" + }, + { + "appid": 2574840, + "normalized_name": "go for a punch! saki sanobashi" + }, + { + "appid": 2574850, + "normalized_name": "extreme offroad racing" + }, + { + "appid": 2574870, + "normalized_name": "extreme bike racing" + }, + { + "appid": 2574970, + "normalized_name": "crystalfall" + }, + { + "appid": 2575040, + "normalized_name": "mansion of memories" + }, + { + "appid": 2575060, + "normalized_name": "lively chair simulator" + }, + { + "appid": 2575070, + "normalized_name": "future breach youngblood" + }, + { + "appid": 2575100, + "normalized_name": "v monsters digital farm" + }, + { + "appid": 2575110, + "normalized_name": "riot of willy" + }, + { + "appid": 2575120, + "normalized_name": "contorted" + }, + { + "appid": 2575140, + "normalized_name": "valthazar's sanctum" + }, + { + "appid": 2575150, + "normalized_name": "conquistador rex" + }, + { + "appid": 2575230, + "normalized_name": "invert the climb" + }, + { + "appid": 2575290, + "normalized_name": "he" + }, + { + "appid": 2575350, + "normalized_name": "william's dad's secret" + }, + { + "appid": 2575360, + "normalized_name": "doll eye chapter one" + }, + { + "appid": 2575370, + "normalized_name": "wildwood down" + }, + { + "appid": 2575440, + "normalized_name": "machine fable" + }, + { + "appid": 2575510, + "normalized_name": "the last child" + }, + { + "appid": 2575530, + "normalized_name": "aradena battlegrounds" + }, + { + "appid": 2575550, + "normalized_name": "chill of death's breath" + }, + { + "appid": 2575750, + "normalized_name": "blitz & blaze" + }, + { + "appid": 2575780, + "normalized_name": "age of tribulation" + }, + { + "appid": 2575790, + "normalized_name": "project genesis" + }, + { + "appid": 2575800, + "normalized_name": "marcella moon killer at the cove" + }, + { + "appid": 2575840, + "normalized_name": "monster 2" + }, + { + "appid": 2575850, + "normalized_name": "sunset of ate" + }, + { + "appid": 2575860, + "normalized_name": "ephemeral legend" + }, + { + "appid": 2575870, + "normalized_name": "matrix bullet" + }, + { + "appid": 2575900, + "normalized_name": "corn kidz 64" + }, + { + "appid": 2575940, + "normalized_name": "home" + }, + { + "appid": 2575960, + "normalized_name": "disaster golf" + }, + { + "appid": 2575970, + "normalized_name": "hover shooting defence" + }, + { + "appid": 2576000, + "normalized_name": "おためし契約彼女 probationary girlfriend" + }, + { + "appid": 2576040, + "normalized_name": "goblin gangbang 🧟🍆👩" + }, + { + "appid": 2576130, + "normalized_name": "catast" + }, + { + "appid": 2576160, + "normalized_name": "echoes" + }, + { + "appid": 2576170, + "normalized_name": "花母·序" + }, + { + "appid": 2576190, + "normalized_name": "jump queen" + }, + { + "appid": 2576200, + "normalized_name": "into the grid" + }, + { + "appid": 2576250, + "normalized_name": "wyrmbound" + }, + { + "appid": 2576280, + "normalized_name": "eternal damnation" + }, + { + "appid": 2576290, + "normalized_name": "machine challenger" + }, + { + "appid": 2576320, + "normalized_name": "son of the dragon king" + }, + { + "appid": 2576350, + "normalized_name": "mansion of memories prologue" + }, + { + "appid": 2576410, + "normalized_name": "disco samurai" + }, + { + "appid": 2576430, + "normalized_name": "phrank's photon pharm" + }, + { + "appid": 2576440, + "normalized_name": "posthaste" + }, + { + "appid": 2576460, + "normalized_name": "angelstruck" + }, + { + "appid": 2576470, + "normalized_name": "nine errand" + }, + { + "appid": 2576480, + "normalized_name": "to the mars" + }, + { + "appid": 2576510, + "normalized_name": "the adventures of liam" + }, + { + "appid": 2576550, + "normalized_name": "little dasher!" + }, + { + "appid": 2576560, + "normalized_name": "after the storm" + }, + { + "appid": 2576580, + "normalized_name": "robospital" + }, + { + "appid": 2576600, + "normalized_name": "bottle can float" + }, + { + "appid": 2576640, + "normalized_name": "demon legend" + }, + { + "appid": 2576700, + "normalized_name": "starry 巡星之旅" + }, + { + "appid": 2576710, + "normalized_name": "the sheriff's town" + }, + { + "appid": 2576880, + "normalized_name": "ava's hidden adventures" + }, + { + "appid": 2576990, + "normalized_name": "saving astral" + }, + { + "appid": 2577010, + "normalized_name": "gravity cab" + }, + { + "appid": 2577020, + "normalized_name": "the spiral" + }, + { + "appid": 2577110, + "normalized_name": "kami" + }, + { + "appid": 2577140, + "normalized_name": "dreams of a geisha" + }, + { + "appid": 2577150, + "normalized_name": "skullfracture" + }, + { + "appid": 2577160, + "normalized_name": "i made myself a ship" + }, + { + "appid": 2577180, + "normalized_name": "demonstar original missions" + }, + { + "appid": 2577250, + "normalized_name": "赛卢比斯传奇" + }, + { + "appid": 2577290, + "normalized_name": "the collector" + }, + { + "appid": 2577320, + "normalized_name": "codedoor" + }, + { + "appid": 2577330, + "normalized_name": "pea pod power" + }, + { + "appid": 2577420, + "normalized_name": "the diner at the end of the galaxy" + }, + { + "appid": 2577430, + "normalized_name": "ghost vanguard" + }, + { + "appid": 2577490, + "normalized_name": "moonbunny" + }, + { + "appid": 2577500, + "normalized_name": "dim" + }, + { + "appid": 2577510, + "normalized_name": "hard days" + }, + { + "appid": 2577520, + "normalized_name": "conflict of lords" + }, + { + "appid": 2577550, + "normalized_name": "immortal mantis revenge" + }, + { + "appid": 2577660, + "normalized_name": "spava" + }, + { + "appid": 2577690, + "normalized_name": "imaginworld" + }, + { + "appid": 2577730, + "normalized_name": "golel" + }, + { + "appid": 2577760, + "normalized_name": "just click the button" + }, + { + "appid": 2577770, + "normalized_name": "hundred fires the rising of red star episode 3" + }, + { + "appid": 2577780, + "normalized_name": "maze bounders" + }, + { + "appid": 2577850, + "normalized_name": "seekers of eclipse" + }, + { + "appid": 2577860, + "normalized_name": "a night at the watermill" + }, + { + "appid": 2577890, + "normalized_name": "alta's odyssey" + }, + { + "appid": 2577900, + "normalized_name": "asteria" + }, + { + "appid": 2577910, + "normalized_name": "car mechanic city driving" + }, + { + "appid": 2577980, + "normalized_name": "平灾图 quell the disaster" + }, + { + "appid": 2578010, + "normalized_name": "tank battle resist" + }, + { + "appid": 2578040, + "normalized_name": "swordplay~karakuri~strange tale" + }, + { + "appid": 2578050, + "normalized_name": "fishing echoes" + }, + { + "appid": 2578060, + "normalized_name": "rogue souls" + }, + { + "appid": 2578110, + "normalized_name": "we're tethered together" + }, + { + "appid": 2578130, + "normalized_name": "boki the summit" + }, + { + "appid": 2578140, + "normalized_name": "i mother" + }, + { + "appid": 2578160, + "normalized_name": "kipidon we will always love you" + }, + { + "appid": 2578180, + "normalized_name": "save the villainess an otome isekai roleplaying game" + }, + { + "appid": 2578190, + "normalized_name": "across the gap" + }, + { + "appid": 2578220, + "normalized_name": "the invincible iron ivy enter the pretty pretty princess" + }, + { + "appid": 2578240, + "normalized_name": "復甦之島:愛與勝利" + }, + { + "appid": 2578250, + "normalized_name": "hbd rpg" + }, + { + "appid": 2578270, + "normalized_name": "treachery in beatdown city u.n. trouble" + }, + { + "appid": 2578280, + "normalized_name": "cat palette merging colorful kittens" + }, + { + "appid": 2578300, + "normalized_name": "坊间百闻 / commfurrysm a wholesome shopping street" + }, + { + "appid": 2578340, + "normalized_name": "race manager" + }, + { + "appid": 2578350, + "normalized_name": "the nights on arcade" + }, + { + "appid": 2578360, + "normalized_name": "kinky fight club 2" + }, + { + "appid": 2578400, + "normalized_name": "bible trivia" + }, + { + "appid": 2578420, + "normalized_name": "unnamed experiment" + }, + { + "appid": 2578430, + "normalized_name": "frisia tales & tides" + }, + { + "appid": 2578460, + "normalized_name": "human phobia" + }, + { + "appid": 2578480, + "normalized_name": "portals escape the infinity" + }, + { + "appid": 2578510, + "normalized_name": "20mtd emberpath" + }, + { + "appid": 2578530, + "normalized_name": "aoa academy" + }, + { + "appid": 2578630, + "normalized_name": "fairy trails battle for ever after" + }, + { + "appid": 2578640, + "normalized_name": "fegefeuer soul tower" + }, + { + "appid": 2578650, + "normalized_name": "rising dead" + }, + { + "appid": 2578660, + "normalized_name": "heroes of row" + }, + { + "appid": 2578670, + "normalized_name": "stellar reach" + }, + { + "appid": 2578680, + "normalized_name": "frontiers reborn" + }, + { + "appid": 2578690, + "normalized_name": "arch rivals" + }, + { + "appid": 2578700, + "normalized_name": "vadi" + }, + { + "appid": 2578710, + "normalized_name": "aladdin of the forsaken lands" + }, + { + "appid": 2578740, + "normalized_name": "copperfields" + }, + { + "appid": 2578750, + "normalized_name": "full moon" + }, + { + "appid": 2578760, + "normalized_name": "descended" + }, + { + "appid": 2578790, + "normalized_name": "stellar ghosts settlers" + }, + { + "appid": 2578800, + "normalized_name": "radio silent" + }, + { + "appid": 2578810, + "normalized_name": "reversibot" + }, + { + "appid": 2578820, + "normalized_name": "bombabomb!" + }, + { + "appid": 2578830, + "normalized_name": "vrogue" + }, + { + "appid": 2578860, + "normalized_name": "逝去的群星" + }, + { + "appid": 2578880, + "normalized_name": "how to lose one's virginity" + }, + { + "appid": 2578900, + "normalized_name": "lucha masters stickermania" + }, + { + "appid": 2578910, + "normalized_name": "nocturnals" + }, + { + "appid": 2578920, + "normalized_name": "falldenn" + }, + { + "appid": 2578940, + "normalized_name": "no logic" + }, + { + "appid": 2578950, + "normalized_name": "inhibit" + }, + { + "appid": 2578960, + "normalized_name": "six ears" + }, + { + "appid": 2578980, + "normalized_name": "whispers of an elven captor" + }, + { + "appid": 2579000, + "normalized_name": "knight speed" + }, + { + "appid": 2579020, + "normalized_name": "idol vs furries" + }, + { + "appid": 2579070, + "normalized_name": "the voluntary chipping" + }, + { + "appid": 2579110, + "normalized_name": "last stand" + }, + { + "appid": 2579180, + "normalized_name": "merging city" + }, + { + "appid": 2579270, + "normalized_name": "satellite odyssey prologue" + }, + { + "appid": 2579280, + "normalized_name": "子归 blossom" + }, + { + "appid": 2579380, + "normalized_name": "sex story cuckold life episode 5" + }, + { + "appid": 2579400, + "normalized_name": "garage works" + }, + { + "appid": 2579430, + "normalized_name": "ego's spark" + }, + { + "appid": 2579440, + "normalized_name": "mukke" + }, + { + "appid": 2579470, + "normalized_name": "futanari girlfriends ⚧👧🍆" + }, + { + "appid": 2579480, + "normalized_name": "party maniacs rules" + }, + { + "appid": 2579490, + "normalized_name": "metal exile" + }, + { + "appid": 2579510, + "normalized_name": "horizon's mirage" + }, + { + "appid": 2579540, + "normalized_name": "the fairway club" + }, + { + "appid": 2579550, + "normalized_name": "salvo shuffle" + }, + { + "appid": 2579570, + "normalized_name": "samuel sage the mystery at penby inn" + }, + { + "appid": 2579580, + "normalized_name": "sakazamurano inmatsuri kegasareta mikoshimai" + }, + { + "appid": 2579600, + "normalized_name": "unparalleled" + }, + { + "appid": 2579620, + "normalized_name": "wild horse racing" + }, + { + "appid": 2579680, + "normalized_name": "house of everlast" + }, + { + "appid": 2579710, + "normalized_name": "aerodangle" + }, + { + "appid": 2579730, + "normalized_name": "my bimbo dream season 1" + }, + { + "appid": 2579740, + "normalized_name": "暗色战争(dark conflict)" + }, + { + "appid": 2579820, + "normalized_name": "enterprise space agency simulator" + }, + { + "appid": 2579840, + "normalized_name": "chill drive" + }, + { + "appid": 2579860, + "normalized_name": "猫猫:火力不足" + }, + { + "appid": 2579870, + "normalized_name": "max capacity" + }, + { + "appid": 2579880, + "normalized_name": "blast 3d the arrival ~ chapter 0 ~" + }, + { + "appid": 2579890, + "normalized_name": "god's forest" + }, + { + "appid": 2579950, + "normalized_name": "spasms of stupidity quest for the void" + }, + { + "appid": 2579960, + "normalized_name": "escape him." + }, + { + "appid": 2579970, + "normalized_name": "shattered world" + }, + { + "appid": 2580000, + "normalized_name": "chess" + }, + { + "appid": 2580010, + "normalized_name": "echoes of steel" + }, + { + "appid": 2580020, + "normalized_name": "threshold" + }, + { + "appid": 2580040, + "normalized_name": "code5erpent" + }, + { + "appid": 2580100, + "normalized_name": "rhythm master" + }, + { + "appid": 2580130, + "normalized_name": "the seven realms high lathión" + }, + { + "appid": 2580160, + "normalized_name": "angry mother earth" + }, + { + "appid": 2580170, + "normalized_name": "mainasutto i'm not alone" + }, + { + "appid": 2580180, + "normalized_name": "sex play the sauna" + }, + { + "appid": 2580210, + "normalized_name": "scp rulebreaker" + }, + { + "appid": 2580280, + "normalized_name": "fungeye" + }, + { + "appid": 2580290, + "normalized_name": "nudgirls" + }, + { + "appid": 2580310, + "normalized_name": "space dogo" + }, + { + "appid": 2580340, + "normalized_name": "grimdoria" + }, + { + "appid": 2580370, + "normalized_name": "extermination overdrive" + }, + { + "appid": 2580380, + "normalized_name": "danger trail" + }, + { + "appid": 2580390, + "normalized_name": "crossing frontier fate foretold" + }, + { + "appid": 2580980, + "normalized_name": "环行旅舍" + }, + { + "appid": 2581020, + "normalized_name": "virtuar z" + }, + { + "appid": 2581030, + "normalized_name": "the adventures of bunny and pig" + }, + { + "appid": 2581040, + "normalized_name": "东方封天境" + }, + { + "appid": 2581050, + "normalized_name": "kamitsubaki city ensemble" + }, + { + "appid": 2581080, + "normalized_name": "cats spotter 猫咪观察员" + }, + { + "appid": 2581100, + "normalized_name": "kill capture destroy" + }, + { + "appid": 2581110, + "normalized_name": "stellarune" + }, + { + "appid": 2581120, + "normalized_name": "broad sword" + }, + { + "appid": 2581160, + "normalized_name": "雄关漫道,一梦万里" + }, + { + "appid": 2581180, + "normalized_name": "masquaradious" + }, + { + "appid": 2581200, + "normalized_name": "dark odyssey" + }, + { + "appid": 2581210, + "normalized_name": "特別捜査 密着24時" + }, + { + "appid": 2581240, + "normalized_name": "陷阵之塔" + }, + { + "appid": 2581290, + "normalized_name": "freaky trip" + }, + { + "appid": 2581310, + "normalized_name": "battle stations blockade" + }, + { + "appid": 2581350, + "normalized_name": "frog and roll" + }, + { + "appid": 2581360, + "normalized_name": "plebs and pillagers" + }, + { + "appid": 2581370, + "normalized_name": "monster energy supercross 25 the official video game" + }, + { + "appid": 2581380, + "normalized_name": "dark mind morpheus protocol" + }, + { + "appid": 2581410, + "normalized_name": "stygian outer gods" + }, + { + "appid": 2581450, + "normalized_name": "hotel vip" + }, + { + "appid": 2581510, + "normalized_name": "pixel dash" + }, + { + "appid": 2581530, + "normalized_name": "ハッピーパパサポート!~sugar daddy support~" + }, + { + "appid": 2581540, + "normalized_name": "magic and dragons 4x battle" + }, + { + "appid": 2581560, + "normalized_name": "brownie's adventure" + }, + { + "appid": 2581570, + "normalized_name": "封神榜2023" + }, + { + "appid": 2581590, + "normalized_name": "super paul world" + }, + { + "appid": 2581600, + "normalized_name": "prima first rogues" + }, + { + "appid": 2581610, + "normalized_name": "pixels" + }, + { + "appid": 2581620, + "normalized_name": "rawisland" + }, + { + "appid": 2581630, + "normalized_name": "battle for treasure" + }, + { + "appid": 2581690, + "normalized_name": "florifer" + }, + { + "appid": 2581700, + "normalized_name": "motogp24" + }, + { + "appid": 2581750, + "normalized_name": "w.a.n.d. project" + }, + { + "appid": 2581810, + "normalized_name": "color splash birds" + }, + { + "appid": 2581910, + "normalized_name": "フェアリーカードバトラーズ" + }, + { + "appid": 2581950, + "normalized_name": "tiny aquarium social fishkeeping" + }, + { + "appid": 2581960, + "normalized_name": "the collage atlas" + }, + { + "appid": 2581980, + "normalized_name": "myth or reality mystery of the lake collector's" + }, + { + "appid": 2582100, + "normalized_name": "demon of the dark" + }, + { + "appid": 2582130, + "normalized_name": "clicky" + }, + { + "appid": 2582140, + "normalized_name": "seafarer the ship sim" + }, + { + "appid": 2582180, + "normalized_name": "daria a kingdom simulator" + }, + { + "appid": 2582220, + "normalized_name": "wizardry level c" + }, + { + "appid": 2582240, + "normalized_name": "my douchey boss has a gentle twin brother?! bl visual novel" + }, + { + "appid": 2582250, + "normalized_name": "assemble" + }, + { + "appid": 2582260, + "normalized_name": "many eyed" + }, + { + "appid": 2582300, + "normalized_name": "vongarland castle sacrilege of the night" + }, + { + "appid": 2582310, + "normalized_name": "metrosim the subway simulator" + }, + { + "appid": 2582320, + "normalized_name": "mixtape" + }, + { + "appid": 2582340, + "normalized_name": "无限流模拟器" + }, + { + "appid": 2582350, + "normalized_name": "magic force" + }, + { + "appid": 2582380, + "normalized_name": "getting canceled" + }, + { + "appid": 2582390, + "normalized_name": "kanji combi yakuzumo" + }, + { + "appid": 2582400, + "normalized_name": "five day detective" + }, + { + "appid": 2582410, + "normalized_name": "古诗消消大师 chinese ancient poetry matching game" + }, + { + "appid": 2582420, + "normalized_name": "bulletz" + }, + { + "appid": 2582450, + "normalized_name": "'sassin" + }, + { + "appid": 2582460, + "normalized_name": "aurora nova" + }, + { + "appid": 2582470, + "normalized_name": "wacky west" + }, + { + "appid": 2582480, + "normalized_name": "ground wars kdr alpha" + }, + { + "appid": 2582500, + "normalized_name": "sleepless night" + }, + { + "appid": 2582530, + "normalized_name": "broadsword warlord" + }, + { + "appid": 2582540, + "normalized_name": "roglass" + }, + { + "appid": 2582560, + "normalized_name": "ea sports madden nfl 25" + }, + { + "appid": 2582620, + "normalized_name": "how to train your car" + }, + { + "appid": 2582650, + "normalized_name": "enishia and the binding brand" + }, + { + "appid": 2582660, + "normalized_name": "and the hero was never seen again" + }, + { + "appid": 2582710, + "normalized_name": "mikene's aspects" + }, + { + "appid": 2582730, + "normalized_name": "black smith4" + }, + { + "appid": 2582740, + "normalized_name": "virago reality new" + }, + { + "appid": 2582750, + "normalized_name": "monster hero adventures" + }, + { + "appid": 2582780, + "normalized_name": "gin the silver wind" + }, + { + "appid": 2582810, + "normalized_name": "hues of the void" + }, + { + "appid": 2582880, + "normalized_name": "northrealm tribes" + }, + { + "appid": 2582890, + "normalized_name": "legend of the landscaper" + }, + { + "appid": 2582900, + "normalized_name": "scary maze game" + }, + { + "appid": 2582960, + "normalized_name": "nakwon last paradise" + }, + { + "appid": 2582990, + "normalized_name": "school girl simulator" + }, + { + "appid": 2583000, + "normalized_name": "mozzies" + }, + { + "appid": 2583030, + "normalized_name": "the last summer 那年夏末" + }, + { + "appid": 2583280, + "normalized_name": "kill the topulus" + }, + { + "appid": 2583290, + "normalized_name": "red barrels go boom" + }, + { + "appid": 2583300, + "normalized_name": "simulator of ukraine 1991" + }, + { + "appid": 2583320, + "normalized_name": "warplanes air corp" + }, + { + "appid": 2583330, + "normalized_name": "zlime return of demon lord" + }, + { + "appid": 2583340, + "normalized_name": "hexarium" + }, + { + "appid": 2583370, + "normalized_name": "semu" + }, + { + "appid": 2583380, + "normalized_name": "viking saga echoes of midgard" + }, + { + "appid": 2583430, + "normalized_name": "alice in the nightmare land" + }, + { + "appid": 2583460, + "normalized_name": "cubeos" + }, + { + "appid": 2583500, + "normalized_name": "стены" + }, + { + "appid": 2583530, + "normalized_name": "lost infinity" + }, + { + "appid": 2583540, + "normalized_name": "aquarium land" + }, + { + "appid": 2583550, + "normalized_name": "死亡禁地 the dead zone" + }, + { + "appid": 2583570, + "normalized_name": "line bender" + }, + { + "appid": 2583590, + "normalized_name": "iggy&java" + }, + { + "appid": 2583620, + "normalized_name": "i hate you please suffer" + }, + { + "appid": 2583630, + "normalized_name": "back to reality" + }, + { + "appid": 2583640, + "normalized_name": "defendor" + }, + { + "appid": 2583660, + "normalized_name": "fractured alliance" + }, + { + "appid": 2583680, + "normalized_name": "game collector" + }, + { + "appid": 2583690, + "normalized_name": "secret of the vikings 2 the world tree" + }, + { + "appid": 2583730, + "normalized_name": "don't destroy your friends" + }, + { + "appid": 2583760, + "normalized_name": "louma" + }, + { + "appid": 2583830, + "normalized_name": "手積み麻雀" + }, + { + "appid": 2583880, + "normalized_name": "unknown dungeon" + }, + { + "appid": 2583890, + "normalized_name": "arcanora" + }, + { + "appid": 2583920, + "normalized_name": "ep.家族" + }, + { + "appid": 2583930, + "normalized_name": "where's my loot?" + }, + { + "appid": 2583950, + "normalized_name": "zonescape" + }, + { + "appid": 2583960, + "normalized_name": "ridevery" + }, + { + "appid": 2583970, + "normalized_name": "ghosts of oblivion" + }, + { + "appid": 2584050, + "normalized_name": "slaughter the lost outpost" + }, + { + "appid": 2584160, + "normalized_name": "alphabit" + }, + { + "appid": 2584180, + "normalized_name": "my friend aki" + }, + { + "appid": 2584250, + "normalized_name": "cold ground" + }, + { + "appid": 2584260, + "normalized_name": "what have you done father?" + }, + { + "appid": 2584280, + "normalized_name": "first up" + }, + { + "appid": 2584290, + "normalized_name": "violet" + }, + { + "appid": 2584310, + "normalized_name": "trapped in here with me" + }, + { + "appid": 2584340, + "normalized_name": "gabenwood 2 99 hidden euros" + }, + { + "appid": 2584370, + "normalized_name": "horror inside the forest" + }, + { + "appid": 2584380, + "normalized_name": "glitched lightning" + }, + { + "appid": 2584390, + "normalized_name": "philistine" + }, + { + "appid": 2584400, + "normalized_name": "beaten path" + }, + { + "appid": 2584420, + "normalized_name": "core defence" + }, + { + "appid": 2584450, + "normalized_name": "少女与机甲/girls and robots" + }, + { + "appid": 2584470, + "normalized_name": "sniper hunter shooter" + }, + { + "appid": 2584480, + "normalized_name": "path of trials" + }, + { + "appid": 2584500, + "normalized_name": "surveillance" + }, + { + "appid": 2584510, + "normalized_name": "telegraphist 1920 beats of war" + }, + { + "appid": 2584520, + "normalized_name": "metagraph" + }, + { + "appid": 2584530, + "normalized_name": "mirrorscape" + }, + { + "appid": 2584550, + "normalized_name": "golf evolution simulation" + }, + { + "appid": 2584570, + "normalized_name": "west of the witchlands" + }, + { + "appid": 2584590, + "normalized_name": "fallen" + }, + { + "appid": 2584620, + "normalized_name": "global conflict the trading card game" + }, + { + "appid": 2584630, + "normalized_name": "legendary slide 2 platinum" + }, + { + "appid": 2584650, + "normalized_name": "girlfriend from hell" + }, + { + "appid": 2584680, + "normalized_name": "black heaven a necromantic dating sim" + }, + { + "appid": 2584700, + "normalized_name": "squaretrail lines of the frame" + }, + { + "appid": 2584710, + "normalized_name": "apacies creatures of the old west" + }, + { + "appid": 2584740, + "normalized_name": "malvinas la ultima carta" + }, + { + "appid": 2584800, + "normalized_name": "star mining co." + }, + { + "appid": 2584810, + "normalized_name": "nixie" + }, + { + "appid": 2584850, + "normalized_name": "chutney space survivor" + }, + { + "appid": 2584860, + "normalized_name": "kuma's panty" + }, + { + "appid": 2584880, + "normalized_name": "the whistle" + }, + { + "appid": 2584970, + "normalized_name": "wormhole battle for planet earth" + }, + { + "appid": 2584990, + "normalized_name": "shadowverse worlds beyond" + }, + { + "appid": 2585020, + "normalized_name": "新西游记 奇幻同行 new journey to the west" + }, + { + "appid": 2585040, + "normalized_name": "gunvolt records cychronicle" + }, + { + "appid": 2585050, + "normalized_name": "tyrone soulz" + }, + { + "appid": 2585110, + "normalized_name": "我在疗养院送人上西天 / last stand delivery" + }, + { + "appid": 2585160, + "normalized_name": "our little secret! heart pounding idol sex! forbidden lessons with the manager" + }, + { + "appid": 2585180, + "normalized_name": "smokey's rescue team" + }, + { + "appid": 2585250, + "normalized_name": "aegis" + }, + { + "appid": 2585260, + "normalized_name": "i commissioned some cats 2" + }, + { + "appid": 2585270, + "normalized_name": "kamla" + }, + { + "appid": 2585280, + "normalized_name": "the witches story" + }, + { + "appid": 2585380, + "normalized_name": "bloki" + }, + { + "appid": 2585390, + "normalized_name": "absolute doppelkopf for windows 11" + }, + { + "appid": 2585410, + "normalized_name": "absolute schafkopf for windows 11" + }, + { + "appid": 2585430, + "normalized_name": "card collector and card girls" + }, + { + "appid": 2585480, + "normalized_name": "space station multiverse" + }, + { + "appid": 2585490, + "normalized_name": "springhell" + }, + { + "appid": 2585530, + "normalized_name": "crawlspace multiplayer" + }, + { + "appid": 2585560, + "normalized_name": "笼中困兽" + }, + { + "appid": 2585570, + "normalized_name": "war maze" + }, + { + "appid": 2585580, + "normalized_name": "legacy of sin ill boding" + }, + { + "appid": 2585650, + "normalized_name": "rapid soccer" + }, + { + "appid": 2585660, + "normalized_name": "rimal\"the rise of the lost land\"" + }, + { + "appid": 2585700, + "normalized_name": "quack attack" + }, + { + "appid": 2585710, + "normalized_name": "curiosmos" + }, + { + "appid": 2585720, + "normalized_name": "sex apocalypse 2" + }, + { + "appid": 2585830, + "normalized_name": "promise mascot agency" + }, + { + "appid": 2585840, + "normalized_name": "kitchen quest" + }, + { + "appid": 2585860, + "normalized_name": "ruins to fortress" + }, + { + "appid": 2585890, + "normalized_name": "demon tides" + }, + { + "appid": 2585970, + "normalized_name": "mardori" + }, + { + "appid": 2586000, + "normalized_name": "endless rpg untold tales" + }, + { + "appid": 2586040, + "normalized_name": "memory patches" + }, + { + "appid": 2586090, + "normalized_name": "enemy trench" + }, + { + "appid": 2586110, + "normalized_name": "defenders guild" + }, + { + "appid": 2586140, + "normalized_name": "english is hard_" + }, + { + "appid": 2586150, + "normalized_name": "the builder season 1" + }, + { + "appid": 2586160, + "normalized_name": "paper planes" + }, + { + "appid": 2586170, + "normalized_name": "blob life" + }, + { + "appid": 2586240, + "normalized_name": "loinkham td" + }, + { + "appid": 2586250, + "normalized_name": "妄想凶ザナトリウム" + }, + { + "appid": 2586270, + "normalized_name": "自由世界" + }, + { + "appid": 2586310, + "normalized_name": "area93" + }, + { + "appid": 2586330, + "normalized_name": "degradation kyomu's fury 劣化:キョムの怒り" + }, + { + "appid": 2586430, + "normalized_name": "undefined survivors アンディファインド サバイバーズ" + }, + { + "appid": 2586440, + "normalized_name": "house 2" + }, + { + "appid": 2586470, + "normalized_name": "survive to live!" + }, + { + "appid": 2586500, + "normalized_name": "pixel of memory" + }, + { + "appid": 2586520, + "normalized_name": "atelier resleriana" + }, + { + "appid": 2586530, + "normalized_name": "isekai awakening" + }, + { + "appid": 2586540, + "normalized_name": "filled to the limit" + }, + { + "appid": 2586560, + "normalized_name": "ninja kamui shinobi origins" + }, + { + "appid": 2586570, + "normalized_name": "cado the great tournament" + }, + { + "appid": 2586630, + "normalized_name": "shelter in the doomsday" + }, + { + "appid": 2586640, + "normalized_name": "wall ass office simulator" + }, + { + "appid": 2586650, + "normalized_name": "winning post 10 2024" + }, + { + "appid": 2586670, + "normalized_name": "evil snowmen 2" + }, + { + "appid": 2586680, + "normalized_name": "bug bash" + }, + { + "appid": 2586710, + "normalized_name": "futanari tales 💕🔞" + }, + { + "appid": 2586720, + "normalized_name": "maraka" + }, + { + "appid": 2586740, + "normalized_name": "名剑录:洪武天下 legend of the sword:hongwu age" + }, + { + "appid": 2586780, + "normalized_name": "evercore heroes ascension" + }, + { + "appid": 2586790, + "normalized_name": "reality patrol" + }, + { + "appid": 2586820, + "normalized_name": "milky way jigsaw puzzles" + }, + { + "appid": 2586890, + "normalized_name": "money garden" + }, + { + "appid": 2586900, + "normalized_name": "telescape" + }, + { + "appid": 2586970, + "normalized_name": "raster" + }, + { + "appid": 2587010, + "normalized_name": "road motorcycle" + }, + { + "appid": 2587030, + "normalized_name": "hellgineers" + }, + { + "appid": 2587040, + "normalized_name": "jackpot 2" + }, + { + "appid": 2587050, + "normalized_name": "在线乞讨" + }, + { + "appid": 2587060, + "normalized_name": "death lease" + }, + { + "appid": 2587130, + "normalized_name": "outbreak the fedora files what lydia knows" + }, + { + "appid": 2587170, + "normalized_name": "railbreak" + }, + { + "appid": 2587190, + "normalized_name": "click click click" + }, + { + "appid": 2587210, + "normalized_name": "shunya" + }, + { + "appid": 2587230, + "normalized_name": "sapiens craft puzzle" + }, + { + "appid": 2587240, + "normalized_name": "chomper" + }, + { + "appid": 2587250, + "normalized_name": "mindfield" + }, + { + "appid": 2587260, + "normalized_name": "chill seekers" + }, + { + "appid": 2587280, + "normalized_name": "the vorlec" + }, + { + "appid": 2587310, + "normalized_name": "ultradian" + }, + { + "appid": 2587320, + "normalized_name": "hidden glade" + }, + { + "appid": 2587340, + "normalized_name": "grooove" + }, + { + "appid": 2587360, + "normalized_name": "neon marble rust" + }, + { + "appid": 2587370, + "normalized_name": "chick chick" + }, + { + "appid": 2587380, + "normalized_name": "lens of horror" + }, + { + "appid": 2587390, + "normalized_name": "cuckies & cream maids for milking" + }, + { + "appid": 2587400, + "normalized_name": "bara labs" + }, + { + "appid": 2587450, + "normalized_name": "tank team" + }, + { + "appid": 2587470, + "normalized_name": "tekskeleton" + }, + { + "appid": 2587500, + "normalized_name": "dead’s dawn" + }, + { + "appid": 2587510, + "normalized_name": "lost cats" + }, + { + "appid": 2587590, + "normalized_name": "iridio" + }, + { + "appid": 2587620, + "normalized_name": "dinolords" + }, + { + "appid": 2587630, + "normalized_name": "blood knuckle rooftop of the impossible skyscraper" + }, + { + "appid": 2587670, + "normalized_name": "your train 2" + }, + { + "appid": 2587680, + "normalized_name": "served in yong'an" + }, + { + "appid": 2587690, + "normalized_name": "eve of the storm" + }, + { + "appid": 2587770, + "normalized_name": "the stalked" + }, + { + "appid": 2587780, + "normalized_name": "异界战记" + }, + { + "appid": 2587790, + "normalized_name": "anomalous deception" + }, + { + "appid": 2587810, + "normalized_name": "山中野居 live in the country" + }, + { + "appid": 2587830, + "normalized_name": "the castle mystery" + }, + { + "appid": 2587840, + "normalized_name": "pancake patrol" + }, + { + "appid": 2587850, + "normalized_name": "taz cebula's brides of bloodbane" + }, + { + "appid": 2587870, + "normalized_name": "xetanon" + }, + { + "appid": 2587890, + "normalized_name": "poon puzzle" + }, + { + "appid": 2587900, + "normalized_name": "stellario" + }, + { + "appid": 2587920, + "normalized_name": "myth & mirage" + }, + { + "appid": 2587930, + "normalized_name": "topswap" + }, + { + "appid": 2587940, + "normalized_name": "photophore chapter 1" + }, + { + "appid": 2587950, + "normalized_name": "isekai hero" + }, + { + "appid": 2587960, + "normalized_name": "boing odyssey" + }, + { + "appid": 2587980, + "normalized_name": "don't fall" + }, + { + "appid": 2588160, + "normalized_name": "super retro rec league racing" + }, + { + "appid": 2588170, + "normalized_name": "echoes from the threshold 2" + }, + { + "appid": 2588180, + "normalized_name": "dead past 8" + }, + { + "appid": 2588190, + "normalized_name": "petty's adventure volcano" + }, + { + "appid": 2588200, + "normalized_name": "crystalish" + }, + { + "appid": 2588210, + "normalized_name": "restless voronezh" + }, + { + "appid": 2588220, + "normalized_name": "telluria forebodings gear minigame" + }, + { + "appid": 2588230, + "normalized_name": "real drift multiplayer 2" + }, + { + "appid": 2588240, + "normalized_name": "thunder jumper" + }, + { + "appid": 2588260, + "normalized_name": "tile slider" + }, + { + "appid": 2588280, + "normalized_name": "fire race" + }, + { + "appid": 2588390, + "normalized_name": "the hell inside" + }, + { + "appid": 2588400, + "normalized_name": "robokid" + }, + { + "appid": 2588430, + "normalized_name": "shadow rebirth" + }, + { + "appid": 2588480, + "normalized_name": "subenishiki" + }, + { + "appid": 2588500, + "normalized_name": "autocraft" + }, + { + "appid": 2588540, + "normalized_name": "recordbooks" + }, + { + "appid": 2588550, + "normalized_name": "soulstone of hope" + }, + { + "appid": 2588560, + "normalized_name": "try not to plummet" + }, + { + "appid": 2588580, + "normalized_name": "demon's gunplay" + }, + { + "appid": 2588590, + "normalized_name": "fleshlight squad fleshlightize" + }, + { + "appid": 2588610, + "normalized_name": "last lesson" + }, + { + "appid": 2588690, + "normalized_name": "my new neighbor is a futa" + }, + { + "appid": 2588700, + "normalized_name": "office overtime" + }, + { + "appid": 2588740, + "normalized_name": "alien" + }, + { + "appid": 2588750, + "normalized_name": "all one click" + }, + { + "appid": 2588760, + "normalized_name": "lost recall" + }, + { + "appid": 2588780, + "normalized_name": "sinister nights" + }, + { + "appid": 2588790, + "normalized_name": "halloween defense" + }, + { + "appid": 2588800, + "normalized_name": "jackpot 3" + }, + { + "appid": 2588820, + "normalized_name": "asteroids star fields" + }, + { + "appid": 2588830, + "normalized_name": "father" + }, + { + "appid": 2588860, + "normalized_name": "virtual ai kuronyam" + }, + { + "appid": 2588890, + "normalized_name": "color bomb!" + }, + { + "appid": 2588940, + "normalized_name": "dualikiwi" + }, + { + "appid": 2588960, + "normalized_name": "brain quiz" + }, + { + "appid": 2588990, + "normalized_name": "survive it frozen" + }, + { + "appid": 2589060, + "normalized_name": "starheim" + }, + { + "appid": 2589070, + "normalized_name": "hypogean descent" + }, + { + "appid": 2589080, + "normalized_name": "weaponmancer" + }, + { + "appid": 2589100, + "normalized_name": "wurmus" + }, + { + "appid": 2589110, + "normalized_name": "fishyphus" + }, + { + "appid": 2589120, + "normalized_name": "the backrooms recorded" + }, + { + "appid": 2589130, + "normalized_name": "the stormy islands" + }, + { + "appid": 2589140, + "normalized_name": "the phantom forest" + }, + { + "appid": 2589150, + "normalized_name": "shadowstalk" + }, + { + "appid": 2589160, + "normalized_name": "project adaloria" + }, + { + "appid": 2589180, + "normalized_name": "geometric link" + }, + { + "appid": 2589190, + "normalized_name": "red impact epic planetary defence" + }, + { + "appid": 2589200, + "normalized_name": "budget backrooms" + }, + { + "appid": 2589290, + "normalized_name": "american isekai legends of nipponia" + }, + { + "appid": 2589320, + "normalized_name": "so much stuff 4 bits & bobs" + }, + { + "appid": 2589340, + "normalized_name": "i love finding wild friends" + }, + { + "appid": 2589350, + "normalized_name": "finding america new england" + }, + { + "appid": 2589360, + "normalized_name": "camp counsellor collector" + }, + { + "appid": 2589370, + "normalized_name": "alien battle champions" + }, + { + "appid": 2589400, + "normalized_name": "math high speed" + }, + { + "appid": 2589410, + "normalized_name": "stand your ground" + }, + { + "appid": 2589420, + "normalized_name": "magic sword girl twins" + }, + { + "appid": 2589440, + "normalized_name": "powerwash adventure vr" + }, + { + "appid": 2589450, + "normalized_name": "luke jump" + }, + { + "appid": 2589470, + "normalized_name": "拯救公主 无限循环 save priness infinite loop" + }, + { + "appid": 2589480, + "normalized_name": "close to flight" + }, + { + "appid": 2589490, + "normalized_name": "diabetor & the sugar monsters" + }, + { + "appid": 2589500, + "normalized_name": "whisper of the house" + }, + { + "appid": 2589510, + "normalized_name": "d.v. ex agent (episode 1)" + }, + { + "appid": 2589540, + "normalized_name": "spell slingin' tower defense" + }, + { + "appid": 2589550, + "normalized_name": "dino" + }, + { + "appid": 2589630, + "normalized_name": "zumba garden" + }, + { + "appid": 2589650, + "normalized_name": "poly match" + }, + { + "appid": 2589670, + "normalized_name": "love x debut" + }, + { + "appid": 2589710, + "normalized_name": "doma" + }, + { + "appid": 2589730, + "normalized_name": "sex story cuckold life episode 6" + }, + { + "appid": 2589810, + "normalized_name": "djland" + }, + { + "appid": 2589820, + "normalized_name": "the forgotten village of gondomayit" + }, + { + "appid": 2589840, + "normalized_name": "saint gear force" + }, + { + "appid": 2589880, + "normalized_name": "home design 3d vr" + }, + { + "appid": 2589900, + "normalized_name": "echoes of etheria" + }, + { + "appid": 2589910, + "normalized_name": "timberman the big adventure" + }, + { + "appid": 2589920, + "normalized_name": "seraph in the darkness" + }, + { + "appid": 2589930, + "normalized_name": "卷壹 梦行记volume 1 dreamwalker's diary" + }, + { + "appid": 2589960, + "normalized_name": "grimrain mmorpg" + }, + { + "appid": 2589970, + "normalized_name": "oh yeah" + }, + { + "appid": 2589980, + "normalized_name": "eden's guardian" + }, + { + "appid": 2589990, + "normalized_name": "forebloomed evergreen" + }, + { + "appid": 2590010, + "normalized_name": "echo chambers" + }, + { + "appid": 2590020, + "normalized_name": "hentai vivian" + }, + { + "appid": 2590040, + "normalized_name": "wiblu" + }, + { + "appid": 2590050, + "normalized_name": "relight the dark" + }, + { + "appid": 2590070, + "normalized_name": "pinky's paradigm" + }, + { + "appid": 2590080, + "normalized_name": "two climbers" + }, + { + "appid": 2590150, + "normalized_name": "faaast penguin" + }, + { + "appid": 2590160, + "normalized_name": "the world's hardest game 3d nostalgia 2" + }, + { + "appid": 2590180, + "normalized_name": "grind stormer" + }, + { + "appid": 2590190, + "normalized_name": "just hide" + }, + { + "appid": 2590210, + "normalized_name": "shard seekers" + }, + { + "appid": 2590220, + "normalized_name": "the blogger pumpkins and witches" + }, + { + "appid": 2590250, + "normalized_name": "the windows are gone" + }, + { + "appid": 2590300, + "normalized_name": "monkey forward" + }, + { + "appid": 2590330, + "normalized_name": "dino run 2" + }, + { + "appid": 2590370, + "normalized_name": "first gen" + }, + { + "appid": 2590410, + "normalized_name": "furry necromancer 💀" + }, + { + "appid": 2590430, + "normalized_name": "labyrinth" + }, + { + "appid": 2590460, + "normalized_name": "梦之彼方 fate prologue" + }, + { + "appid": 2590490, + "normalized_name": "late amusement" + }, + { + "appid": 2590530, + "normalized_name": "dawn of the wizards" + }, + { + "appid": 2590550, + "normalized_name": "aas mos apocalypse" + }, + { + "appid": 2590560, + "normalized_name": "cryptfall" + }, + { + "appid": 2590580, + "normalized_name": "3d chess online" + }, + { + "appid": 2590600, + "normalized_name": "explaining every string" + }, + { + "appid": 2590630, + "normalized_name": "tales of moriviha deadly secret" + }, + { + "appid": 2590670, + "normalized_name": "falling down xr" + }, + { + "appid": 2590690, + "normalized_name": "eyewinder" + }, + { + "appid": 2590700, + "normalized_name": "soulbond" + }, + { + "appid": 2590710, + "normalized_name": "play minigames with reiko" + }, + { + "appid": 2590720, + "normalized_name": "guardians of gaia guardians 8" + }, + { + "appid": 2590740, + "normalized_name": "scoomart" + }, + { + "appid": 2590750, + "normalized_name": "cosmorons" + }, + { + "appid": 2590770, + "normalized_name": "stolen memories" + }, + { + "appid": 2590790, + "normalized_name": "debauched memories" + }, + { + "appid": 2590810, + "normalized_name": "vox populi polska 2023" + }, + { + "appid": 2590820, + "normalized_name": "saga" + }, + { + "appid": 2590830, + "normalized_name": "blackjack simulator 2024" + }, + { + "appid": 2590910, + "normalized_name": "john christian 3.0" + }, + { + "appid": 2590920, + "normalized_name": "pixi poxi autorunner lab" + }, + { + "appid": 2590940, + "normalized_name": "三国志 群雄涿鹿" + }, + { + "appid": 2590990, + "normalized_name": "cat legend" + }, + { + "appid": 2591010, + "normalized_name": "silent depth 2 pacific" + }, + { + "appid": 2591020, + "normalized_name": "dracong vr" + }, + { + "appid": 2591030, + "normalized_name": "power punch healthy workout" + }, + { + "appid": 2591060, + "normalized_name": "virtual love secrets" + }, + { + "appid": 2591070, + "normalized_name": "piczle cross story of seasons" + }, + { + "appid": 2591090, + "normalized_name": "hellbound ropes" + }, + { + "appid": 2591110, + "normalized_name": "filter" + }, + { + "appid": 2591130, + "normalized_name": "jimmy's agony" + }, + { + "appid": 2591150, + "normalized_name": "philna fantasy 菲尔纳传说" + }, + { + "appid": 2591170, + "normalized_name": "frieseria the grand reopening" + }, + { + "appid": 2591190, + "normalized_name": "the route" + }, + { + "appid": 2591210, + "normalized_name": "astral tale 星界神話" + }, + { + "appid": 2591230, + "normalized_name": "meat grinder" + }, + { + "appid": 2591250, + "normalized_name": "swords & crystals online" + }, + { + "appid": 2591270, + "normalized_name": "enigma quest" + }, + { + "appid": 2591280, + "normalized_name": "f1 manager 2024" + }, + { + "appid": 2591290, + "normalized_name": "桌上勇者" + }, + { + "appid": 2591310, + "normalized_name": "pure badminton" + }, + { + "appid": 2591360, + "normalized_name": "魔女与团子猫" + }, + { + "appid": 2591370, + "normalized_name": "farewell to sunshower" + }, + { + "appid": 2591380, + "normalized_name": "irotoridori no sekai hd the colorful world" + }, + { + "appid": 2591410, + "normalized_name": "moose miners" + }, + { + "appid": 2591420, + "normalized_name": "rogue city casual top down shooter" + }, + { + "appid": 2591470, + "normalized_name": "rough souls adventures" + }, + { + "appid": 2591500, + "normalized_name": "sex simulator office promotion" + }, + { + "appid": 2591520, + "normalized_name": "drunken way to home" + }, + { + "appid": 2591570, + "normalized_name": "domestic revolt" + }, + { + "appid": 2591580, + "normalized_name": "禁区" + }, + { + "appid": 2591610, + "normalized_name": "slow rise" + }, + { + "appid": 2591630, + "normalized_name": "the edge of water" + }, + { + "appid": 2591670, + "normalized_name": "ツクモガミーズ!" + }, + { + "appid": 2591710, + "normalized_name": "pirates of the caribbean tides of war" + }, + { + "appid": 2591790, + "normalized_name": "animal use protocol" + }, + { + "appid": 2591800, + "normalized_name": "robowarrior arena" + }, + { + "appid": 2591810, + "normalized_name": "something in the well" + }, + { + "appid": 2591840, + "normalized_name": "shadows of rogue the sorcerer's curse" + }, + { + "appid": 2591880, + "normalized_name": "rust rails" + }, + { + "appid": 2591900, + "normalized_name": "past memos" + }, + { + "appid": 2591910, + "normalized_name": "my furry protogen 2 🐾" + }, + { + "appid": 2591930, + "normalized_name": "crystal journey lum's adventure" + }, + { + "appid": 2591950, + "normalized_name": "he escaped" + }, + { + "appid": 2591960, + "normalized_name": "hollow bequest" + }, + { + "appid": 2591970, + "normalized_name": "manus dei" + }, + { + "appid": 2591990, + "normalized_name": "nightwatch nightmare creatures" + }, + { + "appid": 2592000, + "normalized_name": "brick on the head" + }, + { + "appid": 2592010, + "normalized_name": "trash troopers earth reclaim" + }, + { + "appid": 2592040, + "normalized_name": "buddy and friends on halloween" + }, + { + "appid": 2592060, + "normalized_name": "under the yoke" + }, + { + "appid": 2592070, + "normalized_name": "roguevive prelude" + }, + { + "appid": 2592160, + "normalized_name": "dispatch" + }, + { + "appid": 2592190, + "normalized_name": "goblin quest" + }, + { + "appid": 2592220, + "normalized_name": "cuffbust" + }, + { + "appid": 2592230, + "normalized_name": "spectra" + }, + { + "appid": 2592320, + "normalized_name": "hearts of cold redemption" + }, + { + "appid": 2592330, + "normalized_name": "penguin hatchery" + }, + { + "appid": 2592340, + "normalized_name": "keep the heroes out" + }, + { + "appid": 2592470, + "normalized_name": "bugged out" + }, + { + "appid": 2592550, + "normalized_name": "the night of the full moon" + }, + { + "appid": 2592560, + "normalized_name": "wind ryder" + }, + { + "appid": 2592710, + "normalized_name": "万化之森" + }, + { + "appid": 2592940, + "normalized_name": "cosmic panic" + }, + { + "appid": 2593030, + "normalized_name": "666" + }, + { + "appid": 2593070, + "normalized_name": "zeitghast" + }, + { + "appid": 2593080, + "normalized_name": "tank mayhem" + }, + { + "appid": 2593090, + "normalized_name": "minicars road to the city!" + }, + { + "appid": 2593130, + "normalized_name": "stress testing" + }, + { + "appid": 2593140, + "normalized_name": "storm's harvest" + }, + { + "appid": 2593150, + "normalized_name": "fistagon" + }, + { + "appid": 2593320, + "normalized_name": "catechesis" + }, + { + "appid": 2593340, + "normalized_name": "wonderia" + }, + { + "appid": 2593370, + "normalized_name": "the hungry lamb traveling in the late ming dynasty" + }, + { + "appid": 2593380, + "normalized_name": "findgold" + }, + { + "appid": 2593390, + "normalized_name": "protecting the base" + }, + { + "appid": 2593400, + "normalized_name": "girl x island" + }, + { + "appid": 2593410, + "normalized_name": "cubyte" + }, + { + "appid": 2593420, + "normalized_name": "trading simulator" + }, + { + "appid": 2593440, + "normalized_name": "balling up" + }, + { + "appid": 2593450, + "normalized_name": "furi demake the chain" + }, + { + "appid": 2593510, + "normalized_name": "sex story cuckold life episode 7" + }, + { + "appid": 2593570, + "normalized_name": "dds x narcos" + }, + { + "appid": 2593580, + "normalized_name": "village" + }, + { + "appid": 2593640, + "normalized_name": "over many waters" + }, + { + "appid": 2593650, + "normalized_name": "深空孤影" + }, + { + "appid": 2593660, + "normalized_name": "halloween naughty girls" + }, + { + "appid": 2593680, + "normalized_name": "與魔共舞 我的頌歌" + }, + { + "appid": 2593710, + "normalized_name": "cyberpunk red light district" + }, + { + "appid": 2593740, + "normalized_name": "operation terra" + }, + { + "appid": 2593760, + "normalized_name": "kudos 2" + }, + { + "appid": 2593770, + "normalized_name": "project chimeira" + }, + { + "appid": 2593780, + "normalized_name": "re lord – tales of adventure" + }, + { + "appid": 2593790, + "normalized_name": "sqube escape" + }, + { + "appid": 2593810, + "normalized_name": "battle of rebels" + }, + { + "appid": 2593830, + "normalized_name": "youlogic" + }, + { + "appid": 2593850, + "normalized_name": "mech academy" + }, + { + "appid": 2593870, + "normalized_name": "football heroes league" + }, + { + "appid": 2593900, + "normalized_name": "[chilla's art] the kidnap | 誘拐事件" + }, + { + "appid": 2593940, + "normalized_name": "sushi for empress setsuko" + }, + { + "appid": 2593960, + "normalized_name": "jkenterprises" + }, + { + "appid": 2593970, + "normalized_name": "blocky farm" + }, + { + "appid": 2593980, + "normalized_name": "trainfort" + }, + { + "appid": 2594020, + "normalized_name": "oxytone" + }, + { + "appid": 2594110, + "normalized_name": "endure the swarm" + }, + { + "appid": 2594180, + "normalized_name": "maliguard" + }, + { + "appid": 2594200, + "normalized_name": "a touch of magic" + }, + { + "appid": 2594280, + "normalized_name": "bloxtacle course" + }, + { + "appid": 2594290, + "normalized_name": "warlords battle simulator" + }, + { + "appid": 2594310, + "normalized_name": "i am zombie" + }, + { + "appid": 2594350, + "normalized_name": "forg feast frenzy" + }, + { + "appid": 2594360, + "normalized_name": "run gor" + }, + { + "appid": 2594400, + "normalized_name": "landlords & tax evasion" + }, + { + "appid": 2594420, + "normalized_name": "scp centura tycoon" + }, + { + "appid": 2594430, + "normalized_name": "color collar" + }, + { + "appid": 2594470, + "normalized_name": "bit tower" + }, + { + "appid": 2594480, + "normalized_name": "harmonic depths" + }, + { + "appid": 2594490, + "normalized_name": "project n3t" + }, + { + "appid": 2594520, + "normalized_name": "grøwth" + }, + { + "appid": 2594540, + "normalized_name": "motel manager simulator" + }, + { + "appid": 2594560, + "normalized_name": "devil seeds" + }, + { + "appid": 2594580, + "normalized_name": "weird meese" + }, + { + "appid": 2594600, + "normalized_name": "elders grace unchained" + }, + { + "appid": 2594610, + "normalized_name": "red echo" + }, + { + "appid": 2594620, + "normalized_name": "figure drawing garden" + }, + { + "appid": 2594640, + "normalized_name": "taora beginning" + }, + { + "appid": 2594690, + "normalized_name": "seraphim" + }, + { + "appid": 2594720, + "normalized_name": "escape from manimal island" + }, + { + "appid": 2594730, + "normalized_name": "daydream mosaics 4 shades of blue" + }, + { + "appid": 2594740, + "normalized_name": "crystal fortress" + }, + { + "appid": 2594810, + "normalized_name": "pirates of gensokyo" + }, + { + "appid": 2594860, + "normalized_name": "vorum" + }, + { + "appid": 2594870, + "normalized_name": "性感沙滩" + }, + { + "appid": 2594920, + "normalized_name": "atelier resleriana forgotten alchemy and the polar night liberator" + }, + { + "appid": 2594940, + "normalized_name": "signal 信号" + }, + { + "appid": 2594970, + "normalized_name": "botanical chronicle" + }, + { + "appid": 2594980, + "normalized_name": "brickhaven" + }, + { + "appid": 2595000, + "normalized_name": "in darkness we hide" + }, + { + "appid": 2595020, + "normalized_name": "tether brawl" + }, + { + "appid": 2595030, + "normalized_name": "final hour" + }, + { + "appid": 2595040, + "normalized_name": "ship's cat" + }, + { + "appid": 2595080, + "normalized_name": "banana co." + }, + { + "appid": 2595090, + "normalized_name": "self indulgence" + }, + { + "appid": 2595100, + "normalized_name": "herobot!" + }, + { + "appid": 2595110, + "normalized_name": "爱之巢" + }, + { + "appid": 2595120, + "normalized_name": "wild seasons" + }, + { + "appid": 2595140, + "normalized_name": "mysterious mystery ep 1 the duo dilemma" + }, + { + "appid": 2595160, + "normalized_name": "网约车司机模拟器" + }, + { + "appid": 2595170, + "normalized_name": "challenge tour" + }, + { + "appid": 2595210, + "normalized_name": "sgs battle for madrid" + }, + { + "appid": 2595220, + "normalized_name": "sgs battle for dien bien phu" + }, + { + "appid": 2595230, + "normalized_name": "sgs battle for shanghai" + }, + { + "appid": 2595260, + "normalized_name": "recur" + }, + { + "appid": 2595290, + "normalized_name": "world of reinvention" + }, + { + "appid": 2595300, + "normalized_name": "forgotten symphony" + }, + { + "appid": 2595330, + "normalized_name": "完全英語都市" + }, + { + "appid": 2595370, + "normalized_name": "jjj" + }, + { + "appid": 2595380, + "normalized_name": "sparkhunt" + }, + { + "appid": 2595410, + "normalized_name": "blind quest the ivy queen" + }, + { + "appid": 2595420, + "normalized_name": "hell hunter anti nomen" + }, + { + "appid": 2595430, + "normalized_name": "hell hunter damned soul" + }, + { + "appid": 2595470, + "normalized_name": "guaishou 怪兽" + }, + { + "appid": 2595480, + "normalized_name": "dreaming with you" + }, + { + "appid": 2595530, + "normalized_name": "the masquerade" + }, + { + "appid": 2595540, + "normalized_name": "uberslaughter" + }, + { + "appid": 2595640, + "normalized_name": "move the chains season 1" + }, + { + "appid": 2595700, + "normalized_name": "idili" + }, + { + "appid": 2595770, + "normalized_name": "pentazorg" + }, + { + "appid": 2595780, + "normalized_name": "picture everything puzzle cross galaxy" + }, + { + "appid": 2595850, + "normalized_name": "stronghold siege" + }, + { + "appid": 2595860, + "normalized_name": "hitler is my crush" + }, + { + "appid": 2595880, + "normalized_name": "stagelands – eternal defense" + }, + { + "appid": 2595900, + "normalized_name": "monolit" + }, + { + "appid": 2595930, + "normalized_name": "jigsaw advent calendar" + }, + { + "appid": 2595940, + "normalized_name": "magical bakery" + }, + { + "appid": 2595960, + "normalized_name": "只猩:酋长争霸" + }, + { + "appid": 2595970, + "normalized_name": "hot homework help" + }, + { + "appid": 2596030, + "normalized_name": "titans clinic" + }, + { + "appid": 2596100, + "normalized_name": "lycans" + }, + { + "appid": 2596110, + "normalized_name": "lost legacy the awakening of the seals" + }, + { + "appid": 2596190, + "normalized_name": "liwertown rebirth" + }, + { + "appid": 2596200, + "normalized_name": "soakraiva" + }, + { + "appid": 2596240, + "normalized_name": "charge 'n zap!" + }, + { + "appid": 2596250, + "normalized_name": "cactus simulator 2" + }, + { + "appid": 2596280, + "normalized_name": "forest life" + }, + { + "appid": 2596300, + "normalized_name": "play with your cat! a virtual toy box" + }, + { + "appid": 2596330, + "normalized_name": "micro machines mini challenge mayhem" + }, + { + "appid": 2596420, + "normalized_name": "arranger a role puzzling adventure" + }, + { + "appid": 2596460, + "normalized_name": "a fool's art gallery" + }, + { + "appid": 2596470, + "normalized_name": "ultrazone" + }, + { + "appid": 2596480, + "normalized_name": "beastwatch meat & mayhem" + }, + { + "appid": 2596530, + "normalized_name": "the colony 2044" + }, + { + "appid": 2596630, + "normalized_name": "freestyle ice skater" + }, + { + "appid": 2596650, + "normalized_name": "bootlegger moonshine empire" + }, + { + "appid": 2596670, + "normalized_name": "spider mall !" + }, + { + "appid": 2596710, + "normalized_name": "sun spear" + }, + { + "appid": 2596720, + "normalized_name": "project s.a.m" + }, + { + "appid": 2596750, + "normalized_name": "foxhaven" + }, + { + "appid": 2596760, + "normalized_name": "inside" + }, + { + "appid": 2596800, + "normalized_name": "no recollection" + }, + { + "appid": 2596830, + "normalized_name": "geist" + }, + { + "appid": 2596840, + "normalized_name": "tempomancy" + }, + { + "appid": 2596860, + "normalized_name": "nectar" + }, + { + "appid": 2596890, + "normalized_name": "evade vr" + }, + { + "appid": 2596930, + "normalized_name": "seek & snipe" + }, + { + "appid": 2596940, + "normalized_name": "isometria" + }, + { + "appid": 2597020, + "normalized_name": "coreless" + }, + { + "appid": 2597040, + "normalized_name": "suero zeus" + }, + { + "appid": 2597050, + "normalized_name": "仙侠联盟(league of immortals)" + }, + { + "appid": 2597060, + "normalized_name": "astral divide" + }, + { + "appid": 2597080, + "normalized_name": "realm of ink" + }, + { + "appid": 2597110, + "normalized_name": "kaizo block" + }, + { + "appid": 2597130, + "normalized_name": "uncle chuck incorporated" + }, + { + "appid": 2597140, + "normalized_name": "dice to meet you" + }, + { + "appid": 2597180, + "normalized_name": "whirlwind magician" + }, + { + "appid": 2597190, + "normalized_name": "aqua pals" + }, + { + "appid": 2597200, + "normalized_name": "across the wonderlands" + }, + { + "appid": 2597210, + "normalized_name": "welcome teacher" + }, + { + "appid": 2597220, + "normalized_name": "the night of erosion (prequel)" + }, + { + "appid": 2597260, + "normalized_name": "natsuno kanata beyond summer" + }, + { + "appid": 2597280, + "normalized_name": "tomb of anubi0s" + }, + { + "appid": 2597290, + "normalized_name": "sgs battle for hue" + }, + { + "appid": 2597300, + "normalized_name": "guilty loving boxing" + }, + { + "appid": 2597330, + "normalized_name": "quiz game night" + }, + { + "appid": 2597340, + "normalized_name": "the alchemist's apprentice in the maze of madness" + }, + { + "appid": 2597350, + "normalized_name": "the black knight chronicles the widow without time" + }, + { + "appid": 2597360, + "normalized_name": "citadale the accursed seal" + }, + { + "appid": 2597370, + "normalized_name": "mistress of lust carmilla" + }, + { + "appid": 2597400, + "normalized_name": "slimedrop laboratory" + }, + { + "appid": 2597420, + "normalized_name": "悠闲打砖块(leisurely brick)" + }, + { + "appid": 2597430, + "normalized_name": "away from the light" + }, + { + "appid": 2597450, + "normalized_name": "blood kiss" + }, + { + "appid": 2597460, + "normalized_name": "异常情绪回收组" + }, + { + "appid": 2597470, + "normalized_name": "tower of dreams" + }, + { + "appid": 2597480, + "normalized_name": "bardic quest for love" + }, + { + "appid": 2597490, + "normalized_name": "i think i wanna have your baby" + }, + { + "appid": 2597500, + "normalized_name": "forest of soul" + }, + { + "appid": 2597520, + "normalized_name": "animalia" + }, + { + "appid": 2597560, + "normalized_name": "spacedrg" + }, + { + "appid": 2597570, + "normalized_name": "chasmal fear" + }, + { + "appid": 2597580, + "normalized_name": "porno empire [18+]" + }, + { + "appid": 2597590, + "normalized_name": "cuckold chair simulator 2023" + }, + { + "appid": 2597600, + "normalized_name": "golden leaf jigsaw puzzles" + }, + { + "appid": 2597610, + "normalized_name": "モノノケの国" + }, + { + "appid": 2597620, + "normalized_name": "wall ball" + }, + { + "appid": 2597650, + "normalized_name": "hundred" + }, + { + "appid": 2597660, + "normalized_name": "100 in 1 game collection" + }, + { + "appid": 2597710, + "normalized_name": "rusty ride" + }, + { + "appid": 2597810, + "normalized_name": "afallon" + }, + { + "appid": 2597870, + "normalized_name": "节奏制作人(rhythm producer)" + }, + { + "appid": 2597880, + "normalized_name": "stride fates" + }, + { + "appid": 2597900, + "normalized_name": "scape" + }, + { + "appid": 2597970, + "normalized_name": "finding frankie" + }, + { + "appid": 2598020, + "normalized_name": "spire horizon online" + }, + { + "appid": 2598030, + "normalized_name": "model railway millionaire" + }, + { + "appid": 2598050, + "normalized_name": "foxcrate" + }, + { + "appid": 2598070, + "normalized_name": "ultimus" + }, + { + "appid": 2598080, + "normalized_name": "drift survivor" + }, + { + "appid": 2598090, + "normalized_name": "battleship" + }, + { + "appid": 2598110, + "normalized_name": "fusing noracam" + }, + { + "appid": 2598120, + "normalized_name": "the cauldron kids the summoning of mr. vermicelli" + }, + { + "appid": 2598190, + "normalized_name": "somnabuster" + }, + { + "appid": 2598210, + "normalized_name": "infernae" + }, + { + "appid": 2598290, + "normalized_name": "p.r.o.t.o.c.o.o.l." + }, + { + "appid": 2598300, + "normalized_name": "cum & climb" + }, + { + "appid": 2598310, + "normalized_name": "little penguin chillventure" + }, + { + "appid": 2598320, + "normalized_name": "erased case" + }, + { + "appid": 2598340, + "normalized_name": "a night on the farm" + }, + { + "appid": 2598410, + "normalized_name": "project adder (prologue)" + }, + { + "appid": 2598450, + "normalized_name": "survival nexus" + }, + { + "appid": 2598480, + "normalized_name": "tale of the shadow world" + }, + { + "appid": 2598490, + "normalized_name": "colorcoordination" + }, + { + "appid": 2598500, + "normalized_name": "project volition" + }, + { + "appid": 2598560, + "normalized_name": "sclera" + }, + { + "appid": 2598580, + "normalized_name": "seekers of the ancient" + }, + { + "appid": 2598610, + "normalized_name": "status one" + }, + { + "appid": 2598620, + "normalized_name": "virus 91" + }, + { + "appid": 2598630, + "normalized_name": "the dragonhood" + }, + { + "appid": 2598660, + "normalized_name": "explosive madness" + }, + { + "appid": 2598670, + "normalized_name": "legend of the archer" + }, + { + "appid": 2598690, + "normalized_name": "10 16" + }, + { + "appid": 2598700, + "normalized_name": "mokete" + }, + { + "appid": 2598730, + "normalized_name": "sasha's stupid coffee shop" + }, + { + "appid": 2598770, + "normalized_name": "血光之月" + }, + { + "appid": 2598800, + "normalized_name": "靈能哨衛 無限 psionic sentry infinite" + }, + { + "appid": 2598860, + "normalized_name": "boundless paths" + }, + { + "appid": 2598870, + "normalized_name": "starlight riddles" + }, + { + "appid": 2598880, + "normalized_name": "wirewalking" + }, + { + "appid": 2598890, + "normalized_name": "kenophobia" + }, + { + "appid": 2598910, + "normalized_name": "the legend of chosen blood" + }, + { + "appid": 2598920, + "normalized_name": "song of eriel" + }, + { + "appid": 2598930, + "normalized_name": "game store simulator" + }, + { + "appid": 2598940, + "normalized_name": "armchair commander" + }, + { + "appid": 2598950, + "normalized_name": "greeded" + }, + { + "appid": 2598960, + "normalized_name": "problemlöser" + }, + { + "appid": 2598970, + "normalized_name": "fastest cars traffic racer" + }, + { + "appid": 2598980, + "normalized_name": "oh baby kart" + }, + { + "appid": 2599000, + "normalized_name": "witch academy" + }, + { + "appid": 2599010, + "normalized_name": "push" + }, + { + "appid": 2599040, + "normalized_name": "going down" + }, + { + "appid": 2599050, + "normalized_name": "square edges" + }, + { + "appid": 2599060, + "normalized_name": "magical lands" + }, + { + "appid": 2599070, + "normalized_name": "save the sheep" + }, + { + "appid": 2599080, + "normalized_name": "招魂记" + }, + { + "appid": 2599130, + "normalized_name": "night pact azuru" + }, + { + "appid": 2599150, + "normalized_name": "morph animals" + }, + { + "appid": 2599170, + "normalized_name": "run 'n gun deluxe" + }, + { + "appid": 2599180, + "normalized_name": "ambusher" + }, + { + "appid": 2599210, + "normalized_name": "battleside" + }, + { + "appid": 2599220, + "normalized_name": "corvos dynasty" + }, + { + "appid": 2599260, + "normalized_name": "the ghosts of terinor" + }, + { + "appid": 2599270, + "normalized_name": "gem defender soyjak survivors" + }, + { + "appid": 2599290, + "normalized_name": "mad king's lair tome of destruction" + }, + { + "appid": 2599300, + "normalized_name": "dead signal" + }, + { + "appid": 2599310, + "normalized_name": "wildlands resurgence" + }, + { + "appid": 2599320, + "normalized_name": "battlegrounds at enemy gates" + }, + { + "appid": 2599360, + "normalized_name": "slime wars" + }, + { + "appid": 2599370, + "normalized_name": "deathwatchers" + }, + { + "appid": 2599420, + "normalized_name": "dynasty" + }, + { + "appid": 2599440, + "normalized_name": "breadman" + }, + { + "appid": 2599450, + "normalized_name": "earthkart google maps driving simulator" + }, + { + "appid": 2599460, + "normalized_name": "craft carnage" + }, + { + "appid": 2599480, + "normalized_name": "buckshot to hell" + }, + { + "appid": 2599500, + "normalized_name": "neuralgia" + }, + { + "appid": 2599530, + "normalized_name": "yua's yuri office" + }, + { + "appid": 2599540, + "normalized_name": "cube battlefield 2048" + }, + { + "appid": 2599550, + "normalized_name": "light cry" + }, + { + "appid": 2599560, + "normalized_name": "ataraxie" + }, + { + "appid": 2599580, + "normalized_name": "heavenstrafer" + }, + { + "appid": 2599620, + "normalized_name": "zarie the story of sin" + }, + { + "appid": 2599630, + "normalized_name": "zorro and zedd" + }, + { + "appid": 2599640, + "normalized_name": "re aegis" + }, + { + "appid": 2599680, + "normalized_name": "spacerace" + }, + { + "appid": 2599690, + "normalized_name": "better than dead" + }, + { + "appid": 2599700, + "normalized_name": "algor pew pew" + }, + { + "appid": 2599770, + "normalized_name": "tactical warfare" + }, + { + "appid": 2599780, + "normalized_name": "i commissioned some cats 3" + }, + { + "appid": 2599800, + "normalized_name": "spanking runners" + }, + { + "appid": 2599880, + "normalized_name": "happiness! sakura celebration!" + }, + { + "appid": 2599890, + "normalized_name": "hentai maid" + }, + { + "appid": 2599900, + "normalized_name": "whispers in paradise" + }, + { + "appid": 2599920, + "normalized_name": "reapers" + }, + { + "appid": 2599930, + "normalized_name": "the king in yellow escape room" + }, + { + "appid": 2599950, + "normalized_name": "backwoods town" + }, + { + "appid": 2599960, + "normalized_name": "aimee's cafe" + }, + { + "appid": 2600000, + "normalized_name": "mountain boy" + }, + { + "appid": 2600040, + "normalized_name": "放置地下城 idle dungeon" + }, + { + "appid": 2600050, + "normalized_name": "horace hagfish" + }, + { + "appid": 2600070, + "normalized_name": "the game of death" + }, + { + "appid": 2600110, + "normalized_name": "butteredlilly's random quotes & avatar remote" + }, + { + "appid": 2600140, + "normalized_name": "please touch the artwork 2" + }, + { + "appid": 2600150, + "normalized_name": "family crush" + }, + { + "appid": 2600170, + "normalized_name": "incontroller" + }, + { + "appid": 2600180, + "normalized_name": "night grove" + }, + { + "appid": 2600190, + "normalized_name": "badventure" + }, + { + "appid": 2600230, + "normalized_name": "zombactory" + }, + { + "appid": 2600240, + "normalized_name": "lum's game" + }, + { + "appid": 2600260, + "normalized_name": "flora and the ceibo seeds" + }, + { + "appid": 2600290, + "normalized_name": "dungeon croaker" + }, + { + "appid": 2600440, + "normalized_name": "the red forest" + }, + { + "appid": 2600470, + "normalized_name": "new ganymede" + }, + { + "appid": 2600480, + "normalized_name": "whisper in the dark" + }, + { + "appid": 2600500, + "normalized_name": "black runes" + }, + { + "appid": 2600570, + "normalized_name": "纸嫁衣5来生戏" + }, + { + "appid": 2600580, + "normalized_name": "the shadow of the evil tower" + }, + { + "appid": 2600600, + "normalized_name": "internet cafe evolution" + }, + { + "appid": 2600620, + "normalized_name": "lost princess" + }, + { + "appid": 2600640, + "normalized_name": "кошмары ипотечной квартиры" + }, + { + "appid": 2600660, + "normalized_name": "roulette simulator 2024" + }, + { + "appid": 2600670, + "normalized_name": "vanity" + }, + { + "appid": 2600700, + "normalized_name": "coneru dimension girl" + }, + { + "appid": 2600710, + "normalized_name": "special forces war zombie attack" + }, + { + "appid": 2600720, + "normalized_name": "cloudy valley" + }, + { + "appid": 2600730, + "normalized_name": "ties soul link" + }, + { + "appid": 2600770, + "normalized_name": "all ways up" + }, + { + "appid": 2600790, + "normalized_name": "samuza" + }, + { + "appid": 2600810, + "normalized_name": "valdis" + }, + { + "appid": 2600820, + "normalized_name": "the journey home" + }, + { + "appid": 2600830, + "normalized_name": "lost hope backrooms" + }, + { + "appid": 2600850, + "normalized_name": "lighthouse" + }, + { + "appid": 2600900, + "normalized_name": "drifting car stunter" + }, + { + "appid": 2600960, + "normalized_name": "hovergrease 2" + }, + { + "appid": 2600970, + "normalized_name": "flawed tactics" + }, + { + "appid": 2601000, + "normalized_name": "fairy treasure" + }, + { + "appid": 2601010, + "normalized_name": "sequence the ranked poker dice game" + }, + { + "appid": 2601030, + "normalized_name": "exanimum the silent call" + }, + { + "appid": 2601100, + "normalized_name": "click cricket" + }, + { + "appid": 2601110, + "normalized_name": "checkout" + }, + { + "appid": 2601120, + "normalized_name": "protoplanet express" + }, + { + "appid": 2601140, + "normalized_name": "internet cafe mini games 10 in 1" + }, + { + "appid": 2601150, + "normalized_name": "darkworld" + }, + { + "appid": 2601170, + "normalized_name": "glyphen" + }, + { + "appid": 2601190, + "normalized_name": "unavailed" + }, + { + "appid": 2601230, + "normalized_name": "cyber control" + }, + { + "appid": 2601240, + "normalized_name": "tokyo 30 days" + }, + { + "appid": 2601320, + "normalized_name": "cannibal island survival" + }, + { + "appid": 2601340, + "normalized_name": "santa slapper" + }, + { + "appid": 2601390, + "normalized_name": "pool 2" + }, + { + "appid": 2601420, + "normalized_name": "terror spikys" + }, + { + "appid": 2601430, + "normalized_name": "pro football agent" + }, + { + "appid": 2601450, + "normalized_name": "auxin" + }, + { + "appid": 2601510, + "normalized_name": "hangry" + }, + { + "appid": 2601530, + "normalized_name": "regular home renovation simulator" + }, + { + "appid": 2601540, + "normalized_name": "drowned lake" + }, + { + "appid": 2601580, + "normalized_name": "paradise's secrets" + }, + { + "appid": 2601610, + "normalized_name": "brickbounce" + }, + { + "appid": 2601620, + "normalized_name": "ungate" + }, + { + "appid": 2601630, + "normalized_name": "nightlife tycoon" + }, + { + "appid": 2601640, + "normalized_name": "sporeborn dark" + }, + { + "appid": 2601660, + "normalized_name": "luna's tale" + }, + { + "appid": 2601690, + "normalized_name": "dark city kyiv collector's" + }, + { + "appid": 2601700, + "normalized_name": "animal trail ☆ girlish square love+plus" + }, + { + "appid": 2601730, + "normalized_name": "infeststation" + }, + { + "appid": 2601740, + "normalized_name": "drive up" + }, + { + "appid": 2601750, + "normalized_name": "animal trail ☆ girlish square 2" + }, + { + "appid": 2601790, + "normalized_name": "doors25" + }, + { + "appid": 2601810, + "normalized_name": "sunken stones" + }, + { + "appid": 2601820, + "normalized_name": "escapen't" + }, + { + "appid": 2601840, + "normalized_name": "paper play vr" + }, + { + "appid": 2601850, + "normalized_name": "ball hentai puzzle" + }, + { + "appid": 2601870, + "normalized_name": "elemental mage defense" + }, + { + "appid": 2601920, + "normalized_name": "at the edge of the world" + }, + { + "appid": 2601940, + "normalized_name": "pinball spire" + }, + { + "appid": 2602000, + "normalized_name": "erogoddess olympus" + }, + { + "appid": 2602010, + "normalized_name": "mechdrachen" + }, + { + "appid": 2602020, + "normalized_name": "the smurfs – dreams" + }, + { + "appid": 2602030, + "normalized_name": "entropy survivors" + }, + { + "appid": 2602040, + "normalized_name": "fly guys" + }, + { + "appid": 2602050, + "normalized_name": "schoollife 东洋中学之异闻录" + }, + { + "appid": 2602070, + "normalized_name": "vanimate" + }, + { + "appid": 2602080, + "normalized_name": "the last librarian" + }, + { + "appid": 2602100, + "normalized_name": "dropkick navvy" + }, + { + "appid": 2602110, + "normalized_name": "noah's descent into madness" + }, + { + "appid": 2602120, + "normalized_name": "bob's mansion" + }, + { + "appid": 2602200, + "normalized_name": "treasure dive" + }, + { + "appid": 2602210, + "normalized_name": "retro mystery club vol.2 the beppu case" + }, + { + "appid": 2602220, + "normalized_name": "firebowl" + }, + { + "appid": 2602230, + "normalized_name": "motionrec" + }, + { + "appid": 2602270, + "normalized_name": "puma the cat" + }, + { + "appid": 2602290, + "normalized_name": "th3 m15 guild" + }, + { + "appid": 2602300, + "normalized_name": "rockets planes soldiers" + }, + { + "appid": 2602310, + "normalized_name": "铲屎官兼侦探 cat detective" + }, + { + "appid": 2602350, + "normalized_name": "dark swords firelink" + }, + { + "appid": 2602380, + "normalized_name": "별을 좇는 까마귀(to the star)" + }, + { + "appid": 2602390, + "normalized_name": "impossible game" + }, + { + "appid": 2602410, + "normalized_name": "krashimals" + }, + { + "appid": 2602430, + "normalized_name": "goblin's die" + }, + { + "appid": 2602450, + "normalized_name": "spellbound survivors" + }, + { + "appid": 2602500, + "normalized_name": "enci's solution" + }, + { + "appid": 2602510, + "normalized_name": "underground waifus tcg" + }, + { + "appid": 2602530, + "normalized_name": "w.i.t.s initiation" + }, + { + "appid": 2602540, + "normalized_name": "once upon a rogue's tale" + }, + { + "appid": 2602550, + "normalized_name": "田园画境 pastoral" + }, + { + "appid": 2602570, + "normalized_name": "sex play naughty doctor" + }, + { + "appid": 2602700, + "normalized_name": "midnight furry" + }, + { + "appid": 2602710, + "normalized_name": "pholee" + }, + { + "appid": 2602730, + "normalized_name": "yume 4" + }, + { + "appid": 2602760, + "normalized_name": "crypt's rend ~ntr~" + }, + { + "appid": 2602770, + "normalized_name": "maouisho ~ la dolce vita with another world's demon lord~" + }, + { + "appid": 2602780, + "normalized_name": "filly astray" + }, + { + "appid": 2602790, + "normalized_name": "above the hill" + }, + { + "appid": 2602810, + "normalized_name": "unsolved case above the law collector's" + }, + { + "appid": 2602820, + "normalized_name": "kizuyami | 刻闇" + }, + { + "appid": 2602830, + "normalized_name": "timagi" + }, + { + "appid": 2602890, + "normalized_name": "forest jump" + }, + { + "appid": 2602910, + "normalized_name": "temple knight saga oath of the knight's sword" + }, + { + "appid": 2602970, + "normalized_name": "hinge" + }, + { + "appid": 2603000, + "normalized_name": "cursed silence" + }, + { + "appid": 2603020, + "normalized_name": "citadelum" + }, + { + "appid": 2603030, + "normalized_name": "what's on agenda" + }, + { + "appid": 2603040, + "normalized_name": "mxgp 24 the official game" + }, + { + "appid": 2603110, + "normalized_name": "fish survivor feed. grow. evolve." + }, + { + "appid": 2603120, + "normalized_name": "liberators' chronicles" + }, + { + "appid": 2603130, + "normalized_name": "halloween games for toddlers and kids" + }, + { + "appid": 2603190, + "normalized_name": "don't wake me up" + }, + { + "appid": 2603210, + "normalized_name": "on the run rogue heroes" + }, + { + "appid": 2603230, + "normalized_name": "little scavenger" + }, + { + "appid": 2603260, + "normalized_name": "echoes of madness" + }, + { + "appid": 2603280, + "normalized_name": "polygon fantasy battle simulator" + }, + { + "appid": 2603290, + "normalized_name": "block the monster" + }, + { + "appid": 2603300, + "normalized_name": "songs of steel hispania" + }, + { + "appid": 2603350, + "normalized_name": "born in reverie" + }, + { + "appid": 2603380, + "normalized_name": "super jump guys" + }, + { + "appid": 2603400, + "normalized_name": "solitude" + }, + { + "appid": 2603410, + "normalized_name": "time to strike" + }, + { + "appid": 2603420, + "normalized_name": "feudal baron king's land prologue" + }, + { + "appid": 2603430, + "normalized_name": "shell's kitchen" + }, + { + "appid": 2603440, + "normalized_name": "my pretty neighbor chloe" + }, + { + "appid": 2603450, + "normalized_name": "tank war shooting simulator" + }, + { + "appid": 2603480, + "normalized_name": "temple crawler" + }, + { + "appid": 2603490, + "normalized_name": "ordnance inc an explosive vr throwing game" + }, + { + "appid": 2603550, + "normalized_name": "eclipse 2 invasion of darkness" + }, + { + "appid": 2603560, + "normalized_name": "pixel arcade" + }, + { + "appid": 2603590, + "normalized_name": "runemancer" + }, + { + "appid": 2603630, + "normalized_name": "foederatus" + }, + { + "appid": 2603650, + "normalized_name": "don't let it die" + }, + { + "appid": 2603680, + "normalized_name": "mobocratic union" + }, + { + "appid": 2603740, + "normalized_name": "atoms and time" + }, + { + "appid": 2603750, + "normalized_name": "ribeat!" + }, + { + "appid": 2603760, + "normalized_name": "railway fugitive" + }, + { + "appid": 2603770, + "normalized_name": "station obscurum" + }, + { + "appid": 2603800, + "normalized_name": "fire water green" + }, + { + "appid": 2603830, + "normalized_name": "反击吧!npc" + }, + { + "appid": 2603850, + "normalized_name": "shadow mate ~小さな竜と適合者~" + }, + { + "appid": 2603860, + "normalized_name": "地底防衛軍 ~剣と魔法と虫の群れ~" + }, + { + "appid": 2603880, + "normalized_name": "动态机甲钢姆达" + }, + { + "appid": 2603890, + "normalized_name": "校园幻想录" + }, + { + "appid": 2603910, + "normalized_name": "桂花落" + }, + { + "appid": 2603930, + "normalized_name": "adventurer's gambit dungeons of fortune" + }, + { + "appid": 2604030, + "normalized_name": "skies above" + }, + { + "appid": 2604210, + "normalized_name": "spellbound shuffle" + }, + { + "appid": 2604220, + "normalized_name": "ocean pressure" + }, + { + "appid": 2604230, + "normalized_name": "letmeout" + }, + { + "appid": 2604240, + "normalized_name": "wicked times" + }, + { + "appid": 2604300, + "normalized_name": "the summit library" + }, + { + "appid": 2604310, + "normalized_name": "panda & crow a paraglide adventure" + }, + { + "appid": 2604320, + "normalized_name": "memories off sousou ~not always true~" + }, + { + "appid": 2604370, + "normalized_name": "the goblinseekers" + }, + { + "appid": 2604390, + "normalized_name": "rhythm life" + }, + { + "appid": 2604410, + "normalized_name": "bride into the cave" + }, + { + "appid": 2604450, + "normalized_name": "com__et" + }, + { + "appid": 2604480, + "normalized_name": "city transport simulator tram" + }, + { + "appid": 2604490, + "normalized_name": "i hate this place" + }, + { + "appid": 2604580, + "normalized_name": "呪巣 起ノ章" + }, + { + "appid": 2604600, + "normalized_name": "loi the lover" + }, + { + "appid": 2604660, + "normalized_name": "art heist escape room adventure" + }, + { + "appid": 2604670, + "normalized_name": "estate empire" + }, + { + "appid": 2604690, + "normalized_name": "college sex episode 1" + }, + { + "appid": 2604760, + "normalized_name": "the muscle bunny girls caught me cheatin'!!!" + }, + { + "appid": 2604800, + "normalized_name": "airport renovator simulator" + }, + { + "appid": 2604820, + "normalized_name": "airport contraband police" + }, + { + "appid": 2604850, + "normalized_name": "architect of the union" + }, + { + "appid": 2604880, + "normalized_name": "panoptia" + }, + { + "appid": 2604920, + "normalized_name": "quest giver" + }, + { + "appid": 2604930, + "normalized_name": "parallel" + }, + { + "appid": 2604970, + "normalized_name": "leap to the top+" + }, + { + "appid": 2604980, + "normalized_name": "hidden boxes" + }, + { + "appid": 2605040, + "normalized_name": "days of haze" + }, + { + "appid": 2605100, + "normalized_name": "whispered secrets tying the knot" + }, + { + "appid": 2605110, + "normalized_name": "haunted hotel a past redeemed" + }, + { + "appid": 2605140, + "normalized_name": "space drop" + }, + { + "appid": 2605160, + "normalized_name": "shadow of the curse eater" + }, + { + "appid": 2605210, + "normalized_name": "ago bristol 1775 from warship to prison hulk" + }, + { + "appid": 2605260, + "normalized_name": "the chad" + }, + { + "appid": 2605290, + "normalized_name": "steam shot" + }, + { + "appid": 2605330, + "normalized_name": "hordefighter 2d" + }, + { + "appid": 2605340, + "normalized_name": "splice" + }, + { + "appid": 2605350, + "normalized_name": "hot dog reporter" + }, + { + "appid": 2605410, + "normalized_name": "spot the diff 3d" + }, + { + "appid": 2605430, + "normalized_name": "the lab thing" + }, + { + "appid": 2605490, + "normalized_name": "kittens with cannons prelude" + }, + { + "appid": 2605500, + "normalized_name": "case of the mysterious death of keiko haraeda" + }, + { + "appid": 2605530, + "normalized_name": "fpvsim drone simulator" + }, + { + "appid": 2605560, + "normalized_name": "storybook agatha" + }, + { + "appid": 2605590, + "normalized_name": "子弹狂潮 bullet frenzy" + }, + { + "appid": 2605600, + "normalized_name": "facehand" + }, + { + "appid": 2605640, + "normalized_name": "buried" + }, + { + "appid": 2605670, + "normalized_name": "acshooting" + }, + { + "appid": 2605680, + "normalized_name": "friend ship" + }, + { + "appid": 2605690, + "normalized_name": "infernal cave" + }, + { + "appid": 2605700, + "normalized_name": "rhythm journey" + }, + { + "appid": 2605710, + "normalized_name": "bad boy's bad day" + }, + { + "appid": 2605720, + "normalized_name": "ys foliage ocean in celceta kai" + }, + { + "appid": 2605780, + "normalized_name": "奇謀三國" + }, + { + "appid": 2605790, + "normalized_name": "deep rock galactic rogue core" + }, + { + "appid": 2605860, + "normalized_name": "quirk! origins a jester's tale" + }, + { + "appid": 2605870, + "normalized_name": "catch me if you can" + }, + { + "appid": 2605880, + "normalized_name": "helion" + }, + { + "appid": 2605900, + "normalized_name": "digested" + }, + { + "appid": 2605940, + "normalized_name": "clown art" + }, + { + "appid": 2605970, + "normalized_name": "精灵戏剧:复读机不会获得幸福" + }, + { + "appid": 2605990, + "normalized_name": "tactics below" + }, + { + "appid": 2606190, + "normalized_name": "spy guy hidden objects deluxe" + }, + { + "appid": 2606200, + "normalized_name": "童年的纸飞机(paper airplane)" + }, + { + "appid": 2606210, + "normalized_name": "soul stitcher" + }, + { + "appid": 2606240, + "normalized_name": "the path to memento mori" + }, + { + "appid": 2606270, + "normalized_name": "cyber avenger" + }, + { + "appid": 2606290, + "normalized_name": "neon fantasy cats" + }, + { + "appid": 2606300, + "normalized_name": "sticker kittens" + }, + { + "appid": 2606330, + "normalized_name": "月詠に至る" + }, + { + "appid": 2606340, + "normalized_name": "augmented brutality" + }, + { + "appid": 2606550, + "normalized_name": "farmer survivors" + }, + { + "appid": 2606560, + "normalized_name": "supermurgitroid" + }, + { + "appid": 2606590, + "normalized_name": "big heavy" + }, + { + "appid": 2606610, + "normalized_name": "adrift program" + }, + { + "appid": 2606630, + "normalized_name": "defense cards" + }, + { + "appid": 2606690, + "normalized_name": "nightmare fuels" + }, + { + "appid": 2606700, + "normalized_name": "fast cars small islands" + }, + { + "appid": 2606760, + "normalized_name": "doodle harmony" + }, + { + "appid": 2606790, + "normalized_name": "nixxsz maids blazing" + }, + { + "appid": 2606800, + "normalized_name": "froglake" + }, + { + "appid": 2606810, + "normalized_name": ">hal_4" + }, + { + "appid": 2606820, + "normalized_name": "fear the void" + }, + { + "appid": 2606850, + "normalized_name": "mimic" + }, + { + "appid": 2606880, + "normalized_name": "ev2" + }, + { + "appid": 2606920, + "normalized_name": "field of honor" + }, + { + "appid": 2607050, + "normalized_name": "repent" + }, + { + "appid": 2607060, + "normalized_name": "from glory to goo" + }, + { + "appid": 2607080, + "normalized_name": "猛男跑酷(strong man parkour)" + }, + { + "appid": 2607090, + "normalized_name": "star overhead" + }, + { + "appid": 2607120, + "normalized_name": "fractured realms season 1" + }, + { + "appid": 2607150, + "normalized_name": "corrupted universe cries quietly" + }, + { + "appid": 2607160, + "normalized_name": "稻草启世录" + }, + { + "appid": 2607180, + "normalized_name": "mecha blitz" + }, + { + "appid": 2607190, + "normalized_name": "噗哟噗哟大冒险puyo puyo adventure" + }, + { + "appid": 2607200, + "normalized_name": "one button run" + }, + { + "appid": 2607230, + "normalized_name": "planeticus" + }, + { + "appid": 2607260, + "normalized_name": "恶魔会社:入职" + }, + { + "appid": 2607280, + "normalized_name": "wizard cats tank battle" + }, + { + "appid": 2607310, + "normalized_name": "the last commander" + }, + { + "appid": 2607320, + "normalized_name": "illegal mahjong" + }, + { + "appid": 2607330, + "normalized_name": "bike ride 3d" + }, + { + "appid": 2607360, + "normalized_name": "night breaker" + }, + { + "appid": 2607420, + "normalized_name": "cat life simulator" + }, + { + "appid": 2607430, + "normalized_name": "lair of the locksmith" + }, + { + "appid": 2607470, + "normalized_name": "little splash" + }, + { + "appid": 2607480, + "normalized_name": "two moon space rabbit" + }, + { + "appid": 2607510, + "normalized_name": "super mu" + }, + { + "appid": 2607540, + "normalized_name": "crypt droid" + }, + { + "appid": 2607550, + "normalized_name": "falling day" + }, + { + "appid": 2607610, + "normalized_name": "polygon arena" + }, + { + "appid": 2607620, + "normalized_name": "ucube avcıları" + }, + { + "appid": 2607640, + "normalized_name": "rolling toolman 2 deathly traps" + }, + { + "appid": 2607710, + "normalized_name": "jump4" + }, + { + "appid": 2607730, + "normalized_name": "leave panda away" + }, + { + "appid": 2607760, + "normalized_name": "hide for cat all for the best" + }, + { + "appid": 2607780, + "normalized_name": "tuzaq" + }, + { + "appid": 2607790, + "normalized_name": "monster killcker" + }, + { + "appid": 2607870, + "normalized_name": "slyders" + }, + { + "appid": 2607880, + "normalized_name": "fading haven" + }, + { + "appid": 2607900, + "normalized_name": "pushover" + }, + { + "appid": 2607910, + "normalized_name": "cardchery" + }, + { + "appid": 2607920, + "normalized_name": "house of jigsaw happy puzzling happy home" + }, + { + "appid": 2607950, + "normalized_name": "velocity ventures" + }, + { + "appid": 2607960, + "normalized_name": "running through the beat" + }, + { + "appid": 2607970, + "normalized_name": "super shape cascade" + }, + { + "appid": 2607990, + "normalized_name": "choice clash what would you rather?" + }, + { + "appid": 2608040, + "normalized_name": "cats hidden in china" + }, + { + "appid": 2608050, + "normalized_name": "cats hidden in jingle jam" + }, + { + "appid": 2608060, + "normalized_name": "起業布武 〜織田信長とスタートアップ!?〜" + }, + { + "appid": 2608090, + "normalized_name": "rogue tides" + }, + { + "appid": 2608100, + "normalized_name": "archer hero" + }, + { + "appid": 2608120, + "normalized_name": "asteroid core" + }, + { + "appid": 2608140, + "normalized_name": "buff huckem fully wrecked" + }, + { + "appid": 2608200, + "normalized_name": "mars colonization.survival simulator" + }, + { + "appid": 2608210, + "normalized_name": "bloodkill" + }, + { + "appid": 2608250, + "normalized_name": "idle blocks" + }, + { + "appid": 2608260, + "normalized_name": "halloween trick or treat 2" + }, + { + "appid": 2608270, + "normalized_name": "intravenous 2" + }, + { + "appid": 2608290, + "normalized_name": "weedy's world" + }, + { + "appid": 2608300, + "normalized_name": "sonny the mad man casual arcade shooter" + }, + { + "appid": 2608310, + "normalized_name": "hermit simulator" + }, + { + "appid": 2608350, + "normalized_name": "sentinel girls2 snezhinka" + }, + { + "appid": 2608400, + "normalized_name": "regular spacecraft defending the mothership" + }, + { + "appid": 2608410, + "normalized_name": "ashes of the past" + }, + { + "appid": 2608440, + "normalized_name": "sunlight scream" + }, + { + "appid": 2608450, + "normalized_name": "travel along" + }, + { + "appid": 2608460, + "normalized_name": "ancient wonders gardens of babylon" + }, + { + "appid": 2608470, + "normalized_name": "animal kingdom 2" + }, + { + "appid": 2608510, + "normalized_name": "hi on rhythm" + }, + { + "appid": 2608550, + "normalized_name": "hot rod racer" + }, + { + "appid": 2608560, + "normalized_name": "usher." + }, + { + "appid": 2608570, + "normalized_name": "jennifer's fragments" + }, + { + "appid": 2608600, + "normalized_name": "the ape tales an epic adventure game" + }, + { + "appid": 2608620, + "normalized_name": "sex please" + }, + { + "appid": 2608630, + "normalized_name": "futa runner big dick" + }, + { + "appid": 2608660, + "normalized_name": "neonpowerup!" + }, + { + "appid": 2608680, + "normalized_name": "4tacos" + }, + { + "appid": 2608890, + "normalized_name": "snowflake diamond" + }, + { + "appid": 2608900, + "normalized_name": "avant garde" + }, + { + "appid": 2608930, + "normalized_name": "rival goals" + }, + { + "appid": 2608940, + "normalized_name": "crazy castle" + }, + { + "appid": 2609000, + "normalized_name": "悠卡和她的夏天" + }, + { + "appid": 2609030, + "normalized_name": "robot" + }, + { + "appid": 2609040, + "normalized_name": "small aircraft" + }, + { + "appid": 2609070, + "normalized_name": "むかしむかしあるところにとてつもなく仲の悪い ツインテールの姉妹姫様がいらっしゃいましたとさ。" + }, + { + "appid": 2609080, + "normalized_name": "烧屋" + }, + { + "appid": 2609120, + "normalized_name": "penis hero adult only" + }, + { + "appid": 2609130, + "normalized_name": "polyhop the skybound islands" + }, + { + "appid": 2609150, + "normalized_name": "monsters and spirits" + }, + { + "appid": 2609200, + "normalized_name": "escape!" + }, + { + "appid": 2609210, + "normalized_name": "return or no return" + }, + { + "appid": 2609240, + "normalized_name": "hank" + }, + { + "appid": 2609270, + "normalized_name": "aerial nature jigsaw puzzles" + }, + { + "appid": 2609280, + "normalized_name": "warrior chef" + }, + { + "appid": 2609290, + "normalized_name": "feudal wars" + }, + { + "appid": 2609310, + "normalized_name": "obscurum" + }, + { + "appid": 2609320, + "normalized_name": "功德木鱼" + }, + { + "appid": 2609350, + "normalized_name": "asteroid sentinel" + }, + { + "appid": 2609380, + "normalized_name": "damned house" + }, + { + "appid": 2609390, + "normalized_name": "temporis arts" + }, + { + "appid": 2609400, + "normalized_name": "dreaminal" + }, + { + "appid": 2609410, + "normalized_name": "editarrr" + }, + { + "appid": 2609420, + "normalized_name": "the mask behind the dream" + }, + { + "appid": 2609430, + "normalized_name": "geminiflame alpha dragon" + }, + { + "appid": 2609460, + "normalized_name": "phantasist" + }, + { + "appid": 2609490, + "normalized_name": "foxy tales" + }, + { + "appid": 2609500, + "normalized_name": "my boss leidi" + }, + { + "appid": 2609540, + "normalized_name": "i think i'm in love with a demon prince" + }, + { + "appid": 2609550, + "normalized_name": "100 caliber dash" + }, + { + "appid": 2609560, + "normalized_name": "voice of flowers" + }, + { + "appid": 2609570, + "normalized_name": "trupe do sapinho" + }, + { + "appid": 2609580, + "normalized_name": "puzzle planet" + }, + { + "appid": 2609610, + "normalized_name": "convrgence" + }, + { + "appid": 2609640, + "normalized_name": "run away" + }, + { + "appid": 2609650, + "normalized_name": "pale flamingos" + }, + { + "appid": 2609670, + "normalized_name": "redneck bowl games" + }, + { + "appid": 2609680, + "normalized_name": "the end of nowhere" + }, + { + "appid": 2609720, + "normalized_name": "raven simulator" + }, + { + "appid": 2609730, + "normalized_name": "坦克猎手2" + }, + { + "appid": 2609750, + "normalized_name": "bad mineral" + }, + { + "appid": 2609760, + "normalized_name": "emzombed" + }, + { + "appid": 2609800, + "normalized_name": "the hamster's journey" + }, + { + "appid": 2609810, + "normalized_name": "monster girl descent" + }, + { + "appid": 2609860, + "normalized_name": "decopins2" + }, + { + "appid": 2609870, + "normalized_name": "mechanical mayhem" + }, + { + "appid": 2609880, + "normalized_name": "hacker's life" + }, + { + "appid": 2609910, + "normalized_name": "挂机工厂 afk industarry" + }, + { + "appid": 2609920, + "normalized_name": "project;hypatios" + }, + { + "appid": 2609940, + "normalized_name": "soul sader" + }, + { + "appid": 2610000, + "normalized_name": "kumawelt 1 honey frontier" + }, + { + "appid": 2610020, + "normalized_name": "naughty paws" + }, + { + "appid": 2610030, + "normalized_name": "conqueror of time" + }, + { + "appid": 2610040, + "normalized_name": "toi 2 attack" + }, + { + "appid": 2610050, + "normalized_name": "little chefs co op" + }, + { + "appid": 2610080, + "normalized_name": "my pleasure season 3" + }, + { + "appid": 2610090, + "normalized_name": "a park full of cats" + }, + { + "appid": 2610200, + "normalized_name": "hidden city top down 3d" + }, + { + "appid": 2610210, + "normalized_name": "hidden prototype top down 3d" + }, + { + "appid": 2610220, + "normalized_name": "hidden space top down 3d" + }, + { + "appid": 2610230, + "normalized_name": "hidden western frontier top down 3d" + }, + { + "appid": 2610250, + "normalized_name": "手办工坊2" + }, + { + "appid": 2610280, + "normalized_name": "the finnish war x sotidrokhima finlandsaga" + }, + { + "appid": 2610290, + "normalized_name": "teacher seduction" + }, + { + "appid": 2610320, + "normalized_name": "starcremental" + }, + { + "appid": 2610370, + "normalized_name": "laserpitium" + }, + { + "appid": 2610390, + "normalized_name": "convenient fiend" + }, + { + "appid": 2610440, + "normalized_name": "baldr's squid isekai a parody" + }, + { + "appid": 2610470, + "normalized_name": "dubai builder" + }, + { + "appid": 2610480, + "normalized_name": "sixth sense" + }, + { + "appid": 2610500, + "normalized_name": "i commissioned some cats 4" + }, + { + "appid": 2610540, + "normalized_name": "divemensions" + }, + { + "appid": 2610550, + "normalized_name": "古代风流传" + }, + { + "appid": 2610580, + "normalized_name": "casino conqueror" + }, + { + "appid": 2610630, + "normalized_name": "muscle girl lisa training diary" + }, + { + "appid": 2610640, + "normalized_name": "critical failure" + }, + { + "appid": 2610650, + "normalized_name": "don't stop girlypop!" + }, + { + "appid": 2610690, + "normalized_name": "少侠的江湖" + }, + { + "appid": 2610710, + "normalized_name": "check and slash" + }, + { + "appid": 2610720, + "normalized_name": "cultivation fantasy" + }, + { + "appid": 2610770, + "normalized_name": "dust front rts" + }, + { + "appid": 2610810, + "normalized_name": "zoo simulator prologue" + }, + { + "appid": 2610830, + "normalized_name": "retro combat" + }, + { + "appid": 2610840, + "normalized_name": "daomei village prologue" + }, + { + "appid": 2610850, + "normalized_name": "hyperspace nebula" + }, + { + "appid": 2610860, + "normalized_name": "hazardous" + }, + { + "appid": 2610880, + "normalized_name": "duskpunk" + }, + { + "appid": 2610910, + "normalized_name": "open the doors" + }, + { + "appid": 2610920, + "normalized_name": "bombastic land" + }, + { + "appid": 2610960, + "normalized_name": "indoors" + }, + { + "appid": 2610970, + "normalized_name": "prin c1" + }, + { + "appid": 2611040, + "normalized_name": "cat fred evil pet" + }, + { + "appid": 2611060, + "normalized_name": "history of space" + }, + { + "appid": 2611110, + "normalized_name": "atomic hazard" + }, + { + "appid": 2611140, + "normalized_name": "memory rewind" + }, + { + "appid": 2611160, + "normalized_name": "hand me a lighter" + }, + { + "appid": 2611190, + "normalized_name": "carprogram" + }, + { + "appid": 2611200, + "normalized_name": "totum" + }, + { + "appid": 2611240, + "normalized_name": "normal fishing" + }, + { + "appid": 2611280, + "normalized_name": "eternal king" + }, + { + "appid": 2611370, + "normalized_name": "khali خالي" + }, + { + "appid": 2611410, + "normalized_name": "manifest destiny" + }, + { + "appid": 2611440, + "normalized_name": "titan survival" + }, + { + "appid": 2611550, + "normalized_name": "spectral climb" + }, + { + "appid": 2611580, + "normalized_name": "quiet is the eyes" + }, + { + "appid": 2611590, + "normalized_name": "tale of time bagua" + }, + { + "appid": 2611600, + "normalized_name": "bumpkin and sprout" + }, + { + "appid": 2611620, + "normalized_name": "mango goes to mewsic school" + }, + { + "appid": 2611630, + "normalized_name": "portal puzzle" + }, + { + "appid": 2611710, + "normalized_name": "旧日重返(mystery of the past)" + }, + { + "appid": 2611750, + "normalized_name": "cosmic cursor" + }, + { + "appid": 2611780, + "normalized_name": "space shooter 24" + }, + { + "appid": 2611800, + "normalized_name": "nightrunner" + }, + { + "appid": 2611820, + "normalized_name": "mercury" + }, + { + "appid": 2611860, + "normalized_name": "gunslinger duel" + }, + { + "appid": 2611890, + "normalized_name": "lovey ♡ dovey" + }, + { + "appid": 2611940, + "normalized_name": "driveland" + }, + { + "appid": 2612220, + "normalized_name": "cosmic armada" + }, + { + "appid": 2612230, + "normalized_name": "mothman" + }, + { + "appid": 2612270, + "normalized_name": "saraman union" + }, + { + "appid": 2612320, + "normalized_name": "leap hero" + }, + { + "appid": 2612370, + "normalized_name": "pigsaw human abattoir" + }, + { + "appid": 2612380, + "normalized_name": "doc ati" + }, + { + "appid": 2612390, + "normalized_name": "the ump show" + }, + { + "appid": 2612410, + "normalized_name": "to victory" + }, + { + "appid": 2612420, + "normalized_name": "virtu pilot" + }, + { + "appid": 2612430, + "normalized_name": "down there somewhere" + }, + { + "appid": 2612530, + "normalized_name": "dungeons of desire" + }, + { + "appid": 2612540, + "normalized_name": "dungeon girl" + }, + { + "appid": 2612580, + "normalized_name": "exodus black sun" + }, + { + "appid": 2612620, + "normalized_name": "秘封最后旅 ~ edge of realm" + }, + { + "appid": 2612660, + "normalized_name": "kamaitachi no yoru x3" + }, + { + "appid": 2612670, + "normalized_name": "iglacia" + }, + { + "appid": 2612680, + "normalized_name": "cureocity" + }, + { + "appid": 2612690, + "normalized_name": "roots devour" + }, + { + "appid": 2612700, + "normalized_name": "s4u citypunk 2011 and love punch" + }, + { + "appid": 2612720, + "normalized_name": "mayhem’s adventure" + }, + { + "appid": 2612730, + "normalized_name": "cyber assassin" + }, + { + "appid": 2612750, + "normalized_name": "boxman" + }, + { + "appid": 2612780, + "normalized_name": "鬼鎮村の危険な因襲 dangerous village tradition" + }, + { + "appid": 2612800, + "normalized_name": "simple stock trading simulator" + }, + { + "appid": 2612830, + "normalized_name": "run ran! side scrollers" + }, + { + "appid": 2612870, + "normalized_name": "mercenary battle company the reapers" + }, + { + "appid": 2612960, + "normalized_name": "night crow" + }, + { + "appid": 2612970, + "normalized_name": "freja" + }, + { + "appid": 2613010, + "normalized_name": "transpile girl rescue operation!" + }, + { + "appid": 2613050, + "normalized_name": "the smile friends" + }, + { + "appid": 2613060, + "normalized_name": "my recycling center" + }, + { + "appid": 2613070, + "normalized_name": "way to the light" + }, + { + "appid": 2613110, + "normalized_name": "enigmarble" + }, + { + "appid": 2613120, + "normalized_name": "veil of shadows" + }, + { + "appid": 2613130, + "normalized_name": "phantom stars" + }, + { + "appid": 2613230, + "normalized_name": "king of the times" + }, + { + "appid": 2613240, + "normalized_name": "conquest manager" + }, + { + "appid": 2613250, + "normalized_name": "multiplayer drone simulator" + }, + { + "appid": 2613370, + "normalized_name": "metal casket" + }, + { + "appid": 2613420, + "normalized_name": "mayhem mail" + }, + { + "appid": 2613480, + "normalized_name": "lan party" + }, + { + "appid": 2613510, + "normalized_name": "tether" + }, + { + "appid": 2613530, + "normalized_name": "dungeon 3d" + }, + { + "appid": 2613540, + "normalized_name": "loose leaf a tea witch simulator" + }, + { + "appid": 2613550, + "normalized_name": "vikingscape" + }, + { + "appid": 2613580, + "normalized_name": "captured nightmare" + }, + { + "appid": 2613610, + "normalized_name": "drift.wav" + }, + { + "appid": 2613640, + "normalized_name": "crate escape" + }, + { + "appid": 2613720, + "normalized_name": "cybermatrix" + }, + { + "appid": 2613730, + "normalized_name": "go bananas" + }, + { + "appid": 2613780, + "normalized_name": "wizard warfare 2 cephalopod wars" + }, + { + "appid": 2613800, + "normalized_name": "the hidden art of innkeeping" + }, + { + "appid": 2613830, + "normalized_name": "install fee tycoon" + }, + { + "appid": 2613850, + "normalized_name": "be not afraid but run" + }, + { + "appid": 2613870, + "normalized_name": "battlecore arena" + }, + { + "appid": 2613890, + "normalized_name": "icaria" + }, + { + "appid": 2613900, + "normalized_name": "unknown presence" + }, + { + "appid": 2613930, + "normalized_name": "apocalipse maromba" + }, + { + "appid": 2613940, + "normalized_name": "growers" + }, + { + "appid": 2613950, + "normalized_name": "bloody knuckles street boxing" + }, + { + "appid": 2613960, + "normalized_name": "flex disc golf" + }, + { + "appid": 2613990, + "normalized_name": "dagger run aerocombatic racing" + }, + { + "appid": 2614000, + "normalized_name": "tramcity hakodate" + }, + { + "appid": 2614070, + "normalized_name": "nukitashi 2" + }, + { + "appid": 2614080, + "normalized_name": "lampy" + }, + { + "appid": 2614090, + "normalized_name": "resonance of princess reign" + }, + { + "appid": 2614100, + "normalized_name": "demon's gunplay 2" + }, + { + "appid": 2614150, + "normalized_name": "privateer" + }, + { + "appid": 2614200, + "normalized_name": "daily thread the sewing of discontent" + }, + { + "appid": 2614210, + "normalized_name": "world war zombie" + }, + { + "appid": 2614220, + "normalized_name": "滴るあの娘 ~drenched girls~" + }, + { + "appid": 2614230, + "normalized_name": "team of bravery" + }, + { + "appid": 2614240, + "normalized_name": "hidden cats in street market" + }, + { + "appid": 2614270, + "normalized_name": "woodside" + }, + { + "appid": 2614280, + "normalized_name": "fallen down" + }, + { + "appid": 2614320, + "normalized_name": "女神侦探3" + }, + { + "appid": 2614330, + "normalized_name": "pharmageddon" + }, + { + "appid": 2614360, + "normalized_name": "wizarre" + }, + { + "appid": 2614370, + "normalized_name": "mr. nomad" + }, + { + "appid": 2614380, + "normalized_name": "martha's dolls" + }, + { + "appid": 2614460, + "normalized_name": "dark mirror" + }, + { + "appid": 2614480, + "normalized_name": "portalsnake" + }, + { + "appid": 2614490, + "normalized_name": "willy and rosie bust out of the big house" + }, + { + "appid": 2614510, + "normalized_name": "blue ribbon bake off" + }, + { + "appid": 2614530, + "normalized_name": "goblin siege protect the castle!" + }, + { + "appid": 2614540, + "normalized_name": "autumn's bounty" + }, + { + "appid": 2614550, + "normalized_name": "transporter" + }, + { + "appid": 2614580, + "normalized_name": "inspector waffles early days" + }, + { + "appid": 2614590, + "normalized_name": "online obsession" + }, + { + "appid": 2614640, + "normalized_name": "an american werewolf in l.a." + }, + { + "appid": 2614670, + "normalized_name": "the world's egg for those who dream" + }, + { + "appid": 2614690, + "normalized_name": "around the world travel to brazil" + }, + { + "appid": 2614700, + "normalized_name": "infrared" + }, + { + "appid": 2614710, + "normalized_name": "hellflame" + }, + { + "appid": 2614790, + "normalized_name": "gundeck[100]" + }, + { + "appid": 2614800, + "normalized_name": "who is abby" + }, + { + "appid": 2614820, + "normalized_name": "it happened here beacon of truth collector's" + }, + { + "appid": 2614910, + "normalized_name": "dunchess" + }, + { + "appid": 2614930, + "normalized_name": "dino mayhem" + }, + { + "appid": 2614970, + "normalized_name": "blagmoz" + }, + { + "appid": 2614980, + "normalized_name": "square logic" + }, + { + "appid": 2615000, + "normalized_name": "grug to future" + }, + { + "appid": 2615010, + "normalized_name": "necromantic" + }, + { + "appid": 2615030, + "normalized_name": "xavian" + }, + { + "appid": 2615040, + "normalized_name": "extreme rally raid" + }, + { + "appid": 2615090, + "normalized_name": "my cute neighbor serene" + }, + { + "appid": 2615100, + "normalized_name": "shiba simulator supreme" + }, + { + "appid": 2615120, + "normalized_name": "falling for beans" + }, + { + "appid": 2615130, + "normalized_name": "cozy room decorator" + }, + { + "appid": 2615150, + "normalized_name": "hyper tanks" + }, + { + "appid": 2615180, + "normalized_name": "raid group" + }, + { + "appid": 2615200, + "normalized_name": "chin chinny chin mouse cheese chin toes" + }, + { + "appid": 2615230, + "normalized_name": "rich everyone" + }, + { + "appid": 2615260, + "normalized_name": "連繫世界的魔法" + }, + { + "appid": 2615290, + "normalized_name": "mostroscopy" + }, + { + "appid": 2615300, + "normalized_name": "生存指南2湖西区" + }, + { + "appid": 2615330, + "normalized_name": "lightbear" + }, + { + "appid": 2615380, + "normalized_name": "the legend of yan loong 1+2" + }, + { + "appid": 2615390, + "normalized_name": "ortheo voyage" + }, + { + "appid": 2615410, + "normalized_name": "迷宮のドールポリス" + }, + { + "appid": 2615430, + "normalized_name": "witchroid vania a magical girl’s fantastical adventures" + }, + { + "appid": 2615440, + "normalized_name": "lloyd the monkey 3 judgement day" + }, + { + "appid": 2615480, + "normalized_name": "aboleo shadow of the crown" + }, + { + "appid": 2615510, + "normalized_name": "square word hello winter!❄" + }, + { + "appid": 2615530, + "normalized_name": "失忆者的终章(the amnesiac:final chapter)" + }, + { + "appid": 2615540, + "normalized_name": "void/breaker" + }, + { + "appid": 2615570, + "normalized_name": "spellbrew express" + }, + { + "appid": 2615630, + "normalized_name": "global farmer" + }, + { + "appid": 2615660, + "normalized_name": "boss rush delivery" + }, + { + "appid": 2615750, + "normalized_name": "simulacro" + }, + { + "appid": 2615770, + "normalized_name": "shenaniganza" + }, + { + "appid": 2615810, + "normalized_name": "one night in kawami" + }, + { + "appid": 2615870, + "normalized_name": "avy fables of the night" + }, + { + "appid": 2615880, + "normalized_name": "sprintline" + }, + { + "appid": 2615940, + "normalized_name": "battlethorne" + }, + { + "appid": 2616040, + "normalized_name": "infected outpost" + }, + { + "appid": 2616050, + "normalized_name": "dual bus simulator" + }, + { + "appid": 2616060, + "normalized_name": "blackhole on the road" + }, + { + "appid": 2616090, + "normalized_name": "whacking hell!" + }, + { + "appid": 2616100, + "normalized_name": "plague lords" + }, + { + "appid": 2616130, + "normalized_name": "zombie death day" + }, + { + "appid": 2616140, + "normalized_name": "sunset motel" + }, + { + "appid": 2616170, + "normalized_name": "nebula flow" + }, + { + "appid": 2616200, + "normalized_name": "miss peacock" + }, + { + "appid": 2616230, + "normalized_name": "battlecade" + }, + { + "appid": 2616270, + "normalized_name": "deer hunt" + }, + { + "appid": 2616320, + "normalized_name": "diesel burners" + }, + { + "appid": 2616420, + "normalized_name": "hans" + }, + { + "appid": 2616430, + "normalized_name": "populous the beginning" + }, + { + "appid": 2616450, + "normalized_name": "populous ii trials of the olympian gods" + }, + { + "appid": 2616460, + "normalized_name": "dungeon keeper 2" + }, + { + "appid": 2616480, + "normalized_name": "neon nirvana" + }, + { + "appid": 2616490, + "normalized_name": "cave runner" + }, + { + "appid": 2616540, + "normalized_name": "croak" + }, + { + "appid": 2616550, + "normalized_name": "rescue the prisoner" + }, + { + "appid": 2616590, + "normalized_name": "elowyn and the stolen souls" + }, + { + "appid": 2616630, + "normalized_name": "snack of the kitty" + }, + { + "appid": 2616650, + "normalized_name": "engraving" + }, + { + "appid": 2616670, + "normalized_name": "flappy swan" + }, + { + "appid": 2616680, + "normalized_name": "khodam the contract" + }, + { + "appid": 2616720, + "normalized_name": "gestalt the fifth day" + }, + { + "appid": 2616740, + "normalized_name": "handsome and brave" + }, + { + "appid": 2616750, + "normalized_name": "witchhammer" + }, + { + "appid": 2616760, + "normalized_name": "strange investigations becoming" + }, + { + "appid": 2616800, + "normalized_name": "merchants of rosewall" + }, + { + "appid": 2616810, + "normalized_name": "fwog" + }, + { + "appid": 2616890, + "normalized_name": "chamberflame" + }, + { + "appid": 2616900, + "normalized_name": "wfd" + }, + { + "appid": 2617030, + "normalized_name": "pond scum a gothic swamp tale" + }, + { + "appid": 2617090, + "normalized_name": "fowl damage" + }, + { + "appid": 2617110, + "normalized_name": "无限板块 infinity blocks" + }, + { + "appid": 2617140, + "normalized_name": "divinity hunting" + }, + { + "appid": 2617150, + "normalized_name": "made in melostead" + }, + { + "appid": 2617170, + "normalized_name": "bite size terrors eye candy" + }, + { + "appid": 2617190, + "normalized_name": "soulshard" + }, + { + "appid": 2617210, + "normalized_name": "lost princess winterland" + }, + { + "appid": 2617300, + "normalized_name": "discrete heart 离散之心" + }, + { + "appid": 2617340, + "normalized_name": "terminator survivors" + }, + { + "appid": 2617350, + "normalized_name": "macho spinner" + }, + { + "appid": 2617360, + "normalized_name": "paddle protectors" + }, + { + "appid": 2617400, + "normalized_name": "极简塔防 minimalist tower defense" + }, + { + "appid": 2617430, + "normalized_name": "order of the elements" + }, + { + "appid": 2617470, + "normalized_name": "猫咪快递" + }, + { + "appid": 2617700, + "normalized_name": "tinkerlands" + }, + { + "appid": 2617740, + "normalized_name": "cacildes adventure" + }, + { + "appid": 2617760, + "normalized_name": "white path" + }, + { + "appid": 2617800, + "normalized_name": "desktop tourney world" + }, + { + "appid": 2617830, + "normalized_name": "vysions" + }, + { + "appid": 2617870, + "normalized_name": "psychofinger" + }, + { + "appid": 2617930, + "normalized_name": "this side up" + }, + { + "appid": 2617970, + "normalized_name": "wildmagic wizardry" + }, + { + "appid": 2618050, + "normalized_name": "marsh" + }, + { + "appid": 2618060, + "normalized_name": "num sama" + }, + { + "appid": 2618090, + "normalized_name": "mistward" + }, + { + "appid": 2618100, + "normalized_name": "neon ninja pixel slasher" + }, + { + "appid": 2618110, + "normalized_name": "dracula's prey a nightmare in rome" + }, + { + "appid": 2618130, + "normalized_name": "partizan" + }, + { + "appid": 2618140, + "normalized_name": "re.wired" + }, + { + "appid": 2618160, + "normalized_name": "legends of starkadia" + }, + { + "appid": 2618170, + "normalized_name": "rearview mirror" + }, + { + "appid": 2618180, + "normalized_name": "under a star long cold" + }, + { + "appid": 2618190, + "normalized_name": "age" + }, + { + "appid": 2618260, + "normalized_name": "the great exhibition of 1851 in vr" + }, + { + "appid": 2618350, + "normalized_name": "bounce ball blitz" + }, + { + "appid": 2618360, + "normalized_name": "kingdom of fallen the last stand" + }, + { + "appid": 2618370, + "normalized_name": "mossy pixels" + }, + { + "appid": 2618380, + "normalized_name": "death of marionette" + }, + { + "appid": 2618390, + "normalized_name": "the fourth sense evolution stone age" + }, + { + "appid": 2618420, + "normalized_name": "infection crisis fight for life" + }, + { + "appid": 2618500, + "normalized_name": "polygon survival" + }, + { + "appid": 2618540, + "normalized_name": "oversleep" + }, + { + "appid": 2618620, + "normalized_name": "secrets of the dark fortress" + }, + { + "appid": 2618630, + "normalized_name": "a taste of history" + }, + { + "appid": 2618640, + "normalized_name": "prezzies" + }, + { + "appid": 2618660, + "normalized_name": "无垢之恋 绽放于春之花海" + }, + { + "appid": 2618670, + "normalized_name": "punch the garden" + }, + { + "appid": 2618690, + "normalized_name": "seas of rebellion" + }, + { + "appid": 2618710, + "normalized_name": "spaceport trading company" + }, + { + "appid": 2618800, + "normalized_name": "alien break" + }, + { + "appid": 2618830, + "normalized_name": "layover lovers" + }, + { + "appid": 2618840, + "normalized_name": "末世少女 zombie girl" + }, + { + "appid": 2618850, + "normalized_name": "exp10sion" + }, + { + "appid": 2618880, + "normalized_name": "schlosshelden" + }, + { + "appid": 2618890, + "normalized_name": "kov" + }, + { + "appid": 2618920, + "normalized_name": "forgotten hill the third axis" + }, + { + "appid": 2618940, + "normalized_name": "desktop pet project" + }, + { + "appid": 2618970, + "normalized_name": "galactic super station" + }, + { + "appid": 2618990, + "normalized_name": "polybius invaders 2" + }, + { + "appid": 2619000, + "normalized_name": "sea of brave aidan adventure" + }, + { + "appid": 2619020, + "normalized_name": "musical dominotes" + }, + { + "appid": 2619030, + "normalized_name": "baff halloween" + }, + { + "appid": 2619040, + "normalized_name": "sandripper" + }, + { + "appid": 2619090, + "normalized_name": "破境lighark" + }, + { + "appid": 2619110, + "normalized_name": "77th the game" + }, + { + "appid": 2619120, + "normalized_name": "infected super soldier project" + }, + { + "appid": 2619170, + "normalized_name": "thisisthegame" + }, + { + "appid": 2619180, + "normalized_name": "小夜怪奇物语" + }, + { + "appid": 2619200, + "normalized_name": "doctor arcana and the secret of shadowspire" + }, + { + "appid": 2619210, + "normalized_name": "sympathia" + }, + { + "appid": 2619220, + "normalized_name": "deresolution" + }, + { + "appid": 2619240, + "normalized_name": "daymare town" + }, + { + "appid": 2619250, + "normalized_name": "familiars.io" + }, + { + "appid": 2619270, + "normalized_name": "merchant's odyssey" + }, + { + "appid": 2619280, + "normalized_name": "demoncountdown" + }, + { + "appid": 2619300, + "normalized_name": "the unknown fear" + }, + { + "appid": 2619350, + "normalized_name": "lewd cell" + }, + { + "appid": 2619400, + "normalized_name": "animal way" + }, + { + "appid": 2619440, + "normalized_name": "codename incubus" + }, + { + "appid": 2619450, + "normalized_name": "tower of hidden waifus" + }, + { + "appid": 2619490, + "normalized_name": "bladeborne" + }, + { + "appid": 2619510, + "normalized_name": "fantasy amusement park ii" + }, + { + "appid": 2619520, + "normalized_name": "sliding" + }, + { + "appid": 2619570, + "normalized_name": "fallen ninja" + }, + { + "appid": 2619610, + "normalized_name": "hellvivors prologue" + }, + { + "appid": 2619630, + "normalized_name": "die pablo! a tower defense adventure" + }, + { + "appid": 2619640, + "normalized_name": "evil hunt evil never sleeps" + }, + { + "appid": 2619650, + "normalized_name": "cauldron" + }, + { + "appid": 2619660, + "normalized_name": "heartless corporation" + }, + { + "appid": 2619720, + "normalized_name": "chained cucumber" + }, + { + "appid": 2619750, + "normalized_name": "roots of cinder" + }, + { + "appid": 2619790, + "normalized_name": "dungeon cradle of hell" + }, + { + "appid": 2619860, + "normalized_name": "animated jigsaw puzzles" + }, + { + "appid": 2619900, + "normalized_name": "tiny breakers camp" + }, + { + "appid": 2619940, + "normalized_name": "a story about farting" + }, + { + "appid": 2619950, + "normalized_name": "six meat under" + }, + { + "appid": 2619970, + "normalized_name": "relentless impetus" + }, + { + "appid": 2619990, + "normalized_name": "morphscape the stylized prop pursuit" + }, + { + "appid": 2620000, + "normalized_name": "bullethell" + }, + { + "appid": 2620020, + "normalized_name": "ash and tor yuma's quest" + }, + { + "appid": 2620110, + "normalized_name": "battle record graizor" + }, + { + "appid": 2620120, + "normalized_name": "searching" + }, + { + "appid": 2620140, + "normalized_name": "avaris3" + }, + { + "appid": 2620200, + "normalized_name": "fight to the death" + }, + { + "appid": 2620210, + "normalized_name": "jinshin" + }, + { + "appid": 2620220, + "normalized_name": "idle mall tycoon" + }, + { + "appid": 2620240, + "normalized_name": "spectral scream" + }, + { + "appid": 2620290, + "normalized_name": "divine pig" + }, + { + "appid": 2620300, + "normalized_name": "garden of coolembozo" + }, + { + "appid": 2620330, + "normalized_name": "stamped an anti travel game" + }, + { + "appid": 2620340, + "normalized_name": "bounty city 3 way battle" + }, + { + "appid": 2620380, + "normalized_name": "艺术即是爆炸 art is boom" + }, + { + "appid": 2620420, + "normalized_name": "horror in hongdae" + }, + { + "appid": 2620440, + "normalized_name": "joninės" + }, + { + "appid": 2620450, + "normalized_name": "highreach" + }, + { + "appid": 2620460, + "normalized_name": "wizardry high school exam" + }, + { + "appid": 2620500, + "normalized_name": "いもむし" + }, + { + "appid": 2620530, + "normalized_name": "perfect teams" + }, + { + "appid": 2620540, + "normalized_name": "against the tide" + }, + { + "appid": 2620550, + "normalized_name": "chessium 3d chess battle" + }, + { + "appid": 2620590, + "normalized_name": "marron's day" + }, + { + "appid": 2620610, + "normalized_name": "dungeons of mysteria" + }, + { + "appid": 2620630, + "normalized_name": "monkee game" + }, + { + "appid": 2620640, + "normalized_name": "禁忌摄影" + }, + { + "appid": 2620690, + "normalized_name": "aure" + }, + { + "appid": 2620730, + "normalized_name": "偏差者 deviator" + }, + { + "appid": 2620750, + "normalized_name": "incredible dracula dark carnival" + }, + { + "appid": 2620770, + "normalized_name": "leaf it to me" + }, + { + "appid": 2620780, + "normalized_name": "halloween trouble 5" + }, + { + "appid": 2620870, + "normalized_name": "tracks of the arcana" + }, + { + "appid": 2620930, + "normalized_name": "tmutarakan" + }, + { + "appid": 2620940, + "normalized_name": "fallen seeds" + }, + { + "appid": 2620950, + "normalized_name": "underoneroof" + }, + { + "appid": 2621030, + "normalized_name": "your holy & virtuous heretic" + }, + { + "appid": 2621040, + "normalized_name": "survive the night" + }, + { + "appid": 2621080, + "normalized_name": "jery mice vs cats home invasion" + }, + { + "appid": 2621140, + "normalized_name": "aftermath" + }, + { + "appid": 2621150, + "normalized_name": "древние ящеры против русов битва за гиперборею" + }, + { + "appid": 2621160, + "normalized_name": "battle wizard attack" + }, + { + "appid": 2621220, + "normalized_name": "tile ruler" + }, + { + "appid": 2621260, + "normalized_name": "pocket race driver" + }, + { + "appid": 2621270, + "normalized_name": "dusky depths" + }, + { + "appid": 2621280, + "normalized_name": "dead zone rebirth of survivors" + }, + { + "appid": 2621330, + "normalized_name": "hexillume" + }, + { + "appid": 2621350, + "normalized_name": "scp containment chaos" + }, + { + "appid": 2621380, + "normalized_name": "lord clicker" + }, + { + "appid": 2621400, + "normalized_name": "robots shooting simulator" + }, + { + "appid": 2621410, + "normalized_name": "maze quest master" + }, + { + "appid": 2621420, + "normalized_name": "the elision effect" + }, + { + "appid": 2621430, + "normalized_name": "dark sanctum" + }, + { + "appid": 2621440, + "normalized_name": "infinity castle dungeon" + }, + { + "appid": 2621460, + "normalized_name": "arcane fighters" + }, + { + "appid": 2621470, + "normalized_name": "endless desert td" + }, + { + "appid": 2621540, + "normalized_name": "masada" + }, + { + "appid": 2621570, + "normalized_name": "runes" + }, + { + "appid": 2621640, + "normalized_name": "pixel princess arena" + }, + { + "appid": 2621650, + "normalized_name": "affectionate annie" + }, + { + "appid": 2621670, + "normalized_name": "swarmhunters" + }, + { + "appid": 2621690, + "normalized_name": "eva" + }, + { + "appid": 2621760, + "normalized_name": "checkout blitz the shopping dead" + }, + { + "appid": 2621770, + "normalized_name": "hexrite" + }, + { + "appid": 2621790, + "normalized_name": "project hybrid" + }, + { + "appid": 2621820, + "normalized_name": "faye freelance rebel reporter" + }, + { + "appid": 2621830, + "normalized_name": "urban intel special ops" + }, + { + "appid": 2621850, + "normalized_name": "surviball" + }, + { + "appid": 2621860, + "normalized_name": "energy tanks" + }, + { + "appid": 2621900, + "normalized_name": "railway islands 2 puzzle" + }, + { + "appid": 2621950, + "normalized_name": "reaplaced" + }, + { + "appid": 2621960, + "normalized_name": "reconnoitre" + }, + { + "appid": 2621980, + "normalized_name": "sd dungeons" + }, + { + "appid": 2622000, + "normalized_name": "astral party" + }, + { + "appid": 2622030, + "normalized_name": "影视界" + }, + { + "appid": 2622100, + "normalized_name": "footy bash" + }, + { + "appid": 2622110, + "normalized_name": "brushwood saga" + }, + { + "appid": 2622170, + "normalized_name": "上班啦" + }, + { + "appid": 2622180, + "normalized_name": "detective fantasia excalimurder" + }, + { + "appid": 2622200, + "normalized_name": "staring contest" + }, + { + "appid": 2622220, + "normalized_name": "avoid" + }, + { + "appid": 2622230, + "normalized_name": "kungfu" + }, + { + "appid": 2622240, + "normalized_name": "shadow strikers" + }, + { + "appid": 2622260, + "normalized_name": "tasokare hotel re newal" + }, + { + "appid": 2622280, + "normalized_name": "shell runner" + }, + { + "appid": 2622290, + "normalized_name": "hue pulse" + }, + { + "appid": 2622300, + "normalized_name": "until the last plane 1942" + }, + { + "appid": 2622350, + "normalized_name": "fisherman's island alpha test" + }, + { + "appid": 2622380, + "normalized_name": "elden ring nightreign" + }, + { + "appid": 2622390, + "normalized_name": "new roanoke" + }, + { + "appid": 2622400, + "normalized_name": "castle master td" + }, + { + "appid": 2622450, + "normalized_name": "multiversal affairs" + }, + { + "appid": 2622460, + "normalized_name": "the skyland chronicles" + }, + { + "appid": 2622500, + "normalized_name": "incaved runner" + }, + { + "appid": 2622540, + "normalized_name": "yeah wow hey" + }, + { + "appid": 2622630, + "normalized_name": "dreamworld dread" + }, + { + "appid": 2622660, + "normalized_name": "homeland" + }, + { + "appid": 2622690, + "normalized_name": "park ranger simulator" + }, + { + "appid": 2622730, + "normalized_name": "cupid roguelite" + }, + { + "appid": 2622740, + "normalized_name": "lost chronicles" + }, + { + "appid": 2622750, + "normalized_name": "nonograms" + }, + { + "appid": 2622770, + "normalized_name": "in fair spirits" + }, + { + "appid": 2622780, + "normalized_name": "the wicked souls" + }, + { + "appid": 2622810, + "normalized_name": "the mothering" + }, + { + "appid": 2622820, + "normalized_name": "dobbel dungeon" + }, + { + "appid": 2622850, + "normalized_name": "avium" + }, + { + "appid": 2622860, + "normalized_name": "favela zombie shooter" + }, + { + "appid": 2622880, + "normalized_name": "house master" + }, + { + "appid": 2622940, + "normalized_name": "frenzy blood" + }, + { + "appid": 2622970, + "normalized_name": "tube be continued" + }, + { + "appid": 2623040, + "normalized_name": "robots at midnight" + }, + { + "appid": 2623050, + "normalized_name": "berzerk recharged" + }, + { + "appid": 2623080, + "normalized_name": "adhd arena" + }, + { + "appid": 2623090, + "normalized_name": "battle simulator counter stickman" + }, + { + "appid": 2623100, + "normalized_name": "xenoterrestrial" + }, + { + "appid": 2623150, + "normalized_name": "vivaldia 2" + }, + { + "appid": 2623190, + "normalized_name": "the elder scrolls iv oblivion" + }, + { + "appid": 2623260, + "normalized_name": "chess mess" + }, + { + "appid": 2623270, + "normalized_name": "war trigger" + }, + { + "appid": 2623340, + "normalized_name": "atlas wars" + }, + { + "appid": 2623370, + "normalized_name": "xenomycology" + }, + { + "appid": 2623390, + "normalized_name": "hexbot colony" + }, + { + "appid": 2623400, + "normalized_name": "surrogate" + }, + { + "appid": 2623430, + "normalized_name": "dracoslayer" + }, + { + "appid": 2623530, + "normalized_name": "the boneless" + }, + { + "appid": 2623540, + "normalized_name": "sex simulator college girls" + }, + { + "appid": 2623560, + "normalized_name": "hidden breaking bed top down 3d" + }, + { + "appid": 2623570, + "normalized_name": "hidden world war ii top down 3d" + }, + { + "appid": 2623580, + "normalized_name": "quest of dungeloria" + }, + { + "appid": 2623630, + "normalized_name": "exoforge" + }, + { + "appid": 2623650, + "normalized_name": "poly survivor" + }, + { + "appid": 2623680, + "normalized_name": "call of dookie" + }, + { + "appid": 2623690, + "normalized_name": "mutant frog" + }, + { + "appid": 2623700, + "normalized_name": "siege showdown" + }, + { + "appid": 2623730, + "normalized_name": "the leak" + }, + { + "appid": 2623750, + "normalized_name": "ghost girl ghussy xxxl" + }, + { + "appid": 2623970, + "normalized_name": "roadside" + }, + { + "appid": 2623980, + "normalized_name": "harrowed world dracula fallen modern gothic vampire visual novel" + }, + { + "appid": 2624020, + "normalized_name": "parasomnum" + }, + { + "appid": 2624050, + "normalized_name": "lustful brides" + }, + { + "appid": 2624060, + "normalized_name": "anathyma" + }, + { + "appid": 2624080, + "normalized_name": "mycorelic" + }, + { + "appid": 2624090, + "normalized_name": "full bloom" + }, + { + "appid": 2624100, + "normalized_name": "the house" + }, + { + "appid": 2624120, + "normalized_name": "uncle nook's survivors" + }, + { + "appid": 2624230, + "normalized_name": "genso chronicles" + }, + { + "appid": 2624280, + "normalized_name": "420blazeit 2 game of the year =dank dreams and goated memes= [#wow/11 like and subscribe] poggerz" + }, + { + "appid": 2624320, + "normalized_name": "futa tales" + }, + { + "appid": 2624360, + "normalized_name": "ball breaker" + }, + { + "appid": 2624370, + "normalized_name": "fantasy online remake" + }, + { + "appid": 2624400, + "normalized_name": "traptile" + }, + { + "appid": 2624410, + "normalized_name": "singularium" + }, + { + "appid": 2624560, + "normalized_name": "valley of kings" + }, + { + "appid": 2624580, + "normalized_name": "undead uprising" + }, + { + "appid": 2624610, + "normalized_name": "master of ives" + }, + { + "appid": 2624660, + "normalized_name": "superfetch dog" + }, + { + "appid": 2624670, + "normalized_name": "matt's hidden cats" + }, + { + "appid": 2624690, + "normalized_name": "do i know you?" + }, + { + "appid": 2624720, + "normalized_name": "primit shooter 2" + }, + { + "appid": 2624730, + "normalized_name": "fluffwatch" + }, + { + "appid": 2624740, + "normalized_name": "sex lens a porn story 🍓🎥" + }, + { + "appid": 2624750, + "normalized_name": "pawelek the game." + }, + { + "appid": 2624760, + "normalized_name": "pimp life sex simulator 🔞" + }, + { + "appid": 2624790, + "normalized_name": "archive 1985" + }, + { + "appid": 2624950, + "normalized_name": "welcome to the karoshi club" + }, + { + "appid": 2624980, + "normalized_name": "elfs from elsewhere!" + }, + { + "appid": 2624990, + "normalized_name": "enter the night" + }, + { + "appid": 2625000, + "normalized_name": "scorching desert" + }, + { + "appid": 2625010, + "normalized_name": "exploration light" + }, + { + "appid": 2625030, + "normalized_name": "know your limits" + }, + { + "appid": 2625040, + "normalized_name": "chunky tomato" + }, + { + "appid": 2625170, + "normalized_name": "i commissioned some bees 13" + }, + { + "appid": 2625300, + "normalized_name": "i commissioned some cats 5" + }, + { + "appid": 2625330, + "normalized_name": "upworld multiplayer" + }, + { + "appid": 2625340, + "normalized_name": "bane murrain" + }, + { + "appid": 2625350, + "normalized_name": "draft day sports pro football 2024" + }, + { + "appid": 2625380, + "normalized_name": "draft day sports pro basketball 2024" + }, + { + "appid": 2625390, + "normalized_name": "off grids" + }, + { + "appid": 2625420, + "normalized_name": "drive beyond horizons" + }, + { + "appid": 2625430, + "normalized_name": "return to northbury grove" + }, + { + "appid": 2625450, + "normalized_name": "phosfi" + }, + { + "appid": 2625470, + "normalized_name": "moon colony" + }, + { + "appid": 2625480, + "normalized_name": "gloomy tales one way ticket collector's" + }, + { + "appid": 2625510, + "normalized_name": "don't shout together" + }, + { + "appid": 2625550, + "normalized_name": "centum" + }, + { + "appid": 2625600, + "normalized_name": "universe has no favorites" + }, + { + "appid": 2625620, + "normalized_name": "storage dealer simulator" + }, + { + "appid": 2625650, + "normalized_name": "furry feet 2" + }, + { + "appid": 2625680, + "normalized_name": "godly survivors" + }, + { + "appid": 2625700, + "normalized_name": "the semen donation truck!" + }, + { + "appid": 2625860, + "normalized_name": "corporate pussy" + }, + { + "appid": 2625880, + "normalized_name": "venator" + }, + { + "appid": 2625900, + "normalized_name": "hakuba school ! hunting prey" + }, + { + "appid": 2625930, + "normalized_name": "dreaming dead dance" + }, + { + "appid": 2625950, + "normalized_name": "alligori" + }, + { + "appid": 2625960, + "normalized_name": "doodle streets london 1950's" + }, + { + "appid": 2625970, + "normalized_name": "necromorphosis" + }, + { + "appid": 2626030, + "normalized_name": "pulsar" + }, + { + "appid": 2626050, + "normalized_name": "sausage vs. vegetable" + }, + { + "appid": 2626070, + "normalized_name": "firefly(萤火)" + }, + { + "appid": 2626080, + "normalized_name": "corvian curse" + }, + { + "appid": 2626090, + "normalized_name": "kill ball" + }, + { + "appid": 2626100, + "normalized_name": "the energy warrior / 能量战士" + }, + { + "appid": 2626120, + "normalized_name": "star racer" + }, + { + "appid": 2626140, + "normalized_name": "tentacle temptation" + }, + { + "appid": 2626180, + "normalized_name": "haunted house builder" + }, + { + "appid": 2626200, + "normalized_name": "on the axis" + }, + { + "appid": 2626210, + "normalized_name": "autonomous anarchy" + }, + { + "appid": 2626240, + "normalized_name": "saving mrs. hinako" + }, + { + "appid": 2626360, + "normalized_name": "panda go" + }, + { + "appid": 2626380, + "normalized_name": "pc jumps" + }, + { + "appid": 2626410, + "normalized_name": "sins ov cigar" + }, + { + "appid": 2626430, + "normalized_name": "carvival" + }, + { + "appid": 2626450, + "normalized_name": "gogogo" + }, + { + "appid": 2626510, + "normalized_name": "boom blast" + }, + { + "appid": 2626530, + "normalized_name": "legendary tales stories collector's" + }, + { + "appid": 2626560, + "normalized_name": "reflection witch" + }, + { + "appid": 2626570, + "normalized_name": "godstv" + }, + { + "appid": 2626600, + "normalized_name": "lizard slayer" + }, + { + "appid": 2626660, + "normalized_name": "the lightning struck orphan" + }, + { + "appid": 2626680, + "normalized_name": "you are liam shadow memories" + }, + { + "appid": 2626690, + "normalized_name": "scroll survival" + }, + { + "appid": 2626710, + "normalized_name": "john novak" + }, + { + "appid": 2626720, + "normalized_name": "spartan's spear" + }, + { + "appid": 2626740, + "normalized_name": "寻找宝藏女孩" + }, + { + "appid": 2626760, + "normalized_name": "shadows in silence" + }, + { + "appid": 2626780, + "normalized_name": "aim trainer shooting range" + }, + { + "appid": 2626830, + "normalized_name": "sos ops 2" + }, + { + "appid": 2626840, + "normalized_name": "sticky situations" + }, + { + "appid": 2626860, + "normalized_name": "dragon eclipse" + }, + { + "appid": 2626870, + "normalized_name": "mighty mini golf" + }, + { + "appid": 2626890, + "normalized_name": "kottabos vr" + }, + { + "appid": 2626910, + "normalized_name": "aviators" + }, + { + "appid": 2626920, + "normalized_name": "evocation" + }, + { + "appid": 2626940, + "normalized_name": "life makeover" + }, + { + "appid": 2626960, + "normalized_name": "red nose guy suika" + }, + { + "appid": 2626970, + "normalized_name": "my horse bonded spirits prologue" + }, + { + "appid": 2627030, + "normalized_name": "love alone death" + }, + { + "appid": 2627040, + "normalized_name": "uncontained" + }, + { + "appid": 2627070, + "normalized_name": "ukemeowy" + }, + { + "appid": 2627150, + "normalized_name": "my next life as a bird" + }, + { + "appid": 2627200, + "normalized_name": "potter about" + }, + { + "appid": 2627210, + "normalized_name": "corked" + }, + { + "appid": 2627240, + "normalized_name": "escape from death" + }, + { + "appid": 2627260, + "normalized_name": "ninja gaiden 4" + }, + { + "appid": 2627270, + "normalized_name": "the method of hiding a body" + }, + { + "appid": 2627280, + "normalized_name": "harem of gods" + }, + { + "appid": 2627340, + "normalized_name": "paradise angel" + }, + { + "appid": 2627370, + "normalized_name": "rocklings" + }, + { + "appid": 2627380, + "normalized_name": "halloween stories black book collector's" + }, + { + "appid": 2627390, + "normalized_name": "reef escape" + }, + { + "appid": 2627410, + "normalized_name": "boxing school 2" + }, + { + "appid": 2627420, + "normalized_name": "the coldest winter" + }, + { + "appid": 2627480, + "normalized_name": "futamarket" + }, + { + "appid": 2627500, + "normalized_name": "i commissioned some frogs 2" + }, + { + "appid": 2627540, + "normalized_name": "へなぽらんど" + }, + { + "appid": 2627550, + "normalized_name": "tulip" + }, + { + "appid": 2627570, + "normalized_name": "goofy gorillas" + }, + { + "appid": 2627580, + "normalized_name": "freestyle studio" + }, + { + "appid": 2627600, + "normalized_name": "projeto real" + }, + { + "appid": 2627630, + "normalized_name": "macabre stage vol. 1 cursed cartridge | 倉庫番" + }, + { + "appid": 2627640, + "normalized_name": "crypt crawler" + }, + { + "appid": 2627660, + "normalized_name": "cold calling" + }, + { + "appid": 2627680, + "normalized_name": "g modeアーカイブス50 ミッドナイトホラースクール" + }, + { + "appid": 2627710, + "normalized_name": "midnight run" + }, + { + "appid": 2627720, + "normalized_name": "vasterra" + }, + { + "appid": 2627740, + "normalized_name": "shards online" + }, + { + "appid": 2627770, + "normalized_name": "the consumist journey" + }, + { + "appid": 2627780, + "normalized_name": "date a live ren dystopia" + }, + { + "appid": 2628010, + "normalized_name": "hell well" + }, + { + "appid": 2628050, + "normalized_name": "satellitv サテライティービー" + }, + { + "appid": 2628060, + "normalized_name": "temple of the green moon" + }, + { + "appid": 2628070, + "normalized_name": "last night shift" + }, + { + "appid": 2628080, + "normalized_name": "コスプレリラクゼーション cosplay relaxation" + }, + { + "appid": 2628100, + "normalized_name": "swords of blood" + }, + { + "appid": 2628130, + "normalized_name": "the cakeman" + }, + { + "appid": 2628180, + "normalized_name": "solcialists" + }, + { + "appid": 2628190, + "normalized_name": "东方希莲船 ~ fatal octopus" + }, + { + "appid": 2628220, + "normalized_name": "path of heaven" + }, + { + "appid": 2628230, + "normalized_name": "arcane blast" + }, + { + "appid": 2628370, + "normalized_name": "sorrows end" + }, + { + "appid": 2628390, + "normalized_name": "deep sleep" + }, + { + "appid": 2628400, + "normalized_name": "cozy island idle" + }, + { + "appid": 2628420, + "normalized_name": "croakoloco" + }, + { + "appid": 2628450, + "normalized_name": "times of progress" + }, + { + "appid": 2628460, + "normalized_name": "pirates" + }, + { + "appid": 2628470, + "normalized_name": "嘉离代战" + }, + { + "appid": 2628490, + "normalized_name": "wasted will be brutal" + }, + { + "appid": 2628530, + "normalized_name": "ninja ball" + }, + { + "appid": 2628560, + "normalized_name": "breaking box rush!" + }, + { + "appid": 2628570, + "normalized_name": "stellar settlers space base builder" + }, + { + "appid": 2628600, + "normalized_name": "疑案追了声" + }, + { + "appid": 2628680, + "normalized_name": "grill on wheels" + }, + { + "appid": 2628710, + "normalized_name": "escape the void" + }, + { + "appid": 2628720, + "normalized_name": "forest offroad driving simulator" + }, + { + "appid": 2628740, + "normalized_name": "dead meat" + }, + { + "appid": 2628800, + "normalized_name": "brooks in wild west" + }, + { + "appid": 2628850, + "normalized_name": "la hollywood zombies" + }, + { + "appid": 2628870, + "normalized_name": "monkey game" + }, + { + "appid": 2628880, + "normalized_name": "blood & chaos" + }, + { + "appid": 2628900, + "normalized_name": "return to basic killing" + }, + { + "appid": 2628930, + "normalized_name": "tales of anturia hejstos" + }, + { + "appid": 2628950, + "normalized_name": "paramorfosi" + }, + { + "appid": 2628960, + "normalized_name": "impossible bunny challenge" + }, + { + "appid": 2629010, + "normalized_name": "疫地求生" + }, + { + "appid": 2629030, + "normalized_name": "finite state automaton challenges" + }, + { + "appid": 2629050, + "normalized_name": "bistro blitz" + }, + { + "appid": 2629070, + "normalized_name": "aim trainer (with cats)" + }, + { + "appid": 2629120, + "normalized_name": "悬浮女孩" + }, + { + "appid": 2629130, + "normalized_name": "fantasy gatekeeper" + }, + { + "appid": 2629170, + "normalized_name": "freejack online" + }, + { + "appid": 2629180, + "normalized_name": "the ruins" + }, + { + "appid": 2629190, + "normalized_name": "trouble magnet" + }, + { + "appid": 2629200, + "normalized_name": "project subtrahend" + }, + { + "appid": 2629230, + "normalized_name": "the adventures of sir kicksalot" + }, + { + "appid": 2629260, + "normalized_name": "pellet packer micro munch" + }, + { + "appid": 2629270, + "normalized_name": "pellet packer cookie crunch" + }, + { + "appid": 2629280, + "normalized_name": "dread protocol" + }, + { + "appid": 2629310, + "normalized_name": "himiko's journey" + }, + { + "appid": 2629320, + "normalized_name": "reverse dungeon" + }, + { + "appid": 2629330, + "normalized_name": "memology goyda" + }, + { + "appid": 2629340, + "normalized_name": "dungeon bar gachi puzzles" + }, + { + "appid": 2629350, + "normalized_name": "skatenationxl" + }, + { + "appid": 2629370, + "normalized_name": "department 14" + }, + { + "appid": 2629410, + "normalized_name": "dispel" + }, + { + "appid": 2629420, + "normalized_name": "princess parent" + }, + { + "appid": 2629430, + "normalized_name": "head over heels" + }, + { + "appid": 2629470, + "normalized_name": "clear plan" + }, + { + "appid": 2629550, + "normalized_name": "threshold of awakening" + }, + { + "appid": 2629560, + "normalized_name": "rain tactics" + }, + { + "appid": 2629610, + "normalized_name": "maze maverick" + }, + { + "appid": 2629630, + "normalized_name": "afk chess chess auto battler" + }, + { + "appid": 2629640, + "normalized_name": "lazer rush reloaded" + }, + { + "appid": 2629650, + "normalized_name": "arthur & susan almost detectives" + }, + { + "appid": 2629660, + "normalized_name": "kitchinko" + }, + { + "appid": 2629670, + "normalized_name": "life blood" + }, + { + "appid": 2629680, + "normalized_name": "atv offroad simulator 24" + }, + { + "appid": 2629710, + "normalized_name": "rift genesis" + }, + { + "appid": 2629790, + "normalized_name": "project grey cat" + }, + { + "appid": 2629860, + "normalized_name": "poptag" + }, + { + "appid": 2629900, + "normalized_name": "into the depths of despair" + }, + { + "appid": 2630000, + "normalized_name": "chasing chickens" + }, + { + "appid": 2630020, + "normalized_name": "nightmare knight ~sacred maiden & fallen magic~" + }, + { + "appid": 2630030, + "normalized_name": "one way road firehunt" + }, + { + "appid": 2630080, + "normalized_name": "they are coming" + }, + { + "appid": 2630100, + "normalized_name": "definya 2d mmorpg" + }, + { + "appid": 2630140, + "normalized_name": "flashman gold" + }, + { + "appid": 2630160, + "normalized_name": "vr secretroom" + }, + { + "appid": 2630210, + "normalized_name": "towercore survivors" + }, + { + "appid": 2630220, + "normalized_name": "heros fight battle royal" + }, + { + "appid": 2630250, + "normalized_name": "cryptasync cyber urban depths" + }, + { + "appid": 2630260, + "normalized_name": "nude and afraid 11 day challenge" + }, + { + "appid": 2630300, + "normalized_name": "the imperial capital burns muv luv alternative total eclipse" + }, + { + "appid": 2630310, + "normalized_name": "amazin' mage" + }, + { + "appid": 2630350, + "normalized_name": "yatagarasu enter the eastward" + }, + { + "appid": 2630370, + "normalized_name": "queen of tactics" + }, + { + "appid": 2630380, + "normalized_name": "touhou meijinka ~ song of divine tempest" + }, + { + "appid": 2630400, + "normalized_name": "robo blaster" + }, + { + "appid": 2630410, + "normalized_name": "a.i.liens" + }, + { + "appid": 2630420, + "normalized_name": "elven watcher" + }, + { + "appid": 2630430, + "normalized_name": "clock stopper" + }, + { + "appid": 2630500, + "normalized_name": "to infinity" + }, + { + "appid": 2630520, + "normalized_name": "successor to your throne" + }, + { + "appid": 2630690, + "normalized_name": "battle of backyard" + }, + { + "appid": 2630700, + "normalized_name": "whispers of waeth" + }, + { + "appid": 2630760, + "normalized_name": "abyss of cain" + }, + { + "appid": 2630770, + "normalized_name": "金币不止" + }, + { + "appid": 2630810, + "normalized_name": "3d puzzle building" + }, + { + "appid": 2630820, + "normalized_name": "3d puzzle harbor" + }, + { + "appid": 2630850, + "normalized_name": "soul binder" + }, + { + "appid": 2630860, + "normalized_name": "mafia chess" + }, + { + "appid": 2630870, + "normalized_name": "surf park" + }, + { + "appid": 2630900, + "normalized_name": "neon city climbing simulator" + }, + { + "appid": 2630920, + "normalized_name": "shrot" + }, + { + "appid": 2630930, + "normalized_name": "world war 2 agenda" + }, + { + "appid": 2630970, + "normalized_name": "the show is over it" + }, + { + "appid": 2630980, + "normalized_name": "guardian maia" + }, + { + "appid": 2631010, + "normalized_name": "fairyland solitaire" + }, + { + "appid": 2631020, + "normalized_name": "flight 666" + }, + { + "appid": 2631050, + "normalized_name": "geometric brothers" + }, + { + "appid": 2631060, + "normalized_name": "dragon of saiyu" + }, + { + "appid": 2631080, + "normalized_name": "extraktion 1943" + }, + { + "appid": 2631100, + "normalized_name": "melons milkshake lewd soul" + }, + { + "appid": 2631130, + "normalized_name": "idle exorcism hero" + }, + { + "appid": 2631140, + "normalized_name": "weed shop 4 highland" + }, + { + "appid": 2631150, + "normalized_name": "steelbreakers" + }, + { + "appid": 2631170, + "normalized_name": "夢幻四驅車" + }, + { + "appid": 2631210, + "normalized_name": "cave heroes" + }, + { + "appid": 2631220, + "normalized_name": "six sides of obscurity" + }, + { + "appid": 2631240, + "normalized_name": "grog" + }, + { + "appid": 2631250, + "normalized_name": "slitterhead" + }, + { + "appid": 2631270, + "normalized_name": "a mausoleum for all" + }, + { + "appid": 2631300, + "normalized_name": "冰块求生 ice survival" + }, + { + "appid": 2631330, + "normalized_name": "childhood's rush" + }, + { + "appid": 2631350, + "normalized_name": "helen" + }, + { + "appid": 2631380, + "normalized_name": "humpi and hemicube" + }, + { + "appid": 2631390, + "normalized_name": "闪耀战争" + }, + { + "appid": 2631400, + "normalized_name": "梦幻三国八阵图" + }, + { + "appid": 2631450, + "normalized_name": "bean beasts" + }, + { + "appid": 2631460, + "normalized_name": "chrono commando 2053" + }, + { + "appid": 2631480, + "normalized_name": "cookies must die" + }, + { + "appid": 2631490, + "normalized_name": "lucid echoes" + }, + { + "appid": 2631500, + "normalized_name": "slav junkie simulator" + }, + { + "appid": 2631520, + "normalized_name": "royale king" + }, + { + "appid": 2631570, + "normalized_name": "hentai swapy puzzle" + }, + { + "appid": 2631580, + "normalized_name": "cat search in the wild west" + }, + { + "appid": 2631610, + "normalized_name": "pocket mini golf" + }, + { + "appid": 2631630, + "normalized_name": "eroblast waifu dating sim" + }, + { + "appid": 2631650, + "normalized_name": "nif nif" + }, + { + "appid": 2631710, + "normalized_name": "奇怪的幸存者 strange survivors" + }, + { + "appid": 2631780, + "normalized_name": "katsl" + }, + { + "appid": 2631800, + "normalized_name": "escape the glubinka" + }, + { + "appid": 2631810, + "normalized_name": "sea raiders stream chat games" + }, + { + "appid": 2631870, + "normalized_name": "sailaway iii" + }, + { + "appid": 2631880, + "normalized_name": "don't be afraid 2" + }, + { + "appid": 2631890, + "normalized_name": "cyberfarm" + }, + { + "appid": 2631910, + "normalized_name": "tnmverse vip" + }, + { + "appid": 2631920, + "normalized_name": "poly kingdom siege" + }, + { + "appid": 2631960, + "normalized_name": "14 minesweeper variants 2" + }, + { + "appid": 2631990, + "normalized_name": "cranky chibi cthulhu" + }, + { + "appid": 2632020, + "normalized_name": "apocalypse inc" + }, + { + "appid": 2632070, + "normalized_name": "zegelon hardcore arena" + }, + { + "appid": 2632080, + "normalized_name": "dumball rush" + }, + { + "appid": 2632120, + "normalized_name": "the no name project" + }, + { + "appid": 2632140, + "normalized_name": "iron and lead" + }, + { + "appid": 2632160, + "normalized_name": "mission escape" + }, + { + "appid": 2632180, + "normalized_name": "living legends voice of the sea" + }, + { + "appid": 2632190, + "normalized_name": "concentration" + }, + { + "appid": 2632240, + "normalized_name": "pompeii the legacy" + }, + { + "appid": 2632360, + "normalized_name": "beer strip" + }, + { + "appid": 2632450, + "normalized_name": "mineblast" + }, + { + "appid": 2632480, + "normalized_name": "alone in space (by retrovem)" + }, + { + "appid": 2632490, + "normalized_name": "the lost legends of redwall feasts & friends" + }, + { + "appid": 2632500, + "normalized_name": "space destroyer" + }, + { + "appid": 2632510, + "normalized_name": "sex play college girls" + }, + { + "appid": 2632550, + "normalized_name": "legend of calvas the acurine heart" + }, + { + "appid": 2632570, + "normalized_name": "criticalorb" + }, + { + "appid": 2632620, + "normalized_name": "multiplication mayhem" + }, + { + "appid": 2632630, + "normalized_name": "groove that goob" + }, + { + "appid": 2632650, + "normalized_name": "daemon sigil" + }, + { + "appid": 2632660, + "normalized_name": "horny teachers want to fuck" + }, + { + "appid": 2632680, + "normalized_name": "delta park" + }, + { + "appid": 2632690, + "normalized_name": "fomo" + }, + { + "appid": 2632720, + "normalized_name": "greg's deadly draft" + }, + { + "appid": 2632800, + "normalized_name": "いるかにうろこがないわけ" + }, + { + "appid": 2632840, + "normalized_name": "jipoiz" + }, + { + "appid": 2632890, + "normalized_name": "wildfront" + }, + { + "appid": 2632920, + "normalized_name": "t.i.m.e" + }, + { + "appid": 2632930, + "normalized_name": "life eater" + }, + { + "appid": 2632940, + "normalized_name": "cat's vote" + }, + { + "appid": 2633080, + "normalized_name": "struggle f.o" + }, + { + "appid": 2633100, + "normalized_name": "the grand adventures of leo" + }, + { + "appid": 2633110, + "normalized_name": "worldcrusher a survival clicker game" + }, + { + "appid": 2633150, + "normalized_name": "sophia's spa" + }, + { + "appid": 2633170, + "normalized_name": "front office football nine" + }, + { + "appid": 2633180, + "normalized_name": "bloody good friends" + }, + { + "appid": 2633200, + "normalized_name": "18 minutes" + }, + { + "appid": 2633210, + "normalized_name": "catch them sweetie" + }, + { + "appid": 2633230, + "normalized_name": "my little car wash cars & trucks roleplaying game for kids" + }, + { + "appid": 2633280, + "normalized_name": "dice up" + }, + { + "appid": 2633300, + "normalized_name": "拯救公主 勇者之约" + }, + { + "appid": 2633320, + "normalized_name": "back to coffin" + }, + { + "appid": 2633330, + "normalized_name": "the good plague" + }, + { + "appid": 2633340, + "normalized_name": "vardia" + }, + { + "appid": 2633350, + "normalized_name": "sexy santa" + }, + { + "appid": 2633400, + "normalized_name": "fio fizhook" + }, + { + "appid": 2633410, + "normalized_name": "holy war" + }, + { + "appid": 2633440, + "normalized_name": "rogue nova" + }, + { + "appid": 2633460, + "normalized_name": "black mountain kings" + }, + { + "appid": 2633480, + "normalized_name": "the outforce" + }, + { + "appid": 2633490, + "normalized_name": "shadow vault" + }, + { + "appid": 2633500, + "normalized_name": "dragon throne battle of red cliffs" + }, + { + "appid": 2633510, + "normalized_name": "owl observatory" + }, + { + "appid": 2633540, + "normalized_name": "taken soul | đoạt mệnh" + }, + { + "appid": 2633550, + "normalized_name": "sign craft simulator" + }, + { + "appid": 2633560, + "normalized_name": "souls survivors" + }, + { + "appid": 2633630, + "normalized_name": "puzzlerio" + }, + { + "appid": 2633640, + "normalized_name": "eyes the horror game" + }, + { + "appid": 2633650, + "normalized_name": "genie gym" + }, + { + "appid": 2633690, + "normalized_name": "voxelscaper" + }, + { + "appid": 2633760, + "normalized_name": "love potion" + }, + { + "appid": 2633810, + "normalized_name": "halloween survivors" + }, + { + "appid": 2633830, + "normalized_name": "mansion at midnight" + }, + { + "appid": 2633860, + "normalized_name": "guild of rogues" + }, + { + "appid": 2633880, + "normalized_name": "kana ka boom" + }, + { + "appid": 2633890, + "normalized_name": "orgasm simulator 3 💦" + }, + { + "appid": 2633940, + "normalized_name": "byte breach" + }, + { + "appid": 2633950, + "normalized_name": "rugrats adventures in gameland" + }, + { + "appid": 2633960, + "normalized_name": "dream cafe" + }, + { + "appid": 2633970, + "normalized_name": "mother's embrace" + }, + { + "appid": 2634000, + "normalized_name": "rock a bye" + }, + { + "appid": 2634030, + "normalized_name": "gachi defense" + }, + { + "appid": 2634070, + "normalized_name": "quiz racer" + }, + { + "appid": 2634140, + "normalized_name": "endoparasitic vr" + }, + { + "appid": 2634210, + "normalized_name": "100 lil jumps" + }, + { + "appid": 2634300, + "normalized_name": "tower defense 3d fusion" + }, + { + "appid": 2634320, + "normalized_name": "the launching section" + }, + { + "appid": 2634330, + "normalized_name": "gun maker pimp my weapon" + }, + { + "appid": 2634350, + "normalized_name": "that cowgirl life" + }, + { + "appid": 2634370, + "normalized_name": "medicevil" + }, + { + "appid": 2634380, + "normalized_name": "the apple simulator 2" + }, + { + "appid": 2634420, + "normalized_name": "haunted things" + }, + { + "appid": 2634470, + "normalized_name": "dracula awakens" + }, + { + "appid": 2634510, + "normalized_name": "the carrier and crows" + }, + { + "appid": 2634560, + "normalized_name": "omusubi" + }, + { + "appid": 2634610, + "normalized_name": "sacabambaspis chronicle" + }, + { + "appid": 2634630, + "normalized_name": "あやかし姫 前日譚" + }, + { + "appid": 2634700, + "normalized_name": "i want to go home" + }, + { + "appid": 2634710, + "normalized_name": "stardust rain" + }, + { + "appid": 2634760, + "normalized_name": "rulers of aden" + }, + { + "appid": 2634770, + "normalized_name": "super rps" + }, + { + "appid": 2634820, + "normalized_name": "mio and the hot summer" + }, + { + "appid": 2634850, + "normalized_name": "throw anything radiation zombies" + }, + { + "appid": 2634860, + "normalized_name": "street flicker" + }, + { + "appid": 2634870, + "normalized_name": "hazard protocol" + }, + { + "appid": 2634890, + "normalized_name": "marvel vs. capcom fighting collection arcade classics" + }, + { + "appid": 2634940, + "normalized_name": "tower of wishes 3 japan" + }, + { + "appid": 2634950, + "normalized_name": "tokyo xtreme racer" + }, + { + "appid": 2634960, + "normalized_name": "block games avoid" + }, + { + "appid": 2635030, + "normalized_name": "journey of the forgotten" + }, + { + "appid": 2635050, + "normalized_name": "sancticide" + }, + { + "appid": 2635070, + "normalized_name": "the brave little cloud" + }, + { + "appid": 2635080, + "normalized_name": "covert crew" + }, + { + "appid": 2635120, + "normalized_name": "birch simulator" + }, + { + "appid": 2635170, + "normalized_name": "progres" + }, + { + "appid": 2635260, + "normalized_name": "board game cafe" + }, + { + "appid": 2635290, + "normalized_name": "tasktwist" + }, + { + "appid": 2635320, + "normalized_name": "crime 1997" + }, + { + "appid": 2635340, + "normalized_name": "yahtzee girl" + }, + { + "appid": 2635350, + "normalized_name": "united penguin kingdom" + }, + { + "appid": 2635360, + "normalized_name": "united penguin kingdom huddle up" + }, + { + "appid": 2635380, + "normalized_name": "duel of honor" + }, + { + "appid": 2635390, + "normalized_name": "滅茶苦茶呪われてるおばあちゃん家" + }, + { + "appid": 2635450, + "normalized_name": "brotherhood" + }, + { + "appid": 2635460, + "normalized_name": "sempiternal the backrooms" + }, + { + "appid": 2635480, + "normalized_name": "eye of the void unleashed tower defense" + }, + { + "appid": 2635490, + "normalized_name": "wolf the lone hunt" + }, + { + "appid": 2635500, + "normalized_name": "city defense z" + }, + { + "appid": 2635510, + "normalized_name": "raiders of valhalla prologue" + }, + { + "appid": 2635530, + "normalized_name": "限界ol海へ行く" + }, + { + "appid": 2635580, + "normalized_name": "into arith" + }, + { + "appid": 2635620, + "normalized_name": "globexplore" + }, + { + "appid": 2635640, + "normalized_name": "infestation origins" + }, + { + "appid": 2635670, + "normalized_name": "cycle idle rpg" + }, + { + "appid": 2635680, + "normalized_name": "i commissioned some cats 6" + }, + { + "appid": 2635690, + "normalized_name": "memoria vr" + }, + { + "appid": 2635700, + "normalized_name": "i commissioned some cats 7" + }, + { + "appid": 2635720, + "normalized_name": "i commissioned some cats 8" + }, + { + "appid": 2635730, + "normalized_name": "i commissioned some cats 9" + }, + { + "appid": 2635740, + "normalized_name": "i commissioned some cats 10" + }, + { + "appid": 2635750, + "normalized_name": "i commissioned some cats 0" + }, + { + "appid": 2635790, + "normalized_name": "背刺之信念王国 backstab of the kingdom of faith" + }, + { + "appid": 2635820, + "normalized_name": "krosfighter" + }, + { + "appid": 2635850, + "normalized_name": "pipeline rtx 2" + }, + { + "appid": 2635910, + "normalized_name": "vivian and kyuma" + }, + { + "appid": 2635930, + "normalized_name": "snowman story" + }, + { + "appid": 2635950, + "normalized_name": "png mall" + }, + { + "appid": 2635980, + "normalized_name": "bring me that shawarma" + }, + { + "appid": 2635990, + "normalized_name": "girls and robots 2" + }, + { + "appid": 2636000, + "normalized_name": "house of lost souls" + }, + { + "appid": 2636020, + "normalized_name": "ex xdriver" + }, + { + "appid": 2636030, + "normalized_name": "firechess" + }, + { + "appid": 2636060, + "normalized_name": "dark continent" + }, + { + "appid": 2636110, + "normalized_name": "along came a dragonfly" + }, + { + "appid": 2636200, + "normalized_name": "petey pedro unbeetable adventure" + }, + { + "appid": 2636260, + "normalized_name": "fool's end" + }, + { + "appid": 2636300, + "normalized_name": "gold grabbing goblin" + }, + { + "appid": 2636310, + "normalized_name": "grønland" + }, + { + "appid": 2636320, + "normalized_name": "methods the illusion murders" + }, + { + "appid": 2636340, + "normalized_name": "seeing things" + }, + { + "appid": 2636350, + "normalized_name": "beat 'n' path" + }, + { + "appid": 2636370, + "normalized_name": "wonder wonder punch" + }, + { + "appid": 2636380, + "normalized_name": "auto auto maximum autodrive in the alien apocalypse" + }, + { + "appid": 2636390, + "normalized_name": "sunken ships" + }, + { + "appid": 2636410, + "normalized_name": "stranded" + }, + { + "appid": 2636420, + "normalized_name": "graveyard shift" + }, + { + "appid": 2636430, + "normalized_name": "soggy beans" + }, + { + "appid": 2636450, + "normalized_name": "hanabi" + }, + { + "appid": 2636460, + "normalized_name": "dungeons deep" + }, + { + "appid": 2636480, + "normalized_name": "unforgotten ordinance" + }, + { + "appid": 2636490, + "normalized_name": "one more shooter game" + }, + { + "appid": 2636510, + "normalized_name": "king kitty saves the animals" + }, + { + "appid": 2636530, + "normalized_name": "bee craft sweet" + }, + { + "appid": 2636560, + "normalized_name": "cell 0 cyber entertainment leisure lounge" + }, + { + "appid": 2636570, + "normalized_name": "solune" + }, + { + "appid": 2636630, + "normalized_name": "pterodactyl attack" + }, + { + "appid": 2636670, + "normalized_name": "honked a clown noir" + }, + { + "appid": 2636710, + "normalized_name": "price of flight" + }, + { + "appid": 2636760, + "normalized_name": "element are we" + }, + { + "appid": 2636790, + "normalized_name": "curse of yggdrasil" + }, + { + "appid": 2636800, + "normalized_name": "lil guys" + }, + { + "appid": 2636830, + "normalized_name": "behind the kingdom" + }, + { + "appid": 2636890, + "normalized_name": "cold vr" + }, + { + "appid": 2636910, + "normalized_name": "moonbase lambda" + }, + { + "appid": 2636930, + "normalized_name": "only an alien going up!" + }, + { + "appid": 2636950, + "normalized_name": "peanut's journey" + }, + { + "appid": 2636980, + "normalized_name": "hovermania" + }, + { + "appid": 2636990, + "normalized_name": "crush link td" + }, + { + "appid": 2637020, + "normalized_name": "gate of torment" + }, + { + "appid": 2637050, + "normalized_name": "a void shaper" + }, + { + "appid": 2637070, + "normalized_name": "crawling lab" + }, + { + "appid": 2637080, + "normalized_name": "crafty racer" + }, + { + "appid": 2637100, + "normalized_name": "neon fantasy dogs" + }, + { + "appid": 2637110, + "normalized_name": "emyliveshow s&m story safe" + }, + { + "appid": 2637150, + "normalized_name": "showmespeed" + }, + { + "appid": 2637160, + "normalized_name": "fruit of choice" + }, + { + "appid": 2637170, + "normalized_name": "submersed 2 the hive" + }, + { + "appid": 2637180, + "normalized_name": "gravebond" + }, + { + "appid": 2637190, + "normalized_name": "district xilin 西林区" + }, + { + "appid": 2637210, + "normalized_name": "flow of war" + }, + { + "appid": 2637220, + "normalized_name": "morgan metal detective" + }, + { + "appid": 2637870, + "normalized_name": "my life farm vet" + }, + { + "appid": 2637890, + "normalized_name": "挖菜吧兔" + }, + { + "appid": 2637900, + "normalized_name": "cubicatch" + }, + { + "appid": 2637940, + "normalized_name": "used cars simulator" + }, + { + "appid": 2637950, + "normalized_name": "loca deserta odesa" + }, + { + "appid": 2637960, + "normalized_name": "dawn of insolence" + }, + { + "appid": 2637990, + "normalized_name": "duck detective the secret salami" + }, + { + "appid": 2638010, + "normalized_name": "security guy" + }, + { + "appid": 2638040, + "normalized_name": "snakes ltd" + }, + { + "appid": 2638050, + "normalized_name": "lost for swords" + }, + { + "appid": 2638070, + "normalized_name": "hype me for your life!" + }, + { + "appid": 2638080, + "normalized_name": "勇者パーティはぜんめつしました。" + }, + { + "appid": 2638100, + "normalized_name": "fresh story" + }, + { + "appid": 2638130, + "normalized_name": "hentai hunter" + }, + { + "appid": 2638140, + "normalized_name": "epic monster quest idle adventure" + }, + { + "appid": 2638150, + "normalized_name": "choose your cutie" + }, + { + "appid": 2638180, + "normalized_name": "hokkaido game" + }, + { + "appid": 2638210, + "normalized_name": "brave and desire" + }, + { + "appid": 2638240, + "normalized_name": "escape to the italian brainrot" + }, + { + "appid": 2638250, + "normalized_name": "apex rush" + }, + { + "appid": 2638290, + "normalized_name": "the red juggernaut" + }, + { + "appid": 2638340, + "normalized_name": "the legend of lumina" + }, + { + "appid": 2638350, + "normalized_name": "emoji face jump!" + }, + { + "appid": 2638370, + "normalized_name": "five nights at freddy's into the pit" + }, + { + "appid": 2638420, + "normalized_name": "slime slayer prologue" + }, + { + "appid": 2638430, + "normalized_name": "toitony" + }, + { + "appid": 2638500, + "normalized_name": "sin squad stealth assassins" + }, + { + "appid": 2638560, + "normalized_name": "forbidden fantasy" + }, + { + "appid": 2638570, + "normalized_name": "crowpoint manor" + }, + { + "appid": 2638600, + "normalized_name": "in my brain" + }, + { + "appid": 2638610, + "normalized_name": "spotless" + }, + { + "appid": 2638670, + "normalized_name": "temple guy quest for chest" + }, + { + "appid": 2638680, + "normalized_name": "fairiteller" + }, + { + "appid": 2638690, + "normalized_name": "empire eternal" + }, + { + "appid": 2638790, + "normalized_name": "project nasu" + }, + { + "appid": 2638830, + "normalized_name": "rugby league riot" + }, + { + "appid": 2638870, + "normalized_name": "jabuti adventures" + }, + { + "appid": 2638880, + "normalized_name": "sut" + }, + { + "appid": 2638890, + "normalized_name": "onimusha way of the sword" + }, + { + "appid": 2638900, + "normalized_name": "renovation plan" + }, + { + "appid": 2638910, + "normalized_name": "phantom patrol" + }, + { + "appid": 2638980, + "normalized_name": "let's go" + }, + { + "appid": 2639000, + "normalized_name": "eos ragnarok" + }, + { + "appid": 2639030, + "normalized_name": "the clown's forest 3 haunting apparitions" + }, + { + "appid": 2639050, + "normalized_name": "lighthoof" + }, + { + "appid": 2639100, + "normalized_name": "inari" + }, + { + "appid": 2639120, + "normalized_name": "theo" + }, + { + "appid": 2639140, + "normalized_name": "alone" + }, + { + "appid": 2639150, + "normalized_name": "on a journey rpg" + }, + { + "appid": 2639270, + "normalized_name": "photography simulator wildlife prologue" + }, + { + "appid": 2639280, + "normalized_name": "𣸩" + }, + { + "appid": 2639330, + "normalized_name": "total gravity" + }, + { + "appid": 2639350, + "normalized_name": "pestilence" + }, + { + "appid": 2639360, + "normalized_name": "rogue ottoman" + }, + { + "appid": 2639380, + "normalized_name": "the neverwhere tales book 1" + }, + { + "appid": 2639410, + "normalized_name": "reallife" + }, + { + "appid": 2639420, + "normalized_name": "fairytale fables" + }, + { + "appid": 2639440, + "normalized_name": "sgs overlord" + }, + { + "appid": 2639450, + "normalized_name": "aluanda" + }, + { + "appid": 2639460, + "normalized_name": "snow plowing simulator first snow" + }, + { + "appid": 2639480, + "normalized_name": "prophan escape" + }, + { + "appid": 2639500, + "normalized_name": "party friends" + }, + { + "appid": 2639550, + "normalized_name": "sate" + }, + { + "appid": 2639580, + "normalized_name": "myrcella the meandering mage" + }, + { + "appid": 2639590, + "normalized_name": "hentai ancient secret" + }, + { + "appid": 2639600, + "normalized_name": "queen's garden" + }, + { + "appid": 2639610, + "normalized_name": "popper lands colony" + }, + { + "appid": 2639620, + "normalized_name": "queen's garden christmas" + }, + { + "appid": 2639630, + "normalized_name": "rift survivors" + }, + { + "appid": 2639660, + "normalized_name": "call fur help" + }, + { + "appid": 2639680, + "normalized_name": "trouble in paradise" + }, + { + "appid": 2639700, + "normalized_name": "a mermaid's paradoxical tale" + }, + { + "appid": 2639770, + "normalized_name": "bad guys good boys bl" + }, + { + "appid": 2639780, + "normalized_name": "goblet of mercy" + }, + { + "appid": 2639790, + "normalized_name": "knight's empire" + }, + { + "appid": 2639810, + "normalized_name": "rumble club" + }, + { + "appid": 2639840, + "normalized_name": "dino survivors" + }, + { + "appid": 2639850, + "normalized_name": "hell scream" + }, + { + "appid": 2639860, + "normalized_name": "command center earth" + }, + { + "appid": 2639870, + "normalized_name": "diari" + }, + { + "appid": 2639880, + "normalized_name": "gx sudoku" + }, + { + "appid": 2639910, + "normalized_name": "empyrean swarm" + }, + { + "appid": 2639930, + "normalized_name": "the neath" + }, + { + "appid": 2639940, + "normalized_name": "kryh explorer" + }, + { + "appid": 2639950, + "normalized_name": "umbral" + }, + { + "appid": 2639980, + "normalized_name": "streetoir" + }, + { + "appid": 2639990, + "normalized_name": "deep copy" + }, + { + "appid": 2640000, + "normalized_name": "college sex episode 2" + }, + { + "appid": 2640030, + "normalized_name": "wonder ball" + }, + { + "appid": 2640040, + "normalized_name": "esferibot a mystery in outer space" + }, + { + "appid": 2640050, + "normalized_name": "norwegian jigsaw puzzles" + }, + { + "appid": 2640100, + "normalized_name": "grandma's house college days" + }, + { + "appid": 2640130, + "normalized_name": "puke" + }, + { + "appid": 2640150, + "normalized_name": "venus build your destiny" + }, + { + "appid": 2640170, + "normalized_name": "bockito" + }, + { + "appid": 2640200, + "normalized_name": "project d████" + }, + { + "appid": 2640220, + "normalized_name": "moonstone remix" + }, + { + "appid": 2640230, + "normalized_name": "feathercall" + }, + { + "appid": 2640240, + "normalized_name": "thelostdetective" + }, + { + "appid": 2640250, + "normalized_name": "cherno" + }, + { + "appid": 2640300, + "normalized_name": "evolution survival" + }, + { + "appid": 2640310, + "normalized_name": "digital cities" + }, + { + "appid": 2640360, + "normalized_name": "star stone splash" + }, + { + "appid": 2640370, + "normalized_name": "survival circle" + }, + { + "appid": 2640380, + "normalized_name": "hollow cook off" + }, + { + "appid": 2640390, + "normalized_name": "修仙幸存/immortalsurvivors" + }, + { + "appid": 2640400, + "normalized_name": "backrooms meg archives" + }, + { + "appid": 2640420, + "normalized_name": "retro blaster mech madness #1" + }, + { + "appid": 2640520, + "normalized_name": "cat warrior" + }, + { + "appid": 2640560, + "normalized_name": "うどんげ異種姦洞窟" + }, + { + "appid": 2640570, + "normalized_name": "fantasy senate simulator" + }, + { + "appid": 2640580, + "normalized_name": "pew pew squad" + }, + { + "appid": 2640600, + "normalized_name": "wizened dream" + }, + { + "appid": 2640630, + "normalized_name": "风尘三侠传" + }, + { + "appid": 2640640, + "normalized_name": "where are my potatoes 2 land of mystery" + }, + { + "appid": 2640650, + "normalized_name": "image delusion vr sexversion" + }, + { + "appid": 2640660, + "normalized_name": "scorching engines" + }, + { + "appid": 2640710, + "normalized_name": "这个地堡" + }, + { + "appid": 2640720, + "normalized_name": "hidenprop" + }, + { + "appid": 2640750, + "normalized_name": "nightfall shade" + }, + { + "appid": 2640760, + "normalized_name": "labwatch" + }, + { + "appid": 2640800, + "normalized_name": "traders and tricksters" + }, + { + "appid": 2640810, + "normalized_name": "tridasha" + }, + { + "appid": 2640820, + "normalized_name": "veiled whispers" + }, + { + "appid": 2640880, + "normalized_name": "eerie desolation" + }, + { + "appid": 2640910, + "normalized_name": "yeetus" + }, + { + "appid": 2640920, + "normalized_name": "network engineer simulator" + }, + { + "appid": 2640930, + "normalized_name": "midnight cemetery" + }, + { + "appid": 2640940, + "normalized_name": "jack styler" + }, + { + "appid": 2640980, + "normalized_name": "hentai rina" + }, + { + "appid": 2640990, + "normalized_name": "小拉试玩版" + }, + { + "appid": 2641000, + "normalized_name": "spider guy trapped in the cheese place" + }, + { + "appid": 2641030, + "normalized_name": "track racing the holy rosary" + }, + { + "appid": 2641040, + "normalized_name": "vlad voievod dracula episode 2" + }, + { + "appid": 2641050, + "normalized_name": "sameshadow fernando's journey" + }, + { + "appid": 2641060, + "normalized_name": "petris" + }, + { + "appid": 2641070, + "normalized_name": "black beacon hill" + }, + { + "appid": 2641090, + "normalized_name": "the knowledge of hermit" + }, + { + "appid": 2641170, + "normalized_name": "abyssal survivors" + }, + { + "appid": 2641180, + "normalized_name": "the rubro rose's castle" + }, + { + "appid": 2641230, + "normalized_name": "mazes and labyrinths" + }, + { + "appid": 2641310, + "normalized_name": "corin tower" + }, + { + "appid": 2641340, + "normalized_name": "greedy in the dark" + }, + { + "appid": 2641360, + "normalized_name": "eternal reverie" + }, + { + "appid": 2641420, + "normalized_name": "vindictive drive 2 maidbot archive" + }, + { + "appid": 2641430, + "normalized_name": "sex story cuckold life episode 8" + }, + { + "appid": 2641450, + "normalized_name": "selfie girls" + }, + { + "appid": 2641460, + "normalized_name": "roll the ball" + }, + { + "appid": 2641480, + "normalized_name": "alien girls" + }, + { + "appid": 2641490, + "normalized_name": "blood running" + }, + { + "appid": 2641500, + "normalized_name": "li'l red" + }, + { + "appid": 2641510, + "normalized_name": "shredded faith" + }, + { + "appid": 2641530, + "normalized_name": "acid planet" + }, + { + "appid": 2641550, + "normalized_name": "honey bunny" + }, + { + "appid": 2641590, + "normalized_name": "failure to launch" + }, + { + "appid": 2641610, + "normalized_name": "golems and gnomes" + }, + { + "appid": 2641630, + "normalized_name": "悪魔の家 6 day nightmare" + }, + { + "appid": 2641680, + "normalized_name": "和风飞行 flying with the wind" + }, + { + "appid": 2641710, + "normalized_name": "∞号诗" + }, + { + "appid": 2641720, + "normalized_name": "summer at the edge of the universe" + }, + { + "appid": 2641730, + "normalized_name": "last man" + }, + { + "appid": 2641740, + "normalized_name": "arsenal online" + }, + { + "appid": 2641800, + "normalized_name": "reborn a zombie 2 entwined hearts" + }, + { + "appid": 2641810, + "normalized_name": "1bit castle remake" + }, + { + "appid": 2641830, + "normalized_name": "うぇーぶだんじょん" + }, + { + "appid": 2641880, + "normalized_name": "pep a pig" + }, + { + "appid": 2641890, + "normalized_name": "project i" + }, + { + "appid": 2641910, + "normalized_name": "raven tear season 0" + }, + { + "appid": 2641930, + "normalized_name": "ghost hunters" + }, + { + "appid": 2641980, + "normalized_name": "strange adventures" + }, + { + "appid": 2641990, + "normalized_name": "heave away haul away" + }, + { + "appid": 2642020, + "normalized_name": "colored eyes girls" + }, + { + "appid": 2642030, + "normalized_name": "hot redheads" + }, + { + "appid": 2642040, + "normalized_name": "blockjump" + }, + { + "appid": 2642050, + "normalized_name": "naga girls" + }, + { + "appid": 2642070, + "normalized_name": "block strategy" + }, + { + "appid": 2642080, + "normalized_name": "spacecraft tactics" + }, + { + "appid": 2642090, + "normalized_name": "naughty queens" + }, + { + "appid": 2642100, + "normalized_name": "nonogram nights" + }, + { + "appid": 2642110, + "normalized_name": "navigating the labyrinth" + }, + { + "appid": 2642120, + "normalized_name": "santa's gift grab" + }, + { + "appid": 2642170, + "normalized_name": "al bassel" + }, + { + "appid": 2642220, + "normalized_name": "神选之地" + }, + { + "appid": 2642230, + "normalized_name": "aim in space" + }, + { + "appid": 2642310, + "normalized_name": "tag league" + }, + { + "appid": 2642330, + "normalized_name": "party pooperz" + }, + { + "appid": 2642390, + "normalized_name": "the whims of the gods 🏝🏠🌋" + }, + { + "appid": 2642460, + "normalized_name": "stump simulator" + }, + { + "appid": 2642480, + "normalized_name": "猎魔骑士" + }, + { + "appid": 2642500, + "normalized_name": "finch & archie" + }, + { + "appid": 2642510, + "normalized_name": "weird mister bogot" + }, + { + "appid": 2642520, + "normalized_name": "princess pomu and the 5 moons" + }, + { + "appid": 2642530, + "normalized_name": "the multiverse trilogy" + }, + { + "appid": 2642550, + "normalized_name": "arena constellation" + }, + { + "appid": 2642570, + "normalized_name": "pinball storm lokanta" + }, + { + "appid": 2642600, + "normalized_name": "唐朝建筑" + }, + { + "appid": 2642620, + "normalized_name": "rodb rhythm of deck builder" + }, + { + "appid": 2642640, + "normalized_name": "精灵幻境 elven dreams" + }, + { + "appid": 2642700, + "normalized_name": "鬼打墙(剧情版)" + }, + { + "appid": 2642720, + "normalized_name": "got high" + }, + { + "appid": 2642740, + "normalized_name": "mosaic girl savior" + }, + { + "appid": 2642760, + "normalized_name": "back to hearth" + }, + { + "appid": 2642780, + "normalized_name": "legacy witch island 4" + }, + { + "appid": 2642810, + "normalized_name": "project star" + }, + { + "appid": 2642820, + "normalized_name": "hentai stories" + }, + { + "appid": 2642830, + "normalized_name": "perapera mountain" + }, + { + "appid": 2642840, + "normalized_name": "humans are not that against lizardwomen 2" + }, + { + "appid": 2642850, + "normalized_name": "serpens eternal thievery" + }, + { + "appid": 2642860, + "normalized_name": "wood guy" + }, + { + "appid": 2642870, + "normalized_name": "画里有话stepbystep" + }, + { + "appid": 2642890, + "normalized_name": "kunkunnight" + }, + { + "appid": 2642920, + "normalized_name": "crystal comet" + }, + { + "appid": 2642930, + "normalized_name": "strexy slayers" + }, + { + "appid": 2642940, + "normalized_name": "fortune decker" + }, + { + "appid": 2642950, + "normalized_name": "submersible" + }, + { + "appid": 2642970, + "normalized_name": "stealth assault urban strike" + }, + { + "appid": 2642980, + "normalized_name": "block breakin' logic downstacker" + }, + { + "appid": 2643000, + "normalized_name": "mirrors of epiphany" + }, + { + "appid": 2643010, + "normalized_name": "becoming saint" + }, + { + "appid": 2643080, + "normalized_name": "empire galaxy burning" + }, + { + "appid": 2643090, + "normalized_name": "cyvenge" + }, + { + "appid": 2643210, + "normalized_name": "niwa japanese garden simulator" + }, + { + "appid": 2643290, + "normalized_name": "oblin party" + }, + { + "appid": 2643300, + "normalized_name": "brick buddies" + }, + { + "appid": 2643310, + "normalized_name": "summer of love (captain kitty)" + }, + { + "appid": 2643330, + "normalized_name": "magicolor td" + }, + { + "appid": 2643340, + "normalized_name": "occulthieves" + }, + { + "appid": 2643360, + "normalized_name": "resilience" + }, + { + "appid": 2643420, + "normalized_name": "savage girls" + }, + { + "appid": 2643430, + "normalized_name": "剑仙传奇" + }, + { + "appid": 2643470, + "normalized_name": "hiding star" + }, + { + "appid": 2643480, + "normalized_name": "short haired girls" + }, + { + "appid": 2643520, + "normalized_name": "stylish girls" + }, + { + "appid": 2643560, + "normalized_name": "tracks n' turrets" + }, + { + "appid": 2643620, + "normalized_name": "shoot to shoot" + }, + { + "appid": 2643630, + "normalized_name": "sweet beauties" + }, + { + "appid": 2643700, + "normalized_name": "glyphs of gitzan" + }, + { + "appid": 2643810, + "normalized_name": "betrayal beach" + }, + { + "appid": 2643830, + "normalized_name": "the unlife of gorlak" + }, + { + "appid": 2643850, + "normalized_name": "god of death" + }, + { + "appid": 2643880, + "normalized_name": "build for sale simulator" + }, + { + "appid": 2643890, + "normalized_name": "nightfall wardens" + }, + { + "appid": 2643910, + "normalized_name": "the final countdown" + }, + { + "appid": 2643920, + "normalized_name": "dice td" + }, + { + "appid": 2643930, + "normalized_name": "imaginary friend asylum" + }, + { + "appid": 2643960, + "normalized_name": "orc survivor" + }, + { + "appid": 2643970, + "normalized_name": "hearth & holmes" + }, + { + "appid": 2643990, + "normalized_name": "planetary governor" + }, + { + "appid": 2644000, + "normalized_name": "hentai midori" + }, + { + "appid": 2644010, + "normalized_name": "nebel geisterjäger ~ the first lamb" + }, + { + "appid": 2644020, + "normalized_name": "ashes o exponential rpg" + }, + { + "appid": 2644030, + "normalized_name": "travel knight adventure" + }, + { + "appid": 2644040, + "normalized_name": "ruff city" + }, + { + "appid": 2644050, + "normalized_name": "echoes of elysium" + }, + { + "appid": 2644070, + "normalized_name": "apartus" + }, + { + "appid": 2644080, + "normalized_name": "fishtronomy" + }, + { + "appid": 2644090, + "normalized_name": "all knowledge authority" + }, + { + "appid": 2644100, + "normalized_name": "allogloom" + }, + { + "appid": 2644110, + "normalized_name": "pumpkin ghost" + }, + { + "appid": 2644120, + "normalized_name": "wacky escape" + }, + { + "appid": 2644130, + "normalized_name": "fighting for singleship i am chased by a bunch of women but i just want to play video games" + }, + { + "appid": 2644140, + "normalized_name": "rogue patterns" + }, + { + "appid": 2644170, + "normalized_name": "the westcoast drive lowrider simulator" + }, + { + "appid": 2644180, + "normalized_name": "kiloparsec uprising" + }, + { + "appid": 2644210, + "normalized_name": "伯克利家的女仆:重制版(berkeley's maid remake edition)" + }, + { + "appid": 2644220, + "normalized_name": "ashes of ambition" + }, + { + "appid": 2644230, + "normalized_name": "critter crossfire" + }, + { + "appid": 2644240, + "normalized_name": "魔神少女エピソード4 届ける想い" + }, + { + "appid": 2644250, + "normalized_name": "same day delivery" + }, + { + "appid": 2644260, + "normalized_name": "恐惧之影" + }, + { + "appid": 2644300, + "normalized_name": "killing bullet" + }, + { + "appid": 2644320, + "normalized_name": "dungeonoid 2 awakening" + }, + { + "appid": 2644330, + "normalized_name": "saga of the moon priestess" + }, + { + "appid": 2644340, + "normalized_name": "hoodgang simulator" + }, + { + "appid": 2644360, + "normalized_name": "kingsgrave" + }, + { + "appid": 2644400, + "normalized_name": "irritated mind fear of warehouse" + }, + { + "appid": 2644440, + "normalized_name": "bocchifield" + }, + { + "appid": 2644470, + "normalized_name": "pico park 2" + }, + { + "appid": 2644480, + "normalized_name": "skies of chaos" + }, + { + "appid": 2644490, + "normalized_name": "archery showdown" + }, + { + "appid": 2644500, + "normalized_name": "sports sports" + }, + { + "appid": 2644520, + "normalized_name": "nightwatch" + }, + { + "appid": 2644550, + "normalized_name": "new zombie" + }, + { + "appid": 2644560, + "normalized_name": "delator" + }, + { + "appid": 2644590, + "normalized_name": "global magnates shipping tycoon" + }, + { + "appid": 2644610, + "normalized_name": "menace from the deep" + }, + { + "appid": 2644620, + "normalized_name": "the backrooms escape" + }, + { + "appid": 2644670, + "normalized_name": "data garden" + }, + { + "appid": 2644680, + "normalized_name": "stay up!" + }, + { + "appid": 2644700, + "normalized_name": "impossible" + }, + { + "appid": 2644710, + "normalized_name": "madman" + }, + { + "appid": 2644730, + "normalized_name": "雌小鬼赛车" + }, + { + "appid": 2644750, + "normalized_name": "back from void" + }, + { + "appid": 2644770, + "normalized_name": "inexorable" + }, + { + "appid": 2644820, + "normalized_name": "light it up" + }, + { + "appid": 2644840, + "normalized_name": "廃村散策会活動記録" + }, + { + "appid": 2644850, + "normalized_name": "moci over it" + }, + { + "appid": 2644910, + "normalized_name": "终末之名 ending name" + }, + { + "appid": 2644960, + "normalized_name": "edge of survival" + }, + { + "appid": 2644970, + "normalized_name": "chess exerciser" + }, + { + "appid": 2644990, + "normalized_name": "姬你太美 kunkunbeauty" + }, + { + "appid": 2645000, + "normalized_name": "corgi in the box" + }, + { + "appid": 2645010, + "normalized_name": "ctrl u" + }, + { + "appid": 2645030, + "normalized_name": "chapter wars" + }, + { + "appid": 2645040, + "normalized_name": "cargo" + }, + { + "appid": 2645060, + "normalized_name": "black sheep" + }, + { + "appid": 2645070, + "normalized_name": "druid" + }, + { + "appid": 2645080, + "normalized_name": "luxury store simulator" + }, + { + "appid": 2645090, + "normalized_name": "color corruption" + }, + { + "appid": 2645100, + "normalized_name": "kerker" + }, + { + "appid": 2645110, + "normalized_name": "xenos cartoon creature catcher" + }, + { + "appid": 2645150, + "normalized_name": "aztec tiki talisman" + }, + { + "appid": 2645170, + "normalized_name": "ikoka game" + }, + { + "appid": 2645180, + "normalized_name": "redneg allstars swing by" + }, + { + "appid": 2645190, + "normalized_name": "agnostic requiem" + }, + { + "appid": 2645200, + "normalized_name": "the transference" + }, + { + "appid": 2645220, + "normalized_name": "the bunker" + }, + { + "appid": 2645230, + "normalized_name": "parasite" + }, + { + "appid": 2645250, + "normalized_name": "october nightmares | cauchemars d'octobre" + }, + { + "appid": 2645260, + "normalized_name": "orb hunter" + }, + { + "appid": 2645280, + "normalized_name": "uncover" + }, + { + "appid": 2645340, + "normalized_name": "trix witching world" + }, + { + "appid": 2645350, + "normalized_name": "paranormal files trials of worth collector's" + }, + { + "appid": 2645390, + "normalized_name": "pelagos a marine adventure" + }, + { + "appid": 2645490, + "normalized_name": "ghostbane" + }, + { + "appid": 2645510, + "normalized_name": "cyberfall" + }, + { + "appid": 2645580, + "normalized_name": "free stars the ur quan masters" + }, + { + "appid": 2645590, + "normalized_name": "a kingdom to conquer" + }, + { + "appid": 2645600, + "normalized_name": "the holyburn witches" + }, + { + "appid": 2645610, + "normalized_name": "scrap magic" + }, + { + "appid": 2645650, + "normalized_name": "no pressure hive war" + }, + { + "appid": 2645670, + "normalized_name": "eldritch climb a cursed ascent" + }, + { + "appid": 2645690, + "normalized_name": "kaidro clan battles" + }, + { + "appid": 2645700, + "normalized_name": "mystery at grand fir village" + }, + { + "appid": 2645730, + "normalized_name": "death by misstep" + }, + { + "appid": 2645740, + "normalized_name": "spooky dwellers collector's" + }, + { + "appid": 2645770, + "normalized_name": "hello this is bear" + }, + { + "appid": 2645800, + "normalized_name": "medal winners" + }, + { + "appid": 2645820, + "normalized_name": "back to the fooker zombie fooker 2" + }, + { + "appid": 2645830, + "normalized_name": "stunt xpress" + }, + { + "appid": 2645950, + "normalized_name": "axona" + }, + { + "appid": 2645970, + "normalized_name": "astro planes" + }, + { + "appid": 2646000, + "normalized_name": "spooky dwellers 2 collector's" + }, + { + "appid": 2646010, + "normalized_name": "nightmare materials" + }, + { + "appid": 2646020, + "normalized_name": "lost in lofi" + }, + { + "appid": 2646050, + "normalized_name": "sakura isekai adventure" + }, + { + "appid": 2646060, + "normalized_name": "luna's light" + }, + { + "appid": 2646070, + "normalized_name": "headlight" + }, + { + "appid": 2646120, + "normalized_name": "boons & burdens" + }, + { + "appid": 2646160, + "normalized_name": "hiraeth" + }, + { + "appid": 2646170, + "normalized_name": "my arms are longer now" + }, + { + "appid": 2646180, + "normalized_name": "marshmallows on halloween" + }, + { + "appid": 2646200, + "normalized_name": "wifey's dilemma revisited" + }, + { + "appid": 2646240, + "normalized_name": "asa chan wants to go home!" + }, + { + "appid": 2646250, + "normalized_name": "战棋英雄" + }, + { + "appid": 2646260, + "normalized_name": "数学と親友とネタ帳 math bff and notes" + }, + { + "appid": 2646270, + "normalized_name": "wishbound desires" + }, + { + "appid": 2646280, + "normalized_name": "bargain ssp puzzle grid" + }, + { + "appid": 2646300, + "normalized_name": "princess knight's mission ~ anna's marvelous adventures ~" + }, + { + "appid": 2646320, + "normalized_name": "息风谷战略" + }, + { + "appid": 2646350, + "normalized_name": "幽谷战域 mystic valley battleground" + }, + { + "appid": 2646360, + "normalized_name": "the meridian under the heaven valhalla" + }, + { + "appid": 2646370, + "normalized_name": "some rpg game" + }, + { + "appid": 2646440, + "normalized_name": "swordsgirl harumi adult only" + }, + { + "appid": 2646450, + "normalized_name": "who are you!?" + }, + { + "appid": 2646460, + "normalized_name": "soulmask" + }, + { + "appid": 2646480, + "normalized_name": "one bear army" + }, + { + "appid": 2646500, + "normalized_name": "all i want for christmas are subgames" + }, + { + "appid": 2646510, + "normalized_name": "freechicken" + }, + { + "appid": 2646520, + "normalized_name": "world leaders" + }, + { + "appid": 2646560, + "normalized_name": "cave dweller" + }, + { + "appid": 2646590, + "normalized_name": "potion punch rivals" + }, + { + "appid": 2646610, + "normalized_name": "lost seed" + }, + { + "appid": 2646620, + "normalized_name": "white hook river" + }, + { + "appid": 2646630, + "normalized_name": "astraia land" + }, + { + "appid": 2646650, + "normalized_name": "warlancer armored survivor" + }, + { + "appid": 2646660, + "normalized_name": "aimcademy" + }, + { + "appid": 2646690, + "normalized_name": "song of slavs" + }, + { + "appid": 2646700, + "normalized_name": "last day lockdown" + }, + { + "appid": 2646710, + "normalized_name": "asv soccer" + }, + { + "appid": 2646720, + "normalized_name": "dead weight" + }, + { + "appid": 2646740, + "normalized_name": "killmaiden" + }, + { + "appid": 2646760, + "normalized_name": "chicken done" + }, + { + "appid": 2646810, + "normalized_name": "sovereign stars" + }, + { + "appid": 2646840, + "normalized_name": "umbra halloween" + }, + { + "appid": 2646870, + "normalized_name": "no king no kingdom ii" + }, + { + "appid": 2646970, + "normalized_name": "dark gem tower defense" + }, + { + "appid": 2647030, + "normalized_name": "mądra głowa" + }, + { + "appid": 2647050, + "normalized_name": "redial conundrum" + }, + { + "appid": 2647060, + "normalized_name": "lovexlust" + }, + { + "appid": 2647090, + "normalized_name": "armored tussle" + }, + { + "appid": 2647100, + "normalized_name": "steamrush" + }, + { + "appid": 2647120, + "normalized_name": "the暴 specialedition" + }, + { + "appid": 2647230, + "normalized_name": "holoparade" + }, + { + "appid": 2647300, + "normalized_name": "meow moments celebrating together" + }, + { + "appid": 2647500, + "normalized_name": "downstairs" + }, + { + "appid": 2647510, + "normalized_name": "hexascape cyber defense" + }, + { + "appid": 2647560, + "normalized_name": "cybercore leap" + }, + { + "appid": 2647580, + "normalized_name": "don't touch the purple" + }, + { + "appid": 2647680, + "normalized_name": "icbm escalation" + }, + { + "appid": 2647780, + "normalized_name": "bar old pal vr prologue" + }, + { + "appid": 2647800, + "normalized_name": "fireball 2" + }, + { + "appid": 2647820, + "normalized_name": "ad fundum" + }, + { + "appid": 2647840, + "normalized_name": "welcome to primrose lake 2" + }, + { + "appid": 2647870, + "normalized_name": "defenders of etheria" + }, + { + "appid": 2647880, + "normalized_name": "dead last" + }, + { + "appid": 2647900, + "normalized_name": "seth" + }, + { + "appid": 2647920, + "normalized_name": "isuem's elixir" + }, + { + "appid": 2647960, + "normalized_name": "grindfest" + }, + { + "appid": 2647980, + "normalized_name": "happy bird day" + }, + { + "appid": 2648050, + "normalized_name": "sam & max the devil's playhouse" + }, + { + "appid": 2648060, + "normalized_name": "topspace" + }, + { + "appid": 2648070, + "normalized_name": "birthday boy and benny" + }, + { + "appid": 2648080, + "normalized_name": "urban entrepreneur" + }, + { + "appid": 2648130, + "normalized_name": "bugs n' guns" + }, + { + "appid": 2648150, + "normalized_name": "island ops" + }, + { + "appid": 2648210, + "normalized_name": "eco balance" + }, + { + "appid": 2648260, + "normalized_name": "pseudo haunting" + }, + { + "appid": 2648290, + "normalized_name": "supreme ruler the great war" + }, + { + "appid": 2648300, + "normalized_name": "ice fighter" + }, + { + "appid": 2648310, + "normalized_name": "rocket smash" + }, + { + "appid": 2648360, + "normalized_name": "勇者试炼传 trial of the brave" + }, + { + "appid": 2648370, + "normalized_name": "before the sun rises" + }, + { + "appid": 2648390, + "normalized_name": "billionaire simulator" + }, + { + "appid": 2648420, + "normalized_name": "pico topia" + }, + { + "appid": 2648440, + "normalized_name": "sunny side crossing" + }, + { + "appid": 2648510, + "normalized_name": "brain hotel remodeled" + }, + { + "appid": 2648550, + "normalized_name": "project atno" + }, + { + "appid": 2648560, + "normalized_name": "super retro retry" + }, + { + "appid": 2648580, + "normalized_name": "alien bounty" + }, + { + "appid": 2648600, + "normalized_name": "cowpocalypse" + }, + { + "appid": 2648610, + "normalized_name": "adventure trip london" + }, + { + "appid": 2648620, + "normalized_name": "kuzgun" + }, + { + "appid": 2648640, + "normalized_name": "the 257th element" + }, + { + "appid": 2648650, + "normalized_name": "music of destiny corrupted dungeons" + }, + { + "appid": 2648660, + "normalized_name": "mortisomem" + }, + { + "appid": 2648670, + "normalized_name": "sweet town" + }, + { + "appid": 2648790, + "normalized_name": "clipper" + }, + { + "appid": 2648830, + "normalized_name": "空间大作战 space operation" + }, + { + "appid": 2648840, + "normalized_name": "total rpg" + }, + { + "appid": 2648870, + "normalized_name": "courtin' cowboys" + }, + { + "appid": 2648880, + "normalized_name": "gatcha gear" + }, + { + "appid": 2648890, + "normalized_name": "bemis wamilton racing" + }, + { + "appid": 2648900, + "normalized_name": "the world well blood of caro" + }, + { + "appid": 2648920, + "normalized_name": "waifu vs zombies" + }, + { + "appid": 2648940, + "normalized_name": "beyond the curtains" + }, + { + "appid": 2648980, + "normalized_name": "warmage" + }, + { + "appid": 2648990, + "normalized_name": "nerd survivors" + }, + { + "appid": 2649000, + "normalized_name": "relgiros" + }, + { + "appid": 2649040, + "normalized_name": "darklight platformer" + }, + { + "appid": 2649080, + "normalized_name": "coffee caravan" + }, + { + "appid": 2649090, + "normalized_name": "sangi" + }, + { + "appid": 2649100, + "normalized_name": "cuckold princess when i noticed it was all taken special mini adv game" + }, + { + "appid": 2649120, + "normalized_name": "wildsite" + }, + { + "appid": 2649130, + "normalized_name": "虚境迷逃" + }, + { + "appid": 2649170, + "normalized_name": "buried shards" + }, + { + "appid": 2649190, + "normalized_name": "y. village the visitors" + }, + { + "appid": 2649220, + "normalized_name": "run pizza run" + }, + { + "appid": 2649230, + "normalized_name": "joy life 3" + }, + { + "appid": 2649280, + "normalized_name": "moons that belong" + }, + { + "appid": 2649290, + "normalized_name": "venus puzzles" + }, + { + "appid": 2649320, + "normalized_name": "timeless cafe" + }, + { + "appid": 2649380, + "normalized_name": "only up samarkand" + }, + { + "appid": 2649390, + "normalized_name": "grim potions" + }, + { + "appid": 2649460, + "normalized_name": "die cook" + }, + { + "appid": 2649470, + "normalized_name": "invisible flow" + }, + { + "appid": 2649480, + "normalized_name": "spirit valley" + }, + { + "appid": 2649490, + "normalized_name": "the tree of immortality" + }, + { + "appid": 2649500, + "normalized_name": "empyre earls of the deep earth" + }, + { + "appid": 2649520, + "normalized_name": "deepcut" + }, + { + "appid": 2649780, + "normalized_name": "nightmare side the game" + }, + { + "appid": 2649790, + "normalized_name": "catacombs" + }, + { + "appid": 2649800, + "normalized_name": "vinecard" + }, + { + "appid": 2649820, + "normalized_name": "animal kart racer 2" + }, + { + "appid": 2649830, + "normalized_name": "paradise road" + }, + { + "appid": 2649860, + "normalized_name": "gombo" + }, + { + "appid": 2649890, + "normalized_name": "towerbloom" + }, + { + "appid": 2649910, + "normalized_name": "heyman born in the electric" + }, + { + "appid": 2649920, + "normalized_name": "day of judgment" + }, + { + "appid": 2649940, + "normalized_name": "ridiculous shipping" + }, + { + "appid": 2649960, + "normalized_name": "mono!" + }, + { + "appid": 2649970, + "normalized_name": "steps of debauchery" + }, + { + "appid": 2649990, + "normalized_name": "貢がせろ!女苑ちゃん!!" + }, + { + "appid": 2650010, + "normalized_name": "violet kingdom" + }, + { + "appid": 2650020, + "normalized_name": "the hotel floor 13" + }, + { + "appid": 2650030, + "normalized_name": "aussie rules coach" + }, + { + "appid": 2650040, + "normalized_name": "is this even chess?" + }, + { + "appid": 2650080, + "normalized_name": "idiots' fantasy" + }, + { + "appid": 2650110, + "normalized_name": "wob" + }, + { + "appid": 2650190, + "normalized_name": "christmas adventure" + }, + { + "appid": 2650200, + "normalized_name": "blamcon shooting gallery" + }, + { + "appid": 2650210, + "normalized_name": "resurrect" + }, + { + "appid": 2650240, + "normalized_name": "frontline battles" + }, + { + "appid": 2650280, + "normalized_name": "arcana outcasts" + }, + { + "appid": 2650290, + "normalized_name": "dragon hop" + }, + { + "appid": 2650320, + "normalized_name": "powernaut decay" + }, + { + "appid": 2650340, + "normalized_name": "genkai primal awakening" + }, + { + "appid": 2650350, + "normalized_name": "super puzzled cat" + }, + { + "appid": 2650360, + "normalized_name": "wanderers" + }, + { + "appid": 2650390, + "normalized_name": "jumping flash 4 return of robbit | playable concept pitch" + }, + { + "appid": 2650400, + "normalized_name": "los infernales" + }, + { + "appid": 2650450, + "normalized_name": "blood of the elves" + }, + { + "appid": 2650490, + "normalized_name": "prostitute island" + }, + { + "appid": 2650510, + "normalized_name": "it's kooky land of aotearoa" + }, + { + "appid": 2650520, + "normalized_name": "the good overlord" + }, + { + "appid": 2650570, + "normalized_name": "main deity space" + }, + { + "appid": 2650580, + "normalized_name": "nightmare nursery" + }, + { + "appid": 2650590, + "normalized_name": "endless forest dream" + }, + { + "appid": 2650600, + "normalized_name": "大话商周" + }, + { + "appid": 2650610, + "normalized_name": "swappics knights vs demons" + }, + { + "appid": 2650620, + "normalized_name": "ancient stars" + }, + { + "appid": 2650630, + "normalized_name": "last hope" + }, + { + "appid": 2650680, + "normalized_name": "dense forest" + }, + { + "appid": 2650710, + "normalized_name": "边界迷航" + }, + { + "appid": 2650730, + "normalized_name": "sedap! a culinary adventure" + }, + { + "appid": 2650750, + "normalized_name": "echoes of fear" + }, + { + "appid": 2650780, + "normalized_name": "cavern" + }, + { + "appid": 2650790, + "normalized_name": "feline fortress" + }, + { + "appid": 2650800, + "normalized_name": "新叶旅者与少年的回忆" + }, + { + "appid": 2650830, + "normalized_name": "crayon computer" + }, + { + "appid": 2650840, + "normalized_name": "nekowater" + }, + { + "appid": 2650850, + "normalized_name": "do you like having sex with your colleague? i'll strip her down and make her a porn star!" + }, + { + "appid": 2650890, + "normalized_name": "dmz" + }, + { + "appid": 2650950, + "normalized_name": "the cerpan project" + }, + { + "appid": 2651050, + "normalized_name": "starpuffs" + }, + { + "appid": 2651060, + "normalized_name": "bolt action stealth" + }, + { + "appid": 2651070, + "normalized_name": "alone or together" + }, + { + "appid": 2651090, + "normalized_name": "super stream bara" + }, + { + "appid": 2651100, + "normalized_name": "infinite white hyperbolic time chamber simulator" + }, + { + "appid": 2651110, + "normalized_name": "high school hills dreams & nightmares" + }, + { + "appid": 2651130, + "normalized_name": "canceled" + }, + { + "appid": 2651170, + "normalized_name": "yurei" + }, + { + "appid": 2651190, + "normalized_name": "three kingdoms strategy moba" + }, + { + "appid": 2651220, + "normalized_name": "blacksmith ignite the forge" + }, + { + "appid": 2651280, + "normalized_name": "marvel's spider man 2" + }, + { + "appid": 2651290, + "normalized_name": "urban legend hunters 2 double" + }, + { + "appid": 2651300, + "normalized_name": "paradise cleaning cuckold princess when i noticed it was all taken" + }, + { + "appid": 2651310, + "normalized_name": "脱出哥布林巢穴" + }, + { + "appid": 2651320, + "normalized_name": "lords mobile" + }, + { + "appid": 2651350, + "normalized_name": "slip & skid" + }, + { + "appid": 2651410, + "normalized_name": "the endless abyss a busty cop’s corrupted soul" + }, + { + "appid": 2651420, + "normalized_name": "the daily life of serving doll" + }, + { + "appid": 2651430, + "normalized_name": "futanari master!" + }, + { + "appid": 2651440, + "normalized_name": "fallen elf freya" + }, + { + "appid": 2651450, + "normalized_name": "until the abyss" + }, + { + "appid": 2651460, + "normalized_name": "the knight girl and dungeons" + }, + { + "appid": 2651470, + "normalized_name": "捉妖日記" + }, + { + "appid": 2651480, + "normalized_name": "king in yellow endless sex drama" + }, + { + "appid": 2651490, + "normalized_name": "forbidden girl's endless night" + }, + { + "appid": 2651500, + "normalized_name": "fantasy match make a h match with cute young woman" + }, + { + "appid": 2651510, + "normalized_name": "shadow among nove" + }, + { + "appid": 2651520, + "normalized_name": "trainee witch's lustful experiments" + }, + { + "appid": 2651530, + "normalized_name": "穿越黃油開後宮" + }, + { + "appid": 2651540, + "normalized_name": "redemption diary one day you will also be firmly chosen" + }, + { + "appid": 2651550, + "normalized_name": "clavis kinkygate treasure of danau river" + }, + { + "appid": 2651560, + "normalized_name": "redemption of the cat demon girl" + }, + { + "appid": 2651570, + "normalized_name": "lilim wants to lv up♥" + }, + { + "appid": 2651580, + "normalized_name": "catballgravitymaze" + }, + { + "appid": 2651590, + "normalized_name": "alstroemeria" + }, + { + "appid": 2651630, + "normalized_name": "battleships collide space shooter" + }, + { + "appid": 2651650, + "normalized_name": "outer factory" + }, + { + "appid": 2651760, + "normalized_name": "dangerous arena" + }, + { + "appid": 2651780, + "normalized_name": "frontier ferris for adventurers" + }, + { + "appid": 2651790, + "normalized_name": "wonderland" + }, + { + "appid": 2651800, + "normalized_name": "52헤르츠" + }, + { + "appid": 2651810, + "normalized_name": "vr tka surgery simulator" + }, + { + "appid": 2651830, + "normalized_name": "vlad voievod dracula dungeons of edirne" + }, + { + "appid": 2651850, + "normalized_name": "lanternia" + }, + { + "appid": 2651860, + "normalized_name": "project terra" + }, + { + "appid": 2651910, + "normalized_name": "dinopunk the cacops adventure" + }, + { + "appid": 2651950, + "normalized_name": "australian maze" + }, + { + "appid": 2651980, + "normalized_name": "ノウ" + }, + { + "appid": 2652000, + "normalized_name": "the jackbox naughty pack" + }, + { + "appid": 2652030, + "normalized_name": "foxingdale (the magical stones of kentaroo)" + }, + { + "appid": 2652040, + "normalized_name": "umbra fields" + }, + { + "appid": 2652050, + "normalized_name": "easter bunny" + }, + { + "appid": 2652060, + "normalized_name": "overknights" + }, + { + "appid": 2652110, + "normalized_name": "christmas rocket pudding" + }, + { + "appid": 2652120, + "normalized_name": "驱邪师" + }, + { + "appid": 2652160, + "normalized_name": "sovenance" + }, + { + "appid": 2652180, + "normalized_name": "brawlberry" + }, + { + "appid": 2652330, + "normalized_name": "hooptown hero" + }, + { + "appid": 2652390, + "normalized_name": "sky baller" + }, + { + "appid": 2652430, + "normalized_name": "pitch patter" + }, + { + "appid": 2652440, + "normalized_name": "kinny and the lost starlight" + }, + { + "appid": 2652460, + "normalized_name": "dark age gladiator" + }, + { + "appid": 2652480, + "normalized_name": "radiant victorias" + }, + { + "appid": 2652490, + "normalized_name": "agent mirai and the submission machines" + }, + { + "appid": 2652500, + "normalized_name": "saki and the crucible of debauchery" + }, + { + "appid": 2652570, + "normalized_name": "bargain ssp wargame" + }, + { + "appid": 2652590, + "normalized_name": "amnyam" + }, + { + "appid": 2652600, + "normalized_name": "咒印链接:鲜血的呼唤" + }, + { + "appid": 2652630, + "normalized_name": "farmieland" + }, + { + "appid": 2652650, + "normalized_name": "lucid" + }, + { + "appid": 2652670, + "normalized_name": "worker simulator the village" + }, + { + "appid": 2652680, + "normalized_name": "fandom" + }, + { + "appid": 2652690, + "normalized_name": "aversion" + }, + { + "appid": 2652710, + "normalized_name": "lucky one" + }, + { + "appid": 2652720, + "normalized_name": "하트 체크인 (heart check in)" + }, + { + "appid": 2652740, + "normalized_name": "telvoikai" + }, + { + "appid": 2652750, + "normalized_name": "grappling gunners arena fps" + }, + { + "appid": 2652820, + "normalized_name": "机械陷阱 mechanical trap" + }, + { + "appid": 2652870, + "normalized_name": "bulken" + }, + { + "appid": 2652910, + "normalized_name": "iz" + }, + { + "appid": 2652930, + "normalized_name": "ctrl+alt+repeat" + }, + { + "appid": 2653020, + "normalized_name": "gaula survival" + }, + { + "appid": 2653050, + "normalized_name": "danny's debt is eternal" + }, + { + "appid": 2653060, + "normalized_name": "beneath the backrooms" + }, + { + "appid": 2653080, + "normalized_name": "who do you want to date? professional girls сollection" + }, + { + "appid": 2653090, + "normalized_name": "the dollmaker" + }, + { + "appid": 2653110, + "normalized_name": "cdz" + }, + { + "appid": 2653120, + "normalized_name": "donna the canine quest" + }, + { + "appid": 2653170, + "normalized_name": "only up 2" + }, + { + "appid": 2653210, + "normalized_name": "hospital aliens 2" + }, + { + "appid": 2653240, + "normalized_name": "knight's path the tournament" + }, + { + "appid": 2653250, + "normalized_name": "apollo cosmic" + }, + { + "appid": 2653260, + "normalized_name": "naughty tales of rabbits a cuckold rpg" + }, + { + "appid": 2653300, + "normalized_name": "黑暗之刃2 后传" + }, + { + "appid": 2653330, + "normalized_name": "ninja kato 1" + }, + { + "appid": 2653360, + "normalized_name": "lucky dungeon" + }, + { + "appid": 2653380, + "normalized_name": "fifth world" + }, + { + "appid": 2653390, + "normalized_name": "hungry humphrey eat the world" + }, + { + "appid": 2653410, + "normalized_name": "kiken drive (2nd lap)" + }, + { + "appid": 2653460, + "normalized_name": "月白星斗 lunar glow stellar dance" + }, + { + "appid": 2653470, + "normalized_name": "little problems a cozy detective game" + }, + { + "appid": 2653480, + "normalized_name": "shanshui haven" + }, + { + "appid": 2653500, + "normalized_name": "rush" + }, + { + "appid": 2653530, + "normalized_name": "no.hazedheart" + }, + { + "appid": 2653580, + "normalized_name": "ninja origin" + }, + { + "appid": 2653640, + "normalized_name": "big ear detective" + }, + { + "appid": 2653670, + "normalized_name": "spent shells" + }, + { + "appid": 2653720, + "normalized_name": "firepower forge" + }, + { + "appid": 2653790, + "normalized_name": "the exit 8" + }, + { + "appid": 2653810, + "normalized_name": "かぼちゃげーむ" + }, + { + "appid": 2653830, + "normalized_name": "time to go" + }, + { + "appid": 2653850, + "normalized_name": "traveler set sail" + }, + { + "appid": 2653860, + "normalized_name": "space killer" + }, + { + "appid": 2653870, + "normalized_name": "atoners the lost epoch" + }, + { + "appid": 2653880, + "normalized_name": "amber" + }, + { + "appid": 2653890, + "normalized_name": "arcade forever" + }, + { + "appid": 2653910, + "normalized_name": "ling hun" + }, + { + "appid": 2653920, + "normalized_name": "the allure of wanton cove" + }, + { + "appid": 2653940, + "normalized_name": "star trek resurgence" + }, + { + "appid": 2653960, + "normalized_name": "zombie rooms" + }, + { + "appid": 2653970, + "normalized_name": "innsmouth nightmare" + }, + { + "appid": 2653990, + "normalized_name": "the raindrop a vocal odyssey" + }, + { + "appid": 2654010, + "normalized_name": "slimes & dusters to" + }, + { + "appid": 2654030, + "normalized_name": "kamilia" + }, + { + "appid": 2654040, + "normalized_name": "beneath the earth backrooms" + }, + { + "appid": 2654070, + "normalized_name": "star shogun" + }, + { + "appid": 2654120, + "normalized_name": "retro abyss last wish of the game" + }, + { + "appid": 2654160, + "normalized_name": "type your fate" + }, + { + "appid": 2654210, + "normalized_name": "phasmonauts" + }, + { + "appid": 2654220, + "normalized_name": "golden axe idol escape the room 金斧偶像 連動!密室逃脫" + }, + { + "appid": 2654240, + "normalized_name": "suburban footy league" + }, + { + "appid": 2654280, + "normalized_name": "exodus flight" + }, + { + "appid": 2654290, + "normalized_name": "rogues of europa" + }, + { + "appid": 2654350, + "normalized_name": "月光旅人" + }, + { + "appid": 2654360, + "normalized_name": "prank heart" + }, + { + "appid": 2654420, + "normalized_name": "求婚失败了,我还不知道她的名字" + }, + { + "appid": 2654430, + "normalized_name": "zumbido seele" + }, + { + "appid": 2654450, + "normalized_name": "chronobabes" + }, + { + "appid": 2654470, + "normalized_name": "bunny garden" + }, + { + "appid": 2654490, + "normalized_name": "relic arena" + }, + { + "appid": 2654510, + "normalized_name": "nexa tech laboratory" + }, + { + "appid": 2654520, + "normalized_name": "hypnosis sister clicker" + }, + { + "appid": 2654530, + "normalized_name": "squash sport game 2024" + }, + { + "appid": 2654540, + "normalized_name": "无休仙途" + }, + { + "appid": 2654570, + "normalized_name": "梦境星球" + }, + { + "appid": 2654580, + "normalized_name": "succulust" + }, + { + "appid": 2654590, + "normalized_name": "scrap and battery" + }, + { + "appid": 2654640, + "normalized_name": "3paths" + }, + { + "appid": 2654670, + "normalized_name": "tugboat terror" + }, + { + "appid": 2654680, + "normalized_name": "khuga bash!" + }, + { + "appid": 2654690, + "normalized_name": "mutants ate my carrots" + }, + { + "appid": 2654700, + "normalized_name": "扔彩虹模擬器 | coin toss rainbow simulator" + }, + { + "appid": 2654710, + "normalized_name": "salmon man" + }, + { + "appid": 2654740, + "normalized_name": "dig a little deeper" + }, + { + "appid": 2654860, + "normalized_name": "mizi no!" + }, + { + "appid": 2654910, + "normalized_name": "i'll do it tomorrow" + }, + { + "appid": 2654930, + "normalized_name": "mortadelo y filemón balones y patadones" + }, + { + "appid": 2654940, + "normalized_name": "mortadelo y filemón dos vaqueros chapuceros" + }, + { + "appid": 2654950, + "normalized_name": "mortadelo y filemón el escarabajo de cleopatra" + }, + { + "appid": 2654960, + "normalized_name": "mortadelo y filemón la sexta secta" + }, + { + "appid": 2654970, + "normalized_name": "mortadelo y filemón mamelucos a la romana" + }, + { + "appid": 2654980, + "normalized_name": "mortadelo y filemón terror espanto y pavor" + }, + { + "appid": 2655010, + "normalized_name": "jewel match solitaire winterscapes 2 collector's" + }, + { + "appid": 2655020, + "normalized_name": "split polarity the science puzzle arcade game!" + }, + { + "appid": 2655030, + "normalized_name": "poop prince" + }, + { + "appid": 2655040, + "normalized_name": "separated worlds" + }, + { + "appid": 2655080, + "normalized_name": "mma life simulator" + }, + { + "appid": 2655120, + "normalized_name": "workshop simulator vr" + }, + { + "appid": 2655130, + "normalized_name": "gregg tower defence" + }, + { + "appid": 2655150, + "normalized_name": "king jister 3" + }, + { + "appid": 2655190, + "normalized_name": "don't panic" + }, + { + "appid": 2655220, + "normalized_name": "blast course" + }, + { + "appid": 2655230, + "normalized_name": "shadow of sound" + }, + { + "appid": 2655340, + "normalized_name": "a social platform" + }, + { + "appid": 2655390, + "normalized_name": "siege island" + }, + { + "appid": 2655470, + "normalized_name": "alruna and the necro industrialists" + }, + { + "appid": 2655480, + "normalized_name": "pawar" + }, + { + "appid": 2655490, + "normalized_name": "the king of creation" + }, + { + "appid": 2655520, + "normalized_name": "blyx" + }, + { + "appid": 2655570, + "normalized_name": "dreamscape of delights" + }, + { + "appid": 2655580, + "normalized_name": "befriended curse" + }, + { + "appid": 2655590, + "normalized_name": "kingdom's deck" + }, + { + "appid": 2655600, + "normalized_name": "shelter of exiles" + }, + { + "appid": 2655610, + "normalized_name": "rivers of blood" + }, + { + "appid": 2655620, + "normalized_name": "slasher u an 18+ horror movie dating sim act 1" + }, + { + "appid": 2655630, + "normalized_name": "celestia divine revelation" + }, + { + "appid": 2655650, + "normalized_name": "hidden series 2" + }, + { + "appid": 2655660, + "normalized_name": "staff runner" + }, + { + "appid": 2655670, + "normalized_name": "zombie colony" + }, + { + "appid": 2655710, + "normalized_name": "halloween stories horror movie" + }, + { + "appid": 2655720, + "normalized_name": "hidden world 5 top down 3d" + }, + { + "appid": 2655740, + "normalized_name": "catbox" + }, + { + "appid": 2655760, + "normalized_name": "chesslike" + }, + { + "appid": 2655770, + "normalized_name": "little survivors" + }, + { + "appid": 2655790, + "normalized_name": "uh oh calico!" + }, + { + "appid": 2655800, + "normalized_name": "only high" + }, + { + "appid": 2655820, + "normalized_name": "i scream" + }, + { + "appid": 2655840, + "normalized_name": "blood orange" + }, + { + "appid": 2655870, + "normalized_name": "ghost carver" + }, + { + "appid": 2655880, + "normalized_name": "dragon care tarot" + }, + { + "appid": 2655890, + "normalized_name": "pumpkin party" + }, + { + "appid": 2655910, + "normalized_name": "costume fighter" + }, + { + "appid": 2655920, + "normalized_name": "gravitorium" + }, + { + "appid": 2655930, + "normalized_name": "solitary cat" + }, + { + "appid": 2655960, + "normalized_name": "lust academy season 3" + }, + { + "appid": 2655970, + "normalized_name": "neoathlon" + }, + { + "appid": 2656040, + "normalized_name": "galactic corsairs" + }, + { + "appid": 2656150, + "normalized_name": "nightmare trek the next level challenge" + }, + { + "appid": 2656180, + "normalized_name": "galacticverse" + }, + { + "appid": 2656220, + "normalized_name": "ballapalooza" + }, + { + "appid": 2656230, + "normalized_name": "terminal v" + }, + { + "appid": 2656280, + "normalized_name": "危机幸存者crisis survivors" + }, + { + "appid": 2656310, + "normalized_name": "one week with the mafia" + }, + { + "appid": 2656320, + "normalized_name": "medville" + }, + { + "appid": 2656350, + "normalized_name": "untitled rougelike arcade game" + }, + { + "appid": 2656360, + "normalized_name": "small world" + }, + { + "appid": 2656400, + "normalized_name": "asteroids neon" + }, + { + "appid": 2656410, + "normalized_name": "scp bloodwater" + }, + { + "appid": 2656420, + "normalized_name": "knightess in debt" + }, + { + "appid": 2656440, + "normalized_name": "knight case files" + }, + { + "appid": 2656450, + "normalized_name": "survial" + }, + { + "appid": 2656460, + "normalized_name": "pallet panic" + }, + { + "appid": 2656490, + "normalized_name": "anthem#9" + }, + { + "appid": 2656510, + "normalized_name": "100f blessing of the guardian" + }, + { + "appid": 2656520, + "normalized_name": "mycelium heaven" + }, + { + "appid": 2656540, + "normalized_name": "东方:平野孤鸿" + }, + { + "appid": 2656560, + "normalized_name": "auspicious light" + }, + { + "appid": 2656570, + "normalized_name": "王国放置之心kingdom idle heart" + }, + { + "appid": 2656580, + "normalized_name": "tale of honor" + }, + { + "appid": 2656600, + "normalized_name": "魔域rpg" + }, + { + "appid": 2656610, + "normalized_name": "lady of bones a mother's legacy" + }, + { + "appid": 2656640, + "normalized_name": "上司と秘密の2ldk" + }, + { + "appid": 2656650, + "normalized_name": "誓いのキスは突然に" + }, + { + "appid": 2656690, + "normalized_name": "sona nyl of the violet shadows refrain" + }, + { + "appid": 2656710, + "normalized_name": "fantasy blacksmith shop simulator" + }, + { + "appid": 2656740, + "normalized_name": "endless furry td tower defense" + }, + { + "appid": 2656800, + "normalized_name": "baugarten" + }, + { + "appid": 2656830, + "normalized_name": "zombie fun run" + }, + { + "appid": 2656900, + "normalized_name": "hot and lovely tease" + }, + { + "appid": 2656930, + "normalized_name": "dragon bobby the story of a life" + }, + { + "appid": 2656980, + "normalized_name": "house of lust" + }, + { + "appid": 2656990, + "normalized_name": "mycelium guardians" + }, + { + "appid": 2657010, + "normalized_name": "club house on haunted hill" + }, + { + "appid": 2657030, + "normalized_name": "sex & blood vampires" + }, + { + "appid": 2657120, + "normalized_name": "my sexy neighbor 🔞" + }, + { + "appid": 2657130, + "normalized_name": "wormswarm" + }, + { + "appid": 2657140, + "normalized_name": "animal falling" + }, + { + "appid": 2657160, + "normalized_name": "rose" + }, + { + "appid": 2657170, + "normalized_name": "lords of ravage dread knights" + }, + { + "appid": 2657180, + "normalized_name": "dethrone" + }, + { + "appid": 2657210, + "normalized_name": "kicking brass" + }, + { + "appid": 2657220, + "normalized_name": "office nightmare chapter 1&2" + }, + { + "appid": 2657230, + "normalized_name": "red head to the rescue" + }, + { + "appid": 2657240, + "normalized_name": "detective ritual of the sea" + }, + { + "appid": 2657260, + "normalized_name": "doashime ドアを閉めるぞ" + }, + { + "appid": 2657270, + "normalized_name": "gamma strain" + }, + { + "appid": 2657290, + "normalized_name": "世道" + }, + { + "appid": 2657300, + "normalized_name": "fury race survivor" + }, + { + "appid": 2657310, + "normalized_name": "godrop" + }, + { + "appid": 2657320, + "normalized_name": "isle of echoes" + }, + { + "appid": 2657340, + "normalized_name": "firva strings of fate" + }, + { + "appid": 2657360, + "normalized_name": "legacy of evil" + }, + { + "appid": 2657430, + "normalized_name": "augury point" + }, + { + "appid": 2657480, + "normalized_name": "cricket through the ages" + }, + { + "appid": 2657510, + "normalized_name": "defense protocol" + }, + { + "appid": 2657540, + "normalized_name": "coastal defense" + }, + { + "appid": 2657570, + "normalized_name": "block catching" + }, + { + "appid": 2657580, + "normalized_name": "anterris" + }, + { + "appid": 2657600, + "normalized_name": "rotten flesh cosmic horror survival game" + }, + { + "appid": 2657610, + "normalized_name": "elara a coding adventure in space" + }, + { + "appid": 2657620, + "normalized_name": "paranox" + }, + { + "appid": 2657670, + "normalized_name": "spherix" + }, + { + "appid": 2657710, + "normalized_name": "kotoko's a little weird" + }, + { + "appid": 2657720, + "normalized_name": "alchemist quest" + }, + { + "appid": 2657730, + "normalized_name": "eldorante" + }, + { + "appid": 2657750, + "normalized_name": "art is dead" + }, + { + "appid": 2657780, + "normalized_name": "sunaba" + }, + { + "appid": 2657810, + "normalized_name": "sex play tropical vacation" + }, + { + "appid": 2657840, + "normalized_name": "project coreward" + }, + { + "appid": 2657850, + "normalized_name": "cozy space survivors" + }, + { + "appid": 2657860, + "normalized_name": "side to side" + }, + { + "appid": 2657890, + "normalized_name": "skyfly" + }, + { + "appid": 2657900, + "normalized_name": "for sale" + }, + { + "appid": 2657930, + "normalized_name": "erannorth renaissance" + }, + { + "appid": 2657940, + "normalized_name": "the dabloon project" + }, + { + "appid": 2658010, + "normalized_name": "magic escape yo.doggies" + }, + { + "appid": 2658020, + "normalized_name": "card racer" + }, + { + "appid": 2658030, + "normalized_name": "clicker arena" + }, + { + "appid": 2658040, + "normalized_name": "responding" + }, + { + "appid": 2658080, + "normalized_name": "metal breaker" + }, + { + "appid": 2658090, + "normalized_name": "halloween night" + }, + { + "appid": 2658120, + "normalized_name": "meet a married woman at a hot spring" + }, + { + "appid": 2658130, + "normalized_name": "天界异闻录" + }, + { + "appid": 2658140, + "normalized_name": "turbo champ" + }, + { + "appid": 2658160, + "normalized_name": "crowncity" + }, + { + "appid": 2658180, + "normalized_name": "the unknown" + }, + { + "appid": 2658230, + "normalized_name": "夢遊邊境 the dream of limbo" + }, + { + "appid": 2658250, + "normalized_name": "eschatology" + }, + { + "appid": 2658260, + "normalized_name": "trophy hunt" + }, + { + "appid": 2658290, + "normalized_name": "merge eto" + }, + { + "appid": 2658330, + "normalized_name": "m city" + }, + { + "appid": 2658410, + "normalized_name": "soul blade" + }, + { + "appid": 2658430, + "normalized_name": "時輪之間" + }, + { + "appid": 2658450, + "normalized_name": "lollipop chainsaw repop" + }, + { + "appid": 2658470, + "normalized_name": "is this game trying to kill me?" + }, + { + "appid": 2658490, + "normalized_name": "the dark survivors" + }, + { + "appid": 2658510, + "normalized_name": "animal shelter 2" + }, + { + "appid": 2658550, + "normalized_name": "ortho blaze" + }, + { + "appid": 2658560, + "normalized_name": "space rock armageddon" + }, + { + "appid": 2658580, + "normalized_name": "honk of heroes" + }, + { + "appid": 2658590, + "normalized_name": "和平怒火5" + }, + { + "appid": 2658600, + "normalized_name": "seaside schemes" + }, + { + "appid": 2658620, + "normalized_name": "snake effect" + }, + { + "appid": 2658640, + "normalized_name": "oasis mission colony sim" + }, + { + "appid": 2658650, + "normalized_name": "barbara sex story" + }, + { + "appid": 2658660, + "normalized_name": "sex island" + }, + { + "appid": 2658680, + "normalized_name": "kalis car game" + }, + { + "appid": 2658690, + "normalized_name": "supurr cat cafe sandwich rush" + }, + { + "appid": 2658720, + "normalized_name": "vampire the masquerade reckoning of new york" + }, + { + "appid": 2658740, + "normalized_name": "island of mine" + }, + { + "appid": 2658770, + "normalized_name": "die drei ??? ruf der trolle" + }, + { + "appid": 2658780, + "normalized_name": "wild angels | episode 1" + }, + { + "appid": 2658810, + "normalized_name": "katana robo rta" + }, + { + "appid": 2658820, + "normalized_name": "watermelon game" + }, + { + "appid": 2658830, + "normalized_name": "flow syn x vertue" + }, + { + "appid": 2658840, + "normalized_name": "carsick carventure" + }, + { + "appid": 2658920, + "normalized_name": "staffer reborn" + }, + { + "appid": 2658950, + "normalized_name": "unknown seas" + }, + { + "appid": 2658960, + "normalized_name": "the lab and dungeons" + }, + { + "appid": 2658980, + "normalized_name": "aquarevive vr game" + }, + { + "appid": 2658990, + "normalized_name": "will the man get frog" + }, + { + "appid": 2659020, + "normalized_name": "eternal trails" + }, + { + "appid": 2659040, + "normalized_name": "m.o.z.i." + }, + { + "appid": 2659050, + "normalized_name": "movies tycoon" + }, + { + "appid": 2659110, + "normalized_name": "deep mine" + }, + { + "appid": 2659150, + "normalized_name": "_message" + }, + { + "appid": 2659170, + "normalized_name": "shadow pulse" + }, + { + "appid": 2659190, + "normalized_name": "endless glory" + }, + { + "appid": 2659200, + "normalized_name": "flambeau deluxxx" + }, + { + "appid": 2659230, + "normalized_name": "3dc" + }, + { + "appid": 2659250, + "normalized_name": "arts & hearts academy" + }, + { + "appid": 2659340, + "normalized_name": "feast tower" + }, + { + "appid": 2659480, + "normalized_name": "colony defense tower defense" + }, + { + "appid": 2659500, + "normalized_name": "the vorezkor hack" + }, + { + "appid": 2659530, + "normalized_name": "stop the slimes" + }, + { + "appid": 2659580, + "normalized_name": "project scar" + }, + { + "appid": 2659600, + "normalized_name": "ammossum" + }, + { + "appid": 2659610, + "normalized_name": "realms of riddles wizards'keep" + }, + { + "appid": 2659630, + "normalized_name": "battle shiba barkade" + }, + { + "appid": 2659650, + "normalized_name": "case files behind closed doors" + }, + { + "appid": 2659660, + "normalized_name": "the legend beyond legends" + }, + { + "appid": 2659670, + "normalized_name": "the dark book 2" + }, + { + "appid": 2659690, + "normalized_name": "operation athena" + }, + { + "appid": 2659700, + "normalized_name": "og puzzlers synthwave cars" + }, + { + "appid": 2659710, + "normalized_name": "carnaval simulator" + }, + { + "appid": 2659720, + "normalized_name": "alien cafe" + }, + { + "appid": 2659730, + "normalized_name": "solo flight" + }, + { + "appid": 2659750, + "normalized_name": "eopn – test rs" + }, + { + "appid": 2659760, + "normalized_name": "starrynight" + }, + { + "appid": 2659780, + "normalized_name": "real communism" + }, + { + "appid": 2659790, + "normalized_name": "indie nights" + }, + { + "appid": 2659800, + "normalized_name": "onoow" + }, + { + "appid": 2659830, + "normalized_name": "wardoom ssp wargame" + }, + { + "appid": 2659840, + "normalized_name": "a red walking robot" + }, + { + "appid": 2659850, + "normalized_name": "bio secret" + }, + { + "appid": 2659860, + "normalized_name": "炎の戦士バーニングハイ" + }, + { + "appid": 2659870, + "normalized_name": "tales of virginia" + }, + { + "appid": 2659880, + "normalized_name": "journey to the west(暴躁西游)" + }, + { + "appid": 2659900, + "normalized_name": "sixty four" + }, + { + "appid": 2659910, + "normalized_name": "path of dragoon" + }, + { + "appid": 2659960, + "normalized_name": "let's go! my harem farm" + }, + { + "appid": 2659970, + "normalized_name": "lucky mayor" + }, + { + "appid": 2659980, + "normalized_name": "v.e.d.a the awakening of souls" + }, + { + "appid": 2660050, + "normalized_name": "report on the death of robert evergreen" + }, + { + "appid": 2660100, + "normalized_name": "cake game" + }, + { + "appid": 2660110, + "normalized_name": "zen quest" + }, + { + "appid": 2660120, + "normalized_name": "mr.chip" + }, + { + "appid": 2660130, + "normalized_name": "flint's hints" + }, + { + "appid": 2660170, + "normalized_name": "divine prophecy" + }, + { + "appid": 2660180, + "normalized_name": "meanwhile in sector 80" + }, + { + "appid": 2660230, + "normalized_name": "kill the shadow" + }, + { + "appid": 2660240, + "normalized_name": "cuprum2929" + }, + { + "appid": 2660250, + "normalized_name": "49 keys" + }, + { + "appid": 2660260, + "normalized_name": "castaway hand" + }, + { + "appid": 2660300, + "normalized_name": "fingfing" + }, + { + "appid": 2660320, + "normalized_name": "in truck driving" + }, + { + "appid": 2660330, + "normalized_name": "登阶 the eastern sacrifice" + }, + { + "appid": 2660370, + "normalized_name": "college sex episode 3" + }, + { + "appid": 2660390, + "normalized_name": "sex story cuckold life episode 9" + }, + { + "appid": 2660400, + "normalized_name": "nephenthesys" + }, + { + "appid": 2660410, + "normalized_name": "corruption 2029" + }, + { + "appid": 2660420, + "normalized_name": "stratego online" + }, + { + "appid": 2660440, + "normalized_name": "factories of golden waters" + }, + { + "appid": 2660460, + "normalized_name": "aviassembly" + }, + { + "appid": 2660500, + "normalized_name": "devilish blind date" + }, + { + "appid": 2660570, + "normalized_name": "mind palace" + }, + { + "appid": 2660600, + "normalized_name": "bullets beams and booty" + }, + { + "appid": 2660610, + "normalized_name": "灵师" + }, + { + "appid": 2660630, + "normalized_name": "mistypuzzle" + }, + { + "appid": 2660640, + "normalized_name": "first crusader" + }, + { + "appid": 2660650, + "normalized_name": "hex cats" + }, + { + "appid": 2660700, + "normalized_name": "catch my color" + }, + { + "appid": 2660710, + "normalized_name": "escape the farm" + }, + { + "appid": 2660750, + "normalized_name": "teku" + }, + { + "appid": 2660760, + "normalized_name": "dwarf looter" + }, + { + "appid": 2660810, + "normalized_name": "league of speedrunners" + }, + { + "appid": 2660830, + "normalized_name": "deadcam | analog • survival • horror" + }, + { + "appid": 2660840, + "normalized_name": "manasoul" + }, + { + "appid": 2660850, + "normalized_name": "memorion" + }, + { + "appid": 2660860, + "normalized_name": "architectural madman" + }, + { + "appid": 2660870, + "normalized_name": "gemstone puzzle fury" + }, + { + "appid": 2660880, + "normalized_name": "梅斯勒的騎士" + }, + { + "appid": 2660930, + "normalized_name": "aliya's ascent" + }, + { + "appid": 2660950, + "normalized_name": "rainbow yggdrasil" + }, + { + "appid": 2660970, + "normalized_name": "hypersomnia" + }, + { + "appid": 2660980, + "normalized_name": "block room" + }, + { + "appid": 2661040, + "normalized_name": "descent of the hunted" + }, + { + "appid": 2661060, + "normalized_name": "escortina life! 2.0" + }, + { + "appid": 2661120, + "normalized_name": "r1sikochess" + }, + { + "appid": 2661130, + "normalized_name": "the shaft" + }, + { + "appid": 2661140, + "normalized_name": "sovereign reign" + }, + { + "appid": 2661160, + "normalized_name": "goober dash" + }, + { + "appid": 2661200, + "normalized_name": "nine days" + }, + { + "appid": 2661210, + "normalized_name": "クジラゲームオンライン" + }, + { + "appid": 2661220, + "normalized_name": "law transporter" + }, + { + "appid": 2661260, + "normalized_name": "glitched out chapter 1" + }, + { + "appid": 2661290, + "normalized_name": "seren nova" + }, + { + "appid": 2661310, + "normalized_name": "shovel knight shovel of hope dx" + }, + { + "appid": 2661330, + "normalized_name": "edd e" + }, + { + "appid": 2661360, + "normalized_name": "agritopia" + }, + { + "appid": 2661400, + "normalized_name": "mystery trackers darkwater bay collector's" + }, + { + "appid": 2661410, + "normalized_name": "halloween stories black book" + }, + { + "appid": 2661420, + "normalized_name": "chimeras price of greed collector's" + }, + { + "appid": 2661430, + "normalized_name": "my ishowspeed" + }, + { + "appid": 2661470, + "normalized_name": "banshee hunt" + }, + { + "appid": 2661490, + "normalized_name": "magia y demonios" + }, + { + "appid": 2661500, + "normalized_name": "dobro love fantasy quest" + }, + { + "appid": 2661510, + "normalized_name": "treasures of the haunted forest" + }, + { + "appid": 2661520, + "normalized_name": "there's no easter eggs" + }, + { + "appid": 2661530, + "normalized_name": "alchemy origins" + }, + { + "appid": 2661540, + "normalized_name": "susan's potion workshop" + }, + { + "appid": 2661550, + "normalized_name": "escape from the abandoned outpost" + }, + { + "appid": 2661620, + "normalized_name": "love in login" + }, + { + "appid": 2661630, + "normalized_name": "gems and knight" + }, + { + "appid": 2661640, + "normalized_name": "hands of timber" + }, + { + "appid": 2661690, + "normalized_name": "the wicked west" + }, + { + "appid": 2661700, + "normalized_name": "death & tactics" + }, + { + "appid": 2661720, + "normalized_name": "あなたはチャットaiです" + }, + { + "appid": 2661730, + "normalized_name": "apu's journey" + }, + { + "appid": 2661750, + "normalized_name": "小世界模拟器3" + }, + { + "appid": 2661770, + "normalized_name": "somacube" + }, + { + "appid": 2661780, + "normalized_name": "magret & facedebouc \"the buddy buddy case\"" + }, + { + "appid": 2661850, + "normalized_name": "globalism" + }, + { + "appid": 2661890, + "normalized_name": "of murder and moonshine" + }, + { + "appid": 2661900, + "normalized_name": "jailbreaker" + }, + { + "appid": 2661930, + "normalized_name": "liyf" + }, + { + "appid": 2661940, + "normalized_name": "paradise architect idle tycoon" + }, + { + "appid": 2661950, + "normalized_name": "魔卡奇旅" + }, + { + "appid": 2661960, + "normalized_name": "ginger snap islands of rot" + }, + { + "appid": 2662070, + "normalized_name": "unwell" + }, + { + "appid": 2662080, + "normalized_name": "tour manager secret stories" + }, + { + "appid": 2662190, + "normalized_name": "follow the rules" + }, + { + "appid": 2662200, + "normalized_name": "heaven and hell" + }, + { + "appid": 2662270, + "normalized_name": "red eye" + }, + { + "appid": 2662280, + "normalized_name": "天机录" + }, + { + "appid": 2662330, + "normalized_name": "in memoriam" + }, + { + "appid": 2662450, + "normalized_name": "下九泉" + }, + { + "appid": 2662550, + "normalized_name": "roam" + }, + { + "appid": 2662590, + "normalized_name": "ultranothing" + }, + { + "appid": 2662630, + "normalized_name": "the elder scrolls online gold road" + }, + { + "appid": 2662730, + "normalized_name": "eating nature" + }, + { + "appid": 2662740, + "normalized_name": "slice it down" + }, + { + "appid": 2662780, + "normalized_name": "heat death survival train" + }, + { + "appid": 2662810, + "normalized_name": "dungeon minesweeper" + }, + { + "appid": 2662830, + "normalized_name": "caustic bloom" + }, + { + "appid": 2663110, + "normalized_name": "journey's land" + }, + { + "appid": 2663120, + "normalized_name": "chrono bullet" + }, + { + "appid": 2663140, + "normalized_name": "standalone synergy" + }, + { + "appid": 2663150, + "normalized_name": "valkyrie saga" + }, + { + "appid": 2663170, + "normalized_name": "jolly good tea and scones" + }, + { + "appid": 2663200, + "normalized_name": "crittergarden" + }, + { + "appid": 2663210, + "normalized_name": "lunar city builder" + }, + { + "appid": 2663260, + "normalized_name": "alien slayer" + }, + { + "appid": 2663270, + "normalized_name": "endless maze" + }, + { + "appid": 2663300, + "normalized_name": "island rush" + }, + { + "appid": 2663310, + "normalized_name": "shape tunnel" + }, + { + "appid": 2663350, + "normalized_name": "legends of alterra" + }, + { + "appid": 2663360, + "normalized_name": "aster initiative" + }, + { + "appid": 2663450, + "normalized_name": "rc revolution high voltage 免费玩" + }, + { + "appid": 2663510, + "normalized_name": "out of shapes" + }, + { + "appid": 2663520, + "normalized_name": "echo of extinction" + }, + { + "appid": 2663530, + "normalized_name": "pools" + }, + { + "appid": 2663570, + "normalized_name": "chainkit builder" + }, + { + "appid": 2663600, + "normalized_name": "溢爱~fragile love" + }, + { + "appid": 2663620, + "normalized_name": "deep deep deep nightmare" + }, + { + "appid": 2663670, + "normalized_name": "zodiac revenger" + }, + { + "appid": 2663680, + "normalized_name": "kori" + }, + { + "appid": 2663710, + "normalized_name": "bedtime stories 1" + }, + { + "appid": 2663720, + "normalized_name": "forsisted the sacred souls" + }, + { + "appid": 2663780, + "normalized_name": "hidden world 6 top down 3d" + }, + { + "appid": 2663790, + "normalized_name": "taxingtiles" + }, + { + "appid": 2663800, + "normalized_name": "midnight fury" + }, + { + "appid": 2663830, + "normalized_name": "crazy people" + }, + { + "appid": 2663840, + "normalized_name": "an aisling" + }, + { + "appid": 2663850, + "normalized_name": "the soul of cosmos" + }, + { + "appid": 2663890, + "normalized_name": "dodge this" + }, + { + "appid": 2663910, + "normalized_name": "my life as a cat" + }, + { + "appid": 2663950, + "normalized_name": "再见断刀" + }, + { + "appid": 2663970, + "normalized_name": "house designer 2" + }, + { + "appid": 2664050, + "normalized_name": "yoko" + }, + { + "appid": 2664120, + "normalized_name": "lonely space" + }, + { + "appid": 2664130, + "normalized_name": "citres" + }, + { + "appid": 2664160, + "normalized_name": "prince adventures" + }, + { + "appid": 2664190, + "normalized_name": "cosmic gunslinger alien outlaws" + }, + { + "appid": 2664200, + "normalized_name": "find the pairs memo game for kids" + }, + { + "appid": 2664260, + "normalized_name": "rogue survivalist" + }, + { + "appid": 2664280, + "normalized_name": "alpha male play with my milf housemaid" + }, + { + "appid": 2664300, + "normalized_name": "chaos sisters" + }, + { + "appid": 2664330, + "normalized_name": "assassin war sniper shooting" + }, + { + "appid": 2664370, + "normalized_name": "durak ntr the fool who lost his gf in a card game" + }, + { + "appid": 2664400, + "normalized_name": "renaissance kingdom wars prologue" + }, + { + "appid": 2664460, + "normalized_name": "simon the seahorse the animated adventure game" + }, + { + "appid": 2664470, + "normalized_name": "sharded world backpack adventure" + }, + { + "appid": 2664540, + "normalized_name": "swords & shields advbattleboard" + }, + { + "appid": 2664560, + "normalized_name": "the labyrinth" + }, + { + "appid": 2664600, + "normalized_name": "the last hour of an epic to the moon rpg" + }, + { + "appid": 2664650, + "normalized_name": "paper work" + }, + { + "appid": 2664670, + "normalized_name": "undeads" + }, + { + "appid": 2664680, + "normalized_name": "mysterious legend" + }, + { + "appid": 2664700, + "normalized_name": "grimbound" + }, + { + "appid": 2664720, + "normalized_name": "astroswarm" + }, + { + "appid": 2664760, + "normalized_name": "halloween sinister trivia" + }, + { + "appid": 2664800, + "normalized_name": "am i explorer" + }, + { + "appid": 2664820, + "normalized_name": "大号流感" + }, + { + "appid": 2664850, + "normalized_name": "start with 50 gold coins" + }, + { + "appid": 2664880, + "normalized_name": "dawn of anarchy" + }, + { + "appid": 2664890, + "normalized_name": "the dire" + }, + { + "appid": 2664900, + "normalized_name": "delicious burger" + }, + { + "appid": 2664910, + "normalized_name": "locked" + }, + { + "appid": 2664920, + "normalized_name": "forest keeper" + }, + { + "appid": 2664930, + "normalized_name": "the adventures of the black hawk" + }, + { + "appid": 2664950, + "normalized_name": "雪鹰领(cultivating immortals)" + }, + { + "appid": 2664960, + "normalized_name": "帝缚山海" + }, + { + "appid": 2664970, + "normalized_name": "cube survivor" + }, + { + "appid": 2664990, + "normalized_name": "city of death" + }, + { + "appid": 2665010, + "normalized_name": "doodle td 2" + }, + { + "appid": 2665020, + "normalized_name": "milo" + }, + { + "appid": 2665030, + "normalized_name": "code has price" + }, + { + "appid": 2665040, + "normalized_name": "the og cake factory" + }, + { + "appid": 2665090, + "normalized_name": "confiscator" + }, + { + "appid": 2665100, + "normalized_name": "project breakout" + }, + { + "appid": 2665110, + "normalized_name": "idle tick" + }, + { + "appid": 2665120, + "normalized_name": "sempra infernalis" + }, + { + "appid": 2665130, + "normalized_name": "the end of humanity/人之将死" + }, + { + "appid": 2665150, + "normalized_name": "harve" + }, + { + "appid": 2665170, + "normalized_name": "anonymous hunting simulator" + }, + { + "appid": 2665180, + "normalized_name": "aleph" + }, + { + "appid": 2665210, + "normalized_name": "hentai exotic" + }, + { + "appid": 2665250, + "normalized_name": "rancher a new life" + }, + { + "appid": 2665370, + "normalized_name": "virtual live arena" + }, + { + "appid": 2665380, + "normalized_name": "camping vlog simulator 2024" + }, + { + "appid": 2665400, + "normalized_name": "battlechat" + }, + { + "appid": 2665450, + "normalized_name": "arena tails" + }, + { + "appid": 2665460, + "normalized_name": "windward horizon" + }, + { + "appid": 2665490, + "normalized_name": "the old gentleman" + }, + { + "appid": 2665500, + "normalized_name": "pacific minesweeper" + }, + { + "appid": 2665530, + "normalized_name": "dystofarm" + }, + { + "appid": 2665550, + "normalized_name": "suspended animation 💽" + }, + { + "appid": 2665570, + "normalized_name": "barter & blades" + }, + { + "appid": 2665590, + "normalized_name": "sudoku xp" + }, + { + "appid": 2665630, + "normalized_name": "piecing it together" + }, + { + "appid": 2665640, + "normalized_name": "invasion tales of tower defense" + }, + { + "appid": 2665660, + "normalized_name": "拼接万物" + }, + { + "appid": 2665680, + "normalized_name": "tower of babel survivors of chaos" + }, + { + "appid": 2665690, + "normalized_name": "朊病毒" + }, + { + "appid": 2665930, + "normalized_name": "aspect heroes" + }, + { + "appid": 2665940, + "normalized_name": "ninja resurrection a tale of kuro" + }, + { + "appid": 2666000, + "normalized_name": "otherlights" + }, + { + "appid": 2666020, + "normalized_name": "uncharted lands beginning" + }, + { + "appid": 2666060, + "normalized_name": "get order!" + }, + { + "appid": 2666080, + "normalized_name": "ifu" + }, + { + "appid": 2666160, + "normalized_name": "starveil protocol a.a.a." + }, + { + "appid": 2666200, + "normalized_name": "sex massage 🔞" + }, + { + "appid": 2666220, + "normalized_name": "marble maid 2 the negative levels" + }, + { + "appid": 2666230, + "normalized_name": "dog and goblin" + }, + { + "appid": 2666250, + "normalized_name": "dark mysteries the soul keeper collector's" + }, + { + "appid": 2666260, + "normalized_name": "galactic breakout" + }, + { + "appid": 2666270, + "normalized_name": "the da vinci cryptex" + }, + { + "appid": 2666290, + "normalized_name": "dire flesh and phobia" + }, + { + "appid": 2666330, + "normalized_name": "elixirs" + }, + { + "appid": 2666350, + "normalized_name": "very scary backrooms game" + }, + { + "appid": 2666360, + "normalized_name": "drop the dice" + }, + { + "appid": 2666370, + "normalized_name": "lumenile found footage" + }, + { + "appid": 2666390, + "normalized_name": "gnarly hike" + }, + { + "appid": 2666410, + "normalized_name": "astra ignota" + }, + { + "appid": 2666440, + "normalized_name": "traversion" + }, + { + "appid": 2666490, + "normalized_name": "savanna story diamond" + }, + { + "appid": 2666510, + "normalized_name": "rusty's retirement" + }, + { + "appid": 2666520, + "normalized_name": "end of life" + }, + { + "appid": 2666530, + "normalized_name": "big shots" + }, + { + "appid": 2666550, + "normalized_name": "dead season" + }, + { + "appid": 2666570, + "normalized_name": "invisible fear" + }, + { + "appid": 2666580, + "normalized_name": "pathfinder abomination vaults" + }, + { + "appid": 2666590, + "normalized_name": "worm nest plague" + }, + { + "appid": 2666610, + "normalized_name": "wings of endless" + }, + { + "appid": 2666680, + "normalized_name": "turnskull" + }, + { + "appid": 2666750, + "normalized_name": "winter of the arbyen" + }, + { + "appid": 2666840, + "normalized_name": "robot detour" + }, + { + "appid": 2666870, + "normalized_name": "gassy getaway" + }, + { + "appid": 2666920, + "normalized_name": "building relationships" + }, + { + "appid": 2667000, + "normalized_name": "redrum hotel" + }, + { + "appid": 2667010, + "normalized_name": "bunny hungry" + }, + { + "appid": 2667020, + "normalized_name": "moorhuhn invasion crazy chicken invasion" + }, + { + "appid": 2667030, + "normalized_name": "spriggan" + }, + { + "appid": 2667050, + "normalized_name": "the haunted farm" + }, + { + "appid": 2667080, + "normalized_name": "journey's land demo" + }, + { + "appid": 2667100, + "normalized_name": "project neo" + }, + { + "appid": 2667120, + "normalized_name": "ballionaire" + }, + { + "appid": 2667130, + "normalized_name": "arcanamals" + }, + { + "appid": 2667140, + "normalized_name": "the lumenites" + }, + { + "appid": 2667160, + "normalized_name": "timeworks" + }, + { + "appid": 2667220, + "normalized_name": "dear lake" + }, + { + "appid": 2667240, + "normalized_name": "punch jump" + }, + { + "appid": 2667260, + "normalized_name": "king wizard of the forest kingdom" + }, + { + "appid": 2667270, + "normalized_name": "sifting thyme an otome game inspired by culinary shows" + }, + { + "appid": 2667290, + "normalized_name": "until zombie down" + }, + { + "appid": 2667360, + "normalized_name": "estilhaço" + }, + { + "appid": 2667370, + "normalized_name": "dodolly tales" + }, + { + "appid": 2667380, + "normalized_name": "新入社員は元av女優 ~ドmな彼女は淫らに堕ちていく~" + }, + { + "appid": 2667410, + "normalized_name": "heroes wanted" + }, + { + "appid": 2667430, + "normalized_name": "grimhook" + }, + { + "appid": 2667480, + "normalized_name": "wolf sheep cabbage" + }, + { + "appid": 2667500, + "normalized_name": "world war next" + }, + { + "appid": 2667540, + "normalized_name": "去远方" + }, + { + "appid": 2667560, + "normalized_name": "crimson tide" + }, + { + "appid": 2667580, + "normalized_name": "brawlygon" + }, + { + "appid": 2667590, + "normalized_name": "归乡" + }, + { + "appid": 2667660, + "normalized_name": "project mw" + }, + { + "appid": 2667680, + "normalized_name": "cyber_serpent" + }, + { + "appid": 2667690, + "normalized_name": "test test test" + }, + { + "appid": 2667740, + "normalized_name": "your house" + }, + { + "appid": 2667750, + "normalized_name": "hungry cats 饥饿的猫" + }, + { + "appid": 2667760, + "normalized_name": "sex play night club" + }, + { + "appid": 2667790, + "normalized_name": "my little world" + }, + { + "appid": 2667820, + "normalized_name": "marked the quest for tripura" + }, + { + "appid": 2667830, + "normalized_name": "ememetown" + }, + { + "appid": 2667840, + "normalized_name": "dispatch madness" + }, + { + "appid": 2667850, + "normalized_name": "scary school simulator 2" + }, + { + "appid": 2667880, + "normalized_name": "anominal" + }, + { + "appid": 2667950, + "normalized_name": "gloomy eyes" + }, + { + "appid": 2667970, + "normalized_name": "100 asian cats" + }, + { + "appid": 2667980, + "normalized_name": "genotype" + }, + { + "appid": 2667990, + "normalized_name": "sapo xulé e o casamento indesejado" + }, + { + "appid": 2668000, + "normalized_name": "wizdom academy" + }, + { + "appid": 2668020, + "normalized_name": "neon fantasy monkeys" + }, + { + "appid": 2668030, + "normalized_name": "blood for the old gods" + }, + { + "appid": 2668050, + "normalized_name": "quickie fantasy adventure" + }, + { + "appid": 2668070, + "normalized_name": "neon fuga" + }, + { + "appid": 2668080, + "normalized_name": "snowbreak containment zone" + }, + { + "appid": 2668090, + "normalized_name": "fetus in oil painting" + }, + { + "appid": 2668100, + "normalized_name": "hungry legion" + }, + { + "appid": 2668110, + "normalized_name": "もちじゃんぷ/mochijump" + }, + { + "appid": 2668130, + "normalized_name": "para rime of zealot" + }, + { + "appid": 2668150, + "normalized_name": "super bad hero" + }, + { + "appid": 2668160, + "normalized_name": "escort's secrets 18+" + }, + { + "appid": 2668170, + "normalized_name": "lust bunker [18+]" + }, + { + "appid": 2668180, + "normalized_name": "drone flight simulator online" + }, + { + "appid": 2668200, + "normalized_name": "skate summit" + }, + { + "appid": 2668210, + "normalized_name": "ttpp" + }, + { + "appid": 2668230, + "normalized_name": "spellarium 10" + }, + { + "appid": 2668240, + "normalized_name": "tercity life simulator" + }, + { + "appid": 2668300, + "normalized_name": "sakura segment 1.0" + }, + { + "appid": 2668320, + "normalized_name": "fatal terminal" + }, + { + "appid": 2668330, + "normalized_name": "racetrap" + }, + { + "appid": 2668430, + "normalized_name": "the legend of heroes trails through daybreak ii" + }, + { + "appid": 2668440, + "normalized_name": "snake galaxy online" + }, + { + "appid": 2668450, + "normalized_name": "psychshift" + }, + { + "appid": 2668460, + "normalized_name": "quantum contours" + }, + { + "appid": 2668500, + "normalized_name": "freak festival" + }, + { + "appid": 2668510, + "normalized_name": "red dead redemption" + }, + { + "appid": 2668530, + "normalized_name": "the rake" + }, + { + "appid": 2668540, + "normalized_name": "targeosity horror" + }, + { + "appid": 2668580, + "normalized_name": "cattie" + }, + { + "appid": 2668600, + "normalized_name": "escape from the collector" + }, + { + "appid": 2668610, + "normalized_name": "you are bugs" + }, + { + "appid": 2668620, + "normalized_name": "stories" + }, + { + "appid": 2668630, + "normalized_name": "koibumi" + }, + { + "appid": 2668640, + "normalized_name": "exista!" + }, + { + "appid": 2668660, + "normalized_name": "manwhore merchant breeding in bulk" + }, + { + "appid": 2668670, + "normalized_name": "the phoenix protocol" + }, + { + "appid": 2668710, + "normalized_name": "puzzle cube" + }, + { + "appid": 2668740, + "normalized_name": "moussacre" + }, + { + "appid": 2668760, + "normalized_name": "multiplayer obby" + }, + { + "appid": 2668770, + "normalized_name": "restless nights" + }, + { + "appid": 2668780, + "normalized_name": "peggy's farm" + }, + { + "appid": 2668800, + "normalized_name": "ticker tape" + }, + { + "appid": 2668810, + "normalized_name": "challenge love" + }, + { + "appid": 2668840, + "normalized_name": "kagura genesis kuon's story" + }, + { + "appid": 2668860, + "normalized_name": "accidental alchemist" + }, + { + "appid": 2668870, + "normalized_name": "inverse ninjas vs. the public domain" + }, + { + "appid": 2668910, + "normalized_name": "bodycam real shoot 2.0" + }, + { + "appid": 2669000, + "normalized_name": "dee's nuts 2" + }, + { + "appid": 2669010, + "normalized_name": "deepophobia" + }, + { + "appid": 2669030, + "normalized_name": "phenomena embattled" + }, + { + "appid": 2669040, + "normalized_name": "tricky taps" + }, + { + "appid": 2669060, + "normalized_name": "beyond astra" + }, + { + "appid": 2669080, + "normalized_name": "mannerheim's saloon car" + }, + { + "appid": 2669100, + "normalized_name": "watcher" + }, + { + "appid": 2669110, + "normalized_name": "tales from hazelwood post" + }, + { + "appid": 2669150, + "normalized_name": "mindlock the apartment" + }, + { + "appid": 2669160, + "normalized_name": "strange world" + }, + { + "appid": 2669180, + "normalized_name": "space frontier" + }, + { + "appid": 2669200, + "normalized_name": "catffee time!" + }, + { + "appid": 2669210, + "normalized_name": "space strider" + }, + { + "appid": 2669220, + "normalized_name": "hangry bear" + }, + { + "appid": 2669240, + "normalized_name": "swing solver" + }, + { + "appid": 2669250, + "normalized_name": "rewind and reclaim" + }, + { + "appid": 2669270, + "normalized_name": "circle the wagons prima septimana" + }, + { + "appid": 2669300, + "normalized_name": "farm invaders" + }, + { + "appid": 2669320, + "normalized_name": "ea sports fc 25" + }, + { + "appid": 2669330, + "normalized_name": "starl2" + }, + { + "appid": 2669380, + "normalized_name": "brutalistick vr" + }, + { + "appid": 2669390, + "normalized_name": "night feeder" + }, + { + "appid": 2669410, + "normalized_name": "metro awakening" + }, + { + "appid": 2669440, + "normalized_name": "元卡牌2 metacard2" + }, + { + "appid": 2669450, + "normalized_name": "my child new beginnings" + }, + { + "appid": 2669470, + "normalized_name": "tekoha a tale among the stars" + }, + { + "appid": 2669480, + "normalized_name": "forever n ever" + }, + { + "appid": 2669500, + "normalized_name": "garden trills" + }, + { + "appid": 2669510, + "normalized_name": "bottle of ghouls" + }, + { + "appid": 2669520, + "normalized_name": "expansion vr" + }, + { + "appid": 2669540, + "normalized_name": "necrophoresis" + }, + { + "appid": 2669550, + "normalized_name": "medieval machines builder first siege" + }, + { + "appid": 2669560, + "normalized_name": "kumi daiko beatoff" + }, + { + "appid": 2669580, + "normalized_name": "centauri dark" + }, + { + "appid": 2669590, + "normalized_name": "hero's destiny" + }, + { + "appid": 2669600, + "normalized_name": "wallkill" + }, + { + "appid": 2669610, + "normalized_name": "western redemption" + }, + { + "appid": 2669620, + "normalized_name": "retro rally!" + }, + { + "appid": 2669640, + "normalized_name": "tora's garden" + }, + { + "appid": 2669660, + "normalized_name": "gym nights" + }, + { + "appid": 2669680, + "normalized_name": "ethereal enigma" + }, + { + "appid": 2669720, + "normalized_name": "kelp keeper" + }, + { + "appid": 2669730, + "normalized_name": "captain coincoin" + }, + { + "appid": 2669770, + "normalized_name": "the backrooms you've been here before" + }, + { + "appid": 2669780, + "normalized_name": "spill the beans" + }, + { + "appid": 2669820, + "normalized_name": "box room" + }, + { + "appid": 2669830, + "normalized_name": "controlled death" + }, + { + "appid": 2669850, + "normalized_name": "behind the veil" + }, + { + "appid": 2669860, + "normalized_name": "древние русы" + }, + { + "appid": 2669910, + "normalized_name": "bioguard" + }, + { + "appid": 2669930, + "normalized_name": "the structureworld myths of skull island" + }, + { + "appid": 2669950, + "normalized_name": "sae" + }, + { + "appid": 2669960, + "normalized_name": "robocock" + }, + { + "appid": 2669970, + "normalized_name": "oculant" + }, + { + "appid": 2670250, + "normalized_name": "dreamslayer" + }, + { + "appid": 2670260, + "normalized_name": "cufflinks & cages" + }, + { + "appid": 2670280, + "normalized_name": "bleed runner" + }, + { + "appid": 2670340, + "normalized_name": "pretty girls escape plus" + }, + { + "appid": 2670360, + "normalized_name": "the smell of death a tsugunohi tale steam" + }, + { + "appid": 2670370, + "normalized_name": "knights of grayfang" + }, + { + "appid": 2670400, + "normalized_name": "omurice next time" + }, + { + "appid": 2670430, + "normalized_name": "abya paint ball" + }, + { + "appid": 2670460, + "normalized_name": "parallels year one" + }, + { + "appid": 2670470, + "normalized_name": "ninja forest maze" + }, + { + "appid": 2670490, + "normalized_name": "帝国战争:星际" + }, + { + "appid": 2670520, + "normalized_name": "helloworldfactory" + }, + { + "appid": 2670550, + "normalized_name": "married life with a lamia" + }, + { + "appid": 2670580, + "normalized_name": "arenawar" + }, + { + "appid": 2670630, + "normalized_name": "supermarket simulator" + }, + { + "appid": 2670670, + "normalized_name": "magic cards solitaire 2 the fountain of life" + }, + { + "appid": 2670700, + "normalized_name": "whispers of the citadel" + }, + { + "appid": 2670720, + "normalized_name": "3d puzzle farming 2" + }, + { + "appid": 2670730, + "normalized_name": "3d puzzle kingdom in dark" + }, + { + "appid": 2670740, + "normalized_name": "run and hide" + }, + { + "appid": 2670770, + "normalized_name": "jewel legends atlantis" + }, + { + "appid": 2670780, + "normalized_name": "death row escape" + }, + { + "appid": 2670800, + "normalized_name": "sunrise gp" + }, + { + "appid": 2670810, + "normalized_name": "candy bandits" + }, + { + "appid": 2670830, + "normalized_name": "battle wave" + }, + { + "appid": 2670860, + "normalized_name": "legend of inca mystical culture" + }, + { + "appid": 2670890, + "normalized_name": "是真的狗" + }, + { + "appid": 2670900, + "normalized_name": "dungeon core master" + }, + { + "appid": 2670920, + "normalized_name": "nut city blues" + }, + { + "appid": 2670940, + "normalized_name": "ohmyrace!" + }, + { + "appid": 2670960, + "normalized_name": "因狄斯2:燃烧的火种" + }, + { + "appid": 2670980, + "normalized_name": "elves vs goblins mahjongg world" + }, + { + "appid": 2671010, + "normalized_name": "turtle riders" + }, + { + "appid": 2671020, + "normalized_name": "月光下的冒险 moonlight adventure" + }, + { + "appid": 2671050, + "normalized_name": "shouldermen" + }, + { + "appid": 2671090, + "normalized_name": "death front" + }, + { + "appid": 2671110, + "normalized_name": "sex simulator naughty waitress" + }, + { + "appid": 2671180, + "normalized_name": "infected frontier" + }, + { + "appid": 2671200, + "normalized_name": "rgbounce" + }, + { + "appid": 2671210, + "normalized_name": "minesweeper collector 2" + }, + { + "appid": 2671230, + "normalized_name": "bladechimera" + }, + { + "appid": 2671270, + "normalized_name": "battle poet" + }, + { + "appid": 2671300, + "normalized_name": "trailblazers into the march" + }, + { + "appid": 2671310, + "normalized_name": "block ed" + }, + { + "appid": 2671320, + "normalized_name": "hidden cats in tokyo" + }, + { + "appid": 2671350, + "normalized_name": "the muller powell principle foreword" + }, + { + "appid": 2671440, + "normalized_name": "clutter puzzle magazine vol. 15 no. 1 collector's" + }, + { + "appid": 2671450, + "normalized_name": "e lich corporate souls" + }, + { + "appid": 2671460, + "normalized_name": "paper protocol" + }, + { + "appid": 2671480, + "normalized_name": "car parking real driving sim" + }, + { + "appid": 2671550, + "normalized_name": "spellz mastery or death" + }, + { + "appid": 2671590, + "normalized_name": "wormhole" + }, + { + "appid": 2671600, + "normalized_name": "neon shift" + }, + { + "appid": 2671610, + "normalized_name": "murder party horror hunt" + }, + { + "appid": 2671700, + "normalized_name": "hero manager" + }, + { + "appid": 2671710, + "normalized_name": "wild thaw" + }, + { + "appid": 2671720, + "normalized_name": "simply rotate" + }, + { + "appid": 2671730, + "normalized_name": "hans" + }, + { + "appid": 2671740, + "normalized_name": "heart s truck" + }, + { + "appid": 2671760, + "normalized_name": "plinio needs a hand" + }, + { + "appid": 2671770, + "normalized_name": "hackerpg" + }, + { + "appid": 2671780, + "normalized_name": "diamond dash plaid peril" + }, + { + "appid": 2671790, + "normalized_name": "infinity sky" + }, + { + "appid": 2671800, + "normalized_name": "midnight blanc" + }, + { + "appid": 2671820, + "normalized_name": "of dead earth" + }, + { + "appid": 2671880, + "normalized_name": "fortress defense" + }, + { + "appid": 2671970, + "normalized_name": "my suika – kyo’s fruit merge" + }, + { + "appid": 2671980, + "normalized_name": "conductor cat" + }, + { + "appid": 2671990, + "normalized_name": "spooky spins returns crazy cash slots" + }, + { + "appid": 2672010, + "normalized_name": "redcall" + }, + { + "appid": 2672020, + "normalized_name": "llewl and the lyre of two worlds" + }, + { + "appid": 2672030, + "normalized_name": "たんぽぽプラネット dandelion planet" + }, + { + "appid": 2672050, + "normalized_name": "ashes of sombtir" + }, + { + "appid": 2672060, + "normalized_name": "other side of mist and mountain" + }, + { + "appid": 2672070, + "normalized_name": "flowereverie" + }, + { + "appid": 2672080, + "normalized_name": "奇略围棋" + }, + { + "appid": 2672090, + "normalized_name": "cats and seek osaka" + }, + { + "appid": 2672110, + "normalized_name": "fantastic orc" + }, + { + "appid": 2672130, + "normalized_name": "bloodshots" + }, + { + "appid": 2672170, + "normalized_name": "alien tag" + }, + { + "appid": 2672230, + "normalized_name": "koco" + }, + { + "appid": 2672260, + "normalized_name": "evil corporation" + }, + { + "appid": 2672290, + "normalized_name": "free chess" + }, + { + "appid": 2672300, + "normalized_name": "隠し城" + }, + { + "appid": 2672350, + "normalized_name": "jewel legends tree of life" + }, + { + "appid": 2672430, + "normalized_name": "guardians of eden" + }, + { + "appid": 2672470, + "normalized_name": "unloop" + }, + { + "appid": 2672500, + "normalized_name": "become an adventurer" + }, + { + "appid": 2672510, + "normalized_name": "kinky cosplay heroes" + }, + { + "appid": 2672520, + "normalized_name": "versebound" + }, + { + "appid": 2672550, + "normalized_name": "solus machina" + }, + { + "appid": 2672620, + "normalized_name": "coopscoop" + }, + { + "appid": 2672660, + "normalized_name": "wizards quest adventure in the kingdom" + }, + { + "appid": 2672680, + "normalized_name": "living pages children's interactive book" + }, + { + "appid": 2672740, + "normalized_name": "archie's ribs" + }, + { + "appid": 2672760, + "normalized_name": "maza" + }, + { + "appid": 2672770, + "normalized_name": "hexle" + }, + { + "appid": 2672780, + "normalized_name": "new zealand jigsaw puzzles" + }, + { + "appid": 2672790, + "normalized_name": "weekend solitaire summer village" + }, + { + "appid": 2672840, + "normalized_name": "gambetto" + }, + { + "appid": 2672850, + "normalized_name": "a game about flicking a switch" + }, + { + "appid": 2672860, + "normalized_name": "famine way" + }, + { + "appid": 2672880, + "normalized_name": "biomeinoes" + }, + { + "appid": 2672900, + "normalized_name": "domino the little one" + }, + { + "appid": 2672970, + "normalized_name": "immortal love polar lights collector's" + }, + { + "appid": 2672980, + "normalized_name": "idyllic cats japan" + }, + { + "appid": 2672990, + "normalized_name": "the line td" + }, + { + "appid": 2673000, + "normalized_name": "christmas runner" + }, + { + "appid": 2673010, + "normalized_name": "sisyphus paradox" + }, + { + "appid": 2673020, + "normalized_name": "word relay" + }, + { + "appid": 2673060, + "normalized_name": "moi moi heroes" + }, + { + "appid": 2673080, + "normalized_name": "jurassic park classic games collection" + }, + { + "appid": 2673160, + "normalized_name": "shopping in a winter zombieland" + }, + { + "appid": 2673170, + "normalized_name": "深层宝藏 deep treasure" + }, + { + "appid": 2673210, + "normalized_name": "package unknown" + }, + { + "appid": 2673240, + "normalized_name": "sorcevival" + }, + { + "appid": 2673260, + "normalized_name": "run x gun" + }, + { + "appid": 2673310, + "normalized_name": "gacha fever" + }, + { + "appid": 2673330, + "normalized_name": "sees game" + }, + { + "appid": 2673370, + "normalized_name": "karakuri colosseum" + }, + { + "appid": 2673380, + "normalized_name": "og puzzlers synthwave boats" + }, + { + "appid": 2673430, + "normalized_name": "mini tank arena" + }, + { + "appid": 2673440, + "normalized_name": "rogue climber" + }, + { + "appid": 2673450, + "normalized_name": "mr. sanna clozz" + }, + { + "appid": 2673480, + "normalized_name": "infested grounds" + }, + { + "appid": 2673490, + "normalized_name": "seifuku kanojo" + }, + { + "appid": 2673530, + "normalized_name": "pathoblasta vs" + }, + { + "appid": 2673560, + "normalized_name": "wolf knight memoir" + }, + { + "appid": 2673570, + "normalized_name": "backgammon + mühle + dame" + }, + { + "appid": 2673590, + "normalized_name": "winter games challenge" + }, + { + "appid": 2673660, + "normalized_name": "sonar shock" + }, + { + "appid": 2673670, + "normalized_name": "cooling simulator" + }, + { + "appid": 2673690, + "normalized_name": "xmas clash" + }, + { + "appid": 2673700, + "normalized_name": "里山のおと 夏草こみち" + }, + { + "appid": 2673720, + "normalized_name": "nightscape city" + }, + { + "appid": 2673730, + "normalized_name": "a army base" + }, + { + "appid": 2673750, + "normalized_name": "shadowstorm" + }, + { + "appid": 2673760, + "normalized_name": "hockey legacy manager 24" + }, + { + "appid": 2673800, + "normalized_name": "baphomet" + }, + { + "appid": 2673860, + "normalized_name": "uki uki tengoku2" + }, + { + "appid": 2673870, + "normalized_name": "halloween online horror night" + }, + { + "appid": 2673890, + "normalized_name": "pteranodon 2 primal island" + }, + { + "appid": 2673910, + "normalized_name": "coma" + }, + { + "appid": 2673940, + "normalized_name": "dreamshot fantasia" + }, + { + "appid": 2673950, + "normalized_name": "the unvisited grandma" + }, + { + "appid": 2673990, + "normalized_name": "animal arena" + }, + { + "appid": 2674040, + "normalized_name": "nbody gravitation" + }, + { + "appid": 2674060, + "normalized_name": "downhill girl" + }, + { + "appid": 2674070, + "normalized_name": "the atlas mystery pc" + }, + { + "appid": 2674080, + "normalized_name": "gamebesh prop hunt" + }, + { + "appid": 2674120, + "normalized_name": "inari" + }, + { + "appid": 2674140, + "normalized_name": "a game´s tale" + }, + { + "appid": 2674190, + "normalized_name": "akai onna | 赤い女" + }, + { + "appid": 2674200, + "normalized_name": "mills of morris" + }, + { + "appid": 2674230, + "normalized_name": "i bring the chaos" + }, + { + "appid": 2674240, + "normalized_name": "jinni haunted house" + }, + { + "appid": 2674270, + "normalized_name": "cursed order" + }, + { + "appid": 2674280, + "normalized_name": "pa†hetic." + }, + { + "appid": 2674290, + "normalized_name": "kings call" + }, + { + "appid": 2674300, + "normalized_name": "bear jojo" + }, + { + "appid": 2674340, + "normalized_name": "school hero" + }, + { + "appid": 2674370, + "normalized_name": "sugar lust harem" + }, + { + "appid": 2674420, + "normalized_name": "cat on the desktop" + }, + { + "appid": 2674480, + "normalized_name": "space ops" + }, + { + "appid": 2674500, + "normalized_name": "taisho taxi service" + }, + { + "appid": 2674510, + "normalized_name": "terra avoider" + }, + { + "appid": 2674550, + "normalized_name": "electric alps" + }, + { + "appid": 2674580, + "normalized_name": "hitler my friend" + }, + { + "appid": 2674590, + "normalized_name": "beltmatic" + }, + { + "appid": 2674640, + "normalized_name": "the hydra experiment" + }, + { + "appid": 2674650, + "normalized_name": "fur squadron phoenix" + }, + { + "appid": 2674670, + "normalized_name": "the watch" + }, + { + "appid": 2674680, + "normalized_name": "encore" + }, + { + "appid": 2674740, + "normalized_name": "crystalkeepers tower defense" + }, + { + "appid": 2674760, + "normalized_name": "darklands the chapters" + }, + { + "appid": 2674810, + "normalized_name": "dragon's dogma 2 character creator & storage" + }, + { + "appid": 2674870, + "normalized_name": "don't shoot us" + }, + { + "appid": 2674930, + "normalized_name": "hentai tales sex apartment" + }, + { + "appid": 2674970, + "normalized_name": "devil slot machine" + }, + { + "appid": 2674990, + "normalized_name": "desolate realms" + }, + { + "appid": 2675270, + "normalized_name": "blood lily loop" + }, + { + "appid": 2675290, + "normalized_name": "lasers" + }, + { + "appid": 2675300, + "normalized_name": "family ties" + }, + { + "appid": 2675330, + "normalized_name": "watch your eggs! survival vr" + }, + { + "appid": 2675370, + "normalized_name": "zero king" + }, + { + "appid": 2675390, + "normalized_name": "shadow king" + }, + { + "appid": 2675400, + "normalized_name": "golf monday" + }, + { + "appid": 2675410, + "normalized_name": "dino dino – playful paleontology" + }, + { + "appid": 2675420, + "normalized_name": "cluck frenzy" + }, + { + "appid": 2675600, + "normalized_name": "gemaboy zero x" + }, + { + "appid": 2675610, + "normalized_name": "into the noid" + }, + { + "appid": 2675620, + "normalized_name": "僵尸禁地 朱丽叶" + }, + { + "appid": 2675630, + "normalized_name": "cats huddled together 挤在一起的猫猫们" + }, + { + "appid": 2675640, + "normalized_name": "chess gambit" + }, + { + "appid": 2675660, + "normalized_name": "gay sex adventures episode 1" + }, + { + "appid": 2675690, + "normalized_name": "single espresso" + }, + { + "appid": 2675700, + "normalized_name": "dark lessons" + }, + { + "appid": 2675820, + "normalized_name": "undead city" + }, + { + "appid": 2675850, + "normalized_name": "protoviolence" + }, + { + "appid": 2675900, + "normalized_name": "dear flower" + }, + { + "appid": 2676000, + "normalized_name": "combat mission final blitzkrieg" + }, + { + "appid": 2676010, + "normalized_name": "美少女專屬按摩師" + }, + { + "appid": 2676030, + "normalized_name": "runehaven" + }, + { + "appid": 2676040, + "normalized_name": "statera aurum" + }, + { + "appid": 2676080, + "normalized_name": "the quiet execution" + }, + { + "appid": 2676100, + "normalized_name": "up to gods" + }, + { + "appid": 2676110, + "normalized_name": "the crevice" + }, + { + "appid": 2676140, + "normalized_name": "the last catalyst" + }, + { + "appid": 2676150, + "normalized_name": "cheesecake cult unholy feast" + }, + { + "appid": 2676160, + "normalized_name": "arcade paradise vr" + }, + { + "appid": 2676180, + "normalized_name": "fog of war book one" + }, + { + "appid": 2676190, + "normalized_name": "ericanskinsmonsters" + }, + { + "appid": 2676210, + "normalized_name": "garmm adventurer vol.1" + }, + { + "appid": 2676220, + "normalized_name": "pigeon's mission" + }, + { + "appid": 2676270, + "normalized_name": "teo dove am skater 2" + }, + { + "appid": 2676290, + "normalized_name": "heroes of isekai" + }, + { + "appid": 2676340, + "normalized_name": "star deck" + }, + { + "appid": 2676390, + "normalized_name": "nexus defenders" + }, + { + "appid": 2676410, + "normalized_name": "miraculous paris under siege" + }, + { + "appid": 2676440, + "normalized_name": "glitch daddy" + }, + { + "appid": 2676450, + "normalized_name": "birdminton" + }, + { + "appid": 2676460, + "normalized_name": "nadyr" + }, + { + "appid": 2676470, + "normalized_name": "chiroterra" + }, + { + "appid": 2676520, + "normalized_name": "i'm a rocker!" + }, + { + "appid": 2676540, + "normalized_name": "brush burial" + }, + { + "appid": 2676580, + "normalized_name": "scp 087 b ue remake" + }, + { + "appid": 2676700, + "normalized_name": "deadly nightmare unwanted heritage" + }, + { + "appid": 2676750, + "normalized_name": "rave gazebo" + }, + { + "appid": 2676760, + "normalized_name": "半妖的卡米娅" + }, + { + "appid": 2676770, + "normalized_name": "basketball grand slam 2024" + }, + { + "appid": 2676790, + "normalized_name": "exphysia" + }, + { + "appid": 2676810, + "normalized_name": "poroto" + }, + { + "appid": 2676820, + "normalized_name": "无畏舰队:炮火战争(noah city rise of the conqueror)" + }, + { + "appid": 2676840, + "normalized_name": "no case should remain unsolved" + }, + { + "appid": 2676850, + "normalized_name": "挠痒女孩" + }, + { + "appid": 2676920, + "normalized_name": "thank you for sharing your world" + }, + { + "appid": 2676930, + "normalized_name": "rebel duet" + }, + { + "appid": 2676940, + "normalized_name": "casual desires" + }, + { + "appid": 2676950, + "normalized_name": "奥数答题 math olympiad" + }, + { + "appid": 2676960, + "normalized_name": "lost love island" + }, + { + "appid": 2676970, + "normalized_name": "royal romances cursed hearts collector's" + }, + { + "appid": 2676980, + "normalized_name": "to the basement" + }, + { + "appid": 2676990, + "normalized_name": "mighty knight legacy" + }, + { + "appid": 2677000, + "normalized_name": "rocket frog" + }, + { + "appid": 2677040, + "normalized_name": "真夜的居所 chanye's home" + }, + { + "appid": 2677140, + "normalized_name": "temple of causality" + }, + { + "appid": 2677150, + "normalized_name": "maze" + }, + { + "appid": 2677210, + "normalized_name": "project quad" + }, + { + "appid": 2677220, + "normalized_name": "stealth raider" + }, + { + "appid": 2677230, + "normalized_name": "fallen angels" + }, + { + "appid": 2677240, + "normalized_name": "astropanic" + }, + { + "appid": 2677280, + "normalized_name": "梦境世界" + }, + { + "appid": 2677310, + "normalized_name": "gridroad" + }, + { + "appid": 2677350, + "normalized_name": "ouija escape vr" + }, + { + "appid": 2677360, + "normalized_name": "the quest of the tiny hero" + }, + { + "appid": 2677370, + "normalized_name": "college sex episode 4" + }, + { + "appid": 2677400, + "normalized_name": "project bob" + }, + { + "appid": 2677460, + "normalized_name": "warship" + }, + { + "appid": 2677480, + "normalized_name": "beat the beats vr" + }, + { + "appid": 2677490, + "normalized_name": "失眠诊所" + }, + { + "appid": 2677620, + "normalized_name": "spider inferno" + }, + { + "appid": 2677640, + "normalized_name": "peasant royale" + }, + { + "appid": 2677650, + "normalized_name": "next floor" + }, + { + "appid": 2677660, + "normalized_name": "indiana jones and the great circle" + }, + { + "appid": 2677670, + "normalized_name": "horny holiday" + }, + { + "appid": 2677680, + "normalized_name": "goblin and coins ii the lost recipes" + }, + { + "appid": 2677690, + "normalized_name": "repunk" + }, + { + "appid": 2677720, + "normalized_name": "hot milf vr" + }, + { + "appid": 2677790, + "normalized_name": "bionics we will evolve" + }, + { + "appid": 2677800, + "normalized_name": "molly the werezompire" + }, + { + "appid": 2677830, + "normalized_name": "u sharp the unity coding learning game" + }, + { + "appid": 2677850, + "normalized_name": "reign down" + }, + { + "appid": 2677890, + "normalized_name": "hot mom wants sex" + }, + { + "appid": 2677910, + "normalized_name": "clearit 16" + }, + { + "appid": 2677920, + "normalized_name": "barbarous family secrets" + }, + { + "appid": 2677930, + "normalized_name": "sleepwalk" + }, + { + "appid": 2677940, + "normalized_name": "desk of desires vr office sex" + }, + { + "appid": 2677950, + "normalized_name": "rose bullet" + }, + { + "appid": 2677960, + "normalized_name": "waifu slots" + }, + { + "appid": 2677970, + "normalized_name": "intergalactic defenders" + }, + { + "appid": 2677980, + "normalized_name": "choppy waters" + }, + { + "appid": 2678050, + "normalized_name": "sins of treatment" + }, + { + "appid": 2678060, + "normalized_name": "inner darkness" + }, + { + "appid": 2678070, + "normalized_name": "phoenix 2" + }, + { + "appid": 2678080, + "normalized_name": "tides of tomorrow 🌊" + }, + { + "appid": 2678130, + "normalized_name": "infinite runner" + }, + { + "appid": 2678140, + "normalized_name": "ycom" + }, + { + "appid": 2678160, + "normalized_name": "pearls of atlantis the cove" + }, + { + "appid": 2678230, + "normalized_name": "nyctophobia fear the dark" + }, + { + "appid": 2678280, + "normalized_name": "operation food to gold" + }, + { + "appid": 2678290, + "normalized_name": "eternalgorhythm" + }, + { + "appid": 2678300, + "normalized_name": "rise of a legend" + }, + { + "appid": 2678330, + "normalized_name": "gaze of dread" + }, + { + "appid": 2678360, + "normalized_name": "moonbright" + }, + { + "appid": 2678410, + "normalized_name": "jax history repeats itself" + }, + { + "appid": 2678440, + "normalized_name": "the void between" + }, + { + "appid": 2678450, + "normalized_name": "ninja the lost legacy" + }, + { + "appid": 2678460, + "normalized_name": "detective dave" + }, + { + "appid": 2678480, + "normalized_name": "pixel fireplace" + }, + { + "appid": 2678540, + "normalized_name": "containment breach" + }, + { + "appid": 2678560, + "normalized_name": "gridmaster" + }, + { + "appid": 2678590, + "normalized_name": "god secret" + }, + { + "appid": 2678640, + "normalized_name": "朝露:境界旅程" + }, + { + "appid": 2678660, + "normalized_name": "magicarchitect_intodisaster" + }, + { + "appid": 2678670, + "normalized_name": "end of back world" + }, + { + "appid": 2678700, + "normalized_name": "timingspace" + }, + { + "appid": 2678710, + "normalized_name": "security control" + }, + { + "appid": 2678750, + "normalized_name": "psychological hacker 2044" + }, + { + "appid": 2678760, + "normalized_name": "natural craft" + }, + { + "appid": 2678790, + "normalized_name": "ilavath battle arenas" + }, + { + "appid": 2678800, + "normalized_name": "twista" + }, + { + "appid": 2678820, + "normalized_name": "vector strike" + }, + { + "appid": 2678830, + "normalized_name": "桃源村日志(halcyon days at taoyuan)" + }, + { + "appid": 2678860, + "normalized_name": "nope rope" + }, + { + "appid": 2678880, + "normalized_name": "your shots count" + }, + { + "appid": 2678910, + "normalized_name": "mermaid tale" + }, + { + "appid": 2678940, + "normalized_name": "avo escape space" + }, + { + "appid": 2678950, + "normalized_name": "abandoned cabins in the woods" + }, + { + "appid": 2678960, + "normalized_name": "divide by sheep 2" + }, + { + "appid": 2678970, + "normalized_name": "detective minerva case" + }, + { + "appid": 2678990, + "normalized_name": "minami lane" + }, + { + "appid": 2679000, + "normalized_name": "capsule cat's big space adventure" + }, + { + "appid": 2679040, + "normalized_name": "indomitable blade" + }, + { + "appid": 2679060, + "normalized_name": "失落的猫猫 lost cat" + }, + { + "appid": 2679070, + "normalized_name": "ironhive" + }, + { + "appid": 2679130, + "normalized_name": "the perplexing orb bounce n' roll" + }, + { + "appid": 2679140, + "normalized_name": "sabbath" + }, + { + "appid": 2679200, + "normalized_name": "幸存者少女/survivor girls" + }, + { + "appid": 2679210, + "normalized_name": "survival fantasy" + }, + { + "appid": 2679220, + "normalized_name": "blades and bullets" + }, + { + "appid": 2679230, + "normalized_name": "tavu" + }, + { + "appid": 2679260, + "normalized_name": "impact trial first encounter" + }, + { + "appid": 2679270, + "normalized_name": "rutabaga desert storm" + }, + { + "appid": 2679310, + "normalized_name": "guildmestar" + }, + { + "appid": 2679320, + "normalized_name": "paranormal capture investigation" + }, + { + "appid": 2679340, + "normalized_name": "grapple tanks" + }, + { + "appid": 2679350, + "normalized_name": "japanese milf" + }, + { + "appid": 2679380, + "normalized_name": "adventure mansion" + }, + { + "appid": 2679430, + "normalized_name": "project parallel" + }, + { + "appid": 2679460, + "normalized_name": "metaphor refantazio" + }, + { + "appid": 2679500, + "normalized_name": "plunder ball" + }, + { + "appid": 2679520, + "normalized_name": "echolight" + }, + { + "appid": 2679590, + "normalized_name": "chaperone" + }, + { + "appid": 2679600, + "normalized_name": "rings of eden" + }, + { + "appid": 2679610, + "normalized_name": "big d randy" + }, + { + "appid": 2679620, + "normalized_name": "cat short way" + }, + { + "appid": 2679640, + "normalized_name": "mozarella hills" + }, + { + "appid": 2679650, + "normalized_name": "she could fly documentary escape game" + }, + { + "appid": 2679660, + "normalized_name": "traveler's refrain" + }, + { + "appid": 2679690, + "normalized_name": "age of advent" + }, + { + "appid": 2679710, + "normalized_name": "mages arena" + }, + { + "appid": 2679730, + "normalized_name": "scourgefall" + }, + { + "appid": 2679740, + "normalized_name": "" + }, + { + "appid": 2679760, + "normalized_name": "the ampoule" + }, + { + "appid": 2679780, + "normalized_name": "p.p.sh" + }, + { + "appid": 2679790, + "normalized_name": "baron" + }, + { + "appid": 2679830, + "normalized_name": "crowned in steel" + }, + { + "appid": 2679840, + "normalized_name": "neon auto party" + }, + { + "appid": 2679850, + "normalized_name": "cynabre" + }, + { + "appid": 2679860, + "normalized_name": "space miner idle adventures" + }, + { + "appid": 2679870, + "normalized_name": "shattered echoes" + }, + { + "appid": 2679880, + "normalized_name": "hardaf" + }, + { + "appid": 2679890, + "normalized_name": "social status life simulator" + }, + { + "appid": 2679960, + "normalized_name": "big ball sports" + }, + { + "appid": 2679980, + "normalized_name": "suika dish" + }, + { + "appid": 2680010, + "normalized_name": "the first berserker khazan" + }, + { + "appid": 2680030, + "normalized_name": "生命火热 / desperate 1" + }, + { + "appid": 2680040, + "normalized_name": "polydestroyer" + }, + { + "appid": 2680050, + "normalized_name": "new earth (miztyl)" + }, + { + "appid": 2680060, + "normalized_name": "spectral synergy" + }, + { + "appid": 2680080, + "normalized_name": "minitechno" + }, + { + "appid": 2680100, + "normalized_name": "orisha" + }, + { + "appid": 2680140, + "normalized_name": "i was turned into a sword" + }, + { + "appid": 2680190, + "normalized_name": "rails across america" + }, + { + "appid": 2680200, + "normalized_name": "三千大世界(three thousand worlds)" + }, + { + "appid": 2680250, + "normalized_name": "holy maid academy" + }, + { + "appid": 2680280, + "normalized_name": "paperhead" + }, + { + "appid": 2680310, + "normalized_name": "oriental gold golden trains slots" + }, + { + "appid": 2680330, + "normalized_name": "hunterx code name t" + }, + { + "appid": 2680370, + "normalized_name": "splat!" + }, + { + "appid": 2680380, + "normalized_name": "hyke northern light(s)" + }, + { + "appid": 2680390, + "normalized_name": "15in1 solitaire" + }, + { + "appid": 2680410, + "normalized_name": "taiko frenzy" + }, + { + "appid": 2680420, + "normalized_name": "secret with sophia lite version" + }, + { + "appid": 2680440, + "normalized_name": "monowave" + }, + { + "appid": 2680510, + "normalized_name": "combat alchemy autobattler" + }, + { + "appid": 2680520, + "normalized_name": "nathan morgan dilemma" + }, + { + "appid": 2680550, + "normalized_name": "hollywood animal" + }, + { + "appid": 2680610, + "normalized_name": "universal power" + }, + { + "appid": 2680680, + "normalized_name": "outside the door" + }, + { + "appid": 2680700, + "normalized_name": "malovmodernart virtual museum" + }, + { + "appid": 2680800, + "normalized_name": "twizzle puzzle dogs" + }, + { + "appid": 2680810, + "normalized_name": "incarnation" + }, + { + "appid": 2680830, + "normalized_name": "写给妖精的情诗(love poem written for a fairy、妖精への情詩)" + }, + { + "appid": 2680840, + "normalized_name": "monster girl conquest records battle orc" + }, + { + "appid": 2680870, + "normalized_name": "ssr" + }, + { + "appid": 2681030, + "normalized_name": "outbound" + }, + { + "appid": 2681050, + "normalized_name": "孤军深入" + }, + { + "appid": 2681060, + "normalized_name": "荆棘落尘埃 dust on thorn" + }, + { + "appid": 2681100, + "normalized_name": "cyberpunk sex" + }, + { + "appid": 2681110, + "normalized_name": "girl gunner 枪之少女" + }, + { + "appid": 2681120, + "normalized_name": "guardgrave" + }, + { + "appid": 2681180, + "normalized_name": "multiplayer cavemen" + }, + { + "appid": 2681220, + "normalized_name": "who let the frog out" + }, + { + "appid": 2681230, + "normalized_name": "operation “kyiv”" + }, + { + "appid": 2681240, + "normalized_name": "in her head" + }, + { + "appid": 2681260, + "normalized_name": "smash and bash monsters" + }, + { + "appid": 2681270, + "normalized_name": "the void project" + }, + { + "appid": 2681290, + "normalized_name": "lords of nysera" + }, + { + "appid": 2681310, + "normalized_name": "my tsundere femboy" + }, + { + "appid": 2681330, + "normalized_name": "advaria chronicles of immortality" + }, + { + "appid": 2681340, + "normalized_name": "four hunters survivor" + }, + { + "appid": 2681350, + "normalized_name": "duck duck" + }, + { + "appid": 2681490, + "normalized_name": "horny housewives" + }, + { + "appid": 2681500, + "normalized_name": "garbageman" + }, + { + "appid": 2681530, + "normalized_name": "late night drift" + }, + { + "appid": 2681560, + "normalized_name": "train station project" + }, + { + "appid": 2681570, + "normalized_name": "vagrient" + }, + { + "appid": 2681580, + "normalized_name": "platformer" + }, + { + "appid": 2681590, + "normalized_name": "life of thife" + }, + { + "appid": 2681640, + "normalized_name": "light up the sky" + }, + { + "appid": 2681650, + "normalized_name": "ice land" + }, + { + "appid": 2681660, + "normalized_name": "bwudaling da fight for da bwudahood" + }, + { + "appid": 2681690, + "normalized_name": "creatures" + }, + { + "appid": 2681730, + "normalized_name": "magical warrior diamond heart" + }, + { + "appid": 2681740, + "normalized_name": "touch your eyes" + }, + { + "appid": 2681760, + "normalized_name": "virar" + }, + { + "appid": 2681770, + "normalized_name": "an_empty_island浮岛绘卷" + }, + { + "appid": 2681870, + "normalized_name": "kidbash super legend" + }, + { + "appid": 2681890, + "normalized_name": "坦克队长 高清畅玩版" + }, + { + "appid": 2681920, + "normalized_name": "末世孤镇 doomsday lonely town" + }, + { + "appid": 2681930, + "normalized_name": "拾光酒館" + }, + { + "appid": 2681940, + "normalized_name": "crush at first sight🍓" + }, + { + "appid": 2681950, + "normalized_name": "boba bar bubble tea tycoon" + }, + { + "appid": 2681980, + "normalized_name": "finite state automaton challenges 2" + }, + { + "appid": 2682120, + "normalized_name": "movie cinema simulator" + }, + { + "appid": 2682180, + "normalized_name": "battle aces" + }, + { + "appid": 2682200, + "normalized_name": "trope tales" + }, + { + "appid": 2682210, + "normalized_name": "clostrophobia vol 1" + }, + { + "appid": 2682220, + "normalized_name": "bluethroot" + }, + { + "appid": 2682260, + "normalized_name": "barber party" + }, + { + "appid": 2682270, + "normalized_name": "pight" + }, + { + "appid": 2682300, + "normalized_name": "true reporter. mystery of mistwood" + }, + { + "appid": 2682370, + "normalized_name": "o holy knight" + }, + { + "appid": 2682380, + "normalized_name": "extinction day" + }, + { + "appid": 2682460, + "normalized_name": "pen pals" + }, + { + "appid": 2682470, + "normalized_name": "blocky ascent" + }, + { + "appid": 2682480, + "normalized_name": "cosmic blastards" + }, + { + "appid": 2682490, + "normalized_name": "in style" + }, + { + "appid": 2682510, + "normalized_name": "i commissioned some abstract bunnies" + }, + { + "appid": 2682540, + "normalized_name": "all about the high score" + }, + { + "appid": 2682550, + "normalized_name": "deepmess" + }, + { + "appid": 2682570, + "normalized_name": "魔方谏言" + }, + { + "appid": 2682580, + "normalized_name": "duckside" + }, + { + "appid": 2682600, + "normalized_name": "undergod" + }, + { + "appid": 2682630, + "normalized_name": "timeshift detective" + }, + { + "appid": 2682650, + "normalized_name": "riders of the wild" + }, + { + "appid": 2682680, + "normalized_name": "color fusion fever" + }, + { + "appid": 2682690, + "normalized_name": "white lilies code" + }, + { + "appid": 2682800, + "normalized_name": "hidden world 7 top down 3d" + }, + { + "appid": 2682810, + "normalized_name": "hidden world 8 top down 3d" + }, + { + "appid": 2682820, + "normalized_name": "hidden world 9 top down 3d" + }, + { + "appid": 2682850, + "normalized_name": "i am reiko" + }, + { + "appid": 2682860, + "normalized_name": "the dark horde" + }, + { + "appid": 2682900, + "normalized_name": "nova historia" + }, + { + "appid": 2682910, + "normalized_name": "the spellswapper" + }, + { + "appid": 2682950, + "normalized_name": "hotel hermes" + }, + { + "appid": 2682960, + "normalized_name": "super cave run" + }, + { + "appid": 2682980, + "normalized_name": "the bunny graveyard ii" + }, + { + "appid": 2683030, + "normalized_name": "deathwish enforcers special" + }, + { + "appid": 2683060, + "normalized_name": "synthetic soul" + }, + { + "appid": 2683100, + "normalized_name": "to the hall of the mountain king" + }, + { + "appid": 2683110, + "normalized_name": "mushroom age" + }, + { + "appid": 2683150, + "normalized_name": "ale & tale tavern" + }, + { + "appid": 2683170, + "normalized_name": "spacefront" + }, + { + "appid": 2683180, + "normalized_name": "ball of poo" + }, + { + "appid": 2683200, + "normalized_name": "the paupers" + }, + { + "appid": 2683210, + "normalized_name": "watermelon challenge" + }, + { + "appid": 2683250, + "normalized_name": "falnarion tactics iii" + }, + { + "appid": 2683300, + "normalized_name": "兽食欲 链接 animal appetite:link" + }, + { + "appid": 2683320, + "normalized_name": "project aphotic" + }, + { + "appid": 2683330, + "normalized_name": "paradise inc" + }, + { + "appid": 2683350, + "normalized_name": "go some balls" + }, + { + "appid": 2683360, + "normalized_name": "error_boy.exe" + }, + { + "appid": 2683370, + "normalized_name": "telecollision" + }, + { + "appid": 2683490, + "normalized_name": "glimpse" + }, + { + "appid": 2683510, + "normalized_name": "打字战斗" + }, + { + "appid": 2683520, + "normalized_name": "bat blast!" + }, + { + "appid": 2683550, + "normalized_name": "你很聪明吗?" + }, + { + "appid": 2683560, + "normalized_name": "alian" + }, + { + "appid": 2683570, + "normalized_name": "push the cat with wasd" + }, + { + "appid": 2683580, + "normalized_name": "the darkcity" + }, + { + "appid": 2683590, + "normalized_name": "lymbus" + }, + { + "appid": 2683610, + "normalized_name": "pizza delivery [zebaxx]" + }, + { + "appid": 2683620, + "normalized_name": "circle of swords" + }, + { + "appid": 2683640, + "normalized_name": "sword n' dragons" + }, + { + "appid": 2683680, + "normalized_name": "witch academy another battle" + }, + { + "appid": 2683700, + "normalized_name": "hieroglyph quest the amarna enigma" + }, + { + "appid": 2683710, + "normalized_name": "cerebral clash" + }, + { + "appid": 2683740, + "normalized_name": "the sireen" + }, + { + "appid": 2683760, + "normalized_name": "blouncy" + }, + { + "appid": 2683800, + "normalized_name": "hentai milena" + }, + { + "appid": 2683810, + "normalized_name": "danny's descent" + }, + { + "appid": 2683960, + "normalized_name": "weapon shop decillionaire" + }, + { + "appid": 2683970, + "normalized_name": "ground parkour first mission" + }, + { + "appid": 2684010, + "normalized_name": "super laura up" + }, + { + "appid": 2684020, + "normalized_name": "grav1ty" + }, + { + "appid": 2684030, + "normalized_name": "happy hour hero" + }, + { + "appid": 2684070, + "normalized_name": "galaxy at war" + }, + { + "appid": 2684080, + "normalized_name": "battletubers" + }, + { + "appid": 2684090, + "normalized_name": "spin up" + }, + { + "appid": 2684100, + "normalized_name": "real time attack" + }, + { + "appid": 2684120, + "normalized_name": "recon quest" + }, + { + "appid": 2684130, + "normalized_name": "gravity lab" + }, + { + "appid": 2684140, + "normalized_name": "hope" + }, + { + "appid": 2684200, + "normalized_name": "splat arena" + }, + { + "appid": 2684220, + "normalized_name": "heartwell" + }, + { + "appid": 2684230, + "normalized_name": "bubble ball!" + }, + { + "appid": 2684240, + "normalized_name": "symbio" + }, + { + "appid": 2684260, + "normalized_name": "vr waifu muchan" + }, + { + "appid": 2684280, + "normalized_name": "水箱" + }, + { + "appid": 2684290, + "normalized_name": "danger drone" + }, + { + "appid": 2684300, + "normalized_name": "just skill shooter 2" + }, + { + "appid": 2684310, + "normalized_name": "dangerous fightcia" + }, + { + "appid": 2684340, + "normalized_name": "happy telepathy" + }, + { + "appid": 2684360, + "normalized_name": "planet scanner" + }, + { + "appid": 2684370, + "normalized_name": "dinosaur world" + }, + { + "appid": 2684390, + "normalized_name": "fantasy dungeon" + }, + { + "appid": 2684400, + "normalized_name": "just keep running" + }, + { + "appid": 2684410, + "normalized_name": "星际孤狼" + }, + { + "appid": 2684420, + "normalized_name": "ball pit king 3d" + }, + { + "appid": 2684450, + "normalized_name": "buns bunny survivor" + }, + { + "appid": 2684470, + "normalized_name": "lta light years! thrusters! action!" + }, + { + "appid": 2684500, + "normalized_name": "alpha league" + }, + { + "appid": 2684510, + "normalized_name": "cards of divinity" + }, + { + "appid": 2684520, + "normalized_name": "conjury" + }, + { + "appid": 2684530, + "normalized_name": "黑暗之刃2 前传" + }, + { + "appid": 2684550, + "normalized_name": "work in progress" + }, + { + "appid": 2684560, + "normalized_name": "duck run" + }, + { + "appid": 2684580, + "normalized_name": "elumin" + }, + { + "appid": 2684620, + "normalized_name": "virtual real fight" + }, + { + "appid": 2684630, + "normalized_name": "endacopia" + }, + { + "appid": 2684650, + "normalized_name": "codex" + }, + { + "appid": 2684720, + "normalized_name": "they are hundreds prepped" + }, + { + "appid": 2684740, + "normalized_name": "traitor" + }, + { + "appid": 2684760, + "normalized_name": "evil mountains" + }, + { + "appid": 2684780, + "normalized_name": "chromatic isle" + }, + { + "appid": 2684790, + "normalized_name": "william and sly classic collection" + }, + { + "appid": 2684800, + "normalized_name": "shaylushay treasure expedition" + }, + { + "appid": 2684830, + "normalized_name": "alchemy frogs" + }, + { + "appid": 2684840, + "normalized_name": "felbound" + }, + { + "appid": 2684850, + "normalized_name": "multiplayer bots" + }, + { + "appid": 2684930, + "normalized_name": "truffle" + }, + { + "appid": 2684940, + "normalized_name": "the piece" + }, + { + "appid": 2684950, + "normalized_name": "colorful katana" + }, + { + "appid": 2685030, + "normalized_name": "drum legend" + }, + { + "appid": 2685060, + "normalized_name": "雷剑传说" + }, + { + "appid": 2685070, + "normalized_name": "world war rome free strategy game" + }, + { + "appid": 2685090, + "normalized_name": "ufouria the saga 2" + }, + { + "appid": 2685150, + "normalized_name": "ace racers sp" + }, + { + "appid": 2685160, + "normalized_name": "ball coin" + }, + { + "appid": 2685170, + "normalized_name": "dice battle" + }, + { + "appid": 2685180, + "normalized_name": "fresh hell" + }, + { + "appid": 2685200, + "normalized_name": "where christmas elves 圣诞精灵在哪里" + }, + { + "appid": 2685210, + "normalized_name": "where jellyfish 水母在哪里" + }, + { + "appid": 2685220, + "normalized_name": "where pandas 熊猫在哪里" + }, + { + "appid": 2685230, + "normalized_name": "where sacabamba aspises 萨卡班甲鱼在哪里" + }, + { + "appid": 2685240, + "normalized_name": "where cats 猫咪在哪里" + }, + { + "appid": 2685250, + "normalized_name": "where rabbits 兔子在哪里" + }, + { + "appid": 2685260, + "normalized_name": "where ferrets 雪貂在哪里" + }, + { + "appid": 2685270, + "normalized_name": "where foxes 狐狸在哪里" + }, + { + "appid": 2685280, + "normalized_name": "where kiwis 几维鸟在哪里" + }, + { + "appid": 2685290, + "normalized_name": "where ghost cats 幽咪在哪里" + }, + { + "appid": 2685300, + "normalized_name": "rybot" + }, + { + "appid": 2685320, + "normalized_name": "one more day" + }, + { + "appid": 2685350, + "normalized_name": "poor artifact maker" + }, + { + "appid": 2685360, + "normalized_name": "remove 범죄는 흔적을 남긴다" + }, + { + "appid": 2685370, + "normalized_name": "meowmunitions" + }, + { + "appid": 2685380, + "normalized_name": "chairs" + }, + { + "appid": 2685390, + "normalized_name": "calamities in the dark" + }, + { + "appid": 2685410, + "normalized_name": "speedus shedding speed card" + }, + { + "appid": 2685420, + "normalized_name": "tunstan" + }, + { + "appid": 2685450, + "normalized_name": "happy color links" + }, + { + "appid": 2685480, + "normalized_name": "時巡る宝石精霊" + }, + { + "appid": 2685490, + "normalized_name": "detective hayseed the cloning madness" + }, + { + "appid": 2685500, + "normalized_name": "falling with ice phoenix!" + }, + { + "appid": 2685520, + "normalized_name": "to the tavern" + }, + { + "appid": 2685550, + "normalized_name": "snaketris rescue 'em all" + }, + { + "appid": 2685570, + "normalized_name": "plus ultra legado" + }, + { + "appid": 2685590, + "normalized_name": "triggerheart exelica" + }, + { + "appid": 2685600, + "normalized_name": "my confounding cat is criminally cute!" + }, + { + "appid": 2685610, + "normalized_name": "wanting wings" + }, + { + "appid": 2685620, + "normalized_name": "反转21克" + }, + { + "appid": 2685630, + "normalized_name": "sling puzzle golf master" + }, + { + "appid": 2685670, + "normalized_name": "lines on sides" + }, + { + "appid": 2685760, + "normalized_name": "team disorder special" + }, + { + "appid": 2685770, + "normalized_name": "idle progress" + }, + { + "appid": 2685780, + "normalized_name": "seven little spider kittens" + }, + { + "appid": 2685810, + "normalized_name": "micro macro farm" + }, + { + "appid": 2685840, + "normalized_name": "pastel☆parade" + }, + { + "appid": 2685850, + "normalized_name": "hoku shrine" + }, + { + "appid": 2685900, + "normalized_name": "mind over magnet" + }, + { + "appid": 2686020, + "normalized_name": "faith in despair" + }, + { + "appid": 2686040, + "normalized_name": "deadly survival" + }, + { + "appid": 2686060, + "normalized_name": "candle daemon" + }, + { + "appid": 2686080, + "normalized_name": "sad satan" + }, + { + "appid": 2686110, + "normalized_name": "unheim" + }, + { + "appid": 2686120, + "normalized_name": "inka aventura saga de pachakutiq" + }, + { + "appid": 2686250, + "normalized_name": "morels the hunt 2" + }, + { + "appid": 2686260, + "normalized_name": "grid tweaker" + }, + { + "appid": 2686320, + "normalized_name": "sexy iron maidens" + }, + { + "appid": 2686330, + "normalized_name": "noclip" + }, + { + "appid": 2686350, + "normalized_name": "home defender" + }, + { + "appid": 2686360, + "normalized_name": "oh darling! i hate to tell you this..." + }, + { + "appid": 2686400, + "normalized_name": "dipets" + }, + { + "appid": 2686480, + "normalized_name": "feline shenanigans" + }, + { + "appid": 2686500, + "normalized_name": "please leave me alone i need to poop" + }, + { + "appid": 2686520, + "normalized_name": "more than human" + }, + { + "appid": 2686570, + "normalized_name": "waltz and jam" + }, + { + "appid": 2686580, + "normalized_name": "trinity survivors" + }, + { + "appid": 2686590, + "normalized_name": "speak of the devil i a deathly proposition" + }, + { + "appid": 2686630, + "normalized_name": "voyagers of nera" + }, + { + "appid": 2686640, + "normalized_name": "the mouse the merrier" + }, + { + "appid": 2686670, + "normalized_name": "hide or sex" + }, + { + "appid": 2686680, + "normalized_name": "home" + }, + { + "appid": 2686690, + "normalized_name": "suika shapes" + }, + { + "appid": 2686720, + "normalized_name": "宿主ガードマン host security guard" + }, + { + "appid": 2686740, + "normalized_name": "divergence" + }, + { + "appid": 2686750, + "normalized_name": "keep up" + }, + { + "appid": 2686770, + "normalized_name": "デジプラコレクション まるごと鉄道!ミニ ~jr西日本編~" + }, + { + "appid": 2686780, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.13「黄昏は瑠璃の追憶」" + }, + { + "appid": 2686790, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.14「螺旋の棺殺人事件」" + }, + { + "appid": 2686810, + "normalized_name": "dimlight dungeon" + }, + { + "appid": 2686820, + "normalized_name": "isekizima ruins and tails journey" + }, + { + "appid": 2686850, + "normalized_name": "tochos vs. brokens" + }, + { + "appid": 2686870, + "normalized_name": "galaxy legion apotheosis" + }, + { + "appid": 2686900, + "normalized_name": "churn vector" + }, + { + "appid": 2686910, + "normalized_name": "任侠" + }, + { + "appid": 2686930, + "normalized_name": "boo's there?" + }, + { + "appid": 2686940, + "normalized_name": "tower of the dragon" + }, + { + "appid": 2686950, + "normalized_name": "byte hack" + }, + { + "appid": 2686960, + "normalized_name": "shatterbound" + }, + { + "appid": 2686980, + "normalized_name": "planet suika" + }, + { + "appid": 2686990, + "normalized_name": "the maze contract" + }, + { + "appid": 2687000, + "normalized_name": "no sleep for sole" + }, + { + "appid": 2687040, + "normalized_name": "9cat saga" + }, + { + "appid": 2687080, + "normalized_name": "gentle female boss 温柔女上司" + }, + { + "appid": 2687110, + "normalized_name": "开局抽取超级天赋" + }, + { + "appid": 2687130, + "normalized_name": "aculeata" + }, + { + "appid": 2687140, + "normalized_name": "异境迷途 epic of tarot" + }, + { + "appid": 2687150, + "normalized_name": "迷阵追缉" + }, + { + "appid": 2687160, + "normalized_name": "notanote" + }, + { + "appid": 2687190, + "normalized_name": "100 christmas cats" + }, + { + "appid": 2687200, + "normalized_name": "100 london cats" + }, + { + "appid": 2687220, + "normalized_name": "create the drops of god the ambrosia" + }, + { + "appid": 2687250, + "normalized_name": "rifa" + }, + { + "appid": 2687280, + "normalized_name": "red's ascent" + }, + { + "appid": 2687300, + "normalized_name": "aarik and the ruined kingdom" + }, + { + "appid": 2687370, + "normalized_name": "heroes of higher realms" + }, + { + "appid": 2687390, + "normalized_name": "hellsting" + }, + { + "appid": 2687410, + "normalized_name": "ライブピクト" + }, + { + "appid": 2687470, + "normalized_name": "code of desire" + }, + { + "appid": 2687490, + "normalized_name": "super drunken guy" + }, + { + "appid": 2687500, + "normalized_name": "tails of war" + }, + { + "appid": 2687510, + "normalized_name": "centrist" + }, + { + "appid": 2687530, + "normalized_name": "fairy carrots" + }, + { + "appid": 2687540, + "normalized_name": "gateway to the kulikovo field the battle of yepifan" + }, + { + "appid": 2687590, + "normalized_name": "sanctuary in time" + }, + { + "appid": 2687600, + "normalized_name": "doppelgänger" + }, + { + "appid": 2687610, + "normalized_name": "walrus run" + }, + { + "appid": 2687650, + "normalized_name": "y2k directive" + }, + { + "appid": 2687680, + "normalized_name": "barrhell" + }, + { + "appid": 2687690, + "normalized_name": "stranded on an island" + }, + { + "appid": 2687700, + "normalized_name": "lost in dread" + }, + { + "appid": 2687820, + "normalized_name": "stoicscape" + }, + { + "appid": 2687830, + "normalized_name": "backstage murdered sleep" + }, + { + "appid": 2687850, + "normalized_name": "awa 2024" + }, + { + "appid": 2687940, + "normalized_name": "slot shots pinball" + }, + { + "appid": 2687950, + "normalized_name": "shattered kingdoms" + }, + { + "appid": 2687960, + "normalized_name": "desolate city last show" + }, + { + "appid": 2687970, + "normalized_name": "tribes 3 rivals" + }, + { + "appid": 2687990, + "normalized_name": "the black guards of odom desert town prison" + }, + { + "appid": 2688000, + "normalized_name": "jump froggy! jump!" + }, + { + "appid": 2688010, + "normalized_name": "tretis" + }, + { + "appid": 2688030, + "normalized_name": "serve the cups" + }, + { + "appid": 2688100, + "normalized_name": "token town" + }, + { + "appid": 2688110, + "normalized_name": "the wizard party" + }, + { + "appid": 2688140, + "normalized_name": "amidst the haze" + }, + { + "appid": 2688180, + "normalized_name": "hyperfield" + }, + { + "appid": 2688190, + "normalized_name": "xenowild survival beyond" + }, + { + "appid": 2688210, + "normalized_name": "ukraine war 2022" + }, + { + "appid": 2688370, + "normalized_name": "scavenger vr" + }, + { + "appid": 2688380, + "normalized_name": "东北在逃青年" + }, + { + "appid": 2688390, + "normalized_name": "今、私たちの学校は..." + }, + { + "appid": 2688400, + "normalized_name": "you draw i guess" + }, + { + "appid": 2688410, + "normalized_name": "tales from the herd" + }, + { + "appid": 2688430, + "normalized_name": "grimchester needs a doctor" + }, + { + "appid": 2688440, + "normalized_name": "fimbul's gemboree" + }, + { + "appid": 2688480, + "normalized_name": "starwinds" + }, + { + "appid": 2688520, + "normalized_name": "hrumka" + }, + { + "appid": 2688530, + "normalized_name": "rank · boss · bullets" + }, + { + "appid": 2688570, + "normalized_name": "the inn sanity" + }, + { + "appid": 2688600, + "normalized_name": "descent from arkov's tower prologue" + }, + { + "appid": 2688610, + "normalized_name": "forgotten knight" + }, + { + "appid": 2688620, + "normalized_name": "temporarily" + }, + { + "appid": 2688650, + "normalized_name": "完美細胞計畫" + }, + { + "appid": 2688680, + "normalized_name": "魔塔少女(girls of the tower)" + }, + { + "appid": 2688700, + "normalized_name": "love around ladies college" + }, + { + "appid": 2688720, + "normalized_name": "hidden cats magic forest" + }, + { + "appid": 2688730, + "normalized_name": "reckless rally" + }, + { + "appid": 2688750, + "normalized_name": "genocide for future" + }, + { + "appid": 2688780, + "normalized_name": "odd town" + }, + { + "appid": 2688790, + "normalized_name": "happy wonderland solitaire" + }, + { + "appid": 2688890, + "normalized_name": "ufo henfield" + }, + { + "appid": 2688900, + "normalized_name": "super algebrawl" + }, + { + "appid": 2688930, + "normalized_name": "legend of egypt jewels of the gods" + }, + { + "appid": 2688940, + "normalized_name": "buzz cut simulation" + }, + { + "appid": 2688950, + "normalized_name": "planet coaster 2" + }, + { + "appid": 2688960, + "normalized_name": "eternity's echo patient zero" + }, + { + "appid": 2688980, + "normalized_name": "the world has gone" + }, + { + "appid": 2688990, + "normalized_name": "gate warfare" + }, + { + "appid": 2689000, + "normalized_name": "lost in hieroglyphs a hidden objects expedition" + }, + { + "appid": 2689060, + "normalized_name": "nordland mahjongg" + }, + { + "appid": 2689090, + "normalized_name": "would you sell your soul" + }, + { + "appid": 2689120, + "normalized_name": "gladio mori" + }, + { + "appid": 2689130, + "normalized_name": "ciphercraft cyber guardian introduction" + }, + { + "appid": 2689200, + "normalized_name": "skuf simulator" + }, + { + "appid": 2689220, + "normalized_name": "no worries" + }, + { + "appid": 2689230, + "normalized_name": "furry backrooms" + }, + { + "appid": 2689380, + "normalized_name": "pirate's money" + }, + { + "appid": 2689400, + "normalized_name": "it's all connected" + }, + { + "appid": 2689420, + "normalized_name": "breekha" + }, + { + "appid": 2689440, + "normalized_name": "破晓时分的书信 朝闻篇" + }, + { + "appid": 2689450, + "normalized_name": "obec" + }, + { + "appid": 2689460, + "normalized_name": "strange pong" + }, + { + "appid": 2689470, + "normalized_name": "cruel" + }, + { + "appid": 2689480, + "normalized_name": "christmas wonderland 14 collector's" + }, + { + "appid": 2689490, + "normalized_name": "phantom unit 999" + }, + { + "appid": 2689540, + "normalized_name": "elemental ascent" + }, + { + "appid": 2689590, + "normalized_name": "星域商旅" + }, + { + "appid": 2689600, + "normalized_name": "sos zombie survivors" + }, + { + "appid": 2689610, + "normalized_name": "trust no one" + }, + { + "appid": 2689630, + "normalized_name": "eternal spring vr" + }, + { + "appid": 2689640, + "normalized_name": "super cube 3d" + }, + { + "appid": 2689710, + "normalized_name": "emerald caravan" + }, + { + "appid": 2689770, + "normalized_name": "robot dragon eagle" + }, + { + "appid": 2689780, + "normalized_name": "giant wishes 2" + }, + { + "appid": 2689820, + "normalized_name": "the death focal" + }, + { + "appid": 2689850, + "normalized_name": "3つの無窮動 trois mouvements perpétuels" + }, + { + "appid": 2689870, + "normalized_name": "rekindling the flame" + }, + { + "appid": 2689880, + "normalized_name": "cyber story" + }, + { + "appid": 2689910, + "normalized_name": "rivals' duel" + }, + { + "appid": 2689920, + "normalized_name": "warspawn" + }, + { + "appid": 2689930, + "normalized_name": "detective instinct farewell my beloved" + }, + { + "appid": 2689950, + "normalized_name": "grave desecrator" + }, + { + "appid": 2689960, + "normalized_name": "rocket engineer" + }, + { + "appid": 2689970, + "normalized_name": "tower monster rush" + }, + { + "appid": 2690010, + "normalized_name": "handyman fantasy" + }, + { + "appid": 2690020, + "normalized_name": "king of throwing" + }, + { + "appid": 2690050, + "normalized_name": "orb in wonder" + }, + { + "appid": 2690080, + "normalized_name": "watson" + }, + { + "appid": 2690090, + "normalized_name": "seven second summer camp" + }, + { + "appid": 2690110, + "normalized_name": "waiting in the lime forest" + }, + { + "appid": 2690150, + "normalized_name": "molten winds open editon" + }, + { + "appid": 2690160, + "normalized_name": "三国:我是主公" + }, + { + "appid": 2690170, + "normalized_name": "左美人右佳丽 / a group of beauties surrounded me" + }, + { + "appid": 2690180, + "normalized_name": "西江船厂" + }, + { + "appid": 2690290, + "normalized_name": "24h stories the blackout" + }, + { + "appid": 2690570, + "normalized_name": "sprite wars" + }, + { + "appid": 2690580, + "normalized_name": "luminaria dark echoes" + }, + { + "appid": 2690610, + "normalized_name": "xelan force" + }, + { + "appid": 2690630, + "normalized_name": "ai.gears team tag battle" + }, + { + "appid": 2690680, + "normalized_name": "what games does your dad play 你老豆玩乜game" + }, + { + "appid": 2690700, + "normalized_name": "golden rails harvest of riddles" + }, + { + "appid": 2690760, + "normalized_name": "zopa" + }, + { + "appid": 2690770, + "normalized_name": "grandfather simulator" + }, + { + "appid": 2690780, + "normalized_name": "mad jyacer" + }, + { + "appid": 2690790, + "normalized_name": "christmas present" + }, + { + "appid": 2690800, + "normalized_name": "sex simulator vampires" + }, + { + "appid": 2690810, + "normalized_name": "hidden object secrets family revenge collector's" + }, + { + "appid": 2690820, + "normalized_name": "hidden object legends deadly love collector's" + }, + { + "appid": 2690830, + "normalized_name": "unrivaled heroes 2.5d brawler" + }, + { + "appid": 2690870, + "normalized_name": "rogue kingdoms" + }, + { + "appid": 2690890, + "normalized_name": "trivia crack world" + }, + { + "appid": 2690900, + "normalized_name": "time machine bronzeville" + }, + { + "appid": 2690950, + "normalized_name": "chushpan" + }, + { + "appid": 2690960, + "normalized_name": "piece link" + }, + { + "appid": 2690970, + "normalized_name": "垃圾桶军团" + }, + { + "appid": 2691010, + "normalized_name": "assembly line 2 mobile version" + }, + { + "appid": 2691020, + "normalized_name": "liminous" + }, + { + "appid": 2691050, + "normalized_name": "neongarten prologue" + }, + { + "appid": 2691070, + "normalized_name": "kill ai" + }, + { + "appid": 2691090, + "normalized_name": "14 overmind" + }, + { + "appid": 2691200, + "normalized_name": "tiny car mess" + }, + { + "appid": 2691220, + "normalized_name": "ara ara auntie incest" + }, + { + "appid": 2691240, + "normalized_name": "joe is not lost jigsaw landscapes" + }, + { + "appid": 2691250, + "normalized_name": "unreal kingdoms" + }, + { + "appid": 2691280, + "normalized_name": "raven's carnage" + }, + { + "appid": 2691340, + "normalized_name": "the christopher redemption i" + }, + { + "appid": 2691350, + "normalized_name": ".forty five" + }, + { + "appid": 2691360, + "normalized_name": "deckbuilder fantasy" + }, + { + "appid": 2691390, + "normalized_name": "smoking simulator" + }, + { + "appid": 2691410, + "normalized_name": "gossip & potions tales from the witch shop" + }, + { + "appid": 2691420, + "normalized_name": "magic labyrinth 3d" + }, + { + "appid": 2691430, + "normalized_name": "champions" + }, + { + "appid": 2691450, + "normalized_name": "giant hornet" + }, + { + "appid": 2691460, + "normalized_name": "mass invasion" + }, + { + "appid": 2691470, + "normalized_name": "lisa total investigation!" + }, + { + "appid": 2691490, + "normalized_name": "hypothetimania" + }, + { + "appid": 2691510, + "normalized_name": "rhythm station" + }, + { + "appid": 2691550, + "normalized_name": "parisyte" + }, + { + "appid": 2691560, + "normalized_name": "dark is the void" + }, + { + "appid": 2691580, + "normalized_name": "space garbage" + }, + { + "appid": 2691700, + "normalized_name": "28 babes later" + }, + { + "appid": 2691750, + "normalized_name": "beast collector" + }, + { + "appid": 2691760, + "normalized_name": "the chronicles of ezra blackwell episode 1 pappi's peril" + }, + { + "appid": 2691780, + "normalized_name": "reports from vera cruz" + }, + { + "appid": 2691790, + "normalized_name": "bubble chicken farm" + }, + { + "appid": 2691800, + "normalized_name": "luster beasts" + }, + { + "appid": 2691820, + "normalized_name": "mimic me" + }, + { + "appid": 2691830, + "normalized_name": "astra" + }, + { + "appid": 2691890, + "normalized_name": "zhulu chess" + }, + { + "appid": 2691900, + "normalized_name": "the little witch and the lost memories" + }, + { + "appid": 2691920, + "normalized_name": "molcollabo v2" + }, + { + "appid": 2691940, + "normalized_name": "celestium" + }, + { + "appid": 2691960, + "normalized_name": "cardboard battle tanks desk division" + }, + { + "appid": 2691980, + "normalized_name": "system override" + }, + { + "appid": 2692010, + "normalized_name": "five nights at backrooms waifu" + }, + { + "appid": 2692030, + "normalized_name": "valkyrie squad siege breakers" + }, + { + "appid": 2692040, + "normalized_name": "throneforge the fortress war" + }, + { + "appid": 2692160, + "normalized_name": "breadattack" + }, + { + "appid": 2692200, + "normalized_name": "scary in the journey" + }, + { + "appid": 2692210, + "normalized_name": "daldzah" + }, + { + "appid": 2692270, + "normalized_name": "bird of paradise" + }, + { + "appid": 2692280, + "normalized_name": "my ex future family season 2" + }, + { + "appid": 2692300, + "normalized_name": "cyber horny" + }, + { + "appid": 2692350, + "normalized_name": "phase one" + }, + { + "appid": 2692360, + "normalized_name": "うっかり婚~目覚めたら、ワケあり上司の妻でした~" + }, + { + "appid": 2692390, + "normalized_name": "my girls’ secrets" + }, + { + "appid": 2692420, + "normalized_name": "idlescape" + }, + { + "appid": 2692430, + "normalized_name": "historical fashion dress up" + }, + { + "appid": 2692440, + "normalized_name": "lovecraft" + }, + { + "appid": 2692450, + "normalized_name": "kurofune descobrimentos portugueses" + }, + { + "appid": 2692460, + "normalized_name": "escape the super nerdy dungeon w100 master" + }, + { + "appid": 2692560, + "normalized_name": "therapist simulator" + }, + { + "appid": 2692570, + "normalized_name": "sonder" + }, + { + "appid": 2692580, + "normalized_name": "scary mine vr" + }, + { + "appid": 2692600, + "normalized_name": "abondoned village" + }, + { + "appid": 2692610, + "normalized_name": "sunny beach girls" + }, + { + "appid": 2692620, + "normalized_name": "hazard pay" + }, + { + "appid": 2692640, + "normalized_name": "room" + }, + { + "appid": 2692650, + "normalized_name": "happy horny hell" + }, + { + "appid": 2692720, + "normalized_name": "og puzzlers kira maus" + }, + { + "appid": 2692730, + "normalized_name": "three wishes" + }, + { + "appid": 2692740, + "normalized_name": "swappy world" + }, + { + "appid": 2692750, + "normalized_name": "epic of brave" + }, + { + "appid": 2692760, + "normalized_name": "reharmony" + }, + { + "appid": 2692800, + "normalized_name": "i love you freddy" + }, + { + "appid": 2692860, + "normalized_name": "tickle magnet" + }, + { + "appid": 2692890, + "normalized_name": "castle of lord velimir" + }, + { + "appid": 2692950, + "normalized_name": "welcome to planet e1d0r4d0!" + }, + { + "appid": 2692960, + "normalized_name": "void guard" + }, + { + "appid": 2693060, + "normalized_name": "garten of banban 7" + }, + { + "appid": 2693070, + "normalized_name": "warpzone drifter 2" + }, + { + "appid": 2693130, + "normalized_name": "treachery" + }, + { + "appid": 2693160, + "normalized_name": "赛博撤锁" + }, + { + "appid": 2693200, + "normalized_name": "shadow strike street combat" + }, + { + "appid": 2693210, + "normalized_name": "hentai tales sex parlor report" + }, + { + "appid": 2693240, + "normalized_name": "moratorium don’t beat this game" + }, + { + "appid": 2693250, + "normalized_name": "way nd choice" + }, + { + "appid": 2693260, + "normalized_name": "we are sup" + }, + { + "appid": 2693320, + "normalized_name": "emerging tactical" + }, + { + "appid": 2693340, + "normalized_name": "dark forest" + }, + { + "appid": 2693350, + "normalized_name": "偷外卖模拟器(我在2083年的末世求生)" + }, + { + "appid": 2693360, + "normalized_name": "probot soccer" + }, + { + "appid": 2693370, + "normalized_name": "sorry" + }, + { + "appid": 2693380, + "normalized_name": "survival mission z" + }, + { + "appid": 2693400, + "normalized_name": "narava rpg" + }, + { + "appid": 2693410, + "normalized_name": "the reason for your smile" + }, + { + "appid": 2693450, + "normalized_name": "not burned evil" + }, + { + "appid": 2693460, + "normalized_name": "christmas nightmare" + }, + { + "appid": 2693470, + "normalized_name": "journey to the wand" + }, + { + "appid": 2693480, + "normalized_name": "color splash animals" + }, + { + "appid": 2693530, + "normalized_name": "witching stone" + }, + { + "appid": 2693560, + "normalized_name": "hlína" + }, + { + "appid": 2693650, + "normalized_name": "kill invaders" + }, + { + "appid": 2693660, + "normalized_name": "radiant bricks" + }, + { + "appid": 2693680, + "normalized_name": "slam dunk basketball" + }, + { + "appid": 2693700, + "normalized_name": "jewel craft fusion" + }, + { + "appid": 2693710, + "normalized_name": "hardcoded" + }, + { + "appid": 2693730, + "normalized_name": "dawnsbury days" + }, + { + "appid": 2693810, + "normalized_name": "galaxy trek" + }, + { + "appid": 2693820, + "normalized_name": "project n.e.x.t" + }, + { + "appid": 2693830, + "normalized_name": "panda magix golden trains slots" + }, + { + "appid": 2693840, + "normalized_name": "choc n roll" + }, + { + "appid": 2693860, + "normalized_name": "鳴蟇村" + }, + { + "appid": 2693880, + "normalized_name": "rx10 40" + }, + { + "appid": 2693890, + "normalized_name": "tales from aturian battle of cleaved fields" + }, + { + "appid": 2693900, + "normalized_name": "henry's escape prison" + }, + { + "appid": 2693920, + "normalized_name": "catting over it" + }, + { + "appid": 2693930, + "normalized_name": "dice & fold" + }, + { + "appid": 2693940, + "normalized_name": "neoduel backpack monsters" + }, + { + "appid": 2693950, + "normalized_name": "rifted worlds" + }, + { + "appid": 2693960, + "normalized_name": "void gore" + }, + { + "appid": 2693990, + "normalized_name": "prisoners hunt" + }, + { + "appid": 2694000, + "normalized_name": "ancient rus vs lizards" + }, + { + "appid": 2694020, + "normalized_name": "starbreed" + }, + { + "appid": 2694140, + "normalized_name": "zooplop" + }, + { + "appid": 2694150, + "normalized_name": "deficiency" + }, + { + "appid": 2694200, + "normalized_name": "skybase" + }, + { + "appid": 2694210, + "normalized_name": "exiled survivors" + }, + { + "appid": 2694220, + "normalized_name": "quizz" + }, + { + "appid": 2694230, + "normalized_name": "shinobi saga" + }, + { + "appid": 2694260, + "normalized_name": "pizzdile" + }, + { + "appid": 2694290, + "normalized_name": "kill the reaper" + }, + { + "appid": 2694330, + "normalized_name": "my house and i got transported to another world" + }, + { + "appid": 2694360, + "normalized_name": "twistingo hummingbird haven collector's" + }, + { + "appid": 2694380, + "normalized_name": "the first present" + }, + { + "appid": 2694390, + "normalized_name": "synthwave runner" + }, + { + "appid": 2694410, + "normalized_name": "mdf magical defense force chapters 10 18" + }, + { + "appid": 2694420, + "normalized_name": "kill knight" + }, + { + "appid": 2694440, + "normalized_name": "hentai girls slide" + }, + { + "appid": 2694460, + "normalized_name": "the quantum conflict" + }, + { + "appid": 2694480, + "normalized_name": "sugar fruits" + }, + { + "appid": 2694490, + "normalized_name": "path of exile 2" + }, + { + "appid": 2694510, + "normalized_name": "amaero gentle guidance for a virgin boy" + }, + { + "appid": 2694520, + "normalized_name": "gallery of things reveries" + }, + { + "appid": 2694530, + "normalized_name": "the cat" + }, + { + "appid": 2694560, + "normalized_name": "chrono shift" + }, + { + "appid": 2694600, + "normalized_name": "my milf stepmom 2 family party💋" + }, + { + "appid": 2694620, + "normalized_name": "slay the dungeon" + }, + { + "appid": 2694700, + "normalized_name": "bright oak" + }, + { + "appid": 2694720, + "normalized_name": "moo moo liar's dice" + }, + { + "appid": 2694730, + "normalized_name": "samurai`s way" + }, + { + "appid": 2694750, + "normalized_name": "married woman hypnosis counseling" + }, + { + "appid": 2694770, + "normalized_name": "erotic photoshoot" + }, + { + "appid": 2694800, + "normalized_name": "战斗平台" + }, + { + "appid": 2694810, + "normalized_name": "sister of a dragon" + }, + { + "appid": 2694860, + "normalized_name": "professional married woman cuckolder" + }, + { + "appid": 2694890, + "normalized_name": "annihilator" + }, + { + "appid": 2694900, + "normalized_name": "pepita viajera arctic" + }, + { + "appid": 2694920, + "normalized_name": "man in the dark" + }, + { + "appid": 2694960, + "normalized_name": "omnimancer" + }, + { + "appid": 2694970, + "normalized_name": "a tale of hard nipples ~the secret to this town's confectionery's delicious sweets is rich fresh milk~" + }, + { + "appid": 2695020, + "normalized_name": "magnavody" + }, + { + "appid": 2695030, + "normalized_name": "tutoringntr!? having sex with the neighbor's total affirmation sister…!" + }, + { + "appid": 2695040, + "normalized_name": "the girl i like lost her virginity in the sex club ntr with me!?" + }, + { + "appid": 2695080, + "normalized_name": "purrfectly hidden cats kittenbay" + }, + { + "appid": 2695100, + "normalized_name": "gold knight" + }, + { + "appid": 2695110, + "normalized_name": "infinite forest" + }, + { + "appid": 2695130, + "normalized_name": "escape team" + }, + { + "appid": 2695160, + "normalized_name": "phantom girls ghostbuster" + }, + { + "appid": 2695210, + "normalized_name": "five star chef ops" + }, + { + "appid": 2695230, + "normalized_name": "barbarians & beasts" + }, + { + "appid": 2695240, + "normalized_name": "master manager" + }, + { + "appid": 2695250, + "normalized_name": "fire racing" + }, + { + "appid": 2695260, + "normalized_name": "the crimson maid" + }, + { + "appid": 2695270, + "normalized_name": "miss neko pirates" + }, + { + "appid": 2695290, + "normalized_name": "emyliveshow dragon & mistresses tale" + }, + { + "appid": 2695400, + "normalized_name": "chaos adventure" + }, + { + "appid": 2695420, + "normalized_name": "protecto" + }, + { + "appid": 2695430, + "normalized_name": "a.i.l.a" + }, + { + "appid": 2695450, + "normalized_name": "arcane blood the shattered star" + }, + { + "appid": 2695480, + "normalized_name": "chasm crawl" + }, + { + "appid": 2695490, + "normalized_name": "age of water" + }, + { + "appid": 2695570, + "normalized_name": "kindergarten 3" + }, + { + "appid": 2695590, + "normalized_name": "origin of storms" + }, + { + "appid": 2695600, + "normalized_name": "hannah vcr" + }, + { + "appid": 2695710, + "normalized_name": "god for a day" + }, + { + "appid": 2695720, + "normalized_name": "piece quest" + }, + { + "appid": 2695730, + "normalized_name": "sofi origins" + }, + { + "appid": 2695780, + "normalized_name": "with shining eyes" + }, + { + "appid": 2695800, + "normalized_name": "dark and evil" + }, + { + "appid": 2695810, + "normalized_name": "sunset devils" + }, + { + "appid": 2695830, + "normalized_name": "zakesta z" + }, + { + "appid": 2695850, + "normalized_name": "spiritus 2" + }, + { + "appid": 2695870, + "normalized_name": "you got crabs" + }, + { + "appid": 2695940, + "normalized_name": "panicore" + }, + { + "appid": 2695960, + "normalized_name": "memories of glass maiden" + }, + { + "appid": 2696010, + "normalized_name": "矿工与山神 miners in the mountain" + }, + { + "appid": 2696050, + "normalized_name": "yarimono" + }, + { + "appid": 2696060, + "normalized_name": "elf discipline ceremony" + }, + { + "appid": 2696070, + "normalized_name": "solo leeching~35 year old magician journey" + }, + { + "appid": 2696080, + "normalized_name": "dream of the star haven" + }, + { + "appid": 2696100, + "normalized_name": "scary psycho lady simulator" + }, + { + "appid": 2696110, + "normalized_name": "situation succ inn elysium" + }, + { + "appid": 2696120, + "normalized_name": "shadow album" + }, + { + "appid": 2696140, + "normalized_name": "nothing dog" + }, + { + "appid": 2696160, + "normalized_name": "robot tank battle" + }, + { + "appid": 2696170, + "normalized_name": "jooin's romance fantasy" + }, + { + "appid": 2696200, + "normalized_name": "futanari college episode 1 [18+] 🍓 🤓" + }, + { + "appid": 2696310, + "normalized_name": "last castle guardians" + }, + { + "appid": 2696320, + "normalized_name": "thought experiment simulator" + }, + { + "appid": 2696360, + "normalized_name": "迷失:异域" + }, + { + "appid": 2696390, + "normalized_name": "guns and draguns" + }, + { + "appid": 2696400, + "normalized_name": "magical mic duel senpai hear my spell" + }, + { + "appid": 2696420, + "normalized_name": "chronocide" + }, + { + "appid": 2696430, + "normalized_name": "game tester quest" + }, + { + "appid": 2696480, + "normalized_name": "nothing" + }, + { + "appid": 2696520, + "normalized_name": "something" + }, + { + "appid": 2696530, + "normalized_name": "idle percent" + }, + { + "appid": 2696550, + "normalized_name": "aquametsis" + }, + { + "appid": 2696570, + "normalized_name": "storm's eye" + }, + { + "appid": 2696590, + "normalized_name": "case guardians" + }, + { + "appid": 2696660, + "normalized_name": "kiopioke!" + }, + { + "appid": 2696680, + "normalized_name": "babava's playspace" + }, + { + "appid": 2696750, + "normalized_name": "thin way" + }, + { + "appid": 2696760, + "normalized_name": "starlight legacy" + }, + { + "appid": 2696770, + "normalized_name": "purrs in heaven" + }, + { + "appid": 2696780, + "normalized_name": "space accident vr" + }, + { + "appid": 2696850, + "normalized_name": "xeno runners" + }, + { + "appid": 2696930, + "normalized_name": "from the ground" + }, + { + "appid": 2696940, + "normalized_name": "东方弹幕塔防 ~ gensokyo chronicle" + }, + { + "appid": 2696960, + "normalized_name": "the bunker complex" + }, + { + "appid": 2696970, + "normalized_name": "monologue winter melancholy" + }, + { + "appid": 2697000, + "normalized_name": "windstorm the legend of khiimori" + }, + { + "appid": 2697010, + "normalized_name": "solo" + }, + { + "appid": 2697030, + "normalized_name": "i still live under your house" + }, + { + "appid": 2697050, + "normalized_name": "project polygon" + }, + { + "appid": 2697060, + "normalized_name": "cumdy" + }, + { + "appid": 2697070, + "normalized_name": "circus of timtim mascot horror game" + }, + { + "appid": 2697090, + "normalized_name": "airborne arena" + }, + { + "appid": 2697180, + "normalized_name": "ink of fate" + }, + { + "appid": 2697200, + "normalized_name": "lunar's chosen episode 2" + }, + { + "appid": 2697210, + "normalized_name": "detective bass 2 the case of the stolen pearls" + }, + { + "appid": 2697250, + "normalized_name": "gran carismo" + }, + { + "appid": 2697370, + "normalized_name": "spirita battler" + }, + { + "appid": 2697380, + "normalized_name": "arsenal" + }, + { + "appid": 2697390, + "normalized_name": "homebrew32" + }, + { + "appid": 2697430, + "normalized_name": "dexterous time to steal" + }, + { + "appid": 2697450, + "normalized_name": "wizard's beard" + }, + { + "appid": 2697460, + "normalized_name": "blood radiant" + }, + { + "appid": 2697470, + "normalized_name": "po'ed" + }, + { + "appid": 2697490, + "normalized_name": "欺神弄鬼" + }, + { + "appid": 2697510, + "normalized_name": "dumbot" + }, + { + "appid": 2697520, + "normalized_name": "fuel station simulator" + }, + { + "appid": 2697540, + "normalized_name": "fastpack" + }, + { + "appid": 2697560, + "normalized_name": "mojika truth rears its ugly head" + }, + { + "appid": 2697610, + "normalized_name": "keep of the knights" + }, + { + "appid": 2697620, + "normalized_name": "combo devils" + }, + { + "appid": 2697640, + "normalized_name": "djikstra's enigmatic puzzle cube" + }, + { + "appid": 2697670, + "normalized_name": "petal crash 2" + }, + { + "appid": 2697690, + "normalized_name": "space detective the case of the rebel robot" + }, + { + "appid": 2697710, + "normalized_name": "flappy box" + }, + { + "appid": 2697720, + "normalized_name": "undead mayhem" + }, + { + "appid": 2697730, + "normalized_name": "super cloud fight" + }, + { + "appid": 2697890, + "normalized_name": "titan revenge" + }, + { + "appid": 2697930, + "normalized_name": "commander quest" + }, + { + "appid": 2697940, + "normalized_name": "ascend to zero" + }, + { + "appid": 2698040, + "normalized_name": "mall heist" + }, + { + "appid": 2698090, + "normalized_name": "gachi feasting" + }, + { + "appid": 2698100, + "normalized_name": "steam trigger" + }, + { + "appid": 2698110, + "normalized_name": "冬眠(hibernation)" + }, + { + "appid": 2698140, + "normalized_name": "graalonline worlds" + }, + { + "appid": 2698160, + "normalized_name": "dool" + }, + { + "appid": 2698190, + "normalized_name": "trajectory of summer flower ⅱ" + }, + { + "appid": 2698220, + "normalized_name": "dungeon man" + }, + { + "appid": 2698230, + "normalized_name": "karin's instruction" + }, + { + "appid": 2698250, + "normalized_name": "crazy dog demo" + }, + { + "appid": 2698300, + "normalized_name": "cat sandbox" + }, + { + "appid": 2698320, + "normalized_name": "zero conflict td" + }, + { + "appid": 2698330, + "normalized_name": "mainframent" + }, + { + "appid": 2698340, + "normalized_name": "a different summer" + }, + { + "appid": 2698350, + "normalized_name": "deer god" + }, + { + "appid": 2698450, + "normalized_name": "taskmaster vr" + }, + { + "appid": 2698460, + "normalized_name": "shift'n slay" + }, + { + "appid": 2698470, + "normalized_name": "kemono teatime" + }, + { + "appid": 2698490, + "normalized_name": "ninja chowdown glaze of glory" + }, + { + "appid": 2698520, + "normalized_name": "cuub" + }, + { + "appid": 2698540, + "normalized_name": "anime girls highschool of dead" + }, + { + "appid": 2698550, + "normalized_name": "ゆきうさ" + }, + { + "appid": 2698560, + "normalized_name": "hotel in the dark" + }, + { + "appid": 2698590, + "normalized_name": "mosaic mysteries" + }, + { + "appid": 2698600, + "normalized_name": "swing by" + }, + { + "appid": 2698670, + "normalized_name": "shelf" + }, + { + "appid": 2698680, + "normalized_name": "card fuse" + }, + { + "appid": 2698690, + "normalized_name": "champion road" + }, + { + "appid": 2698700, + "normalized_name": "roku and rei" + }, + { + "appid": 2698730, + "normalized_name": "shooting squirrel simulator" + }, + { + "appid": 2698780, + "normalized_name": "contractville" + }, + { + "appid": 2698800, + "normalized_name": "eternal acid rain" + }, + { + "appid": 2698830, + "normalized_name": "my dear neighbor 404" + }, + { + "appid": 2698870, + "normalized_name": "midnight murder club" + }, + { + "appid": 2698900, + "normalized_name": "chop shop" + }, + { + "appid": 2698910, + "normalized_name": "pet rock duty" + }, + { + "appid": 2698940, + "normalized_name": "the crew motorfest" + }, + { + "appid": 2698990, + "normalized_name": "the witches pond" + }, + { + "appid": 2699040, + "normalized_name": "superpersons university" + }, + { + "appid": 2699100, + "normalized_name": "shoot the robots vr" + }, + { + "appid": 2699110, + "normalized_name": "the lost nomad" + }, + { + "appid": 2699130, + "normalized_name": "network euphoria" + }, + { + "appid": 2699190, + "normalized_name": "disc dimension" + }, + { + "appid": 2699200, + "normalized_name": "xp racing" + }, + { + "appid": 2699240, + "normalized_name": "zomcats invasion" + }, + { + "appid": 2699250, + "normalized_name": "the sumerian game" + }, + { + "appid": 2699280, + "normalized_name": "valor of man" + }, + { + "appid": 2699290, + "normalized_name": "kevin(1997 2077)" + }, + { + "appid": 2699340, + "normalized_name": "mia's hunt" + }, + { + "appid": 2699380, + "normalized_name": "cursed canvas" + }, + { + "appid": 2699480, + "normalized_name": "cura" + }, + { + "appid": 2699500, + "normalized_name": "nope nope nurses melee" + }, + { + "appid": 2699510, + "normalized_name": "2番線 | nibansen" + }, + { + "appid": 2699520, + "normalized_name": "ソニアの大冒険 3つの秘宝の隠されたナゾ!" + }, + { + "appid": 2699530, + "normalized_name": "snyatcher" + }, + { + "appid": 2699540, + "normalized_name": "bearly delivered" + }, + { + "appid": 2699550, + "normalized_name": "fightland" + }, + { + "appid": 2699570, + "normalized_name": "ooga" + }, + { + "appid": 2699580, + "normalized_name": "raven fighter" + }, + { + "appid": 2699590, + "normalized_name": "cell hacker" + }, + { + "appid": 2699600, + "normalized_name": "my oshi vtuber jumped through the screen and now we're living together i want to make a contract with the lady vampire" + }, + { + "appid": 2699610, + "normalized_name": "my oshi vtuber jumped through the screen and now we're living together chill and vibey beast girl game streamer" + }, + { + "appid": 2699620, + "normalized_name": "my oshi vtuber jumped through the screen and now we're living together slightly psycho succubus asmr streamer" + }, + { + "appid": 2699630, + "normalized_name": "epic pizza" + }, + { + "appid": 2699650, + "normalized_name": "borderline enigma" + }, + { + "appid": 2699660, + "normalized_name": "powerwash adventure" + }, + { + "appid": 2699670, + "normalized_name": "大海与你" + }, + { + "appid": 2699690, + "normalized_name": "harmonia full hd" + }, + { + "appid": 2699740, + "normalized_name": "启禀陛下" + }, + { + "appid": 2699780, + "normalized_name": "synthetic fantasy;" + }, + { + "appid": 2699790, + "normalized_name": "llama simulator" + }, + { + "appid": 2699800, + "normalized_name": "a shadow in space" + }, + { + "appid": 2699820, + "normalized_name": "shin chan shiro and the coal town" + }, + { + "appid": 2699870, + "normalized_name": "welcome to eden" + }, + { + "appid": 2699880, + "normalized_name": "fairies love" + }, + { + "appid": 2699890, + "normalized_name": "battlecry berserkers" + }, + { + "appid": 2699930, + "normalized_name": "the penguin horror legacy of the pengcasso" + }, + { + "appid": 2699950, + "normalized_name": "rated sudoku" + }, + { + "appid": 2700010, + "normalized_name": "last moor" + }, + { + "appid": 2700020, + "normalized_name": "neon intrusion" + }, + { + "appid": 2700030, + "normalized_name": "fighting magical girls rpg women defense" + }, + { + "appid": 2700050, + "normalized_name": "scream or die" + }, + { + "appid": 2700060, + "normalized_name": "darkandlight" + }, + { + "appid": 2700070, + "normalized_name": "behind the beyond ulti" + }, + { + "appid": 2700080, + "normalized_name": "bugger off!" + }, + { + "appid": 2700090, + "normalized_name": "fox game" + }, + { + "appid": 2700100, + "normalized_name": "last minute shopping" + }, + { + "appid": 2700120, + "normalized_name": "damaaz the barbarian warlock" + }, + { + "appid": 2700150, + "normalized_name": "spectacle worlds unseen" + }, + { + "appid": 2700160, + "normalized_name": "warriors of dust" + }, + { + "appid": 2700220, + "normalized_name": "super kawaii ninja" + }, + { + "appid": 2700230, + "normalized_name": "isoland4 the anchor of memory" + }, + { + "appid": 2700240, + "normalized_name": "bloody ink" + }, + { + "appid": 2700250, + "normalized_name": "dodo" + }, + { + "appid": 2700260, + "normalized_name": "12 labours of hercules xvi olympic bugs" + }, + { + "appid": 2700280, + "normalized_name": "sky mad" + }, + { + "appid": 2700310, + "normalized_name": "anti extinction" + }, + { + "appid": 2700370, + "normalized_name": "vector bias" + }, + { + "appid": 2700380, + "normalized_name": "urban escape" + }, + { + "appid": 2700390, + "normalized_name": "arkham detective" + }, + { + "appid": 2700410, + "normalized_name": "drak(c)ula" + }, + { + "appid": 2700430, + "normalized_name": "raccoon chronicles" + }, + { + "appid": 2700450, + "normalized_name": "kukinta" + }, + { + "appid": 2700460, + "normalized_name": "mystery box vr escape the room" + }, + { + "appid": 2700470, + "normalized_name": "丛林跑酷体感版" + }, + { + "appid": 2700500, + "normalized_name": "outlands" + }, + { + "appid": 2700510, + "normalized_name": "seasons of rocco" + }, + { + "appid": 2700530, + "normalized_name": "cuckoldxcosplay 绝色扮演 ネトラレイヤー 真绮篇1" + }, + { + "appid": 2700540, + "normalized_name": "cats hidden in japan" + }, + { + "appid": 2700550, + "normalized_name": "urban chase" + }, + { + "appid": 2700560, + "normalized_name": "level unknown backrooms" + }, + { + "appid": 2700570, + "normalized_name": "ebbil alternative bible" + }, + { + "appid": 2700650, + "normalized_name": "space cheese defenders" + }, + { + "appid": 2700660, + "normalized_name": "neon river" + }, + { + "appid": 2700680, + "normalized_name": "six orders" + }, + { + "appid": 2700690, + "normalized_name": "bonez" + }, + { + "appid": 2700780, + "normalized_name": "my eyes deceive" + }, + { + "appid": 2700790, + "normalized_name": "shepherd knight" + }, + { + "appid": 2700860, + "normalized_name": "crylia" + }, + { + "appid": 2700900, + "normalized_name": "toska" + }, + { + "appid": 2700910, + "normalized_name": "emi christmas special" + }, + { + "appid": 2700960, + "normalized_name": "escape party" + }, + { + "appid": 2700970, + "normalized_name": "luckcatchers2" + }, + { + "appid": 2700990, + "normalized_name": "rogue piñatas vrmageddon" + }, + { + "appid": 2701020, + "normalized_name": "the gauntlet" + }, + { + "appid": 2701030, + "normalized_name": "mindwave" + }, + { + "appid": 2701050, + "normalized_name": "risk of pain" + }, + { + "appid": 2701060, + "normalized_name": "deep despair 3" + }, + { + "appid": 2701070, + "normalized_name": "major\\minor 2.0 (re)vision" + }, + { + "appid": 2701080, + "normalized_name": "intoxicated driver" + }, + { + "appid": 2701100, + "normalized_name": "harrowed ground" + }, + { + "appid": 2701110, + "normalized_name": "burning dead reloaded" + }, + { + "appid": 2701120, + "normalized_name": "cursed enigma priest and prayers" + }, + { + "appid": 2701140, + "normalized_name": "autocrats" + }, + { + "appid": 2701170, + "normalized_name": "null gravity labyrinth" + }, + { + "appid": 2701190, + "normalized_name": "megalotrain" + }, + { + "appid": 2701210, + "normalized_name": "mwneus" + }, + { + "appid": 2701220, + "normalized_name": "jazzhands" + }, + { + "appid": 2701240, + "normalized_name": "100 hidden cats in america" + }, + { + "appid": 2701250, + "normalized_name": "idle plant game" + }, + { + "appid": 2701260, + "normalized_name": "idle streaming bonanza" + }, + { + "appid": 2701280, + "normalized_name": "悟之魂 历练创作" + }, + { + "appid": 2701290, + "normalized_name": "neon net" + }, + { + "appid": 2701310, + "normalized_name": "shuffled sky" + }, + { + "appid": 2701340, + "normalized_name": "倒计 66 日" + }, + { + "appid": 2701350, + "normalized_name": "dragon chronicles black tears" + }, + { + "appid": 2701360, + "normalized_name": "꽃밭의 쓰레기" + }, + { + "appid": 2701390, + "normalized_name": "vr harem sex ~fucking the all girls around me~" + }, + { + "appid": 2701400, + "normalized_name": "sugar jar" + }, + { + "appid": 2701410, + "normalized_name": "pru the pigeon" + }, + { + "appid": 2701420, + "normalized_name": "无敌职业的我与100个女友" + }, + { + "appid": 2701450, + "normalized_name": "skateboard gravity" + }, + { + "appid": 2701500, + "normalized_name": "rot in hell" + }, + { + "appid": 2701510, + "normalized_name": "奕剑江湖" + }, + { + "appid": 2701560, + "normalized_name": "my thai boyfriend" + }, + { + "appid": 2701590, + "normalized_name": "cthulhu mythos adv 呪禍に沈む島" + }, + { + "appid": 2701610, + "normalized_name": "lost princess darkness" + }, + { + "appid": 2701630, + "normalized_name": "sweet home look and find collector's" + }, + { + "appid": 2701650, + "normalized_name": "land of chasers" + }, + { + "appid": 2701660, + "normalized_name": "dragon quest iii hd 2d remake" + }, + { + "appid": 2701670, + "normalized_name": "mystery stories mountains of madness" + }, + { + "appid": 2701690, + "normalized_name": "wildlife matters" + }, + { + "appid": 2701700, + "normalized_name": "maestro" + }, + { + "appid": 2701720, + "normalized_name": "wagotabi a japanese journey" + }, + { + "appid": 2701730, + "normalized_name": "politon prologue" + }, + { + "appid": 2701750, + "normalized_name": "corrupted paradise" + }, + { + "appid": 2701770, + "normalized_name": "女神試煉 quest of goddess" + }, + { + "appid": 2701800, + "normalized_name": "no players online" + }, + { + "appid": 2701840, + "normalized_name": "samurai ninja wars" + }, + { + "appid": 2701870, + "normalized_name": "ark odyssey" + }, + { + "appid": 2701890, + "normalized_name": "doomsday beans" + }, + { + "appid": 2701900, + "normalized_name": "grave gunner" + }, + { + "appid": 2701910, + "normalized_name": "ancient russian life simulator" + }, + { + "appid": 2701980, + "normalized_name": "ad agency simulator" + }, + { + "appid": 2702000, + "normalized_name": "project faceless" + }, + { + "appid": 2702010, + "normalized_name": "cute cats slide" + }, + { + "appid": 2702020, + "normalized_name": "phantoms" + }, + { + "appid": 2702030, + "normalized_name": "demons are coming!" + }, + { + "appid": 2702040, + "normalized_name": "helhigan" + }, + { + "appid": 2702050, + "normalized_name": "phantasie memorial set" + }, + { + "appid": 2702080, + "normalized_name": "great naval battles the final fury" + }, + { + "appid": 2702090, + "normalized_name": "star command (1988)" + }, + { + "appid": 2702100, + "normalized_name": "savage warriors" + }, + { + "appid": 2702110, + "normalized_name": "prophecy of the shadow" + }, + { + "appid": 2702120, + "normalized_name": "buccaneer" + }, + { + "appid": 2702130, + "normalized_name": "renegade battle for jacob's star" + }, + { + "appid": 2702170, + "normalized_name": "strange jigsaws" + }, + { + "appid": 2702220, + "normalized_name": "astral druids" + }, + { + "appid": 2702230, + "normalized_name": "forward brave" + }, + { + "appid": 2702250, + "normalized_name": "psyko" + }, + { + "appid": 2702260, + "normalized_name": "map map a game about maps" + }, + { + "appid": 2702270, + "normalized_name": "平面星舰:银河前线 plane starship galactic frontline" + }, + { + "appid": 2702300, + "normalized_name": "thrasher" + }, + { + "appid": 2702310, + "normalized_name": "nun&gun" + }, + { + "appid": 2702340, + "normalized_name": "bomber festival" + }, + { + "appid": 2702350, + "normalized_name": "eden project new earth" + }, + { + "appid": 2702370, + "normalized_name": "sword & seek" + }, + { + "appid": 2702380, + "normalized_name": "wild's edge" + }, + { + "appid": 2702390, + "normalized_name": "malachite temple of the sun" + }, + { + "appid": 2702430, + "normalized_name": "usual june" + }, + { + "appid": 2702470, + "normalized_name": "poly roam" + }, + { + "appid": 2702490, + "normalized_name": "tetrachroma" + }, + { + "appid": 2702570, + "normalized_name": "konkwest" + }, + { + "appid": 2702580, + "normalized_name": "peeking at the peak" + }, + { + "appid": 2702590, + "normalized_name": "sidereal" + }, + { + "appid": 2702620, + "normalized_name": "bullet race" + }, + { + "appid": 2702660, + "normalized_name": "the 52 fragments" + }, + { + "appid": 2702680, + "normalized_name": "44 the jail" + }, + { + "appid": 2702700, + "normalized_name": "heartshot" + }, + { + "appid": 2702740, + "normalized_name": "sable's grimoire 2" + }, + { + "appid": 2702760, + "normalized_name": "blood engine" + }, + { + "appid": 2702780, + "normalized_name": "project0" + }, + { + "appid": 2702800, + "normalized_name": "toucan rampage sandstorm shooter" + }, + { + "appid": 2702810, + "normalized_name": "skyline sprint turbo tracks" + }, + { + "appid": 2702820, + "normalized_name": "warzone chronicles battlegrounds" + }, + { + "appid": 2702830, + "normalized_name": "seers of ages past 1 the harbinger of mah" + }, + { + "appid": 2702850, + "normalized_name": "贪婪之境 -异世界勇者与灵魂大树-" + }, + { + "appid": 2702920, + "normalized_name": "cozy escapes" + }, + { + "appid": 2702940, + "normalized_name": "neon heights" + }, + { + "appid": 2702960, + "normalized_name": "adventurequest 8 bit dungeons & doomknights" + }, + { + "appid": 2702970, + "normalized_name": "100 kills challenge" + }, + { + "appid": 2703000, + "normalized_name": "christmas yarn 2" + }, + { + "appid": 2703060, + "normalized_name": "rebellion against rebellion" + }, + { + "appid": 2703070, + "normalized_name": "24h stories the rule 7" + }, + { + "appid": 2703100, + "normalized_name": "kubikon 3d" + }, + { + "appid": 2703130, + "normalized_name": "surviving with a bat" + }, + { + "appid": 2703140, + "normalized_name": "whispers of the sands" + }, + { + "appid": 2703150, + "normalized_name": "乐海归途 melodyjourney" + }, + { + "appid": 2703170, + "normalized_name": "jump penguin final" + }, + { + "appid": 2703180, + "normalized_name": "isabella chasing shadows" + }, + { + "appid": 2703190, + "normalized_name": "hidden world 10 top down 3d" + }, + { + "appid": 2703200, + "normalized_name": "hidden western top down 3d" + }, + { + "appid": 2703210, + "normalized_name": "3d puzzle wild west" + }, + { + "appid": 2703220, + "normalized_name": "3d puzzle world war ii" + }, + { + "appid": 2703230, + "normalized_name": "3d puzzle hangar" + }, + { + "appid": 2703240, + "normalized_name": "scream or die virtual circus" + }, + { + "appid": 2703250, + "normalized_name": "3d puzzle breaking bed" + }, + { + "appid": 2703260, + "normalized_name": "3d puzzle post apocalyptic 3" + }, + { + "appid": 2703270, + "normalized_name": "gth 3033 grand theft hunter 3033" + }, + { + "appid": 2703280, + "normalized_name": "climb challenge find items cyberpunk" + }, + { + "appid": 2703290, + "normalized_name": "bondman of traps" + }, + { + "appid": 2703300, + "normalized_name": "angel whisper the suspense visual novel left behind by a game creator." + }, + { + "appid": 2703310, + "normalized_name": "detourist" + }, + { + "appid": 2703320, + "normalized_name": "scraptail down the drain" + }, + { + "appid": 2703340, + "normalized_name": "fishtdx" + }, + { + "appid": 2703350, + "normalized_name": "sentinel of innocence" + }, + { + "appid": 2703370, + "normalized_name": "united states of america jigsaw puzzles" + }, + { + "appid": 2703390, + "normalized_name": "hexburg" + }, + { + "appid": 2703400, + "normalized_name": "christmas puzzle 4" + }, + { + "appid": 2703450, + "normalized_name": "model human" + }, + { + "appid": 2703480, + "normalized_name": "鬼壓床" + }, + { + "appid": 2703550, + "normalized_name": "vigaro runner" + }, + { + "appid": 2703590, + "normalized_name": "pussy kingdom queen of passion" + }, + { + "appid": 2703610, + "normalized_name": "the resonant reckoning" + }, + { + "appid": 2703670, + "normalized_name": "nulandia" + }, + { + "appid": 2703690, + "normalized_name": "not enough space" + }, + { + "appid": 2703720, + "normalized_name": "bobos funzone" + }, + { + "appid": 2703750, + "normalized_name": "36 nights" + }, + { + "appid": 2703790, + "normalized_name": "jumpfox always running" + }, + { + "appid": 2703810, + "normalized_name": "trip not" + }, + { + "appid": 2703850, + "normalized_name": "rooftops & alleys the parkour game" + }, + { + "appid": 2703890, + "normalized_name": "last respects" + }, + { + "appid": 2703900, + "normalized_name": "overthrone" + }, + { + "appid": 2703910, + "normalized_name": "life eternal" + }, + { + "appid": 2703920, + "normalized_name": "outbreak zombie plague" + }, + { + "appid": 2703930, + "normalized_name": "twin stick" + }, + { + "appid": 2703940, + "normalized_name": "party business supreme" + }, + { + "appid": 2703970, + "normalized_name": "me and (my) cat's island" + }, + { + "appid": 2704020, + "normalized_name": "terminal22" + }, + { + "appid": 2704030, + "normalized_name": "school curse" + }, + { + "appid": 2704050, + "normalized_name": "lost in space madness" + }, + { + "appid": 2704060, + "normalized_name": "ant farm simulator" + }, + { + "appid": 2704070, + "normalized_name": "수박 모시깽" + }, + { + "appid": 2704090, + "normalized_name": "celestial return" + }, + { + "appid": 2704100, + "normalized_name": "小小群雄" + }, + { + "appid": 2704110, + "normalized_name": "彼方的她 aliya" + }, + { + "appid": 2704120, + "normalized_name": "256vs256" + }, + { + "appid": 2704140, + "normalized_name": "fresh story 2" + }, + { + "appid": 2704210, + "normalized_name": "wheelborn" + }, + { + "appid": 2704230, + "normalized_name": "twizzle puzzle cats" + }, + { + "appid": 2704250, + "normalized_name": "nexus travelers hero of elocea" + }, + { + "appid": 2704270, + "normalized_name": "dorasyeoda" + }, + { + "appid": 2704280, + "normalized_name": "fractured horizon" + }, + { + "appid": 2704290, + "normalized_name": "liam fitzroy kills everyone the game part zero" + }, + { + "appid": 2704300, + "normalized_name": "red green donkey" + }, + { + "appid": 2704310, + "normalized_name": "harm weather warfare" + }, + { + "appid": 2704320, + "normalized_name": "strangeland the last colony" + }, + { + "appid": 2704340, + "normalized_name": "thieves" + }, + { + "appid": 2704350, + "normalized_name": "iskelonia" + }, + { + "appid": 2704360, + "normalized_name": "garmm adventurer vol.2" + }, + { + "appid": 2704370, + "normalized_name": "nafanya the poltergeist" + }, + { + "appid": 2704400, + "normalized_name": "five starless rivers" + }, + { + "appid": 2704450, + "normalized_name": "stoneguard" + }, + { + "appid": 2704460, + "normalized_name": "neon geometry dash" + }, + { + "appid": 2704510, + "normalized_name": "simple ceo" + }, + { + "appid": 2704580, + "normalized_name": "jrago ii guardians of eden" + }, + { + "appid": 2704660, + "normalized_name": "cosmic carnage prologue" + }, + { + "appid": 2704670, + "normalized_name": "my valiant purpose" + }, + { + "appid": 2704680, + "normalized_name": "swole mole" + }, + { + "appid": 2704710, + "normalized_name": "truth" + }, + { + "appid": 2704720, + "normalized_name": "orbius" + }, + { + "appid": 2704770, + "normalized_name": "curse seal rotation" + }, + { + "appid": 2704790, + "normalized_name": "block control" + }, + { + "appid": 2704840, + "normalized_name": "poetry in purgatory" + }, + { + "appid": 2704860, + "normalized_name": "run tekila run!" + }, + { + "appid": 2704870, + "normalized_name": "crying alone" + }, + { + "appid": 2704900, + "normalized_name": "bohnice within the mind" + }, + { + "appid": 2704910, + "normalized_name": "onsui" + }, + { + "appid": 2704930, + "normalized_name": "规则怪谈:盛崖小区" + }, + { + "appid": 2704940, + "normalized_name": "total blade" + }, + { + "appid": 2704950, + "normalized_name": "warhawk down" + }, + { + "appid": 2705110, + "normalized_name": "fan pop rhythm stage〜aim for the♡〜" + }, + { + "appid": 2705130, + "normalized_name": "exoborne" + }, + { + "appid": 2705210, + "normalized_name": "good kill!" + }, + { + "appid": 2705230, + "normalized_name": "沦陷" + }, + { + "appid": 2705290, + "normalized_name": "super waifu bakery simulator" + }, + { + "appid": 2705320, + "normalized_name": "解谜俱乐部" + }, + { + "appid": 2705330, + "normalized_name": "phantom vortex vr" + }, + { + "appid": 2705370, + "normalized_name": "mist" + }, + { + "appid": 2705380, + "normalized_name": "mundushex" + }, + { + "appid": 2705430, + "normalized_name": "黒ニ狂 summoner of greats" + }, + { + "appid": 2705480, + "normalized_name": "nonogram 3d mega puzzle" + }, + { + "appid": 2705500, + "normalized_name": "apple hero" + }, + { + "appid": 2705570, + "normalized_name": "road place" + }, + { + "appid": 2705580, + "normalized_name": "unline" + }, + { + "appid": 2705650, + "normalized_name": "mithra" + }, + { + "appid": 2705670, + "normalized_name": "pancho's mission" + }, + { + "appid": 2705690, + "normalized_name": "soul warden" + }, + { + "appid": 2705750, + "normalized_name": "seagull wars" + }, + { + "appid": 2705760, + "normalized_name": "plaquist simulator" + }, + { + "appid": 2705800, + "normalized_name": "time glitch" + }, + { + "appid": 2705810, + "normalized_name": "a long dark night" + }, + { + "appid": 2705820, + "normalized_name": "some goodbyes we made" + }, + { + "appid": 2705830, + "normalized_name": "warship jolly roger" + }, + { + "appid": 2705870, + "normalized_name": "arena worker" + }, + { + "appid": 2705890, + "normalized_name": "goodboy galaxy" + }, + { + "appid": 2705900, + "normalized_name": "neocon tower defence 3" + }, + { + "appid": 2705910, + "normalized_name": "it's ok to fail" + }, + { + "appid": 2705950, + "normalized_name": "space cube x" + }, + { + "appid": 2705980, + "normalized_name": "mischief motors" + }, + { + "appid": 2705990, + "normalized_name": "world fantasy 2" + }, + { + "appid": 2706010, + "normalized_name": "embers of the evening" + }, + { + "appid": 2706020, + "normalized_name": "all will fall physics based survival city builder" + }, + { + "appid": 2706030, + "normalized_name": "dungeon twist" + }, + { + "appid": 2706040, + "normalized_name": "银雀:十三月的爱恋" + }, + { + "appid": 2706050, + "normalized_name": "beach girl block crush!!" + }, + { + "appid": 2706070, + "normalized_name": "katana inu" + }, + { + "appid": 2706090, + "normalized_name": "paintballers major league paintball mlpb 2025" + }, + { + "appid": 2706140, + "normalized_name": "mirage beyond the screen" + }, + { + "appid": 2706170, + "normalized_name": "get to work" + }, + { + "appid": 2706210, + "normalized_name": "trace hunters" + }, + { + "appid": 2706230, + "normalized_name": "purgatory salvation" + }, + { + "appid": 2706250, + "normalized_name": "christmas puzzle 5" + }, + { + "appid": 2706270, + "normalized_name": "warpgate pioneers" + }, + { + "appid": 2706280, + "normalized_name": "hedenite" + }, + { + "appid": 2706290, + "normalized_name": "hallways" + }, + { + "appid": 2706300, + "normalized_name": "milf's plaza" + }, + { + "appid": 2706310, + "normalized_name": "paper hero manager" + }, + { + "appid": 2706320, + "normalized_name": "可爱女孩与大叔闲暇时光" + }, + { + "appid": 2706340, + "normalized_name": "the caped crusader" + }, + { + "appid": 2706360, + "normalized_name": "where the weather takes you" + }, + { + "appid": 2706370, + "normalized_name": "ac sailing" + }, + { + "appid": 2706390, + "normalized_name": "intergalactic ecstasy" + }, + { + "appid": 2706400, + "normalized_name": "a silent desolation" + }, + { + "appid": 2706440, + "normalized_name": "obu" + }, + { + "appid": 2706450, + "normalized_name": "hands of necromancy ii" + }, + { + "appid": 2706460, + "normalized_name": "hydroplane riptide racers" + }, + { + "appid": 2706560, + "normalized_name": "multiworlds" + }, + { + "appid": 2706650, + "normalized_name": "infinite coaster" + }, + { + "appid": 2706670, + "normalized_name": "森林守护战棋 forest guardian battle chess" + }, + { + "appid": 2706690, + "normalized_name": "sexseal 節奏封淫" + }, + { + "appid": 2706710, + "normalized_name": "怪奇帖~屋上の幽霊と悪魔の儀式~" + }, + { + "appid": 2706720, + "normalized_name": "hungry jungle" + }, + { + "appid": 2706780, + "normalized_name": "to tell the truth" + }, + { + "appid": 2706790, + "normalized_name": "quantic river" + }, + { + "appid": 2706800, + "normalized_name": "frogenlav skyward bound" + }, + { + "appid": 2706830, + "normalized_name": "gun fighting" + }, + { + "appid": 2706880, + "normalized_name": "lost pages classic" + }, + { + "appid": 2706900, + "normalized_name": "花母" + }, + { + "appid": 2706940, + "normalized_name": "fishlets" + }, + { + "appid": 2706950, + "normalized_name": "かいき loopdown" + }, + { + "appid": 2706960, + "normalized_name": "027" + }, + { + "appid": 2706970, + "normalized_name": "猴生" + }, + { + "appid": 2706980, + "normalized_name": "whirlight no time to trip" + }, + { + "appid": 2706990, + "normalized_name": "fill the cat box!" + }, + { + "appid": 2707000, + "normalized_name": "shadowstrikevr" + }, + { + "appid": 2707040, + "normalized_name": "krampen" + }, + { + "appid": 2707070, + "normalized_name": "subwaysim 2" + }, + { + "appid": 2707080, + "normalized_name": "inflatum" + }, + { + "appid": 2707090, + "normalized_name": "the nefargad" + }, + { + "appid": 2707100, + "normalized_name": "gaia's blessing" + }, + { + "appid": 2707110, + "normalized_name": "birds organized neatly" + }, + { + "appid": 2707140, + "normalized_name": "fritz 19 se" + }, + { + "appid": 2707150, + "normalized_name": "aviators vr" + }, + { + "appid": 2707160, + "normalized_name": "i know this place..? (chapter ii)" + }, + { + "appid": 2707190, + "normalized_name": "pigbook" + }, + { + "appid": 2707240, + "normalized_name": "city of graves" + }, + { + "appid": 2707260, + "normalized_name": "wargame construction set" + }, + { + "appid": 2707270, + "normalized_name": "wargame construction set ii tanks!" + }, + { + "appid": 2707280, + "normalized_name": "wargame construction set iii age of rifles 1846 1905" + }, + { + "appid": 2707300, + "normalized_name": "cosmic collapse" + }, + { + "appid": 2707310, + "normalized_name": "lustvrstudio" + }, + { + "appid": 2707320, + "normalized_name": "blobbton" + }, + { + "appid": 2707340, + "normalized_name": "alice through the fey realm" + }, + { + "appid": 2707350, + "normalized_name": "on the bubble" + }, + { + "appid": 2707360, + "normalized_name": "atan" + }, + { + "appid": 2707380, + "normalized_name": "hive dive" + }, + { + "appid": 2707390, + "normalized_name": "sicaria" + }, + { + "appid": 2707400, + "normalized_name": "shred off" + }, + { + "appid": 2707410, + "normalized_name": "iron line" + }, + { + "appid": 2707420, + "normalized_name": "3d watermelon game" + }, + { + "appid": 2707440, + "normalized_name": "floralis" + }, + { + "appid": 2707490, + "normalized_name": "tower factory" + }, + { + "appid": 2707500, + "normalized_name": "roko's basilisk" + }, + { + "appid": 2707540, + "normalized_name": "archaic" + }, + { + "appid": 2707580, + "normalized_name": "safe house" + }, + { + "appid": 2707610, + "normalized_name": "desert kingdoms" + }, + { + "appid": 2707630, + "normalized_name": "twins of olus" + }, + { + "appid": 2707670, + "normalized_name": "scp valravn" + }, + { + "appid": 2707690, + "normalized_name": "dungeon re delve" + }, + { + "appid": 2707710, + "normalized_name": "is there a way?" + }, + { + "appid": 2707740, + "normalized_name": "garden warfare crab invasion" + }, + { + "appid": 2707810, + "normalized_name": "the time machine" + }, + { + "appid": 2707840, + "normalized_name": "steel soul" + }, + { + "appid": 2707850, + "normalized_name": "heptic arena" + }, + { + "appid": 2707860, + "normalized_name": "orienteering simulator" + }, + { + "appid": 2707870, + "normalized_name": "streetdog bmx" + }, + { + "appid": 2707880, + "normalized_name": "troubadours" + }, + { + "appid": 2707900, + "normalized_name": "night runners prologue" + }, + { + "appid": 2707930, + "normalized_name": "palia" + }, + { + "appid": 2707940, + "normalized_name": "fpv kamikaze drone" + }, + { + "appid": 2707950, + "normalized_name": "pakinpaks" + }, + { + "appid": 2707960, + "normalized_name": "quantum drive" + }, + { + "appid": 2707970, + "normalized_name": "night nite" + }, + { + "appid": 2707980, + "normalized_name": "punk" + }, + { + "appid": 2707990, + "normalized_name": "grudge" + }, + { + "appid": 2708000, + "normalized_name": "ninja i & ii" + }, + { + "appid": 2708010, + "normalized_name": "skatecat" + }, + { + "appid": 2708020, + "normalized_name": "space raft" + }, + { + "appid": 2708030, + "normalized_name": "hentai clicker" + }, + { + "appid": 2708130, + "normalized_name": "loot improvement" + }, + { + "appid": 2708140, + "normalized_name": "reflectron" + }, + { + "appid": 2708180, + "normalized_name": "dead garden zero" + }, + { + "appid": 2708200, + "normalized_name": "cyberverse showdown" + }, + { + "appid": 2708210, + "normalized_name": "paradise" + }, + { + "appid": 2708250, + "normalized_name": "pyramid schemes and cults" + }, + { + "appid": 2708270, + "normalized_name": "mine memory" + }, + { + "appid": 2708280, + "normalized_name": "escape from boykisser" + }, + { + "appid": 2708320, + "normalized_name": "tidy cauldron" + }, + { + "appid": 2708450, + "normalized_name": "oh deer" + }, + { + "appid": 2708470, + "normalized_name": "treasure hunter" + }, + { + "appid": 2708480, + "normalized_name": "slippery heights" + }, + { + "appid": 2708490, + "normalized_name": "东巴" + }, + { + "appid": 2708500, + "normalized_name": "竞速之夜" + }, + { + "appid": 2708570, + "normalized_name": "zanzibart" + }, + { + "appid": 2708580, + "normalized_name": "duplicity loop" + }, + { + "appid": 2708620, + "normalized_name": "ghost eater" + }, + { + "appid": 2708650, + "normalized_name": "rabbit hole" + }, + { + "appid": 2708660, + "normalized_name": "insomnia" + }, + { + "appid": 2708670, + "normalized_name": "fallen castle" + }, + { + "appid": 2708710, + "normalized_name": "the curse of the egyptian pyramid \"remaster edition\"" + }, + { + "appid": 2708720, + "normalized_name": "mistsbook" + }, + { + "appid": 2708730, + "normalized_name": "the secret of timberland" + }, + { + "appid": 2708740, + "normalized_name": "アキゾラのメモリーズ─運命の地平線─" + }, + { + "appid": 2708780, + "normalized_name": "museum keeper" + }, + { + "appid": 2708790, + "normalized_name": "together after dark" + }, + { + "appid": 2708800, + "normalized_name": "monster parade nurturing a hero’s sacred sword!?" + }, + { + "appid": 2708850, + "normalized_name": "sinabro" + }, + { + "appid": 2708860, + "normalized_name": "canyons" + }, + { + "appid": 2708880, + "normalized_name": "ghost keeper" + }, + { + "appid": 2708890, + "normalized_name": "last chance the survivor vr" + }, + { + "appid": 2708920, + "normalized_name": "除靈館" + }, + { + "appid": 2708930, + "normalized_name": "movement gods" + }, + { + "appid": 2708940, + "normalized_name": "very hard game" + }, + { + "appid": 2708950, + "normalized_name": "corruption town" + }, + { + "appid": 2708960, + "normalized_name": "world xplore" + }, + { + "appid": 2709030, + "normalized_name": "tower of the abyss" + }, + { + "appid": 2709060, + "normalized_name": "super retro boxbot" + }, + { + "appid": 2709070, + "normalized_name": "voidwalker" + }, + { + "appid": 2709090, + "normalized_name": "cycle of corruption" + }, + { + "appid": 2709120, + "normalized_name": "clamb" + }, + { + "appid": 2709160, + "normalized_name": "no surrender heroes" + }, + { + "appid": 2709190, + "normalized_name": "hitm3" + }, + { + "appid": 2709220, + "normalized_name": "veranoia nightmare of case 37" + }, + { + "appid": 2709300, + "normalized_name": "after war town" + }, + { + "appid": 2709360, + "normalized_name": "the brilliant coup" + }, + { + "appid": 2709370, + "normalized_name": "math is horror" + }, + { + "appid": 2709380, + "normalized_name": "secret missions" + }, + { + "appid": 2709390, + "normalized_name": "dwarf" + }, + { + "appid": 2709400, + "normalized_name": "tanks etc." + }, + { + "appid": 2709410, + "normalized_name": "secret of the deep" + }, + { + "appid": 2709420, + "normalized_name": "vasya run ghetto gopnik" + }, + { + "appid": 2709500, + "normalized_name": "revenge" + }, + { + "appid": 2709510, + "normalized_name": "cannot contain" + }, + { + "appid": 2709530, + "normalized_name": "mechanical lab" + }, + { + "appid": 2709540, + "normalized_name": "lost harmony" + }, + { + "appid": 2709550, + "normalized_name": "gold scrapping simulator" + }, + { + "appid": 2709570, + "normalized_name": "supermarket together" + }, + { + "appid": 2709600, + "normalized_name": "operator ace's simple infinite survival" + }, + { + "appid": 2709620, + "normalized_name": "smashed" + }, + { + "appid": 2709650, + "normalized_name": "autonomous gods" + }, + { + "appid": 2709660, + "normalized_name": "brinemegeddon" + }, + { + "appid": 2709690, + "normalized_name": "eon of the green area crescent" + }, + { + "appid": 2709700, + "normalized_name": "flob and the shattered dimension" + }, + { + "appid": 2709710, + "normalized_name": "succubus 2069" + }, + { + "appid": 2709750, + "normalized_name": "escape zombie maze" + }, + { + "appid": 2709800, + "normalized_name": "bam boom blade 竹個擊破" + }, + { + "appid": 2709810, + "normalized_name": "visit from above early access" + }, + { + "appid": 2709830, + "normalized_name": "feral sense" + }, + { + "appid": 2709870, + "normalized_name": "run and retry" + }, + { + "appid": 2709880, + "normalized_name": "justin freeman's build a house" + }, + { + "appid": 2709900, + "normalized_name": "my faithful and loyal wife would never cheat on me" + }, + { + "appid": 2709910, + "normalized_name": "five nights at cobson's" + }, + { + "appid": 2709920, + "normalized_name": "六面∞臂(rokumenhappi)" + }, + { + "appid": 2709940, + "normalized_name": "shhh!" + }, + { + "appid": 2709980, + "normalized_name": "whitetrick" + }, + { + "appid": 2709990, + "normalized_name": "good morning cruel city" + }, + { + "appid": 2710010, + "normalized_name": "stigma aria" + }, + { + "appid": 2710040, + "normalized_name": "delverium" + }, + { + "appid": 2710050, + "normalized_name": "so much stuff 5 mix knacks" + }, + { + "appid": 2710060, + "normalized_name": "西门立志传" + }, + { + "appid": 2710070, + "normalized_name": "just find it 4" + }, + { + "appid": 2710080, + "normalized_name": "silverwood bay an eleanor grey mystery" + }, + { + "appid": 2710090, + "normalized_name": "nature escapes 5" + }, + { + "appid": 2710100, + "normalized_name": "nightshade mysteries eternal moon" + }, + { + "appid": 2710120, + "normalized_name": "再见吧!义父!" + }, + { + "appid": 2710260, + "normalized_name": "tvs sample box" + }, + { + "appid": 2710290, + "normalized_name": "g warrior" + }, + { + "appid": 2710320, + "normalized_name": "the descent" + }, + { + "appid": 2710380, + "normalized_name": "sakura and the airyvixen" + }, + { + "appid": 2710390, + "normalized_name": "danger zone bomber" + }, + { + "appid": 2710410, + "normalized_name": "genius moves!" + }, + { + "appid": 2710420, + "normalized_name": "bums" + }, + { + "appid": 2710430, + "normalized_name": "mono space" + }, + { + "appid": 2710450, + "normalized_name": "おけけぬき" + }, + { + "appid": 2710460, + "normalized_name": "berserk high" + }, + { + "appid": 2710470, + "normalized_name": "午夜惊坤" + }, + { + "appid": 2710480, + "normalized_name": "the wife next door" + }, + { + "appid": 2710530, + "normalized_name": "rug cleaning simulator" + }, + { + "appid": 2710560, + "normalized_name": "umbra the last summoner" + }, + { + "appid": 2710580, + "normalized_name": "the cost of bliss" + }, + { + "appid": 2710590, + "normalized_name": "黑丝女孩" + }, + { + "appid": 2710600, + "normalized_name": "arcane prophecy flamebound" + }, + { + "appid": 2710650, + "normalized_name": "quantum void" + }, + { + "appid": 2710660, + "normalized_name": "sex spa 🔞💦" + }, + { + "appid": 2710740, + "normalized_name": "lost legions" + }, + { + "appid": 2710790, + "normalized_name": "battle of fate" + }, + { + "appid": 2710800, + "normalized_name": "counter attack" + }, + { + "appid": 2710880, + "normalized_name": "evolution from the little light" + }, + { + "appid": 2710920, + "normalized_name": "aeterna lucis" + }, + { + "appid": 2710950, + "normalized_name": "revenge of the colon" + }, + { + "appid": 2710960, + "normalized_name": "eins" + }, + { + "appid": 2710970, + "normalized_name": "dungeon vixens a tale of temptation" + }, + { + "appid": 2711010, + "normalized_name": "wolf survival" + }, + { + "appid": 2711020, + "normalized_name": "long trip" + }, + { + "appid": 2711030, + "normalized_name": "sugardew island your cozy farm shop" + }, + { + "appid": 2711050, + "normalized_name": "witchghost" + }, + { + "appid": 2711060, + "normalized_name": "sacrifices" + }, + { + "appid": 2711070, + "normalized_name": "casino boss simulator" + }, + { + "appid": 2711110, + "normalized_name": "landlock project wild" + }, + { + "appid": 2711150, + "normalized_name": "lethal infiltration ghost reconnaissance" + }, + { + "appid": 2711170, + "normalized_name": "yosei wars" + }, + { + "appid": 2711180, + "normalized_name": "undead rise of the betrayed king" + }, + { + "appid": 2711190, + "normalized_name": "hyperspace deck command" + }, + { + "appid": 2711200, + "normalized_name": "wing it!" + }, + { + "appid": 2711210, + "normalized_name": "mind keeper" + }, + { + "appid": 2711230, + "normalized_name": "red planet rampart" + }, + { + "appid": 2711280, + "normalized_name": "her soft hands" + }, + { + "appid": 2711290, + "normalized_name": "new life silent river" + }, + { + "appid": 2711300, + "normalized_name": "quirkbound" + }, + { + "appid": 2711320, + "normalized_name": "cum queens 🔞💦" + }, + { + "appid": 2711330, + "normalized_name": "the cadet files scene unseen" + }, + { + "appid": 2711350, + "normalized_name": "fuck stalin" + }, + { + "appid": 2711360, + "normalized_name": "starfall serenity" + }, + { + "appid": 2711490, + "normalized_name": "commando" + }, + { + "appid": 2711550, + "normalized_name": "crazy candydish" + }, + { + "appid": 2711600, + "normalized_name": "aery ancient empires" + }, + { + "appid": 2711610, + "normalized_name": "aery stone age" + }, + { + "appid": 2711620, + "normalized_name": "aery midnight hour" + }, + { + "appid": 2711630, + "normalized_name": "aery cyber city" + }, + { + "appid": 2711650, + "normalized_name": "the tale of mara & moa" + }, + { + "appid": 2711680, + "normalized_name": "gymfistprint" + }, + { + "appid": 2711690, + "normalized_name": "vanlife simulator" + }, + { + "appid": 2711710, + "normalized_name": "zero hero" + }, + { + "appid": 2711740, + "normalized_name": "knowledge domination" + }, + { + "appid": 2711770, + "normalized_name": "ropan" + }, + { + "appid": 2712340, + "normalized_name": "hentai tales succubus utopia" + }, + { + "appid": 2712350, + "normalized_name": "biochaos" + }, + { + "appid": 2712380, + "normalized_name": "legends of dragaea idle dungeons" + }, + { + "appid": 2712400, + "normalized_name": "ウラドラシル" + }, + { + "appid": 2712410, + "normalized_name": "kill santa" + }, + { + "appid": 2712420, + "normalized_name": "迎夢茶釜物語" + }, + { + "appid": 2712450, + "normalized_name": "onepunch" + }, + { + "appid": 2712460, + "normalized_name": "dungeon slasher" + }, + { + "appid": 2712470, + "normalized_name": "downfall" + }, + { + "appid": 2712480, + "normalized_name": "shikhondo youkai rampage" + }, + { + "appid": 2712500, + "normalized_name": "railrhythm" + }, + { + "appid": 2712530, + "normalized_name": "super!! card collect" + }, + { + "appid": 2712540, + "normalized_name": "完蛋!我也能追到美女了!" + }, + { + "appid": 2712550, + "normalized_name": "the shell part ii purgatorio" + }, + { + "appid": 2712570, + "normalized_name": "fantasy village simulator" + }, + { + "appid": 2712580, + "normalized_name": "南栀 unwavering love" + }, + { + "appid": 2712590, + "normalized_name": "dragon shelter" + }, + { + "appid": 2712600, + "normalized_name": "arena of faith" + }, + { + "appid": 2712630, + "normalized_name": "one hour and a straight line" + }, + { + "appid": 2712640, + "normalized_name": "lily & ghost" + }, + { + "appid": 2712670, + "normalized_name": "axe ghost" + }, + { + "appid": 2712710, + "normalized_name": "unyha" + }, + { + "appid": 2712720, + "normalized_name": "depths of darkness" + }, + { + "appid": 2712730, + "normalized_name": "杉木花与风信子 fir flowers and hyacinths" + }, + { + "appid": 2712740, + "normalized_name": "nomad defender" + }, + { + "appid": 2712750, + "normalized_name": "magic of runes hidden objects" + }, + { + "appid": 2712810, + "normalized_name": "troopstuck" + }, + { + "appid": 2712870, + "normalized_name": "mercenary battlegrounds" + }, + { + "appid": 2712880, + "normalized_name": "simulator of a person who is taking online course to study how to lose weight" + }, + { + "appid": 2712900, + "normalized_name": "taxi taxi taxi" + }, + { + "appid": 2712910, + "normalized_name": "spark & kling" + }, + { + "appid": 2712920, + "normalized_name": "band of brigands" + }, + { + "appid": 2712930, + "normalized_name": "在捷南逃" + }, + { + "appid": 2712940, + "normalized_name": "the hiker" + }, + { + "appid": 2712960, + "normalized_name": "palm simulator" + }, + { + "appid": 2713030, + "normalized_name": "interlude" + }, + { + "appid": 2713070, + "normalized_name": "few nights more genesis" + }, + { + "appid": 2713080, + "normalized_name": "challenge n°1" + }, + { + "appid": 2713110, + "normalized_name": "shlemo" + }, + { + "appid": 2713130, + "normalized_name": "die for light" + }, + { + "appid": 2713250, + "normalized_name": "nebula nomads" + }, + { + "appid": 2713340, + "normalized_name": "安努之庭" + }, + { + "appid": 2713370, + "normalized_name": "deep in the snowy night 2" + }, + { + "appid": 2713380, + "normalized_name": "shadows of chroma tower" + }, + { + "appid": 2713390, + "normalized_name": "steel echoes" + }, + { + "appid": 2713430, + "normalized_name": "soulmaze" + }, + { + "appid": 2713460, + "normalized_name": "mimic search" + }, + { + "appid": 2713480, + "normalized_name": "rivandy" + }, + { + "appid": 2713520, + "normalized_name": "dorei same" + }, + { + "appid": 2713550, + "normalized_name": "cursed dawn" + }, + { + "appid": 2713560, + "normalized_name": "princess polly" + }, + { + "appid": 2713630, + "normalized_name": "black market" + }, + { + "appid": 2713640, + "normalized_name": "skirmish squad" + }, + { + "appid": 2713650, + "normalized_name": "晶石守护者 (cubic defender)" + }, + { + "appid": 2713660, + "normalized_name": "cosmic rollers orbital odyssey" + }, + { + "appid": 2713680, + "normalized_name": "revenge crystal" + }, + { + "appid": 2713690, + "normalized_name": "shattered minds" + }, + { + "appid": 2713710, + "normalized_name": "cryptical" + }, + { + "appid": 2713740, + "normalized_name": "inside the crystal mountain" + }, + { + "appid": 2713750, + "normalized_name": "table tennis toon!" + }, + { + "appid": 2713760, + "normalized_name": "master blaster" + }, + { + "appid": 2713770, + "normalized_name": "next king" + }, + { + "appid": 2713780, + "normalized_name": "ヤマふだ! さんちょう" + }, + { + "appid": 2713790, + "normalized_name": "trickster chaos" + }, + { + "appid": 2713820, + "normalized_name": "elder magic squad" + }, + { + "appid": 2713920, + "normalized_name": "where's the boat" + }, + { + "appid": 2713930, + "normalized_name": "overhills" + }, + { + "appid": 2713940, + "normalized_name": "og memory kira maus" + }, + { + "appid": 2713950, + "normalized_name": "the snare" + }, + { + "appid": 2713960, + "normalized_name": "te amic" + }, + { + "appid": 2713990, + "normalized_name": "i keep dying in another world what the hell goddess!" + }, + { + "appid": 2714020, + "normalized_name": "power quest survivors" + }, + { + "appid": 2714100, + "normalized_name": "emotional flow" + }, + { + "appid": 2714130, + "normalized_name": "starship coaster" + }, + { + "appid": 2714170, + "normalized_name": "pleasure thieves" + }, + { + "appid": 2714210, + "normalized_name": "pocket pusher" + }, + { + "appid": 2714220, + "normalized_name": "crystal heroes" + }, + { + "appid": 2714260, + "normalized_name": "pulsar the vr experience" + }, + { + "appid": 2714270, + "normalized_name": "my anima boy" + }, + { + "appid": 2714330, + "normalized_name": "french fries pusher friends" + }, + { + "appid": 2714340, + "normalized_name": "pop ds" + }, + { + "appid": 2714440, + "normalized_name": "dokkalfheim magical university" + }, + { + "appid": 2714510, + "normalized_name": "star ship survivor" + }, + { + "appid": 2714560, + "normalized_name": "ヒサとヨミ 第1章 2人の魔法使い" + }, + { + "appid": 2714580, + "normalized_name": "president race" + }, + { + "appid": 2714600, + "normalized_name": "hidden capybaras with orange" + }, + { + "appid": 2714620, + "normalized_name": "duck detective the ghost of glamping" + }, + { + "appid": 2714640, + "normalized_name": "milf dream" + }, + { + "appid": 2714670, + "normalized_name": "青色复仇者" + }, + { + "appid": 2714760, + "normalized_name": "geostrategic" + }, + { + "appid": 2714900, + "normalized_name": "og puzzlers fall 2k23" + }, + { + "appid": 2714910, + "normalized_name": "stratum descent" + }, + { + "appid": 2714920, + "normalized_name": "pastor's lake the game" + }, + { + "appid": 2714930, + "normalized_name": "harbor" + }, + { + "appid": 2714970, + "normalized_name": "backrooms media" + }, + { + "appid": 2715000, + "normalized_name": "og memory fall 2k23" + }, + { + "appid": 2715020, + "normalized_name": "harrowed world what's past is portents gothic vampire visual novel" + }, + { + "appid": 2715060, + "normalized_name": "polyzen drive" + }, + { + "appid": 2715090, + "normalized_name": "hip game" + }, + { + "appid": 2715180, + "normalized_name": "summon my girl" + }, + { + "appid": 2715230, + "normalized_name": "ninja kato 2" + }, + { + "appid": 2715260, + "normalized_name": "fighting" + }, + { + "appid": 2715270, + "normalized_name": "adventuro" + }, + { + "appid": 2715280, + "normalized_name": "meet your oshi" + }, + { + "appid": 2715290, + "normalized_name": "foothold" + }, + { + "appid": 2715370, + "normalized_name": "旧日女修 ancient cultivatrix" + }, + { + "appid": 2715390, + "normalized_name": "call of farming together" + }, + { + "appid": 2715410, + "normalized_name": "the hell city builder of the dead" + }, + { + "appid": 2715420, + "normalized_name": "offroad vr" + }, + { + "appid": 2715530, + "normalized_name": "sysops simulator" + }, + { + "appid": 2715590, + "normalized_name": "我和美女有个约会" + }, + { + "appid": 2715620, + "normalized_name": "up to no goob" + }, + { + "appid": 2715640, + "normalized_name": "autobus park sim" + }, + { + "appid": 2715650, + "normalized_name": "humans are not that against lizardwomen" + }, + { + "appid": 2715660, + "normalized_name": "auto tow truck simulator" + }, + { + "appid": 2715680, + "normalized_name": "dangerous coins" + }, + { + "appid": 2715700, + "normalized_name": "teeny tiny town" + }, + { + "appid": 2715730, + "normalized_name": "后汉姬异录" + }, + { + "appid": 2715740, + "normalized_name": "tutor x hypnosis" + }, + { + "appid": 2715750, + "normalized_name": "aquabyss" + }, + { + "appid": 2715760, + "normalized_name": "blu caligo" + }, + { + "appid": 2715780, + "normalized_name": "minesweeper twist" + }, + { + "appid": 2715790, + "normalized_name": "horizon of horus" + }, + { + "appid": 2715810, + "normalized_name": "airlinesim" + }, + { + "appid": 2715830, + "normalized_name": "furea uerzt" + }, + { + "appid": 2715860, + "normalized_name": "the ogi cycles" + }, + { + "appid": 2715870, + "normalized_name": "before i go" + }, + { + "appid": 2715880, + "normalized_name": "farmer's diary" + }, + { + "appid": 2715910, + "normalized_name": "astro hunters vr" + }, + { + "appid": 2715930, + "normalized_name": "songs of the hmong" + }, + { + "appid": 2715940, + "normalized_name": "marble champions" + }, + { + "appid": 2715960, + "normalized_name": "girls hobby in love" + }, + { + "appid": 2715970, + "normalized_name": "last fantasy" + }, + { + "appid": 2715980, + "normalized_name": "what if your girl was a frog 2" + }, + { + "appid": 2716030, + "normalized_name": "poly plaza" + }, + { + "appid": 2716040, + "normalized_name": "mr flippers out for vengeance" + }, + { + "appid": 2716110, + "normalized_name": "[chilla's art] jisatsu | 自撮" + }, + { + "appid": 2716120, + "normalized_name": "kaetram" + }, + { + "appid": 2716140, + "normalized_name": "milo and the christmas gift" + }, + { + "appid": 2716150, + "normalized_name": "eternal struggle" + }, + { + "appid": 2716190, + "normalized_name": "dungeons of dragons" + }, + { + "appid": 2716200, + "normalized_name": "vector zone" + }, + { + "appid": 2716270, + "normalized_name": "the witch's cauldron prologue" + }, + { + "appid": 2716280, + "normalized_name": "fallen mankind mmo" + }, + { + "appid": 2716290, + "normalized_name": "medieval life chronicles of annora" + }, + { + "appid": 2716300, + "normalized_name": "diminishing light wheeled carnage" + }, + { + "appid": 2716380, + "normalized_name": "psychological operation" + }, + { + "appid": 2716400, + "normalized_name": "the rise of the golden idol" + }, + { + "appid": 2716520, + "normalized_name": "crash test idiots 2 (multiplayer)" + }, + { + "appid": 2716530, + "normalized_name": "college sex episode 5" + }, + { + "appid": 2716540, + "normalized_name": "no strings attached" + }, + { + "appid": 2716550, + "normalized_name": "it's grim up north | chapter 1" + }, + { + "appid": 2716600, + "normalized_name": "mystic labyrinth" + }, + { + "appid": 2716620, + "normalized_name": "demining" + }, + { + "appid": 2716690, + "normalized_name": "liquidum" + }, + { + "appid": 2716720, + "normalized_name": "make it! takoyaki" + }, + { + "appid": 2716730, + "normalized_name": "mechavenger" + }, + { + "appid": 2716750, + "normalized_name": "rogue galleon and the haunted treasure" + }, + { + "appid": 2716780, + "normalized_name": "total control" + }, + { + "appid": 2716800, + "normalized_name": "勇者mini" + }, + { + "appid": 2716810, + "normalized_name": "iskhaar3d" + }, + { + "appid": 2716820, + "normalized_name": "the cursed tower of lust" + }, + { + "appid": 2716830, + "normalized_name": "don't! fret" + }, + { + "appid": 2716870, + "normalized_name": "zodiac landing" + }, + { + "appid": 2716930, + "normalized_name": "皇帝与社稷 the emperor and state" + }, + { + "appid": 2716940, + "normalized_name": "battle sister leah" + }, + { + "appid": 2716960, + "normalized_name": "pizzapanic" + }, + { + "appid": 2716970, + "normalized_name": "tiny jukebox" + }, + { + "appid": 2716980, + "normalized_name": "city of ashes" + }, + { + "appid": 2717000, + "normalized_name": "拯救女孩行动 代号x" + }, + { + "appid": 2717010, + "normalized_name": "kalpa cosmic symphony" + }, + { + "appid": 2717050, + "normalized_name": "幸存者幻想曲 survivor fantasia" + }, + { + "appid": 2717060, + "normalized_name": "milking fantasy" + }, + { + "appid": 2717080, + "normalized_name": "merry xmerge" + }, + { + "appid": 2717110, + "normalized_name": "fifteen" + }, + { + "appid": 2717120, + "normalized_name": "shape of clouds" + }, + { + "appid": 2717130, + "normalized_name": "pixsaw" + }, + { + "appid": 2717140, + "normalized_name": "no way out" + }, + { + "appid": 2717150, + "normalized_name": "blood purge releaseburg" + }, + { + "appid": 2717160, + "normalized_name": "webcraft" + }, + { + "appid": 2717240, + "normalized_name": "neon fantasy predators" + }, + { + "appid": 2717250, + "normalized_name": "don't melt the snowman" + }, + { + "appid": 2717260, + "normalized_name": "i'm counting to 6..." + }, + { + "appid": 2717270, + "normalized_name": "foxfire mine" + }, + { + "appid": 2717310, + "normalized_name": "fallen young wife~netorare h without telling her husband~" + }, + { + "appid": 2717330, + "normalized_name": "locked in a room while visiting an old castle" + }, + { + "appid": 2717390, + "normalized_name": "heading home" + }, + { + "appid": 2717400, + "normalized_name": "霓虹人生" + }, + { + "appid": 2717450, + "normalized_name": "museum mystery deckbuilding card game" + }, + { + "appid": 2717480, + "normalized_name": "envelope" + }, + { + "appid": 2717570, + "normalized_name": "find the demon 恶魔鉴定守则" + }, + { + "appid": 2717600, + "normalized_name": "tipsy rescue" + }, + { + "appid": 2717610, + "normalized_name": "void reaper" + }, + { + "appid": 2717620, + "normalized_name": "of love and eternity" + }, + { + "appid": 2717630, + "normalized_name": "the last human go!" + }, + { + "appid": 2717690, + "normalized_name": "roll over princess" + }, + { + "appid": 2717710, + "normalized_name": "red planet rampage" + }, + { + "appid": 2717720, + "normalized_name": "citizen zein" + }, + { + "appid": 2717730, + "normalized_name": "ravage" + }, + { + "appid": 2717740, + "normalized_name": "d.beta" + }, + { + "appid": 2717750, + "normalized_name": "tobla divine path" + }, + { + "appid": 2717780, + "normalized_name": "the da vinci cryptex 2" + }, + { + "appid": 2717800, + "normalized_name": "project vic" + }, + { + "appid": 2717810, + "normalized_name": "void wizard" + }, + { + "appid": 2717850, + "normalized_name": "forklift simulator" + }, + { + "appid": 2717880, + "normalized_name": "the rogue prince of persia" + }, + { + "appid": 2717900, + "normalized_name": "click to clear" + }, + { + "appid": 2717940, + "normalized_name": "rc car maniacs" + }, + { + "appid": 2717950, + "normalized_name": "melia keys in... quantum decade" + }, + { + "appid": 2718010, + "normalized_name": "slash quest" + }, + { + "appid": 2718020, + "normalized_name": "handsum" + }, + { + "appid": 2718030, + "normalized_name": "sea under the sea under the sea" + }, + { + "appid": 2718060, + "normalized_name": "ninja attack" + }, + { + "appid": 2718070, + "normalized_name": "search all snails" + }, + { + "appid": 2718100, + "normalized_name": "legends of awen rise of the fianna" + }, + { + "appid": 2718110, + "normalized_name": "crusader's legacy" + }, + { + "appid": 2718120, + "normalized_name": "into" + }, + { + "appid": 2718140, + "normalized_name": "christmas fables the magic snowflake collector's" + }, + { + "appid": 2718150, + "normalized_name": "nightfeed" + }, + { + "appid": 2718160, + "normalized_name": "ruvn contest reboot" + }, + { + "appid": 2718210, + "normalized_name": "the skirmish" + }, + { + "appid": 2718240, + "normalized_name": "polypine" + }, + { + "appid": 2718260, + "normalized_name": "dawn of demons" + }, + { + "appid": 2718310, + "normalized_name": "xstall one evtol flight simulator" + }, + { + "appid": 2718320, + "normalized_name": "green again" + }, + { + "appid": 2718340, + "normalized_name": "deepy" + }, + { + "appid": 2718450, + "normalized_name": "the backrooms regret" + }, + { + "appid": 2718460, + "normalized_name": "mortui outbreak secrets" + }, + { + "appid": 2718470, + "normalized_name": "gems of evolution" + }, + { + "appid": 2718490, + "normalized_name": "time enforcers" + }, + { + "appid": 2718500, + "normalized_name": "escape from blackwood" + }, + { + "appid": 2718510, + "normalized_name": "dos steve pardo" + }, + { + "appid": 2718550, + "normalized_name": "the snake kingdom of gennibar six" + }, + { + "appid": 2718560, + "normalized_name": "maze!" + }, + { + "appid": 2718570, + "normalized_name": "they came from venus" + }, + { + "appid": 2718700, + "normalized_name": "bubble wrap" + }, + { + "appid": 2718710, + "normalized_name": "it mimics" + }, + { + "appid": 2718720, + "normalized_name": "lost mansion" + }, + { + "appid": 2718730, + "normalized_name": "热血大唐" + }, + { + "appid": 2718750, + "normalized_name": "mage balls" + }, + { + "appid": 2718820, + "normalized_name": "boundless skies" + }, + { + "appid": 2719000, + "normalized_name": "ace triad" + }, + { + "appid": 2719020, + "normalized_name": "apathy in our stars" + }, + { + "appid": 2719030, + "normalized_name": "meme mayhem" + }, + { + "appid": 2719060, + "normalized_name": "mirage feathers" + }, + { + "appid": 2719130, + "normalized_name": "东方裁判梦~rookie attorney legendry" + }, + { + "appid": 2719140, + "normalized_name": "tearfallen" + }, + { + "appid": 2719150, + "normalized_name": "holo x break" + }, + { + "appid": 2719160, + "normalized_name": "contractors showdown exfilzone" + }, + { + "appid": 2719190, + "normalized_name": "撩妹模拟器:渣男的秘密" + }, + { + "appid": 2719200, + "normalized_name": "samurai warriors 4 dx" + }, + { + "appid": 2719210, + "normalized_name": "slime link" + }, + { + "appid": 2719240, + "normalized_name": "伏魔" + }, + { + "appid": 2719250, + "normalized_name": "curse errant" + }, + { + "appid": 2719270, + "normalized_name": "last caveman" + }, + { + "appid": 2719290, + "normalized_name": "night raider" + }, + { + "appid": 2719300, + "normalized_name": "honey homer rps" + }, + { + "appid": 2719340, + "normalized_name": "return" + }, + { + "appid": 2719400, + "normalized_name": "baddool" + }, + { + "appid": 2719410, + "normalized_name": "spirits of baciu" + }, + { + "appid": 2719420, + "normalized_name": "dude simulator six" + }, + { + "appid": 2719460, + "normalized_name": "jk puzzle" + }, + { + "appid": 2719500, + "normalized_name": "the rising" + }, + { + "appid": 2719510, + "normalized_name": "the mom" + }, + { + "appid": 2719520, + "normalized_name": "sexy blackjack" + }, + { + "appid": 2719530, + "normalized_name": "lottery winner" + }, + { + "appid": 2719580, + "normalized_name": "勇者の伝説の勇者" + }, + { + "appid": 2719590, + "normalized_name": "light no fire" + }, + { + "appid": 2719600, + "normalized_name": "lorhaven cursed war" + }, + { + "appid": 2719610, + "normalized_name": "puiq demons" + }, + { + "appid": 2719630, + "normalized_name": "border base" + }, + { + "appid": 2719650, + "normalized_name": "project xsting" + }, + { + "appid": 2719670, + "normalized_name": "the milgram experiment" + }, + { + "appid": 2719680, + "normalized_name": "5 bucks for the bus" + }, + { + "appid": 2719710, + "normalized_name": "manor madness" + }, + { + "appid": 2719720, + "normalized_name": "fly hands" + }, + { + "appid": 2719730, + "normalized_name": "scatch 2 the painter cat" + }, + { + "appid": 2719740, + "normalized_name": "zero caliber 2" + }, + { + "appid": 2719750, + "normalized_name": "star birds" + }, + { + "appid": 2719760, + "normalized_name": "lucky tabi" + }, + { + "appid": 2719810, + "normalized_name": "summit smash" + }, + { + "appid": 2719820, + "normalized_name": "tafl ptk" + }, + { + "appid": 2719830, + "normalized_name": "striker manager 3 online football manager" + }, + { + "appid": 2719840, + "normalized_name": "fantastic haven prologue" + }, + { + "appid": 2719850, + "normalized_name": "super spelling ducks" + }, + { + "appid": 2719860, + "normalized_name": "solstale" + }, + { + "appid": 2719920, + "normalized_name": "asylum nightmares" + }, + { + "appid": 2719940, + "normalized_name": "the bonerooms" + }, + { + "appid": 2719950, + "normalized_name": "unveiling" + }, + { + "appid": 2719960, + "normalized_name": "hotdog kitchen" + }, + { + "appid": 2719970, + "normalized_name": "novax" + }, + { + "appid": 2719980, + "normalized_name": "altitude's toll" + }, + { + "appid": 2719990, + "normalized_name": "into the unknown" + }, + { + "appid": 2720000, + "normalized_name": "neon goddess" + }, + { + "appid": 2720010, + "normalized_name": "rogue fable iv" + }, + { + "appid": 2720040, + "normalized_name": "f.i.t." + }, + { + "appid": 2720050, + "normalized_name": "d.a.m. champion" + }, + { + "appid": 2720070, + "normalized_name": "droste effect" + }, + { + "appid": 2720090, + "normalized_name": "the resort" + }, + { + "appid": 2720100, + "normalized_name": "palm house pursuit" + }, + { + "appid": 2720120, + "normalized_name": "bullet speed" + }, + { + "appid": 2720130, + "normalized_name": "rogue sky" + }, + { + "appid": 2720210, + "normalized_name": "driving home(icide)" + }, + { + "appid": 2720230, + "normalized_name": "xplorite" + }, + { + "appid": 2720260, + "normalized_name": "jupiter melon" + }, + { + "appid": 2720270, + "normalized_name": "vfurrika!" + }, + { + "appid": 2720280, + "normalized_name": "follow the meaning" + }, + { + "appid": 2720320, + "normalized_name": "forced sacrifice lost soul" + }, + { + "appid": 2720330, + "normalized_name": "three times sixty" + }, + { + "appid": 2720340, + "normalized_name": "cole dingo's vtuber blackjack" + }, + { + "appid": 2720360, + "normalized_name": "tastrion" + }, + { + "appid": 2720420, + "normalized_name": "sweet skullvivors" + }, + { + "appid": 2720430, + "normalized_name": "化鬼deteriorate上" + }, + { + "appid": 2720440, + "normalized_name": "黑暗征途:魔王的命运" + }, + { + "appid": 2720540, + "normalized_name": "陨铁山 falling mountains" + }, + { + "appid": 2720620, + "normalized_name": "one more night" + }, + { + "appid": 2720640, + "normalized_name": "dwarf land" + }, + { + "appid": 2720670, + "normalized_name": "rainbow fighter" + }, + { + "appid": 2720680, + "normalized_name": "sex simulator bar girls" + }, + { + "appid": 2720690, + "normalized_name": "elf shield" + }, + { + "appid": 2720700, + "normalized_name": "karos classic" + }, + { + "appid": 2720730, + "normalized_name": "our journey" + }, + { + "appid": 2720740, + "normalized_name": "the cooking class first course" + }, + { + "appid": 2720780, + "normalized_name": "artemis vr" + }, + { + "appid": 2720810, + "normalized_name": "tempo cube" + }, + { + "appid": 2720820, + "normalized_name": "hexistence" + }, + { + "appid": 2720840, + "normalized_name": "hentai nekomimi" + }, + { + "appid": 2720920, + "normalized_name": "astrobotanica" + }, + { + "appid": 2720940, + "normalized_name": "book smugglers" + }, + { + "appid": 2720950, + "normalized_name": "grunn" + }, + { + "appid": 2720980, + "normalized_name": "多边星球 multilateral planet" + }, + { + "appid": 2721020, + "normalized_name": "adorable dog gnomeageddon" + }, + { + "appid": 2721030, + "normalized_name": "stellagate" + }, + { + "appid": 2721040, + "normalized_name": "sail of dreams" + }, + { + "appid": 2721090, + "normalized_name": "divine journey the life of jesus" + }, + { + "appid": 2721150, + "normalized_name": "seeds of paradise" + }, + { + "appid": 2721170, + "normalized_name": "brutal ball" + }, + { + "appid": 2721180, + "normalized_name": "hardcore!!! milf sex party" + }, + { + "appid": 2721190, + "normalized_name": "varivarevenge" + }, + { + "appid": 2721200, + "normalized_name": "ジグソーローグ" + }, + { + "appid": 2721210, + "normalized_name": "true disc golf" + }, + { + "appid": 2721240, + "normalized_name": "brothel secrets 🔞" + }, + { + "appid": 2721250, + "normalized_name": "slime brawly brawl" + }, + { + "appid": 2721260, + "normalized_name": "pigeons" + }, + { + "appid": 2721280, + "normalized_name": "apex ninja" + }, + { + "appid": 2721290, + "normalized_name": "mutant monster invasion" + }, + { + "appid": 2721300, + "normalized_name": "suramon" + }, + { + "appid": 2721320, + "normalized_name": "kitty cat combat" + }, + { + "appid": 2721360, + "normalized_name": "dark laws" + }, + { + "appid": 2721390, + "normalized_name": "oathborne" + }, + { + "appid": 2721420, + "normalized_name": "who am i remedy" + }, + { + "appid": 2721440, + "normalized_name": "fish combat" + }, + { + "appid": 2721470, + "normalized_name": "neon extermination" + }, + { + "appid": 2721530, + "normalized_name": "afterplace" + }, + { + "appid": 2721580, + "normalized_name": "nightfall conquest" + }, + { + "appid": 2721590, + "normalized_name": "project eliot" + }, + { + "appid": 2721680, + "normalized_name": "ball is life" + }, + { + "appid": 2721690, + "normalized_name": "cod quest!" + }, + { + "appid": 2721710, + "normalized_name": "gloomsday" + }, + { + "appid": 2721750, + "normalized_name": "from nava" + }, + { + "appid": 2721800, + "normalized_name": "水没廃墟のピアノドロイド" + }, + { + "appid": 2721820, + "normalized_name": "the death of rebirth" + }, + { + "appid": 2721830, + "normalized_name": "tower defense rpg" + }, + { + "appid": 2721850, + "normalized_name": "traces of the unknown" + }, + { + "appid": 2721880, + "normalized_name": "aegis dilemma veritas omnia vincit" + }, + { + "appid": 2721890, + "normalized_name": "öoo" + }, + { + "appid": 2721900, + "normalized_name": "card td" + }, + { + "appid": 2721960, + "normalized_name": "tales of two heroes" + }, + { + "appid": 2721980, + "normalized_name": "nexus pi" + }, + { + "appid": 2722000, + "normalized_name": "我说什么她们都答应(okeverything)" + }, + { + "appid": 2722030, + "normalized_name": "chew chew mimic" + }, + { + "appid": 2722120, + "normalized_name": "tiny archers vr" + }, + { + "appid": 2722130, + "normalized_name": "傀儡禁域" + }, + { + "appid": 2722160, + "normalized_name": "astrosphere" + }, + { + "appid": 2722200, + "normalized_name": "sugar sugar sugarcoat" + }, + { + "appid": 2722210, + "normalized_name": "dungeon of erotic master plus" + }, + { + "appid": 2722230, + "normalized_name": "little nemo" + }, + { + "appid": 2722260, + "normalized_name": "umbrella girl" + }, + { + "appid": 2722270, + "normalized_name": "永恒幻境 eternal dreamland" + }, + { + "appid": 2722310, + "normalized_name": "clem the first attribute" + }, + { + "appid": 2722330, + "normalized_name": "waidh" + }, + { + "appid": 2722360, + "normalized_name": "escape memoirs safe house" + }, + { + "appid": 2722380, + "normalized_name": "rock and roots" + }, + { + "appid": 2722400, + "normalized_name": "orphans" + }, + { + "appid": 2722440, + "normalized_name": "corridor vr" + }, + { + "appid": 2722480, + "normalized_name": "陌界·终末序曲" + }, + { + "appid": 2722490, + "normalized_name": "blast them all" + }, + { + "appid": 2722500, + "normalized_name": "streak of power" + }, + { + "appid": 2722550, + "normalized_name": "god of this world" + }, + { + "appid": 2722560, + "normalized_name": "和她一起整顿职场!" + }, + { + "appid": 2722570, + "normalized_name": "christmas girls" + }, + { + "appid": 2722600, + "normalized_name": "merchant isle" + }, + { + "appid": 2722610, + "normalized_name": "grand emprise 2 portals apart" + }, + { + "appid": 2722630, + "normalized_name": "laser 77 virtual lab" + }, + { + "appid": 2722640, + "normalized_name": "coin op vice" + }, + { + "appid": 2722660, + "normalized_name": "fraudulent idols" + }, + { + "appid": 2722730, + "normalized_name": "desktank" + }, + { + "appid": 2722740, + "normalized_name": "watermelon suika game" + }, + { + "appid": 2722760, + "normalized_name": "intruder alert" + }, + { + "appid": 2722770, + "normalized_name": "super space planet fighter" + }, + { + "appid": 2722780, + "normalized_name": "rusted sea" + }, + { + "appid": 2722820, + "normalized_name": "dash & roll" + }, + { + "appid": 2722830, + "normalized_name": "paper plane arena shamans" + }, + { + "appid": 2722850, + "normalized_name": "paper plane arena a medieval fantasy" + }, + { + "appid": 2722860, + "normalized_name": "万圣节万圣节万圣节 hhhalloween" + }, + { + "appid": 2722870, + "normalized_name": "paper plane arena the haunted house" + }, + { + "appid": 2722880, + "normalized_name": "paper plane arena lost places" + }, + { + "appid": 2722920, + "normalized_name": "dirt bike unlimited bike experience" + }, + { + "appid": 2722930, + "normalized_name": "space memory tdg" + }, + { + "appid": 2722940, + "normalized_name": "civilization builder" + }, + { + "appid": 2722950, + "normalized_name": "黑公司:上班" + }, + { + "appid": 2722960, + "normalized_name": "foreign fortress" + }, + { + "appid": 2722980, + "normalized_name": "lang ops modern greek (intro to learn language)" + }, + { + "appid": 2722990, + "normalized_name": "vanillabeast mystery kink" + }, + { + "appid": 2723000, + "normalized_name": "rat trap" + }, + { + "appid": 2723080, + "normalized_name": "specfreq" + }, + { + "appid": 2723140, + "normalized_name": "divine twins" + }, + { + "appid": 2723170, + "normalized_name": "crazy monster 疯狂的怪物" + }, + { + "appid": 2723180, + "normalized_name": "prion infection" + }, + { + "appid": 2723190, + "normalized_name": "suika game 3d" + }, + { + "appid": 2723200, + "normalized_name": "shooting donut" + }, + { + "appid": 2723220, + "normalized_name": "boboinvasion" + }, + { + "appid": 2723250, + "normalized_name": "maledictor" + }, + { + "appid": 2723270, + "normalized_name": "orcinus orca pod rescue" + }, + { + "appid": 2723300, + "normalized_name": "开发土地的商人" + }, + { + "appid": 2723310, + "normalized_name": "take bomb the suit take off" + }, + { + "appid": 2723340, + "normalized_name": "dynamic destruction" + }, + { + "appid": 2723360, + "normalized_name": "新星辰变" + }, + { + "appid": 2723370, + "normalized_name": "voiceless" + }, + { + "appid": 2723390, + "normalized_name": "tiny hero idle" + }, + { + "appid": 2723430, + "normalized_name": "inkonbini one store. many stories" + }, + { + "appid": 2723460, + "normalized_name": "dogs huddled together 挤在一起的狗狗们" + }, + { + "appid": 2723470, + "normalized_name": "ancient sprits columbus' legacy" + }, + { + "appid": 2723480, + "normalized_name": "goi survivors" + }, + { + "appid": 2723490, + "normalized_name": "100%满分恋爱模拟器" + }, + { + "appid": 2723510, + "normalized_name": "指示待ち人間run" + }, + { + "appid": 2723520, + "normalized_name": "misha's incident" + }, + { + "appid": 2723540, + "normalized_name": "bully ball soccer" + }, + { + "appid": 2723550, + "normalized_name": "in service of the queen" + }, + { + "appid": 2723590, + "normalized_name": "rogue slime" + }, + { + "appid": 2723610, + "normalized_name": "candyventure rebaked" + }, + { + "appid": 2723620, + "normalized_name": "dunjumb" + }, + { + "appid": 2723640, + "normalized_name": "santa's busy day" + }, + { + "appid": 2723660, + "normalized_name": "uber urban" + }, + { + "appid": 2723670, + "normalized_name": "scorched warfare" + }, + { + "appid": 2723690, + "normalized_name": "robot multitool" + }, + { + "appid": 2723720, + "normalized_name": "mr. jones retribution" + }, + { + "appid": 2723810, + "normalized_name": "sbcatfight game" + }, + { + "appid": 2723820, + "normalized_name": "ufo sightings simulator" + }, + { + "appid": 2723850, + "normalized_name": "tank of the kayra" + }, + { + "appid": 2723880, + "normalized_name": "notes to myself" + }, + { + "appid": 2723900, + "normalized_name": "elfin around" + }, + { + "appid": 2723910, + "normalized_name": "street totochèr" + }, + { + "appid": 2723960, + "normalized_name": "ulimek" + }, + { + "appid": 2723980, + "normalized_name": "dream island a skyward journey" + }, + { + "appid": 2724020, + "normalized_name": "sea and adventure" + }, + { + "appid": 2724040, + "normalized_name": "劍紙三國" + }, + { + "appid": 2724110, + "normalized_name": "infinite dissonance" + }, + { + "appid": 2724130, + "normalized_name": "skeleton rebellion" + }, + { + "appid": 2724140, + "normalized_name": "sus" + }, + { + "appid": 2724160, + "normalized_name": "mana" + }, + { + "appid": 2724180, + "normalized_name": "youra the game" + }, + { + "appid": 2724220, + "normalized_name": "junklands" + }, + { + "appid": 2724330, + "normalized_name": "era of darkness" + }, + { + "appid": 2724440, + "normalized_name": "weekend romance" + }, + { + "appid": 2724450, + "normalized_name": "cannon master military sport" + }, + { + "appid": 2724500, + "normalized_name": "alpaca wonders why" + }, + { + "appid": 2724510, + "normalized_name": "cubic light" + }, + { + "appid": 2724520, + "normalized_name": "before time runs out" + }, + { + "appid": 2724530, + "normalized_name": "how little we wait" + }, + { + "appid": 2724540, + "normalized_name": "cybernetic seduction season 1" + }, + { + "appid": 2724550, + "normalized_name": "榜一大哥幻想曲" + }, + { + "appid": 2724560, + "normalized_name": "sugar mommy" + }, + { + "appid": 2724570, + "normalized_name": "sex village" + }, + { + "appid": 2724600, + "normalized_name": "i keep dying in another world" + }, + { + "appid": 2724630, + "normalized_name": "vent vipers" + }, + { + "appid": 2724640, + "normalized_name": "aimx" + }, + { + "appid": 2724650, + "normalized_name": "the bustling world" + }, + { + "appid": 2724660, + "normalized_name": "终境传说" + }, + { + "appid": 2724680, + "normalized_name": "worlds of parallela" + }, + { + "appid": 2724700, + "normalized_name": "zenteni create creatures" + }, + { + "appid": 2724710, + "normalized_name": "seka ii" + }, + { + "appid": 2724740, + "normalized_name": "psychiatrist simulator 2" + }, + { + "appid": 2724770, + "normalized_name": "the journalist" + }, + { + "appid": 2724780, + "normalized_name": "last dino standing" + }, + { + "appid": 2724800, + "normalized_name": "battleprogress" + }, + { + "appid": 2724810, + "normalized_name": "oil coin" + }, + { + "appid": 2724830, + "normalized_name": "elementum" + }, + { + "appid": 2724860, + "normalized_name": "zen garden" + }, + { + "appid": 2724930, + "normalized_name": "juniper burning" + }, + { + "appid": 2724960, + "normalized_name": "英雄之路" + }, + { + "appid": 2724980, + "normalized_name": "cardscrawl" + }, + { + "appid": 2724990, + "normalized_name": "saiborrai" + }, + { + "appid": 2725000, + "normalized_name": "fallen" + }, + { + "appid": 2725010, + "normalized_name": "西游伏妖传" + }, + { + "appid": 2725020, + "normalized_name": "viking heroes 5" + }, + { + "appid": 2725030, + "normalized_name": "saving clicklandia" + }, + { + "appid": 2725040, + "normalized_name": "小先生 little shifu" + }, + { + "appid": 2725080, + "normalized_name": "super liftpia" + }, + { + "appid": 2725090, + "normalized_name": "her trees the puzzle house" + }, + { + "appid": 2725150, + "normalized_name": "ntr with hypnosis application" + }, + { + "appid": 2725170, + "normalized_name": "z speed arcade" + }, + { + "appid": 2725190, + "normalized_name": "cats guns & robots" + }, + { + "appid": 2725200, + "normalized_name": "prisoners" + }, + { + "appid": 2725230, + "normalized_name": "dark memories prologue" + }, + { + "appid": 2725240, + "normalized_name": "fade^2" + }, + { + "appid": 2725250, + "normalized_name": "nientum op.zero" + }, + { + "appid": 2725260, + "normalized_name": "ender magnolia bloom in the mist" + }, + { + "appid": 2725310, + "normalized_name": "hentai swapy puzzle 2" + }, + { + "appid": 2725320, + "normalized_name": "dice of god" + }, + { + "appid": 2725330, + "normalized_name": "憧れのガチムチおじさんがボクだけのドスケベママになっちゃった❤" + }, + { + "appid": 2725340, + "normalized_name": "game of fitna vol. 1" + }, + { + "appid": 2725350, + "normalized_name": "granser" + }, + { + "appid": 2725420, + "normalized_name": "twinkle☆guardians" + }, + { + "appid": 2725430, + "normalized_name": "yokai city" + }, + { + "appid": 2725450, + "normalized_name": "the hovanets the keeper of the enchanted tree" + }, + { + "appid": 2725460, + "normalized_name": "cover yourself in blood" + }, + { + "appid": 2725470, + "normalized_name": "the prisoning fletcher's quest" + }, + { + "appid": 2725500, + "normalized_name": "xmas toy merge" + }, + { + "appid": 2725520, + "normalized_name": "pryzm" + }, + { + "appid": 2725560, + "normalized_name": "idle fishing" + }, + { + "appid": 2725600, + "normalized_name": "独特的友谊 special friendship" + }, + { + "appid": 2725610, + "normalized_name": "haunted bloodlines" + }, + { + "appid": 2725630, + "normalized_name": "segment in space 1985" + }, + { + "appid": 2725640, + "normalized_name": "ocean mirror" + }, + { + "appid": 2725650, + "normalized_name": "pro show jumping" + }, + { + "appid": 2725660, + "normalized_name": "survival advanced" + }, + { + "appid": 2725670, + "normalized_name": "shade a dog's expedition" + }, + { + "appid": 2725700, + "normalized_name": "dinnerdinnner" + }, + { + "appid": 2725770, + "normalized_name": "hire me!" + }, + { + "appid": 2725800, + "normalized_name": "stablebound" + }, + { + "appid": 2725840, + "normalized_name": "the god heroes" + }, + { + "appid": 2725860, + "normalized_name": "starstrike" + }, + { + "appid": 2725950, + "normalized_name": "100% plasma vitae" + }, + { + "appid": 2726020, + "normalized_name": "endless wonder vr" + }, + { + "appid": 2726030, + "normalized_name": "grapplers and space stuff" + }, + { + "appid": 2726050, + "normalized_name": "unmasked an inner journey" + }, + { + "appid": 2726060, + "normalized_name": "fable hospital" + }, + { + "appid": 2726080, + "normalized_name": "the bard for her" + }, + { + "appid": 2726100, + "normalized_name": "furniture build & repair" + }, + { + "appid": 2726110, + "normalized_name": "cubebam" + }, + { + "appid": 2726130, + "normalized_name": "the tribes" + }, + { + "appid": 2726160, + "normalized_name": "unnamed project" + }, + { + "appid": 2726180, + "normalized_name": "die erdnussbutter" + }, + { + "appid": 2726200, + "normalized_name": "hook line & sinker" + }, + { + "appid": 2726230, + "normalized_name": "onward and upward! dx" + }, + { + "appid": 2726240, + "normalized_name": "charrua soccer mirror" + }, + { + "appid": 2726270, + "normalized_name": "save elizy" + }, + { + "appid": 2726280, + "normalized_name": "starwave defender" + }, + { + "appid": 2726310, + "normalized_name": "hotel heldritch" + }, + { + "appid": 2726320, + "normalized_name": "меліній" + }, + { + "appid": 2726350, + "normalized_name": "super dash" + }, + { + "appid": 2726360, + "normalized_name": "twilight parade moonlit mononoke" + }, + { + "appid": 2726410, + "normalized_name": "ruins of the forgotten a wild survival" + }, + { + "appid": 2726420, + "normalized_name": "shibawarriors" + }, + { + "appid": 2726440, + "normalized_name": "ronin rush" + }, + { + "appid": 2726450, + "normalized_name": "windowkill" + }, + { + "appid": 2726460, + "normalized_name": "renovation simulator" + }, + { + "appid": 2726470, + "normalized_name": "escape from inferno" + }, + { + "appid": 2726490, + "normalized_name": "hamster hunter" + }, + { + "appid": 2726510, + "normalized_name": "legend of the valley" + }, + { + "appid": 2726560, + "normalized_name": "kona & snowrabbit" + }, + { + "appid": 2726670, + "normalized_name": "phoenix zero" + }, + { + "appid": 2726680, + "normalized_name": "pixel monk" + }, + { + "appid": 2726720, + "normalized_name": "转生异世界" + }, + { + "appid": 2726740, + "normalized_name": "don't text and drive" + }, + { + "appid": 2726750, + "normalized_name": "病娇x契约" + }, + { + "appid": 2726780, + "normalized_name": "fire&fly火萤" + }, + { + "appid": 2726810, + "normalized_name": "realm of i" + }, + { + "appid": 2726830, + "normalized_name": "the otter ways" + }, + { + "appid": 2726860, + "normalized_name": "interstellar inn" + }, + { + "appid": 2726870, + "normalized_name": "玩个gui" + }, + { + "appid": 2726890, + "normalized_name": "拜托!明天和我恋爱吧" + }, + { + "appid": 2726900, + "normalized_name": "frostbiter" + }, + { + "appid": 2726910, + "normalized_name": "spark of survival" + }, + { + "appid": 2726920, + "normalized_name": "剪刀少女的杂草危机(scissor girl's weed crisis)" + }, + { + "appid": 2726930, + "normalized_name": "paws trail" + }, + { + "appid": 2726950, + "normalized_name": "fa jin" + }, + { + "appid": 2726960, + "normalized_name": "搜查一刻" + }, + { + "appid": 2726980, + "normalized_name": "i think" + }, + { + "appid": 2727020, + "normalized_name": "orc's bride" + }, + { + "appid": 2727040, + "normalized_name": "blood sins" + }, + { + "appid": 2727210, + "normalized_name": "deathless. the hero quest" + }, + { + "appid": 2727350, + "normalized_name": "arlo" + }, + { + "appid": 2727360, + "normalized_name": "万化江湖" + }, + { + "appid": 2727420, + "normalized_name": "sergei and the tax return" + }, + { + "appid": 2727430, + "normalized_name": "kiosk simulator" + }, + { + "appid": 2727440, + "normalized_name": "hot office sex story 🔞" + }, + { + "appid": 2727470, + "normalized_name": "teletext" + }, + { + "appid": 2727490, + "normalized_name": "blitz arena" + }, + { + "appid": 2727520, + "normalized_name": "escape from calypso" + }, + { + "appid": 2727550, + "normalized_name": "kochaos" + }, + { + "appid": 2727570, + "normalized_name": "tower tactics arena" + }, + { + "appid": 2727580, + "normalized_name": "ash the cat" + }, + { + "appid": 2727650, + "normalized_name": "what the car?" + }, + { + "appid": 2727660, + "normalized_name": "glitchspankr" + }, + { + "appid": 2727670, + "normalized_name": "chronicles of sagrea" + }, + { + "appid": 2727700, + "normalized_name": "real" + }, + { + "appid": 2727770, + "normalized_name": "planet x16" + }, + { + "appid": 2727810, + "normalized_name": "alice49 ep.0『ダイヤモンドとシュークリーム』" + }, + { + "appid": 2727820, + "normalized_name": "whispers of elysium" + }, + { + "appid": 2727850, + "normalized_name": "looped" + }, + { + "appid": 2727870, + "normalized_name": "grigorinightdragon" + }, + { + "appid": 2727890, + "normalized_name": "dr. alb's prodigy" + }, + { + "appid": 2727960, + "normalized_name": "pirates & pirater" + }, + { + "appid": 2727970, + "normalized_name": "serenestadt" + }, + { + "appid": 2728040, + "normalized_name": "sherlocat holmes nonogram" + }, + { + "appid": 2728050, + "normalized_name": "scratchin' melodii" + }, + { + "appid": 2728080, + "normalized_name": "two souls" + }, + { + "appid": 2728090, + "normalized_name": "endure or perish" + }, + { + "appid": 2728100, + "normalized_name": "oxadrez" + }, + { + "appid": 2728120, + "normalized_name": "remote island" + }, + { + "appid": 2728130, + "normalized_name": "annihilation" + }, + { + "appid": 2728190, + "normalized_name": "rocket knight adventures re sparked collection" + }, + { + "appid": 2728200, + "normalized_name": "ninja five o" + }, + { + "appid": 2728240, + "normalized_name": "bitesize heroes forest defender" + }, + { + "appid": 2728250, + "normalized_name": "the backrooms descent" + }, + { + "appid": 2728260, + "normalized_name": "wren's resurgence" + }, + { + "appid": 2728320, + "normalized_name": "velkyn" + }, + { + "appid": 2728330, + "normalized_name": "hz_server" + }, + { + "appid": 2728340, + "normalized_name": "trap tower trials" + }, + { + "appid": 2728460, + "normalized_name": "capital fire" + }, + { + "appid": 2728570, + "normalized_name": "文物数独" + }, + { + "appid": 2728750, + "normalized_name": "gozenyojinomanimani" + }, + { + "appid": 2728830, + "normalized_name": "the inn at nightfall" + }, + { + "appid": 2728840, + "normalized_name": "the crimson lyre" + }, + { + "appid": 2728900, + "normalized_name": "bot warzone" + }, + { + "appid": 2728910, + "normalized_name": "mortal glory 2 prologue" + }, + { + "appid": 2728950, + "normalized_name": "potty knight saga" + }, + { + "appid": 2728990, + "normalized_name": "trail of the wretched" + }, + { + "appid": 2729000, + "normalized_name": "cats and seek dino park" + }, + { + "appid": 2729040, + "normalized_name": "twizzle puzzle animals" + }, + { + "appid": 2729050, + "normalized_name": "the legend of elrian" + }, + { + "appid": 2729090, + "normalized_name": "straight up" + }, + { + "appid": 2729140, + "normalized_name": "saffron" + }, + { + "appid": 2729170, + "normalized_name": "brownie's haunted christmas" + }, + { + "appid": 2729180, + "normalized_name": "neboslav" + }, + { + "appid": 2729220, + "normalized_name": "the da vinci cryptex 3" + }, + { + "appid": 2729250, + "normalized_name": "hentai parody tentacle slayer" + }, + { + "appid": 2729350, + "normalized_name": "lamu" + }, + { + "appid": 2729360, + "normalized_name": "虚构未来(imaginary future)" + }, + { + "appid": 2729370, + "normalized_name": "tharaba" + }, + { + "appid": 2729380, + "normalized_name": "cham the cat adventure" + }, + { + "appid": 2729390, + "normalized_name": "jewelinx" + }, + { + "appid": 2729400, + "normalized_name": "oumuamua" + }, + { + "appid": 2729410, + "normalized_name": "thunder striker" + }, + { + "appid": 2729420, + "normalized_name": "rumble dragon" + }, + { + "appid": 2729430, + "normalized_name": "dandan z" + }, + { + "appid": 2729440, + "normalized_name": "verzeus" + }, + { + "appid": 2729450, + "normalized_name": "profiler files new orleans" + }, + { + "appid": 2729460, + "normalized_name": "漂移射手 driftshooter" + }, + { + "appid": 2729480, + "normalized_name": "nightclub simulator" + }, + { + "appid": 2729500, + "normalized_name": "witches wishes and whispers" + }, + { + "appid": 2729510, + "normalized_name": "antiquarium" + }, + { + "appid": 2729520, + "normalized_name": "jump out" + }, + { + "appid": 2729540, + "normalized_name": "infinite inside" + }, + { + "appid": 2729550, + "normalized_name": "scarred mansion" + }, + { + "appid": 2729570, + "normalized_name": "七个背叛者 seven betrayers" + }, + { + "appid": 2729600, + "normalized_name": "rainbow cotton" + }, + { + "appid": 2729660, + "normalized_name": "vaporware odyssey" + }, + { + "appid": 2729670, + "normalized_name": "drop it" + }, + { + "appid": 2729710, + "normalized_name": "don't touch my phone" + }, + { + "appid": 2729720, + "normalized_name": "4 in einer reihe" + }, + { + "appid": 2729740, + "normalized_name": "armed forces of ukraine game" + }, + { + "appid": 2729770, + "normalized_name": "ignis" + }, + { + "appid": 2729820, + "normalized_name": "vending dokan! kozy kiosk" + }, + { + "appid": 2729830, + "normalized_name": "pumpkin woods" + }, + { + "appid": 2729940, + "normalized_name": "sluggerpunk" + }, + { + "appid": 2729990, + "normalized_name": "sex simulator bar staff" + }, + { + "appid": 2730010, + "normalized_name": "too small to matter" + }, + { + "appid": 2730020, + "normalized_name": "satori" + }, + { + "appid": 2730050, + "normalized_name": "starxia" + }, + { + "appid": 2730060, + "normalized_name": "where is johnny" + }, + { + "appid": 2730090, + "normalized_name": "furballer" + }, + { + "appid": 2730120, + "normalized_name": "last of the noticers" + }, + { + "appid": 2730170, + "normalized_name": "they can hear us" + }, + { + "appid": 2730180, + "normalized_name": "a liminal place" + }, + { + "appid": 2730220, + "normalized_name": "asta pool can humans beat bots?" + }, + { + "appid": 2730240, + "normalized_name": "block hunter" + }, + { + "appid": 2730270, + "normalized_name": "sputnika game" + }, + { + "appid": 2730280, + "normalized_name": "date with the night" + }, + { + "appid": 2730290, + "normalized_name": "journey to monolith" + }, + { + "appid": 2730300, + "normalized_name": "shepherd's eye" + }, + { + "appid": 2730320, + "normalized_name": "农场还债物语" + }, + { + "appid": 2730350, + "normalized_name": "liminal border part ii" + }, + { + "appid": 2730370, + "normalized_name": "ballcore" + }, + { + "appid": 2730380, + "normalized_name": "baby dino" + }, + { + "appid": 2730410, + "normalized_name": "甜味时光" + }, + { + "appid": 2730420, + "normalized_name": "dismay" + }, + { + "appid": 2730440, + "normalized_name": "シモツケノヤカタ" + }, + { + "appid": 2730480, + "normalized_name": "under the mask" + }, + { + "appid": 2730490, + "normalized_name": "모양성 vr" + }, + { + "appid": 2730530, + "normalized_name": "syn chorus 01 the new life" + }, + { + "appid": 2730540, + "normalized_name": "card en ciel" + }, + { + "appid": 2730550, + "normalized_name": "bartending master" + }, + { + "appid": 2730580, + "normalized_name": "magicgirls★shooting!!" + }, + { + "appid": 2730590, + "normalized_name": "medieval revenge" + }, + { + "appid": 2730600, + "normalized_name": "avelia" + }, + { + "appid": 2730650, + "normalized_name": "逆乱封神之武王伐纣" + }, + { + "appid": 2730660, + "normalized_name": "school curse2" + }, + { + "appid": 2730680, + "normalized_name": "learn japanese yuke and the book of yokai" + }, + { + "appid": 2730700, + "normalized_name": "drone perspective" + }, + { + "appid": 2730710, + "normalized_name": "the great farce" + }, + { + "appid": 2730790, + "normalized_name": "mr. mueller's grand experiment" + }, + { + "appid": 2730800, + "normalized_name": "incursion2d" + }, + { + "appid": 2730810, + "normalized_name": "everybody's golf hot shots" + }, + { + "appid": 2730820, + "normalized_name": "aliosso" + }, + { + "appid": 2730860, + "normalized_name": "freelife" + }, + { + "appid": 2730890, + "normalized_name": "bread around bread around bread around bread" + }, + { + "appid": 2730910, + "normalized_name": "break enter repeat" + }, + { + "appid": 2730940, + "normalized_name": "myrummy" + }, + { + "appid": 2730960, + "normalized_name": "盗墓长生笔记" + }, + { + "appid": 2730970, + "normalized_name": "westland survival" + }, + { + "appid": 2730990, + "normalized_name": "where is drake?" + }, + { + "appid": 2731010, + "normalized_name": "the traveller vanilla version" + }, + { + "appid": 2731030, + "normalized_name": "algolemeth" + }, + { + "appid": 2731120, + "normalized_name": "dark shift" + }, + { + "appid": 2731150, + "normalized_name": "mugger party" + }, + { + "appid": 2731160, + "normalized_name": "supersonic bridge racing" + }, + { + "appid": 2731170, + "normalized_name": "inferni hope & fear" + }, + { + "appid": 2731180, + "normalized_name": "blaster multiplayer" + }, + { + "appid": 2731230, + "normalized_name": "jewel match origins 3 camelot castle collector's" + }, + { + "appid": 2731260, + "normalized_name": "lunar resilience" + }, + { + "appid": 2731280, + "normalized_name": "我的胡子" + }, + { + "appid": 2731290, + "normalized_name": "kanjozoku wangan runners" + }, + { + "appid": 2731300, + "normalized_name": "witch 4 hotel" + }, + { + "appid": 2731330, + "normalized_name": "troleu" + }, + { + "appid": 2731370, + "normalized_name": "ceo sim cyberpunk" + }, + { + "appid": 2731400, + "normalized_name": "timber!" + }, + { + "appid": 2731450, + "normalized_name": "lost footage" + }, + { + "appid": 2731530, + "normalized_name": "karina katana" + }, + { + "appid": 2731550, + "normalized_name": "ocean gap" + }, + { + "appid": 2731580, + "normalized_name": "lost in cairo" + }, + { + "appid": 2731590, + "normalized_name": "block shop" + }, + { + "appid": 2731610, + "normalized_name": "monster grinder ultra" + }, + { + "appid": 2731640, + "normalized_name": "quester | osaka" + }, + { + "appid": 2731650, + "normalized_name": "desperate escape" + }, + { + "appid": 2731710, + "normalized_name": "ore quest digger's delve" + }, + { + "appid": 2731720, + "normalized_name": "space hunters" + }, + { + "appid": 2731740, + "normalized_name": "kosmobreak" + }, + { + "appid": 2731750, + "normalized_name": "baderna um conto de barro" + }, + { + "appid": 2731760, + "normalized_name": "the krampus" + }, + { + "appid": 2731790, + "normalized_name": "christmas dark side" + }, + { + "appid": 2731830, + "normalized_name": "coin pusher live" + }, + { + "appid": 2731870, + "normalized_name": "ys x nordics" + }, + { + "appid": 2731880, + "normalized_name": "ghost only !" + }, + { + "appid": 2731900, + "normalized_name": "rise of the eternal" + }, + { + "appid": 2731910, + "normalized_name": "space traveler's brain creator" + }, + { + "appid": 2731920, + "normalized_name": "tachyon dreams anthology" + }, + { + "appid": 2731940, + "normalized_name": "黯魂录:斩仙" + }, + { + "appid": 2731950, + "normalized_name": "monsterlife" + }, + { + "appid": 2732020, + "normalized_name": "tv studio story" + }, + { + "appid": 2732050, + "normalized_name": "has galactics" + }, + { + "appid": 2732070, + "normalized_name": "residential crusaders" + }, + { + "appid": 2732080, + "normalized_name": "seekboss" + }, + { + "appid": 2732100, + "normalized_name": "medieval blacksmith" + }, + { + "appid": 2732210, + "normalized_name": "hopeless sea" + }, + { + "appid": 2732230, + "normalized_name": "sherlock holmes jagd auf moriarty" + }, + { + "appid": 2732240, + "normalized_name": "神魔决之九黎剑ea" + }, + { + "appid": 2732290, + "normalized_name": "flea market simulator '24" + }, + { + "appid": 2732310, + "normalized_name": "fantastyc murder mystery" + }, + { + "appid": 2732360, + "normalized_name": "consult me before opening a snack shop" + }, + { + "appid": 2732420, + "normalized_name": "bang" + }, + { + "appid": 2732480, + "normalized_name": "emery hearts" + }, + { + "appid": 2732490, + "normalized_name": "hot and lovely :suger" + }, + { + "appid": 2732500, + "normalized_name": "fairy biography5 demon" + }, + { + "appid": 2732510, + "normalized_name": "sex detective [18+]" + }, + { + "appid": 2732590, + "normalized_name": "item collector ball" + }, + { + "appid": 2732600, + "normalized_name": "zurarararush!!!" + }, + { + "appid": 2732610, + "normalized_name": "nobody sleeps tonight" + }, + { + "appid": 2732620, + "normalized_name": "eternal gem" + }, + { + "appid": 2732630, + "normalized_name": "abstract code" + }, + { + "appid": 2732640, + "normalized_name": "find room 96" + }, + { + "appid": 2732650, + "normalized_name": "district vr" + }, + { + "appid": 2732660, + "normalized_name": "supa fly racing" + }, + { + "appid": 2732670, + "normalized_name": "whispering breeze" + }, + { + "appid": 2732680, + "normalized_name": "permission to dock" + }, + { + "appid": 2732730, + "normalized_name": "tomboy love in hot forge" + }, + { + "appid": 2732770, + "normalized_name": "speck miner" + }, + { + "appid": 2732790, + "normalized_name": "blood on the thames" + }, + { + "appid": 2732800, + "normalized_name": "stitched together" + }, + { + "appid": 2732810, + "normalized_name": "soul runner" + }, + { + "appid": 2732820, + "normalized_name": "the great rebellion" + }, + { + "appid": 2732870, + "normalized_name": "midnight of despair" + }, + { + "appid": 2732890, + "normalized_name": "cult of abaruth" + }, + { + "appid": 2732910, + "normalized_name": "のり男子っ‼【体験版】" + }, + { + "appid": 2732920, + "normalized_name": "there is no sleep" + }, + { + "appid": 2732960, + "normalized_name": "command & conquer generals zero hour" + }, + { + "appid": 2732970, + "normalized_name": "l'île archéo" + }, + { + "appid": 2732980, + "normalized_name": "capybara the story of sisyphus" + }, + { + "appid": 2732990, + "normalized_name": "unsummited" + }, + { + "appid": 2733070, + "normalized_name": "heroes of mount dragon" + }, + { + "appid": 2733080, + "normalized_name": "is this gay?" + }, + { + "appid": 2733100, + "normalized_name": "puppeteer's curse" + }, + { + "appid": 2733130, + "normalized_name": "thepoliticalunderground" + }, + { + "appid": 2733180, + "normalized_name": "decayed" + }, + { + "appid": 2733190, + "normalized_name": "truncheon titties" + }, + { + "appid": 2733200, + "normalized_name": "ragdoll wreckage zombie farts" + }, + { + "appid": 2733260, + "normalized_name": "lefties' righteous arcade emporium" + }, + { + "appid": 2733270, + "normalized_name": "christmas stories alice's adventures collector's" + }, + { + "appid": 2733280, + "normalized_name": "surfers code" + }, + { + "appid": 2733310, + "normalized_name": "mazemerizzz" + }, + { + "appid": 2733420, + "normalized_name": "三国志之匡扶汉室" + }, + { + "appid": 2733450, + "normalized_name": "garden designer" + }, + { + "appid": 2733530, + "normalized_name": "别跑!美女在追你!" + }, + { + "appid": 2733550, + "normalized_name": "elder's will" + }, + { + "appid": 2733610, + "normalized_name": "gay sex adventures episode 3" + }, + { + "appid": 2733620, + "normalized_name": "all cats 'r belong to us" + }, + { + "appid": 2733640, + "normalized_name": "星のなっちゃん hoshi_no_natchan" + }, + { + "appid": 2733660, + "normalized_name": "matt murphy el caso del convidado de piedra" + }, + { + "appid": 2733670, + "normalized_name": "meowhiss the snake" + }, + { + "appid": 2733680, + "normalized_name": "the house of the missing hands" + }, + { + "appid": 2733690, + "normalized_name": "grub truck" + }, + { + "appid": 2733710, + "normalized_name": "tralalero tralala survive the night" + }, + { + "appid": 2733720, + "normalized_name": "knightmare tales" + }, + { + "appid": 2733740, + "normalized_name": "og memory synthwave cars" + }, + { + "appid": 2733780, + "normalized_name": "just get there" + }, + { + "appid": 2733790, + "normalized_name": "christmas spirits two sisters in feud" + }, + { + "appid": 2733800, + "normalized_name": "bloodhounds" + }, + { + "appid": 2733820, + "normalized_name": "no ghost in circus caravan" + }, + { + "appid": 2733870, + "normalized_name": "control yourself" + }, + { + "appid": 2733880, + "normalized_name": "guitar maker" + }, + { + "appid": 2733890, + "normalized_name": "bloody shrine" + }, + { + "appid": 2733910, + "normalized_name": "escape from hata" + }, + { + "appid": 2733920, + "normalized_name": "cat search in feudal japan" + }, + { + "appid": 2734020, + "normalized_name": "chompania" + }, + { + "appid": 2734140, + "normalized_name": "broken lands tower defense" + }, + { + "appid": 2734150, + "normalized_name": "chambers" + }, + { + "appid": 2734180, + "normalized_name": "cube field+" + }, + { + "appid": 2734200, + "normalized_name": "requiem reverie" + }, + { + "appid": 2734210, + "normalized_name": "gay sex adventures episode 2" + }, + { + "appid": 2734250, + "normalized_name": "king must survive" + }, + { + "appid": 2734270, + "normalized_name": "sector unknown" + }, + { + "appid": 2734310, + "normalized_name": "相声模拟器" + }, + { + "appid": 2734340, + "normalized_name": "polite animals" + }, + { + "appid": 2734350, + "normalized_name": "elise" + }, + { + "appid": 2734360, + "normalized_name": "mushroom kid's big grass sword" + }, + { + "appid": 2734370, + "normalized_name": "东方崛起" + }, + { + "appid": 2734440, + "normalized_name": "puzzle maker" + }, + { + "appid": 2734450, + "normalized_name": "folie fatale" + }, + { + "appid": 2734460, + "normalized_name": "fallen's challenge" + }, + { + "appid": 2734480, + "normalized_name": "trade tales" + }, + { + "appid": 2734510, + "normalized_name": "twinkle★nights" + }, + { + "appid": 2734520, + "normalized_name": "russian soul simulator" + }, + { + "appid": 2734590, + "normalized_name": "poly beats" + }, + { + "appid": 2734740, + "normalized_name": "冒险小子 adventure boy" + }, + { + "appid": 2734750, + "normalized_name": "gun vs. zombies" + }, + { + "appid": 2734770, + "normalized_name": "alterhavoc" + }, + { + "appid": 2734780, + "normalized_name": "per aspera test" + }, + { + "appid": 2734790, + "normalized_name": "unknown soul with me" + }, + { + "appid": 2734800, + "normalized_name": "math dash" + }, + { + "appid": 2734810, + "normalized_name": "core awakening" + }, + { + "appid": 2734830, + "normalized_name": "joy land" + }, + { + "appid": 2734850, + "normalized_name": "squirrel legacy ii children of the nut" + }, + { + "appid": 2734880, + "normalized_name": "echo of the wild online" + }, + { + "appid": 2734910, + "normalized_name": "we're getting deeper into the abyss" + }, + { + "appid": 2734920, + "normalized_name": "finding cinderella" + }, + { + "appid": 2734970, + "normalized_name": "hunting shadows" + }, + { + "appid": 2735000, + "normalized_name": "another hardest game patch origins" + }, + { + "appid": 2735020, + "normalized_name": "cyber rush" + }, + { + "appid": 2735060, + "normalized_name": "station 5" + }, + { + "appid": 2735090, + "normalized_name": "twistingo free" + }, + { + "appid": 2735110, + "normalized_name": "an eternity gone by" + }, + { + "appid": 2735150, + "normalized_name": "tome supreme" + }, + { + "appid": 2735160, + "normalized_name": "observing" + }, + { + "appid": 2735190, + "normalized_name": "ditherdream" + }, + { + "appid": 2735220, + "normalized_name": "polyz" + }, + { + "appid": 2735260, + "normalized_name": "pirates vs ninjas" + }, + { + "appid": 2735280, + "normalized_name": "spring in summer" + }, + { + "appid": 2735510, + "normalized_name": "once a porn a time 2" + }, + { + "appid": 2735540, + "normalized_name": "tank fight" + }, + { + "appid": 2735550, + "normalized_name": "勇者冒险世界" + }, + { + "appid": 2735580, + "normalized_name": "netherworld covenant" + }, + { + "appid": 2735620, + "normalized_name": "boardland" + }, + { + "appid": 2735630, + "normalized_name": "frostrain" + }, + { + "appid": 2735660, + "normalized_name": "cursebreaker" + }, + { + "appid": 2735670, + "normalized_name": "only kick" + }, + { + "appid": 2735690, + "normalized_name": "gravitia" + }, + { + "appid": 2735700, + "normalized_name": "maneuver" + }, + { + "appid": 2735710, + "normalized_name": "people's world" + }, + { + "appid": 2735720, + "normalized_name": "li lo" + }, + { + "appid": 2735740, + "normalized_name": "shop tycoon" + }, + { + "appid": 2735840, + "normalized_name": "school curse3" + }, + { + "appid": 2735870, + "normalized_name": "underminer" + }, + { + "appid": 2735880, + "normalized_name": "guardian defense to others" + }, + { + "appid": 2735890, + "normalized_name": "towers and survivors" + }, + { + "appid": 2735930, + "normalized_name": "oneiric" + }, + { + "appid": 2735950, + "normalized_name": "necro rumble" + }, + { + "appid": 2736020, + "normalized_name": "fuck you witch" + }, + { + "appid": 2736040, + "normalized_name": "dwarfs delight" + }, + { + "appid": 2736050, + "normalized_name": "the protectorate" + }, + { + "appid": 2736060, + "normalized_name": "christmas corp" + }, + { + "appid": 2736080, + "normalized_name": "spirit realm saga" + }, + { + "appid": 2736100, + "normalized_name": "lost in the past a heart's remembrance labyrinth" + }, + { + "appid": 2736110, + "normalized_name": "ant secret" + }, + { + "appid": 2736140, + "normalized_name": "black prophecy" + }, + { + "appid": 2736150, + "normalized_name": "the galactic harem handbook chapter 2 nsfw sci fi porn" + }, + { + "appid": 2736190, + "normalized_name": "danger ramps" + }, + { + "appid": 2736200, + "normalized_name": "moon rider" + }, + { + "appid": 2736210, + "normalized_name": "a fascinating story wedding night" + }, + { + "appid": 2736220, + "normalized_name": "guncho" + }, + { + "appid": 2736230, + "normalized_name": "ski jump challenge 2024" + }, + { + "appid": 2736270, + "normalized_name": "primage" + }, + { + "appid": 2736290, + "normalized_name": "my life in a monster girl paradise" + }, + { + "appid": 2736350, + "normalized_name": "home path" + }, + { + "appid": 2736360, + "normalized_name": "terrakids save the world kidos!" + }, + { + "appid": 2736370, + "normalized_name": "helix descent n ascent" + }, + { + "appid": 2736380, + "normalized_name": "omapeli" + }, + { + "appid": 2736390, + "normalized_name": "гордость улыпа. vr легенды чувашии" + }, + { + "appid": 2736430, + "normalized_name": "yard sale" + }, + { + "appid": 2736440, + "normalized_name": "destination paradise" + }, + { + "appid": 2736450, + "normalized_name": "超兽计划 project superbeast" + }, + { + "appid": 2736470, + "normalized_name": "soul surge" + }, + { + "appid": 2736480, + "normalized_name": "hidden cats in berlin" + }, + { + "appid": 2736490, + "normalized_name": "mob control" + }, + { + "appid": 2736520, + "normalized_name": "space operators" + }, + { + "appid": 2736570, + "normalized_name": "super pet hero" + }, + { + "appid": 2736580, + "normalized_name": "disco dave" + }, + { + "appid": 2736590, + "normalized_name": "hexplorando" + }, + { + "appid": 2736600, + "normalized_name": "help santa in christmas xmas game" + }, + { + "appid": 2736650, + "normalized_name": "tiny connections" + }, + { + "appid": 2736680, + "normalized_name": "soulivion" + }, + { + "appid": 2736690, + "normalized_name": "void sols" + }, + { + "appid": 2736700, + "normalized_name": "circle pong" + }, + { + "appid": 2736710, + "normalized_name": "toon" + }, + { + "appid": 2736720, + "normalized_name": "hazard school bully fight" + }, + { + "appid": 2736750, + "normalized_name": "dreamon world" + }, + { + "appid": 2736760, + "normalized_name": "chocolatio" + }, + { + "appid": 2736770, + "normalized_name": "eternal reckoning" + }, + { + "appid": 2736780, + "normalized_name": "red night" + }, + { + "appid": 2736810, + "normalized_name": "all new origins" + }, + { + "appid": 2736840, + "normalized_name": "the august before" + }, + { + "appid": 2736860, + "normalized_name": "the bibites digital life" + }, + { + "appid": 2736890, + "normalized_name": "false hope" + }, + { + "appid": 2736900, + "normalized_name": "quest industries" + }, + { + "appid": 2736910, + "normalized_name": "beer run" + }, + { + "appid": 2736930, + "normalized_name": "ascend factory" + }, + { + "appid": 2736950, + "normalized_name": "willy's wonderland the game" + }, + { + "appid": 2737000, + "normalized_name": "paperworks" + }, + { + "appid": 2737030, + "normalized_name": "broken lands village" + }, + { + "appid": 2737070, + "normalized_name": "crime simulator" + }, + { + "appid": 2737100, + "normalized_name": "room231" + }, + { + "appid": 2737130, + "normalized_name": "land of artificial jellies" + }, + { + "appid": 2737140, + "normalized_name": "slayaway camp 2" + }, + { + "appid": 2737160, + "normalized_name": "za češtiny ve hrách!" + }, + { + "appid": 2737260, + "normalized_name": "battle rc" + }, + { + "appid": 2737280, + "normalized_name": "warring winds" + }, + { + "appid": 2737300, + "normalized_name": "parking garage rally circuit" + }, + { + "appid": 2737310, + "normalized_name": "wartop" + }, + { + "appid": 2737320, + "normalized_name": "don't leave" + }, + { + "appid": 2737430, + "normalized_name": "exotic fighter" + }, + { + "appid": 2737490, + "normalized_name": "infinite void" + }, + { + "appid": 2737580, + "normalized_name": "the lancaster leak entity exam" + }, + { + "appid": 2737620, + "normalized_name": "triviaquest mythic conquest" + }, + { + "appid": 2737670, + "normalized_name": "ringo party" + }, + { + "appid": 2737680, + "normalized_name": "blast hopper" + }, + { + "appid": 2737730, + "normalized_name": "block connector" + }, + { + "appid": 2737800, + "normalized_name": "maze of realities ride in the sky collector's" + }, + { + "appid": 2737810, + "normalized_name": "connected hearts cost of beauty collector's" + }, + { + "appid": 2737820, + "normalized_name": "paradise cleaning! tutor x hypnosis" + }, + { + "appid": 2737870, + "normalized_name": "色色柴犬3d" + }, + { + "appid": 2737940, + "normalized_name": "right or die!" + }, + { + "appid": 2737950, + "normalized_name": "依盖之书:纯净版" + }, + { + "appid": 2737960, + "normalized_name": "rise of the village hero" + }, + { + "appid": 2737970, + "normalized_name": "mashiroiro symphony hd love is pure white" + }, + { + "appid": 2737980, + "normalized_name": "mashiroiro symphony hd sana" + }, + { + "appid": 2737990, + "normalized_name": "sixide" + }, + { + "appid": 2738050, + "normalized_name": "エスカレーター | escalator" + }, + { + "appid": 2738080, + "normalized_name": "洞石火" + }, + { + "appid": 2738110, + "normalized_name": "vengeance hunters" + }, + { + "appid": 2738130, + "normalized_name": "revvver" + }, + { + "appid": 2738140, + "normalized_name": "horn of balance" + }, + { + "appid": 2738170, + "normalized_name": "edge of memories" + }, + { + "appid": 2738180, + "normalized_name": "gangs of the street" + }, + { + "appid": 2738190, + "normalized_name": "observe" + }, + { + "appid": 2738210, + "normalized_name": "walls of rust" + }, + { + "appid": 2738230, + "normalized_name": "the house of tesla" + }, + { + "appid": 2738290, + "normalized_name": "at night" + }, + { + "appid": 2738320, + "normalized_name": "phantom ascension" + }, + { + "appid": 2738380, + "normalized_name": "internet cafe & supermarket simulator 2024" + }, + { + "appid": 2738420, + "normalized_name": "backrooms eight levels" + }, + { + "appid": 2738430, + "normalized_name": "legendary hoplite arachne’s trial" + }, + { + "appid": 2738440, + "normalized_name": "kbf knight bar fight" + }, + { + "appid": 2738460, + "normalized_name": "never wake up" + }, + { + "appid": 2738480, + "normalized_name": "nova core chaos" + }, + { + "appid": 2738490, + "normalized_name": "sol cesto" + }, + { + "appid": 2738500, + "normalized_name": "medieval life" + }, + { + "appid": 2738520, + "normalized_name": "小心心" + }, + { + "appid": 2738560, + "normalized_name": "circlebrix falling bricks" + }, + { + "appid": 2738610, + "normalized_name": "ripple and frawg the seasonal song" + }, + { + "appid": 2738620, + "normalized_name": "merry bear" + }, + { + "appid": 2738660, + "normalized_name": "mecha simultactics" + }, + { + "appid": 2738670, + "normalized_name": "pmc promiscuity" + }, + { + "appid": 2738680, + "normalized_name": "bass invaders" + }, + { + "appid": 2738700, + "normalized_name": "cloaked protocol stealth action thriller" + }, + { + "appid": 2738710, + "normalized_name": "planet mort" + }, + { + "appid": 2738740, + "normalized_name": "my sweet floating in the void" + }, + { + "appid": 2738750, + "normalized_name": "reynatis" + }, + { + "appid": 2738770, + "normalized_name": "mystery box vr hidden secrets" + }, + { + "appid": 2738840, + "normalized_name": "the night heist" + }, + { + "appid": 2738860, + "normalized_name": "seductive shadows" + }, + { + "appid": 2738870, + "normalized_name": "hotel business simulator" + }, + { + "appid": 2738890, + "normalized_name": "candyland sweet survival" + }, + { + "appid": 2738900, + "normalized_name": "real estate simulator from bum to millionaire" + }, + { + "appid": 2738910, + "normalized_name": "horde survivor" + }, + { + "appid": 2738920, + "normalized_name": "smashfruit" + }, + { + "appid": 2738930, + "normalized_name": "uncovered 1945" + }, + { + "appid": 2738940, + "normalized_name": "voids vigil" + }, + { + "appid": 2738960, + "normalized_name": "soaked" + }, + { + "appid": 2738990, + "normalized_name": "node farm" + }, + { + "appid": 2739120, + "normalized_name": "pvpillman" + }, + { + "appid": 2739130, + "normalized_name": "blackjack math trainer" + }, + { + "appid": 2739140, + "normalized_name": "knights of the rogue dungeon" + }, + { + "appid": 2739150, + "normalized_name": "i want to believe" + }, + { + "appid": 2739170, + "normalized_name": "splurge" + }, + { + "appid": 2739180, + "normalized_name": "cutlass call" + }, + { + "appid": 2739190, + "normalized_name": "eigengauge" + }, + { + "appid": 2739200, + "normalized_name": "dash connect 2" + }, + { + "appid": 2739270, + "normalized_name": "steam spire chronicles" + }, + { + "appid": 2739340, + "normalized_name": "hexwind" + }, + { + "appid": 2739350, + "normalized_name": "og puzzlers winter 2k23" + }, + { + "appid": 2739420, + "normalized_name": "书恋与君:美少女教我追系花" + }, + { + "appid": 2739500, + "normalized_name": "merge circus" + }, + { + "appid": 2739560, + "normalized_name": "dungeons and diners" + }, + { + "appid": 2739570, + "normalized_name": "决战封神榜" + }, + { + "appid": 2739590, + "normalized_name": "mad island" + }, + { + "appid": 2739600, + "normalized_name": "剑气劫" + }, + { + "appid": 2739620, + "normalized_name": "sleeping with sakuya izayoi" + }, + { + "appid": 2739630, + "normalized_name": "of the devil" + }, + { + "appid": 2739680, + "normalized_name": "三国争雄" + }, + { + "appid": 2739700, + "normalized_name": "taimanin yukikaze" + }, + { + "appid": 2739800, + "normalized_name": "tribe nation" + }, + { + "appid": 2739830, + "normalized_name": "king arthur legion ix" + }, + { + "appid": 2739850, + "normalized_name": "through the thorns and curses" + }, + { + "appid": 2739860, + "normalized_name": "rpg conquer the world" + }, + { + "appid": 2739870, + "normalized_name": "robot adventure" + }, + { + "appid": 2739890, + "normalized_name": "fallen empire" + }, + { + "appid": 2739900, + "normalized_name": "they can fart" + }, + { + "appid": 2739920, + "normalized_name": "og memory winter 2k23" + }, + { + "appid": 2739930, + "normalized_name": "rise eterna war" + }, + { + "appid": 2739940, + "normalized_name": "immortal emptiness" + }, + { + "appid": 2739960, + "normalized_name": "기어 하트" + }, + { + "appid": 2739980, + "normalized_name": "horny suika wet watermelon" + }, + { + "appid": 2739990, + "normalized_name": "mahjong soul" + }, + { + "appid": 2740000, + "normalized_name": "cute suika big watermelon" + }, + { + "appid": 2740020, + "normalized_name": "meowphoria" + }, + { + "appid": 2740030, + "normalized_name": "ragmonton endless for save indie game" + }, + { + "appid": 2740040, + "normalized_name": "赵云传:新版赵云传" + }, + { + "appid": 2740060, + "normalized_name": "somniata" + }, + { + "appid": 2740080, + "normalized_name": "strategic command wwii war in the pacific" + }, + { + "appid": 2740090, + "normalized_name": "oil strike ‘75" + }, + { + "appid": 2740110, + "normalized_name": "pets & stuff" + }, + { + "appid": 2740170, + "normalized_name": "horse racing manager" + }, + { + "appid": 2740180, + "normalized_name": "sex euphoria 💖" + }, + { + "appid": 2740190, + "normalized_name": "逃出青龙山re" + }, + { + "appid": 2740260, + "normalized_name": "stickin' the landing" + }, + { + "appid": 2740280, + "normalized_name": "tactic boxing" + }, + { + "appid": 2740290, + "normalized_name": "shadow" + }, + { + "appid": 2740350, + "normalized_name": "syllogism" + }, + { + "appid": 2740750, + "normalized_name": "rollin' rascal" + }, + { + "appid": 2740780, + "normalized_name": "data rush la course aux données" + }, + { + "appid": 2741000, + "normalized_name": "mp / maya prophecy" + }, + { + "appid": 2741060, + "normalized_name": "吸血鬼与下午茶 vampires and afternoon tea" + }, + { + "appid": 2741070, + "normalized_name": "i'll be brave tomorrow" + }, + { + "appid": 2741090, + "normalized_name": "bridges & docks" + }, + { + "appid": 2741110, + "normalized_name": "idle nine heavens" + }, + { + "appid": 2741120, + "normalized_name": "fertility crime and economy" + }, + { + "appid": 2741160, + "normalized_name": "red metal" + }, + { + "appid": 2741210, + "normalized_name": "nightmare of may" + }, + { + "appid": 2741230, + "normalized_name": "forest of perdition" + }, + { + "appid": 2741260, + "normalized_name": "aoi tori" + }, + { + "appid": 2741270, + "normalized_name": "geomoth boot sequence" + }, + { + "appid": 2741280, + "normalized_name": "nosleep nightmare chronicles" + }, + { + "appid": 2741300, + "normalized_name": "la bestia the migrant's long journey" + }, + { + "appid": 2741320, + "normalized_name": "shield knight" + }, + { + "appid": 2741350, + "normalized_name": "chess tools" + }, + { + "appid": 2741360, + "normalized_name": "valiant hearts coming home" + }, + { + "appid": 2741390, + "normalized_name": "check inn" + }, + { + "appid": 2741400, + "normalized_name": "drop racing" + }, + { + "appid": 2741410, + "normalized_name": "college sex episode 6" + }, + { + "appid": 2741420, + "normalized_name": "silent nightmares a christmas story" + }, + { + "appid": 2741440, + "normalized_name": "virtual girl save virtual boy" + }, + { + "appid": 2741470, + "normalized_name": "isometric chess" + }, + { + "appid": 2741480, + "normalized_name": "foragery" + }, + { + "appid": 2741490, + "normalized_name": "at tony's" + }, + { + "appid": 2741500, + "normalized_name": "knuffi" + }, + { + "appid": 2741550, + "normalized_name": "pipsqueak!" + }, + { + "appid": 2741560, + "normalized_name": "simcity 3000 unlimited" + }, + { + "appid": 2741570, + "normalized_name": "hellevators" + }, + { + "appid": 2741600, + "normalized_name": "beer factory crew" + }, + { + "appid": 2741610, + "normalized_name": "brutal katana" + }, + { + "appid": 2741620, + "normalized_name": "exiled" + }, + { + "appid": 2741650, + "normalized_name": "burning wall" + }, + { + "appid": 2741710, + "normalized_name": "the evil's nest" + }, + { + "appid": 2741740, + "normalized_name": "the last tape prologue" + }, + { + "appid": 2741780, + "normalized_name": "gas station story" + }, + { + "appid": 2741790, + "normalized_name": "thousands of heroes" + }, + { + "appid": 2741820, + "normalized_name": "drama queens" + }, + { + "appid": 2741830, + "normalized_name": "death machine" + }, + { + "appid": 2741840, + "normalized_name": "clean up after your dog" + }, + { + "appid": 2741950, + "normalized_name": "all she wants for christmas is you" + }, + { + "appid": 2742000, + "normalized_name": "become castellane in another world" + }, + { + "appid": 2742010, + "normalized_name": "off road redneck racing" + }, + { + "appid": 2742020, + "normalized_name": "d.w. the picky eater" + }, + { + "appid": 2742040, + "normalized_name": "sunflower pie" + }, + { + "appid": 2742050, + "normalized_name": "spirit guardians" + }, + { + "appid": 2742060, + "normalized_name": "room 601" + }, + { + "appid": 2742150, + "normalized_name": "muzy" + }, + { + "appid": 2742160, + "normalized_name": "swim sacabambaspis!" + }, + { + "appid": 2742170, + "normalized_name": "spacern tales" + }, + { + "appid": 2742180, + "normalized_name": "byteburst hacking simulator" + }, + { + "appid": 2742190, + "normalized_name": "the last of the summer tank" + }, + { + "appid": 2742200, + "normalized_name": "project wand festival of futas" + }, + { + "appid": 2742220, + "normalized_name": "lones" + }, + { + "appid": 2742230, + "normalized_name": "stone" + }, + { + "appid": 2742250, + "normalized_name": "锦鱼图" + }, + { + "appid": 2742350, + "normalized_name": "剑中诀" + }, + { + "appid": 2742410, + "normalized_name": "月の鱗" + }, + { + "appid": 2742480, + "normalized_name": "index purger" + }, + { + "appid": 2742490, + "normalized_name": "shard shuffle" + }, + { + "appid": 2742500, + "normalized_name": "beetle nest" + }, + { + "appid": 2742510, + "normalized_name": "demonica" + }, + { + "appid": 2742530, + "normalized_name": "紫斗千问" + }, + { + "appid": 2742550, + "normalized_name": "funny football" + }, + { + "appid": 2742580, + "normalized_name": "death penalty hero 死刑勇者" + }, + { + "appid": 2742590, + "normalized_name": "zombies & love" + }, + { + "appid": 2742600, + "normalized_name": "phantom girls hellish hospital" + }, + { + "appid": 2742620, + "normalized_name": "memary memory of the nameless one" + }, + { + "appid": 2742640, + "normalized_name": "terrablocks" + }, + { + "appid": 2742660, + "normalized_name": "cyber strike" + }, + { + "appid": 2742730, + "normalized_name": "ロボット少女は夢を見る robotbattlechampionship" + }, + { + "appid": 2742740, + "normalized_name": "flip flop" + }, + { + "appid": 2742750, + "normalized_name": "quod episode 1" + }, + { + "appid": 2742800, + "normalized_name": "inspection" + }, + { + "appid": 2742820, + "normalized_name": "rec" + }, + { + "appid": 2742830, + "normalized_name": "monster train 2" + }, + { + "appid": 2742840, + "normalized_name": "saturn" + }, + { + "appid": 2742920, + "normalized_name": "silent planet elegy of a dying world" + }, + { + "appid": 2742930, + "normalized_name": "capitalismcraft" + }, + { + "appid": 2742940, + "normalized_name": "controware" + }, + { + "appid": 2743020, + "normalized_name": "melting passion" + }, + { + "appid": 2743030, + "normalized_name": "lisa the first" + }, + { + "appid": 2743040, + "normalized_name": "desire mrs. claus" + }, + { + "appid": 2743060, + "normalized_name": "fox trot" + }, + { + "appid": 2743080, + "normalized_name": "100 capitalist cats" + }, + { + "appid": 2743220, + "normalized_name": "my friend the spider" + }, + { + "appid": 2743260, + "normalized_name": "nowhere" + }, + { + "appid": 2743300, + "normalized_name": "nucleite" + }, + { + "appid": 2743310, + "normalized_name": "run and gun 2 opossum city" + }, + { + "appid": 2743320, + "normalized_name": "njuma" + }, + { + "appid": 2743410, + "normalized_name": "the echo paradox" + }, + { + "appid": 2743420, + "normalized_name": "warlanes" + }, + { + "appid": 2743430, + "normalized_name": "brick blaster" + }, + { + "appid": 2743450, + "normalized_name": "robot trivia funtime" + }, + { + "appid": 2743460, + "normalized_name": "granvir" + }, + { + "appid": 2743470, + "normalized_name": "ukraine total defense" + }, + { + "appid": 2743520, + "normalized_name": "trs22 model railroaders" + }, + { + "appid": 2743530, + "normalized_name": "a package for space" + }, + { + "appid": 2743630, + "normalized_name": "cut the cards" + }, + { + "appid": 2743650, + "normalized_name": "镖行天下" + }, + { + "appid": 2743700, + "normalized_name": "return of the ussr" + }, + { + "appid": 2743760, + "normalized_name": "real anime situation! dt" + }, + { + "appid": 2743770, + "normalized_name": "恐怖の宴 〜美女達に狩られて逝く夜〜" + }, + { + "appid": 2743840, + "normalized_name": "shadow detective" + }, + { + "appid": 2743850, + "normalized_name": "tricky madness" + }, + { + "appid": 2743860, + "normalized_name": "tserof" + }, + { + "appid": 2743960, + "normalized_name": "英雄与霸主 heroes and overlord prologue" + }, + { + "appid": 2743970, + "normalized_name": "one inch tactics" + }, + { + "appid": 2744000, + "normalized_name": "surmountable" + }, + { + "appid": 2744010, + "normalized_name": "urban jungle" + }, + { + "appid": 2744020, + "normalized_name": "hot dawn uprising" + }, + { + "appid": 2744040, + "normalized_name": "没有被美女包围的三角恋" + }, + { + "appid": 2744070, + "normalized_name": "eternal burden" + }, + { + "appid": 2744100, + "normalized_name": "pokini kagura" + }, + { + "appid": 2744110, + "normalized_name": "vtumbler" + }, + { + "appid": 2744130, + "normalized_name": "blister blight" + }, + { + "appid": 2744150, + "normalized_name": "自豪!美女全攻略" + }, + { + "appid": 2744220, + "normalized_name": "solar quiz vr" + }, + { + "appid": 2744230, + "normalized_name": "yeah! you want \"those games \" right? so here you go! now let's see you clear them! 2" + }, + { + "appid": 2744260, + "normalized_name": "the zhukov line" + }, + { + "appid": 2744300, + "normalized_name": "solaria" + }, + { + "appid": 2744340, + "normalized_name": "thunder ronin" + }, + { + "appid": 2744350, + "normalized_name": "tutor x hypnosis 2" + }, + { + "appid": 2744380, + "normalized_name": "cockhero battle rookie" + }, + { + "appid": 2744390, + "normalized_name": "the dawning clocks of time remake" + }, + { + "appid": 2744410, + "normalized_name": "纷争法则" + }, + { + "appid": 2744420, + "normalized_name": "my bakery empire" + }, + { + "appid": 2744430, + "normalized_name": "nightmare house reimagined" + }, + { + "appid": 2744450, + "normalized_name": "a weekend trip" + }, + { + "appid": 2744470, + "normalized_name": "cards and creatures" + }, + { + "appid": 2744510, + "normalized_name": "abstracto" + }, + { + "appid": 2744520, + "normalized_name": "swing boy" + }, + { + "appid": 2744550, + "normalized_name": "estellina" + }, + { + "appid": 2744620, + "normalized_name": "gamebox" + }, + { + "appid": 2744640, + "normalized_name": "shotgun chicken" + }, + { + "appid": 2744650, + "normalized_name": "the moon 2044" + }, + { + "appid": 2744670, + "normalized_name": "capital dilemma" + }, + { + "appid": 2744710, + "normalized_name": "pistol wizard" + }, + { + "appid": 2744720, + "normalized_name": "weapon devourer" + }, + { + "appid": 2744730, + "normalized_name": "cogstellation" + }, + { + "appid": 2744840, + "normalized_name": "road toad" + }, + { + "appid": 2744880, + "normalized_name": "climber animals together" + }, + { + "appid": 2744890, + "normalized_name": "crystal guardians prologue" + }, + { + "appid": 2744900, + "normalized_name": "detective kiwi" + }, + { + "appid": 2744920, + "normalized_name": "dream mists" + }, + { + "appid": 2744930, + "normalized_name": "flee or be chapter one lurking alone" + }, + { + "appid": 2744970, + "normalized_name": "friendly snowball" + }, + { + "appid": 2745000, + "normalized_name": "snowpult" + }, + { + "appid": 2745030, + "normalized_name": "the book by the blue" + }, + { + "appid": 2745040, + "normalized_name": "polismos" + }, + { + "appid": 2745050, + "normalized_name": "flow factory" + }, + { + "appid": 2745080, + "normalized_name": "we need more steam!" + }, + { + "appid": 2745090, + "normalized_name": "elf kicker" + }, + { + "appid": 2745110, + "normalized_name": "liminal void" + }, + { + "appid": 2745120, + "normalized_name": "scythe machine" + }, + { + "appid": 2745140, + "normalized_name": "failed trust" + }, + { + "appid": 2745150, + "normalized_name": "wheel saint hellride" + }, + { + "appid": 2745220, + "normalized_name": "lezorub" + }, + { + "appid": 2745230, + "normalized_name": "card fencer" + }, + { + "appid": 2745250, + "normalized_name": "bad santa" + }, + { + "appid": 2745260, + "normalized_name": "swashbuckler's xmas" + }, + { + "appid": 2745320, + "normalized_name": "バグだらけの村" + }, + { + "appid": 2745330, + "normalized_name": "further education" + }, + { + "appid": 2745340, + "normalized_name": "pixant farm (idle)" + }, + { + "appid": 2745370, + "normalized_name": "droplette" + }, + { + "appid": 2745380, + "normalized_name": "rbm studio's waterloo" + }, + { + "appid": 2745400, + "normalized_name": "a christmassy christmas" + }, + { + "appid": 2745420, + "normalized_name": "grabbers in the woods" + }, + { + "appid": 2745440, + "normalized_name": "终末列车" + }, + { + "appid": 2745460, + "normalized_name": "time spirit rpg" + }, + { + "appid": 2745490, + "normalized_name": "vanguard exiles" + }, + { + "appid": 2745510, + "normalized_name": "growth experiment" + }, + { + "appid": 2745550, + "normalized_name": "delivery mayhem" + }, + { + "appid": 2745560, + "normalized_name": "neon fantasy rodents" + }, + { + "appid": 2745580, + "normalized_name": "road to valhalla carola" + }, + { + "appid": 2745600, + "normalized_name": "timewinder" + }, + { + "appid": 2745610, + "normalized_name": "matadouro grindhouse" + }, + { + "appid": 2745620, + "normalized_name": "100 hidden cats in china" + }, + { + "appid": 2745630, + "normalized_name": "《未解之谜2:桥师》" + }, + { + "appid": 2745650, + "normalized_name": "hey! here are some letters" + }, + { + "appid": 2745660, + "normalized_name": "monsters of mican" + }, + { + "appid": 2745670, + "normalized_name": "scp" + }, + { + "appid": 2745710, + "normalized_name": "modern pink elf rpg" + }, + { + "appid": 2745740, + "normalized_name": "江湖问情" + }, + { + "appid": 2745800, + "normalized_name": "writer's rush" + }, + { + "appid": 2745820, + "normalized_name": "i commissioned some stickmen" + }, + { + "appid": 2745830, + "normalized_name": "i commissioned some snails" + }, + { + "appid": 2745860, + "normalized_name": "upward" + }, + { + "appid": 2745870, + "normalized_name": "warfare legacy collection" + }, + { + "appid": 2745900, + "normalized_name": "pepa's adventure" + }, + { + "appid": 2745910, + "normalized_name": "roxy raccoon 3 troubles in time" + }, + { + "appid": 2745930, + "normalized_name": "mindkatt first strike" + }, + { + "appid": 2746000, + "normalized_name": "cyclic warriors" + }, + { + "appid": 2746030, + "normalized_name": "deep among the swarm" + }, + { + "appid": 2746040, + "normalized_name": "precarious platformer" + }, + { + "appid": 2746060, + "normalized_name": "monster scout" + }, + { + "appid": 2746100, + "normalized_name": "「怪奇参道」(kaiki sando)_bugfix_ver1.2" + }, + { + "appid": 2746120, + "normalized_name": "huedini" + }, + { + "appid": 2746140, + "normalized_name": "just drive" + }, + { + "appid": 2746150, + "normalized_name": "jousting manager" + }, + { + "appid": 2746170, + "normalized_name": "几何力场" + }, + { + "appid": 2746200, + "normalized_name": "tiny battles prologue" + }, + { + "appid": 2746210, + "normalized_name": "阿瓦塔之幻想" + }, + { + "appid": 2746220, + "normalized_name": "popmoji" + }, + { + "appid": 2746270, + "normalized_name": "o conto de (seu nome)" + }, + { + "appid": 2746330, + "normalized_name": "big adventure trip to europe 6 collector's" + }, + { + "appid": 2746340, + "normalized_name": "battlethorne survivors" + }, + { + "appid": 2746380, + "normalized_name": "hidden clues" + }, + { + "appid": 2746390, + "normalized_name": "hidden clues 2 miami" + }, + { + "appid": 2746400, + "normalized_name": "hidden clues gang wars" + }, + { + "appid": 2746420, + "normalized_name": "mucorales" + }, + { + "appid": 2746480, + "normalized_name": "durt" + }, + { + "appid": 2746490, + "normalized_name": "chronicle survivors" + }, + { + "appid": 2746510, + "normalized_name": "the social engineer" + }, + { + "appid": 2746540, + "normalized_name": "warfront" + }, + { + "appid": 2746570, + "normalized_name": "stargazer's terraforming estate co." + }, + { + "appid": 2746610, + "normalized_name": "oil sheik" + }, + { + "appid": 2746620, + "normalized_name": "aquium" + }, + { + "appid": 2746630, + "normalized_name": "holly day ice spionage" + }, + { + "appid": 2746680, + "normalized_name": "darkwatch" + }, + { + "appid": 2746710, + "normalized_name": "error 259" + }, + { + "appid": 2746760, + "normalized_name": "100 hidden kooky sand & sun" + }, + { + "appid": 2746770, + "normalized_name": "expedition astra" + }, + { + "appid": 2746800, + "normalized_name": "轉生打怪學英文(五)(adventure and study english in a fantasy world)" + }, + { + "appid": 2746810, + "normalized_name": "project apparatus" + }, + { + "appid": 2746830, + "normalized_name": "doom survivors" + }, + { + "appid": 2746910, + "normalized_name": "three kingdoms the blood moon" + }, + { + "appid": 2746960, + "normalized_name": "凌晨4点不觉间" + }, + { + "appid": 2747060, + "normalized_name": "office fight" + }, + { + "appid": 2747090, + "normalized_name": "underground secret" + }, + { + "appid": 2747150, + "normalized_name": "at his grave" + }, + { + "appid": 2747220, + "normalized_name": "blood domination" + }, + { + "appid": 2747240, + "normalized_name": "intergalactic pawn shop prologue" + }, + { + "appid": 2747280, + "normalized_name": "abyss new dawn" + }, + { + "appid": 2747330, + "normalized_name": "species unknown" + }, + { + "appid": 2747340, + "normalized_name": "warden of time" + }, + { + "appid": 2747370, + "normalized_name": "drivesafely" + }, + { + "appid": 2747470, + "normalized_name": "swing into zero g" + }, + { + "appid": 2747540, + "normalized_name": "dice guess" + }, + { + "appid": 2747550, + "normalized_name": "bloodshed" + }, + { + "appid": 2747560, + "normalized_name": "spellbound hearts" + }, + { + "appid": 2747590, + "normalized_name": "onlysociety secret" + }, + { + "appid": 2747610, + "normalized_name": "night city" + }, + { + "appid": 2747620, + "normalized_name": "teacher of prophecy" + }, + { + "appid": 2747640, + "normalized_name": "exterminator" + }, + { + "appid": 2747650, + "normalized_name": "nuclear day" + }, + { + "appid": 2747670, + "normalized_name": "once upon a fight" + }, + { + "appid": 2747720, + "normalized_name": "russian roulette online" + }, + { + "appid": 2747740, + "normalized_name": "nova hearts the spark" + }, + { + "appid": 2747760, + "normalized_name": "黒白のアヴェスターrefusal─拒絶" + }, + { + "appid": 2747770, + "normalized_name": "wednesdays" + }, + { + "appid": 2747780, + "normalized_name": "dishwashing simulator" + }, + { + "appid": 2747790, + "normalized_name": "デンパトウ" + }, + { + "appid": 2747810, + "normalized_name": "heartsworn abyss" + }, + { + "appid": 2747820, + "normalized_name": "iconia defenders" + }, + { + "appid": 2747930, + "normalized_name": "astroblocks" + }, + { + "appid": 2747950, + "normalized_name": "hell's scream" + }, + { + "appid": 2747980, + "normalized_name": "clockwork rabbit" + }, + { + "appid": 2748020, + "normalized_name": "adventure trip amazing world 3 collector's" + }, + { + "appid": 2748030, + "normalized_name": "knightborn" + }, + { + "appid": 2748050, + "normalized_name": "roofcats band suika style" + }, + { + "appid": 2748070, + "normalized_name": "bouncybirdy" + }, + { + "appid": 2748100, + "normalized_name": "cube war" + }, + { + "appid": 2748140, + "normalized_name": "lands of koastalia" + }, + { + "appid": 2748170, + "normalized_name": "corrupted spirits" + }, + { + "appid": 2748240, + "normalized_name": "zombies!!! board game" + }, + { + "appid": 2748250, + "normalized_name": "シュガーカルトパラダイム" + }, + { + "appid": 2748260, + "normalized_name": "conjoined cats" + }, + { + "appid": 2748340, + "normalized_name": "goblin cleanup" + }, + { + "appid": 2748400, + "normalized_name": "elemental engagements" + }, + { + "appid": 2748420, + "normalized_name": "ascent rivals" + }, + { + "appid": 2748450, + "normalized_name": "conor origins t trilogy" + }, + { + "appid": 2748470, + "normalized_name": "darkstorm" + }, + { + "appid": 2748490, + "normalized_name": "redlight" + }, + { + "appid": 2748500, + "normalized_name": "goblins on the march" + }, + { + "appid": 2748520, + "normalized_name": "sunflowers and the goddess of death" + }, + { + "appid": 2748540, + "normalized_name": "ring of the devil" + }, + { + "appid": 2748590, + "normalized_name": "phenom overdrive" + }, + { + "appid": 2748600, + "normalized_name": "overdrive warfare" + }, + { + "appid": 2748630, + "normalized_name": "echoes of fear whispers in the abyss" + }, + { + "appid": 2748650, + "normalized_name": "bananarchy" + }, + { + "appid": 2748660, + "normalized_name": "an unusual cadence" + }, + { + "appid": 2748670, + "normalized_name": "in misery episode 1 the farm" + }, + { + "appid": 2748680, + "normalized_name": "furry spy simulator hot springs" + }, + { + "appid": 2748700, + "normalized_name": "upon dusk" + }, + { + "appid": 2748720, + "normalized_name": "year 3055" + }, + { + "appid": 2748730, + "normalized_name": "mobula" + }, + { + "appid": 2748770, + "normalized_name": "dala and the cursed forest" + }, + { + "appid": 2748830, + "normalized_name": "たねつみの歌" + }, + { + "appid": 2748840, + "normalized_name": "thanatos" + }, + { + "appid": 2748880, + "normalized_name": "grim's gambit" + }, + { + "appid": 2748900, + "normalized_name": "ruined" + }, + { + "appid": 2748930, + "normalized_name": "romance in the cityscape" + }, + { + "appid": 2748940, + "normalized_name": "cubecuberubik" + }, + { + "appid": 2748970, + "normalized_name": "subjugation" + }, + { + "appid": 2749000, + "normalized_name": "inn tycoon" + }, + { + "appid": 2749020, + "normalized_name": "ヒメゴト" + }, + { + "appid": 2749040, + "normalized_name": "ffa cards" + }, + { + "appid": 2749050, + "normalized_name": "coins crown & cabal" + }, + { + "appid": 2749060, + "normalized_name": "building block cities fire copter drills" + }, + { + "appid": 2749070, + "normalized_name": "仙剑世界" + }, + { + "appid": 2749090, + "normalized_name": "forgotten mechs" + }, + { + "appid": 2749100, + "normalized_name": "dawnmaker" + }, + { + "appid": 2749110, + "normalized_name": "bitosphere" + }, + { + "appid": 2749130, + "normalized_name": "picker bot 42" + }, + { + "appid": 2749140, + "normalized_name": "cooked out" + }, + { + "appid": 2749170, + "normalized_name": "mecha party" + }, + { + "appid": 2749180, + "normalized_name": "archer training" + }, + { + "appid": 2749220, + "normalized_name": "shadowgate 2" + }, + { + "appid": 2749250, + "normalized_name": "l.od" + }, + { + "appid": 2749260, + "normalized_name": "nanny's journey" + }, + { + "appid": 2749270, + "normalized_name": "hunky city" + }, + { + "appid": 2749300, + "normalized_name": "darkhospital" + }, + { + "appid": 2749340, + "normalized_name": "jobsworth weekly" + }, + { + "appid": 2749350, + "normalized_name": "random legion" + }, + { + "appid": 2749360, + "normalized_name": "meta revelations armour of the abyss" + }, + { + "appid": 2749370, + "normalized_name": "fisherman's palace" + }, + { + "appid": 2749380, + "normalized_name": "lust theory season 3" + }, + { + "appid": 2749500, + "normalized_name": "校园惊魂夜campusshocknight" + }, + { + "appid": 2749590, + "normalized_name": "alternis" + }, + { + "appid": 2749610, + "normalized_name": "panik" + }, + { + "appid": 2749620, + "normalized_name": "hopwander" + }, + { + "appid": 2749640, + "normalized_name": "weefager" + }, + { + "appid": 2749650, + "normalized_name": "the lament of a lifeless star" + }, + { + "appid": 2749660, + "normalized_name": "the spiritless shaman" + }, + { + "appid": 2749690, + "normalized_name": "imaginytes" + }, + { + "appid": 2749710, + "normalized_name": "hentaimon" + }, + { + "appid": 2749720, + "normalized_name": "search all flies" + }, + { + "appid": 2749730, + "normalized_name": "piccadilly's puzzle museum" + }, + { + "appid": 2749770, + "normalized_name": "galaxy burger" + }, + { + "appid": 2749810, + "normalized_name": "balkanija" + }, + { + "appid": 2749880, + "normalized_name": "surviwall" + }, + { + "appid": 2749920, + "normalized_name": "the transylvania adventure of simon quest" + }, + { + "appid": 2749930, + "normalized_name": "lio" + }, + { + "appid": 2749940, + "normalized_name": "full scale invasion" + }, + { + "appid": 2749950, + "normalized_name": "esports manager 2025" + }, + { + "appid": 2750000, + "normalized_name": "microtopia" + }, + { + "appid": 2750080, + "normalized_name": "the settlers new allies" + }, + { + "appid": 2750120, + "normalized_name": "sunken shadows" + }, + { + "appid": 2750190, + "normalized_name": "blub" + }, + { + "appid": 2750200, + "normalized_name": "skybound card survival" + }, + { + "appid": 2750210, + "normalized_name": "you can save everyone" + }, + { + "appid": 2750240, + "normalized_name": "astroforge space pirates" + }, + { + "appid": 2750290, + "normalized_name": "toki pona island" + }, + { + "appid": 2750390, + "normalized_name": "tiny tales hidden objects" + }, + { + "appid": 2750410, + "normalized_name": "クビトリドオルズ・レトリーバー 島津怪談01" + }, + { + "appid": 2750430, + "normalized_name": "solemn knights entirely ours" + }, + { + "appid": 2750480, + "normalized_name": "7 minutes in hell" + }, + { + "appid": 2750490, + "normalized_name": "九千年前" + }, + { + "appid": 2750520, + "normalized_name": "real estate real romance san francisco" + }, + { + "appid": 2750540, + "normalized_name": "masterquest fantasy" + }, + { + "appid": 2750680, + "normalized_name": "타부티(tavuti)" + }, + { + "appid": 2750690, + "normalized_name": "liquid light" + }, + { + "appid": 2750720, + "normalized_name": "bonoru adventures" + }, + { + "appid": 2750760, + "normalized_name": "dumb castle" + }, + { + "appid": 2750770, + "normalized_name": "threads of you beyond the bay" + }, + { + "appid": 2750780, + "normalized_name": "月华辉映之刻" + }, + { + "appid": 2750800, + "normalized_name": "eye of death" + }, + { + "appid": 2750890, + "normalized_name": "path of soul" + }, + { + "appid": 2750910, + "normalized_name": "fragmented world" + }, + { + "appid": 2750920, + "normalized_name": "화투전 ~ flower fight ~" + }, + { + "appid": 2750940, + "normalized_name": "space manifest" + }, + { + "appid": 2750970, + "normalized_name": "backrooms facility unknown" + }, + { + "appid": 2750980, + "normalized_name": "galaxiverse ii" + }, + { + "appid": 2751000, + "normalized_name": "prince of persia the lost crown" + }, + { + "appid": 2751010, + "normalized_name": "galaxy too far" + }, + { + "appid": 2751020, + "normalized_name": "天启鸟记" + }, + { + "appid": 2751040, + "normalized_name": "king of the hill" + }, + { + "appid": 2751050, + "normalized_name": "clickyland" + }, + { + "appid": 2751060, + "normalized_name": "flora & fang guardians of the vampire garden" + }, + { + "appid": 2751080, + "normalized_name": "visagens" + }, + { + "appid": 2751110, + "normalized_name": "ordinary stickman goes for a walk" + }, + { + "appid": 2751120, + "normalized_name": "dive the depths" + }, + { + "appid": 2751220, + "normalized_name": "matching meadows" + }, + { + "appid": 2751230, + "normalized_name": "hole io" + }, + { + "appid": 2751260, + "normalized_name": "faire hollow" + }, + { + "appid": 2751270, + "normalized_name": "heroine's claw" + }, + { + "appid": 2751310, + "normalized_name": "paper io 2" + }, + { + "appid": 2751320, + "normalized_name": "johnny trigger" + }, + { + "appid": 2751330, + "normalized_name": "helix jump" + }, + { + "appid": 2751340, + "normalized_name": "astro miner" + }, + { + "appid": 2751350, + "normalized_name": "golf guys" + }, + { + "appid": 2751370, + "normalized_name": "bitty knight" + }, + { + "appid": 2751480, + "normalized_name": "ray" + }, + { + "appid": 2751490, + "normalized_name": "吞食拜天地:三国刘蓓传(the legend of liu bei of the three kingdoms)" + }, + { + "appid": 2751500, + "normalized_name": "remember us" + }, + { + "appid": 2751560, + "normalized_name": "decurion" + }, + { + "appid": 2751580, + "normalized_name": "templar 2" + }, + { + "appid": 2751600, + "normalized_name": "极乐之渊" + }, + { + "appid": 2751610, + "normalized_name": "闲侠江湖" + }, + { + "appid": 2751670, + "normalized_name": "sacrament" + }, + { + "appid": 2751700, + "normalized_name": "super 3d maze 16" + }, + { + "appid": 2751720, + "normalized_name": "project ictos" + }, + { + "appid": 2751770, + "normalized_name": "matsudaira's myoshu a sengoku village simulator" + }, + { + "appid": 2751800, + "normalized_name": "creature summon showdown moment" + }, + { + "appid": 2751810, + "normalized_name": "meteora's mystic merge" + }, + { + "appid": 2751820, + "normalized_name": "hypotheses on the symmetry between vision and hands" + }, + { + "appid": 2751850, + "normalized_name": "secrets under eco" + }, + { + "appid": 2751870, + "normalized_name": "dr muddles and the cursed library" + }, + { + "appid": 2751890, + "normalized_name": "airanblade" + }, + { + "appid": 2751920, + "normalized_name": "redacted genome" + }, + { + "appid": 2751940, + "normalized_name": "poly speed" + }, + { + "appid": 2751950, + "normalized_name": "the void chronicles one's desolation" + }, + { + "appid": 2751970, + "normalized_name": "trapper" + }, + { + "appid": 2751980, + "normalized_name": "earth fire and wind" + }, + { + "appid": 2752010, + "normalized_name": "mazinator" + }, + { + "appid": 2752020, + "normalized_name": "lair of the leviathan" + }, + { + "appid": 2752080, + "normalized_name": "move it!" + }, + { + "appid": 2752090, + "normalized_name": "scp foundation simulator" + }, + { + "appid": 2752100, + "normalized_name": "bounce asmr" + }, + { + "appid": 2752150, + "normalized_name": "koitsugi legend of the water guardian" + }, + { + "appid": 2752180, + "normalized_name": "no sleep for kaname date from ai the somnium files" + }, + { + "appid": 2752210, + "normalized_name": "transfigured" + }, + { + "appid": 2752220, + "normalized_name": "train capacity 300% 2" + }, + { + "appid": 2752230, + "normalized_name": "pookie has a fantasy!" + }, + { + "appid": 2752240, + "normalized_name": "fine work" + }, + { + "appid": 2752250, + "normalized_name": "survival odyssey" + }, + { + "appid": 2752280, + "normalized_name": "lightclusters" + }, + { + "appid": 2752330, + "normalized_name": "ninja slayer neo saitama in flames(ニンジャスレイヤー ネオサイタマ炎上)" + }, + { + "appid": 2752340, + "normalized_name": "pixel panic" + }, + { + "appid": 2752350, + "normalized_name": "deep crafter" + }, + { + "appid": 2752360, + "normalized_name": "kira legends" + }, + { + "appid": 2752370, + "normalized_name": "unfaithful wife ayano's \"netorare report\" my gentle wife is fucking another man" + }, + { + "appid": 2752380, + "normalized_name": "the shadow cat" + }, + { + "appid": 2752440, + "normalized_name": "command adventures starship" + }, + { + "appid": 2752470, + "normalized_name": "バトルスピリッツ クロスオーバー" + }, + { + "appid": 2752490, + "normalized_name": "battle for desert city" + }, + { + "appid": 2752520, + "normalized_name": "warrior maiden lecia and the lost fortress" + }, + { + "appid": 2752530, + "normalized_name": "宗门与妖兽" + }, + { + "appid": 2752650, + "normalized_name": "trash top down racing" + }, + { + "appid": 2752660, + "normalized_name": "the children of the woods lost tape" + }, + { + "appid": 2752680, + "normalized_name": "adapta solva" + }, + { + "appid": 2752700, + "normalized_name": "little galaxia" + }, + { + "appid": 2752710, + "normalized_name": "what the pak?!" + }, + { + "appid": 2752720, + "normalized_name": "dice player one" + }, + { + "appid": 2752750, + "normalized_name": "one lie" + }, + { + "appid": 2752760, + "normalized_name": "takeuma 2d" + }, + { + "appid": 2752770, + "normalized_name": "jongro 3_street" + }, + { + "appid": 2752790, + "normalized_name": "mortalis meltdown" + }, + { + "appid": 2752840, + "normalized_name": "渔海" + }, + { + "appid": 2752850, + "normalized_name": "五行24!" + }, + { + "appid": 2752860, + "normalized_name": "adrian's tale" + }, + { + "appid": 2752930, + "normalized_name": "beyond the breach" + }, + { + "appid": 2753000, + "normalized_name": "goals" + }, + { + "appid": 2753010, + "normalized_name": "24点游戏" + }, + { + "appid": 2753100, + "normalized_name": "idle trillionaire" + }, + { + "appid": 2753110, + "normalized_name": "save the throne" + }, + { + "appid": 2753130, + "normalized_name": "shadowbyte survivors" + }, + { + "appid": 2753140, + "normalized_name": "deep scanner" + }, + { + "appid": 2753170, + "normalized_name": "facing zombie and 4 walls" + }, + { + "appid": 2753180, + "normalized_name": "feeling death" + }, + { + "appid": 2753200, + "normalized_name": "my grandparent's house" + }, + { + "appid": 2753220, + "normalized_name": "coupling" + }, + { + "appid": 2753260, + "normalized_name": "voyeur villa harem manager" + }, + { + "appid": 2753270, + "normalized_name": "deadrock redemption" + }, + { + "appid": 2753330, + "normalized_name": "hardcore cottagecore" + }, + { + "appid": 2753370, + "normalized_name": "mage hunt spellshifter" + }, + { + "appid": 2753400, + "normalized_name": "demon crush" + }, + { + "appid": 2753420, + "normalized_name": "starlight scouts" + }, + { + "appid": 2753430, + "normalized_name": "bone and arrow" + }, + { + "appid": 2753450, + "normalized_name": "woyo!!" + }, + { + "appid": 2753460, + "normalized_name": "escape!" + }, + { + "appid": 2753490, + "normalized_name": "money maker" + }, + { + "appid": 2753520, + "normalized_name": "don't pee" + }, + { + "appid": 2753540, + "normalized_name": "bunny clicker" + }, + { + "appid": 2753570, + "normalized_name": "脚的服务" + }, + { + "appid": 2753600, + "normalized_name": "vambrace dungeon monarch" + }, + { + "appid": 2753610, + "normalized_name": "what lurks inside" + }, + { + "appid": 2753620, + "normalized_name": "fruit mountain" + }, + { + "appid": 2753650, + "normalized_name": "the clown's forest whispers of insanity" + }, + { + "appid": 2753660, + "normalized_name": "死亡边缘 | edge of death" + }, + { + "appid": 2753720, + "normalized_name": "false dream | 偽夢" + }, + { + "appid": 2753730, + "normalized_name": "美女 应接不暇" + }, + { + "appid": 2753760, + "normalized_name": "let me go" + }, + { + "appid": 2753800, + "normalized_name": "jar head cauldron" + }, + { + "appid": 2753810, + "normalized_name": "ぐうたら娘更生計画 ~neet girl rehabilitation plan~" + }, + { + "appid": 2753820, + "normalized_name": "0010100" + }, + { + "appid": 2753830, + "normalized_name": "巡るダンジョン" + }, + { + "appid": 2753870, + "normalized_name": "kickback shoot to move! 👾" + }, + { + "appid": 2753890, + "normalized_name": "vr houses glass apartment" + }, + { + "appid": 2753900, + "normalized_name": "the king is watching" + }, + { + "appid": 2753920, + "normalized_name": "unduster" + }, + { + "appid": 2753930, + "normalized_name": "vikings dynasty" + }, + { + "appid": 2753940, + "normalized_name": "burger takeout" + }, + { + "appid": 2753950, + "normalized_name": "platinums" + }, + { + "appid": 2753960, + "normalized_name": "escape the dungeon the eye of tormak" + }, + { + "appid": 2753970, + "normalized_name": "marvel cosmic invasion" + }, + { + "appid": 2753990, + "normalized_name": "katana dynasty" + }, + { + "appid": 2754000, + "normalized_name": "matrix bro" + }, + { + "appid": 2754040, + "normalized_name": "fisherman'sworld" + }, + { + "appid": 2754090, + "normalized_name": "aces of thunder" + }, + { + "appid": 2754110, + "normalized_name": "pocketing the ball billiards simulator 8 ball 3d pool" + }, + { + "appid": 2754120, + "normalized_name": "flake the legend of snowblind" + }, + { + "appid": 2754140, + "normalized_name": "sexy apocalypse girls. part i" + }, + { + "appid": 2754170, + "normalized_name": "sore wa maichiru sakura no you ni re birth" + }, + { + "appid": 2754280, + "normalized_name": "drill hero legend" + }, + { + "appid": 2754340, + "normalized_name": "lagoon lounge 2 the secret roommate" + }, + { + "appid": 2754370, + "normalized_name": "voidsayer" + }, + { + "appid": 2754380, + "normalized_name": "the roottrees are dead" + }, + { + "appid": 2754440, + "normalized_name": "survivaluck" + }, + { + "appid": 2754480, + "normalized_name": "exitus" + }, + { + "appid": 2754490, + "normalized_name": "whispering lane horror" + }, + { + "appid": 2754530, + "normalized_name": "devil's hideout" + }, + { + "appid": 2754540, + "normalized_name": "fox quest the elemental keys" + }, + { + "appid": 2754560, + "normalized_name": "bisyntho" + }, + { + "appid": 2754570, + "normalized_name": "fule" + }, + { + "appid": 2754640, + "normalized_name": "telaiphone" + }, + { + "appid": 2754660, + "normalized_name": "deal of the dead final cut" + }, + { + "appid": 2754670, + "normalized_name": "bmx gravel" + }, + { + "appid": 2754690, + "normalized_name": "这个是真的喜欢!" + }, + { + "appid": 2754700, + "normalized_name": "paths of valour" + }, + { + "appid": 2754750, + "normalized_name": "zombigon" + }, + { + "appid": 2754830, + "normalized_name": "raiders of treasure island" + }, + { + "appid": 2754840, + "normalized_name": "dodecadone" + }, + { + "appid": 2754860, + "normalized_name": "billo bricks" + }, + { + "appid": 2754870, + "normalized_name": "korga's arena" + }, + { + "appid": 2754880, + "normalized_name": "phobos down" + }, + { + "appid": 2754920, + "normalized_name": "solar storm" + }, + { + "appid": 2754940, + "normalized_name": "fowl swarm" + }, + { + "appid": 2755020, + "normalized_name": "five gods of kung fu" + }, + { + "appid": 2755070, + "normalized_name": "escape the aquarium" + }, + { + "appid": 2755100, + "normalized_name": "taurus war" + }, + { + "appid": 2755120, + "normalized_name": "keykeeper" + }, + { + "appid": 2755130, + "normalized_name": "quadbots the rise of chrono" + }, + { + "appid": 2755170, + "normalized_name": "love and demons" + }, + { + "appid": 2755200, + "normalized_name": "the book of good" + }, + { + "appid": 2755210, + "normalized_name": "hentai nana" + }, + { + "appid": 2755230, + "normalized_name": "vtuber manager" + }, + { + "appid": 2755240, + "normalized_name": "descent a bunnyhopping odyssey" + }, + { + "appid": 2755260, + "normalized_name": "dome rpg" + }, + { + "appid": 2755270, + "normalized_name": "south scrimshaw part two" + }, + { + "appid": 2755300, + "normalized_name": "prospector" + }, + { + "appid": 2755310, + "normalized_name": "god is not here" + }, + { + "appid": 2755320, + "normalized_name": "until it’s undone unmastered" + }, + { + "appid": 2755330, + "normalized_name": "chushpan simulator" + }, + { + "appid": 2755340, + "normalized_name": "second thoughts terminal" + }, + { + "appid": 2755410, + "normalized_name": "charm commerce" + }, + { + "appid": 2755460, + "normalized_name": "chess opening repertoire builder" + }, + { + "appid": 2755480, + "normalized_name": "the censor" + }, + { + "appid": 2755510, + "normalized_name": "cheddar beach 0 party on mango st." + }, + { + "appid": 2755520, + "normalized_name": "dark sword the light of ainn" + }, + { + "appid": 2755570, + "normalized_name": "世界:致爱丽丝" + }, + { + "appid": 2755670, + "normalized_name": "one drop" + }, + { + "appid": 2755680, + "normalized_name": "forged in epic" + }, + { + "appid": 2755690, + "normalized_name": "zero distance" + }, + { + "appid": 2755700, + "normalized_name": "totally shmup" + }, + { + "appid": 2755730, + "normalized_name": "toward pianist" + }, + { + "appid": 2755760, + "normalized_name": "射日传说 sun shot legend" + }, + { + "appid": 2755790, + "normalized_name": "esoterika" + }, + { + "appid": 2755810, + "normalized_name": "the street 10" + }, + { + "appid": 2755820, + "normalized_name": "how old is james?" + }, + { + "appid": 2755860, + "normalized_name": "pro wrestling manager" + }, + { + "appid": 2755870, + "normalized_name": "kudamono party" + }, + { + "appid": 2755880, + "normalized_name": "island party chaos" + }, + { + "appid": 2755900, + "normalized_name": "dxr a better tomorrow" + }, + { + "appid": 2755950, + "normalized_name": "tidebound" + }, + { + "appid": 2755960, + "normalized_name": "cat simulator kitty conundrums" + }, + { + "appid": 2755980, + "normalized_name": "the head well lost" + }, + { + "appid": 2755990, + "normalized_name": "miss paint" + }, + { + "appid": 2756030, + "normalized_name": "fusion fling" + }, + { + "appid": 2756050, + "normalized_name": "extant zombie eradication co op simulation" + }, + { + "appid": 2756120, + "normalized_name": "netoria tactics revolution gold" + }, + { + "appid": 2756160, + "normalized_name": "greenwood falls" + }, + { + "appid": 2756190, + "normalized_name": "the twilight witch" + }, + { + "appid": 2756220, + "normalized_name": "lakesider above and below" + }, + { + "appid": 2756280, + "normalized_name": "御剑山海经" + }, + { + "appid": 2756320, + "normalized_name": "捜査官の試練investigator trials" + }, + { + "appid": 2756380, + "normalized_name": "dead end city blues od" + }, + { + "appid": 2756390, + "normalized_name": "a fascinating story" + }, + { + "appid": 2756400, + "normalized_name": "conquistadors" + }, + { + "appid": 2756410, + "normalized_name": "xwarshootervr" + }, + { + "appid": 2756460, + "normalized_name": "lucky pirate deck" + }, + { + "appid": 2756470, + "normalized_name": "game builder tycoon" + }, + { + "appid": 2756570, + "normalized_name": "time warp infinite" + }, + { + "appid": 2756580, + "normalized_name": "strashna 2" + }, + { + "appid": 2756610, + "normalized_name": "what's up there?" + }, + { + "appid": 2756620, + "normalized_name": "异界传说" + }, + { + "appid": 2756670, + "normalized_name": "plumber survivors" + }, + { + "appid": 2756700, + "normalized_name": "the glitch prison" + }, + { + "appid": 2756720, + "normalized_name": "hidden object chronicles poisoned truth collector's" + }, + { + "appid": 2756760, + "normalized_name": "police force law and honor" + }, + { + "appid": 2756770, + "normalized_name": "tavern manager simulator 🍻" + }, + { + "appid": 2756780, + "normalized_name": "obscuria" + }, + { + "appid": 2756790, + "normalized_name": "mortal void" + }, + { + "appid": 2756800, + "normalized_name": "hentai maid momoka" + }, + { + "appid": 2756820, + "normalized_name": "sex of thrones 👑 prologue" + }, + { + "appid": 2756830, + "normalized_name": "sex coach hot yoga prologue" + }, + { + "appid": 2756860, + "normalized_name": "3d puzzle factory" + }, + { + "appid": 2756870, + "normalized_name": "case 32" + }, + { + "appid": 2756910, + "normalized_name": "dark light" + }, + { + "appid": 2756920, + "normalized_name": "keep driving" + }, + { + "appid": 2756930, + "normalized_name": "pump it up rise" + }, + { + "appid": 2756960, + "normalized_name": "ninja frogs" + }, + { + "appid": 2756970, + "normalized_name": "cave escape" + }, + { + "appid": 2757000, + "normalized_name": "mind of the midwest" + }, + { + "appid": 2757030, + "normalized_name": "muse war" + }, + { + "appid": 2757050, + "normalized_name": "shotsurged" + }, + { + "appid": 2757070, + "normalized_name": "annyversaire" + }, + { + "appid": 2757220, + "normalized_name": "scp descent" + }, + { + "appid": 2757230, + "normalized_name": "skyfish rising" + }, + { + "appid": 2757250, + "normalized_name": "cuckold's gym" + }, + { + "appid": 2757300, + "normalized_name": "plug it in" + }, + { + "appid": 2757330, + "normalized_name": "class of '09 the flip side" + }, + { + "appid": 2757350, + "normalized_name": "谍影成双" + }, + { + "appid": 2757390, + "normalized_name": "勇者之路" + }, + { + "appid": 2757400, + "normalized_name": "iron trails outlaw pursuit" + }, + { + "appid": 2757450, + "normalized_name": "treasure atlas" + }, + { + "appid": 2757480, + "normalized_name": "hiddenverse kingdom fall" + }, + { + "appid": 2757490, + "normalized_name": "petit game collection vol.1" + }, + { + "appid": 2757500, + "normalized_name": "checkout!" + }, + { + "appid": 2757520, + "normalized_name": "glory to ukraine!" + }, + { + "appid": 2757530, + "normalized_name": "twizzle puzzle reptiles" + }, + { + "appid": 2757540, + "normalized_name": "mechanophagia" + }, + { + "appid": 2757570, + "normalized_name": "runaway bride" + }, + { + "appid": 2757590, + "normalized_name": "educational enamours" + }, + { + "appid": 2757600, + "normalized_name": "my corp cargo simulator" + }, + { + "appid": 2757610, + "normalized_name": "trans siberian legends" + }, + { + "appid": 2757620, + "normalized_name": "cosmic slime defense" + }, + { + "appid": 2757630, + "normalized_name": "lonely knight idle roguelike rpg" + }, + { + "appid": 2757640, + "normalized_name": "mannequin mayhem physics ragdoll shooter" + }, + { + "appid": 2757660, + "normalized_name": "dooblets" + }, + { + "appid": 2757670, + "normalized_name": "node the last favor of the antarii" + }, + { + "appid": 2757690, + "normalized_name": "carbón hearts" + }, + { + "appid": 2757720, + "normalized_name": "sonny legacy collection" + }, + { + "appid": 2757770, + "normalized_name": "neon rider classic" + }, + { + "appid": 2757810, + "normalized_name": "the jump guys" + }, + { + "appid": 2757820, + "normalized_name": "sensual adventures treasure island" + }, + { + "appid": 2757840, + "normalized_name": "please stop crying" + }, + { + "appid": 2757850, + "normalized_name": "gothic virtual tabletop" + }, + { + "appid": 2757910, + "normalized_name": "nightcrawler" + }, + { + "appid": 2757940, + "normalized_name": "furry shakespeare to date or not to date spooky cat girls 2?!" + }, + { + "appid": 2757950, + "normalized_name": "project cradle" + }, + { + "appid": 2757980, + "normalized_name": "project bubblegum" + }, + { + "appid": 2757990, + "normalized_name": "mini star imposters" + }, + { + "appid": 2758000, + "normalized_name": "名利游戏" + }, + { + "appid": 2758030, + "normalized_name": "akatsuki lord of the dawn" + }, + { + "appid": 2758070, + "normalized_name": "core breach" + }, + { + "appid": 2758110, + "normalized_name": "dice & sword" + }, + { + "appid": 2758140, + "normalized_name": "crystal horizons" + }, + { + "appid": 2758150, + "normalized_name": "blast processed" + }, + { + "appid": 2758180, + "normalized_name": "animal race party" + }, + { + "appid": 2758190, + "normalized_name": "our freedom" + }, + { + "appid": 2758210, + "normalized_name": "perfect poses" + }, + { + "appid": 2758220, + "normalized_name": "deepsea serenity vr underwater trip" + }, + { + "appid": 2758230, + "normalized_name": "insect flight simulator vr" + }, + { + "appid": 2758260, + "normalized_name": "봄이 오면 꽃이 피고" + }, + { + "appid": 2758270, + "normalized_name": "混沌勇者村" + }, + { + "appid": 2758280, + "normalized_name": "boldly forward" + }, + { + "appid": 2758290, + "normalized_name": "project 13" + }, + { + "appid": 2758320, + "normalized_name": "mine? sweeper" + }, + { + "appid": 2758340, + "normalized_name": "chuno" + }, + { + "appid": 2758350, + "normalized_name": "the dark cave" + }, + { + "appid": 2758360, + "normalized_name": "scorpion's curse" + }, + { + "appid": 2758380, + "normalized_name": "kitiplant" + }, + { + "appid": 2758400, + "normalized_name": "splash one" + }, + { + "appid": 2758410, + "normalized_name": "beach ping pong babes vr" + }, + { + "appid": 2758420, + "normalized_name": "phenom" + }, + { + "appid": 2758490, + "normalized_name": "kepler 2100" + }, + { + "appid": 2758510, + "normalized_name": "encounters music stories" + }, + { + "appid": 2758540, + "normalized_name": "我的小鲨鱼" + }, + { + "appid": 2758550, + "normalized_name": "training elves" + }, + { + "appid": 2758570, + "normalized_name": "to the death" + }, + { + "appid": 2758590, + "normalized_name": "วีรบุรุษไร้พลัง ไข่ต้ม 2" + }, + { + "appid": 2758730, + "normalized_name": "manda duo" + }, + { + "appid": 2758740, + "normalized_name": "industree" + }, + { + "appid": 2758770, + "normalized_name": "project green" + }, + { + "appid": 2758910, + "normalized_name": "chef's adventure" + }, + { + "appid": 2758940, + "normalized_name": "strangling a snake tale" + }, + { + "appid": 2758950, + "normalized_name": "home detective vr immersive" + }, + { + "appid": 2758970, + "normalized_name": "doppelscape" + }, + { + "appid": 2758980, + "normalized_name": "gulugululand3d" + }, + { + "appid": 2759000, + "normalized_name": "new brooklyn bridge tycoon" + }, + { + "appid": 2759010, + "normalized_name": "lumos" + }, + { + "appid": 2759050, + "normalized_name": "manzaka" + }, + { + "appid": 2759110, + "normalized_name": "pingdom" + }, + { + "appid": 2759120, + "normalized_name": "captain edward" + }, + { + "appid": 2759130, + "normalized_name": "break free" + }, + { + "appid": 2759140, + "normalized_name": "the valley of the architects" + }, + { + "appid": 2759160, + "normalized_name": "project jeff" + }, + { + "appid": 2759170, + "normalized_name": "boyce the voice" + }, + { + "appid": 2759230, + "normalized_name": "tiny battles" + }, + { + "appid": 2759240, + "normalized_name": "rubber hose rampage" + }, + { + "appid": 2759280, + "normalized_name": "kumitantei old school slaughter" + }, + { + "appid": 2759530, + "normalized_name": "virtual jigsaw puzzles" + }, + { + "appid": 2759540, + "normalized_name": "novark" + }, + { + "appid": 2759560, + "normalized_name": "monday morning simulator" + }, + { + "appid": 2759570, + "normalized_name": "questscape" + }, + { + "appid": 2759590, + "normalized_name": "dragon's fate cards and minigames" + }, + { + "appid": 2759640, + "normalized_name": "oddment" + }, + { + "appid": 2759660, + "normalized_name": "clumsy cannon" + }, + { + "appid": 2759710, + "normalized_name": "lover" + }, + { + "appid": 2759750, + "normalized_name": "animal race run vr" + }, + { + "appid": 2759760, + "normalized_name": "prickle" + }, + { + "appid": 2759770, + "normalized_name": "暗示" + }, + { + "appid": 2759780, + "normalized_name": "starfall outer fleet" + }, + { + "appid": 2759800, + "normalized_name": "忘川游riverlife" + }, + { + "appid": 2759820, + "normalized_name": "toing's pops 2" + }, + { + "appid": 2759840, + "normalized_name": "hell knight" + }, + { + "appid": 2759850, + "normalized_name": "守塔不能停" + }, + { + "appid": 2759870, + "normalized_name": "snake o tron" + }, + { + "appid": 2759900, + "normalized_name": "i know your address" + }, + { + "appid": 2759910, + "normalized_name": "devilish league" + }, + { + "appid": 2759920, + "normalized_name": "智斗模拟器 wits battle simulator" + }, + { + "appid": 2759940, + "normalized_name": "widen" + }, + { + "appid": 2759960, + "normalized_name": "feralbound online" + }, + { + "appid": 2760470, + "normalized_name": "tetrominer" + }, + { + "appid": 2760500, + "normalized_name": "out of mind" + }, + { + "appid": 2760520, + "normalized_name": "terminus ultiverse" + }, + { + "appid": 2760540, + "normalized_name": "异世界物语" + }, + { + "appid": 2760560, + "normalized_name": "cthulhu the cosmic abyss" + }, + { + "appid": 2760570, + "normalized_name": "pure hearts" + }, + { + "appid": 2760580, + "normalized_name": "mars attracts" + }, + { + "appid": 2760600, + "normalized_name": "escape floor zero" + }, + { + "appid": 2760610, + "normalized_name": "unknown memoirs stormy night" + }, + { + "appid": 2760620, + "normalized_name": "deathly reprieve" + }, + { + "appid": 2760640, + "normalized_name": "patient no. 26" + }, + { + "appid": 2760650, + "normalized_name": "jim's nightmare chapter 1" + }, + { + "appid": 2760670, + "normalized_name": "牧场大作战(ranch battle)" + }, + { + "appid": 2760710, + "normalized_name": "return unknown" + }, + { + "appid": 2760720, + "normalized_name": "bestiario" + }, + { + "appid": 2760730, + "normalized_name": "clash of adventurers" + }, + { + "appid": 2760740, + "normalized_name": "super taxi simulation" + }, + { + "appid": 2760770, + "normalized_name": "hiddenset" + }, + { + "appid": 2760780, + "normalized_name": "dating simulator 2025" + }, + { + "appid": 2760790, + "normalized_name": "another farm roguelike rebirth" + }, + { + "appid": 2760800, + "normalized_name": "the forgotten villages of gondomayit 2 kost karangsari" + }, + { + "appid": 2760830, + "normalized_name": "star bind" + }, + { + "appid": 2760860, + "normalized_name": "ninja waltz of night" + }, + { + "appid": 2760920, + "normalized_name": "resttore" + }, + { + "appid": 2760970, + "normalized_name": "crop and claw" + }, + { + "appid": 2761000, + "normalized_name": "tales of old dominus" + }, + { + "appid": 2761020, + "normalized_name": "a little less desperation" + }, + { + "appid": 2761050, + "normalized_name": "meta visual art" + }, + { + "appid": 2761060, + "normalized_name": "dark web vigilante" + }, + { + "appid": 2761070, + "normalized_name": "观澜magic" + }, + { + "appid": 2761080, + "normalized_name": "eyes of memes" + }, + { + "appid": 2761100, + "normalized_name": "pomberito" + }, + { + "appid": 2761130, + "normalized_name": "robosync" + }, + { + "appid": 2761160, + "normalized_name": "2007" + }, + { + "appid": 2761180, + "normalized_name": "dreams of the void" + }, + { + "appid": 2761240, + "normalized_name": "presidents tower defense" + }, + { + "appid": 2761270, + "normalized_name": "munches" + }, + { + "appid": 2761290, + "normalized_name": "warped continuity" + }, + { + "appid": 2761310, + "normalized_name": "スイカvsメカスイカ" + }, + { + "appid": 2761340, + "normalized_name": "beats of betrayal" + }, + { + "appid": 2761350, + "normalized_name": "golf gambit" + }, + { + "appid": 2761380, + "normalized_name": "cardyheim" + }, + { + "appid": 2761410, + "normalized_name": "ludus vetitus" + }, + { + "appid": 2761460, + "normalized_name": "meow weight loss diary" + }, + { + "appid": 2761470, + "normalized_name": "aperture" + }, + { + "appid": 2761480, + "normalized_name": "outer storms" + }, + { + "appid": 2761490, + "normalized_name": "space nature attack tower defense" + }, + { + "appid": 2761500, + "normalized_name": "project emplorer" + }, + { + "appid": 2761510, + "normalized_name": "帅气的我与100个女友!" + }, + { + "appid": 2761520, + "normalized_name": "lone lamp" + }, + { + "appid": 2761550, + "normalized_name": "meteorite z the apocalypse" + }, + { + "appid": 2761560, + "normalized_name": "thespoiler" + }, + { + "appid": 2761570, + "normalized_name": "红楼梦 stone story" + }, + { + "appid": 2761580, + "normalized_name": "drealegy" + }, + { + "appid": 2761610, + "normalized_name": "異世界の創造者" + }, + { + "appid": 2761620, + "normalized_name": "13 seconds" + }, + { + "appid": 2761640, + "normalized_name": "pirates ludo kanhoji's island" + }, + { + "appid": 2761670, + "normalized_name": "sinister night 2" + }, + { + "appid": 2761710, + "normalized_name": "skulls of olympus" + }, + { + "appid": 2761730, + "normalized_name": "extirpate" + }, + { + "appid": 2761760, + "normalized_name": "emptiness" + }, + { + "appid": 2761780, + "normalized_name": "plot!" + }, + { + "appid": 2761790, + "normalized_name": "wake up liminal" + }, + { + "appid": 2761800, + "normalized_name": "combat pilot carrier qualification" + }, + { + "appid": 2761820, + "normalized_name": "highway drifter hajwala simulator" + }, + { + "appid": 2761830, + "normalized_name": "24" + }, + { + "appid": 2761860, + "normalized_name": "gamechanger episode 1" + }, + { + "appid": 2761900, + "normalized_name": "skull skull skull" + }, + { + "appid": 2761920, + "normalized_name": "gunpowder cocktail chapter 1" + }, + { + "appid": 2761930, + "normalized_name": "hentai bunny" + }, + { + "appid": 2761940, + "normalized_name": "haunted arcade" + }, + { + "appid": 2761960, + "normalized_name": "golf tour" + }, + { + "appid": 2761970, + "normalized_name": "the portal trial" + }, + { + "appid": 2761990, + "normalized_name": "wobbly construction!" + }, + { + "appid": 2762040, + "normalized_name": "the highlands of jurgald" + }, + { + "appid": 2762050, + "normalized_name": "revolocity" + }, + { + "appid": 2762080, + "normalized_name": "rock 'n' bones" + }, + { + "appid": 2762110, + "normalized_name": "moments of love" + }, + { + "appid": 2762220, + "normalized_name": "connor" + }, + { + "appid": 2762230, + "normalized_name": "aurora hills chapter 1" + }, + { + "appid": 2762250, + "normalized_name": "a zombie tail" + }, + { + "appid": 2762270, + "normalized_name": "celv run" + }, + { + "appid": 2762290, + "normalized_name": "billy's game show" + }, + { + "appid": 2762300, + "normalized_name": "mega monster metropolis" + }, + { + "appid": 2762310, + "normalized_name": "vita rift of a nation" + }, + { + "appid": 2762320, + "normalized_name": "hen frontiers" + }, + { + "appid": 2762330, + "normalized_name": "fire thief" + }, + { + "appid": 2762360, + "normalized_name": "harvest cafe" + }, + { + "appid": 2762370, + "normalized_name": "daniel pintado's land of silence" + }, + { + "appid": 2762390, + "normalized_name": "the tower of babel" + }, + { + "appid": 2762400, + "normalized_name": "neon flight" + }, + { + "appid": 2762470, + "normalized_name": "ghoul fort" + }, + { + "appid": 2762480, + "normalized_name": "outerrealm" + }, + { + "appid": 2762490, + "normalized_name": "コミックバチコーン!!" + }, + { + "appid": 2762520, + "normalized_name": "journey to the end" + }, + { + "appid": 2762530, + "normalized_name": "stacking fairy" + }, + { + "appid": 2762560, + "normalized_name": "abyssal frontier" + }, + { + "appid": 2762590, + "normalized_name": "furry shakespeare to date or not to date cat girls? if made today" + }, + { + "appid": 2762610, + "normalized_name": "piranha feeding" + }, + { + "appid": 2762640, + "normalized_name": "flawless dream" + }, + { + "appid": 2762650, + "normalized_name": "magibrick" + }, + { + "appid": 2762670, + "normalized_name": "scp 9735 alpha δrch1tect" + }, + { + "appid": 2762690, + "normalized_name": "woodland sonata" + }, + { + "appid": 2762700, + "normalized_name": "forged in dungeon" + }, + { + "appid": 2762710, + "normalized_name": "polda" + }, + { + "appid": 2762730, + "normalized_name": "hello yuna" + }, + { + "appid": 2762740, + "normalized_name": "pitchforks and daggers" + }, + { + "appid": 2762760, + "normalized_name": "food fighters" + }, + { + "appid": 2762790, + "normalized_name": "fight against depression every day" + }, + { + "appid": 2762810, + "normalized_name": "winter cats" + }, + { + "appid": 2762830, + "normalized_name": "terrafort" + }, + { + "appid": 2762840, + "normalized_name": "blood raiders" + }, + { + "appid": 2762940, + "normalized_name": "ninja infiltration" + }, + { + "appid": 2762970, + "normalized_name": "palhalla" + }, + { + "appid": 2762980, + "normalized_name": "face your fear" + }, + { + "appid": 2763000, + "normalized_name": "rescue the beagles" + }, + { + "appid": 2763020, + "normalized_name": "road" + }, + { + "appid": 2763030, + "normalized_name": "gratuitous space shooty game" + }, + { + "appid": 2763050, + "normalized_name": "goat's tale adventure" + }, + { + "appid": 2763090, + "normalized_name": "édgimon" + }, + { + "appid": 2763200, + "normalized_name": "alchepot" + }, + { + "appid": 2763210, + "normalized_name": "rogue's hexagon" + }, + { + "appid": 2763240, + "normalized_name": "英雄史诗" + }, + { + "appid": 2763260, + "normalized_name": "moyu world" + }, + { + "appid": 2763310, + "normalized_name": "untethered" + }, + { + "appid": 2763320, + "normalized_name": "brilliance" + }, + { + "appid": 2763360, + "normalized_name": "ttr 2025" + }, + { + "appid": 2763370, + "normalized_name": "void or hollow" + }, + { + "appid": 2763390, + "normalized_name": "world tour" + }, + { + "appid": 2763420, + "normalized_name": "pangolin cassowary" + }, + { + "appid": 2763430, + "normalized_name": "soundelta" + }, + { + "appid": 2763460, + "normalized_name": "ominous obscurity" + }, + { + "appid": 2763470, + "normalized_name": "kill the clock" + }, + { + "appid": 2763500, + "normalized_name": "moon wars" + }, + { + "appid": 2763510, + "normalized_name": "farmcoz" + }, + { + "appid": 2763520, + "normalized_name": "forest legend" + }, + { + "appid": 2763570, + "normalized_name": "ultra auto gotchimon" + }, + { + "appid": 2763590, + "normalized_name": "just roll" + }, + { + "appid": 2763600, + "normalized_name": "degu squad" + }, + { + "appid": 2763640, + "normalized_name": "一剑江湖" + }, + { + "appid": 2763670, + "normalized_name": "arctic eggs" + }, + { + "appid": 2763740, + "normalized_name": "revolution idle" + }, + { + "appid": 2763770, + "normalized_name": "memory puzzle adventure" + }, + { + "appid": 2763800, + "normalized_name": "runemon" + }, + { + "appid": 2763810, + "normalized_name": "j and the sewer world" + }, + { + "appid": 2763820, + "normalized_name": "stellar reflections" + }, + { + "appid": 2763830, + "normalized_name": "folk tales alageyik" + }, + { + "appid": 2763930, + "normalized_name": "quallet" + }, + { + "appid": 2763980, + "normalized_name": "memoryleak" + }, + { + "appid": 2764050, + "normalized_name": "envious" + }, + { + "appid": 2764070, + "normalized_name": "plantabi little garden" + }, + { + "appid": 2764080, + "normalized_name": "runestone pathfinders" + }, + { + "appid": 2764090, + "normalized_name": "mac the machine" + }, + { + "appid": 2764100, + "normalized_name": "ultimator" + }, + { + "appid": 2764110, + "normalized_name": "gnosis" + }, + { + "appid": 2764120, + "normalized_name": "marcella moon four are watching" + }, + { + "appid": 2764140, + "normalized_name": "tag with friends" + }, + { + "appid": 2764150, + "normalized_name": "masquerade hell academy" + }, + { + "appid": 2764160, + "normalized_name": "enough plumbers" + }, + { + "appid": 2764170, + "normalized_name": "elhosea" + }, + { + "appid": 2764180, + "normalized_name": "solo levelup survivor" + }, + { + "appid": 2764200, + "normalized_name": "水晶编年史 回合纪元(ccte)" + }, + { + "appid": 2764210, + "normalized_name": "worldsmith by charles a. debczak" + }, + { + "appid": 2764250, + "normalized_name": "judge of hasoon" + }, + { + "appid": 2764310, + "normalized_name": "exs3~ethnologysister3:culture and personality" + }, + { + "appid": 2764320, + "normalized_name": "kami parade of senses" + }, + { + "appid": 2764340, + "normalized_name": "summoneer" + }, + { + "appid": 2764350, + "normalized_name": "hexis" + }, + { + "appid": 2764370, + "normalized_name": "星之翼" + }, + { + "appid": 2764380, + "normalized_name": "tink the last fairy" + }, + { + "appid": 2764390, + "normalized_name": "unknown place" + }, + { + "appid": 2764400, + "normalized_name": "final apex" + }, + { + "appid": 2764420, + "normalized_name": "death ring" + }, + { + "appid": 2764450, + "normalized_name": "my pretty closet" + }, + { + "appid": 2764460, + "normalized_name": "sandustry" + }, + { + "appid": 2764470, + "normalized_name": "farmer and zombie" + }, + { + "appid": 2764490, + "normalized_name": "带不动的七年一班 no kids left" + }, + { + "appid": 2764500, + "normalized_name": "magic cauldron dungeons" + }, + { + "appid": 2764510, + "normalized_name": "the demon's exorcism" + }, + { + "appid": 2764570, + "normalized_name": "shape shift shawn episode 2 fugitive from the future" + }, + { + "appid": 2764580, + "normalized_name": "story of the lost dot" + }, + { + "appid": 2764590, + "normalized_name": "monster titan's playground" + }, + { + "appid": 2764600, + "normalized_name": "antishoot" + }, + { + "appid": 2764650, + "normalized_name": "devastating fog" + }, + { + "appid": 2764680, + "normalized_name": "dungeon chamber" + }, + { + "appid": 2764690, + "normalized_name": "chefs together" + }, + { + "appid": 2764720, + "normalized_name": "word2" + }, + { + "appid": 2764750, + "normalized_name": "the other side" + }, + { + "appid": 2764830, + "normalized_name": "shift legacy collection" + }, + { + "appid": 2764840, + "normalized_name": "pirates! showdown enhanced" + }, + { + "appid": 2764860, + "normalized_name": "cryohazard" + }, + { + "appid": 2764870, + "normalized_name": "geometry survivor [0]" + }, + { + "appid": 2764990, + "normalized_name": "megadungeon" + }, + { + "appid": 2765020, + "normalized_name": "镇魔英雄谭_the legend of demon slaying heroes" + }, + { + "appid": 2765070, + "normalized_name": "iron dawn" + }, + { + "appid": 2765080, + "normalized_name": "princess paradise" + }, + { + "appid": 2765090, + "normalized_name": "학원마경 ~high school crisis~" + }, + { + "appid": 2765100, + "normalized_name": "shijie xiuxian" + }, + { + "appid": 2765120, + "normalized_name": "urban forest" + }, + { + "appid": 2765140, + "normalized_name": "super puzzle blasters" + }, + { + "appid": 2765180, + "normalized_name": "22 minutes" + }, + { + "appid": 2765200, + "normalized_name": "我被古装美女包围了!" + }, + { + "appid": 2765250, + "normalized_name": "avoo" + }, + { + "appid": 2765300, + "normalized_name": "smash cup" + }, + { + "appid": 2765320, + "normalized_name": "天临混元" + }, + { + "appid": 2765340, + "normalized_name": "earworm" + }, + { + "appid": 2765350, + "normalized_name": "lost princess city" + }, + { + "appid": 2765360, + "normalized_name": "跳跃的阿坤先生" + }, + { + "appid": 2765370, + "normalized_name": "rose cottage" + }, + { + "appid": 2765440, + "normalized_name": "comma" + }, + { + "appid": 2765460, + "normalized_name": "star trek legends" + }, + { + "appid": 2765490, + "normalized_name": "healed to death" + }, + { + "appid": 2765500, + "normalized_name": "falcon 2023(猎鹰2023)" + }, + { + "appid": 2765540, + "normalized_name": "neon fantasy horses" + }, + { + "appid": 2765580, + "normalized_name": "skeleton scramble deluxe 2" + }, + { + "appid": 2765600, + "normalized_name": "schrodinger's cat experiment (sce)" + }, + { + "appid": 2765640, + "normalized_name": "freak house" + }, + { + "appid": 2765670, + "normalized_name": "from scratch" + }, + { + "appid": 2765690, + "normalized_name": "pixel defender" + }, + { + "appid": 2765700, + "normalized_name": "forest warden" + }, + { + "appid": 2765750, + "normalized_name": "pyrocast" + }, + { + "appid": 2765760, + "normalized_name": "horror nightmare collection" + }, + { + "appid": 2765790, + "normalized_name": "dreadweave" + }, + { + "appid": 2765820, + "normalized_name": "demon recollect" + }, + { + "appid": 2765850, + "normalized_name": "unreality" + }, + { + "appid": 2765860, + "normalized_name": "slipstream rogue space" + }, + { + "appid": 2765880, + "normalized_name": "starters orders touch horse racing" + }, + { + "appid": 2765910, + "normalized_name": "let me sleep" + }, + { + "appid": 2765940, + "normalized_name": "polygon hell" + }, + { + "appid": 2766020, + "normalized_name": "harem survivor" + }, + { + "appid": 2766050, + "normalized_name": "lightspeed" + }, + { + "appid": 2766060, + "normalized_name": "zapper one wicked cricket" + }, + { + "appid": 2766070, + "normalized_name": "weird dreams" + }, + { + "appid": 2766080, + "normalized_name": "hardball! + hardball ii" + }, + { + "appid": 2766090, + "normalized_name": "gunship + gunship 2000" + }, + { + "appid": 2766150, + "normalized_name": "the upper downer complex" + }, + { + "appid": 2766160, + "normalized_name": "imperialism concert of europe" + }, + { + "appid": 2766180, + "normalized_name": "fissure cubic" + }, + { + "appid": 2766200, + "normalized_name": "botanica" + }, + { + "appid": 2766210, + "normalized_name": "arcanos one" + }, + { + "appid": 2766220, + "normalized_name": "leaden sky nightmares" + }, + { + "appid": 2766250, + "normalized_name": "milkman mayhem" + }, + { + "appid": 2766260, + "normalized_name": "firefrost" + }, + { + "appid": 2766270, + "normalized_name": "thanks merlin" + }, + { + "appid": 2766280, + "normalized_name": "neon rush" + }, + { + "appid": 2766290, + "normalized_name": "animalistic worlds" + }, + { + "appid": 2766310, + "normalized_name": "放學後(after school)" + }, + { + "appid": 2766330, + "normalized_name": "the visitor effect not an experiment" + }, + { + "appid": 2766340, + "normalized_name": "sea of beasts" + }, + { + "appid": 2766360, + "normalized_name": "cavy chronicles" + }, + { + "appid": 2766370, + "normalized_name": "the tour" + }, + { + "appid": 2766380, + "normalized_name": "stickman world battle" + }, + { + "appid": 2766390, + "normalized_name": "stickman ww2" + }, + { + "appid": 2766400, + "normalized_name": "fixer's tale" + }, + { + "appid": 2766450, + "normalized_name": "soul hero adventure" + }, + { + "appid": 2766470, + "normalized_name": "sippy disco light up the dance floor" + }, + { + "appid": 2766480, + "normalized_name": "cargo duty" + }, + { + "appid": 2766500, + "normalized_name": "elements for money" + }, + { + "appid": 2766530, + "normalized_name": "adventures of mirror domain" + }, + { + "appid": 2766540, + "normalized_name": "electrobasis" + }, + { + "appid": 2766550, + "normalized_name": "moon tower" + }, + { + "appid": 2766560, + "normalized_name": "拼图之旅" + }, + { + "appid": 2766570, + "normalized_name": "cold lazarus" + }, + { + "appid": 2766580, + "normalized_name": "thirdplace kon and pon" + }, + { + "appid": 2766600, + "normalized_name": "geometry raid" + }, + { + "appid": 2766620, + "normalized_name": "do a barrel roll??" + }, + { + "appid": 2766640, + "normalized_name": "skyward district" + }, + { + "appid": 2766650, + "normalized_name": "chicago project (芝加哥计划)" + }, + { + "appid": 2766760, + "normalized_name": "三国英雄演义(three kingdoms heroes epic)" + }, + { + "appid": 2766770, + "normalized_name": "这是一个正方形!(this is a square!)" + }, + { + "appid": 2766790, + "normalized_name": "飞跃星球(eggy space)" + }, + { + "appid": 2766810, + "normalized_name": "scuttle" + }, + { + "appid": 2766830, + "normalized_name": "beast park" + }, + { + "appid": 2766840, + "normalized_name": "tower of grimoiria" + }, + { + "appid": 2766860, + "normalized_name": "都要!小孩子才做选择!" + }, + { + "appid": 2766880, + "normalized_name": "meowingtons simulator" + }, + { + "appid": 2766890, + "normalized_name": "lazer tag arena" + }, + { + "appid": 2766900, + "normalized_name": "swaybods" + }, + { + "appid": 2766910, + "normalized_name": "pengpong" + }, + { + "appid": 2766940, + "normalized_name": "lutnak·quest" + }, + { + "appid": 2767010, + "normalized_name": "oceanarium world" + }, + { + "appid": 2767020, + "normalized_name": "circle defense" + }, + { + "appid": 2767030, + "normalized_name": "marvel rivals" + }, + { + "appid": 2767040, + "normalized_name": "十字防守(x defense timing td)" + }, + { + "appid": 2767060, + "normalized_name": "toto zoo | chapter zero" + }, + { + "appid": 2767080, + "normalized_name": "darkness prince of shadows" + }, + { + "appid": 2767160, + "normalized_name": "adorimon arena of ancients" + }, + { + "appid": 2767180, + "normalized_name": "six cabins in serpent ridge national forest" + }, + { + "appid": 2767210, + "normalized_name": "universe millionaire the new era of energy" + }, + { + "appid": 2767220, + "normalized_name": "wizard war online" + }, + { + "appid": 2767240, + "normalized_name": "nerdtastic norman & the soul fragments" + }, + { + "appid": 2767260, + "normalized_name": "acapella master" + }, + { + "appid": 2767270, + "normalized_name": "レッツバトルオンライン" + }, + { + "appid": 2767280, + "normalized_name": "up hike" + }, + { + "appid": 2767310, + "normalized_name": "丛林游侠(jungle ranger)" + }, + { + "appid": 2767320, + "normalized_name": "try if you can 100" + }, + { + "appid": 2767400, + "normalized_name": "the complex tragedy" + }, + { + "appid": 2767430, + "normalized_name": "wisps of the elements" + }, + { + "appid": 2767450, + "normalized_name": "bunker's shadow" + }, + { + "appid": 2767480, + "normalized_name": "alien horizon (preview alpha)" + }, + { + "appid": 2767500, + "normalized_name": "stack slayer" + }, + { + "appid": 2767510, + "normalized_name": "dead red bennie" + }, + { + "appid": 2767520, + "normalized_name": "lurkbait twitch fishing" + }, + { + "appid": 2767530, + "normalized_name": "wicked seed" + }, + { + "appid": 2767540, + "normalized_name": "ball bulét" + }, + { + "appid": 2767570, + "normalized_name": "satellite engineer" + }, + { + "appid": 2767630, + "normalized_name": "o coletor" + }, + { + "appid": 2767730, + "normalized_name": "project 47" + }, + { + "appid": 2767740, + "normalized_name": "werewolves 3 evolution's end" + }, + { + "appid": 2767790, + "normalized_name": "rockin' racket" + }, + { + "appid": 2767810, + "normalized_name": "leader of the pack" + }, + { + "appid": 2767850, + "normalized_name": "idle space force retro clicker" + }, + { + "appid": 2767860, + "normalized_name": "fps pro team manager" + }, + { + "appid": 2767870, + "normalized_name": "fist of kung fu" + }, + { + "appid": 2767950, + "normalized_name": "capuchin" + }, + { + "appid": 2767990, + "normalized_name": "whispers of prague the executioner's last cut" + }, + { + "appid": 2768010, + "normalized_name": "dizzy fight" + }, + { + "appid": 2768020, + "normalized_name": "baggage inspector" + }, + { + "appid": 2768030, + "normalized_name": "saborus" + }, + { + "appid": 2768050, + "normalized_name": "elden gunfire" + }, + { + "appid": 2768080, + "normalized_name": "from the night" + }, + { + "appid": 2768100, + "normalized_name": "slendrina remake" + }, + { + "appid": 2768110, + "normalized_name": "sealed in wax" + }, + { + "appid": 2768130, + "normalized_name": "six legends" + }, + { + "appid": 2768150, + "normalized_name": "undulations" + }, + { + "appid": 2768260, + "normalized_name": "idle planets" + }, + { + "appid": 2768300, + "normalized_name": "scp" + }, + { + "appid": 2768320, + "normalized_name": "mark's power" + }, + { + "appid": 2768350, + "normalized_name": "sinistrium" + }, + { + "appid": 2768380, + "normalized_name": "repterra" + }, + { + "appid": 2768390, + "normalized_name": "into the backrooms last tape" + }, + { + "appid": 2768400, + "normalized_name": "1114 robin hood survivors" + }, + { + "appid": 2768420, + "normalized_name": "the last winter knight" + }, + { + "appid": 2768430, + "normalized_name": "atlyss" + }, + { + "appid": 2768440, + "normalized_name": "résop paz yandere true ( rpyt ) ( r pyt ) ( resop paz )" + }, + { + "appid": 2768470, + "normalized_name": "dungeon of astaroth" + }, + { + "appid": 2768520, + "normalized_name": "jousting in january" + }, + { + "appid": 2768560, + "normalized_name": "primal league" + }, + { + "appid": 2768590, + "normalized_name": "solar serpent squadron" + }, + { + "appid": 2768600, + "normalized_name": "fated retrace operation ascension" + }, + { + "appid": 2768640, + "normalized_name": "杀青" + }, + { + "appid": 2768730, + "normalized_name": "panda?" + }, + { + "appid": 2768760, + "normalized_name": "hoverkitty in the hoververse chapter three" + }, + { + "appid": 2768830, + "normalized_name": "the rabbit and tamaki are taking a break!" + }, + { + "appid": 2768900, + "normalized_name": "蜂とアヴァンギャルド" + }, + { + "appid": 2768920, + "normalized_name": "arcaneoutpost" + }, + { + "appid": 2768990, + "normalized_name": "foodie novice village" + }, + { + "appid": 2769020, + "normalized_name": "xilosaga" + }, + { + "appid": 2769060, + "normalized_name": "souls \"위령\"" + }, + { + "appid": 2769070, + "normalized_name": "hero" + }, + { + "appid": 2769080, + "normalized_name": "kong survivor instinct" + }, + { + "appid": 2769100, + "normalized_name": "visiting shrine at night | 夜間参拝" + }, + { + "appid": 2769110, + "normalized_name": "line of fire pirate waltz" + }, + { + "appid": 2769120, + "normalized_name": "state of presence" + }, + { + "appid": 2769160, + "normalized_name": "unheil" + }, + { + "appid": 2769210, + "normalized_name": "scarmonde" + }, + { + "appid": 2769240, + "normalized_name": "wax heads" + }, + { + "appid": 2769260, + "normalized_name": "the bit's escape" + }, + { + "appid": 2769270, + "normalized_name": "online car simulator" + }, + { + "appid": 2769290, + "normalized_name": "ringo's roundup" + }, + { + "appid": 2769310, + "normalized_name": "the lost tape cellar" + }, + { + "appid": 2769340, + "normalized_name": "moonshot" + }, + { + "appid": 2769370, + "normalized_name": "funplay school" + }, + { + "appid": 2769380, + "normalized_name": "jusfaslex" + }, + { + "appid": 2769390, + "normalized_name": "wizard realm" + }, + { + "appid": 2769410, + "normalized_name": "ash & adam's gobsmacked" + }, + { + "appid": 2769430, + "normalized_name": "dust courier" + }, + { + "appid": 2769480, + "normalized_name": "spirebound" + }, + { + "appid": 2769510, + "normalized_name": "silver waffle" + }, + { + "appid": 2769530, + "normalized_name": "tragedypunk labor survival and rocket" + }, + { + "appid": 2769570, + "normalized_name": "fable" + }, + { + "appid": 2769580, + "normalized_name": "tactical warfare siege survival" + }, + { + "appid": 2769590, + "normalized_name": "the creature zone vr welcome to dystopia" + }, + { + "appid": 2769640, + "normalized_name": "memorial circuit" + }, + { + "appid": 2769660, + "normalized_name": "hamburg 'neue burg' vr" + }, + { + "appid": 2769670, + "normalized_name": "simulation catalyst" + }, + { + "appid": 2769700, + "normalized_name": "goofy goober simulator" + }, + { + "appid": 2769780, + "normalized_name": "cleanfall" + }, + { + "appid": 2769820, + "normalized_name": "trappist" + }, + { + "appid": 2769880, + "normalized_name": "fleshless" + }, + { + "appid": 2769920, + "normalized_name": "wizarducks and the lost hat" + }, + { + "appid": 2769960, + "normalized_name": "eldoran" + }, + { + "appid": 2769980, + "normalized_name": "versus" + }, + { + "appid": 2769990, + "normalized_name": "beacon of havoc" + }, + { + "appid": 2770140, + "normalized_name": "fledglings" + }, + { + "appid": 2770150, + "normalized_name": "bonanza burger" + }, + { + "appid": 2770160, + "normalized_name": "maxwell's puzzling demon" + }, + { + "appid": 2770190, + "normalized_name": "erdluitl legends of below" + }, + { + "appid": 2770230, + "normalized_name": "real traveler" + }, + { + "appid": 2770250, + "normalized_name": "100 rooms" + }, + { + "appid": 2770270, + "normalized_name": "square saga the trials" + }, + { + "appid": 2770280, + "normalized_name": "生死狙击:战火重燃(国际版)" + }, + { + "appid": 2770290, + "normalized_name": "dream home designer" + }, + { + "appid": 2770300, + "normalized_name": "liquid entry" + }, + { + "appid": 2770310, + "normalized_name": "i fell in love with a fantasy farmer" + }, + { + "appid": 2770320, + "normalized_name": "the dungeon dungeon awaits" + }, + { + "appid": 2770330, + "normalized_name": "chaos front" + }, + { + "appid": 2770340, + "normalized_name": "天呐!我该怎么选?" + }, + { + "appid": 2770370, + "normalized_name": "sushi shot" + }, + { + "appid": 2770410, + "normalized_name": "spiritscape" + }, + { + "appid": 2770420, + "normalized_name": "the deepwater witch" + }, + { + "appid": 2770430, + "normalized_name": "monkeyking chaos vr" + }, + { + "appid": 2770460, + "normalized_name": "lunavania" + }, + { + "appid": 2770470, + "normalized_name": "悟道(体验版)" + }, + { + "appid": 2770500, + "normalized_name": "waving around" + }, + { + "appid": 2771180, + "normalized_name": "lucky farm" + }, + { + "appid": 2771190, + "normalized_name": "crystal nexus alien siege" + }, + { + "appid": 2771220, + "normalized_name": "the tragedy at deer creek" + }, + { + "appid": 2771260, + "normalized_name": "wishbound" + }, + { + "appid": 2771270, + "normalized_name": "the main post" + }, + { + "appid": 2771290, + "normalized_name": "叶碎 风暴前夕/fragmented leaves before the storm" + }, + { + "appid": 2771310, + "normalized_name": "cozycat simulator" + }, + { + "appid": 2771320, + "normalized_name": "the nom" + }, + { + "appid": 2771380, + "normalized_name": "奇妙大富翁(wonderful richman)" + }, + { + "appid": 2771500, + "normalized_name": "dungeon of stone" + }, + { + "appid": 2771550, + "normalized_name": "red silhouette" + }, + { + "appid": 2771560, + "normalized_name": "zeta wolf first bite" + }, + { + "appid": 2771590, + "normalized_name": "chick'n mushroom soup" + }, + { + "appid": 2771600, + "normalized_name": "maid survivors little angels" + }, + { + "appid": 2771630, + "normalized_name": "project c██████" + }, + { + "appid": 2771650, + "normalized_name": "spheric bombs" + }, + { + "appid": 2771670, + "normalized_name": "psychopomp" + }, + { + "appid": 2771710, + "normalized_name": "infinite chump" + }, + { + "appid": 2771730, + "normalized_name": "eclipse echo of dimension" + }, + { + "appid": 2771760, + "normalized_name": "異住 ~first escape~" + }, + { + "appid": 2771840, + "normalized_name": "squirrels gone nuts" + }, + { + "appid": 2771860, + "normalized_name": "save giant girl from monsters" + }, + { + "appid": 2771890, + "normalized_name": "desolar" + }, + { + "appid": 2771910, + "normalized_name": "panzerkampf" + }, + { + "appid": 2771920, + "normalized_name": "serega madness" + }, + { + "appid": 2771980, + "normalized_name": "tranquil builds" + }, + { + "appid": 2772020, + "normalized_name": "ranger force" + }, + { + "appid": 2772050, + "normalized_name": "thumbling" + }, + { + "appid": 2772080, + "normalized_name": "crystal breaker" + }, + { + "appid": 2772090, + "normalized_name": "punk juice" + }, + { + "appid": 2772120, + "normalized_name": "emin's journey" + }, + { + "appid": 2772160, + "normalized_name": "家族崛起模拟器(rise of the clans simulator)" + }, + { + "appid": 2772170, + "normalized_name": "brew besties" + }, + { + "appid": 2772180, + "normalized_name": "game changer zenith" + }, + { + "appid": 2772190, + "normalized_name": "kraken attack!" + }, + { + "appid": 2772260, + "normalized_name": "pavement pummel" + }, + { + "appid": 2772280, + "normalized_name": "the essence of luna" + }, + { + "appid": 2772300, + "normalized_name": "the eerie surroundings" + }, + { + "appid": 2772320, + "normalized_name": "animal parkour" + }, + { + "appid": 2772330, + "normalized_name": "goblington" + }, + { + "appid": 2772370, + "normalized_name": "alien bob" + }, + { + "appid": 2772380, + "normalized_name": "empty skull" + }, + { + "appid": 2772390, + "normalized_name": "my valentine is a femboy" + }, + { + "appid": 2772410, + "normalized_name": "my bestie is a femboy streamer" + }, + { + "appid": 2772420, + "normalized_name": "a futanari spat in my mouth!" + }, + { + "appid": 2772430, + "normalized_name": "looking for cats in a badly drawn city" + }, + { + "appid": 2772440, + "normalized_name": "秘湯ダンジョン" + }, + { + "appid": 2772460, + "normalized_name": "the femboy next door thinks i'm cute" + }, + { + "appid": 2772470, + "normalized_name": "i got straddled by a femboy" + }, + { + "appid": 2772480, + "normalized_name": "my cousin is a femboy" + }, + { + "appid": 2772490, + "normalized_name": "sanctity" + }, + { + "appid": 2772520, + "normalized_name": "the return of the king" + }, + { + "appid": 2772530, + "normalized_name": "星际客栈" + }, + { + "appid": 2772550, + "normalized_name": "civita" + }, + { + "appid": 2772560, + "normalized_name": "supermarket simulator prologue" + }, + { + "appid": 2772580, + "normalized_name": "realms of arcana" + }, + { + "appid": 2772590, + "normalized_name": "catlists" + }, + { + "appid": 2772600, + "normalized_name": "i got cucked by a futanari" + }, + { + "appid": 2772610, + "normalized_name": "area 51 beyond the wall" + }, + { + "appid": 2772620, + "normalized_name": "hypersomnia" + }, + { + "appid": 2772630, + "normalized_name": "i got sticky with a femboy" + }, + { + "appid": 2772640, + "normalized_name": "i became a femboy to date one" + }, + { + "appid": 2772650, + "normalized_name": "i got gooned by a femboy" + }, + { + "appid": 2772660, + "normalized_name": "i got blackmailed by a futanari!" + }, + { + "appid": 2772670, + "normalized_name": "i made a femboy squirt!" + }, + { + "appid": 2772700, + "normalized_name": "orbguard" + }, + { + "appid": 2772720, + "normalized_name": "veiled tales" + }, + { + "appid": 2772750, + "normalized_name": "age of history 3" + }, + { + "appid": 2772760, + "normalized_name": "find the backdoor" + }, + { + "appid": 2772810, + "normalized_name": "spartacus card game" + }, + { + "appid": 2772820, + "normalized_name": "buttknight" + }, + { + "appid": 2772830, + "normalized_name": "vespera_hotel" + }, + { + "appid": 2772870, + "normalized_name": "aqua fry" + }, + { + "appid": 2772890, + "normalized_name": "speglar" + }, + { + "appid": 2772900, + "normalized_name": "cipher monk" + }, + { + "appid": 2772920, + "normalized_name": "epic rogue" + }, + { + "appid": 2772940, + "normalized_name": "amadeus a riddle for thee ~ episode 1 ~ waltz" + }, + { + "appid": 2772970, + "normalized_name": "slime cores" + }, + { + "appid": 2772980, + "normalized_name": "super sunny world" + }, + { + "appid": 2772990, + "normalized_name": "ghost janitors" + }, + { + "appid": 2773000, + "normalized_name": "the goose tale" + }, + { + "appid": 2773010, + "normalized_name": "pam's fantastic adventures" + }, + { + "appid": 2773020, + "normalized_name": "joe mama" + }, + { + "appid": 2773070, + "normalized_name": "laser defense extreme" + }, + { + "appid": 2773120, + "normalized_name": "lesbiants our new morphology" + }, + { + "appid": 2773160, + "normalized_name": "magic caster" + }, + { + "appid": 2773220, + "normalized_name": "dungeon walk2-混沌の神々-" + }, + { + "appid": 2773230, + "normalized_name": "18层 忘忧 18hell lost" + }, + { + "appid": 2773250, + "normalized_name": "mailrabit" + }, + { + "appid": 2773270, + "normalized_name": "玩具帝国 toy empires" + }, + { + "appid": 2773280, + "normalized_name": "aneurism iv" + }, + { + "appid": 2773290, + "normalized_name": "诗灵" + }, + { + "appid": 2773350, + "normalized_name": "factory business management" + }, + { + "appid": 2773430, + "normalized_name": "sip'it" + }, + { + "appid": 2773450, + "normalized_name": "the legend of sebb linus" + }, + { + "appid": 2773460, + "normalized_name": "eye see fun" + }, + { + "appid": 2773520, + "normalized_name": "完美恋人~fragile love" + }, + { + "appid": 2773540, + "normalized_name": "slime fire and soul" + }, + { + "appid": 2773550, + "normalized_name": "goblin quest completed" + }, + { + "appid": 2773560, + "normalized_name": "am" + }, + { + "appid": 2773570, + "normalized_name": "sex motel" + }, + { + "appid": 2773590, + "normalized_name": "rockit!" + }, + { + "appid": 2773600, + "normalized_name": "picnic peril" + }, + { + "appid": 2773630, + "normalized_name": "iron hunters" + }, + { + "appid": 2773640, + "normalized_name": "99 waves" + }, + { + "appid": 2773650, + "normalized_name": "neon digital" + }, + { + "appid": 2773680, + "normalized_name": "perished world merchant ex" + }, + { + "appid": 2773700, + "normalized_name": "siege 'n sow" + }, + { + "appid": 2773710, + "normalized_name": "spellarium 2" + }, + { + "appid": 2773720, + "normalized_name": "mythical party" + }, + { + "appid": 2773760, + "normalized_name": "tv beast" + }, + { + "appid": 2773780, + "normalized_name": "timeray" + }, + { + "appid": 2773790, + "normalized_name": "aqua mundo" + }, + { + "appid": 2773830, + "normalized_name": "top web search 23" + }, + { + "appid": 2773850, + "normalized_name": "the incredible adventures of josh and connor the pre prologue" + }, + { + "appid": 2773870, + "normalized_name": "freakhunter" + }, + { + "appid": 2773890, + "normalized_name": "gravity dash" + }, + { + "appid": 2773910, + "normalized_name": "dinoescape in the time!" + }, + { + "appid": 2773930, + "normalized_name": "心霊旅館" + }, + { + "appid": 2774040, + "normalized_name": "the boss gangsters nightlife" + }, + { + "appid": 2774050, + "normalized_name": "rabbit and turtle" + }, + { + "appid": 2774130, + "normalized_name": "plagueborn" + }, + { + "appid": 2774150, + "normalized_name": "黑石" + }, + { + "appid": 2774180, + "normalized_name": "hidden cats in old city block" + }, + { + "appid": 2774190, + "normalized_name": "总裁你想和谁谈恋爱" + }, + { + "appid": 2774240, + "normalized_name": "instruction" + }, + { + "appid": 2774250, + "normalized_name": "니르바나 nirvana" + }, + { + "appid": 2774280, + "normalized_name": "legumi" + }, + { + "appid": 2774300, + "normalized_name": "blockarena" + }, + { + "appid": 2774370, + "normalized_name": "星烬 烛耀山海" + }, + { + "appid": 2774380, + "normalized_name": "hospital 666" + }, + { + "appid": 2774390, + "normalized_name": "侠落:百花杀尽" + }, + { + "appid": 2774400, + "normalized_name": "grand canyon" + }, + { + "appid": 2774410, + "normalized_name": "escape from zeta aurigae" + }, + { + "appid": 2774460, + "normalized_name": "roots of fury" + }, + { + "appid": 2774480, + "normalized_name": "tenno" + }, + { + "appid": 2774490, + "normalized_name": "梦境多人生存挑战" + }, + { + "appid": 2774540, + "normalized_name": "g.o.p.o.t.a 2" + }, + { + "appid": 2774560, + "normalized_name": "foulbreaker" + }, + { + "appid": 2774570, + "normalized_name": "beasties' shelter" + }, + { + "appid": 2774580, + "normalized_name": "vikings sex and blood" + }, + { + "appid": 2774620, + "normalized_name": "独闯江湖 lone ranger" + }, + { + "appid": 2774650, + "normalized_name": "manahex" + }, + { + "appid": 2774690, + "normalized_name": "littlemousehero" + }, + { + "appid": 2774710, + "normalized_name": "heroes of the citadel" + }, + { + "appid": 2774720, + "normalized_name": "welcome to the backrooms" + }, + { + "appid": 2774730, + "normalized_name": "while evil reigns" + }, + { + "appid": 2774760, + "normalized_name": "plague doctor" + }, + { + "appid": 2774780, + "normalized_name": "blossom" + }, + { + "appid": 2774800, + "normalized_name": "fallnation lost stories" + }, + { + "appid": 2774830, + "normalized_name": "seven lovers in the house" + }, + { + "appid": 2774940, + "normalized_name": "onyx" + }, + { + "appid": 2774950, + "normalized_name": "幻日" + }, + { + "appid": 2774980, + "normalized_name": "仙途世界" + }, + { + "appid": 2774990, + "normalized_name": "catnip dreams" + }, + { + "appid": 2775030, + "normalized_name": "the rise" + }, + { + "appid": 2775040, + "normalized_name": "sokofarm" + }, + { + "appid": 2775050, + "normalized_name": "criminal attraction" + }, + { + "appid": 2775060, + "normalized_name": "nephew's vendetta" + }, + { + "appid": 2775100, + "normalized_name": "ancings the first tournament" + }, + { + "appid": 2775110, + "normalized_name": "roommates" + }, + { + "appid": 2775130, + "normalized_name": "missman" + }, + { + "appid": 2775160, + "normalized_name": "noah's dilemma" + }, + { + "appid": 2775170, + "normalized_name": "just plumbers in hallowville" + }, + { + "appid": 2775180, + "normalized_name": "101 cats hidden" + }, + { + "appid": 2775200, + "normalized_name": "vermilion arcade horror collection" + }, + { + "appid": 2775220, + "normalized_name": "inside the machine" + }, + { + "appid": 2775230, + "normalized_name": "happy animal choir" + }, + { + "appid": 2775310, + "normalized_name": "失踪 タケシ、お前の言う通りだった。あの廃村はヤバすぎる。" + }, + { + "appid": 2775370, + "normalized_name": "disillusion st" + }, + { + "appid": 2775430, + "normalized_name": "catmelon suika game" + }, + { + "appid": 2775460, + "normalized_name": "heroes of esoria" + }, + { + "appid": 2775470, + "normalized_name": "project soulflow" + }, + { + "appid": 2775480, + "normalized_name": "nose" + }, + { + "appid": 2775500, + "normalized_name": "soviet soldier" + }, + { + "appid": 2775510, + "normalized_name": "checkers twist" + }, + { + "appid": 2775520, + "normalized_name": "autobrawl one world one winner" + }, + { + "appid": 2775550, + "normalized_name": "astrodelia" + }, + { + "appid": 2775560, + "normalized_name": "chess twist" + }, + { + "appid": 2775570, + "normalized_name": "viscera" + }, + { + "appid": 2775580, + "normalized_name": "spellarium 3" + }, + { + "appid": 2775610, + "normalized_name": "phyto" + }, + { + "appid": 2775670, + "normalized_name": "toadally dreadful" + }, + { + "appid": 2775690, + "normalized_name": "don't forget" + }, + { + "appid": 2775830, + "normalized_name": "100 pirate cats" + }, + { + "appid": 2775870, + "normalized_name": "stalked in solitude" + }, + { + "appid": 2775880, + "normalized_name": "desert witch" + }, + { + "appid": 2775890, + "normalized_name": "galactic vanguard" + }, + { + "appid": 2775910, + "normalized_name": "infinite blue" + }, + { + "appid": 2775930, + "normalized_name": "project redsun" + }, + { + "appid": 2775970, + "normalized_name": "moai" + }, + { + "appid": 2776030, + "normalized_name": "prostitute pimp" + }, + { + "appid": 2776050, + "normalized_name": "careful gardeners" + }, + { + "appid": 2776090, + "normalized_name": "lay of the land" + }, + { + "appid": 2776110, + "normalized_name": "bedroom battlegrounds" + }, + { + "appid": 2776130, + "normalized_name": "wijita city of makers" + }, + { + "appid": 2776180, + "normalized_name": "doodle harmony ghosts" + }, + { + "appid": 2776190, + "normalized_name": "crowd control vr" + }, + { + "appid": 2776230, + "normalized_name": "skyward dream" + }, + { + "appid": 2776240, + "normalized_name": "さーきゅらーディフェンス!!~とある辺境惑星開拓事務所、30日の記録~" + }, + { + "appid": 2776280, + "normalized_name": "goblin" + }, + { + "appid": 2776290, + "normalized_name": "唱舞全明星" + }, + { + "appid": 2776300, + "normalized_name": "koob dog" + }, + { + "appid": 2776340, + "normalized_name": "code alpha the final frontier" + }, + { + "appid": 2776360, + "normalized_name": "luz mala" + }, + { + "appid": 2776400, + "normalized_name": "战斗录像footage of the battle" + }, + { + "appid": 2776440, + "normalized_name": "sliced" + }, + { + "appid": 2776450, + "normalized_name": "诸天刷宝录" + }, + { + "appid": 2776480, + "normalized_name": "zombay" + }, + { + "appid": 2776500, + "normalized_name": "time treker" + }, + { + "appid": 2776530, + "normalized_name": "小坂さん。 remaster" + }, + { + "appid": 2776540, + "normalized_name": "opaldune" + }, + { + "appid": 2776550, + "normalized_name": "sirkwitz" + }, + { + "appid": 2776560, + "normalized_name": "spellbound fps" + }, + { + "appid": 2776570, + "normalized_name": "cats hidden in germany" + }, + { + "appid": 2776600, + "normalized_name": "the apocalypse sacrifice" + }, + { + "appid": 2776630, + "normalized_name": "skillwood" + }, + { + "appid": 2776640, + "normalized_name": "three kingdoms and martial arts and jianghu" + }, + { + "appid": 2776670, + "normalized_name": "atchmo" + }, + { + "appid": 2776720, + "normalized_name": "dream runner" + }, + { + "appid": 2776730, + "normalized_name": "anno dominis" + }, + { + "appid": 2776750, + "normalized_name": "days with ollie" + }, + { + "appid": 2776770, + "normalized_name": "blocks for babies" + }, + { + "appid": 2776780, + "normalized_name": "blood bar tycoon" + }, + { + "appid": 2776790, + "normalized_name": "dr. planet" + }, + { + "appid": 2776800, + "normalized_name": "silent cause" + }, + { + "appid": 2776810, + "normalized_name": "100 ninja cats" + }, + { + "appid": 2776820, + "normalized_name": "washed upon a murder" + }, + { + "appid": 2776860, + "normalized_name": "let's patiti!" + }, + { + "appid": 2776900, + "normalized_name": "陰の実力者になりたくて!マスターオブガーデン" + }, + { + "appid": 2776910, + "normalized_name": "100 paris cats" + }, + { + "appid": 2776920, + "normalized_name": "flying ferret" + }, + { + "appid": 2776930, + "normalized_name": "can't stand the heat" + }, + { + "appid": 2776940, + "normalized_name": "义闻录:轮回" + }, + { + "appid": 2776950, + "normalized_name": "don't face up" + }, + { + "appid": 2776980, + "normalized_name": "breath" + }, + { + "appid": 2776990, + "normalized_name": "unsolved case killer popularity collector's" + }, + { + "appid": 2777000, + "normalized_name": "excelios" + }, + { + "appid": 2777030, + "normalized_name": "in the shadows" + }, + { + "appid": 2777070, + "normalized_name": "medieval questionnaire" + }, + { + "appid": 2777110, + "normalized_name": "river attack" + }, + { + "appid": 2777120, + "normalized_name": "invade" + }, + { + "appid": 2777130, + "normalized_name": "hentai sport" + }, + { + "appid": 2777190, + "normalized_name": "hoversteppers zone 1" + }, + { + "appid": 2777210, + "normalized_name": "man of steal (nymphs)" + }, + { + "appid": 2777220, + "normalized_name": "human fall flat vr" + }, + { + "appid": 2777230, + "normalized_name": "alaa mogus must die" + }, + { + "appid": 2777240, + "normalized_name": "gameartopia" + }, + { + "appid": 2777260, + "normalized_name": "wonder waifu ero hero ntr" + }, + { + "appid": 2777310, + "normalized_name": "quasis the last eclipse" + }, + { + "appid": 2777330, + "normalized_name": "phantom dash" + }, + { + "appid": 2777360, + "normalized_name": "trainer eyes" + }, + { + "appid": 2777390, + "normalized_name": "store simulator" + }, + { + "appid": 2777410, + "normalized_name": "guyzgamez a nightmare on guygamez street the cursed forest of doom" + }, + { + "appid": 2777430, + "normalized_name": "the wedding" + }, + { + "appid": 2777550, + "normalized_name": "gods against machines prologue" + }, + { + "appid": 2777560, + "normalized_name": "the trolley paradox" + }, + { + "appid": 2777610, + "normalized_name": "escape from amexs 137" + }, + { + "appid": 2777630, + "normalized_name": "echoes of the backrooms" + }, + { + "appid": 2777640, + "normalized_name": "lecherous village" + }, + { + "appid": 2777660, + "normalized_name": "rc overdrive" + }, + { + "appid": 2777670, + "normalized_name": "color hunt number jigsaw puzzle" + }, + { + "appid": 2777680, + "normalized_name": "untimely hidden patara" + }, + { + "appid": 2777720, + "normalized_name": "dr3amy" + }, + { + "appid": 2777730, + "normalized_name": "fishing universe" + }, + { + "appid": 2777740, + "normalized_name": "mouthole" + }, + { + "appid": 2777760, + "normalized_name": "toastercide" + }, + { + "appid": 2777780, + "normalized_name": "sunray os" + }, + { + "appid": 2777820, + "normalized_name": "otoko orgy at maid boy manor" + }, + { + "appid": 2777860, + "normalized_name": "mowed" + }, + { + "appid": 2777880, + "normalized_name": "block hopper" + }, + { + "appid": 2777930, + "normalized_name": "hexseeker" + }, + { + "appid": 2777950, + "normalized_name": "amo" + }, + { + "appid": 2777970, + "normalized_name": "stranger things vr" + }, + { + "appid": 2777980, + "normalized_name": "cast or pass" + }, + { + "appid": 2778080, + "normalized_name": "the bathrooms" + }, + { + "appid": 2778110, + "normalized_name": "project zeta" + }, + { + "appid": 2778120, + "normalized_name": "arctic outpost" + }, + { + "appid": 2778160, + "normalized_name": "猩红梦魇 the nightmare of scarlet tempest" + }, + { + "appid": 2778200, + "normalized_name": "lovecraft locker tentacle hell" + }, + { + "appid": 2778210, + "normalized_name": "moves of the diamond hand" + }, + { + "appid": 2778220, + "normalized_name": "palm sugar a village story" + }, + { + "appid": 2778230, + "normalized_name": "labyrinthian lockdown" + }, + { + "appid": 2778250, + "normalized_name": "solace inc." + }, + { + "appid": 2778280, + "normalized_name": "deskpet" + }, + { + "appid": 2778290, + "normalized_name": "llamarpg farm to fable" + }, + { + "appid": 2778300, + "normalized_name": "memory of courage 勇气的记忆" + }, + { + "appid": 2778320, + "normalized_name": "消失的妹妹(the vanished sister)" + }, + { + "appid": 2778360, + "normalized_name": "idle animalanatomy" + }, + { + "appid": 2778420, + "normalized_name": "pet shop simulator prologue" + }, + { + "appid": 2778430, + "normalized_name": "deconstruction simulator prologue" + }, + { + "appid": 2778440, + "normalized_name": "trainer eyes vr" + }, + { + "appid": 2778460, + "normalized_name": "lewd girls hentai puzzle" + }, + { + "appid": 2778480, + "normalized_name": "the rubberhose forest" + }, + { + "appid": 2778500, + "normalized_name": "kitty's last adventure" + }, + { + "appid": 2778520, + "normalized_name": "fabricrate" + }, + { + "appid": 2778530, + "normalized_name": "battle echoes" + }, + { + "appid": 2778540, + "normalized_name": "勇者救魔神—阿奎拉尼大陆战记" + }, + { + "appid": 2778560, + "normalized_name": "对我好点!异世界hellonewworld" + }, + { + "appid": 2778570, + "normalized_name": "lost hope" + }, + { + "appid": 2778600, + "normalized_name": "flash of the blade x" + }, + { + "appid": 2778610, + "normalized_name": "over the top wwi" + }, + { + "appid": 2778630, + "normalized_name": "pinballtoon" + }, + { + "appid": 2778640, + "normalized_name": "holo bike 3d" + }, + { + "appid": 2778660, + "normalized_name": "塞图格莉娜号sertorgina" + }, + { + "appid": 2778690, + "normalized_name": "challenger's odyssey" + }, + { + "appid": 2778710, + "normalized_name": "time traveler escape room vr" + }, + { + "appid": 2778730, + "normalized_name": "夏之幻形" + }, + { + "appid": 2778740, + "normalized_name": "rock climbing" + }, + { + "appid": 2778750, + "normalized_name": "governor of the west" + }, + { + "appid": 2778760, + "normalized_name": "neoproxima" + }, + { + "appid": 2778770, + "normalized_name": "zombie woods" + }, + { + "appid": 2778780, + "normalized_name": "verbal verdict" + }, + { + "appid": 2778790, + "normalized_name": "zero to death" + }, + { + "appid": 2778840, + "normalized_name": "dustmen" + }, + { + "appid": 2778850, + "normalized_name": "one iced latte with your breast milk please! ☕" + }, + { + "appid": 2778880, + "normalized_name": "hospital of the undead" + }, + { + "appid": 2778900, + "normalized_name": "the gravity trickster" + }, + { + "appid": 2778920, + "normalized_name": "macho mick" + }, + { + "appid": 2778960, + "normalized_name": "tank vs. aliens" + }, + { + "appid": 2778980, + "normalized_name": "goat scourge" + }, + { + "appid": 2779010, + "normalized_name": "war job" + }, + { + "appid": 2779020, + "normalized_name": "sire" + }, + { + "appid": 2779040, + "normalized_name": "猫様の古民家からの脱出" + }, + { + "appid": 2779120, + "normalized_name": "modulus" + }, + { + "appid": 2779130, + "normalized_name": "激战王城 三国" + }, + { + "appid": 2779150, + "normalized_name": "continuum" + }, + { + "appid": 2779160, + "normalized_name": "oracle of meles" + }, + { + "appid": 2779180, + "normalized_name": "crystals" + }, + { + "appid": 2779220, + "normalized_name": "guano" + }, + { + "appid": 2779230, + "normalized_name": "zarathustra cybergeddon" + }, + { + "appid": 2779280, + "normalized_name": "chromatic memories" + }, + { + "appid": 2779290, + "normalized_name": "gone camping!" + }, + { + "appid": 2779310, + "normalized_name": "stones keeper ii chaos lord" + }, + { + "appid": 2779380, + "normalized_name": "enemy inside" + }, + { + "appid": 2779390, + "normalized_name": "bolt'n'punch" + }, + { + "appid": 2779400, + "normalized_name": "intown nightmares" + }, + { + "appid": 2779420, + "normalized_name": "neon blitz" + }, + { + "appid": 2779440, + "normalized_name": "hotdog runner" + }, + { + "appid": 2779460, + "normalized_name": "meet my teacher" + }, + { + "appid": 2779520, + "normalized_name": "roshamboss" + }, + { + "appid": 2779530, + "normalized_name": "gun gladiator" + }, + { + "appid": 2779540, + "normalized_name": "beyond the vale" + }, + { + "appid": 2779560, + "normalized_name": "luxcustos" + }, + { + "appid": 2779570, + "normalized_name": "archons" + }, + { + "appid": 2779580, + "normalized_name": "zerra's adventure" + }, + { + "appid": 2779600, + "normalized_name": "splinterra" + }, + { + "appid": 2779680, + "normalized_name": "stories to tell [alpha 1] run away" + }, + { + "appid": 2779710, + "normalized_name": "dot hop" + }, + { + "appid": 2779730, + "normalized_name": "shoomer booter" + }, + { + "appid": 2779740, + "normalized_name": "head chef" + }, + { + "appid": 2779800, + "normalized_name": "rite of eris" + }, + { + "appid": 2779850, + "normalized_name": "lukewarm massacre the killer who may or may not be a moron." + }, + { + "appid": 2779890, + "normalized_name": "明治東亰恋伽 full moon" + }, + { + "appid": 2779900, + "normalized_name": "erentis l'académie de magie" + }, + { + "appid": 2779910, + "normalized_name": "古書店街の橋姫 々満天" + }, + { + "appid": 2779930, + "normalized_name": "demons and doobins" + }, + { + "appid": 2779980, + "normalized_name": "tobby the dog" + }, + { + "appid": 2780040, + "normalized_name": "キメキャワ♥限界ビートちゃん!!" + }, + { + "appid": 2780080, + "normalized_name": "screen trpg" + }, + { + "appid": 2780090, + "normalized_name": "青春模拟器" + }, + { + "appid": 2780100, + "normalized_name": "brave hero puzzle dungeon card" + }, + { + "appid": 2780120, + "normalized_name": "dind" + }, + { + "appid": 2780140, + "normalized_name": "sauna of the dead" + }, + { + "appid": 2780200, + "normalized_name": "地下楼" + }, + { + "appid": 2780230, + "normalized_name": "ピギーワン super spark" + }, + { + "appid": 2780270, + "normalized_name": "dead end exit 8" + }, + { + "appid": 2780280, + "normalized_name": "spirit summoner" + }, + { + "appid": 2780310, + "normalized_name": "silicon war blitz" + }, + { + "appid": 2780360, + "normalized_name": "college sex episode 7" + }, + { + "appid": 2780370, + "normalized_name": "sex simulator naughty trainer" + }, + { + "appid": 2780380, + "normalized_name": "搾精錬金工房イリス~錬金術師と勇者と竜騎士と女神さまのえっちな冒険~" + }, + { + "appid": 2780390, + "normalized_name": "狂愛イノセンス the broken platonic" + }, + { + "appid": 2780400, + "normalized_name": "ghosthunt with triggered insaan" + }, + { + "appid": 2780410, + "normalized_name": "starsaway" + }, + { + "appid": 2780470, + "normalized_name": "bunker invaders" + }, + { + "appid": 2780480, + "normalized_name": "dear edmund" + }, + { + "appid": 2780590, + "normalized_name": "デジプラコレクション まるごと鉄道!ミニ ~jr九州編~" + }, + { + "appid": 2780610, + "normalized_name": "unholy village" + }, + { + "appid": 2780640, + "normalized_name": "the cyber masquerade" + }, + { + "appid": 2780650, + "normalized_name": "adaptive hero" + }, + { + "appid": 2780660, + "normalized_name": "mr 333 ii planetbirth" + }, + { + "appid": 2780710, + "normalized_name": "asgard's fall — viking survivors" + }, + { + "appid": 2780740, + "normalized_name": "mutant boxing league vr" + }, + { + "appid": 2780760, + "normalized_name": "survive in strange world" + }, + { + "appid": 2780790, + "normalized_name": "dubio" + }, + { + "appid": 2780880, + "normalized_name": "bunny girl with golden tummy" + }, + { + "appid": 2780910, + "normalized_name": "the last knight" + }, + { + "appid": 2780930, + "normalized_name": "paper dash city hustle" + }, + { + "appid": 2780940, + "normalized_name": "paper dash invasion of greed" + }, + { + "appid": 2780950, + "normalized_name": "paper dash las vegas" + }, + { + "appid": 2780980, + "normalized_name": "lockdown protocol" + }, + { + "appid": 2780990, + "normalized_name": "paradigm island" + }, + { + "appid": 2781000, + "normalized_name": "春に生きれば" + }, + { + "appid": 2781010, + "normalized_name": "tug of war" + }, + { + "appid": 2781020, + "normalized_name": "small living world" + }, + { + "appid": 2781050, + "normalized_name": "cogmo" + }, + { + "appid": 2781170, + "normalized_name": "harmoni" + }, + { + "appid": 2781190, + "normalized_name": "衔尾:龙之铃 序章" + }, + { + "appid": 2781210, + "normalized_name": "cat & onion" + }, + { + "appid": 2781220, + "normalized_name": "slimexplosion" + }, + { + "appid": 2781240, + "normalized_name": "a million murder mysteries" + }, + { + "appid": 2781250, + "normalized_name": "lyndaria lust adventure" + }, + { + "appid": 2781280, + "normalized_name": "espionage" + }, + { + "appid": 2781310, + "normalized_name": "pieces i a maskros nebula game" + }, + { + "appid": 2781340, + "normalized_name": "夜明けの影法師" + }, + { + "appid": 2781370, + "normalized_name": "exit kun" + }, + { + "appid": 2781400, + "normalized_name": "dawn of gray" + }, + { + "appid": 2781420, + "normalized_name": "surradia an art retrospective" + }, + { + "appid": 2781430, + "normalized_name": "元祖 落とし寿司 めびうす" + }, + { + "appid": 2781490, + "normalized_name": "that way!" + }, + { + "appid": 2781500, + "normalized_name": "windah horror adventure 2" + }, + { + "appid": 2781510, + "normalized_name": "sex simulator roman emperor" + }, + { + "appid": 2781520, + "normalized_name": "orientir" + }, + { + "appid": 2781630, + "normalized_name": "warriors waifus mahjong" + }, + { + "appid": 2781660, + "normalized_name": "dawn of defense" + }, + { + "appid": 2781670, + "normalized_name": "mix it!" + }, + { + "appid": 2781680, + "normalized_name": "the stickman" + }, + { + "appid": 2781720, + "normalized_name": "demoniac tv" + }, + { + "appid": 2781730, + "normalized_name": "tank tyranny" + }, + { + "appid": 2781740, + "normalized_name": "cow life sim rpg" + }, + { + "appid": 2781750, + "normalized_name": "sisters last day of summer" + }, + { + "appid": 2781910, + "normalized_name": "bellumentum" + }, + { + "appid": 2781960, + "normalized_name": "melon madness" + }, + { + "appid": 2781990, + "normalized_name": "hell on earth" + }, + { + "appid": 2782010, + "normalized_name": "daydreamer" + }, + { + "appid": 2782020, + "normalized_name": "wattgames" + }, + { + "appid": 2782030, + "normalized_name": "knights of conquest feudal shenanigans galore" + }, + { + "appid": 2782060, + "normalized_name": "santas christmas escape vr" + }, + { + "appid": 2782090, + "normalized_name": "inevitable light" + }, + { + "appid": 2782100, + "normalized_name": "the hunter cursed by night" + }, + { + "appid": 2782250, + "normalized_name": "force and motion" + }, + { + "appid": 2782260, + "normalized_name": "heroes of the seasons" + }, + { + "appid": 2782270, + "normalized_name": "lockjaw robo royale" + }, + { + "appid": 2782280, + "normalized_name": "末日美女避难所" + }, + { + "appid": 2782290, + "normalized_name": "stratagem" + }, + { + "appid": 2782310, + "normalized_name": "one barbarian futa tribe chapter 1 violet" + }, + { + "appid": 2782340, + "normalized_name": "chakana gold of the gods" + }, + { + "appid": 2782380, + "normalized_name": "100 cats new york" + }, + { + "appid": 2782390, + "normalized_name": "mangoji" + }, + { + "appid": 2782400, + "normalized_name": "papercut art gallery nature" + }, + { + "appid": 2782420, + "normalized_name": "minimal escape" + }, + { + "appid": 2782430, + "normalized_name": "crazy module" + }, + { + "appid": 2782460, + "normalized_name": "tale of the seas" + }, + { + "appid": 2782470, + "normalized_name": "pharos light" + }, + { + "appid": 2782480, + "normalized_name": "stars of prey vr" + }, + { + "appid": 2782490, + "normalized_name": "teared" + }, + { + "appid": 2782510, + "normalized_name": "aratamakami" + }, + { + "appid": 2782520, + "normalized_name": "reshape" + }, + { + "appid": 2782530, + "normalized_name": "shrimp.io" + }, + { + "appid": 2782540, + "normalized_name": "rogue citadel" + }, + { + "appid": 2782580, + "normalized_name": "war lords 战争领主" + }, + { + "appid": 2782600, + "normalized_name": "poorzzle puzzle alive" + }, + { + "appid": 2782610, + "normalized_name": "bad 2 bad apocalypse" + }, + { + "appid": 2782620, + "normalized_name": "rekesh gaal" + }, + { + "appid": 2782640, + "normalized_name": "dreadshot" + }, + { + "appid": 2782650, + "normalized_name": "machine runaway" + }, + { + "appid": 2782700, + "normalized_name": "kindred vale" + }, + { + "appid": 2782730, + "normalized_name": "日本史年号グリッド" + }, + { + "appid": 2782740, + "normalized_name": "色あせの果てに" + }, + { + "appid": 2782820, + "normalized_name": "sneak out" + }, + { + "appid": 2782830, + "normalized_name": "the lost glitches" + }, + { + "appid": 2782880, + "normalized_name": "sword of the necromancer resurrection" + }, + { + "appid": 2782900, + "normalized_name": "reincarnation tower" + }, + { + "appid": 2782910, + "normalized_name": "endless faith" + }, + { + "appid": 2782960, + "normalized_name": "crossings" + }, + { + "appid": 2782990, + "normalized_name": "find him" + }, + { + "appid": 2783100, + "normalized_name": "blade's burden" + }, + { + "appid": 2783150, + "normalized_name": "stardustry" + }, + { + "appid": 2783170, + "normalized_name": "mysterious prophecy" + }, + { + "appid": 2783190, + "normalized_name": "holyzone" + }, + { + "appid": 2783270, + "normalized_name": "combasters" + }, + { + "appid": 2783280, + "normalized_name": "cat secretary" + }, + { + "appid": 2783290, + "normalized_name": "floops big house adventure" + }, + { + "appid": 2783370, + "normalized_name": "teeto" + }, + { + "appid": 2783380, + "normalized_name": "rerise" + }, + { + "appid": 2783400, + "normalized_name": "demon lord reincarnation gaiden" + }, + { + "appid": 2783460, + "normalized_name": "grid warriors battles" + }, + { + "appid": 2783520, + "normalized_name": "night run" + }, + { + "appid": 2783550, + "normalized_name": "greatest dungeon" + }, + { + "appid": 2783560, + "normalized_name": "e girl roommate" + }, + { + "appid": 2783600, + "normalized_name": "bubble milf" + }, + { + "appid": 2783610, + "normalized_name": "malignant survivors" + }, + { + "appid": 2783630, + "normalized_name": "anime studio saga" + }, + { + "appid": 2783640, + "normalized_name": "copz n zombies" + }, + { + "appid": 2783670, + "normalized_name": "roshpit champions 2" + }, + { + "appid": 2783700, + "normalized_name": "ephemeral descent" + }, + { + "appid": 2783710, + "normalized_name": "diary of a stoner" + }, + { + "appid": 2783800, + "normalized_name": "interwoven" + }, + { + "appid": 2783830, + "normalized_name": "cozy crest" + }, + { + "appid": 2783850, + "normalized_name": "superation" + }, + { + "appid": 2783860, + "normalized_name": "rogue dimensions" + }, + { + "appid": 2783870, + "normalized_name": "嘶哈" + }, + { + "appid": 2783880, + "normalized_name": "hentai tales licentious town azaria" + }, + { + "appid": 2783920, + "normalized_name": "white cat town mystery" + }, + { + "appid": 2783950, + "normalized_name": "scrap metal heroes rebuilt" + }, + { + "appid": 2783970, + "normalized_name": "black stone" + }, + { + "appid": 2783980, + "normalized_name": "ghost legend" + }, + { + "appid": 2783990, + "normalized_name": "the dark story" + }, + { + "appid": 2784000, + "normalized_name": "herbal hunter" + }, + { + "appid": 2784010, + "normalized_name": "the rookery way" + }, + { + "appid": 2784030, + "normalized_name": "fire and rescue" + }, + { + "appid": 2784040, + "normalized_name": "星界远航 stellar realm voyage" + }, + { + "appid": 2784080, + "normalized_name": "zeitz machz √rhapsody" + }, + { + "appid": 2784130, + "normalized_name": "project carrot" + }, + { + "appid": 2784140, + "normalized_name": "100 cats london" + }, + { + "appid": 2784150, + "normalized_name": "the last rose" + }, + { + "appid": 2784160, + "normalized_name": "being john" + }, + { + "appid": 2784210, + "normalized_name": "100 cats greece" + }, + { + "appid": 2784220, + "normalized_name": "legend of love" + }, + { + "appid": 2784230, + "normalized_name": "mischievous" + }, + { + "appid": 2784240, + "normalized_name": "road of death" + }, + { + "appid": 2784250, + "normalized_name": "100 cats mexico" + }, + { + "appid": 2784260, + "normalized_name": "desktop zoo" + }, + { + "appid": 2784280, + "normalized_name": "100 cats pakistan" + }, + { + "appid": 2784290, + "normalized_name": "night vigil" + }, + { + "appid": 2784310, + "normalized_name": "the summoner's sky" + }, + { + "appid": 2784330, + "normalized_name": "edyn" + }, + { + "appid": 2784360, + "normalized_name": "机械之围mechanical besiege" + }, + { + "appid": 2784430, + "normalized_name": "messorem" + }, + { + "appid": 2784440, + "normalized_name": "storage looter" + }, + { + "appid": 2784470, + "normalized_name": "9 kings" + }, + { + "appid": 2784510, + "normalized_name": "fragmented memories escape room" + }, + { + "appid": 2784520, + "normalized_name": "100 cats argentina" + }, + { + "appid": 2784540, + "normalized_name": "100 kills challenge origins" + }, + { + "appid": 2784550, + "normalized_name": "buck swash and the idol of tak'mahud" + }, + { + "appid": 2784590, + "normalized_name": "marmargee fighter girl vs. zombies & monsters!" + }, + { + "appid": 2784600, + "normalized_name": "最終試問 | escape from the test" + }, + { + "appid": 2784610, + "normalized_name": "the green room experiment (episode 3)" + }, + { + "appid": 2784620, + "normalized_name": "rogue flight" + }, + { + "appid": 2784640, + "normalized_name": "homenaut" + }, + { + "appid": 2784660, + "normalized_name": "snow cone serenade" + }, + { + "appid": 2784680, + "normalized_name": "dark energy" + }, + { + "appid": 2784700, + "normalized_name": "cafe rosa" + }, + { + "appid": 2784710, + "normalized_name": "ilíada espacial 2" + }, + { + "appid": 2784760, + "normalized_name": "wave weaver" + }, + { + "appid": 2784770, + "normalized_name": "underpowered night spooks" + }, + { + "appid": 2784780, + "normalized_name": "hop'n & bop'n" + }, + { + "appid": 2784840, + "normalized_name": "egg" + }, + { + "appid": 2784850, + "normalized_name": "is it different or not?" + }, + { + "appid": 2784910, + "normalized_name": "amulet" + }, + { + "appid": 2784920, + "normalized_name": "infinity knights xross" + }, + { + "appid": 2784940, + "normalized_name": "love criminals" + }, + { + "appid": 2784960, + "normalized_name": "avian enigma" + }, + { + "appid": 2784970, + "normalized_name": "the contact" + }, + { + "appid": 2784980, + "normalized_name": "tangles تشابك" + }, + { + "appid": 2785010, + "normalized_name": "immortalis" + }, + { + "appid": 2785030, + "normalized_name": "simple mosaics nonogram puzzles" + }, + { + "appid": 2785040, + "normalized_name": "riverside gals/大乱闘リバーサイドギャルズ" + }, + { + "appid": 2785050, + "normalized_name": "tears of fish" + }, + { + "appid": 2785060, + "normalized_name": "world of dark" + }, + { + "appid": 2785070, + "normalized_name": "ani chess" + }, + { + "appid": 2785090, + "normalized_name": "mouse curser" + }, + { + "appid": 2785110, + "normalized_name": "evil holiday" + }, + { + "appid": 2785120, + "normalized_name": "the tortoise and the hare" + }, + { + "appid": 2785150, + "normalized_name": "爪印" + }, + { + "appid": 2785170, + "normalized_name": "butanooo! simulator" + }, + { + "appid": 2785180, + "normalized_name": "rain runner" + }, + { + "appid": 2785190, + "normalized_name": "mirror traveller" + }, + { + "appid": 2785200, + "normalized_name": "unknown tapes" + }, + { + "appid": 2785210, + "normalized_name": "hydropunk" + }, + { + "appid": 2785230, + "normalized_name": "guud dawg!" + }, + { + "appid": 2785280, + "normalized_name": "ruined nurse" + }, + { + "appid": 2785330, + "normalized_name": "6 sided stories" + }, + { + "appid": 2785350, + "normalized_name": "the maze project" + }, + { + "appid": 2785450, + "normalized_name": "cave of illusions twistyland" + }, + { + "appid": 2785470, + "normalized_name": "maritime mecha mystery" + }, + { + "appid": 2785480, + "normalized_name": "battle clash" + }, + { + "appid": 2785490, + "normalized_name": "soulivion ii" + }, + { + "appid": 2785500, + "normalized_name": "in the hell" + }, + { + "appid": 2785570, + "normalized_name": "arrogue" + }, + { + "appid": 2785600, + "normalized_name": "arcana dimension" + }, + { + "appid": 2785620, + "normalized_name": "backrooms #999999999" + }, + { + "appid": 2785690, + "normalized_name": "russian hut simulator" + }, + { + "appid": 2785710, + "normalized_name": "knight island" + }, + { + "appid": 2785730, + "normalized_name": "memorize" + }, + { + "appid": 2785740, + "normalized_name": "diesel knights" + }, + { + "appid": 2785750, + "normalized_name": "arrowstorm ascendant" + }, + { + "appid": 2785800, + "normalized_name": "wizzerd quest" + }, + { + "appid": 2785810, + "normalized_name": "road engineer" + }, + { + "appid": 2785850, + "normalized_name": "room 13" + }, + { + "appid": 2785860, + "normalized_name": "neon runners craft & dash" + }, + { + "appid": 2785880, + "normalized_name": "ninth hell" + }, + { + "appid": 2785890, + "normalized_name": "landoria" + }, + { + "appid": 2785900, + "normalized_name": "妄想大碰撞 fantasy clash" + }, + { + "appid": 2785920, + "normalized_name": "ảo mộng tru tiên gamota" + }, + { + "appid": 2785950, + "normalized_name": "adventure bar story" + }, + { + "appid": 2785970, + "normalized_name": "居家模拟器(home simulator)" + }, + { + "appid": 2785980, + "normalized_name": "my last appointment" + }, + { + "appid": 2786020, + "normalized_name": "vindefiant" + }, + { + "appid": 2786100, + "normalized_name": "皎月坠落之时" + }, + { + "appid": 2786120, + "normalized_name": "abyss" + }, + { + "appid": 2786130, + "normalized_name": "99 seconds" + }, + { + "appid": 2786140, + "normalized_name": "99 moves" + }, + { + "appid": 2786160, + "normalized_name": "骷髅大战" + }, + { + "appid": 2786240, + "normalized_name": "bond blues" + }, + { + "appid": 2786250, + "normalized_name": "ivri" + }, + { + "appid": 2786280, + "normalized_name": "洞天" + }, + { + "appid": 2786290, + "normalized_name": "kaia's ascent" + }, + { + "appid": 2786300, + "normalized_name": "乾坤盘" + }, + { + "appid": 2786310, + "normalized_name": "martyrdom" + }, + { + "appid": 2786320, + "normalized_name": "fawnrun" + }, + { + "appid": 2786360, + "normalized_name": "蘿莉racing" + }, + { + "appid": 2786380, + "normalized_name": "crystal conquest" + }, + { + "appid": 2786430, + "normalized_name": "entropy" + }, + { + "appid": 2786440, + "normalized_name": "eko and the bewitched lands" + }, + { + "appid": 2786450, + "normalized_name": "purrfectly hidden cats kittenrock" + }, + { + "appid": 2786490, + "normalized_name": "lowpoly towerdefense" + }, + { + "appid": 2786500, + "normalized_name": "relationship anarchy" + }, + { + "appid": 2786600, + "normalized_name": "knight of nevermore" + }, + { + "appid": 2786610, + "normalized_name": "きのこれくしょん" + }, + { + "appid": 2786650, + "normalized_name": "pieces of the past" + }, + { + "appid": 2786680, + "normalized_name": "美女,请别影响我学习" + }, + { + "appid": 2786700, + "normalized_name": "ヴィクトルズ・テスト・ナイト" + }, + { + "appid": 2786710, + "normalized_name": "zarya" + }, + { + "appid": 2786720, + "normalized_name": "rust song 锈歌" + }, + { + "appid": 2786760, + "normalized_name": "another door" + }, + { + "appid": 2786780, + "normalized_name": "lustful apartment" + }, + { + "appid": 2786810, + "normalized_name": "死亡汇报death report" + }, + { + "appid": 2786820, + "normalized_name": "gugong" + }, + { + "appid": 2786830, + "normalized_name": "epstein" + }, + { + "appid": 2786840, + "normalized_name": "the bridge to yesterday" + }, + { + "appid": 2786870, + "normalized_name": "ninjurate" + }, + { + "appid": 2786890, + "normalized_name": "perfect castle" + }, + { + "appid": 2786900, + "normalized_name": "spikerz!" + }, + { + "appid": 2786920, + "normalized_name": "ninja town" + }, + { + "appid": 2786960, + "normalized_name": "fruit slice by motion capture" + }, + { + "appid": 2786980, + "normalized_name": "crystal eyes" + }, + { + "appid": 2786990, + "normalized_name": "rama's quest" + }, + { + "appid": 2787000, + "normalized_name": "dark memories investigation" + }, + { + "appid": 2787010, + "normalized_name": "the legend of perchta" + }, + { + "appid": 2787020, + "normalized_name": "farm frontier" + }, + { + "appid": 2787050, + "normalized_name": "lights off director's cut" + }, + { + "appid": 2787060, + "normalized_name": "another hour another planet" + }, + { + "appid": 2787100, + "normalized_name": "viva veloce" + }, + { + "appid": 2787110, + "normalized_name": "backrooms 2005" + }, + { + "appid": 2787180, + "normalized_name": "wardens of chaos" + }, + { + "appid": 2787300, + "normalized_name": "sheryl ~the alchemist of the island ruins~" + }, + { + "appid": 2787320, + "normalized_name": "revenge of the savage planet" + }, + { + "appid": 2787340, + "normalized_name": "island rise" + }, + { + "appid": 2787350, + "normalized_name": "battle babes" + }, + { + "appid": 2787360, + "normalized_name": "into the depths" + }, + { + "appid": 2787370, + "normalized_name": "the waifu game" + }, + { + "appid": 2787580, + "normalized_name": "cat billiards" + }, + { + "appid": 2787590, + "normalized_name": "genopanic prologue" + }, + { + "appid": 2787610, + "normalized_name": "skyward extraction" + }, + { + "appid": 2787630, + "normalized_name": "the wrath of the goose king" + }, + { + "appid": 2787640, + "normalized_name": "spirulena interceptor" + }, + { + "appid": 2787670, + "normalized_name": "circular fever" + }, + { + "appid": 2787680, + "normalized_name": "candy rangers" + }, + { + "appid": 2787700, + "normalized_name": "kemono heroes" + }, + { + "appid": 2787710, + "normalized_name": "prune & milo" + }, + { + "appid": 2787720, + "normalized_name": "super rolling heroes deluxe" + }, + { + "appid": 2787730, + "normalized_name": "farhearth" + }, + { + "appid": 2787740, + "normalized_name": "gunstorm" + }, + { + "appid": 2787750, + "normalized_name": "backrooms liminal conflict" + }, + { + "appid": 2787770, + "normalized_name": "enso" + }, + { + "appid": 2787850, + "normalized_name": "runa" + }, + { + "appid": 2787860, + "normalized_name": "mythical whalers" + }, + { + "appid": 2787890, + "normalized_name": "let them breathe hello mother" + }, + { + "appid": 2787920, + "normalized_name": "quick quest" + }, + { + "appid": 2787960, + "normalized_name": "loop theory" + }, + { + "appid": 2787970, + "normalized_name": "unheroic misfits" + }, + { + "appid": 2788000, + "normalized_name": "broadside renegades" + }, + { + "appid": 2788010, + "normalized_name": "dojo city" + }, + { + "appid": 2788040, + "normalized_name": "another try 2" + }, + { + "appid": 2788060, + "normalized_name": "soulscape shadows of the past (episode 1)" + }, + { + "appid": 2788070, + "normalized_name": "passing into fantasy" + }, + { + "appid": 2788090, + "normalized_name": "hearts in orbit when stars align" + }, + { + "appid": 2788140, + "normalized_name": "ichorous moon" + }, + { + "appid": 2788150, + "normalized_name": "sakura succubus 9" + }, + { + "appid": 2788160, + "normalized_name": "sakura bunny girls 2" + }, + { + "appid": 2788200, + "normalized_name": "boink" + }, + { + "appid": 2788210, + "normalized_name": "deep state" + }, + { + "appid": 2788220, + "normalized_name": "the island" + }, + { + "appid": 2788310, + "normalized_name": "twilight survivors" + }, + { + "appid": 2788330, + "normalized_name": "ecogenesis" + }, + { + "appid": 2788340, + "normalized_name": "chatbbt" + }, + { + "appid": 2788360, + "normalized_name": "カルトに厳しいギャル cult vs gal" + }, + { + "appid": 2788380, + "normalized_name": "dump the corpse" + }, + { + "appid": 2788400, + "normalized_name": "endless loop" + }, + { + "appid": 2788430, + "normalized_name": "alchemy of the earth" + }, + { + "appid": 2788440, + "normalized_name": "20年前のツクール製ゲームをツクール最新作rpg maker uniteでリメイクして無料配布中?!~ツクール歴代勇者vs魔王~" + }, + { + "appid": 2788450, + "normalized_name": "little horrors!" + }, + { + "appid": 2788460, + "normalized_name": "party party time 2" + }, + { + "appid": 2788520, + "normalized_name": "cozy caravan" + }, + { + "appid": 2788540, + "normalized_name": "braveyard 勇者之墓" + }, + { + "appid": 2788560, + "normalized_name": "nemesis z" + }, + { + "appid": 2788600, + "normalized_name": "x mutation" + }, + { + "appid": 2788630, + "normalized_name": "nothing together" + }, + { + "appid": 2788740, + "normalized_name": "phantom bound" + }, + { + "appid": 2788760, + "normalized_name": "postbound!" + }, + { + "appid": 2788790, + "normalized_name": "job interview" + }, + { + "appid": 2788870, + "normalized_name": "mini settlers prologue" + }, + { + "appid": 2788920, + "normalized_name": "potion shop simulator" + }, + { + "appid": 2788950, + "normalized_name": "carrot survivors" + }, + { + "appid": 2788960, + "normalized_name": "hidden cats in jigsaw puzzle" + }, + { + "appid": 2788990, + "normalized_name": "风流人生" + }, + { + "appid": 2789020, + "normalized_name": "hibernaculum" + }, + { + "appid": 2789060, + "normalized_name": "i ask the cube where to go" + }, + { + "appid": 2789130, + "normalized_name": "highway police simulator" + }, + { + "appid": 2789140, + "normalized_name": "bunny" + }, + { + "appid": 2789260, + "normalized_name": "cowboy vs zombies" + }, + { + "appid": 2789270, + "normalized_name": "arcane weave" + }, + { + "appid": 2789280, + "normalized_name": "my shadow" + }, + { + "appid": 2789300, + "normalized_name": "twenty second stories of underground kharkiv" + }, + { + "appid": 2789320, + "normalized_name": "gallop champion" + }, + { + "appid": 2789380, + "normalized_name": "gauntler" + }, + { + "appid": 2789390, + "normalized_name": "paddlenoid" + }, + { + "appid": 2789400, + "normalized_name": "don't puke!" + }, + { + "appid": 2789410, + "normalized_name": "komadori inn" + }, + { + "appid": 2789420, + "normalized_name": "escape from ever after onboarding" + }, + { + "appid": 2789460, + "normalized_name": "ale abbey monastery brewery tycoon" + }, + { + "appid": 2789520, + "normalized_name": "歡迎光臨啾便利" + }, + { + "appid": 2789640, + "normalized_name": "souls of chronos gaiden" + }, + { + "appid": 2789650, + "normalized_name": "icefitter" + }, + { + "appid": 2789680, + "normalized_name": "hello neighbor 3" + }, + { + "appid": 2789710, + "normalized_name": "demiriam magic blueprint of miracle" + }, + { + "appid": 2789740, + "normalized_name": "remove" + }, + { + "appid": 2789750, + "normalized_name": "捕鱼大玩咖" + }, + { + "appid": 2789760, + "normalized_name": "the luckiest in the megaverse" + }, + { + "appid": 2789770, + "normalized_name": "epigraph" + }, + { + "appid": 2789810, + "normalized_name": "bingle bingle" + }, + { + "appid": 2789860, + "normalized_name": "superno" + }, + { + "appid": 2789870, + "normalized_name": "death fighter" + }, + { + "appid": 2789890, + "normalized_name": "learning to bear" + }, + { + "appid": 2789910, + "normalized_name": "culture warz chess" + }, + { + "appid": 2789980, + "normalized_name": "sinned arena" + }, + { + "appid": 2790000, + "normalized_name": "sin slayers reign of the 8th" + }, + { + "appid": 2790010, + "normalized_name": "stranded shootout" + }, + { + "appid": 2790020, + "normalized_name": "space sprouts" + }, + { + "appid": 2790090, + "normalized_name": "sirocco" + }, + { + "appid": 2790100, + "normalized_name": "a winter haunting" + }, + { + "appid": 2790130, + "normalized_name": "battler" + }, + { + "appid": 2790140, + "normalized_name": "paradigm overhaul" + }, + { + "appid": 2790160, + "normalized_name": "missile command delta" + }, + { + "appid": 2790180, + "normalized_name": "the recurrence" + }, + { + "appid": 2790190, + "normalized_name": "polygon bit battle royale" + }, + { + "appid": 2790240, + "normalized_name": "pencilvania" + }, + { + "appid": 2790250, + "normalized_name": "one more world" + }, + { + "appid": 2790270, + "normalized_name": "a tiny space adventure" + }, + { + "appid": 2790320, + "normalized_name": "măgurele mystery 2" + }, + { + "appid": 2790330, + "normalized_name": "blood typers" + }, + { + "appid": 2790340, + "normalized_name": "elevator experience" + }, + { + "appid": 2790500, + "normalized_name": "dungeons of alethrion" + }, + { + "appid": 2790530, + "normalized_name": "cat's cafeteria" + }, + { + "appid": 2790550, + "normalized_name": "it's slime creep time!" + }, + { + "appid": 2790580, + "normalized_name": "moon tower gotta save the universe real quick" + }, + { + "appid": 2790590, + "normalized_name": "it's skrot robot time!" + }, + { + "appid": 2790680, + "normalized_name": "welcome to paradise island" + }, + { + "appid": 2790700, + "normalized_name": "swapmeat" + }, + { + "appid": 2790770, + "normalized_name": "forest the call for help" + }, + { + "appid": 2790790, + "normalized_name": "the devil is in the details" + }, + { + "appid": 2790820, + "normalized_name": "sukfaristo" + }, + { + "appid": 2790830, + "normalized_name": "neon nova" + }, + { + "appid": 2790850, + "normalized_name": "wing haven" + }, + { + "appid": 2791010, + "normalized_name": "protectheart" + }, + { + "appid": 2791020, + "normalized_name": "定制女友" + }, + { + "appid": 2791030, + "normalized_name": "后室重生backrooms rebirth" + }, + { + "appid": 2791060, + "normalized_name": "down is relative" + }, + { + "appid": 2791140, + "normalized_name": "deeper creeper lust🐙😱" + }, + { + "appid": 2791180, + "normalized_name": "seraphim slum" + }, + { + "appid": 2791210, + "normalized_name": "deadneverstop" + }, + { + "appid": 2791230, + "normalized_name": "三國異麒麟:旭日初升" + }, + { + "appid": 2791250, + "normalized_name": "hazelwood station" + }, + { + "appid": 2791290, + "normalized_name": "aim zen rhythmic aim trainer" + }, + { + "appid": 2791300, + "normalized_name": "morph!" + }, + { + "appid": 2791310, + "normalized_name": "greenfeet haven" + }, + { + "appid": 2791320, + "normalized_name": "traffic master" + }, + { + "appid": 2791360, + "normalized_name": "pineapple a bittersweet revenge" + }, + { + "appid": 2791380, + "normalized_name": "ranocta" + }, + { + "appid": 2791410, + "normalized_name": "descending empires" + }, + { + "appid": 2791440, + "normalized_name": "brighter shores" + }, + { + "appid": 2791530, + "normalized_name": "steal then just escape the real thrill" + }, + { + "appid": 2791550, + "normalized_name": "facility 079" + }, + { + "appid": 2791570, + "normalized_name": "kunkunkun" + }, + { + "appid": 2791600, + "normalized_name": "becut an impostor game" + }, + { + "appid": 2791610, + "normalized_name": "ピギーの大冒険" + }, + { + "appid": 2791620, + "normalized_name": "delicious donut" + }, + { + "appid": 2791640, + "normalized_name": "战场战线" + }, + { + "appid": 2791650, + "normalized_name": "100 cats berlin" + }, + { + "appid": 2791700, + "normalized_name": "infantry attack" + }, + { + "appid": 2791740, + "normalized_name": "a life of logic" + }, + { + "appid": 2791780, + "normalized_name": "helios horizon" + }, + { + "appid": 2791790, + "normalized_name": "super kart mini car race" + }, + { + "appid": 2791800, + "normalized_name": "mortal fight lethal revenge" + }, + { + "appid": 2791820, + "normalized_name": "master builder simulator" + }, + { + "appid": 2791850, + "normalized_name": "celestia chain of fate" + }, + { + "appid": 2791860, + "normalized_name": "light and shadow schatten über empyria" + }, + { + "appid": 2791880, + "normalized_name": "assembly line 2" + }, + { + "appid": 2791890, + "normalized_name": "assemble!" + }, + { + "appid": 2791900, + "normalized_name": "foul" + }, + { + "appid": 2791940, + "normalized_name": "cubic dungeons" + }, + { + "appid": 2791950, + "normalized_name": "caldera" + }, + { + "appid": 2791970, + "normalized_name": "delivery driver service" + }, + { + "appid": 2791980, + "normalized_name": "delivery driver service prologue" + }, + { + "appid": 2792080, + "normalized_name": "stock retail investors" + }, + { + "appid": 2792100, + "normalized_name": "rogue ninja elemental onslaught" + }, + { + "appid": 2792130, + "normalized_name": "starkeeper" + }, + { + "appid": 2792160, + "normalized_name": "snowdown" + }, + { + "appid": 2792270, + "normalized_name": "arsene bomber cosmic" + }, + { + "appid": 2792300, + "normalized_name": "event world vr" + }, + { + "appid": 2792320, + "normalized_name": "critter crosser" + }, + { + "appid": 2792360, + "normalized_name": "spookville cabin escape" + }, + { + "appid": 2792370, + "normalized_name": "pixel pete" + }, + { + "appid": 2792390, + "normalized_name": "nukes on the loose" + }, + { + "appid": 2792400, + "normalized_name": "i commissioned some cats 11" + }, + { + "appid": 2792420, + "normalized_name": "backrooms steps into the abyss" + }, + { + "appid": 2792450, + "normalized_name": "backrooms partygoers" + }, + { + "appid": 2792460, + "normalized_name": "caviar" + }, + { + "appid": 2792470, + "normalized_name": "vignettes the dream city" + }, + { + "appid": 2792500, + "normalized_name": "our doomed bunker" + }, + { + "appid": 2792510, + "normalized_name": "area 19" + }, + { + "appid": 2792520, + "normalized_name": "floor 10 anomaly" + }, + { + "appid": 2792530, + "normalized_name": "moss piglets" + }, + { + "appid": 2792540, + "normalized_name": "anima keeper" + }, + { + "appid": 2792610, + "normalized_name": "stickman killing zombie" + }, + { + "appid": 2792650, + "normalized_name": "mathmaria" + }, + { + "appid": 2792660, + "normalized_name": "katana's path" + }, + { + "appid": 2792680, + "normalized_name": "rads the radioactive apocalypse dating simulator" + }, + { + "appid": 2792690, + "normalized_name": "starhopper" + }, + { + "appid": 2792730, + "normalized_name": "greedshot" + }, + { + "appid": 2792740, + "normalized_name": "lobby 2" + }, + { + "appid": 2792760, + "normalized_name": "hexpire" + }, + { + "appid": 2792820, + "normalized_name": "multicrash!" + }, + { + "appid": 2792830, + "normalized_name": "period survival" + }, + { + "appid": 2792840, + "normalized_name": "the mines of white label" + }, + { + "appid": 2792880, + "normalized_name": "nono's quest" + }, + { + "appid": 2792900, + "normalized_name": "roguelike chess" + }, + { + "appid": 2792960, + "normalized_name": "metal beans" + }, + { + "appid": 2793040, + "normalized_name": "mytavern" + }, + { + "appid": 2793050, + "normalized_name": "pirate's peril" + }, + { + "appid": 2793070, + "normalized_name": "hentai puzzles attack on tight panties" + }, + { + "appid": 2793110, + "normalized_name": "fellchaser" + }, + { + "appid": 2793150, + "normalized_name": "仿 imitate" + }, + { + "appid": 2793200, + "normalized_name": "habitatrix" + }, + { + "appid": 2793210, + "normalized_name": "bestiary survivors" + }, + { + "appid": 2793220, + "normalized_name": "gears story" + }, + { + "appid": 2793240, + "normalized_name": "監視業務 禁忌" + }, + { + "appid": 2793250, + "normalized_name": "charlie charlie challenge" + }, + { + "appid": 2793270, + "normalized_name": "tchunk" + }, + { + "appid": 2793280, + "normalized_name": "who made this art? human or ai" + }, + { + "appid": 2793290, + "normalized_name": "liptrip ~my boss is my heat suppressant?!~" + }, + { + "appid": 2793300, + "normalized_name": "portal survivors enchanstrider" + }, + { + "appid": 2793310, + "normalized_name": "america's next top pornstar" + }, + { + "appid": 2793350, + "normalized_name": "筋肉すくい" + }, + { + "appid": 2793370, + "normalized_name": "[chilla's art] shinkansen 0 | 新幹線 0号" + }, + { + "appid": 2793380, + "normalized_name": "starground" + }, + { + "appid": 2793430, + "normalized_name": "offroad motorbike vr" + }, + { + "appid": 2793460, + "normalized_name": "烈焰对决 经典归来" + }, + { + "appid": 2793480, + "normalized_name": "修真九要" + }, + { + "appid": 2793520, + "normalized_name": "primordial nation" + }, + { + "appid": 2793550, + "normalized_name": "reel fishing days of summer" + }, + { + "appid": 2793560, + "normalized_name": "gunstorm ii" + }, + { + "appid": 2793620, + "normalized_name": "miner escape puzzle adventure" + }, + { + "appid": 2793690, + "normalized_name": "without you" + }, + { + "appid": 2793700, + "normalized_name": "eternal vault" + }, + { + "appid": 2793710, + "normalized_name": "dollmare" + }, + { + "appid": 2793770, + "normalized_name": "flip master" + }, + { + "appid": 2793790, + "normalized_name": "damn it!" + }, + { + "appid": 2793810, + "normalized_name": "creation of a god" + }, + { + "appid": 2793820, + "normalized_name": "all city king" + }, + { + "appid": 2793860, + "normalized_name": "resttolandia" + }, + { + "appid": 2793930, + "normalized_name": "sudoku constellation" + }, + { + "appid": 2793940, + "normalized_name": "galactic sanctuaries" + }, + { + "appid": 2793950, + "normalized_name": "totally spies! cyber mission" + }, + { + "appid": 2793980, + "normalized_name": "shotengai 10" + }, + { + "appid": 2794030, + "normalized_name": "find together on stream" + }, + { + "appid": 2794050, + "normalized_name": "duel with the devil" + }, + { + "appid": 2794120, + "normalized_name": "girl vs wild" + }, + { + "appid": 2794130, + "normalized_name": "fear faith" + }, + { + "appid": 2794140, + "normalized_name": "puzzle adventure vr" + }, + { + "appid": 2794160, + "normalized_name": "beyond the board" + }, + { + "appid": 2794180, + "normalized_name": "signal control simulator" + }, + { + "appid": 2794230, + "normalized_name": "carprogramvr" + }, + { + "appid": 2794240, + "normalized_name": "drone break" + }, + { + "appid": 2794250, + "normalized_name": "plasma orb" + }, + { + "appid": 2794260, + "normalized_name": "cat survivors" + }, + { + "appid": 2794280, + "normalized_name": "deck defense" + }, + { + "appid": 2794300, + "normalized_name": "dodge" + }, + { + "appid": 2794330, + "normalized_name": "atuel" + }, + { + "appid": 2794340, + "normalized_name": "silicorp systems" + }, + { + "appid": 2794390, + "normalized_name": "pinono and the magic fiddle" + }, + { + "appid": 2794400, + "normalized_name": "terror mansion" + }, + { + "appid": 2794410, + "normalized_name": "sun is dead" + }, + { + "appid": 2794430, + "normalized_name": "in corporeal" + }, + { + "appid": 2794450, + "normalized_name": "slippery delivery" + }, + { + "appid": 2794470, + "normalized_name": "omega mouse zero" + }, + { + "appid": 2794480, + "normalized_name": "man and dog" + }, + { + "appid": 2794500, + "normalized_name": "combo haven" + }, + { + "appid": 2794510, + "normalized_name": "metaphysical abyss" + }, + { + "appid": 2794610, + "normalized_name": "massacre at the mirage" + }, + { + "appid": 2794620, + "normalized_name": "uncensor quest" + }, + { + "appid": 2794630, + "normalized_name": "cat bang" + }, + { + "appid": 2794640, + "normalized_name": "countdown" + }, + { + "appid": 2794730, + "normalized_name": "karamu trilogy" + }, + { + "appid": 2794740, + "normalized_name": "rim" + }, + { + "appid": 2794760, + "normalized_name": "starflow" + }, + { + "appid": 2794770, + "normalized_name": "clock tower rewind" + }, + { + "appid": 2794780, + "normalized_name": "space ixi frontier wars" + }, + { + "appid": 2794830, + "normalized_name": "cinnabunny" + }, + { + "appid": 2794860, + "normalized_name": "grow a carrot" + }, + { + "appid": 2794880, + "normalized_name": "station sabotage" + }, + { + "appid": 2794910, + "normalized_name": "silly billy" + }, + { + "appid": 2794960, + "normalized_name": "the erebus accord" + }, + { + "appid": 2794970, + "normalized_name": "deadly parkour" + }, + { + "appid": 2794990, + "normalized_name": "fluida" + }, + { + "appid": 2795000, + "normalized_name": "the werecleaner" + }, + { + "appid": 2795030, + "normalized_name": "timber" + }, + { + "appid": 2795040, + "normalized_name": "saikuru lives" + }, + { + "appid": 2795060, + "normalized_name": "dreamio ai powered adventures" + }, + { + "appid": 2795090, + "normalized_name": "mr farmboy" + }, + { + "appid": 2795110, + "normalized_name": "petal runner" + }, + { + "appid": 2795120, + "normalized_name": "烟花绘梦 firework survivor" + }, + { + "appid": 2795130, + "normalized_name": "eldabyss" + }, + { + "appid": 2795150, + "normalized_name": "lux" + }, + { + "appid": 2795160, + "normalized_name": "exosky" + }, + { + "appid": 2795170, + "normalized_name": "purge party" + }, + { + "appid": 2795180, + "normalized_name": "shhh!saw" + }, + { + "appid": 2795230, + "normalized_name": "oddroom" + }, + { + "appid": 2795240, + "normalized_name": "规则电视机" + }, + { + "appid": 2795270, + "normalized_name": "everlasting flowers where there is a will there is a way" + }, + { + "appid": 2795280, + "normalized_name": "intlovert game club" + }, + { + "appid": 2795310, + "normalized_name": "busty milf and summer country sex life" + }, + { + "appid": 2795370, + "normalized_name": "scp hours to go" + }, + { + "appid": 2795380, + "normalized_name": "dino park" + }, + { + "appid": 2795410, + "normalized_name": "crossed commands collision" + }, + { + "appid": 2795480, + "normalized_name": "nāyak" + }, + { + "appid": 2795500, + "normalized_name": "luminous" + }, + { + "appid": 2795510, + "normalized_name": "glorious savior" + }, + { + "appid": 2795530, + "normalized_name": "迷离 blurred" + }, + { + "appid": 2795540, + "normalized_name": "the midnight walkers" + }, + { + "appid": 2795550, + "normalized_name": "akizora no memories" + }, + { + "appid": 2795580, + "normalized_name": "the 鬼退治!!目指せ!二代目桃太郎" + }, + { + "appid": 2795590, + "normalized_name": "compensation not guaranteed" + }, + { + "appid": 2795640, + "normalized_name": "boxhead immortal" + }, + { + "appid": 2795660, + "normalized_name": "yume kakigori" + }, + { + "appid": 2795670, + "normalized_name": "celestwald adventure" + }, + { + "appid": 2795730, + "normalized_name": "blopper" + }, + { + "appid": 2795740, + "normalized_name": "little oceania" + }, + { + "appid": 2795750, + "normalized_name": "night slashers remake" + }, + { + "appid": 2795760, + "normalized_name": "duck dash" + }, + { + "appid": 2795830, + "normalized_name": "solse ai quest" + }, + { + "appid": 2795840, + "normalized_name": "быки и коровы дикий запад" + }, + { + "appid": 2795850, + "normalized_name": "magic city detective wrath of the ocean collector's" + }, + { + "appid": 2795860, + "normalized_name": "looking for cats in a badly drawn forest" + }, + { + "appid": 2796010, + "normalized_name": "party club" + }, + { + "appid": 2796020, + "normalized_name": "refuted wind" + }, + { + "appid": 2796040, + "normalized_name": "looking for love" + }, + { + "appid": 2796050, + "normalized_name": "frankendice" + }, + { + "appid": 2796060, + "normalized_name": "climb jump" + }, + { + "appid": 2796070, + "normalized_name": "hot war 21st black sea" + }, + { + "appid": 2796090, + "normalized_name": "모험가 길드의 해결사 카를로스" + }, + { + "appid": 2796100, + "normalized_name": "galactic gauntlet the interstellar challenge" + }, + { + "appid": 2796110, + "normalized_name": "van gogh's masterpiece jigsaw puzzles" + }, + { + "appid": 2796140, + "normalized_name": "uncanny valley machine" + }, + { + "appid": 2796150, + "normalized_name": "depths of insanity 2" + }, + { + "appid": 2796180, + "normalized_name": "silent breath" + }, + { + "appid": 2796190, + "normalized_name": "pin to win" + }, + { + "appid": 2796210, + "normalized_name": "异世界模拟器" + }, + { + "appid": 2796220, + "normalized_name": "apogea" + }, + { + "appid": 2796230, + "normalized_name": "bunny guntz" + }, + { + "appid": 2796240, + "normalized_name": "hammer knight" + }, + { + "appid": 2796250, + "normalized_name": "beware the depths" + }, + { + "appid": 2796280, + "normalized_name": "dirty rotten bounders" + }, + { + "appid": 2796290, + "normalized_name": "beater apocal undone" + }, + { + "appid": 2796340, + "normalized_name": "illusion carnival" + }, + { + "appid": 2796350, + "normalized_name": "100 cats belgrade" + }, + { + "appid": 2796360, + "normalized_name": "100 cats beijing" + }, + { + "appid": 2796370, + "normalized_name": "brigands" + }, + { + "appid": 2796390, + "normalized_name": "games advent calendar 2024" + }, + { + "appid": 2796410, + "normalized_name": "sugar tanks 2" + }, + { + "appid": 2796420, + "normalized_name": "project ardeal" + }, + { + "appid": 2796450, + "normalized_name": "sugar tanks arena" + }, + { + "appid": 2796460, + "normalized_name": "insider threat" + }, + { + "appid": 2796510, + "normalized_name": "beef cat ultra" + }, + { + "appid": 2796550, + "normalized_name": "rental" + }, + { + "appid": 2796590, + "normalized_name": "introspection" + }, + { + "appid": 2796620, + "normalized_name": "trust the backrooms" + }, + { + "appid": 2796640, + "normalized_name": "the magus circle" + }, + { + "appid": 2796650, + "normalized_name": "shovel pirate" + }, + { + "appid": 2796680, + "normalized_name": "breakthrough mars" + }, + { + "appid": 2796800, + "normalized_name": "tombstone mmo" + }, + { + "appid": 2796880, + "normalized_name": "the hunt for the lost ship" + }, + { + "appid": 2796910, + "normalized_name": "q linq" + }, + { + "appid": 2796920, + "normalized_name": "moto knight" + }, + { + "appid": 2796980, + "normalized_name": "magic card:cz12" + }, + { + "appid": 2797010, + "normalized_name": "black abyss" + }, + { + "appid": 2797050, + "normalized_name": "swing scale" + }, + { + "appid": 2797080, + "normalized_name": "佣兵小队自走棋 mercenary squad auto chess" + }, + { + "appid": 2797100, + "normalized_name": "yumpr" + }, + { + "appid": 2797120, + "normalized_name": "泠漪的幻想异闻" + }, + { + "appid": 2797160, + "normalized_name": "chronicles of fear the babysitter's tale" + }, + { + "appid": 2797170, + "normalized_name": "我愛師大附中hsnu" + }, + { + "appid": 2797180, + "normalized_name": "咫尺遥心 proof of existence" + }, + { + "appid": 2797220, + "normalized_name": "necroforge" + }, + { + "appid": 2797240, + "normalized_name": "space survivor" + }, + { + "appid": 2797250, + "normalized_name": "furry seduction" + }, + { + "appid": 2797290, + "normalized_name": "ten ten" + }, + { + "appid": 2797310, + "normalized_name": "hypnotic idol" + }, + { + "appid": 2797320, + "normalized_name": "shadow breakers" + }, + { + "appid": 2797340, + "normalized_name": "cat god ranch" + }, + { + "appid": 2797350, + "normalized_name": "dea" + }, + { + "appid": 2797390, + "normalized_name": "wildlife rescue simulator" + }, + { + "appid": 2797410, + "normalized_name": "cyber storm" + }, + { + "appid": 2797420, + "normalized_name": "yuri sword saga" + }, + { + "appid": 2797430, + "normalized_name": "celestial seekers" + }, + { + "appid": 2797440, + "normalized_name": "都给我下地狱 go to hell must" + }, + { + "appid": 2797460, + "normalized_name": "raceonlife" + }, + { + "appid": 2797520, + "normalized_name": "迷失地牢" + }, + { + "appid": 2797540, + "normalized_name": "cold warms us." + }, + { + "appid": 2797570, + "normalized_name": "craft lands" + }, + { + "appid": 2797590, + "normalized_name": "treasure defence" + }, + { + "appid": 2797600, + "normalized_name": "selling souls" + }, + { + "appid": 2797620, + "normalized_name": "ramshackle.exe" + }, + { + "appid": 2797630, + "normalized_name": "walks of life" + }, + { + "appid": 2797640, + "normalized_name": "rogue night" + }, + { + "appid": 2797650, + "normalized_name": "pip my dice" + }, + { + "appid": 2797670, + "normalized_name": "rogueborne fury" + }, + { + "appid": 2797690, + "normalized_name": "delispace" + }, + { + "appid": 2797710, + "normalized_name": "hardcore survival" + }, + { + "appid": 2797740, + "normalized_name": "legend of stars" + }, + { + "appid": 2797760, + "normalized_name": "fudgy dice" + }, + { + "appid": 2797780, + "normalized_name": "time fissure" + }, + { + "appid": 2797820, + "normalized_name": "salvation hours" + }, + { + "appid": 2797830, + "normalized_name": "solar merge" + }, + { + "appid": 2797900, + "normalized_name": "icy incline" + }, + { + "appid": 2797960, + "normalized_name": "confidential killings" + }, + { + "appid": 2798020, + "normalized_name": "gnomemade" + }, + { + "appid": 2798040, + "normalized_name": "one last dinner" + }, + { + "appid": 2798050, + "normalized_name": "the tragic loss of m. slazak" + }, + { + "appid": 2798090, + "normalized_name": "dinos vs robots" + }, + { + "appid": 2798100, + "normalized_name": "factory islands" + }, + { + "appid": 2798120, + "normalized_name": "hentai polka" + }, + { + "appid": 2798180, + "normalized_name": "the hunt for the lost treasure" + }, + { + "appid": 2798190, + "normalized_name": "the hunt for the lost treasure 2" + }, + { + "appid": 2798200, + "normalized_name": "the mystery of blackthorn castle" + }, + { + "appid": 2798210, + "normalized_name": "the mystery of blackthorn castle 2" + }, + { + "appid": 2798220, + "normalized_name": "the enchanted worlds" + }, + { + "appid": 2798230, + "normalized_name": "the enchanted worlds 2" + }, + { + "appid": 2798240, + "normalized_name": "rescue the enchanter" + }, + { + "appid": 2798250, + "normalized_name": "bigfoot quest" + }, + { + "appid": 2798260, + "normalized_name": "plunderpiece" + }, + { + "appid": 2798280, + "normalized_name": "i commissioned some ladybugs 3" + }, + { + "appid": 2798290, + "normalized_name": "i commissioned some bunnies 3" + }, + { + "appid": 2798300, + "normalized_name": "i commissioned some mice 2" + }, + { + "appid": 2798320, + "normalized_name": "super sami roll 2" + }, + { + "appid": 2798330, + "normalized_name": "dungeon settlers" + }, + { + "appid": 2798340, + "normalized_name": "county courier" + }, + { + "appid": 2798350, + "normalized_name": "super chroma bots season one" + }, + { + "appid": 2798380, + "normalized_name": "cube" + }, + { + "appid": 2798390, + "normalized_name": "vaporaeon" + }, + { + "appid": 2798400, + "normalized_name": "易经·占卜" + }, + { + "appid": 2798410, + "normalized_name": "uninhabited island" + }, + { + "appid": 2798420, + "normalized_name": "grid dungeons" + }, + { + "appid": 2798430, + "normalized_name": "wittle mistakes prologue" + }, + { + "appid": 2798600, + "normalized_name": "bagel love story" + }, + { + "appid": 2798620, + "normalized_name": "懒得起名字" + }, + { + "appid": 2798660, + "normalized_name": "world in fire" + }, + { + "appid": 2798690, + "normalized_name": "another round" + }, + { + "appid": 2798700, + "normalized_name": "one last job" + }, + { + "appid": 2798790, + "normalized_name": "pawnholm" + }, + { + "appid": 2798810, + "normalized_name": "burglar inc" + }, + { + "appid": 2798880, + "normalized_name": "dj simulator" + }, + { + "appid": 2798940, + "normalized_name": "tiff and tussle" + }, + { + "appid": 2798950, + "normalized_name": "path to magehood" + }, + { + "appid": 2798960, + "normalized_name": "todomiro" + }, + { + "appid": 2798980, + "normalized_name": "cosmic paradox noire" + }, + { + "appid": 2798990, + "normalized_name": "swordspin arena of blades" + }, + { + "appid": 2799040, + "normalized_name": "cubic enigma" + }, + { + "appid": 2799050, + "normalized_name": "mourning tide" + }, + { + "appid": 2799070, + "normalized_name": "falos" + }, + { + "appid": 2799110, + "normalized_name": "quickerflak 2" + }, + { + "appid": 2799120, + "normalized_name": "space show 17" + }, + { + "appid": 2799170, + "normalized_name": "the state of nowhere" + }, + { + "appid": 2799190, + "normalized_name": "synthetic soul 2" + }, + { + "appid": 2799230, + "normalized_name": "nitpick i must hunt" + }, + { + "appid": 2799240, + "normalized_name": "winds up kitesurfing" + }, + { + "appid": 2799310, + "normalized_name": "reroute" + }, + { + "appid": 2799320, + "normalized_name": "anamnesia part 1 am i my body?" + }, + { + "appid": 2799350, + "normalized_name": "emperor of the fading suns enhanced" + }, + { + "appid": 2799360, + "normalized_name": "izolated" + }, + { + "appid": 2799410, + "normalized_name": "dustino 64" + }, + { + "appid": 2799460, + "normalized_name": "sushido" + }, + { + "appid": 2799470, + "normalized_name": "first person shouter" + }, + { + "appid": 2799490, + "normalized_name": "project rose" + }, + { + "appid": 2799500, + "normalized_name": "shadow code lucy" + }, + { + "appid": 2799560, + "normalized_name": "the czar is dead" + }, + { + "appid": 2799570, + "normalized_name": "谪金之战:命运(zerium war destiny)" + }, + { + "appid": 2799620, + "normalized_name": "paws united" + }, + { + "appid": 2799640, + "normalized_name": "keep it steady!" + }, + { + "appid": 2799690, + "normalized_name": "the secret atelier" + }, + { + "appid": 2799740, + "normalized_name": "幻兽骑士" + }, + { + "appid": 2799780, + "normalized_name": "lastditch" + }, + { + "appid": 2799820, + "normalized_name": "全速以赴" + }, + { + "appid": 2799860, + "normalized_name": "inazuma eleven victory road" + }, + { + "appid": 2799910, + "normalized_name": "illegal football" + }, + { + "appid": 2799920, + "normalized_name": "天才退魔師は触手妖魔なんかに屈しない" + }, + { + "appid": 2799930, + "normalized_name": "灵境·修仙界" + }, + { + "appid": 2799940, + "normalized_name": "シエラの冒険、破滅の洞窟" + }, + { + "appid": 2799950, + "normalized_name": "ミユちゃんと先生のどきどき野球拳" + }, + { + "appid": 2799970, + "normalized_name": "the scarlet chaos" + }, + { + "appid": 2800020, + "normalized_name": "armless samurai" + }, + { + "appid": 2800150, + "normalized_name": "ai roguelite 2d" + }, + { + "appid": 2800170, + "normalized_name": "shogun curse" + }, + { + "appid": 2800210, + "normalized_name": "minute fighter" + }, + { + "appid": 2800280, + "normalized_name": "bermuda survivor" + }, + { + "appid": 2800300, + "normalized_name": "100 cats singapore" + }, + { + "appid": 2800320, + "normalized_name": "robin in da hood" + }, + { + "appid": 2800370, + "normalized_name": "30 days on ship" + }, + { + "appid": 2800380, + "normalized_name": "bombing" + }, + { + "appid": 2800410, + "normalized_name": "[wip] 100 hidden cats" + }, + { + "appid": 2800420, + "normalized_name": "publish or perish" + }, + { + "appid": 2800440, + "normalized_name": "quadrium 3" + }, + { + "appid": 2800450, + "normalized_name": "planetaries" + }, + { + "appid": 2800460, + "normalized_name": "russian village simulator on mars" + }, + { + "appid": 2800480, + "normalized_name": "erwartung" + }, + { + "appid": 2800490, + "normalized_name": "endless return" + }, + { + "appid": 2800500, + "normalized_name": "blacklist mafia" + }, + { + "appid": 2800510, + "normalized_name": "job joust" + }, + { + "appid": 2800520, + "normalized_name": "sex magic 🔮" + }, + { + "appid": 2800530, + "normalized_name": "alison fall of the apple" + }, + { + "appid": 2800550, + "normalized_name": "gloomgeons" + }, + { + "appid": 2800570, + "normalized_name": "deus proxy" + }, + { + "appid": 2800580, + "normalized_name": "mr tomato adventures" + }, + { + "appid": 2800610, + "normalized_name": "akeriatd" + }, + { + "appid": 2800620, + "normalized_name": "the dungeons of algoduul" + }, + { + "appid": 2800630, + "normalized_name": "the smurfs village party" + }, + { + "appid": 2800640, + "normalized_name": "office harasser sell your girls!" + }, + { + "appid": 2800680, + "normalized_name": "death motel" + }, + { + "appid": 2800720, + "normalized_name": "necropolis isle" + }, + { + "appid": 2800760, + "normalized_name": "doupleri" + }, + { + "appid": 2800770, + "normalized_name": "gnomber" + }, + { + "appid": 2800790, + "normalized_name": "orc incursion" + }, + { + "appid": 2800840, + "normalized_name": "gunbot diplomacy" + }, + { + "appid": 2800850, + "normalized_name": "project legion" + }, + { + "appid": 2800880, + "normalized_name": "cuboyd" + }, + { + "appid": 2800900, + "normalized_name": "rift riff" + }, + { + "appid": 2800940, + "normalized_name": "silver world" + }, + { + "appid": 2800950, + "normalized_name": "horror of victim" + }, + { + "appid": 2800970, + "normalized_name": "shipwrecked lost colony" + }, + { + "appid": 2800980, + "normalized_name": "hentai casino" + }, + { + "appid": 2801010, + "normalized_name": "kick me!" + }, + { + "appid": 2801030, + "normalized_name": "recipiente" + }, + { + "appid": 2801230, + "normalized_name": "grr boo i" + }, + { + "appid": 2801260, + "normalized_name": "celestial impact invasion" + }, + { + "appid": 2801280, + "normalized_name": "wathan games" + }, + { + "appid": 2801290, + "normalized_name": "ai stories machine angel" + }, + { + "appid": 2801380, + "normalized_name": "american sumo manager road to major league sumo" + }, + { + "appid": 2801430, + "normalized_name": "tiny gnome game" + }, + { + "appid": 2801510, + "normalized_name": "ekikoi the young miss falls for the station attendant vam" + }, + { + "appid": 2801540, + "normalized_name": "cul de sac" + }, + { + "appid": 2801620, + "normalized_name": "look inside" + }, + { + "appid": 2801630, + "normalized_name": "vapor trails" + }, + { + "appid": 2801670, + "normalized_name": "wraith" + }, + { + "appid": 2801710, + "normalized_name": "vollema" + }, + { + "appid": 2801750, + "normalized_name": "hood ninja" + }, + { + "appid": 2801790, + "normalized_name": "dna episode 2" + }, + { + "appid": 2801830, + "normalized_name": "永无止境的黑暗森林" + }, + { + "appid": 2801860, + "normalized_name": "grim" + }, + { + "appid": 2801880, + "normalized_name": "souvenir" + }, + { + "appid": 2801920, + "normalized_name": "chloe the cat" + }, + { + "appid": 2801940, + "normalized_name": "scavenger t.o.m" + }, + { + "appid": 2801960, + "normalized_name": "hentai senpai pirates!" + }, + { + "appid": 2801970, + "normalized_name": "s.x.e. slider" + }, + { + "appid": 2802070, + "normalized_name": "美女与野兽" + }, + { + "appid": 2802080, + "normalized_name": "prime" + }, + { + "appid": 2802110, + "normalized_name": "spy der pig" + }, + { + "appid": 2802140, + "normalized_name": "hello world" + }, + { + "appid": 2802170, + "normalized_name": "necromon" + }, + { + "appid": 2802180, + "normalized_name": "幻域行" + }, + { + "appid": 2802210, + "normalized_name": "major bullet" + }, + { + "appid": 2802240, + "normalized_name": "red end" + }, + { + "appid": 2802250, + "normalized_name": "europe 2041 resistance" + }, + { + "appid": 2802280, + "normalized_name": "sacred safar" + }, + { + "appid": 2802350, + "normalized_name": "sporti's universe" + }, + { + "appid": 2802370, + "normalized_name": "construction runner" + }, + { + "appid": 2802410, + "normalized_name": "doggo" + }, + { + "appid": 2802440, + "normalized_name": "secrets of the shore" + }, + { + "appid": 2802460, + "normalized_name": "whispering death" + }, + { + "appid": 2802480, + "normalized_name": "koi garden" + }, + { + "appid": 2802490, + "normalized_name": "the quizard's domain" + }, + { + "appid": 2802500, + "normalized_name": "last hopper" + }, + { + "appid": 2802560, + "normalized_name": "完蛋!我被美女包围了! 房间里的心跳vr花絮" + }, + { + "appid": 2802600, + "normalized_name": "moe moe daiundoukai" + }, + { + "appid": 2802620, + "normalized_name": "carrot paradise" + }, + { + "appid": 2802650, + "normalized_name": "iromaze ink shop" + }, + { + "appid": 2802660, + "normalized_name": "forest ranger simulator apprenticeship" + }, + { + "appid": 2802670, + "normalized_name": "graveskelet" + }, + { + "appid": 2802690, + "normalized_name": "farmer's father the origins" + }, + { + "appid": 2802710, + "normalized_name": "quantum odyssey" + }, + { + "appid": 2802720, + "normalized_name": "yuri's resolve" + }, + { + "appid": 2802750, + "normalized_name": "去码头整点薯条!" + }, + { + "appid": 2802780, + "normalized_name": "the implant" + }, + { + "appid": 2802790, + "normalized_name": "why do you love me?" + }, + { + "appid": 2802820, + "normalized_name": "school 666" + }, + { + "appid": 2802860, + "normalized_name": "car detailing cleaner simulator" + }, + { + "appid": 2802870, + "normalized_name": "zombies & bullets" + }, + { + "appid": 2802950, + "normalized_name": "ocean life aquarium simulator" + }, + { + "appid": 2802960, + "normalized_name": "heist hustle the bank job" + }, + { + "appid": 2802980, + "normalized_name": "parallel plague good old days" + }, + { + "appid": 2802990, + "normalized_name": "some heroines climb up a tower to ask god why the game has a name that's so long" + }, + { + "appid": 2803000, + "normalized_name": "100 dino cats" + }, + { + "appid": 2803010, + "normalized_name": "100 robo cats" + }, + { + "appid": 2803060, + "normalized_name": "导演模拟器" + }, + { + "appid": 2803070, + "normalized_name": "almost dungeon" + }, + { + "appid": 2803090, + "normalized_name": "spoils of a starfighter" + }, + { + "appid": 2803110, + "normalized_name": "whisper of the curse" + }, + { + "appid": 2803130, + "normalized_name": "assassins unleashed the apocalypse" + }, + { + "appid": 2803140, + "normalized_name": "the final farewell" + }, + { + "appid": 2803170, + "normalized_name": "kind heart survivors" + }, + { + "appid": 2803190, + "normalized_name": "the night jackals vol. 1" + }, + { + "appid": 2803230, + "normalized_name": "demolish & build 3 prologue" + }, + { + "appid": 2803280, + "normalized_name": "dragon is dead" + }, + { + "appid": 2803340, + "normalized_name": "shadow touched" + }, + { + "appid": 2803360, + "normalized_name": "project l33t prologue" + }, + { + "appid": 2803370, + "normalized_name": "short fuse" + }, + { + "appid": 2803390, + "normalized_name": "flooftopia" + }, + { + "appid": 2803470, + "normalized_name": "a bots color adventure" + }, + { + "appid": 2803490, + "normalized_name": "atomcraft" + }, + { + "appid": 2803540, + "normalized_name": "rogue stargun" + }, + { + "appid": 2803570, + "normalized_name": "necro siege" + }, + { + "appid": 2803590, + "normalized_name": "montezuma's revenge director's cut" + }, + { + "appid": 2803640, + "normalized_name": "cursed enigma the midnight apartment" + }, + { + "appid": 2803660, + "normalized_name": "deepwell" + }, + { + "appid": 2803710, + "normalized_name": "manika" + }, + { + "appid": 2803760, + "normalized_name": "mugged" + }, + { + "appid": 2803810, + "normalized_name": "重生!我在古代遇佳人" + }, + { + "appid": 2803840, + "normalized_name": "the girl under the tree anna" + }, + { + "appid": 2803860, + "normalized_name": "silent sonata" + }, + { + "appid": 2803890, + "normalized_name": "exiled into darkness" + }, + { + "appid": 2803900, + "normalized_name": "elevator warp" + }, + { + "appid": 2803930, + "normalized_name": "cyber workshop" + }, + { + "appid": 2803950, + "normalized_name": "hentai tales the world only maid" + }, + { + "appid": 2803960, + "normalized_name": "vr ninja dojo" + }, + { + "appid": 2803990, + "normalized_name": "xvtm" + }, + { + "appid": 2804020, + "normalized_name": "rogue gladius survivors" + }, + { + "appid": 2804040, + "normalized_name": "screaming savage blood death" + }, + { + "appid": 2804050, + "normalized_name": "dragon island adventure" + }, + { + "appid": 2804100, + "normalized_name": "fate’s theater" + }, + { + "appid": 2804200, + "normalized_name": "武林江湖 烈火战神传" + }, + { + "appid": 2804250, + "normalized_name": "hentai senpai cosmic beauties" + }, + { + "appid": 2804280, + "normalized_name": "monster typer backspace" + }, + { + "appid": 2804290, + "normalized_name": "英雄竞起 三国" + }, + { + "appid": 2804300, + "normalized_name": "sex with a vampire 🧛♂❤" + }, + { + "appid": 2804310, + "normalized_name": "california swingers club season 1 sea swap" + }, + { + "appid": 2804390, + "normalized_name": "abyss seeker" + }, + { + "appid": 2804430, + "normalized_name": "bots 4 defense" + }, + { + "appid": 2804490, + "normalized_name": "pawn simulator" + }, + { + "appid": 2804510, + "normalized_name": "重生了还要我谈恋爱?" + }, + { + "appid": 2804520, + "normalized_name": "the dark plague trials of galwefeld" + }, + { + "appid": 2804550, + "normalized_name": "strongest angel zerachiel" + }, + { + "appid": 2804580, + "normalized_name": "gearbits gear angels" + }, + { + "appid": 2804610, + "normalized_name": "tails of glimmervale" + }, + { + "appid": 2804620, + "normalized_name": "community ball" + }, + { + "appid": 2804680, + "normalized_name": "only way is down" + }, + { + "appid": 2804700, + "normalized_name": "space station defender" + }, + { + "appid": 2804740, + "normalized_name": "aerial_knight's we never yield" + }, + { + "appid": 2804770, + "normalized_name": "mutanoid the card game" + }, + { + "appid": 2804840, + "normalized_name": "echoes of despair" + }, + { + "appid": 2804900, + "normalized_name": "lust bound" + }, + { + "appid": 2804910, + "normalized_name": "project windfall" + }, + { + "appid": 2804940, + "normalized_name": "miro" + }, + { + "appid": 2804960, + "normalized_name": "リプレイベルスイカスロットライクゲーム" + }, + { + "appid": 2804970, + "normalized_name": "frontier paladin" + }, + { + "appid": 2805020, + "normalized_name": "house always wins!" + }, + { + "appid": 2805040, + "normalized_name": "mini reaper" + }, + { + "appid": 2805060, + "normalized_name": "diabotical rogue" + }, + { + "appid": 2805070, + "normalized_name": "screenbound" + }, + { + "appid": 2805100, + "normalized_name": "life code" + }, + { + "appid": 2805110, + "normalized_name": "eldritch tactics lichtmond" + }, + { + "appid": 2805120, + "normalized_name": "blade ball arena" + }, + { + "appid": 2805130, + "normalized_name": "folgore" + }, + { + "appid": 2805140, + "normalized_name": "football breakthrough gaming arcade" + }, + { + "appid": 2805170, + "normalized_name": "forgiveness" + }, + { + "appid": 2805200, + "normalized_name": "阿尔法星系射击锦标赛" + }, + { + "appid": 2805210, + "normalized_name": "space hat" + }, + { + "appid": 2805230, + "normalized_name": "backrooms last room" + }, + { + "appid": 2805260, + "normalized_name": "poly impulse" + }, + { + "appid": 2805270, + "normalized_name": "moespotter uncover the girls' mysteries!" + }, + { + "appid": 2805330, + "normalized_name": "aim sex" + }, + { + "appid": 2805340, + "normalized_name": "spliti" + }, + { + "appid": 2805390, + "normalized_name": "animal tracker" + }, + { + "appid": 2805410, + "normalized_name": "spellarium 4" + }, + { + "appid": 2805460, + "normalized_name": "epic dumpster bear 1.5 dx dumpster fire rebirth" + }, + { + "appid": 2805480, + "normalized_name": "dragon of steelthorne" + }, + { + "appid": 2805530, + "normalized_name": "shattered dreams that one time when all my applications got rejected so i started my own company. my life became an idle / clicker game where i must increase all incremental values and squeeze my employees for every last bit of soul they have left." + }, + { + "appid": 2805580, + "normalized_name": "undying harvest" + }, + { + "appid": 2805610, + "normalized_name": "just skill shooter 3 2d" + }, + { + "appid": 2805620, + "normalized_name": "animals vs animals" + }, + { + "appid": 2805630, + "normalized_name": "botmobile" + }, + { + "appid": 2805640, + "normalized_name": "desert special forces" + }, + { + "appid": 2805650, + "normalized_name": "diamonds collector" + }, + { + "appid": 2805660, + "normalized_name": "fight till the end!" + }, + { + "appid": 2805670, + "normalized_name": "artificial life simulator" + }, + { + "appid": 2805680, + "normalized_name": "infinity boob clicker" + }, + { + "appid": 2805700, + "normalized_name": "bdsm sex episode 1" + }, + { + "appid": 2805770, + "normalized_name": "elements divided" + }, + { + "appid": 2805800, + "normalized_name": "livingmare cold calls" + }, + { + "appid": 2805850, + "normalized_name": "atre dominance wars" + }, + { + "appid": 2805870, + "normalized_name": "mach wing" + }, + { + "appid": 2805880, + "normalized_name": "rotorscape" + }, + { + "appid": 2805910, + "normalized_name": "the circle tales elvenwoods" + }, + { + "appid": 2805920, + "normalized_name": "magfighter" + }, + { + "appid": 2805950, + "normalized_name": "tempest in a teapot" + }, + { + "appid": 2805960, + "normalized_name": "bumper balls" + }, + { + "appid": 2805990, + "normalized_name": "action fubuki" + }, + { + "appid": 2806110, + "normalized_name": "reblica" + }, + { + "appid": 2806120, + "normalized_name": "bio goddess doomsday begins" + }, + { + "appid": 2806140, + "normalized_name": "autotag" + }, + { + "appid": 2806180, + "normalized_name": "螺旋特攻" + }, + { + "appid": 2806230, + "normalized_name": "gaming cafe life" + }, + { + "appid": 2806250, + "normalized_name": "the dreamfin peak" + }, + { + "appid": 2806260, + "normalized_name": "crossing the sea" + }, + { + "appid": 2806270, + "normalized_name": "妄想推理アドベンチャーアルティメットジャンボジェット殺人事件" + }, + { + "appid": 2806340, + "normalized_name": "声息 la voix" + }, + { + "appid": 2806350, + "normalized_name": "霊迷の湯" + }, + { + "appid": 2806360, + "normalized_name": "distant past" + }, + { + "appid": 2806380, + "normalized_name": "dead charge" + }, + { + "appid": 2806400, + "normalized_name": "isekai valley" + }, + { + "appid": 2806410, + "normalized_name": "project entropy" + }, + { + "appid": 2806470, + "normalized_name": "好喜歡每天都看到只穿內褲的女室友們" + }, + { + "appid": 2806480, + "normalized_name": "marie's travel" + }, + { + "appid": 2806530, + "normalized_name": "辩经[yo_choice!!!!!]" + }, + { + "appid": 2806640, + "normalized_name": "the talos principle reawakened" + }, + { + "appid": 2806660, + "normalized_name": "garm ruins" + }, + { + "appid": 2806780, + "normalized_name": "virtual jigsaw puzzles animals" + }, + { + "appid": 2806790, + "normalized_name": "fungiman 2" + }, + { + "appid": 2806800, + "normalized_name": "kitchen delights" + }, + { + "appid": 2806830, + "normalized_name": "welcome to ukraine" + }, + { + "appid": 2806840, + "normalized_name": "arcane array arena" + }, + { + "appid": 2806870, + "normalized_name": "kitt's quest" + }, + { + "appid": 2806890, + "normalized_name": "stay alive my son (vr) a true story about a father's relentless search for his son" + }, + { + "appid": 2806940, + "normalized_name": "b1" + }, + { + "appid": 2807100, + "normalized_name": "light box" + }, + { + "appid": 2807110, + "normalized_name": "clocked" + }, + { + "appid": 2807130, + "normalized_name": "forg" + }, + { + "appid": 2807150, + "normalized_name": "worshippers of cthulhu" + }, + { + "appid": 2807160, + "normalized_name": "arcane bastion" + }, + { + "appid": 2807180, + "normalized_name": "bodyrain" + }, + { + "appid": 2807190, + "normalized_name": "karga" + }, + { + "appid": 2807210, + "normalized_name": "robo cats" + }, + { + "appid": 2807220, + "normalized_name": "paranormal found footage" + }, + { + "appid": 2807240, + "normalized_name": "swamp up" + }, + { + "appid": 2807250, + "normalized_name": "my friend's family (captain kitty)" + }, + { + "appid": 2807260, + "normalized_name": "my summer (insanerotica)" + }, + { + "appid": 2807290, + "normalized_name": "cardboard chronicles" + }, + { + "appid": 2807310, + "normalized_name": "farm racing" + }, + { + "appid": 2807320, + "normalized_name": "forest keeper" + }, + { + "appid": 2807340, + "normalized_name": "magic runes" + }, + { + "appid": 2807360, + "normalized_name": "successful business" + }, + { + "appid": 2807370, + "normalized_name": "mimic dungeon" + }, + { + "appid": 2807390, + "normalized_name": "district panic" + }, + { + "appid": 2807430, + "normalized_name": "gravity" + }, + { + "appid": 2807460, + "normalized_name": "the fruit stealing girls" + }, + { + "appid": 2807490, + "normalized_name": "visca's earth conquest" + }, + { + "appid": 2807510, + "normalized_name": "moonport" + }, + { + "appid": 2807540, + "normalized_name": "harsh." + }, + { + "appid": 2807600, + "normalized_name": "meowsterpiece museum" + }, + { + "appid": 2807610, + "normalized_name": "queens climax" + }, + { + "appid": 2807860, + "normalized_name": "battle street" + }, + { + "appid": 2807870, + "normalized_name": "darkness ritual impasse" + }, + { + "appid": 2807880, + "normalized_name": "the month after" + }, + { + "appid": 2807900, + "normalized_name": "kippy's world" + }, + { + "appid": 2808130, + "normalized_name": "caden's climb" + }, + { + "appid": 2808150, + "normalized_name": "race against a duck duck deluxe" + }, + { + "appid": 2808220, + "normalized_name": "robot battle" + }, + { + "appid": 2808250, + "normalized_name": "fragment's note+" + }, + { + "appid": 2808260, + "normalized_name": "ducks in a row" + }, + { + "appid": 2808270, + "normalized_name": "buckshot with friends" + }, + { + "appid": 2808280, + "normalized_name": "莫比乌斯的封印" + }, + { + "appid": 2808290, + "normalized_name": "ai fightclub" + }, + { + "appid": 2808320, + "normalized_name": "古神模拟器 eldergods simulator" + }, + { + "appid": 2808350, + "normalized_name": "idosra the electric renaissance" + }, + { + "appid": 2808360, + "normalized_name": "code racer" + }, + { + "appid": 2808390, + "normalized_name": "call of interview" + }, + { + "appid": 2808450, + "normalized_name": "make it! taiyaki" + }, + { + "appid": 2808470, + "normalized_name": "re ark" + }, + { + "appid": 2808480, + "normalized_name": "除岁" + }, + { + "appid": 2808490, + "normalized_name": "梗过100关" + }, + { + "appid": 2808530, + "normalized_name": "killbeat" + }, + { + "appid": 2808570, + "normalized_name": "kunkun dream startles the soul" + }, + { + "appid": 2808600, + "normalized_name": "sync your mind" + }, + { + "appid": 2808610, + "normalized_name": "bubballs" + }, + { + "appid": 2808630, + "normalized_name": "paintball playground" + }, + { + "appid": 2808640, + "normalized_name": "lazulight by your side" + }, + { + "appid": 2808690, + "normalized_name": "dfuse" + }, + { + "appid": 2808700, + "normalized_name": "queen don't be afraid" + }, + { + "appid": 2808710, + "normalized_name": "jackandbursh杰克和刷子" + }, + { + "appid": 2808750, + "normalized_name": "project rocket invasion resurgence" + }, + { + "appid": 2808760, + "normalized_name": "unknown signal" + }, + { + "appid": 2808770, + "normalized_name": "library fantasy" + }, + { + "appid": 2808780, + "normalized_name": "operation temple" + }, + { + "appid": 2808790, + "normalized_name": "search of the source" + }, + { + "appid": 2808800, + "normalized_name": "detechtive 2112" + }, + { + "appid": 2808810, + "normalized_name": "six blow bullet rain" + }, + { + "appid": 2808830, + "normalized_name": "league of masters auto chess" + }, + { + "appid": 2808840, + "normalized_name": "mouseworld" + }, + { + "appid": 2808860, + "normalized_name": "arcane chaos" + }, + { + "appid": 2808870, + "normalized_name": "no dead ends" + }, + { + "appid": 2808920, + "normalized_name": "stay focus" + }, + { + "appid": 2808930, + "normalized_name": "lust goddess" + }, + { + "appid": 2808950, + "normalized_name": "gym camp simulator" + }, + { + "appid": 2808960, + "normalized_name": "shui's odyssey" + }, + { + "appid": 2808980, + "normalized_name": "サイボーグクトパ r 17.99" + }, + { + "appid": 2809030, + "normalized_name": "dreamboat" + }, + { + "appid": 2809090, + "normalized_name": "sacrifice for sale" + }, + { + "appid": 2809110, + "normalized_name": "enkindle" + }, + { + "appid": 2809120, + "normalized_name": "red snow" + }, + { + "appid": 2809170, + "normalized_name": "blindsighted" + }, + { + "appid": 2809200, + "normalized_name": "fading skies" + }, + { + "appid": 2809220, + "normalized_name": "status entropos" + }, + { + "appid": 2809230, + "normalized_name": "doppelganger" + }, + { + "appid": 2809240, + "normalized_name": "elemental exiles" + }, + { + "appid": 2809250, + "normalized_name": "the midnight barber" + }, + { + "appid": 2809260, + "normalized_name": "the dark thicket" + }, + { + "appid": 2809290, + "normalized_name": "the wandering demon blade" + }, + { + "appid": 2809300, + "normalized_name": "temples vs buildings" + }, + { + "appid": 2809370, + "normalized_name": "the crack (壳中之物)" + }, + { + "appid": 2809380, + "normalized_name": "last frontier" + }, + { + "appid": 2809390, + "normalized_name": "mortal hire" + }, + { + "appid": 2809410, + "normalized_name": "empire factionwar" + }, + { + "appid": 2809430, + "normalized_name": "serbian dancing lady" + }, + { + "appid": 2809450, + "normalized_name": "headwaters" + }, + { + "appid": 2809460, + "normalized_name": "terminal esc" + }, + { + "appid": 2809470, + "normalized_name": "sweets inc." + }, + { + "appid": 2809480, + "normalized_name": "six blow hatching eggs" + }, + { + "appid": 2809510, + "normalized_name": "screamboat willie" + }, + { + "appid": 2809520, + "normalized_name": "my liege" + }, + { + "appid": 2809540, + "normalized_name": "vinlanders" + }, + { + "appid": 2809570, + "normalized_name": "caution ahead part 1" + }, + { + "appid": 2809620, + "normalized_name": "seven bullets horror 7発の弾丸ホラー" + }, + { + "appid": 2809640, + "normalized_name": "黑枸杞:悟净" + }, + { + "appid": 2809660, + "normalized_name": "the remake of the end of the greatest rpg of all time" + }, + { + "appid": 2809670, + "normalized_name": "micro stream rpg" + }, + { + "appid": 2809700, + "normalized_name": "mushroom moonrise" + }, + { + "appid": 2809770, + "normalized_name": "eugenia's pursuit the hidden legacy" + }, + { + "appid": 2809820, + "normalized_name": "dawn of the ashen queen" + }, + { + "appid": 2809830, + "normalized_name": "hidden animals find detective neko" + }, + { + "appid": 2809920, + "normalized_name": "drop mahjong tiles" + }, + { + "appid": 2809950, + "normalized_name": "sh*thead" + }, + { + "appid": 2809960, + "normalized_name": "立ち絵が変なポーズの恋愛アドベンチャー" + }, + { + "appid": 2809970, + "normalized_name": "xenotecharena" + }, + { + "appid": 2810010, + "normalized_name": "foster the monster" + }, + { + "appid": 2810050, + "normalized_name": "blitzbot" + }, + { + "appid": 2810070, + "normalized_name": "surviving ceres" + }, + { + "appid": 2810080, + "normalized_name": "unearther" + }, + { + "appid": 2810090, + "normalized_name": "conversation with a rock" + }, + { + "appid": 2810110, + "normalized_name": "knight's saga evil goblins" + }, + { + "appid": 2810120, + "normalized_name": "traveler eternal night" + }, + { + "appid": 2810150, + "normalized_name": "gay sex adventures episode 4" + }, + { + "appid": 2810160, + "normalized_name": "square of joy" + }, + { + "appid": 2810170, + "normalized_name": "creepy creepy love" + }, + { + "appid": 2810190, + "normalized_name": "nanuka secret of the shattering moon" + }, + { + "appid": 2810210, + "normalized_name": "codename cure ii" + }, + { + "appid": 2810250, + "normalized_name": "vigilant inquest" + }, + { + "appid": 2810260, + "normalized_name": "sleeping forest" + }, + { + "appid": 2810270, + "normalized_name": "my rusty submarine new waters" + }, + { + "appid": 2810320, + "normalized_name": "世界傳記" + }, + { + "appid": 2810330, + "normalized_name": "cats in boxes" + }, + { + "appid": 2810340, + "normalized_name": "lightbear grizzelda returns" + }, + { + "appid": 2810370, + "normalized_name": "bal" + }, + { + "appid": 2810380, + "normalized_name": "engacho dreamy butterfly" + }, + { + "appid": 2810410, + "normalized_name": "rock tetrus" + }, + { + "appid": 2810450, + "normalized_name": "european card wars" + }, + { + "appid": 2810460, + "normalized_name": "the boy sorcerer lost memory" + }, + { + "appid": 2810470, + "normalized_name": "ensnared" + }, + { + "appid": 2810500, + "normalized_name": "thievery online" + }, + { + "appid": 2810510, + "normalized_name": "under walls" + }, + { + "appid": 2810550, + "normalized_name": "pager" + }, + { + "appid": 2810580, + "normalized_name": "there's something in the ice" + }, + { + "appid": 2810650, + "normalized_name": "use turbo to" + }, + { + "appid": 2810670, + "normalized_name": "彼岸之旅" + }, + { + "appid": 2810700, + "normalized_name": "octopus goulash" + }, + { + "appid": 2810720, + "normalized_name": "hysteria in howlsbend" + }, + { + "appid": 2810730, + "normalized_name": "a building full of cats 2" + }, + { + "appid": 2810770, + "normalized_name": "realmweaver" + }, + { + "appid": 2810780, + "normalized_name": "forsaken frontiers" + }, + { + "appid": 2810790, + "normalized_name": "the belligerence" + }, + { + "appid": 2810830, + "normalized_name": "this magical girl is a b☆tch" + }, + { + "appid": 2810880, + "normalized_name": "draft day sports college basketball 2024" + }, + { + "appid": 2810900, + "normalized_name": "断决留存" + }, + { + "appid": 2810970, + "normalized_name": "clash of empires" + }, + { + "appid": 2811000, + "normalized_name": "幽都酒馆" + }, + { + "appid": 2811040, + "normalized_name": "crystal survivor" + }, + { + "appid": 2811060, + "normalized_name": "星球管理公司pmc" + }, + { + "appid": 2811070, + "normalized_name": "slot adventure" + }, + { + "appid": 2811080, + "normalized_name": "save twiks" + }, + { + "appid": 2811100, + "normalized_name": "the mosquito gang" + }, + { + "appid": 2811110, + "normalized_name": "silhouettes" + }, + { + "appid": 2811130, + "normalized_name": "eagles of world war 2" + }, + { + "appid": 2811150, + "normalized_name": "idlecraft" + }, + { + "appid": 2811190, + "normalized_name": "click to ten 3d" + }, + { + "appid": 2811200, + "normalized_name": "machick" + }, + { + "appid": 2811220, + "normalized_name": "palm paradise garden" + }, + { + "appid": 2811240, + "normalized_name": "さよなら人生。" + }, + { + "appid": 2811250, + "normalized_name": "chicken tale" + }, + { + "appid": 2811270, + "normalized_name": "death tree" + }, + { + "appid": 2811280, + "normalized_name": "black plane" + }, + { + "appid": 2811360, + "normalized_name": "hack.ing" + }, + { + "appid": 2811370, + "normalized_name": "relocation simulator" + }, + { + "appid": 2811400, + "normalized_name": "百变宁采臣" + }, + { + "appid": 2811440, + "normalized_name": "nuke them all prologue" + }, + { + "appid": 2811500, + "normalized_name": "uav operator" + }, + { + "appid": 2811530, + "normalized_name": "candy shop simulator" + }, + { + "appid": 2811580, + "normalized_name": "文若九洲记:艳欲之乡" + }, + { + "appid": 2811590, + "normalized_name": "esc (electronics security company)" + }, + { + "appid": 2811620, + "normalized_name": "snow white ashes" + }, + { + "appid": 2811650, + "normalized_name": "gums gang" + }, + { + "appid": 2811700, + "normalized_name": "dino rush" + }, + { + "appid": 2811720, + "normalized_name": "i'm lost in space" + }, + { + "appid": 2811730, + "normalized_name": "my hot neighbor kayla" + }, + { + "appid": 2811750, + "normalized_name": "grimm's folly" + }, + { + "appid": 2811760, + "normalized_name": "villienville. echoes of deception" + }, + { + "appid": 2811780, + "normalized_name": "deck vs doom" + }, + { + "appid": 2811790, + "normalized_name": "qi" + }, + { + "appid": 2811830, + "normalized_name": "ocean world eden crafters prologue" + }, + { + "appid": 2811850, + "normalized_name": "eureka! superconductor lab" + }, + { + "appid": 2811860, + "normalized_name": "sovereign elect" + }, + { + "appid": 2811910, + "normalized_name": "deflect boy" + }, + { + "appid": 2811940, + "normalized_name": "region gear d" + }, + { + "appid": 2811960, + "normalized_name": "world without reason" + }, + { + "appid": 2812020, + "normalized_name": "finally free" + }, + { + "appid": 2812040, + "normalized_name": "angel spirit" + }, + { + "appid": 2812050, + "normalized_name": "kary" + }, + { + "appid": 2812110, + "normalized_name": "touching married woman simulator" + }, + { + "appid": 2812120, + "normalized_name": "clock rogue" + }, + { + "appid": 2812170, + "normalized_name": "pirates. naval battle" + }, + { + "appid": 2812180, + "normalized_name": "single by choice" + }, + { + "appid": 2812230, + "normalized_name": "noname" + }, + { + "appid": 2812240, + "normalized_name": "whispers in the void" + }, + { + "appid": 2812380, + "normalized_name": "burkina faso radical insurgency" + }, + { + "appid": 2812420, + "normalized_name": "holiday motel simulator" + }, + { + "appid": 2812430, + "normalized_name": "the last stop" + }, + { + "appid": 2812440, + "normalized_name": "majo strategy" + }, + { + "appid": 2812450, + "normalized_name": "tiny garden" + }, + { + "appid": 2812480, + "normalized_name": "月白" + }, + { + "appid": 2812490, + "normalized_name": "hunter beat" + }, + { + "appid": 2812520, + "normalized_name": "treasures of the sunken ship" + }, + { + "appid": 2812530, + "normalized_name": "versus dev" + }, + { + "appid": 2812540, + "normalized_name": "palmride after flight" + }, + { + "appid": 2812610, + "normalized_name": "curtain call" + }, + { + "appid": 2812650, + "normalized_name": "降灵 evil draws close" + }, + { + "appid": 2812670, + "normalized_name": "uncanny labyrinth the 9th entrants" + }, + { + "appid": 2812680, + "normalized_name": "i.o. setter" + }, + { + "appid": 2812720, + "normalized_name": "pigmenta" + }, + { + "appid": 2812750, + "normalized_name": "fuck in police" + }, + { + "appid": 2812780, + "normalized_name": "enthralled" + }, + { + "appid": 2812800, + "normalized_name": "for ever melancholia" + }, + { + "appid": 2812820, + "normalized_name": "pape rangers" + }, + { + "appid": 2812850, + "normalized_name": "甜心ai追捕计划" + }, + { + "appid": 2812890, + "normalized_name": "astral arena" + }, + { + "appid": 2812900, + "normalized_name": "100 doors escape let me in" + }, + { + "appid": 2812910, + "normalized_name": "pal up!" + }, + { + "appid": 2812920, + "normalized_name": "龙与自然" + }, + { + "appid": 2812980, + "normalized_name": "darts up" + }, + { + "appid": 2813120, + "normalized_name": "clandestine the hidden truth" + }, + { + "appid": 2813220, + "normalized_name": "nectarmare" + }, + { + "appid": 2813240, + "normalized_name": "cemetery of bob" + }, + { + "appid": 2813250, + "normalized_name": "lost in failures" + }, + { + "appid": 2813270, + "normalized_name": "incoherence" + }, + { + "appid": 2813290, + "normalized_name": "spiderbro 2" + }, + { + "appid": 2813320, + "normalized_name": "fireworks inc." + }, + { + "appid": 2813330, + "normalized_name": "rush heroes" + }, + { + "appid": 2813340, + "normalized_name": "kosmo skirmish" + }, + { + "appid": 2813380, + "normalized_name": "mega quiz gaming" + }, + { + "appid": 2813430, + "normalized_name": "money block" + }, + { + "appid": 2813440, + "normalized_name": "toilet paper please" + }, + { + "appid": 2813460, + "normalized_name": "micro dungeon" + }, + { + "appid": 2813480, + "normalized_name": "nyamon tamer retro" + }, + { + "appid": 2813510, + "normalized_name": "exorkízein" + }, + { + "appid": 2813560, + "normalized_name": "crumbleminer" + }, + { + "appid": 2813590, + "normalized_name": "zone 6" + }, + { + "appid": 2813690, + "normalized_name": "piece it!" + }, + { + "appid": 2813710, + "normalized_name": "gardener plant creator" + }, + { + "appid": 2813720, + "normalized_name": "meow playground" + }, + { + "appid": 2813730, + "normalized_name": "hyperion champions of light" + }, + { + "appid": 2813740, + "normalized_name": "hobgoblins against dwarfs" + }, + { + "appid": 2813750, + "normalized_name": "rhythm reunion indie dating sim visual novel" + }, + { + "appid": 2813760, + "normalized_name": "anomaly loop" + }, + { + "appid": 2813890, + "normalized_name": "hyper flux" + }, + { + "appid": 2813900, + "normalized_name": "the office killer" + }, + { + "appid": 2813970, + "normalized_name": "the yellow moon's school the ghosts day" + }, + { + "appid": 2813980, + "normalized_name": "dungeons & dimensions" + }, + { + "appid": 2813990, + "normalized_name": "shoni island" + }, + { + "appid": 2814000, + "normalized_name": "shelf life" + }, + { + "appid": 2814010, + "normalized_name": "underwater" + }, + { + "appid": 2814040, + "normalized_name": "settle the score" + }, + { + "appid": 2814060, + "normalized_name": "skulltide" + }, + { + "appid": 2814080, + "normalized_name": "starecrown (demo)" + }, + { + "appid": 2814090, + "normalized_name": "a good night's rest" + }, + { + "appid": 2814180, + "normalized_name": "the witch's assistant" + }, + { + "appid": 2814200, + "normalized_name": "deep into darkness" + }, + { + "appid": 2814230, + "normalized_name": "halls of greed" + }, + { + "appid": 2814260, + "normalized_name": "hypcampex" + }, + { + "appid": 2814270, + "normalized_name": "in a detective's mind" + }, + { + "appid": 2814280, + "normalized_name": "cellfish" + }, + { + "appid": 2814340, + "normalized_name": "aeris (beta)" + }, + { + "appid": 2814360, + "normalized_name": "transmutowers" + }, + { + "appid": 2814370, + "normalized_name": "rejuvan" + }, + { + "appid": 2814400, + "normalized_name": "be human...or die trying" + }, + { + "appid": 2814520, + "normalized_name": "blokhedjelli" + }, + { + "appid": 2814540, + "normalized_name": "亚穆蒂斯" + }, + { + "appid": 2814560, + "normalized_name": "pro football" + }, + { + "appid": 2814570, + "normalized_name": "joe biden escape from maga chapter 1" + }, + { + "appid": 2814610, + "normalized_name": "the deluca family season 1" + }, + { + "appid": 2814640, + "normalized_name": "mercs inc" + }, + { + "appid": 2814660, + "normalized_name": "spicy fruit" + }, + { + "appid": 2814680, + "normalized_name": "among the whispers provocation" + }, + { + "appid": 2814720, + "normalized_name": "(堕落之王)fallen king" + }, + { + "appid": 2814760, + "normalized_name": "immortals must die" + }, + { + "appid": 2814790, + "normalized_name": "the darkness below" + }, + { + "appid": 2814810, + "normalized_name": "我决心做3a 01/65" + }, + { + "appid": 2814860, + "normalized_name": "vindictus defying fate" + }, + { + "appid": 2814880, + "normalized_name": "synchro" + }, + { + "appid": 2814910, + "normalized_name": "the aquarium does not dance" + }, + { + "appid": 2814920, + "normalized_name": "spawn world" + }, + { + "appid": 2814930, + "normalized_name": "last viking ragnarok loop" + }, + { + "appid": 2814940, + "normalized_name": "incline" + }, + { + "appid": 2814950, + "normalized_name": "lazy climbers" + }, + { + "appid": 2814990, + "normalized_name": "screamer" + }, + { + "appid": 2815000, + "normalized_name": "pitta" + }, + { + "appid": 2815020, + "normalized_name": "slender the arrival vr" + }, + { + "appid": 2815030, + "normalized_name": "football clubs 实战十一人" + }, + { + "appid": 2815040, + "normalized_name": "nose breathing rebellion" + }, + { + "appid": 2815060, + "normalized_name": "eclipse breaker" + }, + { + "appid": 2815080, + "normalized_name": "forgotten 23" + }, + { + "appid": 2815100, + "normalized_name": "christmas journey to santa" + }, + { + "appid": 2815110, + "normalized_name": "ascent of the dragon" + }, + { + "appid": 2815120, + "normalized_name": "e startup 2 business tycoon prologue" + }, + { + "appid": 2815150, + "normalized_name": "hollow floor" + }, + { + "appid": 2815180, + "normalized_name": "echovale" + }, + { + "appid": 2815210, + "normalized_name": "marzia lost in space" + }, + { + "appid": 2815260, + "normalized_name": "digitalter" + }, + { + "appid": 2815360, + "normalized_name": "run from the hunt" + }, + { + "appid": 2815370, + "normalized_name": "gem's hentai puzzle" + }, + { + "appid": 2815390, + "normalized_name": "仙宗箓" + }, + { + "appid": 2815460, + "normalized_name": "maze of realities symphony of invention collector's" + }, + { + "appid": 2815470, + "normalized_name": "haunt n seek silent siren" + }, + { + "appid": 2815500, + "normalized_name": "stardust demon" + }, + { + "appid": 2815530, + "normalized_name": "the last drop" + }, + { + "appid": 2815560, + "normalized_name": "siphonogore" + }, + { + "appid": 2815570, + "normalized_name": "fur and void" + }, + { + "appid": 2815580, + "normalized_name": "bunny rampage history of revenge" + }, + { + "appid": 2815590, + "normalized_name": "twizzle puzzle birds" + }, + { + "appid": 2815600, + "normalized_name": "sterospeed" + }, + { + "appid": 2815610, + "normalized_name": "chronicon survivors" + }, + { + "appid": 2815670, + "normalized_name": "path to the creator" + }, + { + "appid": 2815680, + "normalized_name": "astral vangard" + }, + { + "appid": 2815690, + "normalized_name": "uncle z" + }, + { + "appid": 2815700, + "normalized_name": "the last days of friendship valley" + }, + { + "appid": 2815710, + "normalized_name": "primavera lihbor" + }, + { + "appid": 2815740, + "normalized_name": "andy blast vs the forces of evil" + }, + { + "appid": 2815750, + "normalized_name": "muchi muchi sex" + }, + { + "appid": 2815760, + "normalized_name": "absolute insanity" + }, + { + "appid": 2815770, + "normalized_name": "evostrike" + }, + { + "appid": 2815800, + "normalized_name": "anomalytics from the files of the arcane statistics authority" + }, + { + "appid": 2815810, + "normalized_name": "golgothica" + }, + { + "appid": 2815830, + "normalized_name": "heroic kingdom origins" + }, + { + "appid": 2815840, + "normalized_name": "nash racing battle" + }, + { + "appid": 2815910, + "normalized_name": "遥遥领先" + }, + { + "appid": 2815960, + "normalized_name": "robzawar" + }, + { + "appid": 2816100, + "normalized_name": "cookie" + }, + { + "appid": 2816140, + "normalized_name": "smile you're being filmed" + }, + { + "appid": 2816210, + "normalized_name": "where is george" + }, + { + "appid": 2816260, + "normalized_name": "kubits gallery" + }, + { + "appid": 2816270, + "normalized_name": "discin" + }, + { + "appid": 2816280, + "normalized_name": "save the castle!" + }, + { + "appid": 2816390, + "normalized_name": "paintball the puzzle game" + }, + { + "appid": 2816400, + "normalized_name": "九幽剑记" + }, + { + "appid": 2816410, + "normalized_name": "the dark mind" + }, + { + "appid": 2816420, + "normalized_name": "slime drop" + }, + { + "appid": 2816460, + "normalized_name": "spells and sacrifice" + }, + { + "appid": 2816490, + "normalized_name": "cubactory" + }, + { + "appid": 2816500, + "normalized_name": "dissecting love" + }, + { + "appid": 2816510, + "normalized_name": "rebuild the wall" + }, + { + "appid": 2816520, + "normalized_name": "alchemist's secret" + }, + { + "appid": 2816530, + "normalized_name": "slimes are the strongest" + }, + { + "appid": 2816550, + "normalized_name": "speed nfl" + }, + { + "appid": 2816570, + "normalized_name": "the land of the magnates" + }, + { + "appid": 2816580, + "normalized_name": "deck of delirium" + }, + { + "appid": 2816590, + "normalized_name": "convento" + }, + { + "appid": 2816600, + "normalized_name": "exovoid" + }, + { + "appid": 2816630, + "normalized_name": "brand new world" + }, + { + "appid": 2816710, + "normalized_name": "the backrooms unseen tapes" + }, + { + "appid": 2816720, + "normalized_name": "symphony stride" + }, + { + "appid": 2816730, + "normalized_name": "confined leaving okb 134" + }, + { + "appid": 2816740, + "normalized_name": "augurium mortis" + }, + { + "appid": 2816750, + "normalized_name": "寝取られ恋愛事情~上司に絡め取られた乙女心~" + }, + { + "appid": 2816760, + "normalized_name": "ooka ooka adventure" + }, + { + "appid": 2816810, + "normalized_name": "tarot realms" + }, + { + "appid": 2816830, + "normalized_name": "the corridors" + }, + { + "appid": 2816870, + "normalized_name": "mighty morphin power rangers rita's rewind" + }, + { + "appid": 2816920, + "normalized_name": "退婚后,宗主马甲藏不住" + }, + { + "appid": 2816940, + "normalized_name": "bloody heaven 2" + }, + { + "appid": 2816950, + "normalized_name": "yaoling mythical journey" + }, + { + "appid": 2817020, + "normalized_name": "lightist" + }, + { + "appid": 2817030, + "normalized_name": "月之镜:夜月无光" + }, + { + "appid": 2817050, + "normalized_name": "fool's paradise" + }, + { + "appid": 2817070, + "normalized_name": "梦里彩笺来" + }, + { + "appid": 2817110, + "normalized_name": "relic" + }, + { + "appid": 2817140, + "normalized_name": "怦然心动的她们" + }, + { + "appid": 2817180, + "normalized_name": "guardian" + }, + { + "appid": 2817190, + "normalized_name": "with in the obscurity" + }, + { + "appid": 2817200, + "normalized_name": "how heavy are my nuts?" + }, + { + "appid": 2817210, + "normalized_name": "할 짓 없는 군주님" + }, + { + "appid": 2817240, + "normalized_name": "let's roll" + }, + { + "appid": 2817270, + "normalized_name": "fountain" + }, + { + "appid": 2817390, + "normalized_name": "fallen gf" + }, + { + "appid": 2817420, + "normalized_name": "attribute2 / 随手属性2" + }, + { + "appid": 2817450, + "normalized_name": "miaow.emma" + }, + { + "appid": 2817480, + "normalized_name": "eternal end" + }, + { + "appid": 2817500, + "normalized_name": "rangbi" + }, + { + "appid": 2817520, + "normalized_name": "ocean desolation" + }, + { + "appid": 2817530, + "normalized_name": "恋恋女团" + }, + { + "appid": 2817550, + "normalized_name": "mika's battle s" + }, + { + "appid": 2817580, + "normalized_name": "autofahrt" + }, + { + "appid": 2817600, + "normalized_name": "wizard's legacy" + }, + { + "appid": 2817610, + "normalized_name": "divnozemye" + }, + { + "appid": 2817620, + "normalized_name": "machinika atlas" + }, + { + "appid": 2817640, + "normalized_name": "wer weiß denn sowas? das 3. spiel" + }, + { + "appid": 2817690, + "normalized_name": "天呐!找不到真爱就扑街!" + }, + { + "appid": 2817760, + "normalized_name": "yokai tales fox" + }, + { + "appid": 2817780, + "normalized_name": "magical school girls battle arena" + }, + { + "appid": 2817850, + "normalized_name": "bricks breaker pro" + }, + { + "appid": 2817910, + "normalized_name": "the nightwatch" + }, + { + "appid": 2817920, + "normalized_name": "veil of the skies" + }, + { + "appid": 2817930, + "normalized_name": "skate o'clock" + }, + { + "appid": 2817950, + "normalized_name": "quadrillion" + }, + { + "appid": 2817960, + "normalized_name": "button man" + }, + { + "appid": 2817970, + "normalized_name": "human souvenir" + }, + { + "appid": 2818010, + "normalized_name": "沉舟" + }, + { + "appid": 2818020, + "normalized_name": "focus tower" + }, + { + "appid": 2818060, + "normalized_name": "permanent hope & vacuum" + }, + { + "appid": 2818080, + "normalized_name": "echoes of the abyss" + }, + { + "appid": 2818090, + "normalized_name": "poem ex machina" + }, + { + "appid": 2818120, + "normalized_name": "solar kingdoms human survival" + }, + { + "appid": 2818150, + "normalized_name": "cattle country" + }, + { + "appid": 2818160, + "normalized_name": "edenbound" + }, + { + "appid": 2818210, + "normalized_name": "sustained" + }, + { + "appid": 2818260, + "normalized_name": "vigor" + }, + { + "appid": 2818300, + "normalized_name": "keepers of ancient lands" + }, + { + "appid": 2818340, + "normalized_name": "love and crime" + }, + { + "appid": 2818380, + "normalized_name": "everlords" + }, + { + "appid": 2818390, + "normalized_name": "the secret weapon" + }, + { + "appid": 2818410, + "normalized_name": "factory tower" + }, + { + "appid": 2818420, + "normalized_name": "black sails" + }, + { + "appid": 2818440, + "normalized_name": "alien paradise" + }, + { + "appid": 2818450, + "normalized_name": "プトリカ 1st.cut the reason she must perish" + }, + { + "appid": 2818480, + "normalized_name": "chaos express delivery simulator" + }, + { + "appid": 2818500, + "normalized_name": "door simulator" + }, + { + "appid": 2818510, + "normalized_name": "observe and report" + }, + { + "appid": 2818520, + "normalized_name": "trial of nightmares" + }, + { + "appid": 2818530, + "normalized_name": "conquering ciros" + }, + { + "appid": 2818560, + "normalized_name": "cracking the stone" + }, + { + "appid": 2818590, + "normalized_name": "ranch mayhem active idler" + }, + { + "appid": 2818600, + "normalized_name": "d day invasions" + }, + { + "appid": 2818620, + "normalized_name": "magic monster slasher" + }, + { + "appid": 2818630, + "normalized_name": "trucker joe 2" + }, + { + "appid": 2818640, + "normalized_name": "downpour dash!" + }, + { + "appid": 2818660, + "normalized_name": "bad mechanic" + }, + { + "appid": 2818670, + "normalized_name": "challenges of the cursed island" + }, + { + "appid": 2818680, + "normalized_name": "marble meadows" + }, + { + "appid": 2818690, + "normalized_name": "a short odyssey" + }, + { + "appid": 2818730, + "normalized_name": "kindred" + }, + { + "appid": 2818780, + "normalized_name": "avenir tower" + }, + { + "appid": 2818800, + "normalized_name": "symbiophobia" + }, + { + "appid": 2818830, + "normalized_name": "ghost ascension" + }, + { + "appid": 2818860, + "normalized_name": "outflow" + }, + { + "appid": 2818870, + "normalized_name": "engine room" + }, + { + "appid": 2818890, + "normalized_name": "powercell" + }, + { + "appid": 2818900, + "normalized_name": "lambda enigma" + }, + { + "appid": 2818920, + "normalized_name": "world turned stone" + }, + { + "appid": 2818950, + "normalized_name": "code name unstable" + }, + { + "appid": 2818980, + "normalized_name": "the gravedigger" + }, + { + "appid": 2819030, + "normalized_name": "诡拓" + }, + { + "appid": 2819070, + "normalized_name": "因果律 inside the memory" + }, + { + "appid": 2819110, + "normalized_name": "the chronicles of lancelot gold" + }, + { + "appid": 2819120, + "normalized_name": "女神之战" + }, + { + "appid": 2819140, + "normalized_name": "skeleton messi よし!" + }, + { + "appid": 2819160, + "normalized_name": "jabara princess" + }, + { + "appid": 2819170, + "normalized_name": "desktop baseball 2" + }, + { + "appid": 2819180, + "normalized_name": "last harem" + }, + { + "appid": 2819190, + "normalized_name": "the game awards" + }, + { + "appid": 2819210, + "normalized_name": "trolley path to gold" + }, + { + "appid": 2819220, + "normalized_name": "club koala" + }, + { + "appid": 2819290, + "normalized_name": "powerup humans" + }, + { + "appid": 2819300, + "normalized_name": "bump in the night" + }, + { + "appid": 2819330, + "normalized_name": "live cam simulator" + }, + { + "appid": 2819400, + "normalized_name": "disc golf masters" + }, + { + "appid": 2819410, + "normalized_name": "space chaos" + }, + { + "appid": 2819430, + "normalized_name": "solitary ash" + }, + { + "appid": 2819470, + "normalized_name": "aquapark tycoon" + }, + { + "appid": 2819510, + "normalized_name": "unparalleled zero" + }, + { + "appid": 2819520, + "normalized_name": "viking rise" + }, + { + "appid": 2819540, + "normalized_name": "pixel car racing blocky crash" + }, + { + "appid": 2819610, + "normalized_name": "bodacious babes nightlife" + }, + { + "appid": 2819630, + "normalized_name": "tumble ball" + }, + { + "appid": 2819730, + "normalized_name": "the island escape room" + }, + { + "appid": 2819750, + "normalized_name": "deathless death" + }, + { + "appid": 2819780, + "normalized_name": "neon fantasy butterflies" + }, + { + "appid": 2819830, + "normalized_name": "touhou kourinden ~ mythos of phantasmagoria" + }, + { + "appid": 2819840, + "normalized_name": "blindead" + }, + { + "appid": 2819870, + "normalized_name": "great powers" + }, + { + "appid": 2819880, + "normalized_name": "the magic world 2 curse of the ancients" + }, + { + "appid": 2819920, + "normalized_name": "oolo" + }, + { + "appid": 2819940, + "normalized_name": "vacant's mine" + }, + { + "appid": 2819950, + "normalized_name": "the warehouse" + }, + { + "appid": 2819970, + "normalized_name": "jeepney simulator 2" + }, + { + "appid": 2820000, + "normalized_name": "to the flame" + }, + { + "appid": 2820010, + "normalized_name": "the black siege" + }, + { + "appid": 2820020, + "normalized_name": "stellar outpost commander" + }, + { + "appid": 2820030, + "normalized_name": "spy 1 lovecraftian" + }, + { + "appid": 2820060, + "normalized_name": "preface undiscovered world" + }, + { + "appid": 2820080, + "normalized_name": "mad skills motocross chasing the dream" + }, + { + "appid": 2820100, + "normalized_name": "hexocity" + }, + { + "appid": 2820110, + "normalized_name": "anno 1503 history" + }, + { + "appid": 2820120, + "normalized_name": "shifumi championship" + }, + { + "appid": 2820130, + "normalized_name": "anno 1602 history" + }, + { + "appid": 2820140, + "normalized_name": "anno 1701 history" + }, + { + "appid": 2820160, + "normalized_name": "irreversible" + }, + { + "appid": 2820190, + "normalized_name": "sipssassin" + }, + { + "appid": 2820200, + "normalized_name": "霊室" + }, + { + "appid": 2820220, + "normalized_name": "housemates" + }, + { + "appid": 2820250, + "normalized_name": "railroad scheduler" + }, + { + "appid": 2820270, + "normalized_name": "weeny wise" + }, + { + "appid": 2820280, + "normalized_name": "naginami and the crimson thread" + }, + { + "appid": 2820310, + "normalized_name": "muchacho bean" + }, + { + "appid": 2820390, + "normalized_name": "seclusion" + }, + { + "appid": 2820400, + "normalized_name": "hare trigger" + }, + { + "appid": 2820440, + "normalized_name": "reason unfound" + }, + { + "appid": 2820450, + "normalized_name": "wukong up/悟空 up" + }, + { + "appid": 2820580, + "normalized_name": "origami treasure" + }, + { + "appid": 2820590, + "normalized_name": "sex college 🔞" + }, + { + "appid": 2820600, + "normalized_name": "orgasm academy 💦" + }, + { + "appid": 2820610, + "normalized_name": "bleaklight falls" + }, + { + "appid": 2820630, + "normalized_name": "animal rogues" + }, + { + "appid": 2820650, + "normalized_name": "biodive" + }, + { + "appid": 2820680, + "normalized_name": "pogo gogo" + }, + { + "appid": 2820700, + "normalized_name": "a gentlemen's dispute" + }, + { + "appid": 2820710, + "normalized_name": "land of futures" + }, + { + "appid": 2820730, + "normalized_name": "space combat simulator" + }, + { + "appid": 2820750, + "normalized_name": "hentai girls sexy feet goddesses" + }, + { + "appid": 2820760, + "normalized_name": "trivia deal" + }, + { + "appid": 2820770, + "normalized_name": "drawn tale" + }, + { + "appid": 2820790, + "normalized_name": "sync" + }, + { + "appid": 2820800, + "normalized_name": "night bus" + }, + { + "appid": 2820820, + "normalized_name": "jotunnslayer hordes of hel" + }, + { + "appid": 2820840, + "normalized_name": "nexus knights" + }, + { + "appid": 2820850, + "normalized_name": "a tale of silent depths" + }, + { + "appid": 2820880, + "normalized_name": "commute" + }, + { + "appid": 2820890, + "normalized_name": "vended" + }, + { + "appid": 2820940, + "normalized_name": "minako beloved wife in the countryside" + }, + { + "appid": 2820960, + "normalized_name": "witch of the space station" + }, + { + "appid": 2821010, + "normalized_name": "schape dodger" + }, + { + "appid": 2821020, + "normalized_name": "まどろみトラベル" + }, + { + "appid": 2821040, + "normalized_name": "imperial lovers" + }, + { + "appid": 2821100, + "normalized_name": "calangos e coxinhas" + }, + { + "appid": 2821110, + "normalized_name": "subversive memories" + }, + { + "appid": 2821120, + "normalized_name": "full speed animals disorder" + }, + { + "appid": 2821140, + "normalized_name": "voxel vanguard" + }, + { + "appid": 2821220, + "normalized_name": "space mergers" + }, + { + "appid": 2821230, + "normalized_name": "ちょこナナ" + }, + { + "appid": 2821240, + "normalized_name": "shadow city mysteries a clockwork noir" + }, + { + "appid": 2821250, + "normalized_name": "void islands" + }, + { + "appid": 2821290, + "normalized_name": "sunsoft is back! レトロゲームセレクション" + }, + { + "appid": 2821320, + "normalized_name": "legend of marrow" + }, + { + "appid": 2821350, + "normalized_name": "corrupted" + }, + { + "appid": 2821360, + "normalized_name": "something's not right" + }, + { + "appid": 2821380, + "normalized_name": "daydam knight" + }, + { + "appid": 2821400, + "normalized_name": "backward poiesis" + }, + { + "appid": 2821440, + "normalized_name": "revelatio" + }, + { + "appid": 2821450, + "normalized_name": "sands of hope" + }, + { + "appid": 2821510, + "normalized_name": "dustopia" + }, + { + "appid": 2821600, + "normalized_name": "unnamed arcade" + }, + { + "appid": 2821620, + "normalized_name": "the white room" + }, + { + "appid": 2821630, + "normalized_name": "end of world story" + }, + { + "appid": 2821640, + "normalized_name": "the mystery of the cardboard island" + }, + { + "appid": 2821680, + "normalized_name": "幌呂めぐるのビンッ!!ボール" + }, + { + "appid": 2821700, + "normalized_name": "warranted humanity" + }, + { + "appid": 2821720, + "normalized_name": "banished stone" + }, + { + "appid": 2821740, + "normalized_name": "only pinball" + }, + { + "appid": 2821750, + "normalized_name": "car driver 5" + }, + { + "appid": 2821760, + "normalized_name": "yaad" + }, + { + "appid": 2821770, + "normalized_name": "mindfate" + }, + { + "appid": 2821800, + "normalized_name": "drill core" + }, + { + "appid": 2821810, + "normalized_name": "mini drift car" + }, + { + "appid": 2821830, + "normalized_name": "kozyrev horrors" + }, + { + "appid": 2821850, + "normalized_name": "baisu" + }, + { + "appid": 2821860, + "normalized_name": "reborn season 1 new life" + }, + { + "appid": 2821870, + "normalized_name": "leeroy" + }, + { + "appid": 2821880, + "normalized_name": "baa! never stop bleating" + }, + { + "appid": 2821890, + "normalized_name": "pegidle" + }, + { + "appid": 2821910, + "normalized_name": "academia z the beginning of the catastrophe" + }, + { + "appid": 2821930, + "normalized_name": "rise eterna 2" + }, + { + "appid": 2821970, + "normalized_name": "project lazarus 2" + }, + { + "appid": 2822010, + "normalized_name": "klaroro abyss of the soul" + }, + { + "appid": 2822030, + "normalized_name": "smash girls" + }, + { + "appid": 2822040, + "normalized_name": "bunniiies" + }, + { + "appid": 2822080, + "normalized_name": "the silent forests" + }, + { + "appid": 2822100, + "normalized_name": "criminal archives murder in the pages collector's" + }, + { + "appid": 2822110, + "normalized_name": "planet prospector" + }, + { + "appid": 2822210, + "normalized_name": "next room" + }, + { + "appid": 2822270, + "normalized_name": "vr # avoid" + }, + { + "appid": 2822300, + "normalized_name": "suika pets" + }, + { + "appid": 2822310, + "normalized_name": "sina" + }, + { + "appid": 2822320, + "normalized_name": "mysteryville" + }, + { + "appid": 2822330, + "normalized_name": "mysteryville 2" + }, + { + "appid": 2822360, + "normalized_name": "roadhouse manager" + }, + { + "appid": 2822370, + "normalized_name": "chocolate factory simulator" + }, + { + "appid": 2822380, + "normalized_name": "chocolate factory simulator prologue" + }, + { + "appid": 2822390, + "normalized_name": "whiteout frontier" + }, + { + "appid": 2822400, + "normalized_name": "bolt runner" + }, + { + "appid": 2822460, + "normalized_name": "cuca sharp bite" + }, + { + "appid": 2822570, + "normalized_name": "sector yama" + }, + { + "appid": 2822600, + "normalized_name": "sense of darkness" + }, + { + "appid": 2822620, + "normalized_name": "steamboat willie incident" + }, + { + "appid": 2822630, + "normalized_name": "parts unknown international" + }, + { + "appid": 2822640, + "normalized_name": "crabbleup" + }, + { + "appid": 2822650, + "normalized_name": "primordial genesis" + }, + { + "appid": 2822660, + "normalized_name": "escape alliance" + }, + { + "appid": 2822670, + "normalized_name": "squigley" + }, + { + "appid": 2822680, + "normalized_name": "nouns crown" + }, + { + "appid": 2822720, + "normalized_name": "echoes of extinction" + }, + { + "appid": 2822740, + "normalized_name": "one fenix down" + }, + { + "appid": 2822770, + "normalized_name": "dead faces" + }, + { + "appid": 2822780, + "normalized_name": "spring dogs multiplayer battle royale" + }, + { + "appid": 2822890, + "normalized_name": "funny face apartment" + }, + { + "appid": 2822910, + "normalized_name": "drawball" + }, + { + "appid": 2822950, + "normalized_name": "featherbound" + }, + { + "appid": 2822960, + "normalized_name": "hiddenlight" + }, + { + "appid": 2822970, + "normalized_name": "girl who shrunk the neighbors" + }, + { + "appid": 2822980, + "normalized_name": "arsonate" + }, + { + "appid": 2823000, + "normalized_name": "这个世界真的很对劲!" + }, + { + "appid": 2823020, + "normalized_name": "slap the king" + }, + { + "appid": 2823070, + "normalized_name": "ancraophobia" + }, + { + "appid": 2823080, + "normalized_name": "sketchy's contract" + }, + { + "appid": 2823090, + "normalized_name": "獣人ちゃんは今日も命を狙われる | jujinchan" + }, + { + "appid": 2823120, + "normalized_name": "korean rail driving tour lrt uijeongbu" + }, + { + "appid": 2823130, + "normalized_name": "that one dungeon" + }, + { + "appid": 2823140, + "normalized_name": "where safety ends *r*" + }, + { + "appid": 2823160, + "normalized_name": "gung beetle" + }, + { + "appid": 2823190, + "normalized_name": "sneaky snacks hidden object game" + }, + { + "appid": 2823200, + "normalized_name": "mousebusters" + }, + { + "appid": 2823240, + "normalized_name": "gwarf" + }, + { + "appid": 2823250, + "normalized_name": "corgi race" + }, + { + "appid": 2823260, + "normalized_name": "建造与征服:12世纪的黎凡特" + }, + { + "appid": 2823280, + "normalized_name": "reactoryx" + }, + { + "appid": 2823300, + "normalized_name": "miracle corp." + }, + { + "appid": 2823310, + "normalized_name": "the hallways" + }, + { + "appid": 2823320, + "normalized_name": "midnight racer" + }, + { + "appid": 2823350, + "normalized_name": "wagon gloom" + }, + { + "appid": 2823380, + "normalized_name": "death valley" + }, + { + "appid": 2823400, + "normalized_name": "be silent" + }, + { + "appid": 2823420, + "normalized_name": "欧派大作战" + }, + { + "appid": 2823460, + "normalized_name": "further" + }, + { + "appid": 2823480, + "normalized_name": "hitting balls" + }, + { + "appid": 2823560, + "normalized_name": "orkendale the scarred land" + }, + { + "appid": 2823570, + "normalized_name": "netcode warriors" + }, + { + "appid": 2823600, + "normalized_name": "radioquacktive" + }, + { + "appid": 2823630, + "normalized_name": "tech disorder" + }, + { + "appid": 2823650, + "normalized_name": "eden a genesis through time" + }, + { + "appid": 2823690, + "normalized_name": "reversi xvsx" + }, + { + "appid": 2823700, + "normalized_name": "terminal defense" + }, + { + "appid": 2823720, + "normalized_name": "flash diving" + }, + { + "appid": 2823730, + "normalized_name": "into the deep" + }, + { + "appid": 2823760, + "normalized_name": "pew pew vs monsters" + }, + { + "appid": 2823790, + "normalized_name": "casino management simulator" + }, + { + "appid": 2823810, + "normalized_name": "tilt" + }, + { + "appid": 2823820, + "normalized_name": "category 6" + }, + { + "appid": 2823840, + "normalized_name": "killer junkyard" + }, + { + "appid": 2823850, + "normalized_name": "worst idea" + }, + { + "appid": 2823860, + "normalized_name": "joe 'n jo" + }, + { + "appid": 2823890, + "normalized_name": "center station simulator" + }, + { + "appid": 2823900, + "normalized_name": "the ord accord" + }, + { + "appid": 2823920, + "normalized_name": "dead shells" + }, + { + "appid": 2824000, + "normalized_name": "backpacker guild" + }, + { + "appid": 2824010, + "normalized_name": "crawler" + }, + { + "appid": 2824020, + "normalized_name": "hora" + }, + { + "appid": 2824030, + "normalized_name": "how to get a japanese girlfriend (and save the world)" + }, + { + "appid": 2824080, + "normalized_name": "banana step" + }, + { + "appid": 2824100, + "normalized_name": "soul return" + }, + { + "appid": 2824110, + "normalized_name": "heart beat clue" + }, + { + "appid": 2824140, + "normalized_name": "droom" + }, + { + "appid": 2824160, + "normalized_name": "我有一间恐怖屋" + }, + { + "appid": 2824170, + "normalized_name": "jumpy jumptime" + }, + { + "appid": 2824200, + "normalized_name": "five hundred" + }, + { + "appid": 2824210, + "normalized_name": "the cursed legacy" + }, + { + "appid": 2824230, + "normalized_name": "last seen online" + }, + { + "appid": 2824250, + "normalized_name": "mars rapid transit" + }, + { + "appid": 2824310, + "normalized_name": "lucky hunter" + }, + { + "appid": 2824320, + "normalized_name": "astromart adventures" + }, + { + "appid": 2824340, + "normalized_name": "hues" + }, + { + "appid": 2824360, + "normalized_name": "the math challenge" + }, + { + "appid": 2824380, + "normalized_name": "exotica pet shop simulator 2" + }, + { + "appid": 2824400, + "normalized_name": "30 days of tower" + }, + { + "appid": 2824410, + "normalized_name": "underdog" + }, + { + "appid": 2824470, + "normalized_name": "angry stone" + }, + { + "appid": 2824480, + "normalized_name": "the legends of maui" + }, + { + "appid": 2824490, + "normalized_name": "he is coming" + }, + { + "appid": 2824500, + "normalized_name": "shockwaves" + }, + { + "appid": 2824520, + "normalized_name": "displacement" + }, + { + "appid": 2824560, + "normalized_name": "buzzlabs" + }, + { + "appid": 2824580, + "normalized_name": "terry's other games" + }, + { + "appid": 2824610, + "normalized_name": "8 days of school" + }, + { + "appid": 2824620, + "normalized_name": "the exile princes" + }, + { + "appid": 2824630, + "normalized_name": "synthetic soul neon" + }, + { + "appid": 2824660, + "normalized_name": "old school rally" + }, + { + "appid": 2824670, + "normalized_name": "art therapy cross stitch" + }, + { + "appid": 2824700, + "normalized_name": "fragmented 6th" + }, + { + "appid": 2824710, + "normalized_name": "thanks mom" + }, + { + "appid": 2824720, + "normalized_name": "woodsy whatnots" + }, + { + "appid": 2824730, + "normalized_name": "yawnoc" + }, + { + "appid": 2824740, + "normalized_name": "personal finance simulator" + }, + { + "appid": 2824760, + "normalized_name": "brass necessity" + }, + { + "appid": 2824770, + "normalized_name": "pim world" + }, + { + "appid": 2824780, + "normalized_name": "torso tennis" + }, + { + "appid": 2824790, + "normalized_name": "gug" + }, + { + "appid": 2824800, + "normalized_name": "gods of the arena dungeon" + }, + { + "appid": 2824810, + "normalized_name": "over the net" + }, + { + "appid": 2824840, + "normalized_name": "i commissioned some mice 3" + }, + { + "appid": 2824850, + "normalized_name": "i commissioned some mice 4" + }, + { + "appid": 2824860, + "normalized_name": "i commissioned some mice 5" + }, + { + "appid": 2824880, + "normalized_name": "shrimp game" + }, + { + "appid": 2824890, + "normalized_name": "polyzone" + }, + { + "appid": 2824910, + "normalized_name": "stars survivor" + }, + { + "appid": 2824930, + "normalized_name": "gooner on the orient express" + }, + { + "appid": 2824960, + "normalized_name": "fracas" + }, + { + "appid": 2824970, + "normalized_name": "christmas countdown" + }, + { + "appid": 2824990, + "normalized_name": "battle marine" + }, + { + "appid": 2825000, + "normalized_name": "this is normal" + }, + { + "appid": 2825010, + "normalized_name": "大家一起包饺子" + }, + { + "appid": 2825030, + "normalized_name": "resurrection nuke island" + }, + { + "appid": 2825070, + "normalized_name": "zombie police christmas dancing with police zombies" + }, + { + "appid": 2825080, + "normalized_name": "sanguine" + }, + { + "appid": 2825090, + "normalized_name": "go! save the queen!" + }, + { + "appid": 2825110, + "normalized_name": "technotopia" + }, + { + "appid": 2825130, + "normalized_name": "shadowed the demon castle of ooe" + }, + { + "appid": 2825140, + "normalized_name": "jungle catz" + }, + { + "appid": 2825150, + "normalized_name": "陌界·启示录" + }, + { + "appid": 2825180, + "normalized_name": "wowowow korone box" + }, + { + "appid": 2825210, + "normalized_name": "click to 13" + }, + { + "appid": 2825250, + "normalized_name": "3秒ばなな" + }, + { + "appid": 2825270, + "normalized_name": "zombolion" + }, + { + "appid": 2825300, + "normalized_name": "amanatsu ~perfect edition~" + }, + { + "appid": 2825310, + "normalized_name": "duplicate dissolution" + }, + { + "appid": 2825330, + "normalized_name": "黑巢:蛇之契约" + }, + { + "appid": 2825350, + "normalized_name": "drinks down under" + }, + { + "appid": 2825360, + "normalized_name": "sweet bitter" + }, + { + "appid": 2825380, + "normalized_name": "batteri fjell 1945" + }, + { + "appid": 2825390, + "normalized_name": "my adventure book" + }, + { + "appid": 2825400, + "normalized_name": "pogo pogo" + }, + { + "appid": 2825410, + "normalized_name": "serke" + }, + { + "appid": 2825430, + "normalized_name": "fogreach shadow whisperers" + }, + { + "appid": 2825510, + "normalized_name": "polyoshapes" + }, + { + "appid": 2825520, + "normalized_name": "despot zombie" + }, + { + "appid": 2825530, + "normalized_name": "beholder conductor" + }, + { + "appid": 2825560, + "normalized_name": "blazing trail" + }, + { + "appid": 2825570, + "normalized_name": "diorama maker" + }, + { + "appid": 2825600, + "normalized_name": "teeny tiny trains" + }, + { + "appid": 2825640, + "normalized_name": "livemeat活肉" + }, + { + "appid": 2825650, + "normalized_name": "earth defenders" + }, + { + "appid": 2825730, + "normalized_name": "nekokami internship the prologue adventure" + }, + { + "appid": 2825740, + "normalized_name": "dark memories hospital" + }, + { + "appid": 2825750, + "normalized_name": "crackernuts" + }, + { + "appid": 2825780, + "normalized_name": "2d?!" + }, + { + "appid": 2825860, + "normalized_name": "the sinking city 2" + }, + { + "appid": 2825870, + "normalized_name": "doodle factory" + }, + { + "appid": 2825880, + "normalized_name": "death howl" + }, + { + "appid": 2825910, + "normalized_name": "escape from bytesville" + }, + { + "appid": 2826070, + "normalized_name": "shadows of souls" + }, + { + "appid": 2826100, + "normalized_name": "number shoot vr" + }, + { + "appid": 2826110, + "normalized_name": "fae line" + }, + { + "appid": 2826120, + "normalized_name": "lost lands stories of the first brotherhood collector's" + }, + { + "appid": 2826140, + "normalized_name": "twilight tails" + }, + { + "appid": 2826150, + "normalized_name": "sprout of control" + }, + { + "appid": 2826160, + "normalized_name": "danmaku fighters" + }, + { + "appid": 2826180, + "normalized_name": "chill pulse" + }, + { + "appid": 2826220, + "normalized_name": "tiny house" + }, + { + "appid": 2826250, + "normalized_name": "bet your brain" + }, + { + "appid": 2826260, + "normalized_name": "claria's great maze" + }, + { + "appid": 2826400, + "normalized_name": "case records fear of abduction" + }, + { + "appid": 2826410, + "normalized_name": "pinbot" + }, + { + "appid": 2826430, + "normalized_name": "collateral dungeon" + }, + { + "appid": 2826460, + "normalized_name": "bobo blitz" + }, + { + "appid": 2826510, + "normalized_name": "drift boom boom" + }, + { + "appid": 2826540, + "normalized_name": "invaders tower defense online" + }, + { + "appid": 2826570, + "normalized_name": "singularity survivors" + }, + { + "appid": 2826590, + "normalized_name": "sausage cat" + }, + { + "appid": 2826610, + "normalized_name": "rabbitra 2" + }, + { + "appid": 2826650, + "normalized_name": "scribble" + }, + { + "appid": 2826660, + "normalized_name": "fightin' words" + }, + { + "appid": 2826670, + "normalized_name": "melting encyclopedia" + }, + { + "appid": 2826690, + "normalized_name": "mini zen garden" + }, + { + "appid": 2826700, + "normalized_name": "dental strike" + }, + { + "appid": 2826710, + "normalized_name": "science soldier" + }, + { + "appid": 2826730, + "normalized_name": "spark of nature" + }, + { + "appid": 2826770, + "normalized_name": "jump wu" + }, + { + "appid": 2826790, + "normalized_name": "stormforge" + }, + { + "appid": 2826800, + "normalized_name": "amanda the adventurer 2" + }, + { + "appid": 2826850, + "normalized_name": "galactic frontiers defense protocol" + }, + { + "appid": 2826860, + "normalized_name": "pearl fishery quest for the mega pearl" + }, + { + "appid": 2826890, + "normalized_name": "fight back the night" + }, + { + "appid": 2826910, + "normalized_name": "time escape a prototype" + }, + { + "appid": 2826920, + "normalized_name": "roboglitch" + }, + { + "appid": 2826940, + "normalized_name": "mission twentynine" + }, + { + "appid": 2826970, + "normalized_name": "chickens don't fly" + }, + { + "appid": 2827010, + "normalized_name": "gunning for jean the final update" + }, + { + "appid": 2827020, + "normalized_name": "solace" + }, + { + "appid": 2827080, + "normalized_name": "hyperxfantasy" + }, + { + "appid": 2827170, + "normalized_name": "geno 2 the generals' orders" + }, + { + "appid": 2827180, + "normalized_name": "limp heroes+" + }, + { + "appid": 2827190, + "normalized_name": "all scars and starlight" + }, + { + "appid": 2827200, + "normalized_name": "mimesis" + }, + { + "appid": 2827210, + "normalized_name": "roguelive" + }, + { + "appid": 2827230, + "normalized_name": "wild assault / 兽猎突袭" + }, + { + "appid": 2827240, + "normalized_name": "please knock before entering my room" + }, + { + "appid": 2827280, + "normalized_name": "富仔" + }, + { + "appid": 2827310, + "normalized_name": "漂流瓶盖 drifting bottle cap" + }, + { + "appid": 2827350, + "normalized_name": "inkidoki and phoenix" + }, + { + "appid": 2827390, + "normalized_name": "demonic deckmaster" + }, + { + "appid": 2827400, + "normalized_name": "kalahari’s end" + }, + { + "appid": 2827450, + "normalized_name": "atta spot the oddities in the strange hotel" + }, + { + "appid": 2827460, + "normalized_name": "guragura oden" + }, + { + "appid": 2827470, + "normalized_name": "isekai infinity worlds unleashed" + }, + { + "appid": 2827480, + "normalized_name": "ぽかぽかママ恋温泉 ~mommy's warm hot spring~" + }, + { + "appid": 2827490, + "normalized_name": "wrath of the roothless" + }, + { + "appid": 2827500, + "normalized_name": "hentai milf" + }, + { + "appid": 2827520, + "normalized_name": "ant keeping simulator" + }, + { + "appid": 2827530, + "normalized_name": "trojan" + }, + { + "appid": 2827560, + "normalized_name": "100 romantic cats" + }, + { + "appid": 2827570, + "normalized_name": "ronny's climb" + }, + { + "appid": 2827580, + "normalized_name": "dokoda" + }, + { + "appid": 2827610, + "normalized_name": "rumble blazing" + }, + { + "appid": 2827680, + "normalized_name": "block factory" + }, + { + "appid": 2827690, + "normalized_name": "the carnival of company" + }, + { + "appid": 2827710, + "normalized_name": "black castle" + }, + { + "appid": 2827720, + "normalized_name": "the drylands" + }, + { + "appid": 2827750, + "normalized_name": "fatal claw" + }, + { + "appid": 2827780, + "normalized_name": "summonsters" + }, + { + "appid": 2827810, + "normalized_name": "ark of charon" + }, + { + "appid": 2827820, + "normalized_name": "the relic first guardian" + }, + { + "appid": 2827860, + "normalized_name": "the dawn of a flower" + }, + { + "appid": 2827880, + "normalized_name": "smash bear" + }, + { + "appid": 2827910, + "normalized_name": "tileturn" + }, + { + "appid": 2827920, + "normalized_name": "jailbirds" + }, + { + "appid": 2827930, + "normalized_name": "critical fishing" + }, + { + "appid": 2827950, + "normalized_name": "contraptions collection" + }, + { + "appid": 2827960, + "normalized_name": "house builder 2" + }, + { + "appid": 2827970, + "normalized_name": "elfscape ancestors" + }, + { + "appid": 2828060, + "normalized_name": "crash math" + }, + { + "appid": 2828100, + "normalized_name": "trail of singularity" + }, + { + "appid": 2828150, + "normalized_name": "divine journey 2 the five books of moses" + }, + { + "appid": 2828170, + "normalized_name": "veliri planet of machines" + }, + { + "appid": 2828210, + "normalized_name": "retaliate" + }, + { + "appid": 2828230, + "normalized_name": "24h stories midnight channel" + }, + { + "appid": 2828260, + "normalized_name": "countryside life simulator" + }, + { + "appid": 2828270, + "normalized_name": "honor bound" + }, + { + "appid": 2828290, + "normalized_name": "toward the moon" + }, + { + "appid": 2828300, + "normalized_name": "lich's dungeon" + }, + { + "appid": 2828320, + "normalized_name": "winter night" + }, + { + "appid": 2828340, + "normalized_name": "ancients unleashed" + }, + { + "appid": 2828410, + "normalized_name": "clean corps" + }, + { + "appid": 2828420, + "normalized_name": "chess infinity" + }, + { + "appid": 2828490, + "normalized_name": "high seas high profits!" + }, + { + "appid": 2828590, + "normalized_name": "the haunting of joni evers" + }, + { + "appid": 2828610, + "normalized_name": "chefcito asesino" + }, + { + "appid": 2828620, + "normalized_name": "xgun" + }, + { + "appid": 2828660, + "normalized_name": "the beautiful island" + }, + { + "appid": 2828740, + "normalized_name": "safelight" + }, + { + "appid": 2828750, + "normalized_name": "saikuru" + }, + { + "appid": 2828770, + "normalized_name": "get out" + }, + { + "appid": 2828800, + "normalized_name": "pinball blitz" + }, + { + "appid": 2828820, + "normalized_name": "the red button" + }, + { + "appid": 2828850, + "normalized_name": "sled builders" + }, + { + "appid": 2828860, + "normalized_name": "the forever winter" + }, + { + "appid": 2828890, + "normalized_name": "vga planets nu" + }, + { + "appid": 2828920, + "normalized_name": "duck duck shoot" + }, + { + "appid": 2828930, + "normalized_name": "four second forever" + }, + { + "appid": 2828940, + "normalized_name": "glass heart retold" + }, + { + "appid": 2828960, + "normalized_name": "beyond the portal island's salvation" + }, + { + "appid": 2829020, + "normalized_name": "cosmic kitchen" + }, + { + "appid": 2829040, + "normalized_name": "orion everton mysteries of metrosomia" + }, + { + "appid": 2829060, + "normalized_name": "computer fury" + }, + { + "appid": 2829070, + "normalized_name": "the wolf's hunt" + }, + { + "appid": 2829110, + "normalized_name": "secrets of the tundra" + }, + { + "appid": 2829160, + "normalized_name": "cosmara" + }, + { + "appid": 2829210, + "normalized_name": "日陰の日葵 sun in the shade" + }, + { + "appid": 2829240, + "normalized_name": "hop top" + }, + { + "appid": 2829270, + "normalized_name": "your earth" + }, + { + "appid": 2829290, + "normalized_name": "末日幽影 apocalyptic shadows" + }, + { + "appid": 2829300, + "normalized_name": "stars and empires colony defense" + }, + { + "appid": 2829320, + "normalized_name": "casual mahjong" + }, + { + "appid": 2829330, + "normalized_name": "过劳的爱丽丝overworked alice" + }, + { + "appid": 2829360, + "normalized_name": "wn_rpg 1b" + }, + { + "appid": 2829370, + "normalized_name": "samara" + }, + { + "appid": 2829420, + "normalized_name": "fortuna deluxe" + }, + { + "appid": 2829430, + "normalized_name": "wag" + }, + { + "appid": 2829450, + "normalized_name": "the motel" + }, + { + "appid": 2829470, + "normalized_name": "cursed house 13" + }, + { + "appid": 2829480, + "normalized_name": "the bunker" + }, + { + "appid": 2829500, + "normalized_name": "thorgard" + }, + { + "appid": 2829510, + "normalized_name": "deber" + }, + { + "appid": 2829600, + "normalized_name": "风流公子romantic young man" + }, + { + "appid": 2829630, + "normalized_name": "soultail" + }, + { + "appid": 2829660, + "normalized_name": "ghost teen escape from limbo" + }, + { + "appid": 2829700, + "normalized_name": "protean fox" + }, + { + "appid": 2829740, + "normalized_name": "limitless" + }, + { + "appid": 2829750, + "normalized_name": "deck dash" + }, + { + "appid": 2829760, + "normalized_name": "count 427" + }, + { + "appid": 2829790, + "normalized_name": "windstorm start of a great friendship" + }, + { + "appid": 2829820, + "normalized_name": "celtic heroes" + }, + { + "appid": 2829870, + "normalized_name": "fight for freedom civil war" + }, + { + "appid": 2829880, + "normalized_name": "human eater idle" + }, + { + "appid": 2829890, + "normalized_name": "cryptic escape" + }, + { + "appid": 2829910, + "normalized_name": "ruiga pirates first survivors" + }, + { + "appid": 2830010, + "normalized_name": "the witch veils the mansion" + }, + { + "appid": 2830030, + "normalized_name": "motorslice" + }, + { + "appid": 2830040, + "normalized_name": "femquest" + }, + { + "appid": 2830060, + "normalized_name": "bod 1" + }, + { + "appid": 2830070, + "normalized_name": "second loop" + }, + { + "appid": 2830080, + "normalized_name": "杀虫剂小队:虫族争霸insecticide troopers star zerg" + }, + { + "appid": 2830090, + "normalized_name": "sixth force" + }, + { + "appid": 2830100, + "normalized_name": "super blockbuster" + }, + { + "appid": 2830150, + "normalized_name": "super mining mechs" + }, + { + "appid": 2830200, + "normalized_name": "bullet surge" + }, + { + "appid": 2830250, + "normalized_name": "grand soul story" + }, + { + "appid": 2830320, + "normalized_name": "forgotten secrets escape room" + }, + { + "appid": 2830330, + "normalized_name": "zomb bomb" + }, + { + "appid": 2830430, + "normalized_name": "mute crimson dx" + }, + { + "appid": 2830480, + "normalized_name": "gentoo rescue" + }, + { + "appid": 2830530, + "normalized_name": "sedecktion" + }, + { + "appid": 2830540, + "normalized_name": "galaxy rush" + }, + { + "appid": 2830670, + "normalized_name": "save giant girl from monsters 2" + }, + { + "appid": 2830680, + "normalized_name": "save giant girl from monsters 3" + }, + { + "appid": 2830690, + "normalized_name": "save giant girl from monsters 4" + }, + { + "appid": 2830700, + "normalized_name": "fastival" + }, + { + "appid": 2830720, + "normalized_name": "freeinfantry" + }, + { + "appid": 2830730, + "normalized_name": "asyle" + }, + { + "appid": 2830760, + "normalized_name": "1 shot 1 kill" + }, + { + "appid": 2830770, + "normalized_name": "terra exodus" + }, + { + "appid": 2830850, + "normalized_name": "mother may i" + }, + { + "appid": 2830870, + "normalized_name": "un/fragment." + }, + { + "appid": 2830910, + "normalized_name": "comando rio" + }, + { + "appid": 2830930, + "normalized_name": "goon company" + }, + { + "appid": 2830940, + "normalized_name": "bot hunt" + }, + { + "appid": 2830960, + "normalized_name": "bots & mods" + }, + { + "appid": 2830980, + "normalized_name": "college sex episode 8" + }, + { + "appid": 2831000, + "normalized_name": "faraway" + }, + { + "appid": 2831030, + "normalized_name": "panties attack" + }, + { + "appid": 2831060, + "normalized_name": "moving houses" + }, + { + "appid": 2831070, + "normalized_name": "dimachaerus" + }, + { + "appid": 2831170, + "normalized_name": "color fear" + }, + { + "appid": 2831200, + "normalized_name": "a witch's game" + }, + { + "appid": 2831270, + "normalized_name": "chiaroscuro" + }, + { + "appid": 2831320, + "normalized_name": "babe lathe" + }, + { + "appid": 2831330, + "normalized_name": "三国战棋 three kingdoms battle chess" + }, + { + "appid": 2831340, + "normalized_name": "rabbit hole" + }, + { + "appid": 2831540, + "normalized_name": "50 pinch barrage!!" + }, + { + "appid": 2831550, + "normalized_name": "lock n drop bracket racing" + }, + { + "appid": 2831560, + "normalized_name": "blood and fear part 1" + }, + { + "appid": 2831570, + "normalized_name": "revenge of the antagonist bl (boys love)" + }, + { + "appid": 2831590, + "normalized_name": "blowfly2 overlimit" + }, + { + "appid": 2831600, + "normalized_name": "stage fighter tactics" + }, + { + "appid": 2831610, + "normalized_name": "simploe tasks" + }, + { + "appid": 2831700, + "normalized_name": "gizmolab vr" + }, + { + "appid": 2831730, + "normalized_name": "millie megavolte 8 millie and the mole king" + }, + { + "appid": 2831750, + "normalized_name": "punch the undead" + }, + { + "appid": 2831870, + "normalized_name": "olive" + }, + { + "appid": 2831900, + "normalized_name": "crab attack" + }, + { + "appid": 2831910, + "normalized_name": "영창하세요 마법사님" + }, + { + "appid": 2832020, + "normalized_name": "hentai tales mysterious clinic" + }, + { + "appid": 2832040, + "normalized_name": "白昼" + }, + { + "appid": 2832060, + "normalized_name": "mist survivor" + }, + { + "appid": 2832070, + "normalized_name": "kick'n hell" + }, + { + "appid": 2832110, + "normalized_name": "fall of the mist" + }, + { + "appid": 2832130, + "normalized_name": "one socket" + }, + { + "appid": 2832150, + "normalized_name": "龙武女将" + }, + { + "appid": 2832160, + "normalized_name": "the raptured" + }, + { + "appid": 2832170, + "normalized_name": "废柴队友 stupid teammates" + }, + { + "appid": 2832180, + "normalized_name": "cyber tile" + }, + { + "appid": 2832220, + "normalized_name": "park studio" + }, + { + "appid": 2832230, + "normalized_name": "book warm" + }, + { + "appid": 2832270, + "normalized_name": "college gay sex episode 1" + }, + { + "appid": 2832280, + "normalized_name": "blightstone" + }, + { + "appid": 2832300, + "normalized_name": "brave glin in fairyaria" + }, + { + "appid": 2832310, + "normalized_name": "iter" + }, + { + "appid": 2832320, + "normalized_name": "pc tycoon 2" + }, + { + "appid": 2832330, + "normalized_name": "aeons echo" + }, + { + "appid": 2832340, + "normalized_name": "decypher" + }, + { + "appid": 2832360, + "normalized_name": "mirror world" + }, + { + "appid": 2832370, + "normalized_name": "riki" + }, + { + "appid": 2832380, + "normalized_name": "fleximan" + }, + { + "appid": 2832390, + "normalized_name": "time to live" + }, + { + "appid": 2832400, + "normalized_name": "the lust city 2" + }, + { + "appid": 2832430, + "normalized_name": "flag & country" + }, + { + "appid": 2832450, + "normalized_name": "ario" + }, + { + "appid": 2832470, + "normalized_name": "a rite from the stars remaster" + }, + { + "appid": 2832490, + "normalized_name": "wizard combat" + }, + { + "appid": 2832510, + "normalized_name": "esteem the little wolf saga" + }, + { + "appid": 2832530, + "normalized_name": "farmer charm" + }, + { + "appid": 2832560, + "normalized_name": "silent" + }, + { + "appid": 2832580, + "normalized_name": "dating joyce a deckbuilding game" + }, + { + "appid": 2832620, + "normalized_name": "stray shot" + }, + { + "appid": 2832630, + "normalized_name": "interstellar plunderer" + }, + { + "appid": 2832640, + "normalized_name": "dead get rekt" + }, + { + "appid": 2832650, + "normalized_name": "cozy designer" + }, + { + "appid": 2832680, + "normalized_name": "rearea" + }, + { + "appid": 2832720, + "normalized_name": "freestead castle defense" + }, + { + "appid": 2832730, + "normalized_name": "bloomyth" + }, + { + "appid": 2832750, + "normalized_name": "zephinala" + }, + { + "appid": 2832770, + "normalized_name": "argebe" + }, + { + "appid": 2832780, + "normalized_name": "wacky jumpers" + }, + { + "appid": 2832790, + "normalized_name": "sakura isekai adventure 2" + }, + { + "appid": 2832810, + "normalized_name": "miniatures" + }, + { + "appid": 2832820, + "normalized_name": "mystic guardians slide" + }, + { + "appid": 2832900, + "normalized_name": "indiana jones and the great circle digital artbook" + }, + { + "appid": 2833120, + "normalized_name": "shadow brawl" + }, + { + "appid": 2833170, + "normalized_name": "dopenet" + }, + { + "appid": 2833320, + "normalized_name": "customer disservice" + }, + { + "appid": 2833360, + "normalized_name": "kitty kitty bounce bounce" + }, + { + "appid": 2833380, + "normalized_name": "gravity control" + }, + { + "appid": 2833390, + "normalized_name": "hopstephotspring" + }, + { + "appid": 2833420, + "normalized_name": "末卡未来2" + }, + { + "appid": 2833430, + "normalized_name": "a journey's end" + }, + { + "appid": 2833440, + "normalized_name": "paragon slots" + }, + { + "appid": 2833470, + "normalized_name": "brisk up" + }, + { + "appid": 2833480, + "normalized_name": "clash of busts" + }, + { + "appid": 2833590, + "normalized_name": "dachstudio jigsaw puzzle box" + }, + { + "appid": 2833610, + "normalized_name": "splitpool" + }, + { + "appid": 2833620, + "normalized_name": "从画面中出来的我推vtuber的同居生活 ~兽耳游戏主播是消极者?~" + }, + { + "appid": 2833640, + "normalized_name": "pyramids and aliens escape room" + }, + { + "appid": 2833680, + "normalized_name": "who am you?" + }, + { + "appid": 2833810, + "normalized_name": "sex campus🔞" + }, + { + "appid": 2833820, + "normalized_name": "fox golf" + }, + { + "appid": 2833830, + "normalized_name": "gas gas rocket!" + }, + { + "appid": 2833840, + "normalized_name": "brutalismus chapter 1" + }, + { + "appid": 2833860, + "normalized_name": "kunkun league" + }, + { + "appid": 2833880, + "normalized_name": "antidote city hall" + }, + { + "appid": 2833900, + "normalized_name": "king of the jesters" + }, + { + "appid": 2833910, + "normalized_name": "ares breathes" + }, + { + "appid": 2833920, + "normalized_name": "tr 12" + }, + { + "appid": 2833930, + "normalized_name": "quickswitch" + }, + { + "appid": 2833960, + "normalized_name": "asian foxes" + }, + { + "appid": 2833980, + "normalized_name": "tower of whispers" + }, + { + "appid": 2834000, + "normalized_name": "realm of the everbound" + }, + { + "appid": 2834040, + "normalized_name": "music sim empire" + }, + { + "appid": 2834050, + "normalized_name": "escape from the village of lustful rituals" + }, + { + "appid": 2834060, + "normalized_name": "alcatraz" + }, + { + "appid": 2834110, + "normalized_name": "living with temptation american sunset" + }, + { + "appid": 2834180, + "normalized_name": "sex faculty🔞" + }, + { + "appid": 2834220, + "normalized_name": "femdom game world stepsister" + }, + { + "appid": 2834250, + "normalized_name": "frogbound the legend of sir hopper" + }, + { + "appid": 2834280, + "normalized_name": "ping pong breakout" + }, + { + "appid": 2834310, + "normalized_name": "elvenfoundry" + }, + { + "appid": 2834320, + "normalized_name": "exographer" + }, + { + "appid": 2834330, + "normalized_name": "hidden in my paradise" + }, + { + "appid": 2834340, + "normalized_name": "aduro" + }, + { + "appid": 2834370, + "normalized_name": "15th floor" + }, + { + "appid": 2834400, + "normalized_name": "shy cats hidden tracks paris" + }, + { + "appid": 2834430, + "normalized_name": "pizzakai" + }, + { + "appid": 2834450, + "normalized_name": "fear of fear" + }, + { + "appid": 2834470, + "normalized_name": "flikk" + }, + { + "appid": 2834490, + "normalized_name": "不香の花 snow flower" + }, + { + "appid": 2834520, + "normalized_name": "typing tales" + }, + { + "appid": 2834570, + "normalized_name": "duilius arc i" + }, + { + "appid": 2834580, + "normalized_name": "cursed despair" + }, + { + "appid": 2834600, + "normalized_name": "my little life" + }, + { + "appid": 2834620, + "normalized_name": "reading world vr" + }, + { + "appid": 2834630, + "normalized_name": "unyverse" + }, + { + "appid": 2834670, + "normalized_name": "dead fibers" + }, + { + "appid": 2834680, + "normalized_name": "super marlin bros" + }, + { + "appid": 2834690, + "normalized_name": "2048 dungeons" + }, + { + "appid": 2834700, + "normalized_name": "koltera 2" + }, + { + "appid": 2834780, + "normalized_name": "101 cats hidden in dubai" + }, + { + "appid": 2834790, + "normalized_name": "inseedious" + }, + { + "appid": 2834820, + "normalized_name": "simply snake" + }, + { + "appid": 2834830, + "normalized_name": "stig" + }, + { + "appid": 2834860, + "normalized_name": "inspiring dreams a short adventure game" + }, + { + "appid": 2834880, + "normalized_name": "dudego" + }, + { + "appid": 2834890, + "normalized_name": "christmas stories the legend of toymakers collector's" + }, + { + "appid": 2834910, + "normalized_name": "rocksmith+" + }, + { + "appid": 2834930, + "normalized_name": "ravva and the netherworld train" + }, + { + "appid": 2834950, + "normalized_name": "moon war meta" + }, + { + "appid": 2834990, + "normalized_name": "circle = circle" + }, + { + "appid": 2835020, + "normalized_name": "transmogrified!" + }, + { + "appid": 2835030, + "normalized_name": "dino cats" + }, + { + "appid": 2835060, + "normalized_name": "street fighting simulator" + }, + { + "appid": 2835070, + "normalized_name": "箱庭小駅伝" + }, + { + "appid": 2835080, + "normalized_name": "slowburn" + }, + { + "appid": 2835110, + "normalized_name": "sea fantasy" + }, + { + "appid": 2835130, + "normalized_name": "在りし日のわたし達へ" + }, + { + "appid": 2835140, + "normalized_name": "ナズーリンの探しもの?" + }, + { + "appid": 2835180, + "normalized_name": "unlinked mask" + }, + { + "appid": 2835190, + "normalized_name": "mister 9" + }, + { + "appid": 2835210, + "normalized_name": "fight'n'jokes storylines" + }, + { + "appid": 2835240, + "normalized_name": "fear & hope" + }, + { + "appid": 2835250, + "normalized_name": "ufo blast" + }, + { + "appid": 2835300, + "normalized_name": "mod shooter" + }, + { + "appid": 2835310, + "normalized_name": "sharpshooter" + }, + { + "appid": 2835350, + "normalized_name": "no gasoline" + }, + { + "appid": 2835370, + "normalized_name": "memories of misery" + }, + { + "appid": 2835380, + "normalized_name": "nomadica" + }, + { + "appid": 2835390, + "normalized_name": "beyond the brink" + }, + { + "appid": 2835410, + "normalized_name": "pipe escape" + }, + { + "appid": 2835430, + "normalized_name": "fear odyssey" + }, + { + "appid": 2835460, + "normalized_name": "treasure hunters" + }, + { + "appid": 2835480, + "normalized_name": "vectored armada" + }, + { + "appid": 2835490, + "normalized_name": "怪異ジャッジ・ラビリンス" + }, + { + "appid": 2835500, + "normalized_name": "grog 'n glory" + }, + { + "appid": 2835530, + "normalized_name": "backrooms extractions" + }, + { + "appid": 2835540, + "normalized_name": "kawaii puzzle girl adventure 🌸💖" + }, + { + "appid": 2835570, + "normalized_name": "buckshot roulette" + }, + { + "appid": 2835580, + "normalized_name": "weapon mix" + }, + { + "appid": 2835590, + "normalized_name": "8am" + }, + { + "appid": 2835610, + "normalized_name": "yumpgril" + }, + { + "appid": 2835620, + "normalized_name": "ainsley" + }, + { + "appid": 2835650, + "normalized_name": "randomice" + }, + { + "appid": 2835670, + "normalized_name": "bond" + }, + { + "appid": 2835690, + "normalized_name": "the demons told me to make this game" + }, + { + "appid": 2835720, + "normalized_name": "sphero" + }, + { + "appid": 2835730, + "normalized_name": "glusiverse" + }, + { + "appid": 2835750, + "normalized_name": "50 floors the paranormal investigators prologue" + }, + { + "appid": 2835760, + "normalized_name": "thus spoke the donke" + }, + { + "appid": 2835780, + "normalized_name": "gem miner td" + }, + { + "appid": 2835790, + "normalized_name": "cynderfall cycle" + }, + { + "appid": 2835890, + "normalized_name": "shimapanzer strike!" + }, + { + "appid": 2835910, + "normalized_name": "coin jar" + }, + { + "appid": 2835920, + "normalized_name": "atomic bot survivor on planets" + }, + { + "appid": 2835950, + "normalized_name": "multi game party" + }, + { + "appid": 2835960, + "normalized_name": "battleclaws" + }, + { + "appid": 2835970, + "normalized_name": "space query" + }, + { + "appid": 2835980, + "normalized_name": "fire" + }, + { + "appid": 2836000, + "normalized_name": "critical move" + }, + { + "appid": 2836010, + "normalized_name": "necrosphere64" + }, + { + "appid": 2836040, + "normalized_name": "slayer knight" + }, + { + "appid": 2836060, + "normalized_name": "flame land" + }, + { + "appid": 2836070, + "normalized_name": "heroes for hire" + }, + { + "appid": 2836080, + "normalized_name": "treamland" + }, + { + "appid": 2836090, + "normalized_name": "tales of ancients" + }, + { + "appid": 2836100, + "normalized_name": "gemporium a cute mining sim" + }, + { + "appid": 2836120, + "normalized_name": "the nightmare of arrival chapter 1" + }, + { + "appid": 2836180, + "normalized_name": "nightgate" + }, + { + "appid": 2836200, + "normalized_name": "revenge request" + }, + { + "appid": 2836230, + "normalized_name": "jumping orb" + }, + { + "appid": 2836250, + "normalized_name": "soul eater" + }, + { + "appid": 2836260, + "normalized_name": "remington the a.i." + }, + { + "appid": 2836270, + "normalized_name": "heromantic" + }, + { + "appid": 2836290, + "normalized_name": "on track" + }, + { + "appid": 2836300, + "normalized_name": "3d skills start here" + }, + { + "appid": 2836310, + "normalized_name": "refrega" + }, + { + "appid": 2836330, + "normalized_name": "spyware" + }, + { + "appid": 2836340, + "normalized_name": "breakthru" + }, + { + "appid": 2836440, + "normalized_name": "robot tennis" + }, + { + "appid": 2836450, + "normalized_name": "casino simulator 2024" + }, + { + "appid": 2836460, + "normalized_name": "cozy marbles" + }, + { + "appid": 2836470, + "normalized_name": "镜中之城" + }, + { + "appid": 2836490, + "normalized_name": "the palaces of the mind chapter one" + }, + { + "appid": 2836500, + "normalized_name": "mattami restaurant & cafe tycoon" + }, + { + "appid": 2836510, + "normalized_name": "warfare ultimatum" + }, + { + "appid": 2836530, + "normalized_name": "cymut x mutrobo the last cymut" + }, + { + "appid": 2836550, + "normalized_name": "math path builder" + }, + { + "appid": 2836580, + "normalized_name": "there's something wrong with..." + }, + { + "appid": 2836600, + "normalized_name": "バグだらけの町" + }, + { + "appid": 2836620, + "normalized_name": "bunny mazes" + }, + { + "appid": 2836630, + "normalized_name": "trauma pro wrestling" + }, + { + "appid": 2836680, + "normalized_name": "railink" + }, + { + "appid": 2836730, + "normalized_name": "true story time" + }, + { + "appid": 2836740, + "normalized_name": "olga episode 1" + }, + { + "appid": 2836750, + "normalized_name": "super infection massive pathology" + }, + { + "appid": 2836760, + "normalized_name": "江梦潮音 j.m.rhythm" + }, + { + "appid": 2836810, + "normalized_name": "escape from zombietown" + }, + { + "appid": 2836820, + "normalized_name": "baby blues nightmares toddler horror game" + }, + { + "appid": 2836830, + "normalized_name": "bhop up!" + }, + { + "appid": 2836860, + "normalized_name": "the horror at highrook" + }, + { + "appid": 2836910, + "normalized_name": "search all lollipops" + }, + { + "appid": 2836960, + "normalized_name": "exit the museum" + }, + { + "appid": 2836990, + "normalized_name": "drunken rogue" + }, + { + "appid": 2837050, + "normalized_name": "outergleam" + }, + { + "appid": 2837080, + "normalized_name": "brick buster blast" + }, + { + "appid": 2837140, + "normalized_name": "女神侦探4" + }, + { + "appid": 2837160, + "normalized_name": "usg" + }, + { + "appid": 2837210, + "normalized_name": "word laces" + }, + { + "appid": 2837240, + "normalized_name": "sp light" + }, + { + "appid": 2837280, + "normalized_name": "counterpick labs" + }, + { + "appid": 2837300, + "normalized_name": "whichwayout?" + }, + { + "appid": 2837310, + "normalized_name": "no tomorrow" + }, + { + "appid": 2837320, + "normalized_name": "unreal physics" + }, + { + "appid": 2837330, + "normalized_name": "milky way td survivors autobattler rts" + }, + { + "appid": 2837340, + "normalized_name": "milky way td survivors autobattler rts earth" + }, + { + "appid": 2837350, + "normalized_name": "block tower td 2" + }, + { + "appid": 2837360, + "normalized_name": "block tower td 2 prologue" + }, + { + "appid": 2837370, + "normalized_name": "nevergoinghome" + }, + { + "appid": 2837420, + "normalized_name": "the lord of time" + }, + { + "appid": 2837460, + "normalized_name": "crowborne" + }, + { + "appid": 2837470, + "normalized_name": "asterball" + }, + { + "appid": 2837490, + "normalized_name": "call center tycoon" + }, + { + "appid": 2837520, + "normalized_name": "didi the final chapter" + }, + { + "appid": 2837540, + "normalized_name": "mad valley" + }, + { + "appid": 2837570, + "normalized_name": "dark desire mute 7" + }, + { + "appid": 2837580, + "normalized_name": "rally arcade classics" + }, + { + "appid": 2837590, + "normalized_name": "stomp and the sword of miracles" + }, + { + "appid": 2837600, + "normalized_name": "the alto collection" + }, + { + "appid": 2837640, + "normalized_name": "crowd diver" + }, + { + "appid": 2837680, + "normalized_name": "voxel hunters" + }, + { + "appid": 2837700, + "normalized_name": "hazelnut latte" + }, + { + "appid": 2837710, + "normalized_name": "tower of lies" + }, + { + "appid": 2837720, + "normalized_name": "rugby league team manager 4" + }, + { + "appid": 2837740, + "normalized_name": "floatineer 海上建筑师" + }, + { + "appid": 2837750, + "normalized_name": "bee welcome!" + }, + { + "appid": 2837760, + "normalized_name": "terrorformer td" + }, + { + "appid": 2837780, + "normalized_name": "karjala" + }, + { + "appid": 2837790, + "normalized_name": "spinny dungeon" + }, + { + "appid": 2837810, + "normalized_name": "palm sex night's" + }, + { + "appid": 2837870, + "normalized_name": "astral gate" + }, + { + "appid": 2837880, + "normalized_name": "spellarium 5" + }, + { + "appid": 2837890, + "normalized_name": "pocket quest" + }, + { + "appid": 2837920, + "normalized_name": "anime girls sun of a beach" + }, + { + "appid": 2837930, + "normalized_name": "warehouse bots" + }, + { + "appid": 2837950, + "normalized_name": "garland boy" + }, + { + "appid": 2837960, + "normalized_name": "cogs and carnage" + }, + { + "appid": 2837980, + "normalized_name": "retrofight" + }, + { + "appid": 2838010, + "normalized_name": "s3x scenario interactive couple audio stories game" + }, + { + "appid": 2838030, + "normalized_name": "witherbloom" + }, + { + "appid": 2838040, + "normalized_name": "mission rovee" + }, + { + "appid": 2838050, + "normalized_name": "dreadwoods gatekeeper prologue" + }, + { + "appid": 2838090, + "normalized_name": "aim camp" + }, + { + "appid": 2838100, + "normalized_name": "viking frontiers prologue" + }, + { + "appid": 2838160, + "normalized_name": "counter clash" + }, + { + "appid": 2838180, + "normalized_name": "wukong survivors :god slayer" + }, + { + "appid": 2838200, + "normalized_name": "どうしてこんなに妹がふえるの?!" + }, + { + "appid": 2838220, + "normalized_name": "pudding juice" + }, + { + "appid": 2838360, + "normalized_name": "since memories off the starry sky" + }, + { + "appid": 2838370, + "normalized_name": "贪吃龙" + }, + { + "appid": 2838380, + "normalized_name": "battle room beta" + }, + { + "appid": 2838400, + "normalized_name": "squiggle drop" + }, + { + "appid": 2838410, + "normalized_name": "mini star math" + }, + { + "appid": 2838420, + "normalized_name": "venice bridges" + }, + { + "appid": 2838430, + "normalized_name": "project blind" + }, + { + "appid": 2838450, + "normalized_name": "anime thighs" + }, + { + "appid": 2838460, + "normalized_name": "rethink 3.5" + }, + { + "appid": 2838470, + "normalized_name": "eternal puppet" + }, + { + "appid": 2838490, + "normalized_name": "flashing dark" + }, + { + "appid": 2838500, + "normalized_name": "search all tools" + }, + { + "appid": 2838510, + "normalized_name": "egg rtx" + }, + { + "appid": 2838520, + "normalized_name": "starfall odyssey" + }, + { + "appid": 2838550, + "normalized_name": "the monarch first light" + }, + { + "appid": 2838580, + "normalized_name": "soccer squad" + }, + { + "appid": 2838600, + "normalized_name": "minimalist farm tycoon" + }, + { + "appid": 2838620, + "normalized_name": "statecraft corrupted democracy" + }, + { + "appid": 2838720, + "normalized_name": "tile cities 2" + }, + { + "appid": 2838790, + "normalized_name": "birdfight" + }, + { + "appid": 2838800, + "normalized_name": "crystal chip collector hidden gem" + }, + { + "appid": 2838810, + "normalized_name": "hoverbear" + }, + { + "appid": 2838850, + "normalized_name": "naughty" + }, + { + "appid": 2838890, + "normalized_name": "mithrall" + }, + { + "appid": 2838900, + "normalized_name": "dark passage" + }, + { + "appid": 2838910, + "normalized_name": "leap in the right direction" + }, + { + "appid": 2838930, + "normalized_name": "puzzmix" + }, + { + "appid": 2838940, + "normalized_name": "神魔决之江湖行" + }, + { + "appid": 2838960, + "normalized_name": "汽水乱斗" + }, + { + "appid": 2838970, + "normalized_name": "魔女档案 majyoarchive" + }, + { + "appid": 2838990, + "normalized_name": "project forgemaster" + }, + { + "appid": 2839000, + "normalized_name": "retrolution racing" + }, + { + "appid": 2839020, + "normalized_name": "rebirth x reverse mana" + }, + { + "appid": 2839040, + "normalized_name": "1080p" + }, + { + "appid": 2839050, + "normalized_name": "real life" + }, + { + "appid": 2839090, + "normalized_name": "unlock the three" + }, + { + "appid": 2839120, + "normalized_name": "dizital imageclub neo" + }, + { + "appid": 2839180, + "normalized_name": "contract & control" + }, + { + "appid": 2839190, + "normalized_name": "cubix" + }, + { + "appid": 2839210, + "normalized_name": "desolate echoes" + }, + { + "appid": 2839230, + "normalized_name": "civilio" + }, + { + "appid": 2839250, + "normalized_name": "the chancellor's plot" + }, + { + "appid": 2839280, + "normalized_name": "natsu mon 20th century summer kid" + }, + { + "appid": 2839290, + "normalized_name": "enter the lost chamber" + }, + { + "appid": 2839310, + "normalized_name": "evader" + }, + { + "appid": 2839320, + "normalized_name": "virtualbuster" + }, + { + "appid": 2839350, + "normalized_name": "polygon in" + }, + { + "appid": 2839360, + "normalized_name": "frontland" + }, + { + "appid": 2839370, + "normalized_name": "story in the dream world 1 volcano and possession remake" + }, + { + "appid": 2839420, + "normalized_name": "topac battle" + }, + { + "appid": 2839430, + "normalized_name": "room" + }, + { + "appid": 2839440, + "normalized_name": "dark era" + }, + { + "appid": 2839450, + "normalized_name": "turkish throne" + }, + { + "appid": 2839460, + "normalized_name": "eve of destruction" + }, + { + "appid": 2839480, + "normalized_name": "the idle" + }, + { + "appid": 2839500, + "normalized_name": "my life as an alchemist" + }, + { + "appid": 2839520, + "normalized_name": "raver simulator" + }, + { + "appid": 2839550, + "normalized_name": "everything all in 1" + }, + { + "appid": 2839600, + "normalized_name": "dungeon full dive player" + }, + { + "appid": 2839640, + "normalized_name": "discovering galimore" + }, + { + "appid": 2839670, + "normalized_name": "amazing weekend search and relax collector's" + }, + { + "appid": 2839710, + "normalized_name": "chaos journey" + }, + { + "appid": 2839720, + "normalized_name": "afterworld" + }, + { + "appid": 2839750, + "normalized_name": "survivors" + }, + { + "appid": 2839790, + "normalized_name": "light path" + }, + { + "appid": 2839940, + "normalized_name": "the tomb of corruption" + }, + { + "appid": 2840000, + "normalized_name": "lumina veil" + }, + { + "appid": 2840020, + "normalized_name": "ambulance chauffeur simulator 2" + }, + { + "appid": 2840110, + "normalized_name": "dolls' domain" + }, + { + "appid": 2840120, + "normalized_name": "historical invaders" + }, + { + "appid": 2840140, + "normalized_name": "shadow of engimor" + }, + { + "appid": 2840180, + "normalized_name": "tesd into the vortex" + }, + { + "appid": 2840190, + "normalized_name": "great god grove" + }, + { + "appid": 2840210, + "normalized_name": "bureau of contacts" + }, + { + "appid": 2840230, + "normalized_name": "search all snakes" + }, + { + "appid": 2840240, + "normalized_name": "embers" + }, + { + "appid": 2840250, + "normalized_name": "zero protocol" + }, + { + "appid": 2840270, + "normalized_name": "survivors in blood" + }, + { + "appid": 2840280, + "normalized_name": "nightmare arts" + }, + { + "appid": 2840310, + "normalized_name": "skid island asphalt mayhem" + }, + { + "appid": 2840320, + "normalized_name": "pepper" + }, + { + "appid": 2840330, + "normalized_name": "dodgeman" + }, + { + "appid": 2840340, + "normalized_name": "survivor dismissed" + }, + { + "appid": 2840370, + "normalized_name": "starbridge the voyage home" + }, + { + "appid": 2840380, + "normalized_name": "internity" + }, + { + "appid": 2840440, + "normalized_name": "the late arrival" + }, + { + "appid": 2840460, + "normalized_name": "mission rift seeker" + }, + { + "appid": 2840470, + "normalized_name": "simpleplanes 2" + }, + { + "appid": 2840480, + "normalized_name": "flathead" + }, + { + "appid": 2840530, + "normalized_name": "winnie the pooh taste test" + }, + { + "appid": 2840540, + "normalized_name": "aquis" + }, + { + "appid": 2840580, + "normalized_name": "myoka first person view" + }, + { + "appid": 2840590, + "normalized_name": "no signal" + }, + { + "appid": 2840620, + "normalized_name": "blockits" + }, + { + "appid": 2840640, + "normalized_name": "sacred chasm silent utopia" + }, + { + "appid": 2840690, + "normalized_name": "the one" + }, + { + "appid": 2840730, + "normalized_name": "helenenkapelle vr" + }, + { + "appid": 2840740, + "normalized_name": "neon grid" + }, + { + "appid": 2840770, + "normalized_name": "avatar frontiers of pandora" + }, + { + "appid": 2840790, + "normalized_name": "rental" + }, + { + "appid": 2840800, + "normalized_name": "victim complex part 1" + }, + { + "appid": 2840820, + "normalized_name": "anima shin gun" + }, + { + "appid": 2840860, + "normalized_name": "bloom thrice" + }, + { + "appid": 2840880, + "normalized_name": "father son & holy guns" + }, + { + "appid": 2840890, + "normalized_name": "nekokami the human restoration project" + }, + { + "appid": 2840900, + "normalized_name": "lilja and natsuka painting lies" + }, + { + "appid": 2840910, + "normalized_name": "pizza delivery survivors" + }, + { + "appid": 2840920, + "normalized_name": "roll a puzzle contraption" + }, + { + "appid": 2840960, + "normalized_name": "savoring sword" + }, + { + "appid": 2840990, + "normalized_name": "elevator zero" + }, + { + "appid": 2841000, + "normalized_name": "below surface" + }, + { + "appid": 2841010, + "normalized_name": "destiny online" + }, + { + "appid": 2841050, + "normalized_name": "escape from andromeda" + }, + { + "appid": 2841060, + "normalized_name": "pawsome hidden cats kittynawa" + }, + { + "appid": 2841070, + "normalized_name": "dropped into the modern world surviving the red light district" + }, + { + "appid": 2841110, + "normalized_name": "broken world" + }, + { + "appid": 2841130, + "normalized_name": "asmr slicing" + }, + { + "appid": 2841150, + "normalized_name": "battle for the crystals" + }, + { + "appid": 2841160, + "normalized_name": "badmad robots" + }, + { + "appid": 2841200, + "normalized_name": "璀璨的撒拉弗之星 katis" + }, + { + "appid": 2841300, + "normalized_name": "darkness machine" + }, + { + "appid": 2841310, + "normalized_name": "フルーツゲーム" + }, + { + "appid": 2841320, + "normalized_name": "foobar zero" + }, + { + "appid": 2841360, + "normalized_name": "aipet" + }, + { + "appid": 2841370, + "normalized_name": "lament" + }, + { + "appid": 2841390, + "normalized_name": "ava hunt and thieves of the lost" + }, + { + "appid": 2841470, + "normalized_name": "sunset humanity" + }, + { + "appid": 2841490, + "normalized_name": "backrooms:the exit" + }, + { + "appid": 2841510, + "normalized_name": "hell survivors" + }, + { + "appid": 2841530, + "normalized_name": "steve operation nuts" + }, + { + "appid": 2841580, + "normalized_name": "dirge for the zone" + }, + { + "appid": 2841590, + "normalized_name": "dumdum" + }, + { + "appid": 2841600, + "normalized_name": "the vigilante diaries" + }, + { + "appid": 2841610, + "normalized_name": "ooga booga troubles in time" + }, + { + "appid": 2841710, + "normalized_name": "vermin" + }, + { + "appid": 2841720, + "normalized_name": "deep beyond" + }, + { + "appid": 2841730, + "normalized_name": "galactic ascendancy" + }, + { + "appid": 2841740, + "normalized_name": "your letter has been rejected." + }, + { + "appid": 2841750, + "normalized_name": "dualight" + }, + { + "appid": 2841760, + "normalized_name": "human milk seller" + }, + { + "appid": 2841770, + "normalized_name": "phantom squad" + }, + { + "appid": 2841780, + "normalized_name": "answer to survive" + }, + { + "appid": 2841800, + "normalized_name": "dna episode 3" + }, + { + "appid": 2841830, + "normalized_name": "molementum" + }, + { + "appid": 2841950, + "normalized_name": "robot arena survivors" + }, + { + "appid": 2841960, + "normalized_name": "gachapon!" + }, + { + "appid": 2841990, + "normalized_name": "buckshot arena" + }, + { + "appid": 2842010, + "normalized_name": "deeper than hell" + }, + { + "appid": 2842020, + "normalized_name": "lala hentai 2" + }, + { + "appid": 2842030, + "normalized_name": "bound by broadcast" + }, + { + "appid": 2842040, + "normalized_name": "star wars outlaws" + }, + { + "appid": 2842050, + "normalized_name": "stairway to tavern" + }, + { + "appid": 2842070, + "normalized_name": "rockhopper" + }, + { + "appid": 2842090, + "normalized_name": "minesweeper infinite" + }, + { + "appid": 2842100, + "normalized_name": "minotauros" + }, + { + "appid": 2842120, + "normalized_name": "midnight cruise" + }, + { + "appid": 2842150, + "normalized_name": "pair a dice" + }, + { + "appid": 2842200, + "normalized_name": "espionage activity" + }, + { + "appid": 2842210, + "normalized_name": "勇者斗斗龙online" + }, + { + "appid": 2842250, + "normalized_name": "greenhouse" + }, + { + "appid": 2842260, + "normalized_name": "mid death crisis" + }, + { + "appid": 2842360, + "normalized_name": "galactic counselors" + }, + { + "appid": 2842410, + "normalized_name": "elfenberg" + }, + { + "appid": 2842420, + "normalized_name": "1000 cuts jomaku" + }, + { + "appid": 2842430, + "normalized_name": "arc tcg" + }, + { + "appid": 2842460, + "normalized_name": "pirate pop quest" + }, + { + "appid": 2842490, + "normalized_name": "dangerous galaxy" + }, + { + "appid": 2842500, + "normalized_name": "hentai puzzle clarise" + }, + { + "appid": 2842510, + "normalized_name": "voidreth" + }, + { + "appid": 2842520, + "normalized_name": "meteor havok" + }, + { + "appid": 2842530, + "normalized_name": "dopamine" + }, + { + "appid": 2842540, + "normalized_name": "bananamania" + }, + { + "appid": 2842570, + "normalized_name": "[test subject name]" + }, + { + "appid": 2842580, + "normalized_name": "recoil" + }, + { + "appid": 2842590, + "normalized_name": "only up !" + }, + { + "appid": 2842600, + "normalized_name": "astrolancer" + }, + { + "appid": 2842670, + "normalized_name": "mozentum" + }, + { + "appid": 2842680, + "normalized_name": "deep sleep the beggining" + }, + { + "appid": 2842690, + "normalized_name": "unbroken k2" + }, + { + "appid": 2842710, + "normalized_name": "raiden nova | 雷電nova | 雷電新星" + }, + { + "appid": 2842720, + "normalized_name": "toonsouls" + }, + { + "appid": 2842740, + "normalized_name": "whyimmortal" + }, + { + "appid": 2842750, + "normalized_name": "grand circuit" + }, + { + "appid": 2842790, + "normalized_name": "sidereal wanderer" + }, + { + "appid": 2842800, + "normalized_name": "尸姬之梦" + }, + { + "appid": 2842850, + "normalized_name": "sex hotel simulator 18+" + }, + { + "appid": 2842860, + "normalized_name": "college sex fest 2024" + }, + { + "appid": 2842870, + "normalized_name": "my futa girlfriend 🔞" + }, + { + "appid": 2842880, + "normalized_name": "vox populi europa 2024" + }, + { + "appid": 2842910, + "normalized_name": "galaxy dreamer" + }, + { + "appid": 2842960, + "normalized_name": "blueskies 3" + }, + { + "appid": 2842970, + "normalized_name": "zdss zombie drone survival show" + }, + { + "appid": 2843030, + "normalized_name": "memocratie" + }, + { + "appid": 2843050, + "normalized_name": "love rocket" + }, + { + "appid": 2843080, + "normalized_name": "arcane archer" + }, + { + "appid": 2843090, + "normalized_name": "chrono recorder" + }, + { + "appid": 2843100, + "normalized_name": "harukis journey" + }, + { + "appid": 2843110, + "normalized_name": "horror school story" + }, + { + "appid": 2843130, + "normalized_name": "與妹有約 promise with my sister" + }, + { + "appid": 2843140, + "normalized_name": "hypnomemoria" + }, + { + "appid": 2843170, + "normalized_name": "skufs and alt girls" + }, + { + "appid": 2843190, + "normalized_name": "camper van make it home" + }, + { + "appid": 2843200, + "normalized_name": "強運傭兵と宝石の姫騎士 fortunate duo" + }, + { + "appid": 2843240, + "normalized_name": "fancyland" + }, + { + "appid": 2843270, + "normalized_name": "area 8" + }, + { + "appid": 2843310, + "normalized_name": "kokuriko" + }, + { + "appid": 2843340, + "normalized_name": "cars" + }, + { + "appid": 2843350, + "normalized_name": "wish eater" + }, + { + "appid": 2843410, + "normalized_name": "everloop" + }, + { + "appid": 2843520, + "normalized_name": "red rampant" + }, + { + "appid": 2843530, + "normalized_name": "teefax cold case" + }, + { + "appid": 2843540, + "normalized_name": "midnight monitor aldercourt" + }, + { + "appid": 2843550, + "normalized_name": "ghoulscrapers" + }, + { + "appid": 2843590, + "normalized_name": "simon shotgun arms" + }, + { + "appid": 2843600, + "normalized_name": "sagas de claire" + }, + { + "appid": 2843630, + "normalized_name": "seeker of shadows" + }, + { + "appid": 2843640, + "normalized_name": "idle colony" + }, + { + "appid": 2843650, + "normalized_name": "cult&card" + }, + { + "appid": 2843660, + "normalized_name": "metal bunny" + }, + { + "appid": 2843680, + "normalized_name": "vespera bononia" + }, + { + "appid": 2843710, + "normalized_name": "street girls" + }, + { + "appid": 2843720, + "normalized_name": "seagulls crappy situation" + }, + { + "appid": 2843750, + "normalized_name": "masternoid" + }, + { + "appid": 2843780, + "normalized_name": "space star heart of a soldier" + }, + { + "appid": 2843800, + "normalized_name": "whispers of sylvan grove" + }, + { + "appid": 2843810, + "normalized_name": "starborn survivor" + }, + { + "appid": 2843820, + "normalized_name": "always 1 1" + }, + { + "appid": 2843830, + "normalized_name": "the dust of the violet crystals" + }, + { + "appid": 2843920, + "normalized_name": "juicy cream pie" + }, + { + "appid": 2843970, + "normalized_name": "monster shooter" + }, + { + "appid": 2843980, + "normalized_name": "gelatina tiene hambre" + }, + { + "appid": 2844240, + "normalized_name": "state of matter" + }, + { + "appid": 2844250, + "normalized_name": "mausoleum of memories" + }, + { + "appid": 2844290, + "normalized_name": "hard chip" + }, + { + "appid": 2844300, + "normalized_name": "arena survivors" + }, + { + "appid": 2844310, + "normalized_name": "minigames mayhem" + }, + { + "appid": 2844320, + "normalized_name": "super battle polycars" + }, + { + "appid": 2844340, + "normalized_name": "clever girls" + }, + { + "appid": 2844350, + "normalized_name": "cosmic horror tales" + }, + { + "appid": 2844360, + "normalized_name": "mischief" + }, + { + "appid": 2844400, + "normalized_name": "miner clicker" + }, + { + "appid": 2844430, + "normalized_name": "juice" + }, + { + "appid": 2844440, + "normalized_name": "gobocore goblin rescue squad autobattler" + }, + { + "appid": 2844450, + "normalized_name": "operation marakudja" + }, + { + "appid": 2844460, + "normalized_name": "booty barrage" + }, + { + "appid": 2844470, + "normalized_name": "the moon adventures of apollo starlight" + }, + { + "appid": 2844500, + "normalized_name": "my protogen engineer ⚙" + }, + { + "appid": 2844510, + "normalized_name": "endgame" + }, + { + "appid": 2844520, + "normalized_name": "shadows unveiled agnes" + }, + { + "appid": 2844530, + "normalized_name": "makibishi comic" + }, + { + "appid": 2844580, + "normalized_name": "dreamscape return" + }, + { + "appid": 2844620, + "normalized_name": "bed and beakfast" + }, + { + "appid": 2844650, + "normalized_name": "lands of mine" + }, + { + "appid": 2844660, + "normalized_name": "corpo/ghost" + }, + { + "appid": 2844690, + "normalized_name": "astrune academy" + }, + { + "appid": 2844700, + "normalized_name": "doki doki ai interrogation" + }, + { + "appid": 2844710, + "normalized_name": "village dealer simulator" + }, + { + "appid": 2844730, + "normalized_name": "isekai truck driver" + }, + { + "appid": 2844810, + "normalized_name": "letters & legends" + }, + { + "appid": 2844820, + "normalized_name": "codename attila" + }, + { + "appid": 2844850, + "normalized_name": "fantasian neo dimension" + }, + { + "appid": 2844870, + "normalized_name": "arcanterra" + }, + { + "appid": 2844880, + "normalized_name": "ironheart cardia" + }, + { + "appid": 2844910, + "normalized_name": "interior designer" + }, + { + "appid": 2844940, + "normalized_name": "spellarium 6" + }, + { + "appid": 2844950, + "normalized_name": "jumping steve" + }, + { + "appid": 2844980, + "normalized_name": "apex defenders" + }, + { + "appid": 2844990, + "normalized_name": "목줄" + }, + { + "appid": 2845070, + "normalized_name": "cyber internet club simulator" + }, + { + "appid": 2845080, + "normalized_name": "shark siege together survival" + }, + { + "appid": 2845090, + "normalized_name": "the last farmer" + }, + { + "appid": 2845100, + "normalized_name": "time journey" + }, + { + "appid": 2845110, + "normalized_name": "mom simulator 2023" + }, + { + "appid": 2845120, + "normalized_name": "exoracer" + }, + { + "appid": 2845130, + "normalized_name": "nora wanna rise" + }, + { + "appid": 2845140, + "normalized_name": "アパシー小学校であった怖い話 月曜日" + }, + { + "appid": 2845150, + "normalized_name": "seductress" + }, + { + "appid": 2845160, + "normalized_name": "saw lab" + }, + { + "appid": 2845190, + "normalized_name": "free girls!" + }, + { + "appid": 2845210, + "normalized_name": "hidden tactics" + }, + { + "appid": 2845220, + "normalized_name": "альтушка +" + }, + { + "appid": 2845250, + "normalized_name": "100 istanbul cats" + }, + { + "appid": 2845260, + "normalized_name": "100 march cats" + }, + { + "appid": 2845270, + "normalized_name": "100 aliens cats" + }, + { + "appid": 2845300, + "normalized_name": "blinding speed" + }, + { + "appid": 2845310, + "normalized_name": "hoodies squad alcoholypse" + }, + { + "appid": 2845320, + "normalized_name": "cats and seek kyoto" + }, + { + "appid": 2845350, + "normalized_name": "road dinner simulator renovate upgrade expand" + }, + { + "appid": 2845360, + "normalized_name": "against humanity" + }, + { + "appid": 2845370, + "normalized_name": "my little cemetery" + }, + { + "appid": 2845400, + "normalized_name": "hidden cats in breeze village" + }, + { + "appid": 2845430, + "normalized_name": "the witch's redemption" + }, + { + "appid": 2845450, + "normalized_name": "furniture flipper simulator 2023 revive restoration & creative crafting" + }, + { + "appid": 2845460, + "normalized_name": "animal buddies party beasts" + }, + { + "appid": 2845480, + "normalized_name": "survival boat simulator lost at sea" + }, + { + "appid": 2845510, + "normalized_name": "hentai homewrecker" + }, + { + "appid": 2845520, + "normalized_name": "nauts" + }, + { + "appid": 2845560, + "normalized_name": "coffee for cthulhu" + }, + { + "appid": 2845570, + "normalized_name": "how to survive the night shift" + }, + { + "appid": 2845580, + "normalized_name": "the butler did it" + }, + { + "appid": 2845600, + "normalized_name": "interstellar distress" + }, + { + "appid": 2845610, + "normalized_name": "dodo peak" + }, + { + "appid": 2845620, + "normalized_name": "grannyhop" + }, + { + "appid": 2845630, + "normalized_name": "ocean keeper dome survival" + }, + { + "appid": 2845660, + "normalized_name": "millennium arcade" + }, + { + "appid": 2845720, + "normalized_name": "nbb.exe" + }, + { + "appid": 2845740, + "normalized_name": "bunches for bart!" + }, + { + "appid": 2845760, + "normalized_name": "obsolete souls episode 0 operation haiti" + }, + { + "appid": 2845770, + "normalized_name": "the giant crab in space" + }, + { + "appid": 2845780, + "normalized_name": "cook saga" + }, + { + "appid": 2845790, + "normalized_name": "life as a lich" + }, + { + "appid": 2845820, + "normalized_name": "morpi card mix" + }, + { + "appid": 2845840, + "normalized_name": "barbotine" + }, + { + "appid": 2845930, + "normalized_name": "final dash" + }, + { + "appid": 2845940, + "normalized_name": "path of the tank" + }, + { + "appid": 2846000, + "normalized_name": "terunyan to amanoiwato" + }, + { + "appid": 2846020, + "normalized_name": "death scourges prologue" + }, + { + "appid": 2846040, + "normalized_name": "glow hockey" + }, + { + "appid": 2846050, + "normalized_name": "the last hospital" + }, + { + "appid": 2846060, + "normalized_name": "subterror" + }, + { + "appid": 2846070, + "normalized_name": "cosmic mirage" + }, + { + "appid": 2846100, + "normalized_name": "crystal guard td" + }, + { + "appid": 2846110, + "normalized_name": "prometheus unbound" + }, + { + "appid": 2846150, + "normalized_name": "rei a girl with wings" + }, + { + "appid": 2846160, + "normalized_name": "hunted on eclipse 9" + }, + { + "appid": 2846200, + "normalized_name": "essence bloom" + }, + { + "appid": 2846210, + "normalized_name": "let's get fit at midnight shall we?" + }, + { + "appid": 2846220, + "normalized_name": "together with oneesan~yuina's sweet encouragement~" + }, + { + "appid": 2846260, + "normalized_name": "cloudstudy" + }, + { + "appid": 2846290, + "normalized_name": "unspoken" + }, + { + "appid": 2846300, + "normalized_name": "jetsoccer" + }, + { + "appid": 2846320, + "normalized_name": "earthling of gaia" + }, + { + "appid": 2846340, + "normalized_name": "color splash predators" + }, + { + "appid": 2846350, + "normalized_name": "baskerville" + }, + { + "appid": 2846370, + "normalized_name": "babsi bullet" + }, + { + "appid": 2846380, + "normalized_name": "廻段 kaidann" + }, + { + "appid": 2846390, + "normalized_name": "glitch gears" + }, + { + "appid": 2846400, + "normalized_name": "nightlife vista" + }, + { + "appid": 2846430, + "normalized_name": "spellfolio" + }, + { + "appid": 2846440, + "normalized_name": "royal decree!" + }, + { + "appid": 2846460, + "normalized_name": "unknown operations the habitus" + }, + { + "appid": 2846500, + "normalized_name": "virago twisted reality" + }, + { + "appid": 2846510, + "normalized_name": "ninja remix" + }, + { + "appid": 2846520, + "normalized_name": "dungeons & cardboards" + }, + { + "appid": 2846530, + "normalized_name": "brokenlore follow" + }, + { + "appid": 2846550, + "normalized_name": "stick robot puzzle" + }, + { + "appid": 2846580, + "normalized_name": "grappling hook and grappling hook" + }, + { + "appid": 2846590, + "normalized_name": "office7" + }, + { + "appid": 2846640, + "normalized_name": "bird go sky" + }, + { + "appid": 2846660, + "normalized_name": "strange" + }, + { + "appid": 2846680, + "normalized_name": "nooo! my body!" + }, + { + "appid": 2846690, + "normalized_name": "ribbit rampage" + }, + { + "appid": 2846730, + "normalized_name": "taco terror" + }, + { + "appid": 2846740, + "normalized_name": "search all dogs" + }, + { + "appid": 2846770, + "normalized_name": "stop the f" + }, + { + "appid": 2846790, + "normalized_name": "trash horror collection 4" + }, + { + "appid": 2846800, + "normalized_name": "becoming captain the roguelike deckbuilder" + }, + { + "appid": 2846810, + "normalized_name": "los penguinos" + }, + { + "appid": 2846840, + "normalized_name": "synthaar" + }, + { + "appid": 2846850, + "normalized_name": "hexagon ultra vr" + }, + { + "appid": 2846860, + "normalized_name": "smash and bash monsters prologue" + }, + { + "appid": 2846920, + "normalized_name": "jessica's choices series of events" + }, + { + "appid": 2846930, + "normalized_name": "starlit stories" + }, + { + "appid": 2846970, + "normalized_name": "guardião tupã" + }, + { + "appid": 2846980, + "normalized_name": "yasaigame" + }, + { + "appid": 2846990, + "normalized_name": "boo's burgers" + }, + { + "appid": 2847000, + "normalized_name": "room random dungeon" + }, + { + "appid": 2847020, + "normalized_name": "keep health!" + }, + { + "appid": 2847030, + "normalized_name": "boxsim" + }, + { + "appid": 2847110, + "normalized_name": "驱煞" + }, + { + "appid": 2847210, + "normalized_name": "happy birthday" + }, + { + "appid": 2847220, + "normalized_name": "kowloon story 2 | 九龙诡录2" + }, + { + "appid": 2847240, + "normalized_name": "幽霊少女室" + }, + { + "appid": 2847250, + "normalized_name": "river town factory prologue" + }, + { + "appid": 2847270, + "normalized_name": "大梦江湖" + }, + { + "appid": 2847280, + "normalized_name": "strange ocean" + }, + { + "appid": 2847290, + "normalized_name": "the maze" + }, + { + "appid": 2847310, + "normalized_name": "bedtime turn off the life" + }, + { + "appid": 2847340, + "normalized_name": "嗨皮怪兽" + }, + { + "appid": 2847350, + "normalized_name": "valince genesis vr" + }, + { + "appid": 2847360, + "normalized_name": "extinction" + }, + { + "appid": 2847380, + "normalized_name": "fallacy quiz" + }, + { + "appid": 2847390, + "normalized_name": "escape island" + }, + { + "appid": 2847400, + "normalized_name": "endless ascent" + }, + { + "appid": 2847420, + "normalized_name": "king towers" + }, + { + "appid": 2847430, + "normalized_name": "king island" + }, + { + "appid": 2847440, + "normalized_name": "nooch farm" + }, + { + "appid": 2847470, + "normalized_name": "仙侠涤尘箓" + }, + { + "appid": 2847500, + "normalized_name": "nonetheless" + }, + { + "appid": 2847510, + "normalized_name": "synthetica cyber club manager" + }, + { + "appid": 2847580, + "normalized_name": "tokyo school girl" + }, + { + "appid": 2847590, + "normalized_name": "element release water territory 元素释放:水之领域" + }, + { + "appid": 2847600, + "normalized_name": "flagdashers" + }, + { + "appid": 2847640, + "normalized_name": "a living room" + }, + { + "appid": 2847740, + "normalized_name": "super drift blade" + }, + { + "appid": 2847780, + "normalized_name": "ytash a nocturnal poem" + }, + { + "appid": 2847800, + "normalized_name": "sinner" + }, + { + "appid": 2847820, + "normalized_name": "elderwood online" + }, + { + "appid": 2847830, + "normalized_name": "nephilim resurrection" + }, + { + "appid": 2847850, + "normalized_name": "monkey race" + }, + { + "appid": 2847880, + "normalized_name": "stellar mess operation kush (chapter 2)" + }, + { + "appid": 2847940, + "normalized_name": "meow cafe" + }, + { + "appid": 2847970, + "normalized_name": "nav" + }, + { + "appid": 2847980, + "normalized_name": "incremental island" + }, + { + "appid": 2848000, + "normalized_name": "psoltrix" + }, + { + "appid": 2848020, + "normalized_name": "hand of anima" + }, + { + "appid": 2848050, + "normalized_name": "don't look at him" + }, + { + "appid": 2848070, + "normalized_name": "abyssal reflections" + }, + { + "appid": 2848080, + "normalized_name": "stevedore 2024" + }, + { + "appid": 2848100, + "normalized_name": "heroes of latera" + }, + { + "appid": 2848120, + "normalized_name": "reconciliation" + }, + { + "appid": 2848140, + "normalized_name": "co op crunch" + }, + { + "appid": 2848150, + "normalized_name": "where the crows roam" + }, + { + "appid": 2848160, + "normalized_name": "fire path" + }, + { + "appid": 2848190, + "normalized_name": "population goals!" + }, + { + "appid": 2848220, + "normalized_name": "lashes of the sea" + }, + { + "appid": 2848230, + "normalized_name": "two sides" + }, + { + "appid": 2848260, + "normalized_name": "the big below" + }, + { + "appid": 2848300, + "normalized_name": "go rollo go" + }, + { + "appid": 2848310, + "normalized_name": "hmph! hmph! yowai" + }, + { + "appid": 2848360, + "normalized_name": "cavern adventurers" + }, + { + "appid": 2848390, + "normalized_name": "nine lives ninja explore!" + }, + { + "appid": 2848420, + "normalized_name": "my succubus kukula" + }, + { + "appid": 2848430, + "normalized_name": "secret odyssey orb of eternity" + }, + { + "appid": 2848440, + "normalized_name": "hidden object secrets the whitefield murder collector's" + }, + { + "appid": 2848450, + "normalized_name": "おだへん" + }, + { + "appid": 2848460, + "normalized_name": "mesh replica" + }, + { + "appid": 2848470, + "normalized_name": "rosetta" + }, + { + "appid": 2848500, + "normalized_name": "dream escape" + }, + { + "appid": 2848510, + "normalized_name": "relo" + }, + { + "appid": 2848550, + "normalized_name": "fall of the ms estonia" + }, + { + "appid": 2848560, + "normalized_name": "怪力乱神" + }, + { + "appid": 2848570, + "normalized_name": "midnight makeover a paranormal flipper game" + }, + { + "appid": 2848580, + "normalized_name": "sunday run" + }, + { + "appid": 2848590, + "normalized_name": "cleanbot 9000" + }, + { + "appid": 2848610, + "normalized_name": "アカズ off limits | akazu off limits" + }, + { + "appid": 2848660, + "normalized_name": "山海神兽在哪里" + }, + { + "appid": 2848700, + "normalized_name": "galactic dating harem in space station" + }, + { + "appid": 2848740, + "normalized_name": "overrider" + }, + { + "appid": 2848750, + "normalized_name": "things too ugly" + }, + { + "appid": 2848760, + "normalized_name": "gravity forge" + }, + { + "appid": 2848800, + "normalized_name": "pup champs" + }, + { + "appid": 2848810, + "normalized_name": "альтушка с госуслуг" + }, + { + "appid": 2848850, + "normalized_name": "unlock" + }, + { + "appid": 2848880, + "normalized_name": "reaper's interin program (r.i.p.)" + }, + { + "appid": 2848890, + "normalized_name": "wukong survivors : prologue" + }, + { + "appid": 2848900, + "normalized_name": "rpg non rpg valhalla" + }, + { + "appid": 2848910, + "normalized_name": "reggie his cousin two scientists and most likely the end of the world" + }, + { + "appid": 2848950, + "normalized_name": "amelie and the lost spirit" + }, + { + "appid": 2848970, + "normalized_name": "suikawa lead" + }, + { + "appid": 2849000, + "normalized_name": "ascendant dawn" + }, + { + "appid": 2849010, + "normalized_name": "prehistoric gal" + }, + { + "appid": 2849050, + "normalized_name": "anomaly echoes" + }, + { + "appid": 2849070, + "normalized_name": "soulkin" + }, + { + "appid": 2849080, + "normalized_name": "kingdom rush 5 alliance td" + }, + { + "appid": 2849130, + "normalized_name": "shadows over harken" + }, + { + "appid": 2849180, + "normalized_name": "the book of outcasts" + }, + { + "appid": 2849190, + "normalized_name": "i want to be happy" + }, + { + "appid": 2849230, + "normalized_name": "mask around" + }, + { + "appid": 2849290, + "normalized_name": "jeweler simulator" + }, + { + "appid": 2849370, + "normalized_name": "drench" + }, + { + "appid": 2849380, + "normalized_name": "succubus dungeon" + }, + { + "appid": 2849430, + "normalized_name": "conflux prologue" + }, + { + "appid": 2849470, + "normalized_name": "bdsm sex episode 2" + }, + { + "appid": 2849490, + "normalized_name": "outward 2" + }, + { + "appid": 2849500, + "normalized_name": "lost in prayer" + }, + { + "appid": 2849530, + "normalized_name": "a maze ing runner" + }, + { + "appid": 2849600, + "normalized_name": "cubegod" + }, + { + "appid": 2849610, + "normalized_name": "ビキニハンター進撃のビキニ軍団 (bikini hunter attack on bikini army )" + }, + { + "appid": 2849650, + "normalized_name": "sealed bite extended" + }, + { + "appid": 2849680, + "normalized_name": "utopia must fall" + }, + { + "appid": 2849690, + "normalized_name": "springs of ardor" + }, + { + "appid": 2849700, + "normalized_name": "john's hell" + }, + { + "appid": 2849730, + "normalized_name": "fear the moon" + }, + { + "appid": 2849740, + "normalized_name": "day of the tank" + }, + { + "appid": 2849750, + "normalized_name": "killdozer simulator" + }, + { + "appid": 2849760, + "normalized_name": "onychomp lush journey" + }, + { + "appid": 2849780, + "normalized_name": "dark dive" + }, + { + "appid": 2849820, + "normalized_name": "7821 akuji" + }, + { + "appid": 2849840, + "normalized_name": "staycation" + }, + { + "appid": 2849850, + "normalized_name": "wandering petal" + }, + { + "appid": 2849870, + "normalized_name": "snip it!" + }, + { + "appid": 2849910, + "normalized_name": "blood crossroad" + }, + { + "appid": 2849930, + "normalized_name": "shanghai gold" + }, + { + "appid": 2849950, + "normalized_name": "the next kingpin" + }, + { + "appid": 2849960, + "normalized_name": "少女☆歌劇 レヴュースタァライト 舞台奏像劇 遙かなるエルドラド" + }, + { + "appid": 2849970, + "normalized_name": "amazônia viva game animais em extinção" + }, + { + "appid": 2849980, + "normalized_name": "picotrains" + }, + { + "appid": 2849990, + "normalized_name": "auto dungeon" + }, + { + "appid": 2850000, + "normalized_name": "reborn an idle roguelike rpg" + }, + { + "appid": 2850010, + "normalized_name": "stupid dog" + }, + { + "appid": 2850100, + "normalized_name": "dungeon exiles" + }, + { + "appid": 2850110, + "normalized_name": "the dream within" + }, + { + "appid": 2850120, + "normalized_name": "planetstar warrior" + }, + { + "appid": 2850150, + "normalized_name": "g modeアーカイブス+ ペルソナ3 アイギス the first mission" + }, + { + "appid": 2850170, + "normalized_name": "鳥魂2 ~みんなでチキン度診断~" + }, + { + "appid": 2850190, + "normalized_name": "灾厄黑龙与谎言公主" + }, + { + "appid": 2850200, + "normalized_name": "silicon wasteland" + }, + { + "appid": 2850220, + "normalized_name": "少女的移动城堡" + }, + { + "appid": 2850240, + "normalized_name": "skill up!" + }, + { + "appid": 2850260, + "normalized_name": "elhkia" + }, + { + "appid": 2850270, + "normalized_name": "神々の箱庭" + }, + { + "appid": 2850280, + "normalized_name": "rogue resonance" + }, + { + "appid": 2850300, + "normalized_name": "kunkunhome" + }, + { + "appid": 2850310, + "normalized_name": "kanon" + }, + { + "appid": 2850330, + "normalized_name": "jump heroes" + }, + { + "appid": 2850350, + "normalized_name": "三国之怒" + }, + { + "appid": 2850380, + "normalized_name": "device doctor simulator 2024" + }, + { + "appid": 2850410, + "normalized_name": "armored turbodrifter ~ saga chapter 2 ~【tank authority wolfram】" + }, + { + "appid": 2850420, + "normalized_name": "kobold underground agency" + }, + { + "appid": 2850430, + "normalized_name": "ulia chronicles" + }, + { + "appid": 2850460, + "normalized_name": "fishing pond simulator" + }, + { + "appid": 2850490, + "normalized_name": "axyz" + }, + { + "appid": 2850520, + "normalized_name": "kanjimemory" + }, + { + "appid": 2850530, + "normalized_name": "slo's home" + }, + { + "appid": 2850540, + "normalized_name": "race elcano" + }, + { + "appid": 2850560, + "normalized_name": "yesterday's news" + }, + { + "appid": 2850600, + "normalized_name": "mystical tactics" + }, + { + "appid": 2850620, + "normalized_name": "cave hikers" + }, + { + "appid": 2850630, + "normalized_name": "soulbind prologue" + }, + { + "appid": 2850640, + "normalized_name": "bulletmancer" + }, + { + "appid": 2850650, + "normalized_name": "chadgeon enjoyers edition+" + }, + { + "appid": 2850660, + "normalized_name": "haunted record" + }, + { + "appid": 2850680, + "normalized_name": "twizzle puzzle predators" + }, + { + "appid": 2850690, + "normalized_name": "hidden facade" + }, + { + "appid": 2850720, + "normalized_name": "planet royale" + }, + { + "appid": 2850740, + "normalized_name": "m.a.c.e. tower defense 2" + }, + { + "appid": 2850750, + "normalized_name": "toofan alaqsa" + }, + { + "appid": 2850760, + "normalized_name": "ring craft" + }, + { + "appid": 2850810, + "normalized_name": "sticky clicker!" + }, + { + "appid": 2850820, + "normalized_name": "digital diamond baseball v12" + }, + { + "appid": 2850830, + "normalized_name": "noderunner" + }, + { + "appid": 2850840, + "normalized_name": "tokyo mafia simulator" + }, + { + "appid": 2850850, + "normalized_name": "valley of shadows" + }, + { + "appid": 2850860, + "normalized_name": "time avarice" + }, + { + "appid": 2850890, + "normalized_name": "outbreak overlord" + }, + { + "appid": 2850900, + "normalized_name": "drug dealer sim street hustle" + }, + { + "appid": 2850910, + "normalized_name": "prisma" + }, + { + "appid": 2850920, + "normalized_name": "the best treasure" + }, + { + "appid": 2850930, + "normalized_name": "cube guy" + }, + { + "appid": 2850940, + "normalized_name": "timestamps lost love" + }, + { + "appid": 2850950, + "normalized_name": "taxi driver life vr" + }, + { + "appid": 2850960, + "normalized_name": "they speak to us" + }, + { + "appid": 2850970, + "normalized_name": "the great couturier" + }, + { + "appid": 2851020, + "normalized_name": "hannah’s day" + }, + { + "appid": 2851040, + "normalized_name": "inn to the dartness" + }, + { + "appid": 2851050, + "normalized_name": "mops & mobs a sweeping dungeon novel" + }, + { + "appid": 2851110, + "normalized_name": "golden warden" + }, + { + "appid": 2851120, + "normalized_name": "hanno" + }, + { + "appid": 2851130, + "normalized_name": "rebound rivals" + }, + { + "appid": 2851150, + "normalized_name": "tomba! special" + }, + { + "appid": 2851170, + "normalized_name": "tasha keies & clavyce enigmes et trésors a travers les âges ©" + }, + { + "appid": 2851180, + "normalized_name": "cauldron tale" + }, + { + "appid": 2851190, + "normalized_name": "placeless" + }, + { + "appid": 2851220, + "normalized_name": "the schism" + }, + { + "appid": 2851240, + "normalized_name": "kloppyssimo" + }, + { + "appid": 2851260, + "normalized_name": "maize mace maze" + }, + { + "appid": 2851270, + "normalized_name": "foxyrush" + }, + { + "appid": 2851290, + "normalized_name": "pilapila" + }, + { + "appid": 2851300, + "normalized_name": "dominance chess like" + }, + { + "appid": 2851340, + "normalized_name": "hive in space" + }, + { + "appid": 2851420, + "normalized_name": "maple & rufus the water robbery" + }, + { + "appid": 2851450, + "normalized_name": "crucible of the forgotten" + }, + { + "appid": 2851520, + "normalized_name": "dusty the lazy cat" + }, + { + "appid": 2851550, + "normalized_name": "hemlock" + }, + { + "appid": 2851620, + "normalized_name": "from eva with green" + }, + { + "appid": 2851630, + "normalized_name": "kittens & coffee" + }, + { + "appid": 2851640, + "normalized_name": "speed demons 2" + }, + { + "appid": 2851650, + "normalized_name": "paperly paper plane adventure" + }, + { + "appid": 2851660, + "normalized_name": "skateboarding breakthrough gaming arcade" + }, + { + "appid": 2851690, + "normalized_name": "riptide" + }, + { + "appid": 2851700, + "normalized_name": "nasty zombies" + }, + { + "appid": 2851710, + "normalized_name": "clossure" + }, + { + "appid": 2851730, + "normalized_name": "castaway soul" + }, + { + "appid": 2851770, + "normalized_name": "naraku" + }, + { + "appid": 2851800, + "normalized_name": "headlice" + }, + { + "appid": 2851810, + "normalized_name": "realm of gems" + }, + { + "appid": 2851820, + "normalized_name": "kriegsfront tactics prologue" + }, + { + "appid": 2852100, + "normalized_name": "糟糕,我要坠入爱河啦!" + }, + { + "appid": 2852120, + "normalized_name": "flowerfield" + }, + { + "appid": 2852130, + "normalized_name": "deadballcrusader" + }, + { + "appid": 2852150, + "normalized_name": "jumplats" + }, + { + "appid": 2852200, + "normalized_name": "ocrpg" + }, + { + "appid": 2852210, + "normalized_name": "burning ass" + }, + { + "appid": 2852260, + "normalized_name": "pandarunium" + }, + { + "appid": 2852320, + "normalized_name": "baseball breakthrough gaming arcade" + }, + { + "appid": 2852350, + "normalized_name": "racing breakthrough gaming arcade" + }, + { + "appid": 2852390, + "normalized_name": "your turn to disembark" + }, + { + "appid": 2852400, + "normalized_name": "fragment's note+ afterstory" + }, + { + "appid": 2852440, + "normalized_name": "booty run" + }, + { + "appid": 2852470, + "normalized_name": "the fall of elena temple" + }, + { + "appid": 2852480, + "normalized_name": "detective the motel" + }, + { + "appid": 2852490, + "normalized_name": "hunting with dad" + }, + { + "appid": 2852500, + "normalized_name": "deepweb simulator" + }, + { + "appid": 2852560, + "normalized_name": "fragment's note2+" + }, + { + "appid": 2852590, + "normalized_name": "fatal falls" + }, + { + "appid": 2852620, + "normalized_name": "new warfare" + }, + { + "appid": 2852640, + "normalized_name": "blood & dungeon" + }, + { + "appid": 2852650, + "normalized_name": "kings and goblins" + }, + { + "appid": 2852690, + "normalized_name": "arcanum fortuna" + }, + { + "appid": 2852700, + "normalized_name": "bus bro u survived" + }, + { + "appid": 2852750, + "normalized_name": "the games you make" + }, + { + "appid": 2852760, + "normalized_name": "this is no cave" + }, + { + "appid": 2852850, + "normalized_name": "disintegral" + }, + { + "appid": 2852860, + "normalized_name": "top percent" + }, + { + "appid": 2852870, + "normalized_name": "game of evolution" + }, + { + "appid": 2852910, + "normalized_name": "spellbook demonslayers nsfw" + }, + { + "appid": 2852930, + "normalized_name": "ethel" + }, + { + "appid": 2852950, + "normalized_name": "girls and blocks" + }, + { + "appid": 2852970, + "normalized_name": "hateful days" + }, + { + "appid": 2852980, + "normalized_name": "necroking" + }, + { + "appid": 2853050, + "normalized_name": "かみひより ~時檻り編~" + }, + { + "appid": 2853060, + "normalized_name": "riftstrider" + }, + { + "appid": 2853130, + "normalized_name": "astrodle" + }, + { + "appid": 2853160, + "normalized_name": "shooper nova" + }, + { + "appid": 2853170, + "normalized_name": "ambulance simulator 911 emergency" + }, + { + "appid": 2853180, + "normalized_name": "seal the rift" + }, + { + "appid": 2853220, + "normalized_name": "depths of ascension" + }, + { + "appid": 2853240, + "normalized_name": "song of yosef" + }, + { + "appid": 2853250, + "normalized_name": "blunted in the malen" + }, + { + "appid": 2853260, + "normalized_name": "randomly jerk simulator" + }, + { + "appid": 2853270, + "normalized_name": "kitchen carnage" + }, + { + "appid": 2853280, + "normalized_name": "bodega" + }, + { + "appid": 2853290, + "normalized_name": "free stars children of infinity" + }, + { + "appid": 2853300, + "normalized_name": "booeys rip in the rift" + }, + { + "appid": 2853400, + "normalized_name": "alonecats" + }, + { + "appid": 2853410, + "normalized_name": "aldora" + }, + { + "appid": 2853430, + "normalized_name": "ravenwood academy a wizard101 story" + }, + { + "appid": 2853460, + "normalized_name": "pollie" + }, + { + "appid": 2853540, + "normalized_name": "gay sex adventures episode 5" + }, + { + "appid": 2853590, + "normalized_name": "void war" + }, + { + "appid": 2853610, + "normalized_name": "search all mouses" + }, + { + "appid": 2853640, + "normalized_name": "back to the earth" + }, + { + "appid": 2853700, + "normalized_name": "patrol simulator to protect and to serve" + }, + { + "appid": 2853710, + "normalized_name": "penalty" + }, + { + "appid": 2853730, + "normalized_name": "skull and bones" + }, + { + "appid": 2853760, + "normalized_name": "paris simulator" + }, + { + "appid": 2853770, + "normalized_name": "lunar loot" + }, + { + "appid": 2853790, + "normalized_name": "wyvern studios solitaire 30th aniversary" + }, + { + "appid": 2853810, + "normalized_name": "fighters forge" + }, + { + "appid": 2853830, + "normalized_name": "folder dungeon" + }, + { + "appid": 2853840, + "normalized_name": "family breeding" + }, + { + "appid": 2853870, + "normalized_name": "take off mask" + }, + { + "appid": 2853890, + "normalized_name": "sigils of slaughter" + }, + { + "appid": 2854030, + "normalized_name": "chicken boy's counterattack" + }, + { + "appid": 2854050, + "normalized_name": "shining girls" + }, + { + "appid": 2854060, + "normalized_name": "wildcard" + }, + { + "appid": 2854070, + "normalized_name": "conviction the glory of kraft" + }, + { + "appid": 2854130, + "normalized_name": "left behind" + }, + { + "appid": 2854140, + "normalized_name": "herta's chess game" + }, + { + "appid": 2854150, + "normalized_name": "ancient phantasma" + }, + { + "appid": 2854170, + "normalized_name": "oppai succubus academy sucky and busty demonic and lusty!" + }, + { + "appid": 2854200, + "normalized_name": "own time own target" + }, + { + "appid": 2854210, + "normalized_name": "haetae guardians" + }, + { + "appid": 2854220, + "normalized_name": "hentai nurse" + }, + { + "appid": 2854250, + "normalized_name": "worst coach in the world part i" + }, + { + "appid": 2854260, + "normalized_name": "don't click in the dark" + }, + { + "appid": 2854270, + "normalized_name": "battle scars eternal stars" + }, + { + "appid": 2854290, + "normalized_name": "100 space cats" + }, + { + "appid": 2854310, + "normalized_name": "shenzhou saga three kingdoms" + }, + { + "appid": 2854340, + "normalized_name": "placeground" + }, + { + "appid": 2854350, + "normalized_name": "魔星兄弟" + }, + { + "appid": 2854360, + "normalized_name": "runa illustra" + }, + { + "appid": 2854370, + "normalized_name": "floppa the dark forest" + }, + { + "appid": 2854400, + "normalized_name": "kingdom of arcana" + }, + { + "appid": 2854440, + "normalized_name": "red rocket defencism" + }, + { + "appid": 2854480, + "normalized_name": "blindfire" + }, + { + "appid": 2854500, + "normalized_name": "duelant" + }, + { + "appid": 2854510, + "normalized_name": "the walls" + }, + { + "appid": 2854520, + "normalized_name": "dog walking simulator" + }, + { + "appid": 2854560, + "normalized_name": "last loremaster" + }, + { + "appid": 2854590, + "normalized_name": "my cute roommate irene" + }, + { + "appid": 2854600, + "normalized_name": "pastures new" + }, + { + "appid": 2854610, + "normalized_name": "neutralized dark moon" + }, + { + "appid": 2854620, + "normalized_name": "scad" + }, + { + "appid": 2854640, + "normalized_name": "etheriia travelogue" + }, + { + "appid": 2854670, + "normalized_name": "the singing saw simulator" + }, + { + "appid": 2854690, + "normalized_name": "cats of the ming dynasty" + }, + { + "appid": 2854700, + "normalized_name": "ladderclimbing" + }, + { + "appid": 2854710, + "normalized_name": "chocolate factory" + }, + { + "appid": 2854740, + "normalized_name": "nunholy" + }, + { + "appid": 2854770, + "normalized_name": "faceless" + }, + { + "appid": 2854780, + "normalized_name": "froggo's adventure verdant venture" + }, + { + "appid": 2854850, + "normalized_name": "ladies restroom" + }, + { + "appid": 2854980, + "normalized_name": "madness" + }, + { + "appid": 2854990, + "normalized_name": "these thieving hearts" + }, + { + "appid": 2855010, + "normalized_name": "croak croak on the sea" + }, + { + "appid": 2855070, + "normalized_name": "bestdressed fusionpets" + }, + { + "appid": 2855090, + "normalized_name": "survival of exon" + }, + { + "appid": 2855190, + "normalized_name": "gone game of necromancy education" + }, + { + "appid": 2855280, + "normalized_name": "the farmer & the chicken" + }, + { + "appid": 2855360, + "normalized_name": "please insert disc" + }, + { + "appid": 2855390, + "normalized_name": "echoes in the deep a fateforge tale" + }, + { + "appid": 2855450, + "normalized_name": "og memory synthwave boats" + }, + { + "appid": 2855480, + "normalized_name": "parasite flower" + }, + { + "appid": 2855500, + "normalized_name": "jonesville" + }, + { + "appid": 2855510, + "normalized_name": "rail maze 2" + }, + { + "appid": 2855560, + "normalized_name": "流亡黯道" + }, + { + "appid": 2855580, + "normalized_name": "dr. what & detective son" + }, + { + "appid": 2855600, + "normalized_name": "new heaven" + }, + { + "appid": 2855660, + "normalized_name": "newme nume lume alien wars" + }, + { + "appid": 2855700, + "normalized_name": "forest showdown:cat hero battle" + }, + { + "appid": 2855710, + "normalized_name": "scrambler" + }, + { + "appid": 2855740, + "normalized_name": "potato salad" + }, + { + "appid": 2855750, + "normalized_name": "house of 1000 traps" + }, + { + "appid": 2855760, + "normalized_name": "actionhacker" + }, + { + "appid": 2855770, + "normalized_name": "the fear business" + }, + { + "appid": 2855780, + "normalized_name": "one way lane" + }, + { + "appid": 2855800, + "normalized_name": "swaplings" + }, + { + "appid": 2855820, + "normalized_name": "lethal women world of femdom and espionage" + }, + { + "appid": 2855830, + "normalized_name": "reversi temple" + }, + { + "appid": 2855850, + "normalized_name": "三江霸王" + }, + { + "appid": 2855860, + "normalized_name": "enemy metal" + }, + { + "appid": 2855870, + "normalized_name": "steel runner vr block craft sandbox" + }, + { + "appid": 2855940, + "normalized_name": "betrayed" + }, + { + "appid": 2855990, + "normalized_name": "hadley's run a starship saga" + }, + { + "appid": 2856030, + "normalized_name": "beach club simulator 2024" + }, + { + "appid": 2856040, + "normalized_name": "zink" + }, + { + "appid": 2856050, + "normalized_name": "emulated opsrunner" + }, + { + "appid": 2856090, + "normalized_name": "cyan's snow house" + }, + { + "appid": 2856100, + "normalized_name": "street cleaner simulator" + }, + { + "appid": 2856210, + "normalized_name": "scalf x" + }, + { + "appid": 2856230, + "normalized_name": "elementia" + }, + { + "appid": 2856290, + "normalized_name": "wuilsafe" + }, + { + "appid": 2856310, + "normalized_name": "the immemorial order" + }, + { + "appid": 2856370, + "normalized_name": "into the emberlands" + }, + { + "appid": 2856400, + "normalized_name": "talon one bounty hunter" + }, + { + "appid": 2856410, + "normalized_name": "alzara radiant echoes" + }, + { + "appid": 2856420, + "normalized_name": "メランバララン" + }, + { + "appid": 2856430, + "normalized_name": "sir bucket" + }, + { + "appid": 2856440, + "normalized_name": "the temple of children" + }, + { + "appid": 2856450, + "normalized_name": "dimensionals" + }, + { + "appid": 2856480, + "normalized_name": "road to champion boxing simulator" + }, + { + "appid": 2856490, + "normalized_name": "death from the darkness" + }, + { + "appid": 2856530, + "normalized_name": "cemitério são sacramento" + }, + { + "appid": 2856560, + "normalized_name": "フレッシュチャージruru" + }, + { + "appid": 2856570, + "normalized_name": "dark days" + }, + { + "appid": 2856580, + "normalized_name": "survive ten days" + }, + { + "appid": 2856590, + "normalized_name": "obilia" + }, + { + "appid": 2856600, + "normalized_name": "augmented empire" + }, + { + "appid": 2856640, + "normalized_name": "guerra civil" + }, + { + "appid": 2856650, + "normalized_name": "delivery express" + }, + { + "appid": 2856670, + "normalized_name": "astromole" + }, + { + "appid": 2856750, + "normalized_name": "aliro1" + }, + { + "appid": 2856770, + "normalized_name": "simple things" + }, + { + "appid": 2856810, + "normalized_name": "sky journey cozy mornings" + }, + { + "appid": 2856870, + "normalized_name": "got simulator" + }, + { + "appid": 2856880, + "normalized_name": "roses shoot red violets shoot blue" + }, + { + "appid": 2856930, + "normalized_name": "pixelcaves" + }, + { + "appid": 2856980, + "normalized_name": "it takes a village" + }, + { + "appid": 2856990, + "normalized_name": "bastion of beginnings" + }, + { + "appid": 2857000, + "normalized_name": "refarm" + }, + { + "appid": 2857050, + "normalized_name": "my little rpg shop" + }, + { + "appid": 2857070, + "normalized_name": "tales of lost ages vol 1." + }, + { + "appid": 2857090, + "normalized_name": "waki & the lost spirits" + }, + { + "appid": 2857170, + "normalized_name": "lucha masters mighty lucha" + }, + { + "appid": 2857180, + "normalized_name": "feather trail" + }, + { + "appid": 2857240, + "normalized_name": "vireframe" + }, + { + "appid": 2857250, + "normalized_name": "bodyguard task force" + }, + { + "appid": 2857350, + "normalized_name": "flora & fauna" + }, + { + "appid": 2857380, + "normalized_name": "tentacuddle" + }, + { + "appid": 2857400, + "normalized_name": "dice zee!" + }, + { + "appid": 2857420, + "normalized_name": "guild battalion" + }, + { + "appid": 2857510, + "normalized_name": "for those we forgot" + }, + { + "appid": 2857560, + "normalized_name": "helbreath nemesis" + }, + { + "appid": 2857580, + "normalized_name": "god of fortune" + }, + { + "appid": 2857610, + "normalized_name": "up with doznik" + }, + { + "appid": 2857680, + "normalized_name": "winterclaw" + }, + { + "appid": 2857690, + "normalized_name": "count to ten infinity" + }, + { + "appid": 2857700, + "normalized_name": "usual" + }, + { + "appid": 2857730, + "normalized_name": "逗比危机" + }, + { + "appid": 2857750, + "normalized_name": "gingar ail" + }, + { + "appid": 2857760, + "normalized_name": "word sylla" + }, + { + "appid": 2857780, + "normalized_name": "chibi tactics" + }, + { + "appid": 2857810, + "normalized_name": "sleight of hand" + }, + { + "appid": 2857840, + "normalized_name": "vice prologue she writes the beginning and the end" + }, + { + "appid": 2857880, + "normalized_name": "yakuza rogue yokohama massage parlor chapter" + }, + { + "appid": 2857900, + "normalized_name": "nyzd" + }, + { + "appid": 2857910, + "normalized_name": "moonripple lake" + }, + { + "appid": 2857940, + "normalized_name": "acorn cop" + }, + { + "appid": 2857980, + "normalized_name": "einstein's cats" + }, + { + "appid": 2857990, + "normalized_name": "easter 2024 memory" + }, + { + "appid": 2858000, + "normalized_name": "easter 2024 puzzle" + }, + { + "appid": 2858020, + "normalized_name": "bob the zhero" + }, + { + "appid": 2858050, + "normalized_name": "muchi muchi sextra" + }, + { + "appid": 2858060, + "normalized_name": "luna's eyes ルナ・アイズ" + }, + { + "appid": 2858110, + "normalized_name": "meme christmas" + }, + { + "appid": 2858130, + "normalized_name": "soul shifters mmorpg" + }, + { + "appid": 2858140, + "normalized_name": "the evil rise" + }, + { + "appid": 2858150, + "normalized_name": "airships lost flotilla" + }, + { + "appid": 2858180, + "normalized_name": "fancy rinshi sensetion" + }, + { + "appid": 2858190, + "normalized_name": "prism break" + }, + { + "appid": 2858220, + "normalized_name": "the silent column" + }, + { + "appid": 2858270, + "normalized_name": "the storyteller" + }, + { + "appid": 2858320, + "normalized_name": "night shift dissonance" + }, + { + "appid": 2858340, + "normalized_name": "ящеры vs русов арена" + }, + { + "appid": 2858360, + "normalized_name": "critterball derby" + }, + { + "appid": 2858370, + "normalized_name": "voxel project vr" + }, + { + "appid": 2858380, + "normalized_name": "egregore" + }, + { + "appid": 2858390, + "normalized_name": "the veiled ones" + }, + { + "appid": 2858400, + "normalized_name": "bugnauts!" + }, + { + "appid": 2858410, + "normalized_name": "brinkmanship" + }, + { + "appid": 2858420, + "normalized_name": "laughterlost" + }, + { + "appid": 2858430, + "normalized_name": "lake minnewaska" + }, + { + "appid": 2858500, + "normalized_name": "rhythm & beats" + }, + { + "appid": 2858750, + "normalized_name": "oh boy cheese" + }, + { + "appid": 2858760, + "normalized_name": "beach bums" + }, + { + "appid": 2858780, + "normalized_name": "materia" + }, + { + "appid": 2858790, + "normalized_name": "dead man's hand card roulette action" + }, + { + "appid": 2858810, + "normalized_name": "重燃星陨reburning meteorite" + }, + { + "appid": 2858820, + "normalized_name": "clean city project" + }, + { + "appid": 2858830, + "normalized_name": "thongs" + }, + { + "appid": 2858840, + "normalized_name": "alchemy unbound" + }, + { + "appid": 2858850, + "normalized_name": "kyber kraft" + }, + { + "appid": 2858860, + "normalized_name": "the witch" + }, + { + "appid": 2858880, + "normalized_name": "one king is enough" + }, + { + "appid": 2858910, + "normalized_name": "hamster clicker!" + }, + { + "appid": 2858920, + "normalized_name": "eclipse of elysium" + }, + { + "appid": 2858930, + "normalized_name": "split personality doctor prologue" + }, + { + "appid": 2858960, + "normalized_name": "lume" + }, + { + "appid": 2858970, + "normalized_name": "beware of light" + }, + { + "appid": 2859060, + "normalized_name": "tashikani" + }, + { + "appid": 2859080, + "normalized_name": "john fox" + }, + { + "appid": 2859090, + "normalized_name": "exodos" + }, + { + "appid": 2859100, + "normalized_name": "the adventures of hills" + }, + { + "appid": 2859130, + "normalized_name": "for one year" + }, + { + "appid": 2859190, + "normalized_name": "gates of despair" + }, + { + "appid": 2859200, + "normalized_name": "alex hill whispers at white oak inn" + }, + { + "appid": 2859220, + "normalized_name": "vuntra city" + }, + { + "appid": 2859230, + "normalized_name": "survival z the alpha" + }, + { + "appid": 2859240, + "normalized_name": "tp bullet" + }, + { + "appid": 2859250, + "normalized_name": "froggy bouncing adventures" + }, + { + "appid": 2859270, + "normalized_name": "it could happen to you" + }, + { + "appid": 2859300, + "normalized_name": "defendit" + }, + { + "appid": 2859330, + "normalized_name": "the redundant" + }, + { + "appid": 2859350, + "normalized_name": "echoes of the ashen" + }, + { + "appid": 2859360, + "normalized_name": "undercroft" + }, + { + "appid": 2859370, + "normalized_name": "game of life time" + }, + { + "appid": 2859450, + "normalized_name": "find cats with friends" + }, + { + "appid": 2859470, + "normalized_name": "." + }, + { + "appid": 2859510, + "normalized_name": "chromatrix tower defense" + }, + { + "appid": 2859520, + "normalized_name": "cyber chaos" + }, + { + "appid": 2859530, + "normalized_name": "wanderling" + }, + { + "appid": 2859540, + "normalized_name": "super kye" + }, + { + "appid": 2859560, + "normalized_name": "creatures after calamity" + }, + { + "appid": 2859570, + "normalized_name": "evil beneath" + }, + { + "appid": 2859600, + "normalized_name": "glitch blaster's waifu" + }, + { + "appid": 2859670, + "normalized_name": "firewall cyber defense" + }, + { + "appid": 2859730, + "normalized_name": "intergalactic battle roosters" + }, + { + "appid": 2859750, + "normalized_name": "the last camp 1990" + }, + { + "appid": 2859780, + "normalized_name": "网球女神" + }, + { + "appid": 2859800, + "normalized_name": "harbinger" + }, + { + "appid": 2859810, + "normalized_name": "there's no dinosaurs 2" + }, + { + "appid": 2859820, + "normalized_name": "nora in search of hidden ingredients" + }, + { + "appid": 2859860, + "normalized_name": "薇拉里娅的烛花" + }, + { + "appid": 2859870, + "normalized_name": "游戏大对决" + }, + { + "appid": 2859880, + "normalized_name": "toilet party" + }, + { + "appid": 2859890, + "normalized_name": "uncle's mountain gate simulator" + }, + { + "appid": 2859920, + "normalized_name": "angler quest" + }, + { + "appid": 2859940, + "normalized_name": "nuclear cheetah" + }, + { + "appid": 2860010, + "normalized_name": "我要出院 leaving the hospital" + }, + { + "appid": 2860020, + "normalized_name": "doors of insanity reopened" + }, + { + "appid": 2860040, + "normalized_name": "sis and bro the cyborg siblings" + }, + { + "appid": 2860070, + "normalized_name": "real gostop vr" + }, + { + "appid": 2860090, + "normalized_name": "himantolo" + }, + { + "appid": 2860130, + "normalized_name": "demon kingdom" + }, + { + "appid": 2860150, + "normalized_name": "asteroid drift" + }, + { + "appid": 2860170, + "normalized_name": "runi's math castle" + }, + { + "appid": 2860190, + "normalized_name": "西游记 幻想西游释厄传" + }, + { + "appid": 2860230, + "normalized_name": "消消气" + }, + { + "appid": 2860250, + "normalized_name": "mudoku next sudoku" + }, + { + "appid": 2860260, + "normalized_name": "the infernal mist" + }, + { + "appid": 2860270, + "normalized_name": "orbs of chaos" + }, + { + "appid": 2860280, + "normalized_name": "lamina bruise" + }, + { + "appid": 2860290, + "normalized_name": "cycles" + }, + { + "appid": 2860300, + "normalized_name": "战棋大陆" + }, + { + "appid": 2860330, + "normalized_name": "roll of fate" + }, + { + "appid": 2860370, + "normalized_name": "おに高ころりんゲーム" + }, + { + "appid": 2860380, + "normalized_name": "recoil cluck" + }, + { + "appid": 2860390, + "normalized_name": "escape blocks" + }, + { + "appid": 2860400, + "normalized_name": "laserstorm" + }, + { + "appid": 2860410, + "normalized_name": "ninehells" + }, + { + "appid": 2860420, + "normalized_name": "breaking bound" + }, + { + "appid": 2860440, + "normalized_name": "デジプラコレクション まるごと鉄道!ミニ ~jr貨物編~" + }, + { + "appid": 2860450, + "normalized_name": "happy sheepies" + }, + { + "appid": 2860460, + "normalized_name": "boss simulator" + }, + { + "appid": 2860510, + "normalized_name": "frayed" + }, + { + "appid": 2860580, + "normalized_name": "otto's escape" + }, + { + "appid": 2860620, + "normalized_name": "afrocobra" + }, + { + "appid": 2860660, + "normalized_name": "eternal cocoon" + }, + { + "appid": 2860670, + "normalized_name": "souls of shadow" + }, + { + "appid": 2860690, + "normalized_name": "office survivor" + }, + { + "appid": 2860780, + "normalized_name": "bounce gun" + }, + { + "appid": 2860800, + "normalized_name": "寻找高冷女孩" + }, + { + "appid": 2860810, + "normalized_name": "decked in love" + }, + { + "appid": 2860850, + "normalized_name": "fantasy shootoff" + }, + { + "appid": 2860870, + "normalized_name": "monorace" + }, + { + "appid": 2860920, + "normalized_name": "not alone in the space" + }, + { + "appid": 2860950, + "normalized_name": "punishment nyannyan" + }, + { + "appid": 2860970, + "normalized_name": "binary barrier" + }, + { + "appid": 2860990, + "normalized_name": "nautical survival" + }, + { + "appid": 2861000, + "normalized_name": "hex.plan.x" + }, + { + "appid": 2861020, + "normalized_name": "frog corner" + }, + { + "appid": 2861030, + "normalized_name": "fourpoint prologue" + }, + { + "appid": 2861050, + "normalized_name": "ice cream pachinly" + }, + { + "appid": 2861060, + "normalized_name": "project cottontails" + }, + { + "appid": 2861070, + "normalized_name": "cuties monster girl" + }, + { + "appid": 2861080, + "normalized_name": "haunted paws" + }, + { + "appid": 2861090, + "normalized_name": "war mechanic" + }, + { + "appid": 2861120, + "normalized_name": "bonville bandit" + }, + { + "appid": 2861150, + "normalized_name": "working sakuya" + }, + { + "appid": 2861170, + "normalized_name": "小品模拟器" + }, + { + "appid": 2861260, + "normalized_name": "the battle of aurinoxia" + }, + { + "appid": 2861270, + "normalized_name": "停车老司机" + }, + { + "appid": 2861280, + "normalized_name": "moaisland" + }, + { + "appid": 2861290, + "normalized_name": "distant oceanic getaway" + }, + { + "appid": 2861360, + "normalized_name": "sprite's honor!" + }, + { + "appid": 2861390, + "normalized_name": "the ranger border hunt" + }, + { + "appid": 2861400, + "normalized_name": "foolhut pack 3 games in 1" + }, + { + "appid": 2861480, + "normalized_name": "kart them all" + }, + { + "appid": 2861560, + "normalized_name": "lemonade apocalypse" + }, + { + "appid": 2861570, + "normalized_name": "path to nothing" + }, + { + "appid": 2861590, + "normalized_name": "machine mind" + }, + { + "appid": 2861610, + "normalized_name": "the krilling scare feast!" + }, + { + "appid": 2861620, + "normalized_name": "rigid" + }, + { + "appid": 2861630, + "normalized_name": "jetsam!" + }, + { + "appid": 2861660, + "normalized_name": "ultimahjong" + }, + { + "appid": 2861730, + "normalized_name": "food devils" + }, + { + "appid": 2861740, + "normalized_name": "東方资志疏 ~ immortal immanuel. (东方资志疏)" + }, + { + "appid": 2861750, + "normalized_name": "forest keeper 2" + }, + { + "appid": 2861860, + "normalized_name": "magic ring" + }, + { + "appid": 2861880, + "normalized_name": "word turtle island" + }, + { + "appid": 2861950, + "normalized_name": "my drug cartel" + }, + { + "appid": 2862020, + "normalized_name": "let's park bus" + }, + { + "appid": 2862030, + "normalized_name": "lunatic taxi driver" + }, + { + "appid": 2862040, + "normalized_name": "one chance" + }, + { + "appid": 2862050, + "normalized_name": "spaceship driver license" + }, + { + "appid": 2862060, + "normalized_name": "wild animals transporter" + }, + { + "appid": 2862070, + "normalized_name": "halberta" + }, + { + "appid": 2862120, + "normalized_name": "wizard mukbang the game" + }, + { + "appid": 2862140, + "normalized_name": "shaolin bao" + }, + { + "appid": 2862160, + "normalized_name": "tribal towers siege of the shifting fortress" + }, + { + "appid": 2862210, + "normalized_name": "trasmoz legends" + }, + { + "appid": 2862240, + "normalized_name": "detect dev" + }, + { + "appid": 2862280, + "normalized_name": "the devil's whisper" + }, + { + "appid": 2862290, + "normalized_name": "gunswitch" + }, + { + "appid": 2862350, + "normalized_name": "endloop" + }, + { + "appid": 2862360, + "normalized_name": "potion problem" + }, + { + "appid": 2862370, + "normalized_name": "the milliner" + }, + { + "appid": 2862390, + "normalized_name": "unstrayed" + }, + { + "appid": 2862400, + "normalized_name": "shoot giant robots and wallrun" + }, + { + "appid": 2862430, + "normalized_name": "brainwashing with tentacles r" + }, + { + "appid": 2862440, + "normalized_name": "贄の町" + }, + { + "appid": 2862450, + "normalized_name": "vanguard" + }, + { + "appid": 2862460, + "normalized_name": "beyond the threshold" + }, + { + "appid": 2862470, + "normalized_name": "bumbi" + }, + { + "appid": 2862500, + "normalized_name": "guardian tactics deck of the chosen" + }, + { + "appid": 2862540, + "normalized_name": "bullet brain" + }, + { + "appid": 2862560, + "normalized_name": "kingmaker" + }, + { + "appid": 2862590, + "normalized_name": "hentai puppy maid" + }, + { + "appid": 2862610, + "normalized_name": "超级星探" + }, + { + "appid": 2862620, + "normalized_name": "dark umbra" + }, + { + "appid": 2862660, + "normalized_name": "survivalscape" + }, + { + "appid": 2862670, + "normalized_name": "playback loop" + }, + { + "appid": 2862680, + "normalized_name": "abort the exile" + }, + { + "appid": 2862700, + "normalized_name": "typing ninja" + }, + { + "appid": 2862710, + "normalized_name": "pure pure pero pero princess" + }, + { + "appid": 2862730, + "normalized_name": "apartment of death" + }, + { + "appid": 2862770, + "normalized_name": "星海乐章 | galix newhorizons | 星の旅:億万年の絆" + }, + { + "appid": 2862850, + "normalized_name": "the vault" + }, + { + "appid": 2862860, + "normalized_name": "ukrainian fight drone simulator" + }, + { + "appid": 2862890, + "normalized_name": "become the moon" + }, + { + "appid": 2862960, + "normalized_name": "scary stories" + }, + { + "appid": 2862970, + "normalized_name": "neural shock" + }, + { + "appid": 2862990, + "normalized_name": "zerko" + }, + { + "appid": 2863000, + "normalized_name": "the hamster" + }, + { + "appid": 2863020, + "normalized_name": "exploding pandas" + }, + { + "appid": 2863040, + "normalized_name": "echoes of the sun" + }, + { + "appid": 2863050, + "normalized_name": "cyberhoney" + }, + { + "appid": 2863070, + "normalized_name": "しんせいかつ" + }, + { + "appid": 2863090, + "normalized_name": "no.9" + }, + { + "appid": 2863160, + "normalized_name": "projekt passion season 2" + }, + { + "appid": 2863240, + "normalized_name": "college sex episode 9" + }, + { + "appid": 2863290, + "normalized_name": "mini micro racing" + }, + { + "appid": 2863300, + "normalized_name": "absym" + }, + { + "appid": 2863310, + "normalized_name": "hypnosis card 2" + }, + { + "appid": 2863320, + "normalized_name": "life or reach" + }, + { + "appid": 2863330, + "normalized_name": "sex with putin" + }, + { + "appid": 2863340, + "normalized_name": "murder avenue" + }, + { + "appid": 2863350, + "normalized_name": "agent brain tricky puzzles" + }, + { + "appid": 2863420, + "normalized_name": "pitch race car racing" + }, + { + "appid": 2863440, + "normalized_name": "ghosthero shadow of vengeance" + }, + { + "appid": 2863530, + "normalized_name": "keep it running" + }, + { + "appid": 2863590, + "normalized_name": "heroes of forever" + }, + { + "appid": 2863640, + "normalized_name": "the midnight walk" + }, + { + "appid": 2863670, + "normalized_name": "トルネードレイド / トルネードブレイド" + }, + { + "appid": 2863690, + "normalized_name": "twilight manor roguelite fps" + }, + { + "appid": 2863710, + "normalized_name": "duckland" + }, + { + "appid": 2863770, + "normalized_name": "baku+neko" + }, + { + "appid": 2863780, + "normalized_name": "the territory of egg 2" + }, + { + "appid": 2863790, + "normalized_name": "folkorigin" + }, + { + "appid": 2863800, + "normalized_name": "uncle's basement" + }, + { + "appid": 2863810, + "normalized_name": "橘猫猫的幻想" + }, + { + "appid": 2863820, + "normalized_name": "vrlegs" + }, + { + "appid": 2863830, + "normalized_name": "space pirateer" + }, + { + "appid": 2863840, + "normalized_name": "yiik nameless psychosis" + }, + { + "appid": 2863870, + "normalized_name": "exit 13 gallery escape" + }, + { + "appid": 2863880, + "normalized_name": "salto mortadella" + }, + { + "appid": 2864000, + "normalized_name": "beak blades" + }, + { + "appid": 2864050, + "normalized_name": "simuaction シミュアクション" + }, + { + "appid": 2864070, + "normalized_name": "the last night" + }, + { + "appid": 2864100, + "normalized_name": "phosphenia" + }, + { + "appid": 2864110, + "normalized_name": "giltsteader tower defense" + }, + { + "appid": 2864200, + "normalized_name": "super math saga" + }, + { + "appid": 2864210, + "normalized_name": "tomboy sex in the forest" + }, + { + "appid": 2864220, + "normalized_name": "i am kilt" + }, + { + "appid": 2864230, + "normalized_name": "astronaut assault" + }, + { + "appid": 2864270, + "normalized_name": "cosmic tankinator" + }, + { + "appid": 2864300, + "normalized_name": "zombodesert" + }, + { + "appid": 2864310, + "normalized_name": "forest hills the last year" + }, + { + "appid": 2864320, + "normalized_name": "timing blocks" + }, + { + "appid": 2864340, + "normalized_name": "shade hunters" + }, + { + "appid": 2864350, + "normalized_name": "sacred forest" + }, + { + "appid": 2864360, + "normalized_name": "viridian" + }, + { + "appid": 2864370, + "normalized_name": "fully dogomatic" + }, + { + "appid": 2864390, + "normalized_name": "mana cycle" + }, + { + "appid": 2864400, + "normalized_name": "up & down" + }, + { + "appid": 2864420, + "normalized_name": "bot hunter" + }, + { + "appid": 2864450, + "normalized_name": "operação prato" + }, + { + "appid": 2864500, + "normalized_name": "wizup!" + }, + { + "appid": 2864510, + "normalized_name": "college gay sex episode 2" + }, + { + "appid": 2864560, + "normalized_name": "rune factory guardians of azuma" + }, + { + "appid": 2864590, + "normalized_name": "murder at the birch tree theater" + }, + { + "appid": 2864600, + "normalized_name": "project madras" + }, + { + "appid": 2864660, + "normalized_name": "corevr" + }, + { + "appid": 2864680, + "normalized_name": "diatomic" + }, + { + "appid": 2864720, + "normalized_name": "hentai uniform" + }, + { + "appid": 2864750, + "normalized_name": "minihunt" + }, + { + "appid": 2864780, + "normalized_name": "tower doomer" + }, + { + "appid": 2864800, + "normalized_name": "egg defense" + }, + { + "appid": 2864810, + "normalized_name": "last extract" + }, + { + "appid": 2864830, + "normalized_name": "legend of the master baiter" + }, + { + "appid": 2864850, + "normalized_name": "lilith rising season 2" + }, + { + "appid": 2864860, + "normalized_name": "fallen saint yhoundeh" + }, + { + "appid": 2864880, + "normalized_name": "dungeon gals" + }, + { + "appid": 2864890, + "normalized_name": "magic research 2" + }, + { + "appid": 2865060, + "normalized_name": "harlot's path" + }, + { + "appid": 2865070, + "normalized_name": "claw clash cat vs dog betting" + }, + { + "appid": 2865130, + "normalized_name": "后室:彼阳的晚意 backrooms beyond one year" + }, + { + "appid": 2865140, + "normalized_name": "hulzuyot horror game" + }, + { + "appid": 2865160, + "normalized_name": "jumping in the middle of the sky" + }, + { + "appid": 2865190, + "normalized_name": "the time game" + }, + { + "appid": 2865200, + "normalized_name": "take a look" + }, + { + "appid": 2865220, + "normalized_name": "haunted house 2" + }, + { + "appid": 2865230, + "normalized_name": "heaven seeker コノ残酷ナ世界ノ救イ方" + }, + { + "appid": 2865260, + "normalized_name": "the zombland enter at your peril" + }, + { + "appid": 2865300, + "normalized_name": "迷宫童话" + }, + { + "appid": 2865330, + "normalized_name": "边境山脉" + }, + { + "appid": 2865350, + "normalized_name": "zombiecam" + }, + { + "appid": 2865360, + "normalized_name": "inline out of time" + }, + { + "appid": 2865380, + "normalized_name": "scott whiskers the search for the golden cat" + }, + { + "appid": 2865400, + "normalized_name": "hentai x thief" + }, + { + "appid": 2865440, + "normalized_name": "front mission 2 remake" + }, + { + "appid": 2865450, + "normalized_name": "tokyo desire deck builders" + }, + { + "appid": 2865490, + "normalized_name": "恋爱单选题" + }, + { + "appid": 2865500, + "normalized_name": "systems fall" + }, + { + "appid": 2865520, + "normalized_name": "trucking simulator" + }, + { + "appid": 2865540, + "normalized_name": "symmetric;vision" + }, + { + "appid": 2865580, + "normalized_name": "let's minesweeper" + }, + { + "appid": 2865590, + "normalized_name": "sister's curriculum" + }, + { + "appid": 2865610, + "normalized_name": "road maintenance simulator 2 winter services" + }, + { + "appid": 2865640, + "normalized_name": "help the cats" + }, + { + "appid": 2865660, + "normalized_name": "sky jumping" + }, + { + "appid": 2865670, + "normalized_name": "jetrunner" + }, + { + "appid": 2865680, + "normalized_name": "first dwarf prologue first island" + }, + { + "appid": 2865720, + "normalized_name": "tower defense last castle" + }, + { + "appid": 2865750, + "normalized_name": "mall manager" + }, + { + "appid": 2865790, + "normalized_name": "black zork" + }, + { + "appid": 2865800, + "normalized_name": "cubethon" + }, + { + "appid": 2865810, + "normalized_name": "dark color" + }, + { + "appid": 2865830, + "normalized_name": "weed harvest" + }, + { + "appid": 2865840, + "normalized_name": "cats guns & robots prologue" + }, + { + "appid": 2865850, + "normalized_name": "macau midnight madness" + }, + { + "appid": 2865870, + "normalized_name": "resource recon" + }, + { + "appid": 2865890, + "normalized_name": "keep the house warm" + }, + { + "appid": 2865900, + "normalized_name": "hero's black dungeon" + }, + { + "appid": 2865910, + "normalized_name": "black werewolf" + }, + { + "appid": 2865920, + "normalized_name": "night of the assassins" + }, + { + "appid": 2865930, + "normalized_name": "rime's quest" + }, + { + "appid": 2866000, + "normalized_name": "sword vs horde" + }, + { + "appid": 2866030, + "normalized_name": "sword smash 2" + }, + { + "appid": 2866120, + "normalized_name": "johnny trigger sniper" + }, + { + "appid": 2866130, + "normalized_name": "凌天1~妳的命定王子" + }, + { + "appid": 2866220, + "normalized_name": "chicken with robot legs" + }, + { + "appid": 2866240, + "normalized_name": "timber tales" + }, + { + "appid": 2866250, + "normalized_name": "bar breaker" + }, + { + "appid": 2866260, + "normalized_name": "cyber commander zombie revenge" + }, + { + "appid": 2866270, + "normalized_name": "sail the seas" + }, + { + "appid": 2866290, + "normalized_name": "elevator down" + }, + { + "appid": 2866330, + "normalized_name": "astera" + }, + { + "appid": 2866360, + "normalized_name": "backrooms no return prologue" + }, + { + "appid": 2866410, + "normalized_name": "oxrox" + }, + { + "appid": 2866420, + "normalized_name": "puppet hide and seek" + }, + { + "appid": 2866430, + "normalized_name": "scarlet defiance the wall between us" + }, + { + "appid": 2866440, + "normalized_name": "lily’s labyrinth of lust" + }, + { + "appid": 2866470, + "normalized_name": "horizon's edge" + }, + { + "appid": 2866530, + "normalized_name": "arcady village" + }, + { + "appid": 2866550, + "normalized_name": "hangul shooter" + }, + { + "appid": 2866560, + "normalized_name": "lightgone" + }, + { + "appid": 2866580, + "normalized_name": "astral disorder" + }, + { + "appid": 2866600, + "normalized_name": "project13 nightwatch" + }, + { + "appid": 2866640, + "normalized_name": "a death in the red light" + }, + { + "appid": 2866670, + "normalized_name": "the run got next" + }, + { + "appid": 2866690, + "normalized_name": "secrets of the silent school" + }, + { + "appid": 2866700, + "normalized_name": "lever simulator multiplayer" + }, + { + "appid": 2866710, + "normalized_name": "limb from limb" + }, + { + "appid": 2866730, + "normalized_name": "you left us" + }, + { + "appid": 2866750, + "normalized_name": "void carrier" + }, + { + "appid": 2866780, + "normalized_name": "pineford part i" + }, + { + "appid": 2866800, + "normalized_name": "mental state. game one" + }, + { + "appid": 2866830, + "normalized_name": "ghost hospital in thousand horror hill" + }, + { + "appid": 2866840, + "normalized_name": "rising sands" + }, + { + "appid": 2866850, + "normalized_name": "cellular survival" + }, + { + "appid": 2866870, + "normalized_name": "拯救骑士 save the knight" + }, + { + "appid": 2866880, + "normalized_name": "orangutangle" + }, + { + "appid": 2866900, + "normalized_name": "into oblivion" + }, + { + "appid": 2866910, + "normalized_name": "fallopian frenzy! come again?" + }, + { + "appid": 2866950, + "normalized_name": "riseexplosion" + }, + { + "appid": 2866960, + "normalized_name": "wizlite everybody loved rpgs" + }, + { + "appid": 2866980, + "normalized_name": "dinner defenders" + }, + { + "appid": 2867000, + "normalized_name": "animal water pang!" + }, + { + "appid": 2867140, + "normalized_name": "quick cast chaos" + }, + { + "appid": 2867150, + "normalized_name": "a very dark ride in the proximity of the house of mirrors" + }, + { + "appid": 2867190, + "normalized_name": "孤独之旅 lonely journey" + }, + { + "appid": 2867200, + "normalized_name": "car toon chaos" + }, + { + "appid": 2867220, + "normalized_name": "world's goodest pup" + }, + { + "appid": 2867230, + "normalized_name": "gift for you" + }, + { + "appid": 2867250, + "normalized_name": "きのこゲーム" + }, + { + "appid": 2867310, + "normalized_name": "flyga" + }, + { + "appid": 2867340, + "normalized_name": "nonu" + }, + { + "appid": 2867360, + "normalized_name": "femdom game world stepmother" + }, + { + "appid": 2867370, + "normalized_name": "family secrets sweet sister" + }, + { + "appid": 2867380, + "normalized_name": "cbo td" + }, + { + "appid": 2867410, + "normalized_name": "深渊与地下城" + }, + { + "appid": 2867420, + "normalized_name": "necrostone" + }, + { + "appid": 2867440, + "normalized_name": "sengoku battle royal" + }, + { + "appid": 2867450, + "normalized_name": "flank speed" + }, + { + "appid": 2867460, + "normalized_name": "ntr office" + }, + { + "appid": 2867470, + "normalized_name": "collector's cove" + }, + { + "appid": 2867510, + "normalized_name": "许愿,我要带她们回现代" + }, + { + "appid": 2867610, + "normalized_name": "cubon" + }, + { + "appid": 2867700, + "normalized_name": "rssu retro style soviet undies" + }, + { + "appid": 2867800, + "normalized_name": "deperson" + }, + { + "appid": 2867840, + "normalized_name": "damn sewer" + }, + { + "appid": 2867890, + "normalized_name": "so many zombies" + }, + { + "appid": 2867910, + "normalized_name": "sol apocalypse" + }, + { + "appid": 2867970, + "normalized_name": "summer nightmare" + }, + { + "appid": 2867980, + "normalized_name": "there's no easy wayout 99" + }, + { + "appid": 2868030, + "normalized_name": "game is full of bugs" + }, + { + "appid": 2868060, + "normalized_name": "king of hell" + }, + { + "appid": 2868070, + "normalized_name": "descending the woods" + }, + { + "appid": 2868080, + "normalized_name": "icebound" + }, + { + "appid": 2868100, + "normalized_name": "shamania" + }, + { + "appid": 2868110, + "normalized_name": "street of the cats" + }, + { + "appid": 2868210, + "normalized_name": "project ternion" + }, + { + "appid": 2868240, + "normalized_name": "just stack" + }, + { + "appid": 2868260, + "normalized_name": "urban nightmare" + }, + { + "appid": 2868270, + "normalized_name": "labyrinth the wizard's cat" + }, + { + "appid": 2868380, + "normalized_name": "feed da king" + }, + { + "appid": 2868400, + "normalized_name": "slingshottr" + }, + { + "appid": 2868430, + "normalized_name": "xiuzhenworld / 修真世界" + }, + { + "appid": 2868490, + "normalized_name": "ethereal fracture" + }, + { + "appid": 2868520, + "normalized_name": "railway life" + }, + { + "appid": 2868530, + "normalized_name": "leo the firefighter cat" + }, + { + "appid": 2868550, + "normalized_name": "reclaim earth" + }, + { + "appid": 2868580, + "normalized_name": "bouncingballs" + }, + { + "appid": 2868590, + "normalized_name": "aisla" + }, + { + "appid": 2868600, + "normalized_name": "anandala" + }, + { + "appid": 2868720, + "normalized_name": "sery into the world of myths" + }, + { + "appid": 2868740, + "normalized_name": "pet crossing" + }, + { + "appid": 2868760, + "normalized_name": "strongest imp" + }, + { + "appid": 2868790, + "normalized_name": "one dog's days" + }, + { + "appid": 2868800, + "normalized_name": "void foundation into the void" + }, + { + "appid": 2868820, + "normalized_name": "elite hacker retro hacking evolution grand theft transsexual uplink matrix terminator seo words" + }, + { + "appid": 2868840, + "normalized_name": "slay the spire 2" + }, + { + "appid": 2868860, + "normalized_name": "card survival fantasy forest" + }, + { + "appid": 2868920, + "normalized_name": "loot goblins" + }, + { + "appid": 2868950, + "normalized_name": "乱斗先锋" + }, + { + "appid": 2868980, + "normalized_name": "encounters of the last kind" + }, + { + "appid": 2869000, + "normalized_name": "hebereke enjoy" + }, + { + "appid": 2869020, + "normalized_name": "cakefoot" + }, + { + "appid": 2869030, + "normalized_name": "boss breaker" + }, + { + "appid": 2869050, + "normalized_name": "scarquest" + }, + { + "appid": 2869320, + "normalized_name": "soul wizards & roguelite" + }, + { + "appid": 2869330, + "normalized_name": "计算机地牢" + }, + { + "appid": 2869350, + "normalized_name": "paradise shooting!!" + }, + { + "appid": 2869470, + "normalized_name": "survivors" + }, + { + "appid": 2869480, + "normalized_name": "backpack monsters survivors" + }, + { + "appid": 2869500, + "normalized_name": "穿越迷宫世界 cross the maze world" + }, + { + "appid": 2869510, + "normalized_name": "under defeat" + }, + { + "appid": 2869560, + "normalized_name": "amnea28 two eternities" + }, + { + "appid": 2869570, + "normalized_name": "cogfire" + }, + { + "appid": 2869590, + "normalized_name": "no retreat! the russian front" + }, + { + "appid": 2869600, + "normalized_name": "magitech requiem" + }, + { + "appid": 2869610, + "normalized_name": "arkcraft the rebirth of the world" + }, + { + "appid": 2869690, + "normalized_name": "beauty girl chronicles island obstacle challenge" + }, + { + "appid": 2869750, + "normalized_name": "the scar" + }, + { + "appid": 2869760, + "normalized_name": "mushrush" + }, + { + "appid": 2869770, + "normalized_name": "brock hammers and gods" + }, + { + "appid": 2869800, + "normalized_name": "the noob adventures fool for love" + }, + { + "appid": 2869850, + "normalized_name": "lorn vale" + }, + { + "appid": 2869860, + "normalized_name": "monster prom 4 monster con" + }, + { + "appid": 2869900, + "normalized_name": "into the craft" + }, + { + "appid": 2869950, + "normalized_name": "darkwell assassin's choice" + }, + { + "appid": 2869960, + "normalized_name": "animal shake" + }, + { + "appid": 2869970, + "normalized_name": "hentai milf chloe" + }, + { + "appid": 2869990, + "normalized_name": "ghostein" + }, + { + "appid": 2870000, + "normalized_name": "i got isekai'd into a shmup" + }, + { + "appid": 2870010, + "normalized_name": "my exit" + }, + { + "appid": 2870030, + "normalized_name": "scarlet sails" + }, + { + "appid": 2870070, + "normalized_name": "my grandpa's haunted house" + }, + { + "appid": 2870080, + "normalized_name": "hellrooms" + }, + { + "appid": 2870110, + "normalized_name": "tennis manager 2024" + }, + { + "appid": 2870120, + "normalized_name": "paranatural" + }, + { + "appid": 2870130, + "normalized_name": "ends" + }, + { + "appid": 2870150, + "normalized_name": "西行乱斗 brawl to the west" + }, + { + "appid": 2870160, + "normalized_name": "primland the magus プリムランドザメイガス" + }, + { + "appid": 2870170, + "normalized_name": "reaper" + }, + { + "appid": 2870200, + "normalized_name": "battle royale with cheese" + }, + { + "appid": 2870210, + "normalized_name": "kairo lore of the magic" + }, + { + "appid": 2870220, + "normalized_name": "tuggowar" + }, + { + "appid": 2870250, + "normalized_name": "layers deep" + }, + { + "appid": 2870280, + "normalized_name": "pogo rogue" + }, + { + "appid": 2870290, + "normalized_name": "omoikane" + }, + { + "appid": 2870310, + "normalized_name": "pilot light" + }, + { + "appid": 2870330, + "normalized_name": "grocery store tycoon" + }, + { + "appid": 2870340, + "normalized_name": "decktamer" + }, + { + "appid": 2870350, + "normalized_name": "pipistrello and the cursed yoyo" + }, + { + "appid": 2870380, + "normalized_name": "shinzen hollow" + }, + { + "appid": 2870390, + "normalized_name": "compass lost" + }, + { + "appid": 2870400, + "normalized_name": "dreamers disease" + }, + { + "appid": 2870410, + "normalized_name": "henry's forgotten performance" + }, + { + "appid": 2870420, + "normalized_name": "mech builder" + }, + { + "appid": 2870430, + "normalized_name": "godslayer arena" + }, + { + "appid": 2870470, + "normalized_name": "troy the soldier" + }, + { + "appid": 2870510, + "normalized_name": "no bugs on my windshield" + }, + { + "appid": 2870530, + "normalized_name": "battle suit aces" + }, + { + "appid": 2870550, + "normalized_name": "galactic love utopia" + }, + { + "appid": 2870560, + "normalized_name": "fading voices" + }, + { + "appid": 2870570, + "normalized_name": "find 101 doomers" + }, + { + "appid": 2870580, + "normalized_name": "cubed and dangerous" + }, + { + "appid": 2870610, + "normalized_name": "ultracook" + }, + { + "appid": 2870620, + "normalized_name": "wild mars" + }, + { + "appid": 2870630, + "normalized_name": "tales of elondria" + }, + { + "appid": 2870650, + "normalized_name": "1 bit 1 button" + }, + { + "appid": 2870660, + "normalized_name": "find my wiener" + }, + { + "appid": 2870670, + "normalized_name": "getaway driver" + }, + { + "appid": 2870700, + "normalized_name": "veilfall true strength" + }, + { + "appid": 2870710, + "normalized_name": "pih" + }, + { + "appid": 2870750, + "normalized_name": "add astra" + }, + { + "appid": 2870760, + "normalized_name": "zaque's game" + }, + { + "appid": 2870770, + "normalized_name": "dragonmirrored with hyoga & magma" + }, + { + "appid": 2870810, + "normalized_name": "syuukun in mirror world" + }, + { + "appid": 2870840, + "normalized_name": "ale & tale tavern first pints" + }, + { + "appid": 2870900, + "normalized_name": "owntrio adventure" + }, + { + "appid": 2870910, + "normalized_name": "largo" + }, + { + "appid": 2870920, + "normalized_name": "restaurats" + }, + { + "appid": 2870950, + "normalized_name": "splash carnival" + }, + { + "appid": 2870970, + "normalized_name": "qualle party" + }, + { + "appid": 2871010, + "normalized_name": "vanyslash" + }, + { + "appid": 2871030, + "normalized_name": "aurans" + }, + { + "appid": 2871040, + "normalized_name": "lil' airport" + }, + { + "appid": 2871070, + "normalized_name": "portal protectors" + }, + { + "appid": 2871080, + "normalized_name": "move ball to green" + }, + { + "appid": 2871090, + "normalized_name": "iron door" + }, + { + "appid": 2871130, + "normalized_name": "unscripted fate" + }, + { + "appid": 2871140, + "normalized_name": "誰是中之人" + }, + { + "appid": 2871150, + "normalized_name": "grapple flow vr" + }, + { + "appid": 2871180, + "normalized_name": "always forward" + }, + { + "appid": 2871290, + "normalized_name": "school hero" + }, + { + "appid": 2871350, + "normalized_name": "shadows of betrayal" + }, + { + "appid": 2871370, + "normalized_name": "world horror story" + }, + { + "appid": 2871390, + "normalized_name": "poly td" + }, + { + "appid": 2871440, + "normalized_name": "squeakross home squeak home" + }, + { + "appid": 2871470, + "normalized_name": "redemption" + }, + { + "appid": 2871480, + "normalized_name": "灵梦的激急击鸡祭 reimu's fighting chicken festival" + }, + { + "appid": 2871500, + "normalized_name": "moved mind" + }, + { + "appid": 2871520, + "normalized_name": "deep dish dungeon" + }, + { + "appid": 2871540, + "normalized_name": "no ticket back craft survive & escape" + }, + { + "appid": 2871570, + "normalized_name": "pixelgroove" + }, + { + "appid": 2871580, + "normalized_name": "snowy flag" + }, + { + "appid": 2871590, + "normalized_name": "unknown signal invasion" + }, + { + "appid": 2871640, + "normalized_name": "mya and their cat" + }, + { + "appid": 2871650, + "normalized_name": "moonfell the tides of aether" + }, + { + "appid": 2871700, + "normalized_name": "lade's sandbox" + }, + { + "appid": 2871720, + "normalized_name": "phantom whispers" + }, + { + "appid": 2871740, + "normalized_name": "须臾·时光之道" + }, + { + "appid": 2871820, + "normalized_name": "祟り坂 | tatari curse road" + }, + { + "appid": 2871840, + "normalized_name": "aston" + }, + { + "appid": 2871860, + "normalized_name": "watch your ass" + }, + { + "appid": 2871870, + "normalized_name": "project rebearth" + }, + { + "appid": 2871890, + "normalized_name": "freshballfall" + }, + { + "appid": 2871930, + "normalized_name": "astro looter survivor" + }, + { + "appid": 2871940, + "normalized_name": "flat&fluffy" + }, + { + "appid": 2871950, + "normalized_name": "man pit" + }, + { + "appid": 2871960, + "normalized_name": "e shop tycoon" + }, + { + "appid": 2871970, + "normalized_name": "dreaded depths" + }, + { + "appid": 2871980, + "normalized_name": "fearbonding" + }, + { + "appid": 2871990, + "normalized_name": "white redemption" + }, + { + "appid": 2872000, + "normalized_name": "ancient savo" + }, + { + "appid": 2872040, + "normalized_name": "星河防线" + }, + { + "appid": 2872090, + "normalized_name": "4ordle" + }, + { + "appid": 2872100, + "normalized_name": "die last" + }, + { + "appid": 2872110, + "normalized_name": "superdeluxe" + }, + { + "appid": 2872120, + "normalized_name": "friends in a room" + }, + { + "appid": 2872210, + "normalized_name": "the unknown strain" + }, + { + "appid": 2872240, + "normalized_name": "lost in the roots" + }, + { + "appid": 2872270, + "normalized_name": "code name teacher" + }, + { + "appid": 2872280, + "normalized_name": "怪物复仇卡牌 monster revenge cards" + }, + { + "appid": 2872300, + "normalized_name": "abyss x zero" + }, + { + "appid": 2872510, + "normalized_name": "luddite rampage" + }, + { + "appid": 2872520, + "normalized_name": "mythic crusade" + }, + { + "appid": 2872580, + "normalized_name": "water festa" + }, + { + "appid": 2872590, + "normalized_name": "r0 concourse of conquest" + }, + { + "appid": 2872600, + "normalized_name": "colonies of the remnant" + }, + { + "appid": 2872620, + "normalized_name": "stellarcraft the prologue" + }, + { + "appid": 2872630, + "normalized_name": "ghost yantra" + }, + { + "appid": 2872640, + "normalized_name": "the void" + }, + { + "appid": 2872700, + "normalized_name": "dreaming after you" + }, + { + "appid": 2872720, + "normalized_name": "grandma don't click that!" + }, + { + "appid": 2872730, + "normalized_name": "magic university" + }, + { + "appid": 2872750, + "normalized_name": "dungeon dev" + }, + { + "appid": 2872760, + "normalized_name": "plant budz 98" + }, + { + "appid": 2872770, + "normalized_name": "og puzzlers synthwave monsters" + }, + { + "appid": 2872780, + "normalized_name": "og puzzlers synthwave knights" + }, + { + "appid": 2872800, + "normalized_name": "wacky burgers" + }, + { + "appid": 2872810, + "normalized_name": "4 kingdoms supremacy" + }, + { + "appid": 2872830, + "normalized_name": "lumina rush" + }, + { + "appid": 2872840, + "normalized_name": "rhodesia '72" + }, + { + "appid": 2872850, + "normalized_name": "vietnam '66" + }, + { + "appid": 2872860, + "normalized_name": "panda eats shoots and leaves" + }, + { + "appid": 2872870, + "normalized_name": "我,停车场的杆? me the parking lot pole?" + }, + { + "appid": 2872890, + "normalized_name": "poe" + }, + { + "appid": 2872910, + "normalized_name": "in search of heroes!" + }, + { + "appid": 2872930, + "normalized_name": "project canvas 〜ヰ世界情緒育成計画〜" + }, + { + "appid": 2872990, + "normalized_name": "school paranormal laboratory" + }, + { + "appid": 2873010, + "normalized_name": "love on" + }, + { + "appid": 2873040, + "normalized_name": "inn of eight horizons" + }, + { + "appid": 2873060, + "normalized_name": "the bell echoes" + }, + { + "appid": 2873070, + "normalized_name": "endless tactics" + }, + { + "appid": 2873080, + "normalized_name": "the noexistencen of you and me" + }, + { + "appid": 2873090, + "normalized_name": "hentai tales conception shrine" + }, + { + "appid": 2873100, + "normalized_name": "剑心崛起" + }, + { + "appid": 2873110, + "normalized_name": "guardian's guide" + }, + { + "appid": 2873130, + "normalized_name": "hentai tales the neko returns" + }, + { + "appid": 2873170, + "normalized_name": "simulation training room massacre" + }, + { + "appid": 2873180, + "normalized_name": "darts vr 2 bullseye" + }, + { + "appid": 2873190, + "normalized_name": "from soil to bottle" + }, + { + "appid": 2873270, + "normalized_name": "maze td battleground" + }, + { + "appid": 2873290, + "normalized_name": "unbox tactics" + }, + { + "appid": 2873300, + "normalized_name": "mannequin house" + }, + { + "appid": 2873370, + "normalized_name": "fumble fiesta" + }, + { + "appid": 2873380, + "normalized_name": "chaotic conflicts" + }, + { + "appid": 2873410, + "normalized_name": "quest eternal" + }, + { + "appid": 2873430, + "normalized_name": "プリンセス×オーディエンス" + }, + { + "appid": 2873440, + "normalized_name": "chrono odyssey" + }, + { + "appid": 2873490, + "normalized_name": "betrayed" + }, + { + "appid": 2873540, + "normalized_name": "five owls" + }, + { + "appid": 2873610, + "normalized_name": "hope timbre" + }, + { + "appid": 2873620, + "normalized_name": "rasvyat nuclear power station" + }, + { + "appid": 2873640, + "normalized_name": "hersoverso your streaming & interactive world" + }, + { + "appid": 2873650, + "normalized_name": "quiet house massacre" + }, + { + "appid": 2873690, + "normalized_name": "マサラドライブ" + }, + { + "appid": 2873720, + "normalized_name": "post soviet strike chernobyl legacy" + }, + { + "appid": 2873740, + "normalized_name": "annoy this guy" + }, + { + "appid": 2873750, + "normalized_name": "pool of madness" + }, + { + "appid": 2873760, + "normalized_name": "女神全部锁定我 beauties! they're all after me" + }, + { + "appid": 2873800, + "normalized_name": "妖怪大作战" + }, + { + "appid": 2873810, + "normalized_name": "404号公寓" + }, + { + "appid": 2873820, + "normalized_name": "redemption of li wei" + }, + { + "appid": 2873860, + "normalized_name": "sudoku acres" + }, + { + "appid": 2873870, + "normalized_name": "wordleap" + }, + { + "appid": 2873900, + "normalized_name": "multimaze party" + }, + { + "appid": 2873990, + "normalized_name": "say" + }, + { + "appid": 2874010, + "normalized_name": "noiseless" + }, + { + "appid": 2874070, + "normalized_name": "destroy them !" + }, + { + "appid": 2874090, + "normalized_name": "forest fellers" + }, + { + "appid": 2874120, + "normalized_name": "anomaly hunter observation duty" + }, + { + "appid": 2874130, + "normalized_name": "berserk or die" + }, + { + "appid": 2874200, + "normalized_name": "hyper drive runner" + }, + { + "appid": 2874210, + "normalized_name": "primal chronicles" + }, + { + "appid": 2874220, + "normalized_name": "linear calamity" + }, + { + "appid": 2874250, + "normalized_name": "meg infinity vr" + }, + { + "appid": 2874280, + "normalized_name": "they fear the mist" + }, + { + "appid": 2874290, + "normalized_name": "wind rider" + }, + { + "appid": 2874300, + "normalized_name": "hoping this finds you well" + }, + { + "appid": 2874340, + "normalized_name": "slime clicker" + }, + { + "appid": 2874350, + "normalized_name": "railpunk mayhem" + }, + { + "appid": 2874360, + "normalized_name": "bird feather aquamarine world" + }, + { + "appid": 2874380, + "normalized_name": "veg out crew 2d racer" + }, + { + "appid": 2874420, + "normalized_name": "path of ninja" + }, + { + "appid": 2874470, + "normalized_name": "cabral's quest" + }, + { + "appid": 2874490, + "normalized_name": "rusted awakening" + }, + { + "appid": 2874500, + "normalized_name": "seaburn" + }, + { + "appid": 2874540, + "normalized_name": "land of symbiosis" + }, + { + "appid": 2874550, + "normalized_name": "bones beneath" + }, + { + "appid": 2874560, + "normalized_name": "我所向往的美好结局" + }, + { + "appid": 2874570, + "normalized_name": "bull bia ricky" + }, + { + "appid": 2874590, + "normalized_name": "beyond" + }, + { + "appid": 2874610, + "normalized_name": "impractical spells" + }, + { + "appid": 2874640, + "normalized_name": "insight" + }, + { + "appid": 2874660, + "normalized_name": "exit left or right" + }, + { + "appid": 2874670, + "normalized_name": "it's not me it's you..." + }, + { + "appid": 2874710, + "normalized_name": "football manager lifestyle" + }, + { + "appid": 2874740, + "normalized_name": "inhabitants" + }, + { + "appid": 2874780, + "normalized_name": "doll defenders" + }, + { + "appid": 2874860, + "normalized_name": "the russian roulette game pr" + }, + { + "appid": 2874870, + "normalized_name": "edgeless" + }, + { + "appid": 2874880, + "normalized_name": "nexus wars" + }, + { + "appid": 2874890, + "normalized_name": "osiris" + }, + { + "appid": 2874900, + "normalized_name": "daugger" + }, + { + "appid": 2874970, + "normalized_name": "shadow walker" + }, + { + "appid": 2874980, + "normalized_name": "jigsaw puzzle challenge" + }, + { + "appid": 2875000, + "normalized_name": "psycho kin" + }, + { + "appid": 2875030, + "normalized_name": "find cats 喵星寻猫" + }, + { + "appid": 2875050, + "normalized_name": "party play mania" + }, + { + "appid": 2875090, + "normalized_name": "idle fairy fantasy" + }, + { + "appid": 2875100, + "normalized_name": "somnium tenebris" + }, + { + "appid": 2875120, + "normalized_name": "vr catgirl isle 2100" + }, + { + "appid": 2875140, + "normalized_name": "失业了,我获得了亿万游戏财产!" + }, + { + "appid": 2875150, + "normalized_name": "backpack boy" + }, + { + "appid": 2875160, + "normalized_name": "boom die repeat" + }, + { + "appid": 2875180, + "normalized_name": "lilies" + }, + { + "appid": 2875190, + "normalized_name": "진정해요 공주님!(calmdownprincess)" + }, + { + "appid": 2875260, + "normalized_name": "wolves in sheep's clothing" + }, + { + "appid": 2875270, + "normalized_name": "抵抗" + }, + { + "appid": 2875280, + "normalized_name": "is this game trying to kill me? preface" + }, + { + "appid": 2875300, + "normalized_name": "the echo escape" + }, + { + "appid": 2875320, + "normalized_name": "shadowed journey 暗影归途" + }, + { + "appid": 2875350, + "normalized_name": "laniakea" + }, + { + "appid": 2875370, + "normalized_name": "命运英雄 :序章" + }, + { + "appid": 2875400, + "normalized_name": "beach bitch" + }, + { + "appid": 2875410, + "normalized_name": "pinnacle point" + }, + { + "appid": 2875430, + "normalized_name": "留学生经典开局" + }, + { + "appid": 2875440, + "normalized_name": "inescaped" + }, + { + "appid": 2875480, + "normalized_name": "harbor captain" + }, + { + "appid": 2875490, + "normalized_name": "erogoddess asgard" + }, + { + "appid": 2875500, + "normalized_name": "erogods mirage" + }, + { + "appid": 2875510, + "normalized_name": "repeat after death" + }, + { + "appid": 2875530, + "normalized_name": "wrong elevator" + }, + { + "appid": 2875540, + "normalized_name": "project 38" + }, + { + "appid": 2875570, + "normalized_name": "towers & goblins the last stand" + }, + { + "appid": 2875580, + "normalized_name": "calm3d" + }, + { + "appid": 2875610, + "normalized_name": "jerez's arena ⅲ" + }, + { + "appid": 2875630, + "normalized_name": "迷☆探偵の助手 remaster" + }, + { + "appid": 2875640, + "normalized_name": "my corp cargo simulator prologue" + }, + { + "appid": 2875650, + "normalized_name": "暮雨流花" + }, + { + "appid": 2875670, + "normalized_name": "battle for ercaton robot uprising" + }, + { + "appid": 2875740, + "normalized_name": "anime girl puzzles" + }, + { + "appid": 2875780, + "normalized_name": "staying fresh" + }, + { + "appid": 2875790, + "normalized_name": "bikevr" + }, + { + "appid": 2875800, + "normalized_name": "helen in hell" + }, + { + "appid": 2875810, + "normalized_name": "fur and fables" + }, + { + "appid": 2875820, + "normalized_name": "p4st3l" + }, + { + "appid": 2875870, + "normalized_name": "spiral of regret" + }, + { + "appid": 2875900, + "normalized_name": "politica nothing ideological. it's just business" + }, + { + "appid": 2875910, + "normalized_name": "honker" + }, + { + "appid": 2875920, + "normalized_name": "twizzle puzzle monkeys" + }, + { + "appid": 2875960, + "normalized_name": "wanted yokai uprising" + }, + { + "appid": 2875980, + "normalized_name": "spooky mansion" + }, + { + "appid": 2875990, + "normalized_name": "dream & sugar" + }, + { + "appid": 2876020, + "normalized_name": "the rite" + }, + { + "appid": 2876030, + "normalized_name": "archery pro vr" + }, + { + "appid": 2876050, + "normalized_name": "宠物街金鱼姬 pet street story" + }, + { + "appid": 2876060, + "normalized_name": "a blocc world" + }, + { + "appid": 2876070, + "normalized_name": "black hole void" + }, + { + "appid": 2876080, + "normalized_name": "last day to die" + }, + { + "appid": 2876090, + "normalized_name": "we were monkeys" + }, + { + "appid": 2876100, + "normalized_name": "sixth sun" + }, + { + "appid": 2876110, + "normalized_name": "shadow and darkness" + }, + { + "appid": 2876130, + "normalized_name": "fuel station simulator" + }, + { + "appid": 2876140, + "normalized_name": "+1x2" + }, + { + "appid": 2876150, + "normalized_name": "alien strike blasting the intruders" + }, + { + "appid": 2876160, + "normalized_name": "dynamite flare" + }, + { + "appid": 2876200, + "normalized_name": "exospace combat engineer" + }, + { + "appid": 2876240, + "normalized_name": "diy fashion star" + }, + { + "appid": 2876250, + "normalized_name": "kanna maze" + }, + { + "appid": 2876290, + "normalized_name": "sojourn past" + }, + { + "appid": 2876340, + "normalized_name": "dotsec" + }, + { + "appid": 2876350, + "normalized_name": "the architects of the universe the orphans" + }, + { + "appid": 2876360, + "normalized_name": "hello stranger" + }, + { + "appid": 2876370, + "normalized_name": "portal brawlers" + }, + { + "appid": 2876380, + "normalized_name": "the well of essenwood" + }, + { + "appid": 2876390, + "normalized_name": "magiball masters" + }, + { + "appid": 2876430, + "normalized_name": "solis" + }, + { + "appid": 2876440, + "normalized_name": "feed the beast" + }, + { + "appid": 2876470, + "normalized_name": "teachers secrets" + }, + { + "appid": 2876480, + "normalized_name": "senzu a whimsical space odyssey" + }, + { + "appid": 2876510, + "normalized_name": "argyle manor book 1 away from the sun" + }, + { + "appid": 2876550, + "normalized_name": "bloons card storm" + }, + { + "appid": 2876570, + "normalized_name": "ro sham boom!" + }, + { + "appid": 2876600, + "normalized_name": "the neurochemical conjob" + }, + { + "appid": 2876610, + "normalized_name": "kinsfolk" + }, + { + "appid": 2876640, + "normalized_name": "color breakers 2" + }, + { + "appid": 2876680, + "normalized_name": "fluxed" + }, + { + "appid": 2876700, + "normalized_name": "don't mind liam" + }, + { + "appid": 2876720, + "normalized_name": "descent from arkov's tower" + }, + { + "appid": 2876750, + "normalized_name": "考卷背后的秘密/the secret behind the exam paper" + }, + { + "appid": 2876770, + "normalized_name": "hollow earth" + }, + { + "appid": 2876790, + "normalized_name": "kiwie vs desert" + }, + { + "appid": 2876800, + "normalized_name": "tenfold loop" + }, + { + "appid": 2876860, + "normalized_name": "emberdrift" + }, + { + "appid": 2876880, + "normalized_name": "怪話" + }, + { + "appid": 2876900, + "normalized_name": "loonyland halloween hill" + }, + { + "appid": 2876910, + "normalized_name": "shadow of azrael 2" + }, + { + "appid": 2876920, + "normalized_name": "baimason's thing finder puzzle" + }, + { + "appid": 2876950, + "normalized_name": "fox fairy saga · nine nights prologue" + }, + { + "appid": 2876960, + "normalized_name": "final eden" + }, + { + "appid": 2876970, + "normalized_name": "furious flappers" + }, + { + "appid": 2876980, + "normalized_name": "syke" + }, + { + "appid": 2877020, + "normalized_name": "let's kill this guy with hammers!!!" + }, + { + "appid": 2877030, + "normalized_name": "ミッドナイトシンドローム" + }, + { + "appid": 2877090, + "normalized_name": "davy hooker" + }, + { + "appid": 2877110, + "normalized_name": "time turned" + }, + { + "appid": 2877120, + "normalized_name": "hallowed haven" + }, + { + "appid": 2877140, + "normalized_name": "solarpunk tactics" + }, + { + "appid": 2877150, + "normalized_name": "exoharvest" + }, + { + "appid": 2877170, + "normalized_name": "touhou makuka sai ~ fantastic danmaku festival part iii" + }, + { + "appid": 2877190, + "normalized_name": "cuckold house" + }, + { + "appid": 2877200, + "normalized_name": "uanamon survivor" + }, + { + "appid": 2877240, + "normalized_name": "miko in maguma" + }, + { + "appid": 2877260, + "normalized_name": "圣殿the temple—克苏鲁风格小说" + }, + { + "appid": 2877280, + "normalized_name": "baby formula tiny hands big tasks" + }, + { + "appid": 2877300, + "normalized_name": "hexdo" + }, + { + "appid": 2877340, + "normalized_name": "星跃物语:序章" + }, + { + "appid": 2877420, + "normalized_name": "江山美人" + }, + { + "appid": 2877470, + "normalized_name": "boxing go" + }, + { + "appid": 2877480, + "normalized_name": "星源遗境" + }, + { + "appid": 2877500, + "normalized_name": "crop chronicles" + }, + { + "appid": 2877540, + "normalized_name": "heretical" + }, + { + "appid": 2877550, + "normalized_name": "souptown matty" + }, + { + "appid": 2877560, + "normalized_name": "vantastic" + }, + { + "appid": 2877570, + "normalized_name": "roboban colors" + }, + { + "appid": 2877590, + "normalized_name": "dope wars mean streets" + }, + { + "appid": 2877640, + "normalized_name": "super onion boy+" + }, + { + "appid": 2877660, + "normalized_name": "jitter" + }, + { + "appid": 2877680, + "normalized_name": "gun and sword" + }, + { + "appid": 2877720, + "normalized_name": "糟糕!他们太爱我了怎么办?" + }, + { + "appid": 2877770, + "normalized_name": "into the restless ruins" + }, + { + "appid": 2877790, + "normalized_name": "rogue girl" + }, + { + "appid": 2877800, + "normalized_name": "钰杀融神记 yu sha rong shen jin" + }, + { + "appid": 2877850, + "normalized_name": "save the frog keita" + }, + { + "appid": 2877860, + "normalized_name": "naughty geese" + }, + { + "appid": 2877870, + "normalized_name": "shield strike" + }, + { + "appid": 2877880, + "normalized_name": "unbreaded" + }, + { + "appid": 2877890, + "normalized_name": "sucker" + }, + { + "appid": 2877940, + "normalized_name": "block rancher" + }, + { + "appid": 2877950, + "normalized_name": "furry hitler 2" + }, + { + "appid": 2878000, + "normalized_name": "personal study" + }, + { + "appid": 2878020, + "normalized_name": "curling in the dungeon" + }, + { + "appid": 2878030, + "normalized_name": "moon watch" + }, + { + "appid": 2878050, + "normalized_name": "unfolded cube" + }, + { + "appid": 2878060, + "normalized_name": "survival story" + }, + { + "appid": 2878100, + "normalized_name": "planetka" + }, + { + "appid": 2878110, + "normalized_name": "toward the ice" + }, + { + "appid": 2878120, + "normalized_name": "fruitio" + }, + { + "appid": 2878140, + "normalized_name": "gooba ball" + }, + { + "appid": 2878170, + "normalized_name": "bdsm sex episode 3" + }, + { + "appid": 2878180, + "normalized_name": "barnacles beers and brawls" + }, + { + "appid": 2878200, + "normalized_name": "supreme ruler global outbreak" + }, + { + "appid": 2878220, + "normalized_name": "space adventure cobra the awakening" + }, + { + "appid": 2878230, + "normalized_name": "kill me if you can" + }, + { + "appid": 2878260, + "normalized_name": "starduster" + }, + { + "appid": 2878270, + "normalized_name": "metal hellsinger vr" + }, + { + "appid": 2878280, + "normalized_name": "imitosis" + }, + { + "appid": 2878310, + "normalized_name": "hidden pirates top down 3d" + }, + { + "appid": 2878320, + "normalized_name": "hidden castle top down 3d" + }, + { + "appid": 2878330, + "normalized_name": "climb challenge find items 4" + }, + { + "appid": 2878340, + "normalized_name": "climb challenge find items 5" + }, + { + "appid": 2878350, + "normalized_name": "save from bobr curve" + }, + { + "appid": 2878360, + "normalized_name": "save and survive" + }, + { + "appid": 2878390, + "normalized_name": "conjurers" + }, + { + "appid": 2878400, + "normalized_name": "ariane in paradise" + }, + { + "appid": 2878410, + "normalized_name": "old market simulator prologue" + }, + { + "appid": 2878420, + "normalized_name": "old market simulator" + }, + { + "appid": 2878450, + "normalized_name": "master of command" + }, + { + "appid": 2878520, + "normalized_name": "time travel cafe" + }, + { + "appid": 2878580, + "normalized_name": "key fairy" + }, + { + "appid": 2878600, + "normalized_name": "harry potter quidditch champions" + }, + { + "appid": 2878630, + "normalized_name": "etherrealm" + }, + { + "appid": 2878640, + "normalized_name": "playback trauma the dog" + }, + { + "appid": 2878650, + "normalized_name": "occult mingle" + }, + { + "appid": 2878670, + "normalized_name": "spoop troop" + }, + { + "appid": 2878680, + "normalized_name": "cryptrio" + }, + { + "appid": 2878690, + "normalized_name": "killmage" + }, + { + "appid": 2878710, + "normalized_name": "desvelado" + }, + { + "appid": 2878720, + "normalized_name": "女优! 离不开那个泳池了!" + }, + { + "appid": 2878730, + "normalized_name": "last summer" + }, + { + "appid": 2878760, + "normalized_name": "kill the witch" + }, + { + "appid": 2878770, + "normalized_name": "hack deep" + }, + { + "appid": 2878800, + "normalized_name": "commandeer" + }, + { + "appid": 2878840, + "normalized_name": "ninja kato 3" + }, + { + "appid": 2878890, + "normalized_name": "soul interface" + }, + { + "appid": 2878930, + "normalized_name": "四十后种地生活" + }, + { + "appid": 2878960, + "normalized_name": "wwe 2k25" + }, + { + "appid": 2878980, + "normalized_name": "nba 2k25" + }, + { + "appid": 2878990, + "normalized_name": "atv bike games" + }, + { + "appid": 2879000, + "normalized_name": "atman rebel flame" + }, + { + "appid": 2879020, + "normalized_name": "avoid game" + }, + { + "appid": 2879030, + "normalized_name": "ax portal slayers" + }, + { + "appid": 2879040, + "normalized_name": "globe games" + }, + { + "appid": 2879050, + "normalized_name": "fantasyquest errandsaga" + }, + { + "appid": 2879070, + "normalized_name": "bro yuanshen survivors" + }, + { + "appid": 2879080, + "normalized_name": "スタットコール 救命恋愛24時" + }, + { + "appid": 2879090, + "normalized_name": "nyo nin jima my new life in charge of a tropical island" + }, + { + "appid": 2879120, + "normalized_name": "harvested" + }, + { + "appid": 2879180, + "normalized_name": "ruby's land" + }, + { + "appid": 2879200, + "normalized_name": "end them soldier!" + }, + { + "appid": 2879210, + "normalized_name": "sex education" + }, + { + "appid": 2879280, + "normalized_name": "exceed gear" + }, + { + "appid": 2879300, + "normalized_name": "exosuit" + }, + { + "appid": 2879310, + "normalized_name": "total zugzwang" + }, + { + "appid": 2879320, + "normalized_name": "the night wanderer" + }, + { + "appid": 2879340, + "normalized_name": "bunny roulette" + }, + { + "appid": 2879350, + "normalized_name": "银河战争一(galactic wars one)" + }, + { + "appid": 2879360, + "normalized_name": "phear" + }, + { + "appid": 2879440, + "normalized_name": "shoot or shout" + }, + { + "appid": 2879470, + "normalized_name": "sticky arrow" + }, + { + "appid": 2879480, + "normalized_name": "stepmom milf scandal 💖" + }, + { + "appid": 2879490, + "normalized_name": "smys classic" + }, + { + "appid": 2879520, + "normalized_name": "shoot the barrel bing bang boom" + }, + { + "appid": 2879530, + "normalized_name": "thorgal" + }, + { + "appid": 2879550, + "normalized_name": "rogueformer" + }, + { + "appid": 2879570, + "normalized_name": "barrage" + }, + { + "appid": 2879580, + "normalized_name": "the evil sect" + }, + { + "appid": 2879590, + "normalized_name": "silk suki chat messaging game" + }, + { + "appid": 2879630, + "normalized_name": "kunkun battles" + }, + { + "appid": 2879640, + "normalized_name": "kotonoha lernado" + }, + { + "appid": 2879670, + "normalized_name": "all the darkest places" + }, + { + "appid": 2879710, + "normalized_name": "sleep terror" + }, + { + "appid": 2879750, + "normalized_name": "vagrant moon" + }, + { + "appid": 2879770, + "normalized_name": "nightmares mansion scary dreams" + }, + { + "appid": 2879790, + "normalized_name": "unsung empires the cholas ii legacy of rajendra chola" + }, + { + "appid": 2879800, + "normalized_name": "psychomachia" + }, + { + "appid": 2879810, + "normalized_name": "artificial gravity cat" + }, + { + "appid": 2879840, + "normalized_name": "escape simulator 2" + }, + { + "appid": 2879870, + "normalized_name": "ednaldo pereira mescladasso dx" + }, + { + "appid": 2879970, + "normalized_name": "interstate cowboys" + }, + { + "appid": 2879980, + "normalized_name": "zako no ahiru" + }, + { + "appid": 2879990, + "normalized_name": "guild master" + }, + { + "appid": 2880000, + "normalized_name": "ssr wives the murder of my winter crush" + }, + { + "appid": 2880010, + "normalized_name": "din's champion" + }, + { + "appid": 2880070, + "normalized_name": "search all balls" + }, + { + "appid": 2880080, + "normalized_name": "hadarot" + }, + { + "appid": 2880120, + "normalized_name": "who murdered my empress?" + }, + { + "appid": 2880130, + "normalized_name": "sublimity" + }, + { + "appid": 2880170, + "normalized_name": "pixel quest survivor" + }, + { + "appid": 2880180, + "normalized_name": "crimson hell" + }, + { + "appid": 2880210, + "normalized_name": "rusty dusty" + }, + { + "appid": 2880220, + "normalized_name": "the collection chapters of fate prologue" + }, + { + "appid": 2880240, + "normalized_name": "nine nines" + }, + { + "appid": 2880270, + "normalized_name": "capyverse odyssey" + }, + { + "appid": 2880300, + "normalized_name": "the cursor game" + }, + { + "appid": 2880310, + "normalized_name": "my head on your body" + }, + { + "appid": 2880450, + "normalized_name": "ear clicker" + }, + { + "appid": 2880460, + "normalized_name": "terroro" + }, + { + "appid": 2880480, + "normalized_name": "slime climber" + }, + { + "appid": 2880500, + "normalized_name": "bumpy roads" + }, + { + "appid": 2880530, + "normalized_name": "bokkie" + }, + { + "appid": 2880630, + "normalized_name": "room2room" + }, + { + "appid": 2880640, + "normalized_name": "egg chef" + }, + { + "appid": 2880650, + "normalized_name": "soul of the forest" + }, + { + "appid": 2880730, + "normalized_name": "ai2u with you ‘til the end" + }, + { + "appid": 2880750, + "normalized_name": "leaf's odyssey" + }, + { + "appid": 2880760, + "normalized_name": "naru morph!" + }, + { + "appid": 2880780, + "normalized_name": "down word" + }, + { + "appid": 2880820, + "normalized_name": "fantasy creature jigsaws" + }, + { + "appid": 2880830, + "normalized_name": "オラッ掘人 ホレゆけ!ブラジル" + }, + { + "appid": 2880840, + "normalized_name": "the outreach" + }, + { + "appid": 2880850, + "normalized_name": "just another generic fps" + }, + { + "appid": 2880860, + "normalized_name": "my space bar" + }, + { + "appid": 2880960, + "normalized_name": "僵尸浪潮" + }, + { + "appid": 2880970, + "normalized_name": "zомби апокалипсис война марка фейгина" + }, + { + "appid": 2880980, + "normalized_name": "one secret empire" + }, + { + "appid": 2880990, + "normalized_name": "sir fallen" + }, + { + "appid": 2881020, + "normalized_name": "小角色" + }, + { + "appid": 2881080, + "normalized_name": "游戏匠心 game company simulator" + }, + { + "appid": 2881090, + "normalized_name": "womb defense force" + }, + { + "appid": 2881160, + "normalized_name": "supereat man" + }, + { + "appid": 2881170, + "normalized_name": "what remains of my sins" + }, + { + "appid": 2881220, + "normalized_name": "punchline" + }, + { + "appid": 2881230, + "normalized_name": "100 funny cats" + }, + { + "appid": 2881250, + "normalized_name": "mine factory" + }, + { + "appid": 2881260, + "normalized_name": "astria" + }, + { + "appid": 2881270, + "normalized_name": "randy & manilla" + }, + { + "appid": 2881280, + "normalized_name": "hnefatafl online" + }, + { + "appid": 2881360, + "normalized_name": "bloody heaven 2 :prologue" + }, + { + "appid": 2881370, + "normalized_name": "感谢你的投递" + }, + { + "appid": 2881430, + "normalized_name": "wake cup" + }, + { + "appid": 2881520, + "normalized_name": "river city saga three kingdoms next" + }, + { + "appid": 2881590, + "normalized_name": "propfight" + }, + { + "appid": 2881600, + "normalized_name": "rum n' gold royale" + }, + { + "appid": 2881610, + "normalized_name": "mohrta" + }, + { + "appid": 2881620, + "normalized_name": "paraside duality unbound" + }, + { + "appid": 2881630, + "normalized_name": "starmetal crusaders" + }, + { + "appid": 2881650, + "normalized_name": "content warning" + }, + { + "appid": 2881660, + "normalized_name": "holy shoot" + }, + { + "appid": 2881670, + "normalized_name": "cyber volley" + }, + { + "appid": 2881720, + "normalized_name": "battletanks animal wars" + }, + { + "appid": 2881750, + "normalized_name": "burnin' rubber 6" + }, + { + "appid": 2881760, + "normalized_name": "diamond drone" + }, + { + "appid": 2881770, + "normalized_name": "podnabu" + }, + { + "appid": 2881780, + "normalized_name": "the realm" + }, + { + "appid": 2881800, + "normalized_name": "supertaxcity" + }, + { + "appid": 2881810, + "normalized_name": "commander bug wars" + }, + { + "appid": 2881830, + "normalized_name": "the citizen" + }, + { + "appid": 2881860, + "normalized_name": "talespire guest" + }, + { + "appid": 2881870, + "normalized_name": "самый дорогой человек" + }, + { + "appid": 2881900, + "normalized_name": "cosmo cats" + }, + { + "appid": 2881930, + "normalized_name": "tiadar" + }, + { + "appid": 2881970, + "normalized_name": "gos gain of squad" + }, + { + "appid": 2882040, + "normalized_name": "visegunne" + }, + { + "appid": 2882080, + "normalized_name": "[de ]fanastasis" + }, + { + "appid": 2882220, + "normalized_name": "prospect renegade" + }, + { + "appid": 2882260, + "normalized_name": "ハイドロジェンゲーム" + }, + { + "appid": 2882280, + "normalized_name": "i am dog" + }, + { + "appid": 2882290, + "normalized_name": "one barbarian futa tribe chapter 2 red" + }, + { + "appid": 2882310, + "normalized_name": "roomballs" + }, + { + "appid": 2882340, + "normalized_name": "mountain legends 3" + }, + { + "appid": 2882350, + "normalized_name": "mystery box 5 elements" + }, + { + "appid": 2882360, + "normalized_name": "alice island adventure" + }, + { + "appid": 2882380, + "normalized_name": "vampire receptionist" + }, + { + "appid": 2882410, + "normalized_name": "vanlife camping simulator" + }, + { + "appid": 2882430, + "normalized_name": "baluno" + }, + { + "appid": 2882440, + "normalized_name": "devil blade reboot" + }, + { + "appid": 2882450, + "normalized_name": "the land of magic" + }, + { + "appid": 2882460, + "normalized_name": "天趣的机娘三国志" + }, + { + "appid": 2882470, + "normalized_name": "ワンフィスト・ゾーンonefistzone" + }, + { + "appid": 2882490, + "normalized_name": "cabbage crop" + }, + { + "appid": 2882560, + "normalized_name": "camps" + }, + { + "appid": 2882570, + "normalized_name": "強キャラ学園" + }, + { + "appid": 2882580, + "normalized_name": "og puzzlers synthwave astronauts" + }, + { + "appid": 2882590, + "normalized_name": "og puzzlers synthwave dinosaurs" + }, + { + "appid": 2882600, + "normalized_name": "card miner" + }, + { + "appid": 2882610, + "normalized_name": "confronted" + }, + { + "appid": 2882620, + "normalized_name": "battle for vera" + }, + { + "appid": 2882640, + "normalized_name": "the dilemma" + }, + { + "appid": 2882650, + "normalized_name": "aqua conflict canal carnage" + }, + { + "appid": 2882690, + "normalized_name": "vivere memento" + }, + { + "appid": 2882710, + "normalized_name": "sword and shield idle" + }, + { + "appid": 2882790, + "normalized_name": "massira" + }, + { + "appid": 2882820, + "normalized_name": "call from the abyss" + }, + { + "appid": 2882830, + "normalized_name": "hunt and fight" + }, + { + "appid": 2882840, + "normalized_name": "pinhead adventures" + }, + { + "appid": 2882870, + "normalized_name": "doll impostor" + }, + { + "appid": 2882910, + "normalized_name": "minesweep together" + }, + { + "appid": 2882930, + "normalized_name": "gruel" + }, + { + "appid": 2882950, + "normalized_name": "run for the bus" + }, + { + "appid": 2882960, + "normalized_name": "unseen 2002" + }, + { + "appid": 2882980, + "normalized_name": "the fanciful chronicle" + }, + { + "appid": 2882990, + "normalized_name": "pyxole" + }, + { + "appid": 2883020, + "normalized_name": "fearless" + }, + { + "appid": 2883030, + "normalized_name": "vultures" + }, + { + "appid": 2883040, + "normalized_name": "tattered sails" + }, + { + "appid": 2883050, + "normalized_name": "sex maids" + }, + { + "appid": 2883070, + "normalized_name": "meet the animals" + }, + { + "appid": 2883130, + "normalized_name": "inverted journey" + }, + { + "appid": 2883180, + "normalized_name": "toy hunt" + }, + { + "appid": 2883210, + "normalized_name": "ratking chapter zero" + }, + { + "appid": 2883220, + "normalized_name": "string theory" + }, + { + "appid": 2883250, + "normalized_name": "profanity police" + }, + { + "appid": 2883280, + "normalized_name": "dog brew" + }, + { + "appid": 2883370, + "normalized_name": "golden ball" + }, + { + "appid": 2883380, + "normalized_name": "jishin" + }, + { + "appid": 2883390, + "normalized_name": "warrock2" + }, + { + "appid": 2883400, + "normalized_name": "devil must die the last supper/恶魔必须死:最后的晚餐" + }, + { + "appid": 2883410, + "normalized_name": "conquest of kings" + }, + { + "appid": 2883420, + "normalized_name": "rolling combine" + }, + { + "appid": 2883430, + "normalized_name": "立ち絵が変なポーズの恋愛アドベンチャーあるいはオリジナリティの無い卒業までの日々" + }, + { + "appid": 2883480, + "normalized_name": "foxrun" + }, + { + "appid": 2883490, + "normalized_name": "gladiatory" + }, + { + "appid": 2883510, + "normalized_name": "dungeon deck" + }, + { + "appid": 2883520, + "normalized_name": "micron defense force" + }, + { + "appid": 2883530, + "normalized_name": "dwarf dove" + }, + { + "appid": 2883560, + "normalized_name": "observance of homeland" + }, + { + "appid": 2883610, + "normalized_name": "tales from the arcade fartmania" + }, + { + "appid": 2883620, + "normalized_name": "wind field" + }, + { + "appid": 2883630, + "normalized_name": "glitter" + }, + { + "appid": 2883650, + "normalized_name": "yez the dark amulet" + }, + { + "appid": 2883660, + "normalized_name": "dye the bunny 2" + }, + { + "appid": 2883670, + "normalized_name": "ufo enemy known" + }, + { + "appid": 2883690, + "normalized_name": "stealth gun" + }, + { + "appid": 2883700, + "normalized_name": "hoodie survivor" + }, + { + "appid": 2883710, + "normalized_name": "rolltale" + }, + { + "appid": 2883720, + "normalized_name": "take off the rocket" + }, + { + "appid": 2883730, + "normalized_name": "tomato flip" + }, + { + "appid": 2883740, + "normalized_name": "art of blades" + }, + { + "appid": 2883750, + "normalized_name": "jumping challenge" + }, + { + "appid": 2883800, + "normalized_name": "gerogero (ゲロゲロ!)" + }, + { + "appid": 2883890, + "normalized_name": "highking" + }, + { + "appid": 2883900, + "normalized_name": "joe maverick legend of the savior" + }, + { + "appid": 2883970, + "normalized_name": "critical upload" + }, + { + "appid": 2883990, + "normalized_name": "ファントピア" + }, + { + "appid": 2884010, + "normalized_name": "punch kick club" + }, + { + "appid": 2884020, + "normalized_name": "the vampire" + }, + { + "appid": 2884030, + "normalized_name": "cubus" + }, + { + "appid": 2884070, + "normalized_name": "elleria book 1" + }, + { + "appid": 2884080, + "normalized_name": "omg words" + }, + { + "appid": 2884150, + "normalized_name": "rapture recovery squad" + }, + { + "appid": 2884170, + "normalized_name": "hyperbody" + }, + { + "appid": 2884190, + "normalized_name": "fight school simulator" + }, + { + "appid": 2884210, + "normalized_name": "anzeigen simulator" + }, + { + "appid": 2884260, + "normalized_name": "og memory synthwave monsters" + }, + { + "appid": 2884270, + "normalized_name": "og puzzlers synthwave dragons" + }, + { + "appid": 2884280, + "normalized_name": "og puzzlers synthwave cats" + }, + { + "appid": 2884290, + "normalized_name": "frenzy extinction" + }, + { + "appid": 2884480, + "normalized_name": "ドットピースパズル" + }, + { + "appid": 2884490, + "normalized_name": "i commissioned some invisible people 0" + }, + { + "appid": 2884510, + "normalized_name": "lily in dreamworld" + }, + { + "appid": 2884520, + "normalized_name": "the outbound ghost reborn" + }, + { + "appid": 2884530, + "normalized_name": "阿特的奇幻冒险" + }, + { + "appid": 2884540, + "normalized_name": "烹之道 the way of cooking" + }, + { + "appid": 2884590, + "normalized_name": "darkchaser battletide" + }, + { + "appid": 2884600, + "normalized_name": "fantasy of esula" + }, + { + "appid": 2884640, + "normalized_name": "fission" + }, + { + "appid": 2884650, + "normalized_name": "stretcher men" + }, + { + "appid": 2884670, + "normalized_name": "premier servi" + }, + { + "appid": 2884690, + "normalized_name": "bovine battles" + }, + { + "appid": 2884700, + "normalized_name": "robin hood shadow of nottingham" + }, + { + "appid": 2884720, + "normalized_name": "echoes of elpis" + }, + { + "appid": 2884740, + "normalized_name": "轉生打怪學英文(六) (adventure and study english in a fantasy world vi)" + }, + { + "appid": 2884750, + "normalized_name": "monstrous liberation" + }, + { + "appid": 2884760, + "normalized_name": "お名前バトル" + }, + { + "appid": 2884780, + "normalized_name": "囚偶:重逢" + }, + { + "appid": 2884840, + "normalized_name": "angel" + }, + { + "appid": 2884970, + "normalized_name": "to build a home" + }, + { + "appid": 2885060, + "normalized_name": "gosdooma" + }, + { + "appid": 2885230, + "normalized_name": "bucket crusher" + }, + { + "appid": 2885290, + "normalized_name": "queen of the community" + }, + { + "appid": 2885330, + "normalized_name": "fractured mind" + }, + { + "appid": 2885350, + "normalized_name": "coin rush" + }, + { + "appid": 2885380, + "normalized_name": "gold mining simulator 2" + }, + { + "appid": 2885400, + "normalized_name": "0th floor. the cursed elevator to floor zero" + }, + { + "appid": 2885450, + "normalized_name": "battle bean" + }, + { + "appid": 2885470, + "normalized_name": "lucy grace" + }, + { + "appid": 2885480, + "normalized_name": "battlecap" + }, + { + "appid": 2885510, + "normalized_name": "block;shift" + }, + { + "appid": 2885520, + "normalized_name": "mommy's boy" + }, + { + "appid": 2885530, + "normalized_name": "meowpower!yachiyo" + }, + { + "appid": 2885570, + "normalized_name": "单词涂图乐" + }, + { + "appid": 2885580, + "normalized_name": "void whispers" + }, + { + "appid": 2885610, + "normalized_name": "hidden capybaras with orange and pumpkins spooky halloween" + }, + { + "appid": 2885620, + "normalized_name": "hidden capybaras with orange in the whimsical library" + }, + { + "appid": 2885630, + "normalized_name": "dungeon slime hero" + }, + { + "appid": 2885640, + "normalized_name": "ナナナナタマゴ" + }, + { + "appid": 2885690, + "normalized_name": "masters of light" + }, + { + "appid": 2885700, + "normalized_name": "devils wind mine" + }, + { + "appid": 2885710, + "normalized_name": "death pilot" + }, + { + "appid": 2885810, + "normalized_name": "pink noise" + }, + { + "appid": 2885830, + "normalized_name": "manticore" + }, + { + "appid": 2885870, + "normalized_name": "strange antiquities" + }, + { + "appid": 2885880, + "normalized_name": "tokyo coffee grinding in the pandemic" + }, + { + "appid": 2885890, + "normalized_name": "first break" + }, + { + "appid": 2885960, + "normalized_name": "warcat parade" + }, + { + "appid": 2885990, + "normalized_name": "qwepoi" + }, + { + "appid": 2886060, + "normalized_name": "the backrooms company" + }, + { + "appid": 2886080, + "normalized_name": "color splash dinosaurs" + }, + { + "appid": 2886090, + "normalized_name": "novice dungeon master" + }, + { + "appid": 2886100, + "normalized_name": "cubint" + }, + { + "appid": 2886110, + "normalized_name": "moth cry" + }, + { + "appid": 2886120, + "normalized_name": "skoof vs reptile" + }, + { + "appid": 2886150, + "normalized_name": "emoji connect" + }, + { + "appid": 2886220, + "normalized_name": "archipelago island survival" + }, + { + "appid": 2886240, + "normalized_name": "ufo taxi" + }, + { + "appid": 2886280, + "normalized_name": "highscore anomaly shop" + }, + { + "appid": 2886310, + "normalized_name": "frogo jump" + }, + { + "appid": 2886320, + "normalized_name": "infinicrypt" + }, + { + "appid": 2886330, + "normalized_name": "sky dominion" + }, + { + "appid": 2886340, + "normalized_name": "srogue" + }, + { + "appid": 2886380, + "normalized_name": "cryptica" + }, + { + "appid": 2886390, + "normalized_name": "geisterbahnhof" + }, + { + "appid": 2886420, + "normalized_name": "hangar 1914" + }, + { + "appid": 2886440, + "normalized_name": "surbird" + }, + { + "appid": 2886450, + "normalized_name": "wrath of towers" + }, + { + "appid": 2886470, + "normalized_name": "valefor" + }, + { + "appid": 2886480, + "normalized_name": "kittentegy" + }, + { + "appid": 2886490, + "normalized_name": "dawn of fear" + }, + { + "appid": 2886500, + "normalized_name": "medieval conquest" + }, + { + "appid": 2886540, + "normalized_name": "inner struggle" + }, + { + "appid": 2886550, + "normalized_name": "shop simulator supermarket" + }, + { + "appid": 2886580, + "normalized_name": "toyful wonderworld" + }, + { + "appid": 2886590, + "normalized_name": "deep in the fear" + }, + { + "appid": 2886610, + "normalized_name": "doppel diner" + }, + { + "appid": 2886620, + "normalized_name": "hive blight" + }, + { + "appid": 2886630, + "normalized_name": "pack everything you can" + }, + { + "appid": 2886660, + "normalized_name": "mokoko x the first date" + }, + { + "appid": 2886690, + "normalized_name": "human sacrifice" + }, + { + "appid": 2886700, + "normalized_name": "star scum" + }, + { + "appid": 2886720, + "normalized_name": "kuri kuri click! ~my summer vacation!~" + }, + { + "appid": 2886740, + "normalized_name": "twilight epoch" + }, + { + "appid": 2886750, + "normalized_name": "bestowment" + }, + { + "appid": 2886760, + "normalized_name": "colors" + }, + { + "appid": 2886810, + "normalized_name": "易途明灯" + }, + { + "appid": 2886850, + "normalized_name": "spacewind the zeppelin" + }, + { + "appid": 2886860, + "normalized_name": "蒸汽麻將社" + }, + { + "appid": 2886880, + "normalized_name": "tiny planet" + }, + { + "appid": 2886920, + "normalized_name": "bud masters peace" + }, + { + "appid": 2886930, + "normalized_name": "warehouse inc." + }, + { + "appid": 2886950, + "normalized_name": "duckthing's rolling rooms" + }, + { + "appid": 2886970, + "normalized_name": "返杀 back fire" + }, + { + "appid": 2886990, + "normalized_name": "shadows of destruction" + }, + { + "appid": 2887070, + "normalized_name": "code red" + }, + { + "appid": 2887080, + "normalized_name": "slime wars" + }, + { + "appid": 2887100, + "normalized_name": "melan" + }, + { + "appid": 2887130, + "normalized_name": "angkor the holy city" + }, + { + "appid": 2887180, + "normalized_name": "monster charmer" + }, + { + "appid": 2887230, + "normalized_name": "winter is here" + }, + { + "appid": 2887240, + "normalized_name": "crystal's castle" + }, + { + "appid": 2887260, + "normalized_name": "super alice dolls" + }, + { + "appid": 2887290, + "normalized_name": "odd eye" + }, + { + "appid": 2887320, + "normalized_name": "cats of the qing dynasty" + }, + { + "appid": 2887350, + "normalized_name": "fluffy sailors" + }, + { + "appid": 2887360, + "normalized_name": "戀戀寶島~雨港再世奇緣~" + }, + { + "appid": 2887370, + "normalized_name": "transporter" + }, + { + "appid": 2887400, + "normalized_name": "chicklet" + }, + { + "appid": 2887410, + "normalized_name": "garden of the sea" + }, + { + "appid": 2887450, + "normalized_name": "panic delivery" + }, + { + "appid": 2887460, + "normalized_name": "diorama" + }, + { + "appid": 2887580, + "normalized_name": "active matter" + }, + { + "appid": 2887590, + "normalized_name": "soulrise" + }, + { + "appid": 2887660, + "normalized_name": "aery peace of mind" + }, + { + "appid": 2887670, + "normalized_name": "aery peace of mind 2" + }, + { + "appid": 2887690, + "normalized_name": "cheese moon" + }, + { + "appid": 2887700, + "normalized_name": "天命三国" + }, + { + "appid": 2887720, + "normalized_name": "human upgrade labs" + }, + { + "appid": 2887740, + "normalized_name": "leafblade" + }, + { + "appid": 2887770, + "normalized_name": "hyperraid" + }, + { + "appid": 2887780, + "normalized_name": "animal shelter 2 prologue" + }, + { + "appid": 2887790, + "normalized_name": "wizard tournament" + }, + { + "appid": 2887820, + "normalized_name": "kallio" + }, + { + "appid": 2887850, + "normalized_name": "mecharise" + }, + { + "appid": 2887880, + "normalized_name": "ostallian core" + }, + { + "appid": 2887890, + "normalized_name": "orb of aeternum" + }, + { + "appid": 2887900, + "normalized_name": "beyond terra" + }, + { + "appid": 2887910, + "normalized_name": "bump! superbrawl" + }, + { + "appid": 2887920, + "normalized_name": "watch out for goblins!" + }, + { + "appid": 2887930, + "normalized_name": "xx delicto" + }, + { + "appid": 2887940, + "normalized_name": "chromocide prism of sin" + }, + { + "appid": 2887950, + "normalized_name": "travel on pigeon!" + }, + { + "appid": 2888000, + "normalized_name": "love island" + }, + { + "appid": 2888030, + "normalized_name": "coyote an old west vignette" + }, + { + "appid": 2888040, + "normalized_name": "project vic 2" + }, + { + "appid": 2888060, + "normalized_name": "destruction simulator" + }, + { + "appid": 2888100, + "normalized_name": "reach the beat" + }, + { + "appid": 2888140, + "normalized_name": "gay sex adventures episode 6" + }, + { + "appid": 2888170, + "normalized_name": "soul #531" + }, + { + "appid": 2888190, + "normalized_name": "soundkilla" + }, + { + "appid": 2888200, + "normalized_name": "same room same day" + }, + { + "appid": 2888230, + "normalized_name": "tresmir sight" + }, + { + "appid": 2888240, + "normalized_name": "benji and the crystal of light" + }, + { + "appid": 2888250, + "normalized_name": "castle conquest medieval strategy" + }, + { + "appid": 2888290, + "normalized_name": "bunny girl cumming for my carrot" + }, + { + "appid": 2888340, + "normalized_name": "shrineflow" + }, + { + "appid": 2888350, + "normalized_name": "beat the fed" + }, + { + "appid": 2888360, + "normalized_name": "sex universe [18+]" + }, + { + "appid": 2888370, + "normalized_name": "cybersex lust story" + }, + { + "appid": 2888380, + "normalized_name": "heroes of artadis" + }, + { + "appid": 2888400, + "normalized_name": "lil doll house" + }, + { + "appid": 2888410, + "normalized_name": "wishlands defence" + }, + { + "appid": 2888420, + "normalized_name": "turmoil" + }, + { + "appid": 2888430, + "normalized_name": "ray part 1" + }, + { + "appid": 2888450, + "normalized_name": "hidden arcade hundreds of ghosts!" + }, + { + "appid": 2888470, + "normalized_name": "castle doombad classic" + }, + { + "appid": 2888480, + "normalized_name": "booster racers" + }, + { + "appid": 2888530, + "normalized_name": "tri breaker a sacred symbols odyssey" + }, + { + "appid": 2888540, + "normalized_name": "absolute full life" + }, + { + "appid": 2888580, + "normalized_name": "bone meal" + }, + { + "appid": 2888590, + "normalized_name": "invasion of the mushroom men of planet y!" + }, + { + "appid": 2888650, + "normalized_name": "fleeting iris alansya chronicles ren'py" + }, + { + "appid": 2888660, + "normalized_name": "first law" + }, + { + "appid": 2888670, + "normalized_name": "pondlife discone (a videogame)" + }, + { + "appid": 2888690, + "normalized_name": "it’s a game changer" + }, + { + "appid": 2888700, + "normalized_name": "the last human in the universe" + }, + { + "appid": 2888730, + "normalized_name": "后室:彼阳的晚意(序章) backrooms beyond one year(prologue)" + }, + { + "appid": 2888740, + "normalized_name": "ubermensch" + }, + { + "appid": 2888830, + "normalized_name": "daisy the swimmer" + }, + { + "appid": 2888860, + "normalized_name": "go! go! hamster chef!" + }, + { + "appid": 2888870, + "normalized_name": "dadish 3d" + }, + { + "appid": 2888890, + "normalized_name": "polar pathways" + }, + { + "appid": 2888960, + "normalized_name": "graytail" + }, + { + "appid": 2888980, + "normalized_name": "攻城与召唤 siege and summons 【5分钟一局 策略竞技 】" + }, + { + "appid": 2888990, + "normalized_name": "yishi" + }, + { + "appid": 2889000, + "normalized_name": "kolt penny's symmetris" + }, + { + "appid": 2889040, + "normalized_name": "戦国ロジック 熊本城" + }, + { + "appid": 2889070, + "normalized_name": "pixel game maker series nyanxtech" + }, + { + "appid": 2889100, + "normalized_name": "the catalyst acolyte tower defense" + }, + { + "appid": 2889120, + "normalized_name": "最恐 青鬼 / absolute fear aooni" + }, + { + "appid": 2889140, + "normalized_name": "蓬蒿行记 明" + }, + { + "appid": 2889160, + "normalized_name": "zodchy" + }, + { + "appid": 2889190, + "normalized_name": "recycling factory" + }, + { + "appid": 2889200, + "normalized_name": "zj the ball (level 1)" + }, + { + "appid": 2889270, + "normalized_name": "minesweeper extended" + }, + { + "appid": 2889280, + "normalized_name": "step sister's pussy 🔞" + }, + { + "appid": 2889290, + "normalized_name": "my shameless stepmom" + }, + { + "appid": 2889310, + "normalized_name": "stack surge" + }, + { + "appid": 2889330, + "normalized_name": "veil of madness" + }, + { + "appid": 2889370, + "normalized_name": "13层:公寓异常管理员 13 floors anomalies" + }, + { + "appid": 2889380, + "normalized_name": "gatherings" + }, + { + "appid": 2889440, + "normalized_name": "chicken strike cluck ops" + }, + { + "appid": 2889460, + "normalized_name": "route8" + }, + { + "appid": 2889490, + "normalized_name": "clue for your thoughts" + }, + { + "appid": 2889510, + "normalized_name": "epic zombies" + }, + { + "appid": 2889520, + "normalized_name": "the herem saga (anathema)" + }, + { + "appid": 2889640, + "normalized_name": "carnival" + }, + { + "appid": 2889660, + "normalized_name": "sex formula" + }, + { + "appid": 2889740, + "normalized_name": "night castle" + }, + { + "appid": 2889750, + "normalized_name": "defense of the earth" + }, + { + "appid": 2889760, + "normalized_name": "uncursed" + }, + { + "appid": 2889780, + "normalized_name": "spellhack!!" + }, + { + "appid": 2889800, + "normalized_name": "purpose 1951" + }, + { + "appid": 2889830, + "normalized_name": "fortress challenge fort boyard" + }, + { + "appid": 2889870, + "normalized_name": "rouge tank" + }, + { + "appid": 2889880, + "normalized_name": "nimillion the last expedition" + }, + { + "appid": 2889940, + "normalized_name": "enforcers revolt" + }, + { + "appid": 2889980, + "normalized_name": "the reeve" + }, + { + "appid": 2890000, + "normalized_name": "wwii squad level land battles ssp" + }, + { + "appid": 2890020, + "normalized_name": "netghost" + }, + { + "appid": 2890030, + "normalized_name": "advancing chess" + }, + { + "appid": 2890060, + "normalized_name": "midnight mayhem" + }, + { + "appid": 2890100, + "normalized_name": "我把贵族女孩带回了家" + }, + { + "appid": 2890110, + "normalized_name": "cyyer city" + }, + { + "appid": 2890120, + "normalized_name": "coastal kingdoms" + }, + { + "appid": 2890130, + "normalized_name": "beaked buccaneer" + }, + { + "appid": 2890140, + "normalized_name": "universe size comparison vr" + }, + { + "appid": 2890150, + "normalized_name": "u4ia season 1" + }, + { + "appid": 2890180, + "normalized_name": "shoko" + }, + { + "appid": 2890200, + "normalized_name": "edxn" + }, + { + "appid": 2890220, + "normalized_name": "the universe of red hope" + }, + { + "appid": 2890230, + "normalized_name": "lot lizard" + }, + { + "appid": 2890240, + "normalized_name": "capy castaway" + }, + { + "appid": 2890270, + "normalized_name": "warfare battleground" + }, + { + "appid": 2890300, + "normalized_name": "distant" + }, + { + "appid": 2890360, + "normalized_name": "futakinvalley" + }, + { + "appid": 2890370, + "normalized_name": "mother's sword" + }, + { + "appid": 2890380, + "normalized_name": "an island away" + }, + { + "appid": 2890440, + "normalized_name": "fungal fiefdom" + }, + { + "appid": 2890500, + "normalized_name": "cube snake" + }, + { + "appid": 2890510, + "normalized_name": "final shot" + }, + { + "appid": 2890520, + "normalized_name": "suffer to please" + }, + { + "appid": 2890550, + "normalized_name": "sorcerer smackdown" + }, + { + "appid": 2890560, + "normalized_name": "kart" + }, + { + "appid": 2890630, + "normalized_name": "you are horny episode 1" + }, + { + "appid": 2890650, + "normalized_name": "never trust a fox" + }, + { + "appid": 2890660, + "normalized_name": "insurrection" + }, + { + "appid": 2890690, + "normalized_name": "extra cream" + }, + { + "appid": 2890730, + "normalized_name": "gummy jump 2" + }, + { + "appid": 2890780, + "normalized_name": "fumiko and the village of lust" + }, + { + "appid": 2890800, + "normalized_name": "event horizon" + }, + { + "appid": 2890810, + "normalized_name": "neon grid defenders" + }, + { + "appid": 2890820, + "normalized_name": "living metal" + }, + { + "appid": 2890830, + "normalized_name": "streamer life simulator 2" + }, + { + "appid": 2890890, + "normalized_name": "lingeries / ランジェリーズ" + }, + { + "appid": 2890910, + "normalized_name": "matreshka" + }, + { + "appid": 2890920, + "normalized_name": "star fetus" + }, + { + "appid": 2890930, + "normalized_name": "luminleaf chronicles" + }, + { + "appid": 2890940, + "normalized_name": "cat girl survivor" + }, + { + "appid": 2890960, + "normalized_name": "mech x change" + }, + { + "appid": 2890970, + "normalized_name": "一人仙道传" + }, + { + "appid": 2890980, + "normalized_name": "sector unknown prologue" + }, + { + "appid": 2890990, + "normalized_name": "star wired" + }, + { + "appid": 2891020, + "normalized_name": "undusted letters from the past" + }, + { + "appid": 2891030, + "normalized_name": "rift walker" + }, + { + "appid": 2891040, + "normalized_name": "transformative summer life with a ts companion" + }, + { + "appid": 2891090, + "normalized_name": "天亮了" + }, + { + "appid": 2891120, + "normalized_name": "mad smartphone tycoon" + }, + { + "appid": 2891160, + "normalized_name": "sea of change" + }, + { + "appid": 2891190, + "normalized_name": "domino clicker" + }, + { + "appid": 2891200, + "normalized_name": "dwarven realm" + }, + { + "appid": 2891210, + "normalized_name": "portalbox" + }, + { + "appid": 2891230, + "normalized_name": "ad memoriam" + }, + { + "appid": 2891250, + "normalized_name": "not an aim trainer" + }, + { + "appid": 2891270, + "normalized_name": "flag or rage" + }, + { + "appid": 2891280, + "normalized_name": "riviera the promised land" + }, + { + "appid": 2891310, + "normalized_name": "genome guardian" + }, + { + "appid": 2891320, + "normalized_name": "chaos islands" + }, + { + "appid": 2891370, + "normalized_name": "pieced together" + }, + { + "appid": 2891390, + "normalized_name": "dowon" + }, + { + "appid": 2891460, + "normalized_name": "dig vr" + }, + { + "appid": 2891520, + "normalized_name": "deep dark wrath" + }, + { + "appid": 2891540, + "normalized_name": "treasure hunter idle rpg" + }, + { + "appid": 2891560, + "normalized_name": "nightshift nightmares" + }, + { + "appid": 2891570, + "normalized_name": "safety corp. vr" + }, + { + "appid": 2891580, + "normalized_name": "puzzled hive" + }, + { + "appid": 2891600, + "normalized_name": "dggware" + }, + { + "appid": 2891610, + "normalized_name": "逃生" + }, + { + "appid": 2891650, + "normalized_name": "sos forgotten planet" + }, + { + "appid": 2891660, + "normalized_name": "sacrilegious" + }, + { + "appid": 2891690, + "normalized_name": "whispers in the shadows" + }, + { + "appid": 2891720, + "normalized_name": "necromage" + }, + { + "appid": 2891760, + "normalized_name": "fusionsmith" + }, + { + "appid": 2891770, + "normalized_name": "tarlis world" + }, + { + "appid": 2891790, + "normalized_name": "traitors" + }, + { + "appid": 2891800, + "normalized_name": "salus per aquam" + }, + { + "appid": 2891830, + "normalized_name": "frank fux" + }, + { + "appid": 2891870, + "normalized_name": "forgotten hill the wardrobe" + }, + { + "appid": 2891900, + "normalized_name": "gzlna" + }, + { + "appid": 2891930, + "normalized_name": "memorel" + }, + { + "appid": 2891940, + "normalized_name": "who's next?" + }, + { + "appid": 2891970, + "normalized_name": "menes" + }, + { + "appid": 2892000, + "normalized_name": "witch's doll" + }, + { + "appid": 2892020, + "normalized_name": "barbarization" + }, + { + "appid": 2892030, + "normalized_name": "表示画像変更可能タイピング" + }, + { + "appid": 2892040, + "normalized_name": "the shadowed rune" + }, + { + "appid": 2892060, + "normalized_name": "card toons" + }, + { + "appid": 2892090, + "normalized_name": "little brats!" + }, + { + "appid": 2892110, + "normalized_name": "whale captain" + }, + { + "appid": 2892130, + "normalized_name": "rage of the dragons neo" + }, + { + "appid": 2892160, + "normalized_name": "invasion rush" + }, + { + "appid": 2892170, + "normalized_name": "house of cards td" + }, + { + "appid": 2892180, + "normalized_name": "lands of avaronia" + }, + { + "appid": 2892190, + "normalized_name": "dicey chess" + }, + { + "appid": 2892220, + "normalized_name": "search all candles" + }, + { + "appid": 2892230, + "normalized_name": "box zombies" + }, + { + "appid": 2892240, + "normalized_name": "highscore anomaly underground" + }, + { + "appid": 2892250, + "normalized_name": "airplane" + }, + { + "appid": 2892270, + "normalized_name": "you feel normal." + }, + { + "appid": 2892290, + "normalized_name": "space cats" + }, + { + "appid": 2892300, + "normalized_name": "glitch maze.exe" + }, + { + "appid": 2892310, + "normalized_name": "girldivers" + }, + { + "appid": 2892320, + "normalized_name": "warfield heroes" + }, + { + "appid": 2892350, + "normalized_name": "被讨厌的勇气" + }, + { + "appid": 2892380, + "normalized_name": "ai.vi" + }, + { + "appid": 2892400, + "normalized_name": "kai" + }, + { + "appid": 2892420, + "normalized_name": "scrollden" + }, + { + "appid": 2892430, + "normalized_name": "warecon build & conquer" + }, + { + "appid": 2892440, + "normalized_name": "my gods hate me" + }, + { + "appid": 2892450, + "normalized_name": "dad discovers the internet" + }, + { + "appid": 2892470, + "normalized_name": "evil sinister" + }, + { + "appid": 2892490, + "normalized_name": "meteostorm" + }, + { + "appid": 2892500, + "normalized_name": "shy girl's makeover" + }, + { + "appid": 2892510, + "normalized_name": "简易三国志" + }, + { + "appid": 2892530, + "normalized_name": "うんちがいさがし~うんちの品質を守るゲーム~" + }, + { + "appid": 2892560, + "normalized_name": "ao containment breach" + }, + { + "appid": 2892590, + "normalized_name": "moth planet" + }, + { + "appid": 2892600, + "normalized_name": "五行:五鬼搬运" + }, + { + "appid": 2892660, + "normalized_name": "don't exist" + }, + { + "appid": 2892670, + "normalized_name": "truck job" + }, + { + "appid": 2892680, + "normalized_name": "snail_juice" + }, + { + "appid": 2892740, + "normalized_name": "take care of mittens" + }, + { + "appid": 2892770, + "normalized_name": "bombox" + }, + { + "appid": 2892780, + "normalized_name": "toby's topsy tale" + }, + { + "appid": 2892810, + "normalized_name": "space elevator project" + }, + { + "appid": 2892820, + "normalized_name": "temukung cultivation in drylands" + }, + { + "appid": 2892830, + "normalized_name": "幻想小镇" + }, + { + "appid": 2892840, + "normalized_name": "hot and lovely :dream" + }, + { + "appid": 2892850, + "normalized_name": "aqatillion" + }, + { + "appid": 2892870, + "normalized_name": "white anastasis" + }, + { + "appid": 2892880, + "normalized_name": "修仙小屋" + }, + { + "appid": 2892890, + "normalized_name": "finsternis kreuz" + }, + { + "appid": 2892910, + "normalized_name": "strike team delta" + }, + { + "appid": 2892930, + "normalized_name": "turret kingdom" + }, + { + "appid": 2892950, + "normalized_name": "recording bodycam" + }, + { + "appid": 2892980, + "normalized_name": "sounds of war" + }, + { + "appid": 2893000, + "normalized_name": "quantum beast" + }, + { + "appid": 2893010, + "normalized_name": "horror family|恐怖家族 flight" + }, + { + "appid": 2893110, + "normalized_name": "藍のカラクリ" + }, + { + "appid": 2893130, + "normalized_name": "kit cat" + }, + { + "appid": 2893250, + "normalized_name": "agronom" + }, + { + "appid": 2893260, + "normalized_name": "maliki poison of the past" + }, + { + "appid": 2893300, + "normalized_name": "dark sun (黑暗太阳)" + }, + { + "appid": 2893310, + "normalized_name": "speakeasy" + }, + { + "appid": 2893320, + "normalized_name": "skelet_666" + }, + { + "appid": 2893350, + "normalized_name": "liftlands" + }, + { + "appid": 2893360, + "normalized_name": "half plan" + }, + { + "appid": 2893410, + "normalized_name": "q~j civilization s" + }, + { + "appid": 2893530, + "normalized_name": "pillaged village humbled by savages" + }, + { + "appid": 2893540, + "normalized_name": "bit crawl" + }, + { + "appid": 2893550, + "normalized_name": "chordioid" + }, + { + "appid": 2893570, + "normalized_name": "dragon quest i & ii hd 2d remake" + }, + { + "appid": 2893640, + "normalized_name": "celeros" + }, + { + "appid": 2893680, + "normalized_name": "nightmare collection telephone call" + }, + { + "appid": 2893820, + "normalized_name": "of ash and steel" + }, + { + "appid": 2893840, + "normalized_name": "datavoid catrow" + }, + { + "appid": 2893850, + "normalized_name": "hyperspacer" + }, + { + "appid": 2893930, + "normalized_name": "room rpg" + }, + { + "appid": 2893940, + "normalized_name": "doggy dungeons" + }, + { + "appid": 2893970, + "normalized_name": "the new sheriff" + }, + { + "appid": 2893990, + "normalized_name": "ninjas on trampolines" + }, + { + "appid": 2894070, + "normalized_name": "hentai girls mommy milkers" + }, + { + "appid": 2894090, + "normalized_name": "reclaim the living" + }, + { + "appid": 2894100, + "normalized_name": "never experiment on cats!" + }, + { + "appid": 2894250, + "normalized_name": "drop it block paradise! builder" + }, + { + "appid": 2894260, + "normalized_name": "feran" + }, + { + "appid": 2894280, + "normalized_name": "unstable cylinder" + }, + { + "appid": 2894290, + "normalized_name": "space vortex" + }, + { + "appid": 2894330, + "normalized_name": "lanista shadows and dust" + }, + { + "appid": 2894430, + "normalized_name": "telecom tycoon 📶" + }, + { + "appid": 2894460, + "normalized_name": "cotton candy's terror factory" + }, + { + "appid": 2894510, + "normalized_name": "redroom" + }, + { + "appid": 2894560, + "normalized_name": "domino fit" + }, + { + "appid": 2894580, + "normalized_name": "kaidop" + }, + { + "appid": 2894600, + "normalized_name": "super polished" + }, + { + "appid": 2894620, + "normalized_name": "thing & fist" + }, + { + "appid": 2894730, + "normalized_name": "alphageddon" + }, + { + "appid": 2894750, + "normalized_name": "project 37" + }, + { + "appid": 2894780, + "normalized_name": "塔防设计师(tower defense designer)" + }, + { + "appid": 2894790, + "normalized_name": "giresun" + }, + { + "appid": 2894820, + "normalized_name": "velvet bite softly with teeth" + }, + { + "appid": 2894830, + "normalized_name": "function ball(関数球)" + }, + { + "appid": 2894840, + "normalized_name": "neverlander an awfully big adventure" + }, + { + "appid": 2894870, + "normalized_name": "tales from the other side" + }, + { + "appid": 2894880, + "normalized_name": "misfits" + }, + { + "appid": 2894900, + "normalized_name": "devastablance. mountain brotherhood" + }, + { + "appid": 2894960, + "normalized_name": "inverted angel" + }, + { + "appid": 2894970, + "normalized_name": "adventures in lestoria" + }, + { + "appid": 2894980, + "normalized_name": "4.1.60co" + }, + { + "appid": 2894990, + "normalized_name": "trizna" + }, + { + "appid": 2895030, + "normalized_name": "refactoro chaotic farm" + }, + { + "appid": 2895040, + "normalized_name": "demon's regalia colosseum" + }, + { + "appid": 2895050, + "normalized_name": "dreadrun" + }, + { + "appid": 2895060, + "normalized_name": "crimson echoes" + }, + { + "appid": 2895070, + "normalized_name": "falling rain" + }, + { + "appid": 2895090, + "normalized_name": "fairytale furnishing" + }, + { + "appid": 2895110, + "normalized_name": "dungeon deck" + }, + { + "appid": 2895120, + "normalized_name": "dream fish" + }, + { + "appid": 2895130, + "normalized_name": "illumination" + }, + { + "appid": 2895140, + "normalized_name": "shock wave" + }, + { + "appid": 2895150, + "normalized_name": "love quest los angeles" + }, + { + "appid": 2895170, + "normalized_name": "circulation" + }, + { + "appid": 2895180, + "normalized_name": "typespell journey" + }, + { + "appid": 2895270, + "normalized_name": "hurricane" + }, + { + "appid": 2895280, + "normalized_name": "akayashiki | あかやしき" + }, + { + "appid": 2895310, + "normalized_name": "the one chapter 3" + }, + { + "appid": 2895320, + "normalized_name": "idle meteor" + }, + { + "appid": 2895340, + "normalized_name": "apartment no 129" + }, + { + "appid": 2895350, + "normalized_name": "tactical mission target rush" + }, + { + "appid": 2895360, + "normalized_name": "moni mons" + }, + { + "appid": 2895390, + "normalized_name": "little army manager" + }, + { + "appid": 2895410, + "normalized_name": "monsterest" + }, + { + "appid": 2895430, + "normalized_name": "incremental town rpg" + }, + { + "appid": 2895440, + "normalized_name": "following seas" + }, + { + "appid": 2895490, + "normalized_name": "cursedville" + }, + { + "appid": 2895500, + "normalized_name": "anothereal" + }, + { + "appid": 2895510, + "normalized_name": "_turing" + }, + { + "appid": 2895540, + "normalized_name": "storm the court" + }, + { + "appid": 2895560, + "normalized_name": "harlot's diary" + }, + { + "appid": 2895580, + "normalized_name": "trail of the cryptid" + }, + { + "appid": 2895600, + "normalized_name": "deepest world" + }, + { + "appid": 2895630, + "normalized_name": "rogue wave" + }, + { + "appid": 2895680, + "normalized_name": "below rusted gods" + }, + { + "appid": 2895740, + "normalized_name": "sporebloom mycelium master" + }, + { + "appid": 2895750, + "normalized_name": "so fart away" + }, + { + "appid": 2895810, + "normalized_name": "owner" + }, + { + "appid": 2895830, + "normalized_name": "天鹅the swan" + }, + { + "appid": 2895840, + "normalized_name": "no signal" + }, + { + "appid": 2895990, + "normalized_name": "cat purrtrol find all 100!" + }, + { + "appid": 2896000, + "normalized_name": "escape the kreegan" + }, + { + "appid": 2896010, + "normalized_name": "overlay" + }, + { + "appid": 2896040, + "normalized_name": "odd sequence" + }, + { + "appid": 2896110, + "normalized_name": "glow" + }, + { + "appid": 2896150, + "normalized_name": "hidden among thieves" + }, + { + "appid": 2896210, + "normalized_name": "hélène est dans mon ventre." + }, + { + "appid": 2896220, + "normalized_name": "hero's warband" + }, + { + "appid": 2896240, + "normalized_name": "dungeon of memories 记忆地牢" + }, + { + "appid": 2896260, + "normalized_name": "oddcore" + }, + { + "appid": 2896320, + "normalized_name": "warrior lords" + }, + { + "appid": 2896330, + "normalized_name": "a slightly different backrooms" + }, + { + "appid": 2896350, + "normalized_name": "thule" + }, + { + "appid": 2896360, + "normalized_name": "stream stratos" + }, + { + "appid": 2896370, + "normalized_name": "sakura priestess and shikigami mountain" + }, + { + "appid": 2896380, + "normalized_name": "beyond the map" + }, + { + "appid": 2896390, + "normalized_name": "cats vs. aliens" + }, + { + "appid": 2896430, + "normalized_name": "dust & courage jake bolton’s journey" + }, + { + "appid": 2896440, + "normalized_name": "lazerz" + }, + { + "appid": 2896520, + "normalized_name": "tales from the under realm lilith" + }, + { + "appid": 2896530, + "normalized_name": "megamegaeggs" + }, + { + "appid": 2896570, + "normalized_name": "empire builder europe" + }, + { + "appid": 2896610, + "normalized_name": "candela colorless dreams" + }, + { + "appid": 2896630, + "normalized_name": "tomboy adventure 2" + }, + { + "appid": 2896730, + "normalized_name": "zombiology" + }, + { + "appid": 2896750, + "normalized_name": "solendara" + }, + { + "appid": 2896760, + "normalized_name": "azooma escape" + }, + { + "appid": 2896770, + "normalized_name": "coralium" + }, + { + "appid": 2896790, + "normalized_name": "four elite warriors" + }, + { + "appid": 2896950, + "normalized_name": "trap trek other me" + }, + { + "appid": 2896970, + "normalized_name": "moksha space" + }, + { + "appid": 2896980, + "normalized_name": "姑苏城中那些猫" + }, + { + "appid": 2896990, + "normalized_name": "狗胆枪手" + }, + { + "appid": 2897010, + "normalized_name": "deck remover" + }, + { + "appid": 2897020, + "normalized_name": "echoes from the past" + }, + { + "appid": 2897170, + "normalized_name": "鬪伐" + }, + { + "appid": 2897180, + "normalized_name": "ジスル村の一揆" + }, + { + "appid": 2897240, + "normalized_name": "puffin planes" + }, + { + "appid": 2897250, + "normalized_name": "thaw" + }, + { + "appid": 2897260, + "normalized_name": "paradise defense force" + }, + { + "appid": 2897270, + "normalized_name": "black hole escape" + }, + { + "appid": 2897310, + "normalized_name": "cohabitation life" + }, + { + "appid": 2897430, + "normalized_name": "make it! ikayaki" + }, + { + "appid": 2897450, + "normalized_name": "the anomalous hour" + }, + { + "appid": 2897490, + "normalized_name": "janko" + }, + { + "appid": 2897500, + "normalized_name": "cco car crash onlinesimulator" + }, + { + "appid": 2897510, + "normalized_name": "ココロシャッフル spirit swap" + }, + { + "appid": 2897520, + "normalized_name": "furball blitz!" + }, + { + "appid": 2897560, + "normalized_name": "刷啊刷" + }, + { + "appid": 2897580, + "normalized_name": "idle hero td tower defense" + }, + { + "appid": 2897590, + "normalized_name": "グラディウス オリジン コレクション" + }, + { + "appid": 2897610, + "normalized_name": "egging on" + }, + { + "appid": 2897700, + "normalized_name": "arizona sunshine remake" + }, + { + "appid": 2897710, + "normalized_name": "truck manager" + }, + { + "appid": 2897720, + "normalized_name": "star legends space colony commander" + }, + { + "appid": 2897730, + "normalized_name": "mycelium" + }, + { + "appid": 2897750, + "normalized_name": "breakball" + }, + { + "appid": 2897760, + "normalized_name": "romantic escapades" + }, + { + "appid": 2897830, + "normalized_name": "so this vampire walks into a bar" + }, + { + "appid": 2897840, + "normalized_name": "explorer adventure awaits" + }, + { + "appid": 2897860, + "normalized_name": "ホップスプリングガール" + }, + { + "appid": 2897870, + "normalized_name": "wild in the west" + }, + { + "appid": 2897890, + "normalized_name": "undead at dawn" + }, + { + "appid": 2897960, + "normalized_name": "block man adventures" + }, + { + "appid": 2897990, + "normalized_name": "abandoned" + }, + { + "appid": 2898000, + "normalized_name": "祭奠" + }, + { + "appid": 2898010, + "normalized_name": "a cat & his boy" + }, + { + "appid": 2898060, + "normalized_name": "source of the nile digital" + }, + { + "appid": 2898070, + "normalized_name": "hidden nemesis" + }, + { + "appid": 2898090, + "normalized_name": "stressroom" + }, + { + "appid": 2898120, + "normalized_name": "pounce and the twin trees" + }, + { + "appid": 2898130, + "normalized_name": "intimate abode" + }, + { + "appid": 2898170, + "normalized_name": "grave realms" + }, + { + "appid": 2898180, + "normalized_name": "porn empire" + }, + { + "appid": 2898190, + "normalized_name": "neko girls puzzle" + }, + { + "appid": 2898210, + "normalized_name": "shawley zoo of wonders" + }, + { + "appid": 2898220, + "normalized_name": "f*ck this job" + }, + { + "appid": 2898230, + "normalized_name": "reflexion" + }, + { + "appid": 2898240, + "normalized_name": "mystery escape" + }, + { + "appid": 2898250, + "normalized_name": "rent a car simulator 24 prologue" + }, + { + "appid": 2898270, + "normalized_name": "casino simulator" + }, + { + "appid": 2898310, + "normalized_name": "exocars" + }, + { + "appid": 2898390, + "normalized_name": "eternal void" + }, + { + "appid": 2898400, + "normalized_name": "undergeon's pilgrims" + }, + { + "appid": 2898410, + "normalized_name": "murder scheme" + }, + { + "appid": 2898620, + "normalized_name": "forgotten vale" + }, + { + "appid": 2898650, + "normalized_name": "fish hero" + }, + { + "appid": 2898680, + "normalized_name": "hyper skater" + }, + { + "appid": 2898690, + "normalized_name": "emoji survival" + }, + { + "appid": 2898700, + "normalized_name": "好想躺平啊,但是" + }, + { + "appid": 2898720, + "normalized_name": "music man 3 last dance" + }, + { + "appid": 2898730, + "normalized_name": "lucido cancels everything" + }, + { + "appid": 2898740, + "normalized_name": "not a masterpıece" + }, + { + "appid": 2898750, + "normalized_name": "bobasquest" + }, + { + "appid": 2898770, + "normalized_name": "die trying" + }, + { + "appid": 2898810, + "normalized_name": "nitronauts" + }, + { + "appid": 2898820, + "normalized_name": "sphere game colours" + }, + { + "appid": 2898850, + "normalized_name": "colorless odyssey" + }, + { + "appid": 2898890, + "normalized_name": "kidnelis" + }, + { + "appid": 2898900, + "normalized_name": "dungeons and ducklings" + }, + { + "appid": 2898910, + "normalized_name": "distant flux system initializing" + }, + { + "appid": 2898970, + "normalized_name": "yokai rescue" + }, + { + "appid": 2898990, + "normalized_name": "the mara witch" + }, + { + "appid": 2899020, + "normalized_name": "political punchers 2024 arena" + }, + { + "appid": 2899030, + "normalized_name": "lust & legends" + }, + { + "appid": 2899040, + "normalized_name": "midnight lane" + }, + { + "appid": 2899050, + "normalized_name": "desert stalker" + }, + { + "appid": 2899060, + "normalized_name": "clash for crust" + }, + { + "appid": 2899090, + "normalized_name": "pushing it! with sisyphus" + }, + { + "appid": 2899100, + "normalized_name": "degenerates" + }, + { + "appid": 2899130, + "normalized_name": "ancestral hunter" + }, + { + "appid": 2899160, + "normalized_name": "ai fantasy" + }, + { + "appid": 2899180, + "normalized_name": "life // blood" + }, + { + "appid": 2899190, + "normalized_name": "terra" + }, + { + "appid": 2899230, + "normalized_name": "manaulyn" + }, + { + "appid": 2899240, + "normalized_name": "buzz or die" + }, + { + "appid": 2899250, + "normalized_name": "nolgorb's ordeal" + }, + { + "appid": 2899270, + "normalized_name": "h.o.g.s" + }, + { + "appid": 2899300, + "normalized_name": "uknon jones & guynelk 2" + }, + { + "appid": 2899320, + "normalized_name": "seaside racing" + }, + { + "appid": 2899330, + "normalized_name": "varminal" + }, + { + "appid": 2899350, + "normalized_name": "house of decay" + }, + { + "appid": 2899380, + "normalized_name": "godstone tactics" + }, + { + "appid": 2899400, + "normalized_name": "under the whisper" + }, + { + "appid": 2899410, + "normalized_name": "arcane raiders" + }, + { + "appid": 2899420, + "normalized_name": "too far too late" + }, + { + "appid": 2899450, + "normalized_name": "holosaga invasion of the holox" + }, + { + "appid": 2899460, + "normalized_name": "the destiny of nagari" + }, + { + "appid": 2899490, + "normalized_name": "total pirate war" + }, + { + "appid": 2899540, + "normalized_name": "摸鱼拼图/easy jigsaw puzzle" + }, + { + "appid": 2899580, + "normalized_name": "3番線 | sanbansen" + }, + { + "appid": 2899600, + "normalized_name": "dusk shrouded" + }, + { + "appid": 2899640, + "normalized_name": "apocalypse slave x warlord" + }, + { + "appid": 2899660, + "normalized_name": "热血街头" + }, + { + "appid": 2899670, + "normalized_name": "剑途" + }, + { + "appid": 2899680, + "normalized_name": "island of enchantment" + }, + { + "appid": 2899720, + "normalized_name": "6年1組" + }, + { + "appid": 2899750, + "normalized_name": "my boyfriend is a martian👰❤👽" + }, + { + "appid": 2899880, + "normalized_name": "monkey see monkey doo monkey kiss you" + }, + { + "appid": 2899890, + "normalized_name": "飛天歷險2025(dream of mirror online)" + }, + { + "appid": 2899930, + "normalized_name": "lonely tiny spaceship" + }, + { + "appid": 2899980, + "normalized_name": "graces posthumous wish" + }, + { + "appid": 2899990, + "normalized_name": "elementaire" + }, + { + "appid": 2900000, + "normalized_name": "azure '88" + }, + { + "appid": 2900040, + "normalized_name": "lost meow" + }, + { + "appid": 2900050, + "normalized_name": "lost in art a miniature realm" + }, + { + "appid": 2900060, + "normalized_name": "incident survival" + }, + { + "appid": 2900130, + "normalized_name": "twisted waters" + }, + { + "appid": 2900210, + "normalized_name": "floating in space" + }, + { + "appid": 2900250, + "normalized_name": "the singer" + }, + { + "appid": 2900410, + "normalized_name": "early mellow" + }, + { + "appid": 2900420, + "normalized_name": "marriage impossible!" + }, + { + "appid": 2900440, + "normalized_name": "mrhuh" + }, + { + "appid": 2900450, + "normalized_name": "hentai elf" + }, + { + "appid": 2900460, + "normalized_name": "trance tank" + }, + { + "appid": 2900490, + "normalized_name": "overflower" + }, + { + "appid": 2900520, + "normalized_name": "legend of rome 2 the magic hourglass" + }, + { + "appid": 2900530, + "normalized_name": "nine realms prologue" + }, + { + "appid": 2900540, + "normalized_name": "balloonbreaker" + }, + { + "appid": 2900600, + "normalized_name": "anomaly escape" + }, + { + "appid": 2900640, + "normalized_name": "toem 2" + }, + { + "appid": 2900650, + "normalized_name": "fluffy's adventure" + }, + { + "appid": 2900660, + "normalized_name": "ethereal abyss" + }, + { + "appid": 2900670, + "normalized_name": "cricket captain 2024" + }, + { + "appid": 2900680, + "normalized_name": "tunnel baby" + }, + { + "appid": 2900690, + "normalized_name": "lullaby in dreams" + }, + { + "appid": 2900700, + "normalized_name": "sophias pizza restaurant" + }, + { + "appid": 2900760, + "normalized_name": "sokopenguin" + }, + { + "appid": 2900780, + "normalized_name": "trash pandamonium" + }, + { + "appid": 2900790, + "normalized_name": "geo land the dream traveler" + }, + { + "appid": 2900800, + "normalized_name": "physical spheres" + }, + { + "appid": 2900830, + "normalized_name": "fionas dream of atlantis" + }, + { + "appid": 2900860, + "normalized_name": "st. maria village" + }, + { + "appid": 2900870, + "normalized_name": "luma nest" + }, + { + "appid": 2900890, + "normalized_name": "wizards vs soldiers and robots" + }, + { + "appid": 2900900, + "normalized_name": "moony black_lotus" + }, + { + "appid": 2900950, + "normalized_name": "mach k9" + }, + { + "appid": 2900990, + "normalized_name": "eternal haunt" + }, + { + "appid": 2901010, + "normalized_name": "frood robotics" + }, + { + "appid": 2901040, + "normalized_name": "ivorfall" + }, + { + "appid": 2901050, + "normalized_name": "dragonpaw" + }, + { + "appid": 2901060, + "normalized_name": "my demon family" + }, + { + "appid": 2901070, + "normalized_name": "the simulation" + }, + { + "appid": 2901080, + "normalized_name": "super pixel merge balls" + }, + { + "appid": 2901120, + "normalized_name": "claustrophobiccrypt" + }, + { + "appid": 2901140, + "normalized_name": "stray cats in cozy town" + }, + { + "appid": 2901150, + "normalized_name": "yoru ga kuru! square of the moon" + }, + { + "appid": 2901160, + "normalized_name": "flippee ball" + }, + { + "appid": 2901210, + "normalized_name": "five nights at silver pine" + }, + { + "appid": 2901290, + "normalized_name": "星影の館殺人事件" + }, + { + "appid": 2901300, + "normalized_name": "怪話2" + }, + { + "appid": 2901310, + "normalized_name": "奇天烈相談ダイヤル" + }, + { + "appid": 2901330, + "normalized_name": "forget something?" + }, + { + "appid": 2901340, + "normalized_name": "shush" + }, + { + "appid": 2901370, + "normalized_name": "诸子伏魔" + }, + { + "appid": 2901500, + "normalized_name": "wallbound" + }, + { + "appid": 2901520, + "normalized_name": "альтушка для скуфа" + }, + { + "appid": 2901540, + "normalized_name": "ponolf" + }, + { + "appid": 2901550, + "normalized_name": "arcanists" + }, + { + "appid": 2901570, + "normalized_name": "footage" + }, + { + "appid": 2901620, + "normalized_name": "finding sparky" + }, + { + "appid": 2901630, + "normalized_name": "jumpng disable" + }, + { + "appid": 2901650, + "normalized_name": "光之守护者 贤者之石" + }, + { + "appid": 2901660, + "normalized_name": "abyssal blood" + }, + { + "appid": 2901800, + "normalized_name": "デッキ勇者" + }, + { + "appid": 2901810, + "normalized_name": "supermrket el videojuego de gestión de supermercado" + }, + { + "appid": 2901820, + "normalized_name": "bosstack" + }, + { + "appid": 2901870, + "normalized_name": "aod" + }, + { + "appid": 2901880, + "normalized_name": "spellforged" + }, + { + "appid": 2901960, + "normalized_name": "hentai girls" + }, + { + "appid": 2901970, + "normalized_name": "はつものがたり | naive novel" + }, + { + "appid": 2901990, + "normalized_name": "lone.ai" + }, + { + "appid": 2902000, + "normalized_name": "armored of doom" + }, + { + "appid": 2902020, + "normalized_name": "detective secrets solitaire. the curse of the village" + }, + { + "appid": 2902070, + "normalized_name": "gym manager prologue" + }, + { + "appid": 2902090, + "normalized_name": "tribute" + }, + { + "appid": 2902160, + "normalized_name": "in winter a new apartment" + }, + { + "appid": 2902170, + "normalized_name": "kernel hearts" + }, + { + "appid": 2902210, + "normalized_name": "esau's world" + }, + { + "appid": 2902220, + "normalized_name": "zalera spark" + }, + { + "appid": 2902260, + "normalized_name": "junk blocks" + }, + { + "appid": 2902270, + "normalized_name": "death education" + }, + { + "appid": 2902280, + "normalized_name": "unrest" + }, + { + "appid": 2902290, + "normalized_name": "edenfall" + }, + { + "appid": 2902320, + "normalized_name": "daisy dangerous" + }, + { + "appid": 2902400, + "normalized_name": "3 shots left" + }, + { + "appid": 2902410, + "normalized_name": "undefeatable" + }, + { + "appid": 2902430, + "normalized_name": "falling stars... and other celestial objects" + }, + { + "appid": 2902440, + "normalized_name": "steve's warehouse" + }, + { + "appid": 2902460, + "normalized_name": "cube lands the final wish" + }, + { + "appid": 2902470, + "normalized_name": "maintenance crew" + }, + { + "appid": 2902480, + "normalized_name": "kinetic response" + }, + { + "appid": 2902540, + "normalized_name": "kunkun defender" + }, + { + "appid": 2902550, + "normalized_name": "交织的印记" + }, + { + "appid": 2902560, + "normalized_name": "postlife" + }, + { + "appid": 2902570, + "normalized_name": "rebellion rise of the damned" + }, + { + "appid": 2902580, + "normalized_name": "containment corp inc." + }, + { + "appid": 2902590, + "normalized_name": "six floors under" + }, + { + "appid": 2902600, + "normalized_name": "call of elyndra" + }, + { + "appid": 2902640, + "normalized_name": "ghost hunter" + }, + { + "appid": 2902650, + "normalized_name": "lutarus" + }, + { + "appid": 2902660, + "normalized_name": "3souls parallel" + }, + { + "appid": 2902670, + "normalized_name": "soccer party" + }, + { + "appid": 2902720, + "normalized_name": "spam" + }, + { + "appid": 2902760, + "normalized_name": "stories to tell [alpha 2] downhill cemetery" + }, + { + "appid": 2902770, + "normalized_name": "赝作 心灵推演 others" + }, + { + "appid": 2902780, + "normalized_name": "ghost villa" + }, + { + "appid": 2902830, + "normalized_name": "commando hero 2 first blood" + }, + { + "appid": 2903020, + "normalized_name": "space combat" + }, + { + "appid": 2903060, + "normalized_name": "the final prize is soup" + }, + { + "appid": 2903100, + "normalized_name": "dimenshift" + }, + { + "appid": 2903130, + "normalized_name": "science the game" + }, + { + "appid": 2903160, + "normalized_name": "midori no kaori" + }, + { + "appid": 2903190, + "normalized_name": "maverick" + }, + { + "appid": 2903210, + "normalized_name": "box wrangler" + }, + { + "appid": 2903220, + "normalized_name": "nightsend" + }, + { + "appid": 2903240, + "normalized_name": "dodori" + }, + { + "appid": 2903250, + "normalized_name": "arc antic runes combat" + }, + { + "appid": 2903380, + "normalized_name": "love hell" + }, + { + "appid": 2903450, + "normalized_name": "fishing for a living" + }, + { + "appid": 2903460, + "normalized_name": "我在末日捡垃圾" + }, + { + "appid": 2903480, + "normalized_name": "일진녀가 옆집에 이사왔다" + }, + { + "appid": 2903490, + "normalized_name": "desert of the undead new frontiers" + }, + { + "appid": 2903510, + "normalized_name": "alien rush" + }, + { + "appid": 2903530, + "normalized_name": "primrows" + }, + { + "appid": 2903550, + "normalized_name": "丘丘镇物语" + }, + { + "appid": 2903560, + "normalized_name": "platform 8" + }, + { + "appid": 2903570, + "normalized_name": "adrift" + }, + { + "appid": 2903580, + "normalized_name": "dissociative" + }, + { + "appid": 2903590, + "normalized_name": "hyperfatal" + }, + { + "appid": 2903600, + "normalized_name": "fern light" + }, + { + "appid": 2903610, + "normalized_name": "lightus" + }, + { + "appid": 2903620, + "normalized_name": "alley nine" + }, + { + "appid": 2903630, + "normalized_name": "千年一弈" + }, + { + "appid": 2903660, + "normalized_name": "machorium muscle aquarium simulator" + }, + { + "appid": 2903670, + "normalized_name": "greencoldbody" + }, + { + "appid": 2903690, + "normalized_name": "horny villa" + }, + { + "appid": 2903710, + "normalized_name": "lost lullabies the orphanage chronicles" + }, + { + "appid": 2903720, + "normalized_name": "grimm harvest" + }, + { + "appid": 2903730, + "normalized_name": "spellslinger towns" + }, + { + "appid": 2903740, + "normalized_name": "card master" + }, + { + "appid": 2903790, + "normalized_name": "kost" + }, + { + "appid": 2903850, + "normalized_name": "jhon digwood concrete" + }, + { + "appid": 2903890, + "normalized_name": "r.i.s.e." + }, + { + "appid": 2903900, + "normalized_name": "dead don't die" + }, + { + "appid": 2903940, + "normalized_name": "xeno" + }, + { + "appid": 2903950, + "normalized_name": "master detective archives rain code plus" + }, + { + "appid": 2903980, + "normalized_name": "steel effigy" + }, + { + "appid": 2904000, + "normalized_name": "the spell brigade" + }, + { + "appid": 2904040, + "normalized_name": "car repair" + }, + { + "appid": 2904060, + "normalized_name": "enter falconry" + }, + { + "appid": 2904100, + "normalized_name": "リアセカイ" + }, + { + "appid": 2904110, + "normalized_name": "fork in the road" + }, + { + "appid": 2904120, + "normalized_name": "sand nomads" + }, + { + "appid": 2904160, + "normalized_name": "demon core" + }, + { + "appid": 2904170, + "normalized_name": "where dragon spirits 龙魂在哪里" + }, + { + "appid": 2904190, + "normalized_name": "of mice and dice" + }, + { + "appid": 2904200, + "normalized_name": "along the river during the qingming festival" + }, + { + "appid": 2904290, + "normalized_name": "rollscape" + }, + { + "appid": 2904320, + "normalized_name": "astrometica prologue" + }, + { + "appid": 2904340, + "normalized_name": "pantheon rift prototype" + }, + { + "appid": 2904360, + "normalized_name": "dissimilar" + }, + { + "appid": 2904370, + "normalized_name": "crown code chronicles" + }, + { + "appid": 2904390, + "normalized_name": "monster island" + }, + { + "appid": 2904420, + "normalized_name": "magiccar of delicious(舌尖上的魔术师)" + }, + { + "appid": 2904430, + "normalized_name": "guerra de insetos tw premium" + }, + { + "appid": 2904460, + "normalized_name": "渔舟录" + }, + { + "appid": 2904470, + "normalized_name": "ハルジオンは雨と咲く" + }, + { + "appid": 2904490, + "normalized_name": "hode" + }, + { + "appid": 2904510, + "normalized_name": "mr. scientist" + }, + { + "appid": 2904640, + "normalized_name": "click click dig idle mine" + }, + { + "appid": 2904670, + "normalized_name": "planet surf" + }, + { + "appid": 2904680, + "normalized_name": "earth~quack" + }, + { + "appid": 2904690, + "normalized_name": "scurri" + }, + { + "appid": 2904730, + "normalized_name": "custom party" + }, + { + "appid": 2904740, + "normalized_name": "day at the office prologue" + }, + { + "appid": 2904750, + "normalized_name": "cleave together the dragon king's treasure" + }, + { + "appid": 2904800, + "normalized_name": "blood poker" + }, + { + "appid": 2904810, + "normalized_name": "hitobashira human suika" + }, + { + "appid": 2904830, + "normalized_name": "caasi remade" + }, + { + "appid": 2904860, + "normalized_name": "culling of normality" + }, + { + "appid": 2904890, + "normalized_name": "the game of sisyphus" + }, + { + "appid": 2904920, + "normalized_name": "kingdom of peace" + }, + { + "appid": 2904930, + "normalized_name": "the paradogx incident" + }, + { + "appid": 2904970, + "normalized_name": "run away from me alexandra" + }, + { + "appid": 2905030, + "normalized_name": "heyspresso" + }, + { + "appid": 2905040, + "normalized_name": "destroy blocks" + }, + { + "appid": 2905080, + "normalized_name": "brownie's adventure 2" + }, + { + "appid": 2905090, + "normalized_name": "ubersoldier" + }, + { + "appid": 2905120, + "normalized_name": "spaceborne survivors" + }, + { + "appid": 2905140, + "normalized_name": "the gif game" + }, + { + "appid": 2905150, + "normalized_name": "遗忘魔塔" + }, + { + "appid": 2905160, + "normalized_name": "risky rocket" + }, + { + "appid": 2905170, + "normalized_name": "magic archery" + }, + { + "appid": 2905180, + "normalized_name": "shade silver" + }, + { + "appid": 2905240, + "normalized_name": "dig a road" + }, + { + "appid": 2905290, + "normalized_name": "easy breezy drive" + }, + { + "appid": 2905320, + "normalized_name": "gunpowder massacre" + }, + { + "appid": 2905350, + "normalized_name": "chest" + }, + { + "appid": 2905360, + "normalized_name": "oh no! i died and woke up a greek god!" + }, + { + "appid": 2905620, + "normalized_name": "red october" + }, + { + "appid": 2905630, + "normalized_name": "subway" + }, + { + "appid": 2905650, + "normalized_name": "超次元盤上遊戯カオスボード" + }, + { + "appid": 2905680, + "normalized_name": "ikev" + }, + { + "appid": 2905790, + "normalized_name": "project tachyon" + }, + { + "appid": 2905890, + "normalized_name": "hidden corgi mansion" + }, + { + "appid": 2905920, + "normalized_name": "apex automata" + }, + { + "appid": 2905930, + "normalized_name": "blast in the past" + }, + { + "appid": 2905940, + "normalized_name": "unnatural selection" + }, + { + "appid": 2905950, + "normalized_name": "whispers of silence" + }, + { + "appid": 2905960, + "normalized_name": "fall words" + }, + { + "appid": 2905970, + "normalized_name": "sunset motel prologue" + }, + { + "appid": 2906030, + "normalized_name": "魔物联盟自走棋 monster united" + }, + { + "appid": 2906040, + "normalized_name": "destiny of heroes" + }, + { + "appid": 2906070, + "normalized_name": "blood reaver" + }, + { + "appid": 2906100, + "normalized_name": "bob fight" + }, + { + "appid": 2906130, + "normalized_name": "paranormal archives" + }, + { + "appid": 2906140, + "normalized_name": "bluff with ash" + }, + { + "appid": 2906160, + "normalized_name": "mango 64" + }, + { + "appid": 2906170, + "normalized_name": "fetish club" + }, + { + "appid": 2906180, + "normalized_name": "the last signal" + }, + { + "appid": 2906200, + "normalized_name": "a day in the palace" + }, + { + "appid": 2906210, + "normalized_name": "spring escape" + }, + { + "appid": 2906220, + "normalized_name": "sex help" + }, + { + "appid": 2906300, + "normalized_name": "bison battle machine" + }, + { + "appid": 2906310, + "normalized_name": "cyborg lumberjack" + }, + { + "appid": 2906320, + "normalized_name": "whelm" + }, + { + "appid": 2906350, + "normalized_name": "chaos frenzy" + }, + { + "appid": 2906360, + "normalized_name": "spectrophobia" + }, + { + "appid": 2906370, + "normalized_name": "bright lord" + }, + { + "appid": 2906390, + "normalized_name": "le monde d'orathos" + }, + { + "appid": 2906400, + "normalized_name": "幻想 · 遇见秦始皇 fantasy encountering emperor qin shi huang" + }, + { + "appid": 2906440, + "normalized_name": "townbox" + }, + { + "appid": 2906460, + "normalized_name": "the dream recorder" + }, + { + "appid": 2906500, + "normalized_name": "the thing that happened" + }, + { + "appid": 2906510, + "normalized_name": "monsters and sprites" + }, + { + "appid": 2906530, + "normalized_name": "cozy merge" + }, + { + "appid": 2906540, + "normalized_name": "scrambled eggs" + }, + { + "appid": 2906620, + "normalized_name": "lotus lost memories" + }, + { + "appid": 2906660, + "normalized_name": "conquer lands" + }, + { + "appid": 2906670, + "normalized_name": "cult 87" + }, + { + "appid": 2906700, + "normalized_name": "unihorn" + }, + { + "appid": 2906710, + "normalized_name": "necrophobia" + }, + { + "appid": 2906730, + "normalized_name": "watchword" + }, + { + "appid": 2906740, + "normalized_name": "pedro temple" + }, + { + "appid": 2906780, + "normalized_name": "bbosong" + }, + { + "appid": 2906790, + "normalized_name": "homestead online" + }, + { + "appid": 2906800, + "normalized_name": "cubik" + }, + { + "appid": 2906810, + "normalized_name": "ballad of angels" + }, + { + "appid": 2906830, + "normalized_name": "无聊的幸存者 boredom survivor" + }, + { + "appid": 2906840, + "normalized_name": "asterion quest" + }, + { + "appid": 2906860, + "normalized_name": "fmv soulslike" + }, + { + "appid": 2906890, + "normalized_name": "grapplers relic rivals" + }, + { + "appid": 2906900, + "normalized_name": "factory company" + }, + { + "appid": 2906910, + "normalized_name": "stickman browser" + }, + { + "appid": 2906920, + "normalized_name": "eternal fate a journey begins" + }, + { + "appid": 2906930, + "normalized_name": "小石冒险 koishi adventure⁓" + }, + { + "appid": 2907000, + "normalized_name": "desktop creatures" + }, + { + "appid": 2907010, + "normalized_name": "hidden cats the last of cats" + }, + { + "appid": 2907050, + "normalized_name": "shalnor silverwind saga" + }, + { + "appid": 2907080, + "normalized_name": "jump on clouds" + }, + { + "appid": 2907090, + "normalized_name": "crime or punishment" + }, + { + "appid": 2907110, + "normalized_name": "mineval" + }, + { + "appid": 2907120, + "normalized_name": "just wing it" + }, + { + "appid": 2907180, + "normalized_name": "malignity of goblins" + }, + { + "appid": 2907190, + "normalized_name": "april 24th" + }, + { + "appid": 2907200, + "normalized_name": "starsknight" + }, + { + "appid": 2907220, + "normalized_name": "steel symphony" + }, + { + "appid": 2907230, + "normalized_name": "crazy destruction" + }, + { + "appid": 2907240, + "normalized_name": "dark rampage" + }, + { + "appid": 2907250, + "normalized_name": "dungeon ruins" + }, + { + "appid": 2907260, + "normalized_name": "mysterious planet" + }, + { + "appid": 2907270, + "normalized_name": "wizard another world" + }, + { + "appid": 2907280, + "normalized_name": "不安的回忆|uneasy memories" + }, + { + "appid": 2907310, + "normalized_name": "little duck adventure" + }, + { + "appid": 2907330, + "normalized_name": "暮光防线" + }, + { + "appid": 2907340, + "normalized_name": "going loco" + }, + { + "appid": 2907350, + "normalized_name": "the elder gods" + }, + { + "appid": 2907360, + "normalized_name": "polydrift" + }, + { + "appid": 2907430, + "normalized_name": "the witches' whisk" + }, + { + "appid": 2907470, + "normalized_name": "combat dungeon" + }, + { + "appid": 2907520, + "normalized_name": "ω space" + }, + { + "appid": 2907560, + "normalized_name": "retrospace" + }, + { + "appid": 2907580, + "normalized_name": "mr. trumpet's temper tantrum" + }, + { + "appid": 2907590, + "normalized_name": "magical manifest" + }, + { + "appid": 2907610, + "normalized_name": "echoes" + }, + { + "appid": 2907620, + "normalized_name": "trench defender" + }, + { + "appid": 2907630, + "normalized_name": "kidnapped" + }, + { + "appid": 2907650, + "normalized_name": "battlegrounds the pirate king" + }, + { + "appid": 2907680, + "normalized_name": "cosmotots" + }, + { + "appid": 2907700, + "normalized_name": "startup quest bakery" + }, + { + "appid": 2907720, + "normalized_name": "search all aliens" + }, + { + "appid": 2907770, + "normalized_name": "frankie and suede private detectives" + }, + { + "appid": 2907800, + "normalized_name": "the conundrum helix" + }, + { + "appid": 2907810, + "normalized_name": "tung tung tung sahur" + }, + { + "appid": 2907820, + "normalized_name": "marvatten" + }, + { + "appid": 2907840, + "normalized_name": "potatoes and aliens" + }, + { + "appid": 2907850, + "normalized_name": "virus 3d" + }, + { + "appid": 2907870, + "normalized_name": "room 817 director's cut" + }, + { + "appid": 2907890, + "normalized_name": "wizzerd quest 2" + }, + { + "appid": 2907930, + "normalized_name": "warehouse manager simulator" + }, + { + "appid": 2908000, + "normalized_name": "stab it vr.com" + }, + { + "appid": 2908050, + "normalized_name": "catto's post office" + }, + { + "appid": 2908090, + "normalized_name": "vitriol" + }, + { + "appid": 2908100, + "normalized_name": "seventh song" + }, + { + "appid": 2908120, + "normalized_name": "one boss one fight" + }, + { + "appid": 2908130, + "normalized_name": "distant isles" + }, + { + "appid": 2908140, + "normalized_name": "climbing in barrel with double barrel" + }, + { + "appid": 2908150, + "normalized_name": "trivia trials" + }, + { + "appid": 2908170, + "normalized_name": "ink link" + }, + { + "appid": 2908190, + "normalized_name": "space station escape" + }, + { + "appid": 2908240, + "normalized_name": "chains of judgment" + }, + { + "appid": 2908270, + "normalized_name": "snackroach" + }, + { + "appid": 2908280, + "normalized_name": "kebab simulator vr" + }, + { + "appid": 2908290, + "normalized_name": "dish up fruit" + }, + { + "appid": 2908300, + "normalized_name": "pineapple defense" + }, + { + "appid": 2908340, + "normalized_name": "thorns police never sleeps" + }, + { + "appid": 2908360, + "normalized_name": "the night guard" + }, + { + "appid": 2908470, + "normalized_name": "my bullies are fucking my mom!" + }, + { + "appid": 2908490, + "normalized_name": "forge simulator" + }, + { + "appid": 2908500, + "normalized_name": "buggos 2" + }, + { + "appid": 2908550, + "normalized_name": "escape room collection c1" + }, + { + "appid": 2908560, + "normalized_name": "daily threat the storm" + }, + { + "appid": 2908670, + "normalized_name": "変獄 | limbus" + }, + { + "appid": 2908810, + "normalized_name": "my fair cat snow" + }, + { + "appid": 2908820, + "normalized_name": "virus hunter" + }, + { + "appid": 2908830, + "normalized_name": "toni island adventure" + }, + { + "appid": 2908840, + "normalized_name": "slime mayhem" + }, + { + "appid": 2908880, + "normalized_name": "baseball legacy manager 24" + }, + { + "appid": 2908900, + "normalized_name": "search all hearts" + }, + { + "appid": 2908940, + "normalized_name": "when the world became black" + }, + { + "appid": 2908950, + "normalized_name": "tunnel escape" + }, + { + "appid": 2909010, + "normalized_name": "deathtrip" + }, + { + "appid": 2909020, + "normalized_name": "delic" + }, + { + "appid": 2909050, + "normalized_name": "poker dungeon" + }, + { + "appid": 2909090, + "normalized_name": "pharaoh's purse" + }, + { + "appid": 2909100, + "normalized_name": "street race kings" + }, + { + "appid": 2909110, + "normalized_name": "nuclear nightmare" + }, + { + "appid": 2909140, + "normalized_name": "未知守则" + }, + { + "appid": 2909170, + "normalized_name": "body pay" + }, + { + "appid": 2909200, + "normalized_name": "lord of tower" + }, + { + "appid": 2909230, + "normalized_name": "クソデカ囃子(ばやし) | kusodeka bayashi" + }, + { + "appid": 2909250, + "normalized_name": "extreme climbing" + }, + { + "appid": 2909270, + "normalized_name": "we need no kings" + }, + { + "appid": 2909280, + "normalized_name": "3am corp the balbazar resort" + }, + { + "appid": 2909290, + "normalized_name": "corrupt eldritch order" + }, + { + "appid": 2909320, + "normalized_name": "star crew" + }, + { + "appid": 2909360, + "normalized_name": "beat in zero" + }, + { + "appid": 2909370, + "normalized_name": "reborn dragona ph" + }, + { + "appid": 2909380, + "normalized_name": "pedal rebel vr" + }, + { + "appid": 2909390, + "normalized_name": "wish you happiness" + }, + { + "appid": 2909400, + "normalized_name": "final fantasy vii rebirth" + }, + { + "appid": 2909410, + "normalized_name": "flying high" + }, + { + "appid": 2909480, + "normalized_name": "ramen oil simulator" + }, + { + "appid": 2909560, + "normalized_name": "soulshake" + }, + { + "appid": 2909570, + "normalized_name": "ワンコワンコ大作戦" + }, + { + "appid": 2909580, + "normalized_name": "viractal" + }, + { + "appid": 2909600, + "normalized_name": "三国归一" + }, + { + "appid": 2909640, + "normalized_name": "halley2061" + }, + { + "appid": 2909650, + "normalized_name": "aliens and asteroids" + }, + { + "appid": 2909680, + "normalized_name": "hollow survivors prologue" + }, + { + "appid": 2909710, + "normalized_name": "tarogue" + }, + { + "appid": 2909720, + "normalized_name": "mirage a biplane adventure" + }, + { + "appid": 2909750, + "normalized_name": "wild lands" + }, + { + "appid": 2909760, + "normalized_name": "earthscaper" + }, + { + "appid": 2909840, + "normalized_name": "animal farm jigsaw games for toddlers babys and kids" + }, + { + "appid": 2909870, + "normalized_name": "the legacy" + }, + { + "appid": 2909910, + "normalized_name": "underworld overseer" + }, + { + "appid": 2909930, + "normalized_name": "human resource" + }, + { + "appid": 2909940, + "normalized_name": "last ride" + }, + { + "appid": 2909960, + "normalized_name": "kopi" + }, + { + "appid": 2909980, + "normalized_name": "car wash game for kids and toddlers" + }, + { + "appid": 2909990, + "normalized_name": "funny farm learning games for toddlers and kids" + }, + { + "appid": 2910040, + "normalized_name": "dust & rain post apocalyptic rpg" + }, + { + "appid": 2910140, + "normalized_name": "star m" + }, + { + "appid": 2910280, + "normalized_name": "peasant" + }, + { + "appid": 2910290, + "normalized_name": "glory defence" + }, + { + "appid": 2910310, + "normalized_name": "i am etheric" + }, + { + "appid": 2910320, + "normalized_name": "sift heads cartels" + }, + { + "appid": 2910340, + "normalized_name": "enough with the witch" + }, + { + "appid": 2910380, + "normalized_name": "argonix the rise of kings" + }, + { + "appid": 2910390, + "normalized_name": "raging ball" + }, + { + "appid": 2910400, + "normalized_name": "elemental novice" + }, + { + "appid": 2910430, + "normalized_name": "cyber aces hope" + }, + { + "appid": 2910440, + "normalized_name": "parkour master" + }, + { + "appid": 2910450, + "normalized_name": "major marble" + }, + { + "appid": 2910460, + "normalized_name": "毛绒天使疗愈人生" + }, + { + "appid": 2910500, + "normalized_name": "whimsical wizardry" + }, + { + "appid": 2910590, + "normalized_name": "slime farm" + }, + { + "appid": 2910690, + "normalized_name": "glue 10" + }, + { + "appid": 2910710, + "normalized_name": "survive (the game)" + }, + { + "appid": 2910810, + "normalized_name": "super hangman" + }, + { + "appid": 2910820, + "normalized_name": "goblin boom" + }, + { + "appid": 2910830, + "normalized_name": "feed" + }, + { + "appid": 2910850, + "normalized_name": "ghost for hire" + }, + { + "appid": 2910860, + "normalized_name": "rob & roll" + }, + { + "appid": 2910900, + "normalized_name": "最后的英雄" + }, + { + "appid": 2910940, + "normalized_name": "reclaim" + }, + { + "appid": 2910950, + "normalized_name": "purpose calling" + }, + { + "appid": 2910960, + "normalized_name": "决胜千里:三国 victory of kilomiles away:three kingdoms" + }, + { + "appid": 2910990, + "normalized_name": "hyakki yako survivor" + }, + { + "appid": 2911010, + "normalized_name": "roboloop" + }, + { + "appid": 2911060, + "normalized_name": "ai公寓:虚拟证言" + }, + { + "appid": 2911080, + "normalized_name": "trace" + }, + { + "appid": 2911130, + "normalized_name": "the demon lord dungeon" + }, + { + "appid": 2911140, + "normalized_name": "救済!粛清サークル ~the purge club~" + }, + { + "appid": 2911160, + "normalized_name": "legacy of epstein foul dreamer" + }, + { + "appid": 2911180, + "normalized_name": "嗜血美脚" + }, + { + "appid": 2911200, + "normalized_name": "lost call" + }, + { + "appid": 2911230, + "normalized_name": "stellarplans" + }, + { + "appid": 2911240, + "normalized_name": "易经:文箓秘境" + }, + { + "appid": 2911250, + "normalized_name": "荒島 x 愛 x 求生" + }, + { + "appid": 2911260, + "normalized_name": "stellifier an otome game inspired by older idols" + }, + { + "appid": 2911280, + "normalized_name": "master of love" + }, + { + "appid": 2911290, + "normalized_name": "skuf backrooms" + }, + { + "appid": 2911310, + "normalized_name": "peerless destiny 绝世天命" + }, + { + "appid": 2911340, + "normalized_name": "mound of music" + }, + { + "appid": 2911390, + "normalized_name": "security the horrible nights" + }, + { + "appid": 2911410, + "normalized_name": "candy ship" + }, + { + "appid": 2911450, + "normalized_name": "bdsm sex episode 4" + }, + { + "appid": 2911460, + "normalized_name": "百万星舰" + }, + { + "appid": 2911490, + "normalized_name": "the pool rooms backrooms level 37" + }, + { + "appid": 2911510, + "normalized_name": "comrades we have a mole problem" + }, + { + "appid": 2911520, + "normalized_name": "path weaver" + }, + { + "appid": 2911540, + "normalized_name": "hentai tales the entrance to isekai" + }, + { + "appid": 2911580, + "normalized_name": "rollimals" + }, + { + "appid": 2911590, + "normalized_name": "sports hero" + }, + { + "appid": 2911630, + "normalized_name": "brewed horizons" + }, + { + "appid": 2911660, + "normalized_name": "gal mothers and daughters who love sex" + }, + { + "appid": 2911680, + "normalized_name": "street wise a teenager's story" + }, + { + "appid": 2911750, + "normalized_name": "doodle deities" + }, + { + "appid": 2911760, + "normalized_name": "wandering monolith rogue td" + }, + { + "appid": 2911800, + "normalized_name": "peter's journey" + }, + { + "appid": 2911820, + "normalized_name": "the stairway 7 anomaly hunt loop horror game" + }, + { + "appid": 2911830, + "normalized_name": "spaceship tactics" + }, + { + "appid": 2911850, + "normalized_name": "playing kafka" + }, + { + "appid": 2912010, + "normalized_name": "brave hero" + }, + { + "appid": 2912020, + "normalized_name": "patriotika rpg shadow world" + }, + { + "appid": 2912030, + "normalized_name": "keep up" + }, + { + "appid": 2912050, + "normalized_name": "rune defender dwarven defense" + }, + { + "appid": 2912060, + "normalized_name": "color splash rodents" + }, + { + "appid": 2912090, + "normalized_name": "chibi escape" + }, + { + "appid": 2912100, + "normalized_name": "roiders" + }, + { + "appid": 2912130, + "normalized_name": "魔法少女パラノイド" + }, + { + "appid": 2912420, + "normalized_name": "pals go only up!" + }, + { + "appid": 2912430, + "normalized_name": "platypus reclayed" + }, + { + "appid": 2912450, + "normalized_name": "5 days minimum wage." + }, + { + "appid": 2912470, + "normalized_name": "dwarven defense prologue" + }, + { + "appid": 2912530, + "normalized_name": "the legend of azarias rebirth" + }, + { + "appid": 2912540, + "normalized_name": "a dash of color" + }, + { + "appid": 2912580, + "normalized_name": "college gay sex episode 3" + }, + { + "appid": 2912630, + "normalized_name": "skyhell" + }, + { + "appid": 2912640, + "normalized_name": "invaders from the lost sectors" + }, + { + "appid": 2912650, + "normalized_name": "sifera" + }, + { + "appid": 2912670, + "normalized_name": "mancers of magic" + }, + { + "appid": 2912680, + "normalized_name": "quiztopia the trivia" + }, + { + "appid": 2912700, + "normalized_name": "swords & bones 4" + }, + { + "appid": 2912750, + "normalized_name": "storefront simulator" + }, + { + "appid": 2912760, + "normalized_name": "duskmire" + }, + { + "appid": 2912770, + "normalized_name": "silver daze" + }, + { + "appid": 2912780, + "normalized_name": "mindflux dead man walking" + }, + { + "appid": 2912820, + "normalized_name": "sages of vandaleria rebirth of an empire" + }, + { + "appid": 2912840, + "normalized_name": "psyko" + }, + { + "appid": 2912870, + "normalized_name": "ember point" + }, + { + "appid": 2912900, + "normalized_name": "fujisan nobori" + }, + { + "appid": 2912910, + "normalized_name": "shockwave triggers" + }, + { + "appid": 2912970, + "normalized_name": "og puzzlers spring 2k24" + }, + { + "appid": 2912980, + "normalized_name": "og memory spring 2k24" + }, + { + "appid": 2913020, + "normalized_name": "guardfortressvr" + }, + { + "appid": 2913030, + "normalized_name": "find the lost lights" + }, + { + "appid": 2913040, + "normalized_name": "back" + }, + { + "appid": 2913180, + "normalized_name": "catpuncher" + }, + { + "appid": 2913190, + "normalized_name": "bravest coconut" + }, + { + "appid": 2913200, + "normalized_name": "little world" + }, + { + "appid": 2913260, + "normalized_name": "holy stone mage" + }, + { + "appid": 2913300, + "normalized_name": "cryptofantasy 甲賀の書" + }, + { + "appid": 2913310, + "normalized_name": "void mother survivor" + }, + { + "appid": 2913440, + "normalized_name": "cbs the beginning" + }, + { + "appid": 2913500, + "normalized_name": "star conqueror 舰队指挥官" + }, + { + "appid": 2913510, + "normalized_name": "美女学院当校霸" + }, + { + "appid": 2913520, + "normalized_name": "syon" + }, + { + "appid": 2913540, + "normalized_name": "jupiter junkworks" + }, + { + "appid": 2913610, + "normalized_name": "what awaits aleksey?" + }, + { + "appid": 2913660, + "normalized_name": "不买 下一个 (lower higher)" + }, + { + "appid": 2913670, + "normalized_name": "paraplasm beyond the veil" + }, + { + "appid": 2913680, + "normalized_name": "unfinished" + }, + { + "appid": 2913760, + "normalized_name": "warriors of nova thera" + }, + { + "appid": 2913770, + "normalized_name": "phantasm" + }, + { + "appid": 2913890, + "normalized_name": "casino simulator" + }, + { + "appid": 2913920, + "normalized_name": "git up!" + }, + { + "appid": 2913930, + "normalized_name": "sokoseed" + }, + { + "appid": 2913940, + "normalized_name": "solstice" + }, + { + "appid": 2913990, + "normalized_name": "star mission remote sectors" + }, + { + "appid": 2914000, + "normalized_name": "jumplife" + }, + { + "appid": 2914050, + "normalized_name": "jugs bay" + }, + { + "appid": 2914060, + "normalized_name": "swordsman" + }, + { + "appid": 2914090, + "normalized_name": "reflect" + }, + { + "appid": 2914110, + "normalized_name": "carrot commotion" + }, + { + "appid": 2914130, + "normalized_name": "quarrel hill" + }, + { + "appid": 2914140, + "normalized_name": "backpack quest battles and adventures" + }, + { + "appid": 2914150, + "normalized_name": "yunyun syndrome!? rhythm psychosis" + }, + { + "appid": 2914170, + "normalized_name": "land of mushrooms" + }, + { + "appid": 2914250, + "normalized_name": "rivers of chaos" + }, + { + "appid": 2914270, + "normalized_name": "the 13th floor" + }, + { + "appid": 2914320, + "normalized_name": "press any key" + }, + { + "appid": 2914390, + "normalized_name": "house of golf 2" + }, + { + "appid": 2914400, + "normalized_name": "hot pot game" + }, + { + "appid": 2914420, + "normalized_name": "rescue team clouded mind" + }, + { + "appid": 2914440, + "normalized_name": "game of gods" + }, + { + "appid": 2914460, + "normalized_name": "step into the abyss" + }, + { + "appid": 2914470, + "normalized_name": "armored suit solgante" + }, + { + "appid": 2914480, + "normalized_name": "welcome to maison chichigami" + }, + { + "appid": 2914490, + "normalized_name": "death end re;quest code z" + }, + { + "appid": 2914740, + "normalized_name": "haus of irndrous" + }, + { + "appid": 2914810, + "normalized_name": "arbo arena tactics" + }, + { + "appid": 2914820, + "normalized_name": "m.i.n.s.k." + }, + { + "appid": 2914850, + "normalized_name": "bird year" + }, + { + "appid": 2914870, + "normalized_name": "jorogumo's cradle" + }, + { + "appid": 2914880, + "normalized_name": "rocketrecoil" + }, + { + "appid": 2914910, + "normalized_name": "zoomer simulator" + }, + { + "appid": 2914920, + "normalized_name": "g.r.e.g. the generally really easy game" + }, + { + "appid": 2914930, + "normalized_name": "rehash" + }, + { + "appid": 2914960, + "normalized_name": "mindmindmind" + }, + { + "appid": 2914970, + "normalized_name": "robo pose" + }, + { + "appid": 2915020, + "normalized_name": "hanaja's body 2 in one" + }, + { + "appid": 2915050, + "normalized_name": "skeletal skism 2" + }, + { + "appid": 2915060, + "normalized_name": "the traveler" + }, + { + "appid": 2915070, + "normalized_name": "breed kim il sung" + }, + { + "appid": 2915080, + "normalized_name": "unreal island" + }, + { + "appid": 2915170, + "normalized_name": "异相:晨昏都市(ender theater)" + }, + { + "appid": 2915190, + "normalized_name": "連鎖反響" + }, + { + "appid": 2915210, + "normalized_name": "trouble makers" + }, + { + "appid": 2915280, + "normalized_name": "pako 3" + }, + { + "appid": 2915290, + "normalized_name": "last mech standing" + }, + { + "appid": 2915300, + "normalized_name": "vrshogimates" + }, + { + "appid": 2915360, + "normalized_name": "hide and seek" + }, + { + "appid": 2915380, + "normalized_name": "ways of alchemy" + }, + { + "appid": 2915390, + "normalized_name": "owe money pay money" + }, + { + "appid": 2915420, + "normalized_name": "big adventure trip to europe 7 collector's" + }, + { + "appid": 2915450, + "normalized_name": "myth matrix" + }, + { + "appid": 2915460, + "normalized_name": "oneshot world machine" + }, + { + "appid": 2915480, + "normalized_name": "egggg" + }, + { + "appid": 2915490, + "normalized_name": "the rewinder 2" + }, + { + "appid": 2915590, + "normalized_name": "deadzone blackout" + }, + { + "appid": 2915660, + "normalized_name": "pennon and battle" + }, + { + "appid": 2915730, + "normalized_name": "travelling at night" + }, + { + "appid": 2915760, + "normalized_name": "ameena witchborn duelist" + }, + { + "appid": 2915770, + "normalized_name": "rescue ops wildfire" + }, + { + "appid": 2915840, + "normalized_name": "dot & dot dungeons" + }, + { + "appid": 2915860, + "normalized_name": "1306 chapter 1 reactors & robots" + }, + { + "appid": 2915880, + "normalized_name": "bunker farmer" + }, + { + "appid": 2915900, + "normalized_name": "hew many foemen" + }, + { + "appid": 2915910, + "normalized_name": "checkers & pawns" + }, + { + "appid": 2915920, + "normalized_name": "locally sourced anthology i a space atlas" + }, + { + "appid": 2915930, + "normalized_name": "knockout city private server" + }, + { + "appid": 2915950, + "normalized_name": "mega mosaic" + }, + { + "appid": 2915980, + "normalized_name": "haunted space hotel vacancy" + }, + { + "appid": 2916010, + "normalized_name": "rogue conflict" + }, + { + "appid": 2916040, + "normalized_name": "finishline" + }, + { + "appid": 2916150, + "normalized_name": "promptcrafter" + }, + { + "appid": 2916160, + "normalized_name": "close combat" + }, + { + "appid": 2916170, + "normalized_name": "close combat 2 a bridge too far" + }, + { + "appid": 2916180, + "normalized_name": "close combat 3 the russian front" + }, + { + "appid": 2916190, + "normalized_name": "close combat 4 the battle of the bulge" + }, + { + "appid": 2916200, + "normalized_name": "close combat 5 invasion normandy utah beach to cherbourg" + }, + { + "appid": 2916210, + "normalized_name": "warlords i + ii" + }, + { + "appid": 2916220, + "normalized_name": "warlords iii darklords rising" + }, + { + "appid": 2916250, + "normalized_name": "my maid girls" + }, + { + "appid": 2916260, + "normalized_name": "liminality" + }, + { + "appid": 2916270, + "normalized_name": "interweaver" + }, + { + "appid": 2916290, + "normalized_name": "pneumatic panic" + }, + { + "appid": 2916300, + "normalized_name": "kiko's apple adventure" + }, + { + "appid": 2916310, + "normalized_name": "sinister hospital" + }, + { + "appid": 2916360, + "normalized_name": "plastic trick" + }, + { + "appid": 2916430, + "normalized_name": "fast food simulator" + }, + { + "appid": 2916440, + "normalized_name": "bodacious babes holidays" + }, + { + "appid": 2916460, + "normalized_name": "speedway survival" + }, + { + "appid": 2916470, + "normalized_name": "wc dream" + }, + { + "appid": 2916490, + "normalized_name": "trillenium" + }, + { + "appid": 2916530, + "normalized_name": "andrew's nightmare" + }, + { + "appid": 2916570, + "normalized_name": "thrillkings" + }, + { + "appid": 2916580, + "normalized_name": "sorelle" + }, + { + "appid": 2916590, + "normalized_name": "fantasy friends dream worlds" + }, + { + "appid": 2916620, + "normalized_name": "atlas online" + }, + { + "appid": 2916660, + "normalized_name": "rpgirl" + }, + { + "appid": 2916670, + "normalized_name": "neon village" + }, + { + "appid": 2916750, + "normalized_name": "just a cute capybara puzzle" + }, + { + "appid": 2916760, + "normalized_name": "掼个蛋蛋" + }, + { + "appid": 2916770, + "normalized_name": "digdigdrill" + }, + { + "appid": 2916780, + "normalized_name": "digital audio wasteland" + }, + { + "appid": 2916840, + "normalized_name": "der königsruf" + }, + { + "appid": 2916930, + "normalized_name": "zombieland survivors" + }, + { + "appid": 2916950, + "normalized_name": "toxic place" + }, + { + "appid": 2916960, + "normalized_name": "haven for emma" + }, + { + "appid": 2916970, + "normalized_name": "사설탐정 프리즈" + }, + { + "appid": 2916980, + "normalized_name": "sodden" + }, + { + "appid": 2917030, + "normalized_name": "echocalypse the scarlet covenant" + }, + { + "appid": 2917040, + "normalized_name": "garten of banban 8" + }, + { + "appid": 2917100, + "normalized_name": "ai探案集" + }, + { + "appid": 2917140, + "normalized_name": "bored wife" + }, + { + "appid": 2917160, + "normalized_name": "cybrid survivor" + }, + { + "appid": 2917190, + "normalized_name": "dark skies 2 keepers of nemansk" + }, + { + "appid": 2917220, + "normalized_name": "24h stories the cabin in the forest" + }, + { + "appid": 2917290, + "normalized_name": "crashing not optional" + }, + { + "appid": 2917340, + "normalized_name": "ominoflux" + }, + { + "appid": 2917350, + "normalized_name": "spin hero" + }, + { + "appid": 2917360, + "normalized_name": "the backworlds" + }, + { + "appid": 2917430, + "normalized_name": "the last warmage" + }, + { + "appid": 2917480, + "normalized_name": "۩ 勇者之墓 ۩" + }, + { + "appid": 2917490, + "normalized_name": "the last tiger" + }, + { + "appid": 2917550, + "normalized_name": "disc frenzy" + }, + { + "appid": 2917600, + "normalized_name": "ニンジャム!" + }, + { + "appid": 2917620, + "normalized_name": "psychopath massacre" + }, + { + "appid": 2917630, + "normalized_name": "threads of war" + }, + { + "appid": 2917740, + "normalized_name": "in between all times" + }, + { + "appid": 2917760, + "normalized_name": "crossing knightmare a hymn to the defiled holy maidens" + }, + { + "appid": 2917820, + "normalized_name": "war of the titans" + }, + { + "appid": 2917850, + "normalized_name": "photochemistry" + }, + { + "appid": 2917900, + "normalized_name": "ice cream wars" + }, + { + "appid": 2917910, + "normalized_name": "fossilpunk" + }, + { + "appid": 2917930, + "normalized_name": "stellfire" + }, + { + "appid": 2917960, + "normalized_name": "angry universe vr" + }, + { + "appid": 2917990, + "normalized_name": "the ghost of nichishima" + }, + { + "appid": 2918000, + "normalized_name": "gravemyst" + }, + { + "appid": 2918020, + "normalized_name": "ball blitz!" + }, + { + "appid": 2918070, + "normalized_name": "a tale of sand and bone" + }, + { + "appid": 2918080, + "normalized_name": "the violinist" + }, + { + "appid": 2918090, + "normalized_name": "fear the timeloop" + }, + { + "appid": 2918100, + "normalized_name": "try to wake up the legend of trevis" + }, + { + "appid": 2918120, + "normalized_name": "circoid" + }, + { + "appid": 2918130, + "normalized_name": "deepest trench" + }, + { + "appid": 2918150, + "normalized_name": "one piece bounty rush" + }, + { + "appid": 2918160, + "normalized_name": "chaotic good boy" + }, + { + "appid": 2918190, + "normalized_name": "roaches the birthday party" + }, + { + "appid": 2918230, + "normalized_name": "scarecrow vs big butt birds" + }, + { + "appid": 2918240, + "normalized_name": "manor mania" + }, + { + "appid": 2918250, + "normalized_name": "superhero cats" + }, + { + "appid": 2918270, + "normalized_name": "tech shop simulator" + }, + { + "appid": 2918300, + "normalized_name": "splitgate 2" + }, + { + "appid": 2918310, + "normalized_name": "mama's sleeping angels" + }, + { + "appid": 2918410, + "normalized_name": "tower of mask" + }, + { + "appid": 2918420, + "normalized_name": "wandering pet garden" + }, + { + "appid": 2918440, + "normalized_name": "rogue tanks" + }, + { + "appid": 2918450, + "normalized_name": "eoeonline" + }, + { + "appid": 2918470, + "normalized_name": "bubble dogs" + }, + { + "appid": 2918480, + "normalized_name": "forest of fear" + }, + { + "appid": 2918490, + "normalized_name": "chopchop" + }, + { + "appid": 2918500, + "normalized_name": "cozy island" + }, + { + "appid": 2918520, + "normalized_name": "dragon spirits 2 prologue" + }, + { + "appid": 2918530, + "normalized_name": "sinthome" + }, + { + "appid": 2918550, + "normalized_name": "drive me crazy" + }, + { + "appid": 2918570, + "normalized_name": "risky chronicles and the curse of destiny" + }, + { + "appid": 2918580, + "normalized_name": "twizzle puzzle rodents" + }, + { + "appid": 2918590, + "normalized_name": "midway accident" + }, + { + "appid": 2918600, + "normalized_name": "clone war" + }, + { + "appid": 2918630, + "normalized_name": "hellaxy" + }, + { + "appid": 2918650, + "normalized_name": "starbiz" + }, + { + "appid": 2918660, + "normalized_name": "agama versus bugs" + }, + { + "appid": 2918710, + "normalized_name": "仙途" + }, + { + "appid": 2918720, + "normalized_name": "kana" + }, + { + "appid": 2918730, + "normalized_name": "assassin's belief" + }, + { + "appid": 2918760, + "normalized_name": "clockout" + }, + { + "appid": 2918810, + "normalized_name": "mereonozis 2d the kingdom of gremlins" + }, + { + "appid": 2918840, + "normalized_name": "史莱姆的抉择:the slime's choice:tsc" + }, + { + "appid": 2918850, + "normalized_name": "amazing grace" + }, + { + "appid": 2918890, + "normalized_name": "spirit harem" + }, + { + "appid": 2918900, + "normalized_name": "cavestride" + }, + { + "appid": 2918930, + "normalized_name": "many mini typing games" + }, + { + "appid": 2918940, + "normalized_name": "blumgi soccer" + }, + { + "appid": 2918950, + "normalized_name": "tiny ski" + }, + { + "appid": 2918960, + "normalized_name": "feed the gods" + }, + { + "appid": 2918990, + "normalized_name": "hexdeck td" + }, + { + "appid": 2919010, + "normalized_name": "fabled realms" + }, + { + "appid": 2919030, + "normalized_name": "scaredy cat" + }, + { + "appid": 2919060, + "normalized_name": "safebreaker" + }, + { + "appid": 2919070, + "normalized_name": "rope kun adventure" + }, + { + "appid": 2919110, + "normalized_name": "浅海漫游" + }, + { + "appid": 2919120, + "normalized_name": "なげるーみあ!" + }, + { + "appid": 2919130, + "normalized_name": "countdown to ntr" + }, + { + "appid": 2919170, + "normalized_name": "the mystery mist" + }, + { + "appid": 2919190, + "normalized_name": "summon legion" + }, + { + "appid": 2919200, + "normalized_name": "death sword spirit" + }, + { + "appid": 2919230, + "normalized_name": "photobia tales from the dark" + }, + { + "appid": 2919240, + "normalized_name": "super adventure" + }, + { + "appid": 2919250, + "normalized_name": "central killing agency" + }, + { + "appid": 2919260, + "normalized_name": "night town" + }, + { + "appid": 2919290, + "normalized_name": "sheep's symphony" + }, + { + "appid": 2919300, + "normalized_name": "six planes" + }, + { + "appid": 2919340, + "normalized_name": "project p" + }, + { + "appid": 2919370, + "normalized_name": "penguin take off!!" + }, + { + "appid": 2919410, + "normalized_name": "低成本ai武侠模拟器" + }, + { + "appid": 2919450, + "normalized_name": "luminastadt" + }, + { + "appid": 2919480, + "normalized_name": "is this a platformer?" + }, + { + "appid": 2919500, + "normalized_name": "cluaido" + }, + { + "appid": 2919520, + "normalized_name": "dandara ダンダラ" + }, + { + "appid": 2919530, + "normalized_name": "战斗模拟器battlesimulator" + }, + { + "appid": 2919560, + "normalized_name": "👑idle calibur:zero💕(选王之剑:零)" + }, + { + "appid": 2919580, + "normalized_name": "bab" + }, + { + "appid": 2919600, + "normalized_name": "divine justice realm of justice" + }, + { + "appid": 2919610, + "normalized_name": "run dungeon" + }, + { + "appid": 2919650, + "normalized_name": "cookard" + }, + { + "appid": 2919660, + "normalized_name": "judgesim" + }, + { + "appid": 2919690, + "normalized_name": "deity's domain" + }, + { + "appid": 2919710, + "normalized_name": "tactishia" + }, + { + "appid": 2919770, + "normalized_name": "luck's labyrinth" + }, + { + "appid": 2919780, + "normalized_name": "hop man" + }, + { + "appid": 2919790, + "normalized_name": "gravewatch" + }, + { + "appid": 2919850, + "normalized_name": "find eden" + }, + { + "appid": 2919870, + "normalized_name": "capibara lost dreams" + }, + { + "appid": 2919900, + "normalized_name": "wolf woods" + }, + { + "appid": 2919920, + "normalized_name": "exit slum 11" + }, + { + "appid": 2919980, + "normalized_name": "tale of the singing peaks" + }, + { + "appid": 2919990, + "normalized_name": "an unfinished game" + }, + { + "appid": 2920010, + "normalized_name": "comet angel" + }, + { + "appid": 2920020, + "normalized_name": "crystal guardian" + }, + { + "appid": 2920030, + "normalized_name": "undergirl submission path" + }, + { + "appid": 2920040, + "normalized_name": "palingenesis" + }, + { + "appid": 2920060, + "normalized_name": "cheese party" + }, + { + "appid": 2920070, + "normalized_name": "the croaker" + }, + { + "appid": 2920110, + "normalized_name": "shrimpwrecked" + }, + { + "appid": 2920120, + "normalized_name": "radiant exodus" + }, + { + "appid": 2920150, + "normalized_name": "mr football" + }, + { + "appid": 2920160, + "normalized_name": "幻塔" + }, + { + "appid": 2920210, + "normalized_name": "frontier mayhem" + }, + { + "appid": 2920220, + "normalized_name": "terrible lizards" + }, + { + "appid": 2920270, + "normalized_name": "super sus" + }, + { + "appid": 2920280, + "normalized_name": "bird" + }, + { + "appid": 2920290, + "normalized_name": "versebreak" + }, + { + "appid": 2920330, + "normalized_name": "vice grill synthwave survival" + }, + { + "appid": 2920370, + "normalized_name": "trio tactics td" + }, + { + "appid": 2920380, + "normalized_name": "xenowars" + }, + { + "appid": 2920390, + "normalized_name": "北海道連鎖殺人オホーツクに消ゆ ~追憶の流氷・涙のニポポ人形~" + }, + { + "appid": 2920410, + "normalized_name": "house of horrors" + }, + { + "appid": 2920440, + "normalized_name": "moonlight rabbits" + }, + { + "appid": 2920490, + "normalized_name": "splash dino" + }, + { + "appid": 2920510, + "normalized_name": "werewolf party" + }, + { + "appid": 2920520, + "normalized_name": "retrozen" + }, + { + "appid": 2920540, + "normalized_name": "galactic starfire squadron" + }, + { + "appid": 2920570, + "normalized_name": "dale & dawson stationery supplies" + }, + { + "appid": 2920600, + "normalized_name": "catch the vandal" + }, + { + "appid": 2920610, + "normalized_name": "hidden riddles. the amazon mystery" + }, + { + "appid": 2920660, + "normalized_name": "zombie battle" + }, + { + "appid": 2920690, + "normalized_name": "sof enemy from the future" + }, + { + "appid": 2920700, + "normalized_name": "the earth is flat" + }, + { + "appid": 2920720, + "normalized_name": "idle battle rpg" + }, + { + "appid": 2920730, + "normalized_name": "my favorite dream girls" + }, + { + "appid": 2920770, + "normalized_name": "一条狗的半生" + }, + { + "appid": 2920780, + "normalized_name": "phantasos" + }, + { + "appid": 2920790, + "normalized_name": "besotted" + }, + { + "appid": 2920840, + "normalized_name": "shareholders" + }, + { + "appid": 2920880, + "normalized_name": "truth universally acknowledged" + }, + { + "appid": 2920890, + "normalized_name": "hillbillyhellfire" + }, + { + "appid": 2920910, + "normalized_name": "planet pioneers" + }, + { + "appid": 2920920, + "normalized_name": "naturesascendancy" + }, + { + "appid": 2920940, + "normalized_name": "syntaxia" + }, + { + "appid": 2920950, + "normalized_name": "galandrix" + }, + { + "appid": 2920970, + "normalized_name": "元卡牌2 metacard2 序章 prologue" + }, + { + "appid": 2920980, + "normalized_name": "an amazing wizard prologue" + }, + { + "appid": 2920990, + "normalized_name": "astrum vanguard" + }, + { + "appid": 2921000, + "normalized_name": "mortuar" + }, + { + "appid": 2921020, + "normalized_name": "breaking bricks" + }, + { + "appid": 2921030, + "normalized_name": "island designer" + }, + { + "appid": 2921050, + "normalized_name": "ghost talker" + }, + { + "appid": 2921060, + "normalized_name": "circus challenge" + }, + { + "appid": 2921100, + "normalized_name": "sex simulator 2 cumshot" + }, + { + "appid": 2921150, + "normalized_name": "escape tales the awakening" + }, + { + "appid": 2921180, + "normalized_name": "homing instinct" + }, + { + "appid": 2921190, + "normalized_name": "heather the smither" + }, + { + "appid": 2921360, + "normalized_name": "the mare of jonah" + }, + { + "appid": 2921370, + "normalized_name": "pickle party" + }, + { + "appid": 2921380, + "normalized_name": "caribbean crashers" + }, + { + "appid": 2921410, + "normalized_name": "havoc horizons" + }, + { + "appid": 2921420, + "normalized_name": "ice run" + }, + { + "appid": 2921430, + "normalized_name": "black out." + }, + { + "appid": 2921480, + "normalized_name": "sheeple" + }, + { + "appid": 2921520, + "normalized_name": "you are my treasure" + }, + { + "appid": 2921530, + "normalized_name": "the tennis academy" + }, + { + "appid": 2921550, + "normalized_name": "cedric & odious" + }, + { + "appid": 2921580, + "normalized_name": "immortal gates of pyre" + }, + { + "appid": 2921600, + "normalized_name": "angvik 2" + }, + { + "appid": 2921620, + "normalized_name": "harvest bliss" + }, + { + "appid": 2921630, + "normalized_name": "basilisk" + }, + { + "appid": 2921640, + "normalized_name": "emitime" + }, + { + "appid": 2921650, + "normalized_name": "jesus christ simulator" + }, + { + "appid": 2921670, + "normalized_name": "九宫幻境录" + }, + { + "appid": 2921690, + "normalized_name": "saku the covert agent" + }, + { + "appid": 2921740, + "normalized_name": "dungeon riddle" + }, + { + "appid": 2921760, + "normalized_name": "emergency in space" + }, + { + "appid": 2921770, + "normalized_name": "skeleton village" + }, + { + "appid": 2921780, + "normalized_name": "rich city" + }, + { + "appid": 2921790, + "normalized_name": "martian routine" + }, + { + "appid": 2921800, + "normalized_name": "hungry tiger" + }, + { + "appid": 2921810, + "normalized_name": "cringegolf" + }, + { + "appid": 2921820, + "normalized_name": "undead tower defense" + }, + { + "appid": 2921830, + "normalized_name": "slime slayer" + }, + { + "appid": 2921840, + "normalized_name": "dino precision platformer" + }, + { + "appid": 2921850, + "normalized_name": "run and hunt skeleton rebellion" + }, + { + "appid": 2921860, + "normalized_name": "mr. woodpecker" + }, + { + "appid": 2921870, + "normalized_name": "pacapomo" + }, + { + "appid": 2921890, + "normalized_name": "业火 hellfire" + }, + { + "appid": 2921900, + "normalized_name": "잿빛의 행성" + }, + { + "appid": 2921920, + "normalized_name": "spiredelve" + }, + { + "appid": 2921940, + "normalized_name": "jen's suika merge & date" + }, + { + "appid": 2921960, + "normalized_name": "project debug" + }, + { + "appid": 2922020, + "normalized_name": "sex ghoul fling🧟❤" + }, + { + "appid": 2922030, + "normalized_name": "pixel hunt" + }, + { + "appid": 2922050, + "normalized_name": "suika jelly game" + }, + { + "appid": 2922070, + "normalized_name": "정명 定命 borderless" + }, + { + "appid": 2922140, + "normalized_name": "psychexfuse" + }, + { + "appid": 2922170, + "normalized_name": "unlimitedchallenge" + }, + { + "appid": 2922180, + "normalized_name": "bonds of yachiyo" + }, + { + "appid": 2922240, + "normalized_name": "norah's song" + }, + { + "appid": 2922250, + "normalized_name": "baptiste" + }, + { + "appid": 2922260, + "normalized_name": "all doe's life" + }, + { + "appid": 2922290, + "normalized_name": "whispers of the void" + }, + { + "appid": 2922410, + "normalized_name": "achilles survivor" + }, + { + "appid": 2922430, + "normalized_name": "bunny shadow" + }, + { + "appid": 2922510, + "normalized_name": "gloomfall" + }, + { + "appid": 2922550, + "normalized_name": "katzala" + }, + { + "appid": 2922570, + "normalized_name": "tailside cozy cafe sim" + }, + { + "appid": 2922580, + "normalized_name": "wrong number" + }, + { + "appid": 2922590, + "normalized_name": "dark land chronicle the fallen elf" + }, + { + "appid": 2922600, + "normalized_name": "chooing" + }, + { + "appid": 2922610, + "normalized_name": "ruby dreams immortal promise" + }, + { + "appid": 2922680, + "normalized_name": "the aquarians" + }, + { + "appid": 2922690, + "normalized_name": "catale" + }, + { + "appid": 2922710, + "normalized_name": "beneath the cardboard be happy" + }, + { + "appid": 2922720, + "normalized_name": "raey" + }, + { + "appid": 2922740, + "normalized_name": "dogdogdog" + }, + { + "appid": 2922750, + "normalized_name": "selfish heroes" + }, + { + "appid": 2922760, + "normalized_name": "捏鼠妙妙屋" + }, + { + "appid": 2922790, + "normalized_name": "arena of trophies" + }, + { + "appid": 2922800, + "normalized_name": "quackdzilla pool cleaning simulator" + }, + { + "appid": 2922950, + "normalized_name": "cat & butterfly" + }, + { + "appid": 2922980, + "normalized_name": "arsene lupin once a thief" + }, + { + "appid": 2922990, + "normalized_name": "slaughter me street 1999" + }, + { + "appid": 2923000, + "normalized_name": "odyssey times a quest for adventure" + }, + { + "appid": 2923010, + "normalized_name": "field of growth a farmer's odyssey" + }, + { + "appid": 2923040, + "normalized_name": "w.a.r. hangry" + }, + { + "appid": 2923050, + "normalized_name": "burden of truth" + }, + { + "appid": 2923110, + "normalized_name": "sime is back" + }, + { + "appid": 2923130, + "normalized_name": "kunkun terror express" + }, + { + "appid": 2923160, + "normalized_name": "mines of moria (an adventurer's touch)" + }, + { + "appid": 2923170, + "normalized_name": "fisher's idle" + }, + { + "appid": 2923180, + "normalized_name": "defense of the dauntless" + }, + { + "appid": 2923200, + "normalized_name": "extinction rifts" + }, + { + "appid": 2923210, + "normalized_name": "oopz oofs" + }, + { + "appid": 2923220, + "normalized_name": "cats balance" + }, + { + "appid": 2923230, + "normalized_name": "rules & rodents" + }, + { + "appid": 2923260, + "normalized_name": "silent slayer vault of the vampire" + }, + { + "appid": 2923270, + "normalized_name": "babushcats" + }, + { + "appid": 2923280, + "normalized_name": "carnage" + }, + { + "appid": 2923300, + "normalized_name": "banana" + }, + { + "appid": 2923330, + "normalized_name": "revload" + }, + { + "appid": 2923350, + "normalized_name": "sheep raccoon" + }, + { + "appid": 2923390, + "normalized_name": "clothing store simulator" + }, + { + "appid": 2923420, + "normalized_name": "interview with the horny ghost" + }, + { + "appid": 2923430, + "normalized_name": "multiplayer spiders" + }, + { + "appid": 2923460, + "normalized_name": "asteroid jungle" + }, + { + "appid": 2923470, + "normalized_name": "greenwood defense" + }, + { + "appid": 2923500, + "normalized_name": "elemasta エレマスタ" + }, + { + "appid": 2923560, + "normalized_name": "my special summer vacation 2" + }, + { + "appid": 2923580, + "normalized_name": "gribblin defense" + }, + { + "appid": 2923590, + "normalized_name": "twilight bastion" + }, + { + "appid": 2923630, + "normalized_name": "wonder world" + }, + { + "appid": 2923640, + "normalized_name": "dragenas" + }, + { + "appid": 2923650, + "normalized_name": "elasticritters!" + }, + { + "appid": 2923660, + "normalized_name": "ghost light(灵灯)" + }, + { + "appid": 2923690, + "normalized_name": "mochi sprint" + }, + { + "appid": 2923710, + "normalized_name": "legion of die" + }, + { + "appid": 2923810, + "normalized_name": "celestial fall" + }, + { + "appid": 2923860, + "normalized_name": "大人の初恋、はじめます" + }, + { + "appid": 2923880, + "normalized_name": "figments" + }, + { + "appid": 2923900, + "normalized_name": "wayfarer" + }, + { + "appid": 2923910, + "normalized_name": "lost in memories" + }, + { + "appid": 2923920, + "normalized_name": "the fallen kingdoms" + }, + { + "appid": 2923930, + "normalized_name": "archwilio" + }, + { + "appid": 2923960, + "normalized_name": "epic pixel war" + }, + { + "appid": 2923970, + "normalized_name": "rayadillo" + }, + { + "appid": 2924010, + "normalized_name": "suit up" + }, + { + "appid": 2924020, + "normalized_name": "creature match" + }, + { + "appid": 2924030, + "normalized_name": "overtime heroes exit 8" + }, + { + "appid": 2924040, + "normalized_name": "nimbusfall" + }, + { + "appid": 2924050, + "normalized_name": "innocent grape" + }, + { + "appid": 2924080, + "normalized_name": "the mnemograph" + }, + { + "appid": 2924090, + "normalized_name": "world heritage vr swedish farmhouse" + }, + { + "appid": 2924110, + "normalized_name": "tunnel assault" + }, + { + "appid": 2924130, + "normalized_name": "forgotten red fog" + }, + { + "appid": 2924160, + "normalized_name": "one in a krillion" + }, + { + "appid": 2924170, + "normalized_name": "stickman strikes conquer fantasy world" + }, + { + "appid": 2924280, + "normalized_name": "deep sea hunter" + }, + { + "appid": 2924300, + "normalized_name": "backrooms lost" + }, + { + "appid": 2924310, + "normalized_name": "anoxia station" + }, + { + "appid": 2924350, + "normalized_name": "anna clicker shadow of the pantheon" + }, + { + "appid": 2924390, + "normalized_name": "find x shoot the difference in 4d" + }, + { + "appid": 2924580, + "normalized_name": "inkborn" + }, + { + "appid": 2924600, + "normalized_name": "tennistronic" + }, + { + "appid": 2924620, + "normalized_name": "beach bass" + }, + { + "appid": 2924650, + "normalized_name": "aidan in danger" + }, + { + "appid": 2924660, + "normalized_name": "fault broken promises" + }, + { + "appid": 2924670, + "normalized_name": "groda" + }, + { + "appid": 2924710, + "normalized_name": "last call" + }, + { + "appid": 2924760, + "normalized_name": "dirok" + }, + { + "appid": 2924810, + "normalized_name": "undercover secret management" + }, + { + "appid": 2924820, + "normalized_name": "delicious mansion mystery" + }, + { + "appid": 2924850, + "normalized_name": "cyberpunk horror" + }, + { + "appid": 2924860, + "normalized_name": "astrumis survive together" + }, + { + "appid": 2924870, + "normalized_name": "blood within" + }, + { + "appid": 2924880, + "normalized_name": "artificial fashionista" + }, + { + "appid": 2924890, + "normalized_name": "aquafantasia" + }, + { + "appid": 2924920, + "normalized_name": "rogue bot adventure" + }, + { + "appid": 2924980, + "normalized_name": "scouts out" + }, + { + "appid": 2924990, + "normalized_name": "ccg simulator roguelike collectible card game" + }, + { + "appid": 2925010, + "normalized_name": "cryptic route" + }, + { + "appid": 2925040, + "normalized_name": "cut the birch" + }, + { + "appid": 2925090, + "normalized_name": "su" + }, + { + "appid": 2925120, + "normalized_name": "the pale piper" + }, + { + "appid": 2925130, + "normalized_name": "plane starship2 galactic contender" + }, + { + "appid": 2925170, + "normalized_name": "silva" + }, + { + "appid": 2925210, + "normalized_name": "zombie killer" + }, + { + "appid": 2925270, + "normalized_name": "can bullet" + }, + { + "appid": 2925290, + "normalized_name": "ursid" + }, + { + "appid": 2925310, + "normalized_name": "cats around us giant cat" + }, + { + "appid": 2925320, + "normalized_name": "cats and seek tokyo" + }, + { + "appid": 2925330, + "normalized_name": "a difficult game about jumping" + }, + { + "appid": 2925340, + "normalized_name": "world of solaria 2d mmorpg" + }, + { + "appid": 2925400, + "normalized_name": "belly chubs the party game" + }, + { + "appid": 2925410, + "normalized_name": "chocolate factory prologue" + }, + { + "appid": 2925420, + "normalized_name": "fleshinsane forgotten empire" + }, + { + "appid": 2925430, + "normalized_name": "sandwich sim" + }, + { + "appid": 2925440, + "normalized_name": "season changer" + }, + { + "appid": 2925450, + "normalized_name": "letter lancers prologue" + }, + { + "appid": 2925460, + "normalized_name": "floridale man the joy of chaos" + }, + { + "appid": 2925480, + "normalized_name": "data man" + }, + { + "appid": 2925490, + "normalized_name": "into the m.a.w." + }, + { + "appid": 2925510, + "normalized_name": "voyager 19" + }, + { + "appid": 2925520, + "normalized_name": "aokaki" + }, + { + "appid": 2925530, + "normalized_name": "cat cafe simulator" + }, + { + "appid": 2925570, + "normalized_name": "cat burglar" + }, + { + "appid": 2925580, + "normalized_name": "horny mage chronicles" + }, + { + "appid": 2925680, + "normalized_name": "wonderland" + }, + { + "appid": 2925690, + "normalized_name": "hentai room deep galactic penetration" + }, + { + "appid": 2925730, + "normalized_name": "combat cat" + }, + { + "appid": 2925870, + "normalized_name": "hent ai puzzle" + }, + { + "appid": 2925880, + "normalized_name": "medical diagnostic simulator" + }, + { + "appid": 2925890, + "normalized_name": "army troop 2 modern guns" + }, + { + "appid": 2925960, + "normalized_name": "weatherman" + }, + { + "appid": 2925970, + "normalized_name": "the unholy priest" + }, + { + "appid": 2925980, + "normalized_name": "中学校ゾンビ2" + }, + { + "appid": 2925990, + "normalized_name": "escape the forest" + }, + { + "appid": 2926030, + "normalized_name": "space plunder" + }, + { + "appid": 2926070, + "normalized_name": "fairway to hell" + }, + { + "appid": 2926080, + "normalized_name": "cursed labyrinth redux" + }, + { + "appid": 2926100, + "normalized_name": "power crisis" + }, + { + "appid": 2926110, + "normalized_name": "vay" + }, + { + "appid": 2926130, + "normalized_name": "bunny bunker" + }, + { + "appid": 2926170, + "normalized_name": "fuseless" + }, + { + "appid": 2926180, + "normalized_name": "city legends the witness in the rye collector's" + }, + { + "appid": 2926220, + "normalized_name": "kindvixens" + }, + { + "appid": 2926230, + "normalized_name": "kasiori" + }, + { + "appid": 2926270, + "normalized_name": "nekoto" + }, + { + "appid": 2926280, + "normalized_name": "一块地儿" + }, + { + "appid": 2926300, + "normalized_name": "sales employee takeru kun" + }, + { + "appid": 2926310, + "normalized_name": "ロタの航海貿易記" + }, + { + "appid": 2926350, + "normalized_name": "morgman" + }, + { + "appid": 2926400, + "normalized_name": "what happened to kate" + }, + { + "appid": 2926460, + "normalized_name": "space zone" + }, + { + "appid": 2926550, + "normalized_name": "poltergeist watcher" + }, + { + "appid": 2926680, + "normalized_name": "only up tiny" + }, + { + "appid": 2926700, + "normalized_name": "presidential rise" + }, + { + "appid": 2926710, + "normalized_name": "steambots" + }, + { + "appid": 2926720, + "normalized_name": "robbie 2" + }, + { + "appid": 2926880, + "normalized_name": "pyromania" + }, + { + "appid": 2926890, + "normalized_name": "8minsurvival" + }, + { + "appid": 2926900, + "normalized_name": "mavrix by matt jones" + }, + { + "appid": 2926910, + "normalized_name": "banishing you" + }, + { + "appid": 2926950, + "normalized_name": "crown jewelz" + }, + { + "appid": 2926960, + "normalized_name": "pirate escape" + }, + { + "appid": 2927000, + "normalized_name": "cybertaxi lunatic nights" + }, + { + "appid": 2927010, + "normalized_name": "android asylum" + }, + { + "appid": 2927030, + "normalized_name": "zhigu military exorcist" + }, + { + "appid": 2927050, + "normalized_name": "机械轮回 cyber loop" + }, + { + "appid": 2927070, + "normalized_name": "meowstery of a growing aurora" + }, + { + "appid": 2927080, + "normalized_name": "follow dream" + }, + { + "appid": 2927140, + "normalized_name": "the horrible inside" + }, + { + "appid": 2927170, + "normalized_name": "2d top racing" + }, + { + "appid": 2927260, + "normalized_name": "hentai misuzu" + }, + { + "appid": 2927290, + "normalized_name": "the adventures of lily & leo" + }, + { + "appid": 2927310, + "normalized_name": "legends of the eternal flame" + }, + { + "appid": 2927320, + "normalized_name": "touhou danmaku maze" + }, + { + "appid": 2927330, + "normalized_name": "mama's quesadillaria" + }, + { + "appid": 2927380, + "normalized_name": "paw pirates" + }, + { + "appid": 2927400, + "normalized_name": "final frost" + }, + { + "appid": 2927420, + "normalized_name": "moon rat" + }, + { + "appid": 2927430, + "normalized_name": "lady godiva" + }, + { + "appid": 2927440, + "normalized_name": "silenus" + }, + { + "appid": 2927470, + "normalized_name": "wander" + }, + { + "appid": 2927480, + "normalized_name": "amap" + }, + { + "appid": 2927490, + "normalized_name": "dwellink war of the nine" + }, + { + "appid": 2927510, + "normalized_name": "kilaflow" + }, + { + "appid": 2927520, + "normalized_name": "tower of nod" + }, + { + "appid": 2927530, + "normalized_name": "hyperpop" + }, + { + "appid": 2927540, + "normalized_name": "terra foliata" + }, + { + "appid": 2927550, + "normalized_name": "polda 5" + }, + { + "appid": 2927570, + "normalized_name": "unearthing invasions" + }, + { + "appid": 2927590, + "normalized_name": "project starcrash" + }, + { + "appid": 2927650, + "normalized_name": "gonzo vr" + }, + { + "appid": 2927700, + "normalized_name": "fight life vanguard" + }, + { + "appid": 2927710, + "normalized_name": "shop town dooter" + }, + { + "appid": 2927720, + "normalized_name": "pawn legends" + }, + { + "appid": 2927740, + "normalized_name": "tears of tiamat" + }, + { + "appid": 2927780, + "normalized_name": "last outpost" + }, + { + "appid": 2927800, + "normalized_name": "riser of babel" + }, + { + "appid": 2927810, + "normalized_name": "alex's journey to the grave" + }, + { + "appid": 2927820, + "normalized_name": "prism indigo dx" + }, + { + "appid": 2927830, + "normalized_name": "dunjaunt" + }, + { + "appid": 2927840, + "normalized_name": "vedmaak" + }, + { + "appid": 2927850, + "normalized_name": "jumpers' mountain" + }, + { + "appid": 2927860, + "normalized_name": "elfengard hunter slayer" + }, + { + "appid": 2927880, + "normalized_name": "h.e.n.t.a.l.k.e.r." + }, + { + "appid": 2927890, + "normalized_name": "flavors of fortune" + }, + { + "appid": 2927900, + "normalized_name": "runner" + }, + { + "appid": 2927910, + "normalized_name": "honey bee" + }, + { + "appid": 2927960, + "normalized_name": "vector space" + }, + { + "appid": 2927970, + "normalized_name": "chronal stasis" + }, + { + "appid": 2928010, + "normalized_name": "zenatria" + }, + { + "appid": 2928020, + "normalized_name": "scunners run" + }, + { + "appid": 2928040, + "normalized_name": "the legend of baboo" + }, + { + "appid": 2928050, + "normalized_name": "carpe dino seize the date" + }, + { + "appid": 2928070, + "normalized_name": "bob the block rebooted" + }, + { + "appid": 2928080, + "normalized_name": "ezerath 3d" + }, + { + "appid": 2928090, + "normalized_name": "dungeon mercenaries" + }, + { + "appid": 2928100, + "normalized_name": "oasis" + }, + { + "appid": 2928130, + "normalized_name": "梦恋依心 yixin" + }, + { + "appid": 2928140, + "normalized_name": "pig rush" + }, + { + "appid": 2928190, + "normalized_name": "there is no plan b" + }, + { + "appid": 2928200, + "normalized_name": "permanence break" + }, + { + "appid": 2928220, + "normalized_name": "triptych book i blockhead" + }, + { + "appid": 2928270, + "normalized_name": "time soul" + }, + { + "appid": 2928280, + "normalized_name": "crime simulator playgrounds" + }, + { + "appid": 2928330, + "normalized_name": "mash vp! re vision" + }, + { + "appid": 2928340, + "normalized_name": "holy clash cards" + }, + { + "appid": 2928360, + "normalized_name": "tank factory simulator" + }, + { + "appid": 2928380, + "normalized_name": "不思議な世界の観光日記" + }, + { + "appid": 2928390, + "normalized_name": "find cats2 吃货猫奇遇" + }, + { + "appid": 2928410, + "normalized_name": "under par golf architect" + }, + { + "appid": 2928430, + "normalized_name": "bullet rain" + }, + { + "appid": 2928450, + "normalized_name": "brutus maximus" + }, + { + "appid": 2928460, + "normalized_name": "gemwielders" + }, + { + "appid": 2928480, + "normalized_name": "bosscrafter" + }, + { + "appid": 2928490, + "normalized_name": "melon man" + }, + { + "appid": 2928500, + "normalized_name": "endless casual drive" + }, + { + "appid": 2928520, + "normalized_name": "recycling center simulator" + }, + { + "appid": 2928570, + "normalized_name": "néro & sci ∫ integral" + }, + { + "appid": 2928580, + "normalized_name": "felampire" + }, + { + "appid": 2928590, + "normalized_name": "gaia" + }, + { + "appid": 2928600, + "normalized_name": "demon slayer kimetsu no yaiba the hinokami chronicles 2" + }, + { + "appid": 2928610, + "normalized_name": "there's no socks" + }, + { + "appid": 2928640, + "normalized_name": "countryball world 1930" + }, + { + "appid": 2928650, + "normalized_name": "only up skibidi together" + }, + { + "appid": 2928660, + "normalized_name": "backrooms invasion" + }, + { + "appid": 2928670, + "normalized_name": "call of the grave" + }, + { + "appid": 2928690, + "normalized_name": "wandness wandcraft survivor" + }, + { + "appid": 2928700, + "normalized_name": "三日危情,独家的记忆" + }, + { + "appid": 2928740, + "normalized_name": "not alone" + }, + { + "appid": 2928750, + "normalized_name": "shout seven" + }, + { + "appid": 2928770, + "normalized_name": "carnival" + }, + { + "appid": 2928790, + "normalized_name": "alpine" + }, + { + "appid": 2928800, + "normalized_name": "weapon builder" + }, + { + "appid": 2928820, + "normalized_name": "elf world adventure 2" + }, + { + "appid": 2928830, + "normalized_name": "blenderman" + }, + { + "appid": 2928880, + "normalized_name": "alchemy mastery" + }, + { + "appid": 2928900, + "normalized_name": "dating of the future" + }, + { + "appid": 2928940, + "normalized_name": "yarn guardians" + }, + { + "appid": 2928950, + "normalized_name": "cats in heat sunshine resort" + }, + { + "appid": 2928990, + "normalized_name": "killcolor" + }, + { + "appid": 2929020, + "normalized_name": "a twisted place" + }, + { + "appid": 2929040, + "normalized_name": "fleetbreakers" + }, + { + "appid": 2929060, + "normalized_name": "wild west blast" + }, + { + "appid": 2929070, + "normalized_name": "我在异界攒功德" + }, + { + "appid": 2929080, + "normalized_name": "antiyoy" + }, + { + "appid": 2929110, + "normalized_name": "hoyo" + }, + { + "appid": 2929120, + "normalized_name": "따님은 제가 데리고 있습니다" + }, + { + "appid": 2929130, + "normalized_name": "bloodwood dungeon" + }, + { + "appid": 2929140, + "normalized_name": "ataegina act i" + }, + { + "appid": 2929170, + "normalized_name": "monopoly 2024" + }, + { + "appid": 2929180, + "normalized_name": "we need space" + }, + { + "appid": 2929200, + "normalized_name": "hentai casual jigsaw vampires" + }, + { + "appid": 2929230, + "normalized_name": "affordable healthcare" + }, + { + "appid": 2929240, + "normalized_name": "floor 10" + }, + { + "appid": 2929250, + "normalized_name": "over the hill" + }, + { + "appid": 2929260, + "normalized_name": "swarm 2" + }, + { + "appid": 2929290, + "normalized_name": "stretchmancer" + }, + { + "appid": 2929300, + "normalized_name": "questscape survival" + }, + { + "appid": 2929310, + "normalized_name": "clutter puzzle magazine vol. 16 no. 2 collector's" + }, + { + "appid": 2929330, + "normalized_name": "gunflow" + }, + { + "appid": 2929400, + "normalized_name": "museum of immersive art" + }, + { + "appid": 2929410, + "normalized_name": "relict" + }, + { + "appid": 2929500, + "normalized_name": "moongate" + }, + { + "appid": 2929510, + "normalized_name": "an agonized mind" + }, + { + "appid": 2929530, + "normalized_name": "hentai party on rooftop" + }, + { + "appid": 2929540, + "normalized_name": "dragon ruins" + }, + { + "appid": 2929550, + "normalized_name": "the netcode conflict" + }, + { + "appid": 2929570, + "normalized_name": "escape the evil" + }, + { + "appid": 2929590, + "normalized_name": "all fridges are psychotic" + }, + { + "appid": 2929660, + "normalized_name": "touhou ~ dreams of a sunflower" + }, + { + "appid": 2929670, + "normalized_name": "ardency heart of the rebellion" + }, + { + "appid": 2929680, + "normalized_name": "boats n' hoes" + }, + { + "appid": 2929730, + "normalized_name": "cat bait" + }, + { + "appid": 2929740, + "normalized_name": "my christmas present" + }, + { + "appid": 2929770, + "normalized_name": "spine & quill" + }, + { + "appid": 2929780, + "normalized_name": "funky fight'!" + }, + { + "appid": 2929790, + "normalized_name": "acroflow" + }, + { + "appid": 2929820, + "normalized_name": "iris" + }, + { + "appid": 2929830, + "normalized_name": "megan's adventure" + }, + { + "appid": 2929840, + "normalized_name": "dreams and bubbles" + }, + { + "appid": 2929880, + "normalized_name": "z factor" + }, + { + "appid": 2929890, + "normalized_name": "cyborg city" + }, + { + "appid": 2929960, + "normalized_name": "planet game" + }, + { + "appid": 2930010, + "normalized_name": "no way out" + }, + { + "appid": 2930020, + "normalized_name": "chillax" + }, + { + "appid": 2930030, + "normalized_name": "oath of the necromancer" + }, + { + "appid": 2930040, + "normalized_name": "mercapolis" + }, + { + "appid": 2930070, + "normalized_name": "balance" + }, + { + "appid": 2930080, + "normalized_name": "trading towns" + }, + { + "appid": 2930110, + "normalized_name": "crimebloc" + }, + { + "appid": 2930120, + "normalized_name": "愤怒的孙子们" + }, + { + "appid": 2930130, + "normalized_name": "rova" + }, + { + "appid": 2930140, + "normalized_name": "cat got your tongue" + }, + { + "appid": 2930150, + "normalized_name": "desolofender" + }, + { + "appid": 2930160, + "normalized_name": "nightmare kart" + }, + { + "appid": 2930170, + "normalized_name": "sheep sweep" + }, + { + "appid": 2930210, + "normalized_name": "my dog!" + }, + { + "appid": 2930240, + "normalized_name": "clean sweep" + }, + { + "appid": 2930260, + "normalized_name": "astrovoid invasion" + }, + { + "appid": 2930270, + "normalized_name": "tackle for loss" + }, + { + "appid": 2930280, + "normalized_name": "0101" + }, + { + "appid": 2930290, + "normalized_name": "love at the milky way diner demo" + }, + { + "appid": 2930320, + "normalized_name": "pharmacy simulator" + }, + { + "appid": 2930330, + "normalized_name": "vikings valhalla saga" + }, + { + "appid": 2930340, + "normalized_name": "into the mine" + }, + { + "appid": 2930380, + "normalized_name": "magic trap" + }, + { + "appid": 2930390, + "normalized_name": "falco tunes" + }, + { + "appid": 2930410, + "normalized_name": "cyber seekers conquest" + }, + { + "appid": 2930480, + "normalized_name": "chemia" + }, + { + "appid": 2930500, + "normalized_name": "dna episode 4" + }, + { + "appid": 2930550, + "normalized_name": "parts of the elephant" + }, + { + "appid": 2930570, + "normalized_name": "the adventures of emoji 4 fly high mouse" + }, + { + "appid": 2930580, + "normalized_name": "puzzlehub businesswoman hentai" + }, + { + "appid": 2930620, + "normalized_name": "killer vegetable" + }, + { + "appid": 2930640, + "normalized_name": "naals tales" + }, + { + "appid": 2930660, + "normalized_name": "bomber royale" + }, + { + "appid": 2930700, + "normalized_name": "candyhouse" + }, + { + "appid": 2930720, + "normalized_name": "birds huddled together" + }, + { + "appid": 2930770, + "normalized_name": "cratemage" + }, + { + "appid": 2930840, + "normalized_name": "forest simulator 2025" + }, + { + "appid": 2930850, + "normalized_name": "梦幻诗篇" + }, + { + "appid": 2930890, + "normalized_name": "papercut art gallery growth" + }, + { + "appid": 2930900, + "normalized_name": "帝国末日前的学院狂想" + }, + { + "appid": 2930910, + "normalized_name": "宅府诡话 mysteries of the manor" + }, + { + "appid": 2930930, + "normalized_name": "card clash chronicles" + }, + { + "appid": 2930950, + "normalized_name": "dream of things 物之梦" + }, + { + "appid": 2930990, + "normalized_name": "picscape" + }, + { + "appid": 2931010, + "normalized_name": "res extensa" + }, + { + "appid": 2931030, + "normalized_name": "bug bite tower defence" + }, + { + "appid": 2931040, + "normalized_name": "poor thief" + }, + { + "appid": 2931160, + "normalized_name": "the aching aversion" + }, + { + "appid": 2931170, + "normalized_name": "don't drop luggage! 荷物を落とすな!" + }, + { + "appid": 2931200, + "normalized_name": "蓝宝石奇遇 sapphire and girls" + }, + { + "appid": 2931220, + "normalized_name": "shroud" + }, + { + "appid": 2931260, + "normalized_name": "dungeon keeper labyrinth legacy" + }, + { + "appid": 2931270, + "normalized_name": "the fight aftermath" + }, + { + "appid": 2931280, + "normalized_name": "legends resurrected online" + }, + { + "appid": 2931300, + "normalized_name": "星际远航:寻宝" + }, + { + "appid": 2931310, + "normalized_name": "slime virus defense" + }, + { + "appid": 2931340, + "normalized_name": "blue" + }, + { + "appid": 2931370, + "normalized_name": "nomu" + }, + { + "appid": 2931390, + "normalized_name": "war room blitz" + }, + { + "appid": 2931400, + "normalized_name": "kill them all" + }, + { + "appid": 2931520, + "normalized_name": "marble mechanics" + }, + { + "appid": 2931530, + "normalized_name": "the faceless man" + }, + { + "appid": 2931560, + "normalized_name": "working on it" + }, + { + "appid": 2931600, + "normalized_name": "scrap collector" + }, + { + "appid": 2931620, + "normalized_name": "my furry protogen 3 🐾" + }, + { + "appid": 2931680, + "normalized_name": "venatrix" + }, + { + "appid": 2931690, + "normalized_name": "project werewolf" + }, + { + "appid": 2931700, + "normalized_name": "angry tiny sun" + }, + { + "appid": 2931720, + "normalized_name": "neighbor's wife" + }, + { + "appid": 2931750, + "normalized_name": "jurnal malam bestfriend" + }, + { + "appid": 2931760, + "normalized_name": "infinikin" + }, + { + "appid": 2931770, + "normalized_name": "break it!" + }, + { + "appid": 2931790, + "normalized_name": "capslock" + }, + { + "appid": 2931800, + "normalized_name": "dance junkie" + }, + { + "appid": 2931810, + "normalized_name": "ハメ堕ち人妻ナース~忘れたくても体は覚えているマゾ牝の本性~" + }, + { + "appid": 2931850, + "normalized_name": "redemption" + }, + { + "appid": 2931920, + "normalized_name": "鑽石俱樂部 皇家尊爵" + }, + { + "appid": 2931970, + "normalized_name": "强者的自我修养" + }, + { + "appid": 2932020, + "normalized_name": "spark" + }, + { + "appid": 2932040, + "normalized_name": "2.5 dimensional seduction angels on stage!" + }, + { + "appid": 2932070, + "normalized_name": "fearful injection" + }, + { + "appid": 2932110, + "normalized_name": "asbak" + }, + { + "appid": 2932140, + "normalized_name": "茶言茶语" + }, + { + "appid": 2932160, + "normalized_name": "keb up! stick jump" + }, + { + "appid": 2932170, + "normalized_name": "ヘライア祭" + }, + { + "appid": 2932180, + "normalized_name": "подвиги древних русов" + }, + { + "appid": 2932430, + "normalized_name": "level up! factory" + }, + { + "appid": 2932450, + "normalized_name": "airsoft online" + }, + { + "appid": 2932470, + "normalized_name": "partons à cheval trouver les licornes !" + }, + { + "appid": 2932480, + "normalized_name": "orbitalcrash" + }, + { + "appid": 2932490, + "normalized_name": "cyborg prototype" + }, + { + "appid": 2932510, + "normalized_name": "mamurius" + }, + { + "appid": 2932520, + "normalized_name": "黄金四目" + }, + { + "appid": 2932550, + "normalized_name": "five years old memories" + }, + { + "appid": 2932560, + "normalized_name": "sex slaves" + }, + { + "appid": 2932570, + "normalized_name": "dirty love" + }, + { + "appid": 2932590, + "normalized_name": "lost souls" + }, + { + "appid": 2932600, + "normalized_name": "float your goat" + }, + { + "appid": 2932680, + "normalized_name": "nomori" + }, + { + "appid": 2932720, + "normalized_name": "angelo and deemon 2 too hell of a quest" + }, + { + "appid": 2932740, + "normalized_name": "the well of life cannot move" + }, + { + "appid": 2932770, + "normalized_name": "eldrador creatures shadowfall" + }, + { + "appid": 2932790, + "normalized_name": "pills of dreams" + }, + { + "appid": 2932860, + "normalized_name": "world of crypts" + }, + { + "appid": 2932880, + "normalized_name": "a few days with cassandra" + }, + { + "appid": 2932900, + "normalized_name": "acre crisis" + }, + { + "appid": 2932910, + "normalized_name": "i robot" + }, + { + "appid": 2932920, + "normalized_name": "mayonaka 10 chome 迷央十丁目" + }, + { + "appid": 2932930, + "normalized_name": "100 korea cats" + }, + { + "appid": 2932940, + "normalized_name": "battleheights" + }, + { + "appid": 2932950, + "normalized_name": "天哪!是心动的感觉!" + }, + { + "appid": 2932960, + "normalized_name": "a merchant's promise" + }, + { + "appid": 2932970, + "normalized_name": "pote pote dream" + }, + { + "appid": 2932980, + "normalized_name": "cute socks" + }, + { + "appid": 2932990, + "normalized_name": "the zombie slayers" + }, + { + "appid": 2933000, + "normalized_name": "爱上变身情人" + }, + { + "appid": 2933060, + "normalized_name": "haloo" + }, + { + "appid": 2933070, + "normalized_name": "mushroomjump/蘑菇跳跳" + }, + { + "appid": 2933080, + "normalized_name": "crime boss rockay city" + }, + { + "appid": 2933090, + "normalized_name": "breach the abyss" + }, + { + "appid": 2933120, + "normalized_name": "goblin journal" + }, + { + "appid": 2933130, + "normalized_name": "the lord of the rings return to moria" + }, + { + "appid": 2933180, + "normalized_name": "女神保卫战" + }, + { + "appid": 2933200, + "normalized_name": "tukoni forest keepers" + }, + { + "appid": 2933210, + "normalized_name": "the herd" + }, + { + "appid": 2933220, + "normalized_name": "echoes of the woods" + }, + { + "appid": 2933240, + "normalized_name": "desk deck heroes" + }, + { + "appid": 2933260, + "normalized_name": "kenoma action without action" + }, + { + "appid": 2933290, + "normalized_name": "[nightmare files] clap clap" + }, + { + "appid": 2933310, + "normalized_name": "raising legion" + }, + { + "appid": 2933350, + "normalized_name": "fucus" + }, + { + "appid": 2933360, + "normalized_name": "vacation" + }, + { + "appid": 2933380, + "normalized_name": "pirates of planet b" + }, + { + "appid": 2933400, + "normalized_name": "poly dash" + }, + { + "appid": 2933420, + "normalized_name": "realmbound" + }, + { + "appid": 2933470, + "normalized_name": "atomite" + }, + { + "appid": 2933490, + "normalized_name": "nine floors" + }, + { + "appid": 2933510, + "normalized_name": "moonray battle lands" + }, + { + "appid": 2933530, + "normalized_name": "flowerrock" + }, + { + "appid": 2933570, + "normalized_name": "screech" + }, + { + "appid": 2933590, + "normalized_name": "boneless" + }, + { + "appid": 2933620, + "normalized_name": "call of duty black ops 6" + }, + { + "appid": 2933740, + "normalized_name": "tower field" + }, + { + "appid": 2933760, + "normalized_name": "spellomancer" + }, + { + "appid": 2933810, + "normalized_name": "lovebugz an anthro insect dating sim" + }, + { + "appid": 2933830, + "normalized_name": "project stellar girls" + }, + { + "appid": 2933870, + "normalized_name": "ムベンベラジオ" + }, + { + "appid": 2933910, + "normalized_name": "catboyzoom" + }, + { + "appid": 2933920, + "normalized_name": "trials of luna" + }, + { + "appid": 2933930, + "normalized_name": "tetra dungeon" + }, + { + "appid": 2933940, + "normalized_name": "hentai audition!" + }, + { + "appid": 2933950, + "normalized_name": "极简乱斗2 simple fight 2" + }, + { + "appid": 2933980, + "normalized_name": "popping bubble" + }, + { + "appid": 2933990, + "normalized_name": "cats hidden in christmas" + }, + { + "appid": 2934010, + "normalized_name": "zen rage" + }, + { + "appid": 2934070, + "normalized_name": "universe unknown" + }, + { + "appid": 2934080, + "normalized_name": "cats hidden in england" + }, + { + "appid": 2934090, + "normalized_name": "onibi" + }, + { + "appid": 2934100, + "normalized_name": "twinworld survivor" + }, + { + "appid": 2934110, + "normalized_name": "death horizon cyberfusion" + }, + { + "appid": 2934150, + "normalized_name": "史莱姆糯米 / slime nomi" + }, + { + "appid": 2934180, + "normalized_name": "doraemon dorayaki shop story" + }, + { + "appid": 2934190, + "normalized_name": "aooni" + }, + { + "appid": 2934210, + "normalized_name": "temporal cross" + }, + { + "appid": 2934230, + "normalized_name": "raid run" + }, + { + "appid": 2934290, + "normalized_name": "赛博姐妹 cyberpunk sister" + }, + { + "appid": 2934320, + "normalized_name": "where are we?" + }, + { + "appid": 2934330, + "normalized_name": "radiosol" + }, + { + "appid": 2934340, + "normalized_name": "guru guru" + }, + { + "appid": 2934400, + "normalized_name": "hexton" + }, + { + "appid": 2934470, + "normalized_name": "亚丁英雄传" + }, + { + "appid": 2934480, + "normalized_name": "zombie tower survivor" + }, + { + "appid": 2934520, + "normalized_name": "go up" + }, + { + "appid": 2934550, + "normalized_name": "箱庭小駅伝2" + }, + { + "appid": 2934610, + "normalized_name": "bober constructions" + }, + { + "appid": 2934620, + "normalized_name": "dance eden" + }, + { + "appid": 2934630, + "normalized_name": "harvest hustlers" + }, + { + "appid": 2934660, + "normalized_name": "ducking grenades" + }, + { + "appid": 2934680, + "normalized_name": "ぼったくりタクシー" + }, + { + "appid": 2934690, + "normalized_name": "植物战争:基因狂潮 plants vs animals" + }, + { + "appid": 2934840, + "normalized_name": "blood sweat and lions" + }, + { + "appid": 2934880, + "normalized_name": "hot magic sausage" + }, + { + "appid": 2934890, + "normalized_name": "the last visit 98th" + }, + { + "appid": 2934930, + "normalized_name": "among the dead" + }, + { + "appid": 2934940, + "normalized_name": "do you remember?" + }, + { + "appid": 2934990, + "normalized_name": "pocket idler fishing pond" + }, + { + "appid": 2935030, + "normalized_name": "horny kingdom cum delivery" + }, + { + "appid": 2935120, + "normalized_name": "the hell + me exorcise" + }, + { + "appid": 2935130, + "normalized_name": "dice of arcana" + }, + { + "appid": 2935160, + "normalized_name": "love undying a kiss before dawn" + }, + { + "appid": 2935230, + "normalized_name": "speakeasy last call" + }, + { + "appid": 2935250, + "normalized_name": "another realm" + }, + { + "appid": 2935260, + "normalized_name": "pluto lost its colors" + }, + { + "appid": 2935280, + "normalized_name": "zector 7" + }, + { + "appid": 2935290, + "normalized_name": "protocol five" + }, + { + "appid": 2935380, + "normalized_name": "little fire girl fights final boss / 小火女掉站终极boss!" + }, + { + "appid": 2935400, + "normalized_name": "pro basketball manager 2025" + }, + { + "appid": 2935420, + "normalized_name": "sprint star a running manager" + }, + { + "appid": 2935430, + "normalized_name": "dart the dog" + }, + { + "appid": 2935460, + "normalized_name": "descent the dark corridors" + }, + { + "appid": 2935520, + "normalized_name": "skyfort" + }, + { + "appid": 2935540, + "normalized_name": "间谍大作战sneakybeings" + }, + { + "appid": 2935560, + "normalized_name": "roller's escape" + }, + { + "appid": 2935570, + "normalized_name": "silks of mind" + }, + { + "appid": 2935610, + "normalized_name": "boxmania" + }, + { + "appid": 2935620, + "normalized_name": "ddi touring car championship" + }, + { + "appid": 2935650, + "normalized_name": "tortuga city" + }, + { + "appid": 2935660, + "normalized_name": "odyssey fight" + }, + { + "appid": 2935670, + "normalized_name": "happy zone battle royale" + }, + { + "appid": 2935690, + "normalized_name": "the watcher's curse" + }, + { + "appid": 2935700, + "normalized_name": "cowgirl's café" + }, + { + "appid": 2935710, + "normalized_name": "disinherited" + }, + { + "appid": 2935750, + "normalized_name": "glingdom" + }, + { + "appid": 2935780, + "normalized_name": "grand shooter" + }, + { + "appid": 2935820, + "normalized_name": "to hell and back" + }, + { + "appid": 2935840, + "normalized_name": "pooool" + }, + { + "appid": 2935860, + "normalized_name": "洪都" + }, + { + "appid": 2935930, + "normalized_name": "drewdler" + }, + { + "appid": 2935950, + "normalized_name": "hidden in clickville" + }, + { + "appid": 2935960, + "normalized_name": "nephelem a path of vice and virtue" + }, + { + "appid": 2935980, + "normalized_name": "白噪生存指南" + }, + { + "appid": 2936010, + "normalized_name": "eternal time love" + }, + { + "appid": 2936020, + "normalized_name": "美少女花札紀行 みちのく秘湯恋物語" + }, + { + "appid": 2936030, + "normalized_name": "botworld odyssey" + }, + { + "appid": 2936060, + "normalized_name": "电码无声" + }, + { + "appid": 2936080, + "normalized_name": "resetna" + }, + { + "appid": 2936090, + "normalized_name": "极限侦探" + }, + { + "appid": 2936130, + "normalized_name": "5 minute raid" + }, + { + "appid": 2936140, + "normalized_name": "不会要俺来拯救世界吧!" + }, + { + "appid": 2936150, + "normalized_name": "玖玖麻将 国标麻将立直麻将" + }, + { + "appid": 2936160, + "normalized_name": "pyramid game" + }, + { + "appid": 2936180, + "normalized_name": "茜色" + }, + { + "appid": 2936190, + "normalized_name": "paradise beach simulator" + }, + { + "appid": 2936200, + "normalized_name": "robo reckoning" + }, + { + "appid": 2936220, + "normalized_name": "最强祖师" + }, + { + "appid": 2936260, + "normalized_name": "lust mansion 🔞" + }, + { + "appid": 2936290, + "normalized_name": "the life and suffering of prince jerian" + }, + { + "appid": 2936310, + "normalized_name": "the walking dead no man's land" + }, + { + "appid": 2936350, + "normalized_name": "tank chess" + }, + { + "appid": 2936370, + "normalized_name": "escape from the cannibal family" + }, + { + "appid": 2936380, + "normalized_name": "miya" + }, + { + "appid": 2936410, + "normalized_name": "franchise hockey manager 11" + }, + { + "appid": 2936420, + "normalized_name": "ghost moon high noon" + }, + { + "appid": 2936430, + "normalized_name": "house fighters total mess" + }, + { + "appid": 2936440, + "normalized_name": "casual sport series hockey" + }, + { + "appid": 2936470, + "normalized_name": "a fistful of yankees" + }, + { + "appid": 2936510, + "normalized_name": "time in place" + }, + { + "appid": 2936520, + "normalized_name": "エドとノロワレシ剣" + }, + { + "appid": 2936590, + "normalized_name": "mystical riddles ghostly park collector's" + }, + { + "appid": 2936620, + "normalized_name": "lean simulator desperation" + }, + { + "appid": 2936650, + "normalized_name": "elemental empire" + }, + { + "appid": 2936700, + "normalized_name": "backpack" + }, + { + "appid": 2936720, + "normalized_name": "red nose guy the legendairy quest" + }, + { + "appid": 2936750, + "normalized_name": "loki's revenge" + }, + { + "appid": 2936760, + "normalized_name": "sleep swimmer" + }, + { + "appid": 2936790, + "normalized_name": "money farm" + }, + { + "appid": 2936820, + "normalized_name": "the suitor" + }, + { + "appid": 2936830, + "normalized_name": "ava and the half world" + }, + { + "appid": 2936920, + "normalized_name": "effective immediately" + }, + { + "appid": 2936990, + "normalized_name": "hungry mouse" + }, + { + "appid": 2937090, + "normalized_name": "hunters inc" + }, + { + "appid": 2937110, + "normalized_name": "super sized rescue squad" + }, + { + "appid": 2937130, + "normalized_name": "create & conquer" + }, + { + "appid": 2937170, + "normalized_name": "iridescent" + }, + { + "appid": 2937280, + "normalized_name": "chronoclone" + }, + { + "appid": 2937290, + "normalized_name": "master leaf blower" + }, + { + "appid": 2937310, + "normalized_name": "tidal nexus online" + }, + { + "appid": 2937330, + "normalized_name": "dosman space aliens in space!" + }, + { + "appid": 2937340, + "normalized_name": "mind the abyss" + }, + { + "appid": 2937350, + "normalized_name": "fish chips & bombs" + }, + { + "appid": 2937360, + "normalized_name": "my days with mia" + }, + { + "appid": 2937370, + "normalized_name": "into the v.o.i.d." + }, + { + "appid": 2937380, + "normalized_name": "kingdomscape" + }, + { + "appid": 2937390, + "normalized_name": "geomaze" + }, + { + "appid": 2937410, + "normalized_name": "the public domain the game" + }, + { + "appid": 2937440, + "normalized_name": "rival stars horse racing vr" + }, + { + "appid": 2937480, + "normalized_name": "dungeons of dolkara" + }, + { + "appid": 2937490, + "normalized_name": "iterations" + }, + { + "appid": 2937500, + "normalized_name": "making friends" + }, + { + "appid": 2937520, + "normalized_name": "sacred earth reverie" + }, + { + "appid": 2937550, + "normalized_name": "icosagon" + }, + { + "appid": 2937590, + "normalized_name": "wyrmhall brush and banter" + }, + { + "appid": 2937620, + "normalized_name": "the last spin" + }, + { + "appid": 2937640, + "normalized_name": "jötunn's greed" + }, + { + "appid": 2937670, + "normalized_name": "ore no yome vr" + }, + { + "appid": 2937690, + "normalized_name": "memora wanderer" + }, + { + "appid": 2937710, + "normalized_name": "clothing store simulator prologue" + }, + { + "appid": 2937730, + "normalized_name": "crast" + }, + { + "appid": 2937810, + "normalized_name": "动物炸弹棋 / animal bomb chess" + }, + { + "appid": 2937820, + "normalized_name": "星旅:前奏 wandering planet prelude" + }, + { + "appid": 2937830, + "normalized_name": "mass of greed" + }, + { + "appid": 2937840, + "normalized_name": "spinsweep" + }, + { + "appid": 2937850, + "normalized_name": "avians against aviation" + }, + { + "appid": 2937860, + "normalized_name": "pure fucking rage" + }, + { + "appid": 2937870, + "normalized_name": "mizuki and the crimson moon" + }, + { + "appid": 2937910, + "normalized_name": "don't disturb your stepmom" + }, + { + "appid": 2937920, + "normalized_name": "zompizza the last delivery" + }, + { + "appid": 2937930, + "normalized_name": "deadlands duel time rift rumble" + }, + { + "appid": 2937990, + "normalized_name": "fairy biography 6 revenge" + }, + { + "appid": 2938020, + "normalized_name": "bombergrounds classic" + }, + { + "appid": 2938050, + "normalized_name": "real car offroad racing drift" + }, + { + "appid": 2938060, + "normalized_name": "我是bug" + }, + { + "appid": 2938210, + "normalized_name": "fighting frontier 場次保衛戰" + }, + { + "appid": 2938300, + "normalized_name": "edge of endless" + }, + { + "appid": 2938330, + "normalized_name": "really simple golf" + }, + { + "appid": 2938350, + "normalized_name": "the mournmore killings" + }, + { + "appid": 2938360, + "normalized_name": "deaths circuit" + }, + { + "appid": 2938420, + "normalized_name": "realms of alterra" + }, + { + "appid": 2938430, + "normalized_name": "to be a god" + }, + { + "appid": 2938440, + "normalized_name": "paint guin 3d coloring game" + }, + { + "appid": 2938470, + "normalized_name": "wisdomgems" + }, + { + "appid": 2938480, + "normalized_name": "akunet; nameless" + }, + { + "appid": 2938510, + "normalized_name": "withered flower" + }, + { + "appid": 2938550, + "normalized_name": "two bad fellas" + }, + { + "appid": 2938590, + "normalized_name": "escape from oz" + }, + { + "appid": 2938600, + "normalized_name": "escape room collection c2 psychological horror" + }, + { + "appid": 2938610, + "normalized_name": "roberto el lagarto" + }, + { + "appid": 2938620, + "normalized_name": "21 mayble drive" + }, + { + "appid": 2938630, + "normalized_name": "radland" + }, + { + "appid": 2938640, + "normalized_name": "whispers of the abyss" + }, + { + "appid": 2938660, + "normalized_name": "gabe's mod" + }, + { + "appid": 2938730, + "normalized_name": "plati and the tower of time" + }, + { + "appid": 2938770, + "normalized_name": "hentai maid aruha" + }, + { + "appid": 2938810, + "normalized_name": "game hover" + }, + { + "appid": 2938830, + "normalized_name": "family bible quest" + }, + { + "appid": 2938840, + "normalized_name": "the trials 2" + }, + { + "appid": 2938850, + "normalized_name": "sakura hime 5" + }, + { + "appid": 2938870, + "normalized_name": "maseylia echoes of the past" + }, + { + "appid": 2938880, + "normalized_name": "diegesis of the ruined" + }, + { + "appid": 2938890, + "normalized_name": "basket brawl dx" + }, + { + "appid": 2938920, + "normalized_name": "star mountain" + }, + { + "appid": 2938970, + "normalized_name": "casino world" + }, + { + "appid": 2938980, + "normalized_name": "unfriendly friend" + }, + { + "appid": 2939070, + "normalized_name": "pickup 'n' packup!" + }, + { + "appid": 2939080, + "normalized_name": "ghost kickers!" + }, + { + "appid": 2939100, + "normalized_name": "apomo district" + }, + { + "appid": 2939180, + "normalized_name": "hentai luna" + }, + { + "appid": 2939200, + "normalized_name": "prot" + }, + { + "appid": 2939210, + "normalized_name": "humanolve a human evolution card saga" + }, + { + "appid": 2939290, + "normalized_name": "pelago" + }, + { + "appid": 2939310, + "normalized_name": "radiowave" + }, + { + "appid": 2939340, + "normalized_name": "super animal soccer" + }, + { + "appid": 2939350, + "normalized_name": "meowmentum" + }, + { + "appid": 2939360, + "normalized_name": "get tilted! )" + }, + { + "appid": 2939420, + "normalized_name": "battimals" + }, + { + "appid": 2939440, + "normalized_name": "しらたま王子の冒険 ~王子は山に登る~" + }, + { + "appid": 2939450, + "normalized_name": "inherited shadows" + }, + { + "appid": 2939460, + "normalized_name": "astro attack" + }, + { + "appid": 2939470, + "normalized_name": "clear skye thinking" + }, + { + "appid": 2939490, + "normalized_name": "アパシー 鳴神学園七不思議" + }, + { + "appid": 2939510, + "normalized_name": "under canopies" + }, + { + "appid": 2939520, + "normalized_name": "雪女传" + }, + { + "appid": 2939550, + "normalized_name": "urayama | ウラヤマ" + }, + { + "appid": 2939570, + "normalized_name": "tower knight" + }, + { + "appid": 2939580, + "normalized_name": "cube hero" + }, + { + "appid": 2939590, + "normalized_name": "カラオケjoysound for streamer" + }, + { + "appid": 2939600, + "normalized_name": "tower networking inc." + }, + { + "appid": 2939630, + "normalized_name": "cat meoir feline detective" + }, + { + "appid": 2939640, + "normalized_name": "broventure the wild co op" + }, + { + "appid": 2939670, + "normalized_name": "dust undefined" + }, + { + "appid": 2939680, + "normalized_name": "the infectious madness of doctor dekker 2" + }, + { + "appid": 2939730, + "normalized_name": "surmounter" + }, + { + "appid": 2939770, + "normalized_name": "labyrinth flowers" + }, + { + "appid": 2939780, + "normalized_name": "no contact" + }, + { + "appid": 2939790, + "normalized_name": "星之旅 lunarium" + }, + { + "appid": 2939800, + "normalized_name": "beastkin ☆ training ~the trials of a beastkin noblewoman~" + }, + { + "appid": 2939820, + "normalized_name": "bedrotting" + }, + { + "appid": 2939850, + "normalized_name": "meadow assault" + }, + { + "appid": 2939900, + "normalized_name": "chupacabra hunt" + }, + { + "appid": 2939940, + "normalized_name": "pocket robots" + }, + { + "appid": 2939950, + "normalized_name": "playground rumble" + }, + { + "appid": 2939980, + "normalized_name": "the other side tower of souls remaster" + }, + { + "appid": 2940010, + "normalized_name": "village slut transformation 💫" + }, + { + "appid": 2940020, + "normalized_name": "tomorrow is my birthday" + }, + { + "appid": 2940030, + "normalized_name": "overnight watch" + }, + { + "appid": 2940040, + "normalized_name": "trolls vs vikings reborn" + }, + { + "appid": 2940070, + "normalized_name": "parlor board 3d" + }, + { + "appid": 2940100, + "normalized_name": "king of ping pong megamix" + }, + { + "appid": 2940120, + "normalized_name": "shattered void" + }, + { + "appid": 2940160, + "normalized_name": "dreeg" + }, + { + "appid": 2940170, + "normalized_name": "eqqo" + }, + { + "appid": 2940210, + "normalized_name": "rgb rush 2" + }, + { + "appid": 2940220, + "normalized_name": "idle grid" + }, + { + "appid": 2940250, + "normalized_name": "the ark adult game" + }, + { + "appid": 2940260, + "normalized_name": "the spewnicorn" + }, + { + "appid": 2940280, + "normalized_name": "escape the floor" + }, + { + "appid": 2940310, + "normalized_name": "planetoid evasion" + }, + { + "appid": 2940340, + "normalized_name": "starship factory" + }, + { + "appid": 2940370, + "normalized_name": "any way out" + }, + { + "appid": 2940380, + "normalized_name": "within hannah's journey" + }, + { + "appid": 2940410, + "normalized_name": "duck adventures" + }, + { + "appid": 2940420, + "normalized_name": "will i survive tonight?" + }, + { + "appid": 2940440, + "normalized_name": "are you kidding me" + }, + { + "appid": 2940450, + "normalized_name": "loving life" + }, + { + "appid": 2940460, + "normalized_name": "kitty kart 64" + }, + { + "appid": 2940480, + "normalized_name": "dungeum" + }, + { + "appid": 2940490, + "normalized_name": "furry aim trainer" + }, + { + "appid": 2940500, + "normalized_name": "find brains" + }, + { + "appid": 2940560, + "normalized_name": "upstream ante" + }, + { + "appid": 2940610, + "normalized_name": "lord of darkness celebration" + }, + { + "appid": 2940620, + "normalized_name": "cards of eternity the wheel of time" + }, + { + "appid": 2940630, + "normalized_name": "onslaught on the solar frontier" + }, + { + "appid": 2940640, + "normalized_name": "phantom xcape" + }, + { + "appid": 2940650, + "normalized_name": "anomaly hotel" + }, + { + "appid": 2940660, + "normalized_name": "kirakira slimes" + }, + { + "appid": 2940700, + "normalized_name": "bagel" + }, + { + "appid": 2940740, + "normalized_name": "up! the floor is lava" + }, + { + "appid": 2940830, + "normalized_name": "streets of handbags" + }, + { + "appid": 2940860, + "normalized_name": "euclid's inferno" + }, + { + "appid": 2940870, + "normalized_name": "le dernier don" + }, + { + "appid": 2940890, + "normalized_name": "carrion fields" + }, + { + "appid": 2940930, + "normalized_name": "realm survivors" + }, + { + "appid": 2940970, + "normalized_name": "magic farm" + }, + { + "appid": 2940990, + "normalized_name": "maze keeper" + }, + { + "appid": 2941000, + "normalized_name": "虚灯のセレスティア" + }, + { + "appid": 2941010, + "normalized_name": "art dash" + }, + { + "appid": 2941080, + "normalized_name": "the 9th station of m.t..." + }, + { + "appid": 2941100, + "normalized_name": "shotball" + }, + { + "appid": 2941140, + "normalized_name": "uncensor quest neon" + }, + { + "appid": 2941150, + "normalized_name": "fire magician arcana" + }, + { + "appid": 2941170, + "normalized_name": "vague lizards" + }, + { + "appid": 2941200, + "normalized_name": "幽幽子大人食欲不振 yuyuko is suffering from lack of appetite" + }, + { + "appid": 2941230, + "normalized_name": "深層のチャロアイト" + }, + { + "appid": 2941240, + "normalized_name": "carbon reset" + }, + { + "appid": 2941260, + "normalized_name": "bear warrior" + }, + { + "appid": 2941280, + "normalized_name": "遥岸灯海" + }, + { + "appid": 2941350, + "normalized_name": "doll grabber" + }, + { + "appid": 2941360, + "normalized_name": "pie in the sky" + }, + { + "appid": 2941410, + "normalized_name": "truck" + }, + { + "appid": 2941450, + "normalized_name": "steal deal" + }, + { + "appid": 2941470, + "normalized_name": "backrooms step into the void" + }, + { + "appid": 2941480, + "normalized_name": "9shot" + }, + { + "appid": 2941490, + "normalized_name": "brucie's arcade" + }, + { + "appid": 2941500, + "normalized_name": "full bet fighting casino" + }, + { + "appid": 2941510, + "normalized_name": "meowfall" + }, + { + "appid": 2941520, + "normalized_name": "primal survival wars" + }, + { + "appid": 2941550, + "normalized_name": "svg 001 puzzles" + }, + { + "appid": 2941580, + "normalized_name": "journey of wrestling" + }, + { + "appid": 2941600, + "normalized_name": "宇宙大战" + }, + { + "appid": 2941630, + "normalized_name": "dungeons and dining tables" + }, + { + "appid": 2941640, + "normalized_name": "in a barrel" + }, + { + "appid": 2941660, + "normalized_name": "archean" + }, + { + "appid": 2941710, + "normalized_name": "project silverfish" + }, + { + "appid": 2941750, + "normalized_name": "djinn the forbidden knowledge" + }, + { + "appid": 2941810, + "normalized_name": "zombie house defense" + }, + { + "appid": 2941820, + "normalized_name": "carceri zero" + }, + { + "appid": 2941830, + "normalized_name": "tyga" + }, + { + "appid": 2941890, + "normalized_name": "a smoker's story" + }, + { + "appid": 2941900, + "normalized_name": "valor & blade" + }, + { + "appid": 2941910, + "normalized_name": "infinite survivors" + }, + { + "appid": 2941930, + "normalized_name": "shape survivor 图形幸存者" + }, + { + "appid": 2941950, + "normalized_name": "battle against the acolytes of science" + }, + { + "appid": 2941960, + "normalized_name": "depths of despair" + }, + { + "appid": 2941980, + "normalized_name": "幻想中世妓 gaudens" + }, + { + "appid": 2942000, + "normalized_name": "arcanatica" + }, + { + "appid": 2942010, + "normalized_name": "tokyo freak show" + }, + { + "appid": 2942030, + "normalized_name": "soccer 2.0" + }, + { + "appid": 2942050, + "normalized_name": "ports of call deluxe 3d 2024" + }, + { + "appid": 2942060, + "normalized_name": "莫比乌斯疑案" + }, + { + "appid": 2942070, + "normalized_name": "memory quickie" + }, + { + "appid": 2942130, + "normalized_name": "interwoven emotions" + }, + { + "appid": 2942140, + "normalized_name": "" + }, + { + "appid": 2942160, + "normalized_name": "sentry system" + }, + { + "appid": 2942170, + "normalized_name": "cat apocalypse" + }, + { + "appid": 2942180, + "normalized_name": "hentai tales seed prison" + }, + { + "appid": 2942190, + "normalized_name": "hentai class" + }, + { + "appid": 2942310, + "normalized_name": "gun runners" + }, + { + "appid": 2942330, + "normalized_name": "pretend cars racing 2" + }, + { + "appid": 2942370, + "normalized_name": "墨子星" + }, + { + "appid": 2942390, + "normalized_name": "エクササイズシミュレーターvol1 猫型ロデオマシンでハッスル大運動会" + }, + { + "appid": 2942420, + "normalized_name": "poetry pigeon" + }, + { + "appid": 2942430, + "normalized_name": "knight runner blade and bolt" + }, + { + "appid": 2942440, + "normalized_name": "system shooterz" + }, + { + "appid": 2942470, + "normalized_name": "global elite" + }, + { + "appid": 2942520, + "normalized_name": "rastignac the homeless" + }, + { + "appid": 2942620, + "normalized_name": "寻回小队 recovery team" + }, + { + "appid": 2942630, + "normalized_name": "velociblaster" + }, + { + "appid": 2942660, + "normalized_name": "fantastic frolic" + }, + { + "appid": 2942670, + "normalized_name": "ancient scroll" + }, + { + "appid": 2942680, + "normalized_name": "survivor in the forest" + }, + { + "appid": 2942690, + "normalized_name": "book of spells" + }, + { + "appid": 2942700, + "normalized_name": "seed of heroes" + }, + { + "appid": 2942710, + "normalized_name": "the glitch witch" + }, + { + "appid": 2942730, + "normalized_name": "pixel fish" + }, + { + "appid": 2942750, + "normalized_name": "findit" + }, + { + "appid": 2942780, + "normalized_name": "bloobs adventure idle" + }, + { + "appid": 2942810, + "normalized_name": "kilonova" + }, + { + "appid": 2942840, + "normalized_name": "our little friend" + }, + { + "appid": 2942930, + "normalized_name": "hentai tales another fairy tales" + }, + { + "appid": 2942950, + "normalized_name": "盒子面包坊" + }, + { + "appid": 2942980, + "normalized_name": "upupup" + }, + { + "appid": 2943010, + "normalized_name": "jump fall" + }, + { + "appid": 2943040, + "normalized_name": "メモリーガール+" + }, + { + "appid": 2943100, + "normalized_name": "better with a friend" + }, + { + "appid": 2943130, + "normalized_name": "light unseen" + }, + { + "appid": 2943150, + "normalized_name": "snø freeriding" + }, + { + "appid": 2943180, + "normalized_name": "virtual cottage 2" + }, + { + "appid": 2943190, + "normalized_name": "realm of ink prologue" + }, + { + "appid": 2943200, + "normalized_name": "dr. murph" + }, + { + "appid": 2943230, + "normalized_name": "knight lolita" + }, + { + "appid": 2943250, + "normalized_name": "impawlse" + }, + { + "appid": 2943260, + "normalized_name": "ascii tower defense" + }, + { + "appid": 2943280, + "normalized_name": "dustland delivery" + }, + { + "appid": 2943310, + "normalized_name": "诛心手术" + }, + { + "appid": 2943320, + "normalized_name": "ama's lullaby" + }, + { + "appid": 2943350, + "normalized_name": "tow truck" + }, + { + "appid": 2943380, + "normalized_name": "underground prisoner" + }, + { + "appid": 2943390, + "normalized_name": "moon thirst" + }, + { + "appid": 2943410, + "normalized_name": "clothing store simulator" + }, + { + "appid": 2943420, + "normalized_name": "amelie falls over and over again ~ an endless week in magic academy" + }, + { + "appid": 2943440, + "normalized_name": "melo's nightmare" + }, + { + "appid": 2943470, + "normalized_name": "contract cafe" + }, + { + "appid": 2943480, + "normalized_name": "night at the ca" + }, + { + "appid": 2943490, + "normalized_name": "bullet buddies" + }, + { + "appid": 2943520, + "normalized_name": "たまにわとりのパズル" + }, + { + "appid": 2943550, + "normalized_name": "forgotten skies" + }, + { + "appid": 2943570, + "normalized_name": "knowledge vr pack" + }, + { + "appid": 2943590, + "normalized_name": "before the end" + }, + { + "appid": 2943610, + "normalized_name": "astral maze escape the horror" + }, + { + "appid": 2943620, + "normalized_name": "realmcraft vr" + }, + { + "appid": 2943630, + "normalized_name": "corpo connections" + }, + { + "appid": 2943640, + "normalized_name": "симулятор пвз" + }, + { + "appid": 2943650, + "normalized_name": "fragpunk" + }, + { + "appid": 2943670, + "normalized_name": "night club simulator" + }, + { + "appid": 2943740, + "normalized_name": "prologue go wayback!" + }, + { + "appid": 2943760, + "normalized_name": "tower o ven" + }, + { + "appid": 2943780, + "normalized_name": "chamber survival" + }, + { + "appid": 2943800, + "normalized_name": "casual trucking" + }, + { + "appid": 2943850, + "normalized_name": "s project 66" + }, + { + "appid": 2943920, + "normalized_name": "timeless" + }, + { + "appid": 2943930, + "normalized_name": "bobr kurwa" + }, + { + "appid": 2943950, + "normalized_name": "scary horror" + }, + { + "appid": 2943960, + "normalized_name": "face of fear the forester" + }, + { + "appid": 2943970, + "normalized_name": "red crew 2" + }, + { + "appid": 2943990, + "normalized_name": "eulogy of an insect" + }, + { + "appid": 2944000, + "normalized_name": "arcade space survivor" + }, + { + "appid": 2944010, + "normalized_name": "roll 'n' watch" + }, + { + "appid": 2944090, + "normalized_name": "crimson snow deluxe" + }, + { + "appid": 2944180, + "normalized_name": "lewd hentai puzzle" + }, + { + "appid": 2944190, + "normalized_name": "cave in" + }, + { + "appid": 2944200, + "normalized_name": "asili forest" + }, + { + "appid": 2944220, + "normalized_name": "溯" + }, + { + "appid": 2944240, + "normalized_name": "spready" + }, + { + "appid": 2944280, + "normalized_name": "beans of production" + }, + { + "appid": 2944290, + "normalized_name": "war of zanzor iii birth of unity" + }, + { + "appid": 2944330, + "normalized_name": "survivor's gambit" + }, + { + "appid": 2944340, + "normalized_name": "unless" + }, + { + "appid": 2944350, + "normalized_name": "undead kingdom survivors" + }, + { + "appid": 2944360, + "normalized_name": "synth race" + }, + { + "appid": 2944370, + "normalized_name": "logix the missing part" + }, + { + "appid": 2944390, + "normalized_name": "digital exorcist cf1_defrag" + }, + { + "appid": 2944430, + "normalized_name": "beat battle" + }, + { + "appid": 2944440, + "normalized_name": "gyras rogue" + }, + { + "appid": 2944490, + "normalized_name": "a dungeon is you" + }, + { + "appid": 2944550, + "normalized_name": "beasties of greenhollow" + }, + { + "appid": 2944560, + "normalized_name": "a college of thirst & claws season 1" + }, + { + "appid": 2944590, + "normalized_name": "chowdown kitty" + }, + { + "appid": 2944610, + "normalized_name": "gravitee wars" + }, + { + "appid": 2944640, + "normalized_name": "dna episode 5" + }, + { + "appid": 2944670, + "normalized_name": "rapta" + }, + { + "appid": 2944680, + "normalized_name": "hamstörm" + }, + { + "appid": 2944690, + "normalized_name": "oh flock!" + }, + { + "appid": 2944750, + "normalized_name": "the strange city" + }, + { + "appid": 2944760, + "normalized_name": "我的时光:大学日记" + }, + { + "appid": 2944770, + "normalized_name": "a snail's tale" + }, + { + "appid": 2944780, + "normalized_name": "souls chess" + }, + { + "appid": 2944810, + "normalized_name": "rosemary" + }, + { + "appid": 2944830, + "normalized_name": "frustration nation" + }, + { + "appid": 2944920, + "normalized_name": "octo's balloon challenge" + }, + { + "appid": 2944940, + "normalized_name": "snail's knock out!" + }, + { + "appid": 2944950, + "normalized_name": "toad's soul hopper" + }, + { + "appid": 2944960, + "normalized_name": "pirarucu's money rush" + }, + { + "appid": 2944990, + "normalized_name": "reality patrol prologue" + }, + { + "appid": 2945100, + "normalized_name": "idle taoist mage warrior 2" + }, + { + "appid": 2945110, + "normalized_name": "skill random defense" + }, + { + "appid": 2945150, + "normalized_name": "feline forensics and the meowseum mystery" + }, + { + "appid": 2945180, + "normalized_name": "fantasy girls" + }, + { + "appid": 2945200, + "normalized_name": "cabin corpse" + }, + { + "appid": 2945210, + "normalized_name": "daddy say my name" + }, + { + "appid": 2945220, + "normalized_name": "wizard of wings escape" + }, + { + "appid": 2945240, + "normalized_name": "ker chunk!" + }, + { + "appid": 2945260, + "normalized_name": "ad agency simulator prologue" + }, + { + "appid": 2945270, + "normalized_name": "devil road run!" + }, + { + "appid": 2945340, + "normalized_name": "虎馬 / trauma" + }, + { + "appid": 2945350, + "normalized_name": "wukong's pool" + }, + { + "appid": 2945360, + "normalized_name": "basketball 2.0" + }, + { + "appid": 2945370, + "normalized_name": "darkly darkness" + }, + { + "appid": 2945380, + "normalized_name": "the throne" + }, + { + "appid": 2945390, + "normalized_name": "ace" + }, + { + "appid": 2945410, + "normalized_name": "slimelon" + }, + { + "appid": 2945420, + "normalized_name": "ceo tycoon my game studio" + }, + { + "appid": 2945510, + "normalized_name": "punch max" + }, + { + "appid": 2945720, + "normalized_name": "a stranded spark" + }, + { + "appid": 2945730, + "normalized_name": "purrgonia" + }, + { + "appid": 2945740, + "normalized_name": "stellar rising" + }, + { + "appid": 2945770, + "normalized_name": "魔法巡逻使" + }, + { + "appid": 2945790, + "normalized_name": "ザクザククラフト" + }, + { + "appid": 2945800, + "normalized_name": "because the world died" + }, + { + "appid": 2945860, + "normalized_name": "battleshots chaos" + }, + { + "appid": 2945880, + "normalized_name": "mutation" + }, + { + "appid": 2945900, + "normalized_name": "janosik 2 prologue" + }, + { + "appid": 2945940, + "normalized_name": "bloxolotl" + }, + { + "appid": 2945950, + "normalized_name": "dice 'n goblins" + }, + { + "appid": 2945970, + "normalized_name": "pacc and bomber maze blast" + }, + { + "appid": 2945980, + "normalized_name": "pawndemonium" + }, + { + "appid": 2945990, + "normalized_name": "mr. hopp's playhouse hd" + }, + { + "appid": 2946010, + "normalized_name": "find the orange narwhal" + }, + { + "appid": 2946030, + "normalized_name": "choo choose" + }, + { + "appid": 2946040, + "normalized_name": "jade guardian" + }, + { + "appid": 2946050, + "normalized_name": "darkness consumes" + }, + { + "appid": 2946060, + "normalized_name": "the pirate's quest" + }, + { + "appid": 2946070, + "normalized_name": "descent the abyss" + }, + { + "appid": 2946100, + "normalized_name": "a few days with violette" + }, + { + "appid": 2946110, + "normalized_name": "the festival isn't over" + }, + { + "appid": 2946120, + "normalized_name": "hypno" + }, + { + "appid": 2946130, + "normalized_name": "meowstro" + }, + { + "appid": 2946140, + "normalized_name": "wasteland waste disposal" + }, + { + "appid": 2946150, + "normalized_name": "skizz" + }, + { + "appid": 2946160, + "normalized_name": "legends of the internet" + }, + { + "appid": 2946170, + "normalized_name": "pitfall protocol" + }, + { + "appid": 2946190, + "normalized_name": "desperate travelers" + }, + { + "appid": 2946240, + "normalized_name": "aguablitz alien racer" + }, + { + "appid": 2946250, + "normalized_name": "xargon remake ep.2" + }, + { + "appid": 2946260, + "normalized_name": "poker dungeon joker's madness" + }, + { + "appid": 2946280, + "normalized_name": "三国战线" + }, + { + "appid": 2946310, + "normalized_name": "cthulhu valley" + }, + { + "appid": 2946320, + "normalized_name": "sofie the echoes" + }, + { + "appid": 2946340, + "normalized_name": "mod mage mike" + }, + { + "appid": 2946380, + "normalized_name": "ponder" + }, + { + "appid": 2946390, + "normalized_name": "jump the track" + }, + { + "appid": 2946420, + "normalized_name": "mass rapid" + }, + { + "appid": 2946440, + "normalized_name": "monster blitz" + }, + { + "appid": 2946450, + "normalized_name": "terra dentium" + }, + { + "appid": 2946460, + "normalized_name": "monster luv radio" + }, + { + "appid": 2946490, + "normalized_name": "garden of táozi" + }, + { + "appid": 2946530, + "normalized_name": "tornado emergency" + }, + { + "appid": 2946550, + "normalized_name": "nangol" + }, + { + "appid": 2946570, + "normalized_name": "rise of the bugs" + }, + { + "appid": 2946600, + "normalized_name": "downware" + }, + { + "appid": 2946630, + "normalized_name": "nervana" + }, + { + "appid": 2946700, + "normalized_name": "jumpy bunny" + }, + { + "appid": 2946720, + "normalized_name": "keeper's curse" + }, + { + "appid": 2946740, + "normalized_name": "corporation inc." + }, + { + "appid": 2946750, + "normalized_name": "byte" + }, + { + "appid": 2946810, + "normalized_name": "queen of the hill" + }, + { + "appid": 2946840, + "normalized_name": "overall the ball" + }, + { + "appid": 2946850, + "normalized_name": "streets of fortuna" + }, + { + "appid": 2946870, + "normalized_name": "security guard sex episode 1" + }, + { + "appid": 2946890, + "normalized_name": "the untold legends baba yaga" + }, + { + "appid": 2946900, + "normalized_name": "gum flesh" + }, + { + "appid": 2946940, + "normalized_name": "red squad reborn" + }, + { + "appid": 2946990, + "normalized_name": "gunbug" + }, + { + "appid": 2947030, + "normalized_name": "boundless lust" + }, + { + "appid": 2947040, + "normalized_name": "grit & gold" + }, + { + "appid": 2947050, + "normalized_name": "motus paintball vr" + }, + { + "appid": 2947060, + "normalized_name": "knights vault" + }, + { + "appid": 2947100, + "normalized_name": "framework found footage" + }, + { + "appid": 2947110, + "normalized_name": "core descent" + }, + { + "appid": 2947130, + "normalized_name": "doll eye chapter two" + }, + { + "appid": 2947140, + "normalized_name": "iridescent" + }, + { + "appid": 2947150, + "normalized_name": "gavis arenarium" + }, + { + "appid": 2947200, + "normalized_name": "time is life" + }, + { + "appid": 2947210, + "normalized_name": "tsugunohi pocky dog’s adventure" + }, + { + "appid": 2947220, + "normalized_name": "parfait remake" + }, + { + "appid": 2947230, + "normalized_name": "haruka ao no hanayome ni" + }, + { + "appid": 2947240, + "normalized_name": "kimi no hitomi ni hit me" + }, + { + "appid": 2947250, + "normalized_name": "select oblige" + }, + { + "appid": 2947280, + "normalized_name": "solateria" + }, + { + "appid": 2947300, + "normalized_name": "the down below" + }, + { + "appid": 2947330, + "normalized_name": "kevurah horror tale" + }, + { + "appid": 2947340, + "normalized_name": "whistling waters" + }, + { + "appid": 2947350, + "normalized_name": "doot type" + }, + { + "appid": 2947360, + "normalized_name": "山河行者" + }, + { + "appid": 2947400, + "normalized_name": "klaviactor" + }, + { + "appid": 2947410, + "normalized_name": "天黑后开始战斗 fight after dark" + }, + { + "appid": 2947430, + "normalized_name": "hdmi" + }, + { + "appid": 2947440, + "normalized_name": "silent hill f" + }, + { + "appid": 2947450, + "normalized_name": "exhibition of speed" + }, + { + "appid": 2947470, + "normalized_name": "check in" + }, + { + "appid": 2947490, + "normalized_name": "rimland(边缘之境)" + }, + { + "appid": 2947540, + "normalized_name": "military logistics simulator" + }, + { + "appid": 2947550, + "normalized_name": "《甲辰荡魔》taoist down the hill" + }, + { + "appid": 2947620, + "normalized_name": "dayou space" + }, + { + "appid": 2947630, + "normalized_name": "中国式网游:序章" + }, + { + "appid": 2947650, + "normalized_name": "choppy cuts" + }, + { + "appid": 2947690, + "normalized_name": "type galaxy" + }, + { + "appid": 2947700, + "normalized_name": "the fading of nicole wilson" + }, + { + "appid": 2947730, + "normalized_name": "3d puzzle hospital 1" + }, + { + "appid": 2947740, + "normalized_name": "3d puzzle pirates" + }, + { + "appid": 2947750, + "normalized_name": "hidden old house top down 3d" + }, + { + "appid": 2947760, + "normalized_name": "hidden vintage house top down 3d" + }, + { + "appid": 2947780, + "normalized_name": "dashlab" + }, + { + "appid": 2947800, + "normalized_name": "paranormal place" + }, + { + "appid": 2947830, + "normalized_name": "sweet honey cake" + }, + { + "appid": 2947840, + "normalized_name": "dead blue rose" + }, + { + "appid": 2947880, + "normalized_name": "dunes of valor" + }, + { + "appid": 2947940, + "normalized_name": "一統天下" + }, + { + "appid": 2947970, + "normalized_name": "the restless sheep & the lone wolf a tale of cutthroat lovers" + }, + { + "appid": 2947980, + "normalized_name": "the restless sheep & the lone wolf woolly eyes gaiden" + }, + { + "appid": 2948010, + "normalized_name": "uncharted world" + }, + { + "appid": 2948020, + "normalized_name": "1000 seconds" + }, + { + "appid": 2948030, + "normalized_name": "deep sea sweep" + }, + { + "appid": 2948040, + "normalized_name": "cuckold sex episode 1" + }, + { + "appid": 2948060, + "normalized_name": "twizzle puzzle horses" + }, + { + "appid": 2948070, + "normalized_name": "rogue station defense" + }, + { + "appid": 2948080, + "normalized_name": "深 四のの目 陰陽の巫女 (shinonome abyss the maiden exorcist)" + }, + { + "appid": 2948120, + "normalized_name": "shadows of despair" + }, + { + "appid": 2948130, + "normalized_name": "devil's deal" + }, + { + "appid": 2948170, + "normalized_name": "blockhead" + }, + { + "appid": 2948190, + "normalized_name": "world of sea battle" + }, + { + "appid": 2948220, + "normalized_name": "memorymaze" + }, + { + "appid": 2948230, + "normalized_name": "catcelona indies' special 2025" + }, + { + "appid": 2948240, + "normalized_name": "∞" + }, + { + "appid": 2948290, + "normalized_name": "space warrior" + }, + { + "appid": 2948310, + "normalized_name": "the house of da vinci vr" + }, + { + "appid": 2948330, + "normalized_name": "bauhaus bonk" + }, + { + "appid": 2948370, + "normalized_name": "dive into the survival" + }, + { + "appid": 2948380, + "normalized_name": "bachelairs" + }, + { + "appid": 2948400, + "normalized_name": "don't get caught!" + }, + { + "appid": 2948410, + "normalized_name": "talus" + }, + { + "appid": 2948420, + "normalized_name": "shopping simulator" + }, + { + "appid": 2948430, + "normalized_name": "last mile" + }, + { + "appid": 2948440, + "normalized_name": "uniwar" + }, + { + "appid": 2948460, + "normalized_name": "the echoes of mars" + }, + { + "appid": 2948470, + "normalized_name": "mordfield command" + }, + { + "appid": 2948480, + "normalized_name": "sgs imjin war" + }, + { + "appid": 2948550, + "normalized_name": "mischief castle (original nes game)" + }, + { + "appid": 2948560, + "normalized_name": "instants" + }, + { + "appid": 2948630, + "normalized_name": "the sleeping sickness" + }, + { + "appid": 2948640, + "normalized_name": "the jackbox survey scramble" + }, + { + "appid": 2948690, + "normalized_name": "enigma of forest" + }, + { + "appid": 2948720, + "normalized_name": "algomancy" + }, + { + "appid": 2948730, + "normalized_name": "the joy of creation" + }, + { + "appid": 2948750, + "normalized_name": "block pieces 3d jigsaw puzzle" + }, + { + "appid": 2948760, + "normalized_name": "hentai cute pazzle" + }, + { + "appid": 2948790, + "normalized_name": "crowded. followed." + }, + { + "appid": 2948810, + "normalized_name": "snowbound dead of winter" + }, + { + "appid": 2948870, + "normalized_name": "ant attack" + }, + { + "appid": 2948880, + "normalized_name": "days of defiance" + }, + { + "appid": 2948890, + "normalized_name": "airflow sky is the limit" + }, + { + "appid": 2948930, + "normalized_name": "jeweler simulator prologue" + }, + { + "appid": 2948940, + "normalized_name": "labyrinth hotel" + }, + { + "appid": 2948960, + "normalized_name": "mushroom selection 2" + }, + { + "appid": 2948980, + "normalized_name": "monstrosity" + }, + { + "appid": 2948990, + "normalized_name": "bruno lost in nightmares" + }, + { + "appid": 2949020, + "normalized_name": "drifto infinite touge" + }, + { + "appid": 2949050, + "normalized_name": "knightly gnomes" + }, + { + "appid": 2949060, + "normalized_name": "mr death the violent silence" + }, + { + "appid": 2949090, + "normalized_name": "battleships and carriers 2 1940 1945" + }, + { + "appid": 2949110, + "normalized_name": "click on spanners together" + }, + { + "appid": 2949120, + "normalized_name": "no vacation for an executioner" + }, + { + "appid": 2949180, + "normalized_name": "obsidian eclipse azure enforcer" + }, + { + "appid": 2949200, + "normalized_name": "belladonna" + }, + { + "appid": 2949220, + "normalized_name": "time trials" + }, + { + "appid": 2949230, + "normalized_name": "doodle harmony idle merge" + }, + { + "appid": 2949240, + "normalized_name": "homeworld vast reaches" + }, + { + "appid": 2949250, + "normalized_name": "towerful defense prologue" + }, + { + "appid": 2949270, + "normalized_name": "homecall" + }, + { + "appid": 2949310, + "normalized_name": "coco's delivery service" + }, + { + "appid": 2949320, + "normalized_name": "ratatan" + }, + { + "appid": 2949350, + "normalized_name": "k bot" + }, + { + "appid": 2949440, + "normalized_name": "与从画面中出来的我推vtuber的同居生活 想跟庶民派的吸血鬼大小姐签下契约" + }, + { + "appid": 2949450, + "normalized_name": "从画面中出来的我推vtuber的同居生活 ~梦魔可爱asmr主播是地雷系?~" + }, + { + "appid": 2949460, + "normalized_name": "ronin rush" + }, + { + "appid": 2949480, + "normalized_name": "三声三许" + }, + { + "appid": 2949490, + "normalized_name": "abandoned moons" + }, + { + "appid": 2949520, + "normalized_name": "end awakening" + }, + { + "appid": 2949560, + "normalized_name": "no life baby of the end" + }, + { + "appid": 2949580, + "normalized_name": "琉隐九绝" + }, + { + "appid": 2949600, + "normalized_name": "the last pussy survival lesson" + }, + { + "appid": 2949610, + "normalized_name": "hidden cats in japanese village" + }, + { + "appid": 2949650, + "normalized_name": "weekend in waimanalo" + }, + { + "appid": 2949660, + "normalized_name": "vincent" + }, + { + "appid": 2949720, + "normalized_name": "exorcist onmyoji" + }, + { + "appid": 2949740, + "normalized_name": "时空魔女塔莉娅" + }, + { + "appid": 2949750, + "normalized_name": "margin of the strange" + }, + { + "appid": 2949760, + "normalized_name": "罗森图鉴online" + }, + { + "appid": 2949810, + "normalized_name": "head to hell 黄泉旅客" + }, + { + "appid": 2949820, + "normalized_name": "siaty's return" + }, + { + "appid": 2949840, + "normalized_name": "shoot star" + }, + { + "appid": 2949850, + "normalized_name": "ultrakanoid" + }, + { + "appid": 2949880, + "normalized_name": "daily bread" + }, + { + "appid": 2949910, + "normalized_name": "angst a tale of survival" + }, + { + "appid": 2949930, + "normalized_name": "reprocessed" + }, + { + "appid": 2949940, + "normalized_name": "panic in store !" + }, + { + "appid": 2949960, + "normalized_name": "re connect" + }, + { + "appid": 2949980, + "normalized_name": "h girl 4" + }, + { + "appid": 2950000, + "normalized_name": "ninja stealth 5" + }, + { + "appid": 2950030, + "normalized_name": "slice of life" + }, + { + "appid": 2950040, + "normalized_name": "sobreviva ziggy!" + }, + { + "appid": 2950100, + "normalized_name": "cats of the tang dynasty" + }, + { + "appid": 2950120, + "normalized_name": "sex wishes 🔮" + }, + { + "appid": 2950150, + "normalized_name": "beyond reason" + }, + { + "appid": 2950190, + "normalized_name": "bloodlight" + }, + { + "appid": 2950200, + "normalized_name": "parliament of hell 1796" + }, + { + "appid": 2950260, + "normalized_name": "sun city" + }, + { + "appid": 2950310, + "normalized_name": "shadow hush" + }, + { + "appid": 2950320, + "normalized_name": "station zeta" + }, + { + "appid": 2950330, + "normalized_name": "journey to foundation" + }, + { + "appid": 2950340, + "normalized_name": "lego harry potter collection" + }, + { + "appid": 2950350, + "normalized_name": "i will purify you" + }, + { + "appid": 2950400, + "normalized_name": "equiverse" + }, + { + "appid": 2950410, + "normalized_name": "gear up einstein!" + }, + { + "appid": 2950450, + "normalized_name": "what is my name" + }, + { + "appid": 2950460, + "normalized_name": "cyber tunnel escape" + }, + { + "appid": 2950490, + "normalized_name": "byte survivor" + }, + { + "appid": 2950580, + "normalized_name": "ultra strikers" + }, + { + "appid": 2950590, + "normalized_name": "work beasts" + }, + { + "appid": 2950600, + "normalized_name": "train simulator" + }, + { + "appid": 2950610, + "normalized_name": "beachhead gold" + }, + { + "appid": 2950640, + "normalized_name": "reaktor" + }, + { + "appid": 2950650, + "normalized_name": "devilguard" + }, + { + "appid": 2950680, + "normalized_name": "orika rise from the crash" + }, + { + "appid": 2950710, + "normalized_name": "project dosa" + }, + { + "appid": 2950720, + "normalized_name": "medieval crafter blacksmith prologue" + }, + { + "appid": 2950750, + "normalized_name": "shallow pond" + }, + { + "appid": 2950760, + "normalized_name": "exit16 byilhan hotel" + }, + { + "appid": 2950820, + "normalized_name": "impossible island" + }, + { + "appid": 2950830, + "normalized_name": "the mossfield archives" + }, + { + "appid": 2950850, + "normalized_name": "dark daemon" + }, + { + "appid": 2950860, + "normalized_name": "shadows of the werewolf" + }, + { + "appid": 2950890, + "normalized_name": "a matching game" + }, + { + "appid": 2951110, + "normalized_name": "smile company" + }, + { + "appid": 2951170, + "normalized_name": "watching paint dry too" + }, + { + "appid": 2951210, + "normalized_name": "monsters of moldred" + }, + { + "appid": 2951330, + "normalized_name": "late night at hank's" + }, + { + "appid": 2951340, + "normalized_name": "moonless moon" + }, + { + "appid": 2951350, + "normalized_name": "do or die frontal warfare" + }, + { + "appid": 2951380, + "normalized_name": "sentinel agency" + }, + { + "appid": 2951420, + "normalized_name": "jin ping mei" + }, + { + "appid": 2951460, + "normalized_name": "ding dong dang" + }, + { + "appid": 2951500, + "normalized_name": "medved hellraiser 3 green elephant" + }, + { + "appid": 2951510, + "normalized_name": "spyrit walker" + }, + { + "appid": 2951520, + "normalized_name": "bite night" + }, + { + "appid": 2951560, + "normalized_name": "shoot or die" + }, + { + "appid": 2951580, + "normalized_name": "rhythm witch beat death" + }, + { + "appid": 2951630, + "normalized_name": "total war pharaoh dynasties" + }, + { + "appid": 2951690, + "normalized_name": "sonic rumble" + }, + { + "appid": 2951710, + "normalized_name": "品玉庵异谈 pinyuan tales" + }, + { + "appid": 2951740, + "normalized_name": "dream hotel master" + }, + { + "appid": 2951770, + "normalized_name": "leap year" + }, + { + "appid": 2951780, + "normalized_name": "until chloe the new wife falls" + }, + { + "appid": 2951790, + "normalized_name": "bmx wild run" + }, + { + "appid": 2951840, + "normalized_name": "arisen force herotest" + }, + { + "appid": 2951850, + "normalized_name": "color splash monkeys" + }, + { + "appid": 2951880, + "normalized_name": "cats hidden around the world 2" + }, + { + "appid": 2951890, + "normalized_name": "the cursed tape" + }, + { + "appid": 2951910, + "normalized_name": "project g 216" + }, + { + "appid": 2951920, + "normalized_name": "enséñame a vivir" + }, + { + "appid": 2951940, + "normalized_name": "annuit coeptis" + }, + { + "appid": 2951970, + "normalized_name": "wrestler rush" + }, + { + "appid": 2952020, + "normalized_name": "shoot to pleasure" + }, + { + "appid": 2952040, + "normalized_name": "be honest" + }, + { + "appid": 2952050, + "normalized_name": "solward" + }, + { + "appid": 2952060, + "normalized_name": "hentai violet" + }, + { + "appid": 2952070, + "normalized_name": "nanika game online" + }, + { + "appid": 2952090, + "normalized_name": "null reference exception" + }, + { + "appid": 2952110, + "normalized_name": "art jigsaw puzzles" + }, + { + "appid": 2952130, + "normalized_name": "堪景模拟器" + }, + { + "appid": 2952140, + "normalized_name": "wakusei" + }, + { + "appid": 2952180, + "normalized_name": "dragon front adventures" + }, + { + "appid": 2952190, + "normalized_name": "yvy" + }, + { + "appid": 2952200, + "normalized_name": "merge" + }, + { + "appid": 2952210, + "normalized_name": "adventure of baldero i and ii" + }, + { + "appid": 2952260, + "normalized_name": "sands of supremacy" + }, + { + "appid": 2952270, + "normalized_name": "dead on arrival" + }, + { + "appid": 2952310, + "normalized_name": "ronin's requiem" + }, + { + "appid": 2952330, + "normalized_name": "clash at the crossroads" + }, + { + "appid": 2952340, + "normalized_name": "cu" + }, + { + "appid": 2952370, + "normalized_name": "dik journey gold" + }, + { + "appid": 2952470, + "normalized_name": "rat quest" + }, + { + "appid": 2952480, + "normalized_name": "breakout" + }, + { + "appid": 2952520, + "normalized_name": "invasion phoenix" + }, + { + "appid": 2952540, + "normalized_name": "pawg runner a nsfw platformer" + }, + { + "appid": 2952550, + "normalized_name": "fun gus" + }, + { + "appid": 2952570, + "normalized_name": "my new memories the beginning" + }, + { + "appid": 2952580, + "normalized_name": "archipelago" + }, + { + "appid": 2952590, + "normalized_name": "siren's call escape velocity prologue" + }, + { + "appid": 2952600, + "normalized_name": "uphill" + }, + { + "appid": 2952680, + "normalized_name": "lunaria fantasia" + }, + { + "appid": 2952690, + "normalized_name": "witch of eclipse" + }, + { + "appid": 2952700, + "normalized_name": "pacific fire" + }, + { + "appid": 2952740, + "normalized_name": "mercenarian" + }, + { + "appid": 2952760, + "normalized_name": "witching well" + }, + { + "appid": 2952800, + "normalized_name": "ball points" + }, + { + "appid": 2952820, + "normalized_name": "mythiczon" + }, + { + "appid": 2952830, + "normalized_name": "super shaking girl!!!" + }, + { + "appid": 2952840, + "normalized_name": "neon express" + }, + { + "appid": 2952850, + "normalized_name": "aniahikoaexperiment aaa aver.aaa30042025aaa a a micro prince akihiko albert adisony & a a micro princess a" + }, + { + "appid": 2952860, + "normalized_name": "さいこねえとデスゲーム" + }, + { + "appid": 2952910, + "normalized_name": "arkhaanis one" + }, + { + "appid": 2952930, + "normalized_name": "pantless" + }, + { + "appid": 2952940, + "normalized_name": "live day 活着的日子" + }, + { + "appid": 2952950, + "normalized_name": "nutz revenge" + }, + { + "appid": 2952970, + "normalized_name": "the rule of she" + }, + { + "appid": 2952990, + "normalized_name": "rewindgirl" + }, + { + "appid": 2953030, + "normalized_name": "princess of destruction | 滅ぼし姫" + }, + { + "appid": 2953060, + "normalized_name": "furry from outer space" + }, + { + "appid": 2953070, + "normalized_name": "star child" + }, + { + "appid": 2953140, + "normalized_name": "furry fairy tales" + }, + { + "appid": 2953160, + "normalized_name": "captive you are my idol" + }, + { + "appid": 2953170, + "normalized_name": "dungeons & furry" + }, + { + "appid": 2953180, + "normalized_name": "fadin's vacation in the parallel kingdom" + }, + { + "appid": 2953200, + "normalized_name": "escape the arcana" + }, + { + "appid": 2953210, + "normalized_name": "apples and bananas" + }, + { + "appid": 2953230, + "normalized_name": "pixel paint together 🖌" + }, + { + "appid": 2953240, + "normalized_name": "组装飞船(modified spaceship)" + }, + { + "appid": 2953270, + "normalized_name": "physio" + }, + { + "appid": 2953280, + "normalized_name": "dream addict" + }, + { + "appid": 2953300, + "normalized_name": "必殺球 sportkill" + }, + { + "appid": 2953320, + "normalized_name": "one minute to close" + }, + { + "appid": 2953340, + "normalized_name": "eye of the summoner" + }, + { + "appid": 2953380, + "normalized_name": "death finder" + }, + { + "appid": 2953430, + "normalized_name": "clockwork dawn" + }, + { + "appid": 2953440, + "normalized_name": "black screen" + }, + { + "appid": 2953480, + "normalized_name": "lunar eclipse" + }, + { + "appid": 2953510, + "normalized_name": "i wanna be a game dev!" + }, + { + "appid": 2953520, + "normalized_name": "the end of history" + }, + { + "appid": 2953540, + "normalized_name": "neverseas" + }, + { + "appid": 2953560, + "normalized_name": "小松穿越记 wanna wake up?" + }, + { + "appid": 2953570, + "normalized_name": "slime survivors" + }, + { + "appid": 2953590, + "normalized_name": "clony" + }, + { + "appid": 2953600, + "normalized_name": "lifting unlimited" + }, + { + "appid": 2953610, + "normalized_name": "topworld" + }, + { + "appid": 2953620, + "normalized_name": "conquerors of fate" + }, + { + "appid": 2953640, + "normalized_name": "i commissioned some bunnies 4" + }, + { + "appid": 2953660, + "normalized_name": "amazing curves racing" + }, + { + "appid": 2953690, + "normalized_name": "turn illness into a weapon" + }, + { + "appid": 2953700, + "normalized_name": "dna season 2 | episode 1" + }, + { + "appid": 2953710, + "normalized_name": "extermination 1" + }, + { + "appid": 2953720, + "normalized_name": "i commissioned some butterflies 2" + }, + { + "appid": 2953790, + "normalized_name": "wasdjk" + }, + { + "appid": 2953810, + "normalized_name": "煤炭之路" + }, + { + "appid": 2953880, + "normalized_name": "buildworld" + }, + { + "appid": 2953930, + "normalized_name": "silent frontiers" + }, + { + "appid": 2953970, + "normalized_name": "roadlike" + }, + { + "appid": 2954000, + "normalized_name": "supersupermarket!" + }, + { + "appid": 2954010, + "normalized_name": "burn with me" + }, + { + "appid": 2954020, + "normalized_name": "odd night" + }, + { + "appid": 2954030, + "normalized_name": "sadball" + }, + { + "appid": 2954050, + "normalized_name": "ice and fire unparalleled" + }, + { + "appid": 2954070, + "normalized_name": "the hope" + }, + { + "appid": 2954080, + "normalized_name": "painted in blood" + }, + { + "appid": 2954090, + "normalized_name": "nion forge" + }, + { + "appid": 2954140, + "normalized_name": "war laboratory" + }, + { + "appid": 2954150, + "normalized_name": "stupid space shooter" + }, + { + "appid": 2954190, + "normalized_name": "oedoshigusa" + }, + { + "appid": 2954240, + "normalized_name": "tokyo drive" + }, + { + "appid": 2954260, + "normalized_name": "final spin" + }, + { + "appid": 2954300, + "normalized_name": "search all veggies" + }, + { + "appid": 2954340, + "normalized_name": "abratabia kingdom" + }, + { + "appid": 2954360, + "normalized_name": "ad shoot(アドシュー)" + }, + { + "appid": 2954380, + "normalized_name": "memory adventures in the jungle" + }, + { + "appid": 2954400, + "normalized_name": "mana logic" + }, + { + "appid": 2954420, + "normalized_name": "bunny space odyssey the countdown" + }, + { + "appid": 2954440, + "normalized_name": "berry bash" + }, + { + "appid": 2954450, + "normalized_name": "zooparasite" + }, + { + "appid": 2954460, + "normalized_name": "100 crime cats" + }, + { + "appid": 2954490, + "normalized_name": "my final cursed days" + }, + { + "appid": 2954500, + "normalized_name": "the artifact of ancients" + }, + { + "appid": 2954560, + "normalized_name": "100 forest cats" + }, + { + "appid": 2954590, + "normalized_name": "musgro farm" + }, + { + "appid": 2954640, + "normalized_name": "outbreak survivors" + }, + { + "appid": 2954660, + "normalized_name": "the wanderer" + }, + { + "appid": 2954690, + "normalized_name": "comet force" + }, + { + "appid": 2954730, + "normalized_name": "cube hero odyssey" + }, + { + "appid": 2954750, + "normalized_name": "the dreamers foresight" + }, + { + "appid": 2954780, + "normalized_name": "nightmare house the original mod" + }, + { + "appid": 2954790, + "normalized_name": "no spikes please!" + }, + { + "appid": 2954820, + "normalized_name": "轮回仙途 灵根时代" + }, + { + "appid": 2954830, + "normalized_name": "sex counselor" + }, + { + "appid": 2954840, + "normalized_name": "project evolve" + }, + { + "appid": 2954850, + "normalized_name": "她的鞋" + }, + { + "appid": 2954860, + "normalized_name": "senseless" + }, + { + "appid": 2954880, + "normalized_name": "vrな彼女" + }, + { + "appid": 2954890, + "normalized_name": "lady death demonicron" + }, + { + "appid": 2954920, + "normalized_name": "zero sum heart" + }, + { + "appid": 2954930, + "normalized_name": "异时异所" + }, + { + "appid": 2954940, + "normalized_name": "暗影之心" + }, + { + "appid": 2955010, + "normalized_name": "ジグソーワールド" + }, + { + "appid": 2955020, + "normalized_name": "touhou picross ~ nazrin's puzzles" + }, + { + "appid": 2955040, + "normalized_name": "neurose neurones" + }, + { + "appid": 2955050, + "normalized_name": "cursed places hotel floor 13" + }, + { + "appid": 2955060, + "normalized_name": "off air" + }, + { + "appid": 2955070, + "normalized_name": "love letter" + }, + { + "appid": 2955100, + "normalized_name": "one room nightmare" + }, + { + "appid": 2955120, + "normalized_name": "card summoner" + }, + { + "appid": 2955150, + "normalized_name": "deals with witch" + }, + { + "appid": 2955180, + "normalized_name": "elfie" + }, + { + "appid": 2955200, + "normalized_name": "hotel overloop" + }, + { + "appid": 2955210, + "normalized_name": "collapse" + }, + { + "appid": 2955220, + "normalized_name": "卡牌迷境(card quest)" + }, + { + "appid": 2955270, + "normalized_name": "逃离新手村" + }, + { + "appid": 2955290, + "normalized_name": "the adventures across the realm book one" + }, + { + "appid": 2955300, + "normalized_name": "idol party" + }, + { + "appid": 2955310, + "normalized_name": "unity chan desktop companion" + }, + { + "appid": 2955320, + "normalized_name": "horse runner dx" + }, + { + "appid": 2955340, + "normalized_name": "バズってvtuber ゲームでいいから万バズしたい!(buzztte vtuber i want to go viral even if it's just in a game!)" + }, + { + "appid": 2955350, + "normalized_name": "grandma's secret" + }, + { + "appid": 2955370, + "normalized_name": "漫威终极逆转" + }, + { + "appid": 2955410, + "normalized_name": "hell miners" + }, + { + "appid": 2955420, + "normalized_name": "nocturnal relics" + }, + { + "appid": 2955460, + "normalized_name": "wanderer's shade" + }, + { + "appid": 2955470, + "normalized_name": "pixel quest; lost relics" + }, + { + "appid": 2955500, + "normalized_name": "space horde attack" + }, + { + "appid": 2955590, + "normalized_name": "creepy shift roadside diner" + }, + { + "appid": 2955600, + "normalized_name": "paranoid" + }, + { + "appid": 2955630, + "normalized_name": "catjinni survivors" + }, + { + "appid": 2955650, + "normalized_name": "hentai bikini" + }, + { + "appid": 2955700, + "normalized_name": "abyss looters" + }, + { + "appid": 2955710, + "normalized_name": "contingency plan" + }, + { + "appid": 2955720, + "normalized_name": "panthalassa" + }, + { + "appid": 2955740, + "normalized_name": "shards of epoch past" + }, + { + "appid": 2955820, + "normalized_name": "sex camera action! 🔞" + }, + { + "appid": 2955840, + "normalized_name": "kitchen wars" + }, + { + "appid": 2955850, + "normalized_name": "for hell's sake" + }, + { + "appid": 2955960, + "normalized_name": "brickorium" + }, + { + "appid": 2956040, + "normalized_name": "pvkk planetenverteidigungskanonenkommandant" + }, + { + "appid": 2956130, + "normalized_name": "the flame's heir" + }, + { + "appid": 2956150, + "normalized_name": "the last vampire hunter" + }, + { + "appid": 2956170, + "normalized_name": "fall from eden" + }, + { + "appid": 2956190, + "normalized_name": "dragon daughter" + }, + { + "appid": 2956200, + "normalized_name": "brain tester mind trick quiz 2" + }, + { + "appid": 2956210, + "normalized_name": "untold story" + }, + { + "appid": 2956280, + "normalized_name": "花恋月依" + }, + { + "appid": 2956310, + "normalized_name": "cosplay cumdump doing it doujin style" + }, + { + "appid": 2956330, + "normalized_name": "gender neutral chess" + }, + { + "appid": 2956360, + "normalized_name": "winch it out" + }, + { + "appid": 2956390, + "normalized_name": "the necromancer's pact" + }, + { + "appid": 2956400, + "normalized_name": "break games" + }, + { + "appid": 2956410, + "normalized_name": "game builder tycoon prologue" + }, + { + "appid": 2956420, + "normalized_name": "it happened at night" + }, + { + "appid": 2956440, + "normalized_name": "atomic exile" + }, + { + "appid": 2956450, + "normalized_name": "zsg" + }, + { + "appid": 2956470, + "normalized_name": "on island" + }, + { + "appid": 2956480, + "normalized_name": "benny the blob" + }, + { + "appid": 2956500, + "normalized_name": "magic city detective the carnival begins collector's" + }, + { + "appid": 2956510, + "normalized_name": "underworld explorers" + }, + { + "appid": 2956550, + "normalized_name": "loco limbo" + }, + { + "appid": 2956580, + "normalized_name": "vacation adventures park ranger 16 collectors" + }, + { + "appid": 2956590, + "normalized_name": "sonsgorod the archipelago" + }, + { + "appid": 2956600, + "normalized_name": "perv's hotel lust from sweden" + }, + { + "appid": 2956640, + "normalized_name": "game with friends" + }, + { + "appid": 2956670, + "normalized_name": "project ether" + }, + { + "appid": 2956690, + "normalized_name": "carambola" + }, + { + "appid": 2956700, + "normalized_name": "captain mcspacebiff" + }, + { + "appid": 2956720, + "normalized_name": "star chef simulator" + }, + { + "appid": 2956730, + "normalized_name": "desert kingdoms 2" + }, + { + "appid": 2956760, + "normalized_name": "birds adventure" + }, + { + "appid": 2956780, + "normalized_name": "an archers fate" + }, + { + "appid": 2956790, + "normalized_name": "rise & fall online digital" + }, + { + "appid": 2956800, + "normalized_name": "samurai elemental" + }, + { + "appid": 2956820, + "normalized_name": "近畿霊務局 kinki spiritual affairs bureau" + }, + { + "appid": 2956840, + "normalized_name": "i commissioned some bunnies 5" + }, + { + "appid": 2956850, + "normalized_name": "i commissioned some bunnies 6" + }, + { + "appid": 2956870, + "normalized_name": "i commissioned some bunnies 7" + }, + { + "appid": 2956970, + "normalized_name": "i commissioned some bunnies 8" + }, + { + "appid": 2957010, + "normalized_name": "beneath the cherry blossom tree" + }, + { + "appid": 2957020, + "normalized_name": "tokyo mafia simulator prologue" + }, + { + "appid": 2957080, + "normalized_name": "wild realms" + }, + { + "appid": 2957100, + "normalized_name": "your sister" + }, + { + "appid": 2957110, + "normalized_name": "fantasy online 2" + }, + { + "appid": 2957130, + "normalized_name": "bugscraper" + }, + { + "appid": 2957140, + "normalized_name": "somnium" + }, + { + "appid": 2957160, + "normalized_name": "private mining company" + }, + { + "appid": 2957200, + "normalized_name": "pyradice" + }, + { + "appid": 2957270, + "normalized_name": "three bulky bears" + }, + { + "appid": 2957280, + "normalized_name": "immunity wars" + }, + { + "appid": 2957320, + "normalized_name": "morro acima go green" + }, + { + "appid": 2957330, + "normalized_name": "silent mourning" + }, + { + "appid": 2957350, + "normalized_name": "cyberpunk inquisitor" + }, + { + "appid": 2957360, + "normalized_name": "nightmare operator" + }, + { + "appid": 2957370, + "normalized_name": "escaping dandyland" + }, + { + "appid": 2957390, + "normalized_name": "project v origins" + }, + { + "appid": 2957410, + "normalized_name": "displacemen" + }, + { + "appid": 2957420, + "normalized_name": "the fear of the past" + }, + { + "appid": 2957430, + "normalized_name": "a letter from mom" + }, + { + "appid": 2957440, + "normalized_name": "tank hunter" + }, + { + "appid": 2957550, + "normalized_name": "geriatric tactics" + }, + { + "appid": 2957560, + "normalized_name": "java journey" + }, + { + "appid": 2957570, + "normalized_name": "d zone" + }, + { + "appid": 2957590, + "normalized_name": "victorious" + }, + { + "appid": 2957600, + "normalized_name": "rules of war" + }, + { + "appid": 2957620, + "normalized_name": "mistworld the after 1" + }, + { + "appid": 2957670, + "normalized_name": "愿 紅衣小女孩" + }, + { + "appid": 2957690, + "normalized_name": "the great escape" + }, + { + "appid": 2957700, + "normalized_name": "sensei! i like you so much!" + }, + { + "appid": 2957710, + "normalized_name": "黑丝袜:鲁智深" + }, + { + "appid": 2957720, + "normalized_name": "neon inferno" + }, + { + "appid": 2957730, + "normalized_name": "离谱的炼金术" + }, + { + "appid": 2957760, + "normalized_name": "地狱火 悟空 hellfire wukong" + }, + { + "appid": 2957780, + "normalized_name": "veil runners" + }, + { + "appid": 2957800, + "normalized_name": "proximate" + }, + { + "appid": 2957820, + "normalized_name": "paw party" + }, + { + "appid": 2957830, + "normalized_name": "kajun's lucid room" + }, + { + "appid": 2957860, + "normalized_name": "lots of things collector's" + }, + { + "appid": 2957870, + "normalized_name": "urok" + }, + { + "appid": 2957880, + "normalized_name": "witch potions craft of lust" + }, + { + "appid": 2957890, + "normalized_name": "undefined game pack" + }, + { + "appid": 2957940, + "normalized_name": "jurig escape" + }, + { + "appid": 2957950, + "normalized_name": "whale singer rise of the leviathan" + }, + { + "appid": 2957970, + "normalized_name": "somnifuge" + }, + { + "appid": 2957980, + "normalized_name": "恋色ぱれっと love palette" + }, + { + "appid": 2957990, + "normalized_name": "ハーレムなんか望んでない! undesired harem" + }, + { + "appid": 2958060, + "normalized_name": "before the death" + }, + { + "appid": 2958070, + "normalized_name": "vrsus dead" + }, + { + "appid": 2958110, + "normalized_name": "deadly descent" + }, + { + "appid": 2958120, + "normalized_name": "prison boy the adventure" + }, + { + "appid": 2958140, + "normalized_name": "net.crawl" + }, + { + "appid": 2958170, + "normalized_name": "switch range" + }, + { + "appid": 2958210, + "normalized_name": "connie and the essence of chaos" + }, + { + "appid": 2958240, + "normalized_name": "hold my torch" + }, + { + "appid": 2958250, + "normalized_name": "lil'johnny watermelon smash" + }, + { + "appid": 2958300, + "normalized_name": "fantasmigon" + }, + { + "appid": 2958380, + "normalized_name": "deckfort alchemist" + }, + { + "appid": 2958410, + "normalized_name": "rise of the newborns" + }, + { + "appid": 2958420, + "normalized_name": "troma presents poultrygeist" + }, + { + "appid": 2958430, + "normalized_name": "fightgirl" + }, + { + "appid": 2958450, + "normalized_name": "rubber sharks" + }, + { + "appid": 2958550, + "normalized_name": "deeper" + }, + { + "appid": 2958570, + "normalized_name": "guards ii chaos in hell" + }, + { + "appid": 2958580, + "normalized_name": "guards ii prologue" + }, + { + "appid": 2958590, + "normalized_name": "joe's life" + }, + { + "appid": 2958610, + "normalized_name": "aetherdale" + }, + { + "appid": 2958630, + "normalized_name": "echo in capistrano" + }, + { + "appid": 2958640, + "normalized_name": "ninjabun" + }, + { + "appid": 2958670, + "normalized_name": "nunna" + }, + { + "appid": 2958680, + "normalized_name": "undead paradise" + }, + { + "appid": 2958690, + "normalized_name": "clutch master" + }, + { + "appid": 2958700, + "normalized_name": "相亲攻略之宝贝别再选我了" + }, + { + "appid": 2958710, + "normalized_name": "verse vr" + }, + { + "appid": 2958730, + "normalized_name": "project rope tool" + }, + { + "appid": 2958770, + "normalized_name": "mec me loffa" + }, + { + "appid": 2958780, + "normalized_name": "faint call" + }, + { + "appid": 2958790, + "normalized_name": "cyclopean the great abyss" + }, + { + "appid": 2958820, + "normalized_name": "whatnever" + }, + { + "appid": 2958830, + "normalized_name": "blink and die replay" + }, + { + "appid": 2958870, + "normalized_name": "lukewarm massacre the spirit of light" + }, + { + "appid": 2958890, + "normalized_name": "boardwalk builders" + }, + { + "appid": 2958900, + "normalized_name": "ascension the immortal alchemist" + }, + { + "appid": 2958910, + "normalized_name": "darwin" + }, + { + "appid": 2958920, + "normalized_name": "amberforge" + }, + { + "appid": 2958950, + "normalized_name": "elemental showdown" + }, + { + "appid": 2958960, + "normalized_name": "stumble and fall" + }, + { + "appid": 2958970, + "normalized_name": "the thing" + }, + { + "appid": 2959000, + "normalized_name": "shining hero" + }, + { + "appid": 2959010, + "normalized_name": "lovish" + }, + { + "appid": 2959110, + "normalized_name": "tiny pixels vol. 1 ninpo blast" + }, + { + "appid": 2959120, + "normalized_name": "公主×观众" + }, + { + "appid": 2959130, + "normalized_name": "ghost shooter" + }, + { + "appid": 2959140, + "normalized_name": "末日:未知征途" + }, + { + "appid": 2959150, + "normalized_name": "necromancia" + }, + { + "appid": 2959160, + "normalized_name": "cyclics" + }, + { + "appid": 2959180, + "normalized_name": "marudachi" + }, + { + "appid": 2959220, + "normalized_name": "勇跳高峰" + }, + { + "appid": 2959230, + "normalized_name": "orient on the murder express" + }, + { + "appid": 2959310, + "normalized_name": "warlords of the deck" + }, + { + "appid": 2959340, + "normalized_name": "undercover animals" + }, + { + "appid": 2959380, + "normalized_name": "enter the nemesis blood portal" + }, + { + "appid": 2959410, + "normalized_name": "gorilla adventure" + }, + { + "appid": 2959420, + "normalized_name": "the dragonspire" + }, + { + "appid": 2959480, + "normalized_name": "beautiful lands" + }, + { + "appid": 2959520, + "normalized_name": "horrible dream" + }, + { + "appid": 2959560, + "normalized_name": "echoes afterfall" + }, + { + "appid": 2959610, + "normalized_name": "cabin crew life simulator" + }, + { + "appid": 2959640, + "normalized_name": "終わりの森 forest of soul slave" + }, + { + "appid": 2959650, + "normalized_name": "the brave of boner and the demon of halphas" + }, + { + "appid": 2959670, + "normalized_name": "做你的猫" + }, + { + "appid": 2959710, + "normalized_name": "astral hound vr" + }, + { + "appid": 2959740, + "normalized_name": "catamyst" + }, + { + "appid": 2959760, + "normalized_name": "crazy world of caleb" + }, + { + "appid": 2959770, + "normalized_name": "duck side of the moon" + }, + { + "appid": 2959820, + "normalized_name": "the cursed land" + }, + { + "appid": 2959830, + "normalized_name": "sausage legend arena" + }, + { + "appid": 2959890, + "normalized_name": "echoes of the town" + }, + { + "appid": 2960010, + "normalized_name": "mind of war" + }, + { + "appid": 2960030, + "normalized_name": "mercenary tactics" + }, + { + "appid": 2960070, + "normalized_name": "the limb" + }, + { + "appid": 2960080, + "normalized_name": "maze endless" + }, + { + "appid": 2960090, + "normalized_name": "squared adventure" + }, + { + "appid": 2960110, + "normalized_name": "ymn7" + }, + { + "appid": 2960120, + "normalized_name": "高度標高林間臨海臨界活動限界公園" + }, + { + "appid": 2960150, + "normalized_name": "heart beat strikers" + }, + { + "appid": 2960170, + "normalized_name": "eatfish" + }, + { + "appid": 2960220, + "normalized_name": "prop haunt" + }, + { + "appid": 2960250, + "normalized_name": "tempus triad" + }, + { + "appid": 2960280, + "normalized_name": "meine tierarztpraxis im zoo (my life zoo vet)" + }, + { + "appid": 2960300, + "normalized_name": "mars mirage" + }, + { + "appid": 2960320, + "normalized_name": "stairway" + }, + { + "appid": 2960330, + "normalized_name": "under the concrete wave" + }, + { + "appid": 2960360, + "normalized_name": "hotel 77" + }, + { + "appid": 2960390, + "normalized_name": "nutty dungeons" + }, + { + "appid": 2960400, + "normalized_name": "star ronin" + }, + { + "appid": 2960430, + "normalized_name": "电竞教父:传奇将至" + }, + { + "appid": 2960440, + "normalized_name": "pozionista" + }, + { + "appid": 2960460, + "normalized_name": "spaceflight simulator 2" + }, + { + "appid": 2960480, + "normalized_name": "itsy" + }, + { + "appid": 2960490, + "normalized_name": "royal revolt warriors" + }, + { + "appid": 2960500, + "normalized_name": "sparedevil" + }, + { + "appid": 2960540, + "normalized_name": "peakpals" + }, + { + "appid": 2960560, + "normalized_name": "union of gnomes prologue" + }, + { + "appid": 2960590, + "normalized_name": "unveiling the unknown" + }, + { + "appid": 2960610, + "normalized_name": "sparky hills of death" + }, + { + "appid": 2960620, + "normalized_name": "exploración casa barroso" + }, + { + "appid": 2960650, + "normalized_name": "tankbot battle" + }, + { + "appid": 2960670, + "normalized_name": "3 chicas in tech" + }, + { + "appid": 2960700, + "normalized_name": "beyond the chiron gate" + }, + { + "appid": 2960710, + "normalized_name": "bdsm sex episode 5" + }, + { + "appid": 2960750, + "normalized_name": "skylark 64" + }, + { + "appid": 2960760, + "normalized_name": "greed forest" + }, + { + "appid": 2960770, + "normalized_name": "the anomaly project" + }, + { + "appid": 2960800, + "normalized_name": "summer haze/glory days" + }, + { + "appid": 2960820, + "normalized_name": "across the distant skies" + }, + { + "appid": 2960830, + "normalized_name": "wobbler" + }, + { + "appid": 2960850, + "normalized_name": "incel simulator" + }, + { + "appid": 2960870, + "normalized_name": "war sniper" + }, + { + "appid": 2960890, + "normalized_name": "there's always a madman do your worst" + }, + { + "appid": 2960950, + "normalized_name": "choose cthulhu files the call of cthulhu" + }, + { + "appid": 2960980, + "normalized_name": "shadows of eldham" + }, + { + "appid": 2961000, + "normalized_name": "trilingual" + }, + { + "appid": 2961060, + "normalized_name": "brutal bible bloodbaths" + }, + { + "appid": 2961100, + "normalized_name": "hour of the witch" + }, + { + "appid": 2961110, + "normalized_name": "sushi race" + }, + { + "appid": 2961120, + "normalized_name": "shop crush" + }, + { + "appid": 2961210, + "normalized_name": "blinding lite" + }, + { + "appid": 2961230, + "normalized_name": "goblin kart rescue" + }, + { + "appid": 2961240, + "normalized_name": "sweet home" + }, + { + "appid": 2961300, + "normalized_name": "disaster slayer" + }, + { + "appid": 2961310, + "normalized_name": "erocism" + }, + { + "appid": 2961320, + "normalized_name": "angry boy" + }, + { + "appid": 2961330, + "normalized_name": "secret toy" + }, + { + "appid": 2961340, + "normalized_name": "secret psychology" + }, + { + "appid": 2961460, + "normalized_name": "神树残响(echoes of the divine tree)" + }, + { + "appid": 2961480, + "normalized_name": "duelite" + }, + { + "appid": 2961490, + "normalized_name": "fear virtual" + }, + { + "appid": 2961510, + "normalized_name": "小小英雄生存" + }, + { + "appid": 2961530, + "normalized_name": "fears to fathom woodbury getaway" + }, + { + "appid": 2961650, + "normalized_name": "gangbanged by orcs and goblins!" + }, + { + "appid": 2961680, + "normalized_name": "lustrunner 3069 tokyo crisis" + }, + { + "appid": 2961710, + "normalized_name": "easy rts" + }, + { + "appid": 2961830, + "normalized_name": "shadow leap" + }, + { + "appid": 2961840, + "normalized_name": "shore doodle –渚のお絵描き–" + }, + { + "appid": 2961860, + "normalized_name": "honcho" + }, + { + "appid": 2961870, + "normalized_name": "submergent" + }, + { + "appid": 2961880, + "normalized_name": "grocery store simulator" + }, + { + "appid": 2961920, + "normalized_name": "androsystem idle" + }, + { + "appid": 2961970, + "normalized_name": "mimic" + }, + { + "appid": 2961990, + "normalized_name": "dünnes eis das spiel zum song" + }, + { + "appid": 2962000, + "normalized_name": "the end of you" + }, + { + "appid": 2962010, + "normalized_name": "tame it too!" + }, + { + "appid": 2962020, + "normalized_name": "crying crystal" + }, + { + "appid": 2962030, + "normalized_name": "未来之战" + }, + { + "appid": 2962070, + "normalized_name": "aquelarre" + }, + { + "appid": 2962090, + "normalized_name": "quadulo" + }, + { + "appid": 2962150, + "normalized_name": "happy sawland" + }, + { + "appid": 2962170, + "normalized_name": "beyond tenmei" + }, + { + "appid": 2962220, + "normalized_name": "little fish swims on 小鱼游呀游" + }, + { + "appid": 2962240, + "normalized_name": "galactic tavern" + }, + { + "appid": 2962250, + "normalized_name": "zig zag jump fantasy challenge" + }, + { + "appid": 2962260, + "normalized_name": "recursive riftfall" + }, + { + "appid": 2962270, + "normalized_name": "celestial contact" + }, + { + "appid": 2962280, + "normalized_name": "space bross" + }, + { + "appid": 2962290, + "normalized_name": "chained runes" + }, + { + "appid": 2962300, + "normalized_name": "royal quest online" + }, + { + "appid": 2962330, + "normalized_name": "kitty collapse" + }, + { + "appid": 2962340, + "normalized_name": "department of collections" + }, + { + "appid": 2962390, + "normalized_name": "prison fights simulator" + }, + { + "appid": 2962420, + "normalized_name": "delivery hot" + }, + { + "appid": 2962480, + "normalized_name": "isekai sex boutique" + }, + { + "appid": 2962550, + "normalized_name": "glitch world" + }, + { + "appid": 2962560, + "normalized_name": "cape fathom" + }, + { + "appid": 2962570, + "normalized_name": "tiny cats" + }, + { + "appid": 2962620, + "normalized_name": "sift heads legendary pack" + }, + { + "appid": 2962650, + "normalized_name": "banana cowboy" + }, + { + "appid": 2962680, + "normalized_name": "far horizon" + }, + { + "appid": 2962710, + "normalized_name": "the midnight town stories adam's forgotten secrets" + }, + { + "appid": 2962720, + "normalized_name": "별의 유랑" + }, + { + "appid": 2962750, + "normalized_name": "ghostbane prologue" + }, + { + "appid": 2962770, + "normalized_name": "kartmania silver" + }, + { + "appid": 2962810, + "normalized_name": "galaxy idle clicker" + }, + { + "appid": 2962840, + "normalized_name": "codename god" + }, + { + "appid": 2962940, + "normalized_name": "rusty flesh" + }, + { + "appid": 2962990, + "normalized_name": "you are dead" + }, + { + "appid": 2963070, + "normalized_name": "moonman adventures" + }, + { + "appid": 2963080, + "normalized_name": "slice adventure" + }, + { + "appid": 2963100, + "normalized_name": "erma (early mammal)" + }, + { + "appid": 2963130, + "normalized_name": "manludo" + }, + { + "appid": 2963160, + "normalized_name": "madam of malice" + }, + { + "appid": 2963210, + "normalized_name": "antisuns" + }, + { + "appid": 2963220, + "normalized_name": "ruins of endoth" + }, + { + "appid": 2963230, + "normalized_name": "joyville 2" + }, + { + "appid": 2963240, + "normalized_name": "generation exile" + }, + { + "appid": 2963260, + "normalized_name": "madame fifi's bakery" + }, + { + "appid": 2963280, + "normalized_name": "sapo 3d" + }, + { + "appid": 2963310, + "normalized_name": "ready set plumb!" + }, + { + "appid": 2963320, + "normalized_name": "core awaken rurumu's will" + }, + { + "appid": 2963350, + "normalized_name": "streamers cleaning simulator" + }, + { + "appid": 2963360, + "normalized_name": "chicken game" + }, + { + "appid": 2963370, + "normalized_name": "marble madness" + }, + { + "appid": 2963510, + "normalized_name": "in search of you" + }, + { + "appid": 2963540, + "normalized_name": "idle waters" + }, + { + "appid": 2963550, + "normalized_name": "命运游戏:逆时寻凶" + }, + { + "appid": 2963560, + "normalized_name": "anders the dark coast" + }, + { + "appid": 2963570, + "normalized_name": "industring" + }, + { + "appid": 2963590, + "normalized_name": "tank operations diary of the war" + }, + { + "appid": 2963600, + "normalized_name": "card cultivation" + }, + { + "appid": 2963640, + "normalized_name": "eldercraft mountaineers" + }, + { + "appid": 2963650, + "normalized_name": "echo defy death" + }, + { + "appid": 2963680, + "normalized_name": "arishia tale" + }, + { + "appid": 2963720, + "normalized_name": "the memory thieves" + }, + { + "appid": 2963730, + "normalized_name": "fluffquake fury" + }, + { + "appid": 2963740, + "normalized_name": "below level 地下" + }, + { + "appid": 2963800, + "normalized_name": "drainsim" + }, + { + "appid": 2963830, + "normalized_name": "skel dungeon heroes must die!" + }, + { + "appid": 2963870, + "normalized_name": "metal slug awakening" + }, + { + "appid": 2963880, + "normalized_name": "murky divers" + }, + { + "appid": 2963890, + "normalized_name": "expelled!" + }, + { + "appid": 2963930, + "normalized_name": "the shepherd black sheep" + }, + { + "appid": 2963970, + "normalized_name": "sebtract" + }, + { + "appid": 2963990, + "normalized_name": "anna the magic of words" + }, + { + "appid": 2964000, + "normalized_name": "hush hush high" + }, + { + "appid": 2964030, + "normalized_name": "random core defense" + }, + { + "appid": 2964040, + "normalized_name": "2351 apocalypsis" + }, + { + "appid": 2964060, + "normalized_name": "welcome to the ungdung cafe" + }, + { + "appid": 2964070, + "normalized_name": "escape peng" + }, + { + "appid": 2964090, + "normalized_name": "world of warships legends" + }, + { + "appid": 2964180, + "normalized_name": "zonzon" + }, + { + "appid": 2964190, + "normalized_name": "escape from warehouse" + }, + { + "appid": 2964210, + "normalized_name": "hamlet in a pond" + }, + { + "appid": 2964220, + "normalized_name": "whispering age" + }, + { + "appid": 2964230, + "normalized_name": "feel the fear around" + }, + { + "appid": 2964260, + "normalized_name": "fantasy world simulator" + }, + { + "appid": 2964280, + "normalized_name": "penguin helper" + }, + { + "appid": 2964300, + "normalized_name": "city bus simulator 2024" + }, + { + "appid": 2964310, + "normalized_name": "the final keeper" + }, + { + "appid": 2964330, + "normalized_name": "suika watermelon fruits" + }, + { + "appid": 2964370, + "normalized_name": "orion71 shooter mayhem arena" + }, + { + "appid": 2964390, + "normalized_name": "colony part i the moon castle" + }, + { + "appid": 2964400, + "normalized_name": "grid ranger" + }, + { + "appid": 2964410, + "normalized_name": "nether heroes" + }, + { + "appid": 2964430, + "normalized_name": "forces of ether" + }, + { + "appid": 2964440, + "normalized_name": "yapori minigames" + }, + { + "appid": 2964470, + "normalized_name": "spellbound a detective´s tale" + }, + { + "appid": 2964480, + "normalized_name": "cats war" + }, + { + "appid": 2964520, + "normalized_name": "deckadent" + }, + { + "appid": 2964540, + "normalized_name": "nurikabe world" + }, + { + "appid": 2964550, + "normalized_name": "vr realms" + }, + { + "appid": 2964560, + "normalized_name": "happy bastards" + }, + { + "appid": 2964580, + "normalized_name": "dungeon world" + }, + { + "appid": 2964590, + "normalized_name": "space trail fireworks" + }, + { + "appid": 2964640, + "normalized_name": "blue land" + }, + { + "appid": 2964670, + "normalized_name": "super party games online" + }, + { + "appid": 2964680, + "normalized_name": "raid on rift" + }, + { + "appid": 2964690, + "normalized_name": "dayoff moonriver incident" + }, + { + "appid": 2964720, + "normalized_name": "dj 8 beats infinite" + }, + { + "appid": 2964800, + "normalized_name": "norowareta the three treasures" + }, + { + "appid": 2964810, + "normalized_name": "revenge of black bone" + }, + { + "appid": 2964830, + "normalized_name": "hunter's requiem" + }, + { + "appid": 2964840, + "normalized_name": "dna season 2 | episode 2" + }, + { + "appid": 2964910, + "normalized_name": "streamer content a simple mechanic a simple game" + }, + { + "appid": 2964920, + "normalized_name": "sundy stairway" + }, + { + "appid": 2964940, + "normalized_name": "eternal conquest" + }, + { + "appid": 2964960, + "normalized_name": "52赫兹" + }, + { + "appid": 2964980, + "normalized_name": "you go boom" + }, + { + "appid": 2964990, + "normalized_name": "矿工塔防" + }, + { + "appid": 2965050, + "normalized_name": "stay home it rains outside" + }, + { + "appid": 2965090, + "normalized_name": "robot female hero" + }, + { + "appid": 2965130, + "normalized_name": "异兔传说" + }, + { + "appid": 2965140, + "normalized_name": "cross the world" + }, + { + "appid": 2965180, + "normalized_name": "adora and my treasure" + }, + { + "appid": 2965190, + "normalized_name": "beyond horizon the astral expedition" + }, + { + "appid": 2965220, + "normalized_name": "strings of fate xi magic dream" + }, + { + "appid": 2965230, + "normalized_name": "where it all began season 1" + }, + { + "appid": 2965250, + "normalized_name": "findme" + }, + { + "appid": 2965280, + "normalized_name": "chess" + }, + { + "appid": 2965290, + "normalized_name": "deepweb simulator prologue" + }, + { + "appid": 2965300, + "normalized_name": "吞食天地hd2d three kingdoms the legend of zhuge kongming" + }, + { + "appid": 2965340, + "normalized_name": "gay sex adventures episode 7" + }, + { + "appid": 2965370, + "normalized_name": "escape the void 2024" + }, + { + "appid": 2965380, + "normalized_name": "relaxing simulator" + }, + { + "appid": 2965400, + "normalized_name": "equire" + }, + { + "appid": 2965420, + "normalized_name": "stickmanquiz" + }, + { + "appid": 2965430, + "normalized_name": "hunter legends" + }, + { + "appid": 2965450, + "normalized_name": "crimson cutlass" + }, + { + "appid": 2965540, + "normalized_name": "ragdoll tumble" + }, + { + "appid": 2965550, + "normalized_name": "the lost compressor" + }, + { + "appid": 2965590, + "normalized_name": "the very idle game" + }, + { + "appid": 2965650, + "normalized_name": "arising" + }, + { + "appid": 2965660, + "normalized_name": "pilgrim" + }, + { + "appid": 2965670, + "normalized_name": "eldwyrm the cursed crown" + }, + { + "appid": 2965680, + "normalized_name": "malleus cocconum the heiress" + }, + { + "appid": 2965690, + "normalized_name": "look closer!" + }, + { + "appid": 2965720, + "normalized_name": "whiskers wonderland" + }, + { + "appid": 2965730, + "normalized_name": "cozy campzone" + }, + { + "appid": 2965760, + "normalized_name": "不獸控制" + }, + { + "appid": 2965780, + "normalized_name": "good soup" + }, + { + "appid": 2965790, + "normalized_name": "arena of block" + }, + { + "appid": 2965870, + "normalized_name": "grokai" + }, + { + "appid": 2965900, + "normalized_name": "automata streetcar" + }, + { + "appid": 2965910, + "normalized_name": "azem" + }, + { + "appid": 2965930, + "normalized_name": "inkression" + }, + { + "appid": 2965940, + "normalized_name": "soviet anomaly 7" + }, + { + "appid": 2965970, + "normalized_name": "dna season 2 | episode 3" + }, + { + "appid": 2966040, + "normalized_name": "ninja gold thief" + }, + { + "appid": 2966090, + "normalized_name": "maze rising trials" + }, + { + "appid": 2966100, + "normalized_name": "manludo 2" + }, + { + "appid": 2966110, + "normalized_name": "eye to me" + }, + { + "appid": 2966150, + "normalized_name": "magic venue" + }, + { + "appid": 2966160, + "normalized_name": "gravity surge" + }, + { + "appid": 2966190, + "normalized_name": "火鸦 blazing crow" + }, + { + "appid": 2966260, + "normalized_name": "black dungeon" + }, + { + "appid": 2966270, + "normalized_name": "誘拐犯 kidnappers" + }, + { + "appid": 2966280, + "normalized_name": "帝国余晖" + }, + { + "appid": 2966300, + "normalized_name": "sliding hero" + }, + { + "appid": 2966320, + "normalized_name": "starsand island" + }, + { + "appid": 2966330, + "normalized_name": "jordi & oslo the lost tail" + }, + { + "appid": 2966360, + "normalized_name": "paper flights" + }, + { + "appid": 2966370, + "normalized_name": "致过去破损的时光" + }, + { + "appid": 2966390, + "normalized_name": "habitants" + }, + { + "appid": 2966400, + "normalized_name": "silverpine creek" + }, + { + "appid": 2966430, + "normalized_name": "heartbeats" + }, + { + "appid": 2966450, + "normalized_name": "corrupted hottie" + }, + { + "appid": 2966470, + "normalized_name": "i dont fall" + }, + { + "appid": 2966490, + "normalized_name": "grave space" + }, + { + "appid": 2966510, + "normalized_name": "outlying island" + }, + { + "appid": 2966520, + "normalized_name": "我的牧场" + }, + { + "appid": 2966530, + "normalized_name": "strawberry park" + }, + { + "appid": 2966550, + "normalized_name": "spreadcheat" + }, + { + "appid": 2966560, + "normalized_name": "metal toy excavator" + }, + { + "appid": 2966570, + "normalized_name": "impostor online" + }, + { + "appid": 2966580, + "normalized_name": "oryks" + }, + { + "appid": 2966610, + "normalized_name": "fruity friendz adventurez" + }, + { + "appid": 2966620, + "normalized_name": "vribyss refuge the escape" + }, + { + "appid": 2966630, + "normalized_name": "a shlong adventure" + }, + { + "appid": 2966670, + "normalized_name": "synthetic soul 3" + }, + { + "appid": 2966680, + "normalized_name": "upgraded" + }, + { + "appid": 2966700, + "normalized_name": "synthetic soul reset" + }, + { + "appid": 2966720, + "normalized_name": "mouse killer" + }, + { + "appid": 2966750, + "normalized_name": "cute bless" + }, + { + "appid": 2966790, + "normalized_name": "may's journey" + }, + { + "appid": 2966810, + "normalized_name": "zombots invasion" + }, + { + "appid": 2966850, + "normalized_name": "shotgun cop man" + }, + { + "appid": 2966900, + "normalized_name": "keep runnin" + }, + { + "appid": 2966910, + "normalized_name": "level down" + }, + { + "appid": 2966970, + "normalized_name": "volcanewt" + }, + { + "appid": 2966980, + "normalized_name": "oasis blitz" + }, + { + "appid": 2966990, + "normalized_name": "summoned by accident" + }, + { + "appid": 2967000, + "normalized_name": "light reforged" + }, + { + "appid": 2967030, + "normalized_name": "undeance" + }, + { + "appid": 2967080, + "normalized_name": "block trucks multiplayer racing" + }, + { + "appid": 2967090, + "normalized_name": "the process need a job?" + }, + { + "appid": 2967100, + "normalized_name": "terminal connection" + }, + { + "appid": 2967110, + "normalized_name": "cole the comma boy adventures in the city" + }, + { + "appid": 2967140, + "normalized_name": "fray game" + }, + { + "appid": 2967180, + "normalized_name": "unstoppable breakout" + }, + { + "appid": 2967190, + "normalized_name": "priest with a gun" + }, + { + "appid": 2967210, + "normalized_name": "wild harmony" + }, + { + "appid": 2967220, + "normalized_name": "yan魇 parasomnia" + }, + { + "appid": 2967260, + "normalized_name": "sirvive" + }, + { + "appid": 2967320, + "normalized_name": "grandpa high on retro" + }, + { + "appid": 2967330, + "normalized_name": "geras" + }, + { + "appid": 2967350, + "normalized_name": "grimgraves" + }, + { + "appid": 2967380, + "normalized_name": "dead detention (rescribbled)" + }, + { + "appid": 2967410, + "normalized_name": "icarus guild war" + }, + { + "appid": 2967420, + "normalized_name": "turbo pulse race" + }, + { + "appid": 2967430, + "normalized_name": "undersea 8" + }, + { + "appid": 2967450, + "normalized_name": "florist business simulator" + }, + { + "appid": 2967460, + "normalized_name": "red trees rail. co." + }, + { + "appid": 2967470, + "normalized_name": "femdom game world aunt" + }, + { + "appid": 2967480, + "normalized_name": "slutty mommy" + }, + { + "appid": 2967500, + "normalized_name": "the ransom of atawallpa" + }, + { + "appid": 2967510, + "normalized_name": "暗宅" + }, + { + "appid": 2967520, + "normalized_name": "corner abyss" + }, + { + "appid": 2967560, + "normalized_name": "barako the pirate" + }, + { + "appid": 2967570, + "normalized_name": "ballistic" + }, + { + "appid": 2967580, + "normalized_name": "they remain" + }, + { + "appid": 2967590, + "normalized_name": "vanakatu" + }, + { + "appid": 2967600, + "normalized_name": "sakagura life" + }, + { + "appid": 2967630, + "normalized_name": "the biggleboss incident" + }, + { + "appid": 2967640, + "normalized_name": "steamstar" + }, + { + "appid": 2967650, + "normalized_name": "e commerce simulator" + }, + { + "appid": 2967670, + "normalized_name": "cupiclaw" + }, + { + "appid": 2967680, + "normalized_name": "speedy 500" + }, + { + "appid": 2967690, + "normalized_name": "阴阳迷宫" + }, + { + "appid": 2967700, + "normalized_name": "warofgods 2" + }, + { + "appid": 2967710, + "normalized_name": "策划模拟器 game designer simulator" + }, + { + "appid": 2967730, + "normalized_name": "the sacred memory" + }, + { + "appid": 2967750, + "normalized_name": "吞食天地二合一" + }, + { + "appid": 2967790, + "normalized_name": "solitary sentinel" + }, + { + "appid": 2967800, + "normalized_name": "sex on the beach" + }, + { + "appid": 2967820, + "normalized_name": "warriors of thalyrion" + }, + { + "appid": 2967850, + "normalized_name": "shooting range simulator" + }, + { + "appid": 2967860, + "normalized_name": "my adaptation in(to) human" + }, + { + "appid": 2967870, + "normalized_name": "xi portal" + }, + { + "appid": 2967930, + "normalized_name": "myths and legends" + }, + { + "appid": 2967940, + "normalized_name": "duck creator 2" + }, + { + "appid": 2967950, + "normalized_name": "the witch's bakery" + }, + { + "appid": 2967990, + "normalized_name": "train sim world 5" + }, + { + "appid": 2968010, + "normalized_name": "mafia simulator" + }, + { + "appid": 2968020, + "normalized_name": "deep inside" + }, + { + "appid": 2968030, + "normalized_name": "links quartz" + }, + { + "appid": 2968050, + "normalized_name": "exodus creepy time" + }, + { + "appid": 2968060, + "normalized_name": "magic storm" + }, + { + "appid": 2968070, + "normalized_name": "cardian" + }, + { + "appid": 2968140, + "normalized_name": "abandoned hut" + }, + { + "appid": 2968170, + "normalized_name": "hazing night shift" + }, + { + "appid": 2968200, + "normalized_name": "for nykanak" + }, + { + "appid": 2968220, + "normalized_name": "obergenie" + }, + { + "appid": 2968250, + "normalized_name": "hentai girls the princesses" + }, + { + "appid": 2968260, + "normalized_name": "evilpunk" + }, + { + "appid": 2968270, + "normalized_name": "toymaker threads of joy" + }, + { + "appid": 2968290, + "normalized_name": "cards and dungeons" + }, + { + "appid": 2968310, + "normalized_name": "rollz ball" + }, + { + "appid": 2968390, + "normalized_name": "rogue ascent vr" + }, + { + "appid": 2968400, + "normalized_name": "broke in isekai" + }, + { + "appid": 2968410, + "normalized_name": "bridges of patience" + }, + { + "appid": 2968420, + "normalized_name": "powerwash simulator 2" + }, + { + "appid": 2968430, + "normalized_name": "beer simulator" + }, + { + "appid": 2968470, + "normalized_name": "emergent fates re developed" + }, + { + "appid": 2968500, + "normalized_name": "剑箫行" + }, + { + "appid": 2968510, + "normalized_name": "phantom watcher" + }, + { + "appid": 2968520, + "normalized_name": "hentai sensei" + }, + { + "appid": 2968570, + "normalized_name": "touch maze" + }, + { + "appid": 2968600, + "normalized_name": "6th floor" + }, + { + "appid": 2968620, + "normalized_name": "blastgrid" + }, + { + "appid": 2968640, + "normalized_name": "snatched" + }, + { + "appid": 2968670, + "normalized_name": "drft" + }, + { + "appid": 2968680, + "normalized_name": "sex in the block" + }, + { + "appid": 2968690, + "normalized_name": "last box standing may go on" + }, + { + "appid": 2968730, + "normalized_name": "mr snuggles dungeon adventure" + }, + { + "appid": 2968800, + "normalized_name": "sledge" + }, + { + "appid": 2968820, + "normalized_name": "wizwag" + }, + { + "appid": 2968840, + "normalized_name": "fest guests" + }, + { + "appid": 2968850, + "normalized_name": "snaps" + }, + { + "appid": 2968860, + "normalized_name": "palpus x annihilation" + }, + { + "appid": 2968870, + "normalized_name": "stellar larceny" + }, + { + "appid": 2968880, + "normalized_name": "bub o burst" + }, + { + "appid": 2968900, + "normalized_name": "sdies" + }, + { + "appid": 2968940, + "normalized_name": "ember lord" + }, + { + "appid": 2968950, + "normalized_name": "pillow pinky" + }, + { + "appid": 2968970, + "normalized_name": "escape everlit" + }, + { + "appid": 2968990, + "normalized_name": "dna season 2 | episode 4" + }, + { + "appid": 2969010, + "normalized_name": "defender of falyndor" + }, + { + "appid": 2969020, + "normalized_name": "mylittlepool" + }, + { + "appid": 2969030, + "normalized_name": "tuntun" + }, + { + "appid": 2969040, + "normalized_name": "roulette simulator 2025" + }, + { + "appid": 2969060, + "normalized_name": "casino island simulator" + }, + { + "appid": 2969140, + "normalized_name": "checkout cashier simulator" + }, + { + "appid": 2969150, + "normalized_name": "kaiju fury turbo" + }, + { + "appid": 2969160, + "normalized_name": "除邪(chuxie)" + }, + { + "appid": 2969180, + "normalized_name": "steel century groove midnight" + }, + { + "appid": 2969210, + "normalized_name": "k!ll all litterbugs" + }, + { + "appid": 2969220, + "normalized_name": "dark destruction" + }, + { + "appid": 2969240, + "normalized_name": "shepherds" + }, + { + "appid": 2969250, + "normalized_name": "dubscr's murder mystery" + }, + { + "appid": 2969270, + "normalized_name": "death protocol" + }, + { + "appid": 2969320, + "normalized_name": "thunder age" + }, + { + "appid": 2969350, + "normalized_name": "精灵守护者" + }, + { + "appid": 2969380, + "normalized_name": "bakeru" + }, + { + "appid": 2969710, + "normalized_name": "mycelium" + }, + { + "appid": 2969960, + "normalized_name": "slime climb a count pumpcula tale" + }, + { + "appid": 2969970, + "normalized_name": "spice odyssey" + }, + { + "appid": 2970080, + "normalized_name": "the littlest fry" + }, + { + "appid": 2970990, + "normalized_name": "dark & quispy" + }, + { + "appid": 2971000, + "normalized_name": "煙硝絮語:灰鷹" + }, + { + "appid": 2971010, + "normalized_name": "femdom farm" + }, + { + "appid": 2971090, + "normalized_name": "stickman adventure" + }, + { + "appid": 2971120, + "normalized_name": "project adrenaline" + }, + { + "appid": 2971280, + "normalized_name": "our war the strongest shield" + }, + { + "appid": 2971360, + "normalized_name": "metal queen dungeon" + }, + { + "appid": 2971390, + "normalized_name": "roll five" + }, + { + "appid": 2971430, + "normalized_name": "echo of prypiat" + }, + { + "appid": 2971440, + "normalized_name": "みこスナイパー" + }, + { + "appid": 2971450, + "normalized_name": "unicopia" + }, + { + "appid": 2971500, + "normalized_name": "fast food restaurant simulator" + }, + { + "appid": 2971510, + "normalized_name": "prologue fish idle 2" + }, + { + "appid": 2971520, + "normalized_name": "venusville" + }, + { + "appid": 2971590, + "normalized_name": "heroglobin monster hospital" + }, + { + "appid": 2971610, + "normalized_name": "hole" + }, + { + "appid": 2971630, + "normalized_name": "plasticfighter" + }, + { + "appid": 2971650, + "normalized_name": "infernal hunt" + }, + { + "appid": 2971660, + "normalized_name": "inthedisorderlycourtyard" + }, + { + "appid": 2971680, + "normalized_name": "the ethernal spiral" + }, + { + "appid": 2971750, + "normalized_name": "雙面夜孃" + }, + { + "appid": 2971760, + "normalized_name": "egg arena" + }, + { + "appid": 2971800, + "normalized_name": "the league of the hustlers" + }, + { + "appid": 2971820, + "normalized_name": "breaking time" + }, + { + "appid": 2971830, + "normalized_name": "milk me darling busty and the breast" + }, + { + "appid": 2971860, + "normalized_name": "eclipse" + }, + { + "appid": 2971870, + "normalized_name": "miniparty" + }, + { + "appid": 2971900, + "normalized_name": "welcome to dustown" + }, + { + "appid": 2971930, + "normalized_name": "fish flash" + }, + { + "appid": 2971970, + "normalized_name": "wasteland punk" + }, + { + "appid": 2971980, + "normalized_name": "keabe free" + }, + { + "appid": 2972010, + "normalized_name": "naoki" + }, + { + "appid": 2972020, + "normalized_name": "rubedo the occult dawn" + }, + { + "appid": 2972040, + "normalized_name": "the gap" + }, + { + "appid": 2972070, + "normalized_name": "happy uppen sometimes downsad" + }, + { + "appid": 2972090, + "normalized_name": "spellagis" + }, + { + "appid": 2972110, + "normalized_name": "homespun" + }, + { + "appid": 2972120, + "normalized_name": "day of atonement" + }, + { + "appid": 2972140, + "normalized_name": "pirate combat trainer" + }, + { + "appid": 2972180, + "normalized_name": "nerd tracing dayline" + }, + { + "appid": 2972220, + "normalized_name": "demonherd" + }, + { + "appid": 2972250, + "normalized_name": "trash can tactics" + }, + { + "appid": 2972260, + "normalized_name": "ghosts" + }, + { + "appid": 2972300, + "normalized_name": "beauty jigsaw" + }, + { + "appid": 2972310, + "normalized_name": "herald of the mists" + }, + { + "appid": 2972330, + "normalized_name": "hfh" + }, + { + "appid": 2972350, + "normalized_name": "devious path" + }, + { + "appid": 2972370, + "normalized_name": "echoes of egypt" + }, + { + "appid": 2972380, + "normalized_name": "the paddock" + }, + { + "appid": 2972480, + "normalized_name": "the descent vr" + }, + { + "appid": 2972530, + "normalized_name": "playground mayhem" + }, + { + "appid": 2972590, + "normalized_name": "scolionophobia" + }, + { + "appid": 2972600, + "normalized_name": "dice with the devil rerolled" + }, + { + "appid": 2972630, + "normalized_name": "neonova" + }, + { + "appid": 2972640, + "normalized_name": "project juggler" + }, + { + "appid": 2972650, + "normalized_name": "dna final episode part 1" + }, + { + "appid": 2972660, + "normalized_name": "temple of lily" + }, + { + "appid": 2972700, + "normalized_name": "beyond the clouds" + }, + { + "appid": 2972710, + "normalized_name": "winter winds" + }, + { + "appid": 2972730, + "normalized_name": "呪巣 学校の怪談" + }, + { + "appid": 2972750, + "normalized_name": "dna final episode part 2" + }, + { + "appid": 2972760, + "normalized_name": "jello party" + }, + { + "appid": 2972770, + "normalized_name": "highway hijinks" + }, + { + "appid": 2972780, + "normalized_name": "dna 1 finale" + }, + { + "appid": 2972810, + "normalized_name": "five nights at roner's 2" + }, + { + "appid": 2972820, + "normalized_name": "vice magic city mayhem" + }, + { + "appid": 2972830, + "normalized_name": "火焰保护者之划破苍穹" + }, + { + "appid": 2972870, + "normalized_name": "red ruins asymmetric vr vs. pc" + }, + { + "appid": 2972890, + "normalized_name": "猫语拾光 cat and life" + }, + { + "appid": 2972900, + "normalized_name": "instant armory" + }, + { + "appid": 2972930, + "normalized_name": "path to dragon" + }, + { + "appid": 2972940, + "normalized_name": "m.e.m.o" + }, + { + "appid": 2972980, + "normalized_name": "catonium out of chaos" + }, + { + "appid": 2972990, + "normalized_name": "ホロライブお宝マウンテン" + }, + { + "appid": 2973000, + "normalized_name": "zragg" + }, + { + "appid": 2973100, + "normalized_name": "amusia demo" + }, + { + "appid": 2973110, + "normalized_name": "lumberkill" + }, + { + "appid": 2973120, + "normalized_name": "dusk city" + }, + { + "appid": 2973160, + "normalized_name": "eggman" + }, + { + "appid": 2973170, + "normalized_name": "ouroboros if crazy for you" + }, + { + "appid": 2973200, + "normalized_name": "eerie excavation" + }, + { + "appid": 2973240, + "normalized_name": "above" + }, + { + "appid": 2973250, + "normalized_name": "theurgy architect" + }, + { + "appid": 2973320, + "normalized_name": "dark era" + }, + { + "appid": 2973340, + "normalized_name": "a byte war" + }, + { + "appid": 2973390, + "normalized_name": "krypta fm" + }, + { + "appid": 2973410, + "normalized_name": "就労!!わんわんヒューマン" + }, + { + "appid": 2973450, + "normalized_name": "kelder" + }, + { + "appid": 2973480, + "normalized_name": "gym bullies" + }, + { + "appid": 2973500, + "normalized_name": "let's take a bath with purin 2" + }, + { + "appid": 2973520, + "normalized_name": "hero's survival" + }, + { + "appid": 2973540, + "normalized_name": "3d puzzle hospital 2" + }, + { + "appid": 2973550, + "normalized_name": "3d puzzle hospital 3" + }, + { + "appid": 2973560, + "normalized_name": "3d puzzle old sea port" + }, + { + "appid": 2973570, + "normalized_name": "hidden haunted town top down 3d" + }, + { + "appid": 2973580, + "normalized_name": "hidden fps shooting top down 3d" + }, + { + "appid": 2973610, + "normalized_name": "spiritual prophecy" + }, + { + "appid": 2973690, + "normalized_name": "globulo" + }, + { + "appid": 2973700, + "normalized_name": "goblin hotdogs" + }, + { + "appid": 2973710, + "normalized_name": "the guilty hearts" + }, + { + "appid": 2973810, + "normalized_name": "leo the square" + }, + { + "appid": 2973820, + "normalized_name": "feet paradise" + }, + { + "appid": 2973830, + "normalized_name": "prison boss prohibition" + }, + { + "appid": 2973840, + "normalized_name": "a great hunger" + }, + { + "appid": 2973850, + "normalized_name": "no hi" + }, + { + "appid": 2973950, + "normalized_name": "deafblind" + }, + { + "appid": 2973960, + "normalized_name": "songbird flingathing" + }, + { + "appid": 2974000, + "normalized_name": "friendship island" + }, + { + "appid": 2974010, + "normalized_name": "redvery space" + }, + { + "appid": 2974030, + "normalized_name": "caliaquest" + }, + { + "appid": 2974040, + "normalized_name": "glintland" + }, + { + "appid": 2974050, + "normalized_name": "tv show tycoon" + }, + { + "appid": 2974060, + "normalized_name": "[rec] paroxysm" + }, + { + "appid": 2974070, + "normalized_name": "for the glory of gods tcg" + }, + { + "appid": 2974080, + "normalized_name": "funpv cosy fpv experience" + }, + { + "appid": 2974100, + "normalized_name": "cpa reports bousy" + }, + { + "appid": 2974120, + "normalized_name": "凪ノ恋" + }, + { + "appid": 2974140, + "normalized_name": "sumo" + }, + { + "appid": 2974150, + "normalized_name": "leguiumz experience" + }, + { + "appid": 2974190, + "normalized_name": "skinless the horror story quest" + }, + { + "appid": 2974220, + "normalized_name": "styria" + }, + { + "appid": 2974250, + "normalized_name": "civil warfare" + }, + { + "appid": 2974290, + "normalized_name": "memento mori" + }, + { + "appid": 2974370, + "normalized_name": "philosophers lab" + }, + { + "appid": 2974430, + "normalized_name": "yume gufi" + }, + { + "appid": 2974450, + "normalized_name": "romance is dead" + }, + { + "appid": 2974460, + "normalized_name": "school bathroom" + }, + { + "appid": 2974510, + "normalized_name": "lie of caelum spirit" + }, + { + "appid": 2974540, + "normalized_name": "night machine" + }, + { + "appid": 2974570, + "normalized_name": "the betweenlands" + }, + { + "appid": 2974600, + "normalized_name": "wizkid" + }, + { + "appid": 2974620, + "normalized_name": "signanota" + }, + { + "appid": 2974640, + "normalized_name": "wrain" + }, + { + "appid": 2974650, + "normalized_name": "solitar retro picks" + }, + { + "appid": 2974660, + "normalized_name": "just keep digging" + }, + { + "appid": 2974690, + "normalized_name": "yokai unbound" + }, + { + "appid": 2974700, + "normalized_name": "silent operative" + }, + { + "appid": 2974740, + "normalized_name": "toon troops strategy" + }, + { + "appid": 2975030, + "normalized_name": "lust shot" + }, + { + "appid": 2975040, + "normalized_name": "gate guardian" + }, + { + "appid": 2975100, + "normalized_name": "逍遥传说" + }, + { + "appid": 2975110, + "normalized_name": "solares" + }, + { + "appid": 2975130, + "normalized_name": "ウルトラマッシュルーム" + }, + { + "appid": 2975160, + "normalized_name": "rose and cross" + }, + { + "appid": 2975180, + "normalized_name": "break the empire" + }, + { + "appid": 2975190, + "normalized_name": "zomgobo" + }, + { + "appid": 2975240, + "normalized_name": "out of shape" + }, + { + "appid": 2975250, + "normalized_name": "sexy futa mecha battles of islands🍓" + }, + { + "appid": 2975260, + "normalized_name": "prison of husks" + }, + { + "appid": 2975270, + "normalized_name": "inventory quest hero's hoard" + }, + { + "appid": 2975290, + "normalized_name": "阿玛拉:魔神之意" + }, + { + "appid": 2975330, + "normalized_name": "color dash" + }, + { + "appid": 2975350, + "normalized_name": "blood lust" + }, + { + "appid": 2975460, + "normalized_name": "farmer's shop simulator" + }, + { + "appid": 2975470, + "normalized_name": "dr. gloom’s lab" + }, + { + "appid": 2975480, + "normalized_name": "s. prysm destroyer" + }, + { + "appid": 2975580, + "normalized_name": "sara story of a young thief" + }, + { + "appid": 2975590, + "normalized_name": "bind" + }, + { + "appid": 2975640, + "normalized_name": "office boss's mystery" + }, + { + "appid": 2975660, + "normalized_name": "keyboard tennis" + }, + { + "appid": 2975680, + "normalized_name": "腐朽默示 / revelation of decay" + }, + { + "appid": 2975690, + "normalized_name": "lappelduvide" + }, + { + "appid": 2975720, + "normalized_name": "巧|合/co|incidence" + }, + { + "appid": 2975730, + "normalized_name": "hexual deflection" + }, + { + "appid": 2975750, + "normalized_name": "picterra" + }, + { + "appid": 2975790, + "normalized_name": "monster quest" + }, + { + "appid": 2975830, + "normalized_name": "spells dungeon" + }, + { + "appid": 2975870, + "normalized_name": "do you have salt?" + }, + { + "appid": 2975880, + "normalized_name": "クロトピア" + }, + { + "appid": 2975900, + "normalized_name": "truck parking simulator vr" + }, + { + "appid": 2975910, + "normalized_name": "warklinika" + }, + { + "appid": 2975950, + "normalized_name": "solasta ii" + }, + { + "appid": 2976000, + "normalized_name": "only the wurst" + }, + { + "appid": 2976020, + "normalized_name": "woohoo!" + }, + { + "appid": 2976030, + "normalized_name": "spell fragments" + }, + { + "appid": 2976070, + "normalized_name": "tower of typing" + }, + { + "appid": 2976080, + "normalized_name": "fantasy knight" + }, + { + "appid": 2976110, + "normalized_name": "separated" + }, + { + "appid": 2976120, + "normalized_name": "marfa" + }, + { + "appid": 2976140, + "normalized_name": "campfire cozy friends" + }, + { + "appid": 2976160, + "normalized_name": "yark survivors" + }, + { + "appid": 2976170, + "normalized_name": "nowhere near" + }, + { + "appid": 2976190, + "normalized_name": "colorful ghost" + }, + { + "appid": 2976230, + "normalized_name": "escape and build" + }, + { + "appid": 2976250, + "normalized_name": "riven crown" + }, + { + "appid": 2976260, + "normalized_name": "chainstaff" + }, + { + "appid": 2976270, + "normalized_name": "gillbert guardian of the grotto" + }, + { + "appid": 2976310, + "normalized_name": "the concrete district" + }, + { + "appid": 2976320, + "normalized_name": "golf bash online" + }, + { + "appid": 2976330, + "normalized_name": "spoofs playland" + }, + { + "appid": 2976400, + "normalized_name": "fork road" + }, + { + "appid": 2976410, + "normalized_name": "undead trail haunting shadows" + }, + { + "appid": 2976440, + "normalized_name": "war of the western deep" + }, + { + "appid": 2976450, + "normalized_name": "bug ball 3d" + }, + { + "appid": 2976470, + "normalized_name": "shape sender deluxe" + }, + { + "appid": 2976490, + "normalized_name": "the stalked 2" + }, + { + "appid": 2976500, + "normalized_name": "room 14" + }, + { + "appid": 2976510, + "normalized_name": "undo the jam damage" + }, + { + "appid": 2976600, + "normalized_name": "deathland drifters" + }, + { + "appid": 2976610, + "normalized_name": "clippy commando" + }, + { + "appid": 2976620, + "normalized_name": "super crane hd" + }, + { + "appid": 2976630, + "normalized_name": "drone adventure" + }, + { + "appid": 2976670, + "normalized_name": "yee haw!!" + }, + { + "appid": 2976690, + "normalized_name": "qa simulator" + }, + { + "appid": 2976700, + "normalized_name": "stardrop" + }, + { + "appid": 2976720, + "normalized_name": "1比1人形食玩" + }, + { + "appid": 2976740, + "normalized_name": "cry pic." + }, + { + "appid": 2976770, + "normalized_name": "the depths of despair" + }, + { + "appid": 2976780, + "normalized_name": "whispers of the tarnished city" + }, + { + "appid": 2976790, + "normalized_name": "the perfect bowl" + }, + { + "appid": 2976800, + "normalized_name": "varyznex" + }, + { + "appid": 2976870, + "normalized_name": "taiwan love story⁵" + }, + { + "appid": 2976880, + "normalized_name": "tea for sana" + }, + { + "appid": 2976900, + "normalized_name": "unpossess exorcism simulator" + }, + { + "appid": 2976910, + "normalized_name": "burger" + }, + { + "appid": 2976960, + "normalized_name": "riaru meta gēmu – who dice 【リアルメタゲーム】" + }, + { + "appid": 2977060, + "normalized_name": "kappa quest" + }, + { + "appid": 2977070, + "normalized_name": "architect simulator" + }, + { + "appid": 2977130, + "normalized_name": "lots of things 2 travel and search ce" + }, + { + "appid": 2977150, + "normalized_name": "project hortus" + }, + { + "appid": 2977230, + "normalized_name": "next player" + }, + { + "appid": 2977290, + "normalized_name": "monster and snakes" + }, + { + "appid": 2977310, + "normalized_name": "arkhe" + }, + { + "appid": 2977320, + "normalized_name": "lunar // drill" + }, + { + "appid": 2977350, + "normalized_name": "pintaris" + }, + { + "appid": 2977360, + "normalized_name": "cartographers" + }, + { + "appid": 2977390, + "normalized_name": "puss in woods" + }, + { + "appid": 2977440, + "normalized_name": "turtlerun" + }, + { + "appid": 2977490, + "normalized_name": "black paradox reloaded" + }, + { + "appid": 2977510, + "normalized_name": "leap 'n bump!" + }, + { + "appid": 2977570, + "normalized_name": "reverend" + }, + { + "appid": 2977580, + "normalized_name": "emma riley dream detective" + }, + { + "appid": 2977590, + "normalized_name": "the depths of avalon" + }, + { + "appid": 2977620, + "normalized_name": "squirreled away" + }, + { + "appid": 2977660, + "normalized_name": "cats" + }, + { + "appid": 2977700, + "normalized_name": "survive the swarm" + }, + { + "appid": 2977770, + "normalized_name": "rusts of corruption" + }, + { + "appid": 2977800, + "normalized_name": "whisker president" + }, + { + "appid": 2977810, + "normalized_name": "dollhouse of dead" + }, + { + "appid": 2977820, + "normalized_name": "hyperslice" + }, + { + "appid": 2977850, + "normalized_name": "workshop works" + }, + { + "appid": 2977900, + "normalized_name": "eternal knight" + }, + { + "appid": 2977960, + "normalized_name": "wrong escape" + }, + { + "appid": 2977990, + "normalized_name": "spec" + }, + { + "appid": 2978000, + "normalized_name": "toys cracker" + }, + { + "appid": 2978020, + "normalized_name": "artificial division" + }, + { + "appid": 2978070, + "normalized_name": "yume no office" + }, + { + "appid": 2978120, + "normalized_name": "wild west prototype" + }, + { + "appid": 2978170, + "normalized_name": "super hack attack!" + }, + { + "appid": 2978180, + "normalized_name": "desktop cat cafe" + }, + { + "appid": 2978210, + "normalized_name": "midnight watch" + }, + { + "appid": 2978220, + "normalized_name": "onekind" + }, + { + "appid": 2978230, + "normalized_name": "voluptuous fantasy" + }, + { + "appid": 2978240, + "normalized_name": "the heft effect" + }, + { + "appid": 2978270, + "normalized_name": "let's learn x̱aad kíl" + }, + { + "appid": 2978280, + "normalized_name": "case zero" + }, + { + "appid": 2978310, + "normalized_name": "mystic gals" + }, + { + "appid": 2978370, + "normalized_name": "光谱之境" + }, + { + "appid": 2978430, + "normalized_name": "hentai city" + }, + { + "appid": 2978440, + "normalized_name": "projekt godhand" + }, + { + "appid": 2978460, + "normalized_name": "hard void" + }, + { + "appid": 2978470, + "normalized_name": "where wh..?" + }, + { + "appid": 2978500, + "normalized_name": "火纹幸存者fire survivors" + }, + { + "appid": 2978510, + "normalized_name": "contingency plan" + }, + { + "appid": 2978540, + "normalized_name": "gaming cafe simulator" + }, + { + "appid": 2978550, + "normalized_name": "nitro champagne tower" + }, + { + "appid": 2978570, + "normalized_name": "the shadows within nightmare's game" + }, + { + "appid": 2978600, + "normalized_name": "that level again 3d" + }, + { + "appid": 2978670, + "normalized_name": "chaos magus" + }, + { + "appid": 2978680, + "normalized_name": "midnight at blackwood manor" + }, + { + "appid": 2978690, + "normalized_name": "poolrooms" + }, + { + "appid": 2978700, + "normalized_name": "fortress forge" + }, + { + "appid": 2978710, + "normalized_name": "the rainman" + }, + { + "appid": 2978740, + "normalized_name": "the lodge" + }, + { + "appid": 2978750, + "normalized_name": "demonkey" + }, + { + "appid": 2978780, + "normalized_name": "雨に願えば~wishin' in the rain~" + }, + { + "appid": 2978820, + "normalized_name": "echoes" + }, + { + "appid": 2978850, + "normalized_name": "eden warrior" + }, + { + "appid": 2978860, + "normalized_name": "shoe it all!" + }, + { + "appid": 2978870, + "normalized_name": "room of lust" + }, + { + "appid": 2978880, + "normalized_name": "rush delivery" + }, + { + "appid": 2978940, + "normalized_name": "sauna simulator" + }, + { + "appid": 2978950, + "normalized_name": "mini dungeon" + }, + { + "appid": 2978970, + "normalized_name": "runet legend" + }, + { + "appid": 2978980, + "normalized_name": "contained" + }, + { + "appid": 2979000, + "normalized_name": "forsaken shadows" + }, + { + "appid": 2979020, + "normalized_name": "clayers prologue" + }, + { + "appid": 2979070, + "normalized_name": "a few days with rebecca" + }, + { + "appid": 2979110, + "normalized_name": "shadow of the school" + }, + { + "appid": 2979150, + "normalized_name": "matchstone" + }, + { + "appid": 2979180, + "normalized_name": "the bell of time" + }, + { + "appid": 2979220, + "normalized_name": "devil's way" + }, + { + "appid": 2979270, + "normalized_name": "eyes of destiny" + }, + { + "appid": 2979290, + "normalized_name": "orbiteers" + }, + { + "appid": 2979300, + "normalized_name": "armadillo assault" + }, + { + "appid": 2979330, + "normalized_name": "illegal simulator" + }, + { + "appid": 2979430, + "normalized_name": "deadman's pact" + }, + { + "appid": 2979440, + "normalized_name": "peaches interplanetary" + }, + { + "appid": 2979450, + "normalized_name": "梦想之地" + }, + { + "appid": 2979470, + "normalized_name": "retail revenge" + }, + { + "appid": 2979500, + "normalized_name": "serial world" + }, + { + "appid": 2979510, + "normalized_name": "escape from pleasant falls" + }, + { + "appid": 2979520, + "normalized_name": "eternal" + }, + { + "appid": 2979530, + "normalized_name": "act casual" + }, + { + "appid": 2979580, + "normalized_name": "五金圣剑模拟器" + }, + { + "appid": 2979620, + "normalized_name": "spaceman wakes up in a new world the government has been experimenting on people on the moon and created crazy vine monsters" + }, + { + "appid": 2979650, + "normalized_name": "ruiga pirates cursed seas" + }, + { + "appid": 2979680, + "normalized_name": "selenaut quest" + }, + { + "appid": 2979690, + "normalized_name": "quest of peril" + }, + { + "appid": 2979710, + "normalized_name": "5525" + }, + { + "appid": 2979780, + "normalized_name": "sayo" + }, + { + "appid": 2979790, + "normalized_name": "state your business" + }, + { + "appid": 2979810, + "normalized_name": "polyaris" + }, + { + "appid": 2979820, + "normalized_name": "chaser of light" + }, + { + "appid": 2979830, + "normalized_name": "assassin's alliance" + }, + { + "appid": 2979840, + "normalized_name": "surviving the apocalypse is more fun when there’s sex" + }, + { + "appid": 2979860, + "normalized_name": "the cope" + }, + { + "appid": 2979890, + "normalized_name": "gudrun's solitaire duel" + }, + { + "appid": 2979950, + "normalized_name": "limits of intelligence" + }, + { + "appid": 2979970, + "normalized_name": "bullet blasters" + }, + { + "appid": 2979980, + "normalized_name": "決戰打狗港" + }, + { + "appid": 2979990, + "normalized_name": "solider autochess" + }, + { + "appid": 2980000, + "normalized_name": "fox in the 20th century" + }, + { + "appid": 2980010, + "normalized_name": "the four" + }, + { + "appid": 2980020, + "normalized_name": "lo fi room" + }, + { + "appid": 2980030, + "normalized_name": "➕1⃣" + }, + { + "appid": 2980050, + "normalized_name": "机械恋心" + }, + { + "appid": 2980080, + "normalized_name": "tla tactics" + }, + { + "appid": 2980110, + "normalized_name": "electro havoc" + }, + { + "appid": 2980150, + "normalized_name": "security guard sex episode 2" + }, + { + "appid": 2980170, + "normalized_name": "vortica" + }, + { + "appid": 2980190, + "normalized_name": "chaos moon 1cc" + }, + { + "appid": 2980220, + "normalized_name": "bot beats" + }, + { + "appid": 2980240, + "normalized_name": "soul brave" + }, + { + "appid": 2980260, + "normalized_name": "hypogea" + }, + { + "appid": 2980270, + "normalized_name": "hackhub" + }, + { + "appid": 2980280, + "normalized_name": "apples busy day" + }, + { + "appid": 2980320, + "normalized_name": "hexwielder" + }, + { + "appid": 2980410, + "normalized_name": "darknesssssssssssssssss" + }, + { + "appid": 2980420, + "normalized_name": "heatwave" + }, + { + "appid": 2980450, + "normalized_name": "cliax codec" + }, + { + "appid": 2980470, + "normalized_name": "vibora" + }, + { + "appid": 2980490, + "normalized_name": "relaxing drift" + }, + { + "appid": 2980510, + "normalized_name": "d hospital" + }, + { + "appid": 2980550, + "normalized_name": "echoesⅱ" + }, + { + "appid": 2980560, + "normalized_name": "empty human beans" + }, + { + "appid": 2980580, + "normalized_name": "astrodrifter" + }, + { + "appid": 2980610, + "normalized_name": "random hero defense" + }, + { + "appid": 2980650, + "normalized_name": "judgement" + }, + { + "appid": 2980660, + "normalized_name": "click on ladybugs together" + }, + { + "appid": 2980720, + "normalized_name": "the worries of santa clauses" + }, + { + "appid": 2980760, + "normalized_name": "vertig8" + }, + { + "appid": 2980830, + "normalized_name": "collapse machine" + }, + { + "appid": 2980870, + "normalized_name": "the mage slayer" + }, + { + "appid": 2980880, + "normalized_name": "hentai sister" + }, + { + "appid": 2980890, + "normalized_name": "heartlodged" + }, + { + "appid": 2980900, + "normalized_name": "haunted lands" + }, + { + "appid": 2980910, + "normalized_name": "the another world" + }, + { + "appid": 2980940, + "normalized_name": "loop classroom" + }, + { + "appid": 2980970, + "normalized_name": "barheim" + }, + { + "appid": 2980980, + "normalized_name": "stuck in the present" + }, + { + "appid": 2981030, + "normalized_name": "outroad fury" + }, + { + "appid": 2981040, + "normalized_name": "awagame" + }, + { + "appid": 2981050, + "normalized_name": "there's no dragon !" + }, + { + "appid": 2981060, + "normalized_name": "blossoming ruins" + }, + { + "appid": 2981070, + "normalized_name": "奥术扳机" + }, + { + "appid": 2981080, + "normalized_name": "lost light bright mates" + }, + { + "appid": 2981150, + "normalized_name": "나 홀로 학교에서" + }, + { + "appid": 2981210, + "normalized_name": "吃一口拉一坨" + }, + { + "appid": 2981220, + "normalized_name": "forefront" + }, + { + "appid": 2981240, + "normalized_name": "emdeploy" + }, + { + "appid": 2981290, + "normalized_name": "1 am moscow time" + }, + { + "appid": 2981300, + "normalized_name": "golf in wonderland" + }, + { + "appid": 2981310, + "normalized_name": "cyoube" + }, + { + "appid": 2981330, + "normalized_name": "crack it up!" + }, + { + "appid": 2981340, + "normalized_name": "yosuga no sora" + }, + { + "appid": 2981350, + "normalized_name": "my girlfriend is... centaur" + }, + { + "appid": 2981400, + "normalized_name": "middle ages peasants & knights" + }, + { + "appid": 2981440, + "normalized_name": "黑山房产中介" + }, + { + "appid": 2981450, + "normalized_name": "恋爱绮谭 不存在的回忆" + }, + { + "appid": 2981490, + "normalized_name": "battle bits" + }, + { + "appid": 2981530, + "normalized_name": "索罗灵魂之戒—神界篇" + }, + { + "appid": 2981580, + "normalized_name": "shape shifter" + }, + { + "appid": 2981590, + "normalized_name": "factory outlet simulator" + }, + { + "appid": 2981600, + "normalized_name": "the spudfather" + }, + { + "appid": 2981630, + "normalized_name": "enoah's quest" + }, + { + "appid": 2981650, + "normalized_name": "shift 87" + }, + { + "appid": 2981690, + "normalized_name": "tiny machinery lost reality" + }, + { + "appid": 2981700, + "normalized_name": "retro wave" + }, + { + "appid": 2981740, + "normalized_name": "shogun castle" + }, + { + "appid": 2981750, + "normalized_name": "submarines 2d" + }, + { + "appid": 2981760, + "normalized_name": "hero vs 1000" + }, + { + "appid": 2981790, + "normalized_name": "kuri kuri click! ~my renaissance!~" + }, + { + "appid": 2981800, + "normalized_name": "furriend" + }, + { + "appid": 2981850, + "normalized_name": "slime princess" + }, + { + "appid": 2981860, + "normalized_name": "cube crawler" + }, + { + "appid": 2981880, + "normalized_name": "kado hunter" + }, + { + "appid": 2981900, + "normalized_name": "run heroes run" + }, + { + "appid": 2981910, + "normalized_name": "jurassic tower defense" + }, + { + "appid": 2981920, + "normalized_name": "keaton's adventure" + }, + { + "appid": 2982010, + "normalized_name": "just a lullaby" + }, + { + "appid": 2982060, + "normalized_name": "oceanscape" + }, + { + "appid": 2982100, + "normalized_name": "fish click squad!" + }, + { + "appid": 2982130, + "normalized_name": "relaxing time paradise resort collector's" + }, + { + "appid": 2982220, + "normalized_name": "hunter space pirates" + }, + { + "appid": 2982250, + "normalized_name": "broken tape" + }, + { + "appid": 2982290, + "normalized_name": "реальная смута" + }, + { + "appid": 2982340, + "normalized_name": "chromagun 2 dye hard" + }, + { + "appid": 2982360, + "normalized_name": "bandit trap" + }, + { + "appid": 2982480, + "normalized_name": "dash n cry" + }, + { + "appid": 2982490, + "normalized_name": "ai confidential" + }, + { + "appid": 2982500, + "normalized_name": "taquero simulator" + }, + { + "appid": 2982530, + "normalized_name": "the shadow over cyberspace" + }, + { + "appid": 2982540, + "normalized_name": "empty shell the loop" + }, + { + "appid": 2982560, + "normalized_name": "a lily from the lightless water" + }, + { + "appid": 2982570, + "normalized_name": "excommunicated" + }, + { + "appid": 2982590, + "normalized_name": "furry feet girls" + }, + { + "appid": 2982610, + "normalized_name": "stonemachia" + }, + { + "appid": 2982650, + "normalized_name": "macie's magic melee" + }, + { + "appid": 2982660, + "normalized_name": "rakeo" + }, + { + "appid": 2982670, + "normalized_name": "motu" + }, + { + "appid": 2982680, + "normalized_name": "light out of sight" + }, + { + "appid": 2982700, + "normalized_name": "the violets of amicus" + }, + { + "appid": 2982730, + "normalized_name": "biblios tome of darkness" + }, + { + "appid": 2982740, + "normalized_name": "tales of the tavern" + }, + { + "appid": 2982820, + "normalized_name": "mr mitty and the itty bitty kitty committee" + }, + { + "appid": 2982840, + "normalized_name": "office nightmare" + }, + { + "appid": 2982920, + "normalized_name": "nightmare in the old mansion" + }, + { + "appid": 2982930, + "normalized_name": "death in the afternoon" + }, + { + "appid": 2982950, + "normalized_name": "detective hindsight" + }, + { + "appid": 2982960, + "normalized_name": "malachi's tower" + }, + { + "appid": 2983040, + "normalized_name": "abyssal" + }, + { + "appid": 2983070, + "normalized_name": "mouseventures" + }, + { + "appid": 2983080, + "normalized_name": "twinkelquest pantagor's revenge" + }, + { + "appid": 2983140, + "normalized_name": "无罪之庭/trials of innocence" + }, + { + "appid": 2983180, + "normalized_name": "qullusrent3" + }, + { + "appid": 2983220, + "normalized_name": "silence dream" + }, + { + "appid": 2983240, + "normalized_name": "hidden oddities" + }, + { + "appid": 2983250, + "normalized_name": "air" + }, + { + "appid": 2983260, + "normalized_name": "lunaria virtualized moonchild" + }, + { + "appid": 2983270, + "normalized_name": "sex stocks & cocks" + }, + { + "appid": 2983300, + "normalized_name": "spice trade" + }, + { + "appid": 2983330, + "normalized_name": "暴打老板" + }, + { + "appid": 2983350, + "normalized_name": "planetarian snow globe" + }, + { + "appid": 2983370, + "normalized_name": "天海之域" + }, + { + "appid": 2983410, + "normalized_name": "xenopurge" + }, + { + "appid": 2983430, + "normalized_name": "hallway of horrors" + }, + { + "appid": 2983480, + "normalized_name": "cinema manager simulator" + }, + { + "appid": 2983500, + "normalized_name": "prime agents" + }, + { + "appid": 2983510, + "normalized_name": "factory outlet simulator prologue" + }, + { + "appid": 2983520, + "normalized_name": "tile tales pirate" + }, + { + "appid": 2983530, + "normalized_name": "neo light" + }, + { + "appid": 2983540, + "normalized_name": "幻兽纸牌" + }, + { + "appid": 2983580, + "normalized_name": "heroic assault" + }, + { + "appid": 2983630, + "normalized_name": "art diff" + }, + { + "appid": 2983660, + "normalized_name": "thejoker'sgame" + }, + { + "appid": 2983730, + "normalized_name": "before exit supermarket" + }, + { + "appid": 2983740, + "normalized_name": "animal game" + }, + { + "appid": 2983760, + "normalized_name": "moon 2999" + }, + { + "appid": 2983770, + "normalized_name": "bad omens 8th apartment" + }, + { + "appid": 2983780, + "normalized_name": "head collector vr" + }, + { + "appid": 2983790, + "normalized_name": "country tales 2 new frontiers collector's" + }, + { + "appid": 2983810, + "normalized_name": "kingdoms of age" + }, + { + "appid": 2983840, + "normalized_name": "#!/bin/bash" + }, + { + "appid": 2983860, + "normalized_name": "iso core" + }, + { + "appid": 2983870, + "normalized_name": "take cover now" + }, + { + "appid": 2983910, + "normalized_name": "power grid" + }, + { + "appid": 2983920, + "normalized_name": "sparrow" + }, + { + "appid": 2983940, + "normalized_name": "skatelab" + }, + { + "appid": 2983950, + "normalized_name": "load shedding" + }, + { + "appid": 2984000, + "normalized_name": "dead streets zombie blitz" + }, + { + "appid": 2984080, + "normalized_name": "vlad voievod dracula dungeons of egrigoz" + }, + { + "appid": 2984100, + "normalized_name": "camgirlying" + }, + { + "appid": 2984110, + "normalized_name": "clone your way out" + }, + { + "appid": 2984130, + "normalized_name": "odyssey of the explorer" + }, + { + "appid": 2984150, + "normalized_name": "pirofauna" + }, + { + "appid": 2984170, + "normalized_name": "superfighters of survival" + }, + { + "appid": 2984180, + "normalized_name": "nipa" + }, + { + "appid": 2984200, + "normalized_name": "sanguinaria" + }, + { + "appid": 2984210, + "normalized_name": "scyla" + }, + { + "appid": 2984220, + "normalized_name": "aard and wyzz the rise of minions" + }, + { + "appid": 2984230, + "normalized_name": "lizard slayer" + }, + { + "appid": 2984260, + "normalized_name": "fruit salon" + }, + { + "appid": 2984270, + "normalized_name": "cowboys vs monsters" + }, + { + "appid": 2984300, + "normalized_name": "terrestrial" + }, + { + "appid": 2984340, + "normalized_name": "smoking gun" + }, + { + "appid": 2984360, + "normalized_name": "the lost penguin" + }, + { + "appid": 2984380, + "normalized_name": "turmoil uprising dynasty" + }, + { + "appid": 2984400, + "normalized_name": "栄養たっぷりの彼氏" + }, + { + "appid": 2984440, + "normalized_name": "slayscape" + }, + { + "appid": 2984450, + "normalized_name": "the story page" + }, + { + "appid": 2984460, + "normalized_name": "amfm" + }, + { + "appid": 2984470, + "normalized_name": "seabed settlers" + }, + { + "appid": 2984520, + "normalized_name": "digbeat godot deeper" + }, + { + "appid": 2984530, + "normalized_name": "its not your fault" + }, + { + "appid": 2984570, + "normalized_name": "cuckold sex episode 2" + }, + { + "appid": 2984630, + "normalized_name": "aria skies" + }, + { + "appid": 2984700, + "normalized_name": "the silly house" + }, + { + "appid": 2984780, + "normalized_name": "unclogged" + }, + { + "appid": 2984790, + "normalized_name": "redertsy" + }, + { + "appid": 2984800, + "normalized_name": "double whammy" + }, + { + "appid": 2984810, + "normalized_name": "hyperspace striker" + }, + { + "appid": 2984830, + "normalized_name": "perfect thog" + }, + { + "appid": 2984850, + "normalized_name": "rita" + }, + { + "appid": 2984860, + "normalized_name": "letters of bernard thorne" + }, + { + "appid": 2984890, + "normalized_name": "tetram" + }, + { + "appid": 2984900, + "normalized_name": "snail with a shotgun" + }, + { + "appid": 2984970, + "normalized_name": "curiosity" + }, + { + "appid": 2985030, + "normalized_name": "hentai oppai" + }, + { + "appid": 2985050, + "normalized_name": "新月大陆" + }, + { + "appid": 2985090, + "normalized_name": "abyalkin" + }, + { + "appid": 2985110, + "normalized_name": "simple duel" + }, + { + "appid": 2985120, + "normalized_name": "shadoblitz" + }, + { + "appid": 2985170, + "normalized_name": "學生騎士團" + }, + { + "appid": 2985240, + "normalized_name": "magic cube in strange world !" + }, + { + "appid": 2985280, + "normalized_name": "super chick" + }, + { + "appid": 2985300, + "normalized_name": "gasping.2" + }, + { + "appid": 2985330, + "normalized_name": "nuclear tides" + }, + { + "appid": 2985350, + "normalized_name": "orendale" + }, + { + "appid": 2985370, + "normalized_name": "vest a life" + }, + { + "appid": 2985410, + "normalized_name": "underkingdom" + }, + { + "appid": 2985450, + "normalized_name": "umigame" + }, + { + "appid": 2985470, + "normalized_name": "crown's labyrinth" + }, + { + "appid": 2985510, + "normalized_name": "pixel race maker" + }, + { + "appid": 2985520, + "normalized_name": "the player who can't level up" + }, + { + "appid": 2985570, + "normalized_name": "cosmic cosmonaut" + }, + { + "appid": 2985600, + "normalized_name": "mindbreak mansion" + }, + { + "appid": 2985610, + "normalized_name": "the big catch tacklebox" + }, + { + "appid": 2985720, + "normalized_name": "veilcrest trial of the arcane" + }, + { + "appid": 2985740, + "normalized_name": "ocean planet" + }, + { + "appid": 2985750, + "normalized_name": "锈翅 逃离我的家乡 without wings" + }, + { + "appid": 2985760, + "normalized_name": "private eye the young heir" + }, + { + "appid": 2985840, + "normalized_name": "undead onslaught" + }, + { + "appid": 2985860, + "normalized_name": "airship" + }, + { + "appid": 2985890, + "normalized_name": "eleball" + }, + { + "appid": 2985900, + "normalized_name": "中医模拟传承人" + }, + { + "appid": 2985910, + "normalized_name": "survivors of the zombie world" + }, + { + "appid": 2985920, + "normalized_name": "vampvasion" + }, + { + "appid": 2985930, + "normalized_name": "僕、アルバイトォォ!!" + }, + { + "appid": 2985970, + "normalized_name": "brain hack squad" + }, + { + "appid": 2985990, + "normalized_name": "mmm" + }, + { + "appid": 2986010, + "normalized_name": "與妳響起的樂音 our dreammelody" + }, + { + "appid": 2986020, + "normalized_name": "the inbetween" + }, + { + "appid": 2986060, + "normalized_name": "team of titans" + }, + { + "appid": 2986110, + "normalized_name": "good boy" + }, + { + "appid": 2986170, + "normalized_name": "love red" + }, + { + "appid": 2986190, + "normalized_name": "adulting" + }, + { + "appid": 2986240, + "normalized_name": "sugar overdrive" + }, + { + "appid": 2986260, + "normalized_name": "dreamlike love with seira" + }, + { + "appid": 2986300, + "normalized_name": "cappadocia puzzle" + }, + { + "appid": 2986340, + "normalized_name": "flood" + }, + { + "appid": 2986350, + "normalized_name": "immortal's way" + }, + { + "appid": 2986360, + "normalized_name": "sexycraft" + }, + { + "appid": 2986370, + "normalized_name": "food delivery simulator" + }, + { + "appid": 2986390, + "normalized_name": "dead room" + }, + { + "appid": 2986400, + "normalized_name": "roundscape adorevia" + }, + { + "appid": 2986410, + "normalized_name": "perfect dark" + }, + { + "appid": 2986450, + "normalized_name": "metro gravity" + }, + { + "appid": 2986460, + "normalized_name": "death remains" + }, + { + "appid": 2986470, + "normalized_name": "what's a king to a god" + }, + { + "appid": 2986480, + "normalized_name": "baromaro" + }, + { + "appid": 2986580, + "normalized_name": "bricking bots" + }, + { + "appid": 2986600, + "normalized_name": "insight" + }, + { + "appid": 2986620, + "normalized_name": "shadow of the abyss" + }, + { + "appid": 2986630, + "normalized_name": "release me" + }, + { + "appid": 2986640, + "normalized_name": "myth of angels prologue" + }, + { + "appid": 2986650, + "normalized_name": "viking fish" + }, + { + "appid": 2986680, + "normalized_name": "versus purgatory" + }, + { + "appid": 2986690, + "normalized_name": "the art collector" + }, + { + "appid": 2986700, + "normalized_name": "rine the trail of fireflies" + }, + { + "appid": 2986720, + "normalized_name": "incredifall" + }, + { + "appid": 2986780, + "normalized_name": "dead scrap" + }, + { + "appid": 2986790, + "normalized_name": "monster hunting incremental grind forever" + }, + { + "appid": 2986800, + "normalized_name": "poop rocket" + }, + { + "appid": 2986830, + "normalized_name": "cloudome prototype" + }, + { + "appid": 2986940, + "normalized_name": "notecaptor" + }, + { + "appid": 2986980, + "normalized_name": "enigma heart" + }, + { + "appid": 2987010, + "normalized_name": "清明" + }, + { + "appid": 2987030, + "normalized_name": "layer cake" + }, + { + "appid": 2987050, + "normalized_name": "the core" + }, + { + "appid": 2987070, + "normalized_name": "all about maze" + }, + { + "appid": 2987100, + "normalized_name": "temporal salvage" + }, + { + "appid": 2987110, + "normalized_name": "necromancer for a week" + }, + { + "appid": 2987120, + "normalized_name": "river god enshrouded current" + }, + { + "appid": 2987150, + "normalized_name": "josh powlison's button mildly" + }, + { + "appid": 2987160, + "normalized_name": "farming isles" + }, + { + "appid": 2987170, + "normalized_name": "wolffang skullfang saturn tribute boosted" + }, + { + "appid": 2987200, + "normalized_name": "happy corner" + }, + { + "appid": 2987230, + "normalized_name": "metta offline" + }, + { + "appid": 2987250, + "normalized_name": "slime coming" + }, + { + "appid": 2987300, + "normalized_name": "钓鱼钓鱼" + }, + { + "appid": 2987320, + "normalized_name": "animal adventure" + }, + { + "appid": 2987330, + "normalized_name": "アカイロマンション完全版" + }, + { + "appid": 2987340, + "normalized_name": "looping art museum" + }, + { + "appid": 2987350, + "normalized_name": "catly" + }, + { + "appid": 2987370, + "normalized_name": "hidden chibis in combinis" + }, + { + "appid": 2987450, + "normalized_name": "天行镖客:序章" + }, + { + "appid": 2987480, + "normalized_name": "from them" + }, + { + "appid": 2987500, + "normalized_name": "side42 the tavern of infinity" + }, + { + "appid": 2987520, + "normalized_name": "why did the chicken cross the road?" + }, + { + "appid": 2987530, + "normalized_name": "greed defense gold vaults" + }, + { + "appid": 2987540, + "normalized_name": "ban the prologue of gucha gucha" + }, + { + "appid": 2987580, + "normalized_name": "women's school simulator 2022" + }, + { + "appid": 2987610, + "normalized_name": "puzzlemazed" + }, + { + "appid": 2987620, + "normalized_name": "horatio connector 13" + }, + { + "appid": 2987640, + "normalized_name": "emerald dreams sanity platformer quest" + }, + { + "appid": 2987660, + "normalized_name": "cybercum 2069" + }, + { + "appid": 2987670, + "normalized_name": "furry orgy" + }, + { + "appid": 2987680, + "normalized_name": "josplays' escape gamejam april 2024" + }, + { + "appid": 2987720, + "normalized_name": "shadowed descent" + }, + { + "appid": 2987730, + "normalized_name": "irang" + }, + { + "appid": 2987740, + "normalized_name": "the orange" + }, + { + "appid": 2987750, + "normalized_name": "chorus of carcosa" + }, + { + "appid": 2987790, + "normalized_name": "thelastdrive 2335" + }, + { + "appid": 2987800, + "normalized_name": "madoka magica magia exedra" + }, + { + "appid": 2987810, + "normalized_name": "just a die" + }, + { + "appid": 2987830, + "normalized_name": "the nameless city" + }, + { + "appid": 2987850, + "normalized_name": "starving cat" + }, + { + "appid": 2987860, + "normalized_name": "rock the islands" + }, + { + "appid": 2987870, + "normalized_name": "cerebral escape series vol 1" + }, + { + "appid": 2987880, + "normalized_name": "視靈 貳" + }, + { + "appid": 2987910, + "normalized_name": "陀螺乱斗" + }, + { + "appid": 2987920, + "normalized_name": "fpv military kamikaze drone simulator" + }, + { + "appid": 2987930, + "normalized_name": "titleless tale" + }, + { + "appid": 2987970, + "normalized_name": "dual survivors" + }, + { + "appid": 2987990, + "normalized_name": "ropuka" + }, + { + "appid": 2988030, + "normalized_name": "into the fire" + }, + { + "appid": 2988080, + "normalized_name": "simarket supermarket simulator" + }, + { + "appid": 2988090, + "normalized_name": "soul of savarog" + }, + { + "appid": 2988100, + "normalized_name": "invaders x" + }, + { + "appid": 2988120, + "normalized_name": "never be alone" + }, + { + "appid": 2988130, + "normalized_name": "croquettes gang" + }, + { + "appid": 2988160, + "normalized_name": "fear the reaper" + }, + { + "appid": 2988230, + "normalized_name": "watch your eggs!" + }, + { + "appid": 2988290, + "normalized_name": "endless tentacle cave" + }, + { + "appid": 2988300, + "normalized_name": "bugtopia" + }, + { + "appid": 2988330, + "normalized_name": "me & my friend pippa!" + }, + { + "appid": 2988340, + "normalized_name": "journey of harvest" + }, + { + "appid": 2988360, + "normalized_name": "isometro" + }, + { + "appid": 2988390, + "normalized_name": "second room" + }, + { + "appid": 2988400, + "normalized_name": "temple of shadows" + }, + { + "appid": 2988420, + "normalized_name": "fantasy quest" + }, + { + "appid": 2988440, + "normalized_name": "agora project" + }, + { + "appid": 2988450, + "normalized_name": "the untethered void" + }, + { + "appid": 2988460, + "normalized_name": "light de deux" + }, + { + "appid": 2988470, + "normalized_name": "fool's gambit" + }, + { + "appid": 2988490, + "normalized_name": "神殺しの蒼銀" + }, + { + "appid": 2988520, + "normalized_name": "the hell in i" + }, + { + "appid": 2988560, + "normalized_name": "savior syndrome the crimson sun" + }, + { + "appid": 2988620, + "normalized_name": "i hate my waifu streamer" + }, + { + "appid": 2988640, + "normalized_name": "happy runner" + }, + { + "appid": 2988780, + "normalized_name": "rocket poker" + }, + { + "appid": 2988830, + "normalized_name": "parse o rhythm" + }, + { + "appid": 2988850, + "normalized_name": "crabity" + }, + { + "appid": 2988880, + "normalized_name": "誰是被告人 靈魂繪師" + }, + { + "appid": 2988930, + "normalized_name": "corti co." + }, + { + "appid": 2989080, + "normalized_name": "the lonely tree" + }, + { + "appid": 2989090, + "normalized_name": "moving on" + }, + { + "appid": 2989110, + "normalized_name": "rana neida" + }, + { + "appid": 2989140, + "normalized_name": "forest construction vr" + }, + { + "appid": 2989160, + "normalized_name": "super jetboy world" + }, + { + "appid": 2989180, + "normalized_name": "darwin's paradox!" + }, + { + "appid": 2989200, + "normalized_name": "shattered melodies" + }, + { + "appid": 2989230, + "normalized_name": "space intruders alliance" + }, + { + "appid": 2989270, + "normalized_name": "a tithe in blood" + }, + { + "appid": 2989350, + "normalized_name": "welcome to ela" + }, + { + "appid": 2989390, + "normalized_name": "puzzle garden" + }, + { + "appid": 2989400, + "normalized_name": "starstream" + }, + { + "appid": 2989430, + "normalized_name": "cursor & meow" + }, + { + "appid": 2989450, + "normalized_name": "trancewave neo" + }, + { + "appid": 2989460, + "normalized_name": "风物恋歌(the memory of mallet)" + }, + { + "appid": 2989500, + "normalized_name": "aerial cleaner" + }, + { + "appid": 2989660, + "normalized_name": "firework syndrome" + }, + { + "appid": 2989670, + "normalized_name": "phoenix contract" + }, + { + "appid": 2989680, + "normalized_name": "twizzle puzzle dinosaurs" + }, + { + "appid": 2989690, + "normalized_name": "squishy cats" + }, + { + "appid": 2989700, + "normalized_name": "fluff's adventure a tale of fur and steel" + }, + { + "appid": 2989730, + "normalized_name": "poobo" + }, + { + "appid": 2989770, + "normalized_name": "kurage life" + }, + { + "appid": 2989800, + "normalized_name": "tales of the valente" + }, + { + "appid": 2989820, + "normalized_name": "pocket waifu desktop pet" + }, + { + "appid": 2989830, + "normalized_name": "park it!" + }, + { + "appid": 2989840, + "normalized_name": "banshee demon girl" + }, + { + "appid": 2989860, + "normalized_name": "ells tales egg" + }, + { + "appid": 2989870, + "normalized_name": "waifu impact 2" + }, + { + "appid": 2989890, + "normalized_name": "formula circus" + }, + { + "appid": 2989930, + "normalized_name": "from fire emergence" + }, + { + "appid": 2989950, + "normalized_name": "the bathhouse | 地獄銭湯 restored" + }, + { + "appid": 2989980, + "normalized_name": "三國幻想戰記" + }, + { + "appid": 2990020, + "normalized_name": "enosis" + }, + { + "appid": 2990040, + "normalized_name": "last mage" + }, + { + "appid": 2990050, + "normalized_name": "meta match" + }, + { + "appid": 2990060, + "normalized_name": "moto rush reborn" + }, + { + "appid": 2990080, + "normalized_name": "the lost gallery" + }, + { + "appid": 2990090, + "normalized_name": "avaricity new shadows" + }, + { + "appid": 2990120, + "normalized_name": "instatok tycoon" + }, + { + "appid": 2990180, + "normalized_name": "lady's escape" + }, + { + "appid": 2990190, + "normalized_name": "magiscapes" + }, + { + "appid": 2990200, + "normalized_name": "tower of hanoi" + }, + { + "appid": 2990210, + "normalized_name": "reberryon" + }, + { + "appid": 2990220, + "normalized_name": "up down all a round" + }, + { + "appid": 2990230, + "normalized_name": "don't win" + }, + { + "appid": 2990240, + "normalized_name": "e tech simulator" + }, + { + "appid": 2990250, + "normalized_name": "emo quest xd" + }, + { + "appid": 2990300, + "normalized_name": "snake crossing" + }, + { + "appid": 2990330, + "normalized_name": "top shot" + }, + { + "appid": 2990340, + "normalized_name": "omega knockout punch boxing" + }, + { + "appid": 2990360, + "normalized_name": "nemiza's verdict" + }, + { + "appid": 2990370, + "normalized_name": "clawpunk" + }, + { + "appid": 2990390, + "normalized_name": "rage anger management" + }, + { + "appid": 2990400, + "normalized_name": "aberrant nights" + }, + { + "appid": 2990450, + "normalized_name": "turn based boxing tactics" + }, + { + "appid": 2990460, + "normalized_name": "thoko" + }, + { + "appid": 2990470, + "normalized_name": "seabreak" + }, + { + "appid": 2990490, + "normalized_name": "rise of tochos" + }, + { + "appid": 2990500, + "normalized_name": "necromancer's revenge" + }, + { + "appid": 2990510, + "normalized_name": "skybrew entropic strategist" + }, + { + "appid": 2990550, + "normalized_name": "formula racing manager" + }, + { + "appid": 2990560, + "normalized_name": "hyperspace" + }, + { + "appid": 2990570, + "normalized_name": "color splash fairies" + }, + { + "appid": 2990580, + "normalized_name": "medieval chaos" + }, + { + "appid": 2990600, + "normalized_name": "fireside feelings" + }, + { + "appid": 2990620, + "normalized_name": "mr monkey & touc" + }, + { + "appid": 2990640, + "normalized_name": "endoparasitic 2" + }, + { + "appid": 2990650, + "normalized_name": "winter girl" + }, + { + "appid": 2990670, + "normalized_name": "risk & riches" + }, + { + "appid": 2990680, + "normalized_name": "corporate beatdown" + }, + { + "appid": 2990710, + "normalized_name": "orbit" + }, + { + "appid": 2990730, + "normalized_name": "oedipus/antigone" + }, + { + "appid": 2990760, + "normalized_name": "balkan bloodbath" + }, + { + "appid": 2990800, + "normalized_name": "intergalacto 1" + }, + { + "appid": 2990840, + "normalized_name": "lost resolve" + }, + { + "appid": 2990850, + "normalized_name": "rainbow valley" + }, + { + "appid": 2990860, + "normalized_name": "tale of souls" + }, + { + "appid": 2990880, + "normalized_name": "moomi & spike" + }, + { + "appid": 2990910, + "normalized_name": "abducted" + }, + { + "appid": 2990920, + "normalized_name": "stop pawssport check" + }, + { + "appid": 2990930, + "normalized_name": "casino heist escape room" + }, + { + "appid": 2990970, + "normalized_name": "eternal rain" + }, + { + "appid": 2990990, + "normalized_name": "brawlers of duality" + }, + { + "appid": 2991110, + "normalized_name": "wilderless meadowfell" + }, + { + "appid": 2991150, + "normalized_name": "project kinesis" + }, + { + "appid": 2991210, + "normalized_name": "blood & play" + }, + { + "appid": 2991250, + "normalized_name": "frog 'n' roll" + }, + { + "appid": 2991290, + "normalized_name": "规则怪谈之镇尸" + }, + { + "appid": 2991310, + "normalized_name": "夢幻桜楼閣" + }, + { + "appid": 2991320, + "normalized_name": "master level maker" + }, + { + "appid": 2991360, + "normalized_name": "synthetics mecha vr" + }, + { + "appid": 2991380, + "normalized_name": "上古河图" + }, + { + "appid": 2991390, + "normalized_name": "kozue's strange journey 2" + }, + { + "appid": 2991400, + "normalized_name": "himegashima island" + }, + { + "appid": 2991430, + "normalized_name": "asteros" + }, + { + "appid": 2991450, + "normalized_name": "deckland" + }, + { + "appid": 2991500, + "normalized_name": "hotelnomaly" + }, + { + "appid": 2991520, + "normalized_name": "loop beginning of never ending journey" + }, + { + "appid": 2991540, + "normalized_name": "revenant" + }, + { + "appid": 2991590, + "normalized_name": "farmageddon undead" + }, + { + "appid": 2991600, + "normalized_name": "the barnhouse killer" + }, + { + "appid": 2991630, + "normalized_name": "box dog" + }, + { + "appid": 2991680, + "normalized_name": "十元怎么买下世界" + }, + { + "appid": 2991690, + "normalized_name": "spy fever duels in deception" + }, + { + "appid": 2991730, + "normalized_name": "insert item apocalypse" + }, + { + "appid": 2991740, + "normalized_name": "z rush" + }, + { + "appid": 2991810, + "normalized_name": "beyond the island" + }, + { + "appid": 2991820, + "normalized_name": "superhyperhappygame" + }, + { + "appid": 2991850, + "normalized_name": "clumsy coffee simulator" + }, + { + "appid": 2991860, + "normalized_name": "undersea waves and adventures" + }, + { + "appid": 2991870, + "normalized_name": "arenion" + }, + { + "appid": 2991890, + "normalized_name": "cauldron caution" + }, + { + "appid": 2991910, + "normalized_name": "lilly and the murder in a dream" + }, + { + "appid": 2991970, + "normalized_name": "space light" + }, + { + "appid": 2991980, + "normalized_name": "러브크레센도" + }, + { + "appid": 2991990, + "normalized_name": "嗨喵乐园(hipurrland)" + }, + { + "appid": 2992050, + "normalized_name": "survive the squids" + }, + { + "appid": 2992170, + "normalized_name": "dead war rise of combat" + }, + { + "appid": 2992180, + "normalized_name": "apocalypse delivery service" + }, + { + "appid": 2992190, + "normalized_name": "blue hunter" + }, + { + "appid": 2992200, + "normalized_name": "airport antiterror" + }, + { + "appid": 2992210, + "normalized_name": "beyond the walls" + }, + { + "appid": 2992220, + "normalized_name": "i did it all for the cookie!" + }, + { + "appid": 2992230, + "normalized_name": "greedy goose" + }, + { + "appid": 2992240, + "normalized_name": "banebush" + }, + { + "appid": 2992320, + "normalized_name": "kioku" + }, + { + "appid": 2992340, + "normalized_name": "fracctal monsters" + }, + { + "appid": 2992360, + "normalized_name": "bloom echo" + }, + { + "appid": 2992460, + "normalized_name": "soul park" + }, + { + "appid": 2992470, + "normalized_name": "rustwing" + }, + { + "appid": 2992490, + "normalized_name": "epic quest" + }, + { + "appid": 2992500, + "normalized_name": "coin factory" + }, + { + "appid": 2992510, + "normalized_name": "reflection link" + }, + { + "appid": 2992520, + "normalized_name": "galaxy flavored heroes" + }, + { + "appid": 2992550, + "normalized_name": "dull acres" + }, + { + "appid": 2992570, + "normalized_name": "flan's ms" + }, + { + "appid": 2992580, + "normalized_name": "ventreville a cure for sorrow" + }, + { + "appid": 2992650, + "normalized_name": "hyperchannel" + }, + { + "appid": 2992700, + "normalized_name": "reflex unit strike ops" + }, + { + "appid": 2992730, + "normalized_name": "laruaville 15" + }, + { + "appid": 2992740, + "normalized_name": "towerheart" + }, + { + "appid": 2992790, + "normalized_name": "catopy" + }, + { + "appid": 2992800, + "normalized_name": "jnz nightmare girls" + }, + { + "appid": 2992810, + "normalized_name": "cos 249" + }, + { + "appid": 2992920, + "normalized_name": "cats clicker" + }, + { + "appid": 2992980, + "normalized_name": "the heavens" + }, + { + "appid": 2993000, + "normalized_name": "saudade" + }, + { + "appid": 2993020, + "normalized_name": "arkwhale" + }, + { + "appid": 2993040, + "normalized_name": "petrifica" + }, + { + "appid": 2993080, + "normalized_name": "survive in ankara" + }, + { + "appid": 2993100, + "normalized_name": "spacewing war 2" + }, + { + "appid": 2993140, + "normalized_name": "for whom the stars shine" + }, + { + "appid": 2993180, + "normalized_name": "hentai puzzle girls" + }, + { + "appid": 2993210, + "normalized_name": "skyleague" + }, + { + "appid": 2993370, + "normalized_name": "red thread" + }, + { + "appid": 2993400, + "normalized_name": "secret of lands" + }, + { + "appid": 2993430, + "normalized_name": "gmu blastmaster battle" + }, + { + "appid": 2993440, + "normalized_name": "arbor" + }, + { + "appid": 2993460, + "normalized_name": "hentai senpai apocalypse girls" + }, + { + "appid": 2993500, + "normalized_name": "shadowbox mausoleum of natural history" + }, + { + "appid": 2993510, + "normalized_name": "magevscastle" + }, + { + "appid": 2993550, + "normalized_name": "stellar poetry" + }, + { + "appid": 2993570, + "normalized_name": "supermarket simulator vr" + }, + { + "appid": 2993650, + "normalized_name": "hentai tales backyard 33rd" + }, + { + "appid": 2993660, + "normalized_name": "hentai tales bunny hole" + }, + { + "appid": 2993680, + "normalized_name": "天缘传说" + }, + { + "appid": 2993690, + "normalized_name": "vs. self" + }, + { + "appid": 2993720, + "normalized_name": "cage of roses" + }, + { + "appid": 2993740, + "normalized_name": "五行封印:无限" + }, + { + "appid": 2993770, + "normalized_name": "우리들의 4분 33초" + }, + { + "appid": 2993780, + "normalized_name": "fantasy life i the girl who steals time" + }, + { + "appid": 2993810, + "normalized_name": "seekers of darkness" + }, + { + "appid": 2993820, + "normalized_name": "galaxy chronicle echoes of stearone" + }, + { + "appid": 2993920, + "normalized_name": "revived house" + }, + { + "appid": 2993950, + "normalized_name": "fangs & forges" + }, + { + "appid": 2993970, + "normalized_name": "goblin auto club manager" + }, + { + "appid": 2993980, + "normalized_name": "masterchef learn to cook!" + }, + { + "appid": 2994010, + "normalized_name": "chains of freedom" + }, + { + "appid": 2994020, + "normalized_name": "puck" + }, + { + "appid": 2994050, + "normalized_name": "gladmort" + }, + { + "appid": 2994070, + "normalized_name": "路尼亞戰記" + }, + { + "appid": 2994080, + "normalized_name": "the cake" + }, + { + "appid": 2994090, + "normalized_name": "dawn of kemet" + }, + { + "appid": 2994130, + "normalized_name": "動画で聞くあの曲でリズムゲーム" + }, + { + "appid": 2994150, + "normalized_name": "konfronto" + }, + { + "appid": 2994190, + "normalized_name": "money simulator" + }, + { + "appid": 2994200, + "normalized_name": "ritter & rotwein" + }, + { + "appid": 2994220, + "normalized_name": "azaran islands of the jinn" + }, + { + "appid": 2994240, + "normalized_name": "gods vs horrors" + }, + { + "appid": 2994250, + "normalized_name": "beer runner" + }, + { + "appid": 2994260, + "normalized_name": "the assistant season 2" + }, + { + "appid": 2994320, + "normalized_name": "moccoletti" + }, + { + "appid": 2994430, + "normalized_name": "sarah's adventure time travel" + }, + { + "appid": 2994490, + "normalized_name": "rev up" + }, + { + "appid": 2994540, + "normalized_name": "sweet slimes revenge" + }, + { + "appid": 2994560, + "normalized_name": "ranch store simulator" + }, + { + "appid": 2994600, + "normalized_name": "lysward" + }, + { + "appid": 2994630, + "normalized_name": "子どもたちの庭" + }, + { + "appid": 2994660, + "normalized_name": "rpm road punk mayhem" + }, + { + "appid": 2994680, + "normalized_name": "nobodies silent blood" + }, + { + "appid": 2994730, + "normalized_name": "zooika" + }, + { + "appid": 2994780, + "normalized_name": "the protagonish" + }, + { + "appid": 2994790, + "normalized_name": "summer scent" + }, + { + "appid": 2994800, + "normalized_name": "cherophobia" + }, + { + "appid": 2994810, + "normalized_name": "zoey horny roommates" + }, + { + "appid": 2994850, + "normalized_name": "poseidon" + }, + { + "appid": 2994880, + "normalized_name": "gimmick! 2" + }, + { + "appid": 2994900, + "normalized_name": "kiteboarding" + }, + { + "appid": 2994910, + "normalized_name": "功夫至尊" + }, + { + "appid": 2994920, + "normalized_name": "turbo live" + }, + { + "appid": 2994930, + "normalized_name": "rust rivalry" + }, + { + "appid": 2994940, + "normalized_name": "stem defense" + }, + { + "appid": 2994950, + "normalized_name": "throw bro" + }, + { + "appid": 2994970, + "normalized_name": "domus abscondita" + }, + { + "appid": 2994990, + "normalized_name": "wool at the gates" + }, + { + "appid": 2995080, + "normalized_name": "pafupafu" + }, + { + "appid": 2995100, + "normalized_name": "deadwire" + }, + { + "appid": 2995120, + "normalized_name": "rogue's realm the old god" + }, + { + "appid": 2995130, + "normalized_name": "echoes of forgotten guilt" + }, + { + "appid": 2995150, + "normalized_name": "linksider" + }, + { + "appid": 2995190, + "normalized_name": "retale" + }, + { + "appid": 2995210, + "normalized_name": "kazimir and the halloween feast" + }, + { + "appid": 2995220, + "normalized_name": "tipsy woods" + }, + { + "appid": 2995230, + "normalized_name": "sandwalkers prologue" + }, + { + "appid": 2995260, + "normalized_name": "depth diver" + }, + { + "appid": 2995270, + "normalized_name": "mars lives !!" + }, + { + "appid": 2995290, + "normalized_name": "king's heart" + }, + { + "appid": 2995330, + "normalized_name": "leaf town" + }, + { + "appid": 2995390, + "normalized_name": "neko nin exheart spin!" + }, + { + "appid": 2995450, + "normalized_name": "clutchtime basketball deckbuilder" + }, + { + "appid": 2995460, + "normalized_name": "runecraft" + }, + { + "appid": 2995480, + "normalized_name": "asiakingdom" + }, + { + "appid": 2995500, + "normalized_name": "fantasykingdom" + }, + { + "appid": 2995530, + "normalized_name": "escape from hornhead" + }, + { + "appid": 2995550, + "normalized_name": "office dreaming" + }, + { + "appid": 2995560, + "normalized_name": "wildkeepers rising" + }, + { + "appid": 2995570, + "normalized_name": "croak and solve" + }, + { + "appid": 2995650, + "normalized_name": "dungeons of dreadrock 2 the dead king's secret" + }, + { + "appid": 2995680, + "normalized_name": "dinosaur huntress" + }, + { + "appid": 2995700, + "normalized_name": "little green frog" + }, + { + "appid": 2995710, + "normalized_name": "hup hup the cupcake" + }, + { + "appid": 2995720, + "normalized_name": "demonak hunter's initiation" + }, + { + "appid": 2995750, + "normalized_name": "valor of battle" + }, + { + "appid": 2995790, + "normalized_name": "dark throne" + }, + { + "appid": 2995830, + "normalized_name": "hexalert" + }, + { + "appid": 2995880, + "normalized_name": "the invading dark" + }, + { + "appid": 2995920, + "normalized_name": "it takes two friend's pass" + }, + { + "appid": 2995940, + "normalized_name": "cloud crashers" + }, + { + "appid": 2995970, + "normalized_name": "body of mine" + }, + { + "appid": 2995990, + "normalized_name": "project nova" + }, + { + "appid": 2996000, + "normalized_name": "faun town" + }, + { + "appid": 2996020, + "normalized_name": "jroguepg" + }, + { + "appid": 2996040, + "normalized_name": "teenage mutant ninja turtles splintered fate" + }, + { + "appid": 2996070, + "normalized_name": "railblazer" + }, + { + "appid": 2996080, + "normalized_name": "tamashika" + }, + { + "appid": 2996090, + "normalized_name": "源战役" + }, + { + "appid": 2996100, + "normalized_name": "the hole town | 穴の町" + }, + { + "appid": 2996110, + "normalized_name": "nine in flight" + }, + { + "appid": 2996120, + "normalized_name": "are we in love?" + }, + { + "appid": 2996150, + "normalized_name": "zodiac mountain 【生肖山】" + }, + { + "appid": 2996190, + "normalized_name": "ダンジョン人狼" + }, + { + "appid": 2996280, + "normalized_name": "デュエホロ (dueholo)" + }, + { + "appid": 2996290, + "normalized_name": "jigsaw industry" + }, + { + "appid": 2996310, + "normalized_name": "manny's 2" + }, + { + "appid": 2996320, + "normalized_name": "xrun3" + }, + { + "appid": 2996390, + "normalized_name": "scavenged by sunset" + }, + { + "appid": 2996430, + "normalized_name": "urban" + }, + { + "appid": 2996460, + "normalized_name": "链接塔防 link tower" + }, + { + "appid": 2996520, + "normalized_name": "dummy guyz" + }, + { + "appid": 2996540, + "normalized_name": "the good old days" + }, + { + "appid": 2996570, + "normalized_name": "手办冒险团" + }, + { + "appid": 2996580, + "normalized_name": "the new rome" + }, + { + "appid": 2996600, + "normalized_name": "晨海星澜 追忆篇:序章" + }, + { + "appid": 2996620, + "normalized_name": "godforged origins of ozgalor" + }, + { + "appid": 2996640, + "normalized_name": "insectum epic battles of bugs" + }, + { + "appid": 2996650, + "normalized_name": "true vikings" + }, + { + "appid": 2996660, + "normalized_name": "怪物的王座" + }, + { + "appid": 2996680, + "normalized_name": "nethermage" + }, + { + "appid": 2996770, + "normalized_name": "ladder it up!" + }, + { + "appid": 2996800, + "normalized_name": "フラグ立てときました。" + }, + { + "appid": 2996810, + "normalized_name": "twilight canyon" + }, + { + "appid": 2996850, + "normalized_name": "the neighbor escape room" + }, + { + "appid": 2996860, + "normalized_name": "fix this house" + }, + { + "appid": 2996900, + "normalized_name": "candy crawler" + }, + { + "appid": 2996930, + "normalized_name": "nanodeath" + }, + { + "appid": 2996960, + "normalized_name": "space base" + }, + { + "appid": 2996970, + "normalized_name": "breadborn" + }, + { + "appid": 2996990, + "normalized_name": "flag clicker" + }, + { + "appid": 2997030, + "normalized_name": "age of the deep" + }, + { + "appid": 2997060, + "normalized_name": "hunt the pale gods" + }, + { + "appid": 2997110, + "normalized_name": "slasher origins" + }, + { + "appid": 2997120, + "normalized_name": "lustful butler and charming sisters" + }, + { + "appid": 2997190, + "normalized_name": "astro arena" + }, + { + "appid": 2997220, + "normalized_name": "改名師 kaimeishi" + }, + { + "appid": 2997240, + "normalized_name": "coin eruption" + }, + { + "appid": 2997260, + "normalized_name": "satan" + }, + { + "appid": 2997290, + "normalized_name": "a tiny eternity" + }, + { + "appid": 2997310, + "normalized_name": "teatime samurai" + }, + { + "appid": 2997400, + "normalized_name": "no work no life" + }, + { + "appid": 2997410, + "normalized_name": "ashes of idunn tales of fimbulwinter" + }, + { + "appid": 2997450, + "normalized_name": "only up skibidi" + }, + { + "appid": 2997460, + "normalized_name": "stick infinite kingdom" + }, + { + "appid": 2997490, + "normalized_name": "kiki" + }, + { + "appid": 2997580, + "normalized_name": "cosmic outpost" + }, + { + "appid": 2997600, + "normalized_name": "devils run" + }, + { + "appid": 2997660, + "normalized_name": "apano syn fighter" + }, + { + "appid": 2997670, + "normalized_name": "infinite innocence" + }, + { + "appid": 2997780, + "normalized_name": "pixel pixie" + }, + { + "appid": 2997830, + "normalized_name": "sooty's revenge" + }, + { + "appid": 2997840, + "normalized_name": "animalkind" + }, + { + "appid": 2997860, + "normalized_name": "journey to earth" + }, + { + "appid": 2997870, + "normalized_name": "the standard model" + }, + { + "appid": 2997880, + "normalized_name": "sunset high" + }, + { + "appid": 2997890, + "normalized_name": "beetle ninja" + }, + { + "appid": 2997900, + "normalized_name": "divine omen" + }, + { + "appid": 2997920, + "normalized_name": "croak crusader spawn of the spore spectre" + }, + { + "appid": 2997930, + "normalized_name": "reflections of life the shattered timeline collector's" + }, + { + "appid": 2997970, + "normalized_name": "underground world war" + }, + { + "appid": 2997980, + "normalized_name": "natsu no sagashimono ~what we found that summer~" + }, + { + "appid": 2998030, + "normalized_name": "狂気の宴 ~禁断の誘惑に溺れる夜~(the feast of madness a night of drowning in forbidden temptation )" + }, + { + "appid": 2998040, + "normalized_name": "bloodsaint" + }, + { + "appid": 2998050, + "normalized_name": "abrakajumpa" + }, + { + "appid": 2998060, + "normalized_name": "mental math madness" + }, + { + "appid": 2998260, + "normalized_name": "mr. pompy's extravagant quiz" + }, + { + "appid": 2998290, + "normalized_name": "weirdo" + }, + { + "appid": 2998300, + "normalized_name": "perseverance" + }, + { + "appid": 2998310, + "normalized_name": "summer mirage" + }, + { + "appid": 2998320, + "normalized_name": "starrymonogatari student's terminal" + }, + { + "appid": 2998380, + "normalized_name": "spell boy" + }, + { + "appid": 2998430, + "normalized_name": "cyber freeuse fantasy" + }, + { + "appid": 2998440, + "normalized_name": "欢迎光临!心动咖啡厅" + }, + { + "appid": 2998480, + "normalized_name": "传始至终 transmission from start to end" + }, + { + "appid": 2998490, + "normalized_name": "crimson incursion" + }, + { + "appid": 2998500, + "normalized_name": "arderico's journey" + }, + { + "appid": 2998560, + "normalized_name": "caïssa board dedicated server" + }, + { + "appid": 2998590, + "normalized_name": "mazeing" + }, + { + "appid": 2998600, + "normalized_name": "back from the other world i missed love." + }, + { + "appid": 2998610, + "normalized_name": "我在末日造方舟" + }, + { + "appid": 2998650, + "normalized_name": "neon squad tactics" + }, + { + "appid": 2998670, + "normalized_name": "flying frogs" + }, + { + "appid": 2998700, + "normalized_name": "playable alpha" + }, + { + "appid": 2998730, + "normalized_name": "gallery x" + }, + { + "appid": 2998750, + "normalized_name": "vending machine business simulator" + }, + { + "appid": 2998760, + "normalized_name": "the capital city" + }, + { + "appid": 2998840, + "normalized_name": "paris belle epoque" + }, + { + "appid": 2998850, + "normalized_name": "100 hidden cthulhu fish" + }, + { + "appid": 2998860, + "normalized_name": "the broken republic" + }, + { + "appid": 2998880, + "normalized_name": "hot & lewd miami" + }, + { + "appid": 2998920, + "normalized_name": "port of jumanah" + }, + { + "appid": 2998940, + "normalized_name": "xeroes" + }, + { + "appid": 2998970, + "normalized_name": "повестка совместный побег" + }, + { + "appid": 2998990, + "normalized_name": "tilemancer dungeon" + }, + { + "appid": 2999000, + "normalized_name": "后室迷失之境backrooms:the lost" + }, + { + "appid": 2999020, + "normalized_name": "finger fury showdown" + }, + { + "appid": 2999030, + "normalized_name": "exploding kittens 2" + }, + { + "appid": 2999040, + "normalized_name": "times of survival" + }, + { + "appid": 2999050, + "normalized_name": "rising army" + }, + { + "appid": 2999060, + "normalized_name": "sejm the game" + }, + { + "appid": 2999070, + "normalized_name": "monster 3" + }, + { + "appid": 2999090, + "normalized_name": "survivor world" + }, + { + "appid": 2999120, + "normalized_name": "retrieval" + }, + { + "appid": 2999130, + "normalized_name": "flex riders" + }, + { + "appid": 2999180, + "normalized_name": "king's subsidy" + }, + { + "appid": 2999220, + "normalized_name": "cupig's key collectathon" + }, + { + "appid": 2999230, + "normalized_name": "word on the hook" + }, + { + "appid": 2999240, + "normalized_name": "tomb nightmares" + }, + { + "appid": 2999250, + "normalized_name": "katto rising tides" + }, + { + "appid": 2999260, + "normalized_name": "low batt" + }, + { + "appid": 2999270, + "normalized_name": "shelley manor" + }, + { + "appid": 2999280, + "normalized_name": "mystery detective adventure collector's" + }, + { + "appid": 2999480, + "normalized_name": "polyclassic wild vr" + }, + { + "appid": 2999500, + "normalized_name": "stuntboost" + }, + { + "appid": 2999510, + "normalized_name": "care bears to the rescue" + }, + { + "appid": 2999540, + "normalized_name": "pixelitos spritle royale" + }, + { + "appid": 2999670, + "normalized_name": "front edge" + }, + { + "appid": 2999680, + "normalized_name": "lost estate agent" + }, + { + "appid": 2999690, + "normalized_name": "proyecto infernal" + }, + { + "appid": 2999700, + "normalized_name": "medieval garb simulator" + }, + { + "appid": 2999710, + "normalized_name": "もういいかい?| unsought" + }, + { + "appid": 2999720, + "normalized_name": "bump in the night" + }, + { + "appid": 2999740, + "normalized_name": "books upon books bookshop simulator" + }, + { + "appid": 2999750, + "normalized_name": "tehnodrom" + }, + { + "appid": 2999760, + "normalized_name": "falco totem destroyer" + }, + { + "appid": 2999770, + "normalized_name": "flying tobacco eggs" + }, + { + "appid": 2999780, + "normalized_name": "skeletos sword" + }, + { + "appid": 2999790, + "normalized_name": "just skill shooter 4" + }, + { + "appid": 2999800, + "normalized_name": "the mythical city 2" + }, + { + "appid": 2999810, + "normalized_name": "the mythical city 3" + }, + { + "appid": 2999820, + "normalized_name": "highland huntress" + }, + { + "appid": 2999860, + "normalized_name": "while mom's away" + }, + { + "appid": 2999870, + "normalized_name": "doodle hunt search hidden items" + }, + { + "appid": 2999900, + "normalized_name": "flightless star" + }, + { + "appid": 2999910, + "normalized_name": "everlasting tomorrow" + }, + { + "appid": 2999930, + "normalized_name": "hidden square" + }, + { + "appid": 2999940, + "normalized_name": "bankshot launchers" + }, + { + "appid": 2999960, + "normalized_name": "casino rogue" + }, + { + "appid": 2999990, + "normalized_name": "rogue tiles" + }, + { + "appid": 3000000, + "normalized_name": "pwn!" + }, + { + "appid": 3000020, + "normalized_name": "the south island" + }, + { + "appid": 3000030, + "normalized_name": "gaiadon eternal quest" + }, + { + "appid": 3000080, + "normalized_name": "life sim" + }, + { + "appid": 3000120, + "normalized_name": "fish fear me" + }, + { + "appid": 3000130, + "normalized_name": "ship on wheels" + }, + { + "appid": 3000150, + "normalized_name": "chrome jumper" + }, + { + "appid": 3000230, + "normalized_name": "reproach" + }, + { + "appid": 3000260, + "normalized_name": "megachickens deckbuilder roguelike" + }, + { + "appid": 3000280, + "normalized_name": "sexcalibur knights of the pound table" + }, + { + "appid": 3000310, + "normalized_name": "cain × nica" + }, + { + "appid": 3000320, + "normalized_name": "bdsm sex episode 6" + }, + { + "appid": 3000340, + "normalized_name": "nā ʻoumuamua" + }, + { + "appid": 3000360, + "normalized_name": "e sports hockey league" + }, + { + "appid": 3000370, + "normalized_name": "ritual static" + }, + { + "appid": 3000410, + "normalized_name": "floink yoink" + }, + { + "appid": 3000420, + "normalized_name": "snowsquall grip" + }, + { + "appid": 3000460, + "normalized_name": "the path into the abyss" + }, + { + "appid": 3000470, + "normalized_name": "god crafter" + }, + { + "appid": 3000490, + "normalized_name": "cave crawler 2" + }, + { + "appid": 3000510, + "normalized_name": "noblemen 1941" + }, + { + "appid": 3000520, + "normalized_name": "satan moans" + }, + { + "appid": 3000580, + "normalized_name": "cute techno slayer" + }, + { + "appid": 3000830, + "normalized_name": "eternal labyrinth" + }, + { + "appid": 3000850, + "normalized_name": "kuiper belt survivor" + }, + { + "appid": 3000860, + "normalized_name": "vterm atc simulator" + }, + { + "appid": 3000910, + "normalized_name": "defender's squad the last ride" + }, + { + "appid": 3000960, + "normalized_name": "吸血鬼の花嫁 ヴァンプドールのはなよめ the novel game" + }, + { + "appid": 3000970, + "normalized_name": "table flip simulator" + }, + { + "appid": 3000990, + "normalized_name": "scrabbleman" + }, + { + "appid": 3001000, + "normalized_name": "最后的防线" + }, + { + "appid": 3001020, + "normalized_name": "garden paradise" + }, + { + "appid": 3001030, + "normalized_name": "幸存者法则 survivor rule" + }, + { + "appid": 3001060, + "normalized_name": "funky panic attack" + }, + { + "appid": 3001070, + "normalized_name": "逐鹿问鼎:君王成长计划/strive for power king growth program" + }, + { + "appid": 3001100, + "normalized_name": "unholy jail trpg" + }, + { + "appid": 3001110, + "normalized_name": "olaf the boozer" + }, + { + "appid": 3001150, + "normalized_name": "truth trail exorcism of deception" + }, + { + "appid": 3001160, + "normalized_name": "真愿交错" + }, + { + "appid": 3001200, + "normalized_name": "tails noir rebel rush" + }, + { + "appid": 3001280, + "normalized_name": "make your country great again" + }, + { + "appid": 3001310, + "normalized_name": "treepury" + }, + { + "appid": 3001330, + "normalized_name": "forest heroes" + }, + { + "appid": 3001340, + "normalized_name": "▼スライム娘は人間と友達になりたいようだ+" + }, + { + "appid": 3001370, + "normalized_name": "meow path" + }, + { + "appid": 3001440, + "normalized_name": "リンカネーション・ジャーニー journey of reincarnation" + }, + { + "appid": 3001460, + "normalized_name": "九州之士" + }, + { + "appid": 3001560, + "normalized_name": "japan trip" + }, + { + "appid": 3001570, + "normalized_name": "wyrd waters" + }, + { + "appid": 3001620, + "normalized_name": "gun crate raccoon" + }, + { + "appid": 3001640, + "normalized_name": "the bucketlist tourist" + }, + { + "appid": 3001650, + "normalized_name": "closed galaxy ~ワタツミより愛をこめて~" + }, + { + "appid": 3001670, + "normalized_name": "bean to me!" + }, + { + "appid": 3001730, + "normalized_name": "[bober bros] it's just a prank" + }, + { + "appid": 3001740, + "normalized_name": "pelican harbor" + }, + { + "appid": 3001750, + "normalized_name": "humay" + }, + { + "appid": 3001760, + "normalized_name": "down the shaft" + }, + { + "appid": 3001780, + "normalized_name": "水相" + }, + { + "appid": 3001790, + "normalized_name": "nuclear sub prologue" + }, + { + "appid": 3001810, + "normalized_name": "モモチヨのモノノケ退治" + }, + { + "appid": 3001830, + "normalized_name": "crosscraze" + }, + { + "appid": 3001870, + "normalized_name": "boob shaker" + }, + { + "appid": 3001880, + "normalized_name": "over the horizon" + }, + { + "appid": 3001890, + "normalized_name": "cross brawl" + }, + { + "appid": 3001900, + "normalized_name": "manga rpg" + }, + { + "appid": 3001920, + "normalized_name": "tokai girl block breaking rpg" + }, + { + "appid": 3001930, + "normalized_name": "dungeon nights" + }, + { + "appid": 3001970, + "normalized_name": "coloring game 5" + }, + { + "appid": 3002000, + "normalized_name": "virus hunter adult only" + }, + { + "appid": 3002010, + "normalized_name": "split decision" + }, + { + "appid": 3002040, + "normalized_name": "dofamine vr" + }, + { + "appid": 3002060, + "normalized_name": "brass" + }, + { + "appid": 3002070, + "normalized_name": "a better world" + }, + { + "appid": 3002090, + "normalized_name": "rally mechanic simulator light" + }, + { + "appid": 3002100, + "normalized_name": "wheel of fates" + }, + { + "appid": 3002140, + "normalized_name": "noah and the sea" + }, + { + "appid": 3002170, + "normalized_name": "kingdoms of lost valleys" + }, + { + "appid": 3002180, + "normalized_name": "the town of downpour" + }, + { + "appid": 3002220, + "normalized_name": "valdis" + }, + { + "appid": 3002330, + "normalized_name": "love 15" + }, + { + "appid": 3002340, + "normalized_name": "sunset solitaire" + }, + { + "appid": 3002440, + "normalized_name": "morsomnia 0" + }, + { + "appid": 3002470, + "normalized_name": "drone ‘em all" + }, + { + "appid": 3002500, + "normalized_name": "goldenheart" + }, + { + "appid": 3002510, + "normalized_name": "repose" + }, + { + "appid": 3002520, + "normalized_name": "gummy nightmares" + }, + { + "appid": 3002540, + "normalized_name": "the last maestro" + }, + { + "appid": 3002550, + "normalized_name": "shadow sacrament the roots of evil" + }, + { + "appid": 3002560, + "normalized_name": "containment initiative 2" + }, + { + "appid": 3002570, + "normalized_name": "nymphomaniac sex addict" + }, + { + "appid": 3002580, + "normalized_name": "skullstars supernova" + }, + { + "appid": 3002610, + "normalized_name": "pebbles quest" + }, + { + "appid": 3002620, + "normalized_name": "football referee simulator" + }, + { + "appid": 3002650, + "normalized_name": "death by deduction" + }, + { + "appid": 3002700, + "normalized_name": "aria das echo der vergessenen zeit" + }, + { + "appid": 3002720, + "normalized_name": "negative energy" + }, + { + "appid": 3002740, + "normalized_name": "project solaris" + }, + { + "appid": 3002780, + "normalized_name": "shadow of the orient" + }, + { + "appid": 3002790, + "normalized_name": "blast a bug!" + }, + { + "appid": 3002800, + "normalized_name": "lust potions" + }, + { + "appid": 3002820, + "normalized_name": "earthborne" + }, + { + "appid": 3002840, + "normalized_name": "荒古战纪" + }, + { + "appid": 3002850, + "normalized_name": "fairy tail 2" + }, + { + "appid": 3002860, + "normalized_name": "novivors" + }, + { + "appid": 3002920, + "normalized_name": "city park play date" + }, + { + "appid": 3002930, + "normalized_name": "心动满屋" + }, + { + "appid": 3003020, + "normalized_name": "steam prison beyond the steam" + }, + { + "appid": 3003050, + "normalized_name": "robert on earth" + }, + { + "appid": 3003120, + "normalized_name": "zombiehood" + }, + { + "appid": 3003130, + "normalized_name": "the backrooms the way back up" + }, + { + "appid": 3003150, + "normalized_name": "velana adventures chapter i" + }, + { + "appid": 3003200, + "normalized_name": "仗剑天涯" + }, + { + "appid": 3003270, + "normalized_name": "annaredux" + }, + { + "appid": 3003280, + "normalized_name": "jaro adventures" + }, + { + "appid": 3003300, + "normalized_name": "战盟桌面精灵" + }, + { + "appid": 3003310, + "normalized_name": "angelgaze" + }, + { + "appid": 3003320, + "normalized_name": "the rolling room" + }, + { + "appid": 3003360, + "normalized_name": "stronghold defenders" + }, + { + "appid": 3003390, + "normalized_name": "the ball" + }, + { + "appid": 3003460, + "normalized_name": "bang bang barrage" + }, + { + "appid": 3003470, + "normalized_name": "the cesspit" + }, + { + "appid": 3003530, + "normalized_name": "the tunnels of saint mercy road" + }, + { + "appid": 3003550, + "normalized_name": "aqua tv" + }, + { + "appid": 3003570, + "normalized_name": "皇帝" + }, + { + "appid": 3003580, + "normalized_name": "mineral" + }, + { + "appid": 3003640, + "normalized_name": "guns are funs" + }, + { + "appid": 3003650, + "normalized_name": "where is the tutorial" + }, + { + "appid": 3003660, + "normalized_name": "galactic striker" + }, + { + "appid": 3003670, + "normalized_name": "brick breaker infinity" + }, + { + "appid": 3003680, + "normalized_name": "adventure allies" + }, + { + "appid": 3003690, + "normalized_name": "lofi haven" + }, + { + "appid": 3003700, + "normalized_name": "alister in wonderland" + }, + { + "appid": 3003720, + "normalized_name": "courage zagame" + }, + { + "appid": 3003730, + "normalized_name": "fantasy clicker" + }, + { + "appid": 3003760, + "normalized_name": "come to my party!" + }, + { + "appid": 3003780, + "normalized_name": "thor's breakout" + }, + { + "appid": 3003820, + "normalized_name": "age of privateer" + }, + { + "appid": 3003850, + "normalized_name": "knowledge keeper" + }, + { + "appid": 3003880, + "normalized_name": "欧比3011" + }, + { + "appid": 3003950, + "normalized_name": "survival 2099" + }, + { + "appid": 3003960, + "normalized_name": "guns demons" + }, + { + "appid": 3003990, + "normalized_name": "finder" + }, + { + "appid": 3004010, + "normalized_name": "colorpicker" + }, + { + "appid": 3004020, + "normalized_name": "creepy tales" + }, + { + "appid": 3004030, + "normalized_name": "joi lab vr 🔞 / 自慰ラボ" + }, + { + "appid": 3004070, + "normalized_name": "lusófona games collection 2024" + }, + { + "appid": 3004090, + "normalized_name": "unbodied" + }, + { + "appid": 3004100, + "normalized_name": "freedom wars" + }, + { + "appid": 3004110, + "normalized_name": "remission" + }, + { + "appid": 3004120, + "normalized_name": "youthsignal ユースシグナル" + }, + { + "appid": 3004130, + "normalized_name": "solace creek" + }, + { + "appid": 3004140, + "normalized_name": "lockyourdoor" + }, + { + "appid": 3004170, + "normalized_name": "palettopia" + }, + { + "appid": 3004180, + "normalized_name": "curse of dares" + }, + { + "appid": 3004230, + "normalized_name": "delta strike" + }, + { + "appid": 3004260, + "normalized_name": "dyebreaker" + }, + { + "appid": 3004280, + "normalized_name": "world of magic rise of magic" + }, + { + "appid": 3004290, + "normalized_name": "turret mission" + }, + { + "appid": 3004310, + "normalized_name": "inferno frontier" + }, + { + "appid": 3004330, + "normalized_name": "dungeon online" + }, + { + "appid": 3004340, + "normalized_name": "beware the ghost" + }, + { + "appid": 3004360, + "normalized_name": "patient seven" + }, + { + "appid": 3004370, + "normalized_name": "quest crafter" + }, + { + "appid": 3004390, + "normalized_name": "the cave diver" + }, + { + "appid": 3004410, + "normalized_name": "love in space" + }, + { + "appid": 3004470, + "normalized_name": "salvor deep" + }, + { + "appid": 3004500, + "normalized_name": "droid wars" + }, + { + "appid": 3004510, + "normalized_name": "tales of sclobonia" + }, + { + "appid": 3004530, + "normalized_name": "scarlett steele viral temptation" + }, + { + "appid": 3004560, + "normalized_name": "runeflame" + }, + { + "appid": 3004570, + "normalized_name": "fear calibration" + }, + { + "appid": 3004580, + "normalized_name": "alchemy academy" + }, + { + "appid": 3004590, + "normalized_name": "level up the playable rap album" + }, + { + "appid": 3004600, + "normalized_name": "炒飯マスター" + }, + { + "appid": 3004620, + "normalized_name": "trial of sacrifice" + }, + { + "appid": 3004670, + "normalized_name": "casino tycoon" + }, + { + "appid": 3004690, + "normalized_name": "skynuggets" + }, + { + "appid": 3004710, + "normalized_name": "no more humans" + }, + { + "appid": 3004760, + "normalized_name": "magekeepers" + }, + { + "appid": 3004790, + "normalized_name": "monster ops" + }, + { + "appid": 3004800, + "normalized_name": "syco realm vr" + }, + { + "appid": 3004810, + "normalized_name": "operatives revolve" + }, + { + "appid": 3004860, + "normalized_name": "sunchaser" + }, + { + "appid": 3004880, + "normalized_name": "just futanari 2" + }, + { + "appid": 3004920, + "normalized_name": "super trailblazers" + }, + { + "appid": 3004940, + "normalized_name": "five nights at pt's ii" + }, + { + "appid": 3004950, + "normalized_name": "naomi clicker" + }, + { + "appid": 3004980, + "normalized_name": "super hero i.t. software" + }, + { + "appid": 3004990, + "normalized_name": "sleep simulator" + }, + { + "appid": 3005090, + "normalized_name": "mscr" + }, + { + "appid": 3005100, + "normalized_name": "alien outpost" + }, + { + "appid": 3005110, + "normalized_name": "lunar lander redux" + }, + { + "appid": 3005120, + "normalized_name": "fear is in the mind" + }, + { + "appid": 3005170, + "normalized_name": "lost in the mine" + }, + { + "appid": 3005180, + "normalized_name": "rotosaurus adventure" + }, + { + "appid": 3005210, + "normalized_name": "the saint" + }, + { + "appid": 3005220, + "normalized_name": "the dwarf kingdom" + }, + { + "appid": 3005240, + "normalized_name": "希尔德救赎 hilde redemption" + }, + { + "appid": 3005250, + "normalized_name": "harmless lies" + }, + { + "appid": 3005260, + "normalized_name": "squares of hell" + }, + { + "appid": 3005270, + "normalized_name": "corbel" + }, + { + "appid": 3005280, + "normalized_name": "standoffish" + }, + { + "appid": 3005310, + "normalized_name": "sample gunpowder" + }, + { + "appid": 3005330, + "normalized_name": "star gunners" + }, + { + "appid": 3005360, + "normalized_name": "gunbang" + }, + { + "appid": 3005420, + "normalized_name": "mazer" + }, + { + "appid": 3005430, + "normalized_name": "home mother" + }, + { + "appid": 3005440, + "normalized_name": "festered" + }, + { + "appid": 3005490, + "normalized_name": "rise achlys" + }, + { + "appid": 3005530, + "normalized_name": "reflex on go!" + }, + { + "appid": 3005540, + "normalized_name": "astro wars" + }, + { + "appid": 3005620, + "normalized_name": "drop pockets" + }, + { + "appid": 3005640, + "normalized_name": "hungry noemi" + }, + { + "appid": 3005650, + "normalized_name": "lady dracula's mansion" + }, + { + "appid": 3005660, + "normalized_name": "scribe rpg" + }, + { + "appid": 3005690, + "normalized_name": "gamelib" + }, + { + "appid": 3005720, + "normalized_name": "ink escape coven conundrum" + }, + { + "appid": 3005740, + "normalized_name": "board wars trick or treat" + }, + { + "appid": 3005840, + "normalized_name": "everglyph trials" + }, + { + "appid": 3005850, + "normalized_name": "click on bells together" + }, + { + "appid": 3005860, + "normalized_name": "orbo's exodus" + }, + { + "appid": 3005890, + "normalized_name": "monster ops 2" + }, + { + "appid": 3005900, + "normalized_name": "trams trains & monorails" + }, + { + "appid": 3005910, + "normalized_name": "legend vs. legion" + }, + { + "appid": 3005930, + "normalized_name": "batterynote" + }, + { + "appid": 3005990, + "normalized_name": "ハチバンバスピス" + }, + { + "appid": 3006010, + "normalized_name": "musician simulator" + }, + { + "appid": 3006020, + "normalized_name": "east defense" + }, + { + "appid": 3006040, + "normalized_name": "asha empire exodus" + }, + { + "appid": 3006050, + "normalized_name": "魔窟のリリアーネ" + }, + { + "appid": 3006060, + "normalized_name": "左轮手枪轮盘赌" + }, + { + "appid": 3006080, + "normalized_name": "aris arcanum" + }, + { + "appid": 3006100, + "normalized_name": "night project" + }, + { + "appid": 3006140, + "normalized_name": "t 深渊病毒 起源" + }, + { + "appid": 3006150, + "normalized_name": "wet slits" + }, + { + "appid": 3006180, + "normalized_name": "corpse58" + }, + { + "appid": 3006200, + "normalized_name": "jerico proxyma zsivanyur" + }, + { + "appid": 3006240, + "normalized_name": "polylylyrhythm" + }, + { + "appid": 3006260, + "normalized_name": "korean rail driving tour lrt busan gimhae" + }, + { + "appid": 3006280, + "normalized_name": "sheepherds!" + }, + { + "appid": 3006300, + "normalized_name": "mikota" + }, + { + "appid": 3006350, + "normalized_name": "はがれがしー" + }, + { + "appid": 3006420, + "normalized_name": "slide faster" + }, + { + "appid": 3006430, + "normalized_name": "ima survivor" + }, + { + "appid": 3006440, + "normalized_name": "aeronesia" + }, + { + "appid": 3006450, + "normalized_name": "stickers for you" + }, + { + "appid": 3006480, + "normalized_name": "sea of brave beast island" + }, + { + "appid": 3006510, + "normalized_name": "senile zombies" + }, + { + "appid": 3006540, + "normalized_name": "a.n.n." + }, + { + "appid": 3006550, + "normalized_name": "hell's underground" + }, + { + "appid": 3006610, + "normalized_name": "punch a plant!" + }, + { + "appid": 3006630, + "normalized_name": "loser simulator" + }, + { + "appid": 3006650, + "normalized_name": "dino jump" + }, + { + "appid": 3006670, + "normalized_name": "bomberhit" + }, + { + "appid": 3006700, + "normalized_name": "zombie survival" + }, + { + "appid": 3006760, + "normalized_name": "dysarmia" + }, + { + "appid": 3006780, + "normalized_name": "deck of defense" + }, + { + "appid": 3006800, + "normalized_name": "mischief monster a world of pranks" + }, + { + "appid": 3006830, + "normalized_name": "a sunday afternoon" + }, + { + "appid": 3006900, + "normalized_name": "horny housewives 2" + }, + { + "appid": 3006920, + "normalized_name": "lightbender" + }, + { + "appid": 3006930, + "normalized_name": "10 second rule infinity labo" + }, + { + "appid": 3006960, + "normalized_name": "北宋风云" + }, + { + "appid": 3006980, + "normalized_name": "roulette club" + }, + { + "appid": 3006990, + "normalized_name": "life of kanji island" + }, + { + "appid": 3007130, + "normalized_name": "frostflame" + }, + { + "appid": 3007140, + "normalized_name": "夏日与诗歌之旅" + }, + { + "appid": 3007150, + "normalized_name": "tinycraft" + }, + { + "appid": 3007170, + "normalized_name": "green ogre gives you terrible life advice and dies" + }, + { + "appid": 3007190, + "normalized_name": "brain region" + }, + { + "appid": 3007200, + "normalized_name": "the last match girl" + }, + { + "appid": 3007220, + "normalized_name": "nightsong" + }, + { + "appid": 3007240, + "normalized_name": "魔棒少女みらくるくるん magical stick girl miracle kurun" + }, + { + "appid": 3007260, + "normalized_name": "neon puzzle ball" + }, + { + "appid": 3007270, + "normalized_name": "種付勇者傳" + }, + { + "appid": 3007290, + "normalized_name": "smol survivors" + }, + { + "appid": 3007310, + "normalized_name": "remote position" + }, + { + "appid": 3007360, + "normalized_name": "room of lust dirty conversation with mom" + }, + { + "appid": 3007380, + "normalized_name": "undergoes" + }, + { + "appid": 3007390, + "normalized_name": "duck n roll" + }, + { + "appid": 3007430, + "normalized_name": "broken bonds" + }, + { + "appid": 3007460, + "normalized_name": "siberian way" + }, + { + "appid": 3007490, + "normalized_name": "走亲戚大作战" + }, + { + "appid": 3007510, + "normalized_name": "命骸" + }, + { + "appid": 3007570, + "normalized_name": "project cube" + }, + { + "appid": 3007580, + "normalized_name": "myth or reality snowbound secrets collector's" + }, + { + "appid": 3007590, + "normalized_name": "dog walking adventures" + }, + { + "appid": 3007620, + "normalized_name": "arcane siege" + }, + { + "appid": 3007630, + "normalized_name": "combat evolved 2d" + }, + { + "appid": 3007650, + "normalized_name": "rise of realms" + }, + { + "appid": 3007660, + "normalized_name": "bella wants blood" + }, + { + "appid": 3007690, + "normalized_name": "アパシー荒井昭二~牧場奇譚~" + }, + { + "appid": 3007710, + "normalized_name": "galactivore" + }, + { + "appid": 3007870, + "normalized_name": "etcetera and otherwise a lurid odyssey" + }, + { + "appid": 3007880, + "normalized_name": "sir quest and the temple of apollo" + }, + { + "appid": 3007890, + "normalized_name": "rngesus slayer" + }, + { + "appid": 3007910, + "normalized_name": "shadow mansion" + }, + { + "appid": 3007940, + "normalized_name": "the power of doznath" + }, + { + "appid": 3007960, + "normalized_name": "salacot jack deluxe" + }, + { + "appid": 3007990, + "normalized_name": "strike force commando" + }, + { + "appid": 3008010, + "normalized_name": "blunder the sea" + }, + { + "appid": 3008020, + "normalized_name": "survivor company" + }, + { + "appid": 3008050, + "normalized_name": "masterplan tycoon foundations" + }, + { + "appid": 3008070, + "normalized_name": "mortadelo y filemón una aventura de cine edición original" + }, + { + "appid": 3008100, + "normalized_name": "666 el día del portal" + }, + { + "appid": 3008130, + "normalized_name": "dying light the beast" + }, + { + "appid": 3008150, + "normalized_name": "alerta roja" + }, + { + "appid": 3008180, + "normalized_name": "dice showdown" + }, + { + "appid": 3008190, + "normalized_name": "jewel match solitaire seasons collector's" + }, + { + "appid": 3008200, + "normalized_name": "paperhead ep.0" + }, + { + "appid": 3008210, + "normalized_name": "we heist too" + }, + { + "appid": 3008240, + "normalized_name": "how we die" + }, + { + "appid": 3008270, + "normalized_name": "tree of sacrifice" + }, + { + "appid": 3008280, + "normalized_name": "revert" + }, + { + "appid": 3008300, + "normalized_name": "scotophobia" + }, + { + "appid": 3008310, + "normalized_name": "robo hunt" + }, + { + "appid": 3008320, + "normalized_name": "sawmill" + }, + { + "appid": 3008340, + "normalized_name": "day of the shell" + }, + { + "appid": 3008350, + "normalized_name": "locust hunter" + }, + { + "appid": 3008390, + "normalized_name": "dreamcatchers" + }, + { + "appid": 3008410, + "normalized_name": "soundsaber" + }, + { + "appid": 3008440, + "normalized_name": "the way you died" + }, + { + "appid": 3008470, + "normalized_name": "tokachi detective the balloon case" + }, + { + "appid": 3008520, + "normalized_name": "perfect world" + }, + { + "appid": 3008530, + "normalized_name": "bump" + }, + { + "appid": 3008570, + "normalized_name": "thalassophobia" + }, + { + "appid": 3008590, + "normalized_name": "relics of the oracle" + }, + { + "appid": 3008600, + "normalized_name": "heavenly parasite" + }, + { + "appid": 3008620, + "normalized_name": "entombed" + }, + { + "appid": 3008640, + "normalized_name": "onikura" + }, + { + "appid": 3008700, + "normalized_name": "eagle knight paradox" + }, + { + "appid": 3008740, + "normalized_name": "winter burrow" + }, + { + "appid": 3008800, + "normalized_name": "seconds till destruction" + }, + { + "appid": 3008810, + "normalized_name": "endeavor" + }, + { + "appid": 3008860, + "normalized_name": "banan'em up!" + }, + { + "appid": 3008880, + "normalized_name": "boba monsters" + }, + { + "appid": 3008890, + "normalized_name": "rolus in the outskirts" + }, + { + "appid": 3008900, + "normalized_name": "memories of bust" + }, + { + "appid": 3008910, + "normalized_name": "tiny kingdoms" + }, + { + "appid": 3008920, + "normalized_name": "forest walk" + }, + { + "appid": 3008950, + "normalized_name": "twisted screens" + }, + { + "appid": 3008960, + "normalized_name": "dungeon reborn" + }, + { + "appid": 3008970, + "normalized_name": "click to twelve" + }, + { + "appid": 3009010, + "normalized_name": "bad cat good dog alien force" + }, + { + "appid": 3009040, + "normalized_name": "roswell ranch" + }, + { + "appid": 3009060, + "normalized_name": "the adventure of pixi the 3 stones" + }, + { + "appid": 3009070, + "normalized_name": "wurzelnsisters" + }, + { + "appid": 3009080, + "normalized_name": "wired gambit" + }, + { + "appid": 3009100, + "normalized_name": "meet the rookie" + }, + { + "appid": 3009130, + "normalized_name": "a little space" + }, + { + "appid": 3009240, + "normalized_name": "miner vidis" + }, + { + "appid": 3009250, + "normalized_name": "garden apocalypse" + }, + { + "appid": 3009270, + "normalized_name": "takeover" + }, + { + "appid": 3009300, + "normalized_name": "teamfight manager 2" + }, + { + "appid": 3009310, + "normalized_name": "master of piece" + }, + { + "appid": 3009320, + "normalized_name": "rectangulong" + }, + { + "appid": 3009330, + "normalized_name": "solridge" + }, + { + "appid": 3009360, + "normalized_name": "the moments before death" + }, + { + "appid": 3009410, + "normalized_name": "moor rail" + }, + { + "appid": 3009430, + "normalized_name": "zoomies" + }, + { + "appid": 3009440, + "normalized_name": "pinball hero" + }, + { + "appid": 3009460, + "normalized_name": "isles of silence" + }, + { + "appid": 3009470, + "normalized_name": "more panda slot creator" + }, + { + "appid": 3009480, + "normalized_name": "izon." + }, + { + "appid": 3009500, + "normalized_name": "sweep maidens" + }, + { + "appid": 3009530, + "normalized_name": "surgit" + }, + { + "appid": 3009540, + "normalized_name": "the jerrymaya detective agency" + }, + { + "appid": 3009560, + "normalized_name": "tales of fearless" + }, + { + "appid": 3009570, + "normalized_name": "streamlove voyage" + }, + { + "appid": 3009600, + "normalized_name": "crossbow quest" + }, + { + "appid": 3009640, + "normalized_name": "sakura the jirai kei magical girl" + }, + { + "appid": 3009650, + "normalized_name": "kinetic breakthrough" + }, + { + "appid": 3009720, + "normalized_name": "baltic folk" + }, + { + "appid": 3009740, + "normalized_name": "轮回之沙" + }, + { + "appid": 3009750, + "normalized_name": "dimensional phobos threat" + }, + { + "appid": 3009760, + "normalized_name": "och noe thegame" + }, + { + "appid": 3009770, + "normalized_name": "3d puzzle oldhospital" + }, + { + "appid": 3009780, + "normalized_name": "3d puzzle underground" + }, + { + "appid": 3009790, + "normalized_name": "3d puzzle rusty" + }, + { + "appid": 3009800, + "normalized_name": "3d puzzle outpost" + }, + { + "appid": 3009820, + "normalized_name": "3d puzzle hospital 4" + }, + { + "appid": 3009830, + "normalized_name": "sex beach & girls ⛱ 💦" + }, + { + "appid": 3009850, + "normalized_name": "hard time iii" + }, + { + "appid": 3009890, + "normalized_name": "thebes" + }, + { + "appid": 3009900, + "normalized_name": "動作不良 system malfunction" + }, + { + "appid": 3009910, + "normalized_name": "build a friend" + }, + { + "appid": 3009920, + "normalized_name": "cook for love" + }, + { + "appid": 3009970, + "normalized_name": "haifa" + }, + { + "appid": 3009980, + "normalized_name": "审判日 血战太平洋" + }, + { + "appid": 3010000, + "normalized_name": "cosmic cowboy" + }, + { + "appid": 3010020, + "normalized_name": "puffer bounce" + }, + { + "appid": 3010030, + "normalized_name": "blockworld ai" + }, + { + "appid": 3010060, + "normalized_name": "death plunder 亡命掠夺者" + }, + { + "appid": 3010070, + "normalized_name": "man i just wanna go home" + }, + { + "appid": 3010090, + "normalized_name": "aaero2" + }, + { + "appid": 3010100, + "normalized_name": "brawl of america" + }, + { + "appid": 3010130, + "normalized_name": "monster mayhem" + }, + { + "appid": 3010140, + "normalized_name": "hellfire rampage vr" + }, + { + "appid": 3010150, + "normalized_name": "bloody hell 2" + }, + { + "appid": 3010170, + "normalized_name": "fangtopia" + }, + { + "appid": 3010180, + "normalized_name": "undesirable me" + }, + { + "appid": 3010200, + "normalized_name": "space" + }, + { + "appid": 3010230, + "normalized_name": "grand fantasia origin" + }, + { + "appid": 3010250, + "normalized_name": "whisper forest" + }, + { + "appid": 3010260, + "normalized_name": "冲突2·闪电战" + }, + { + "appid": 3010280, + "normalized_name": "powerplay" + }, + { + "appid": 3010290, + "normalized_name": "heroes of the seven islands" + }, + { + "appid": 3010300, + "normalized_name": "color gungeon" + }, + { + "appid": 3010320, + "normalized_name": "warp speed infinity" + }, + { + "appid": 3010330, + "normalized_name": "apocalypse chow" + }, + { + "appid": 3010380, + "normalized_name": "tape 101 the backrooms" + }, + { + "appid": 3010450, + "normalized_name": "everchained" + }, + { + "appid": 3010460, + "normalized_name": "backroom company" + }, + { + "appid": 3010470, + "normalized_name": "particle" + }, + { + "appid": 3010480, + "normalized_name": "shadow trick" + }, + { + "appid": 3010490, + "normalized_name": "evoplasm" + }, + { + "appid": 3010500, + "normalized_name": "chronicles of scimitars rise of baybars" + }, + { + "appid": 3010520, + "normalized_name": "pub sim" + }, + { + "appid": 3010560, + "normalized_name": "blessed curse" + }, + { + "appid": 3010610, + "normalized_name": "love eternal" + }, + { + "appid": 3010620, + "normalized_name": "what remains" + }, + { + "appid": 3010640, + "normalized_name": "反戴森球:折跃塔" + }, + { + "appid": 3010670, + "normalized_name": "two doors" + }, + { + "appid": 3010800, + "normalized_name": "turtle river rpg" + }, + { + "appid": 3010810, + "normalized_name": "ball in the box" + }, + { + "appid": 3010830, + "normalized_name": "trash battle" + }, + { + "appid": 3010840, + "normalized_name": "alpha and iota" + }, + { + "appid": 3010850, + "normalized_name": "gears of war e day" + }, + { + "appid": 3010870, + "normalized_name": "match tree" + }, + { + "appid": 3010900, + "normalized_name": "dunestake" + }, + { + "appid": 3010910, + "normalized_name": "college gay sex episode 4" + }, + { + "appid": 3010920, + "normalized_name": "fortress fury" + }, + { + "appid": 3010930, + "normalized_name": "pyun pyun heart throbbing endless love bakery" + }, + { + "appid": 3010970, + "normalized_name": "climate survivors" + }, + { + "appid": 3011020, + "normalized_name": "dreamless" + }, + { + "appid": 3011030, + "normalized_name": "no skin" + }, + { + "appid": 3011050, + "normalized_name": "poison is served!" + }, + { + "appid": 3011060, + "normalized_name": "iron village" + }, + { + "appid": 3011090, + "normalized_name": "primest evil" + }, + { + "appid": 3011100, + "normalized_name": "synthetic soul onyx" + }, + { + "appid": 3011140, + "normalized_name": "the last e.l.i.t.e.s" + }, + { + "appid": 3011190, + "normalized_name": "kadin the soul eater" + }, + { + "appid": 3011200, + "normalized_name": "dead zone defense" + }, + { + "appid": 3011220, + "normalized_name": "encounters" + }, + { + "appid": 3011230, + "normalized_name": "deckarium" + }, + { + "appid": 3011260, + "normalized_name": "beyond.frontiers" + }, + { + "appid": 3011360, + "normalized_name": "primordialis" + }, + { + "appid": 3011380, + "normalized_name": "lamplight" + }, + { + "appid": 3011410, + "normalized_name": "don't trust" + }, + { + "appid": 3011440, + "normalized_name": "clickolding" + }, + { + "appid": 3011450, + "normalized_name": "icarus climb to olympus" + }, + { + "appid": 3011470, + "normalized_name": "faeterra" + }, + { + "appid": 3011550, + "normalized_name": "nihiland" + }, + { + "appid": 3011560, + "normalized_name": "city lights love bites season 0 [pilot season]" + }, + { + "appid": 3011570, + "normalized_name": "el norte survival" + }, + { + "appid": 3011620, + "normalized_name": "glow up 1" + }, + { + "appid": 3011740, + "normalized_name": "border dungeon 边境地牢" + }, + { + "appid": 3011820, + "normalized_name": "asda story" + }, + { + "appid": 3011850, + "normalized_name": "cruelty" + }, + { + "appid": 3011890, + "normalized_name": "clown around" + }, + { + "appid": 3012000, + "normalized_name": "シュークリームコレクト" + }, + { + "appid": 3012020, + "normalized_name": "tower of doom vr" + }, + { + "appid": 3012050, + "normalized_name": "witch of oblivion" + }, + { + "appid": 3012070, + "normalized_name": "eldorion guardians of the crystals" + }, + { + "appid": 3012120, + "normalized_name": "《方块战记》《legend square》" + }, + { + "appid": 3012130, + "normalized_name": "phantom of the twilight" + }, + { + "appid": 3012170, + "normalized_name": "コメンテーター" + }, + { + "appid": 3012210, + "normalized_name": "ducky the brave" + }, + { + "appid": 3012220, + "normalized_name": "double dragon revive" + }, + { + "appid": 3012260, + "normalized_name": "zukurace" + }, + { + "appid": 3012270, + "normalized_name": "doomed stars" + }, + { + "appid": 3012280, + "normalized_name": "paw brawl party" + }, + { + "appid": 3012290, + "normalized_name": "predictile" + }, + { + "appid": 3012300, + "normalized_name": "carbon" + }, + { + "appid": 3012350, + "normalized_name": "warranty not included" + }, + { + "appid": 3012360, + "normalized_name": "breaker initiating" + }, + { + "appid": 3012380, + "normalized_name": "down abyss" + }, + { + "appid": 3012400, + "normalized_name": "morriton manor stories nordic whispers" + }, + { + "appid": 3012410, + "normalized_name": "everise" + }, + { + "appid": 3012420, + "normalized_name": "抓到冒險者醬了!~live2d觸手模擬器~" + }, + { + "appid": 3012430, + "normalized_name": "grasp of dread" + }, + { + "appid": 3012470, + "normalized_name": "sickway vr" + }, + { + "appid": 3012510, + "normalized_name": "bug" + }, + { + "appid": 3012550, + "normalized_name": "listen think meow!" + }, + { + "appid": 3012630, + "normalized_name": "硅心_silicon heart——ai少女情人梦 _ai girl lovestory" + }, + { + "appid": 3012660, + "normalized_name": "pralai song of the last empire" + }, + { + "appid": 3012670, + "normalized_name": "train of thoughts" + }, + { + "appid": 3012710, + "normalized_name": "pimic of sorrow | かなしみのピミク" + }, + { + "appid": 3012740, + "normalized_name": "must find beans" + }, + { + "appid": 3012750, + "normalized_name": "postmortal" + }, + { + "appid": 3012760, + "normalized_name": "air&hook" + }, + { + "appid": 3012780, + "normalized_name": "mystopia" + }, + { + "appid": 3012800, + "normalized_name": "leglakh prologue" + }, + { + "appid": 3012810, + "normalized_name": "falling ever lost in time" + }, + { + "appid": 3012820, + "normalized_name": "psx horror" + }, + { + "appid": 3012830, + "normalized_name": "dark card" + }, + { + "appid": 3012850, + "normalized_name": "anubis" + }, + { + "appid": 3012980, + "normalized_name": "moorhuhn kart 4" + }, + { + "appid": 3012990, + "normalized_name": "project icarus" + }, + { + "appid": 3013010, + "normalized_name": "arbor island" + }, + { + "appid": 3013040, + "normalized_name": "skillet" + }, + { + "appid": 3013050, + "normalized_name": "exohub" + }, + { + "appid": 3013070, + "normalized_name": "candle wood" + }, + { + "appid": 3013080, + "normalized_name": "arkham mysteries chapter one" + }, + { + "appid": 3013130, + "normalized_name": "romanizer" + }, + { + "appid": 3013140, + "normalized_name": "once in hell" + }, + { + "appid": 3013150, + "normalized_name": "my esports club" + }, + { + "appid": 3013160, + "normalized_name": "past the moon; towards the sun" + }, + { + "appid": 3013190, + "normalized_name": "miglorn" + }, + { + "appid": 3013200, + "normalized_name": "wheels of drift" + }, + { + "appid": 3013260, + "normalized_name": "pro strategy football 2025" + }, + { + "appid": 3013370, + "normalized_name": "monsters auto battler" + }, + { + "appid": 3013380, + "normalized_name": "homecoming" + }, + { + "appid": 3013390, + "normalized_name": "beneath the mind" + }, + { + "appid": 3013430, + "normalized_name": "security guard sex episode 3" + }, + { + "appid": 3013440, + "normalized_name": "spiritmorph" + }, + { + "appid": 3013460, + "normalized_name": "judofuri" + }, + { + "appid": 3013470, + "normalized_name": "bananametr" + }, + { + "appid": 3013490, + "normalized_name": "shooting range simulator" + }, + { + "appid": 3013500, + "normalized_name": "bunny space odyssey flophop" + }, + { + "appid": 3013550, + "normalized_name": "yu gi oh! early days collection" + }, + { + "appid": 3013570, + "normalized_name": "abyssal wrath" + }, + { + "appid": 3013670, + "normalized_name": "delta light 2" + }, + { + "appid": 3013690, + "normalized_name": "veil tactics" + }, + { + "appid": 3013700, + "normalized_name": "candy & toys store simulator" + }, + { + "appid": 3013710, + "normalized_name": "absorb invader" + }, + { + "appid": 3013740, + "normalized_name": "fields of asphodel" + }, + { + "appid": 3013750, + "normalized_name": "fallen hero revelations" + }, + { + "appid": 3013790, + "normalized_name": "omnicopia" + }, + { + "appid": 3013830, + "normalized_name": "backrooms 1995 the lost footage chapter 1" + }, + { + "appid": 3013840, + "normalized_name": "true love" + }, + { + "appid": 3013850, + "normalized_name": "bumpy jumpy" + }, + { + "appid": 3013860, + "normalized_name": "the adventures of zomboy" + }, + { + "appid": 3013880, + "normalized_name": "flight risk" + }, + { + "appid": 3013900, + "normalized_name": "猫咪干得好 cat good work" + }, + { + "appid": 3013910, + "normalized_name": "limelight" + }, + { + "appid": 3013920, + "normalized_name": "mist forge" + }, + { + "appid": 3013930, + "normalized_name": "hunter's arena revolution" + }, + { + "appid": 3013960, + "normalized_name": "manaballs" + }, + { + "appid": 3013970, + "normalized_name": "atoob" + }, + { + "appid": 3013980, + "normalized_name": "the day of survival" + }, + { + "appid": 3014010, + "normalized_name": "我的女友们" + }, + { + "appid": 3014040, + "normalized_name": "stellar dynasty" + }, + { + "appid": 3014070, + "normalized_name": "would you call him a bad man?" + }, + { + "appid": 3014080, + "normalized_name": "the hundred line last defense academy" + }, + { + "appid": 3014090, + "normalized_name": "起夜 get up in the night" + }, + { + "appid": 3014110, + "normalized_name": "sweet forest" + }, + { + "appid": 3014120, + "normalized_name": "deadbeat wizard" + }, + { + "appid": 3014150, + "normalized_name": "1/8192" + }, + { + "appid": 3014230, + "normalized_name": "alpha rooms" + }, + { + "appid": 3014240, + "normalized_name": "aszg project director's cut" + }, + { + "appid": 3014310, + "normalized_name": "バーチャル★ハッピーランド | virtual★happy land" + }, + { + "appid": 3014340, + "normalized_name": "dream home designer" + }, + { + "appid": 3014370, + "normalized_name": "vampire sandwich" + }, + { + "appid": 3014380, + "normalized_name": "낙화 falling flower" + }, + { + "appid": 3014440, + "normalized_name": "代号:栖云异梦叁" + }, + { + "appid": 3014470, + "normalized_name": "rings of zilfin" + }, + { + "appid": 3014480, + "normalized_name": "medieval lords soldier kings of europe" + }, + { + "appid": 3014490, + "normalized_name": "no greater glory the american civil war" + }, + { + "appid": 3014500, + "normalized_name": "peasants love magic" + }, + { + "appid": 3014510, + "normalized_name": "spaced liberation" + }, + { + "appid": 3014520, + "normalized_name": "brokenlore low" + }, + { + "appid": 3014600, + "normalized_name": "sex airlines 🔞✈" + }, + { + "appid": 3014610, + "normalized_name": "tamu" + }, + { + "appid": 3014650, + "normalized_name": ".45 parabellum bloodhound cyberpunk active time action" + }, + { + "appid": 3014680, + "normalized_name": "本草归元录" + }, + { + "appid": 3014710, + "normalized_name": "cursed house 6" + }, + { + "appid": 3014740, + "normalized_name": "x war" + }, + { + "appid": 3014750, + "normalized_name": "cursed house 7" + }, + { + "appid": 3014760, + "normalized_name": "cursed house 8" + }, + { + "appid": 3014870, + "normalized_name": "tales of fortune" + }, + { + "appid": 3014890, + "normalized_name": "just your average survival game" + }, + { + "appid": 3014910, + "normalized_name": "modern museum" + }, + { + "appid": 3014930, + "normalized_name": "wave defense trappist" + }, + { + "appid": 3014960, + "normalized_name": "skallig" + }, + { + "appid": 3015100, + "normalized_name": "apocalyptic cat" + }, + { + "appid": 3015110, + "normalized_name": "backrooms cats and lava" + }, + { + "appid": 3015120, + "normalized_name": "cyber assasin" + }, + { + "appid": 3015130, + "normalized_name": "digital meow" + }, + { + "appid": 3015140, + "normalized_name": "dungeon digger" + }, + { + "appid": 3015150, + "normalized_name": "daily climb" + }, + { + "appid": 3015180, + "normalized_name": "finn jrpg" + }, + { + "appid": 3015190, + "normalized_name": "rap pop jump core" + }, + { + "appid": 3015230, + "normalized_name": "flashlight sim" + }, + { + "appid": 3015250, + "normalized_name": "life on mars (miztyl)" + }, + { + "appid": 3015260, + "normalized_name": "into the wild" + }, + { + "appid": 3015270, + "normalized_name": "tower of megami descents" + }, + { + "appid": 3015290, + "normalized_name": "信中囚徒" + }, + { + "appid": 3015310, + "normalized_name": "greybit" + }, + { + "appid": 3015350, + "normalized_name": "echoes of dread" + }, + { + "appid": 3015360, + "normalized_name": "shiba sweet" + }, + { + "appid": 3015380, + "normalized_name": "bob" + }, + { + "appid": 3015400, + "normalized_name": "mdne" + }, + { + "appid": 3015460, + "normalized_name": "creepy waves fm bugs fixer" + }, + { + "appid": 3015510, + "normalized_name": "decision legacy collection" + }, + { + "appid": 3015580, + "normalized_name": "gameover" + }, + { + "appid": 3015600, + "normalized_name": "fading faith" + }, + { + "appid": 3015610, + "normalized_name": "banana & cucumber" + }, + { + "appid": 3015620, + "normalized_name": "welcome back commander" + }, + { + "appid": 3015650, + "normalized_name": "chrono" + }, + { + "appid": 3015690, + "normalized_name": "super cursor" + }, + { + "appid": 3015720, + "normalized_name": "shobatsu" + }, + { + "appid": 3015740, + "normalized_name": "ma vie en rogue" + }, + { + "appid": 3015780, + "normalized_name": "escape from hell" + }, + { + "appid": 3015820, + "normalized_name": "to kill a god" + }, + { + "appid": 3015840, + "normalized_name": "brainwave trials" + }, + { + "appid": 3015850, + "normalized_name": "joe biden vs. jeo boden escape from maga chapter 2" + }, + { + "appid": 3015860, + "normalized_name": "backrooms the company" + }, + { + "appid": 3015870, + "normalized_name": "bit & quantum save the earth!" + }, + { + "appid": 3015900, + "normalized_name": "sorting your marbles" + }, + { + "appid": 3015910, + "normalized_name": "iscoot scooter sim" + }, + { + "appid": 3015920, + "normalized_name": "tides of the endless" + }, + { + "appid": 3015930, + "normalized_name": "monster lover 2 ambrosilas" + }, + { + "appid": 3015940, + "normalized_name": "dyingnoise" + }, + { + "appid": 3015950, + "normalized_name": "kun’tewiktuk a mi’kmaw adventure" + }, + { + "appid": 3015960, + "normalized_name": "slime voyage" + }, + { + "appid": 3016090, + "normalized_name": "eternal escape castle of shadows" + }, + { + "appid": 3016100, + "normalized_name": "outsanity" + }, + { + "appid": 3016120, + "normalized_name": "beauty solitaire" + }, + { + "appid": 3016140, + "normalized_name": "血染模拟器" + }, + { + "appid": 3016480, + "normalized_name": "eye of the commando" + }, + { + "appid": 3016500, + "normalized_name": "rain and the wolf" + }, + { + "appid": 3016520, + "normalized_name": "僵尸2:噬魂咒" + }, + { + "appid": 3016530, + "normalized_name": "warband survivors" + }, + { + "appid": 3016580, + "normalized_name": "deathjack" + }, + { + "appid": 3016600, + "normalized_name": "our field trip adventure" + }, + { + "appid": 3016610, + "normalized_name": "波普档案" + }, + { + "appid": 3016620, + "normalized_name": "alkahest" + }, + { + "appid": 3016640, + "normalized_name": "knock" + }, + { + "appid": 3016690, + "normalized_name": "jackpoison" + }, + { + "appid": 3016700, + "normalized_name": "miss mantis 螳螂小姐" + }, + { + "appid": 3016730, + "normalized_name": "memo blox" + }, + { + "appid": 3016750, + "normalized_name": "ero trap dungeon roguelike" + }, + { + "appid": 3016780, + "normalized_name": "fairy massage lite" + }, + { + "appid": 3016810, + "normalized_name": "king of stocks" + }, + { + "appid": 3016840, + "normalized_name": "i am cat" + }, + { + "appid": 3016870, + "normalized_name": "timeline tangle which year again" + }, + { + "appid": 3016890, + "normalized_name": "vibrant frame" + }, + { + "appid": 3016920, + "normalized_name": "awaken hentai dice" + }, + { + "appid": 3016980, + "normalized_name": "love quiz battle lovelove quiz" + }, + { + "appid": 3016990, + "normalized_name": "cursed house 3" + }, + { + "appid": 3017000, + "normalized_name": "cursed house 4" + }, + { + "appid": 3017030, + "normalized_name": "cursed house 5" + }, + { + "appid": 3017070, + "normalized_name": "fireball" + }, + { + "appid": 3017080, + "normalized_name": "ognisco" + }, + { + "appid": 3017090, + "normalized_name": "crack it up! prologue" + }, + { + "appid": 3017100, + "normalized_name": "lavaloop" + }, + { + "appid": 3017110, + "normalized_name": "metria" + }, + { + "appid": 3017120, + "normalized_name": "egg surprise" + }, + { + "appid": 3017130, + "normalized_name": "bashful adoration" + }, + { + "appid": 3017150, + "normalized_name": "hellfire poncho" + }, + { + "appid": 3017160, + "normalized_name": "diana's quest from princess to peasant" + }, + { + "appid": 3017170, + "normalized_name": "双门勇者棋" + }, + { + "appid": 3017180, + "normalized_name": "回家的猫" + }, + { + "appid": 3017250, + "normalized_name": "smile simulation" + }, + { + "appid": 3017270, + "normalized_name": "magnetworks" + }, + { + "appid": 3017320, + "normalized_name": "synthroute 82" + }, + { + "appid": 3017330, + "normalized_name": "verho" + }, + { + "appid": 3017360, + "normalized_name": "ember souls" + }, + { + "appid": 3017380, + "normalized_name": "100 egypt cats" + }, + { + "appid": 3017390, + "normalized_name": "last story dungeon" + }, + { + "appid": 3017400, + "normalized_name": "ravensthorn" + }, + { + "appid": 3017410, + "normalized_name": "hentai fetishes yuri" + }, + { + "appid": 3017420, + "normalized_name": "object 17" + }, + { + "appid": 3017430, + "normalized_name": "suffocate" + }, + { + "appid": 3017450, + "normalized_name": "dirty league 🔞" + }, + { + "appid": 3017530, + "normalized_name": "cube jumper vr" + }, + { + "appid": 3017540, + "normalized_name": "slice of ages" + }, + { + "appid": 3017570, + "normalized_name": "mary" + }, + { + "appid": 3017580, + "normalized_name": "paragnosia" + }, + { + "appid": 3017610, + "normalized_name": "hyper tag" + }, + { + "appid": 3017630, + "normalized_name": "princess colosseum" + }, + { + "appid": 3017640, + "normalized_name": "neon city" + }, + { + "appid": 3017700, + "normalized_name": "once a porn a time porn and cards" + }, + { + "appid": 3017730, + "normalized_name": "unbox the room" + }, + { + "appid": 3017760, + "normalized_name": "relic abyss" + }, + { + "appid": 3017770, + "normalized_name": "zlin city arch moderna" + }, + { + "appid": 3017800, + "normalized_name": "catacombs" + }, + { + "appid": 3017810, + "normalized_name": "mythical matchmaker" + }, + { + "appid": 3017820, + "normalized_name": "dangerous connections" + }, + { + "appid": 3017830, + "normalized_name": "sky resort 2" + }, + { + "appid": 3017860, + "normalized_name": "doom the dark ages" + }, + { + "appid": 3017910, + "normalized_name": "arrowscapades" + }, + { + "appid": 3017980, + "normalized_name": "digi dodgy" + }, + { + "appid": 3018030, + "normalized_name": "nightwalk simulator" + }, + { + "appid": 3018070, + "normalized_name": "escape horror online" + }, + { + "appid": 3018090, + "normalized_name": "zenith heroes" + }, + { + "appid": 3018130, + "normalized_name": "penguin's road" + }, + { + "appid": 3018160, + "normalized_name": "异世界超级战争 序章 p1" + }, + { + "appid": 3018170, + "normalized_name": "look back" + }, + { + "appid": 3018190, + "normalized_name": "light devourer" + }, + { + "appid": 3018290, + "normalized_name": "let's boogie" + }, + { + "appid": 3018300, + "normalized_name": "太古洪荒" + }, + { + "appid": 3018320, + "normalized_name": "avian colony" + }, + { + "appid": 3018340, + "normalized_name": "elementers" + }, + { + "appid": 3018360, + "normalized_name": "bug alliance" + }, + { + "appid": 3018390, + "normalized_name": "psycho dead" + }, + { + "appid": 3018400, + "normalized_name": "immortal markets stock market simulator game" + }, + { + "appid": 3018420, + "normalized_name": "the monastery" + }, + { + "appid": 3018430, + "normalized_name": "7th floor" + }, + { + "appid": 3018460, + "normalized_name": "fatal dopamine/ 致命多巴胺" + }, + { + "appid": 3018480, + "normalized_name": "7 meters away. oscar and the cell of the soul" + }, + { + "appid": 3018500, + "normalized_name": "broken shell" + }, + { + "appid": 3018530, + "normalized_name": "fall of mankind" + }, + { + "appid": 3018580, + "normalized_name": "threshold sector" + }, + { + "appid": 3018600, + "normalized_name": "guns and bots" + }, + { + "appid": 3018620, + "normalized_name": "blitz times tables" + }, + { + "appid": 3018630, + "normalized_name": "nightmare pursuit" + }, + { + "appid": 3018640, + "normalized_name": "zapnator" + }, + { + "appid": 3018680, + "normalized_name": "foxy j.a.b.s just another bubble shooter" + }, + { + "appid": 3018700, + "normalized_name": "venari escape room adventure" + }, + { + "appid": 3018720, + "normalized_name": "websy and the time rogues" + }, + { + "appid": 3018730, + "normalized_name": "question mark 2" + }, + { + "appid": 3018750, + "normalized_name": "bad dream" + }, + { + "appid": 3018770, + "normalized_name": "jigsaw swimsuit" + }, + { + "appid": 3018800, + "normalized_name": "mortalls" + }, + { + "appid": 3018830, + "normalized_name": "one night with kawaii" + }, + { + "appid": 3018890, + "normalized_name": "the math teaching game" + }, + { + "appid": 3018900, + "normalized_name": "minitank desert strike" + }, + { + "appid": 3018910, + "normalized_name": "homeless" + }, + { + "appid": 3018940, + "normalized_name": "caution ahead part 2" + }, + { + "appid": 3018990, + "normalized_name": "eversiege" + }, + { + "appid": 3019000, + "normalized_name": "sushininjarobot td" + }, + { + "appid": 3019030, + "normalized_name": "survivor in the forest 2" + }, + { + "appid": 3019040, + "normalized_name": "toxic therapy" + }, + { + "appid": 3019060, + "normalized_name": "7years" + }, + { + "appid": 3019080, + "normalized_name": "battle beat arena" + }, + { + "appid": 3019110, + "normalized_name": "blonsters" + }, + { + "appid": 3019150, + "normalized_name": "once upon a baby vr" + }, + { + "appid": 3019160, + "normalized_name": "creeping dusk" + }, + { + "appid": 3019200, + "normalized_name": "little herbal baker" + }, + { + "appid": 3019220, + "normalized_name": "roodies factory chapter 1" + }, + { + "appid": 3019270, + "normalized_name": "let's café" + }, + { + "appid": 3019290, + "normalized_name": "meta pong" + }, + { + "appid": 3019320, + "normalized_name": "cuben" + }, + { + "appid": 3019350, + "normalized_name": "cube arena" + }, + { + "appid": 3019360, + "normalized_name": "hiragana hero" + }, + { + "appid": 3019370, + "normalized_name": "malware" + }, + { + "appid": 3019380, + "normalized_name": "terra inferno" + }, + { + "appid": 3019400, + "normalized_name": "no such luck" + }, + { + "appid": 3019440, + "normalized_name": "finch" + }, + { + "appid": 3019450, + "normalized_name": "almanach of empires and sorcery" + }, + { + "appid": 3019490, + "normalized_name": "i won't let you level up in my goblin town" + }, + { + "appid": 3019510, + "normalized_name": "blaster boy" + }, + { + "appid": 3019550, + "normalized_name": "riddlewood manor" + }, + { + "appid": 3019570, + "normalized_name": "stair tower" + }, + { + "appid": 3019610, + "normalized_name": "silent breach" + }, + { + "appid": 3019650, + "normalized_name": "tiny warlords" + }, + { + "appid": 3019700, + "normalized_name": "phoebe eridani" + }, + { + "appid": 3019710, + "normalized_name": "rogue robot escape protocol" + }, + { + "appid": 3019740, + "normalized_name": "hophop fox" + }, + { + "appid": 3019750, + "normalized_name": "двойная игра" + }, + { + "appid": 3019770, + "normalized_name": "hedgehog and cat explore the world action" + }, + { + "appid": 3019780, + "normalized_name": "a rabbit" + }, + { + "appid": 3019800, + "normalized_name": "amber alert" + }, + { + "appid": 3019830, + "normalized_name": "sandbox apocalypse" + }, + { + "appid": 3019850, + "normalized_name": "fishing grind" + }, + { + "appid": 3019880, + "normalized_name": "backrooms [redacted] chapter 1" + }, + { + "appid": 3019930, + "normalized_name": "platformer paradise" + }, + { + "appid": 3019950, + "normalized_name": "mini worlds" + }, + { + "appid": 3019990, + "normalized_name": "eden survivors" + }, + { + "appid": 3020020, + "normalized_name": "toilet zone" + }, + { + "appid": 3020030, + "normalized_name": "neon city hacker" + }, + { + "appid": 3020130, + "normalized_name": "foxlore" + }, + { + "appid": 3020150, + "normalized_name": "splort" + }, + { + "appid": 3020220, + "normalized_name": "star patrol nova" + }, + { + "appid": 3020240, + "normalized_name": "click on staplers together" + }, + { + "appid": 3020250, + "normalized_name": "click on red pandas together" + }, + { + "appid": 3020260, + "normalized_name": "click on candy together" + }, + { + "appid": 3020270, + "normalized_name": "click on piña coladas together" + }, + { + "appid": 3020360, + "normalized_name": "click on lanterns together" + }, + { + "appid": 3020370, + "normalized_name": "archetype and the four winds of hell" + }, + { + "appid": 3020460, + "normalized_name": "blind jump" + }, + { + "appid": 3020480, + "normalized_name": "within the vault" + }, + { + "appid": 3020510, + "normalized_name": "legend of heroes three kingdoms" + }, + { + "appid": 3020530, + "normalized_name": "灯火传说 星之勇者与破灭之歌" + }, + { + "appid": 3020540, + "normalized_name": "タナトス thanatos" + }, + { + "appid": 3020550, + "normalized_name": "dialoop" + }, + { + "appid": 3020570, + "normalized_name": "the breakup arena 分手擂台" + }, + { + "appid": 3020580, + "normalized_name": "touchnothing" + }, + { + "appid": 3020590, + "normalized_name": "羈絏 kisetsu" + }, + { + "appid": 3020600, + "normalized_name": "the seventh floor" + }, + { + "appid": 3020620, + "normalized_name": "knockturne" + }, + { + "appid": 3020630, + "normalized_name": "annihilation sola fide 湮灭圣礼" + }, + { + "appid": 3020780, + "normalized_name": "night of the abattoir man" + }, + { + "appid": 3020850, + "normalized_name": "restaurant tycoon my cooking empire" + }, + { + "appid": 3020870, + "normalized_name": "gastrorun" + }, + { + "appid": 3020950, + "normalized_name": "creature park" + }, + { + "appid": 3020960, + "normalized_name": "直播间开卡模拟器" + }, + { + "appid": 3020970, + "normalized_name": "jellies of the deep" + }, + { + "appid": 3020980, + "normalized_name": "the nick" + }, + { + "appid": 3021020, + "normalized_name": "深渊食堂(abyssalrestaurant)" + }, + { + "appid": 3021060, + "normalized_name": "idle run aya" + }, + { + "appid": 3021090, + "normalized_name": "浮気リセット cheating reset" + }, + { + "appid": 3021100, + "normalized_name": "five hearts under one roof" + }, + { + "appid": 3021150, + "normalized_name": "googoorise" + }, + { + "appid": 3021220, + "normalized_name": "radiant elusion" + }, + { + "appid": 3021290, + "normalized_name": "iconic" + }, + { + "appid": 3021320, + "normalized_name": "catch the dustling" + }, + { + "appid": 3021330, + "normalized_name": "国足勇夺世界杯" + }, + { + "appid": 3021350, + "normalized_name": "透明的她与真实的我" + }, + { + "appid": 3021370, + "normalized_name": "yegung" + }, + { + "appid": 3021390, + "normalized_name": "rethink 5" + }, + { + "appid": 3021440, + "normalized_name": "dragon and phoenix" + }, + { + "appid": 3021520, + "normalized_name": "faster than bolt" + }, + { + "appid": 3021530, + "normalized_name": "abra cooking dabra" + }, + { + "appid": 3021540, + "normalized_name": "starborne frontiers" + }, + { + "appid": 3021620, + "normalized_name": "mug 🍺" + }, + { + "appid": 3021630, + "normalized_name": "savara" + }, + { + "appid": 3021640, + "normalized_name": "void scavengers" + }, + { + "appid": 3021650, + "normalized_name": "heffelfinger" + }, + { + "appid": 3021700, + "normalized_name": "astrostrike" + }, + { + "appid": 3021720, + "normalized_name": "lost mastery" + }, + { + "appid": 3021750, + "normalized_name": "rolled a pinball nightmare" + }, + { + "appid": 3021780, + "normalized_name": "odin's defense" + }, + { + "appid": 3021800, + "normalized_name": "bleakwood" + }, + { + "appid": 3021810, + "normalized_name": "tickety boom" + }, + { + "appid": 3021830, + "normalized_name": "access entree" + }, + { + "appid": 3021850, + "normalized_name": "monster meals" + }, + { + "appid": 3021860, + "normalized_name": "toon siege" + }, + { + "appid": 3021870, + "normalized_name": "hentai fox" + }, + { + "appid": 3021890, + "normalized_name": "maid mansion nightmare" + }, + { + "appid": 3021900, + "normalized_name": "g.e.a.r great engineers are rats" + }, + { + "appid": 3021920, + "normalized_name": "don't lose your ship" + }, + { + "appid": 3021970, + "normalized_name": "cube jumper" + }, + { + "appid": 3022010, + "normalized_name": "bonanit a menorcan horror story" + }, + { + "appid": 3022040, + "normalized_name": "weaponry (experimental)" + }, + { + "appid": 3022060, + "normalized_name": "golf around! lite" + }, + { + "appid": 3022080, + "normalized_name": "pure blood" + }, + { + "appid": 3022110, + "normalized_name": "break a leg" + }, + { + "appid": 3022120, + "normalized_name": "backrooms dark labyrinth" + }, + { + "appid": 3022130, + "normalized_name": "agents of argus" + }, + { + "appid": 3022270, + "normalized_name": "proto garden" + }, + { + "appid": 3022290, + "normalized_name": "prize pact" + }, + { + "appid": 3022300, + "normalized_name": "uncanny stories" + }, + { + "appid": 3022320, + "normalized_name": "mobiles tycoon" + }, + { + "appid": 3022340, + "normalized_name": "athralis tower defense" + }, + { + "appid": 3022360, + "normalized_name": "maximus mouse's manic mayhem" + }, + { + "appid": 3022370, + "normalized_name": "turbo bullets" + }, + { + "appid": 3022380, + "normalized_name": "adventures in calculon" + }, + { + "appid": 3022390, + "normalized_name": "roguebound" + }, + { + "appid": 3022470, + "normalized_name": "rotten sails" + }, + { + "appid": 3022500, + "normalized_name": "sakura alien 3" + }, + { + "appid": 3022510, + "normalized_name": "slime scramble" + }, + { + "appid": 3022530, + "normalized_name": "blackholemaze" + }, + { + "appid": 3022540, + "normalized_name": "menticide" + }, + { + "appid": 3022560, + "normalized_name": "the banker tycoon" + }, + { + "appid": 3022640, + "normalized_name": "loud run" + }, + { + "appid": 3022660, + "normalized_name": "异世界的回响千雪之歌" + }, + { + "appid": 3022680, + "normalized_name": "book of spells 2" + }, + { + "appid": 3022690, + "normalized_name": "night driver" + }, + { + "appid": 3022740, + "normalized_name": "heart clicker" + }, + { + "appid": 3022750, + "normalized_name": "rune stones" + }, + { + "appid": 3022780, + "normalized_name": "a better tomorrow" + }, + { + "appid": 3022810, + "normalized_name": "hackhub free trial" + }, + { + "appid": 3022840, + "normalized_name": "the super pie throwing" + }, + { + "appid": 3022850, + "normalized_name": "emlis" + }, + { + "appid": 3022860, + "normalized_name": "taekwongirl" + }, + { + "appid": 3022870, + "normalized_name": "i commissioned some bunnies 9" + }, + { + "appid": 3022880, + "normalized_name": "i commissioned some bunnies 10" + }, + { + "appid": 3022900, + "normalized_name": "i commissioned some butterflies 3" + }, + { + "appid": 3022910, + "normalized_name": "fortune and glory" + }, + { + "appid": 3022950, + "normalized_name": "in your shoes an nsfw milf & daughter sex vn" + }, + { + "appid": 3022960, + "normalized_name": "tour de drone" + }, + { + "appid": 3023020, + "normalized_name": "cats in wonderland" + }, + { + "appid": 3023070, + "normalized_name": "beyblade x xone" + }, + { + "appid": 3023100, + "normalized_name": "ginger shroom journey" + }, + { + "appid": 3023120, + "normalized_name": "exodus the rise of chaos" + }, + { + "appid": 3023170, + "normalized_name": "dice player one trailer" + }, + { + "appid": 3023190, + "normalized_name": "みんなで推理" + }, + { + "appid": 3023210, + "normalized_name": "golftroidvania" + }, + { + "appid": 3023230, + "normalized_name": "the great conclovince of mithrithnogg" + }, + { + "appid": 3023250, + "normalized_name": "popit sanic goo!" + }, + { + "appid": 3023270, + "normalized_name": "the end" + }, + { + "appid": 3023360, + "normalized_name": "young detectives school" + }, + { + "appid": 3023380, + "normalized_name": "hazardous island" + }, + { + "appid": 3023400, + "normalized_name": "ferdinand fox tries ecoterrorism" + }, + { + "appid": 3023440, + "normalized_name": "shumo prologue" + }, + { + "appid": 3023460, + "normalized_name": "silent scream 2" + }, + { + "appid": 3023470, + "normalized_name": "devil batch" + }, + { + "appid": 3023490, + "normalized_name": "newton's fourth law" + }, + { + "appid": 3023550, + "normalized_name": "斯金纳堡神秘学纪事" + }, + { + "appid": 3023600, + "normalized_name": "horse farm simulator" + }, + { + "appid": 3023610, + "normalized_name": "后室:维修工(backrooms maintenance)" + }, + { + "appid": 3023620, + "normalized_name": "idea fix" + }, + { + "appid": 3023660, + "normalized_name": "gay sex adventures episode 8" + }, + { + "appid": 3023670, + "normalized_name": "evacuation zone tampere" + }, + { + "appid": 3023680, + "normalized_name": "how to turn a cherry tree spirit into an idol" + }, + { + "appid": 3023690, + "normalized_name": "money and lady | 财貌双全" + }, + { + "appid": 3023700, + "normalized_name": "koverpark haunted subway" + }, + { + "appid": 3023800, + "normalized_name": "detective annintae missing basketball court" + }, + { + "appid": 3023870, + "normalized_name": "cosmic remnants" + }, + { + "appid": 3023880, + "normalized_name": "yellow house" + }, + { + "appid": 3023930, + "normalized_name": "ufl" + }, + { + "appid": 3023960, + "normalized_name": "island dwellers" + }, + { + "appid": 3023980, + "normalized_name": "eternal hell" + }, + { + "appid": 3024020, + "normalized_name": "angkor 5 volcano's verge" + }, + { + "appid": 3024040, + "normalized_name": "stronghold crusader" + }, + { + "appid": 3024050, + "normalized_name": "summer games challenge" + }, + { + "appid": 3024080, + "normalized_name": "hunting seas" + }, + { + "appid": 3024100, + "normalized_name": "wyatt earp and the cowboys wargame ssp" + }, + { + "appid": 3024110, + "normalized_name": "jin & jan" + }, + { + "appid": 3024120, + "normalized_name": "eletta" + }, + { + "appid": 3024130, + "normalized_name": "pao pao" + }, + { + "appid": 3024170, + "normalized_name": "sticks together the wishing well" + }, + { + "appid": 3024190, + "normalized_name": "ghost party" + }, + { + "appid": 3024220, + "normalized_name": "airsoft battle royale" + }, + { + "appid": 3024250, + "normalized_name": "extractd" + }, + { + "appid": 3024320, + "normalized_name": "epsilon protocol" + }, + { + "appid": 3024350, + "normalized_name": "esper agent" + }, + { + "appid": 3024370, + "normalized_name": "nebuleet" + }, + { + "appid": 3024410, + "normalized_name": "astragali" + }, + { + "appid": 3024490, + "normalized_name": "dungeon run" + }, + { + "appid": 3024510, + "normalized_name": "necrotic nightmare" + }, + { + "appid": 3024520, + "normalized_name": "descendant" + }, + { + "appid": 3024530, + "normalized_name": "to the entwine" + }, + { + "appid": 3024540, + "normalized_name": "гооооооол!" + }, + { + "appid": 3024560, + "normalized_name": "dungeon master" + }, + { + "appid": 3024590, + "normalized_name": "greengrocer simulator" + }, + { + "appid": 3024640, + "normalized_name": "none shall intrude descent" + }, + { + "appid": 3024660, + "normalized_name": "skateballers" + }, + { + "appid": 3024690, + "normalized_name": "detective school club" + }, + { + "appid": 3024710, + "normalized_name": "black submarine deep seek" + }, + { + "appid": 3024720, + "normalized_name": "sky climb" + }, + { + "appid": 3024730, + "normalized_name": "department of gravity management" + }, + { + "appid": 3024760, + "normalized_name": "the broken ceiling" + }, + { + "appid": 3024770, + "normalized_name": "tenalatro" + }, + { + "appid": 3024830, + "normalized_name": "chushpan simulator 2" + }, + { + "appid": 3024840, + "normalized_name": "hidden wings and paws" + }, + { + "appid": 3024860, + "normalized_name": "furry farm" + }, + { + "appid": 3024890, + "normalized_name": "the ritual mystery driving" + }, + { + "appid": 3024920, + "normalized_name": "hentai senpai konbini no shirigaru onna" + }, + { + "appid": 3024940, + "normalized_name": "mole mine rocks 0.15" + }, + { + "appid": 3024950, + "normalized_name": "glen a dull journey into the unremarkable" + }, + { + "appid": 3024960, + "normalized_name": "delve diver" + }, + { + "appid": 3025020, + "normalized_name": "a good cat and the graduate life" + }, + { + "appid": 3025060, + "normalized_name": "the guardians" + }, + { + "appid": 3025100, + "normalized_name": "soul armors recollect" + }, + { + "appid": 3025140, + "normalized_name": "a few days with tiffany" + }, + { + "appid": 3025150, + "normalized_name": "king of snatchers" + }, + { + "appid": 3025160, + "normalized_name": "pirates outlaws 2 heritage" + }, + { + "appid": 3025180, + "normalized_name": "la salamanca" + }, + { + "appid": 3025200, + "normalized_name": "get off work" + }, + { + "appid": 3025220, + "normalized_name": "animallaboratory" + }, + { + "appid": 3025240, + "normalized_name": "died" + }, + { + "appid": 3025260, + "normalized_name": "kitesurf runner" + }, + { + "appid": 3025280, + "normalized_name": "swingmania" + }, + { + "appid": 3025290, + "normalized_name": "underward" + }, + { + "appid": 3025300, + "normalized_name": "trust" + }, + { + "appid": 3025310, + "normalized_name": "midnight swamp" + }, + { + "appid": 3025320, + "normalized_name": "riftcast" + }, + { + "appid": 3025330, + "normalized_name": "crazy world of caleb level 1 to 7" + }, + { + "appid": 3025340, + "normalized_name": "i am the registered environmental engineer" + }, + { + "appid": 3025380, + "normalized_name": "beyond the tales" + }, + { + "appid": 3025450, + "normalized_name": "kingdom of delta" + }, + { + "appid": 3025470, + "normalized_name": "come home ghost stories from bangladesh" + }, + { + "appid": 3025540, + "normalized_name": "the quarantine" + }, + { + "appid": 3025560, + "normalized_name": "oceanhorn chronos dungeon" + }, + { + "appid": 3025590, + "normalized_name": "tron catalyst" + }, + { + "appid": 3025600, + "normalized_name": "bishojo battlefield" + }, + { + "appid": 3025610, + "normalized_name": "ocon" + }, + { + "appid": 3025620, + "normalized_name": "library of lyria" + }, + { + "appid": 3025630, + "normalized_name": "shadow of pharos" + }, + { + "appid": 3025730, + "normalized_name": "dead for dread" + }, + { + "appid": 3025740, + "normalized_name": "unkillable robots" + }, + { + "appid": 3025760, + "normalized_name": "dark the dead" + }, + { + "appid": 3025770, + "normalized_name": "naus" + }, + { + "appid": 3025790, + "normalized_name": "furry sex resort 🏝🔞" + }, + { + "appid": 3025800, + "normalized_name": "demon slayer" + }, + { + "appid": 3025820, + "normalized_name": "pacification light" + }, + { + "appid": 3025840, + "normalized_name": "space kitten an easy survival game" + }, + { + "appid": 3025860, + "normalized_name": "ココロワヒメ、おにぎりを届けるの巻 kokorowa onigiri delivery" + }, + { + "appid": 3025870, + "normalized_name": "ecliptic" + }, + { + "appid": 3025880, + "normalized_name": "argonauts path" + }, + { + "appid": 3025910, + "normalized_name": "birdcage a tale of sorrow" + }, + { + "appid": 3026000, + "normalized_name": "破碎空间旅行者" + }, + { + "appid": 3026030, + "normalized_name": "mayalok alpha v0.1.7" + }, + { + "appid": 3026100, + "normalized_name": "esports simulator" + }, + { + "appid": 3026130, + "normalized_name": "cathy and the others" + }, + { + "appid": 3026160, + "normalized_name": "trial traction" + }, + { + "appid": 3026170, + "normalized_name": "eleventh hour" + }, + { + "appid": 3026180, + "normalized_name": "scifi racing team" + }, + { + "appid": 3026240, + "normalized_name": "endless onslaught" + }, + { + "appid": 3026290, + "normalized_name": "elve" + }, + { + "appid": 3026300, + "normalized_name": "dragon puncher" + }, + { + "appid": 3026310, + "normalized_name": "bustafellows season2" + }, + { + "appid": 3026330, + "normalized_name": "path for the seeker" + }, + { + "appid": 3026350, + "normalized_name": "souvenirs" + }, + { + "appid": 3026360, + "normalized_name": "deadline" + }, + { + "appid": 3026380, + "normalized_name": "crazy captain cannon mission billionaire buster" + }, + { + "appid": 3026430, + "normalized_name": "esports team manager" + }, + { + "appid": 3026440, + "normalized_name": "sex industry xxx" + }, + { + "appid": 3026450, + "normalized_name": "deadly days roadtrip" + }, + { + "appid": 3026460, + "normalized_name": "sex inspector 🚬💋" + }, + { + "appid": 3026480, + "normalized_name": "you have to climb out" + }, + { + "appid": 3026560, + "normalized_name": "multiplayer wizards" + }, + { + "appid": 3026620, + "normalized_name": "end the world" + }, + { + "appid": 3026640, + "normalized_name": "orca insurgency" + }, + { + "appid": 3026710, + "normalized_name": "secret diaries royal wedding" + }, + { + "appid": 3026720, + "normalized_name": "arcane arts sorcerer's quest" + }, + { + "appid": 3026730, + "normalized_name": "tamer king of dinosaurs" + }, + { + "appid": 3026740, + "normalized_name": "the song of awakening" + }, + { + "appid": 3026770, + "normalized_name": "hunt me" + }, + { + "appid": 3026830, + "normalized_name": "alex the ball" + }, + { + "appid": 3026920, + "normalized_name": "project viper" + }, + { + "appid": 3026980, + "normalized_name": "jigs4w3d puzzle challenge" + }, + { + "appid": 3027000, + "normalized_name": "bass defense rhythm meets strategy" + }, + { + "appid": 3027040, + "normalized_name": "fusion fighters" + }, + { + "appid": 3027060, + "normalized_name": "cubetory" + }, + { + "appid": 3027160, + "normalized_name": "lost girl platformer" + }, + { + "appid": 3027170, + "normalized_name": "oil and sand" + }, + { + "appid": 3027260, + "normalized_name": "behemoth" + }, + { + "appid": 3027300, + "normalized_name": "radiation hazard" + }, + { + "appid": 3027310, + "normalized_name": "zombi efem" + }, + { + "appid": 3027430, + "normalized_name": "sheep lass quest zero" + }, + { + "appid": 3027470, + "normalized_name": "minha casa" + }, + { + "appid": 3027480, + "normalized_name": "outpost 3" + }, + { + "appid": 3027490, + "normalized_name": "livingforest" + }, + { + "appid": 3027550, + "normalized_name": "saint goddess" + }, + { + "appid": 3027580, + "normalized_name": "unity chan the sharpshooter!" + }, + { + "appid": 3027590, + "normalized_name": "paw paw death festival" + }, + { + "appid": 3027600, + "normalized_name": "love elections and chocolate" + }, + { + "appid": 3027620, + "normalized_name": "kakenuke★forward to our sparking youth!" + }, + { + "appid": 3027630, + "normalized_name": "shark coin party" + }, + { + "appid": 3027670, + "normalized_name": "破處了身為偶像的好友 做了類似ntr的事" + }, + { + "appid": 3027690, + "normalized_name": "stargears" + }, + { + "appid": 3027700, + "normalized_name": "180 seconds a firefighter's call" + }, + { + "appid": 3027710, + "normalized_name": "cat guardian" + }, + { + "appid": 3027740, + "normalized_name": "escape from benjamin's room" + }, + { + "appid": 3027780, + "normalized_name": "a work of art" + }, + { + "appid": 3027810, + "normalized_name": "东方诡夜行" + }, + { + "appid": 3027820, + "normalized_name": "nexus rumble the showdown" + }, + { + "appid": 3027830, + "normalized_name": "手遅れの森 too late forest" + }, + { + "appid": 3027850, + "normalized_name": "9to9 museum" + }, + { + "appid": 3027900, + "normalized_name": "run vivian run" + }, + { + "appid": 3027910, + "normalized_name": "one last raid" + }, + { + "appid": 3027920, + "normalized_name": "intersection" + }, + { + "appid": 3027930, + "normalized_name": "karate survivor" + }, + { + "appid": 3027960, + "normalized_name": "qazaq son of the sun" + }, + { + "appid": 3027970, + "normalized_name": "neon phonk robots" + }, + { + "appid": 3027980, + "normalized_name": "next of kin" + }, + { + "appid": 3027990, + "normalized_name": "装甲红锋" + }, + { + "appid": 3028000, + "normalized_name": "joy life 4" + }, + { + "appid": 3028010, + "normalized_name": "the lazy demon lord and the four stones of dispel" + }, + { + "appid": 3028060, + "normalized_name": "retro horror story" + }, + { + "appid": 3028070, + "normalized_name": "colomoon" + }, + { + "appid": 3028120, + "normalized_name": "请叫我英雄" + }, + { + "appid": 3028130, + "normalized_name": "one paradox" + }, + { + "appid": 3028140, + "normalized_name": "taika" + }, + { + "appid": 3028150, + "normalized_name": "nao in heat! ~kemomimi girl's naughty treatment~" + }, + { + "appid": 3028160, + "normalized_name": "persecution the elevator" + }, + { + "appid": 3028170, + "normalized_name": "nightghast" + }, + { + "appid": 3028200, + "normalized_name": "wheel up the hill" + }, + { + "appid": 3028210, + "normalized_name": "forgotten fears" + }, + { + "appid": 3028220, + "normalized_name": "angor" + }, + { + "appid": 3028230, + "normalized_name": "ramek total machine death" + }, + { + "appid": 3028280, + "normalized_name": "drag and drop medieval" + }, + { + "appid": 3028290, + "normalized_name": "f*ck the hell out" + }, + { + "appid": 3028300, + "normalized_name": "happy souls" + }, + { + "appid": 3028310, + "normalized_name": "nordhold" + }, + { + "appid": 3028370, + "normalized_name": "tupi the legend of arariboia" + }, + { + "appid": 3028390, + "normalized_name": "knight fall" + }, + { + "appid": 3028400, + "normalized_name": "心灵蓝图" + }, + { + "appid": 3028410, + "normalized_name": "deadwood drive" + }, + { + "appid": 3028420, + "normalized_name": "the stellar station engineer" + }, + { + "appid": 3028430, + "normalized_name": "the fast and the flirtatious la drift" + }, + { + "appid": 3028440, + "normalized_name": "hidden cats pirates" + }, + { + "appid": 3028500, + "normalized_name": "cakey's twisted bakery" + }, + { + "appid": 3028540, + "normalized_name": "survivor" + }, + { + "appid": 3028550, + "normalized_name": "lost moment" + }, + { + "appid": 3028560, + "normalized_name": "footsy" + }, + { + "appid": 3028600, + "normalized_name": "city find all" + }, + { + "appid": 3028610, + "normalized_name": "world of paintball" + }, + { + "appid": 3028660, + "normalized_name": "rerodent" + }, + { + "appid": 3028680, + "normalized_name": "medival hustle" + }, + { + "appid": 3028700, + "normalized_name": "speed run" + }, + { + "appid": 3028720, + "normalized_name": "plaza security #neverforget7/13" + }, + { + "appid": 3028730, + "normalized_name": "love internet and murder magic" + }, + { + "appid": 3028830, + "normalized_name": "stranger maidens please protect me!" + }, + { + "appid": 3028840, + "normalized_name": "slide!" + }, + { + "appid": 3028870, + "normalized_name": "lost tribe" + }, + { + "appid": 3028880, + "normalized_name": "survivor's dawn" + }, + { + "appid": 3028890, + "normalized_name": "soulthread" + }, + { + "appid": 3028900, + "normalized_name": "cosmic parkour infinite journey" + }, + { + "appid": 3028920, + "normalized_name": "holidays" + }, + { + "appid": 3028930, + "normalized_name": "freakshow" + }, + { + "appid": 3028990, + "normalized_name": "jinko" + }, + { + "appid": 3029010, + "normalized_name": "elementalist" + }, + { + "appid": 3029030, + "normalized_name": "moo moo martians" + }, + { + "appid": 3029050, + "normalized_name": "vortex siege" + }, + { + "appid": 3029090, + "normalized_name": "rush n crash" + }, + { + "appid": 3029130, + "normalized_name": "astral ooze" + }, + { + "appid": 3029140, + "normalized_name": "wild encounters cedar woods campground" + }, + { + "appid": 3029180, + "normalized_name": "kingdomino" + }, + { + "appid": 3029190, + "normalized_name": "prison puzzle" + }, + { + "appid": 3029230, + "normalized_name": "epstein 2" + }, + { + "appid": 3029250, + "normalized_name": "hyper hadron racing" + }, + { + "appid": 3029260, + "normalized_name": "number stomper" + }, + { + "appid": 3029270, + "normalized_name": "the unseen fears fortune's consequence collector's" + }, + { + "appid": 3029340, + "normalized_name": "the photographer (nymphs)" + }, + { + "appid": 3029380, + "normalized_name": "cinnabar nights" + }, + { + "appid": 3029420, + "normalized_name": "spooktober visual novel jam!" + }, + { + "appid": 3029440, + "normalized_name": "bull looney" + }, + { + "appid": 3029450, + "normalized_name": "neon fever" + }, + { + "appid": 3029470, + "normalized_name": "pillars of fog" + }, + { + "appid": 3029480, + "normalized_name": "multi path" + }, + { + "appid": 3029490, + "normalized_name": "iteriba olokun's wrath" + }, + { + "appid": 3029500, + "normalized_name": "wind story" + }, + { + "appid": 3029520, + "normalized_name": "synaxarion great martyr theodore the tyro" + }, + { + "appid": 3029540, + "normalized_name": "gunship battle total warfare" + }, + { + "appid": 3029550, + "normalized_name": "furry empire ⚔" + }, + { + "appid": 3029570, + "normalized_name": "brotank" + }, + { + "appid": 3029600, + "normalized_name": "story crafter" + }, + { + "appid": 3029610, + "normalized_name": "dark prison 7th" + }, + { + "appid": 3029680, + "normalized_name": "you want to watch the world burn" + }, + { + "appid": 3029690, + "normalized_name": "clan war chess" + }, + { + "appid": 3029800, + "normalized_name": "groovy labs" + }, + { + "appid": 3029810, + "normalized_name": "last command prologue" + }, + { + "appid": 3029830, + "normalized_name": "モンスターコマンダーズ 深淵の夜想曲" + }, + { + "appid": 3029840, + "normalized_name": "new yankee through the history mirror" + }, + { + "appid": 3029870, + "normalized_name": "邪神的遗产 told god the legacy of cthulhu" + }, + { + "appid": 3029880, + "normalized_name": "无法抗拒的他们" + }, + { + "appid": 3029910, + "normalized_name": "喵喵幸存者" + }, + { + "appid": 3029960, + "normalized_name": "离家出走 frame breaker" + }, + { + "appid": 3029990, + "normalized_name": "学妹、学姐、少妇还有教导主任爱上我! girls on campus from freshmen to faculty all fall for me!" + }, + { + "appid": 3030000, + "normalized_name": "halmaverse" + }, + { + "appid": 3030010, + "normalized_name": "召唤师崛起 summoner rises" + }, + { + "appid": 3030020, + "normalized_name": "kokoronull" + }, + { + "appid": 3030130, + "normalized_name": "known as puca" + }, + { + "appid": 3030160, + "normalized_name": "neon fantasy mushrooms" + }, + { + "appid": 3030190, + "normalized_name": "pandora's toybox" + }, + { + "appid": 3030210, + "normalized_name": "slash/jump" + }, + { + "appid": 3030230, + "normalized_name": "the hellgate club" + }, + { + "appid": 3030240, + "normalized_name": "cucktales 🐓" + }, + { + "appid": 3030250, + "normalized_name": "aunt fatima خالة فاطمة" + }, + { + "appid": 3030260, + "normalized_name": "familiar friends what's your familiar?" + }, + { + "appid": 3030290, + "normalized_name": "submarine survivor" + }, + { + "appid": 3030360, + "normalized_name": "puppet team" + }, + { + "appid": 3030390, + "normalized_name": "僵尸联盟league of zombies" + }, + { + "appid": 3030440, + "normalized_name": "enigma awaken" + }, + { + "appid": 3030470, + "normalized_name": "you belong in the stars" + }, + { + "appid": 3030490, + "normalized_name": "direction!levelup!" + }, + { + "appid": 3030530, + "normalized_name": "cracker" + }, + { + "appid": 3030550, + "normalized_name": "farm chores" + }, + { + "appid": 3030560, + "normalized_name": "sloppy forgeries" + }, + { + "appid": 3030580, + "normalized_name": "click click dig prologue" + }, + { + "appid": 3030590, + "normalized_name": "number fields" + }, + { + "appid": 3030610, + "normalized_name": "90s my dear" + }, + { + "appid": 3030620, + "normalized_name": "kappa's asylum" + }, + { + "appid": 3030650, + "normalized_name": "fantastic findings hidden seasons" + }, + { + "appid": 3030680, + "normalized_name": "neighbors" + }, + { + "appid": 3030720, + "normalized_name": "fate reawakened" + }, + { + "appid": 3030730, + "normalized_name": "jasper redds vs the ares belt" + }, + { + "appid": 3030740, + "normalized_name": "the awakening femboy saga" + }, + { + "appid": 3030760, + "normalized_name": "horror manor" + }, + { + "appid": 3030810, + "normalized_name": "arvis punch" + }, + { + "appid": 3030820, + "normalized_name": "goo go" + }, + { + "appid": 3030830, + "normalized_name": "confinio reality prison" + }, + { + "appid": 3030850, + "normalized_name": "aether brew" + }, + { + "appid": 3030860, + "normalized_name": "minesweeper 99" + }, + { + "appid": 3030870, + "normalized_name": "conspiracy crew" + }, + { + "appid": 3030920, + "normalized_name": "astral pursuit" + }, + { + "appid": 3030930, + "normalized_name": "conquest reforged" + }, + { + "appid": 3030950, + "normalized_name": "mooh" + }, + { + "appid": 3030980, + "normalized_name": "イツカノヨル" + }, + { + "appid": 3031020, + "normalized_name": "short adventure" + }, + { + "appid": 3031050, + "normalized_name": "lumm e" + }, + { + "appid": 3031060, + "normalized_name": "worldseekers deckbuilding rpg" + }, + { + "appid": 3031070, + "normalized_name": "mother bunker vr" + }, + { + "appid": 3031080, + "normalized_name": "burning sky" + }, + { + "appid": 3031100, + "normalized_name": "wizard blaster" + }, + { + "appid": 3031110, + "normalized_name": "fingun forever!" + }, + { + "appid": 3031130, + "normalized_name": "ninja 1987" + }, + { + "appid": 3031140, + "normalized_name": "vbr clash" + }, + { + "appid": 3031150, + "normalized_name": "secret hot springs girl" + }, + { + "appid": 3031160, + "normalized_name": "reverie dreams of sand" + }, + { + "appid": 3031250, + "normalized_name": "21pirates card game" + }, + { + "appid": 3031340, + "normalized_name": "aquest" + }, + { + "appid": 3031360, + "normalized_name": "wraithrun" + }, + { + "appid": 3031390, + "normalized_name": "my future wife (insanerotica)" + }, + { + "appid": 3031440, + "normalized_name": "retroronto" + }, + { + "appid": 3031450, + "normalized_name": "visceral abyss" + }, + { + "appid": 3031470, + "normalized_name": "rolldown" + }, + { + "appid": 3031580, + "normalized_name": "悪魔と落とし穴 devil and pitfall" + }, + { + "appid": 3031590, + "normalized_name": "13f" + }, + { + "appid": 3031600, + "normalized_name": "gee grotesque 2 iskra perfekta" + }, + { + "appid": 3031640, + "normalized_name": "escape from the gacha corner" + }, + { + "appid": 3031650, + "normalized_name": "times tables games" + }, + { + "appid": 3031660, + "normalized_name": "future swashbuckler" + }, + { + "appid": 3031700, + "normalized_name": "ninja kato 4" + }, + { + "appid": 3031720, + "normalized_name": "kamikaze empire" + }, + { + "appid": 3031740, + "normalized_name": "adai's adventures" + }, + { + "appid": 3031750, + "normalized_name": "dino cleanup" + }, + { + "appid": 3031780, + "normalized_name": "r space" + }, + { + "appid": 3031870, + "normalized_name": "emiko's pledge 4" + }, + { + "appid": 3031880, + "normalized_name": "car park capital" + }, + { + "appid": 3031890, + "normalized_name": "acts of blood" + }, + { + "appid": 3031930, + "normalized_name": "レイチェルの思い出" + }, + { + "appid": 3031940, + "normalized_name": "why don't they laugh?" + }, + { + "appid": 3031980, + "normalized_name": "awake" + }, + { + "appid": 3032010, + "normalized_name": "the supper new blood" + }, + { + "appid": 3032020, + "normalized_name": "cast & spell" + }, + { + "appid": 3032080, + "normalized_name": "sound horizons" + }, + { + "appid": 3032110, + "normalized_name": "fiesta animal" + }, + { + "appid": 3032120, + "normalized_name": "the curse of town" + }, + { + "appid": 3032130, + "normalized_name": "just a dream" + }, + { + "appid": 3032140, + "normalized_name": "shine on my little sun" + }, + { + "appid": 3032150, + "normalized_name": "frontier legends" + }, + { + "appid": 3032160, + "normalized_name": "puzzle scenery" + }, + { + "appid": 3032190, + "normalized_name": "just date vegan" + }, + { + "appid": 3032210, + "normalized_name": "detective nekko ディテクティブネッコ" + }, + { + "appid": 3032230, + "normalized_name": "mushiverse online boardgame" + }, + { + "appid": 3032240, + "normalized_name": "warhawk" + }, + { + "appid": 3032250, + "normalized_name": "compu tron x3000" + }, + { + "appid": 3032260, + "normalized_name": "snatched" + }, + { + "appid": 3032350, + "normalized_name": "project unknown designation" + }, + { + "appid": 3032430, + "normalized_name": "fangs & faith solitaire" + }, + { + "appid": 3032450, + "normalized_name": "escape from castle frankenstein" + }, + { + "appid": 3032460, + "normalized_name": "pindrop escape the room" + }, + { + "appid": 3032520, + "normalized_name": "bluma" + }, + { + "appid": 3032530, + "normalized_name": "grocery simulator" + }, + { + "appid": 3032540, + "normalized_name": "triad" + }, + { + "appid": 3032560, + "normalized_name": "jam jump" + }, + { + "appid": 3032580, + "normalized_name": "level up 80" + }, + { + "appid": 3032590, + "normalized_name": "pixel golf club" + }, + { + "appid": 3032600, + "normalized_name": "raceborn" + }, + { + "appid": 3032610, + "normalized_name": "space gray x" + }, + { + "appid": 3032630, + "normalized_name": "accident liquidator" + }, + { + "appid": 3032640, + "normalized_name": "gravitational phenomenon" + }, + { + "appid": 3032650, + "normalized_name": "pizza boy z" + }, + { + "appid": 3032660, + "normalized_name": "sus virus amogus" + }, + { + "appid": 3032730, + "normalized_name": "philosopher's stone" + }, + { + "appid": 3032790, + "normalized_name": "idle casino empire" + }, + { + "appid": 3032810, + "normalized_name": "ten shot" + }, + { + "appid": 3032820, + "normalized_name": "soul shuffler" + }, + { + "appid": 3032830, + "normalized_name": "katanaut" + }, + { + "appid": 3032930, + "normalized_name": "adrift" + }, + { + "appid": 3032940, + "normalized_name": "monster ops 3" + }, + { + "appid": 3032950, + "normalized_name": "海鳥野ガクの精神鑑定録" + }, + { + "appid": 3032970, + "normalized_name": "hyperfight 2" + }, + { + "appid": 3032980, + "normalized_name": "anomalous crossing ~shibuya~ | 異変交差点 ~渋谷~" + }, + { + "appid": 3033030, + "normalized_name": "divinastros" + }, + { + "appid": 3033050, + "normalized_name": "iron apartment guardian" + }, + { + "appid": 3033080, + "normalized_name": "wukong survivors :begin" + }, + { + "appid": 3033090, + "normalized_name": "secret enemy cosmic fighting" + }, + { + "appid": 3033120, + "normalized_name": "sombra" + }, + { + "appid": 3033130, + "normalized_name": "速算" + }, + { + "appid": 3033180, + "normalized_name": "ancient demon shadow" + }, + { + "appid": 3033190, + "normalized_name": "demon still alive" + }, + { + "appid": 3033200, + "normalized_name": "the soul inside us" + }, + { + "appid": 3033220, + "normalized_name": "the last hollow" + }, + { + "appid": 3033230, + "normalized_name": "bookworm" + }, + { + "appid": 3033310, + "normalized_name": "diving focus" + }, + { + "appid": 3033340, + "normalized_name": "sva" + }, + { + "appid": 3033410, + "normalized_name": "그랑 엠파이어 그래픽 리마스터" + }, + { + "appid": 3033420, + "normalized_name": "nuclear apocalypse merchant simulator" + }, + { + "appid": 3033430, + "normalized_name": "trapped out" + }, + { + "appid": 3033470, + "normalized_name": "from the mystery zone" + }, + { + "appid": 3033490, + "normalized_name": "hotel tome ws" + }, + { + "appid": 3033500, + "normalized_name": "huddam 2 berzah" + }, + { + "appid": 3033510, + "normalized_name": "vectic boosted" + }, + { + "appid": 3033520, + "normalized_name": "oyasumii" + }, + { + "appid": 3033540, + "normalized_name": "fast running" + }, + { + "appid": 3033560, + "normalized_name": "bajka" + }, + { + "appid": 3033600, + "normalized_name": "rogue rollout" + }, + { + "appid": 3033660, + "normalized_name": "my sudoku" + }, + { + "appid": 3033710, + "normalized_name": "nia jewel hunter" + }, + { + "appid": 3033730, + "normalized_name": "nine lives ninja survive!" + }, + { + "appid": 3033740, + "normalized_name": "valourglade" + }, + { + "appid": 3033760, + "normalized_name": "le gardien du savoir" + }, + { + "appid": 3033770, + "normalized_name": "seventh choir" + }, + { + "appid": 3033780, + "normalized_name": "roman trail" + }, + { + "appid": 3033810, + "normalized_name": "bazaar simulator prologue" + }, + { + "appid": 3033820, + "normalized_name": "eternal vampire" + }, + { + "appid": 3033880, + "normalized_name": "quescaper" + }, + { + "appid": 3033890, + "normalized_name": "the quiet room" + }, + { + "appid": 3033900, + "normalized_name": "metamorphosis" + }, + { + "appid": 3033930, + "normalized_name": "zombie dolls" + }, + { + "appid": 3033950, + "normalized_name": "slalomancers" + }, + { + "appid": 3033960, + "normalized_name": "bounce ball" + }, + { + "appid": 3033980, + "normalized_name": "ivor" + }, + { + "appid": 3034070, + "normalized_name": "spy drops" + }, + { + "appid": 3034120, + "normalized_name": "i am sorry" + }, + { + "appid": 3034130, + "normalized_name": "love is..." + }, + { + "appid": 3034150, + "normalized_name": "rogueween" + }, + { + "appid": 3034160, + "normalized_name": "split spirit" + }, + { + "appid": 3034170, + "normalized_name": "daimyo reign" + }, + { + "appid": 3034180, + "normalized_name": "witch way" + }, + { + "appid": 3034190, + "normalized_name": "knight's eclipse" + }, + { + "appid": 3034290, + "normalized_name": "loot goblin inc." + }, + { + "appid": 3034300, + "normalized_name": "brendon's water polo" + }, + { + "appid": 3034330, + "normalized_name": "ワールド・ネバーランド~オルルド王国物語~experience of fiction life" + }, + { + "appid": 3034340, + "normalized_name": "ワールドネバーランドエルネア王国の日々 another life adventure" + }, + { + "appid": 3034350, + "normalized_name": "■■ノニラヤ" + }, + { + "appid": 3034390, + "normalized_name": "apocalypse secrets" + }, + { + "appid": 3034400, + "normalized_name": "medieval businessman" + }, + { + "appid": 3034440, + "normalized_name": "clare's escape" + }, + { + "appid": 3034450, + "normalized_name": "流る星 a wish star" + }, + { + "appid": 3034520, + "normalized_name": "狐のかえり道" + }, + { + "appid": 3034530, + "normalized_name": "zilar empire of the underground" + }, + { + "appid": 3034550, + "normalized_name": "the oneironaut" + }, + { + "appid": 3034560, + "normalized_name": "重返地球" + }, + { + "appid": 3034580, + "normalized_name": "mysteries of perception" + }, + { + "appid": 3034590, + "normalized_name": "chapatriste" + }, + { + "appid": 3034600, + "normalized_name": "sandy planet season 1" + }, + { + "appid": 3034630, + "normalized_name": "drum revolution" + }, + { + "appid": 3034640, + "normalized_name": "distraught" + }, + { + "appid": 3034660, + "normalized_name": "dunebound tactics" + }, + { + "appid": 3034670, + "normalized_name": "abrasion" + }, + { + "appid": 3034680, + "normalized_name": "battlecards saga" + }, + { + "appid": 3034710, + "normalized_name": "pop art" + }, + { + "appid": 3034720, + "normalized_name": "tavern manager simulator prologue" + }, + { + "appid": 3034740, + "normalized_name": "love hotel exit 8" + }, + { + "appid": 3034750, + "normalized_name": "frog holm" + }, + { + "appid": 3034810, + "normalized_name": "striker!" + }, + { + "appid": 3034820, + "normalized_name": "brute horse" + }, + { + "appid": 3034840, + "normalized_name": "ludo animal heroes" + }, + { + "appid": 3034870, + "normalized_name": "vr kart 360*" + }, + { + "appid": 3034920, + "normalized_name": "shadowtime" + }, + { + "appid": 3034960, + "normalized_name": "xenospore" + }, + { + "appid": 3034970, + "normalized_name": "hachikanshogi matta ari" + }, + { + "appid": 3034980, + "normalized_name": "gtr garage town racing" + }, + { + "appid": 3035000, + "normalized_name": "superserpentsnake3d" + }, + { + "appid": 3035010, + "normalized_name": "deep cuts" + }, + { + "appid": 3035020, + "normalized_name": "one more! 🍺" + }, + { + "appid": 3035080, + "normalized_name": "legions" + }, + { + "appid": 3035090, + "normalized_name": "popcorn fever" + }, + { + "appid": 3035100, + "normalized_name": "you must retry" + }, + { + "appid": 3035120, + "normalized_name": "is this seat taken?" + }, + { + "appid": 3035140, + "normalized_name": "wonderlang french" + }, + { + "appid": 3035180, + "normalized_name": "zombcube" + }, + { + "appid": 3035250, + "normalized_name": "denizen's den deeper" + }, + { + "appid": 3035270, + "normalized_name": "backrooms" + }, + { + "appid": 3035290, + "normalized_name": "rogue process" + }, + { + "appid": 3035300, + "normalized_name": "marblegp" + }, + { + "appid": 3035310, + "normalized_name": "femdom wife game emily" + }, + { + "appid": 3035320, + "normalized_name": "zombie god" + }, + { + "appid": 3035330, + "normalized_name": "dicealot" + }, + { + "appid": 3035340, + "normalized_name": "magical merge fairy adventure" + }, + { + "appid": 3035360, + "normalized_name": "hop 'n' marty" + }, + { + "appid": 3035400, + "normalized_name": "wolf hero animals vs robots" + }, + { + "appid": 3035430, + "normalized_name": "sipe" + }, + { + "appid": 3035440, + "normalized_name": "cute dogs slide" + }, + { + "appid": 3035450, + "normalized_name": "skullivan's" + }, + { + "appid": 3035460, + "normalized_name": "fantasy football tactics" + }, + { + "appid": 3035490, + "normalized_name": "n3rally" + }, + { + "appid": 3035500, + "normalized_name": "fantasy map simulator" + }, + { + "appid": 3035530, + "normalized_name": "escape from haon island" + }, + { + "appid": 3035570, + "normalized_name": "assassin's creed mirage" + }, + { + "appid": 3035620, + "normalized_name": "tuna rice" + }, + { + "appid": 3035640, + "normalized_name": "lalli" + }, + { + "appid": 3035660, + "normalized_name": "mini gunn" + }, + { + "appid": 3035710, + "normalized_name": "usd clicker" + }, + { + "appid": 3035740, + "normalized_name": "idles of madness" + }, + { + "appid": 3035760, + "normalized_name": "rogueliteonline" + }, + { + "appid": 3035780, + "normalized_name": "unicycle rage" + }, + { + "appid": 3035810, + "normalized_name": "hot seat" + }, + { + "appid": 3035850, + "normalized_name": "slenderman shadow of the forest" + }, + { + "appid": 3035860, + "normalized_name": "kaxuki" + }, + { + "appid": 3035870, + "normalized_name": "dream runner" + }, + { + "appid": 3035880, + "normalized_name": "devil's drizzle" + }, + { + "appid": 3035890, + "normalized_name": "fentanyl" + }, + { + "appid": 3035910, + "normalized_name": "atonia netorare annals" + }, + { + "appid": 3035920, + "normalized_name": "slide treasures lydia's hunt" + }, + { + "appid": 3035940, + "normalized_name": "lift attendant" + }, + { + "appid": 3035970, + "normalized_name": "alpine freeride journey" + }, + { + "appid": 3035990, + "normalized_name": "misericorde volume two white wool & snow" + }, + { + "appid": 3036010, + "normalized_name": "推币勇者" + }, + { + "appid": 3036080, + "normalized_name": "shawarma legend" + }, + { + "appid": 3036150, + "normalized_name": "afternoon of resurrection" + }, + { + "appid": 3036170, + "normalized_name": "straight up poker se" + }, + { + "appid": 3036220, + "normalized_name": "morningtide motel" + }, + { + "appid": 3036260, + "normalized_name": "wylde society" + }, + { + "appid": 3036280, + "normalized_name": "chimp memory" + }, + { + "appid": 3036310, + "normalized_name": "life codex" + }, + { + "appid": 3036320, + "normalized_name": "my last stand survivors" + }, + { + "appid": 3036330, + "normalized_name": "chaos rush tower defense" + }, + { + "appid": 3036350, + "normalized_name": "a case of fraud" + }, + { + "appid": 3036360, + "normalized_name": "heaven crawler" + }, + { + "appid": 3036380, + "normalized_name": "turtle champs" + }, + { + "appid": 3036390, + "normalized_name": "pseudoku" + }, + { + "appid": 3036410, + "normalized_name": "sound of slash" + }, + { + "appid": 3036440, + "normalized_name": "robo ride & glide" + }, + { + "appid": 3036470, + "normalized_name": "河神:沉溺之流" + }, + { + "appid": 3036480, + "normalized_name": "アリスのハニハニクラッシュ!" + }, + { + "appid": 3036500, + "normalized_name": "gold lining" + }, + { + "appid": 3036520, + "normalized_name": "rome goes rogue" + }, + { + "appid": 3036530, + "normalized_name": "tint the saver" + }, + { + "appid": 3036560, + "normalized_name": "这班上够了 escapism ltd." + }, + { + "appid": 3036580, + "normalized_name": "dungeon diver" + }, + { + "appid": 3036600, + "normalized_name": "speed climb" + }, + { + "appid": 3036610, + "normalized_name": "after story ~witch ⊂ dragon~" + }, + { + "appid": 3036650, + "normalized_name": "残雪凝辉录 truth in turbulent" + }, + { + "appid": 3036660, + "normalized_name": "let me paddle hardest boat paddling game" + }, + { + "appid": 3036710, + "normalized_name": "holiday farm" + }, + { + "appid": 3036760, + "normalized_name": "criminal archives blade of deceit collector's" + }, + { + "appid": 3036820, + "normalized_name": "timeout" + }, + { + "appid": 3036840, + "normalized_name": "apocalyptica" + }, + { + "appid": 3036880, + "normalized_name": "panic in the woods" + }, + { + "appid": 3036890, + "normalized_name": "shadows and monsters" + }, + { + "appid": 3036900, + "normalized_name": "hentai tights" + }, + { + "appid": 3036940, + "normalized_name": "tarvos desolation" + }, + { + "appid": 3036960, + "normalized_name": "dice destiny and death" + }, + { + "appid": 3036970, + "normalized_name": "pawn planet first sales" + }, + { + "appid": 3037000, + "normalized_name": "arthur owl's word block" + }, + { + "appid": 3037010, + "normalized_name": "mech wars online robot battles" + }, + { + "appid": 3037020, + "normalized_name": "project phoenix" + }, + { + "appid": 3037040, + "normalized_name": "board game society" + }, + { + "appid": 3037060, + "normalized_name": "100 waiting cats" + }, + { + "appid": 3037070, + "normalized_name": "echo signal" + }, + { + "appid": 3037110, + "normalized_name": "rule & expand" + }, + { + "appid": 3037120, + "normalized_name": "mercenaries of war" + }, + { + "appid": 3037130, + "normalized_name": "magical monsters" + }, + { + "appid": 3037140, + "normalized_name": "scivics" + }, + { + "appid": 3037160, + "normalized_name": "resonance solstice" + }, + { + "appid": 3037170, + "normalized_name": "bloody roses" + }, + { + "appid": 3037180, + "normalized_name": "深空七号 deep space 7" + }, + { + "appid": 3037200, + "normalized_name": "iltami" + }, + { + "appid": 3037310, + "normalized_name": "dessert storm girls" + }, + { + "appid": 3037330, + "normalized_name": "hentai world sexy" + }, + { + "appid": 3037340, + "normalized_name": "unholy legacy" + }, + { + "appid": 3037370, + "normalized_name": "nakamers la huida" + }, + { + "appid": 3037380, + "normalized_name": "ashunnor's game" + }, + { + "appid": 3037390, + "normalized_name": "combo all the time" + }, + { + "appid": 3037410, + "normalized_name": "fish idle 2 underwater mystery" + }, + { + "appid": 3037460, + "normalized_name": "fantasy trader" + }, + { + "appid": 3037470, + "normalized_name": "asterisk 2 next now a days" + }, + { + "appid": 3037480, + "normalized_name": "paplion" + }, + { + "appid": 3037510, + "normalized_name": "resonating worlds" + }, + { + "appid": 3037550, + "normalized_name": "grove grown guardians" + }, + { + "appid": 3037560, + "normalized_name": "trex hero" + }, + { + "appid": 3037620, + "normalized_name": "the nightmare chronicles horror in da hood" + }, + { + "appid": 3037660, + "normalized_name": "robin hood sherwood defenders" + }, + { + "appid": 3037690, + "normalized_name": "one thousand cuts prologue" + }, + { + "appid": 3037740, + "normalized_name": "arcana" + }, + { + "appid": 3037780, + "normalized_name": "alessia's dollhouse" + }, + { + "appid": 3037790, + "normalized_name": "stellardefender" + }, + { + "appid": 3037800, + "normalized_name": "temporal titans" + }, + { + "appid": 3037830, + "normalized_name": "wedgetail" + }, + { + "appid": 3037900, + "normalized_name": "wgv dreamcatcher" + }, + { + "appid": 3037930, + "normalized_name": "[bober bros] the hole" + }, + { + "appid": 3037940, + "normalized_name": "chaos caster" + }, + { + "appid": 3037950, + "normalized_name": "doug the digger" + }, + { + "appid": 3037960, + "normalized_name": "gt racing 1980" + }, + { + "appid": 3037970, + "normalized_name": "witchcraft tales" + }, + { + "appid": 3037990, + "normalized_name": "scp site director" + }, + { + "appid": 3038010, + "normalized_name": "kalia" + }, + { + "appid": 3038020, + "normalized_name": "wobbly heights" + }, + { + "appid": 3038070, + "normalized_name": "gym orgasm" + }, + { + "appid": 3038080, + "normalized_name": "hot toys" + }, + { + "appid": 3038190, + "normalized_name": "futanari sex adventures episode 1" + }, + { + "appid": 3038250, + "normalized_name": "savanna sam" + }, + { + "appid": 3038290, + "normalized_name": "expedition to the backrooms" + }, + { + "appid": 3038340, + "normalized_name": "chaos faction legacy collection" + }, + { + "appid": 3038500, + "normalized_name": "cooking simulator 2 prologue" + }, + { + "appid": 3038520, + "normalized_name": "cuckold sex episode 3" + }, + { + "appid": 3038530, + "normalized_name": "niknaks" + }, + { + "appid": 3038580, + "normalized_name": "art shop simulator" + }, + { + "appid": 3038590, + "normalized_name": "bigfool" + }, + { + "appid": 3038640, + "normalized_name": "hero of the hive" + }, + { + "appid": 3038690, + "normalized_name": "turkey bois" + }, + { + "appid": 3038700, + "normalized_name": "nightshift galaxy" + }, + { + "appid": 3038710, + "normalized_name": "ashigaru tactics" + }, + { + "appid": 3038720, + "normalized_name": "fly hard" + }, + { + "appid": 3038740, + "normalized_name": "tea girls" + }, + { + "appid": 3038790, + "normalized_name": "scrapdown" + }, + { + "appid": 3038820, + "normalized_name": "戦国ブシドー〜大野望の巻〜" + }, + { + "appid": 3038840, + "normalized_name": "dark hunter" + }, + { + "appid": 3038850, + "normalized_name": "language learning simulator alphabet" + }, + { + "appid": 3038870, + "normalized_name": "fallen princess knight" + }, + { + "appid": 3038920, + "normalized_name": "帝奉龙凰 di feng long huang" + }, + { + "appid": 3038940, + "normalized_name": "皇主乾坤 huang zhu qian kun" + }, + { + "appid": 3038970, + "normalized_name": "weekdays" + }, + { + "appid": 3039020, + "normalized_name": "dreamline 404" + }, + { + "appid": 3039040, + "normalized_name": "arcane rush" + }, + { + "appid": 3039060, + "normalized_name": "不可視の帰路" + }, + { + "appid": 3039100, + "normalized_name": "waw world" + }, + { + "appid": 3039140, + "normalized_name": "異世界∞異世界 ~次はどの作品を、集めよう~" + }, + { + "appid": 3039230, + "normalized_name": "excoverse" + }, + { + "appid": 3039250, + "normalized_name": "neon apex beyond the limit" + }, + { + "appid": 3039260, + "normalized_name": "lumo 2" + }, + { + "appid": 3039280, + "normalized_name": "contact" + }, + { + "appid": 3039310, + "normalized_name": "goner in the town" + }, + { + "appid": 3039320, + "normalized_name": "eternal bonds" + }, + { + "appid": 3039340, + "normalized_name": "a whisper in the twilight chapter two" + }, + { + "appid": 3039350, + "normalized_name": "the mythical city 4" + }, + { + "appid": 3039360, + "normalized_name": "luna's diary" + }, + { + "appid": 3039370, + "normalized_name": "you died!" + }, + { + "appid": 3039430, + "normalized_name": "mechieval" + }, + { + "appid": 3039490, + "normalized_name": "tedram online car racing & customization" + }, + { + "appid": 3039500, + "normalized_name": "万象群侠传" + }, + { + "appid": 3039590, + "normalized_name": "shieldbound" + }, + { + "appid": 3039640, + "normalized_name": "dungero" + }, + { + "appid": 3039650, + "normalized_name": "gravshift" + }, + { + "appid": 3039720, + "normalized_name": "sealed" + }, + { + "appid": 3039780, + "normalized_name": "finger flex" + }, + { + "appid": 3039820, + "normalized_name": "field of the dead" + }, + { + "appid": 3039840, + "normalized_name": "elixir emporium" + }, + { + "appid": 3039890, + "normalized_name": "bubsy in the purrfect collection" + }, + { + "appid": 3039910, + "normalized_name": "demon hunt" + }, + { + "appid": 3039920, + "normalized_name": "codex eternal eclipse" + }, + { + "appid": 3039930, + "normalized_name": "seedborne soldiers" + }, + { + "appid": 3039960, + "normalized_name": "near the sun chapter1" + }, + { + "appid": 3039970, + "normalized_name": "kinpath" + }, + { + "appid": 3039980, + "normalized_name": "sigils of nightfall" + }, + { + "appid": 3039990, + "normalized_name": "kanna school" + }, + { + "appid": 3040000, + "normalized_name": "welcome home" + }, + { + "appid": 3040010, + "normalized_name": "faraway on lost isles" + }, + { + "appid": 3040030, + "normalized_name": "background bells" + }, + { + "appid": 3040110, + "normalized_name": "outsider" + }, + { + "appid": 3040130, + "normalized_name": "bang bang pull pull" + }, + { + "appid": 3040150, + "normalized_name": "zenith armada" + }, + { + "appid": 3040170, + "normalized_name": "arashi gaiden" + }, + { + "appid": 3040180, + "normalized_name": "holy shot" + }, + { + "appid": 3040220, + "normalized_name": "captain blood" + }, + { + "appid": 3040240, + "normalized_name": "broken psyche" + }, + { + "appid": 3040260, + "normalized_name": "for the realm" + }, + { + "appid": 3040270, + "normalized_name": "bees vs zombees" + }, + { + "appid": 3040290, + "normalized_name": "sorcero" + }, + { + "appid": 3040370, + "normalized_name": "counting spices" + }, + { + "appid": 3040390, + "normalized_name": "old coin pusher friends 3" + }, + { + "appid": 3040400, + "normalized_name": "naive boy super lash" + }, + { + "appid": 3040430, + "normalized_name": "halloween harry" + }, + { + "appid": 3040440, + "normalized_name": "crimson angel" + }, + { + "appid": 3040470, + "normalized_name": "エロゲ会社の禁断のセクハラ事情~狙われた新人イラストレーター~" + }, + { + "appid": 3040480, + "normalized_name": "魔域天堂" + }, + { + "appid": 3040560, + "normalized_name": "elite exorcist miko" + }, + { + "appid": 3040570, + "normalized_name": "flowence" + }, + { + "appid": 3040590, + "normalized_name": "astoria fate's kiss" + }, + { + "appid": 3040610, + "normalized_name": "あの夜からキミに恋してた" + }, + { + "appid": 3040670, + "normalized_name": "catalina's horror adventure" + }, + { + "appid": 3040680, + "normalized_name": "pharos" + }, + { + "appid": 3040690, + "normalized_name": "lost boat vr underwater discovery" + }, + { + "appid": 3040740, + "normalized_name": "别成英雄" + }, + { + "appid": 3040800, + "normalized_name": "hardest game about jumping" + }, + { + "appid": 3040810, + "normalized_name": "green horizon vr golf" + }, + { + "appid": 3040820, + "normalized_name": "hidden cat memories" + }, + { + "appid": 3040830, + "normalized_name": "mu legend evo" + }, + { + "appid": 3040870, + "normalized_name": "dragon's valkyrie wings of fire" + }, + { + "appid": 3040880, + "normalized_name": "07gorillas" + }, + { + "appid": 3040900, + "normalized_name": "mythic champions" + }, + { + "appid": 3040930, + "normalized_name": "just a shadow game" + }, + { + "appid": 3040940, + "normalized_name": "order of renewal" + }, + { + "appid": 3040970, + "normalized_name": "sweet office 2" + }, + { + "appid": 3041070, + "normalized_name": "telemorpher" + }, + { + "appid": 3041100, + "normalized_name": "shogi" + }, + { + "appid": 3041110, + "normalized_name": "中传有戏" + }, + { + "appid": 3041130, + "normalized_name": "build scrap" + }, + { + "appid": 3041160, + "normalized_name": "cats and mice" + }, + { + "appid": 3041180, + "normalized_name": "price of knowledge" + }, + { + "appid": 3041200, + "normalized_name": "my party needs an alchemist" + }, + { + "appid": 3041210, + "normalized_name": "miss bullet" + }, + { + "appid": 3041220, + "normalized_name": "stratagem lost" + }, + { + "appid": 3041230, + "normalized_name": "crosswind" + }, + { + "appid": 3041260, + "normalized_name": "the mission exorcist" + }, + { + "appid": 3041280, + "normalized_name": "prison of lies" + }, + { + "appid": 3041300, + "normalized_name": "madness within" + }, + { + "appid": 3041330, + "normalized_name": "vythzkel of city dinasty" + }, + { + "appid": 3041340, + "normalized_name": "captain barrel" + }, + { + "appid": 3041420, + "normalized_name": "speed factor" + }, + { + "appid": 3041440, + "normalized_name": "barraka" + }, + { + "appid": 3041500, + "normalized_name": "a whore new ball game" + }, + { + "appid": 3041550, + "normalized_name": "electronic market simulator" + }, + { + "appid": 3041560, + "normalized_name": "prelude to freedom 异闻录:红" + }, + { + "appid": 3041640, + "normalized_name": "shadey's quest" + }, + { + "appid": 3041670, + "normalized_name": "dissident" + }, + { + "appid": 3041690, + "normalized_name": "ambasu" + }, + { + "appid": 3041700, + "normalized_name": "transit loop" + }, + { + "appid": 3041720, + "normalized_name": "gooing up!" + }, + { + "appid": 3041730, + "normalized_name": "go north" + }, + { + "appid": 3041750, + "normalized_name": "hot wax" + }, + { + "appid": 3041770, + "normalized_name": "breakout beyond" + }, + { + "appid": 3041780, + "normalized_name": "butcher simulator" + }, + { + "appid": 3041800, + "normalized_name": "scramble heart city" + }, + { + "appid": 3041810, + "normalized_name": "hypnosis of corruption" + }, + { + "appid": 3041820, + "normalized_name": "lilia the fallen flower in the prison city" + }, + { + "appid": 3041890, + "normalized_name": "infernal bloodrush" + }, + { + "appid": 3041920, + "normalized_name": "chrono club race against time" + }, + { + "appid": 3041930, + "normalized_name": "uprising kingdom come" + }, + { + "appid": 3041960, + "normalized_name": "pineapple panic!" + }, + { + "appid": 3041980, + "normalized_name": "hallow hunt" + }, + { + "appid": 3042000, + "normalized_name": "timerift raiders the past awakens" + }, + { + "appid": 3042010, + "normalized_name": "slap that" + }, + { + "appid": 3042040, + "normalized_name": "project autumn" + }, + { + "appid": 3042050, + "normalized_name": "killing dead" + }, + { + "appid": 3042060, + "normalized_name": "legend of the moon" + }, + { + "appid": 3042090, + "normalized_name": "prison of nightmare" + }, + { + "appid": 3042120, + "normalized_name": "blast judgment" + }, + { + "appid": 3042150, + "normalized_name": "カラオケjoysound for steam" + }, + { + "appid": 3042160, + "normalized_name": "raven gold" + }, + { + "appid": 3042190, + "normalized_name": "nomad idle" + }, + { + "appid": 3042230, + "normalized_name": "hentai nurse" + }, + { + "appid": 3042250, + "normalized_name": "her last piece" + }, + { + "appid": 3042260, + "normalized_name": "black hole" + }, + { + "appid": 3042270, + "normalized_name": "alex's sketchbook world" + }, + { + "appid": 3042280, + "normalized_name": "drop it! jelly man" + }, + { + "appid": 3042340, + "normalized_name": "汽车大亨" + }, + { + "appid": 3042360, + "normalized_name": "over clock" + }, + { + "appid": 3042370, + "normalized_name": "was god birthed!?" + }, + { + "appid": 3042460, + "normalized_name": "journey to kreisia" + }, + { + "appid": 3042470, + "normalized_name": "dragon takers" + }, + { + "appid": 3042480, + "normalized_name": "age of defense prehistory" + }, + { + "appid": 3042520, + "normalized_name": "wind jumper" + }, + { + "appid": 3042560, + "normalized_name": "void icarus" + }, + { + "appid": 3042630, + "normalized_name": "chibi reboot" + }, + { + "appid": 3042640, + "normalized_name": "战争方舟" + }, + { + "appid": 3042660, + "normalized_name": "悪役令嬢は隣国の王太子に溺愛される" + }, + { + "appid": 3042680, + "normalized_name": "lightracer for judge" + }, + { + "appid": 3042690, + "normalized_name": "melly the naughty dog" + }, + { + "appid": 3042710, + "normalized_name": "rodeo clown" + }, + { + "appid": 3042720, + "normalized_name": "cassiculus" + }, + { + "appid": 3042790, + "normalized_name": "sirocco thugs" + }, + { + "appid": 3042800, + "normalized_name": "biological incident" + }, + { + "appid": 3042810, + "normalized_name": "stinkytown" + }, + { + "appid": 3042830, + "normalized_name": "legends of heropolis dx" + }, + { + "appid": 3042840, + "normalized_name": "dream city" + }, + { + "appid": 3042850, + "normalized_name": "holy light" + }, + { + "appid": 3042860, + "normalized_name": "second shift" + }, + { + "appid": 3042990, + "normalized_name": "kharaków" + }, + { + "appid": 3043010, + "normalized_name": "hurricane abyss" + }, + { + "appid": 3043020, + "normalized_name": "deep down" + }, + { + "appid": 3043030, + "normalized_name": "teleport trials" + }, + { + "appid": 3043080, + "normalized_name": "kokeshi the secret of the cicada's nest" + }, + { + "appid": 3043090, + "normalized_name": "motorbike simulator mx driving" + }, + { + "appid": 3043120, + "normalized_name": "king's keeper" + }, + { + "appid": 3043140, + "normalized_name": "ghost" + }, + { + "appid": 3043150, + "normalized_name": "black light wave" + }, + { + "appid": 3043160, + "normalized_name": "青恋" + }, + { + "appid": 3043210, + "normalized_name": "vampire slayer" + }, + { + "appid": 3043280, + "normalized_name": "legend of the corndog(s)" + }, + { + "appid": 3043290, + "normalized_name": "d.n.a do not answer" + }, + { + "appid": 3043300, + "normalized_name": "streamer's revenge" + }, + { + "appid": 3043310, + "normalized_name": "alchemist shop simulator" + }, + { + "appid": 3043320, + "normalized_name": "mage food truck" + }, + { + "appid": 3043330, + "normalized_name": "100 hiddensaurs" + }, + { + "appid": 3043370, + "normalized_name": "dream warrior" + }, + { + "appid": 3043400, + "normalized_name": "terminalmaster" + }, + { + "appid": 3043430, + "normalized_name": "grand fantasy heroes" + }, + { + "appid": 3043540, + "normalized_name": "mazzle" + }, + { + "appid": 3043570, + "normalized_name": "raanaa the shaman girl" + }, + { + "appid": 3043690, + "normalized_name": "billgard" + }, + { + "appid": 3043710, + "normalized_name": "diplomacy is not an option shareware" + }, + { + "appid": 3043740, + "normalized_name": "calculate it" + }, + { + "appid": 3043760, + "normalized_name": "hellbreak" + }, + { + "appid": 3043790, + "normalized_name": "地球腐烂指南 guide to apocalypse" + }, + { + "appid": 3043810, + "normalized_name": "eternal" + }, + { + "appid": 3043840, + "normalized_name": "50 floors of madness" + }, + { + "appid": 3043860, + "normalized_name": "imprint" + }, + { + "appid": 3043920, + "normalized_name": "spacefire fury" + }, + { + "appid": 3043950, + "normalized_name": "jini's potion shop" + }, + { + "appid": 3043960, + "normalized_name": "stop them all" + }, + { + "appid": 3044000, + "normalized_name": "dead on arrival" + }, + { + "appid": 3044030, + "normalized_name": "ten bells" + }, + { + "appid": 3044040, + "normalized_name": "jenga cat" + }, + { + "appid": 3044070, + "normalized_name": "if you touch me i will marry you. pt.1" + }, + { + "appid": 3044100, + "normalized_name": "bat to the heavens" + }, + { + "appid": 3044120, + "normalized_name": "melo's cat cafe" + }, + { + "appid": 3044140, + "normalized_name": "unsteady" + }, + { + "appid": 3044150, + "normalized_name": "rolling water" + }, + { + "appid": 3044180, + "normalized_name": "农场还债物语:序章" + }, + { + "appid": 3044210, + "normalized_name": "necro negate" + }, + { + "appid": 3044220, + "normalized_name": "liminal exit" + }, + { + "appid": 3044240, + "normalized_name": "sigil of chaos" + }, + { + "appid": 3044330, + "normalized_name": "cluminati" + }, + { + "appid": 3044400, + "normalized_name": "duel hell purgatory" + }, + { + "appid": 3044440, + "normalized_name": "gas station manager" + }, + { + "appid": 3044450, + "normalized_name": "地球勇者 earth fighter" + }, + { + "appid": 3044510, + "normalized_name": "space diva" + }, + { + "appid": 3044520, + "normalized_name": "coffee express" + }, + { + "appid": 3044540, + "normalized_name": "riddle tower" + }, + { + "appid": 3044550, + "normalized_name": "eldrea sex saga 🔞" + }, + { + "appid": 3044560, + "normalized_name": "lust 'n dead 🔞" + }, + { + "appid": 3044610, + "normalized_name": "avalon crew" + }, + { + "appid": 3044620, + "normalized_name": "manners be damned!" + }, + { + "appid": 3044680, + "normalized_name": "influencer boxing" + }, + { + "appid": 3044690, + "normalized_name": "alex an adventure between the ages" + }, + { + "appid": 3044740, + "normalized_name": "v lover!" + }, + { + "appid": 3044750, + "normalized_name": "knights & lords" + }, + { + "appid": 3044770, + "normalized_name": "anomalia o despertar" + }, + { + "appid": 3044780, + "normalized_name": "code stella" + }, + { + "appid": 3044790, + "normalized_name": "plentiful" + }, + { + "appid": 3044810, + "normalized_name": "よりそいデリバリー" + }, + { + "appid": 3044910, + "normalized_name": "vpn simulator" + }, + { + "appid": 3044920, + "normalized_name": "necuratu" + }, + { + "appid": 3044940, + "normalized_name": "indie racing" + }, + { + "appid": 3044970, + "normalized_name": "vorago" + }, + { + "appid": 3045000, + "normalized_name": "tile to tile" + }, + { + "appid": 3045010, + "normalized_name": "pandabomber" + }, + { + "appid": 3045030, + "normalized_name": "flooded burials" + }, + { + "appid": 3045050, + "normalized_name": "moorhuhn jump and run 'traps and treasures 3'" + }, + { + "appid": 3045060, + "normalized_name": "streamerbeater" + }, + { + "appid": 3045070, + "normalized_name": "metalmercs" + }, + { + "appid": 3045100, + "normalized_name": "mind garden" + }, + { + "appid": 3045110, + "normalized_name": "boss slayers" + }, + { + "appid": 3045120, + "normalized_name": "blitzrift" + }, + { + "appid": 3045140, + "normalized_name": "mazed joseon" + }, + { + "appid": 3045150, + "normalized_name": "marescape" + }, + { + "appid": 3045180, + "normalized_name": "sleep herd" + }, + { + "appid": 3045200, + "normalized_name": "beatblock" + }, + { + "appid": 3045220, + "normalized_name": "mutant hunter" + }, + { + "appid": 3045240, + "normalized_name": "blastlast" + }, + { + "appid": 3045260, + "normalized_name": "kamikaze tactics" + }, + { + "appid": 3045270, + "normalized_name": "insectile" + }, + { + "appid": 3045300, + "normalized_name": "hentai senpai seieki akuma tachi" + }, + { + "appid": 3045320, + "normalized_name": "赛博格:崛起【cyborg rise】" + }, + { + "appid": 3045330, + "normalized_name": "helios hotel the night shift" + }, + { + "appid": 3045340, + "normalized_name": "shatterfarms" + }, + { + "appid": 3045350, + "normalized_name": "rng arena fate fight" + }, + { + "appid": 3045370, + "normalized_name": "蜘蛛卡罗" + }, + { + "appid": 3045390, + "normalized_name": "牛马假日" + }, + { + "appid": 3045400, + "normalized_name": "blêktre 2081" + }, + { + "appid": 3045440, + "normalized_name": "dorf the dwarf" + }, + { + "appid": 3045510, + "normalized_name": "pixel flip" + }, + { + "appid": 3045520, + "normalized_name": "sea sniffers" + }, + { + "appid": 3045530, + "normalized_name": "heavy as stone" + }, + { + "appid": 3045540, + "normalized_name": "breakthrough" + }, + { + "appid": 3045560, + "normalized_name": "gears of time" + }, + { + "appid": 3045630, + "normalized_name": "digrogue" + }, + { + "appid": 3045650, + "normalized_name": "illumina defender" + }, + { + "appid": 3045690, + "normalized_name": "solomania" + }, + { + "appid": 3045770, + "normalized_name": "forget" + }, + { + "appid": 3045780, + "normalized_name": "maidens madness" + }, + { + "appid": 3045870, + "normalized_name": "天地不仁" + }, + { + "appid": 3045890, + "normalized_name": "mystical mushrooms" + }, + { + "appid": 3045970, + "normalized_name": "die die die" + }, + { + "appid": 3046020, + "normalized_name": "age of enchantment" + }, + { + "appid": 3046050, + "normalized_name": "dagger froggy" + }, + { + "appid": 3046060, + "normalized_name": "under the crisis dárlia island remaster" + }, + { + "appid": 3046120, + "normalized_name": "cone flyers mercenaries" + }, + { + "appid": 3046130, + "normalized_name": "lim balls every second counts" + }, + { + "appid": 3046140, + "normalized_name": "haunted property" + }, + { + "appid": 3046150, + "normalized_name": "murder is game over the blackinton curse" + }, + { + "appid": 3046170, + "normalized_name": "tree eater" + }, + { + "appid": 3046190, + "normalized_name": "wicked arcana" + }, + { + "appid": 3046230, + "normalized_name": "season island" + }, + { + "appid": 3046270, + "normalized_name": "hentai tales uninhabited island" + }, + { + "appid": 3046280, + "normalized_name": "hentai tales the brave and demon" + }, + { + "appid": 3046290, + "normalized_name": "tyraels ascension hell walker the video game" + }, + { + "appid": 3046300, + "normalized_name": "the moon looks beautiful tonight" + }, + { + "appid": 3046350, + "normalized_name": "churip" + }, + { + "appid": 3046430, + "normalized_name": "hamster" + }, + { + "appid": 3046440, + "normalized_name": "iseki" + }, + { + "appid": 3046460, + "normalized_name": "devilreversi" + }, + { + "appid": 3046470, + "normalized_name": "hyperworld (working title)" + }, + { + "appid": 3046490, + "normalized_name": "mousepinch special agency 猫屎冰奇鼠卑手挨阵打" + }, + { + "appid": 3046500, + "normalized_name": "order9" + }, + { + "appid": 3046510, + "normalized_name": "キルぱくっ!" + }, + { + "appid": 3046520, + "normalized_name": "dabulari" + }, + { + "appid": 3046530, + "normalized_name": "justbox" + }, + { + "appid": 3046540, + "normalized_name": "10 second mixtape" + }, + { + "appid": 3046600, + "normalized_name": "onimusha 2 samurai's destiny" + }, + { + "appid": 3046610, + "normalized_name": "l8r sk8r" + }, + { + "appid": 3046620, + "normalized_name": "roomination" + }, + { + "appid": 3046670, + "normalized_name": "glow up 2" + }, + { + "appid": 3046680, + "normalized_name": "chopping spree" + }, + { + "appid": 3046700, + "normalized_name": "camgirl simulator" + }, + { + "appid": 3046710, + "normalized_name": "nook" + }, + { + "appid": 3046740, + "normalized_name": "explorers of esmar" + }, + { + "appid": 3046750, + "normalized_name": "paradise shooting 2!!" + }, + { + "appid": 3046760, + "normalized_name": "sweet home 2 look and find collector's" + }, + { + "appid": 3046780, + "normalized_name": "drumguy" + }, + { + "appid": 3046800, + "normalized_name": "glass zero" + }, + { + "appid": 3046820, + "normalized_name": "tailgate" + }, + { + "appid": 3046880, + "normalized_name": "amber of jinn" + }, + { + "appid": 3046980, + "normalized_name": "distant realm" + }, + { + "appid": 3046990, + "normalized_name": "time re quest" + }, + { + "appid": 3047000, + "normalized_name": "ffs 2024 football freekick simulator" + }, + { + "appid": 3047030, + "normalized_name": "tapple idle clicker" + }, + { + "appid": 3047070, + "normalized_name": "x out resurfaced" + }, + { + "appid": 3047090, + "normalized_name": "drive out" + }, + { + "appid": 3047100, + "normalized_name": "hidden object prison diaries" + }, + { + "appid": 3047180, + "normalized_name": "the attic" + }, + { + "appid": 3047220, + "normalized_name": "tidy backpack" + }, + { + "appid": 3047290, + "normalized_name": "first person stapler" + }, + { + "appid": 3047300, + "normalized_name": "chernograd" + }, + { + "appid": 3047310, + "normalized_name": "aim assault" + }, + { + "appid": 3047320, + "normalized_name": "stealth syndicate" + }, + { + "appid": 3047340, + "normalized_name": "赛博杀手 cyberkiller2049" + }, + { + "appid": 3047370, + "normalized_name": "net.attack()" + }, + { + "appid": 3047380, + "normalized_name": "throwdown" + }, + { + "appid": 3047420, + "normalized_name": "wanted" + }, + { + "appid": 3047430, + "normalized_name": "скуфы против ящеров" + }, + { + "appid": 3047440, + "normalized_name": "a beaver's tale" + }, + { + "appid": 3047460, + "normalized_name": "zebulon a lost cat" + }, + { + "appid": 3047490, + "normalized_name": "fantasy valley season 1" + }, + { + "appid": 3047500, + "normalized_name": "sellsword saga" + }, + { + "appid": 3047510, + "normalized_name": "myths are 100% true" + }, + { + "appid": 3047520, + "normalized_name": "cattrio" + }, + { + "appid": 3047560, + "normalized_name": "azhur" + }, + { + "appid": 3047570, + "normalized_name": "sliding bears" + }, + { + "appid": 3047580, + "normalized_name": "containment breach" + }, + { + "appid": 3047600, + "normalized_name": "ultreïa night of the eclipse" + }, + { + "appid": 3047610, + "normalized_name": "heirs" + }, + { + "appid": 3047680, + "normalized_name": "utility for the soul" + }, + { + "appid": 3047690, + "normalized_name": "necromaster" + }, + { + "appid": 3047720, + "normalized_name": "wakey wakey" + }, + { + "appid": 3047740, + "normalized_name": "ninja monkey" + }, + { + "appid": 3047750, + "normalized_name": "herdling" + }, + { + "appid": 3047760, + "normalized_name": "the candy adventure" + }, + { + "appid": 3047770, + "normalized_name": "grouls" + }, + { + "appid": 3047780, + "normalized_name": "speak of my sin" + }, + { + "appid": 3047810, + "normalized_name": "summer sex saga 🏄♂💦" + }, + { + "appid": 3047820, + "normalized_name": "ghetto zombies graffiti squad" + }, + { + "appid": 3047900, + "normalized_name": "rootwood ranch" + }, + { + "appid": 3047910, + "normalized_name": "toilet zone 2" + }, + { + "appid": 3047990, + "normalized_name": "the lone grove" + }, + { + "appid": 3048020, + "normalized_name": "video battle arena" + }, + { + "appid": 3048030, + "normalized_name": "werner waffenwerke arms tycoon" + }, + { + "appid": 3048040, + "normalized_name": "crushed" + }, + { + "appid": 3048050, + "normalized_name": "path to perdition" + }, + { + "appid": 3048090, + "normalized_name": "desolate dusk" + }, + { + "appid": 3048100, + "normalized_name": "lovesick" + }, + { + "appid": 3048110, + "normalized_name": "noircotics" + }, + { + "appid": 3048140, + "normalized_name": "daemonologie" + }, + { + "appid": 3048160, + "normalized_name": "xenocrystal td" + }, + { + "appid": 3048190, + "normalized_name": "bubbles & sisters" + }, + { + "appid": 3048210, + "normalized_name": "farmer's shop simulator prologue" + }, + { + "appid": 3048280, + "normalized_name": "realistic ragdoll sandbox" + }, + { + "appid": 3048290, + "normalized_name": "office hero" + }, + { + "appid": 3048300, + "normalized_name": "dual eclipse" + }, + { + "appid": 3048330, + "normalized_name": "mirage noir" + }, + { + "appid": 3048340, + "normalized_name": "mr. goofer’s mini game arcade party!" + }, + { + "appid": 3048380, + "normalized_name": "puzzle block defender" + }, + { + "appid": 3048400, + "normalized_name": "cyberwave" + }, + { + "appid": 3048420, + "normalized_name": "set yourself on fire" + }, + { + "appid": 3048430, + "normalized_name": "彼岸花" + }, + { + "appid": 3048500, + "normalized_name": "mr. rightaway" + }, + { + "appid": 3048510, + "normalized_name": "the drawnjuring" + }, + { + "appid": 3048530, + "normalized_name": "白荊迴廊" + }, + { + "appid": 3048540, + "normalized_name": "micro tanks" + }, + { + "appid": 3048650, + "normalized_name": "gentle officer" + }, + { + "appid": 3048660, + "normalized_name": "公主:东方与远征(princess the east and the expedition)" + }, + { + "appid": 3048670, + "normalized_name": "100 dogs" + }, + { + "appid": 3048760, + "normalized_name": "slay the alice" + }, + { + "appid": 3048770, + "normalized_name": "desert angels" + }, + { + "appid": 3048790, + "normalized_name": "best mayor" + }, + { + "appid": 3048820, + "normalized_name": "raspberry" + }, + { + "appid": 3048830, + "normalized_name": "fizzy friends" + }, + { + "appid": 3048840, + "normalized_name": "hungry horrors" + }, + { + "appid": 3048930, + "normalized_name": "duriano" + }, + { + "appid": 3048980, + "normalized_name": "rat raze / road to riches tilt five" + }, + { + "appid": 3049000, + "normalized_name": "bdsm sex episode 7" + }, + { + "appid": 3049010, + "normalized_name": "rogunky" + }, + { + "appid": 3049020, + "normalized_name": "turnout" + }, + { + "appid": 3049080, + "normalized_name": "little hero adventure" + }, + { + "appid": 3049110, + "normalized_name": "the father's story" + }, + { + "appid": 3049130, + "normalized_name": "the tunnels" + }, + { + "appid": 3049160, + "normalized_name": "shadow of the forerunner" + }, + { + "appid": 3049270, + "normalized_name": "into the deep dark green sleep ❘ 深くて暗い緑の眠りのなかへ" + }, + { + "appid": 3049300, + "normalized_name": "leaving eden" + }, + { + "appid": 3049320, + "normalized_name": "medieval marathon a quest for gold" + }, + { + "appid": 3049330, + "normalized_name": "travel along 2" + }, + { + "appid": 3049380, + "normalized_name": "zaraq" + }, + { + "appid": 3049400, + "normalized_name": "enchantment 2 sun's tear collector's" + }, + { + "appid": 3049410, + "normalized_name": "queen's garden french splendor" + }, + { + "appid": 3049440, + "normalized_name": "lost grove" + }, + { + "appid": 3049450, + "normalized_name": "itty bitty toilet kitty" + }, + { + "appid": 3049460, + "normalized_name": "milking mira!" + }, + { + "appid": 3049470, + "normalized_name": "echoes of exile" + }, + { + "appid": 3049480, + "normalized_name": "dexter the hamster" + }, + { + "appid": 3049550, + "normalized_name": "pug and seek" + }, + { + "appid": 3049580, + "normalized_name": "真空少女h" + }, + { + "appid": 3049610, + "normalized_name": "synaxarion christian stories holy martyr savvas the goth" + }, + { + "appid": 3049620, + "normalized_name": "breeze of ashes" + }, + { + "appid": 3049650, + "normalized_name": "hard2kill" + }, + { + "appid": 3049690, + "normalized_name": "swamp hunter" + }, + { + "appid": 3049770, + "normalized_name": "animal kingdom 3" + }, + { + "appid": 3049780, + "normalized_name": "death row inmates on the run" + }, + { + "appid": 3049830, + "normalized_name": "outta hell" + }, + { + "appid": 3049850, + "normalized_name": "brave and glory" + }, + { + "appid": 3049860, + "normalized_name": "multiplayer survivors" + }, + { + "appid": 3049900, + "normalized_name": "デスクトップわんわんお~" + }, + { + "appid": 3049910, + "normalized_name": "runny bunny" + }, + { + "appid": 3049980, + "normalized_name": "broke alchemist emma's debt repayment plan" + }, + { + "appid": 3049990, + "normalized_name": "phantom brave the lost hero" + }, + { + "appid": 3050010, + "normalized_name": "platform control" + }, + { + "appid": 3050020, + "normalized_name": "❌ m a n d a t o r y ✅" + }, + { + "appid": 3050090, + "normalized_name": "thalassomania" + }, + { + "appid": 3050100, + "normalized_name": "kiwi'n" + }, + { + "appid": 3050120, + "normalized_name": "twinkle stardust's catnap chaos" + }, + { + "appid": 3050140, + "normalized_name": "radiant princess poni ceres" + }, + { + "appid": 3050160, + "normalized_name": "love m01" + }, + { + "appid": 3050170, + "normalized_name": "fathoms" + }, + { + "appid": 3050180, + "normalized_name": "chroma" + }, + { + "appid": 3050200, + "normalized_name": "sunset arena" + }, + { + "appid": 3050210, + "normalized_name": "the last janitor data cleanup" + }, + { + "appid": 3050220, + "normalized_name": "the king of fighters xiii global match" + }, + { + "appid": 3050250, + "normalized_name": "force of will" + }, + { + "appid": 3050460, + "normalized_name": "mafia life simulator" + }, + { + "appid": 3050480, + "normalized_name": "anomalum" + }, + { + "appid": 3050490, + "normalized_name": "timegal hd remaster" + }, + { + "appid": 3050520, + "normalized_name": "landlord and the tenants (nymphs)" + }, + { + "appid": 3050530, + "normalized_name": "shokudo underworld" + }, + { + "appid": 3050540, + "normalized_name": "founder of the final cult" + }, + { + "appid": 3050580, + "normalized_name": "dras'lia" + }, + { + "appid": 3050590, + "normalized_name": "mortal trap dungeon" + }, + { + "appid": 3050600, + "normalized_name": "exorcist reviewer of minds" + }, + { + "appid": 3050630, + "normalized_name": "melon" + }, + { + "appid": 3050640, + "normalized_name": "wherehurt" + }, + { + "appid": 3050660, + "normalized_name": "achieve its" + }, + { + "appid": 3050690, + "normalized_name": "sweet neighbor bb" + }, + { + "appid": 3050700, + "normalized_name": "storm cleaner" + }, + { + "appid": 3050710, + "normalized_name": "iridio prologue" + }, + { + "appid": 3050760, + "normalized_name": "sidereal dominion avalon" + }, + { + "appid": 3050800, + "normalized_name": "pico pico dungeon!" + }, + { + "appid": 3050810, + "normalized_name": "castle rain" + }, + { + "appid": 3050870, + "normalized_name": "百灵对战" + }, + { + "appid": 3050920, + "normalized_name": "journey of rune" + }, + { + "appid": 3050970, + "normalized_name": "eleanor is out of time" + }, + { + "appid": 3051000, + "normalized_name": "the conductor" + }, + { + "appid": 3051030, + "normalized_name": "leenie's tale" + }, + { + "appid": 3051050, + "normalized_name": "100 aztec cats" + }, + { + "appid": 3051060, + "normalized_name": "妖仙洞府" + }, + { + "appid": 3051070, + "normalized_name": "wild cosmos" + }, + { + "appid": 3051080, + "normalized_name": "busy streets" + }, + { + "appid": 3051090, + "normalized_name": "underwater abyss" + }, + { + "appid": 3051100, + "normalized_name": "poisonous abyss" + }, + { + "appid": 3051110, + "normalized_name": "momentum mayhem" + }, + { + "appid": 3051160, + "normalized_name": "black state" + }, + { + "appid": 3051170, + "normalized_name": "orcs like to fuck elfes" + }, + { + "appid": 3051180, + "normalized_name": "the man in the fields" + }, + { + "appid": 3051220, + "normalized_name": "守卫猎户座" + }, + { + "appid": 3051240, + "normalized_name": "hungry meem" + }, + { + "appid": 3051260, + "normalized_name": "a lost whisker" + }, + { + "appid": 3051270, + "normalized_name": "fpv worldwide" + }, + { + "appid": 3051280, + "normalized_name": "haven & hearth" + }, + { + "appid": 3051340, + "normalized_name": "need two survive" + }, + { + "appid": 3051380, + "normalized_name": "lofi aquarium" + }, + { + "appid": 3051470, + "normalized_name": "kaya's prophecy" + }, + { + "appid": 3051480, + "normalized_name": "disposition" + }, + { + "appid": 3051520, + "normalized_name": "unlighted" + }, + { + "appid": 3051580, + "normalized_name": "nexus of fate" + }, + { + "appid": 3051600, + "normalized_name": "bouncing over it" + }, + { + "appid": 3051610, + "normalized_name": "young detectives farm" + }, + { + "appid": 3051620, + "normalized_name": "young detectives animals" + }, + { + "appid": 3051630, + "normalized_name": "young detectives undersea" + }, + { + "appid": 3051640, + "normalized_name": "young detectives space" + }, + { + "appid": 3051650, + "normalized_name": "young detectives holidays" + }, + { + "appid": 3051660, + "normalized_name": "null causality" + }, + { + "appid": 3051700, + "normalized_name": "the overseer" + }, + { + "appid": 3051720, + "normalized_name": "bloodcrave r18 prologue" + }, + { + "appid": 3051910, + "normalized_name": "sudoku topology" + }, + { + "appid": 3051960, + "normalized_name": "nitrogen narcosis" + }, + { + "appid": 3052140, + "normalized_name": "destroy all letters" + }, + { + "appid": 3052150, + "normalized_name": "split fiction friend's pass" + }, + { + "appid": 3052190, + "normalized_name": "furry senpai bear in the woods" + }, + { + "appid": 3052220, + "normalized_name": "red door ylw door" + }, + { + "appid": 3052310, + "normalized_name": "monster ops 4" + }, + { + "appid": 3052330, + "normalized_name": "one of them" + }, + { + "appid": 3052420, + "normalized_name": "the better deal part i" + }, + { + "appid": 3052450, + "normalized_name": "morimens" + }, + { + "appid": 3052480, + "normalized_name": "dear his majesty" + }, + { + "appid": 3052500, + "normalized_name": "coldridge" + }, + { + "appid": 3052510, + "normalized_name": "oceaneers" + }, + { + "appid": 3052520, + "normalized_name": "volleyborne unbound horizons" + }, + { + "appid": 3052540, + "normalized_name": "chemist wanted" + }, + { + "appid": 3052550, + "normalized_name": "ninja hayate hd remaster" + }, + { + "appid": 3052610, + "normalized_name": "黑神话时空(black souls like)" + }, + { + "appid": 3052650, + "normalized_name": "super alien sniper super realistic simulator" + }, + { + "appid": 3052700, + "normalized_name": "records of the flycatcher" + }, + { + "appid": 3052730, + "normalized_name": "here comes the swarm" + }, + { + "appid": 3052740, + "normalized_name": "caveloop" + }, + { + "appid": 3052790, + "normalized_name": "numbers & nodes" + }, + { + "appid": 3052820, + "normalized_name": "darkblood reverse" + }, + { + "appid": 3052850, + "normalized_name": "タイピング × 音ゲー beattyping" + }, + { + "appid": 3052870, + "normalized_name": "luthier" + }, + { + "appid": 3053130, + "normalized_name": "tokyo trigger" + }, + { + "appid": 3053200, + "normalized_name": "cult of the dragon" + }, + { + "appid": 3053210, + "normalized_name": "sticker delight" + }, + { + "appid": 3053290, + "normalized_name": "喵喵与共" + }, + { + "appid": 3053300, + "normalized_name": "dusty's sweeping cleanup" + }, + { + "appid": 3053310, + "normalized_name": "fables mosaic little red riding hood" + }, + { + "appid": 3053320, + "normalized_name": "fables mosaic rapunzel" + }, + { + "appid": 3053330, + "normalized_name": "fables mosaic cinderella" + }, + { + "appid": 3053340, + "normalized_name": "savage gears" + }, + { + "appid": 3053370, + "normalized_name": "the way down" + }, + { + "appid": 3053380, + "normalized_name": "fables mosaic snow white and the seven dwarfs" + }, + { + "appid": 3053390, + "normalized_name": "家屋探索 japanese house exploration" + }, + { + "appid": 3053400, + "normalized_name": "prime mosaic" + }, + { + "appid": 3053420, + "normalized_name": "an unexpectedly green journey" + }, + { + "appid": 3053490, + "normalized_name": "bomber hero" + }, + { + "appid": 3053500, + "normalized_name": "jeff the janitor" + }, + { + "appid": 3053520, + "normalized_name": "neo habits" + }, + { + "appid": 3053690, + "normalized_name": "converse with a small person" + }, + { + "appid": 3053720, + "normalized_name": "psycho" + }, + { + "appid": 3053750, + "normalized_name": "kana seito defense" + }, + { + "appid": 3053770, + "normalized_name": "vertigrowl" + }, + { + "appid": 3053810, + "normalized_name": "versus go" + }, + { + "appid": 3053830, + "normalized_name": "errand task force" + }, + { + "appid": 3053850, + "normalized_name": "forecursed" + }, + { + "appid": 3053860, + "normalized_name": "college gay sex episode 5" + }, + { + "appid": 3053870, + "normalized_name": "gridhack" + }, + { + "appid": 3053880, + "normalized_name": "deckmancers" + }, + { + "appid": 3053890, + "normalized_name": "never shall we die" + }, + { + "appid": 3053910, + "normalized_name": "mytho duel" + }, + { + "appid": 3053920, + "normalized_name": "galactic inferno" + }, + { + "appid": 3053950, + "normalized_name": "dungeon rampage" + }, + { + "appid": 3053960, + "normalized_name": "ninja and the quest for the jade statue" + }, + { + "appid": 3053970, + "normalized_name": "block bot puzzle journey" + }, + { + "appid": 3053990, + "normalized_name": "to the grave the wildlands of faenora" + }, + { + "appid": 3054060, + "normalized_name": "kraktures" + }, + { + "appid": 3054070, + "normalized_name": "deathgearx" + }, + { + "appid": 3054090, + "normalized_name": "idle tower defense" + }, + { + "appid": 3054110, + "normalized_name": "beaux arts" + }, + { + "appid": 3054120, + "normalized_name": "勇者圣剑传说 legend of the brave sword" + }, + { + "appid": 3054130, + "normalized_name": "apple tree" + }, + { + "appid": 3054140, + "normalized_name": "cheese the cheese collector" + }, + { + "appid": 3054180, + "normalized_name": "normal days" + }, + { + "appid": 3054200, + "normalized_name": "lober lobe" + }, + { + "appid": 3054210, + "normalized_name": "identifile" + }, + { + "appid": 3054260, + "normalized_name": "マーダーミステリーj殺人犯はそばにいる" + }, + { + "appid": 3054290, + "normalized_name": "snacktimeactiongame" + }, + { + "appid": 3054300, + "normalized_name": "escape duckz!(カルガモ大脱出ゼット!)" + }, + { + "appid": 3054330, + "normalized_name": "hogtie" + }, + { + "appid": 3054350, + "normalized_name": "cat's dream" + }, + { + "appid": 3054370, + "normalized_name": "luna and the wasted city of sin" + }, + { + "appid": 3054410, + "normalized_name": "bushside rangers" + }, + { + "appid": 3054440, + "normalized_name": "short snow" + }, + { + "appid": 3054450, + "normalized_name": "idolverse" + }, + { + "appid": 3054470, + "normalized_name": "rogue zodiacs" + }, + { + "appid": 3054480, + "normalized_name": "mech survivor elite" + }, + { + "appid": 3054490, + "normalized_name": "shrimp" + }, + { + "appid": 3054540, + "normalized_name": "fallen echo" + }, + { + "appid": 3054550, + "normalized_name": "sil and the fading world" + }, + { + "appid": 3054610, + "normalized_name": "artifact seeker resurrection" + }, + { + "appid": 3054670, + "normalized_name": "i hate my legs" + }, + { + "appid": 3054680, + "normalized_name": "multiplayer rpg" + }, + { + "appid": 3054690, + "normalized_name": "norse oath of blood" + }, + { + "appid": 3054700, + "normalized_name": "crimson asylum" + }, + { + "appid": 3054710, + "normalized_name": "tree simulator 2.0" + }, + { + "appid": 3054720, + "normalized_name": "fishing for cats" + }, + { + "appid": 3054750, + "normalized_name": "厌恶" + }, + { + "appid": 3054760, + "normalized_name": "imitation" + }, + { + "appid": 3054820, + "normalized_name": "でびるコネクショん" + }, + { + "appid": 3054910, + "normalized_name": "day trader tycoon" + }, + { + "appid": 3054930, + "normalized_name": "dimensional deconstruction" + }, + { + "appid": 3054950, + "normalized_name": "frost survival vr" + }, + { + "appid": 3054960, + "normalized_name": "into the dread" + }, + { + "appid": 3055000, + "normalized_name": "hell's descent" + }, + { + "appid": 3055020, + "normalized_name": "mushroom" + }, + { + "appid": 3055050, + "normalized_name": "the adventures of detective donut at shao lu temple" + }, + { + "appid": 3055070, + "normalized_name": "fateful bullet" + }, + { + "appid": 3055100, + "normalized_name": "welcome to primrose lake 3" + }, + { + "appid": 3055110, + "normalized_name": "light dude a dimpossible game" + }, + { + "appid": 3055120, + "normalized_name": "astral wield" + }, + { + "appid": 3055150, + "normalized_name": "r.e.a.p.e.r. corp." + }, + { + "appid": 3055170, + "normalized_name": "welcome to primrose lake 4" + }, + { + "appid": 3055180, + "normalized_name": "welcome to primrose lake 5" + }, + { + "appid": 3055200, + "normalized_name": "huntin' ducks" + }, + { + "appid": 3055210, + "normalized_name": "ehko island" + }, + { + "appid": 3055230, + "normalized_name": "sex any cost but free" + }, + { + "appid": 3055250, + "normalized_name": "gothic clicker" + }, + { + "appid": 3055290, + "normalized_name": "sunny trails" + }, + { + "appid": 3055330, + "normalized_name": "hammer penguins" + }, + { + "appid": 3055340, + "normalized_name": "song of the nothing" + }, + { + "appid": 3055370, + "normalized_name": "isekaing from zero to zero." + }, + { + "appid": 3055380, + "normalized_name": "imagine island" + }, + { + "appid": 3055390, + "normalized_name": "giraffe" + }, + { + "appid": 3055400, + "normalized_name": "high school rizz party" + }, + { + "appid": 3055420, + "normalized_name": "fruit chain effect" + }, + { + "appid": 3055450, + "normalized_name": "beyond the earth" + }, + { + "appid": 3055460, + "normalized_name": "shadow puppet" + }, + { + "appid": 3055480, + "normalized_name": "live lens bodycam" + }, + { + "appid": 3055510, + "normalized_name": "neither dead nor alive" + }, + { + "appid": 3055530, + "normalized_name": "dare to lucid dream" + }, + { + "appid": 3055550, + "normalized_name": "security simulator nightshift" + }, + { + "appid": 3055580, + "normalized_name": "necroverse undying shadows" + }, + { + "appid": 3055590, + "normalized_name": "turbo dash" + }, + { + "appid": 3055600, + "normalized_name": "timebound vampire" + }, + { + "appid": 3055610, + "normalized_name": "the mystic fortune" + }, + { + "appid": 3055630, + "normalized_name": "retro pistol hero" + }, + { + "appid": 3055640, + "normalized_name": "inscrutable fortress" + }, + { + "appid": 3055690, + "normalized_name": "average human ball game" + }, + { + "appid": 3055710, + "normalized_name": "rumble crumble" + }, + { + "appid": 3055780, + "normalized_name": "permuter" + }, + { + "appid": 3055790, + "normalized_name": "rocket wrestling entertainment" + }, + { + "appid": 3055810, + "normalized_name": "sky bound hero" + }, + { + "appid": 3055930, + "normalized_name": "aquario" + }, + { + "appid": 3055950, + "normalized_name": "shantae advance risky revolution" + }, + { + "appid": 3055970, + "normalized_name": "medieval nightt part 1" + }, + { + "appid": 3055990, + "normalized_name": "rubicore secret world" + }, + { + "appid": 3056040, + "normalized_name": "wasted shot" + }, + { + "appid": 3056070, + "normalized_name": "business empire tycoon" + }, + { + "appid": 3056090, + "normalized_name": "the curiosity" + }, + { + "appid": 3056110, + "normalized_name": "calm skies the wingsuit flying experience" + }, + { + "appid": 3056220, + "normalized_name": "迪菲大陸戰記 iii" + }, + { + "appid": 3056270, + "normalized_name": "mekkablood quarry assault" + }, + { + "appid": 3056280, + "normalized_name": "holy shift" + }, + { + "appid": 3056300, + "normalized_name": "just move on!" + }, + { + "appid": 3056310, + "normalized_name": "elementyle" + }, + { + "appid": 3056350, + "normalized_name": "technosorcery" + }, + { + "appid": 3056370, + "normalized_name": "honey peach clicker" + }, + { + "appid": 3056420, + "normalized_name": "you know my name?" + }, + { + "appid": 3056480, + "normalized_name": "devil in my house" + }, + { + "appid": 3056570, + "normalized_name": "deck of memories" + }, + { + "appid": 3056580, + "normalized_name": "hexaroma village builder" + }, + { + "appid": 3056590, + "normalized_name": "swap fire" + }, + { + "appid": 3056600, + "normalized_name": "apple clicker" + }, + { + "appid": 3056610, + "normalized_name": "rapidfire" + }, + { + "appid": 3056640, + "normalized_name": "i have more hours than you" + }, + { + "appid": 3056650, + "normalized_name": "cult of blood" + }, + { + "appid": 3056720, + "normalized_name": "weeping amber prologue" + }, + { + "appid": 3056730, + "normalized_name": "psychotic nightmare" + }, + { + "appid": 3056760, + "normalized_name": "going dark" + }, + { + "appid": 3056840, + "normalized_name": "a bumpy ride" + }, + { + "appid": 3056860, + "normalized_name": "meat fest" + }, + { + "appid": 3056870, + "normalized_name": "solar sweets" + }, + { + "appid": 3056880, + "normalized_name": "emoji clicker" + }, + { + "appid": 3056890, + "normalized_name": "cardwovenempires" + }, + { + "appid": 3056940, + "normalized_name": "carpe noctem yuri visual novel" + }, + { + "appid": 3056960, + "normalized_name": "city of nightmares" + }, + { + "appid": 3056980, + "normalized_name": "sintropia" + }, + { + "appid": 3057000, + "normalized_name": "lazarus darkness" + }, + { + "appid": 3057020, + "normalized_name": "forgotten bunker 1939" + }, + { + "appid": 3057040, + "normalized_name": "grimwhimsy" + }, + { + "appid": 3057060, + "normalized_name": "ampbound soccer" + }, + { + "appid": 3057110, + "normalized_name": "attack on mutation station" + }, + { + "appid": 3057180, + "normalized_name": "abnormal1999 sector 49" + }, + { + "appid": 3057190, + "normalized_name": "lootplot" + }, + { + "appid": 3057220, + "normalized_name": "gambamba" + }, + { + "appid": 3057250, + "normalized_name": "pennylooter" + }, + { + "appid": 3057270, + "normalized_name": "seafarer's gambit" + }, + { + "appid": 3057290, + "normalized_name": "furry adventure club and the holy grail 🦁" + }, + { + "appid": 3057330, + "normalized_name": "god's disdain" + }, + { + "appid": 3057340, + "normalized_name": "as the leaves fall" + }, + { + "appid": 3057350, + "normalized_name": "phoblack" + }, + { + "appid": 3057360, + "normalized_name": "wastedroad reapers" + }, + { + "appid": 3057390, + "normalized_name": "banana monkeys" + }, + { + "appid": 3057400, + "normalized_name": "zombie war new world" + }, + { + "appid": 3057410, + "normalized_name": "mounted war" + }, + { + "appid": 3057460, + "normalized_name": "there's no aliens" + }, + { + "appid": 3057470, + "normalized_name": "on the keyboard" + }, + { + "appid": 3057490, + "normalized_name": "chef's van" + }, + { + "appid": 3057550, + "normalized_name": "get rich" + }, + { + "appid": 3057570, + "normalized_name": "elf in chains" + }, + { + "appid": 3057670, + "normalized_name": "pluto" + }, + { + "appid": 3057710, + "normalized_name": "scavenger" + }, + { + "appid": 3057720, + "normalized_name": "异路同行" + }, + { + "appid": 3057760, + "normalized_name": "crops!" + }, + { + "appid": 3057810, + "normalized_name": "dungeoneer" + }, + { + "appid": 3057820, + "normalized_name": "jack of clubs" + }, + { + "appid": 3057830, + "normalized_name": "shadow strikers arena of rivals" + }, + { + "appid": 3057850, + "normalized_name": "milk" + }, + { + "appid": 3057880, + "normalized_name": "black camelot" + }, + { + "appid": 3057890, + "normalized_name": "tempter" + }, + { + "appid": 3057940, + "normalized_name": "ducks" + }, + { + "appid": 3057960, + "normalized_name": "don't take me away" + }, + { + "appid": 3058000, + "normalized_name": "the adventures of penny & lou" + }, + { + "appid": 3058010, + "normalized_name": "mug's orb" + }, + { + "appid": 3058020, + "normalized_name": "road to wealth" + }, + { + "appid": 3058030, + "normalized_name": "weeb" + }, + { + "appid": 3058080, + "normalized_name": "死写2 shisya2 ghost video" + }, + { + "appid": 3058090, + "normalized_name": "goooal" + }, + { + "appid": 3058100, + "normalized_name": "2033 the order" + }, + { + "appid": 3058110, + "normalized_name": "banana extreme" + }, + { + "appid": 3058130, + "normalized_name": "the legend of thabor rise of the mages" + }, + { + "appid": 3058140, + "normalized_name": "desperate place" + }, + { + "appid": 3058180, + "normalized_name": "the final act" + }, + { + "appid": 3058190, + "normalized_name": "bible trivia" + }, + { + "appid": 3058200, + "normalized_name": "star beads" + }, + { + "appid": 3058210, + "normalized_name": "radioactive pineapple" + }, + { + "appid": 3058230, + "normalized_name": "airsoft range" + }, + { + "appid": 3058240, + "normalized_name": "goofy little soccer match" + }, + { + "appid": 3058250, + "normalized_name": "gaggi clicker" + }, + { + "appid": 3058310, + "normalized_name": "silent threat" + }, + { + "appid": 3058360, + "normalized_name": "parisian brasserie simulator" + }, + { + "appid": 3058400, + "normalized_name": "cam star!" + }, + { + "appid": 3058430, + "normalized_name": "swamped!" + }, + { + "appid": 3058480, + "normalized_name": "rat race ritual" + }, + { + "appid": 3058490, + "normalized_name": "pumpkin's revenge" + }, + { + "appid": 3058500, + "normalized_name": "cucumber" + }, + { + "appid": 3058520, + "normalized_name": "goddess connect" + }, + { + "appid": 3058550, + "normalized_name": "rewolborough vol.1" + }, + { + "appid": 3058560, + "normalized_name": "batik heroes" + }, + { + "appid": 3058570, + "normalized_name": "darkfall shadows" + }, + { + "appid": 3058620, + "normalized_name": "sammy jukes twin lakes" + }, + { + "appid": 3058630, + "normalized_name": "assetto corsa evo" + }, + { + "appid": 3058640, + "normalized_name": "waggasim" + }, + { + "appid": 3058660, + "normalized_name": "hark the ghoul" + }, + { + "appid": 3058690, + "normalized_name": "eggworld" + }, + { + "appid": 3058700, + "normalized_name": "banana cat" + }, + { + "appid": 3058710, + "normalized_name": "jumpmap" + }, + { + "appid": 3058720, + "normalized_name": "dungeon board" + }, + { + "appid": 3058760, + "normalized_name": "lost in limbo" + }, + { + "appid": 3058770, + "normalized_name": "dragrave marauders" + }, + { + "appid": 3058790, + "normalized_name": "diamond" + }, + { + "appid": 3058800, + "normalized_name": "orange the annoying clicker" + }, + { + "appid": 3058810, + "normalized_name": "the girls of your dreams" + }, + { + "appid": 3058820, + "normalized_name": "labyrinth roll of fate" + }, + { + "appid": 3058830, + "normalized_name": "paradise cleaning ヴァリアントヴァース" + }, + { + "appid": 3058860, + "normalized_name": "轉生打怪學英文(七) 模擬人生大冒險" + }, + { + "appid": 3058890, + "normalized_name": "mewing simulator 🤫🧏🏻♂" + }, + { + "appid": 3058940, + "normalized_name": "backspace backspace backspace" + }, + { + "appid": 3058960, + "normalized_name": "manipulus a deck building odyssey" + }, + { + "appid": 3059000, + "normalized_name": "loded depths" + }, + { + "appid": 3059010, + "normalized_name": "commando collection" + }, + { + "appid": 3059040, + "normalized_name": "cat astrophy" + }, + { + "appid": 3059070, + "normalized_name": "the headliners" + }, + { + "appid": 3059150, + "normalized_name": "capital" + }, + { + "appid": 3059160, + "normalized_name": "wizard duel" + }, + { + "appid": 3059200, + "normalized_name": "stocksim" + }, + { + "appid": 3059220, + "normalized_name": "watermelon" + }, + { + "appid": 3059230, + "normalized_name": "ragdoll rumble" + }, + { + "appid": 3059240, + "normalized_name": "space shooter" + }, + { + "appid": 3059270, + "normalized_name": "sugar rush" + }, + { + "appid": 3059290, + "normalized_name": "deep dungeon knight" + }, + { + "appid": 3059300, + "normalized_name": "dog" + }, + { + "appid": 3059330, + "normalized_name": "連続テレビゲーム小説「どんぐり公園~人工衛星ヘッドシザースホイップ~」" + }, + { + "appid": 3059350, + "normalized_name": "the tome of all tales" + }, + { + "appid": 3059380, + "normalized_name": "after midnight" + }, + { + "appid": 3059390, + "normalized_name": "hexagod" + }, + { + "appid": 3059400, + "normalized_name": "night drive คืนหลอน ซ่อนทาง" + }, + { + "appid": 3059420, + "normalized_name": "virusrush + hazard of the ages" + }, + { + "appid": 3059470, + "normalized_name": "laser sounds" + }, + { + "appid": 3059480, + "normalized_name": "firestarter 2" + }, + { + "appid": 3059490, + "normalized_name": "mission andromeda" + }, + { + "appid": 3059500, + "normalized_name": "portrait of a torn" + }, + { + "appid": 3059520, + "normalized_name": "f1 25" + }, + { + "appid": 3059560, + "normalized_name": "brick breaker eliminate mosaic and reveal beauty 打砖块 消除马赛克 揭开真面目" + }, + { + "appid": 3059570, + "normalized_name": "tales of valoris swallow's defenders" + }, + { + "appid": 3059660, + "normalized_name": "banana simulator" + }, + { + "appid": 3059670, + "normalized_name": "duel legends" + }, + { + "appid": 3059710, + "normalized_name": "stranded" + }, + { + "appid": 3059730, + "normalized_name": "decksplorers into the shell" + }, + { + "appid": 3059750, + "normalized_name": "cock" + }, + { + "appid": 3059760, + "normalized_name": "funiimo" + }, + { + "appid": 3059770, + "normalized_name": "leveleers" + }, + { + "appid": 3059790, + "normalized_name": "timefixers" + }, + { + "appid": 3059800, + "normalized_name": "fall of gorithia nym's fate" + }, + { + "appid": 3059820, + "normalized_name": "block mover challenge" + }, + { + "appid": 3059840, + "normalized_name": "car clicker" + }, + { + "appid": 3059850, + "normalized_name": "skibi's castle td 2" + }, + { + "appid": 3060080, + "normalized_name": "peach" + }, + { + "appid": 3060110, + "normalized_name": "robo rhythm" + }, + { + "appid": 3060130, + "normalized_name": "cosmic call" + }, + { + "appid": 3060170, + "normalized_name": "chained in the backrooms" + }, + { + "appid": 3060200, + "normalized_name": "dogs" + }, + { + "appid": 3060210, + "normalized_name": "toey weedz smoke one" + }, + { + "appid": 3060250, + "normalized_name": "tropical monster girls" + }, + { + "appid": 3060300, + "normalized_name": "poop" + }, + { + "appid": 3060310, + "normalized_name": "space invaders deck commander" + }, + { + "appid": 3060340, + "normalized_name": "steel carnelian" + }, + { + "appid": 3060390, + "normalized_name": "aetherian chronicles" + }, + { + "appid": 3060400, + "normalized_name": "shipos 1994" + }, + { + "appid": 3060430, + "normalized_name": "rustnaut" + }, + { + "appid": 3060440, + "normalized_name": "faerain" + }, + { + "appid": 3060470, + "normalized_name": "extra extra poison" + }, + { + "appid": 3060550, + "normalized_name": "galactic a tactic the most diplomatic solution" + }, + { + "appid": 3060560, + "normalized_name": "earth 3000" + }, + { + "appid": 3060580, + "normalized_name": "el mono" + }, + { + "appid": 3060590, + "normalized_name": "technoblade the quest of l'manburg" + }, + { + "appid": 3060600, + "normalized_name": "growth fish" + }, + { + "appid": 3060630, + "normalized_name": "修仙:但系统让我种田" + }, + { + "appid": 3060700, + "normalized_name": "重返战场" + }, + { + "appid": 3060730, + "normalized_name": "invention 5" + }, + { + "appid": 3060790, + "normalized_name": "explosivie shooting star beettle" + }, + { + "appid": 3060850, + "normalized_name": "chattdt tower defense twitch" + }, + { + "appid": 3060870, + "normalized_name": "eternal office" + }, + { + "appid": 3060900, + "normalized_name": "dream lust" + }, + { + "appid": 3060940, + "normalized_name": "曹操轉生錄:以曹氏宗親會之名稱霸異世界" + }, + { + "appid": 3060970, + "normalized_name": "gwihyang homecoming" + }, + { + "appid": 3061000, + "normalized_name": "creep zone" + }, + { + "appid": 3061020, + "normalized_name": "i am immortal here" + }, + { + "appid": 3061030, + "normalized_name": "balloon friends" + }, + { + "appid": 3061040, + "normalized_name": "cutout world" + }, + { + "appid": 3061070, + "normalized_name": "valet simulator parking & business" + }, + { + "appid": 3061100, + "normalized_name": "栖云:遗忘之境 oriental dreams the forgotten realm" + }, + { + "appid": 3061140, + "normalized_name": "nephelia through the clouds" + }, + { + "appid": 3061170, + "normalized_name": "ibasket manager 3 online basketball manager" + }, + { + "appid": 3061200, + "normalized_name": "pushika cat suika game" + }, + { + "appid": 3061230, + "normalized_name": "whalefall haven" + }, + { + "appid": 3061250, + "normalized_name": "slack off master" + }, + { + "appid": 3061330, + "normalized_name": "snake" + }, + { + "appid": 3061390, + "normalized_name": "inkwellers" + }, + { + "appid": 3061430, + "normalized_name": "caspers" + }, + { + "appid": 3061450, + "normalized_name": "inertial craft" + }, + { + "appid": 3061470, + "normalized_name": "beyond the field" + }, + { + "appid": 3061480, + "normalized_name": "shahmaran" + }, + { + "appid": 3061500, + "normalized_name": "mob trader" + }, + { + "appid": 3061520, + "normalized_name": "greenguardiansvr" + }, + { + "appid": 3061540, + "normalized_name": "nexus protocol" + }, + { + "appid": 3061550, + "normalized_name": "rioo" + }, + { + "appid": 3061560, + "normalized_name": "skibidi" + }, + { + "appid": 3061570, + "normalized_name": "persona5 the phantom x" + }, + { + "appid": 3061580, + "normalized_name": "отделение 38" + }, + { + "appid": 3061590, + "normalized_name": "sunset afterglow" + }, + { + "appid": 3061630, + "normalized_name": "cannoncraft" + }, + { + "appid": 3061650, + "normalized_name": "frogs" + }, + { + "appid": 3061680, + "normalized_name": "i hit you" + }, + { + "appid": 3061690, + "normalized_name": "bee hero bug blaster" + }, + { + "appid": 3061700, + "normalized_name": "bestion" + }, + { + "appid": 3061730, + "normalized_name": "skateboard knight" + }, + { + "appid": 3061760, + "normalized_name": "colorizing" + }, + { + "appid": 3061770, + "normalized_name": "diary of an international student" + }, + { + "appid": 3061790, + "normalized_name": "vox populi usa 2024" + }, + { + "appid": 3061810, + "normalized_name": "like a dragon pirate yakuza in hawaii" + }, + { + "appid": 3061880, + "normalized_name": "extreme climbing mirage city" + }, + { + "appid": 3061890, + "normalized_name": "me the gravekeeper" + }, + { + "appid": 3061900, + "normalized_name": "revenge of the boxer moscow criminality" + }, + { + "appid": 3061910, + "normalized_name": "pirate hunter" + }, + { + "appid": 3061920, + "normalized_name": "instinct" + }, + { + "appid": 3061940, + "normalized_name": "l'artisan meurtrier" + }, + { + "appid": 3061950, + "normalized_name": "nightmare within" + }, + { + "appid": 3061960, + "normalized_name": "forgotten paths" + }, + { + "appid": 3061970, + "normalized_name": "hydra poseidon's conspiracy" + }, + { + "appid": 3062010, + "normalized_name": "偕老同穴 euplectella" + }, + { + "appid": 3062030, + "normalized_name": "idle kitties online" + }, + { + "appid": 3062040, + "normalized_name": "hot rod mayhem" + }, + { + "appid": 3062050, + "normalized_name": "drive thru simulator prologue" + }, + { + "appid": 3062060, + "normalized_name": "drive thru simulator" + }, + { + "appid": 3062080, + "normalized_name": "vault" + }, + { + "appid": 3062150, + "normalized_name": "car service simulator" + }, + { + "appid": 3062170, + "normalized_name": "the enigma cases" + }, + { + "appid": 3062260, + "normalized_name": "monsters" + }, + { + "appid": 3062330, + "normalized_name": "proud dad simulator" + }, + { + "appid": 3062380, + "normalized_name": "mash box" + }, + { + "appid": 3062400, + "normalized_name": "terra alia vr a multilingual adventure" + }, + { + "appid": 3062410, + "normalized_name": "pizzeria" + }, + { + "appid": 3062440, + "normalized_name": "jazz out" + }, + { + "appid": 3062450, + "normalized_name": "the whittled horse" + }, + { + "appid": 3062490, + "normalized_name": "epic space trader" + }, + { + "appid": 3062500, + "normalized_name": "the adventurers" + }, + { + "appid": 3062530, + "normalized_name": "satan is an astronaut" + }, + { + "appid": 3062550, + "normalized_name": "hail britannia" + }, + { + "appid": 3062560, + "normalized_name": "a forest tale porasy" + }, + { + "appid": 3062570, + "normalized_name": "story of a hunter" + }, + { + "appid": 3062580, + "normalized_name": "avocado" + }, + { + "appid": 3062600, + "normalized_name": "ufos on stream" + }, + { + "appid": 3062610, + "normalized_name": "she's leaving" + }, + { + "appid": 3062620, + "normalized_name": "go quirk!" + }, + { + "appid": 3062630, + "normalized_name": "muktijuddho 1971" + }, + { + "appid": 3062640, + "normalized_name": "cat problems" + }, + { + "appid": 3062680, + "normalized_name": "sculplings" + }, + { + "appid": 3062700, + "normalized_name": "rebel roar" + }, + { + "appid": 3062710, + "normalized_name": "pickup trash simulator" + }, + { + "appid": 3062720, + "normalized_name": "restore reflect retry" + }, + { + "appid": 3062740, + "normalized_name": "once upon a galaxy" + }, + { + "appid": 3062750, + "normalized_name": "ducks" + }, + { + "appid": 3062790, + "normalized_name": "kill the lights!" + }, + { + "appid": 3062830, + "normalized_name": "soulfall" + }, + { + "appid": 3062930, + "normalized_name": "unplagued" + }, + { + "appid": 3062970, + "normalized_name": "fishlike" + }, + { + "appid": 3062980, + "normalized_name": "yomp for zhi" + }, + { + "appid": 3063040, + "normalized_name": "click painter" + }, + { + "appid": 3063050, + "normalized_name": "あうんちゃんのお困りですよね!?霊夢さん!" + }, + { + "appid": 3063070, + "normalized_name": "magical animal farm" + }, + { + "appid": 3063090, + "normalized_name": "wallsurf" + }, + { + "appid": 3063120, + "normalized_name": "pretty girls pop match" + }, + { + "appid": 3063130, + "normalized_name": "coconut" + }, + { + "appid": 3063150, + "normalized_name": "アパシー殺人クラブ" + }, + { + "appid": 3063200, + "normalized_name": "sweyet(etc.)" + }, + { + "appid": 3063210, + "normalized_name": "仙灵正传" + }, + { + "appid": 3063220, + "normalized_name": "scp 087" + }, + { + "appid": 3063240, + "normalized_name": "streets adventure medina motors" + }, + { + "appid": 3063290, + "normalized_name": "我的同學是女優" + }, + { + "appid": 3063390, + "normalized_name": "crash land fantasy" + }, + { + "appid": 3063400, + "normalized_name": "laundry / ランドリー" + }, + { + "appid": 3063420, + "normalized_name": "coffee quest vr" + }, + { + "appid": 3063430, + "normalized_name": "egg summoner" + }, + { + "appid": 3063450, + "normalized_name": "ひらめきパズル!面積迷路" + }, + { + "appid": 3063460, + "normalized_name": "ひらめきパズル!面積迷路ジーニアス" + }, + { + "appid": 3063510, + "normalized_name": "ロジック麻雀 創龍" + }, + { + "appid": 3063520, + "normalized_name": "lisc season 1" + }, + { + "appid": 3063600, + "normalized_name": "em.path" + }, + { + "appid": 3063650, + "normalized_name": "学校七不思议怪谈" + }, + { + "appid": 3063670, + "normalized_name": "死灵法师:我即是天灾!" + }, + { + "appid": 3063680, + "normalized_name": "battle of arachnidia" + }, + { + "appid": 3063710, + "normalized_name": "find colibries" + }, + { + "appid": 3063720, + "normalized_name": "monster chef" + }, + { + "appid": 3063730, + "normalized_name": "milly's meadow" + }, + { + "appid": 3063740, + "normalized_name": "键盘侠之魂 keyboard souls" + }, + { + "appid": 3063750, + "normalized_name": "pixel dungeon vr" + }, + { + "appid": 3063780, + "normalized_name": "horror simulator vr" + }, + { + "appid": 3063790, + "normalized_name": "trimatch" + }, + { + "appid": 3063870, + "normalized_name": "kingdoms of eternity" + }, + { + "appid": 3063890, + "normalized_name": "skidrush drift city" + }, + { + "appid": 3063900, + "normalized_name": "the pyrite talisman" + }, + { + "appid": 3063920, + "normalized_name": "football squad" + }, + { + "appid": 3063940, + "normalized_name": "magical teddy" + }, + { + "appid": 3063950, + "normalized_name": "tales of frah'akin" + }, + { + "appid": 3063960, + "normalized_name": "do you have a moment to talk about our lord and savior?" + }, + { + "appid": 3063980, + "normalized_name": "exposure office simulator" + }, + { + "appid": 3064000, + "normalized_name": "ゴーストパーティー眠り姫" + }, + { + "appid": 3064010, + "normalized_name": "pickle" + }, + { + "appid": 3064020, + "normalized_name": "inn tycoon prologue" + }, + { + "appid": 3064030, + "normalized_name": "whimside" + }, + { + "appid": 3064060, + "normalized_name": "super chipflake ü quest for the uncooked schnitzel" + }, + { + "appid": 3064110, + "normalized_name": "hepatomancy" + }, + { + "appid": 3064130, + "normalized_name": "missilesaber" + }, + { + "appid": 3064140, + "normalized_name": "thou shalt not kill" + }, + { + "appid": 3064160, + "normalized_name": "spinners" + }, + { + "appid": 3064190, + "normalized_name": "find it! festival in the hotel" + }, + { + "appid": 3064230, + "normalized_name": "castelo da vania" + }, + { + "appid": 3064240, + "normalized_name": "versus in the dark" + }, + { + "appid": 3064250, + "normalized_name": "war drone fpv quad simulator" + }, + { + "appid": 3064270, + "normalized_name": "letters" + }, + { + "appid": 3064290, + "normalized_name": "trizon" + }, + { + "appid": 3064320, + "normalized_name": "asgard's edda mechanical threat" + }, + { + "appid": 3064370, + "normalized_name": "dark hours prologue" + }, + { + "appid": 3064410, + "normalized_name": "10 59" + }, + { + "appid": 3064420, + "normalized_name": "innocence or money | season 2 | episode 1" + }, + { + "appid": 3064470, + "normalized_name": "wasp wars 2" + }, + { + "appid": 3064480, + "normalized_name": "glitch hero" + }, + { + "appid": 3064500, + "normalized_name": "doba dogs battle arena" + }, + { + "appid": 3064530, + "normalized_name": "jumper jumpy time attack adventure" + }, + { + "appid": 3064540, + "normalized_name": "secret number simulator" + }, + { + "appid": 3064550, + "normalized_name": "twelve sticks" + }, + { + "appid": 3064560, + "normalized_name": "color tower defence" + }, + { + "appid": 3064610, + "normalized_name": "rods rod roll" + }, + { + "appid": 3064620, + "normalized_name": "the atlas problem" + }, + { + "appid": 3064660, + "normalized_name": "gravity sphere" + }, + { + "appid": 3064670, + "normalized_name": "mushroom season" + }, + { + "appid": 3064720, + "normalized_name": "balloon warfare" + }, + { + "appid": 3064730, + "normalized_name": "twisted jam" + }, + { + "appid": 3064750, + "normalized_name": "wrong bullet" + }, + { + "appid": 3064770, + "normalized_name": "snoot runner" + }, + { + "appid": 3064800, + "normalized_name": "kizunare fable" + }, + { + "appid": 3064810, + "normalized_name": "strategos" + }, + { + "appid": 3064850, + "normalized_name": "pepez the game (beta 1.4)" + }, + { + "appid": 3064870, + "normalized_name": "last victim. house of fear" + }, + { + "appid": 3064880, + "normalized_name": "codebreakers vr" + }, + { + "appid": 3064910, + "normalized_name": "remnants of flesh" + }, + { + "appid": 3064950, + "normalized_name": "crazy corn" + }, + { + "appid": 3064980, + "normalized_name": "portal to the cosmobeat" + }, + { + "appid": 3064990, + "normalized_name": "cart to the end" + }, + { + "appid": 3065080, + "normalized_name": "kimono cats" + }, + { + "appid": 3065090, + "normalized_name": "[2.0.3] meh 🖥" + }, + { + "appid": 3065150, + "normalized_name": "seiden" + }, + { + "appid": 3065160, + "normalized_name": "orc hunter wizard emona" + }, + { + "appid": 3065180, + "normalized_name": "dolls the hunt" + }, + { + "appid": 3065250, + "normalized_name": "femdom game world mistress's dungeon" + }, + { + "appid": 3065260, + "normalized_name": "roll" + }, + { + "appid": 3065270, + "normalized_name": "crop and claw 2" + }, + { + "appid": 3065310, + "normalized_name": "nyaz" + }, + { + "appid": 3065350, + "normalized_name": "7.7 gate" + }, + { + "appid": 3065360, + "normalized_name": "chop chop together" + }, + { + "appid": 3065380, + "normalized_name": "曙光守卫者" + }, + { + "appid": 3065390, + "normalized_name": "caribbean pirates" + }, + { + "appid": 3065460, + "normalized_name": "innerchild vr" + }, + { + "appid": 3065480, + "normalized_name": "reverse escape room archaeologists sanctum" + }, + { + "appid": 3065500, + "normalized_name": "clearing blade" + }, + { + "appid": 3065580, + "normalized_name": "arena of gods" + }, + { + "appid": 3065630, + "normalized_name": "scarseeker" + }, + { + "appid": 3065700, + "normalized_name": "ナレハテ / karma" + }, + { + "appid": 3065720, + "normalized_name": "life is not auto" + }, + { + "appid": 3065740, + "normalized_name": "virtual heritage tour vr museum adventure" + }, + { + "appid": 3065800, + "normalized_name": "marathon" + }, + { + "appid": 3065810, + "normalized_name": "one room dungeon" + }, + { + "appid": 3065820, + "normalized_name": "solid chunks" + }, + { + "appid": 3065860, + "normalized_name": "coconut" + }, + { + "appid": 3065870, + "normalized_name": "heir to the throne" + }, + { + "appid": 3065880, + "normalized_name": "get to the top" + }, + { + "appid": 3065900, + "normalized_name": "弗朗特之门:怪兽拍卖" + }, + { + "appid": 3065910, + "normalized_name": "polar explorer vr sled ride to the north pole" + }, + { + "appid": 3065920, + "normalized_name": "black myth heaven" + }, + { + "appid": 3065980, + "normalized_name": "twit z" + }, + { + "appid": 3066010, + "normalized_name": "dwelling" + }, + { + "appid": 3066030, + "normalized_name": "ayon split in time" + }, + { + "appid": 3066060, + "normalized_name": "smashing simulator idle" + }, + { + "appid": 3066070, + "normalized_name": "frontline fury trenches mud & blood" + }, + { + "appid": 3066100, + "normalized_name": "feeding the velociraptors" + }, + { + "appid": 3066120, + "normalized_name": "konchi" + }, + { + "appid": 3066190, + "normalized_name": "house of horror 7 psychos" + }, + { + "appid": 3066200, + "normalized_name": "beyond memories – tale of the lost souls" + }, + { + "appid": 3066210, + "normalized_name": "beyond memories – darkness of the soul" + }, + { + "appid": 3066220, + "normalized_name": "beyond memories – tales of the heart" + }, + { + "appid": 3066230, + "normalized_name": "crypto skoof tycoon" + }, + { + "appid": 3066260, + "normalized_name": "hand simulator shooter" + }, + { + "appid": 3066270, + "normalized_name": "mechabladehero" + }, + { + "appid": 3066280, + "normalized_name": "coin" + }, + { + "appid": 3066300, + "normalized_name": "sky dust" + }, + { + "appid": 3066310, + "normalized_name": "final outpost" + }, + { + "appid": 3066320, + "normalized_name": "seeds" + }, + { + "appid": 3066360, + "normalized_name": "amazoo" + }, + { + "appid": 3066370, + "normalized_name": "救贖的奧米伽" + }, + { + "appid": 3066390, + "normalized_name": "軍艦島探訪記ある写真家の記録\"visiting battleship island a photographer's chronicle\"" + }, + { + "appid": 3066430, + "normalized_name": "the bottle boy grátis" + }, + { + "appid": 3066440, + "normalized_name": "archipel logic infinite" + }, + { + "appid": 3066460, + "normalized_name": "frontiers" + }, + { + "appid": 3066470, + "normalized_name": "apple" + }, + { + "appid": 3066490, + "normalized_name": "valet simulator prologue" + }, + { + "appid": 3066510, + "normalized_name": "home_0" + }, + { + "appid": 3066570, + "normalized_name": "aotenjo infinite hands" + }, + { + "appid": 3066610, + "normalized_name": "bluestone islands" + }, + { + "appid": 3066650, + "normalized_name": "the modern century" + }, + { + "appid": 3066660, + "normalized_name": "ells tales chicken" + }, + { + "appid": 3066680, + "normalized_name": "solar voltage" + }, + { + "appid": 3066830, + "normalized_name": "lemon" + }, + { + "appid": 3066840, + "normalized_name": "graphwar ii" + }, + { + "appid": 3066850, + "normalized_name": "endless night" + }, + { + "appid": 3066870, + "normalized_name": "black site" + }, + { + "appid": 3066910, + "normalized_name": "sex massage 2 🔞" + }, + { + "appid": 3066920, + "normalized_name": "nuke bomberman" + }, + { + "appid": 3066930, + "normalized_name": "me2" + }, + { + "appid": 3066950, + "normalized_name": "survivalo" + }, + { + "appid": 3066970, + "normalized_name": "taxi goldmania" + }, + { + "appid": 3067010, + "normalized_name": "bottle collector run" + }, + { + "appid": 3067020, + "normalized_name": "search dungeon master" + }, + { + "appid": 3067030, + "normalized_name": "spaceport assault" + }, + { + "appid": 3067040, + "normalized_name": "goldy pig adventure" + }, + { + "appid": 3067050, + "normalized_name": "pug'llector" + }, + { + "appid": 3067060, + "normalized_name": "alcoholic daddy" + }, + { + "appid": 3067070, + "normalized_name": "beachgirl dreams" + }, + { + "appid": 3067080, + "normalized_name": "jessica deliverson" + }, + { + "appid": 3067160, + "normalized_name": "this be mutiny" + }, + { + "appid": 3067170, + "normalized_name": "protagonist complex" + }, + { + "appid": 3067180, + "normalized_name": "the duck pond" + }, + { + "appid": 3067200, + "normalized_name": "i wanna fuck my mom's best friend" + }, + { + "appid": 3067260, + "normalized_name": "tales from the mabinogion" + }, + { + "appid": 3067310, + "normalized_name": "salarybot shuffle" + }, + { + "appid": 3067330, + "normalized_name": "defense of the sodomites" + }, + { + "appid": 3067340, + "normalized_name": "dude fighter" + }, + { + "appid": 3067350, + "normalized_name": "fastest cashier" + }, + { + "appid": 3067360, + "normalized_name": "cosmo magnat" + }, + { + "appid": 3067370, + "normalized_name": "capers vs pirates" + }, + { + "appid": 3067380, + "normalized_name": "boom and rum" + }, + { + "appid": 3067390, + "normalized_name": "pirates slayer" + }, + { + "appid": 3067400, + "normalized_name": "cursed cove" + }, + { + "appid": 3067410, + "normalized_name": "miraculous fall" + }, + { + "appid": 3067420, + "normalized_name": "recovering stolen" + }, + { + "appid": 3067430, + "normalized_name": "citizen life" + }, + { + "appid": 3067440, + "normalized_name": "broken shores" + }, + { + "appid": 3067620, + "normalized_name": "crow" + }, + { + "appid": 3067640, + "normalized_name": "tony and jennie" + }, + { + "appid": 3067650, + "normalized_name": "tiny dino royale" + }, + { + "appid": 3067680, + "normalized_name": "forbidden offering" + }, + { + "appid": 3067770, + "normalized_name": "butt" + }, + { + "appid": 3067780, + "normalized_name": "kuru" + }, + { + "appid": 3067790, + "normalized_name": "hold on in the dungeons" + }, + { + "appid": 3067810, + "normalized_name": "vampirii" + }, + { + "appid": 3067840, + "normalized_name": "3°c sand puzzle" + }, + { + "appid": 3067850, + "normalized_name": "背包修仙传" + }, + { + "appid": 3067890, + "normalized_name": "无尽星火(star fire)" + }, + { + "appid": 3067920, + "normalized_name": "深狱" + }, + { + "appid": 3067930, + "normalized_name": "labyrinth of touhou tri the dreaming girls & the mysterious orbs" + }, + { + "appid": 3067950, + "normalized_name": "皇游天下" + }, + { + "appid": 3067960, + "normalized_name": "sports party motion sensing fitness game" + }, + { + "appid": 3067970, + "normalized_name": "broken aperture" + }, + { + "appid": 3068020, + "normalized_name": "数玩世界" + }, + { + "appid": 3068060, + "normalized_name": "cradle of nightmares" + }, + { + "appid": 3068080, + "normalized_name": "hentai senpai thicc fairies of forest lake" + }, + { + "appid": 3068100, + "normalized_name": "gold" + }, + { + "appid": 3068140, + "normalized_name": "carsh" + }, + { + "appid": 3068210, + "normalized_name": "land it" + }, + { + "appid": 3068220, + "normalized_name": "medieval run" + }, + { + "appid": 3068230, + "normalized_name": "mad metal" + }, + { + "appid": 3068300, + "normalized_name": "katawa shoujo" + }, + { + "appid": 3068320, + "normalized_name": "pizza clicker" + }, + { + "appid": 3068380, + "normalized_name": "carnival of souls" + }, + { + "appid": 3068420, + "normalized_name": "infinity wanderer" + }, + { + "appid": 3068440, + "normalized_name": "sweet sky" + }, + { + "appid": 3068450, + "normalized_name": "lab sorters" + }, + { + "appid": 3068580, + "normalized_name": "divine dynamo flamefrit" + }, + { + "appid": 3068610, + "normalized_name": "the fireseed treaty" + }, + { + "appid": 3068640, + "normalized_name": "the dream observatory" + }, + { + "appid": 3068660, + "normalized_name": "sweet cards" + }, + { + "appid": 3068670, + "normalized_name": "anode heart layer null" + }, + { + "appid": 3068680, + "normalized_name": "kakuro++" + }, + { + "appid": 3068710, + "normalized_name": "vextorial" + }, + { + "appid": 3068720, + "normalized_name": "i am security" + }, + { + "appid": 3069030, + "normalized_name": "keep leapin'" + }, + { + "appid": 3069040, + "normalized_name": "小生活 悠闲小镇物语" + }, + { + "appid": 3069070, + "normalized_name": "jellyfish blind box 水母盲盒" + }, + { + "appid": 3069080, + "normalized_name": "plungeez" + }, + { + "appid": 3069120, + "normalized_name": "不恋爱就完蛋了love curse find your soulmate" + }, + { + "appid": 3069130, + "normalized_name": "flashloop" + }, + { + "appid": 3069140, + "normalized_name": "dumbino" + }, + { + "appid": 3069150, + "normalized_name": "海盗王" + }, + { + "appid": 3069190, + "normalized_name": "primal slideee" + }, + { + "appid": 3069200, + "normalized_name": "closed world" + }, + { + "appid": 3069220, + "normalized_name": "the cursed forest" + }, + { + "appid": 3069230, + "normalized_name": "a night with bartender" + }, + { + "appid": 3069280, + "normalized_name": "well to hell" + }, + { + "appid": 3069290, + "normalized_name": "material evidence" + }, + { + "appid": 3069300, + "normalized_name": "piggly pagly boom" + }, + { + "appid": 3069310, + "normalized_name": "наблюдатель" + }, + { + "appid": 3069320, + "normalized_name": "chimera" + }, + { + "appid": 3069360, + "normalized_name": "rip party" + }, + { + "appid": 3069370, + "normalized_name": "go groundshel!" + }, + { + "appid": 3069390, + "normalized_name": "frolf chaos!" + }, + { + "appid": 3069410, + "normalized_name": "re fragment ~absolute ambition~" + }, + { + "appid": 3069430, + "normalized_name": "spoopcore 3d" + }, + { + "appid": 3069460, + "normalized_name": "spyeye" + }, + { + "appid": 3069470, + "normalized_name": "dollar" + }, + { + "appid": 3069490, + "normalized_name": "置きエイムマスター" + }, + { + "appid": 3069500, + "normalized_name": "liminal fear" + }, + { + "appid": 3069530, + "normalized_name": "oh honey! anime clicker!" + }, + { + "appid": 3069550, + "normalized_name": "ogre man" + }, + { + "appid": 3069620, + "normalized_name": "dog" + }, + { + "appid": 3069630, + "normalized_name": "galaxy princess zorana" + }, + { + "appid": 3069690, + "normalized_name": "seas of hydra" + }, + { + "appid": 3069800, + "normalized_name": "forest dump" + }, + { + "appid": 3069810, + "normalized_name": "rocket rats" + }, + { + "appid": 3069820, + "normalized_name": "good news" + }, + { + "appid": 3069840, + "normalized_name": "surfriders" + }, + { + "appid": 3069860, + "normalized_name": "kawaii slime" + }, + { + "appid": 3069870, + "normalized_name": "apartment story" + }, + { + "appid": 3069880, + "normalized_name": "glyde the dragon prologue" + }, + { + "appid": 3069890, + "normalized_name": "alon" + }, + { + "appid": 3069900, + "normalized_name": "forbidden ward raunchy recovery plan" + }, + { + "appid": 3069930, + "normalized_name": "fungi fantastico" + }, + { + "appid": 3069990, + "normalized_name": "rantcpu's clickbait" + }, + { + "appid": 3070000, + "normalized_name": "oguzok horror" + }, + { + "appid": 3070010, + "normalized_name": "brentwood" + }, + { + "appid": 3070020, + "normalized_name": "automaton heart" + }, + { + "appid": 3070030, + "normalized_name": "stunt granny" + }, + { + "appid": 3070040, + "normalized_name": "kemotaku" + }, + { + "appid": 3070070, + "normalized_name": "tcg card shop simulator" + }, + { + "appid": 3070090, + "normalized_name": "pixel horizons" + }, + { + "appid": 3070150, + "normalized_name": "mobile police officer earth gumble" + }, + { + "appid": 3070180, + "normalized_name": "eggplant" + }, + { + "appid": 3070210, + "normalized_name": "fame" + }, + { + "appid": 3070240, + "normalized_name": "derpy's fun house" + }, + { + "appid": 3070260, + "normalized_name": "monkeys & typewriters!" + }, + { + "appid": 3070320, + "normalized_name": "crystal covenant" + }, + { + "appid": 3070330, + "normalized_name": "croissant" + }, + { + "appid": 3070340, + "normalized_name": "escape from clive" + }, + { + "appid": 3070350, + "normalized_name": "danger and deadlier" + }, + { + "appid": 3070370, + "normalized_name": "invasion of the halloween fiends" + }, + { + "appid": 3070380, + "normalized_name": "space will" + }, + { + "appid": 3070390, + "normalized_name": "master lemon the quest for iceland" + }, + { + "appid": 3070400, + "normalized_name": "late shift" + }, + { + "appid": 3070410, + "normalized_name": "lock in" + }, + { + "appid": 3070430, + "normalized_name": "nova era atom" + }, + { + "appid": 3070450, + "normalized_name": "night blood w cutthroat wolf" + }, + { + "appid": 3070490, + "normalized_name": "path of hero. story of dartes" + }, + { + "appid": 3070500, + "normalized_name": "coin" + }, + { + "appid": 3070510, + "normalized_name": "cat clicker" + }, + { + "appid": 3070520, + "normalized_name": "granny escape together" + }, + { + "appid": 3070530, + "normalized_name": "魔塔史话:开篇" + }, + { + "appid": 3070560, + "normalized_name": "slum guide" + }, + { + "appid": 3070570, + "normalized_name": "the paradixion christmas" + }, + { + "appid": 3070580, + "normalized_name": "the home into the woods" + }, + { + "appid": 3070590, + "normalized_name": "snowfall symphony a tale of crustallus" + }, + { + "appid": 3070600, + "normalized_name": "senpai and the mysterious island" + }, + { + "appid": 3070610, + "normalized_name": "magical princess lily" + }, + { + "appid": 3070620, + "normalized_name": "ninja ordinance" + }, + { + "appid": 3070650, + "normalized_name": "群島物語 實習鍊金術士的 90 天之旅" + }, + { + "appid": 3070690, + "normalized_name": "phantom ten" + }, + { + "appid": 3070700, + "normalized_name": "keybound" + }, + { + "appid": 3070720, + "normalized_name": "intergalacticorp." + }, + { + "appid": 3070830, + "normalized_name": "moanera" + }, + { + "appid": 3070850, + "normalized_name": "distant" + }, + { + "appid": 3070860, + "normalized_name": "pirates of the storm" + }, + { + "appid": 3070880, + "normalized_name": "farming & supermarket simulator" + }, + { + "appid": 3070890, + "normalized_name": "clothing clicker" + }, + { + "appid": 3070920, + "normalized_name": "eggplant" + }, + { + "appid": 3071000, + "normalized_name": "the pilgrim's progress" + }, + { + "appid": 3071010, + "normalized_name": "collectibles!" + }, + { + "appid": 3071030, + "normalized_name": "hackslash" + }, + { + "appid": 3071050, + "normalized_name": "apple run" + }, + { + "appid": 3071060, + "normalized_name": "arrive in time" + }, + { + "appid": 3071070, + "normalized_name": "king's beat" + }, + { + "appid": 3071080, + "normalized_name": "heartless rogue" + }, + { + "appid": 3071100, + "normalized_name": "last mind standing" + }, + { + "appid": 3071120, + "normalized_name": "izgub 2001" + }, + { + "appid": 3071150, + "normalized_name": "one dash star" + }, + { + "appid": 3071170, + "normalized_name": "defenders | wave survival game" + }, + { + "appid": 3071210, + "normalized_name": "cosplay crisis succubus invasion" + }, + { + "appid": 3071230, + "normalized_name": "get down and buggie" + }, + { + "appid": 3071240, + "normalized_name": "voodoo fishin'" + }, + { + "appid": 3071270, + "normalized_name": "linum" + }, + { + "appid": 3071280, + "normalized_name": "bubblebeast digidungeon" + }, + { + "appid": 3071290, + "normalized_name": "koppun 50" + }, + { + "appid": 3071340, + "normalized_name": "world eternal battlegrounds" + }, + { + "appid": 3071380, + "normalized_name": "the villainess quits" + }, + { + "appid": 3071440, + "normalized_name": "a week in the life of asocial giraffe" + }, + { + "appid": 3071470, + "normalized_name": "atha in search of the well" + }, + { + "appid": 3071490, + "normalized_name": "poetryadventure" + }, + { + "appid": 3071500, + "normalized_name": "thesimpleclimbgame" + }, + { + "appid": 3071520, + "normalized_name": "there's no monsters" + }, + { + "appid": 3071610, + "normalized_name": "inferno pathways" + }, + { + "appid": 3071620, + "normalized_name": "星际曙光:幸存者" + }, + { + "appid": 3071630, + "normalized_name": "stalin vs hitler hentai sex war ussr soviet communism & nazi" + }, + { + "appid": 3071640, + "normalized_name": "balls" + }, + { + "appid": 3071660, + "normalized_name": "tanks of freedom ii" + }, + { + "appid": 3071670, + "normalized_name": "pixel cross stitch color by number" + }, + { + "appid": 3071720, + "normalized_name": "tokyo train 4" + }, + { + "appid": 3071740, + "normalized_name": "box clicker" + }, + { + "appid": 3071750, + "normalized_name": "zaru" + }, + { + "appid": 3071770, + "normalized_name": "midnight shift" + }, + { + "appid": 3071810, + "normalized_name": "project solar" + }, + { + "appid": 3071820, + "normalized_name": "langort" + }, + { + "appid": 3071830, + "normalized_name": "high up" + }, + { + "appid": 3071840, + "normalized_name": "the hunter's journals wyrmwood" + }, + { + "appid": 3071860, + "normalized_name": "warag" + }, + { + "appid": 3071880, + "normalized_name": "hidden cats invade venice" + }, + { + "appid": 3071950, + "normalized_name": "our home" + }, + { + "appid": 3071970, + "normalized_name": "flora corner" + }, + { + "appid": 3072000, + "normalized_name": "literally just pixels on a screen" + }, + { + "appid": 3072050, + "normalized_name": "mesektet" + }, + { + "appid": 3072060, + "normalized_name": "101 cats hidden in las vegas" + }, + { + "appid": 3072070, + "normalized_name": "histo time" + }, + { + "appid": 3072100, + "normalized_name": "lemon" + }, + { + "appid": 3072120, + "normalized_name": "backrooms lost runners" + }, + { + "appid": 3072130, + "normalized_name": "oceanlust erotic descent 🔞" + }, + { + "appid": 3072150, + "normalized_name": "super marble drop deluxe" + }, + { + "appid": 3072160, + "normalized_name": "rebel fury" + }, + { + "appid": 3072180, + "normalized_name": "hope a sky full of ghosts" + }, + { + "appid": 3072190, + "normalized_name": "catloaf kart racing" + }, + { + "appid": 3072220, + "normalized_name": "ottoman dreams rise of süleiman" + }, + { + "appid": 3072240, + "normalized_name": "through the backrooms" + }, + { + "appid": 3072270, + "normalized_name": "hour of survival zombie craft" + }, + { + "appid": 3072280, + "normalized_name": "flappy horse" + }, + { + "appid": 3072300, + "normalized_name": "capybara fighters!" + }, + { + "appid": 3072310, + "normalized_name": "missing" + }, + { + "appid": 3072350, + "normalized_name": "memoirs of an angel (2010)" + }, + { + "appid": 3072370, + "normalized_name": "candy factory td" + }, + { + "appid": 3072380, + "normalized_name": "undesired catch" + }, + { + "appid": 3072400, + "normalized_name": "arm around!" + }, + { + "appid": 3072410, + "normalized_name": "meridian" + }, + { + "appid": 3072440, + "normalized_name": "infinite rebirth" + }, + { + "appid": 3072450, + "normalized_name": "fakebook" + }, + { + "appid": 3072470, + "normalized_name": "crimson waves on the emerald sea amaranthine moon" + }, + { + "appid": 3072480, + "normalized_name": "buffet knight decadent full course" + }, + { + "appid": 3072490, + "normalized_name": "the ensign" + }, + { + "appid": 3072500, + "normalized_name": "cog foo" + }, + { + "appid": 3072520, + "normalized_name": "gunz & golf" + }, + { + "appid": 3072530, + "normalized_name": "flip coin" + }, + { + "appid": 3072560, + "normalized_name": "leaf clicker grow your green thumb!" + }, + { + "appid": 3072570, + "normalized_name": "abomin agency!" + }, + { + "appid": 3072630, + "normalized_name": "potato" + }, + { + "appid": 3072640, + "normalized_name": "guidus zero" + }, + { + "appid": 3072660, + "normalized_name": "ex nihilo" + }, + { + "appid": 3072680, + "normalized_name": "made in tower" + }, + { + "appid": 3072690, + "normalized_name": "futanari sex adventures episode 2" + }, + { + "appid": 3072710, + "normalized_name": "big trouble in little chimney" + }, + { + "appid": 3072740, + "normalized_name": "fishing zone" + }, + { + "appid": 3072760, + "normalized_name": "retro relics" + }, + { + "appid": 3072780, + "normalized_name": "destiny encore" + }, + { + "appid": 3072790, + "normalized_name": "what's the point?" + }, + { + "appid": 3072800, + "normalized_name": "axial null" + }, + { + "appid": 3072850, + "normalized_name": "apeiron" + }, + { + "appid": 3072860, + "normalized_name": "scale rise of dragons" + }, + { + "appid": 3072870, + "normalized_name": "village cult" + }, + { + "appid": 3072880, + "normalized_name": "doodle cats" + }, + { + "appid": 3072970, + "normalized_name": "tri survive" + }, + { + "appid": 3072990, + "normalized_name": "devil's trap" + }, + { + "appid": 3073040, + "normalized_name": "seoul station" + }, + { + "appid": 3073110, + "normalized_name": "怪力乱神 序章" + }, + { + "appid": 3073120, + "normalized_name": "uka & haruka hentai puzzle 18+" + }, + { + "appid": 3073180, + "normalized_name": "astiel le voleur le mystère du amaad" + }, + { + "appid": 3073220, + "normalized_name": "deliberate" + }, + { + "appid": 3073290, + "normalized_name": "frog world" + }, + { + "appid": 3073310, + "normalized_name": "k pop!" + }, + { + "appid": 3073320, + "normalized_name": "color splash horses" + }, + { + "appid": 3073330, + "normalized_name": "sillysuspects" + }, + { + "appid": 3073340, + "normalized_name": "mnemonic" + }, + { + "appid": 3073350, + "normalized_name": "genesis survivors" + }, + { + "appid": 3073370, + "normalized_name": "lust galaxy 🪐 🔞" + }, + { + "appid": 3073430, + "normalized_name": "silicon valley simulator 1980s" + }, + { + "appid": 3073440, + "normalized_name": "logistics tycoon simulator" + }, + { + "appid": 3073460, + "normalized_name": "broccoli" + }, + { + "appid": 3073470, + "normalized_name": "那一天,我的输出7万亿(my direct damage 7 trillion)" + }, + { + "appid": 3073480, + "normalized_name": "arcane path" + }, + { + "appid": 3073510, + "normalized_name": "samurai shiba" + }, + { + "appid": 3073580, + "normalized_name": "aquatic store simulator" + }, + { + "appid": 3073600, + "normalized_name": "euclid valley" + }, + { + "appid": 3073680, + "normalized_name": "fish" + }, + { + "appid": 3073700, + "normalized_name": "raccoon on a boat" + }, + { + "appid": 3073710, + "normalized_name": "prismneedle" + }, + { + "appid": 3073720, + "normalized_name": "digital tabletops player" + }, + { + "appid": 3073740, + "normalized_name": "lost hope prologue" + }, + { + "appid": 3073750, + "normalized_name": "children of mare" + }, + { + "appid": 3073760, + "normalized_name": "glass horizon" + }, + { + "appid": 3073790, + "normalized_name": "extinction 1306" + }, + { + "appid": 3073800, + "normalized_name": "bamboo bushido" + }, + { + "appid": 3073810, + "normalized_name": "scotland yard" + }, + { + "appid": 3073820, + "normalized_name": "curse rounds" + }, + { + "appid": 3073830, + "normalized_name": "reddrop" + }, + { + "appid": 3073860, + "normalized_name": "idle game simulator" + }, + { + "appid": 3073870, + "normalized_name": "obakenori" + }, + { + "appid": 3073900, + "normalized_name": "slackjaw" + }, + { + "appid": 3073910, + "normalized_name": "blip's supermassive adventure" + }, + { + "appid": 3073930, + "normalized_name": "popcorn!" + }, + { + "appid": 3073940, + "normalized_name": "god save birmingham" + }, + { + "appid": 3073990, + "normalized_name": "runeborn" + }, + { + "appid": 3074020, + "normalized_name": "异世界生存指南" + }, + { + "appid": 3074050, + "normalized_name": "adventure forest rabbit story" + }, + { + "appid": 3074070, + "normalized_name": "moria.i.rty" + }, + { + "appid": 3074090, + "normalized_name": "click the chick" + }, + { + "appid": 3074110, + "normalized_name": "the rangers in the south" + }, + { + "appid": 3074160, + "normalized_name": "mythic merchants" + }, + { + "appid": 3074190, + "normalized_name": "sisyphos" + }, + { + "appid": 3074200, + "normalized_name": "the rookery" + }, + { + "appid": 3074210, + "normalized_name": "champions of chaxia" + }, + { + "appid": 3074230, + "normalized_name": "kajipeet" + }, + { + "appid": 3074240, + "normalized_name": "void collector" + }, + { + "appid": 3074260, + "normalized_name": "the human snake" + }, + { + "appid": 3074330, + "normalized_name": "dead dock protocol" + }, + { + "appid": 3074340, + "normalized_name": "vhs" + }, + { + "appid": 3074380, + "normalized_name": "pierrot à la mode" + }, + { + "appid": 3074410, + "normalized_name": "west journey" + }, + { + "appid": 3074420, + "normalized_name": "spider tank vs aliens" + }, + { + "appid": 3074440, + "normalized_name": "blade of god x orisols" + }, + { + "appid": 3074510, + "normalized_name": "my inner ear quartet" + }, + { + "appid": 3074540, + "normalized_name": "roads of ruin" + }, + { + "appid": 3074560, + "normalized_name": "风铃windbell" + }, + { + "appid": 3074570, + "normalized_name": "keena the voidslayer" + }, + { + "appid": 3074590, + "normalized_name": "hoverdrive" + }, + { + "appid": 3074610, + "normalized_name": "easysimple2dshootinggame" + }, + { + "appid": 3074630, + "normalized_name": "回到终局之始" + }, + { + "appid": 3074660, + "normalized_name": "5 crowns" + }, + { + "appid": 3074700, + "normalized_name": "the lewd deal (full version)" + }, + { + "appid": 3074730, + "normalized_name": "spin & jump" + }, + { + "appid": 3074770, + "normalized_name": "ffs another northern duke?!" + }, + { + "appid": 3074800, + "normalized_name": "the cruciball" + }, + { + "appid": 3074830, + "normalized_name": "gladiato potato" + }, + { + "appid": 3074840, + "normalized_name": "utawarerumono zan" + }, + { + "appid": 3074860, + "normalized_name": "あまつそらに咲く" + }, + { + "appid": 3074910, + "normalized_name": "skill hockey" + }, + { + "appid": 3074930, + "normalized_name": "blood punk" + }, + { + "appid": 3074970, + "normalized_name": "carpocalypse rc racing" + }, + { + "appid": 3074990, + "normalized_name": "dancing pandas ranger's path" + }, + { + "appid": 3075000, + "normalized_name": "neffy moonlight labyrinth" + }, + { + "appid": 3075020, + "normalized_name": "it's on the mouse" + }, + { + "appid": 3075040, + "normalized_name": "egggarden" + }, + { + "appid": 3075050, + "normalized_name": "targeted –10 days" + }, + { + "appid": 3075060, + "normalized_name": "doctor life simulator" + }, + { + "appid": 3075070, + "normalized_name": "随缘修仙" + }, + { + "appid": 3075080, + "normalized_name": "american fkn election" + }, + { + "appid": 3075140, + "normalized_name": "heart of the abyss" + }, + { + "appid": 3075150, + "normalized_name": "the cuniculus of paradise" + }, + { + "appid": 3075170, + "normalized_name": "a pair of feathers squawk together" + }, + { + "appid": 3075250, + "normalized_name": "the haunting eyes" + }, + { + "appid": 3075270, + "normalized_name": "gawaiigo" + }, + { + "appid": 3075360, + "normalized_name": "photonverse 2" + }, + { + "appid": 3075370, + "normalized_name": "crazy islands" + }, + { + "appid": 3075390, + "normalized_name": "czo online" + }, + { + "appid": 3075410, + "normalized_name": "hordes of fate a hand of fate adventure" + }, + { + "appid": 3075430, + "normalized_name": "bat galaxy" + }, + { + "appid": 3075460, + "normalized_name": "thrift store simulator" + }, + { + "appid": 3075490, + "normalized_name": "tapybara" + }, + { + "appid": 3075510, + "normalized_name": "halfling" + }, + { + "appid": 3075590, + "normalized_name": "sank" + }, + { + "appid": 3075610, + "normalized_name": "infinium a spaceboy's tale" + }, + { + "appid": 3075660, + "normalized_name": "reload ein interaktives abenteuer" + }, + { + "appid": 3075670, + "normalized_name": "mycocosm" + }, + { + "appid": 3075690, + "normalized_name": "pudding" + }, + { + "appid": 3075700, + "normalized_name": "coinforge" + }, + { + "appid": 3075710, + "normalized_name": "nao's love triangle hentai puzzle 18+" + }, + { + "appid": 3075720, + "normalized_name": "attenzione pickpocket!" + }, + { + "appid": 3075730, + "normalized_name": "elon and the divine proof" + }, + { + "appid": 3075740, + "normalized_name": "对弈五千年" + }, + { + "appid": 3075760, + "normalized_name": "gears unchained the rise of revolution" + }, + { + "appid": 3075790, + "normalized_name": "duck!" + }, + { + "appid": 3075800, + "normalized_name": "subterranauts" + }, + { + "appid": 3075810, + "normalized_name": "dragon heartburn" + }, + { + "appid": 3075890, + "normalized_name": "hostile lands" + }, + { + "appid": 3076100, + "normalized_name": "mineshaft" + }, + { + "appid": 3076110, + "normalized_name": "fruits & vegetables" + }, + { + "appid": 3076120, + "normalized_name": "freecell solitaire classic card game" + }, + { + "appid": 3076200, + "normalized_name": "ashwood conspiracy" + }, + { + "appid": 3076210, + "normalized_name": "gridiron grilling the refusal of the garden" + }, + { + "appid": 3076220, + "normalized_name": "bruneva" + }, + { + "appid": 3076240, + "normalized_name": "true nightmare roadside сafe" + }, + { + "appid": 3076280, + "normalized_name": "the moon ate the sun a realtime turn based rpg" + }, + { + "appid": 3076330, + "normalized_name": "staraway" + }, + { + "appid": 3076350, + "normalized_name": "pixel collector" + }, + { + "appid": 3076400, + "normalized_name": "tech store simulator" + }, + { + "appid": 3076410, + "normalized_name": "castleyard" + }, + { + "appid": 3076420, + "normalized_name": "poo pusher" + }, + { + "appid": 3076430, + "normalized_name": "rax runner!" + }, + { + "appid": 3076490, + "normalized_name": "climbing zhuzhu" + }, + { + "appid": 3076520, + "normalized_name": "dog" + }, + { + "appid": 3076530, + "normalized_name": "love drunk" + }, + { + "appid": 3076620, + "normalized_name": "empire city simulator" + }, + { + "appid": 3076680, + "normalized_name": "egoversus the first strike" + }, + { + "appid": 3076710, + "normalized_name": "evil dark" + }, + { + "appid": 3076740, + "normalized_name": "mini dungeon" + }, + { + "appid": 3076750, + "normalized_name": "captain of the guard" + }, + { + "appid": 3076770, + "normalized_name": "ビビッター" + }, + { + "appid": 3076790, + "normalized_name": "密市大亨" + }, + { + "appid": 3076850, + "normalized_name": "vr traffic safety with polly" + }, + { + "appid": 3076910, + "normalized_name": "undergrounded" + }, + { + "appid": 3076930, + "normalized_name": "starrider" + }, + { + "appid": 3076960, + "normalized_name": "i want to be born again from my girlfriend's big breasted mom" + }, + { + "appid": 3077010, + "normalized_name": "techdev tycoon" + }, + { + "appid": 3077020, + "normalized_name": "dokapon ~sword of fury~" + }, + { + "appid": 3077030, + "normalized_name": "desktop pets" + }, + { + "appid": 3077090, + "normalized_name": "ant guardians" + }, + { + "appid": 3077120, + "normalized_name": "a dwarves day" + }, + { + "appid": 3077130, + "normalized_name": "project 13 perception test" + }, + { + "appid": 3077140, + "normalized_name": "nightmare kitchen" + }, + { + "appid": 3077150, + "normalized_name": "cuckold sex episode 4" + }, + { + "appid": 3077180, + "normalized_name": "gamer stories 〜実在する女性ゲーマーとデートしてみた〜" + }, + { + "appid": 3077190, + "normalized_name": "super reaktor" + }, + { + "appid": 3077200, + "normalized_name": "monoch room" + }, + { + "appid": 3077210, + "normalized_name": "everdream" + }, + { + "appid": 3077220, + "normalized_name": "tech hustle" + }, + { + "appid": 3077240, + "normalized_name": "extreme reaction" + }, + { + "appid": 3077260, + "normalized_name": "spooky pixel hero" + }, + { + "appid": 3077280, + "normalized_name": "just pizza" + }, + { + "appid": 3077340, + "normalized_name": "はむぱふぇハムスターのスイーツパズル" + }, + { + "appid": 3077360, + "normalized_name": "eggz collectible eggs clicker" + }, + { + "appid": 3077390, + "normalized_name": "motogp25" + }, + { + "appid": 3077400, + "normalized_name": "代号肉鸽:流放之地(whatrogue:exile land)" + }, + { + "appid": 3077440, + "normalized_name": "turbo lizard" + }, + { + "appid": 3077520, + "normalized_name": "poodle clicker" + }, + { + "appid": 3077530, + "normalized_name": "etera" + }, + { + "appid": 3077560, + "normalized_name": "pollen" + }, + { + "appid": 3077570, + "normalized_name": "momo crash" + }, + { + "appid": 3077580, + "normalized_name": "cyber hearts club" + }, + { + "appid": 3077610, + "normalized_name": "无尽噩梦6捕盗行纪" + }, + { + "appid": 3077640, + "normalized_name": "mightreya" + }, + { + "appid": 3077650, + "normalized_name": "reinforced hearts" + }, + { + "appid": 3077660, + "normalized_name": "mystery manor hidden objects" + }, + { + "appid": 3077670, + "normalized_name": "water delivery" + }, + { + "appid": 3077690, + "normalized_name": "serial victims" + }, + { + "appid": 3077710, + "normalized_name": "dice" + }, + { + "appid": 3077720, + "normalized_name": "arohel call of the wind" + }, + { + "appid": 3077760, + "normalized_name": "an exercise in mortality chapter i" + }, + { + "appid": 3077780, + "normalized_name": "pupa" + }, + { + "appid": 3077790, + "normalized_name": "banana gine" + }, + { + "appid": 3077800, + "normalized_name": "與小姨的單身生活" + }, + { + "appid": 3077850, + "normalized_name": "trickster trove" + }, + { + "appid": 3077910, + "normalized_name": "king's gambit" + }, + { + "appid": 3077930, + "normalized_name": "spammerina" + }, + { + "appid": 3077950, + "normalized_name": "ingress" + }, + { + "appid": 3077970, + "normalized_name": "circuit racers" + }, + { + "appid": 3077990, + "normalized_name": "old school tower defense" + }, + { + "appid": 3078000, + "normalized_name": "kung pao banqi" + }, + { + "appid": 3078010, + "normalized_name": "terminal" + }, + { + "appid": 3078030, + "normalized_name": "warbound" + }, + { + "appid": 3078110, + "normalized_name": "进化 机战小队" + }, + { + "appid": 3078120, + "normalized_name": "reality drift" + }, + { + "appid": 3078140, + "normalized_name": "five laps at freddy's" + }, + { + "appid": 3078150, + "normalized_name": "hawthorn" + }, + { + "appid": 3078190, + "normalized_name": "decipher the deck" + }, + { + "appid": 3078230, + "normalized_name": "flesh (classic)" + }, + { + "appid": 3078290, + "normalized_name": "寿司王 sushi ou" + }, + { + "appid": 3078330, + "normalized_name": "xeno rangers" + }, + { + "appid": 3078390, + "normalized_name": "corn" + }, + { + "appid": 3078430, + "normalized_name": "luminedge" + }, + { + "appid": 3078460, + "normalized_name": "flong directors cut" + }, + { + "appid": 3078500, + "normalized_name": "the twelve slot saloon" + }, + { + "appid": 3078530, + "normalized_name": "melody's melon mania" + }, + { + "appid": 3078540, + "normalized_name": "rantcpu litebyte" + }, + { + "appid": 3078550, + "normalized_name": "logical inconsistencies" + }, + { + "appid": 3078570, + "normalized_name": "yatsumeguri | 八つ巡" + }, + { + "appid": 3078580, + "normalized_name": "tesseract first chapter" + }, + { + "appid": 3078590, + "normalized_name": "환세취호전 플러스" + }, + { + "appid": 3078600, + "normalized_name": "a totally realistic stealth game" + }, + { + "appid": 3078650, + "normalized_name": "wedding day" + }, + { + "appid": 3078670, + "normalized_name": "tiny pixels vol. 2 stormy knights" + }, + { + "appid": 3078690, + "normalized_name": "run run my bride!" + }, + { + "appid": 3078730, + "normalized_name": "turte" + }, + { + "appid": 3078740, + "normalized_name": "the horrors origins" + }, + { + "appid": 3078760, + "normalized_name": "sunborn" + }, + { + "appid": 3078820, + "normalized_name": "jigsort journey puzzle blend" + }, + { + "appid": 3078830, + "normalized_name": "infinite library" + }, + { + "appid": 3078840, + "normalized_name": "autogiro" + }, + { + "appid": 3078850, + "normalized_name": "waking nitemare" + }, + { + "appid": 3078910, + "normalized_name": "sisters z hypnosis" + }, + { + "appid": 3078920, + "normalized_name": "too tired to die" + }, + { + "appid": 3078950, + "normalized_name": "my café manager simulator" + }, + { + "appid": 3078960, + "normalized_name": "diggersim excavator simulator" + }, + { + "appid": 3079020, + "normalized_name": "golden ticket simulator" + }, + { + "appid": 3079100, + "normalized_name": "island architect" + }, + { + "appid": 3079110, + "normalized_name": "谬撒牌miusa" + }, + { + "appid": 3079130, + "normalized_name": "recepta incarnation" + }, + { + "appid": 3079140, + "normalized_name": "patato" + }, + { + "appid": 3079150, + "normalized_name": "guigui" + }, + { + "appid": 3079160, + "normalized_name": "don't lose aggro" + }, + { + "appid": 3079170, + "normalized_name": "asket" + }, + { + "appid": 3079180, + "normalized_name": "signal lost" + }, + { + "appid": 3079190, + "normalized_name": "pacs post apocalypse courier service co op delivery simulator" + }, + { + "appid": 3079230, + "normalized_name": "pleasure sweet secret" + }, + { + "appid": 3079270, + "normalized_name": "space tourist" + }, + { + "appid": 3079280, + "normalized_name": "さいはて駅" + }, + { + "appid": 3079400, + "normalized_name": "3d puzzle abandoned prison" + }, + { + "appid": 3079410, + "normalized_name": "3d puzzle sun temple" + }, + { + "appid": 3079420, + "normalized_name": "3d puzzle flooded grounds" + }, + { + "appid": 3079430, + "normalized_name": "puzzle summit solve & rise" + }, + { + "appid": 3079440, + "normalized_name": "3d puzzle bedroom" + }, + { + "appid": 3079460, + "normalized_name": "3d puzzle deserted village" + }, + { + "appid": 3079500, + "normalized_name": "elven trip" + }, + { + "appid": 3079590, + "normalized_name": "manatee" + }, + { + "appid": 3079600, + "normalized_name": "au revoir" + }, + { + "appid": 3079660, + "normalized_name": "twin stick survivors" + }, + { + "appid": 3079670, + "normalized_name": "escape from the core" + }, + { + "appid": 3079680, + "normalized_name": "the maker" + }, + { + "appid": 3079720, + "normalized_name": "wonderful handhelds" + }, + { + "appid": 3079730, + "normalized_name": "cartomancy" + }, + { + "appid": 3079740, + "normalized_name": "mech crusade" + }, + { + "appid": 3079750, + "normalized_name": "zero agency" + }, + { + "appid": 3079770, + "normalized_name": "kokoro kitchen" + }, + { + "appid": 3079820, + "normalized_name": "best laid plans" + }, + { + "appid": 3079840, + "normalized_name": "the stamp" + }, + { + "appid": 3079870, + "normalized_name": "sweet summer" + }, + { + "appid": 3079970, + "normalized_name": "airport x ray simulator" + }, + { + "appid": 3080020, + "normalized_name": "eto" + }, + { + "appid": 3080030, + "normalized_name": "chroma cross" + }, + { + "appid": 3080050, + "normalized_name": "demon dust" + }, + { + "appid": 3080170, + "normalized_name": "the infernal abyss" + }, + { + "appid": 3080180, + "normalized_name": "mythical ruins" + }, + { + "appid": 3080210, + "normalized_name": "i got pinned by a futanari" + }, + { + "appid": 3080240, + "normalized_name": "lots of cats in every moment" + }, + { + "appid": 3080270, + "normalized_name": "virtual fight world" + }, + { + "appid": 3080290, + "normalized_name": "high spirits" + }, + { + "appid": 3080310, + "normalized_name": "baby blues nightmares toddler horror game prologue" + }, + { + "appid": 3080380, + "normalized_name": "violent horror stories anthology" + }, + { + "appid": 3080410, + "normalized_name": "city turn" + }, + { + "appid": 3080420, + "normalized_name": "disorder save your family" + }, + { + "appid": 3080430, + "normalized_name": "iron crown" + }, + { + "appid": 3080530, + "normalized_name": "project x light years" + }, + { + "appid": 3080540, + "normalized_name": "drunken dragon" + }, + { + "appid": 3080560, + "normalized_name": "graphite" + }, + { + "appid": 3080590, + "normalized_name": "the other side" + }, + { + "appid": 3080720, + "normalized_name": "codename tct" + }, + { + "appid": 3080790, + "normalized_name": "muggo clicker" + }, + { + "appid": 3080810, + "normalized_name": "potato" + }, + { + "appid": 3080820, + "normalized_name": "re end" + }, + { + "appid": 3080880, + "normalized_name": "xiuzhenworld2 / 修真世界2" + }, + { + "appid": 3080890, + "normalized_name": "山眸" + }, + { + "appid": 3080910, + "normalized_name": "zenomatrix" + }, + { + "appid": 3080920, + "normalized_name": "孵道" + }, + { + "appid": 3080930, + "normalized_name": "jimmycraft" + }, + { + "appid": 3080940, + "normalized_name": "femdom game world mom" + }, + { + "appid": 3080950, + "normalized_name": "femdom game world stacy" + }, + { + "appid": 3080960, + "normalized_name": "unlucky chicken" + }, + { + "appid": 3081000, + "normalized_name": "ember's verge" + }, + { + "appid": 3081020, + "normalized_name": "まいにち男女入れ替わり生活!? ~my body your body~" + }, + { + "appid": 3081030, + "normalized_name": "束縛彼女とペットな僕 i'm your pet" + }, + { + "appid": 3081060, + "normalized_name": "迷失岛外传南瓜镇" + }, + { + "appid": 3081070, + "normalized_name": "moly" + }, + { + "appid": 3081100, + "normalized_name": "hold my pistaches" + }, + { + "appid": 3081110, + "normalized_name": "capybara" + }, + { + "appid": 3081120, + "normalized_name": "hound automaton" + }, + { + "appid": 3081160, + "normalized_name": "skam" + }, + { + "appid": 3081170, + "normalized_name": "khuga rumble arena" + }, + { + "appid": 3081180, + "normalized_name": "neon doomer 85" + }, + { + "appid": 3081210, + "normalized_name": "無垢を裂く" + }, + { + "appid": 3081240, + "normalized_name": "少女怪奇事件簿 永生" + }, + { + "appid": 3081260, + "normalized_name": "臓器ゲーム mergepuzzle" + }, + { + "appid": 3081270, + "normalized_name": "gourds up" + }, + { + "appid": 3081280, + "normalized_name": "wretch divine ascent" + }, + { + "appid": 3081300, + "normalized_name": "farm td" + }, + { + "appid": 3081310, + "normalized_name": "wait the patient" + }, + { + "appid": 3081320, + "normalized_name": "fuga melodies of steel 3" + }, + { + "appid": 3081330, + "normalized_name": "bythzkel sombréa" + }, + { + "appid": 3081420, + "normalized_name": "spaceman" + }, + { + "appid": 3081490, + "normalized_name": "蒸腾、烈日与杀戮" + }, + { + "appid": 3081510, + "normalized_name": "gang of frogs" + }, + { + "appid": 3081520, + "normalized_name": "footprints combination" + }, + { + "appid": 3081540, + "normalized_name": "magman" + }, + { + "appid": 3081640, + "normalized_name": "miller's fantasy party" + }, + { + "appid": 3081670, + "normalized_name": "strigoi the vampire legend" + }, + { + "appid": 3081690, + "normalized_name": "chromatic conundrum" + }, + { + "appid": 3081710, + "normalized_name": "when the king speaks" + }, + { + "appid": 3081740, + "normalized_name": "marketplace" + }, + { + "appid": 3081760, + "normalized_name": "bleb" + }, + { + "appid": 3081790, + "normalized_name": "blint" + }, + { + "appid": 3081800, + "normalized_name": "chicken" + }, + { + "appid": 3081810, + "normalized_name": "j8 hero" + }, + { + "appid": 3081830, + "normalized_name": "flare nuinui quest" + }, + { + "appid": 3081840, + "normalized_name": "chrono gear warden of time" + }, + { + "appid": 3081870, + "normalized_name": "blast killer" + }, + { + "appid": 3081930, + "normalized_name": "spin hero prologue" + }, + { + "appid": 3081940, + "normalized_name": "carl und cari trubel in tierstadt" + }, + { + "appid": 3081980, + "normalized_name": "taking the cross" + }, + { + "appid": 3082000, + "normalized_name": "path of gear blacksmith's legend" + }, + { + "appid": 3082030, + "normalized_name": "microtopia prologue" + }, + { + "appid": 3082040, + "normalized_name": "goblin quest remake" + }, + { + "appid": 3082060, + "normalized_name": "echoes cards of destiny" + }, + { + "appid": 3082070, + "normalized_name": "stars commander" + }, + { + "appid": 3082080, + "normalized_name": "budd" + }, + { + "appid": 3082090, + "normalized_name": "robin the twisted timber trail" + }, + { + "appid": 3082110, + "normalized_name": "footcareer ult" + }, + { + "appid": 3082140, + "normalized_name": "downstairs 2 nightfall" + }, + { + "appid": 3082150, + "normalized_name": "cat calculations" + }, + { + "appid": 3082160, + "normalized_name": "unimaginable foundation" + }, + { + "appid": 3082170, + "normalized_name": "skeleton hell" + }, + { + "appid": 3082200, + "normalized_name": "spinghost" + }, + { + "appid": 3082220, + "normalized_name": "slapstick bosses" + }, + { + "appid": 3082290, + "normalized_name": "zombie go" + }, + { + "appid": 3082310, + "normalized_name": "pixelquest herb's adventure" + }, + { + "appid": 3082330, + "normalized_name": "drive to survive" + }, + { + "appid": 3082340, + "normalized_name": "umefate" + }, + { + "appid": 3082350, + "normalized_name": "the last days" + }, + { + "appid": 3082360, + "normalized_name": "vyn and verdan" + }, + { + "appid": 3082410, + "normalized_name": "into the sands" + }, + { + "appid": 3082430, + "normalized_name": "tamzin twins the tyranny of tyrek" + }, + { + "appid": 3082440, + "normalized_name": "kachin!" + }, + { + "appid": 3082460, + "normalized_name": "night shift" + }, + { + "appid": 3082490, + "normalized_name": "anomalous adventure" + }, + { + "appid": 3082510, + "normalized_name": "stardust" + }, + { + "appid": 3082530, + "normalized_name": "lux leonarii a mechanical puzzle adventure" + }, + { + "appid": 3082580, + "normalized_name": "astro mining" + }, + { + "appid": 3082610, + "normalized_name": "cube railway puzzle" + }, + { + "appid": 3082620, + "normalized_name": "sifu's quest" + }, + { + "appid": 3082630, + "normalized_name": "cat clash" + }, + { + "appid": 3082660, + "normalized_name": "akaneiro ni somaru saka" + }, + { + "appid": 3082690, + "normalized_name": "dead soul towerdefense shadow labyrinth" + }, + { + "appid": 3082710, + "normalized_name": "merman jump king" + }, + { + "appid": 3082720, + "normalized_name": "沙漠雇佣兵团" + }, + { + "appid": 3082750, + "normalized_name": "dice dice dice" + }, + { + "appid": 3082770, + "normalized_name": "bombmaze" + }, + { + "appid": 3082820, + "normalized_name": "survival in draconia" + }, + { + "appid": 3082840, + "normalized_name": "try to survive today" + }, + { + "appid": 3082850, + "normalized_name": "improbability" + }, + { + "appid": 3082870, + "normalized_name": "the acorn bounty" + }, + { + "appid": 3082890, + "normalized_name": "the faceless killer" + }, + { + "appid": 3082910, + "normalized_name": "classified chaos" + }, + { + "appid": 3082930, + "normalized_name": "地球陷落" + }, + { + "appid": 3082940, + "normalized_name": "featherborn" + }, + { + "appid": 3082950, + "normalized_name": "reality rifts" + }, + { + "appid": 3082960, + "normalized_name": "ice!" + }, + { + "appid": 3082970, + "normalized_name": "ai 女子高生推理バトル" + }, + { + "appid": 3082980, + "normalized_name": "trapped forced to kill" + }, + { + "appid": 3082990, + "normalized_name": "joker order deckbuilding" + }, + { + "appid": 3083010, + "normalized_name": "flaming trails lost ember" + }, + { + "appid": 3083020, + "normalized_name": "my beeloved" + }, + { + "appid": 3083050, + "normalized_name": "箍の外れたビスクドール" + }, + { + "appid": 3083070, + "normalized_name": "ringo td" + }, + { + "appid": 3083090, + "normalized_name": "coins" + }, + { + "appid": 3083120, + "normalized_name": "inauthentic hummus" + }, + { + "appid": 3083160, + "normalized_name": "defend 99" + }, + { + "appid": 3083190, + "normalized_name": "project survivor" + }, + { + "appid": 3083200, + "normalized_name": "cats shaped" + }, + { + "appid": 3083210, + "normalized_name": "block 17" + }, + { + "appid": 3083220, + "normalized_name": "fantasy puzzle king" + }, + { + "appid": 3083240, + "normalized_name": "bug.splash td" + }, + { + "appid": 3083260, + "normalized_name": "make up human" + }, + { + "appid": 3083270, + "normalized_name": "dogs" + }, + { + "appid": 3083290, + "normalized_name": "the curse of karlanrik" + }, + { + "appid": 3083300, + "normalized_name": "proverbs" + }, + { + "appid": 3083340, + "normalized_name": "ascendaria" + }, + { + "appid": 3083360, + "normalized_name": "frog galaxy survivor" + }, + { + "appid": 3083380, + "normalized_name": "golf rush" + }, + { + "appid": 3083510, + "normalized_name": "reaper's odyssey" + }, + { + "appid": 3083520, + "normalized_name": "hero guider" + }, + { + "appid": 3083600, + "normalized_name": "paper pilot" + }, + { + "appid": 3083620, + "normalized_name": "match" + }, + { + "appid": 3083630, + "normalized_name": "psychic enigma" + }, + { + "appid": 3083650, + "normalized_name": "glitch of the game" + }, + { + "appid": 3083660, + "normalized_name": "backrooms the labyrinth" + }, + { + "appid": 3083730, + "normalized_name": "neckbreaker visceral pro wrestling" + }, + { + "appid": 3083760, + "normalized_name": "birdy's island" + }, + { + "appid": 3083800, + "normalized_name": "university tycoon the college management simulator" + }, + { + "appid": 3083880, + "normalized_name": "too angry to die" + }, + { + "appid": 3083890, + "normalized_name": "the ドア" + }, + { + "appid": 3083900, + "normalized_name": "mining and achievements 挖矿与成就" + }, + { + "appid": 3083920, + "normalized_name": "house of secrets" + }, + { + "appid": 3083950, + "normalized_name": "nyassembled!" + }, + { + "appid": 3083960, + "normalized_name": "the test of insanity" + }, + { + "appid": 3083980, + "normalized_name": "夜空色的魔法少女 nightsky blue magical girl" + }, + { + "appid": 3083990, + "normalized_name": "imaginary friend institution" + }, + { + "appid": 3084000, + "normalized_name": "wonder loop village" + }, + { + "appid": 3084040, + "normalized_name": "detective of the dead" + }, + { + "appid": 3084080, + "normalized_name": "mira's mirage mirror" + }, + { + "appid": 3084090, + "normalized_name": "caramel performance" + }, + { + "appid": 3084100, + "normalized_name": "depth ascend" + }, + { + "appid": 3084130, + "normalized_name": "ruruka and the grand sorcerer's erotic trap dungeon" + }, + { + "appid": 3084150, + "normalized_name": "packit list" + }, + { + "appid": 3084180, + "normalized_name": "brothel tycoon" + }, + { + "appid": 3084200, + "normalized_name": "realm drifter" + }, + { + "appid": 3084260, + "normalized_name": "ink reverie" + }, + { + "appid": 3084270, + "normalized_name": "pineapple" + }, + { + "appid": 3084280, + "normalized_name": "threefold recital 三相奇谈" + }, + { + "appid": 3084290, + "normalized_name": "gym camp simulator prologue" + }, + { + "appid": 3084310, + "normalized_name": "nerl's crazy c”rough”t!" + }, + { + "appid": 3084330, + "normalized_name": "asylum revenge" + }, + { + "appid": 3084360, + "normalized_name": "jetwireclimber" + }, + { + "appid": 3084390, + "normalized_name": "outpost surge" + }, + { + "appid": 3084400, + "normalized_name": "backrooms journey into the unknown" + }, + { + "appid": 3084410, + "normalized_name": "intern fox" + }, + { + "appid": 3084430, + "normalized_name": "beer and rush non vr" + }, + { + "appid": 3084450, + "normalized_name": "taigania" + }, + { + "appid": 3084490, + "normalized_name": "lord's journey" + }, + { + "appid": 3084500, + "normalized_name": "ephemeral night" + }, + { + "appid": 3084510, + "normalized_name": "toonie tennis" + }, + { + "appid": 3084530, + "normalized_name": "happy girls" + }, + { + "appid": 3084540, + "normalized_name": "soul essence" + }, + { + "appid": 3084560, + "normalized_name": "twin flames" + }, + { + "appid": 3084570, + "normalized_name": "the secret of whispering" + }, + { + "appid": 3084580, + "normalized_name": "血族少女也能当圣骑士吗" + }, + { + "appid": 3084590, + "normalized_name": "banana girls" + }, + { + "appid": 3084620, + "normalized_name": "futariuum's gate" + }, + { + "appid": 3084630, + "normalized_name": "program penguin" + }, + { + "appid": 3084640, + "normalized_name": "good kitsune" + }, + { + "appid": 3084670, + "normalized_name": "sorrow asylum 3" + }, + { + "appid": 3084690, + "normalized_name": "childstory 2 say cheese!" + }, + { + "appid": 3084700, + "normalized_name": "whispers of the shadow" + }, + { + "appid": 3084720, + "normalized_name": "flesh psychosis" + }, + { + "appid": 3084740, + "normalized_name": "command deck" + }, + { + "appid": 3084750, + "normalized_name": "jessica's plight" + }, + { + "appid": 3084790, + "normalized_name": "(neg)entropic wandering" + }, + { + "appid": 3084800, + "normalized_name": "cactus" + }, + { + "appid": 3084810, + "normalized_name": "tower lab" + }, + { + "appid": 3084840, + "normalized_name": "cloudtop chaos" + }, + { + "appid": 3084900, + "normalized_name": "let them breathe selena's awakening" + }, + { + "appid": 3084910, + "normalized_name": "jelly troops" + }, + { + "appid": 3084990, + "normalized_name": "crypto rush" + }, + { + "appid": 3085010, + "normalized_name": "emojishooter" + }, + { + "appid": 3085020, + "normalized_name": "the king of wall street" + }, + { + "appid": 3085040, + "normalized_name": "etea" + }, + { + "appid": 3085060, + "normalized_name": "prego wars" + }, + { + "appid": 3085070, + "normalized_name": "cult land" + }, + { + "appid": 3085160, + "normalized_name": "小豆丁爱冒险" + }, + { + "appid": 3085180, + "normalized_name": "rat climber" + }, + { + "appid": 3085200, + "normalized_name": "mottainai ghost" + }, + { + "appid": 3085220, + "normalized_name": "tacticsland" + }, + { + "appid": 3085230, + "normalized_name": "hentai girls nature" + }, + { + "appid": 3085280, + "normalized_name": "the great fluctus" + }, + { + "appid": 3085300, + "normalized_name": "lettters" + }, + { + "appid": 3085620, + "normalized_name": "sky's the limit mah jong" + }, + { + "appid": 3085640, + "normalized_name": "hypnosis card 2 happy life" + }, + { + "appid": 3085660, + "normalized_name": "side alley" + }, + { + "appid": 3085680, + "normalized_name": "カミゴロシ" + }, + { + "appid": 3085700, + "normalized_name": "绝色特工" + }, + { + "appid": 3085710, + "normalized_name": "trifoil" + }, + { + "appid": 3085730, + "normalized_name": "bulletrooms backrooms shooter game" + }, + { + "appid": 3085770, + "normalized_name": "cat on my desktop" + }, + { + "appid": 3085780, + "normalized_name": "private garden" + }, + { + "appid": 3085800, + "normalized_name": "fate of fire kyvedy guardiah" + }, + { + "appid": 3085810, + "normalized_name": "blind exposure" + }, + { + "appid": 3085860, + "normalized_name": "flappiper remade" + }, + { + "appid": 3085890, + "normalized_name": "世外桃源 land of idyllic beauty" + }, + { + "appid": 3085900, + "normalized_name": "reclamation crew" + }, + { + "appid": 3085910, + "normalized_name": "feastopia" + }, + { + "appid": 3085950, + "normalized_name": "banana shaped" + }, + { + "appid": 3085960, + "normalized_name": "savage islands" + }, + { + "appid": 3086010, + "normalized_name": "splash dino 2" + }, + { + "appid": 3086020, + "normalized_name": "wisdom tower" + }, + { + "appid": 3086030, + "normalized_name": "dream world adventure" + }, + { + "appid": 3086050, + "normalized_name": "keziah's realm" + }, + { + "appid": 3086060, + "normalized_name": "date banger" + }, + { + "appid": 3086120, + "normalized_name": "harpoon classic '97" + }, + { + "appid": 3086170, + "normalized_name": "hook a duck vr" + }, + { + "appid": 3086500, + "normalized_name": "korter 1996" + }, + { + "appid": 3086520, + "normalized_name": "dungeon flowy" + }, + { + "appid": 3086550, + "normalized_name": "play and pray" + }, + { + "appid": 3086560, + "normalized_name": "elmin" + }, + { + "appid": 3086580, + "normalized_name": "lost ember" + }, + { + "appid": 3086590, + "normalized_name": "project pantheon" + }, + { + "appid": 3086600, + "normalized_name": "sex clinic 18+" + }, + { + "appid": 3086630, + "normalized_name": "mansion restorator" + }, + { + "appid": 3086660, + "normalized_name": "sugar siege" + }, + { + "appid": 3086680, + "normalized_name": "обж vr" + }, + { + "appid": 3086700, + "normalized_name": "rampagerunner" + }, + { + "appid": 3086720, + "normalized_name": "one's own exile" + }, + { + "appid": 3086740, + "normalized_name": "gaming raiding" + }, + { + "appid": 3086760, + "normalized_name": "melty amethyst" + }, + { + "appid": 3086850, + "normalized_name": "knightlight" + }, + { + "appid": 3086860, + "normalized_name": "dodge 2" + }, + { + "appid": 3086890, + "normalized_name": "team rush" + }, + { + "appid": 3086910, + "normalized_name": "i suppose" + }, + { + "appid": 3086940, + "normalized_name": "bass defense first memorythms" + }, + { + "appid": 3086950, + "normalized_name": "message in a melody" + }, + { + "appid": 3086990, + "normalized_name": "teppo and the secret ancient city" + }, + { + "appid": 3087000, + "normalized_name": "fulvinter" + }, + { + "appid": 3087020, + "normalized_name": "maze of gods rage of zeus" + }, + { + "appid": 3087090, + "normalized_name": "always on" + }, + { + "appid": 3087110, + "normalized_name": "elemental dog defense" + }, + { + "appid": 3087140, + "normalized_name": "leapo faith" + }, + { + "appid": 3087180, + "normalized_name": "stellar dream" + }, + { + "appid": 3087200, + "normalized_name": "drunk woman" + }, + { + "appid": 3087340, + "normalized_name": "learning the maths" + }, + { + "appid": 3087470, + "normalized_name": "emyliveshow demons & mistresses tale" + }, + { + "appid": 3087480, + "normalized_name": "plague of athens vr" + }, + { + "appid": 3087490, + "normalized_name": "simulove! vol. 1" + }, + { + "appid": 3087550, + "normalized_name": "the museum of hauntology" + }, + { + "appid": 3087560, + "normalized_name": "anime tap clicker" + }, + { + "appid": 3087580, + "normalized_name": "mystic blaze" + }, + { + "appid": 3087590, + "normalized_name": "ff link" + }, + { + "appid": 3087600, + "normalized_name": "the prisoner" + }, + { + "appid": 3087650, + "normalized_name": "a shelter full of cats" + }, + { + "appid": 3087670, + "normalized_name": "questing" + }, + { + "appid": 3087680, + "normalized_name": "prison alone" + }, + { + "appid": 3087730, + "normalized_name": "tower of the ice lich" + }, + { + "appid": 3087780, + "normalized_name": "reign of cats" + }, + { + "appid": 3087810, + "normalized_name": "recesses" + }, + { + "appid": 3087820, + "normalized_name": "rollin' along" + }, + { + "appid": 3087860, + "normalized_name": "medieval pig" + }, + { + "appid": 3087870, + "normalized_name": "heat index" + }, + { + "appid": 3087900, + "normalized_name": "heritage a dragon's tale" + }, + { + "appid": 3087910, + "normalized_name": "undivine" + }, + { + "appid": 3087930, + "normalized_name": "pebble knights" + }, + { + "appid": 3087960, + "normalized_name": "deaths dawn" + }, + { + "appid": 3087970, + "normalized_name": "as a vampire" + }, + { + "appid": 3087990, + "normalized_name": "forever space first person" + }, + { + "appid": 3088000, + "normalized_name": "clean your room" + }, + { + "appid": 3088010, + "normalized_name": "brain freeze" + }, + { + "appid": 3088040, + "normalized_name": "多元守卫者 diverse defenders" + }, + { + "appid": 3088050, + "normalized_name": "seasonal bloom" + }, + { + "appid": 3088070, + "normalized_name": "dark light survivor" + }, + { + "appid": 3088080, + "normalized_name": "opscam" + }, + { + "appid": 3088120, + "normalized_name": "secret pie" + }, + { + "appid": 3088140, + "normalized_name": "trials of the taker" + }, + { + "appid": 3088160, + "normalized_name": "escape from exit 7 of the theater" + }, + { + "appid": 3088180, + "normalized_name": "waffle cone willie" + }, + { + "appid": 3088190, + "normalized_name": "相亲对象竟然是女鬼?" + }, + { + "appid": 3088200, + "normalized_name": "ravenwood drive" + }, + { + "appid": 3088210, + "normalized_name": "cyber mokugyo" + }, + { + "appid": 3088250, + "normalized_name": "nitro express" + }, + { + "appid": 3088260, + "normalized_name": "hentai senpai seieki kyuketsusha" + }, + { + "appid": 3088280, + "normalized_name": "mini star memory" + }, + { + "appid": 3088370, + "normalized_name": ".decluster & .decluster zero" + }, + { + "appid": 3088400, + "normalized_name": "deadly trick" + }, + { + "appid": 3088410, + "normalized_name": "7th domain tree of chaos" + }, + { + "appid": 3088420, + "normalized_name": "7th domain tree of chaos prologue" + }, + { + "appid": 3088430, + "normalized_name": "stratogun" + }, + { + "appid": 3088440, + "normalized_name": "behind the backrooms" + }, + { + "appid": 3088460, + "normalized_name": "police open the door!" + }, + { + "appid": 3088510, + "normalized_name": "spellsided" + }, + { + "appid": 3088520, + "normalized_name": "a fascinating story ice cream" + }, + { + "appid": 3088530, + "normalized_name": "specter trail" + }, + { + "appid": 3088540, + "normalized_name": "impact" + }, + { + "appid": 3088550, + "normalized_name": "hot and lovely xxii" + }, + { + "appid": 3088560, + "normalized_name": "sunrise down" + }, + { + "appid": 3088600, + "normalized_name": "ntr sex with bunny girl!? strip poker in casino...!" + }, + { + "appid": 3088670, + "normalized_name": "fragile reflection" + }, + { + "appid": 3088680, + "normalized_name": "game of squares" + }, + { + "appid": 3088700, + "normalized_name": "driving rogue" + }, + { + "appid": 3088730, + "normalized_name": "little fishing idle" + }, + { + "appid": 3088740, + "normalized_name": "not a game" + }, + { + "appid": 3088750, + "normalized_name": "albert's ark idle" + }, + { + "appid": 3088760, + "normalized_name": "fay keeper" + }, + { + "appid": 3088770, + "normalized_name": "fish" + }, + { + "appid": 3088790, + "normalized_name": "market master simulator" + }, + { + "appid": 3088820, + "normalized_name": "vocabvan" + }, + { + "appid": 3088870, + "normalized_name": "千里山河录" + }, + { + "appid": 3088890, + "normalized_name": "rabbit in dungeon" + }, + { + "appid": 3088900, + "normalized_name": "白猫冒险团 white cat adventure team" + }, + { + "appid": 3088960, + "normalized_name": "watch restoration" + }, + { + "appid": 3088990, + "normalized_name": "pets" + }, + { + "appid": 3089030, + "normalized_name": "penguin panic!" + }, + { + "appid": 3089040, + "normalized_name": "泳装乱舞" + }, + { + "appid": 3089100, + "normalized_name": "aurora genesis" + }, + { + "appid": 3089130, + "normalized_name": "retail company simulator" + }, + { + "appid": 3089150, + "normalized_name": "retail company simulator prologue" + }, + { + "appid": 3089260, + "normalized_name": "the curse of elmwood" + }, + { + "appid": 3089270, + "normalized_name": "giant wishes memories" + }, + { + "appid": 3089280, + "normalized_name": "digital humans" + }, + { + "appid": 3089290, + "normalized_name": "toree's panic pack" + }, + { + "appid": 3089340, + "normalized_name": "emyliveshow bossrush" + }, + { + "appid": 3089390, + "normalized_name": "out of bounds" + }, + { + "appid": 3089410, + "normalized_name": "maid in heaven天国的女仆" + }, + { + "appid": 3089430, + "normalized_name": "clicky coven" + }, + { + "appid": 3089450, + "normalized_name": "malcatras' maiden" + }, + { + "appid": 3089460, + "normalized_name": "pyhare" + }, + { + "appid": 3089480, + "normalized_name": "floating with spirits" + }, + { + "appid": 3089570, + "normalized_name": "cold blooded" + }, + { + "appid": 3089580, + "normalized_name": "night keep" + }, + { + "appid": 3089600, + "normalized_name": "s.x.e. slider cyber sliders" + }, + { + "appid": 3089610, + "normalized_name": "s.x.e. slider dungeons" + }, + { + "appid": 3089640, + "normalized_name": "bat blitz" + }, + { + "appid": 3089680, + "normalized_name": "fishing mayhem" + }, + { + "appid": 3089700, + "normalized_name": "whiskey four" + }, + { + "appid": 3089710, + "normalized_name": "scales of justice" + }, + { + "appid": 3089740, + "normalized_name": "obscurity state" + }, + { + "appid": 3089760, + "normalized_name": "fable grove" + }, + { + "appid": 3089800, + "normalized_name": "omni blade" + }, + { + "appid": 3089820, + "normalized_name": "zombie recall vr" + }, + { + "appid": 3089830, + "normalized_name": "doghouse 3" + }, + { + "appid": 3089850, + "normalized_name": "racing bros mafias revenge" + }, + { + "appid": 3089860, + "normalized_name": "food delivery simulator 2025" + }, + { + "appid": 3089870, + "normalized_name": "neon ladder" + }, + { + "appid": 3089960, + "normalized_name": "ropoko for steam" + }, + { + "appid": 3090010, + "normalized_name": "retro game store simulator" + }, + { + "appid": 3090050, + "normalized_name": "wakka follow the treasure ring" + }, + { + "appid": 3090070, + "normalized_name": "unstable star" + }, + { + "appid": 3090080, + "normalized_name": "与美女合租的99种死法" + }, + { + "appid": 3090100, + "normalized_name": "prison princess trapped allure" + }, + { + "appid": 3090270, + "normalized_name": "takedogs" + }, + { + "appid": 3090490, + "normalized_name": "operation fallen eagle" + }, + { + "appid": 3090510, + "normalized_name": "emby battle" + }, + { + "appid": 3090570, + "normalized_name": "time for bed" + }, + { + "appid": 3090600, + "normalized_name": "last home" + }, + { + "appid": 3090610, + "normalized_name": "progress orders" + }, + { + "appid": 3090620, + "normalized_name": "arcade galaxy" + }, + { + "appid": 3090630, + "normalized_name": "puzzle dungeon!! earthmage erin" + }, + { + "appid": 3090670, + "normalized_name": "akhena age of evil" + }, + { + "appid": 3090680, + "normalized_name": "诡异迷域" + }, + { + "appid": 3090790, + "normalized_name": "gibblepets" + }, + { + "appid": 3090800, + "normalized_name": "love and fear" + }, + { + "appid": 3090810, + "normalized_name": "truckful" + }, + { + "appid": 3090820, + "normalized_name": "lefty" + }, + { + "appid": 3090830, + "normalized_name": "seven times to die" + }, + { + "appid": 3090840, + "normalized_name": "good soup" + }, + { + "appid": 3090860, + "normalized_name": "the elevator" + }, + { + "appid": 3090870, + "normalized_name": "greengrocer's" + }, + { + "appid": 3090890, + "normalized_name": "laundry simulator" + }, + { + "appid": 3090910, + "normalized_name": "她杀 the suspected murder" + }, + { + "appid": 3090920, + "normalized_name": "toilet" + }, + { + "appid": 3090930, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.15「逢魔が刻の狂詩曲」" + }, + { + "appid": 3090940, + "normalized_name": "g modeアーカイブス+ 牧場物語モバイル life&love" + }, + { + "appid": 3090950, + "normalized_name": "g modeアーカイブス+ 牧場物語モバイル みのりの島" + }, + { + "appid": 3090980, + "normalized_name": "dungeon tycoon prologue" + }, + { + "appid": 3090990, + "normalized_name": "phat phrog clicker" + }, + { + "appid": 3091010, + "normalized_name": "イカスミポーション" + }, + { + "appid": 3091020, + "normalized_name": "幸存机动队" + }, + { + "appid": 3091030, + "normalized_name": "robot's fate alice" + }, + { + "appid": 3091110, + "normalized_name": "マジギレ限界olちゃん" + }, + { + "appid": 3091120, + "normalized_name": "satanic" + }, + { + "appid": 3091140, + "normalized_name": "lootbound" + }, + { + "appid": 3091150, + "normalized_name": "run higher" + }, + { + "appid": 3091160, + "normalized_name": "kick out" + }, + { + "appid": 3091200, + "normalized_name": "cricket legends" + }, + { + "appid": 3091230, + "normalized_name": "ufo man" + }, + { + "appid": 3091240, + "normalized_name": "unpkf" + }, + { + "appid": 3091260, + "normalized_name": "darkbound" + }, + { + "appid": 3091270, + "normalized_name": "ghost jumper red hoodie" + }, + { + "appid": 3091310, + "normalized_name": "spherecats" + }, + { + "appid": 3091320, + "normalized_name": "幻境启示" + }, + { + "appid": 3091330, + "normalized_name": "techstop simulator" + }, + { + "appid": 3091340, + "normalized_name": "metal thunder" + }, + { + "appid": 3091360, + "normalized_name": "dull skies 1" + }, + { + "appid": 3091390, + "normalized_name": "ashes of the union" + }, + { + "appid": 3091400, + "normalized_name": "刀剑神魔录" + }, + { + "appid": 3091410, + "normalized_name": "scp run for freedom" + }, + { + "appid": 3091420, + "normalized_name": "scarecrow tactics" + }, + { + "appid": 3091480, + "normalized_name": "floors" + }, + { + "appid": 3091520, + "normalized_name": "yellow trouble" + }, + { + "appid": 3091530, + "normalized_name": "battle sudoku" + }, + { + "appid": 3091540, + "normalized_name": "shifter" + }, + { + "appid": 3091610, + "normalized_name": "comet alpha rescue" + }, + { + "appid": 3091660, + "normalized_name": "through" + }, + { + "appid": 3091760, + "normalized_name": "ciggy world" + }, + { + "appid": 3091770, + "normalized_name": "bleeding roots" + }, + { + "appid": 3091780, + "normalized_name": "color soldiers" + }, + { + "appid": 3091830, + "normalized_name": "space duck escape" + }, + { + "appid": 3091860, + "normalized_name": "aether singularity" + }, + { + "appid": 3091880, + "normalized_name": "age of enlightenment" + }, + { + "appid": 3091930, + "normalized_name": "there was something in that room" + }, + { + "appid": 3091940, + "normalized_name": "fantasmagorie" + }, + { + "appid": 3091950, + "normalized_name": "sunday morning" + }, + { + "appid": 3091990, + "normalized_name": "rogue rhythm" + }, + { + "appid": 3092000, + "normalized_name": "treasure protector" + }, + { + "appid": 3092040, + "normalized_name": "skull stompers" + }, + { + "appid": 3092050, + "normalized_name": "pantsu!" + }, + { + "appid": 3092060, + "normalized_name": "the runner" + }, + { + "appid": 3092080, + "normalized_name": "fartonauts" + }, + { + "appid": 3092090, + "normalized_name": "incremental dice" + }, + { + "appid": 3092100, + "normalized_name": "100 rules (to live by)" + }, + { + "appid": 3092110, + "normalized_name": "dungeons & kingdoms" + }, + { + "appid": 3092150, + "normalized_name": "better me tree boot camp" + }, + { + "appid": 3092190, + "normalized_name": "our home my keeper" + }, + { + "appid": 3092200, + "normalized_name": "me you and kaiju" + }, + { + "appid": 3092230, + "normalized_name": "darksidehotel" + }, + { + "appid": 3092240, + "normalized_name": "bomberball" + }, + { + "appid": 3092250, + "normalized_name": "mirror world" + }, + { + "appid": 3092260, + "normalized_name": "sit back attack" + }, + { + "appid": 3092280, + "normalized_name": "guardians of restoration" + }, + { + "appid": 3092360, + "normalized_name": "super alloy crush" + }, + { + "appid": 3092430, + "normalized_name": "samebrain" + }, + { + "appid": 3092440, + "normalized_name": "terracube" + }, + { + "appid": 3092500, + "normalized_name": "alchemy in dungeon" + }, + { + "appid": 3092510, + "normalized_name": "godly visage" + }, + { + "appid": 3092530, + "normalized_name": "fate trigger" + }, + { + "appid": 3092540, + "normalized_name": "plumber survivors prologue" + }, + { + "appid": 3092560, + "normalized_name": "dragon spot cozy puzzle builder" + }, + { + "appid": 3092580, + "normalized_name": "许愿岛 hope isle" + }, + { + "appid": 3092600, + "normalized_name": "hentai cowgirl" + }, + { + "appid": 3092640, + "normalized_name": "norbert's diary" + }, + { + "appid": 3092660, + "normalized_name": "reverse 1999" + }, + { + "appid": 3092680, + "normalized_name": "haunting memories" + }, + { + "appid": 3092700, + "normalized_name": "thunderlash" + }, + { + "appid": 3092710, + "normalized_name": "alia's chronicles" + }, + { + "appid": 3092750, + "normalized_name": "aurye clicker" + }, + { + "appid": 3092760, + "normalized_name": "light die to survive" + }, + { + "appid": 3092870, + "normalized_name": "kombat hamster" + }, + { + "appid": 3092900, + "normalized_name": "rollo pollo" + }, + { + "appid": 3092960, + "normalized_name": "nightmare break" + }, + { + "appid": 3092980, + "normalized_name": "mall manager simulator" + }, + { + "appid": 3093020, + "normalized_name": "circle empires 2" + }, + { + "appid": 3093030, + "normalized_name": "fauneroes" + }, + { + "appid": 3093040, + "normalized_name": "meso" + }, + { + "appid": 3093050, + "normalized_name": "kill the music" + }, + { + "appid": 3093070, + "normalized_name": "7月14" + }, + { + "appid": 3093090, + "normalized_name": "chaperon inc." + }, + { + "appid": 3093150, + "normalized_name": "bullet of armor" + }, + { + "appid": 3093160, + "normalized_name": "inscape" + }, + { + "appid": 3093180, + "normalized_name": "love inn" + }, + { + "appid": 3093220, + "normalized_name": "hope a potato story" + }, + { + "appid": 3093230, + "normalized_name": "find all things" + }, + { + "appid": 3093250, + "normalized_name": "do the cat" + }, + { + "appid": 3093290, + "normalized_name": "sky ahoy" + }, + { + "appid": 3093300, + "normalized_name": "the sky left us" + }, + { + "appid": 3093310, + "normalized_name": "super minesweeper" + }, + { + "appid": 3093320, + "normalized_name": "relic survivors" + }, + { + "appid": 3093330, + "normalized_name": "time chess" + }, + { + "appid": 3093360, + "normalized_name": "unwanted xmas gift burning simulator" + }, + { + "appid": 3093370, + "normalized_name": "the last sight" + }, + { + "appid": 3093400, + "normalized_name": "knightica" + }, + { + "appid": 3093410, + "normalized_name": "pachinko party" + }, + { + "appid": 3093420, + "normalized_name": "cliche" + }, + { + "appid": 3093470, + "normalized_name": "pitfight" + }, + { + "appid": 3093490, + "normalized_name": "benjamins big adventure" + }, + { + "appid": 3093500, + "normalized_name": "exofrontier venus" + }, + { + "appid": 3093510, + "normalized_name": "schizophrenia" + }, + { + "appid": 3093540, + "normalized_name": "foozun life rp" + }, + { + "appid": 3093570, + "normalized_name": "bratty bottoms!" + }, + { + "appid": 3093590, + "normalized_name": "kemopop!" + }, + { + "appid": 3093600, + "normalized_name": "project zipzap" + }, + { + "appid": 3093640, + "normalized_name": "labyrinth sword princess" + }, + { + "appid": 3093670, + "normalized_name": "slumpunk" + }, + { + "appid": 3093690, + "normalized_name": "replikant chat" + }, + { + "appid": 3093700, + "normalized_name": "hullbreaker" + }, + { + "appid": 3093750, + "normalized_name": "gamble lair" + }, + { + "appid": 3093770, + "normalized_name": "tinyisland" + }, + { + "appid": 3093840, + "normalized_name": "aquadream" + }, + { + "appid": 3093850, + "normalized_name": "spectralia" + }, + { + "appid": 3093860, + "normalized_name": "gavin tyler's game collection" + }, + { + "appid": 3093870, + "normalized_name": "one long night with the circleheads" + }, + { + "appid": 3093880, + "normalized_name": "cauldron's rift" + }, + { + "appid": 3093890, + "normalized_name": "地下城与小小猎魔人 dungeon tiny hunter" + }, + { + "appid": 3093900, + "normalized_name": "藏物 macabre zealot" + }, + { + "appid": 3093910, + "normalized_name": "megaquest" + }, + { + "appid": 3093960, + "normalized_name": "bitsy bits the secret of magic" + }, + { + "appid": 3093990, + "normalized_name": "fire isle" + }, + { + "appid": 3094010, + "normalized_name": "henpri" + }, + { + "appid": 3094040, + "normalized_name": "liminal border part iii" + }, + { + "appid": 3094050, + "normalized_name": "td3d" + }, + { + "appid": 3094140, + "normalized_name": "resurrection of santiago" + }, + { + "appid": 3094150, + "normalized_name": "take notes" + }, + { + "appid": 3094180, + "normalized_name": "stupid cars" + }, + { + "appid": 3094210, + "normalized_name": "nullstar solus" + }, + { + "appid": 3094220, + "normalized_name": "myst of guatemala" + }, + { + "appid": 3094230, + "normalized_name": "stream olympique" + }, + { + "appid": 3094250, + "normalized_name": "post office simulator" + }, + { + "appid": 3094260, + "normalized_name": "fortifyte" + }, + { + "appid": 3094270, + "normalized_name": "crash puzzle hammer san" + }, + { + "appid": 3094280, + "normalized_name": "uwu hunter" + }, + { + "appid": 3094340, + "normalized_name": "randojumper" + }, + { + "appid": 3094350, + "normalized_name": "pedro!" + }, + { + "appid": 3094390, + "normalized_name": "project heck" + }, + { + "appid": 3094400, + "normalized_name": "dead ends" + }, + { + "appid": 3094440, + "normalized_name": "jellying over it" + }, + { + "appid": 3094450, + "normalized_name": "smoots summer games ii" + }, + { + "appid": 3094480, + "normalized_name": "bad cheese" + }, + { + "appid": 3094490, + "normalized_name": "ascend the well" + }, + { + "appid": 3094520, + "normalized_name": "k one maths dimension" + }, + { + "appid": 3094540, + "normalized_name": "cavescape" + }, + { + "appid": 3094550, + "normalized_name": "pan beats" + }, + { + "appid": 3094560, + "normalized_name": "死亡禁地 2 the dead zone 2" + }, + { + "appid": 3094590, + "normalized_name": "tobpacharge" + }, + { + "appid": 3094600, + "normalized_name": "time travel escape room game" + }, + { + "appid": 3094610, + "normalized_name": "greenbulb" + }, + { + "appid": 3094620, + "normalized_name": "dread of night" + }, + { + "appid": 3094630, + "normalized_name": "adventure of the bucket" + }, + { + "appid": 3094650, + "normalized_name": "forsaken ones" + }, + { + "appid": 3094660, + "normalized_name": "climb and cry" + }, + { + "appid": 3094680, + "normalized_name": "tapeheads" + }, + { + "appid": 3094690, + "normalized_name": "elflock" + }, + { + "appid": 3094740, + "normalized_name": "second rate superheroes" + }, + { + "appid": 3094750, + "normalized_name": "the nightmare chronicles devil's drive" + }, + { + "appid": 3094760, + "normalized_name": "antediluvian seed in peril" + }, + { + "appid": 3094770, + "normalized_name": "loveandcomplex" + }, + { + "appid": 3094780, + "normalized_name": "僕の駒山を守って" + }, + { + "appid": 3094800, + "normalized_name": "risk the dark" + }, + { + "appid": 3094820, + "normalized_name": "final rounds" + }, + { + "appid": 3094830, + "normalized_name": "escape from lesco" + }, + { + "appid": 3094840, + "normalized_name": "lust in space 🔞🪐" + }, + { + "appid": 3094870, + "normalized_name": "amarillo's desktop pets" + }, + { + "appid": 3094880, + "normalized_name": "dragons the helmet of the forkai" + }, + { + "appid": 3094920, + "normalized_name": "mini city" + }, + { + "appid": 3094970, + "normalized_name": "spires of morosith gossamer sundered" + }, + { + "appid": 3094990, + "normalized_name": "wish creatures" + }, + { + "appid": 3095010, + "normalized_name": "geometry dabs save the world" + }, + { + "appid": 3095020, + "normalized_name": "madness afloat" + }, + { + "appid": 3095030, + "normalized_name": "the upper hand" + }, + { + "appid": 3095100, + "normalized_name": "eternal nightmares" + }, + { + "appid": 3095110, + "normalized_name": "nightmares market" + }, + { + "appid": 3095120, + "normalized_name": "undead exterminator" + }, + { + "appid": 3095130, + "normalized_name": "bugboy" + }, + { + "appid": 3095160, + "normalized_name": "domovoy" + }, + { + "appid": 3095170, + "normalized_name": "sunshine love chapter 1" + }, + { + "appid": 3095190, + "normalized_name": "valheron" + }, + { + "appid": 3095260, + "normalized_name": "dark ascent" + }, + { + "appid": 3095270, + "normalized_name": "broken war" + }, + { + "appid": 3095280, + "normalized_name": "a journey into the unknown" + }, + { + "appid": 3095320, + "normalized_name": "ergenekon" + }, + { + "appid": 3095380, + "normalized_name": "ninja rift" + }, + { + "appid": 3095410, + "normalized_name": "zpf" + }, + { + "appid": 3095450, + "normalized_name": "orange" + }, + { + "appid": 3095500, + "normalized_name": "我鬼宠是钟馗" + }, + { + "appid": 3095540, + "normalized_name": "choice matters" + }, + { + "appid": 3095550, + "normalized_name": "false mall" + }, + { + "appid": 3095560, + "normalized_name": "hentai tales strange land apaku" + }, + { + "appid": 3095570, + "normalized_name": "hentai tales paradise after death" + }, + { + "appid": 3095590, + "normalized_name": "ball" + }, + { + "appid": 3095600, + "normalized_name": "miracle heroes temporal bounty hunter" + }, + { + "appid": 3095630, + "normalized_name": "cedric darkstride the pallid" + }, + { + "appid": 3095640, + "normalized_name": "flying monsters aerial combat" + }, + { + "appid": 3095660, + "normalized_name": "twizzle puzzle mushrooms" + }, + { + "appid": 3095680, + "normalized_name": "my friend toby" + }, + { + "appid": 3095720, + "normalized_name": "stick it!" + }, + { + "appid": 3095770, + "normalized_name": "dead times" + }, + { + "appid": 3095780, + "normalized_name": "press paws idle clicker" + }, + { + "appid": 3095790, + "normalized_name": "tehawar puzzle!" + }, + { + "appid": 3095800, + "normalized_name": "super dungeon muncher" + }, + { + "appid": 3095830, + "normalized_name": "jessica's choices origins" + }, + { + "appid": 3095840, + "normalized_name": "quickbite express delivery simulator" + }, + { + "appid": 3095870, + "normalized_name": "click me hentai adventures" + }, + { + "appid": 3095890, + "normalized_name": "mechanines tower defense" + }, + { + "appid": 3095900, + "normalized_name": "monoquous 2" + }, + { + "appid": 3095910, + "normalized_name": "prisnhax" + }, + { + "appid": 3095920, + "normalized_name": "fields of gold" + }, + { + "appid": 3095940, + "normalized_name": "our secret price of forbidden wishes ❤" + }, + { + "appid": 3095960, + "normalized_name": "周易六爻占卜游戏" + }, + { + "appid": 3095980, + "normalized_name": "retreat" + }, + { + "appid": 3096000, + "normalized_name": "last half of darkness" + }, + { + "appid": 3096010, + "normalized_name": "only climber 2" + }, + { + "appid": 3096020, + "normalized_name": "edge of the wild" + }, + { + "appid": 3096040, + "normalized_name": "zrust" + }, + { + "appid": 3096050, + "normalized_name": "scary shadow spot last farewell" + }, + { + "appid": 3096100, + "normalized_name": "grid territory" + }, + { + "appid": 3096130, + "normalized_name": "zombnami" + }, + { + "appid": 3096140, + "normalized_name": "party on hallow grove" + }, + { + "appid": 3096150, + "normalized_name": "high rollers dice drop duel" + }, + { + "appid": 3096160, + "normalized_name": "doodle tank commander" + }, + { + "appid": 3096190, + "normalized_name": "combat directive napoleonic wars" + }, + { + "appid": 3096200, + "normalized_name": "galactic pioneers" + }, + { + "appid": 3096210, + "normalized_name": "surrounded by death" + }, + { + "appid": 3096220, + "normalized_name": "crayon legend" + }, + { + "appid": 3096230, + "normalized_name": "dogenstein" + }, + { + "appid": 3096260, + "normalized_name": "rock digger" + }, + { + "appid": 3096270, + "normalized_name": "nether dungeons" + }, + { + "appid": 3096310, + "normalized_name": "pink devil" + }, + { + "appid": 3096320, + "normalized_name": "death and tactics" + }, + { + "appid": 3096330, + "normalized_name": "200 hidden house cats" + }, + { + "appid": 3096340, + "normalized_name": "family friends beyond home" + }, + { + "appid": 3096350, + "normalized_name": "spherebuddie 64" + }, + { + "appid": 3096370, + "normalized_name": "hyper empire" + }, + { + "appid": 3096390, + "normalized_name": "三国时代3" + }, + { + "appid": 3096400, + "normalized_name": "beauty riddle" + }, + { + "appid": 3096410, + "normalized_name": "mini dungeons" + }, + { + "appid": 3096420, + "normalized_name": "randomax" + }, + { + "appid": 3096430, + "normalized_name": "streamer vs zombie" + }, + { + "appid": 3096440, + "normalized_name": "how to melt a maiden's heart" + }, + { + "appid": 3096450, + "normalized_name": "decaying salvage" + }, + { + "appid": 3096520, + "normalized_name": "the one who speaks worm tongue" + }, + { + "appid": 3096550, + "normalized_name": "twilight wars" + }, + { + "appid": 3096560, + "normalized_name": "the little uni" + }, + { + "appid": 3096570, + "normalized_name": "twistingo blue moon collector's" + }, + { + "appid": 3096600, + "normalized_name": "artificial nexus" + }, + { + "appid": 3096620, + "normalized_name": "legacy of defense prologue" + }, + { + "appid": 3096650, + "normalized_name": "rem the dreamer" + }, + { + "appid": 3096700, + "normalized_name": "canto i" + }, + { + "appid": 3096710, + "normalized_name": "aetheria whispers of the forest moon" + }, + { + "appid": 3096720, + "normalized_name": "mine mapters" + }, + { + "appid": 3096730, + "normalized_name": "postponed" + }, + { + "appid": 3096740, + "normalized_name": "party quickie" + }, + { + "appid": 3096760, + "normalized_name": "block siege vr" + }, + { + "appid": 3096780, + "normalized_name": "明日、嘘がわからなくなっても" + }, + { + "appid": 3096800, + "normalized_name": "to bring her back" + }, + { + "appid": 3096820, + "normalized_name": "终焉计划 annihilation plan" + }, + { + "appid": 3096840, + "normalized_name": "ball control" + }, + { + "appid": 3096870, + "normalized_name": "mechs and muskets" + }, + { + "appid": 3096890, + "normalized_name": "starvania tales of the past" + }, + { + "appid": 3096940, + "normalized_name": "club defenders" + }, + { + "appid": 3096950, + "normalized_name": "voidstepper" + }, + { + "appid": 3096960, + "normalized_name": "bubble battle blast 3d" + }, + { + "appid": 3097010, + "normalized_name": "x simulator drone" + }, + { + "appid": 3097030, + "normalized_name": "nova salvage" + }, + { + "appid": 3097040, + "normalized_name": "デルタコモンズ" + }, + { + "appid": 3097060, + "normalized_name": "十面冲突 clash of ten sides" + }, + { + "appid": 3097090, + "normalized_name": "dad hungry!" + }, + { + "appid": 3097170, + "normalized_name": "cam" + }, + { + "appid": 3097200, + "normalized_name": "recall" + }, + { + "appid": 3097220, + "normalized_name": "gray planet" + }, + { + "appid": 3097240, + "normalized_name": "universal weirdness" + }, + { + "appid": 3097280, + "normalized_name": "sweet hospital" + }, + { + "appid": 3097290, + "normalized_name": "petit royaume" + }, + { + "appid": 3097300, + "normalized_name": "creature kitchen" + }, + { + "appid": 3097310, + "normalized_name": "sweet monster" + }, + { + "appid": 3097320, + "normalized_name": "pair horror" + }, + { + "appid": 3097330, + "normalized_name": "remix" + }, + { + "appid": 3097340, + "normalized_name": "remix encore" + }, + { + "appid": 3097350, + "normalized_name": "jurassic knights tactics" + }, + { + "appid": 3097370, + "normalized_name": "red shift point" + }, + { + "appid": 3097380, + "normalized_name": "queen slayer" + }, + { + "appid": 3097410, + "normalized_name": "diamond boy الفتى الماسي" + }, + { + "appid": 3097420, + "normalized_name": "family island" + }, + { + "appid": 3097440, + "normalized_name": "town rhapsody" + }, + { + "appid": 3097450, + "normalized_name": "warmage prologue" + }, + { + "appid": 3097480, + "normalized_name": "isocraft story" + }, + { + "appid": 3097510, + "normalized_name": "bounty brawl most wanted" + }, + { + "appid": 3097550, + "normalized_name": "valis the fantasm soldier collection launcher" + }, + { + "appid": 3097560, + "normalized_name": "liar's bar" + }, + { + "appid": 3097630, + "normalized_name": "samsara(윤회)" + }, + { + "appid": 3097640, + "normalized_name": "玫昙 she from thefuture" + }, + { + "appid": 3097650, + "normalized_name": "unfear day" + }, + { + "appid": 3097660, + "normalized_name": "rusty junkyard simulator" + }, + { + "appid": 3097670, + "normalized_name": "not a banana capybara" + }, + { + "appid": 3097680, + "normalized_name": "cat clean ocean" + }, + { + "appid": 3097690, + "normalized_name": "terra revive" + }, + { + "appid": 3097720, + "normalized_name": "dungeons and legends" + }, + { + "appid": 3097730, + "normalized_name": "re ver project tokyo" + }, + { + "appid": 3097740, + "normalized_name": "best gun" + }, + { + "appid": 3097750, + "normalized_name": "my lewd adventure" + }, + { + "appid": 3097760, + "normalized_name": "iron psycho retro" + }, + { + "appid": 3097770, + "normalized_name": "maxima keepers of the 2nd law" + }, + { + "appid": 3097780, + "normalized_name": "oihagi streamer survival" + }, + { + "appid": 3097860, + "normalized_name": "约会普拉斯 date plus" + }, + { + "appid": 3098020, + "normalized_name": "a few days with samantha" + }, + { + "appid": 3098030, + "normalized_name": "glowlings" + }, + { + "appid": 3098040, + "normalized_name": "fallen crown" + }, + { + "appid": 3098050, + "normalized_name": "backseat" + }, + { + "appid": 3098060, + "normalized_name": "business simulator 2025" + }, + { + "appid": 3098070, + "normalized_name": "cinema simulator 2025" + }, + { + "appid": 3098140, + "normalized_name": "crown and adventure" + }, + { + "appid": 3098150, + "normalized_name": "meowbrick dungeon" + }, + { + "appid": 3098160, + "normalized_name": "21号世界:深渊之计" + }, + { + "appid": 3098170, + "normalized_name": "titans of the past" + }, + { + "appid": 3098200, + "normalized_name": "twin mind the deathly trick collector’s" + }, + { + "appid": 3098250, + "normalized_name": "viral multiplayer" + }, + { + "appid": 3098310, + "normalized_name": "遗忘之地" + }, + { + "appid": 3098320, + "normalized_name": "cursor kingdom" + }, + { + "appid": 3098340, + "normalized_name": "shadow of the matrix" + }, + { + "appid": 3098370, + "normalized_name": "blackjack of lust" + }, + { + "appid": 3098380, + "normalized_name": "locked in" + }, + { + "appid": 3098390, + "normalized_name": "the whisper of the abyss echo of eden" + }, + { + "appid": 3098410, + "normalized_name": "from hell" + }, + { + "appid": 3098420, + "normalized_name": "installation 19" + }, + { + "appid": 3098430, + "normalized_name": "noknok" + }, + { + "appid": 3098470, + "normalized_name": "arctic motel simulator" + }, + { + "appid": 3098480, + "normalized_name": "neospace" + }, + { + "appid": 3098490, + "normalized_name": "monkey mischief" + }, + { + "appid": 3098500, + "normalized_name": "fairy fighting" + }, + { + "appid": 3098580, + "normalized_name": "case" + }, + { + "appid": 3098630, + "normalized_name": "bonle" + }, + { + "appid": 3098660, + "normalized_name": "photo studio simulator" + }, + { + "appid": 3098690, + "normalized_name": "dana cipher dead man's hand" + }, + { + "appid": 3098700, + "normalized_name": "fullbright presents toilet spiders" + }, + { + "appid": 3098730, + "normalized_name": "not easy" + }, + { + "appid": 3098750, + "normalized_name": "dino market" + }, + { + "appid": 3098770, + "normalized_name": "shadows of delusion" + }, + { + "appid": 3098780, + "normalized_name": "chuck bonesteel & the alien apocalpyse" + }, + { + "appid": 3098820, + "normalized_name": "rune legacy idle" + }, + { + "appid": 3098830, + "normalized_name": "harpy" + }, + { + "appid": 3098850, + "normalized_name": "valhalla path survival" + }, + { + "appid": 3098880, + "normalized_name": "i hate orcs in my garden" + }, + { + "appid": 3098890, + "normalized_name": "world crafter td" + }, + { + "appid": 3098910, + "normalized_name": "japanese salaryman" + }, + { + "appid": 3098920, + "normalized_name": "laser battle cats travel & destroy!" + }, + { + "appid": 3098960, + "normalized_name": "splinter colony" + }, + { + "appid": 3098970, + "normalized_name": "desert of ash a post apocalyptic gay sex simulator" + }, + { + "appid": 3099000, + "normalized_name": "guns of fury" + }, + { + "appid": 3099010, + "normalized_name": "bat bots" + }, + { + "appid": 3099030, + "normalized_name": "synchronous" + }, + { + "appid": 3099090, + "normalized_name": "project fish shop" + }, + { + "appid": 3099190, + "normalized_name": "anomaly company" + }, + { + "appid": 3099330, + "normalized_name": "uniqkiller urban shooter" + }, + { + "appid": 3099350, + "normalized_name": "the wanderer backrooms" + }, + { + "appid": 3099360, + "normalized_name": "fishing tale" + }, + { + "appid": 3099370, + "normalized_name": "relic" + }, + { + "appid": 3099380, + "normalized_name": "frights" + }, + { + "appid": 3099410, + "normalized_name": "my dear☆love a shojo inspired otome sim/visual novel" + }, + { + "appid": 3099430, + "normalized_name": "nugquest" + }, + { + "appid": 3099490, + "normalized_name": "haven" + }, + { + "appid": 3099520, + "normalized_name": "chicken" + }, + { + "appid": 3099540, + "normalized_name": "hero pack" + }, + { + "appid": 3099550, + "normalized_name": "zone one" + }, + { + "appid": 3099580, + "normalized_name": "you see me?" + }, + { + "appid": 3099630, + "normalized_name": "academy love saga tennis angels" + }, + { + "appid": 3099640, + "normalized_name": "academy love saga tennis angels ex" + }, + { + "appid": 3099660, + "normalized_name": "完蛋!我被美女包围了!前传" + }, + { + "appid": 3099670, + "normalized_name": "final outcry" + }, + { + "appid": 3099680, + "normalized_name": "traveler of light" + }, + { + "appid": 3099690, + "normalized_name": "world crafter td prologue" + }, + { + "appid": 3099730, + "normalized_name": "beat around the bush" + }, + { + "appid": 3099750, + "normalized_name": "forest god" + }, + { + "appid": 3099770, + "normalized_name": "海战前线 0.1版本" + }, + { + "appid": 3099790, + "normalized_name": "operation night strikers" + }, + { + "appid": 3099830, + "normalized_name": "p.r.d.a." + }, + { + "appid": 3099840, + "normalized_name": "君と彼女のリリィヴァガンザ" + }, + { + "appid": 3099870, + "normalized_name": "bussy master club leather" + }, + { + "appid": 3099880, + "normalized_name": "melomisterio play your melody" + }, + { + "appid": 3100010, + "normalized_name": "relaxing time italy tour collector's" + }, + { + "appid": 3100100, + "normalized_name": "gem stair" + }, + { + "appid": 3100110, + "normalized_name": "学生时代:入学" + }, + { + "appid": 3100130, + "normalized_name": "tiny fi" + }, + { + "appid": 3100170, + "normalized_name": "biopunch arena" + }, + { + "appid": 3100180, + "normalized_name": "unplayable" + }, + { + "appid": 3100190, + "normalized_name": "naughty nate cosplay" + }, + { + "appid": 3100210, + "normalized_name": "my sweet! housemate" + }, + { + "appid": 3100310, + "normalized_name": "arms of god" + }, + { + "appid": 3100330, + "normalized_name": "circle td defence war" + }, + { + "appid": 3100350, + "normalized_name": "dictionary blaster" + }, + { + "appid": 3100420, + "normalized_name": "the fractured shimmer" + }, + { + "appid": 3100500, + "normalized_name": "hard as hell" + }, + { + "appid": 3100520, + "normalized_name": "voidstorm" + }, + { + "appid": 3100540, + "normalized_name": "webstore mogul" + }, + { + "appid": 3100580, + "normalized_name": "白影酒馆 tavern revisited" + }, + { + "appid": 3100610, + "normalized_name": "w.o.t.e waking on the endtimes" + }, + { + "appid": 3100640, + "normalized_name": "hexeract" + }, + { + "appid": 3100650, + "normalized_name": "quantum witch" + }, + { + "appid": 3100660, + "normalized_name": "firefighter wizard the elemental order" + }, + { + "appid": 3100680, + "normalized_name": "untold tales a scarlet way" + }, + { + "appid": 3100690, + "normalized_name": "dust & diesel deadland delivery" + }, + { + "appid": 3100700, + "normalized_name": "combat journals vietnam" + }, + { + "appid": 3100710, + "normalized_name": "fellow 2 sword of destiny" + }, + { + "appid": 3100730, + "normalized_name": "zugnaex" + }, + { + "appid": 3100740, + "normalized_name": "cubidle" + }, + { + "appid": 3100780, + "normalized_name": "emily_" + }, + { + "appid": 3100790, + "normalized_name": "gullet" + }, + { + "appid": 3100810, + "normalized_name": "虚幻大圣" + }, + { + "appid": 3100820, + "normalized_name": "draft fever bowl" + }, + { + "appid": 3100860, + "normalized_name": "anima mundi" + }, + { + "appid": 3100900, + "normalized_name": "hyperskate" + }, + { + "appid": 3100910, + "normalized_name": "play with my balls" + }, + { + "appid": 3100940, + "normalized_name": "hyperacusis" + }, + { + "appid": 3100950, + "normalized_name": "labyrinth of lust" + }, + { + "appid": 3100970, + "normalized_name": "isle of reveries" + }, + { + "appid": 3100990, + "normalized_name": "whale well" + }, + { + "appid": 3101010, + "normalized_name": "unko technica" + }, + { + "appid": 3101040, + "normalized_name": "魔法少女ノ魔女裁判" + }, + { + "appid": 3101050, + "normalized_name": "parasitic descent" + }, + { + "appid": 3101110, + "normalized_name": "vasilisa and baba yaga prologue" + }, + { + "appid": 3101140, + "normalized_name": "grim tales all shades of black collector's" + }, + { + "appid": 3101160, + "normalized_name": "banana & tomato" + }, + { + "appid": 3101180, + "normalized_name": "mannequin machine" + }, + { + "appid": 3101190, + "normalized_name": "mdm (military delivery machine)" + }, + { + "appid": 3101230, + "normalized_name": "montezuma's revenge the 40th anniversary" + }, + { + "appid": 3101240, + "normalized_name": "rogue titan" + }, + { + "appid": 3101290, + "normalized_name": "dinos" + }, + { + "appid": 3101330, + "normalized_name": "living legends the red trace collector's" + }, + { + "appid": 3101340, + "normalized_name": "alterworld" + }, + { + "appid": 3101350, + "normalized_name": "hamster bomba" + }, + { + "appid": 3101380, + "normalized_name": "base blitz" + }, + { + "appid": 3101400, + "normalized_name": "abysmal gateway" + }, + { + "appid": 3101450, + "normalized_name": "paws & potions" + }, + { + "appid": 3101480, + "normalized_name": "archers arena" + }, + { + "appid": 3101510, + "normalized_name": "force of numbers" + }, + { + "appid": 3101580, + "normalized_name": "trifecta" + }, + { + "appid": 3101600, + "normalized_name": "planetary conflict 2301" + }, + { + "appid": 3101620, + "normalized_name": "electric fairyland" + }, + { + "appid": 3101630, + "normalized_name": "mahjongpuzzle 8" + }, + { + "appid": 3101640, + "normalized_name": "rayadium" + }, + { + "appid": 3101670, + "normalized_name": "the midnight bus" + }, + { + "appid": 3101680, + "normalized_name": "きおく花火" + }, + { + "appid": 3101690, + "normalized_name": "survival soldier" + }, + { + "appid": 3101700, + "normalized_name": "ops" + }, + { + "appid": 3101710, + "normalized_name": "诸神战纪:序章" + }, + { + "appid": 3101720, + "normalized_name": "重生之我是小虾米" + }, + { + "appid": 3101740, + "normalized_name": "run the words" + }, + { + "appid": 3101770, + "normalized_name": "wander hero" + }, + { + "appid": 3101780, + "normalized_name": "starless umbra" + }, + { + "appid": 3101800, + "normalized_name": "dynasty legends 2" + }, + { + "appid": 3101810, + "normalized_name": "wander hero rebirth" + }, + { + "appid": 3101820, + "normalized_name": "prove it and move it" + }, + { + "appid": 3101910, + "normalized_name": "backrooms security room" + }, + { + "appid": 3101920, + "normalized_name": "cosy haven design your homes" + }, + { + "appid": 3101980, + "normalized_name": "friends' kitchen" + }, + { + "appid": 3102000, + "normalized_name": "madness inside" + }, + { + "appid": 3102020, + "normalized_name": "flappy alien" + }, + { + "appid": 3102030, + "normalized_name": "gymbro" + }, + { + "appid": 3102100, + "normalized_name": "a tower's will" + }, + { + "appid": 3102130, + "normalized_name": "graveyardgambit" + }, + { + "appid": 3102180, + "normalized_name": "the earth sucks" + }, + { + "appid": 3102210, + "normalized_name": "одиночество скуфа" + }, + { + "appid": 3102220, + "normalized_name": "karaneko" + }, + { + "appid": 3102240, + "normalized_name": "coryphaeus championships" + }, + { + "appid": 3102250, + "normalized_name": "kovoclak" + }, + { + "appid": 3102270, + "normalized_name": "deva's neverland sidestory" + }, + { + "appid": 3102290, + "normalized_name": "big buck hunter trophy" + }, + { + "appid": 3102310, + "normalized_name": "siyah initiation" + }, + { + "appid": 3102330, + "normalized_name": "the yellow sign" + }, + { + "appid": 3102340, + "normalized_name": "princess of the water lilies" + }, + { + "appid": 3102380, + "normalized_name": "alphabet" + }, + { + "appid": 3102410, + "normalized_name": "아스타나 이야기 ~누가 다키마쿠라 만들었어!~" + }, + { + "appid": 3102440, + "normalized_name": "the pauser" + }, + { + "appid": 3102450, + "normalized_name": "gravepact" + }, + { + "appid": 3102460, + "normalized_name": "alphabet" + }, + { + "appid": 3102520, + "normalized_name": "lipsync killers" + }, + { + "appid": 3102530, + "normalized_name": "boarberry farm" + }, + { + "appid": 3102540, + "normalized_name": "day of invasion reloaded" + }, + { + "appid": 3102550, + "normalized_name": "keep going" + }, + { + "appid": 3102650, + "normalized_name": "micro star command" + }, + { + "appid": 3102660, + "normalized_name": "nocturne island obscuria" + }, + { + "appid": 3102670, + "normalized_name": "dinus escape" + }, + { + "appid": 3102680, + "normalized_name": "couch warfare" + }, + { + "appid": 3102730, + "normalized_name": "medieval farm" + }, + { + "appid": 3102740, + "normalized_name": "signs of life part one" + }, + { + "appid": 3102780, + "normalized_name": "c beams" + }, + { + "appid": 3102790, + "normalized_name": "the test game" + }, + { + "appid": 3102800, + "normalized_name": "exovoid carnage" + }, + { + "appid": 3102810, + "normalized_name": "copper" + }, + { + "appid": 3102820, + "normalized_name": "x roulette" + }, + { + "appid": 3102870, + "normalized_name": "oto's planet" + }, + { + "appid": 3102890, + "normalized_name": "two broken mirrors" + }, + { + "appid": 3102900, + "normalized_name": "the tunnels" + }, + { + "appid": 3102950, + "normalized_name": "library of meialia" + }, + { + "appid": 3103000, + "normalized_name": "hentai dice sudoku" + }, + { + "appid": 3103040, + "normalized_name": "sub optimal co." + }, + { + "appid": 3103070, + "normalized_name": "breakers" + }, + { + "appid": 3103170, + "normalized_name": "luna's twilight" + }, + { + "appid": 3103190, + "normalized_name": "elvenwood romance" + }, + { + "appid": 3103210, + "normalized_name": "exit station 7" + }, + { + "appid": 3103230, + "normalized_name": "sim solver" + }, + { + "appid": 3103240, + "normalized_name": "twilight traveller" + }, + { + "appid": 3103280, + "normalized_name": "dreamworld the infinite sandbox mmo" + }, + { + "appid": 3103290, + "normalized_name": "breaching harkon" + }, + { + "appid": 3103320, + "normalized_name": "big jays rattastic adventure" + }, + { + "appid": 3103330, + "normalized_name": "webcum secrets 🔞💦" + }, + { + "appid": 3103340, + "normalized_name": "balocks" + }, + { + "appid": 3103370, + "normalized_name": "loving slaves season 1" + }, + { + "appid": 3103380, + "normalized_name": "webcam love" + }, + { + "appid": 3103390, + "normalized_name": "furry cosplay" + }, + { + "appid": 3103400, + "normalized_name": "inspection report" + }, + { + "appid": 3103420, + "normalized_name": "attrax" + }, + { + "appid": 3103460, + "normalized_name": "storage guys" + }, + { + "appid": 3103470, + "normalized_name": "zombetes" + }, + { + "appid": 3103480, + "normalized_name": "heart lung machine" + }, + { + "appid": 3103510, + "normalized_name": "stellar checkpoint" + }, + { + "appid": 3103580, + "normalized_name": "tinker tactics" + }, + { + "appid": 3103590, + "normalized_name": "nucleuz underground" + }, + { + "appid": 3103620, + "normalized_name": "witch the showdown" + }, + { + "appid": 3103640, + "normalized_name": "smasher" + }, + { + "appid": 3103650, + "normalized_name": "project stack" + }, + { + "appid": 3103660, + "normalized_name": "ark's wonder dungeon" + }, + { + "appid": 3103690, + "normalized_name": "glyphscape" + }, + { + "appid": 3103720, + "normalized_name": "sludge" + }, + { + "appid": 3103730, + "normalized_name": "ネゴラブ" + }, + { + "appid": 3103750, + "normalized_name": "penguin hotel chapter 1" + }, + { + "appid": 3103760, + "normalized_name": "animals" + }, + { + "appid": 3103780, + "normalized_name": "drapline" + }, + { + "appid": 3103800, + "normalized_name": "dead too dead" + }, + { + "appid": 3103820, + "normalized_name": "踩缝纫机模拟器" + }, + { + "appid": 3103830, + "normalized_name": "quacker bros first heist" + }, + { + "appid": 3103840, + "normalized_name": "tcg card shop simulator prologue" + }, + { + "appid": 3103850, + "normalized_name": "dark symphony" + }, + { + "appid": 3103910, + "normalized_name": "blu dude in the quest for chocolate milk" + }, + { + "appid": 3103930, + "normalized_name": "california escapades" + }, + { + "appid": 3103940, + "normalized_name": "lunar nightmare" + }, + { + "appid": 3103950, + "normalized_name": "scoop it! goldfish" + }, + { + "appid": 3103960, + "normalized_name": "escape gaia departure" + }, + { + "appid": 3103970, + "normalized_name": "escape gaia" + }, + { + "appid": 3104000, + "normalized_name": "战娘自走棋" + }, + { + "appid": 3104020, + "normalized_name": "deviation game" + }, + { + "appid": 3104030, + "normalized_name": "oath" + }, + { + "appid": 3104050, + "normalized_name": "polytap" + }, + { + "appid": 3104070, + "normalized_name": "わんドリル" + }, + { + "appid": 3104100, + "normalized_name": "deathstairwell99f" + }, + { + "appid": 3104110, + "normalized_name": "zone 13" + }, + { + "appid": 3104120, + "normalized_name": "capybara park" + }, + { + "appid": 3104220, + "normalized_name": "summit hopper" + }, + { + "appid": 3104230, + "normalized_name": "致命终局 deadly endgame" + }, + { + "appid": 3104240, + "normalized_name": "pyramid clicker" + }, + { + "appid": 3104250, + "normalized_name": "final night" + }, + { + "appid": 3104270, + "normalized_name": "kanade" + }, + { + "appid": 3104290, + "normalized_name": "gravity drop" + }, + { + "appid": 3104300, + "normalized_name": "lily" + }, + { + "appid": 3104340, + "normalized_name": "fool house" + }, + { + "appid": 3104370, + "normalized_name": "viva nobots" + }, + { + "appid": 3104380, + "normalized_name": "the out door" + }, + { + "appid": 3104410, + "normalized_name": "矩阵:零日危机 / terminull brigade" + }, + { + "appid": 3104420, + "normalized_name": "pawnbroker simulator" + }, + { + "appid": 3104430, + "normalized_name": "amikin village" + }, + { + "appid": 3104490, + "normalized_name": "black goblin" + }, + { + "appid": 3104510, + "normalized_name": "town keeper" + }, + { + "appid": 3104540, + "normalized_name": "snap snap" + }, + { + "appid": 3104550, + "normalized_name": "home snatch" + }, + { + "appid": 3104570, + "normalized_name": "monkeys" + }, + { + "appid": 3104580, + "normalized_name": "azura's crystals" + }, + { + "appid": 3104590, + "normalized_name": "最果てのオケアニデス爆乳水着美女守護者伝説" + }, + { + "appid": 3104600, + "normalized_name": "through quiet skies" + }, + { + "appid": 3104610, + "normalized_name": "megaracer quantumrush" + }, + { + "appid": 3104620, + "normalized_name": "sex movie director" + }, + { + "appid": 3104660, + "normalized_name": "metro station designer" + }, + { + "appid": 3104670, + "normalized_name": "doppel hunter" + }, + { + "appid": 3104680, + "normalized_name": "a tale of terror" + }, + { + "appid": 3104780, + "normalized_name": "spaceborne fighters" + }, + { + "appid": 3104790, + "normalized_name": "coxistence" + }, + { + "appid": 3104810, + "normalized_name": "launderley" + }, + { + "appid": 3104840, + "normalized_name": "mageanoid" + }, + { + "appid": 3104850, + "normalized_name": "trailer park zombies" + }, + { + "appid": 3104860, + "normalized_name": "ホタテシューター" + }, + { + "appid": 3104880, + "normalized_name": "my hidden dreams" + }, + { + "appid": 3104900, + "normalized_name": "tungsten moon" + }, + { + "appid": 3104920, + "normalized_name": "splat splat" + }, + { + "appid": 3104930, + "normalized_name": "ars demonium invocatum" + }, + { + "appid": 3104970, + "normalized_name": "backyard baseball '01" + }, + { + "appid": 3104980, + "normalized_name": "interdimensional gas station" + }, + { + "appid": 3105020, + "normalized_name": "touch grass vr simulator" + }, + { + "appid": 3105050, + "normalized_name": "heartware" + }, + { + "appid": 3105060, + "normalized_name": "☙ the hawkers ❧" + }, + { + "appid": 3105130, + "normalized_name": "squizzo" + }, + { + "appid": 3105140, + "normalized_name": "cybernated" + }, + { + "appid": 3105150, + "normalized_name": "near death expedition" + }, + { + "appid": 3105180, + "normalized_name": "subway surge" + }, + { + "appid": 3105190, + "normalized_name": "children of saturn" + }, + { + "appid": 3105290, + "normalized_name": "painted shores" + }, + { + "appid": 3105380, + "normalized_name": "throweat area" + }, + { + "appid": 3105410, + "normalized_name": "cleanup!" + }, + { + "appid": 3105430, + "normalized_name": "steven" + }, + { + "appid": 3105440, + "normalized_name": "heroes of might and magic olden era" + }, + { + "appid": 3105450, + "normalized_name": "evidence01" + }, + { + "appid": 3105490, + "normalized_name": "モララーのもつ鍋〆のおうどん" + }, + { + "appid": 3105560, + "normalized_name": "escape from hadrian's wall" + }, + { + "appid": 3105590, + "normalized_name": "city of secrets" + }, + { + "appid": 3105600, + "normalized_name": "the e collector" + }, + { + "appid": 3105620, + "normalized_name": "everseeker little critters" + }, + { + "appid": 3105640, + "normalized_name": "nortopia" + }, + { + "appid": 3105650, + "normalized_name": "chaotic conundrum" + }, + { + "appid": 3105670, + "normalized_name": "nuts" + }, + { + "appid": 3105680, + "normalized_name": "forever world cup simulator" + }, + { + "appid": 3105690, + "normalized_name": "高温计划 heat plan" + }, + { + "appid": 3105720, + "normalized_name": "business runner" + }, + { + "appid": 3105730, + "normalized_name": "groom grand prix" + }, + { + "appid": 3105760, + "normalized_name": "frog" + }, + { + "appid": 3105770, + "normalized_name": "voltage box" + }, + { + "appid": 3105780, + "normalized_name": "mini pistons gt" + }, + { + "appid": 3105890, + "normalized_name": "pioner" + }, + { + "appid": 3105900, + "normalized_name": "sheep adventure" + }, + { + "appid": 3105910, + "normalized_name": "beach secrets" + }, + { + "appid": 3105920, + "normalized_name": "commandos dreams" + }, + { + "appid": 3105940, + "normalized_name": "tipsy trot" + }, + { + "appid": 3105950, + "normalized_name": "desert racer" + }, + { + "appid": 3105960, + "normalized_name": "astrobuilder" + }, + { + "appid": 3105980, + "normalized_name": "gnomes vs knights" + }, + { + "appid": 3106000, + "normalized_name": "life with vroid" + }, + { + "appid": 3106050, + "normalized_name": "dark queen" + }, + { + "appid": 3106060, + "normalized_name": "城市怪谈之不要看月亮" + }, + { + "appid": 3106070, + "normalized_name": "how can a joker like me play cards with a beautiful girl" + }, + { + "appid": 3106080, + "normalized_name": "transit world" + }, + { + "appid": 3106110, + "normalized_name": "hyperblade 2050 dystopian sports manager" + }, + { + "appid": 3106140, + "normalized_name": "bloom paradise" + }, + { + "appid": 3106150, + "normalized_name": "el conquista" + }, + { + "appid": 3106160, + "normalized_name": "a train 9 v5.0 japan train simulator" + }, + { + "appid": 3106200, + "normalized_name": "muramasa burden" + }, + { + "appid": 3106210, + "normalized_name": "sarah wiener kochspiel" + }, + { + "appid": 3106220, + "normalized_name": "abyss survivors" + }, + { + "appid": 3106240, + "normalized_name": "rich & youn" + }, + { + "appid": 3106260, + "normalized_name": "beatshooter" + }, + { + "appid": 3106280, + "normalized_name": "tchin" + }, + { + "appid": 3106310, + "normalized_name": "sigma war notes" + }, + { + "appid": 3106320, + "normalized_name": "atctp" + }, + { + "appid": 3106330, + "normalized_name": "chiral" + }, + { + "appid": 3106340, + "normalized_name": "8月32日の水族館" + }, + { + "appid": 3106350, + "normalized_name": "westild's law" + }, + { + "appid": 3106490, + "normalized_name": "katagiri san is very cold" + }, + { + "appid": 3106510, + "normalized_name": "floor 9" + }, + { + "appid": 3106520, + "normalized_name": "earthroyale 3" + }, + { + "appid": 3106530, + "normalized_name": "command & conquer tiberium alliances" + }, + { + "appid": 3106540, + "normalized_name": "cards guns zombies" + }, + { + "appid": 3106560, + "normalized_name": "uncle unco" + }, + { + "appid": 3106590, + "normalized_name": "exterminant" + }, + { + "appid": 3106600, + "normalized_name": "unto deepest depths" + }, + { + "appid": 3106620, + "normalized_name": "please smile" + }, + { + "appid": 3106650, + "normalized_name": "t.d.z. 4 heart of pripyat" + }, + { + "appid": 3106660, + "normalized_name": "until oblivion" + }, + { + "appid": 3106670, + "normalized_name": "saturday super day" + }, + { + "appid": 3106680, + "normalized_name": "roman legacy speed trials" + }, + { + "appid": 3106690, + "normalized_name": "eclipse below" + }, + { + "appid": 3106730, + "normalized_name": "oh the humanity!" + }, + { + "appid": 3106750, + "normalized_name": "gladiate!" + }, + { + "appid": 3106780, + "normalized_name": "veins like tapeworms" + }, + { + "appid": 3106810, + "normalized_name": "shades" + }, + { + "appid": 3106830, + "normalized_name": "research and development 1" + }, + { + "appid": 3106860, + "normalized_name": "oratorio" + }, + { + "appid": 3106870, + "normalized_name": "crater song" + }, + { + "appid": 3106880, + "normalized_name": "into the matrix" + }, + { + "appid": 3106930, + "normalized_name": "strike force joint ops" + }, + { + "appid": 3106990, + "normalized_name": "romancing jan" + }, + { + "appid": 3107020, + "normalized_name": "shadows of the lost" + }, + { + "appid": 3107040, + "normalized_name": "wordfright" + }, + { + "appid": 3107050, + "normalized_name": "stoplights" + }, + { + "appid": 3107090, + "normalized_name": "outbreak shades of horror chromatic split" + }, + { + "appid": 3107130, + "normalized_name": "grit porn video tapes" + }, + { + "appid": 3107150, + "normalized_name": "spirits of the unloved" + }, + { + "appid": 3107210, + "normalized_name": "solfall" + }, + { + "appid": 3107220, + "normalized_name": "troy the red winged hero" + }, + { + "appid": 3107230, + "normalized_name": "pantheon rise of the fallen" + }, + { + "appid": 3107250, + "normalized_name": "szikra" + }, + { + "appid": 3107270, + "normalized_name": "holy heroes" + }, + { + "appid": 3107310, + "normalized_name": "baking bad" + }, + { + "appid": 3107320, + "normalized_name": "gladiator of valor" + }, + { + "appid": 3107330, + "normalized_name": "nodebuster" + }, + { + "appid": 3107350, + "normalized_name": "pockedate! pocket dating simulator" + }, + { + "appid": 3107360, + "normalized_name": "grooveyard" + }, + { + "appid": 3107440, + "normalized_name": "gorble" + }, + { + "appid": 3107450, + "normalized_name": "fruit pool explosive" + }, + { + "appid": 3107480, + "normalized_name": "the pi game infinite quest" + }, + { + "appid": 3107520, + "normalized_name": "the s.h.o.w." + }, + { + "appid": 3107530, + "normalized_name": "danchi days" + }, + { + "appid": 3107550, + "normalized_name": "go!~為了混吃等死而奮鬥~" + }, + { + "appid": 3107590, + "normalized_name": "スペルトナエル" + }, + { + "appid": 3107620, + "normalized_name": "card rogue" + }, + { + "appid": 3107680, + "normalized_name": "don't drop the cake prologue" + }, + { + "appid": 3107690, + "normalized_name": "general purpose trucker" + }, + { + "appid": 3107700, + "normalized_name": "noroi e darkness" + }, + { + "appid": 3107710, + "normalized_name": "marine battles" + }, + { + "appid": 3107730, + "normalized_name": "ether" + }, + { + "appid": 3107740, + "normalized_name": "lore of the frog" + }, + { + "appid": 3107770, + "normalized_name": "geo political simulator 5" + }, + { + "appid": 3107790, + "normalized_name": "rebullet" + }, + { + "appid": 3107800, + "normalized_name": "lizards must die 2" + }, + { + "appid": 3107810, + "normalized_name": "stranded with darkness" + }, + { + "appid": 3107820, + "normalized_name": "underground turtle races" + }, + { + "appid": 3107840, + "normalized_name": "abab" + }, + { + "appid": 3107850, + "normalized_name": "終焉少女" + }, + { + "appid": 3107860, + "normalized_name": "sweet hide and seek" + }, + { + "appid": 3107870, + "normalized_name": "highland keep" + }, + { + "appid": 3107880, + "normalized_name": "gnomes and knights" + }, + { + "appid": 3107890, + "normalized_name": "snow bros. special anniversary" + }, + { + "appid": 3107900, + "normalized_name": "liminalcore" + }, + { + "appid": 3107930, + "normalized_name": "memology 2 old times" + }, + { + "appid": 3107940, + "normalized_name": "maniac path 3" + }, + { + "appid": 3107950, + "normalized_name": "dangerous line" + }, + { + "appid": 3107960, + "normalized_name": "difficult times" + }, + { + "appid": 3107970, + "normalized_name": "difficult times 2" + }, + { + "appid": 3107980, + "normalized_name": "just skill shooter catacombs" + }, + { + "appid": 3107990, + "normalized_name": "convoluted incident pinch me" + }, + { + "appid": 3108000, + "normalized_name": "only trump up to presidents!" + }, + { + "appid": 3108010, + "normalized_name": "memology war of memes" + }, + { + "appid": 3108040, + "normalized_name": "marcux medieval alien invasion" + }, + { + "appid": 3108050, + "normalized_name": "回生九命 the nine rebirths" + }, + { + "appid": 3108060, + "normalized_name": "my dear delirium" + }, + { + "appid": 3108110, + "normalized_name": "warehouse job" + }, + { + "appid": 3108120, + "normalized_name": "东方云源历 ~ tales from floating abyss" + }, + { + "appid": 3108130, + "normalized_name": "bigfoot life" + }, + { + "appid": 3108140, + "normalized_name": "cat & capy" + }, + { + "appid": 3108180, + "normalized_name": "sweet night club" + }, + { + "appid": 3108190, + "normalized_name": "puzzle depot" + }, + { + "appid": 3108210, + "normalized_name": "cashew clicker" + }, + { + "appid": 3108230, + "normalized_name": "nice to yeet you" + }, + { + "appid": 3108240, + "normalized_name": "the first settlement vr" + }, + { + "appid": 3108260, + "normalized_name": "ancient the dimensions" + }, + { + "appid": 3108340, + "normalized_name": "pepos our operating system" + }, + { + "appid": 3108380, + "normalized_name": "walking steel" + }, + { + "appid": 3108470, + "normalized_name": "gold mine dash" + }, + { + "appid": 3108490, + "normalized_name": "blackout director's cut" + }, + { + "appid": 3108510, + "normalized_name": "flyknight" + }, + { + "appid": 3108560, + "normalized_name": "mystery house" + }, + { + "appid": 3108570, + "normalized_name": "entwine" + }, + { + "appid": 3108580, + "normalized_name": "grand piano simulator" + }, + { + "appid": 3108590, + "normalized_name": "黑神经:悟空破天" + }, + { + "appid": 3108610, + "normalized_name": "spase defense" + }, + { + "appid": 3108640, + "normalized_name": "sweet casino" + }, + { + "appid": 3108650, + "normalized_name": "extinction force" + }, + { + "appid": 3108660, + "normalized_name": "sweet cheerleaders" + }, + { + "appid": 3108670, + "normalized_name": "streetsync" + }, + { + "appid": 3108700, + "normalized_name": "on the grid" + }, + { + "appid": 3108710, + "normalized_name": "lootbawx" + }, + { + "appid": 3108720, + "normalized_name": "silent abandoned" + }, + { + "appid": 3108730, + "normalized_name": "孤行" + }, + { + "appid": 3108760, + "normalized_name": "catastrophic cat command" + }, + { + "appid": 3108770, + "normalized_name": "meat" + }, + { + "appid": 3108780, + "normalized_name": "warrior architects" + }, + { + "appid": 3108790, + "normalized_name": "三国志潜龙在渊" + }, + { + "appid": 3108820, + "normalized_name": "dog vs cat othello" + }, + { + "appid": 3108880, + "normalized_name": "insula mystica" + }, + { + "appid": 3108900, + "normalized_name": "dungeon divers prologue" + }, + { + "appid": 3108960, + "normalized_name": "through the galaxy" + }, + { + "appid": 3108980, + "normalized_name": "part time witch" + }, + { + "appid": 3108990, + "normalized_name": "蝶梦" + }, + { + "appid": 3109000, + "normalized_name": "i'm not crazy" + }, + { + "appid": 3109010, + "normalized_name": "yoyo punk" + }, + { + "appid": 3109030, + "normalized_name": "cartel simulator" + }, + { + "appid": 3109040, + "normalized_name": "refugees shelter" + }, + { + "appid": 3109050, + "normalized_name": "waifu" + }, + { + "appid": 3109070, + "normalized_name": "despondent" + }, + { + "appid": 3109080, + "normalized_name": "party house" + }, + { + "appid": 3109110, + "normalized_name": "uncolonization" + }, + { + "appid": 3109150, + "normalized_name": "tower maze defense" + }, + { + "appid": 3109160, + "normalized_name": "这是我的公司(this company of mine)" + }, + { + "appid": 3109170, + "normalized_name": "phobophobia" + }, + { + "appid": 3109180, + "normalized_name": "bling bling goblin" + }, + { + "appid": 3109210, + "normalized_name": "night market simulator" + }, + { + "appid": 3109230, + "normalized_name": "call of the deep" + }, + { + "appid": 3109240, + "normalized_name": "fallen seeds ii" + }, + { + "appid": 3109270, + "normalized_name": "good night pan pan" + }, + { + "appid": 3109280, + "normalized_name": "super loco world" + }, + { + "appid": 3109290, + "normalized_name": "college dept the game" + }, + { + "appid": 3109310, + "normalized_name": "galaxy clicker" + }, + { + "appid": 3109340, + "normalized_name": "zoratharion" + }, + { + "appid": 3109350, + "normalized_name": "dirty daughters slice of life" + }, + { + "appid": 3109370, + "normalized_name": "slot waste" + }, + { + "appid": 3109410, + "normalized_name": "catclick" + }, + { + "appid": 3109430, + "normalized_name": "datbyel's nebula" + }, + { + "appid": 3109440, + "normalized_name": "breakout epilepsia" + }, + { + "appid": 3109450, + "normalized_name": "墨谷乡" + }, + { + "appid": 3109460, + "normalized_name": "sudden soul" + }, + { + "appid": 3109470, + "normalized_name": "构想彼方 ~做题家恋爱物语~" + }, + { + "appid": 3109480, + "normalized_name": "magic wand" + }, + { + "appid": 3109490, + "normalized_name": "frontier governor" + }, + { + "appid": 3109500, + "normalized_name": "super beast activation" + }, + { + "appid": 3109510, + "normalized_name": "xenoadventure" + }, + { + "appid": 3109540, + "normalized_name": "one night at the shack" + }, + { + "appid": 3109560, + "normalized_name": "hotdog truck simulator" + }, + { + "appid": 3109580, + "normalized_name": "i am legion stand survivors" + }, + { + "appid": 3109590, + "normalized_name": "cat cafe manager 2 big city bliss" + }, + { + "appid": 3109610, + "normalized_name": "sweet hotel" + }, + { + "appid": 3109640, + "normalized_name": "oh my lord" + }, + { + "appid": 3109650, + "normalized_name": "the vampire's bride the novel game" + }, + { + "appid": 3109670, + "normalized_name": "stars online" + }, + { + "appid": 3109700, + "normalized_name": "lullaby data" + }, + { + "appid": 3109740, + "normalized_name": "spirit of the goddess" + }, + { + "appid": 3109800, + "normalized_name": "illusion box" + }, + { + "appid": 3109810, + "normalized_name": "number tower" + }, + { + "appid": 3109830, + "normalized_name": "peacequarium" + }, + { + "appid": 3109840, + "normalized_name": "magic jewelry craft" + }, + { + "appid": 3109880, + "normalized_name": "rise of deads" + }, + { + "appid": 3109960, + "normalized_name": "極彩寿司大戦~proud tradition vs crazy imitation~" + }, + { + "appid": 3109980, + "normalized_name": "救命!我被美女xx了!" + }, + { + "appid": 3109990, + "normalized_name": "拯救日记" + }, + { + "appid": 3110000, + "normalized_name": "yanyuedao kill" + }, + { + "appid": 3110010, + "normalized_name": "free durov" + }, + { + "appid": 3110080, + "normalized_name": "欧比3011 序章" + }, + { + "appid": 3110090, + "normalized_name": "我的仙门很厉害" + }, + { + "appid": 3110120, + "normalized_name": "darok" + }, + { + "appid": 3110130, + "normalized_name": "recycling center simulator prologue" + }, + { + "appid": 3110150, + "normalized_name": "夜弦酒吧员工守则(employee rules of the night strings)" + }, + { + "appid": 3110200, + "normalized_name": "keep it up" + }, + { + "appid": 3110220, + "normalized_name": "haut episode one" + }, + { + "appid": 3110230, + "normalized_name": "无敌坦克" + }, + { + "appid": 3110240, + "normalized_name": "duck war" + }, + { + "appid": 3110250, + "normalized_name": "calice" + }, + { + "appid": 3110260, + "normalized_name": "detective penguin" + }, + { + "appid": 3110270, + "normalized_name": "hidden cats in fallen leaves town" + }, + { + "appid": 3110290, + "normalized_name": "digital miners" + }, + { + "appid": 3110310, + "normalized_name": "mr.robbo" + }, + { + "appid": 3110320, + "normalized_name": "the impostor" + }, + { + "appid": 3110370, + "normalized_name": "dustwind resistance" + }, + { + "appid": 3110410, + "normalized_name": "my fantasy hostess club" + }, + { + "appid": 3110420, + "normalized_name": "果宝跑酷 挑战" + }, + { + "appid": 3110430, + "normalized_name": "galaxy cocoa" + }, + { + "appid": 3110450, + "normalized_name": "randal's tuesday" + }, + { + "appid": 3110490, + "normalized_name": "pixel restorer" + }, + { + "appid": 3110500, + "normalized_name": "the best duck clicker" + }, + { + "appid": 3110510, + "normalized_name": "迷途梦境 lost dream chronicle" + }, + { + "appid": 3110520, + "normalized_name": "101 cats hidden in amsterdam" + }, + { + "appid": 3110540, + "normalized_name": "blade trick" + }, + { + "appid": 3110600, + "normalized_name": "fenced in" + }, + { + "appid": 3110610, + "normalized_name": "deeplands" + }, + { + "appid": 3110690, + "normalized_name": "o.w.l projekt" + }, + { + "appid": 3110700, + "normalized_name": "space war economy idle" + }, + { + "appid": 3110710, + "normalized_name": "federation mycha" + }, + { + "appid": 3110740, + "normalized_name": "the spreader" + }, + { + "appid": 3110750, + "normalized_name": "100 hidden cthulhu fish 2" + }, + { + "appid": 3110760, + "normalized_name": "alabaster dawn" + }, + { + "appid": 3110800, + "normalized_name": "tailless frank" + }, + { + "appid": 3110820, + "normalized_name": "crisis command" + }, + { + "appid": 3110840, + "normalized_name": "at daggers drawn" + }, + { + "appid": 3110930, + "normalized_name": "a handful of lewd games" + }, + { + "appid": 3110960, + "normalized_name": "vr gorodki" + }, + { + "appid": 3111010, + "normalized_name": "水鬼" + }, + { + "appid": 3111020, + "normalized_name": "between life & darkness" + }, + { + "appid": 3111030, + "normalized_name": "express car wash simulator" + }, + { + "appid": 3111040, + "normalized_name": "scary bingo" + }, + { + "appid": 3111050, + "normalized_name": "secrets of suburbia" + }, + { + "appid": 3111070, + "normalized_name": "seeker of the ruins" + }, + { + "appid": 3111080, + "normalized_name": "secret agent wizard boy and the international crime syndicate" + }, + { + "appid": 3111130, + "normalized_name": "student council wars" + }, + { + "appid": 3111140, + "normalized_name": "cards of heart" + }, + { + "appid": 3111150, + "normalized_name": "secrets of shadows" + }, + { + "appid": 3111230, + "normalized_name": "a light jog" + }, + { + "appid": 3111240, + "normalized_name": "agent horny season 1" + }, + { + "appid": 3111290, + "normalized_name": "nothing but the silent deep" + }, + { + "appid": 3111310, + "normalized_name": "footage bodycam" + }, + { + "appid": 3111330, + "normalized_name": "colony arena online" + }, + { + "appid": 3111380, + "normalized_name": "taromancy" + }, + { + "appid": 3111430, + "normalized_name": "silent observer" + }, + { + "appid": 3111510, + "normalized_name": "aesthetic clicker" + }, + { + "appid": 3111550, + "normalized_name": "acp action coin pusher" + }, + { + "appid": 3111570, + "normalized_name": "only one sword" + }, + { + "appid": 3111580, + "normalized_name": "record shop simulator" + }, + { + "appid": 3111600, + "normalized_name": "craftory" + }, + { + "appid": 3111620, + "normalized_name": "astra era of anguish" + }, + { + "appid": 3111630, + "normalized_name": "doomba" + }, + { + "appid": 3111650, + "normalized_name": "we have to let you go" + }, + { + "appid": 3111680, + "normalized_name": "can't revert" + }, + { + "appid": 3111710, + "normalized_name": "动物农场" + }, + { + "appid": 3111720, + "normalized_name": "戎辞汉月armedfarewell" + }, + { + "appid": 3111730, + "normalized_name": "z juice" + }, + { + "appid": 3111740, + "normalized_name": "altered anomalies" + }, + { + "appid": 3111770, + "normalized_name": "通不了关吧(can you finish it?)" + }, + { + "appid": 3111780, + "normalized_name": "entity onboard" + }, + { + "appid": 3111800, + "normalized_name": "face the abyss" + }, + { + "appid": 3111830, + "normalized_name": "girl is coming" + }, + { + "appid": 3111850, + "normalized_name": "patchworld" + }, + { + "appid": 3111860, + "normalized_name": "crime chronicles the hidden truth" + }, + { + "appid": 3111900, + "normalized_name": "tampopo" + }, + { + "appid": 3111930, + "normalized_name": "fallen priestess my sister's demonic bloodline" + }, + { + "appid": 3111960, + "normalized_name": "fortress warfare" + }, + { + "appid": 3111970, + "normalized_name": "devil can beat" + }, + { + "appid": 3111980, + "normalized_name": "the green way farming simulator" + }, + { + "appid": 3112000, + "normalized_name": "伏魔之境 demon suppression realm" + }, + { + "appid": 3112010, + "normalized_name": "不思议迷宫" + }, + { + "appid": 3112030, + "normalized_name": "gnomer" + }, + { + "appid": 3112050, + "normalized_name": "j room" + }, + { + "appid": 3112100, + "normalized_name": "dadish collection" + }, + { + "appid": 3112170, + "normalized_name": "dice legends" + }, + { + "appid": 3112200, + "normalized_name": "subdimension" + }, + { + "appid": 3112210, + "normalized_name": "party spirits" + }, + { + "appid": 3112220, + "normalized_name": "antioma" + }, + { + "appid": 3112260, + "normalized_name": "virtua fighter 5 r.e.v.o." + }, + { + "appid": 3112280, + "normalized_name": "reclaiming the lost" + }, + { + "appid": 3112290, + "normalized_name": "sofia's dark fantasies" + }, + { + "appid": 3112330, + "normalized_name": "yamauba" + }, + { + "appid": 3112340, + "normalized_name": "all in vain" + }, + { + "appid": 3112380, + "normalized_name": "capybarabara" + }, + { + "appid": 3112410, + "normalized_name": "paris games fail!" + }, + { + "appid": 3112420, + "normalized_name": "deep in the mine" + }, + { + "appid": 3112450, + "normalized_name": "ciclico" + }, + { + "appid": 3112470, + "normalized_name": "battlewrights" + }, + { + "appid": 3112500, + "normalized_name": "church simulator" + }, + { + "appid": 3112540, + "normalized_name": "horror office" + }, + { + "appid": 3112620, + "normalized_name": "fisher guy" + }, + { + "appid": 3112630, + "normalized_name": "greedy bee" + }, + { + "appid": 3112640, + "normalized_name": "joutun" + }, + { + "appid": 3112650, + "normalized_name": "laser circle" + }, + { + "appid": 3112660, + "normalized_name": "line change" + }, + { + "appid": 3112730, + "normalized_name": "dog man mission impawsible" + }, + { + "appid": 3112740, + "normalized_name": "cube" + }, + { + "appid": 3113010, + "normalized_name": "万仙牌" + }, + { + "appid": 3113020, + "normalized_name": "parasonar" + }, + { + "appid": 3113030, + "normalized_name": "the oily depths" + }, + { + "appid": 3113060, + "normalized_name": "in your world (i own)" + }, + { + "appid": 3113080, + "normalized_name": "gym simulator" + }, + { + "appid": 3113140, + "normalized_name": "doggy waiter 2" + }, + { + "appid": 3113230, + "normalized_name": "immortal idle" + }, + { + "appid": 3113260, + "normalized_name": "forgotten memories" + }, + { + "appid": 3113340, + "normalized_name": "port town survival" + }, + { + "appid": 3113350, + "normalized_name": "bloodsmith" + }, + { + "appid": 3113360, + "normalized_name": "synaxarion christian stories holy martyr neophytos" + }, + { + "appid": 3113390, + "normalized_name": "last star" + }, + { + "appid": 3113400, + "normalized_name": "cosminomy" + }, + { + "appid": 3113420, + "normalized_name": "dysto wanderer" + }, + { + "appid": 3113430, + "normalized_name": "butts in space porcelain peril" + }, + { + "appid": 3113480, + "normalized_name": "cardcraft champions" + }, + { + "appid": 3113490, + "normalized_name": "five nights and vtbs管人痴的五夜后宫" + }, + { + "appid": 3113500, + "normalized_name": "kill kill kill kill" + }, + { + "appid": 3113510, + "normalized_name": "skidaddle skidoodle" + }, + { + "appid": 3113530, + "normalized_name": "haunted elevator 闹鬼电梯" + }, + { + "appid": 3113550, + "normalized_name": "engraven" + }, + { + "appid": 3113580, + "normalized_name": "kaido genkai" + }, + { + "appid": 3113590, + "normalized_name": "marbolus" + }, + { + "appid": 3113600, + "normalized_name": "tree of knowledge" + }, + { + "appid": 3113640, + "normalized_name": "clairvoyance" + }, + { + "appid": 3113650, + "normalized_name": "sheep seeker" + }, + { + "appid": 3113670, + "normalized_name": "the barkeeper" + }, + { + "appid": 3113680, + "normalized_name": "missing banban" + }, + { + "appid": 3113690, + "normalized_name": "ship miner" + }, + { + "appid": 3113710, + "normalized_name": "witch academy h" + }, + { + "appid": 3113730, + "normalized_name": "mini bash" + }, + { + "appid": 3113740, + "normalized_name": "don't drop the wall jack!" + }, + { + "appid": 3113750, + "normalized_name": "drunk builder simulator" + }, + { + "appid": 3113780, + "normalized_name": "grab and guts" + }, + { + "appid": 3113810, + "normalized_name": "blitz and pieces" + }, + { + "appid": 3113850, + "normalized_name": "memories not found" + }, + { + "appid": 3113870, + "normalized_name": "hockey legacy manager 25" + }, + { + "appid": 3113890, + "normalized_name": "zombie survivors" + }, + { + "appid": 3113920, + "normalized_name": "super animals td" + }, + { + "appid": 3113940, + "normalized_name": "voodoom" + }, + { + "appid": 3113950, + "normalized_name": "dodgekill" + }, + { + "appid": 3113980, + "normalized_name": "back to back" + }, + { + "appid": 3113990, + "normalized_name": "futamata ren'ai two times the trouble" + }, + { + "appid": 3114010, + "normalized_name": "captured" + }, + { + "appid": 3114040, + "normalized_name": "lights in the sky" + }, + { + "appid": 3114070, + "normalized_name": "十秒英雄1 ten seconds hero1" + }, + { + "appid": 3114090, + "normalized_name": "深渊联盟(league of abyss)" + }, + { + "appid": 3114100, + "normalized_name": "cardinal descent" + }, + { + "appid": 3114140, + "normalized_name": "都市女友的私密约会 an intimate date with an urban girlfriend" + }, + { + "appid": 3114150, + "normalized_name": "native isekai defense prologue" + }, + { + "appid": 3114160, + "normalized_name": "萌芽之缘 fate's ties" + }, + { + "appid": 3114230, + "normalized_name": "distant garden" + }, + { + "appid": 3114250, + "normalized_name": "ダンジョンビーチ" + }, + { + "appid": 3114290, + "normalized_name": "chronicles of zimoria" + }, + { + "appid": 3114300, + "normalized_name": "rebecca and the sword of mystery" + }, + { + "appid": 3114310, + "normalized_name": "stall life" + }, + { + "appid": 3114320, + "normalized_name": "dinosaur running(恐龙快跑)" + }, + { + "appid": 3114360, + "normalized_name": "virustream" + }, + { + "appid": 3114370, + "normalized_name": "《文字遊戲世界》" + }, + { + "appid": 3114390, + "normalized_name": "loopreap" + }, + { + "appid": 3114410, + "normalized_name": "skill legends royale" + }, + { + "appid": 3114420, + "normalized_name": "uncracked" + }, + { + "appid": 3114440, + "normalized_name": "war of charge" + }, + { + "appid": 3114470, + "normalized_name": "merge donut" + }, + { + "appid": 3114480, + "normalized_name": "gnome game" + }, + { + "appid": 3114500, + "normalized_name": "cumrooms" + }, + { + "appid": 3114510, + "normalized_name": "blackwoods" + }, + { + "appid": 3114570, + "normalized_name": "doner master simulator prologue" + }, + { + "appid": 3114600, + "normalized_name": "heartweaver" + }, + { + "appid": 3114610, + "normalized_name": "spell of infinity" + }, + { + "appid": 3114620, + "normalized_name": "toy voyage" + }, + { + "appid": 3114650, + "normalized_name": "墙之恐惧 the walls still stand" + }, + { + "appid": 3114680, + "normalized_name": "war of warship" + }, + { + "appid": 3114700, + "normalized_name": "voxel world" + }, + { + "appid": 3114760, + "normalized_name": "cactiverse" + }, + { + "appid": 3114780, + "normalized_name": "stock stack" + }, + { + "appid": 3114850, + "normalized_name": "fls" + }, + { + "appid": 3114860, + "normalized_name": "barrok" + }, + { + "appid": 3114890, + "normalized_name": "microvania" + }, + { + "appid": 3114900, + "normalized_name": "dread flats" + }, + { + "appid": 3114940, + "normalized_name": "мир кораблей" + }, + { + "appid": 3114990, + "normalized_name": "red brim" + }, + { + "appid": 3115010, + "normalized_name": "car dealer simulator prologue early days" + }, + { + "appid": 3115020, + "normalized_name": "spirit of fire crypta" + }, + { + "appid": 3115030, + "normalized_name": "merana and the cubewalker" + }, + { + "appid": 3115040, + "normalized_name": "my last friday" + }, + { + "appid": 3115060, + "normalized_name": "hypno idols greatest tits" + }, + { + "appid": 3115150, + "normalized_name": "vyanka's memories" + }, + { + "appid": 3115190, + "normalized_name": "wrath of onryō" + }, + { + "appid": 3115220, + "normalized_name": "town to city" + }, + { + "appid": 3115230, + "normalized_name": "ドロップクッキング / drop cooking" + }, + { + "appid": 3115240, + "normalized_name": "alchemist journey of the soul" + }, + { + "appid": 3115250, + "normalized_name": "streamfans" + }, + { + "appid": 3115290, + "normalized_name": "legacy tears of vanfell chapter 1" + }, + { + "appid": 3115310, + "normalized_name": "bloodmoon survivors" + }, + { + "appid": 3115320, + "normalized_name": "the exit protocol" + }, + { + "appid": 3115340, + "normalized_name": "glowie rammer" + }, + { + "appid": 3115350, + "normalized_name": "spritz the happy onion" + }, + { + "appid": 3115360, + "normalized_name": "grimstone valley" + }, + { + "appid": 3115370, + "normalized_name": "cool cucumber cricket manager" + }, + { + "appid": 3115410, + "normalized_name": "eonheart" + }, + { + "appid": 3115440, + "normalized_name": "birdlingo a birdsong learning game" + }, + { + "appid": 3115480, + "normalized_name": "diviner" + }, + { + "appid": 3115490, + "normalized_name": "lunar drifter" + }, + { + "appid": 3115500, + "normalized_name": "梦幻旋律" + }, + { + "appid": 3115510, + "normalized_name": "catgirl aim trainer" + }, + { + "appid": 3115520, + "normalized_name": "precept" + }, + { + "appid": 3115650, + "normalized_name": "tactic legends" + }, + { + "appid": 3115660, + "normalized_name": "where is mrs peregrine?" + }, + { + "appid": 3115840, + "normalized_name": "sexy girl next door virtual valentine sex" + }, + { + "appid": 3115850, + "normalized_name": "swordia" + }, + { + "appid": 3115860, + "normalized_name": "meal mystery escape room" + }, + { + "appid": 3115870, + "normalized_name": "trophyrc" + }, + { + "appid": 3115880, + "normalized_name": "jumpscare scare jump" + }, + { + "appid": 3115890, + "normalized_name": "croak cafe from pond to plate" + }, + { + "appid": 3115900, + "normalized_name": "rogue squad" + }, + { + "appid": 3116080, + "normalized_name": "deltaphysics" + }, + { + "appid": 3116100, + "normalized_name": "horror at the harpers" + }, + { + "appid": 3116120, + "normalized_name": "兽人领地" + }, + { + "appid": 3116160, + "normalized_name": "garden of wandering souls roguelite tower defense" + }, + { + "appid": 3116180, + "normalized_name": "kour 64" + }, + { + "appid": 3116190, + "normalized_name": "let's aim! shooting gallery" + }, + { + "appid": 3116200, + "normalized_name": "poker tower defense" + }, + { + "appid": 3116220, + "normalized_name": "cats hidden timeline" + }, + { + "appid": 3116230, + "normalized_name": "abashed" + }, + { + "appid": 3116240, + "normalized_name": "地道战" + }, + { + "appid": 3116260, + "normalized_name": "若津谷村の祟り" + }, + { + "appid": 3116300, + "normalized_name": "big city dreaming" + }, + { + "appid": 3116350, + "normalized_name": "foodomina" + }, + { + "appid": 3116360, + "normalized_name": "save teaser before the dawn" + }, + { + "appid": 3116370, + "normalized_name": "破碎棱镜 broken prism" + }, + { + "appid": 3116400, + "normalized_name": "hentai akari" + }, + { + "appid": 3116450, + "normalized_name": "exorcist of lust kaede" + }, + { + "appid": 3116470, + "normalized_name": "idun prologue" + }, + { + "appid": 3116480, + "normalized_name": "end of everything" + }, + { + "appid": 3116530, + "normalized_name": "zombie siege city" + }, + { + "appid": 3116540, + "normalized_name": "legend of parry king" + }, + { + "appid": 3116600, + "normalized_name": "gate project" + }, + { + "appid": 3116640, + "normalized_name": "torque drift 2" + }, + { + "appid": 3116700, + "normalized_name": "请君入殓" + }, + { + "appid": 3116720, + "normalized_name": "five nights at skibidi toilets" + }, + { + "appid": 3116730, + "normalized_name": "big loot" + }, + { + "appid": 3116740, + "normalized_name": "mining heroes:puzzle rpg" + }, + { + "appid": 3116790, + "normalized_name": "escape site 13" + }, + { + "appid": 3116810, + "normalized_name": "saber survivors" + }, + { + "appid": 3116860, + "normalized_name": "wire throne" + }, + { + "appid": 3116870, + "normalized_name": "deus mantle" + }, + { + "appid": 3116880, + "normalized_name": "whoopi" + }, + { + "appid": 3116890, + "normalized_name": "out of the park baseball 26" + }, + { + "appid": 3116920, + "normalized_name": "frightening monastery" + }, + { + "appid": 3116930, + "normalized_name": "cumming of age" + }, + { + "appid": 3117040, + "normalized_name": "问山海 暗黑修仙传奇" + }, + { + "appid": 3117160, + "normalized_name": "叛军组织的我爱上了贵族大小姐" + }, + { + "appid": 3117600, + "normalized_name": "scaler" + }, + { + "appid": 3117620, + "normalized_name": "robabekya" + }, + { + "appid": 3117630, + "normalized_name": "星のしるべ" + }, + { + "appid": 3117660, + "normalized_name": "绯红编年史 ~ chronicle of scarlet ~" + }, + { + "appid": 3117670, + "normalized_name": "bloody sky" + }, + { + "appid": 3117680, + "normalized_name": "hentai girls gallery" + }, + { + "appid": 3117710, + "normalized_name": "you struck gold" + }, + { + "appid": 3117720, + "normalized_name": "luckywheel" + }, + { + "appid": 3117730, + "normalized_name": "little lights remains td" + }, + { + "appid": 3117740, + "normalized_name": "szx" + }, + { + "appid": 3117780, + "normalized_name": "yin yang ping pong" + }, + { + "appid": 3117800, + "normalized_name": "envguard" + }, + { + "appid": 3117810, + "normalized_name": "red night" + }, + { + "appid": 3117820, + "normalized_name": "sultan's game" + }, + { + "appid": 3117950, + "normalized_name": "pingpongblock" + }, + { + "appid": 3117990, + "normalized_name": "daydream mosaics 5 crimson veil" + }, + { + "appid": 3118010, + "normalized_name": "grizzly man" + }, + { + "appid": 3118040, + "normalized_name": "hardware store & workshop simulator" + }, + { + "appid": 3118050, + "normalized_name": "meteorder" + }, + { + "appid": 3118060, + "normalized_name": "norse legends tower defense" + }, + { + "appid": 3118070, + "normalized_name": "grow empire rome" + }, + { + "appid": 3118140, + "normalized_name": "infernal battles" + }, + { + "appid": 3118160, + "normalized_name": "floodcore" + }, + { + "appid": 3118200, + "normalized_name": "黒騎士戦記" + }, + { + "appid": 3118250, + "normalized_name": "mark sharp & the bar thieves" + }, + { + "appid": 3118260, + "normalized_name": "sim simple idle miner" + }, + { + "appid": 3118270, + "normalized_name": "innerscape" + }, + { + "appid": 3118290, + "normalized_name": "capybara" + }, + { + "appid": 3118310, + "normalized_name": "be fly" + }, + { + "appid": 3118330, + "normalized_name": "vhs recovered tapes" + }, + { + "appid": 3118340, + "normalized_name": "time to tell time" + }, + { + "appid": 3118380, + "normalized_name": "coloring book" + }, + { + "appid": 3118420, + "normalized_name": "hotch potch house" + }, + { + "appid": 3118450, + "normalized_name": "cast cats" + }, + { + "appid": 3118490, + "normalized_name": "umbra's cauldron" + }, + { + "appid": 3118520, + "normalized_name": "another hope" + }, + { + "appid": 3118570, + "normalized_name": "junkyard killbots" + }, + { + "appid": 3118580, + "normalized_name": "101 cats hidden in shanghai" + }, + { + "appid": 3118600, + "normalized_name": "tile blocks" + }, + { + "appid": 3118620, + "normalized_name": "aero battle royale" + }, + { + "appid": 3118630, + "normalized_name": "the bear a story from the world of gra" + }, + { + "appid": 3118650, + "normalized_name": "pix souls" + }, + { + "appid": 3118690, + "normalized_name": "plague architect" + }, + { + "appid": 3118700, + "normalized_name": "a simple door" + }, + { + "appid": 3118730, + "normalized_name": "super antonio" + }, + { + "appid": 3118740, + "normalized_name": "do you know kimchi?" + }, + { + "appid": 3118840, + "normalized_name": "sibir" + }, + { + "appid": 3118850, + "normalized_name": "10 blaze escape" + }, + { + "appid": 3118870, + "normalized_name": "bladepink" + }, + { + "appid": 3118900, + "normalized_name": "ai love chat virtual romance" + }, + { + "appid": 3118910, + "normalized_name": "reality breach" + }, + { + "appid": 3118960, + "normalized_name": "pure golf" + }, + { + "appid": 3119010, + "normalized_name": "that lava lamp game" + }, + { + "appid": 3119020, + "normalized_name": "match kill survive" + }, + { + "appid": 3119040, + "normalized_name": "crumble party!" + }, + { + "appid": 3119050, + "normalized_name": "obfuscation" + }, + { + "appid": 3119140, + "normalized_name": "married woman's heaven2 breeding apartments filling married women's wombs with child seeds" + }, + { + "appid": 3119150, + "normalized_name": "infernhells a divine comedy" + }, + { + "appid": 3119170, + "normalized_name": "peddlers between pulsars" + }, + { + "appid": 3119180, + "normalized_name": "幻想修仙世界" + }, + { + "appid": 3119190, + "normalized_name": "korobo" + }, + { + "appid": 3119200, + "normalized_name": "jab juggernauts" + }, + { + "appid": 3119210, + "normalized_name": "growth" + }, + { + "appid": 3119220, + "normalized_name": "the backrooms forsaken" + }, + { + "appid": 3119240, + "normalized_name": "magic the wandering" + }, + { + "appid": 3119250, + "normalized_name": "schizophrenia the last shift" + }, + { + "appid": 3119260, + "normalized_name": "gunma's ambition you and me are gunma reiwa 2nd national census" + }, + { + "appid": 3119380, + "normalized_name": "无线电平原 radio plains" + }, + { + "appid": 3119390, + "normalized_name": "異常階段 abnormal stairs" + }, + { + "appid": 3119410, + "normalized_name": "one mistake" + }, + { + "appid": 3119430, + "normalized_name": "ascendant realms" + }, + { + "appid": 3119450, + "normalized_name": "rock! scissors! please!" + }, + { + "appid": 3119460, + "normalized_name": "dark blue dungeon" + }, + { + "appid": 3119470, + "normalized_name": "マカブルの残党 remnants of the macabre" + }, + { + "appid": 3119480, + "normalized_name": "the black labyrinth" + }, + { + "appid": 3119520, + "normalized_name": "waifu closet" + }, + { + "appid": 3119530, + "normalized_name": "the family" + }, + { + "appid": 3119540, + "normalized_name": "scriptorium master of manuscripts" + }, + { + "appid": 3119610, + "normalized_name": "one more question" + }, + { + "appid": 3119640, + "normalized_name": "warbound" + }, + { + "appid": 3119660, + "normalized_name": "educational virtual reality campus" + }, + { + "appid": 3119670, + "normalized_name": "xen" + }, + { + "appid": 3119690, + "normalized_name": "sa[meow]rai silverwing stray" + }, + { + "appid": 3119700, + "normalized_name": "nook fall west town" + }, + { + "appid": 3119710, + "normalized_name": "impious" + }, + { + "appid": 3119720, + "normalized_name": "barro 2024" + }, + { + "appid": 3119730, + "normalized_name": "hyperleap" + }, + { + "appid": 3119780, + "normalized_name": "drive thru miami" + }, + { + "appid": 3119820, + "normalized_name": "doggy farmer" + }, + { + "appid": 3119830, + "normalized_name": "chaos bringer" + }, + { + "appid": 3119850, + "normalized_name": "obsessed with the streets" + }, + { + "appid": 3119930, + "normalized_name": "basketball legacy manager 25" + }, + { + "appid": 3119950, + "normalized_name": "a space between time" + }, + { + "appid": 3119960, + "normalized_name": "legion and tavern" + }, + { + "appid": 3119980, + "normalized_name": "welcome a cozy estuary" + }, + { + "appid": 3119990, + "normalized_name": "eclipsi" + }, + { + "appid": 3120000, + "normalized_name": "pretty sweet! healing guardian" + }, + { + "appid": 3120020, + "normalized_name": "kings of hell" + }, + { + "appid": 3120040, + "normalized_name": "the end of gameplay" + }, + { + "appid": 3120050, + "normalized_name": "dungeon of grandmasters" + }, + { + "appid": 3120070, + "normalized_name": "horror storm" + }, + { + "appid": 3120140, + "normalized_name": "along the edge of the sky" + }, + { + "appid": 3120160, + "normalized_name": "tres" + }, + { + "appid": 3120190, + "normalized_name": "the last train" + }, + { + "appid": 3120200, + "normalized_name": "aracore astromining ventures" + }, + { + "appid": 3120210, + "normalized_name": "man made" + }, + { + "appid": 3120250, + "normalized_name": "lost diskettes vol.1" + }, + { + "appid": 3120270, + "normalized_name": "the castle of xanxillia" + }, + { + "appid": 3120290, + "normalized_name": "3d puzzle courtyard" + }, + { + "appid": 3120300, + "normalized_name": "3d puzzle pizza shop 1" + }, + { + "appid": 3120310, + "normalized_name": "3d puzzle winter outpost" + }, + { + "appid": 3120320, + "normalized_name": "3d puzzle pizza shop 2" + }, + { + "appid": 3120370, + "normalized_name": "click on clocks together" + }, + { + "appid": 3120380, + "normalized_name": "click on cups together" + }, + { + "appid": 3120410, + "normalized_name": "little droid 2 escape" + }, + { + "appid": 3120460, + "normalized_name": "nightclub simulator 25" + }, + { + "appid": 3120490, + "normalized_name": "high flyer" + }, + { + "appid": 3120500, + "normalized_name": "animals merge quest" + }, + { + "appid": 3120560, + "normalized_name": "i hate balloons vr" + }, + { + "appid": 3120600, + "normalized_name": "vr harem life ~ your room became a hang out for girls!? ~" + }, + { + "appid": 3120630, + "normalized_name": "cold chains" + }, + { + "appid": 3120700, + "normalized_name": "farming" + }, + { + "appid": 3120720, + "normalized_name": "rocket jumper 2d" + }, + { + "appid": 3120730, + "normalized_name": "difference" + }, + { + "appid": 3120740, + "normalized_name": "strandzha adventures 3d" + }, + { + "appid": 3120750, + "normalized_name": "dark ball" + }, + { + "appid": 3120760, + "normalized_name": "retro cut" + }, + { + "appid": 3120790, + "normalized_name": "extraaudinary audio game" + }, + { + "appid": 3120810, + "normalized_name": "地味人妻是能幹的阿姨喔!" + }, + { + "appid": 3120860, + "normalized_name": "marine quest" + }, + { + "appid": 3120880, + "normalized_name": "food fight fiesta multi use cards" + }, + { + "appid": 3120890, + "normalized_name": "catcat" + }, + { + "appid": 3120910, + "normalized_name": "the little moon" + }, + { + "appid": 3120980, + "normalized_name": "stargazer" + }, + { + "appid": 3120990, + "normalized_name": "roguecards" + }, + { + "appid": 3121070, + "normalized_name": "loot box" + }, + { + "appid": 3121090, + "normalized_name": "殘業" + }, + { + "appid": 3121110, + "normalized_name": "zort" + }, + { + "appid": 3121160, + "normalized_name": "fantasy milf hunter" + }, + { + "appid": 3121190, + "normalized_name": "miami nights bartending in the 80s" + }, + { + "appid": 3121210, + "normalized_name": "inferno sentinel" + }, + { + "appid": 3121220, + "normalized_name": "元素传说" + }, + { + "appid": 3121230, + "normalized_name": "enigma isle" + }, + { + "appid": 3121260, + "normalized_name": "rituality" + }, + { + "appid": 3121320, + "normalized_name": "hue hop" + }, + { + "appid": 3121330, + "normalized_name": "blood of inquisition" + }, + { + "appid": 3121340, + "normalized_name": "机动装甲:超时空之门" + }, + { + "appid": 3121410, + "normalized_name": "backstreet" + }, + { + "appid": 3121430, + "normalized_name": "mk ultra psychic defense" + }, + { + "appid": 3121440, + "normalized_name": "territory of traitors" + }, + { + "appid": 3121470, + "normalized_name": "chroma zero" + }, + { + "appid": 3121490, + "normalized_name": "my sexy neighbor 🔞 prologue" + }, + { + "appid": 3121530, + "normalized_name": "piece shogi" + }, + { + "appid": 3121570, + "normalized_name": "wits' end labyrinth" + }, + { + "appid": 3121580, + "normalized_name": "devil's derby" + }, + { + "appid": 3121600, + "normalized_name": "habilis" + }, + { + "appid": 3121610, + "normalized_name": "ntr loop" + }, + { + "appid": 3121620, + "normalized_name": "the king cat clicker" + }, + { + "appid": 3121630, + "normalized_name": "nightwatch at the hopkins' cliffside" + }, + { + "appid": 3121640, + "normalized_name": "tiles puzzle" + }, + { + "appid": 3121650, + "normalized_name": "hydrangea" + }, + { + "appid": 3121680, + "normalized_name": "warcoven" + }, + { + "appid": 3121710, + "normalized_name": "calmplace" + }, + { + "appid": 3121780, + "normalized_name": "i commissioned some ladybugs 4" + }, + { + "appid": 3121800, + "normalized_name": "hi! these are your eyeballs" + }, + { + "appid": 3121810, + "normalized_name": "alaric" + }, + { + "appid": 3121840, + "normalized_name": "hentailive business couple" + }, + { + "appid": 3121850, + "normalized_name": "uhilant" + }, + { + "appid": 3121890, + "normalized_name": "erased" + }, + { + "appid": 3121930, + "normalized_name": "dimon the witch's pervert assistant" + }, + { + "appid": 3121960, + "normalized_name": "fightingchicken" + }, + { + "appid": 3121970, + "normalized_name": "steel covenant 钢铁盟约" + }, + { + "appid": 3121990, + "normalized_name": "never play evil" + }, + { + "appid": 3122000, + "normalized_name": "does the moon dream" + }, + { + "appid": 3122050, + "normalized_name": "take the l" + }, + { + "appid": 3122100, + "normalized_name": "the ritual" + }, + { + "appid": 3122120, + "normalized_name": "timekeeper" + }, + { + "appid": 3122150, + "normalized_name": "under the blue horizon" + }, + { + "appid": 3122170, + "normalized_name": "dream cage" + }, + { + "appid": 3122220, + "normalized_name": "mr figs" + }, + { + "appid": 3122240, + "normalized_name": "killernight" + }, + { + "appid": 3122270, + "normalized_name": "klobgniak" + }, + { + "appid": 3122290, + "normalized_name": "数字を見つけないと出られない部屋" + }, + { + "appid": 3122340, + "normalized_name": "expired meds" + }, + { + "appid": 3122360, + "normalized_name": "catbo" + }, + { + "appid": 3122370, + "normalized_name": "piratewar" + }, + { + "appid": 3122380, + "normalized_name": "arkadia" + }, + { + "appid": 3122430, + "normalized_name": "zombie invasion" + }, + { + "appid": 3122450, + "normalized_name": "cenk the chopper" + }, + { + "appid": 3122470, + "normalized_name": "boulder smash" + }, + { + "appid": 3122490, + "normalized_name": "simulator parking lot" + }, + { + "appid": 3122530, + "normalized_name": "苍空的彼端" + }, + { + "appid": 3122540, + "normalized_name": "mental hellacious" + }, + { + "appid": 3122570, + "normalized_name": "swine's revenge" + }, + { + "appid": 3122580, + "normalized_name": "milf diary i am trying to impregnate my mom" + }, + { + "appid": 3122590, + "normalized_name": "site 17" + }, + { + "appid": 3122600, + "normalized_name": "glintseeker island" + }, + { + "appid": 3122670, + "normalized_name": "ferrous digital" + }, + { + "appid": 3122690, + "normalized_name": "robo dome" + }, + { + "appid": 3122700, + "normalized_name": "vulpestale" + }, + { + "appid": 3122710, + "normalized_name": "skyline savior" + }, + { + "appid": 3122720, + "normalized_name": "defiance survivors" + }, + { + "appid": 3122740, + "normalized_name": "potato vs potato" + }, + { + "appid": 3122750, + "normalized_name": "animal connect fusion" + }, + { + "appid": 3122820, + "normalized_name": "hallway 41" + }, + { + "appid": 3122860, + "normalized_name": "lumen inferius" + }, + { + "appid": 3122890, + "normalized_name": "dark dominance ~chain control~" + }, + { + "appid": 3122900, + "normalized_name": "massage my ex bully" + }, + { + "appid": 3122910, + "normalized_name": "my ai girlfriend" + }, + { + "appid": 3122920, + "normalized_name": "fox sex farm" + }, + { + "appid": 3122930, + "normalized_name": "cosmic" + }, + { + "appid": 3122940, + "normalized_name": "the legend of piss boy 2" + }, + { + "appid": 3122950, + "normalized_name": "101 cats hidden in berlin" + }, + { + "appid": 3122970, + "normalized_name": "fallen essence" + }, + { + "appid": 3122980, + "normalized_name": "multiversal time survivors" + }, + { + "appid": 3122990, + "normalized_name": "elder legacy survival" + }, + { + "appid": 3123000, + "normalized_name": "locopets" + }, + { + "appid": 3123030, + "normalized_name": "voidzone" + }, + { + "appid": 3123060, + "normalized_name": "warlord awaji" + }, + { + "appid": 3123070, + "normalized_name": "御祝呪 oshukuju" + }, + { + "appid": 3123080, + "normalized_name": "alien weapon test grounds" + }, + { + "appid": 3123090, + "normalized_name": "naelyeojjiggi" + }, + { + "appid": 3123100, + "normalized_name": "down further" + }, + { + "appid": 3123170, + "normalized_name": "say cheese" + }, + { + "appid": 3123230, + "normalized_name": "the last gift" + }, + { + "appid": 3123250, + "normalized_name": "nightwatch closer" + }, + { + "appid": 3123290, + "normalized_name": "save" + }, + { + "appid": 3123310, + "normalized_name": "foosball runner" + }, + { + "appid": 3123320, + "normalized_name": "sort of justice chapter 1" + }, + { + "appid": 3123410, + "normalized_name": "atelier yumia the alchemist of memories & the envisioned land" + }, + { + "appid": 3123450, + "normalized_name": "idle saga" + }, + { + "appid": 3123460, + "normalized_name": "dine 'n bash" + }, + { + "appid": 3123520, + "normalized_name": "リア充爆発しろ! normies should burn!" + }, + { + "appid": 3123540, + "normalized_name": "lover's enigma" + }, + { + "appid": 3123580, + "normalized_name": "madness arena" + }, + { + "appid": 3123610, + "normalized_name": "skyward steps together" + }, + { + "appid": 3123630, + "normalized_name": "real life day threesome" + }, + { + "appid": 3123650, + "normalized_name": "growing wild" + }, + { + "appid": 3123700, + "normalized_name": "greenhaven realms idle rpg" + }, + { + "appid": 3123780, + "normalized_name": "under death" + }, + { + "appid": 3123790, + "normalized_name": "stack 'em up" + }, + { + "appid": 3123800, + "normalized_name": "tempest tower" + }, + { + "appid": 3123830, + "normalized_name": "诡墓" + }, + { + "appid": 3123880, + "normalized_name": "waifu beach bar" + }, + { + "appid": 3123920, + "normalized_name": "coral & the abyss" + }, + { + "appid": 3123980, + "normalized_name": "silent express" + }, + { + "appid": 3124000, + "normalized_name": "flare" + }, + { + "appid": 3124020, + "normalized_name": "darby is here forever" + }, + { + "appid": 3124030, + "normalized_name": "battle babes 2" + }, + { + "appid": 3124050, + "normalized_name": "photo playhouse" + }, + { + "appid": 3124080, + "normalized_name": "cardaire" + }, + { + "appid": 3124100, + "normalized_name": "multiplayer car chase" + }, + { + "appid": 3124130, + "normalized_name": "get down" + }, + { + "appid": 3124200, + "normalized_name": "moon and away" + }, + { + "appid": 3124210, + "normalized_name": "kanji legends" + }, + { + "appid": 3124230, + "normalized_name": "jackal" + }, + { + "appid": 3124310, + "normalized_name": "boulder dash 40th anniversary" + }, + { + "appid": 3124320, + "normalized_name": "game (not) over" + }, + { + "appid": 3124330, + "normalized_name": "mortal frame reforged in survival" + }, + { + "appid": 3124370, + "normalized_name": "shitlings" + }, + { + "appid": 3124380, + "normalized_name": "gunpyre" + }, + { + "appid": 3124390, + "normalized_name": "bat tap" + }, + { + "appid": 3124460, + "normalized_name": "september fall loneliness" + }, + { + "appid": 3124470, + "normalized_name": "savior's hand" + }, + { + "appid": 3124480, + "normalized_name": "casualmuyu" + }, + { + "appid": 3124550, + "normalized_name": "liquor store simulator" + }, + { + "appid": 3124670, + "normalized_name": "escape the garage" + }, + { + "appid": 3124710, + "normalized_name": "scuttle up" + }, + { + "appid": 3124740, + "normalized_name": "text wall" + }, + { + "appid": 3124770, + "normalized_name": "the green book" + }, + { + "appid": 3124780, + "normalized_name": "purrfect alchemy" + }, + { + "appid": 3124790, + "normalized_name": "overton" + }, + { + "appid": 3124810, + "normalized_name": "guess the flag!" + }, + { + "appid": 3124820, + "normalized_name": "tartaros" + }, + { + "appid": 3124840, + "normalized_name": "beep boop" + }, + { + "appid": 3124850, + "normalized_name": "d.o.t. defence" + }, + { + "appid": 3124860, + "normalized_name": "lunara planet ix" + }, + { + "appid": 3124870, + "normalized_name": "yacht life simulator" + }, + { + "appid": 3124900, + "normalized_name": "infiniwar" + }, + { + "appid": 3124910, + "normalized_name": "folded" + }, + { + "appid": 3124970, + "normalized_name": "scary school simulator 3" + }, + { + "appid": 3125030, + "normalized_name": "peach clicker" + }, + { + "appid": 3125050, + "normalized_name": "lust fantasy 💜" + }, + { + "appid": 3125070, + "normalized_name": "muhaboy" + }, + { + "appid": 3125080, + "normalized_name": "diana's quest 2 give back my clothes" + }, + { + "appid": 3125090, + "normalized_name": "fighting girl yuri" + }, + { + "appid": 3125120, + "normalized_name": "rodland of pipes" + }, + { + "appid": 3125150, + "normalized_name": "a maiden's serenade" + }, + { + "appid": 3125230, + "normalized_name": "landon's puzzle partay" + }, + { + "appid": 3125250, + "normalized_name": "storror parkour pro" + }, + { + "appid": 3125260, + "normalized_name": "space valkyries" + }, + { + "appid": 3125270, + "normalized_name": "square wars" + }, + { + "appid": 3125300, + "normalized_name": "silent sun" + }, + { + "appid": 3125310, + "normalized_name": "hue hue defense" + }, + { + "appid": 3125320, + "normalized_name": "isadora's edge" + }, + { + "appid": 3125350, + "normalized_name": "the distant planet" + }, + { + "appid": 3125370, + "normalized_name": "there is no escape" + }, + { + "appid": 3125400, + "normalized_name": "fightarena" + }, + { + "appid": 3125430, + "normalized_name": "hypertyper 2000" + }, + { + "appid": 3125460, + "normalized_name": "bakar game" + }, + { + "appid": 3125500, + "normalized_name": "reality core" + }, + { + "appid": 3125530, + "normalized_name": "revive of the moon(リバイブ・オブ・ザ・ムーン)" + }, + { + "appid": 3125540, + "normalized_name": "维兹之刃 blade of wiz" + }, + { + "appid": 3125550, + "normalized_name": "学校の怪談~あなたの後ろに誰かいる~" + }, + { + "appid": 3125560, + "normalized_name": "猫之旅" + }, + { + "appid": 3125570, + "normalized_name": "laundry & supermarket simulator" + }, + { + "appid": 3125590, + "normalized_name": "guntris" + }, + { + "appid": 3125600, + "normalized_name": "anzu castle gracula" + }, + { + "appid": 3125640, + "normalized_name": "通天之井the well of heaven reaching" + }, + { + "appid": 3125650, + "normalized_name": "rolling football player" + }, + { + "appid": 3125700, + "normalized_name": "planternauts" + }, + { + "appid": 3125710, + "normalized_name": "fake ducks spooky chronicles" + }, + { + "appid": 3125730, + "normalized_name": "squash ball" + }, + { + "appid": 3125750, + "normalized_name": "edens zero" + }, + { + "appid": 3125760, + "normalized_name": "ruins of dawnseeker" + }, + { + "appid": 3125820, + "normalized_name": "sisyphe" + }, + { + "appid": 3125830, + "normalized_name": "the killer" + }, + { + "appid": 3125850, + "normalized_name": "xiaomei and the flame dragon's fist" + }, + { + "appid": 3125860, + "normalized_name": "horgihugh with friends" + }, + { + "appid": 3125890, + "normalized_name": "mineral defense" + }, + { + "appid": 3125910, + "normalized_name": "the mightiest sword is mine!" + }, + { + "appid": 3125920, + "normalized_name": "hope & elpis" + }, + { + "appid": 3125930, + "normalized_name": "魔物卡牌" + }, + { + "appid": 3125970, + "normalized_name": "echo of fear vol.1 night visit" + }, + { + "appid": 3126050, + "normalized_name": "ninja shadow of the dash" + }, + { + "appid": 3126090, + "normalized_name": "arcane board" + }, + { + "appid": 3126110, + "normalized_name": "before they wake" + }, + { + "appid": 3126140, + "normalized_name": "fear of the light" + }, + { + "appid": 3126150, + "normalized_name": "bokura planet" + }, + { + "appid": 3126160, + "normalized_name": "nazar" + }, + { + "appid": 3126180, + "normalized_name": "tarisland" + }, + { + "appid": 3126200, + "normalized_name": "divine wish" + }, + { + "appid": 3126210, + "normalized_name": "overtime pay" + }, + { + "appid": 3126220, + "normalized_name": "make it count" + }, + { + "appid": 3126240, + "normalized_name": "escape the space!" + }, + { + "appid": 3126270, + "normalized_name": "tcl the cursed legacy" + }, + { + "appid": 3126280, + "normalized_name": "hentai girls maid" + }, + { + "appid": 3126290, + "normalized_name": "exploitation" + }, + { + "appid": 3126300, + "normalized_name": "dream chaser" + }, + { + "appid": 3126320, + "normalized_name": "mesopotamia the game" + }, + { + "appid": 3126330, + "normalized_name": "kiosk" + }, + { + "appid": 3126340, + "normalized_name": "burden street station" + }, + { + "appid": 3126380, + "normalized_name": "starlair" + }, + { + "appid": 3126410, + "normalized_name": "expedition into darkness" + }, + { + "appid": 3126420, + "normalized_name": "departed" + }, + { + "appid": 3126440, + "normalized_name": "the sunday" + }, + { + "appid": 3126470, + "normalized_name": "ice world" + }, + { + "appid": 3126480, + "normalized_name": "lord of metal" + }, + { + "appid": 3126490, + "normalized_name": "pawnshop 90s" + }, + { + "appid": 3126500, + "normalized_name": "states of power" + }, + { + "appid": 3126520, + "normalized_name": "calvice survival" + }, + { + "appid": 3126530, + "normalized_name": "jupiter hell classic" + }, + { + "appid": 3126560, + "normalized_name": "a mazing cheesesnake" + }, + { + "appid": 3126620, + "normalized_name": "phantom relics" + }, + { + "appid": 3126650, + "normalized_name": "freezing what if..." + }, + { + "appid": 3126660, + "normalized_name": "lips breaker 绣口吐珠" + }, + { + "appid": 3126790, + "normalized_name": "wordban a text based sokoban game" + }, + { + "appid": 3126820, + "normalized_name": "raven's daring adventure" + }, + { + "appid": 3126860, + "normalized_name": "legends of kailrate" + }, + { + "appid": 3126880, + "normalized_name": "beneath the six" + }, + { + "appid": 3126900, + "normalized_name": "the vanished soul" + }, + { + "appid": 3126980, + "normalized_name": "campus legends college basketball" + }, + { + "appid": 3126990, + "normalized_name": "plunder" + }, + { + "appid": 3127000, + "normalized_name": "splintered" + }, + { + "appid": 3127030, + "normalized_name": "hallowanderband" + }, + { + "appid": 3127240, + "normalized_name": "seeing red" + }, + { + "appid": 3127270, + "normalized_name": "101 cats hidden in india" + }, + { + "appid": 3127280, + "normalized_name": "marvel contest of champions" + }, + { + "appid": 3127290, + "normalized_name": "tiny duck hunt 3d" + }, + { + "appid": 3127320, + "normalized_name": "darkly glass" + }, + { + "appid": 3127350, + "normalized_name": "demeter" + }, + { + "appid": 3127360, + "normalized_name": "hooked!" + }, + { + "appid": 3127380, + "normalized_name": "the big adventure" + }, + { + "appid": 3127440, + "normalized_name": "101 cats hidden in ireland" + }, + { + "appid": 3127480, + "normalized_name": "cornfield" + }, + { + "appid": 3127520, + "normalized_name": "untitled project" + }, + { + "appid": 3127540, + "normalized_name": "mystery on lost island" + }, + { + "appid": 3127560, + "normalized_name": "cardinal" + }, + { + "appid": 3127570, + "normalized_name": "super platform tag" + }, + { + "appid": 3127600, + "normalized_name": "boned" + }, + { + "appid": 3127610, + "normalized_name": "ragdoll training center" + }, + { + "appid": 3127620, + "normalized_name": "etched memories" + }, + { + "appid": 3127630, + "normalized_name": "时空三分之三 tritime space" + }, + { + "appid": 3127640, + "normalized_name": "elo eterno" + }, + { + "appid": 3127650, + "normalized_name": "no strangers" + }, + { + "appid": 3127670, + "normalized_name": "galactic caretaker" + }, + { + "appid": 3127690, + "normalized_name": "paratroopers raid" + }, + { + "appid": 3127710, + "normalized_name": "concrete" + }, + { + "appid": 3127740, + "normalized_name": "farmman" + }, + { + "appid": 3127750, + "normalized_name": "pain pain go away!" + }, + { + "appid": 3127760, + "normalized_name": "在一切晴朗的日子里|on all clear days" + }, + { + "appid": 3127770, + "normalized_name": "ace strategy mecha nova" + }, + { + "appid": 3127780, + "normalized_name": "retropy vr" + }, + { + "appid": 3127870, + "normalized_name": "lu[idle]" + }, + { + "appid": 3127880, + "normalized_name": "穿越奇迹" + }, + { + "appid": 3127910, + "normalized_name": "geomancers" + }, + { + "appid": 3128000, + "normalized_name": "fishing hero" + }, + { + "appid": 3128010, + "normalized_name": "zombie blitzkrieg" + }, + { + "appid": 3128040, + "normalized_name": "逆风翻盘 one more game" + }, + { + "appid": 3128060, + "normalized_name": "oma" + }, + { + "appid": 3128080, + "normalized_name": "endless salvation" + }, + { + "appid": 3128150, + "normalized_name": "pbn da game" + }, + { + "appid": 3128190, + "normalized_name": "clicker time" + }, + { + "appid": 3128220, + "normalized_name": "nerd simulator" + }, + { + "appid": 3128240, + "normalized_name": "ostrom" + }, + { + "appid": 3128270, + "normalized_name": "light night street" + }, + { + "appid": 3128280, + "normalized_name": "cats & dice" + }, + { + "appid": 3128310, + "normalized_name": "modern fear" + }, + { + "appid": 3128440, + "normalized_name": "moments" + }, + { + "appid": 3128470, + "normalized_name": "16x16" + }, + { + "appid": 3128520, + "normalized_name": "fit my cat" + }, + { + "appid": 3128530, + "normalized_name": "萍城异闻录" + }, + { + "appid": 3128560, + "normalized_name": "spellarium 11" + }, + { + "appid": 3128570, + "normalized_name": "法医探案团之碎嘴小诗" + }, + { + "appid": 3128580, + "normalized_name": "omega 6 the triangle stars" + }, + { + "appid": 3128590, + "normalized_name": "按右键启动翻译器" + }, + { + "appid": 3128610, + "normalized_name": "plane graveyard simulator" + }, + { + "appid": 3128730, + "normalized_name": "colorsweeper" + }, + { + "appid": 3128740, + "normalized_name": "beff jezos simulator" + }, + { + "appid": 3128770, + "normalized_name": "world turned stone apocalypse" + }, + { + "appid": 3128780, + "normalized_name": "chanceball" + }, + { + "appid": 3128830, + "normalized_name": "ani" + }, + { + "appid": 3128840, + "normalized_name": "少年亚瑟:西域传说" + }, + { + "appid": 3128940, + "normalized_name": "rune ark" + }, + { + "appid": 3128950, + "normalized_name": "borıng." + }, + { + "appid": 3128980, + "normalized_name": "cat packs bushido blade" + }, + { + "appid": 3129000, + "normalized_name": "black bird" + }, + { + "appid": 3129010, + "normalized_name": "format" + }, + { + "appid": 3129020, + "normalized_name": "kingdom savannah" + }, + { + "appid": 3129050, + "normalized_name": "echoes of mora" + }, + { + "appid": 3129080, + "normalized_name": "seek & sail" + }, + { + "appid": 3129110, + "normalized_name": "camille and laura" + }, + { + "appid": 3129150, + "normalized_name": "super chillers the chat room" + }, + { + "appid": 3129170, + "normalized_name": "slidezzle" + }, + { + "appid": 3129180, + "normalized_name": "michiball" + }, + { + "appid": 3129220, + "normalized_name": "eggplant" + }, + { + "appid": 3129280, + "normalized_name": "lovely slime galaxy" + }, + { + "appid": 3129310, + "normalized_name": "paradox!" + }, + { + "appid": 3129350, + "normalized_name": "chromatic chaos" + }, + { + "appid": 3129360, + "normalized_name": "aksun" + }, + { + "appid": 3129370, + "normalized_name": "malum escape" + }, + { + "appid": 3129400, + "normalized_name": "major's heart" + }, + { + "appid": 3129420, + "normalized_name": "aspis" + }, + { + "appid": 3129570, + "normalized_name": "steel heart" + }, + { + "appid": 3129590, + "normalized_name": "metroland" + }, + { + "appid": 3129650, + "normalized_name": "101 cats hidden in mexico" + }, + { + "appid": 3129720, + "normalized_name": "cosmic raze" + }, + { + "appid": 3129760, + "normalized_name": "101 cats hidden in brazil" + }, + { + "appid": 3129770, + "normalized_name": "sealed souls" + }, + { + "appid": 3129790, + "normalized_name": "pocket legend inventory roguelike deckbuilder" + }, + { + "appid": 3129820, + "normalized_name": "end gate the last passenger" + }, + { + "appid": 3129900, + "normalized_name": "murmurs of fear a whisper of loneliness" + }, + { + "appid": 3129910, + "normalized_name": "偷猫贼" + }, + { + "appid": 3129920, + "normalized_name": "mind her manor" + }, + { + "appid": 3129930, + "normalized_name": "nonentity galaxy" + }, + { + "appid": 3129950, + "normalized_name": "旅人的紫阳" + }, + { + "appid": 3129970, + "normalized_name": "フィオと運命に抗う都市" + }, + { + "appid": 3129980, + "normalized_name": "女帝 日月明空" + }, + { + "appid": 3130060, + "normalized_name": "move out manor" + }, + { + "appid": 3130080, + "normalized_name": "prison break princess" + }, + { + "appid": 3130110, + "normalized_name": "haruka na sora" + }, + { + "appid": 3130120, + "normalized_name": "sushi drop" + }, + { + "appid": 3130160, + "normalized_name": "ultra sudoku" + }, + { + "appid": 3130170, + "normalized_name": "full metal sergeant 2" + }, + { + "appid": 3130220, + "normalized_name": "sagas of lumin" + }, + { + "appid": 3130340, + "normalized_name": "bean there won that" + }, + { + "appid": 3130390, + "normalized_name": "pretty underground" + }, + { + "appid": 3130400, + "normalized_name": "terrifier the artcade game" + }, + { + "appid": 3130420, + "normalized_name": "my own murder" + }, + { + "appid": 3130430, + "normalized_name": "test dummy takedown" + }, + { + "appid": 3130440, + "normalized_name": "unterholz" + }, + { + "appid": 3130660, + "normalized_name": "sunken veins" + }, + { + "appid": 3130670, + "normalized_name": "senchu/線虫" + }, + { + "appid": 3130690, + "normalized_name": "bomball" + }, + { + "appid": 3130720, + "normalized_name": "wildlife warfare" + }, + { + "appid": 3130730, + "normalized_name": "e trading simulator prologue" + }, + { + "appid": 3130760, + "normalized_name": "the liminal theory" + }, + { + "appid": 3130800, + "normalized_name": "find my frogs" + }, + { + "appid": 3130830, + "normalized_name": "寻光述 百草" + }, + { + "appid": 3130880, + "normalized_name": "solaria" + }, + { + "appid": 3130890, + "normalized_name": "bugs beasts & beyond" + }, + { + "appid": 3130920, + "normalized_name": "code breaker" + }, + { + "appid": 3130940, + "normalized_name": "compass of destiny istanbul prologue" + }, + { + "appid": 3130950, + "normalized_name": "tankmageddon" + }, + { + "appid": 3130960, + "normalized_name": "camelbirds" + }, + { + "appid": 3130980, + "normalized_name": "three alpha one nine" + }, + { + "appid": 3131240, + "normalized_name": "loss" + }, + { + "appid": 3131250, + "normalized_name": "grandpa bread adventure" + }, + { + "appid": 3131280, + "normalized_name": "boxville 2" + }, + { + "appid": 3131290, + "normalized_name": "abomi nation monster rifts" + }, + { + "appid": 3131310, + "normalized_name": "akira making fest together" + }, + { + "appid": 3131340, + "normalized_name": "lelu" + }, + { + "appid": 3131400, + "normalized_name": "mini lax sim 24" + }, + { + "appid": 3131510, + "normalized_name": "scribe" + }, + { + "appid": 3131560, + "normalized_name": "boötes" + }, + { + "appid": 3131610, + "normalized_name": "bread" + }, + { + "appid": 3131620, + "normalized_name": "the oldest view rolling giant" + }, + { + "appid": 3131680, + "normalized_name": "stardust skate" + }, + { + "appid": 3131690, + "normalized_name": "cargo delivery simulator" + }, + { + "appid": 3131700, + "normalized_name": "captain corgi planetary problem solver" + }, + { + "appid": 3131770, + "normalized_name": "arch legends" + }, + { + "appid": 3131780, + "normalized_name": "legends' battlegrounds" + }, + { + "appid": 3131800, + "normalized_name": "hide time" + }, + { + "appid": 3131880, + "normalized_name": "the lubs true alliance" + }, + { + "appid": 3131910, + "normalized_name": "white bridge" + }, + { + "appid": 3131970, + "normalized_name": "baguette wars" + }, + { + "appid": 3131980, + "normalized_name": "peech world" + }, + { + "appid": 3132000, + "normalized_name": "gondola passing through" + }, + { + "appid": 3132010, + "normalized_name": "けものミチ" + }, + { + "appid": 3132090, + "normalized_name": "あめいず" + }, + { + "appid": 3132110, + "normalized_name": "kitchen trials rush" + }, + { + "appid": 3132160, + "normalized_name": "football legacy manager 25" + }, + { + "appid": 3132170, + "normalized_name": "ハメ撮りシミュレーター" + }, + { + "appid": 3132180, + "normalized_name": "echo" + }, + { + "appid": 3132210, + "normalized_name": "fisht fight" + }, + { + "appid": 3132240, + "normalized_name": "agents of spleef" + }, + { + "appid": 3132250, + "normalized_name": "heian city story" + }, + { + "appid": 3132270, + "normalized_name": "conflux" + }, + { + "appid": 3132310, + "normalized_name": "restraint combat erotic rpg elpis aigis" + }, + { + "appid": 3132330, + "normalized_name": "mysteries of the crypt" + }, + { + "appid": 3132440, + "normalized_name": "furion chronicles 3" + }, + { + "appid": 3132460, + "normalized_name": "no ducks given" + }, + { + "appid": 3132570, + "normalized_name": "streep" + }, + { + "appid": 3132580, + "normalized_name": "martin northwood" + }, + { + "appid": 3132610, + "normalized_name": "antidotera" + }, + { + "appid": 3132630, + "normalized_name": "play chess with lady bongcloud" + }, + { + "appid": 3132640, + "normalized_name": "berserk world" + }, + { + "appid": 3132670, + "normalized_name": "keep deep sheep" + }, + { + "appid": 3132770, + "normalized_name": "シシテナオ even in death" + }, + { + "appid": 3132780, + "normalized_name": "forestygian" + }, + { + "appid": 3132830, + "normalized_name": "sushicat bento" + }, + { + "appid": 3132860, + "normalized_name": "天月麻雀 (amatsuki mahjong)" + }, + { + "appid": 3132870, + "normalized_name": "darkswitch" + }, + { + "appid": 3132910, + "normalized_name": "free cat" + }, + { + "appid": 3132930, + "normalized_name": "monument valley 3" + }, + { + "appid": 3132950, + "normalized_name": "endme" + }, + { + "appid": 3132970, + "normalized_name": "abandoned city" + }, + { + "appid": 3133020, + "normalized_name": "your tree" + }, + { + "appid": 3133060, + "normalized_name": "gnomes" + }, + { + "appid": 3133110, + "normalized_name": "one shot arena" + }, + { + "appid": 3133120, + "normalized_name": "minesweeper sonar" + }, + { + "appid": 3133130, + "normalized_name": "syncanite foundation" + }, + { + "appid": 3133140, + "normalized_name": "square fishing builder" + }, + { + "appid": 3133150, + "normalized_name": "opioid visions 88" + }, + { + "appid": 3133180, + "normalized_name": "island clicker" + }, + { + "appid": 3133210, + "normalized_name": "bargan's treasure" + }, + { + "appid": 3133220, + "normalized_name": "mafate" + }, + { + "appid": 3133250, + "normalized_name": "desk fantasy" + }, + { + "appid": 3133270, + "normalized_name": "totally defenceless" + }, + { + "appid": 3133320, + "normalized_name": "eternal skies tcg" + }, + { + "appid": 3133340, + "normalized_name": "velvet 89" + }, + { + "appid": 3133380, + "normalized_name": "profiteer" + }, + { + "appid": 3133390, + "normalized_name": "bouncing agency" + }, + { + "appid": 3133400, + "normalized_name": "light path of the archmage" + }, + { + "appid": 3133420, + "normalized_name": "oaths against the darkness" + }, + { + "appid": 3133440, + "normalized_name": "rescue" + }, + { + "appid": 3133480, + "normalized_name": "climbing with silly cat" + }, + { + "appid": 3133500, + "normalized_name": "bimbo blaster" + }, + { + "appid": 3133530, + "normalized_name": "ser chub's adventure" + }, + { + "appid": 3133560, + "normalized_name": "demon quest" + }, + { + "appid": 3133570, + "normalized_name": "spellbit" + }, + { + "appid": 3133580, + "normalized_name": "cheese co op clicker simulator" + }, + { + "appid": 3133590, + "normalized_name": "lost gorga" + }, + { + "appid": 3133600, + "normalized_name": "worlds explorers" + }, + { + "appid": 3133610, + "normalized_name": "sivi's factory" + }, + { + "appid": 3133640, + "normalized_name": "train to hong kong" + }, + { + "appid": 3133650, + "normalized_name": "gold gold adventure gold" + }, + { + "appid": 3133740, + "normalized_name": "harder" + }, + { + "appid": 3133760, + "normalized_name": "amazon passion" + }, + { + "appid": 3133790, + "normalized_name": "swingers" + }, + { + "appid": 3133870, + "normalized_name": "retro rally" + }, + { + "appid": 3133930, + "normalized_name": "exo mayhem" + }, + { + "appid": 3133950, + "normalized_name": "grind rush" + }, + { + "appid": 3134030, + "normalized_name": "the last hero" + }, + { + "appid": 3134050, + "normalized_name": "backwater eulogy" + }, + { + "appid": 3134120, + "normalized_name": "retro dungeons" + }, + { + "appid": 3134130, + "normalized_name": "the curse of the demon tree" + }, + { + "appid": 3134140, + "normalized_name": "small maze" + }, + { + "appid": 3134280, + "normalized_name": "piczle cross rune factory" + }, + { + "appid": 3134380, + "normalized_name": "fallen goddesses" + }, + { + "appid": 3134480, + "normalized_name": "sightless mind" + }, + { + "appid": 3134490, + "normalized_name": "dead metro" + }, + { + "appid": 3134530, + "normalized_name": "inconvenience store" + }, + { + "appid": 3134540, + "normalized_name": "ufo" + }, + { + "appid": 3134550, + "normalized_name": "kaf village" + }, + { + "appid": 3134560, + "normalized_name": "totomi trainer" + }, + { + "appid": 3134570, + "normalized_name": "sorcerer's servant" + }, + { + "appid": 3134590, + "normalized_name": "the prison of infinity code – krylosis" + }, + { + "appid": 3134600, + "normalized_name": "family secrets mommy" + }, + { + "appid": 3134610, + "normalized_name": "slave of the police officer" + }, + { + "appid": 3134670, + "normalized_name": "border patrol" + }, + { + "appid": 3134690, + "normalized_name": "superducks" + }, + { + "appid": 3134710, + "normalized_name": "the green wizard gnome" + }, + { + "appid": 3134730, + "normalized_name": "двери (the doors)" + }, + { + "appid": 3134740, + "normalized_name": "wiseguys the commission" + }, + { + "appid": 3134750, + "normalized_name": "solar survival space battle simulator" + }, + { + "appid": 3134760, + "normalized_name": "tribal ritual" + }, + { + "appid": 3134780, + "normalized_name": "born to breed" + }, + { + "appid": 3134790, + "normalized_name": "dreadborne dungeon" + }, + { + "appid": 3134810, + "normalized_name": "nebelmer" + }, + { + "appid": 3134830, + "normalized_name": "flea!2" + }, + { + "appid": 3134840, + "normalized_name": "lightray" + }, + { + "appid": 3134870, + "normalized_name": "the golden retreat" + }, + { + "appid": 3134880, + "normalized_name": "kingdom's architect" + }, + { + "appid": 3134910, + "normalized_name": "tomorrow's day" + }, + { + "appid": 3134920, + "normalized_name": "themis" + }, + { + "appid": 3134940, + "normalized_name": "emptyegg puzzle" + }, + { + "appid": 3134990, + "normalized_name": "i'd kiss that fish" + }, + { + "appid": 3135010, + "normalized_name": "evan brodo's gone fishin'" + }, + { + "appid": 3135030, + "normalized_name": "deep tactics journey of the wizard" + }, + { + "appid": 3135050, + "normalized_name": "cursed ones" + }, + { + "appid": 3135070, + "normalized_name": "prop hunt planet" + }, + { + "appid": 3135090, + "normalized_name": "stonerill" + }, + { + "appid": 3135110, + "normalized_name": "madness starts young" + }, + { + "appid": 3135150, + "normalized_name": "master rng" + }, + { + "appid": 3135160, + "normalized_name": "gridlock" + }, + { + "appid": 3135170, + "normalized_name": "orbit puzzle" + }, + { + "appid": 3135200, + "normalized_name": "legacy of defense" + }, + { + "appid": 3135220, + "normalized_name": "pixeplorer" + }, + { + "appid": 3135240, + "normalized_name": "intergalactic storage clearance" + }, + { + "appid": 3135250, + "normalized_name": "deckception" + }, + { + "appid": 3135260, + "normalized_name": "blueman" + }, + { + "appid": 3135270, + "normalized_name": "slasher" + }, + { + "appid": 3135350, + "normalized_name": "qubicks" + }, + { + "appid": 3135380, + "normalized_name": "verse project" + }, + { + "appid": 3135400, + "normalized_name": "the robots hope" + }, + { + "appid": 3135410, + "normalized_name": "修仙记——消消乐乱斗" + }, + { + "appid": 3135450, + "normalized_name": "towerup breakout" + }, + { + "appid": 3135490, + "normalized_name": "satisfrustration" + }, + { + "appid": 3135500, + "normalized_name": "大犬座alpha" + }, + { + "appid": 3135530, + "normalized_name": "finn dorset's institute for livestock replication" + }, + { + "appid": 3135550, + "normalized_name": "pokerball" + }, + { + "appid": 3135560, + "normalized_name": "chasm" + }, + { + "appid": 3135570, + "normalized_name": "combatant" + }, + { + "appid": 3135580, + "normalized_name": "demolish" + }, + { + "appid": 3135600, + "normalized_name": "水浒群豪传 (tale of heroes in water margin)" + }, + { + "appid": 3135610, + "normalized_name": "ghostslayers" + }, + { + "appid": 3135620, + "normalized_name": "warp gate galactic" + }, + { + "appid": 3135630, + "normalized_name": "unite the party" + }, + { + "appid": 3135640, + "normalized_name": "泉水镇·居民的反击💩" + }, + { + "appid": 3135690, + "normalized_name": "反转重力" + }, + { + "appid": 3135800, + "normalized_name": "fishing cat" + }, + { + "appid": 3135830, + "normalized_name": "space game" + }, + { + "appid": 3135840, + "normalized_name": "hirogami" + }, + { + "appid": 3135850, + "normalized_name": "fighter pixel" + }, + { + "appid": 3135870, + "normalized_name": "little knight" + }, + { + "appid": 3135880, + "normalized_name": "dragon's dog mother" + }, + { + "appid": 3135890, + "normalized_name": "fighter thunder" + }, + { + "appid": 3135900, + "normalized_name": "dawn of survivor" + }, + { + "appid": 3135910, + "normalized_name": "the rabbit and tamaki are taking a break!2" + }, + { + "appid": 3135920, + "normalized_name": "time riggers" + }, + { + "appid": 3135930, + "normalized_name": "milfylicious chapter i" + }, + { + "appid": 3135970, + "normalized_name": "el virus" + }, + { + "appid": 3135980, + "normalized_name": "nasal nomad sniffer's delight" + }, + { + "appid": 3135990, + "normalized_name": "finnish cabin mayhem mökkimähinä" + }, + { + "appid": 3136000, + "normalized_name": "they are rising" + }, + { + "appid": 3136020, + "normalized_name": "my cheetah friend" + }, + { + "appid": 3136030, + "normalized_name": "geometry shooter" + }, + { + "appid": 3136040, + "normalized_name": "the void below" + }, + { + "appid": 3136070, + "normalized_name": "sportvida cyberdash" + }, + { + "appid": 3136090, + "normalized_name": "make your choice" + }, + { + "appid": 3136130, + "normalized_name": "metroloop" + }, + { + "appid": 3136140, + "normalized_name": "bombocat" + }, + { + "appid": 3136150, + "normalized_name": "dates & wires augmented" + }, + { + "appid": 3136160, + "normalized_name": "false ages i dark lords of hermad" + }, + { + "appid": 3136170, + "normalized_name": "e fcc" + }, + { + "appid": 3136180, + "normalized_name": "voltaria" + }, + { + "appid": 3136190, + "normalized_name": "boxed in" + }, + { + "appid": 3136220, + "normalized_name": "girls vs tentacles" + }, + { + "appid": 3136230, + "normalized_name": "69 love" + }, + { + "appid": 3136250, + "normalized_name": "valkyrie's legacy" + }, + { + "appid": 3136260, + "normalized_name": "wowo island" + }, + { + "appid": 3136270, + "normalized_name": "alaska solitaire classic card game" + }, + { + "appid": 3136300, + "normalized_name": "canfield solitaire classic card game" + }, + { + "appid": 3136310, + "normalized_name": "scorpion solitaire classic card game" + }, + { + "appid": 3136320, + "normalized_name": "my infamous dungeon" + }, + { + "appid": 3136330, + "normalized_name": "tiny terraces" + }, + { + "appid": 3136340, + "normalized_name": "echoes below" + }, + { + "appid": 3136350, + "normalized_name": "hidey ducks seasons" + }, + { + "appid": 3136380, + "normalized_name": "space menace 2" + }, + { + "appid": 3136400, + "normalized_name": "the train station" + }, + { + "appid": 3136420, + "normalized_name": "king of the pirates" + }, + { + "appid": 3136450, + "normalized_name": "arcane spark" + }, + { + "appid": 3136460, + "normalized_name": "ground water episode of dhanra" + }, + { + "appid": 3136490, + "normalized_name": "echoes of the architects" + }, + { + "appid": 3136510, + "normalized_name": "motor tournament" + }, + { + "appid": 3136530, + "normalized_name": "escape of the hammer princess" + }, + { + "appid": 3136540, + "normalized_name": "one tap stories (ots)" + }, + { + "appid": 3136550, + "normalized_name": "cat fusion quest" + }, + { + "appid": 3136560, + "normalized_name": "ragdoll universe" + }, + { + "appid": 3136570, + "normalized_name": "maze craze" + }, + { + "appid": 3136590, + "normalized_name": "cycle of steel" + }, + { + "appid": 3136690, + "normalized_name": "typing fury around the world" + }, + { + "appid": 3136740, + "normalized_name": "alchemy" + }, + { + "appid": 3136850, + "normalized_name": "kafkaesque the nightmare trial" + }, + { + "appid": 3136880, + "normalized_name": "我与她们的大学画相" + }, + { + "appid": 3136890, + "normalized_name": "chronicles of ultiria" + }, + { + "appid": 3136930, + "normalized_name": "gnome expedition" + }, + { + "appid": 3137000, + "normalized_name": "planet strike" + }, + { + "appid": 3137010, + "normalized_name": "meat engine" + }, + { + "appid": 3137040, + "normalized_name": "tempaux" + }, + { + "appid": 3137050, + "normalized_name": "magicland" + }, + { + "appid": 3137070, + "normalized_name": "地府行记" + }, + { + "appid": 3137100, + "normalized_name": "where girls are made" + }, + { + "appid": 3137110, + "normalized_name": "sacrifice villains" + }, + { + "appid": 3137130, + "normalized_name": "my dictator stalin can't be this cute ?!" + }, + { + "appid": 3137150, + "normalized_name": "infiltrate & extract" + }, + { + "appid": 3137160, + "normalized_name": "hello user!" + }, + { + "appid": 3137190, + "normalized_name": "animus non grata" + }, + { + "appid": 3137220, + "normalized_name": "crimescenecleaners|特殊清掃" + }, + { + "appid": 3137240, + "normalized_name": "mystical maritime adventure" + }, + { + "appid": 3137290, + "normalized_name": "justmatching" + }, + { + "appid": 3137300, + "normalized_name": "bathdad" + }, + { + "appid": 3137310, + "normalized_name": "compactory" + }, + { + "appid": 3137320, + "normalized_name": "big adventure trip to europe 8 collector's" + }, + { + "appid": 3137340, + "normalized_name": "love ! again ... episode 1 & 2" + }, + { + "appid": 3137350, + "normalized_name": "motion soccer pro" + }, + { + "appid": 3137370, + "normalized_name": "trap with furry femboy" + }, + { + "appid": 3137450, + "normalized_name": "roost" + }, + { + "appid": 3137460, + "normalized_name": "death moon" + }, + { + "appid": 3137500, + "normalized_name": "emyliveshow how to write a bestseller" + }, + { + "appid": 3137510, + "normalized_name": "paper trails a scrapbooking story" + }, + { + "appid": 3137520, + "normalized_name": "gun factory simulator" + }, + { + "appid": 3137530, + "normalized_name": "escape from mutation station" + }, + { + "appid": 3137550, + "normalized_name": "halloween picket maze" + }, + { + "appid": 3137560, + "normalized_name": "the liminal dimension" + }, + { + "appid": 3137640, + "normalized_name": "h.a.r.d." + }, + { + "appid": 3137670, + "normalized_name": "墨缇斯:霾影季度" + }, + { + "appid": 3137690, + "normalized_name": "mini mania" + }, + { + "appid": 3137740, + "normalized_name": "sonar scout" + }, + { + "appid": 3137780, + "normalized_name": "on a wheel" + }, + { + "appid": 3137800, + "normalized_name": "viking survivors the last ragnarök" + }, + { + "appid": 3137820, + "normalized_name": "mystical riddles haunted portraits collector's" + }, + { + "appid": 3137840, + "normalized_name": "fishing valley" + }, + { + "appid": 3137880, + "normalized_name": "anthill village" + }, + { + "appid": 3137910, + "normalized_name": "spiritgrapher the asylum 99" + }, + { + "appid": 3137920, + "normalized_name": "the ancestors" + }, + { + "appid": 3137930, + "normalized_name": "impetum" + }, + { + "appid": 3137960, + "normalized_name": "deepest dungeons" + }, + { + "appid": 3138020, + "normalized_name": "quantum of hope" + }, + { + "appid": 3138060, + "normalized_name": "esport manager road to major" + }, + { + "appid": 3138090, + "normalized_name": "東方聖戦影 ~ forlorn souls of wicked past" + }, + { + "appid": 3138100, + "normalized_name": "extreme overtake" + }, + { + "appid": 3138140, + "normalized_name": "this chicken got hands" + }, + { + "appid": 3138170, + "normalized_name": "bite sized scares" + }, + { + "appid": 3138210, + "normalized_name": "high score" + }, + { + "appid": 3138220, + "normalized_name": "the tales of the magical space dough rebaked" + }, + { + "appid": 3138230, + "normalized_name": "lap of the gods a visual novel" + }, + { + "appid": 3138270, + "normalized_name": "stux.net" + }, + { + "appid": 3138280, + "normalized_name": "popit!" + }, + { + "appid": 3138350, + "normalized_name": "siegecaster" + }, + { + "appid": 3138360, + "normalized_name": "transmemory" + }, + { + "appid": 3138370, + "normalized_name": "bundle of joy" + }, + { + "appid": 3138380, + "normalized_name": "throneheir" + }, + { + "appid": 3138400, + "normalized_name": "idolz" + }, + { + "appid": 3138410, + "normalized_name": "lost puffin" + }, + { + "appid": 3138420, + "normalized_name": "mother" + }, + { + "appid": 3138430, + "normalized_name": "a place far away" + }, + { + "appid": 3138440, + "normalized_name": "bàito" + }, + { + "appid": 3138460, + "normalized_name": "wolfgirl roommate" + }, + { + "appid": 3138480, + "normalized_name": "the living shadows" + }, + { + "appid": 3138500, + "normalized_name": "the simp 舔狗" + }, + { + "appid": 3138510, + "normalized_name": "armor stride" + }, + { + "appid": 3138520, + "normalized_name": "to clean the mountain" + }, + { + "appid": 3138570, + "normalized_name": "unicycle pizza time!" + }, + { + "appid": 3138580, + "normalized_name": "transmorphosis" + }, + { + "appid": 3138610, + "normalized_name": "the mafia and mom" + }, + { + "appid": 3138640, + "normalized_name": "president 47 trump" + }, + { + "appid": 3138660, + "normalized_name": "excessive speed" + }, + { + "appid": 3138680, + "normalized_name": "akimbo kung fu hero" + }, + { + "appid": 3138690, + "normalized_name": "billy blade temple of time" + }, + { + "appid": 3138760, + "normalized_name": "+ pc maker" + }, + { + "appid": 3138780, + "normalized_name": "do no harm" + }, + { + "appid": 3138790, + "normalized_name": "the royal office of magick affairs" + }, + { + "appid": 3138800, + "normalized_name": "twizzle puzzle dragons" + }, + { + "appid": 3138840, + "normalized_name": "island survival escape from paradise" + }, + { + "appid": 3138890, + "normalized_name": "just another platformer" + }, + { + "appid": 3138910, + "normalized_name": "bio fault" + }, + { + "appid": 3138940, + "normalized_name": "wyvern creations crossbow hunter" + }, + { + "appid": 3138970, + "normalized_name": "delivery to graveyard manor" + }, + { + "appid": 3138980, + "normalized_name": "virtuále heist simulations" + }, + { + "appid": 3139060, + "normalized_name": "chico's rebound" + }, + { + "appid": 3139070, + "normalized_name": "peter pan hidden objects" + }, + { + "appid": 3139120, + "normalized_name": "three verses³" + }, + { + "appid": 3139140, + "normalized_name": "this is not your house" + }, + { + "appid": 3139160, + "normalized_name": "7 ate 9" + }, + { + "appid": 3139180, + "normalized_name": "dynasty's defender the scroll's curse" + }, + { + "appid": 3139190, + "normalized_name": "forest dump prologue" + }, + { + "appid": 3139250, + "normalized_name": "time of war airstrike" + }, + { + "appid": 3139260, + "normalized_name": "asphodelium" + }, + { + "appid": 3139270, + "normalized_name": "dice with the devil" + }, + { + "appid": 3139280, + "normalized_name": "opus cortex a nonogram puzzle story" + }, + { + "appid": 3139290, + "normalized_name": "life of a lonely indie game developer" + }, + { + "appid": 3139370, + "normalized_name": "chuzzo" + }, + { + "appid": 3139380, + "normalized_name": "trash wars" + }, + { + "appid": 3139390, + "normalized_name": "crónicas de nueva estrella uno" + }, + { + "appid": 3139430, + "normalized_name": "monster house racing" + }, + { + "appid": 3139440, + "normalized_name": "gunz the duel" + }, + { + "appid": 3139470, + "normalized_name": "guy who sells jars" + }, + { + "appid": 3139480, + "normalized_name": "疯狂动物团" + }, + { + "appid": 3139500, + "normalized_name": "plant girls insect invasion" + }, + { + "appid": 3139510, + "normalized_name": "the wungo dungo surprise" + }, + { + "appid": 3139530, + "normalized_name": "中年失业模拟器2 when a man lose his job 2" + }, + { + "appid": 3139540, + "normalized_name": "countin' stars" + }, + { + "appid": 3139550, + "normalized_name": "cappu dungeon" + }, + { + "appid": 3139560, + "normalized_name": "numbers of everything" + }, + { + "appid": 3139580, + "normalized_name": "circuit artist" + }, + { + "appid": 3139610, + "normalized_name": "tacticalpulse" + }, + { + "appid": 3139620, + "normalized_name": "frontline crisis" + }, + { + "appid": 3139640, + "normalized_name": "meow mission" + }, + { + "appid": 3139670, + "normalized_name": "h·p超自然事件档案" + }, + { + "appid": 3139680, + "normalized_name": "throne clash" + }, + { + "appid": 3139690, + "normalized_name": "mage's legacy" + }, + { + "appid": 3139720, + "normalized_name": "cast iron flowers" + }, + { + "appid": 3139730, + "normalized_name": "rubber head bob" + }, + { + "appid": 3139760, + "normalized_name": "the long road home" + }, + { + "appid": 3139930, + "normalized_name": "ぶいちゅ~バトル登録者数じゃない!力で決める!" + }, + { + "appid": 3140050, + "normalized_name": "cage city" + }, + { + "appid": 3140060, + "normalized_name": "false spider" + }, + { + "appid": 3140100, + "normalized_name": "vain uprising" + }, + { + "appid": 3140110, + "normalized_name": "babette" + }, + { + "appid": 3140120, + "normalized_name": "wordatro!" + }, + { + "appid": 3140130, + "normalized_name": "みんなで空気読み。4" + }, + { + "appid": 3140160, + "normalized_name": "toward dawn" + }, + { + "appid": 3140170, + "normalized_name": "sexy memory puzzle gamer girl" + }, + { + "appid": 3140180, + "normalized_name": "thysiastery" + }, + { + "appid": 3140190, + "normalized_name": "god save the queens!" + }, + { + "appid": 3140230, + "normalized_name": "drunk driver" + }, + { + "appid": 3140250, + "normalized_name": "vicrew" + }, + { + "appid": 3140290, + "normalized_name": "evoids" + }, + { + "appid": 3140330, + "normalized_name": "the fall act i" + }, + { + "appid": 3140340, + "normalized_name": "pimon" + }, + { + "appid": 3140360, + "normalized_name": "ai pals" + }, + { + "appid": 3140410, + "normalized_name": "喘息 respite" + }, + { + "appid": 3140420, + "normalized_name": "touko in underland" + }, + { + "appid": 3140430, + "normalized_name": "burger flipper a fast food restaurant simulator" + }, + { + "appid": 3140540, + "normalized_name": "the silence" + }, + { + "appid": 3140550, + "normalized_name": "egyptian punishment" + }, + { + "appid": 3140620, + "normalized_name": "c.a.s.t. (chernozem anomaly strike team)" + }, + { + "appid": 3140660, + "normalized_name": "cendovia uprising" + }, + { + "appid": 3140710, + "normalized_name": "trellis" + }, + { + "appid": 3140720, + "normalized_name": "ritual party" + }, + { + "appid": 3140740, + "normalized_name": "sanarah" + }, + { + "appid": 3140750, + "normalized_name": "waifu world" + }, + { + "appid": 3140800, + "normalized_name": "sex machina" + }, + { + "appid": 3140810, + "normalized_name": "d3ad hand" + }, + { + "appid": 3140860, + "normalized_name": "discover old d'hanis" + }, + { + "appid": 3140900, + "normalized_name": "boxed fortress defend the throne" + }, + { + "appid": 3140910, + "normalized_name": "100th bug brigade" + }, + { + "appid": 3140920, + "normalized_name": "borubots" + }, + { + "appid": 3140980, + "normalized_name": "no paint no gain" + }, + { + "appid": 3140990, + "normalized_name": "backrooms cleanup crew" + }, + { + "appid": 3141000, + "normalized_name": "myrtle grove a clair v. mystery" + }, + { + "appid": 3141020, + "normalized_name": "緋雪千夜 remaster" + }, + { + "appid": 3141070, + "normalized_name": "100 indonesia cats" + }, + { + "appid": 3141080, + "normalized_name": "100 fantasy cats" + }, + { + "appid": 3141090, + "normalized_name": "100 thailand cats" + }, + { + "appid": 3141120, + "normalized_name": "100 china cats" + }, + { + "appid": 3141130, + "normalized_name": "100 italy cats" + }, + { + "appid": 3141140, + "normalized_name": "100 sea cats" + }, + { + "appid": 3141170, + "normalized_name": "microbial sector" + }, + { + "appid": 3141210, + "normalized_name": "words guesser" + }, + { + "appid": 3141220, + "normalized_name": "collateral" + }, + { + "appid": 3141250, + "normalized_name": "rapax" + }, + { + "appid": 3141270, + "normalized_name": "barbarian outpost" + }, + { + "appid": 3141310, + "normalized_name": "inkshade" + }, + { + "appid": 3141330, + "normalized_name": "of lies and rain" + }, + { + "appid": 3141340, + "normalized_name": "bananitro" + }, + { + "appid": 3141360, + "normalized_name": "levana horror tale" + }, + { + "appid": 3141390, + "normalized_name": "graft" + }, + { + "appid": 3141420, + "normalized_name": "mirrormind" + }, + { + "appid": 3141480, + "normalized_name": "immortals revenge" + }, + { + "appid": 3141500, + "normalized_name": "塔防神马都是浮云" + }, + { + "appid": 3141520, + "normalized_name": "escape game galleria" + }, + { + "appid": 3141530, + "normalized_name": "goo ed together" + }, + { + "appid": 3141580, + "normalized_name": "台北仲夏夜之梦" + }, + { + "appid": 3141630, + "normalized_name": "montabi" + }, + { + "appid": 3141720, + "normalized_name": "monster battles" + }, + { + "appid": 3141750, + "normalized_name": "physioarchitect" + }, + { + "appid": 3141810, + "normalized_name": "战姬回廊" + }, + { + "appid": 3141840, + "normalized_name": "security guard sex episode 4" + }, + { + "appid": 3141860, + "normalized_name": "i come in peace" + }, + { + "appid": 3141870, + "normalized_name": "twilight ferry" + }, + { + "appid": 3141890, + "normalized_name": "night of the black goat" + }, + { + "appid": 3141900, + "normalized_name": "saintess eruna and the lustful book of corruption ~busty sister's h services~" + }, + { + "appid": 3141910, + "normalized_name": "out of your mind" + }, + { + "appid": 3141960, + "normalized_name": "catmorphosis" + }, + { + "appid": 3141990, + "normalized_name": "the succubus queen and the holy sword" + }, + { + "appid": 3142050, + "normalized_name": "warborne above ashes" + }, + { + "appid": 3142060, + "normalized_name": "mine from here" + }, + { + "appid": 3142130, + "normalized_name": "trouble in cookie town" + }, + { + "appid": 3142140, + "normalized_name": "old timer transport" + }, + { + "appid": 3142170, + "normalized_name": "eseal reject reclaim redeem" + }, + { + "appid": 3142230, + "normalized_name": "wummsen village" + }, + { + "appid": 3142280, + "normalized_name": "浮生若梦 蜀宫" + }, + { + "appid": 3142290, + "normalized_name": "carnival heroes super party minigames" + }, + { + "appid": 3142400, + "normalized_name": "scourge of war gettysburg" + }, + { + "appid": 3142470, + "normalized_name": "shellbound" + }, + { + "appid": 3142500, + "normalized_name": "the last viking" + }, + { + "appid": 3142570, + "normalized_name": "text your life" + }, + { + "appid": 3142580, + "normalized_name": "kunoichi keiko the lust village" + }, + { + "appid": 3142590, + "normalized_name": "vampire nights horny secret" + }, + { + "appid": 3142630, + "normalized_name": "blazing balls" + }, + { + "appid": 3142760, + "normalized_name": "209" + }, + { + "appid": 3142780, + "normalized_name": "wordlike" + }, + { + "appid": 3142790, + "normalized_name": "lustful chemistry" + }, + { + "appid": 3142800, + "normalized_name": "aam aadmi आम आदमी" + }, + { + "appid": 3142860, + "normalized_name": "queeny army 2" + }, + { + "appid": 3142890, + "normalized_name": "clash of swords and beams" + }, + { + "appid": 3142900, + "normalized_name": "wizard of oz hidden objects" + }, + { + "appid": 3142930, + "normalized_name": "unplugged" + }, + { + "appid": 3142940, + "normalized_name": "planet miners" + }, + { + "appid": 3142980, + "normalized_name": "room invaderz" + }, + { + "appid": 3143000, + "normalized_name": "dr. priori’s time escape" + }, + { + "appid": 3143080, + "normalized_name": "mr. hopp's playhouse 2 hd" + }, + { + "appid": 3143090, + "normalized_name": "valley of tribes" + }, + { + "appid": 3143100, + "normalized_name": "scrap age survivors" + }, + { + "appid": 3143110, + "normalized_name": "elden sword" + }, + { + "appid": 3143130, + "normalized_name": "lowlands conquest" + }, + { + "appid": 3143190, + "normalized_name": "hook line and sniper" + }, + { + "appid": 3143200, + "normalized_name": "in'ernus" + }, + { + "appid": 3143310, + "normalized_name": "broken hero slime tower" + }, + { + "appid": 3143470, + "normalized_name": "懒人也江湖" + }, + { + "appid": 3143490, + "normalized_name": "my sleeper" + }, + { + "appid": 3143510, + "normalized_name": "pixel frenzy" + }, + { + "appid": 3143520, + "normalized_name": "bizzy bouncy boo" + }, + { + "appid": 3143530, + "normalized_name": "shadow project" + }, + { + "appid": 3143540, + "normalized_name": "encode encore!" + }, + { + "appid": 3143550, + "normalized_name": "liz and rose's alchemy factory" + }, + { + "appid": 3143560, + "normalized_name": "another way of gettin' paid" + }, + { + "appid": 3143570, + "normalized_name": "holy valkyrie exs tia concerto 1" + }, + { + "appid": 3143580, + "normalized_name": "holy valkyrie exs tia concerto 2" + }, + { + "appid": 3143620, + "normalized_name": "abaddon" + }, + { + "appid": 3143660, + "normalized_name": "forest of spirits" + }, + { + "appid": 3143700, + "normalized_name": "the yamamura estate" + }, + { + "appid": 3143710, + "normalized_name": "pubg blindspot" + }, + { + "appid": 3143730, + "normalized_name": "lazarus side story of comrade force" + }, + { + "appid": 3143740, + "normalized_name": "slime time" + }, + { + "appid": 3143750, + "normalized_name": "screensaver battle" + }, + { + "appid": 3143760, + "normalized_name": "marry a deep one innsmouth simulator" + }, + { + "appid": 3143780, + "normalized_name": "the key riddle" + }, + { + "appid": 3143790, + "normalized_name": "elemental seasons" + }, + { + "appid": 3143810, + "normalized_name": "drakefall" + }, + { + "appid": 3143840, + "normalized_name": "unfinished 2" + }, + { + "appid": 3143850, + "normalized_name": "the guardian shift" + }, + { + "appid": 3143860, + "normalized_name": "unimed+ solfeggio with vr" + }, + { + "appid": 3143880, + "normalized_name": "forklift simulator" + }, + { + "appid": 3143910, + "normalized_name": "tattoo removal simulator" + }, + { + "appid": 3143920, + "normalized_name": "heavens loss" + }, + { + "appid": 3143930, + "normalized_name": "proton vr" + }, + { + "appid": 3143970, + "normalized_name": "protostar twilight" + }, + { + "appid": 3143980, + "normalized_name": "the adventure of ninomae ina'nis" + }, + { + "appid": 3143990, + "normalized_name": "restless grounds" + }, + { + "appid": 3144000, + "normalized_name": "imperial settlers imperial miners" + }, + { + "appid": 3144010, + "normalized_name": "usagi shima bunny island" + }, + { + "appid": 3144030, + "normalized_name": "mars vs. robots" + }, + { + "appid": 3144050, + "normalized_name": "emyliveshow dangers and mysteries tale safe" + }, + { + "appid": 3144060, + "normalized_name": "world of the dead" + }, + { + "appid": 3144070, + "normalized_name": "cinema" + }, + { + "appid": 3144080, + "normalized_name": "静府 刺眼" + }, + { + "appid": 3144090, + "normalized_name": "8幡入口" + }, + { + "appid": 3144110, + "normalized_name": "journey up" + }, + { + "appid": 3144120, + "normalized_name": "nocturnal nemesis" + }, + { + "appid": 3144130, + "normalized_name": "pitty meaty" + }, + { + "appid": 3144140, + "normalized_name": "descending darkness" + }, + { + "appid": 3144160, + "normalized_name": "return to the village" + }, + { + "appid": 3144180, + "normalized_name": "scarlet's haunted hotel" + }, + { + "appid": 3144190, + "normalized_name": "break wolf" + }, + { + "appid": 3144230, + "normalized_name": "modern warships" + }, + { + "appid": 3144240, + "normalized_name": "heart of squid" + }, + { + "appid": 3144340, + "normalized_name": "pin" + }, + { + "appid": 3144370, + "normalized_name": "the death of the video star" + }, + { + "appid": 3144380, + "normalized_name": "maze of shadows" + }, + { + "appid": 3144400, + "normalized_name": "gold's dungeon" + }, + { + "appid": 3144410, + "normalized_name": "winner in life" + }, + { + "appid": 3144430, + "normalized_name": "exovia" + }, + { + "appid": 3144440, + "normalized_name": "reaper rules episode 1" + }, + { + "appid": 3144450, + "normalized_name": "laundry simulator 2026" + }, + { + "appid": 3144460, + "normalized_name": "ignifugo" + }, + { + "appid": 3144490, + "normalized_name": "monsterium" + }, + { + "appid": 3144500, + "normalized_name": "princess trouble" + }, + { + "appid": 3144510, + "normalized_name": "dumb witchfinder" + }, + { + "appid": 3144520, + "normalized_name": "robes & wrinkles" + }, + { + "appid": 3144530, + "normalized_name": "thief escape" + }, + { + "appid": 3144540, + "normalized_name": "magic forest and nimble warrior" + }, + { + "appid": 3144640, + "normalized_name": "skoof simulator" + }, + { + "appid": 3144660, + "normalized_name": "maniac land" + }, + { + "appid": 3144680, + "normalized_name": "looking for something" + }, + { + "appid": 3144700, + "normalized_name": "hochone" + }, + { + "appid": 3144710, + "normalized_name": "project creatures" + }, + { + "appid": 3144720, + "normalized_name": "hime cut" + }, + { + "appid": 3144740, + "normalized_name": "verses of hope" + }, + { + "appid": 3144750, + "normalized_name": "maui the shapeshifter" + }, + { + "appid": 3144760, + "normalized_name": "serpentine shadows and the joys of vengeance" + }, + { + "appid": 3144770, + "normalized_name": "ooze keeper" + }, + { + "appid": 3144860, + "normalized_name": "will follow the light" + }, + { + "appid": 3144910, + "normalized_name": "homini et armi the end of knights" + }, + { + "appid": 3144950, + "normalized_name": "pet lands" + }, + { + "appid": 3145050, + "normalized_name": "blow out" + }, + { + "appid": 3145060, + "normalized_name": "never stop rolling" + }, + { + "appid": 3145070, + "normalized_name": "gangster clicker" + }, + { + "appid": 3145100, + "normalized_name": "courier chronicles" + }, + { + "appid": 3145190, + "normalized_name": "limeviathan" + }, + { + "appid": 3145230, + "normalized_name": "blastback" + }, + { + "appid": 3145260, + "normalized_name": "dinoport" + }, + { + "appid": 3145320, + "normalized_name": "elements and build" + }, + { + "appid": 3145340, + "normalized_name": "jean's beach restaurant" + }, + { + "appid": 3145350, + "normalized_name": "cats and seek toge land" + }, + { + "appid": 3145370, + "normalized_name": "muffles' life sentence" + }, + { + "appid": 3145430, + "normalized_name": "アッシュエコーズ" + }, + { + "appid": 3145440, + "normalized_name": "becoming pablo" + }, + { + "appid": 3145480, + "normalized_name": "whiskers on time's corner" + }, + { + "appid": 3145510, + "normalized_name": "鉄道にっぽん!路線たびex 登山電車 小田急箱根編" + }, + { + "appid": 3145520, + "normalized_name": "look or die" + }, + { + "appid": 3145540, + "normalized_name": "blue night laundromat" + }, + { + "appid": 3145560, + "normalized_name": "dai chan's great adventure world's end" + }, + { + "appid": 3145570, + "normalized_name": "astral break" + }, + { + "appid": 3145580, + "normalized_name": "ミームトモ" + }, + { + "appid": 3145600, + "normalized_name": "sifra" + }, + { + "appid": 3145620, + "normalized_name": "without a dawn" + }, + { + "appid": 3145630, + "normalized_name": "edict" + }, + { + "appid": 3145650, + "normalized_name": "ノナプルナイン:アシンプトート" + }, + { + "appid": 3145670, + "normalized_name": "tiltality" + }, + { + "appid": 3145680, + "normalized_name": "double barrel desperado" + }, + { + "appid": 3145740, + "normalized_name": "vrider sbk" + }, + { + "appid": 3145750, + "normalized_name": "across icaria" + }, + { + "appid": 3145780, + "normalized_name": "[anomaly tapes] beyond reality" + }, + { + "appid": 3145790, + "normalized_name": "jackson's store" + }, + { + "appid": 3145800, + "normalized_name": "parkour is white?" + }, + { + "appid": 3145810, + "normalized_name": "the medical examination diary teamwork in paradise." + }, + { + "appid": 3145830, + "normalized_name": "zombie house siege" + }, + { + "appid": 3145850, + "normalized_name": "rootmare" + }, + { + "appid": 3145930, + "normalized_name": "jeff the skinner" + }, + { + "appid": 3145940, + "normalized_name": "type one" + }, + { + "appid": 3145960, + "normalized_name": "starship architect" + }, + { + "appid": 3146010, + "normalized_name": "septic" + }, + { + "appid": 3146050, + "normalized_name": "ソード・ビストロvr" + }, + { + "appid": 3146060, + "normalized_name": "next level pioneers" + }, + { + "appid": 3146080, + "normalized_name": "極樂宿舍" + }, + { + "appid": 3146100, + "normalized_name": "planet v" + }, + { + "appid": 3146120, + "normalized_name": "ayasa shadows of silence" + }, + { + "appid": 3146250, + "normalized_name": "escape the maze" + }, + { + "appid": 3146270, + "normalized_name": "ink." + }, + { + "appid": 3146280, + "normalized_name": "a night with spirit" + }, + { + "appid": 3146320, + "normalized_name": "辐海" + }, + { + "appid": 3146340, + "normalized_name": "light years away" + }, + { + "appid": 3146390, + "normalized_name": "ramhart" + }, + { + "appid": 3146400, + "normalized_name": "dynastopia" + }, + { + "appid": 3146440, + "normalized_name": "sportal" + }, + { + "appid": 3146450, + "normalized_name": "magicsweets magic candy that gives happiness" + }, + { + "appid": 3146500, + "normalized_name": "endless days z" + }, + { + "appid": 3146510, + "normalized_name": "tilescape defense" + }, + { + "appid": 3146520, + "normalized_name": "webfishing" + }, + { + "appid": 3146540, + "normalized_name": "heaven's ladder" + }, + { + "appid": 3146550, + "normalized_name": "100 screamers" + }, + { + "appid": 3146560, + "normalized_name": "mentari" + }, + { + "appid": 3146580, + "normalized_name": "stream simulator" + }, + { + "appid": 3146590, + "normalized_name": "proportions" + }, + { + "appid": 3146610, + "normalized_name": "靈緣 ~化謎解咒,緣影交織~" + }, + { + "appid": 3146640, + "normalized_name": "abnormal1999 the compass and the sand" + }, + { + "appid": 3146670, + "normalized_name": "torchless" + }, + { + "appid": 3146680, + "normalized_name": "delivery point simulator" + }, + { + "appid": 3146690, + "normalized_name": "no fap island 💦" + }, + { + "appid": 3146700, + "normalized_name": "oneiro man" + }, + { + "appid": 3146710, + "normalized_name": "food rush" + }, + { + "appid": 3146730, + "normalized_name": "wizard survivors" + }, + { + "appid": 3146740, + "normalized_name": "merge marbles" + }, + { + "appid": 3146780, + "normalized_name": "supply chained" + }, + { + "appid": 3146840, + "normalized_name": "digital influence" + }, + { + "appid": 3146900, + "normalized_name": "whip but not too much" + }, + { + "appid": 3146930, + "normalized_name": "aldoria" + }, + { + "appid": 3146980, + "normalized_name": "beloved firefighter" + }, + { + "appid": 3147040, + "normalized_name": "spinveil" + }, + { + "appid": 3147090, + "normalized_name": "punchball" + }, + { + "appid": 3147130, + "normalized_name": "burgleville" + }, + { + "appid": 3147140, + "normalized_name": "leyline chronicles" + }, + { + "appid": 3147150, + "normalized_name": "the drop" + }, + { + "appid": 3147170, + "normalized_name": "quiver quest" + }, + { + "appid": 3147190, + "normalized_name": "julian & friends" + }, + { + "appid": 3147200, + "normalized_name": "bloody cleanup" + }, + { + "appid": 3147220, + "normalized_name": "sister lumina and the hypnosis cult" + }, + { + "appid": 3147230, + "normalized_name": "forest of perdition 2 the school trip" + }, + { + "appid": 3147240, + "normalized_name": "supernovem" + }, + { + "appid": 3147250, + "normalized_name": "the story is you look within" + }, + { + "appid": 3147260, + "normalized_name": "world of squares" + }, + { + "appid": 3147300, + "normalized_name": "entwined time" + }, + { + "appid": 3147350, + "normalized_name": "tiir request" + }, + { + "appid": 3147370, + "normalized_name": "spirit of the obelisk" + }, + { + "appid": 3147380, + "normalized_name": "quantum sleeper" + }, + { + "appid": 3147390, + "normalized_name": "idle dino" + }, + { + "appid": 3147430, + "normalized_name": "journey to incrementalia" + }, + { + "appid": 3147470, + "normalized_name": "∆" + }, + { + "appid": 3147480, + "normalized_name": "mutable 50" + }, + { + "appid": 3147510, + "normalized_name": "魔物地牢的幸存女孩" + }, + { + "appid": 3147520, + "normalized_name": "zalis a romantic adventure" + }, + { + "appid": 3147540, + "normalized_name": "story of alun" + }, + { + "appid": 3147550, + "normalized_name": "over heroes" + }, + { + "appid": 3147560, + "normalized_name": "alfons world" + }, + { + "appid": 3147600, + "normalized_name": "light switch simulator" + }, + { + "appid": 3147610, + "normalized_name": "ojol the game" + }, + { + "appid": 3147620, + "normalized_name": "solitary horizons" + }, + { + "appid": 3147660, + "normalized_name": "doner master simulator" + }, + { + "appid": 3147690, + "normalized_name": "neverland永无乡" + }, + { + "appid": 3147700, + "normalized_name": "brutalist golf" + }, + { + "appid": 3147710, + "normalized_name": "farming & supermarket simulator prologue" + }, + { + "appid": 3147720, + "normalized_name": "dual cat max" + }, + { + "appid": 3147730, + "normalized_name": "seed of god" + }, + { + "appid": 3147770, + "normalized_name": "math seeker" + }, + { + "appid": 3147780, + "normalized_name": "battle mountain" + }, + { + "appid": 3147820, + "normalized_name": "neko" + }, + { + "appid": 3147830, + "normalized_name": "colors" + }, + { + "appid": 3147840, + "normalized_name": "supermarket horizon" + }, + { + "appid": 3147850, + "normalized_name": "eschalism" + }, + { + "appid": 3147870, + "normalized_name": "in my head" + }, + { + "appid": 3147890, + "normalized_name": "solitaire quest love blossoms" + }, + { + "appid": 3147900, + "normalized_name": "meddl dash" + }, + { + "appid": 3147920, + "normalized_name": "komodor kards volume 1" + }, + { + "appid": 3147930, + "normalized_name": "sphere vs gravity" + }, + { + "appid": 3147940, + "normalized_name": "quad blaster" + }, + { + "appid": 3147950, + "normalized_name": "xoverse" + }, + { + "appid": 3147960, + "normalized_name": "bounty off road" + }, + { + "appid": 3147970, + "normalized_name": "silken shaft" + }, + { + "appid": 3147980, + "normalized_name": "bombard!" + }, + { + "appid": 3148010, + "normalized_name": "barbecue with friends" + }, + { + "appid": 3148050, + "normalized_name": "decay of opulence" + }, + { + "appid": 3148060, + "normalized_name": "penelope pendrick and the art of deceit" + }, + { + "appid": 3148080, + "normalized_name": "summon the dudes!" + }, + { + "appid": 3148100, + "normalized_name": "combine 2 pumpkins" + }, + { + "appid": 3148110, + "normalized_name": "寂静迷雾(silent mist)" + }, + { + "appid": 3148130, + "normalized_name": "caelum's crux" + }, + { + "appid": 3148160, + "normalized_name": "dragon song tavern cozy & adventurous" + }, + { + "appid": 3148170, + "normalized_name": "wandering hunter" + }, + { + "appid": 3148200, + "normalized_name": "tiny pods rescue 2d board game" + }, + { + "appid": 3148240, + "normalized_name": "the crimson call" + }, + { + "appid": 3148270, + "normalized_name": "darkness arises" + }, + { + "appid": 3148300, + "normalized_name": "smashshot" + }, + { + "appid": 3148360, + "normalized_name": "shaperaid" + }, + { + "appid": 3148390, + "normalized_name": "slutlike" + }, + { + "appid": 3148420, + "normalized_name": "mansion tyurma" + }, + { + "appid": 3148430, + "normalized_name": "spear and armor" + }, + { + "appid": 3148470, + "normalized_name": "retrime" + }, + { + "appid": 3148480, + "normalized_name": "cats 'n blocks" + }, + { + "appid": 3148490, + "normalized_name": "kindred [subject 6244]" + }, + { + "appid": 3148500, + "normalized_name": "daibouken yarinaosu" + }, + { + "appid": 3148510, + "normalized_name": "waifu survivors" + }, + { + "appid": 3148550, + "normalized_name": "just squat" + }, + { + "appid": 3148560, + "normalized_name": "project turboblast" + }, + { + "appid": 3148590, + "normalized_name": "multiplayer shooters" + }, + { + "appid": 3148600, + "normalized_name": "geo deux" + }, + { + "appid": 3148650, + "normalized_name": "invention 6" + }, + { + "appid": 3148660, + "normalized_name": "super mascot star" + }, + { + "appid": 3148670, + "normalized_name": "coming from above!" + }, + { + "appid": 3148790, + "normalized_name": "misa" + }, + { + "appid": 3148800, + "normalized_name": "crystalone" + }, + { + "appid": 3148810, + "normalized_name": "droneskillanimals" + }, + { + "appid": 3148840, + "normalized_name": "no signal escape room" + }, + { + "appid": 3148860, + "normalized_name": "dalafri" + }, + { + "appid": 3148880, + "normalized_name": "lord of the penguins" + }, + { + "appid": 3148890, + "normalized_name": "thecube" + }, + { + "appid": 3148900, + "normalized_name": "爱上幻影的少年" + }, + { + "appid": 3148920, + "normalized_name": "hentai puzzle lustful legends" + }, + { + "appid": 3148930, + "normalized_name": "spears" + }, + { + "appid": 3148940, + "normalized_name": "realm's crossing" + }, + { + "appid": 3148950, + "normalized_name": "monster snap" + }, + { + "appid": 3149010, + "normalized_name": "build up" + }, + { + "appid": 3149050, + "normalized_name": "ocero 3d" + }, + { + "appid": 3149100, + "normalized_name": "pawnshop simulator" + }, + { + "appid": 3149120, + "normalized_name": "pixel punch" + }, + { + "appid": 3149150, + "normalized_name": "batter up" + }, + { + "appid": 3149170, + "normalized_name": "porcelain dolls" + }, + { + "appid": 3149180, + "normalized_name": "afterblast" + }, + { + "appid": 3149200, + "normalized_name": "arq of the abyss" + }, + { + "appid": 3149250, + "normalized_name": "chicken defense war tower defense" + }, + { + "appid": 3149270, + "normalized_name": "the cummunist manifesto dommy mommy commie adventure" + }, + { + "appid": 3149310, + "normalized_name": "dr. yaga lost house" + }, + { + "appid": 3149330, + "normalized_name": "idletowerdefense" + }, + { + "appid": 3149340, + "normalized_name": "pixelburg" + }, + { + "appid": 3149360, + "normalized_name": "call the abyss" + }, + { + "appid": 3149370, + "normalized_name": "rogue light deck builder" + }, + { + "appid": 3149430, + "normalized_name": "poker train" + }, + { + "appid": 3149440, + "normalized_name": "audacity" + }, + { + "appid": 3149460, + "normalized_name": "endlessly side scrolling balloon simulator 2024" + }, + { + "appid": 3149470, + "normalized_name": "tradeforge" + }, + { + "appid": 3149500, + "normalized_name": "ipseity arena" + }, + { + "appid": 3149510, + "normalized_name": "creepmoon" + }, + { + "appid": 3149520, + "normalized_name": "monster gangbang" + }, + { + "appid": 3149530, + "normalized_name": "anarchy hops" + }, + { + "appid": 3149550, + "normalized_name": "comix zero" + }, + { + "appid": 3149560, + "normalized_name": "choices matter mega city" + }, + { + "appid": 3149600, + "normalized_name": "forest friends match" + }, + { + "appid": 3149660, + "normalized_name": "jenny's adventures" + }, + { + "appid": 3149720, + "normalized_name": "riders" + }, + { + "appid": 3149730, + "normalized_name": "blam! blam!" + }, + { + "appid": 3149750, + "normalized_name": "treat seeking tricksters" + }, + { + "appid": 3149800, + "normalized_name": "勾八公主狂想曲(j8 princess rhapsody)" + }, + { + "appid": 3149810, + "normalized_name": "blowhi" + }, + { + "appid": 3149820, + "normalized_name": "my aquarium" + }, + { + "appid": 3149830, + "normalized_name": "chinchillas attack again" + }, + { + "appid": 3149840, + "normalized_name": "скуф на рыбалке" + }, + { + "appid": 3149850, + "normalized_name": "fated land" + }, + { + "appid": 3149860, + "normalized_name": "rose the mystery of green village" + }, + { + "appid": 3149870, + "normalized_name": "family tabu" + }, + { + "appid": 3149940, + "normalized_name": "和!和!和!roguexmahjong" + }, + { + "appid": 3149950, + "normalized_name": "idle aim" + }, + { + "appid": 3149960, + "normalized_name": "american election simulator" + }, + { + "appid": 3149970, + "normalized_name": "impossible stone game" + }, + { + "appid": 3149980, + "normalized_name": "love n life happy student" + }, + { + "appid": 3150000, + "normalized_name": "simplae" + }, + { + "appid": 3150020, + "normalized_name": "take me home" + }, + { + "appid": 3150030, + "normalized_name": "paper battlefield" + }, + { + "appid": 3150040, + "normalized_name": "rat smasher" + }, + { + "appid": 3150050, + "normalized_name": "goodnight sweetie" + }, + { + "appid": 3150060, + "normalized_name": "tacticsweeper+" + }, + { + "appid": 3150090, + "normalized_name": "shadow boxer" + }, + { + "appid": 3150120, + "normalized_name": "startplay" + }, + { + "appid": 3150150, + "normalized_name": "幸存者联盟" + }, + { + "appid": 3150160, + "normalized_name": "another pint" + }, + { + "appid": 3150240, + "normalized_name": "sexy match tale three piggies love's trio" + }, + { + "appid": 3150260, + "normalized_name": "hope of taru" + }, + { + "appid": 3150300, + "normalized_name": "小说模拟器" + }, + { + "appid": 3150310, + "normalized_name": "miami fighters" + }, + { + "appid": 3150320, + "normalized_name": "zap'n'run" + }, + { + "appid": 3150390, + "normalized_name": "futurion" + }, + { + "appid": 3150410, + "normalized_name": "focus plant pomodoro timer game" + }, + { + "appid": 3150420, + "normalized_name": "werewolf goldfish" + }, + { + "appid": 3150440, + "normalized_name": "laundry store simulator" + }, + { + "appid": 3150450, + "normalized_name": "dragon spirits 0" + }, + { + "appid": 3150460, + "normalized_name": "gloomy clues echoes of the past" + }, + { + "appid": 3150480, + "normalized_name": "agatha christie death on the nile" + }, + { + "appid": 3150490, + "normalized_name": "dance of lords" + }, + { + "appid": 3150510, + "normalized_name": "humiliation dungeon survivors" + }, + { + "appid": 3150530, + "normalized_name": "lazy writer" + }, + { + "appid": 3150540, + "normalized_name": "apartment escape" + }, + { + "appid": 3150600, + "normalized_name": "okiro" + }, + { + "appid": 3150610, + "normalized_name": "golden voyage" + }, + { + "appid": 3150620, + "normalized_name": "фильмоскоп ужасов зелёные глаза" + }, + { + "appid": 3150650, + "normalized_name": "waves ahoy!" + }, + { + "appid": 3150660, + "normalized_name": "gulping snake" + }, + { + "appid": 3150690, + "normalized_name": "homam an inventor's fist" + }, + { + "appid": 3150710, + "normalized_name": "phantomzone labyrinthos ファントムゾーン・ラビュリントス" + }, + { + "appid": 3150720, + "normalized_name": "mint's hints" + }, + { + "appid": 3150730, + "normalized_name": "reborn" + }, + { + "appid": 3150770, + "normalized_name": "cabin escape" + }, + { + "appid": 3150780, + "normalized_name": "the czar is dead 2" + }, + { + "appid": 3150790, + "normalized_name": "dwarfs descent" + }, + { + "appid": 3150960, + "normalized_name": "bulbs 2.0" + }, + { + "appid": 3150970, + "normalized_name": "party madness" + }, + { + "appid": 3151000, + "normalized_name": "weapons of war" + }, + { + "appid": 3151010, + "normalized_name": "soul kira" + }, + { + "appid": 3151020, + "normalized_name": "easy ball game" + }, + { + "appid": 3151030, + "normalized_name": "croswa" + }, + { + "appid": 3151040, + "normalized_name": "you will be cursed" + }, + { + "appid": 3151100, + "normalized_name": "bloodflow" + }, + { + "appid": 3151110, + "normalized_name": "创世法则" + }, + { + "appid": 3151130, + "normalized_name": "after the end" + }, + { + "appid": 3151140, + "normalized_name": "shelf heroes" + }, + { + "appid": 3151160, + "normalized_name": "climb quest" + }, + { + "appid": 3151220, + "normalized_name": "bot/bot" + }, + { + "appid": 3151230, + "normalized_name": "echoing silence" + }, + { + "appid": 3151240, + "normalized_name": "hacking the moon to find my goddess" + }, + { + "appid": 3151250, + "normalized_name": "the losers team" + }, + { + "appid": 3151270, + "normalized_name": "one turn kill" + }, + { + "appid": 3151290, + "normalized_name": "almost reversi" + }, + { + "appid": 3151300, + "normalized_name": "小小冒险" + }, + { + "appid": 3151330, + "normalized_name": "layered ordeal" + }, + { + "appid": 3151340, + "normalized_name": "思嘉哪儿去了? 44 hidden naomis" + }, + { + "appid": 3151350, + "normalized_name": "skyrift the shattered sky" + }, + { + "appid": 3151360, + "normalized_name": "agni village of calamity" + }, + { + "appid": 3151380, + "normalized_name": "small spaces" + }, + { + "appid": 3151400, + "normalized_name": "liminal universe" + }, + { + "appid": 3151420, + "normalized_name": "mystic explorer" + }, + { + "appid": 3151450, + "normalized_name": "nebula nexus" + }, + { + "appid": 3151500, + "normalized_name": "sad robot lilly" + }, + { + "appid": 3151510, + "normalized_name": "hentai jigsaw" + }, + { + "appid": 3151530, + "normalized_name": "chessrogue" + }, + { + "appid": 3151560, + "normalized_name": "incarnus warfare" + }, + { + "appid": 3151570, + "normalized_name": "thor's wrath" + }, + { + "appid": 3151600, + "normalized_name": "super multitasking go!" + }, + { + "appid": 3151660, + "normalized_name": "uppercute" + }, + { + "appid": 3151670, + "normalized_name": "trombone champ unflattened" + }, + { + "appid": 3151680, + "normalized_name": "the brilliant detective milo" + }, + { + "appid": 3151690, + "normalized_name": "unhandled exception" + }, + { + "appid": 3151700, + "normalized_name": "deepwater" + }, + { + "appid": 3151710, + "normalized_name": "ace squared" + }, + { + "appid": 3151760, + "normalized_name": "roboquest vr" + }, + { + "appid": 3151800, + "normalized_name": "in good faith" + }, + { + "appid": 3151820, + "normalized_name": "among the stars ufo hunting simulator" + }, + { + "appid": 3151830, + "normalized_name": "yugo the non game" + }, + { + "appid": 3151840, + "normalized_name": "umblight" + }, + { + "appid": 3151850, + "normalized_name": "tricky castle" + }, + { + "appid": 3151860, + "normalized_name": "marquito's arcade play while learning" + }, + { + "appid": 3151870, + "normalized_name": "행복한 우리 가족" + }, + { + "appid": 3151880, + "normalized_name": "don't stop looking" + }, + { + "appid": 3151900, + "normalized_name": "idle lust succubus in training" + }, + { + "appid": 3151920, + "normalized_name": "vortex hoverdrome" + }, + { + "appid": 3151930, + "normalized_name": "pigeon hater" + }, + { + "appid": 3151940, + "normalized_name": "unhappy chickens" + }, + { + "appid": 3151980, + "normalized_name": "second essence" + }, + { + "appid": 3152020, + "normalized_name": "dino clicker" + }, + { + "appid": 3152060, + "normalized_name": "croak crusader the champion of canada" + }, + { + "appid": 3152090, + "normalized_name": "angles of death" + }, + { + "appid": 3152110, + "normalized_name": "founders" + }, + { + "appid": 3152120, + "normalized_name": "the laser games" + }, + { + "appid": 3152150, + "normalized_name": "ant protect the queen" + }, + { + "appid": 3152170, + "normalized_name": "code surf" + }, + { + "appid": 3152200, + "normalized_name": "big breasted milky mommies sex puzzles" + }, + { + "appid": 3152220, + "normalized_name": "chimaera trouble" + }, + { + "appid": 3152230, + "normalized_name": "i commissioned some dogs 3" + }, + { + "appid": 3152280, + "normalized_name": "末世部落" + }, + { + "appid": 3152290, + "normalized_name": "echoes of spellcraft" + }, + { + "appid": 3152310, + "normalized_name": "havenroot vale" + }, + { + "appid": 3152320, + "normalized_name": "开宗立派" + }, + { + "appid": 3152330, + "normalized_name": "depths of faveg" + }, + { + "appid": 3152370, + "normalized_name": "hide and seek with noah" + }, + { + "appid": 3152380, + "normalized_name": "打工人铁窗笔记" + }, + { + "appid": 3152390, + "normalized_name": "the bedmate game sharehouse" + }, + { + "appid": 3152430, + "normalized_name": "there is no lore" + }, + { + "appid": 3152500, + "normalized_name": "blood and grimoire" + }, + { + "appid": 3152530, + "normalized_name": "funkymouse's iso" + }, + { + "appid": 3152540, + "normalized_name": "hydroponics farm & store simulator" + }, + { + "appid": 3152590, + "normalized_name": "fortress 2 blue(疯狂坦克)" + }, + { + "appid": 3152600, + "normalized_name": "cave of horrors" + }, + { + "appid": 3152630, + "normalized_name": "hyper 2" + }, + { + "appid": 3152650, + "normalized_name": "tape art" + }, + { + "appid": 3152660, + "normalized_name": "bloody rune" + }, + { + "appid": 3152690, + "normalized_name": "daddy comes home" + }, + { + "appid": 3152700, + "normalized_name": "journey of resurgence" + }, + { + "appid": 3152710, + "normalized_name": "house of horror outside is better" + }, + { + "appid": 3152720, + "normalized_name": "there is no magic" + }, + { + "appid": 3152740, + "normalized_name": "hehe remake" + }, + { + "appid": 3152750, + "normalized_name": "taival" + }, + { + "appid": 3152830, + "normalized_name": "恋爱时之轮" + }, + { + "appid": 3152880, + "normalized_name": "quakeline" + }, + { + "appid": 3152900, + "normalized_name": "东方奇缘记" + }, + { + "appid": 3152940, + "normalized_name": "card dealer" + }, + { + "appid": 3152960, + "normalized_name": "hell blast" + }, + { + "appid": 3152970, + "normalized_name": "monkey tag arena" + }, + { + "appid": 3153020, + "normalized_name": "skatehouse" + }, + { + "appid": 3153060, + "normalized_name": "illegal dealership simulator" + }, + { + "appid": 3153080, + "normalized_name": "samurai" + }, + { + "appid": 3153090, + "normalized_name": "grisù tales from dragontown" + }, + { + "appid": 3153100, + "normalized_name": "メルト・アウェイ" + }, + { + "appid": 3153130, + "normalized_name": "element warriors" + }, + { + "appid": 3153140, + "normalized_name": "mush dash" + }, + { + "appid": 3153190, + "normalized_name": "ink inside first page" + }, + { + "appid": 3153200, + "normalized_name": "combat rover operation storm" + }, + { + "appid": 3153240, + "normalized_name": "ifsolitaire" + }, + { + "appid": 3153250, + "normalized_name": "the great report era" + }, + { + "appid": 3153280, + "normalized_name": "拯救阿曼 save amani" + }, + { + "appid": 3153360, + "normalized_name": "clutter 17 flower power collector's" + }, + { + "appid": 3153550, + "normalized_name": "doomsday cleaner" + }, + { + "appid": 3153610, + "normalized_name": "三国.群将传" + }, + { + "appid": 3153620, + "normalized_name": "descenso" + }, + { + "appid": 3153640, + "normalized_name": "head over heels deluxe" + }, + { + "appid": 3153690, + "normalized_name": "tiny robots portal escape" + }, + { + "appid": 3153760, + "normalized_name": "zombies & survivors" + }, + { + "appid": 3153770, + "normalized_name": "days with my lonely teacher" + }, + { + "appid": 3153790, + "normalized_name": "warriors" + }, + { + "appid": 3153870, + "normalized_name": "wealdfall squirrel" + }, + { + "appid": 3153890, + "normalized_name": "simulator of countries" + }, + { + "appid": 3153900, + "normalized_name": "rolling thunder vietnam" + }, + { + "appid": 3153910, + "normalized_name": "monsters potion!" + }, + { + "appid": 3153920, + "normalized_name": "the little maze" + }, + { + "appid": 3153940, + "normalized_name": "royally frogged" + }, + { + "appid": 3153950, + "normalized_name": "do something" + }, + { + "appid": 3153960, + "normalized_name": "restaurant owner prologue" + }, + { + "appid": 3154130, + "normalized_name": "space memory animals" + }, + { + "appid": 3154150, + "normalized_name": "spook a boo" + }, + { + "appid": 3154190, + "normalized_name": "creamare the game" + }, + { + "appid": 3154210, + "normalized_name": "mighty metas" + }, + { + "appid": 3154240, + "normalized_name": "tomoyo" + }, + { + "appid": 3154270, + "normalized_name": "click frenzy" + }, + { + "appid": 3154330, + "normalized_name": "bermuda" + }, + { + "appid": 3154340, + "normalized_name": "the dawn obscura" + }, + { + "appid": 3154360, + "normalized_name": "dropdisk" + }, + { + "appid": 3154390, + "normalized_name": "neon knights" + }, + { + "appid": 3154450, + "normalized_name": "realmscape" + }, + { + "appid": 3154460, + "normalized_name": "office party" + }, + { + "appid": 3154470, + "normalized_name": "gravity girl" + }, + { + "appid": 3154490, + "normalized_name": "spell candle" + }, + { + "appid": 3154510, + "normalized_name": "the fox's dream" + }, + { + "appid": 3154520, + "normalized_name": "blob" + }, + { + "appid": 3154550, + "normalized_name": "aegis force the scorian war" + }, + { + "appid": 3154590, + "normalized_name": "100 hidden cats pirates" + }, + { + "appid": 3154600, + "normalized_name": "cellka" + }, + { + "appid": 3154610, + "normalized_name": "game about jetpack fly" + }, + { + "appid": 3154620, + "normalized_name": "baba yaga" + }, + { + "appid": 3154650, + "normalized_name": "high dragon tower" + }, + { + "appid": 3154660, + "normalized_name": "ink and intrigue" + }, + { + "appid": 3154670, + "normalized_name": "haunted hearts hotel" + }, + { + "appid": 3154690, + "normalized_name": "bitmates" + }, + { + "appid": 3154800, + "normalized_name": "football pitch simulator" + }, + { + "appid": 3154840, + "normalized_name": "striking gold" + }, + { + "appid": 3154850, + "normalized_name": "draft day sports college football 2025" + }, + { + "appid": 3154870, + "normalized_name": "rays" + }, + { + "appid": 3154890, + "normalized_name": "worldshadow" + }, + { + "appid": 3154910, + "normalized_name": "serk chaos city delivery" + }, + { + "appid": 3154940, + "normalized_name": "glowie shooter" + }, + { + "appid": 3154950, + "normalized_name": "just war trains" + }, + { + "appid": 3155010, + "normalized_name": "necrosis dawn of dread" + }, + { + "appid": 3155030, + "normalized_name": "mononc's adventures" + }, + { + "appid": 3155080, + "normalized_name": "cam op simulator" + }, + { + "appid": 3155100, + "normalized_name": "ai peace protocol agi evolve" + }, + { + "appid": 3155180, + "normalized_name": "临江奇谭" + }, + { + "appid": 3155270, + "normalized_name": "nakamon" + }, + { + "appid": 3155290, + "normalized_name": "hold me tight all night onii chan!" + }, + { + "appid": 3155300, + "normalized_name": "寓言行者 fable walker" + }, + { + "appid": 3155310, + "normalized_name": "阴三国谋论 徐州篇" + }, + { + "appid": 3155320, + "normalized_name": "game over please" + }, + { + "appid": 3155390, + "normalized_name": "project berserk" + }, + { + "appid": 3155430, + "normalized_name": "find all 5 vikings" + }, + { + "appid": 3155540, + "normalized_name": "dead dragons" + }, + { + "appid": 3155560, + "normalized_name": "debut project cooking café" + }, + { + "appid": 3155570, + "normalized_name": "decollate decoration" + }, + { + "appid": 3155580, + "normalized_name": "covenant of solitude" + }, + { + "appid": 3155590, + "normalized_name": "ruinsstory" + }, + { + "appid": 3155610, + "normalized_name": "xeyyex 2 colour wars" + }, + { + "appid": 3155630, + "normalized_name": "byterage" + }, + { + "appid": 3155660, + "normalized_name": "the indirect castle retreat" + }, + { + "appid": 3155670, + "normalized_name": "ユメザメの仮説" + }, + { + "appid": 3155690, + "normalized_name": "drift desert race" + }, + { + "appid": 3155710, + "normalized_name": "the redstone job" + }, + { + "appid": 3155730, + "normalized_name": "venus vacation prism dead or alive xtreme" + }, + { + "appid": 3155760, + "normalized_name": "soultracer" + }, + { + "appid": 3155770, + "normalized_name": "blockdock" + }, + { + "appid": 3155780, + "normalized_name": "虚谷" + }, + { + "appid": 3155800, + "normalized_name": "shadow bounded" + }, + { + "appid": 3155810, + "normalized_name": "ホロポップ" + }, + { + "appid": 3155830, + "normalized_name": "白创纪 genesis of pure white" + }, + { + "appid": 3155840, + "normalized_name": "grim hope" + }, + { + "appid": 3155930, + "normalized_name": "seed to leaf" + }, + { + "appid": 3155960, + "normalized_name": "queendom" + }, + { + "appid": 3155970, + "normalized_name": "noah 2050" + }, + { + "appid": 3155980, + "normalized_name": "stranded & naked" + }, + { + "appid": 3156000, + "normalized_name": "ghunter" + }, + { + "appid": 3156010, + "normalized_name": "minesweeper & dungeon rpg 扫雷与地下城" + }, + { + "appid": 3156020, + "normalized_name": "gloomveil" + }, + { + "appid": 3156050, + "normalized_name": "special case" + }, + { + "appid": 3156070, + "normalized_name": "trailblader" + }, + { + "appid": 3156080, + "normalized_name": "the tale of azu" + }, + { + "appid": 3156100, + "normalized_name": "king arthur is dead" + }, + { + "appid": 3156110, + "normalized_name": "tribe of werewolves" + }, + { + "appid": 3156120, + "normalized_name": "sweet gym" + }, + { + "appid": 3156210, + "normalized_name": "gelecard guerreiros gelatinosos" + }, + { + "appid": 3156230, + "normalized_name": "the party" + }, + { + "appid": 3156240, + "normalized_name": "millennium whisper" + }, + { + "appid": 3156270, + "normalized_name": "dikec clicker" + }, + { + "appid": 3156330, + "normalized_name": "anomaly president" + }, + { + "appid": 3156360, + "normalized_name": "dice trek" + }, + { + "appid": 3156370, + "normalized_name": "eyes that hypnotise" + }, + { + "appid": 3156400, + "normalized_name": "winter games collection" + }, + { + "appid": 3156420, + "normalized_name": "grippy" + }, + { + "appid": 3156430, + "normalized_name": "storm of spring" + }, + { + "appid": 3156440, + "normalized_name": "sandrail race" + }, + { + "appid": 3156450, + "normalized_name": "hoomanz!" + }, + { + "appid": 3156510, + "normalized_name": "daggan pink" + }, + { + "appid": 3156530, + "normalized_name": "express car wash simulator prologue" + }, + { + "appid": 3156550, + "normalized_name": "garden and a goat" + }, + { + "appid": 3156590, + "normalized_name": "banana 3d" + }, + { + "appid": 3156640, + "normalized_name": "split brain" + }, + { + "appid": 3156700, + "normalized_name": "quacking the case" + }, + { + "appid": 3156720, + "normalized_name": "cargo 19" + }, + { + "appid": 3156730, + "normalized_name": "palix transit" + }, + { + "appid": 3156770, + "normalized_name": "witchfire" + }, + { + "appid": 3156800, + "normalized_name": "secret of the abbey" + }, + { + "appid": 3156820, + "normalized_name": "project_structure_01" + }, + { + "appid": 3156830, + "normalized_name": "silencer" + }, + { + "appid": 3156910, + "normalized_name": "sepulchron" + }, + { + "appid": 3156920, + "normalized_name": "retro wave" + }, + { + "appid": 3156950, + "normalized_name": "mi nd" + }, + { + "appid": 3156970, + "normalized_name": "just an ordinary maintenance check" + }, + { + "appid": 3157000, + "normalized_name": "pinevale settlements" + }, + { + "appid": 3157010, + "normalized_name": "fantasy waifu collector" + }, + { + "appid": 3157070, + "normalized_name": "necrocatic clicker" + }, + { + "appid": 3157160, + "normalized_name": "cupid's chatroom" + }, + { + "appid": 3157220, + "normalized_name": "cozy desktop relaxing weather and atmosphere" + }, + { + "appid": 3157260, + "normalized_name": "crust shmup" + }, + { + "appid": 3157280, + "normalized_name": "street defenders" + }, + { + "appid": 3157290, + "normalized_name": "the wicker devil" + }, + { + "appid": 3157310, + "normalized_name": "tales of the forgotten" + }, + { + "appid": 3157320, + "normalized_name": "quickcast" + }, + { + "appid": 3157360, + "normalized_name": "almohadin escape from the basement" + }, + { + "appid": 3157380, + "normalized_name": "vagabones" + }, + { + "appid": 3157420, + "normalized_name": "wild haven" + }, + { + "appid": 3157540, + "normalized_name": "dodgeball circuit" + }, + { + "appid": 3157550, + "normalized_name": "rogumon" + }, + { + "appid": 3157680, + "normalized_name": "card of legend" + }, + { + "appid": 3157700, + "normalized_name": "terror on the bayou" + }, + { + "appid": 3157750, + "normalized_name": "casino manager simulator" + }, + { + "appid": 3157790, + "normalized_name": "all in one adventure vr" + }, + { + "appid": 3157800, + "normalized_name": "kyrie and terra" + }, + { + "appid": 3157820, + "normalized_name": "candlelight" + }, + { + "appid": 3157850, + "normalized_name": "洪荒西行录" + }, + { + "appid": 3157870, + "normalized_name": "万界门:保卫战" + }, + { + "appid": 3157890, + "normalized_name": "seaquestdungeon" + }, + { + "appid": 3157910, + "normalized_name": "cats of the song dynasty" + }, + { + "appid": 3157920, + "normalized_name": "blackfield" + }, + { + "appid": 3157930, + "normalized_name": "night mafia" + }, + { + "appid": 3157950, + "normalized_name": "hidalgo" + }, + { + "appid": 3158010, + "normalized_name": "后宫大乱斗" + }, + { + "appid": 3158040, + "normalized_name": "the battle orks" + }, + { + "appid": 3158060, + "normalized_name": "no more dawnn" + }, + { + "appid": 3158070, + "normalized_name": "deadline savior" + }, + { + "appid": 3158080, + "normalized_name": "峡谷竞技场(canyon arena)" + }, + { + "appid": 3158110, + "normalized_name": "dino age dinosaur survival game" + }, + { + "appid": 3158160, + "normalized_name": "puzzletrunk" + }, + { + "appid": 3158200, + "normalized_name": "stumble in the dark" + }, + { + "appid": 3158220, + "normalized_name": "mind weaver" + }, + { + "appid": 3158260, + "normalized_name": "hss reload" + }, + { + "appid": 3158270, + "normalized_name": "football life simulator" + }, + { + "appid": 3158280, + "normalized_name": "oddbat" + }, + { + "appid": 3158290, + "normalized_name": "rebecca and the sword of nasty curses" + }, + { + "appid": 3158370, + "normalized_name": "knight and the three servants" + }, + { + "appid": 3158380, + "normalized_name": "please subscribe! magical revantia channel the magical girl powered by viewers" + }, + { + "appid": 3158390, + "normalized_name": "scavengers of mars" + }, + { + "appid": 3158430, + "normalized_name": "crimson rite" + }, + { + "appid": 3158450, + "normalized_name": "樹上の孤鳥" + }, + { + "appid": 3158460, + "normalized_name": "galleryl" + }, + { + "appid": 3158470, + "normalized_name": "the cool guys are level 100" + }, + { + "appid": 3158480, + "normalized_name": "hotel owner simulator" + }, + { + "appid": 3158500, + "normalized_name": "project shoreline" + }, + { + "appid": 3158540, + "normalized_name": "cold steel shadow saga" + }, + { + "appid": 3158600, + "normalized_name": "stunt dog adventure" + }, + { + "appid": 3158620, + "normalized_name": "grimstone survivors" + }, + { + "appid": 3158630, + "normalized_name": "a tale in the garden" + }, + { + "appid": 3158770, + "normalized_name": "point proven" + }, + { + "appid": 3158810, + "normalized_name": "blast a finn" + }, + { + "appid": 3158840, + "normalized_name": "bathroom pro 3000 a rhythm game" + }, + { + "appid": 3158850, + "normalized_name": "kiting cat" + }, + { + "appid": 3158860, + "normalized_name": "fragmented echoes veil of memories" + }, + { + "appid": 3158870, + "normalized_name": "resident fear 2" + }, + { + "appid": 3158950, + "normalized_name": "labyrinth of shadows" + }, + { + "appid": 3158980, + "normalized_name": "brickade" + }, + { + "appid": 3158990, + "normalized_name": "the chess" + }, + { + "appid": 3159000, + "normalized_name": "sunshine farm" + }, + { + "appid": 3159010, + "normalized_name": "repair and defend" + }, + { + "appid": 3159040, + "normalized_name": "sapling wars" + }, + { + "appid": 3159050, + "normalized_name": "the viewer's game" + }, + { + "appid": 3159060, + "normalized_name": "are you human?" + }, + { + "appid": 3159090, + "normalized_name": "cozy night" + }, + { + "appid": 3159120, + "normalized_name": "hidden realm of the enchantress" + }, + { + "appid": 3159130, + "normalized_name": "bits at work" + }, + { + "appid": 3159140, + "normalized_name": "cat city a story about dreams" + }, + { + "appid": 3159150, + "normalized_name": "armed decobot" + }, + { + "appid": 3159290, + "normalized_name": "generic space game" + }, + { + "appid": 3159310, + "normalized_name": "slime the cleaner" + }, + { + "appid": 3159320, + "normalized_name": "sexy memory puzzle futanari sauna" + }, + { + "appid": 3159330, + "normalized_name": "assassin’s creed shadows" + }, + { + "appid": 3159350, + "normalized_name": "match in peace" + }, + { + "appid": 3159380, + "normalized_name": "mount and sword" + }, + { + "appid": 3159390, + "normalized_name": "blue shutter" + }, + { + "appid": 3159440, + "normalized_name": "修仙故事 无尽剑域 cultivation story infinite sword realm" + }, + { + "appid": 3159460, + "normalized_name": "ninja former" + }, + { + "appid": 3159560, + "normalized_name": "meow cafe perfect match" + }, + { + "appid": 3159570, + "normalized_name": "lynked banner of the spark" + }, + { + "appid": 3159620, + "normalized_name": "emergency exit" + }, + { + "appid": 3159680, + "normalized_name": "hentai ussr" + }, + { + "appid": 3159710, + "normalized_name": "meow frontier" + }, + { + "appid": 3159740, + "normalized_name": "heinz honor and revenge" + }, + { + "appid": 3159750, + "normalized_name": "grindset t.v." + }, + { + "appid": 3159780, + "normalized_name": "picnic syndrome" + }, + { + "appid": 3159790, + "normalized_name": "伊斯尔生存" + }, + { + "appid": 3159800, + "normalized_name": "devidevi survivor" + }, + { + "appid": 3159810, + "normalized_name": "play a match? play a catch2" + }, + { + "appid": 3159840, + "normalized_name": "四叶草咖啡厅" + }, + { + "appid": 3159850, + "normalized_name": "ex carrot bur!!" + }, + { + "appid": 3159860, + "normalized_name": "feltopia" + }, + { + "appid": 3159880, + "normalized_name": "persephone lives" + }, + { + "appid": 3159890, + "normalized_name": "二郎显圣真君" + }, + { + "appid": 3159900, + "normalized_name": "108 silly ways to die" + }, + { + "appid": 3159920, + "normalized_name": "goolee" + }, + { + "appid": 3159930, + "normalized_name": "cats in the forbidden city" + }, + { + "appid": 3159940, + "normalized_name": "ケモノの従者と王子の花嫁" + }, + { + "appid": 3159960, + "normalized_name": "the soldier and the golden princess" + }, + { + "appid": 3159970, + "normalized_name": "図書館ではお静かに。" + }, + { + "appid": 3159990, + "normalized_name": "死んで死んで強くなれ!…?" + }, + { + "appid": 3160030, + "normalized_name": "ai 爱" + }, + { + "appid": 3160050, + "normalized_name": "delivery pon chan" + }, + { + "appid": 3160060, + "normalized_name": "rolling macho tumbling to earth" + }, + { + "appid": 3160080, + "normalized_name": "ashlight" + }, + { + "appid": 3160090, + "normalized_name": "slot & dungeons" + }, + { + "appid": 3160110, + "normalized_name": "starbug troopers the 4 horseflies of the apocalypse" + }, + { + "appid": 3160120, + "normalized_name": "1k small room" + }, + { + "appid": 3160140, + "normalized_name": "ender" + }, + { + "appid": 3160160, + "normalized_name": "six ear macaque awakening" + }, + { + "appid": 3160170, + "normalized_name": "toggle tile" + }, + { + "appid": 3160180, + "normalized_name": "ravenous" + }, + { + "appid": 3160230, + "normalized_name": "steam wheels" + }, + { + "appid": 3160240, + "normalized_name": "narrow woods hotel" + }, + { + "appid": 3160250, + "normalized_name": "restless i" + }, + { + "appid": 3160260, + "normalized_name": "cute fames adventure" + }, + { + "appid": 3160280, + "normalized_name": "halloween girls" + }, + { + "appid": 3160300, + "normalized_name": "how luck" + }, + { + "appid": 3160360, + "normalized_name": "cursed loop" + }, + { + "appid": 3160400, + "normalized_name": "plants huddled together" + }, + { + "appid": 3160410, + "normalized_name": "space stranded" + }, + { + "appid": 3160420, + "normalized_name": "mountain retreat" + }, + { + "appid": 3160440, + "normalized_name": "蜂とアヴァンギャルド2桜の下で狐は嗤う" + }, + { + "appid": 3160450, + "normalized_name": "toward aliens and beyond" + }, + { + "appid": 3160460, + "normalized_name": "tic tac toe world" + }, + { + "appid": 3160470, + "normalized_name": "condominium" + }, + { + "appid": 3160490, + "normalized_name": "beyonder" + }, + { + "appid": 3160500, + "normalized_name": "kingdom of cards" + }, + { + "appid": 3160510, + "normalized_name": "the shattered" + }, + { + "appid": 3160520, + "normalized_name": "traffic race 3d 2" + }, + { + "appid": 3160540, + "normalized_name": "you're a dad" + }, + { + "appid": 3160550, + "normalized_name": "inside utopia" + }, + { + "appid": 3160570, + "normalized_name": "runeomicon" + }, + { + "appid": 3160580, + "normalized_name": "trade conquest" + }, + { + "appid": 3160640, + "normalized_name": "don't drop the cake" + }, + { + "appid": 3160660, + "normalized_name": "the mixologist" + }, + { + "appid": 3160710, + "normalized_name": "loot stack relics hunter" + }, + { + "appid": 3160720, + "normalized_name": "assault commander rearmed" + }, + { + "appid": 3160730, + "normalized_name": "bunnies huddled together" + }, + { + "appid": 3160770, + "normalized_name": "the way home" + }, + { + "appid": 3160790, + "normalized_name": "alone jumper" + }, + { + "appid": 3160830, + "normalized_name": "boyfriend for hire" + }, + { + "appid": 3160840, + "normalized_name": "edd skeleton game" + }, + { + "appid": 3160850, + "normalized_name": "takki jump" + }, + { + "appid": 3160880, + "normalized_name": "tavern legends" + }, + { + "appid": 3160910, + "normalized_name": "multiplayer vikings" + }, + { + "appid": 3160920, + "normalized_name": "bungo bash" + }, + { + "appid": 3160950, + "normalized_name": "vampires fable" + }, + { + "appid": 3160980, + "normalized_name": "block twist challenge" + }, + { + "appid": 3161010, + "normalized_name": "the waiting room an existential simulation" + }, + { + "appid": 3161050, + "normalized_name": "apartment 606" + }, + { + "appid": 3161060, + "normalized_name": "electrobillion" + }, + { + "appid": 3161140, + "normalized_name": "space pussy hunter" + }, + { + "appid": 3161180, + "normalized_name": "what's done is done" + }, + { + "appid": 3161190, + "normalized_name": "hentai mei" + }, + { + "appid": 3161210, + "normalized_name": "the cursed island" + }, + { + "appid": 3161220, + "normalized_name": "coffee talk tokyo" + }, + { + "appid": 3161230, + "normalized_name": "mouse arcade" + }, + { + "appid": 3161260, + "normalized_name": "rembrunir" + }, + { + "appid": 3161270, + "normalized_name": "tlatoani aztec cities" + }, + { + "appid": 3161280, + "normalized_name": "cozy garden" + }, + { + "appid": 3161290, + "normalized_name": "we are blob" + }, + { + "appid": 3161310, + "normalized_name": "hela" + }, + { + "appid": 3161320, + "normalized_name": "echoes beyond the stars" + }, + { + "appid": 3161340, + "normalized_name": "spirit school days" + }, + { + "appid": 3161350, + "normalized_name": "cosette the untitled game" + }, + { + "appid": 3161400, + "normalized_name": "infinity sweeper" + }, + { + "appid": 3161410, + "normalized_name": "necrocat" + }, + { + "appid": 3161420, + "normalized_name": "grapple bot" + }, + { + "appid": 3161430, + "normalized_name": "pocket garden" + }, + { + "appid": 3161440, + "normalized_name": "digital creative framework" + }, + { + "appid": 3161450, + "normalized_name": "blade blitz" + }, + { + "appid": 3161460, + "normalized_name": "guns blocks and steel" + }, + { + "appid": 3161510, + "normalized_name": "hitler is my crush love and fascism" + }, + { + "appid": 3161520, + "normalized_name": "necroworld" + }, + { + "appid": 3161530, + "normalized_name": "monster ops 5" + }, + { + "appid": 3161550, + "normalized_name": "indekos" + }, + { + "appid": 3161570, + "normalized_name": "仙影迷踪" + }, + { + "appid": 3161590, + "normalized_name": "kavernum" + }, + { + "appid": 3161610, + "normalized_name": "numberx" + }, + { + "appid": 3161690, + "normalized_name": "the grove" + }, + { + "appid": 3161710, + "normalized_name": "cali&co cafe" + }, + { + "appid": 3161760, + "normalized_name": "劈腿绝对禁止" + }, + { + "appid": 3161780, + "normalized_name": "bonds" + }, + { + "appid": 3161850, + "normalized_name": "boosted survivors" + }, + { + "appid": 3161870, + "normalized_name": "september fall cursed" + }, + { + "appid": 3161920, + "normalized_name": "you are grounded" + }, + { + "appid": 3161930, + "normalized_name": "duck norris tales" + }, + { + "appid": 3161940, + "normalized_name": "revolvermen" + }, + { + "appid": 3161950, + "normalized_name": "shovel & swindle" + }, + { + "appid": 3161960, + "normalized_name": "missi" + }, + { + "appid": 3161990, + "normalized_name": "harmagedon" + }, + { + "appid": 3162000, + "normalized_name": "the backrooms expedition" + }, + { + "appid": 3162020, + "normalized_name": "toridori 2" + }, + { + "appid": 3162030, + "normalized_name": "guns of gaia" + }, + { + "appid": 3162060, + "normalized_name": "vhs collection goodnight me" + }, + { + "appid": 3162090, + "normalized_name": "spear leap saga" + }, + { + "appid": 3162110, + "normalized_name": "space cycle" + }, + { + "appid": 3162120, + "normalized_name": "zenith realms" + }, + { + "appid": 3162140, + "normalized_name": "void stealer bodycam horror" + }, + { + "appid": 3162170, + "normalized_name": "毒トカゲちゃんの楽園" + }, + { + "appid": 3162190, + "normalized_name": "automated & self sustained" + }, + { + "appid": 3162230, + "normalized_name": "turretfall" + }, + { + "appid": 3162260, + "normalized_name": "抓娃娃模拟器" + }, + { + "appid": 3162270, + "normalized_name": "wolf simulator silent paws" + }, + { + "appid": 3162280, + "normalized_name": "affiliated homies" + }, + { + "appid": 3162290, + "normalized_name": "meanings hidden in plain sight" + }, + { + "appid": 3162340, + "normalized_name": "tilebreaker next level" + }, + { + "appid": 3162350, + "normalized_name": "hexenhold" + }, + { + "appid": 3162390, + "normalized_name": "coffeeshop simulator" + }, + { + "appid": 3162550, + "normalized_name": "kudamono drop" + }, + { + "appid": 3162630, + "normalized_name": "when she's gone" + }, + { + "appid": 3162670, + "normalized_name": "persephone" + }, + { + "appid": 3162700, + "normalized_name": "lone howl" + }, + { + "appid": 3162740, + "normalized_name": "night fright" + }, + { + "appid": 3162750, + "normalized_name": "shade silver 2 a walk in the darkness" + }, + { + "appid": 3162780, + "normalized_name": "drive thru miami prologue" + }, + { + "appid": 3162800, + "normalized_name": "legend of lilie" + }, + { + "appid": 3162810, + "normalized_name": "dancing star pc" + }, + { + "appid": 3162820, + "normalized_name": "void vanquishers" + }, + { + "appid": 3162840, + "normalized_name": "dragon assault" + }, + { + "appid": 3162850, + "normalized_name": "lightning katana" + }, + { + "appid": 3162880, + "normalized_name": "caddy's tea service" + }, + { + "appid": 3162920, + "normalized_name": "forest 6174" + }, + { + "appid": 3163070, + "normalized_name": "blade bounce" + }, + { + "appid": 3163110, + "normalized_name": "12 labours of hercules xvii feathered fury" + }, + { + "appid": 3163120, + "normalized_name": "greek kitchen frenzy dionysus" + }, + { + "appid": 3163160, + "normalized_name": "视野零点(tactical shooting)" + }, + { + "appid": 3163170, + "normalized_name": "a few nights with francesca" + }, + { + "appid": 3163190, + "normalized_name": "pearlessential" + }, + { + "appid": 3163210, + "normalized_name": "tower collapse" + }, + { + "appid": 3163310, + "normalized_name": "life without you" + }, + { + "appid": 3163320, + "normalized_name": "cell sword" + }, + { + "appid": 3163360, + "normalized_name": "a gravity conspiracy" + }, + { + "appid": 3163370, + "normalized_name": "champion simulator" + }, + { + "appid": 3163400, + "normalized_name": "milkman" + }, + { + "appid": 3163420, + "normalized_name": "how they fart?" + }, + { + "appid": 3163460, + "normalized_name": "the waiting game" + }, + { + "appid": 3163470, + "normalized_name": "at death's door" + }, + { + "appid": 3163480, + "normalized_name": "gearo shard" + }, + { + "appid": 3163540, + "normalized_name": "whorehouse manager" + }, + { + "appid": 3163550, + "normalized_name": "hotel of shadows" + }, + { + "appid": 3163560, + "normalized_name": "project chameleon" + }, + { + "appid": 3163570, + "normalized_name": "minimal slide" + }, + { + "appid": 3163580, + "normalized_name": "fungiculture" + }, + { + "appid": 3163610, + "normalized_name": "the dangerous back to school season" + }, + { + "appid": 3163620, + "normalized_name": "the path of veins" + }, + { + "appid": 3163650, + "normalized_name": "meat gone wrong" + }, + { + "appid": 3163660, + "normalized_name": "foos" + }, + { + "appid": 3163690, + "normalized_name": "anomaly corridor" + }, + { + "appid": 3163710, + "normalized_name": "drako wordsmith" + }, + { + "appid": 3163730, + "normalized_name": "trapped family vacation" + }, + { + "appid": 3163740, + "normalized_name": "jet scalawag the king of shooters" + }, + { + "appid": 3163760, + "normalized_name": "voodoo dolls" + }, + { + "appid": 3163770, + "normalized_name": "mindweaver chronicles" + }, + { + "appid": 3163790, + "normalized_name": "toy shop simulator" + }, + { + "appid": 3163840, + "normalized_name": "market empire simulator" + }, + { + "appid": 3163880, + "normalized_name": "spot the difference haunted house" + }, + { + "appid": 3163890, + "normalized_name": "spot the difference space ship" + }, + { + "appid": 3163900, + "normalized_name": "imago" + }, + { + "appid": 3163910, + "normalized_name": "home deception" + }, + { + "appid": 3163960, + "normalized_name": "prism" + }, + { + "appid": 3163980, + "normalized_name": "flying pew pew" + }, + { + "appid": 3164030, + "normalized_name": "pavu" + }, + { + "appid": 3164060, + "normalized_name": "莎可莉与坠落之都" + }, + { + "appid": 3164120, + "normalized_name": "0927" + }, + { + "appid": 3164130, + "normalized_name": "tuonela" + }, + { + "appid": 3164160, + "normalized_name": "it's time your majesty" + }, + { + "appid": 3164190, + "normalized_name": "kyoukai" + }, + { + "appid": 3164210, + "normalized_name": "intercorruption" + }, + { + "appid": 3164230, + "normalized_name": "irony" + }, + { + "appid": 3164260, + "normalized_name": "gorecore" + }, + { + "appid": 3164290, + "normalized_name": "navigator" + }, + { + "appid": 3164310, + "normalized_name": "verde and the echoing water" + }, + { + "appid": 3164320, + "normalized_name": "雾之大陆(thelandoffog)" + }, + { + "appid": 3164330, + "normalized_name": "infinity nikki" + }, + { + "appid": 3164360, + "normalized_name": "age of respair" + }, + { + "appid": 3164370, + "normalized_name": "the trials of ozymandias" + }, + { + "appid": 3164380, + "normalized_name": "the funnel" + }, + { + "appid": 3164390, + "normalized_name": "sarpedon" + }, + { + "appid": 3164400, + "normalized_name": "cat go tactical defense braw" + }, + { + "appid": 3164410, + "normalized_name": "shiba knight" + }, + { + "appid": 3164440, + "normalized_name": "monstrobus quiz" + }, + { + "appid": 3164460, + "normalized_name": "hyper_sea_5000" + }, + { + "appid": 3164490, + "normalized_name": "sleepy heroes" + }, + { + "appid": 3164500, + "normalized_name": "schedule i" + }, + { + "appid": 3164520, + "normalized_name": "teddy roller 1" + }, + { + "appid": 3164530, + "normalized_name": "ted" + }, + { + "appid": 3164560, + "normalized_name": "100种战争" + }, + { + "appid": 3164570, + "normalized_name": "morning brew coffee shop management simulator" + }, + { + "appid": 3164600, + "normalized_name": "exertion" + }, + { + "appid": 3164640, + "normalized_name": "days in palis" + }, + { + "appid": 3164680, + "normalized_name": "pedalverse" + }, + { + "appid": 3164710, + "normalized_name": "quality dreams reasonably priced" + }, + { + "appid": 3164730, + "normalized_name": "thefoolish" + }, + { + "appid": 3164740, + "normalized_name": "cold boot attack!" + }, + { + "appid": 3164760, + "normalized_name": "uboat attack" + }, + { + "appid": 3164790, + "normalized_name": "overgrown cleaner" + }, + { + "appid": 3164800, + "normalized_name": "truem" + }, + { + "appid": 3164820, + "normalized_name": "白骑传说" + }, + { + "appid": 3164830, + "normalized_name": "rusty dudes" + }, + { + "appid": 3164850, + "normalized_name": "card weapon shop" + }, + { + "appid": 3164860, + "normalized_name": "都市傳說外賣篇" + }, + { + "appid": 3164900, + "normalized_name": "bureau of contacts mansion" + }, + { + "appid": 3164910, + "normalized_name": "personality excretion hero silvy's rebirth" + }, + { + "appid": 3164920, + "normalized_name": "city rabbit 9 aerotic city" + }, + { + "appid": 3164950, + "normalized_name": "hentai tales the secret of sato" + }, + { + "appid": 3164970, + "normalized_name": "hentai tales sex institute" + }, + { + "appid": 3165030, + "normalized_name": "frosty enterprise" + }, + { + "appid": 3165040, + "normalized_name": "marshal the end of the western era" + }, + { + "appid": 3165050, + "normalized_name": "outclaw" + }, + { + "appid": 3165060, + "normalized_name": "please say hi" + }, + { + "appid": 3165090, + "normalized_name": "grime&gold" + }, + { + "appid": 3165100, + "normalized_name": "dead beats survivors" + }, + { + "appid": 3165110, + "normalized_name": "fall platform" + }, + { + "appid": 3165120, + "normalized_name": "sime is back 3d old school" + }, + { + "appid": 3165130, + "normalized_name": "slime order" + }, + { + "appid": 3165200, + "normalized_name": "sexy memory puzzle gay sauna" + }, + { + "appid": 3165210, + "normalized_name": "vtuberにクソコメを送るタイピングゲーム" + }, + { + "appid": 3165230, + "normalized_name": "最终战车" + }, + { + "appid": 3165280, + "normalized_name": "3d puzzle apocalyptic wasteland" + }, + { + "appid": 3165290, + "normalized_name": "3d puzzle pirate tavern" + }, + { + "appid": 3165300, + "normalized_name": "tanks logic puzzle" + }, + { + "appid": 3165310, + "normalized_name": "warshape" + }, + { + "appid": 3165320, + "normalized_name": "playing god" + }, + { + "appid": 3165330, + "normalized_name": "blackdog" + }, + { + "appid": 3165340, + "normalized_name": "all will rise" + }, + { + "appid": 3165350, + "normalized_name": "become the devil" + }, + { + "appid": 3165370, + "normalized_name": "as aventuras de astel em a maldição sombria" + }, + { + "appid": 3165420, + "normalized_name": "october panic" + }, + { + "appid": 3165460, + "normalized_name": "isles & tiles" + }, + { + "appid": 3165490, + "normalized_name": "prince rystiya's starship" + }, + { + "appid": 3165500, + "normalized_name": "grumpy gaffer" + }, + { + "appid": 3165510, + "normalized_name": "anime clicker" + }, + { + "appid": 3165520, + "normalized_name": "love me or die" + }, + { + "appid": 3165530, + "normalized_name": "good" + }, + { + "appid": 3165610, + "normalized_name": "\"otherworldly beginning of the rift\" pre alpha" + }, + { + "appid": 3165620, + "normalized_name": "bright side quiz" + }, + { + "appid": 3165640, + "normalized_name": "you can't see ghosts!" + }, + { + "appid": 3165650, + "normalized_name": "masters of albion" + }, + { + "appid": 3165680, + "normalized_name": "avakin life" + }, + { + "appid": 3165700, + "normalized_name": "prince rystiya's starfleet" + }, + { + "appid": 3165710, + "normalized_name": "the saloon" + }, + { + "appid": 3165800, + "normalized_name": "now gun" + }, + { + "appid": 3165810, + "normalized_name": "fairealm" + }, + { + "appid": 3165830, + "normalized_name": "jason coming of age" + }, + { + "appid": 3165890, + "normalized_name": "among the stars" + }, + { + "appid": 3166030, + "normalized_name": "madam esmeralda's academy for delinquent mediums" + }, + { + "appid": 3166040, + "normalized_name": "rusalka wrath" + }, + { + "appid": 3166050, + "normalized_name": "quite a ride" + }, + { + "appid": 3166070, + "normalized_name": "passive hero save the world in 100 days!" + }, + { + "appid": 3166110, + "normalized_name": "clumsy rocketship" + }, + { + "appid": 3166120, + "normalized_name": "money print factory 3d tycoon💸" + }, + { + "appid": 3166130, + "normalized_name": "am archaic memories" + }, + { + "appid": 3166140, + "normalized_name": "squarelean" + }, + { + "appid": 3166160, + "normalized_name": "oops! you're the hero!" + }, + { + "appid": 3166200, + "normalized_name": "across the abyss voidborn" + }, + { + "appid": 3166220, + "normalized_name": "harukuru. spring has come true?" + }, + { + "appid": 3166250, + "normalized_name": "backrooms the levels" + }, + { + "appid": 3166340, + "normalized_name": "cursed maze" + }, + { + "appid": 3166420, + "normalized_name": "volleysmash" + }, + { + "appid": 3166430, + "normalized_name": "grand numbers plus" + }, + { + "appid": 3166480, + "normalized_name": "locus poker" + }, + { + "appid": 3166490, + "normalized_name": "caretaker" + }, + { + "appid": 3166520, + "normalized_name": "frontier battle royale" + }, + { + "appid": 3166590, + "normalized_name": "stones of flesh" + }, + { + "appid": 3166610, + "normalized_name": "cities domination" + }, + { + "appid": 3166630, + "normalized_name": "mars" + }, + { + "appid": 3166660, + "normalized_name": "city business manager" + }, + { + "appid": 3166730, + "normalized_name": "forest time" + }, + { + "appid": 3166750, + "normalized_name": "unfortunate leaders" + }, + { + "appid": 3166810, + "normalized_name": "insider trading" + }, + { + "appid": 3166850, + "normalized_name": "find cats 3 旅行猫咪" + }, + { + "appid": 3166900, + "normalized_name": "dragons invade scotland" + }, + { + "appid": 3166910, + "normalized_name": "the builder season 2" + }, + { + "appid": 3166920, + "normalized_name": "tears apart" + }, + { + "appid": 3166930, + "normalized_name": "fomon" + }, + { + "appid": 3166950, + "normalized_name": "arcade reflex" + }, + { + "appid": 3166960, + "normalized_name": "armageddonica" + }, + { + "appid": 3166980, + "normalized_name": "the lost in wonderland" + }, + { + "appid": 3166990, + "normalized_name": "anglingtimes" + }, + { + "appid": 3167000, + "normalized_name": "bread & bravery" + }, + { + "appid": 3167020, + "normalized_name": "escape from duckov 逃离鸭科夫" + }, + { + "appid": 3167100, + "normalized_name": "code blue" + }, + { + "appid": 3167130, + "normalized_name": "super orbital mega drift ii" + }, + { + "appid": 3167180, + "normalized_name": "你好!我们还有场恋爱没谈" + }, + { + "appid": 3167210, + "normalized_name": "心所向往的北极星" + }, + { + "appid": 3167220, + "normalized_name": "祖母 grandmother" + }, + { + "appid": 3167260, + "normalized_name": "war rats the rat em up" + }, + { + "appid": 3167280, + "normalized_name": "ikarus parkour" + }, + { + "appid": 3167320, + "normalized_name": "what comes next" + }, + { + "appid": 3167400, + "normalized_name": "食堂往事 past in dinninghall" + }, + { + "appid": 3167410, + "normalized_name": "toriki the castaway island" + }, + { + "appid": 3167450, + "normalized_name": "bdsm sex episode 8" + }, + { + "appid": 3167480, + "normalized_name": "pushing" + }, + { + "appid": 3167520, + "normalized_name": "bricks survivors" + }, + { + "appid": 3167540, + "normalized_name": "not monday cafe" + }, + { + "appid": 3167550, + "normalized_name": "tiny pasture" + }, + { + "appid": 3167610, + "normalized_name": "deck of destiny battleforge" + }, + { + "appid": 3167660, + "normalized_name": "noonna the rock" + }, + { + "appid": 3167690, + "normalized_name": "being john gogh" + }, + { + "appid": 3167710, + "normalized_name": "piworld" + }, + { + "appid": 3167730, + "normalized_name": "dichotomy" + }, + { + "appid": 3167750, + "normalized_name": "twilight express" + }, + { + "appid": 3167760, + "normalized_name": "dungeon walk3-奇妙な狂闘-" + }, + { + "appid": 3167800, + "normalized_name": "therapy" + }, + { + "appid": 3167810, + "normalized_name": "monitor" + }, + { + "appid": 3167820, + "normalized_name": "resplendent" + }, + { + "appid": 3167860, + "normalized_name": "神金棒棒psychocudgel" + }, + { + "appid": 3167920, + "normalized_name": "low budget repairs" + }, + { + "appid": 3167930, + "normalized_name": "mimania" + }, + { + "appid": 3167940, + "normalized_name": "teeny tiny harbors" + }, + { + "appid": 3167950, + "normalized_name": "mansion affairs" + }, + { + "appid": 3167960, + "normalized_name": "real pharmacy simulator" + }, + { + "appid": 3167970, + "normalized_name": "starless abyss" + }, + { + "appid": 3167980, + "normalized_name": "booze and ooze" + }, + { + "appid": 3167990, + "normalized_name": "noir dead on arrival" + }, + { + "appid": 3168060, + "normalized_name": "i wanna be the king!" + }, + { + "appid": 3168120, + "normalized_name": "investigation" + }, + { + "appid": 3168180, + "normalized_name": "owold a simulation distortion" + }, + { + "appid": 3168200, + "normalized_name": "subzero stealth" + }, + { + "appid": 3168230, + "normalized_name": "racing revolution" + }, + { + "appid": 3168240, + "normalized_name": "frame data mech arena" + }, + { + "appid": 3168260, + "normalized_name": "blackthorn arena reforged" + }, + { + "appid": 3168300, + "normalized_name": "a tower" + }, + { + "appid": 3168310, + "normalized_name": "true fear forsaken souls part 3" + }, + { + "appid": 3168350, + "normalized_name": "holiday island" + }, + { + "appid": 3168370, + "normalized_name": "bring me..." + }, + { + "appid": 3168390, + "normalized_name": "work adventure" + }, + { + "appid": 3168400, + "normalized_name": "awaken infinity" + }, + { + "appid": 3168410, + "normalized_name": "escape the school" + }, + { + "appid": 3168520, + "normalized_name": "bloomtale" + }, + { + "appid": 3168560, + "normalized_name": "dragons brew" + }, + { + "appid": 3168590, + "normalized_name": "dashpunch" + }, + { + "appid": 3168600, + "normalized_name": "among us 3d" + }, + { + "appid": 3168620, + "normalized_name": "zombase" + }, + { + "appid": 3168640, + "normalized_name": "disc golf" + }, + { + "appid": 3168650, + "normalized_name": "dirty work" + }, + { + "appid": 3168670, + "normalized_name": "scavenger zero" + }, + { + "appid": 3168710, + "normalized_name": "lava chaos" + }, + { + "appid": 3168720, + "normalized_name": "yamizome liberator" + }, + { + "appid": 3168750, + "normalized_name": "use your voice" + }, + { + "appid": 3168810, + "normalized_name": "六爻" + }, + { + "appid": 3168820, + "normalized_name": "coreless prologue" + }, + { + "appid": 3168830, + "normalized_name": "shanhai" + }, + { + "appid": 3168880, + "normalized_name": "guidance" + }, + { + "appid": 3168890, + "normalized_name": "three kingdoms 2025 阿达三国志2025(战棋·回合)" + }, + { + "appid": 3168930, + "normalized_name": "infect cam" + }, + { + "appid": 3169000, + "normalized_name": "record_drowsyvortex" + }, + { + "appid": 3169010, + "normalized_name": "rpg forever serens quest" + }, + { + "appid": 3169030, + "normalized_name": "the memories that shape us" + }, + { + "appid": 3169040, + "normalized_name": "seeking cat" + }, + { + "appid": 3169060, + "normalized_name": "leftovers ko!" + }, + { + "appid": 3169070, + "normalized_name": "laundromat simulator" + }, + { + "appid": 3169080, + "normalized_name": "leafko" + }, + { + "appid": 3169090, + "normalized_name": "toushin gent" + }, + { + "appid": 3169150, + "normalized_name": "sweet hot spring" + }, + { + "appid": 3169170, + "normalized_name": "songs of solace" + }, + { + "appid": 3169180, + "normalized_name": "chosen war" + }, + { + "appid": 3169210, + "normalized_name": "gunfire girl zombie hunt" + }, + { + "appid": 3169250, + "normalized_name": "escape from vampire castle miss luna's diary" + }, + { + "appid": 3169270, + "normalized_name": "the factory must grow" + }, + { + "appid": 3169290, + "normalized_name": "beardbarians" + }, + { + "appid": 3169300, + "normalized_name": "rainchaser" + }, + { + "appid": 3169310, + "normalized_name": "high frontier 4 all" + }, + { + "appid": 3169320, + "normalized_name": "boxing knockout showdown" + }, + { + "appid": 3169330, + "normalized_name": "the exit of nightmare" + }, + { + "appid": 3169360, + "normalized_name": "sea walker saga" + }, + { + "appid": 3169390, + "normalized_name": "multiplayer pirates" + }, + { + "appid": 3169510, + "normalized_name": "last line" + }, + { + "appid": 3169580, + "normalized_name": "never second in rome" + }, + { + "appid": 3169590, + "normalized_name": "worker 42" + }, + { + "appid": 3169600, + "normalized_name": "ready beat fire" + }, + { + "appid": 3169610, + "normalized_name": "vr iron fist guardian" + }, + { + "appid": 3169620, + "normalized_name": "catwifhat" + }, + { + "appid": 3169630, + "normalized_name": "night of the dead simulator" + }, + { + "appid": 3169660, + "normalized_name": "looney landers" + }, + { + "appid": 3169670, + "normalized_name": "the golden caravan" + }, + { + "appid": 3169750, + "normalized_name": "time to starⅱ偶像之路终极版" + }, + { + "appid": 3169760, + "normalized_name": "tower invaders guardian of the yew wand" + }, + { + "appid": 3169780, + "normalized_name": "jenny lusby intergalactic adventures" + }, + { + "appid": 3169790, + "normalized_name": "haneda girl" + }, + { + "appid": 3169800, + "normalized_name": "lust sisters" + }, + { + "appid": 3169810, + "normalized_name": "days with girlfriends kello&cammy" + }, + { + "appid": 3169820, + "normalized_name": "yume 5" + }, + { + "appid": 3169830, + "normalized_name": "days with girlfriends laler&reese" + }, + { + "appid": 3169850, + "normalized_name": "trash card adventure" + }, + { + "appid": 3169890, + "normalized_name": "creepy camping" + }, + { + "appid": 3169910, + "normalized_name": "weapons arena" + }, + { + "appid": 3169930, + "normalized_name": "卡牌生存:猴王诞生 wukong is born" + }, + { + "appid": 3169960, + "normalized_name": "evil's maze" + }, + { + "appid": 3170060, + "normalized_name": "blastball all stars" + }, + { + "appid": 3170080, + "normalized_name": "end of death prison" + }, + { + "appid": 3170110, + "normalized_name": "beach slap" + }, + { + "appid": 3170130, + "normalized_name": "red recon 1944" + }, + { + "appid": 3170140, + "normalized_name": "piece yourself up" + }, + { + "appid": 3170160, + "normalized_name": "the writ" + }, + { + "appid": 3170170, + "normalized_name": "three sheets" + }, + { + "appid": 3170250, + "normalized_name": "snappy wizard" + }, + { + "appid": 3170270, + "normalized_name": "ウルトラジェットガール" + }, + { + "appid": 3170330, + "normalized_name": "leap of sins" + }, + { + "appid": 3170360, + "normalized_name": "the adventure of a tramp" + }, + { + "appid": 3170390, + "normalized_name": "sokoteddy" + }, + { + "appid": 3170410, + "normalized_name": "backyard soccer '98" + }, + { + "appid": 3170450, + "normalized_name": "morvyn gutter" + }, + { + "appid": 3170490, + "normalized_name": "cat me if you can" + }, + { + "appid": 3170540, + "normalized_name": "backyard baseball '97" + }, + { + "appid": 3170550, + "normalized_name": "相亲模拟器" + }, + { + "appid": 3170560, + "normalized_name": "天际防线 空岛传说" + }, + { + "appid": 3170570, + "normalized_name": "backyard football '99" + }, + { + "appid": 3170580, + "normalized_name": "backyard basketball '01" + }, + { + "appid": 3170590, + "normalized_name": "backyard hockey '02" + }, + { + "appid": 3170640, + "normalized_name": "cult of the child eater" + }, + { + "appid": 3170660, + "normalized_name": "spellwheel" + }, + { + "appid": 3170670, + "normalized_name": "everything ends in 0" + }, + { + "appid": 3170690, + "normalized_name": "arrowman" + }, + { + "appid": 3170700, + "normalized_name": "find o' lantern" + }, + { + "appid": 3170720, + "normalized_name": "hidden pets" + }, + { + "appid": 3170730, + "normalized_name": "slay or fall" + }, + { + "appid": 3170770, + "normalized_name": "lab 77" + }, + { + "appid": 3170790, + "normalized_name": "dungeon gore lost treasury" + }, + { + "appid": 3170800, + "normalized_name": "love is in the airship" + }, + { + "appid": 3170810, + "normalized_name": "strip club simulator" + }, + { + "appid": 3170830, + "normalized_name": "hidden cats zoo" + }, + { + "appid": 3170840, + "normalized_name": "election tycoon trump vs harris" + }, + { + "appid": 3170850, + "normalized_name": "rise of elements" + }, + { + "appid": 3170880, + "normalized_name": "moba dodge trainer" + }, + { + "appid": 3170930, + "normalized_name": "market mania" + }, + { + "appid": 3170970, + "normalized_name": "shattered mythos" + }, + { + "appid": 3170980, + "normalized_name": "lena" + }, + { + "appid": 3171000, + "normalized_name": "tokyo college girls the nerd & queen bees" + }, + { + "appid": 3171060, + "normalized_name": "starnomads" + }, + { + "appid": 3171080, + "normalized_name": "super pixeria" + }, + { + "appid": 3171090, + "normalized_name": "pear clicker" + }, + { + "appid": 3171160, + "normalized_name": "asistle" + }, + { + "appid": 3171170, + "normalized_name": "ninas escape" + }, + { + "appid": 3171180, + "normalized_name": "stereomix" + }, + { + "appid": 3171230, + "normalized_name": "bussy master firefuckers" + }, + { + "appid": 3171240, + "normalized_name": "lip! lewd idol project vol. 3 hot springs and beach episodes" + }, + { + "appid": 3171340, + "normalized_name": "ysh park" + }, + { + "appid": 3171380, + "normalized_name": "shenaniguns" + }, + { + "appid": 3171440, + "normalized_name": "emerald geography" + }, + { + "appid": 3171450, + "normalized_name": "诡地裁决" + }, + { + "appid": 3171460, + "normalized_name": "hatsuyuki sakura" + }, + { + "appid": 3171480, + "normalized_name": "hauntedmanager" + }, + { + "appid": 3171490, + "normalized_name": "jonald '06 or how a tiny horse living in new york city raised 250 us dollars so they could buy a nintedo woo on launch day" + }, + { + "appid": 3171500, + "normalized_name": "distressed" + }, + { + "appid": 3171510, + "normalized_name": "devil's terminal" + }, + { + "appid": 3171520, + "normalized_name": "wyshbound" + }, + { + "appid": 3171530, + "normalized_name": "lord of the click 4" + }, + { + "appid": 3171560, + "normalized_name": "seedhero" + }, + { + "appid": 3171590, + "normalized_name": "破五:锦衣卫" + }, + { + "appid": 3171620, + "normalized_name": "burger wars" + }, + { + "appid": 3171630, + "normalized_name": "witch's dungeon" + }, + { + "appid": 3171650, + "normalized_name": "異世界女僕征途" + }, + { + "appid": 3171740, + "normalized_name": "the crimson arrowhead" + }, + { + "appid": 3171760, + "normalized_name": "anderkant" + }, + { + "appid": 3171780, + "normalized_name": "vr dog sprint" + }, + { + "appid": 3171790, + "normalized_name": "astra sentinel" + }, + { + "appid": 3171810, + "normalized_name": "花样人生模拟器" + }, + { + "appid": 3171890, + "normalized_name": "the unsolved" + }, + { + "appid": 3171900, + "normalized_name": "stand alone ep.0" + }, + { + "appid": 3171910, + "normalized_name": "pako caravan" + }, + { + "appid": 3171930, + "normalized_name": "shojing ショウジング" + }, + { + "appid": 3172040, + "normalized_name": "hidden pass skirmishes" + }, + { + "appid": 3172050, + "normalized_name": "glow storm" + }, + { + "appid": 3172060, + "normalized_name": "sex interview ice cream" + }, + { + "appid": 3172090, + "normalized_name": "dream garage" + }, + { + "appid": 3172130, + "normalized_name": "tomo arena" + }, + { + "appid": 3172140, + "normalized_name": "path of the oxiflame" + }, + { + "appid": 3172160, + "normalized_name": "avante! atlantis" + }, + { + "appid": 3172180, + "normalized_name": "hot and lovely waifu xxii" + }, + { + "appid": 3172190, + "normalized_name": "sexuality with girlfriends kello&cammy" + }, + { + "appid": 3172200, + "normalized_name": "lust lady friends" + }, + { + "appid": 3172220, + "normalized_name": "yume 5 spring festival of lust" + }, + { + "appid": 3172230, + "normalized_name": "sexuality with girlfriends laler&reese" + }, + { + "appid": 3172270, + "normalized_name": "blood & lust [18+]🩸" + }, + { + "appid": 3172280, + "normalized_name": "sex amnesia lover sim 🔞" + }, + { + "appid": 3172290, + "normalized_name": "milfy way space orgasm 🪐🔞" + }, + { + "appid": 3172300, + "normalized_name": "magic pussy chapter 3" + }, + { + "appid": 3172310, + "normalized_name": "sex desert mad lust" + }, + { + "appid": 3172330, + "normalized_name": "cumverse [18+]" + }, + { + "appid": 3172380, + "normalized_name": "legend of the moon 2" + }, + { + "appid": 3172400, + "normalized_name": "darkest mine" + }, + { + "appid": 3172410, + "normalized_name": "a wizard's wool" + }, + { + "appid": 3172420, + "normalized_name": "人类终结之日——2074" + }, + { + "appid": 3172430, + "normalized_name": "craftimals build to the sun" + }, + { + "appid": 3172440, + "normalized_name": "one move away" + }, + { + "appid": 3172450, + "normalized_name": "hidden objects" + }, + { + "appid": 3172460, + "normalized_name": "emiru game" + }, + { + "appid": 3172470, + "normalized_name": "the backwars" + }, + { + "appid": 3172480, + "normalized_name": "the parish" + }, + { + "appid": 3172490, + "normalized_name": "yellowstone" + }, + { + "appid": 3172500, + "normalized_name": "back to the rooms" + }, + { + "appid": 3172530, + "normalized_name": "horror prison" + }, + { + "appid": 3172540, + "normalized_name": "watertrix online" + }, + { + "appid": 3172550, + "normalized_name": "space survivors" + }, + { + "appid": 3172570, + "normalized_name": "extreme forklifting 3" + }, + { + "appid": 3172590, + "normalized_name": "escape depths of immanis" + }, + { + "appid": 3172600, + "normalized_name": "stellarfighter galactica" + }, + { + "appid": 3172620, + "normalized_name": "kleptomania" + }, + { + "appid": 3172640, + "normalized_name": "war lands" + }, + { + "appid": 3172670, + "normalized_name": "sex arena passion of aquilon 💋⚔" + }, + { + "appid": 3172680, + "normalized_name": "cybernetic ninja nuns" + }, + { + "appid": 3172690, + "normalized_name": "building friends" + }, + { + "appid": 3172700, + "normalized_name": "banquet for fools" + }, + { + "appid": 3172720, + "normalized_name": "kara fantasy" + }, + { + "appid": 3172760, + "normalized_name": "the wide open sky is running out of catfish" + }, + { + "appid": 3172770, + "normalized_name": "terrorbytes" + }, + { + "appid": 3172790, + "normalized_name": "nobk overlay" + }, + { + "appid": 3172800, + "normalized_name": "pod jam" + }, + { + "appid": 3172820, + "normalized_name": "abyss stares at you" + }, + { + "appid": 3172830, + "normalized_name": "jinchou" + }, + { + "appid": 3172860, + "normalized_name": "lust epidemic 18+" + }, + { + "appid": 3172880, + "normalized_name": "swingrove" + }, + { + "appid": 3172990, + "normalized_name": "get baz home" + }, + { + "appid": 3173000, + "normalized_name": "2me" + }, + { + "appid": 3173050, + "normalized_name": "jellitito" + }, + { + "appid": 3173070, + "normalized_name": "bdsm sex episode 9" + }, + { + "appid": 3173100, + "normalized_name": "medieval heroes gold hunt" + }, + { + "appid": 3173110, + "normalized_name": "bush simulator" + }, + { + "appid": 3173120, + "normalized_name": "bible verse challenge" + }, + { + "appid": 3173130, + "normalized_name": "gun frog" + }, + { + "appid": 3173160, + "normalized_name": "general command" + }, + { + "appid": 3173200, + "normalized_name": "kuri kuri click! ~my sweet model!~" + }, + { + "appid": 3173220, + "normalized_name": "wizards in shorts" + }, + { + "appid": 3173270, + "normalized_name": "rage ball" + }, + { + "appid": 3173300, + "normalized_name": "i commissioned some dogs 4" + }, + { + "appid": 3173310, + "normalized_name": "i commissioned some butterflies 4" + }, + { + "appid": 3173320, + "normalized_name": "i commissioned some butterflies 5" + }, + { + "appid": 3173400, + "normalized_name": "speedrun maker" + }, + { + "appid": 3173410, + "normalized_name": "witchcraft spellbound decks" + }, + { + "appid": 3173430, + "normalized_name": "grimmkitchen" + }, + { + "appid": 3173440, + "normalized_name": "doomwalker" + }, + { + "appid": 3173460, + "normalized_name": "endvasion" + }, + { + "appid": 3173480, + "normalized_name": "polygun" + }, + { + "appid": 3173530, + "normalized_name": "normal man" + }, + { + "appid": 3173540, + "normalized_name": "pleasure delving" + }, + { + "appid": 3173550, + "normalized_name": "m4arena" + }, + { + "appid": 3173560, + "normalized_name": "anomalous coffee machine" + }, + { + "appid": 3173620, + "normalized_name": "the knights order" + }, + { + "appid": 3173670, + "normalized_name": "graphical siege" + }, + { + "appid": 3173690, + "normalized_name": "echo 99 – your pomodoro partner" + }, + { + "appid": 3173710, + "normalized_name": "uplift isle – your encouragement guide" + }, + { + "appid": 3173740, + "normalized_name": "ghost frequency" + }, + { + "appid": 3173780, + "normalized_name": "toadled eating frenzy" + }, + { + "appid": 3173870, + "normalized_name": "call the tune" + }, + { + "appid": 3173890, + "normalized_name": "开局五个亿" + }, + { + "appid": 3173900, + "normalized_name": "voices of freedom" + }, + { + "appid": 3173920, + "normalized_name": "报答老板" + }, + { + "appid": 3173930, + "normalized_name": "the hilarious three kingdoms 爆笑三国" + }, + { + "appid": 3173940, + "normalized_name": "chopsticks" + }, + { + "appid": 3173970, + "normalized_name": "wild script nature" + }, + { + "appid": 3173980, + "normalized_name": "you are super mega legend phoenix" + }, + { + "appid": 3174020, + "normalized_name": "lana queen of ancient egypt" + }, + { + "appid": 3174040, + "normalized_name": "intercolonies" + }, + { + "appid": 3174070, + "normalized_name": "texas hold'em poker pokerist" + }, + { + "appid": 3174110, + "normalized_name": "pictorobot" + }, + { + "appid": 3174140, + "normalized_name": "shop manager simulator" + }, + { + "appid": 3174160, + "normalized_name": "paws and whiskers" + }, + { + "appid": 3174170, + "normalized_name": "over tooned" + }, + { + "appid": 3174280, + "normalized_name": "dusty" + }, + { + "appid": 3174310, + "normalized_name": "battle match samurai wars" + }, + { + "appid": 3174330, + "normalized_name": "the lighthouse" + }, + { + "appid": 3174380, + "normalized_name": "ev station simulator" + }, + { + "appid": 3174390, + "normalized_name": "let it chill" + }, + { + "appid": 3174400, + "normalized_name": "mythaven" + }, + { + "appid": 3174410, + "normalized_name": "bask the alchemist frog" + }, + { + "appid": 3174420, + "normalized_name": "flufftopia fluffmazing by daniel da silva" + }, + { + "appid": 3174430, + "normalized_name": "gay sex adventures episode 9" + }, + { + "appid": 3174440, + "normalized_name": "hasteventure" + }, + { + "appid": 3174470, + "normalized_name": "retroblazer" + }, + { + "appid": 3174480, + "normalized_name": "return to campus" + }, + { + "appid": 3174490, + "normalized_name": "golfslinger" + }, + { + "appid": 3174500, + "normalized_name": "winter survivor protocol" + }, + { + "appid": 3174510, + "normalized_name": "who killed" + }, + { + "appid": 3174540, + "normalized_name": "night hacking" + }, + { + "appid": 3174620, + "normalized_name": "raiding party" + }, + { + "appid": 3174670, + "normalized_name": "lunar falls" + }, + { + "appid": 3174720, + "normalized_name": "scales and tails" + }, + { + "appid": 3174740, + "normalized_name": "earnsomechips" + }, + { + "appid": 3174770, + "normalized_name": "matchoolu" + }, + { + "appid": 3174790, + "normalized_name": "block master 3d puzzle" + }, + { + "appid": 3174810, + "normalized_name": "ニコニコさん | niconico san" + }, + { + "appid": 3174820, + "normalized_name": "robot reckoning" + }, + { + "appid": 3174830, + "normalized_name": "throne requiem" + }, + { + "appid": 3174860, + "normalized_name": "sexy memory puzzle sports car girl" + }, + { + "appid": 3174920, + "normalized_name": "rise of a porn star" + }, + { + "appid": 3174950, + "normalized_name": "dream bar simulator" + }, + { + "appid": 3174960, + "normalized_name": "magical gyarus milk me for mana" + }, + { + "appid": 3175000, + "normalized_name": "8 ball goal" + }, + { + "appid": 3175020, + "normalized_name": "astrobrawl" + }, + { + "appid": 3175040, + "normalized_name": "chior" + }, + { + "appid": 3175130, + "normalized_name": "atoyo" + }, + { + "appid": 3175140, + "normalized_name": "click and tower" + }, + { + "appid": 3175180, + "normalized_name": "trolling bowling" + }, + { + "appid": 3175190, + "normalized_name": "quantumpulse 2a" + }, + { + "appid": 3175230, + "normalized_name": "terminal adventure" + }, + { + "appid": 3175270, + "normalized_name": "挺进吧!毛茸茸勇者!" + }, + { + "appid": 3175290, + "normalized_name": "ground seal" + }, + { + "appid": 3175300, + "normalized_name": "dale's delivery" + }, + { + "appid": 3175310, + "normalized_name": "bible puzzle" + }, + { + "appid": 3175380, + "normalized_name": "天灾:防御 the trouble defense" + }, + { + "appid": 3175390, + "normalized_name": "nalani legacy of the ancients" + }, + { + "appid": 3175410, + "normalized_name": "timelurker" + }, + { + "appid": 3175440, + "normalized_name": "stow it!!!" + }, + { + "appid": 3175450, + "normalized_name": "nowv" + }, + { + "appid": 3175460, + "normalized_name": "pixelate must die" + }, + { + "appid": 3175510, + "normalized_name": "the insider" + }, + { + "appid": 3175530, + "normalized_name": "ココロクローバーsun 超古代の侵略者!!" + }, + { + "appid": 3175580, + "normalized_name": "water maid" + }, + { + "appid": 3175630, + "normalized_name": "gunstar's gambit" + }, + { + "appid": 3175650, + "normalized_name": "final hunter" + }, + { + "appid": 3175670, + "normalized_name": "defense builder" + }, + { + "appid": 3175690, + "normalized_name": "solar collision control" + }, + { + "appid": 3175700, + "normalized_name": "月光のソードブレイカー ユリヒメ編" + }, + { + "appid": 3175720, + "normalized_name": "bm love cafe" + }, + { + "appid": 3175740, + "normalized_name": "hostyle" + }, + { + "appid": 3175790, + "normalized_name": "mecha legends" + }, + { + "appid": 3175860, + "normalized_name": "driving is hard" + }, + { + "appid": 3175890, + "normalized_name": "reel and riddles" + }, + { + "appid": 3175900, + "normalized_name": "kasia & her lesbian slaves" + }, + { + "appid": 3175910, + "normalized_name": "inversed" + }, + { + "appid": 3175920, + "normalized_name": "noir bunker" + }, + { + "appid": 3175930, + "normalized_name": "the painting" + }, + { + "appid": 3175950, + "normalized_name": "ezrebeth" + }, + { + "appid": 3175990, + "normalized_name": "ultraboxing – vr boxing" + }, + { + "appid": 3176050, + "normalized_name": "cantaloupe chronicle" + }, + { + "appid": 3176060, + "normalized_name": "emissary zero" + }, + { + "appid": 3176070, + "normalized_name": "zhongkui" + }, + { + "appid": 3176080, + "normalized_name": "艾瑟拉的阶梯" + }, + { + "appid": 3176160, + "normalized_name": "deep depths" + }, + { + "appid": 3176190, + "normalized_name": "sips and sonnets" + }, + { + "appid": 3176250, + "normalized_name": "the misfits" + }, + { + "appid": 3176280, + "normalized_name": "elemental ballistic" + }, + { + "appid": 3176290, + "normalized_name": "fishing up" + }, + { + "appid": 3176300, + "normalized_name": "newlywed female teacher miri" + }, + { + "appid": 3176310, + "normalized_name": "brood year" + }, + { + "appid": 3176320, + "normalized_name": "happy corp." + }, + { + "appid": 3176420, + "normalized_name": "maze domination" + }, + { + "appid": 3176450, + "normalized_name": "eva platformer" + }, + { + "appid": 3176460, + "normalized_name": "pirend7" + }, + { + "appid": 3176470, + "normalized_name": "reverse defense" + }, + { + "appid": 3176490, + "normalized_name": "denshi life 2 / デンシライフ 2" + }, + { + "appid": 3176500, + "normalized_name": "wizard cats" + }, + { + "appid": 3176520, + "normalized_name": "scorchie adventures" + }, + { + "appid": 3176560, + "normalized_name": "[southern fjords] newspaper day" + }, + { + "appid": 3176580, + "normalized_name": "penelope syndrome preview" + }, + { + "appid": 3176710, + "normalized_name": "idle aquarium" + }, + { + "appid": 3176720, + "normalized_name": "royalty free for all" + }, + { + "appid": 3176740, + "normalized_name": "multiplayer bikini brawlers" + }, + { + "appid": 3176750, + "normalized_name": "let's play cards baccarat" + }, + { + "appid": 3176780, + "normalized_name": "step into the dark" + }, + { + "appid": 3176790, + "normalized_name": "tesserarii the dice rolling roguelike" + }, + { + "appid": 3176800, + "normalized_name": "gridlink" + }, + { + "appid": 3176810, + "normalized_name": "死掉的女儿(the dead daughter)" + }, + { + "appid": 3176820, + "normalized_name": "drift on snow" + }, + { + "appid": 3176830, + "normalized_name": "monster freaks!" + }, + { + "appid": 3176850, + "normalized_name": "second stellar" + }, + { + "appid": 3176880, + "normalized_name": "let's play cards solitaire" + }, + { + "appid": 3176890, + "normalized_name": "shore of jord" + }, + { + "appid": 3176940, + "normalized_name": "bricks of camels" + }, + { + "appid": 3176950, + "normalized_name": "じゅうにばんめにわるいゆめのさち" + }, + { + "appid": 3176970, + "normalized_name": "de coding armageddon" + }, + { + "appid": 3176980, + "normalized_name": "magic construct 魔力构造" + }, + { + "appid": 3177030, + "normalized_name": "bleeding hearts althazar chapter" + }, + { + "appid": 3177050, + "normalized_name": "fog racing circuit" + }, + { + "appid": 3177070, + "normalized_name": "frontline inferno" + }, + { + "appid": 3177130, + "normalized_name": "stock exchange game" + }, + { + "appid": 3177160, + "normalized_name": "cursed home" + }, + { + "appid": 3177180, + "normalized_name": "gensou gold rush" + }, + { + "appid": 3177200, + "normalized_name": "《道格拉斯警督的日记》" + }, + { + "appid": 3177210, + "normalized_name": "酒馆战争" + }, + { + "appid": 3177240, + "normalized_name": "chain reaction" + }, + { + "appid": 3177280, + "normalized_name": "restaurant owner a restaurant simulator" + }, + { + "appid": 3177320, + "normalized_name": "snowless night" + }, + { + "appid": 3177330, + "normalized_name": "tagged" + }, + { + "appid": 3177340, + "normalized_name": "tower of madness" + }, + { + "appid": 3177380, + "normalized_name": "reverex dx" + }, + { + "appid": 3177400, + "normalized_name": "the regis family experiment" + }, + { + "appid": 3177430, + "normalized_name": "trumps" + }, + { + "appid": 3177450, + "normalized_name": "ceiling run" + }, + { + "appid": 3177510, + "normalized_name": "cardstronaut" + }, + { + "appid": 3177550, + "normalized_name": "black light kills" + }, + { + "appid": 3177590, + "normalized_name": "ichiro" + }, + { + "appid": 3177650, + "normalized_name": "jump it up" + }, + { + "appid": 3177660, + "normalized_name": "victim 10 pm" + }, + { + "appid": 3177670, + "normalized_name": "residual soul" + }, + { + "appid": 3177690, + "normalized_name": "signals to ev" + }, + { + "appid": 3177710, + "normalized_name": "on the train" + }, + { + "appid": 3177730, + "normalized_name": "rottenroots" + }, + { + "appid": 3177740, + "normalized_name": "pingwin" + }, + { + "appid": 3177800, + "normalized_name": "dungeon sucker" + }, + { + "appid": 3177810, + "normalized_name": "alien video game scientist" + }, + { + "appid": 3177820, + "normalized_name": "dungeon addictor" + }, + { + "appid": 3177870, + "normalized_name": "no happy days" + }, + { + "appid": 3177890, + "normalized_name": "rana card" + }, + { + "appid": 3177920, + "normalized_name": "pumpkin panic" + }, + { + "appid": 3177970, + "normalized_name": "bioweaver 血肉工匠" + }, + { + "appid": 3178020, + "normalized_name": "catch the ball 2" + }, + { + "appid": 3178030, + "normalized_name": "union survivors" + }, + { + "appid": 3178350, + "normalized_name": "warriors abyss" + }, + { + "appid": 3178630, + "normalized_name": "mini game:click" + }, + { + "appid": 3178640, + "normalized_name": "mini game:click 2" + }, + { + "appid": 3178650, + "normalized_name": "mini game:guess numbers" + }, + { + "appid": 3178660, + "normalized_name": "blood rising" + }, + { + "appid": 3178670, + "normalized_name": "standing together" + }, + { + "appid": 3178760, + "normalized_name": "unholy village free version" + }, + { + "appid": 3178820, + "normalized_name": "gladiators of citadelum" + }, + { + "appid": 3178830, + "normalized_name": "王牌星舰" + }, + { + "appid": 3178880, + "normalized_name": "girlsstrage" + }, + { + "appid": 3178890, + "normalized_name": "monpic 小さなドラゴンと竜化の少女" + }, + { + "appid": 3178910, + "normalized_name": "keyboard soldier" + }, + { + "appid": 3178930, + "normalized_name": "mark my words" + }, + { + "appid": 3178950, + "normalized_name": "arsgoetia" + }, + { + "appid": 3178970, + "normalized_name": "stones of power" + }, + { + "appid": 3179010, + "normalized_name": "fisherman simulator" + }, + { + "appid": 3179020, + "normalized_name": "crimsaw" + }, + { + "appid": 3179050, + "normalized_name": "piece by piece" + }, + { + "appid": 3179120, + "normalized_name": "monastery ora et labora" + }, + { + "appid": 3179130, + "normalized_name": "playcoq the coop defender" + }, + { + "appid": 3179140, + "normalized_name": "hr simulator" + }, + { + "appid": 3179160, + "normalized_name": "chef hands kitchen mayhem" + }, + { + "appid": 3179170, + "normalized_name": "mo 'n fro" + }, + { + "appid": 3179200, + "normalized_name": "电子心理治疗:愈见群岛" + }, + { + "appid": 3179260, + "normalized_name": "kingdoms merge & build" + }, + { + "appid": 3179280, + "normalized_name": "friendly sheeps a cozy simulator" + }, + { + "appid": 3179320, + "normalized_name": "8ロウィン" + }, + { + "appid": 3179330, + "normalized_name": "maries patisserie sweet dreams collector's" + }, + { + "appid": 3179350, + "normalized_name": "long drive north co op rv simulator" + }, + { + "appid": 3179360, + "normalized_name": "university of magic faculty of witches" + }, + { + "appid": 3179370, + "normalized_name": "ephemeris" + }, + { + "appid": 3179450, + "normalized_name": "uraankhians dygyn the beginning" + }, + { + "appid": 3179460, + "normalized_name": "ritualist" + }, + { + "appid": 3179490, + "normalized_name": "footballlife" + }, + { + "appid": 3179510, + "normalized_name": "2184" + }, + { + "appid": 3179530, + "normalized_name": "in violet water" + }, + { + "appid": 3179710, + "normalized_name": "extinct vr" + }, + { + "appid": 3179720, + "normalized_name": "voices in the dark" + }, + { + "appid": 3179730, + "normalized_name": "deck of haunts" + }, + { + "appid": 3179740, + "normalized_name": "whiskerwood vale" + }, + { + "appid": 3179750, + "normalized_name": "holy fire meow meow special forces" + }, + { + "appid": 3179770, + "normalized_name": "boolantics" + }, + { + "appid": 3179780, + "normalized_name": "双生木" + }, + { + "appid": 3179810, + "normalized_name": "tiny dangerous dungeons remake" + }, + { + "appid": 3179830, + "normalized_name": "shoppingmall manager simulator" + }, + { + "appid": 3179840, + "normalized_name": "gun store simulator" + }, + { + "appid": 3179850, + "normalized_name": "farm & store simulator" + }, + { + "appid": 3179860, + "normalized_name": "pairs & perils" + }, + { + "appid": 3179870, + "normalized_name": "kleks academy" + }, + { + "appid": 3179880, + "normalized_name": "adrenalinkick" + }, + { + "appid": 3179900, + "normalized_name": "match 'em" + }, + { + "appid": 3179950, + "normalized_name": "off balance balance party vol. 2" + }, + { + "appid": 3179960, + "normalized_name": "cambrox" + }, + { + "appid": 3179990, + "normalized_name": "futanari sex adventures episode 3" + }, + { + "appid": 3180000, + "normalized_name": "blades for hire" + }, + { + "appid": 3180060, + "normalized_name": "big boobie boss blackmail" + }, + { + "appid": 3180070, + "normalized_name": "no i'm not a human" + }, + { + "appid": 3180150, + "normalized_name": "mall simulator 2025" + }, + { + "appid": 3180170, + "normalized_name": "sea struggles" + }, + { + "appid": 3180240, + "normalized_name": "tetris forever" + }, + { + "appid": 3180270, + "normalized_name": "carnage kart x" + }, + { + "appid": 3180280, + "normalized_name": "eyes of the sky" + }, + { + "appid": 3180290, + "normalized_name": "nekomancer of nowhere" + }, + { + "appid": 3180310, + "normalized_name": "billie's wheelie" + }, + { + "appid": 3180340, + "normalized_name": "rig riot" + }, + { + "appid": 3180400, + "normalized_name": "particle accelerator" + }, + { + "appid": 3180410, + "normalized_name": "project songbird" + }, + { + "appid": 3180420, + "normalized_name": "lost in static" + }, + { + "appid": 3180440, + "normalized_name": "terrorsepsis" + }, + { + "appid": 3180450, + "normalized_name": "battle squares" + }, + { + "appid": 3180460, + "normalized_name": "4fools1" + }, + { + "appid": 3180470, + "normalized_name": "nuclear lizard island rampage" + }, + { + "appid": 3180480, + "normalized_name": "sanity bunker" + }, + { + "appid": 3180500, + "normalized_name": "shapescale" + }, + { + "appid": 3180510, + "normalized_name": "social clicker persona" + }, + { + "appid": 3180520, + "normalized_name": "bubble battle" + }, + { + "appid": 3180570, + "normalized_name": "shamoji" + }, + { + "appid": 3180610, + "normalized_name": "eternal glory" + }, + { + "appid": 3180640, + "normalized_name": "太饿了 so hungry" + }, + { + "appid": 3180670, + "normalized_name": "undying flower" + }, + { + "appid": 3180680, + "normalized_name": "a la card" + }, + { + "appid": 3180690, + "normalized_name": "sweet escape" + }, + { + "appid": 3180700, + "normalized_name": "scavenger run" + }, + { + "appid": 3180750, + "normalized_name": "journey of seasons heroes" + }, + { + "appid": 3180760, + "normalized_name": "slimeer" + }, + { + "appid": 3180780, + "normalized_name": "sonata" + }, + { + "appid": 3180800, + "normalized_name": "mystery of gevaudan" + }, + { + "appid": 3180810, + "normalized_name": "darkwood tales beast in the shadows" + }, + { + "appid": 3180830, + "normalized_name": "circuit stance" + }, + { + "appid": 3180860, + "normalized_name": "blightscape" + }, + { + "appid": 3180960, + "normalized_name": "surreal farm" + }, + { + "appid": 3180970, + "normalized_name": "let's beer together!" + }, + { + "appid": 3181040, + "normalized_name": "dream eater girl" + }, + { + "appid": 3181120, + "normalized_name": "htr hyper torque racing" + }, + { + "appid": 3181150, + "normalized_name": "theater of death" + }, + { + "appid": 3181160, + "normalized_name": "planty's residence" + }, + { + "appid": 3181200, + "normalized_name": "odyssey realm of echoes" + }, + { + "appid": 3181220, + "normalized_name": "av director life!" + }, + { + "appid": 3181240, + "normalized_name": "magic overflow" + }, + { + "appid": 3181290, + "normalized_name": "hell shooter" + }, + { + "appid": 3181300, + "normalized_name": "scream" + }, + { + "appid": 3181350, + "normalized_name": "the great tree" + }, + { + "appid": 3181400, + "normalized_name": "tattoo studio simulator" + }, + { + "appid": 3181420, + "normalized_name": "world series of poker game wsop" + }, + { + "appid": 3181430, + "normalized_name": "year 2245 zoe" + }, + { + "appid": 3181470, + "normalized_name": "cat & farm pals" + }, + { + "appid": 3181630, + "normalized_name": "recovery phrase" + }, + { + "appid": 3181660, + "normalized_name": "asthenia" + }, + { + "appid": 3181670, + "normalized_name": "periodicity hats and scars" + }, + { + "appid": 3181730, + "normalized_name": "wartime glory" + }, + { + "appid": 3181770, + "normalized_name": "diced up!" + }, + { + "appid": 3181780, + "normalized_name": "space station adventure" + }, + { + "appid": 3181790, + "normalized_name": "souper game" + }, + { + "appid": 3181830, + "normalized_name": "trapped" + }, + { + "appid": 3181850, + "normalized_name": "after me" + }, + { + "appid": 3181890, + "normalized_name": "cat island petrichor" + }, + { + "appid": 3181940, + "normalized_name": "potyguara verse" + }, + { + "appid": 3181950, + "normalized_name": "year 2031" + }, + { + "appid": 3181960, + "normalized_name": "hobnobbers" + }, + { + "appid": 3181980, + "normalized_name": "dragonoid" + }, + { + "appid": 3182020, + "normalized_name": "leshy prelude" + }, + { + "appid": 3182030, + "normalized_name": "zeleny grimn" + }, + { + "appid": 3182050, + "normalized_name": "uazo free as a bird" + }, + { + "appid": 3182140, + "normalized_name": "afterlife reverie" + }, + { + "appid": 3182150, + "normalized_name": "edison" + }, + { + "appid": 3182170, + "normalized_name": "tromblo's adventure" + }, + { + "appid": 3182180, + "normalized_name": "escape of the cat aslyum" + }, + { + "appid": 3182200, + "normalized_name": "vetitum_vrc" + }, + { + "appid": 3182210, + "normalized_name": "on cmnd" + }, + { + "appid": 3182230, + "normalized_name": "boxcars" + }, + { + "appid": 3182240, + "normalized_name": "tangram collection" + }, + { + "appid": 3182280, + "normalized_name": "fault 24" + }, + { + "appid": 3182290, + "normalized_name": "arctis" + }, + { + "appid": 3182320, + "normalized_name": "prince arthur monsters of albion" + }, + { + "appid": 3182330, + "normalized_name": "catboy aim trainer" + }, + { + "appid": 3182340, + "normalized_name": "sexy memory puzzle sports car futanari" + }, + { + "appid": 3182350, + "normalized_name": "metrorunner" + }, + { + "appid": 3182360, + "normalized_name": "bakery shop match up" + }, + { + "appid": 3182370, + "normalized_name": "drop dimensions" + }, + { + "appid": 3182390, + "normalized_name": "my little sister callie" + }, + { + "appid": 3182400, + "normalized_name": "cherry jump" + }, + { + "appid": 3182420, + "normalized_name": "isle of birds" + }, + { + "appid": 3182530, + "normalized_name": "deep menace vr" + }, + { + "appid": 3182570, + "normalized_name": "three against the odds" + }, + { + "appid": 3182600, + "normalized_name": "shake the baby!" + }, + { + "appid": 3182730, + "normalized_name": "blades bows and magic" + }, + { + "appid": 3182750, + "normalized_name": "fayrehaven" + }, + { + "appid": 3182800, + "normalized_name": "eat that ice cream" + }, + { + "appid": 3182820, + "normalized_name": "temple of the gods" + }, + { + "appid": 3182870, + "normalized_name": "slugterra all stars" + }, + { + "appid": 3182910, + "normalized_name": "trump breakout" + }, + { + "appid": 3182930, + "normalized_name": "位面勇者" + }, + { + "appid": 3182950, + "normalized_name": "matchstick cosmic flame" + }, + { + "appid": 3182960, + "normalized_name": "home world run" + }, + { + "appid": 3182990, + "normalized_name": "fulfillment center simulator" + }, + { + "appid": 3183020, + "normalized_name": "逗鱼达人" + }, + { + "appid": 3183030, + "normalized_name": "9 hallways the anomaly agent" + }, + { + "appid": 3183080, + "normalized_name": "kyoryu" + }, + { + "appid": 3183090, + "normalized_name": "火力全开" + }, + { + "appid": 3183100, + "normalized_name": "buster's big score" + }, + { + "appid": 3183120, + "normalized_name": "seduction clicker" + }, + { + "appid": 3183200, + "normalized_name": "touhou tales of the scarlet" + }, + { + "appid": 3183210, + "normalized_name": "englishvan" + }, + { + "appid": 3183220, + "normalized_name": "aurora defense" + }, + { + "appid": 3183230, + "normalized_name": "dream strikers" + }, + { + "appid": 3183240, + "normalized_name": "ritual chamber" + }, + { + "appid": 3183250, + "normalized_name": "operation huntinghawk breakthrough" + }, + { + "appid": 3183270, + "normalized_name": "basil and the isles of spice" + }, + { + "appid": 3183280, + "normalized_name": "game of thrones kingsroad" + }, + { + "appid": 3183310, + "normalized_name": "遗忘之旅" + }, + { + "appid": 3183320, + "normalized_name": "maze of realities synergy of worlds collector's" + }, + { + "appid": 3183330, + "normalized_name": "deep sea arena" + }, + { + "appid": 3183350, + "normalized_name": "幻想鱼箱" + }, + { + "appid": 3183360, + "normalized_name": "nabi" + }, + { + "appid": 3183400, + "normalized_name": "造物者 初始" + }, + { + "appid": 3183410, + "normalized_name": "the bench" + }, + { + "appid": 3183420, + "normalized_name": "terminal bore" + }, + { + "appid": 3183430, + "normalized_name": "7 nights keeper" + }, + { + "appid": 3183440, + "normalized_name": "outwith" + }, + { + "appid": 3183450, + "normalized_name": "魔法之境 magic realm" + }, + { + "appid": 3183500, + "normalized_name": "epoch of guardians" + }, + { + "appid": 3183540, + "normalized_name": "corrupted worlds" + }, + { + "appid": 3183600, + "normalized_name": "星象迷案 the zodiac mystery" + }, + { + "appid": 3183640, + "normalized_name": "demon hunters" + }, + { + "appid": 3183660, + "normalized_name": "peepers paradise" + }, + { + "appid": 3183700, + "normalized_name": "rogue train fury rail" + }, + { + "appid": 3183730, + "normalized_name": "driveloop survivors" + }, + { + "appid": 3183760, + "normalized_name": "speedrunners 2 king of speed" + }, + { + "appid": 3183790, + "normalized_name": "defense of fort burton" + }, + { + "appid": 3183800, + "normalized_name": "math in space" + }, + { + "appid": 3183840, + "normalized_name": "ticker" + }, + { + "appid": 3183850, + "normalized_name": "overlord" + }, + { + "appid": 3183860, + "normalized_name": "warship" + }, + { + "appid": 3183870, + "normalized_name": "culinarium" + }, + { + "appid": 3183880, + "normalized_name": "yuri party!" + }, + { + "appid": 3183900, + "normalized_name": "galactic exile" + }, + { + "appid": 3183930, + "normalized_name": "far flight" + }, + { + "appid": 3183950, + "normalized_name": "симулятор обнимания берёзы" + }, + { + "appid": 3183960, + "normalized_name": "leapventure countless biomes" + }, + { + "appid": 3183970, + "normalized_name": "gex trilogy" + }, + { + "appid": 3183980, + "normalized_name": "a night with emily" + }, + { + "appid": 3183990, + "normalized_name": "avoidy virus" + }, + { + "appid": 3184110, + "normalized_name": "widget inc." + }, + { + "appid": 3184130, + "normalized_name": "terracrest" + }, + { + "appid": 3184160, + "normalized_name": "spellchanted 2d hidden object puzzle adveture tile matching" + }, + { + "appid": 3184170, + "normalized_name": "brothers of battle" + }, + { + "appid": 3184210, + "normalized_name": "breath of death vii the beginning reanimated" + }, + { + "appid": 3184250, + "normalized_name": "deep snake" + }, + { + "appid": 3184270, + "normalized_name": "id echoes" + }, + { + "appid": 3184290, + "normalized_name": "interrogator 2" + }, + { + "appid": 3184310, + "normalized_name": "beneath the frost" + }, + { + "appid": 3184420, + "normalized_name": "bullet ballet" + }, + { + "appid": 3184440, + "normalized_name": "finares" + }, + { + "appid": 3184460, + "normalized_name": "five nights at restroom 2" + }, + { + "appid": 3184480, + "normalized_name": "draft day sports pro basketball 2025" + }, + { + "appid": 3184510, + "normalized_name": "warriors united" + }, + { + "appid": 3184550, + "normalized_name": "droning on" + }, + { + "appid": 3184570, + "normalized_name": "the beast in the silent valley" + }, + { + "appid": 3184580, + "normalized_name": "elyme arena" + }, + { + "appid": 3184590, + "normalized_name": "ferret frenzy" + }, + { + "appid": 3184620, + "normalized_name": "meet the master" + }, + { + "appid": 3184630, + "normalized_name": "project wak" + }, + { + "appid": 3184640, + "normalized_name": "tears of vanfell" + }, + { + "appid": 3184700, + "normalized_name": "dating maze" + }, + { + "appid": 3184710, + "normalized_name": "forsaken facilities" + }, + { + "appid": 3184720, + "normalized_name": "zombie siege:room war" + }, + { + "appid": 3184730, + "normalized_name": "find us cats" + }, + { + "appid": 3184780, + "normalized_name": "dairy of the dead" + }, + { + "appid": 3184840, + "normalized_name": "light for hire" + }, + { + "appid": 3184880, + "normalized_name": "doce" + }, + { + "appid": 3184940, + "normalized_name": "camelot crush a round table dating sim" + }, + { + "appid": 3184970, + "normalized_name": "哈迪斯 计划" + }, + { + "appid": 3184980, + "normalized_name": "fallout:kill color" + }, + { + "appid": 3184990, + "normalized_name": "诡秘推理" + }, + { + "appid": 3185000, + "normalized_name": "天际都市物语" + }, + { + "appid": 3185010, + "normalized_name": "hounimal" + }, + { + "appid": 3185020, + "normalized_name": "驼崽派对 alpaca party" + }, + { + "appid": 3185060, + "normalized_name": "废都物语重制版" + }, + { + "appid": 3185070, + "normalized_name": "catgirl chess" + }, + { + "appid": 3185100, + "normalized_name": "oldish stuff" + }, + { + "appid": 3185140, + "normalized_name": "submerged mystery takodachi" + }, + { + "appid": 3185170, + "normalized_name": "a developer nightmare" + }, + { + "appid": 3185180, + "normalized_name": "live action bit theater \"routeヨンロク\"" + }, + { + "appid": 3185200, + "normalized_name": "market gardener" + }, + { + "appid": 3185230, + "normalized_name": "quest of the hero" + }, + { + "appid": 3185260, + "normalized_name": "deep in the dungeon" + }, + { + "appid": 3185300, + "normalized_name": "salvage" + }, + { + "appid": 3185390, + "normalized_name": "天道荒本纪 chronicles of the celestial way" + }, + { + "appid": 3185400, + "normalized_name": "the gate" + }, + { + "appid": 3185460, + "normalized_name": "fap&click" + }, + { + "appid": 3185480, + "normalized_name": "family land farmer simulator prologue" + }, + { + "appid": 3185490, + "normalized_name": "bargirls" + }, + { + "appid": 3185510, + "normalized_name": "lucky pikinini advanced killer cyborg" + }, + { + "appid": 3185520, + "normalized_name": "purrfect galaxies" + }, + { + "appid": 3185530, + "normalized_name": "theater school" + }, + { + "appid": 3185540, + "normalized_name": "sword mistress of the dungeon town" + }, + { + "appid": 3185600, + "normalized_name": "no arm" + }, + { + "appid": 3185610, + "normalized_name": "ichai chat" + }, + { + "appid": 3185720, + "normalized_name": "像素旅人 pixel traveler" + }, + { + "appid": 3185750, + "normalized_name": "the lizard problem" + }, + { + "appid": 3185770, + "normalized_name": "native isekai defense" + }, + { + "appid": 3185780, + "normalized_name": "wolfman" + }, + { + "appid": 3185790, + "normalized_name": "seeking my fate medieval fantasy" + }, + { + "appid": 3185820, + "normalized_name": "buried horrors" + }, + { + "appid": 3185840, + "normalized_name": "lovely memory challenge" + }, + { + "appid": 3185860, + "normalized_name": "vengeance is his" + }, + { + "appid": 3185880, + "normalized_name": "wish of hers" + }, + { + "appid": 3185890, + "normalized_name": "我打不过漂亮的她们" + }, + { + "appid": 3185900, + "normalized_name": "pet lands first steps" + }, + { + "appid": 3185940, + "normalized_name": "雨之殘響" + }, + { + "appid": 3186040, + "normalized_name": "拖拖拉拉小菲镇" + }, + { + "appid": 3186070, + "normalized_name": "the overseer field trials" + }, + { + "appid": 3186080, + "normalized_name": "astrotoons" + }, + { + "appid": 3186120, + "normalized_name": "nidana" + }, + { + "appid": 3186130, + "normalized_name": "galen's eye" + }, + { + "appid": 3186150, + "normalized_name": "inglobe" + }, + { + "appid": 3186180, + "normalized_name": "ninja party" + }, + { + "appid": 3186200, + "normalized_name": "survivor story the apocalypse" + }, + { + "appid": 3186220, + "normalized_name": "cyberslot" + }, + { + "appid": 3186230, + "normalized_name": "all whispering tome" + }, + { + "appid": 3186280, + "normalized_name": "dukkido" + }, + { + "appid": 3186300, + "normalized_name": "nuclei" + }, + { + "appid": 3186340, + "normalized_name": "staars" + }, + { + "appid": 3186370, + "normalized_name": "cadava" + }, + { + "appid": 3186400, + "normalized_name": "floppy dicks" + }, + { + "appid": 3186420, + "normalized_name": "cannon island" + }, + { + "appid": 3186440, + "normalized_name": "quantum loop" + }, + { + "appid": 3186480, + "normalized_name": "dookie clicker" + }, + { + "appid": 3186640, + "normalized_name": "geometry jump impossible game" + }, + { + "appid": 3186680, + "normalized_name": "it paints me" + }, + { + "appid": 3186760, + "normalized_name": "baker's agony" + }, + { + "appid": 3186780, + "normalized_name": "astro raid" + }, + { + "appid": 3186790, + "normalized_name": "swords arrows & shields" + }, + { + "appid": 3186810, + "normalized_name": "lofinosaurs" + }, + { + "appid": 3186840, + "normalized_name": "detective mane" + }, + { + "appid": 3186930, + "normalized_name": "their navy is their doom" + }, + { + "appid": 3186950, + "normalized_name": "super grapple day" + }, + { + "appid": 3186990, + "normalized_name": "carrot catcher" + }, + { + "appid": 3187000, + "normalized_name": "randy the racoon" + }, + { + "appid": 3187010, + "normalized_name": "dinocop" + }, + { + "appid": 3187080, + "normalized_name": "reply all" + }, + { + "appid": 3187090, + "normalized_name": "sleepless train" + }, + { + "appid": 3187120, + "normalized_name": "vitta lucis" + }, + { + "appid": 3187200, + "normalized_name": "nexbox" + }, + { + "appid": 3187290, + "normalized_name": "winning post 10 2025" + }, + { + "appid": 3187300, + "normalized_name": "cursorplayer" + }, + { + "appid": 3187360, + "normalized_name": "ad blocker an action puzzle game" + }, + { + "appid": 3187380, + "normalized_name": "death becomes you yuri onsen vacation" + }, + { + "appid": 3187400, + "normalized_name": "dollhouse" + }, + { + "appid": 3187470, + "normalized_name": "unfair rampage knightfall" + }, + { + "appid": 3187490, + "normalized_name": "symphony of the stars" + }, + { + "appid": 3187510, + "normalized_name": "riddle me bunny nonogram" + }, + { + "appid": 3187530, + "normalized_name": "scissors paper stone alert" + }, + { + "appid": 3187540, + "normalized_name": "outrun" + }, + { + "appid": 3187550, + "normalized_name": "cape hideous" + }, + { + "appid": 3187580, + "normalized_name": "hex" + }, + { + "appid": 3187610, + "normalized_name": "stellar wings" + }, + { + "appid": 3187640, + "normalized_name": "tornado chaser" + }, + { + "appid": 3187680, + "normalized_name": "true diner" + }, + { + "appid": 3187700, + "normalized_name": "short trip" + }, + { + "appid": 3187710, + "normalized_name": "elemental guardians" + }, + { + "appid": 3187730, + "normalized_name": "clicker clicker clicker" + }, + { + "appid": 3187740, + "normalized_name": "soulbound dream" + }, + { + "appid": 3187760, + "normalized_name": "angelica's chaotic hardcore school" + }, + { + "appid": 3187770, + "normalized_name": "nagaisan" + }, + { + "appid": 3187790, + "normalized_name": "3199" + }, + { + "appid": 3187800, + "normalized_name": "love in an enchanted realm" + }, + { + "appid": 3187850, + "normalized_name": "knight of starchart 星图骑士" + }, + { + "appid": 3187870, + "normalized_name": "asunder_ii" + }, + { + "appid": 3187880, + "normalized_name": "ザ・ファブル manga build roguelike" + }, + { + "appid": 3187890, + "normalized_name": "where noble plans lie" + }, + { + "appid": 3187960, + "normalized_name": "metacraft arena" + }, + { + "appid": 3188050, + "normalized_name": "mini mini golf golf" + }, + { + "appid": 3188090, + "normalized_name": "island keeper" + }, + { + "appid": 3188340, + "normalized_name": "mudrunner vr" + }, + { + "appid": 3188350, + "normalized_name": "kite hunter" + }, + { + "appid": 3188360, + "normalized_name": "true thief" + }, + { + "appid": 3188400, + "normalized_name": "画中诗" + }, + { + "appid": 3188430, + "normalized_name": "the bicycle couriers" + }, + { + "appid": 3188460, + "normalized_name": "orcs will never be slaves" + }, + { + "appid": 3188470, + "normalized_name": "aboflah intellifinish" + }, + { + "appid": 3188480, + "normalized_name": "sea town fish market simulator" + }, + { + "appid": 3188510, + "normalized_name": "project sever" + }, + { + "appid": 3188530, + "normalized_name": "golfie up!" + }, + { + "appid": 3188550, + "normalized_name": "trainee death simulator" + }, + { + "appid": 3188590, + "normalized_name": "brister" + }, + { + "appid": 3188650, + "normalized_name": "croaktopia" + }, + { + "appid": 3188660, + "normalized_name": "motocross the game" + }, + { + "appid": 3188690, + "normalized_name": "evoker's gambit" + }, + { + "appid": 3188750, + "normalized_name": "zoul dungeon" + }, + { + "appid": 3188810, + "normalized_name": "plantoons" + }, + { + "appid": 3188830, + "normalized_name": "i'm still here" + }, + { + "appid": 3188840, + "normalized_name": "space memory cats" + }, + { + "appid": 3188880, + "normalized_name": "crystal edge retribution" + }, + { + "appid": 3188910, + "normalized_name": "waifu kawaii idler & clicker" + }, + { + "appid": 3188920, + "normalized_name": "hexaterra" + }, + { + "appid": 3188960, + "normalized_name": "use your words 2" + }, + { + "appid": 3188970, + "normalized_name": "elemental war clash" + }, + { + "appid": 3189010, + "normalized_name": "the mansion of the macabre" + }, + { + "appid": 3189020, + "normalized_name": "kardiya the winds of fate" + }, + { + "appid": 3189030, + "normalized_name": "the amen variations" + }, + { + "appid": 3189070, + "normalized_name": "zagzag" + }, + { + "appid": 3189100, + "normalized_name": "custom hero" + }, + { + "appid": 3189110, + "normalized_name": "short memories" + }, + { + "appid": 3189140, + "normalized_name": "crystal cave" + }, + { + "appid": 3189150, + "normalized_name": "a shade darker than gray" + }, + { + "appid": 3189180, + "normalized_name": "anima" + }, + { + "appid": 3189190, + "normalized_name": "sebio" + }, + { + "appid": 3189320, + "normalized_name": "ophelia" + }, + { + "appid": 3189340, + "normalized_name": "dungeons of eternity" + }, + { + "appid": 3189350, + "normalized_name": "narcissus" + }, + { + "appid": 3189430, + "normalized_name": "pick me pick me" + }, + { + "appid": 3189440, + "normalized_name": "swords & souls legacy collection" + }, + { + "appid": 3189460, + "normalized_name": "9 years of dreaming" + }, + { + "appid": 3189470, + "normalized_name": "og streamer beats" + }, + { + "appid": 3189570, + "normalized_name": "craig 12 craig's escape" + }, + { + "appid": 3189580, + "normalized_name": "galactic garrison" + }, + { + "appid": 3189650, + "normalized_name": "rocks are cool" + }, + { + "appid": 3189660, + "normalized_name": "super market" + }, + { + "appid": 3189670, + "normalized_name": "protect larry" + }, + { + "appid": 3189680, + "normalized_name": "dungeon ceo demo" + }, + { + "appid": 3189710, + "normalized_name": "barpg" + }, + { + "appid": 3189770, + "normalized_name": "the hero of pixel spire" + }, + { + "appid": 3189790, + "normalized_name": "trailer park tycoon raccoon ranch" + }, + { + "appid": 3189800, + "normalized_name": "tracktime" + }, + { + "appid": 3189810, + "normalized_name": "the huntter" + }, + { + "appid": 3189820, + "normalized_name": "stellarcraft" + }, + { + "appid": 3189850, + "normalized_name": "borderline" + }, + { + "appid": 3189870, + "normalized_name": "clash of the kings" + }, + { + "appid": 3189880, + "normalized_name": "下地狱吧,人渣" + }, + { + "appid": 3189890, + "normalized_name": "match & mastery" + }, + { + "appid": 3189900, + "normalized_name": "brave village" + }, + { + "appid": 3189930, + "normalized_name": "kuloshirumu" + }, + { + "appid": 3189950, + "normalized_name": "zen rogue monks" + }, + { + "appid": 3190340, + "normalized_name": "one pass 一遍过" + }, + { + "appid": 3190350, + "normalized_name": "次元探索簿" + }, + { + "appid": 3190380, + "normalized_name": "我只会法术飞弹" + }, + { + "appid": 3190420, + "normalized_name": "eternal lust zenyh city" + }, + { + "appid": 3190430, + "normalized_name": "terror diversion" + }, + { + "appid": 3190440, + "normalized_name": "gnomecart havoc" + }, + { + "appid": 3190460, + "normalized_name": "sinful vampires" + }, + { + "appid": 3190480, + "normalized_name": "a few nights with margaret" + }, + { + "appid": 3190510, + "normalized_name": "ankhway the interplanetary legacy" + }, + { + "appid": 3190530, + "normalized_name": "fight for mi" + }, + { + "appid": 3190540, + "normalized_name": "mirror soul!" + }, + { + "appid": 3190560, + "normalized_name": "acid web" + }, + { + "appid": 3190570, + "normalized_name": "chante fortress of spores" + }, + { + "appid": 3190580, + "normalized_name": "brizo" + }, + { + "appid": 3190590, + "normalized_name": "pogoman" + }, + { + "appid": 3190610, + "normalized_name": "door4 ultimatum" + }, + { + "appid": 3190620, + "normalized_name": "byte the dust" + }, + { + "appid": 3190630, + "normalized_name": "into the fright" + }, + { + "appid": 3190700, + "normalized_name": "midnight looters" + }, + { + "appid": 3190720, + "normalized_name": "つばめの世代" + }, + { + "appid": 3190730, + "normalized_name": "abovethedungeon frontier" + }, + { + "appid": 3190760, + "normalized_name": "the lightkeeper is gone" + }, + { + "appid": 3190810, + "normalized_name": "forgotten spirit" + }, + { + "appid": 3190840, + "normalized_name": "aggi's tiny friends" + }, + { + "appid": 3190870, + "normalized_name": "knights shadow" + }, + { + "appid": 3190910, + "normalized_name": "over road" + }, + { + "appid": 3190950, + "normalized_name": "idle towers" + }, + { + "appid": 3190990, + "normalized_name": "abyss lord" + }, + { + "appid": 3191010, + "normalized_name": "proxyma" + }, + { + "appid": 3191020, + "normalized_name": "gu fighters" + }, + { + "appid": 3191030, + "normalized_name": "nubby's number factory" + }, + { + "appid": 3191050, + "normalized_name": "brazilian drug dealer 3 i opened a portal to hell in the favela trying to revive mit aia i need to close it" + }, + { + "appid": 3191110, + "normalized_name": "time snatcher handy" + }, + { + "appid": 3191140, + "normalized_name": "remonstrator" + }, + { + "appid": 3191150, + "normalized_name": "妖精牧场 fairy ranch" + }, + { + "appid": 3191160, + "normalized_name": "desope" + }, + { + "appid": 3191170, + "normalized_name": "udlr" + }, + { + "appid": 3191200, + "normalized_name": "separated by nightmares the last stand" + }, + { + "appid": 3191230, + "normalized_name": "zombies ruined my day" + }, + { + "appid": 3191240, + "normalized_name": "unemployment simulator" + }, + { + "appid": 3191300, + "normalized_name": "don't get caught" + }, + { + "appid": 3191310, + "normalized_name": "galactic slice" + }, + { + "appid": 3191320, + "normalized_name": "lovely ngo 愛愛性權關懷協會" + }, + { + "appid": 3191340, + "normalized_name": "cake" + }, + { + "appid": 3191370, + "normalized_name": "summer snow day" + }, + { + "appid": 3191390, + "normalized_name": "slimper" + }, + { + "appid": 3191400, + "normalized_name": "gwenblade halloween" + }, + { + "appid": 3191420, + "normalized_name": "tetradome" + }, + { + "appid": 3191470, + "normalized_name": "don't move" + }, + { + "appid": 3191510, + "normalized_name": "gungungo mecha build and battle" + }, + { + "appid": 3191530, + "normalized_name": "irradiate 235" + }, + { + "appid": 3191540, + "normalized_name": "smack monkey" + }, + { + "appid": 3191550, + "normalized_name": "for the greater good" + }, + { + "appid": 3191580, + "normalized_name": "harem dungeon" + }, + { + "appid": 3191600, + "normalized_name": "pollution" + }, + { + "appid": 3191610, + "normalized_name": "rampage rowing" + }, + { + "appid": 3191620, + "normalized_name": "restock" + }, + { + "appid": 3191630, + "normalized_name": "right turn" + }, + { + "appid": 3191680, + "normalized_name": "bussy master halloween 2024" + }, + { + "appid": 3191700, + "normalized_name": "鲤氏奇人异闻录" + }, + { + "appid": 3191710, + "normalized_name": "our ascent" + }, + { + "appid": 3191720, + "normalized_name": "sea of radiation 2" + }, + { + "appid": 3191740, + "normalized_name": "aldo memory of the kingdom" + }, + { + "appid": 3191770, + "normalized_name": "slitherise(スリザーライズ)" + }, + { + "appid": 3191800, + "normalized_name": "lamentations" + }, + { + "appid": 3191860, + "normalized_name": "cult vein" + }, + { + "appid": 3191880, + "normalized_name": "parkour chief chapter secret agent" + }, + { + "appid": 3191920, + "normalized_name": "veil play" + }, + { + "appid": 3191930, + "normalized_name": "zombie overdrive" + }, + { + "appid": 3191940, + "normalized_name": "zly.ii the hacked station" + }, + { + "appid": 3191950, + "normalized_name": "robot rampage" + }, + { + "appid": 3191960, + "normalized_name": "office overloaded" + }, + { + "appid": 3191970, + "normalized_name": "amazing weekend 2 search and relax collector's" + }, + { + "appid": 3191990, + "normalized_name": "tiny house simulator" + }, + { + "appid": 3192020, + "normalized_name": "kessho" + }, + { + "appid": 3192050, + "normalized_name": "mosaica arboreal" + }, + { + "appid": 3192080, + "normalized_name": "keep moving" + }, + { + "appid": 3192100, + "normalized_name": "mooz" + }, + { + "appid": 3192120, + "normalized_name": "hedgehog's dilemma" + }, + { + "appid": 3192130, + "normalized_name": "bathysphere" + }, + { + "appid": 3192140, + "normalized_name": "lore restore" + }, + { + "appid": 3192150, + "normalized_name": "mist of time" + }, + { + "appid": 3192160, + "normalized_name": "global shipping simulator" + }, + { + "appid": 3192210, + "normalized_name": "halfmoon adventures" + }, + { + "appid": 3192310, + "normalized_name": "amelia and the erotic tentacle trap dungeon" + }, + { + "appid": 3192350, + "normalized_name": "there's no santa" + }, + { + "appid": 3192360, + "normalized_name": "rainy day" + }, + { + "appid": 3192390, + "normalized_name": "mirage ignis fatuus" + }, + { + "appid": 3192410, + "normalized_name": "机影:夏夜梦寻" + }, + { + "appid": 3192490, + "normalized_name": "what happens after midnight?" + }, + { + "appid": 3192510, + "normalized_name": "star runaway" + }, + { + "appid": 3192540, + "normalized_name": "deep sea pursuit" + }, + { + "appid": 3192550, + "normalized_name": "deeplanders" + }, + { + "appid": 3192560, + "normalized_name": "快盗天使ツインエンジェル ~時とセカイの迷宮~ re light" + }, + { + "appid": 3192590, + "normalized_name": "結晶姫のラビリンス" + }, + { + "appid": 3192600, + "normalized_name": "no food no drink" + }, + { + "appid": 3192610, + "normalized_name": "tower age" + }, + { + "appid": 3192640, + "normalized_name": "curse the cursor" + }, + { + "appid": 3192650, + "normalized_name": "secret glory hole" + }, + { + "appid": 3192660, + "normalized_name": "galactic seals survivors" + }, + { + "appid": 3192670, + "normalized_name": "downcave" + }, + { + "appid": 3192680, + "normalized_name": "1989 after the war" + }, + { + "appid": 3192720, + "normalized_name": "graffiti simulator" + }, + { + "appid": 3192770, + "normalized_name": "hell drive" + }, + { + "appid": 3192800, + "normalized_name": "ikode legacy of the elements" + }, + { + "appid": 3192810, + "normalized_name": "grimblestone" + }, + { + "appid": 3192840, + "normalized_name": "onto maizilind unto infinity" + }, + { + "appid": 3192860, + "normalized_name": "claycrafter" + }, + { + "appid": 3192880, + "normalized_name": "nettle" + }, + { + "appid": 3192910, + "normalized_name": "the everest encounter" + }, + { + "appid": 3192930, + "normalized_name": "roses in the flames demo" + }, + { + "appid": 3192940, + "normalized_name": "logic grid puzzle" + }, + { + "appid": 3192950, + "normalized_name": "the pane puzzle" + }, + { + "appid": 3192960, + "normalized_name": "parcel master" + }, + { + "appid": 3192970, + "normalized_name": "star freight" + }, + { + "appid": 3192980, + "normalized_name": "shuffle quest" + }, + { + "appid": 3193010, + "normalized_name": "christmas is coming" + }, + { + "appid": 3193060, + "normalized_name": "dark flame nam's quest" + }, + { + "appid": 3193270, + "normalized_name": "camp z the awakening" + }, + { + "appid": 3193290, + "normalized_name": "big maple retailer" + }, + { + "appid": 3193300, + "normalized_name": "tales of valkyrie" + }, + { + "appid": 3193310, + "normalized_name": "deadly rehearsal" + }, + { + "appid": 3193330, + "normalized_name": "猎异者(the weird hunter)" + }, + { + "appid": 3193350, + "normalized_name": "astralith" + }, + { + "appid": 3193390, + "normalized_name": "just platformer 100" + }, + { + "appid": 3193470, + "normalized_name": "规则怪谈:欢迎来到森林马戏团" + }, + { + "appid": 3193490, + "normalized_name": "another one" + }, + { + "appid": 3193500, + "normalized_name": "bunker" + }, + { + "appid": 3193510, + "normalized_name": "the ghost of redstone manor" + }, + { + "appid": 3193520, + "normalized_name": "fraudster" + }, + { + "appid": 3193540, + "normalized_name": "diamond board" + }, + { + "appid": 3193560, + "normalized_name": "yokai landlord monster mystery!" + }, + { + "appid": 3193620, + "normalized_name": "lost connection" + }, + { + "appid": 3193630, + "normalized_name": "super destroyer 大驱" + }, + { + "appid": 3193640, + "normalized_name": "hotel wazuma" + }, + { + "appid": 3193650, + "normalized_name": "三国幸存者" + }, + { + "appid": 3193670, + "normalized_name": "对不起!我把美女包围了!" + }, + { + "appid": 3193680, + "normalized_name": "out of hand deluxe" + }, + { + "appid": 3193730, + "normalized_name": "seek" + }, + { + "appid": 3193750, + "normalized_name": "abyssfall seekers within" + }, + { + "appid": 3193760, + "normalized_name": "mecha force" + }, + { + "appid": 3193770, + "normalized_name": "the exit 8 vr" + }, + { + "appid": 3193780, + "normalized_name": "paragone bomb" + }, + { + "appid": 3193800, + "normalized_name": "vhscape" + }, + { + "appid": 3193830, + "normalized_name": "hihi" + }, + { + "appid": 3193840, + "normalized_name": "outlawed" + }, + { + "appid": 3193920, + "normalized_name": "fatal train" + }, + { + "appid": 3193980, + "normalized_name": "place icebergs apart" + }, + { + "appid": 3193990, + "normalized_name": "trading kingdom" + }, + { + "appid": 3194000, + "normalized_name": "lezdom ceo fantasy" + }, + { + "appid": 3194070, + "normalized_name": "全网公敌:诡村" + }, + { + "appid": 3194080, + "normalized_name": "calvar the darkest gate" + }, + { + "appid": 3194090, + "normalized_name": "minutes to midnight" + }, + { + "appid": 3194110, + "normalized_name": "doujin fever!! night assault!" + }, + { + "appid": 3194120, + "normalized_name": "outrun depression" + }, + { + "appid": 3194140, + "normalized_name": "cozy sudoku" + }, + { + "appid": 3194150, + "normalized_name": "rworld love ruru" + }, + { + "appid": 3194160, + "normalized_name": "escape from infection zone" + }, + { + "appid": 3194220, + "normalized_name": "horror simulator vr prologue" + }, + { + "appid": 3194300, + "normalized_name": "変なプール" + }, + { + "appid": 3194310, + "normalized_name": "pixel dungeon vr prologue" + }, + { + "appid": 3194340, + "normalized_name": "we are alive" + }, + { + "appid": 3194360, + "normalized_name": "formula legends" + }, + { + "appid": 3194380, + "normalized_name": "signal uncharted lands" + }, + { + "appid": 3194390, + "normalized_name": "excavation alliance cadoramo" + }, + { + "appid": 3194400, + "normalized_name": "tenebra" + }, + { + "appid": 3194410, + "normalized_name": "魔石" + }, + { + "appid": 3194420, + "normalized_name": "coffee bonds a neighborhood simulator" + }, + { + "appid": 3194440, + "normalized_name": "the judas ghost" + }, + { + "appid": 3194500, + "normalized_name": "vegawon's legacy" + }, + { + "appid": 3194510, + "normalized_name": "shop simulator pet shop" + }, + { + "appid": 3194550, + "normalized_name": "bao bao's cozy laundromat" + }, + { + "appid": 3194600, + "normalized_name": "disaster blaster" + }, + { + "appid": 3194610, + "normalized_name": "missing meows" + }, + { + "appid": 3194650, + "normalized_name": "shadow dash" + }, + { + "appid": 3194660, + "normalized_name": "berandal city" + }, + { + "appid": 3194690, + "normalized_name": "local supermarket tycoon" + }, + { + "appid": 3194720, + "normalized_name": "chimera capsule" + }, + { + "appid": 3194740, + "normalized_name": "fumehead" + }, + { + "appid": 3194760, + "normalized_name": "rusty road racing" + }, + { + "appid": 3194800, + "normalized_name": "alfred is a bad guy" + }, + { + "appid": 3194810, + "normalized_name": "benchmark your skills" + }, + { + "appid": 3194840, + "normalized_name": "spring tales" + }, + { + "appid": 3194860, + "normalized_name": "lost key the path of illumination" + }, + { + "appid": 3194890, + "normalized_name": "birdfull" + }, + { + "appid": 3194900, + "normalized_name": "tona fallen zenith" + }, + { + "appid": 3194910, + "normalized_name": "the icarus experiment" + }, + { + "appid": 3194940, + "normalized_name": "dreadful delivery" + }, + { + "appid": 3194950, + "normalized_name": "colony" + }, + { + "appid": 3194970, + "normalized_name": "tower one" + }, + { + "appid": 3194990, + "normalized_name": "singing they pass" + }, + { + "appid": 3195010, + "normalized_name": "shootoon" + }, + { + "appid": 3195020, + "normalized_name": "inventris td" + }, + { + "appid": 3195070, + "normalized_name": "paint puzzle quest" + }, + { + "appid": 3195150, + "normalized_name": "clowned king" + }, + { + "appid": 3195180, + "normalized_name": "旧日余晖remnant afterglow" + }, + { + "appid": 3195250, + "normalized_name": "purge inc." + }, + { + "appid": 3195260, + "normalized_name": "recoil rush" + }, + { + "appid": 3195310, + "normalized_name": "ammo simulator" + }, + { + "appid": 3195320, + "normalized_name": "hamster city" + }, + { + "appid": 3195330, + "normalized_name": "the reverend" + }, + { + "appid": 3195350, + "normalized_name": "doggos in dungeon" + }, + { + "appid": 3195360, + "normalized_name": "coromon rogue planet" + }, + { + "appid": 3195370, + "normalized_name": "popslinger vol. 2 loveless" + }, + { + "appid": 3195400, + "normalized_name": "emyliveshow case of four hot witnesses" + }, + { + "appid": 3195440, + "normalized_name": "welcome to elderfield" + }, + { + "appid": 3195450, + "normalized_name": "crony corp" + }, + { + "appid": 3195470, + "normalized_name": "bard's fault" + }, + { + "appid": 3195530, + "normalized_name": "streamer's journey 💖" + }, + { + "appid": 3195540, + "normalized_name": "captain edward continues" + }, + { + "appid": 3195580, + "normalized_name": "lily's world xd" + }, + { + "appid": 3195650, + "normalized_name": "bodybuilder" + }, + { + "appid": 3195660, + "normalized_name": "the last strand" + }, + { + "appid": 3195690, + "normalized_name": "sexy memory puzzle gay gym" + }, + { + "appid": 3195710, + "normalized_name": "geometry shooter pro" + }, + { + "appid": 3195720, + "normalized_name": "keris' veil" + }, + { + "appid": 3195790, + "normalized_name": "white knuckle" + }, + { + "appid": 3195840, + "normalized_name": "mangút" + }, + { + "appid": 3195920, + "normalized_name": "wasteland kitchen" + }, + { + "appid": 3195980, + "normalized_name": "multiplayer romans" + }, + { + "appid": 3195990, + "normalized_name": "rhyolite" + }, + { + "appid": 3196020, + "normalized_name": "twas the night" + }, + { + "appid": 3196030, + "normalized_name": "doomsday" + }, + { + "appid": 3196040, + "normalized_name": "airborne justice" + }, + { + "appid": 3196060, + "normalized_name": "multiplayer medieval" + }, + { + "appid": 3196080, + "normalized_name": "鸭蛋duck eggs" + }, + { + "appid": 3196110, + "normalized_name": "randall the grape jelly cube goes to soda valley for some reason" + }, + { + "appid": 3196120, + "normalized_name": "少女 x 愛 x 麻將" + }, + { + "appid": 3196150, + "normalized_name": "lami a cup of code & coffee" + }, + { + "appid": 3196160, + "normalized_name": "lost ground" + }, + { + "appid": 3196180, + "normalized_name": "trivia about you" + }, + { + "appid": 3196190, + "normalized_name": "mens rea" + }, + { + "appid": 3196270, + "normalized_name": "fishing shop simulator" + }, + { + "appid": 3196290, + "normalized_name": "happy birthday with sergio spellbound" + }, + { + "appid": 3196310, + "normalized_name": "meiqi 2024" + }, + { + "appid": 3196320, + "normalized_name": "konjie" + }, + { + "appid": 3196330, + "normalized_name": "hentai girls nurse" + }, + { + "appid": 3196340, + "normalized_name": "the short story of a riftkeeper" + }, + { + "appid": 3196360, + "normalized_name": "dream shark pt. 1" + }, + { + "appid": 3196370, + "normalized_name": "paperlands" + }, + { + "appid": 3196380, + "normalized_name": "defense golem" + }, + { + "appid": 3196390, + "normalized_name": "gorecam" + }, + { + "appid": 3196400, + "normalized_name": "gisselle's adventure" + }, + { + "appid": 3196440, + "normalized_name": "vacation cafe simulator" + }, + { + "appid": 3196460, + "normalized_name": "wukong monkey king's journey west" + }, + { + "appid": 3196510, + "normalized_name": "dreaming" + }, + { + "appid": 3196520, + "normalized_name": "island robot farm" + }, + { + "appid": 3196530, + "normalized_name": "super waifu ball" + }, + { + "appid": 3196540, + "normalized_name": "idletale" + }, + { + "appid": 3196550, + "normalized_name": "花奴令 huanu poems" + }, + { + "appid": 3196570, + "normalized_name": "轮回之境" + }, + { + "appid": 3196590, + "normalized_name": "仙之气" + }, + { + "appid": 3196620, + "normalized_name": "enemy on the tail!" + }, + { + "appid": 3196680, + "normalized_name": "hitmaker tycoon" + }, + { + "appid": 3196690, + "normalized_name": "my little flying shop" + }, + { + "appid": 3196730, + "normalized_name": "atomic raid" + }, + { + "appid": 3196740, + "normalized_name": "phobic nightmares" + }, + { + "appid": 3196750, + "normalized_name": "[bober bros] happy house" + }, + { + "appid": 3196770, + "normalized_name": "the escape room chronicles ep1 the mysterious kumadonald's" + }, + { + "appid": 3196780, + "normalized_name": "skylax! the lab runner" + }, + { + "appid": 3196800, + "normalized_name": "barman simulator" + }, + { + "appid": 3196810, + "normalized_name": "recycle factory simulator" + }, + { + "appid": 3196820, + "normalized_name": "shadows of serenity" + }, + { + "appid": 3196830, + "normalized_name": "boobs hidden los angeles" + }, + { + "appid": 3196840, + "normalized_name": "security guard sex episode 5" + }, + { + "appid": 3196850, + "normalized_name": "cats hidden in usa" + }, + { + "appid": 3196890, + "normalized_name": "tomb of hope" + }, + { + "appid": 3196910, + "normalized_name": "lumibus" + }, + { + "appid": 3196940, + "normalized_name": "dice goblin's den" + }, + { + "appid": 3196980, + "normalized_name": "mystical sovereign z" + }, + { + "appid": 3197000, + "normalized_name": "sweet ice cream" + }, + { + "appid": 3197050, + "normalized_name": ".redrum" + }, + { + "appid": 3197060, + "normalized_name": "terminal one" + }, + { + "appid": 3197100, + "normalized_name": "robinson crusoe the lost tribes" + }, + { + "appid": 3197170, + "normalized_name": "assemble ensemble" + }, + { + "appid": 3197180, + "normalized_name": "伥影重生 ghost reborn" + }, + { + "appid": 3197190, + "normalized_name": "new year simulator 2025" + }, + { + "appid": 3197200, + "normalized_name": "emptiness sire" + }, + { + "appid": 3197210, + "normalized_name": "my evil magician boss suddenly loves me?!" + }, + { + "appid": 3197230, + "normalized_name": "the ss destiny disaster" + }, + { + "appid": 3197330, + "normalized_name": "mythos interactive game collection" + }, + { + "appid": 3197370, + "normalized_name": "evo born" + }, + { + "appid": 3197400, + "normalized_name": "mariana" + }, + { + "appid": 3197480, + "normalized_name": "the house of voracity | 噬人之屋" + }, + { + "appid": 3197540, + "normalized_name": "cyber quest" + }, + { + "appid": 3197550, + "normalized_name": "demonophobia company" + }, + { + "appid": 3197560, + "normalized_name": "what's on the menu?" + }, + { + "appid": 3197590, + "normalized_name": "alder forge 2" + }, + { + "appid": 3197600, + "normalized_name": "light'em up" + }, + { + "appid": 3197640, + "normalized_name": "robosamurai" + }, + { + "appid": 3197650, + "normalized_name": "sophia's path" + }, + { + "appid": 3197680, + "normalized_name": "warplock" + }, + { + "appid": 3197690, + "normalized_name": "three skies ascension" + }, + { + "appid": 3197700, + "normalized_name": "corkscrew" + }, + { + "appid": 3197710, + "normalized_name": "iwakura aria" + }, + { + "appid": 3197720, + "normalized_name": "him the smile & bloom" + }, + { + "appid": 3197730, + "normalized_name": "under the blue horizon aquarium" + }, + { + "appid": 3197780, + "normalized_name": "stellar terminus" + }, + { + "appid": 3197810, + "normalized_name": "inn trouble" + }, + { + "appid": 3197860, + "normalized_name": "infinite idle online clicker rpg" + }, + { + "appid": 3197890, + "normalized_name": "lurks within walls" + }, + { + "appid": 3197930, + "normalized_name": "street grabbing of territory" + }, + { + "appid": 3197940, + "normalized_name": "beastbound" + }, + { + "appid": 3197950, + "normalized_name": "gallerie" + }, + { + "appid": 3198120, + "normalized_name": "deathblossom" + }, + { + "appid": 3198140, + "normalized_name": "freechance" + }, + { + "appid": 3198190, + "normalized_name": "overpour" + }, + { + "appid": 3198210, + "normalized_name": "super monkey time traversal chronicles" + }, + { + "appid": 3198220, + "normalized_name": "kato pirato" + }, + { + "appid": 3198230, + "normalized_name": "save your soldier" + }, + { + "appid": 3198240, + "normalized_name": "the tower of aether" + }, + { + "appid": 3198250, + "normalized_name": "bannerfall" + }, + { + "appid": 3198260, + "normalized_name": "small dragon big appetite" + }, + { + "appid": 3198270, + "normalized_name": "monster grid" + }, + { + "appid": 3198290, + "normalized_name": "knuckle knockout" + }, + { + "appid": 3198300, + "normalized_name": "wood shop simulator" + }, + { + "appid": 3198320, + "normalized_name": "willie's nightfall" + }, + { + "appid": 3198360, + "normalized_name": "escape toon kingdom" + }, + { + "appid": 3198400, + "normalized_name": "cat tree" + }, + { + "appid": 3198410, + "normalized_name": "agnition ignis" + }, + { + "appid": 3198430, + "normalized_name": "animal circus" + }, + { + "appid": 3198460, + "normalized_name": "elemental" + }, + { + "appid": 3198470, + "normalized_name": "keycode" + }, + { + "appid": 3198480, + "normalized_name": "the day the world stopped" + }, + { + "appid": 3198490, + "normalized_name": "blankspace" + }, + { + "appid": 3198530, + "normalized_name": "christmas hustle" + }, + { + "appid": 3198540, + "normalized_name": "dungeon antiqua" + }, + { + "appid": 3198610, + "normalized_name": "plastic spouse interrogation" + }, + { + "appid": 3198630, + "normalized_name": "fractured memories" + }, + { + "appid": 3198640, + "normalized_name": "the evil presence" + }, + { + "appid": 3198680, + "normalized_name": "puttler" + }, + { + "appid": 3198700, + "normalized_name": "snake in the dark" + }, + { + "appid": 3198750, + "normalized_name": "kitter" + }, + { + "appid": 3198760, + "normalized_name": "the best investor" + }, + { + "appid": 3198820, + "normalized_name": "passer" + }, + { + "appid": 3198850, + "normalized_name": "play together" + }, + { + "appid": 3198880, + "normalized_name": "dawn" + }, + { + "appid": 3198890, + "normalized_name": "scale the depths" + }, + { + "appid": 3198900, + "normalized_name": "jardim das borboletas" + }, + { + "appid": 3198940, + "normalized_name": "mosquito simulator" + }, + { + "appid": 3198960, + "normalized_name": "sorcerialbladecannon" + }, + { + "appid": 3198970, + "normalized_name": "the devil's bride" + }, + { + "appid": 3198990, + "normalized_name": "诡事其一珍珠剧院" + }, + { + "appid": 3199000, + "normalized_name": "countdown" + }, + { + "appid": 3199040, + "normalized_name": "veil transfer" + }, + { + "appid": 3199080, + "normalized_name": "hellpunk purgatorium" + }, + { + "appid": 3199110, + "normalized_name": "nightingnail" + }, + { + "appid": 3199120, + "normalized_name": "incarcerebel" + }, + { + "appid": 3199170, + "normalized_name": "blood strike" + }, + { + "appid": 3199180, + "normalized_name": "steel swarm apocalypse" + }, + { + "appid": 3199190, + "normalized_name": "magic cats pots" + }, + { + "appid": 3199200, + "normalized_name": "red cloak" + }, + { + "appid": 3199210, + "normalized_name": "antbox" + }, + { + "appid": 3199280, + "normalized_name": "samurai sundries" + }, + { + "appid": 3199360, + "normalized_name": "skull horde" + }, + { + "appid": 3199370, + "normalized_name": "cunning gauntlet 2d" + }, + { + "appid": 3199380, + "normalized_name": "shadowhand solitaire" + }, + { + "appid": 3199390, + "normalized_name": "inayah life after gods" + }, + { + "appid": 3199400, + "normalized_name": "timore narhelma" + }, + { + "appid": 3199430, + "normalized_name": "eyes on the exam" + }, + { + "appid": 3199440, + "normalized_name": "security stories by the fans" + }, + { + "appid": 3199470, + "normalized_name": "knuckle jet" + }, + { + "appid": 3199490, + "normalized_name": "twizzle puzzle flowers" + }, + { + "appid": 3199500, + "normalized_name": "my time at evershine" + }, + { + "appid": 3199540, + "normalized_name": "turbosquad" + }, + { + "appid": 3199560, + "normalized_name": "doge head attack" + }, + { + "appid": 3199570, + "normalized_name": "clean that world" + }, + { + "appid": 3199590, + "normalized_name": "foto boy flashstar" + }, + { + "appid": 3199610, + "normalized_name": "mia and me" + }, + { + "appid": 3199650, + "normalized_name": "pathologic 3" + }, + { + "appid": 3199660, + "normalized_name": "mad jack. the craziest roguelike game ever!" + }, + { + "appid": 3199740, + "normalized_name": "dimension warrior" + }, + { + "appid": 3199760, + "normalized_name": "detective mikami" + }, + { + "appid": 3199860, + "normalized_name": "奇技异烟" + }, + { + "appid": 3199890, + "normalized_name": "ô" + }, + { + "appid": 3199900, + "normalized_name": "food inc home of the supply" + }, + { + "appid": 3199910, + "normalized_name": "the whisper ghost" + }, + { + "appid": 3199930, + "normalized_name": "legends of boom" + }, + { + "appid": 3199960, + "normalized_name": "glyphs of the east" + }, + { + "appid": 3200020, + "normalized_name": "gengu survival" + }, + { + "appid": 3200030, + "normalized_name": "cobalt system" + }, + { + "appid": 3200060, + "normalized_name": "東風谷早苗の神風とともに" + }, + { + "appid": 3200090, + "normalized_name": "释梦之祩" + }, + { + "appid": 3200110, + "normalized_name": "stuff to do" + }, + { + "appid": 3200130, + "normalized_name": "mirrored phantoms" + }, + { + "appid": 3200140, + "normalized_name": "imvi echoes of harmony" + }, + { + "appid": 3200150, + "normalized_name": "corner loot" + }, + { + "appid": 3200160, + "normalized_name": "blood x thirsty" + }, + { + "appid": 3200190, + "normalized_name": "three kingdoms shelter" + }, + { + "appid": 3200200, + "normalized_name": "puzzle checkers the rooks" + }, + { + "appid": 3200210, + "normalized_name": "saga of guardians" + }, + { + "appid": 3200220, + "normalized_name": "red rogue sea" + }, + { + "appid": 3200240, + "normalized_name": "echoes of eldoria" + }, + { + "appid": 3200260, + "normalized_name": "little renters" + }, + { + "appid": 3200290, + "normalized_name": "sister ray" + }, + { + "appid": 3200310, + "normalized_name": "block witch" + }, + { + "appid": 3200380, + "normalized_name": "gripshot" + }, + { + "appid": 3200460, + "normalized_name": "greed stays home" + }, + { + "appid": 3200470, + "normalized_name": "edelweiss knights" + }, + { + "appid": 3200480, + "normalized_name": "weightware" + }, + { + "appid": 3200500, + "normalized_name": "potions in motion" + }, + { + "appid": 3200520, + "normalized_name": "garten of banban vr distorting clay" + }, + { + "appid": 3200530, + "normalized_name": "ahoy!" + }, + { + "appid": 3200540, + "normalized_name": "son and bone" + }, + { + "appid": 3200580, + "normalized_name": "deathly dominion" + }, + { + "appid": 3200590, + "normalized_name": "axxx taught and fucked" + }, + { + "appid": 3200600, + "normalized_name": "gräuel supporter" + }, + { + "appid": 3200620, + "normalized_name": "dual combat" + }, + { + "appid": 3200640, + "normalized_name": "a drop of color" + }, + { + "appid": 3200650, + "normalized_name": "deprived" + }, + { + "appid": 3200670, + "normalized_name": "limb chopper" + }, + { + "appid": 3200690, + "normalized_name": "ashley the one spell mage" + }, + { + "appid": 3200770, + "normalized_name": "dark age asunder" + }, + { + "appid": 3200810, + "normalized_name": "general idler" + }, + { + "appid": 3200830, + "normalized_name": "cave ghost" + }, + { + "appid": 3200950, + "normalized_name": "heart of artemisa" + }, + { + "appid": 3200960, + "normalized_name": "sinful gods" + }, + { + "appid": 3200980, + "normalized_name": "slimepocalypse" + }, + { + "appid": 3201000, + "normalized_name": "end land" + }, + { + "appid": 3201010, + "normalized_name": "starlight re volver" + }, + { + "appid": 3201030, + "normalized_name": "the auto sort is broken" + }, + { + "appid": 3201040, + "normalized_name": "anasozas another surreal world" + }, + { + "appid": 3201070, + "normalized_name": "gigantes ex machina" + }, + { + "appid": 3201080, + "normalized_name": "arse dias" + }, + { + "appid": 3201170, + "normalized_name": "let's build a manor" + }, + { + "appid": 3201190, + "normalized_name": "frogmageddon" + }, + { + "appid": 3201210, + "normalized_name": "chaos entropy" + }, + { + "appid": 3201240, + "normalized_name": "dig night" + }, + { + "appid": 3201310, + "normalized_name": "aethershot" + }, + { + "appid": 3201350, + "normalized_name": "summer suki chat messaging game" + }, + { + "appid": 3201360, + "normalized_name": "miss!don't affect my rank" + }, + { + "appid": 3201370, + "normalized_name": "on any journey" + }, + { + "appid": 3201430, + "normalized_name": "photogeist albums stayfer river saga" + }, + { + "appid": 3201450, + "normalized_name": "darkfallen survivors" + }, + { + "appid": 3201530, + "normalized_name": "巴哈姆特1 remake(bahamut1 remake)" + }, + { + "appid": 3201560, + "normalized_name": "renai bakudan" + }, + { + "appid": 3201570, + "normalized_name": "vr sailing" + }, + { + "appid": 3201580, + "normalized_name": "falos chemistry" + }, + { + "appid": 3201610, + "normalized_name": "blind man's sun" + }, + { + "appid": 3201630, + "normalized_name": "beast brawl" + }, + { + "appid": 3201670, + "normalized_name": "自宅警備" + }, + { + "appid": 3201680, + "normalized_name": "hawa 99 cyberhive" + }, + { + "appid": 3201710, + "normalized_name": "overpowered tactics" + }, + { + "appid": 3201720, + "normalized_name": "ski patrol" + }, + { + "appid": 3201730, + "normalized_name": "flamecraft" + }, + { + "appid": 3201740, + "normalized_name": "vampyre crusade" + }, + { + "appid": 3201780, + "normalized_name": "steam veins" + }, + { + "appid": 3201790, + "normalized_name": "pixelmon arena" + }, + { + "appid": 3201800, + "normalized_name": "infinite nowhere" + }, + { + "appid": 3201810, + "normalized_name": "失踪した友人の部屋に残されていたゲーム" + }, + { + "appid": 3201820, + "normalized_name": "grumpy football" + }, + { + "appid": 3201830, + "normalized_name": "春秋异闻录" + }, + { + "appid": 3201840, + "normalized_name": "the last light" + }, + { + "appid": 3201880, + "normalized_name": "tescaris a soothing cute puzzle game" + }, + { + "appid": 3201910, + "normalized_name": "railgods of hysterra" + }, + { + "appid": 3201940, + "normalized_name": "paper puzzle" + }, + { + "appid": 3201950, + "normalized_name": "hentai officelady plus" + }, + { + "appid": 3201990, + "normalized_name": "creatures and creations" + }, + { + "appid": 3202030, + "normalized_name": "龙胤立志传" + }, + { + "appid": 3202040, + "normalized_name": "なつめ繚乱 ハイスペ脳筋妖狐の恋愛奇譚" + }, + { + "appid": 3202110, + "normalized_name": "deadly heart gambit" + }, + { + "appid": 3202220, + "normalized_name": "aldian of ancients" + }, + { + "appid": 3202230, + "normalized_name": "violent rush" + }, + { + "appid": 3202250, + "normalized_name": "bosslife office manager" + }, + { + "appid": 3202260, + "normalized_name": "15th prison" + }, + { + "appid": 3202310, + "normalized_name": "thousands layered blade reforged" + }, + { + "appid": 3202370, + "normalized_name": "necropolis nights" + }, + { + "appid": 3202400, + "normalized_name": "ball race party" + }, + { + "appid": 3202410, + "normalized_name": "bad dream afterlife" + }, + { + "appid": 3202430, + "normalized_name": "tiny devils" + }, + { + "appid": 3202440, + "normalized_name": "enigma's edge" + }, + { + "appid": 3202460, + "normalized_name": "nerd space" + }, + { + "appid": 3202480, + "normalized_name": "chessblaze" + }, + { + "appid": 3202490, + "normalized_name": "ana's farm" + }, + { + "appid": 3202610, + "normalized_name": "malevolent planet 2d" + }, + { + "appid": 3202640, + "normalized_name": "duels soccer" + }, + { + "appid": 3202660, + "normalized_name": "football owner 2025" + }, + { + "appid": 3202670, + "normalized_name": "the well episode 1" + }, + { + "appid": 3202710, + "normalized_name": "세상에서 가장 완벽한 복수" + }, + { + "appid": 3202730, + "normalized_name": "reforj" + }, + { + "appid": 3202770, + "normalized_name": "casino box" + }, + { + "appid": 3202800, + "normalized_name": "wellenfjord danmaku adventure" + }, + { + "appid": 3202810, + "normalized_name": "kazekao" + }, + { + "appid": 3202860, + "normalized_name": "arcanus legends" + }, + { + "appid": 3202870, + "normalized_name": "the lusty half demon" + }, + { + "appid": 3202880, + "normalized_name": "cult of persona" + }, + { + "appid": 3202950, + "normalized_name": "fresh tracks" + }, + { + "appid": 3202980, + "normalized_name": "z diaries" + }, + { + "appid": 3203020, + "normalized_name": "backrooms stories" + }, + { + "appid": 3203040, + "normalized_name": "malpractice" + }, + { + "appid": 3203110, + "normalized_name": "rogue inferno" + }, + { + "appid": 3203130, + "normalized_name": "afterlight catacombs" + }, + { + "appid": 3203160, + "normalized_name": "talk to me human" + }, + { + "appid": 3203170, + "normalized_name": "spectacular team assemble" + }, + { + "appid": 3203180, + "normalized_name": "rob together" + }, + { + "appid": 3203190, + "normalized_name": "laundry service simulator" + }, + { + "appid": 3203220, + "normalized_name": "mini star math 3 hearts" + }, + { + "appid": 3203230, + "normalized_name": "desert drift" + }, + { + "appid": 3203280, + "normalized_name": "retail simulator" + }, + { + "appid": 3203290, + "normalized_name": "the black vault" + }, + { + "appid": 3203300, + "normalized_name": "giggle night trixie's trial" + }, + { + "appid": 3203310, + "normalized_name": "desideratum blood bonds" + }, + { + "appid": 3203320, + "normalized_name": "pizza western 🍕" + }, + { + "appid": 3203340, + "normalized_name": "nonolith" + }, + { + "appid": 3203360, + "normalized_name": "braindead" + }, + { + "appid": 3203370, + "normalized_name": "ala mobile" + }, + { + "appid": 3203420, + "normalized_name": "watch party" + }, + { + "appid": 3203430, + "normalized_name": "the final fragment" + }, + { + "appid": 3203440, + "normalized_name": "tales of the moon" + }, + { + "appid": 3203450, + "normalized_name": "roundfoot" + }, + { + "appid": 3203470, + "normalized_name": "jeepney stories" + }, + { + "appid": 3203510, + "normalized_name": "水浒群侠传" + }, + { + "appid": 3203530, + "normalized_name": "hexmental" + }, + { + "appid": 3203550, + "normalized_name": "jill o' lantern final cut" + }, + { + "appid": 3203590, + "normalized_name": "navicula meatus" + }, + { + "appid": 3203600, + "normalized_name": "神奇伙伴与大圣" + }, + { + "appid": 3203620, + "normalized_name": "bar night vr" + }, + { + "appid": 3203710, + "normalized_name": "wings of empire" + }, + { + "appid": 3203860, + "normalized_name": "sewing stuff" + }, + { + "appid": 3204020, + "normalized_name": "juufuutei raden's guide for pixel museum" + }, + { + "appid": 3204030, + "normalized_name": "텔테일 카지노 살인 사건" + }, + { + "appid": 3204040, + "normalized_name": "rugby tycoon rugby rovigo delta" + }, + { + "appid": 3204090, + "normalized_name": "sexy memory puzzle kinky workout" + }, + { + "appid": 3204100, + "normalized_name": "the genetic dilemma" + }, + { + "appid": 3204120, + "normalized_name": "maestro's cold war 2" + }, + { + "appid": 3204140, + "normalized_name": "novel rogue" + }, + { + "appid": 3204230, + "normalized_name": "mazer laser" + }, + { + "appid": 3204240, + "normalized_name": "the tale of relm" + }, + { + "appid": 3204250, + "normalized_name": "lost but found" + }, + { + "appid": 3204310, + "normalized_name": "the gods of the red planet" + }, + { + "appid": 3204320, + "normalized_name": "welcome to doll town" + }, + { + "appid": 3204330, + "normalized_name": "county of fortune" + }, + { + "appid": 3204390, + "normalized_name": "a thousand mouths to scream" + }, + { + "appid": 3204400, + "normalized_name": "monster dna" + }, + { + "appid": 3204410, + "normalized_name": "redline" + }, + { + "appid": 3204420, + "normalized_name": "alteratio" + }, + { + "appid": 3204430, + "normalized_name": "arena" + }, + { + "appid": 3204440, + "normalized_name": "the cube of love" + }, + { + "appid": 3204450, + "normalized_name": "dash" + }, + { + "appid": 3204460, + "normalized_name": "a story about birds" + }, + { + "appid": 3204470, + "normalized_name": "driving simulator" + }, + { + "appid": 3204480, + "normalized_name": "wispy dreams" + }, + { + "appid": 3204490, + "normalized_name": "fighting simulator" + }, + { + "appid": 3204510, + "normalized_name": "friday fever" + }, + { + "appid": 3204530, + "normalized_name": "pip pepper park planner" + }, + { + "appid": 3204590, + "normalized_name": "sociable soccer 25" + }, + { + "appid": 3204650, + "normalized_name": "hangar 8" + }, + { + "appid": 3204710, + "normalized_name": "ghost jukebox" + }, + { + "appid": 3204740, + "normalized_name": "lets castle" + }, + { + "appid": 3204750, + "normalized_name": "xalos collectible card game" + }, + { + "appid": 3204760, + "normalized_name": "tao path" + }, + { + "appid": 3204780, + "normalized_name": "bonk it!" + }, + { + "appid": 3204840, + "normalized_name": "time over" + }, + { + "appid": 3204850, + "normalized_name": "chef brawl" + }, + { + "appid": 3204880, + "normalized_name": "スクリューダイブ" + }, + { + "appid": 3204900, + "normalized_name": "your heart" + }, + { + "appid": 3204920, + "normalized_name": "northern ireland '74" + }, + { + "appid": 3204940, + "normalized_name": "futanari's secret the forest" + }, + { + "appid": 3204960, + "normalized_name": "bullet noir" + }, + { + "appid": 3204970, + "normalized_name": "the steel dawn" + }, + { + "appid": 3205000, + "normalized_name": "異変麻雀" + }, + { + "appid": 3205050, + "normalized_name": "mega city parkour" + }, + { + "appid": 3205080, + "normalized_name": "bad parenting 1 mr. red face" + }, + { + "appid": 3205090, + "normalized_name": "jumping jack" + }, + { + "appid": 3205130, + "normalized_name": "regrets" + }, + { + "appid": 3205140, + "normalized_name": "latent leftovers" + }, + { + "appid": 3205150, + "normalized_name": "zeep" + }, + { + "appid": 3205160, + "normalized_name": "marble havoc" + }, + { + "appid": 3205170, + "normalized_name": "social warfare" + }, + { + "appid": 3205180, + "normalized_name": "silhou" + }, + { + "appid": 3205190, + "normalized_name": "alice's lullaby" + }, + { + "appid": 3205260, + "normalized_name": "barty's adventure" + }, + { + "appid": 3205290, + "normalized_name": "谁偷了我的女朋友" + }, + { + "appid": 3205320, + "normalized_name": "inolab trials" + }, + { + "appid": 3205350, + "normalized_name": "standoff beat" + }, + { + "appid": 3205360, + "normalized_name": "city lights old flames" + }, + { + "appid": 3205380, + "normalized_name": "omelet you cook" + }, + { + "appid": 3205390, + "normalized_name": "captain's call" + }, + { + "appid": 3205400, + "normalized_name": "hers'alms" + }, + { + "appid": 3205410, + "normalized_name": "line clipper tennis tactics" + }, + { + "appid": 3205430, + "normalized_name": "condo desires" + }, + { + "appid": 3205460, + "normalized_name": "tiny kings" + }, + { + "appid": 3205470, + "normalized_name": "mini monsters gravitational consensus" + }, + { + "appid": 3205480, + "normalized_name": "unique identy" + }, + { + "appid": 3205500, + "normalized_name": "digital legacy of zero" + }, + { + "appid": 3205520, + "normalized_name": "kooeh a timeless delight" + }, + { + "appid": 3205530, + "normalized_name": "auravale" + }, + { + "appid": 3205560, + "normalized_name": "jankenup!" + }, + { + "appid": 3205570, + "normalized_name": "extermination ship" + }, + { + "appid": 3205590, + "normalized_name": "tank vs orcs" + }, + { + "appid": 3205600, + "normalized_name": "the libido enigma" + }, + { + "appid": 3205610, + "normalized_name": "bleak" + }, + { + "appid": 3205630, + "normalized_name": "arcane ascent" + }, + { + "appid": 3205730, + "normalized_name": "biogoth" + }, + { + "appid": 3205800, + "normalized_name": "the last dig" + }, + { + "appid": 3205820, + "normalized_name": "limb" + }, + { + "appid": 3205840, + "normalized_name": "荡天下" + }, + { + "appid": 3205880, + "normalized_name": "尸鬼乐园" + }, + { + "appid": 3205960, + "normalized_name": "魔爱狂想曲" + }, + { + "appid": 3205970, + "normalized_name": "rosttle" + }, + { + "appid": 3205980, + "normalized_name": "fossil skater" + }, + { + "appid": 3206010, + "normalized_name": "attack core" + }, + { + "appid": 3206020, + "normalized_name": "shrouded aspect" + }, + { + "appid": 3206030, + "normalized_name": "element" + }, + { + "appid": 3206040, + "normalized_name": "runes of vespera" + }, + { + "appid": 3206060, + "normalized_name": "小鼠开车大冒险 (tiny driver odyssey)" + }, + { + "appid": 3206090, + "normalized_name": "arena of the titans" + }, + { + "appid": 3206100, + "normalized_name": "after school cure" + }, + { + "appid": 3206110, + "normalized_name": "beast island" + }, + { + "appid": 3206140, + "normalized_name": "interstellar pioneering" + }, + { + "appid": 3206170, + "normalized_name": "food park manager" + }, + { + "appid": 3206180, + "normalized_name": "millumi" + }, + { + "appid": 3206200, + "normalized_name": "魔法符石" + }, + { + "appid": 3206240, + "normalized_name": "platform" + }, + { + "appid": 3206260, + "normalized_name": "match 3 game the world is going to" + }, + { + "appid": 3206290, + "normalized_name": "duelfront" + }, + { + "appid": 3206300, + "normalized_name": "joey's shisha simulator" + }, + { + "appid": 3206320, + "normalized_name": "ignisia" + }, + { + "appid": 3206340, + "normalized_name": "plum road tea dream" + }, + { + "appid": 3206350, + "normalized_name": "chaos games n in 1" + }, + { + "appid": 3206370, + "normalized_name": "island treasure chase" + }, + { + "appid": 3206380, + "normalized_name": "星夜往事录:彩蜃" + }, + { + "appid": 3206390, + "normalized_name": "【掲示板】ワイ魔法少女なんやが?【管理できん】" + }, + { + "appid": 3206400, + "normalized_name": "南宫侦探社(nangong detective agency)" + }, + { + "appid": 3206410, + "normalized_name": "the sinking forest 沈んだ森" + }, + { + "appid": 3206420, + "normalized_name": "fuel & fury" + }, + { + "appid": 3206450, + "normalized_name": "starmoon forest" + }, + { + "appid": 3206460, + "normalized_name": "apocalypse carnival" + }, + { + "appid": 3206470, + "normalized_name": "domain master" + }, + { + "appid": 3206480, + "normalized_name": "endless life" + }, + { + "appid": 3206490, + "normalized_name": "開拓民クリッカー" + }, + { + "appid": 3206510, + "normalized_name": "ghost golfing" + }, + { + "appid": 3206530, + "normalized_name": "love at first bite" + }, + { + "appid": 3206550, + "normalized_name": "the greys human abductions" + }, + { + "appid": 3206580, + "normalized_name": "remorse" + }, + { + "appid": 3206600, + "normalized_name": "artifact run" + }, + { + "appid": 3206610, + "normalized_name": "homunculus" + }, + { + "appid": 3206640, + "normalized_name": "jeliwave" + }, + { + "appid": 3206660, + "normalized_name": "storage anomaly" + }, + { + "appid": 3206700, + "normalized_name": "can't even see the sky" + }, + { + "appid": 3206750, + "normalized_name": "throwing knight" + }, + { + "appid": 3206760, + "normalized_name": "night shift" + }, + { + "appid": 3206770, + "normalized_name": "questboard" + }, + { + "appid": 3206780, + "normalized_name": "the disappearance of emily crowe" + }, + { + "appid": 3206790, + "normalized_name": "justjump!" + }, + { + "appid": 3206800, + "normalized_name": "santa's spot it" + }, + { + "appid": 3206820, + "normalized_name": "chibi reboot 2" + }, + { + "appid": 3206830, + "normalized_name": "the bookman" + }, + { + "appid": 3206870, + "normalized_name": "claritas dungeon crawler rpg" + }, + { + "appid": 3206880, + "normalized_name": "rewild" + }, + { + "appid": 3206890, + "normalized_name": "the doors that led to nowhere" + }, + { + "appid": 3206900, + "normalized_name": "vellum quest 〜神の残滓〜" + }, + { + "appid": 3206910, + "normalized_name": "ducky runnerz" + }, + { + "appid": 3206950, + "normalized_name": "the back country" + }, + { + "appid": 3206980, + "normalized_name": "secret agent puzzle" + }, + { + "appid": 3207040, + "normalized_name": "ライバー育成カードゲーム" + }, + { + "appid": 3207050, + "normalized_name": "marauder knight" + }, + { + "appid": 3207070, + "normalized_name": "richest thief" + }, + { + "appid": 3207080, + "normalized_name": "keplerian space discovery" + }, + { + "appid": 3207150, + "normalized_name": "rogue snake" + }, + { + "appid": 3207190, + "normalized_name": "摧毁模拟器 街头判官(smash simulator)" + }, + { + "appid": 3207200, + "normalized_name": "beandejo" + }, + { + "appid": 3207210, + "normalized_name": "greenhouse" + }, + { + "appid": 3207250, + "normalized_name": "breed laboratory" + }, + { + "appid": 3207270, + "normalized_name": "time waster" + }, + { + "appid": 3207280, + "normalized_name": "a robot's tiny adventure" + }, + { + "appid": 3207300, + "normalized_name": "office after hours" + }, + { + "appid": 3207310, + "normalized_name": "stellar raven" + }, + { + "appid": 3207320, + "normalized_name": "战略幻想三国" + }, + { + "appid": 3207340, + "normalized_name": "the sheep among us" + }, + { + "appid": 3207360, + "normalized_name": "ascendrix" + }, + { + "appid": 3207370, + "normalized_name": "freddy farmer" + }, + { + "appid": 3207390, + "normalized_name": "sneebles the half cat" + }, + { + "appid": 3207400, + "normalized_name": "silent still" + }, + { + "appid": 3207440, + "normalized_name": "battle investment master" + }, + { + "appid": 3207450, + "normalized_name": "(a)woken" + }, + { + "appid": 3207460, + "normalized_name": "thread the void vr" + }, + { + "appid": 3207480, + "normalized_name": "mauri mursu's odyssey" + }, + { + "appid": 3207490, + "normalized_name": "cursed toy" + }, + { + "appid": 3207510, + "normalized_name": "the tunnel" + }, + { + "appid": 3207520, + "normalized_name": "senpaisurvivor" + }, + { + "appid": 3207580, + "normalized_name": "find charlie" + }, + { + "appid": 3207620, + "normalized_name": "rogue raiders" + }, + { + "appid": 3207670, + "normalized_name": "road food simulator" + }, + { + "appid": 3207680, + "normalized_name": "王国的坚盾" + }, + { + "appid": 3207730, + "normalized_name": "beyondthere" + }, + { + "appid": 3207740, + "normalized_name": "lucera" + }, + { + "appid": 3207780, + "normalized_name": "love mansion" + }, + { + "appid": 3207800, + "normalized_name": "madness of the science" + }, + { + "appid": 3207810, + "normalized_name": "in the middle" + }, + { + "appid": 3207820, + "normalized_name": "shallow blue(浅蓝计划)" + }, + { + "appid": 3207870, + "normalized_name": "cryptigma" + }, + { + "appid": 3207880, + "normalized_name": "universe horizon" + }, + { + "appid": 3207890, + "normalized_name": "lusty mother" + }, + { + "appid": 3207900, + "normalized_name": "city battle ground" + }, + { + "appid": 3207920, + "normalized_name": "angela is a bitxx" + }, + { + "appid": 3207960, + "normalized_name": "black dust" + }, + { + "appid": 3207980, + "normalized_name": "rapid fire justice" + }, + { + "appid": 3208000, + "normalized_name": "a dragons dawn" + }, + { + "appid": 3208020, + "normalized_name": "infocus" + }, + { + "appid": 3208040, + "normalized_name": "utopium" + }, + { + "appid": 3208060, + "normalized_name": "hooked on speed" + }, + { + "appid": 3208090, + "normalized_name": "genome warriors resistance to invasion" + }, + { + "appid": 3208110, + "normalized_name": "luck & loot" + }, + { + "appid": 3208120, + "normalized_name": "anomaly mansion" + }, + { + "appid": 3208130, + "normalized_name": "argillite tamers" + }, + { + "appid": 3208140, + "normalized_name": "freckles" + }, + { + "appid": 3208160, + "normalized_name": "coffee extra ukuzala" + }, + { + "appid": 3208230, + "normalized_name": "skiv" + }, + { + "appid": 3208250, + "normalized_name": "the short bread game" + }, + { + "appid": 3208260, + "normalized_name": "buddies in a ball" + }, + { + "appid": 3208280, + "normalized_name": "unbalanced" + }, + { + "appid": 3208290, + "normalized_name": "the flower inspector" + }, + { + "appid": 3208300, + "normalized_name": "time's prison" + }, + { + "appid": 3208360, + "normalized_name": "my wife sucked a futanari's toes" + }, + { + "appid": 3208370, + "normalized_name": "cosmos crew astral synergy" + }, + { + "appid": 3208380, + "normalized_name": "the curse of slimetopia" + }, + { + "appid": 3208440, + "normalized_name": "boxel 3d" + }, + { + "appid": 3208450, + "normalized_name": "pixelarium free lands" + }, + { + "appid": 3208460, + "normalized_name": "rogue braver | 勇者ローグ" + }, + { + "appid": 3208470, + "normalized_name": "magic sword" + }, + { + "appid": 3208500, + "normalized_name": "dream team supreme" + }, + { + "appid": 3208530, + "normalized_name": "watch out the doors are closing" + }, + { + "appid": 3208550, + "normalized_name": "who dies first ?" + }, + { + "appid": 3208560, + "normalized_name": "trainatic" + }, + { + "appid": 3208570, + "normalized_name": "geyserlands" + }, + { + "appid": 3208610, + "normalized_name": "crab hunt" + }, + { + "appid": 3208630, + "normalized_name": "with my little eye" + }, + { + "appid": 3208670, + "normalized_name": "weil" + }, + { + "appid": 3208680, + "normalized_name": "space tape" + }, + { + "appid": 3208690, + "normalized_name": "divinity chess" + }, + { + "appid": 3208710, + "normalized_name": "gore crush" + }, + { + "appid": 3208720, + "normalized_name": "bereaved soldiers of fate" + }, + { + "appid": 3208730, + "normalized_name": "akizora memories horizon of fate" + }, + { + "appid": 3208740, + "normalized_name": "pussy clicker adult idler" + }, + { + "appid": 3208770, + "normalized_name": "tiny pixel planets" + }, + { + "appid": 3208780, + "normalized_name": "exo wanderers" + }, + { + "appid": 3208860, + "normalized_name": "3d maze" + }, + { + "appid": 3208880, + "normalized_name": "aquilon's sex quest" + }, + { + "appid": 3208890, + "normalized_name": "1号别墅" + }, + { + "appid": 3208910, + "normalized_name": "the good dog chasing shadows" + }, + { + "appid": 3208930, + "normalized_name": "갈바테인 모험가 길드 사무소" + }, + { + "appid": 3208940, + "normalized_name": "roam wild horse simulator" + }, + { + "appid": 3208960, + "normalized_name": "tale of exorcists" + }, + { + "appid": 3208970, + "normalized_name": "new fief" + }, + { + "appid": 3209000, + "normalized_name": "skies of aevium" + }, + { + "appid": 3209020, + "normalized_name": "cr4ckr" + }, + { + "appid": 3209080, + "normalized_name": "poopoowar" + }, + { + "appid": 3209110, + "normalized_name": "river of time yarn" + }, + { + "appid": 3209130, + "normalized_name": "space battleship" + }, + { + "appid": 3209160, + "normalized_name": "grandpa's bee haven" + }, + { + "appid": 3209180, + "normalized_name": "akaku forest" + }, + { + "appid": 3209220, + "normalized_name": "cloudsong" + }, + { + "appid": 3209240, + "normalized_name": "canvas the board game" + }, + { + "appid": 3209280, + "normalized_name": "asylum of the forsaken" + }, + { + "appid": 3209300, + "normalized_name": "retro robots 2d" + }, + { + "appid": 3209310, + "normalized_name": "starry museum" + }, + { + "appid": 3209320, + "normalized_name": "etnia" + }, + { + "appid": 3209330, + "normalized_name": "ribbet" + }, + { + "appid": 3209360, + "normalized_name": "terra fighters" + }, + { + "appid": 3209400, + "normalized_name": "100 animals on an island" + }, + { + "appid": 3209420, + "normalized_name": "anime dance off ghost party" + }, + { + "appid": 3209450, + "normalized_name": "pinball neon" + }, + { + "appid": 3209480, + "normalized_name": "last report" + }, + { + "appid": 3209530, + "normalized_name": "last helion" + }, + { + "appid": 3209620, + "normalized_name": "the ethereal dream" + }, + { + "appid": 3209630, + "normalized_name": "junkyard treasures together" + }, + { + "appid": 3209660, + "normalized_name": "golf with your friends 2" + }, + { + "appid": 3209690, + "normalized_name": "808" + }, + { + "appid": 3209700, + "normalized_name": "sidequest hunters" + }, + { + "appid": 3209730, + "normalized_name": "幸运英雄luckyhero" + }, + { + "appid": 3209750, + "normalized_name": "stario haven tower" + }, + { + "appid": 3209760, + "normalized_name": "trigger of time" + }, + { + "appid": 3209850, + "normalized_name": "mama" + }, + { + "appid": 3209860, + "normalized_name": "stage cleared" + }, + { + "appid": 3209920, + "normalized_name": "bathhouse creatures" + }, + { + "appid": 3209930, + "normalized_name": "浮生从江湖开始" + }, + { + "appid": 3209950, + "normalized_name": "marines vs god" + }, + { + "appid": 3209960, + "normalized_name": "withu it's time to go" + }, + { + "appid": 3209980, + "normalized_name": "harpagun" + }, + { + "appid": 3210060, + "normalized_name": "skyfarm" + }, + { + "appid": 3210080, + "normalized_name": "railroad manager" + }, + { + "appid": 3210110, + "normalized_name": "beyond the marion" + }, + { + "appid": 3210140, + "normalized_name": "factory simulator clothing & outlet" + }, + { + "appid": 3210160, + "normalized_name": "16bitsurvivors" + }, + { + "appid": 3210180, + "normalized_name": "halloween trick or treat 3 collectors" + }, + { + "appid": 3210260, + "normalized_name": "dark descent" + }, + { + "appid": 3210270, + "normalized_name": "streets of rageness beat 'em up fighter" + }, + { + "appid": 3210330, + "normalized_name": "orbi universo ii" + }, + { + "appid": 3210390, + "normalized_name": "kitty clicker" + }, + { + "appid": 3210490, + "normalized_name": "journey to the void" + }, + { + "appid": 3210520, + "normalized_name": "hotel 12th" + }, + { + "appid": 3210570, + "normalized_name": "level up everything!" + }, + { + "appid": 3210590, + "normalized_name": "massi vs. josé" + }, + { + "appid": 3210640, + "normalized_name": "blessed with death" + }, + { + "appid": 3210650, + "normalized_name": "petrified pawns" + }, + { + "appid": 3210670, + "normalized_name": "college gay sex episode 6" + }, + { + "appid": 3210690, + "normalized_name": "escape velocity" + }, + { + "appid": 3210710, + "normalized_name": "angularis" + }, + { + "appid": 3210720, + "normalized_name": "harvest village" + }, + { + "appid": 3210730, + "normalized_name": "101 cute dogs find & paint" + }, + { + "appid": 3210750, + "normalized_name": "unprotected" + }, + { + "appid": 3210790, + "normalized_name": "the stairway" + }, + { + "appid": 3210840, + "normalized_name": "ninja numpties" + }, + { + "appid": 3210850, + "normalized_name": "darkness of memories" + }, + { + "appid": 3210870, + "normalized_name": "mouselash" + }, + { + "appid": 3210900, + "normalized_name": "block dude deluxe" + }, + { + "appid": 3210910, + "normalized_name": "tootum" + }, + { + "appid": 3210930, + "normalized_name": "impersonal" + }, + { + "appid": 3211030, + "normalized_name": "stackables" + }, + { + "appid": 3211050, + "normalized_name": "the comeback kingdom" + }, + { + "appid": 3211070, + "normalized_name": "zombie restaurant" + }, + { + "appid": 3211180, + "normalized_name": "wildwood graveyard defense" + }, + { + "appid": 3211210, + "normalized_name": "hentai castle" + }, + { + "appid": 3211220, + "normalized_name": "lands of achra" + }, + { + "appid": 3211250, + "normalized_name": "morphing" + }, + { + "appid": 3211280, + "normalized_name": "electro bop boxing league" + }, + { + "appid": 3211290, + "normalized_name": "the general saga" + }, + { + "appid": 3211310, + "normalized_name": "die trying" + }, + { + "appid": 3211350, + "normalized_name": "ender chariot" + }, + { + "appid": 3211360, + "normalized_name": "monster milf hunter" + }, + { + "appid": 3211390, + "normalized_name": "within somnia [act ø]" + }, + { + "appid": 3211460, + "normalized_name": "abyss seekerーーwhat do you see deep in the abyss" + }, + { + "appid": 3211480, + "normalized_name": "hockey computer league" + }, + { + "appid": 3211510, + "normalized_name": "falling cube" + }, + { + "appid": 3211540, + "normalized_name": "world diplomat" + }, + { + "appid": 3211560, + "normalized_name": "die deep" + }, + { + "appid": 3211620, + "normalized_name": "future projection" + }, + { + "appid": 3211680, + "normalized_name": "tobacco shop simulator" + }, + { + "appid": 3211690, + "normalized_name": "tobacco shop simulator prologue" + }, + { + "appid": 3211700, + "normalized_name": "mirror insideout" + }, + { + "appid": 3211710, + "normalized_name": "frisky hearts" + }, + { + "appid": 3211750, + "normalized_name": "neongarten" + }, + { + "appid": 3211780, + "normalized_name": "idle animal plaza" + }, + { + "appid": 3211790, + "normalized_name": "stacy sharp and the night of too many monsters" + }, + { + "appid": 3211800, + "normalized_name": "welcome to bunny farm" + }, + { + "appid": 3211810, + "normalized_name": "whispering memories" + }, + { + "appid": 3211830, + "normalized_name": "shattered truth" + }, + { + "appid": 3211840, + "normalized_name": "slave harem" + }, + { + "appid": 3211850, + "normalized_name": "calyx" + }, + { + "appid": 3211890, + "normalized_name": "volcano jumper" + }, + { + "appid": 3211930, + "normalized_name": "waifu simulator" + }, + { + "appid": 3211970, + "normalized_name": "furry sexy girls" + }, + { + "appid": 3211980, + "normalized_name": "embers of spiritflame" + }, + { + "appid": 3211990, + "normalized_name": "arcas champions gorilla warfare" + }, + { + "appid": 3212010, + "normalized_name": "when we disappear" + }, + { + "appid": 3212050, + "normalized_name": "putt in parks" + }, + { + "appid": 3212120, + "normalized_name": "okeverything with 3000 beauties 2" + }, + { + "appid": 3212130, + "normalized_name": "stunt bike extreme" + }, + { + "appid": 3212140, + "normalized_name": "horde together" + }, + { + "appid": 3212160, + "normalized_name": "deepscape inc." + }, + { + "appid": 3212170, + "normalized_name": "grid" + }, + { + "appid": 3212180, + "normalized_name": "nightmare shift" + }, + { + "appid": 3212230, + "normalized_name": "tetherfall" + }, + { + "appid": 3212240, + "normalized_name": "the vanishing" + }, + { + "appid": 3212260, + "normalized_name": "[nightmare files] stoned" + }, + { + "appid": 3212290, + "normalized_name": "bumble rumble" + }, + { + "appid": 3212310, + "normalized_name": "project storm" + }, + { + "appid": 3212370, + "normalized_name": "okeverything with 3000 beauties 3" + }, + { + "appid": 3212380, + "normalized_name": "aéromultiverse" + }, + { + "appid": 3212400, + "normalized_name": "elf archer and the disappearing giant tree r18" + }, + { + "appid": 3212420, + "normalized_name": "the library" + }, + { + "appid": 3212500, + "normalized_name": "vampire huntress lament of the sun" + }, + { + "appid": 3212530, + "normalized_name": "anthology of the killer" + }, + { + "appid": 3212540, + "normalized_name": "arcadia house of gods" + }, + { + "appid": 3212590, + "normalized_name": "greedy darts" + }, + { + "appid": 3212600, + "normalized_name": "nightmare crew" + }, + { + "appid": 3212630, + "normalized_name": "rogue factory" + }, + { + "appid": 3212640, + "normalized_name": "緑葡萄伝(東方project・幻想葡萄伝)" + }, + { + "appid": 3212710, + "normalized_name": "抢单王" + }, + { + "appid": 3212750, + "normalized_name": "真传 disciple" + }, + { + "appid": 3212760, + "normalized_name": "edmonte cristo" + }, + { + "appid": 3212790, + "normalized_name": "cannon guys" + }, + { + "appid": 3212800, + "normalized_name": "shards of the mirror" + }, + { + "appid": 3212820, + "normalized_name": "solar wave" + }, + { + "appid": 3212880, + "normalized_name": "eternal rifts" + }, + { + "appid": 3212890, + "normalized_name": "river climbing" + }, + { + "appid": 3212910, + "normalized_name": "for a long time i built plans to steal a boy at work and didn't dare to do it but i happened to get him so now i can do all sorts of t h i n g s with him…" + }, + { + "appid": 3213000, + "normalized_name": "starship fighters space combat simulator" + }, + { + "appid": 3213010, + "normalized_name": "succubus hunt" + }, + { + "appid": 3213050, + "normalized_name": "[/cornbread png/]" + }, + { + "appid": 3213090, + "normalized_name": "sex route 69" + }, + { + "appid": 3213120, + "normalized_name": "machinefall" + }, + { + "appid": 3213150, + "normalized_name": "sea of legends" + }, + { + "appid": 3213210, + "normalized_name": "front frontiers" + }, + { + "appid": 3213220, + "normalized_name": "junkcity factory simulator" + }, + { + "appid": 3213230, + "normalized_name": "big band survivors" + }, + { + "appid": 3213270, + "normalized_name": "caduceus quest" + }, + { + "appid": 3213300, + "normalized_name": "dust ii | the infinite zero point" + }, + { + "appid": 3213350, + "normalized_name": "brownie's adventure the final resolution" + }, + { + "appid": 3213380, + "normalized_name": "呪いの手紙cursed letter" + }, + { + "appid": 3213390, + "normalized_name": "chatbattlers" + }, + { + "appid": 3213410, + "normalized_name": "mythos book one" + }, + { + "appid": 3213420, + "normalized_name": "politburo simulator" + }, + { + "appid": 3213430, + "normalized_name": "utter a name" + }, + { + "appid": 3213440, + "normalized_name": "halved" + }, + { + "appid": 3213540, + "normalized_name": "just eat the rich" + }, + { + "appid": 3213550, + "normalized_name": "whispered secrets cruise of misfortune collector's" + }, + { + "appid": 3213560, + "normalized_name": "launch ball" + }, + { + "appid": 3213590, + "normalized_name": "climbing challenges" + }, + { + "appid": 3213600, + "normalized_name": "store wars multiplayer shop simulator" + }, + { + "appid": 3213640, + "normalized_name": "thrice cursed" + }, + { + "appid": 3213680, + "normalized_name": "kitty rhythm td" + }, + { + "appid": 3213690, + "normalized_name": "ラブライブ!虹ヶ咲学園スクールアイドル同好会トキメキの未来地図" + }, + { + "appid": 3213700, + "normalized_name": "from the dust" + }, + { + "appid": 3213720, + "normalized_name": "101 cats hidden in los angeles" + }, + { + "appid": 3213750, + "normalized_name": "urban genesis vr" + }, + { + "appid": 3213770, + "normalized_name": "能准点下班吗?" + }, + { + "appid": 3213790, + "normalized_name": "red pistol" + }, + { + "appid": 3213800, + "normalized_name": "multiending heroes" + }, + { + "appid": 3213810, + "normalized_name": "nest" + }, + { + "appid": 3213850, + "normalized_name": "gogh focus with your avatar" + }, + { + "appid": 3213870, + "normalized_name": "nerve" + }, + { + "appid": 3213890, + "normalized_name": "top alert" + }, + { + "appid": 3213910, + "normalized_name": "grimgig railway" + }, + { + "appid": 3213950, + "normalized_name": "feline realms the ancients' legacy" + }, + { + "appid": 3213960, + "normalized_name": "space thugs" + }, + { + "appid": 3214000, + "normalized_name": "诸天刷宝录 东汉三国" + }, + { + "appid": 3214070, + "normalized_name": "fair and square" + }, + { + "appid": 3214080, + "normalized_name": "scramble up!" + }, + { + "appid": 3214120, + "normalized_name": "legends of elysium" + }, + { + "appid": 3214170, + "normalized_name": "bouncing ball" + }, + { + "appid": 3214180, + "normalized_name": "isekai survivors" + }, + { + "appid": 3214190, + "normalized_name": "边缘空间" + }, + { + "appid": 3214220, + "normalized_name": "鋼の戦騎armis steel knight's armis" + }, + { + "appid": 3214230, + "normalized_name": "craft master" + }, + { + "appid": 3214260, + "normalized_name": "skeleboy" + }, + { + "appid": 3214320, + "normalized_name": "wartheon" + }, + { + "appid": 3214330, + "normalized_name": "thrud valkyrie rising" + }, + { + "appid": 3214340, + "normalized_name": "el salar" + }, + { + "appid": 3214380, + "normalized_name": "vaxinator" + }, + { + "appid": 3214390, + "normalized_name": "不審者通報しました。:ホラーストーリー" + }, + { + "appid": 3214400, + "normalized_name": "rainbow cloud a gay rpg" + }, + { + "appid": 3214430, + "normalized_name": "深渊契约" + }, + { + "appid": 3214440, + "normalized_name": "rapz!" + }, + { + "appid": 3214470, + "normalized_name": "flying peep" + }, + { + "appid": 3214490, + "normalized_name": "cosmic trouble" + }, + { + "appid": 3214520, + "normalized_name": "night trail" + }, + { + "appid": 3214530, + "normalized_name": "treasure 'n trio" + }, + { + "appid": 3214570, + "normalized_name": "disconnect" + }, + { + "appid": 3214610, + "normalized_name": "灰烬之国 cinderia" + }, + { + "appid": 3214620, + "normalized_name": "here rose of storm" + }, + { + "appid": 3214680, + "normalized_name": "bad granny little thief" + }, + { + "appid": 3214690, + "normalized_name": "chronicles of delights isekai adventure" + }, + { + "appid": 3214720, + "normalized_name": "mouse practice for kids" + }, + { + "appid": 3214730, + "normalized_name": "universe of trials" + }, + { + "appid": 3214780, + "normalized_name": "3d puzzle colonial graveyard" + }, + { + "appid": 3214790, + "normalized_name": "shards of the realm" + }, + { + "appid": 3214800, + "normalized_name": "3d puzzle gas station" + }, + { + "appid": 3214810, + "normalized_name": "archaeology medieval" + }, + { + "appid": 3214870, + "normalized_name": "snow bros. wonderland" + }, + { + "appid": 3214880, + "normalized_name": "bloody painter dating sim" + }, + { + "appid": 3214900, + "normalized_name": "what hides in dreams" + }, + { + "appid": 3214910, + "normalized_name": "the fox hare disaster chapter one" + }, + { + "appid": 3214970, + "normalized_name": "chores in the night" + }, + { + "appid": 3215030, + "normalized_name": "abyss rebirth" + }, + { + "appid": 3215080, + "normalized_name": "big breasted goth mommies sex puzzles" + }, + { + "appid": 3215100, + "normalized_name": "colorize" + }, + { + "appid": 3215110, + "normalized_name": "rogue courier phantom from a past" + }, + { + "appid": 3215120, + "normalized_name": "blueprint bob" + }, + { + "appid": 3215150, + "normalized_name": "streams upon memories dawn of the fractured mind" + }, + { + "appid": 3215170, + "normalized_name": "needy streamer overload typing of the net" + }, + { + "appid": 3215190, + "normalized_name": "backrooms found footage" + }, + { + "appid": 3215200, + "normalized_name": "pumpkin clicker" + }, + { + "appid": 3215230, + "normalized_name": "go slimey go!" + }, + { + "appid": 3215240, + "normalized_name": "probability dungeon" + }, + { + "appid": 3215260, + "normalized_name": "legendary survivors prologue" + }, + { + "appid": 3215270, + "normalized_name": "place of decay" + }, + { + "appid": 3215280, + "normalized_name": "to ri" + }, + { + "appid": 3215290, + "normalized_name": "alien market simulator" + }, + { + "appid": 3215300, + "normalized_name": "rabbit runner" + }, + { + "appid": 3215310, + "normalized_name": "xeno td" + }, + { + "appid": 3215330, + "normalized_name": "lucha libre legend of the mask" + }, + { + "appid": 3215340, + "normalized_name": "sploodie" + }, + { + "appid": 3215350, + "normalized_name": "fantasy war heroes chilling fog" + }, + { + "appid": 3215360, + "normalized_name": "gameworld" + }, + { + "appid": 3215380, + "normalized_name": "anarchy racer fury roads" + }, + { + "appid": 3215480, + "normalized_name": "celestis" + }, + { + "appid": 3215500, + "normalized_name": "backpack rogue" + }, + { + "appid": 3215510, + "normalized_name": "stake n click" + }, + { + "appid": 3215520, + "normalized_name": "super airline tycoon" + }, + { + "appid": 3215560, + "normalized_name": "irreversible" + }, + { + "appid": 3215570, + "normalized_name": "foxtale" + }, + { + "appid": 3215590, + "normalized_name": "the beyond an interactive comic book" + }, + { + "appid": 3215600, + "normalized_name": "マウントクエスト ~同級生からマウントを取れ~" + }, + { + "appid": 3215660, + "normalized_name": "late homework | 遅れた宿題" + }, + { + "appid": 3215680, + "normalized_name": "who is paul" + }, + { + "appid": 3215740, + "normalized_name": "wandshot" + }, + { + "appid": 3215800, + "normalized_name": "echo stalker" + }, + { + "appid": 3215820, + "normalized_name": "dreadway" + }, + { + "appid": 3215840, + "normalized_name": "player vs. dealer blackjack" + }, + { + "appid": 3215880, + "normalized_name": "legion" + }, + { + "appid": 3216070, + "normalized_name": "green empire" + }, + { + "appid": 3216090, + "normalized_name": "sweet coffee shop" + }, + { + "appid": 3216150, + "normalized_name": "scourge of the reptiles" + }, + { + "appid": 3216170, + "normalized_name": "succubers! dark covenant" + }, + { + "appid": 3216190, + "normalized_name": "yokai busters" + }, + { + "appid": 3216200, + "normalized_name": "death forest abyss" + }, + { + "appid": 3216210, + "normalized_name": "better letter" + }, + { + "appid": 3216220, + "normalized_name": "my boss is scaring me" + }, + { + "appid": 3216280, + "normalized_name": "wretch" + }, + { + "appid": 3216300, + "normalized_name": "chickeat catch" + }, + { + "appid": 3216310, + "normalized_name": "sword road" + }, + { + "appid": 3216320, + "normalized_name": "mecharashi" + }, + { + "appid": 3216330, + "normalized_name": "another door escape room" + }, + { + "appid": 3216340, + "normalized_name": "tearscape" + }, + { + "appid": 3216370, + "normalized_name": "colony x" + }, + { + "appid": 3216400, + "normalized_name": "project zakat" + }, + { + "appid": 3216430, + "normalized_name": "blue light" + }, + { + "appid": 3216500, + "normalized_name": "shuten order" + }, + { + "appid": 3216610, + "normalized_name": "league of tacticians path of tarkan" + }, + { + "appid": 3216640, + "normalized_name": "首無し魔獣と双子姫" + }, + { + "appid": 3216670, + "normalized_name": "monotonous days are..." + }, + { + "appid": 3216700, + "normalized_name": "flat fat fartfest" + }, + { + "appid": 3216750, + "normalized_name": "caverna" + }, + { + "appid": 3216760, + "normalized_name": "the drawing of the gospels" + }, + { + "appid": 3216770, + "normalized_name": "spaceship down" + }, + { + "appid": 3216790, + "normalized_name": "imperium" + }, + { + "appid": 3216800, + "normalized_name": "mörk borg heresy supreme" + }, + { + "appid": 3216860, + "normalized_name": "鯤島行者 echoes of formosa agent reborn" + }, + { + "appid": 3216900, + "normalized_name": "boom boom konbini" + }, + { + "appid": 3217000, + "normalized_name": "idol hacked!" + }, + { + "appid": 3217020, + "normalized_name": "fury's path to the stars" + }, + { + "appid": 3217030, + "normalized_name": "moxter" + }, + { + "appid": 3217040, + "normalized_name": "cold trail" + }, + { + "appid": 3217050, + "normalized_name": "rental store simulator" + }, + { + "appid": 3217060, + "normalized_name": "hunted hunter" + }, + { + "appid": 3217070, + "normalized_name": "little hooky" + }, + { + "appid": 3217090, + "normalized_name": "jewel match dracula collector's" + }, + { + "appid": 3217110, + "normalized_name": "cosmic decode" + }, + { + "appid": 3217120, + "normalized_name": "esports history prologue" + }, + { + "appid": 3217130, + "normalized_name": "plot twist" + }, + { + "appid": 3217150, + "normalized_name": "japanese psycho" + }, + { + "appid": 3217180, + "normalized_name": "ananas pineapple idle game" + }, + { + "appid": 3217200, + "normalized_name": "one true path part 1" + }, + { + "appid": 3217210, + "normalized_name": "mars bot battle" + }, + { + "appid": 3217230, + "normalized_name": "overboost" + }, + { + "appid": 3217240, + "normalized_name": "soccer manager 2025" + }, + { + "appid": 3217260, + "normalized_name": "little rooms" + }, + { + "appid": 3217290, + "normalized_name": "the dark monster hotel" + }, + { + "appid": 3217300, + "normalized_name": "combat survivors" + }, + { + "appid": 3217320, + "normalized_name": "sexy memory puzzle futanari gloryhole" + }, + { + "appid": 3217330, + "normalized_name": "lust rush" + }, + { + "appid": 3217340, + "normalized_name": "banana next gen" + }, + { + "appid": 3217360, + "normalized_name": "reconquer online" + }, + { + "appid": 3217380, + "normalized_name": "waifu aim trainer" + }, + { + "appid": 3217440, + "normalized_name": "school fighter" + }, + { + "appid": 3217470, + "normalized_name": "mutant fish" + }, + { + "appid": 3217480, + "normalized_name": "waystones" + }, + { + "appid": 3217500, + "normalized_name": "tidekeeper" + }, + { + "appid": 3217580, + "normalized_name": "elara's light" + }, + { + "appid": 3217590, + "normalized_name": "alpha runner 2" + }, + { + "appid": 3217600, + "normalized_name": "idle sphere" + }, + { + "appid": 3217650, + "normalized_name": "don't wake up the dead" + }, + { + "appid": 3217660, + "normalized_name": "crown & capital" + }, + { + "appid": 3217720, + "normalized_name": "slime in a trench coat a cooking mystery" + }, + { + "appid": 3217730, + "normalized_name": "la furia de las trenzas" + }, + { + "appid": 3217740, + "normalized_name": "path of the heart" + }, + { + "appid": 3217760, + "normalized_name": "gerrit's games" + }, + { + "appid": 3217770, + "normalized_name": "the andere realm a flicker of lust" + }, + { + "appid": 3217780, + "normalized_name": "steady steady steady!" + }, + { + "appid": 3217820, + "normalized_name": "bloodzone armageddon" + }, + { + "appid": 3217880, + "normalized_name": "end of ember" + }, + { + "appid": 3217900, + "normalized_name": "gorilla showdown" + }, + { + "appid": 3217930, + "normalized_name": "beefarena" + }, + { + "appid": 3217970, + "normalized_name": "yet another killing game" + }, + { + "appid": 3217980, + "normalized_name": "survivalworld" + }, + { + "appid": 3217990, + "normalized_name": "aim trainer gauntlet" + }, + { + "appid": 3218000, + "normalized_name": "fn.run.hack" + }, + { + "appid": 3218080, + "normalized_name": "12 hours" + }, + { + "appid": 3218090, + "normalized_name": "off trail" + }, + { + "appid": 3218100, + "normalized_name": "i am ripper" + }, + { + "appid": 3218120, + "normalized_name": "風雨来記" + }, + { + "appid": 3218150, + "normalized_name": "xeno wipeout!" + }, + { + "appid": 3218170, + "normalized_name": "rhythm of lust" + }, + { + "appid": 3218190, + "normalized_name": "pavé" + }, + { + "appid": 3218200, + "normalized_name": "がんばれ!受付嬢!~guild receptionist~" + }, + { + "appid": 3218230, + "normalized_name": "archeage chronicles" + }, + { + "appid": 3218270, + "normalized_name": "kolasi" + }, + { + "appid": 3218280, + "normalized_name": "buckshot duel" + }, + { + "appid": 3218310, + "normalized_name": "mazestalker the veil of silenos" + }, + { + "appid": 3218320, + "normalized_name": "mint dodgers" + }, + { + "appid": 3218350, + "normalized_name": "melvor idle 2" + }, + { + "appid": 3218370, + "normalized_name": "essentia echoes of reality" + }, + { + "appid": 3218490, + "normalized_name": "spray cola" + }, + { + "appid": 3218530, + "normalized_name": "best served cold" + }, + { + "appid": 3218570, + "normalized_name": "tanuki pon's summer" + }, + { + "appid": 3218580, + "normalized_name": "监寓" + }, + { + "appid": 3218590, + "normalized_name": "ines" + }, + { + "appid": 3218600, + "normalized_name": "命运游戏2:百年之约" + }, + { + "appid": 3218630, + "normalized_name": "super woden rally edge" + }, + { + "appid": 3218680, + "normalized_name": "touhou fearless frogslayer" + }, + { + "appid": 3218690, + "normalized_name": "scamster kombat" + }, + { + "appid": 3218700, + "normalized_name": "ragdoll playground" + }, + { + "appid": 3218710, + "normalized_name": "everlusting life" + }, + { + "appid": 3218730, + "normalized_name": "little witches vs monsters" + }, + { + "appid": 3218760, + "normalized_name": "fornani" + }, + { + "appid": 3218780, + "normalized_name": "大雷魅魔" + }, + { + "appid": 3218790, + "normalized_name": "the little tomb the maholova club and the search for a dead body" + }, + { + "appid": 3218820, + "normalized_name": "decidit" + }, + { + "appid": 3218840, + "normalized_name": "dungeon overdose" + }, + { + "appid": 3218860, + "normalized_name": "signed mary" + }, + { + "appid": 3218870, + "normalized_name": "karoshi club" + }, + { + "appid": 3218880, + "normalized_name": "the succession of changing kings" + }, + { + "appid": 3218990, + "normalized_name": "lost in fuzz" + }, + { + "appid": 3219010, + "normalized_name": "fogpiercer" + }, + { + "appid": 3219090, + "normalized_name": "games for the table" + }, + { + "appid": 3219110, + "normalized_name": "globs" + }, + { + "appid": 3219140, + "normalized_name": "hobby horse" + }, + { + "appid": 3219160, + "normalized_name": "taverna" + }, + { + "appid": 3219170, + "normalized_name": "severed decks" + }, + { + "appid": 3219180, + "normalized_name": "cursemark" + }, + { + "appid": 3219190, + "normalized_name": "axis football 2026" + }, + { + "appid": 3219220, + "normalized_name": "gamemaker 25th anniversary" + }, + { + "appid": 3219250, + "normalized_name": "avandalair" + }, + { + "appid": 3219330, + "normalized_name": "trash teammates" + }, + { + "appid": 3219390, + "normalized_name": "the ballad of bellum" + }, + { + "appid": 3219400, + "normalized_name": "protocol first attack" + }, + { + "appid": 3219410, + "normalized_name": "the trolley solution" + }, + { + "appid": 3219430, + "normalized_name": "crockpot" + }, + { + "appid": 3219440, + "normalized_name": "piscis x machina 4.44 you [are] fish" + }, + { + "appid": 3219450, + "normalized_name": "nonogram halloween" + }, + { + "appid": 3219540, + "normalized_name": "hidden breed" + }, + { + "appid": 3219550, + "normalized_name": "garbage packer" + }, + { + "appid": 3219580, + "normalized_name": "theta and paralldox on worldlines" + }, + { + "appid": 3219600, + "normalized_name": "riot ride" + }, + { + "appid": 3219660, + "normalized_name": "sexy memory puzzle gay gloryhole" + }, + { + "appid": 3219670, + "normalized_name": "cuckold sex episode 5" + }, + { + "appid": 3219720, + "normalized_name": "the uninvited" + }, + { + "appid": 3219730, + "normalized_name": "tanks target challenge" + }, + { + "appid": 3219800, + "normalized_name": "jack's 510 racing" + }, + { + "appid": 3219820, + "normalized_name": "road motel simulator" + }, + { + "appid": 3219880, + "normalized_name": "stop and breathe" + }, + { + "appid": 3219890, + "normalized_name": "critter caboodle" + }, + { + "appid": 3219910, + "normalized_name": "rumor raiders" + }, + { + "appid": 3219950, + "normalized_name": "chunk" + }, + { + "appid": 3219960, + "normalized_name": "ice on the edge" + }, + { + "appid": 3219990, + "normalized_name": "nebula strike" + }, + { + "appid": 3220010, + "normalized_name": "mangui" + }, + { + "appid": 3220050, + "normalized_name": "big beautiful women giantess dating action" + }, + { + "appid": 3220060, + "normalized_name": "the weeping swan ten days of the city's fall" + }, + { + "appid": 3220070, + "normalized_name": "愚者之梦:零时将至" + }, + { + "appid": 3220080, + "normalized_name": "mahjong riddles egypt" + }, + { + "appid": 3220090, + "normalized_name": "100 hidden cats kitty house" + }, + { + "appid": 3220110, + "normalized_name": "agent fall" + }, + { + "appid": 3220130, + "normalized_name": "agent bob" + }, + { + "appid": 3220150, + "normalized_name": "dungeon ward" + }, + { + "appid": 3220170, + "normalized_name": "lostmagic" + }, + { + "appid": 3220180, + "normalized_name": "vestigia joust" + }, + { + "appid": 3220200, + "normalized_name": "羔羊崛起:觉醒" + }, + { + "appid": 3220290, + "normalized_name": "cellarboxed" + }, + { + "appid": 3220300, + "normalized_name": "fork u forklift simulator" + }, + { + "appid": 3220330, + "normalized_name": "mangoo" + }, + { + "appid": 3220360, + "normalized_name": "flowering void" + }, + { + "appid": 3220370, + "normalized_name": "soul injector commando" + }, + { + "appid": 3220380, + "normalized_name": "mutant kingdom" + }, + { + "appid": 3220410, + "normalized_name": "frozen injustice fridge adventures" + }, + { + "appid": 3220430, + "normalized_name": "mind hole" + }, + { + "appid": 3220470, + "normalized_name": "moonlit" + }, + { + "appid": 3220490, + "normalized_name": "rogue texter" + }, + { + "appid": 3220510, + "normalized_name": "curse of the magician" + }, + { + "appid": 3220520, + "normalized_name": "h+h=h2" + }, + { + "appid": 3220530, + "normalized_name": "midnight echo" + }, + { + "appid": 3220610, + "normalized_name": "face to face" + }, + { + "appid": 3220620, + "normalized_name": "benny bash" + }, + { + "appid": 3220650, + "normalized_name": "horse manager" + }, + { + "appid": 3220670, + "normalized_name": "murder mystery mayhem ai" + }, + { + "appid": 3220680, + "normalized_name": "hangoverse season 1" + }, + { + "appid": 3220690, + "normalized_name": "off course elements of space" + }, + { + "appid": 3220700, + "normalized_name": "timebound" + }, + { + "appid": 3220710, + "normalized_name": "master thief" + }, + { + "appid": 3220720, + "normalized_name": "only arrows" + }, + { + "appid": 3220730, + "normalized_name": "jams" + }, + { + "appid": 3220760, + "normalized_name": "pazinko!" + }, + { + "appid": 3220770, + "normalized_name": "tales of eldoria" + }, + { + "appid": 3220790, + "normalized_name": "heart dungeon" + }, + { + "appid": 3220820, + "normalized_name": "bilingual crosswords" + }, + { + "appid": 3220830, + "normalized_name": "dusk pub" + }, + { + "appid": 3220860, + "normalized_name": "tiny boxes" + }, + { + "appid": 3220880, + "normalized_name": "forex gaming fx" + }, + { + "appid": 3221000, + "normalized_name": "酆都战记" + }, + { + "appid": 3221020, + "normalized_name": "spell spiral" + }, + { + "appid": 3221030, + "normalized_name": "幽霊写真 ghostshot" + }, + { + "appid": 3221070, + "normalized_name": "don't breathe" + }, + { + "appid": 3221080, + "normalized_name": "supermarket manager 2024" + }, + { + "appid": 3221110, + "normalized_name": "elf adventure the lost castle" + }, + { + "appid": 3221170, + "normalized_name": "唯" + }, + { + "appid": 3221180, + "normalized_name": "re flex" + }, + { + "appid": 3221190, + "normalized_name": "运动女孩 村庄" + }, + { + "appid": 3221230, + "normalized_name": "fallen kings" + }, + { + "appid": 3221400, + "normalized_name": "tower defense goblin wars" + }, + { + "appid": 3221420, + "normalized_name": "the halloween incident" + }, + { + "appid": 3221440, + "normalized_name": "sweet hunt" + }, + { + "appid": 3221470, + "normalized_name": "catclimber" + }, + { + "appid": 3221490, + "normalized_name": "can we be three?" + }, + { + "appid": 3221500, + "normalized_name": "pixelmancy" + }, + { + "appid": 3221570, + "normalized_name": "fruity rogue" + }, + { + "appid": 3221610, + "normalized_name": "moon space" + }, + { + "appid": 3221630, + "normalized_name": "omnivores rule" + }, + { + "appid": 3221720, + "normalized_name": "sigillvm resonance" + }, + { + "appid": 3221740, + "normalized_name": "house" + }, + { + "appid": 3221760, + "normalized_name": "古道卿卿" + }, + { + "appid": 3221770, + "normalized_name": "sin spire" + }, + { + "appid": 3221800, + "normalized_name": "hardstrike the fall" + }, + { + "appid": 3221830, + "normalized_name": "destino indomable" + }, + { + "appid": 3221850, + "normalized_name": "light towers" + }, + { + "appid": 3221860, + "normalized_name": "the late arrival" + }, + { + "appid": 3221870, + "normalized_name": "hexity" + }, + { + "appid": 3221940, + "normalized_name": "lost times" + }, + { + "appid": 3221980, + "normalized_name": "transfer" + }, + { + "appid": 3222020, + "normalized_name": "crimson quest" + }, + { + "appid": 3222060, + "normalized_name": "magic mine" + }, + { + "appid": 3222070, + "normalized_name": "mgdc minigame collection" + }, + { + "appid": 3222100, + "normalized_name": "mighty swordsman" + }, + { + "appid": 3222120, + "normalized_name": "nature's wrath" + }, + { + "appid": 3222130, + "normalized_name": "who do voodoo" + }, + { + "appid": 3222150, + "normalized_name": "scp destruction protocol" + }, + { + "appid": 3222160, + "normalized_name": "road empire" + }, + { + "appid": 3222170, + "normalized_name": "the damned office" + }, + { + "appid": 3222190, + "normalized_name": "the last storm" + }, + { + "appid": 3222200, + "normalized_name": "ekphrasis" + }, + { + "appid": 3222210, + "normalized_name": "the lost robot" + }, + { + "appid": 3222220, + "normalized_name": "tree of dreams" + }, + { + "appid": 3222230, + "normalized_name": "underground dweller" + }, + { + "appid": 3222240, + "normalized_name": "rogue battalion" + }, + { + "appid": 3222250, + "normalized_name": "nudist college" + }, + { + "appid": 3222270, + "normalized_name": "zomvirus" + }, + { + "appid": 3222280, + "normalized_name": "infinitory" + }, + { + "appid": 3222340, + "normalized_name": "macho shot" + }, + { + "appid": 3222360, + "normalized_name": "harry's adventure" + }, + { + "appid": 3222430, + "normalized_name": "soleil survivor" + }, + { + "appid": 3222490, + "normalized_name": "hellcam" + }, + { + "appid": 3222520, + "normalized_name": "fortune crafter" + }, + { + "appid": 3222530, + "normalized_name": "escape from irene" + }, + { + "appid": 3222570, + "normalized_name": "우리들의 포트폴리오" + }, + { + "appid": 3222600, + "normalized_name": "hentai tales the backrooms" + }, + { + "appid": 3222610, + "normalized_name": "neko times purrfect shapes" + }, + { + "appid": 3222630, + "normalized_name": "legend of the moon scar" + }, + { + "appid": 3222640, + "normalized_name": "wild west pioneers" + }, + { + "appid": 3222660, + "normalized_name": "sleepy joe's adventures (bye!den go!)" + }, + { + "appid": 3222680, + "normalized_name": "reconquista" + }, + { + "appid": 3222710, + "normalized_name": "我在山中有宗门" + }, + { + "appid": 3222720, + "normalized_name": "dawn of the abyss" + }, + { + "appid": 3222850, + "normalized_name": "doctor dash asmr hospital" + }, + { + "appid": 3222860, + "normalized_name": "60 bpm" + }, + { + "appid": 3222880, + "normalized_name": "my happy village in the kingdom" + }, + { + "appid": 3222890, + "normalized_name": "醉风酒 taste of the wind" + }, + { + "appid": 3222910, + "normalized_name": "wandervania" + }, + { + "appid": 3222920, + "normalized_name": "interior tales" + }, + { + "appid": 3222930, + "normalized_name": "kill meow" + }, + { + "appid": 3222950, + "normalized_name": "project knossos" + }, + { + "appid": 3222960, + "normalized_name": "悠久之树" + }, + { + "appid": 3222970, + "normalized_name": "find 100 ducks and blast them!" + }, + { + "appid": 3223000, + "normalized_name": "roombattle" + }, + { + "appid": 3223080, + "normalized_name": "kirin's chosen" + }, + { + "appid": 3223090, + "normalized_name": "808 firetower12" + }, + { + "appid": 3223120, + "normalized_name": "hentai tales futanari office" + }, + { + "appid": 3223130, + "normalized_name": "决斗胜歌" + }, + { + "appid": 3223150, + "normalized_name": "monstersongs the vr rock musical" + }, + { + "appid": 3223160, + "normalized_name": "apocalypse express" + }, + { + "appid": 3223180, + "normalized_name": "foul bliss" + }, + { + "appid": 3223190, + "normalized_name": "mouth trap" + }, + { + "appid": 3223210, + "normalized_name": "arrogant" + }, + { + "appid": 3223220, + "normalized_name": "epoch" + }, + { + "appid": 3223330, + "normalized_name": "find or be found" + }, + { + "appid": 3223370, + "normalized_name": "there's nothing underground" + }, + { + "appid": 3223390, + "normalized_name": "blackshard" + }, + { + "appid": 3223450, + "normalized_name": "fear in the facts farms" + }, + { + "appid": 3223470, + "normalized_name": "conquero" + }, + { + "appid": 3223510, + "normalized_name": "fishing mega game" + }, + { + "appid": 3223590, + "normalized_name": "cyberstray 101" + }, + { + "appid": 3223650, + "normalized_name": "trapped in the omniverse" + }, + { + "appid": 3223680, + "normalized_name": "救援女孩行动 代号x" + }, + { + "appid": 3223730, + "normalized_name": "the waning of shadyvale" + }, + { + "appid": 3223740, + "normalized_name": "fire in the dark" + }, + { + "appid": 3223760, + "normalized_name": "putrid beasts" + }, + { + "appid": 3223840, + "normalized_name": "c.u.b.e. clever uber bot extensible" + }, + { + "appid": 3223850, + "normalized_name": "bruv the bold retaliation of vengeance" + }, + { + "appid": 3223890, + "normalized_name": "bloody bar simulator" + }, + { + "appid": 3223920, + "normalized_name": "cosmic prime dimensions" + }, + { + "appid": 3223960, + "normalized_name": "chronicles of virtue" + }, + { + "appid": 3224160, + "normalized_name": "poolside 18+" + }, + { + "appid": 3224180, + "normalized_name": "planet shield" + }, + { + "appid": 3224250, + "normalized_name": "16 the art of the 15" + }, + { + "appid": 3224260, + "normalized_name": "woodland greens" + }, + { + "appid": 3224270, + "normalized_name": "pixel quest guild" + }, + { + "appid": 3224280, + "normalized_name": "soulwander" + }, + { + "appid": 3224290, + "normalized_name": "burger bois" + }, + { + "appid": 3224310, + "normalized_name": "you're just imagining it" + }, + { + "appid": 3224320, + "normalized_name": "full manual tower defense" + }, + { + "appid": 3224330, + "normalized_name": "thunderman adventures in another realm" + }, + { + "appid": 3224340, + "normalized_name": "don't wake grandpa" + }, + { + "appid": 3224350, + "normalized_name": "bistro brave" + }, + { + "appid": 3224380, + "normalized_name": "retail mage" + }, + { + "appid": 3224400, + "normalized_name": "星海淫游" + }, + { + "appid": 3224420, + "normalized_name": "milky way idle" + }, + { + "appid": 3224440, + "normalized_name": "odouzy!!!" + }, + { + "appid": 3224480, + "normalized_name": "light the candles in hell" + }, + { + "appid": 3224490, + "normalized_name": "dark light" + }, + { + "appid": 3224540, + "normalized_name": "voidface" + }, + { + "appid": 3224560, + "normalized_name": "broad daylight" + }, + { + "appid": 3224600, + "normalized_name": "am i nima" + }, + { + "appid": 3224610, + "normalized_name": "靈靈靈~妖靈傳說" + }, + { + "appid": 3224670, + "normalized_name": "double date dilemma" + }, + { + "appid": 3224680, + "normalized_name": "train reaction" + }, + { + "appid": 3224710, + "normalized_name": "blitloop" + }, + { + "appid": 3224770, + "normalized_name": "umamusume pretty derby" + }, + { + "appid": 3224780, + "normalized_name": "pascal's requiem" + }, + { + "appid": 3224800, + "normalized_name": "reckfell" + }, + { + "appid": 3224810, + "normalized_name": "snails & potions" + }, + { + "appid": 3224840, + "normalized_name": "sophie the girl from the zone" + }, + { + "appid": 3224850, + "normalized_name": "摸鱼仙村" + }, + { + "appid": 3224870, + "normalized_name": "små ord" + }, + { + "appid": 3224900, + "normalized_name": "jagad odyssey" + }, + { + "appid": 3224910, + "normalized_name": "nexus station" + }, + { + "appid": 3224940, + "normalized_name": "三九" + }, + { + "appid": 3224950, + "normalized_name": "表情包谜团行动 代号:曼坤(mankun)" + }, + { + "appid": 3224960, + "normalized_name": "pizzapocalypse" + }, + { + "appid": 3224970, + "normalized_name": "scarlet key" + }, + { + "appid": 3225010, + "normalized_name": "sparta 2035" + }, + { + "appid": 3225020, + "normalized_name": "let me book" + }, + { + "appid": 3225030, + "normalized_name": "sky combat wwii warplane races" + }, + { + "appid": 3225040, + "normalized_name": "quinary 第五紀" + }, + { + "appid": 3225120, + "normalized_name": "blocks challenge" + }, + { + "appid": 3225250, + "normalized_name": "kingdom" + }, + { + "appid": 3225260, + "normalized_name": "diluvian ultra awakening" + }, + { + "appid": 3225280, + "normalized_name": "mr. bunny" + }, + { + "appid": 3225290, + "normalized_name": "spooky dungeon" + }, + { + "appid": 3225300, + "normalized_name": "crypto mining" + }, + { + "appid": 3225310, + "normalized_name": "grimreach forsaken echoes" + }, + { + "appid": 3225320, + "normalized_name": "ocean survivors" + }, + { + "appid": 3225360, + "normalized_name": "commander europe at war" + }, + { + "appid": 3225370, + "normalized_name": "oh hel no!" + }, + { + "appid": 3225420, + "normalized_name": "recharge" + }, + { + "appid": 3225450, + "normalized_name": "super star battle" + }, + { + "appid": 3225480, + "normalized_name": "gravity up" + }, + { + "appid": 3225520, + "normalized_name": "cobot man adventure" + }, + { + "appid": 3225530, + "normalized_name": "the wetrooms liminal pools" + }, + { + "appid": 3225540, + "normalized_name": "dominoa" + }, + { + "appid": 3225570, + "normalized_name": "the butterfly dreams" + }, + { + "appid": 3225590, + "normalized_name": "a devastated city" + }, + { + "appid": 3225600, + "normalized_name": "tech market simulator" + }, + { + "appid": 3225610, + "normalized_name": "the chimera chronicles usurper" + }, + { + "appid": 3225650, + "normalized_name": "sands of yuggoth" + }, + { + "appid": 3225690, + "normalized_name": "agent forest" + }, + { + "appid": 3225700, + "normalized_name": "hellmate" + }, + { + "appid": 3225720, + "normalized_name": "back from space" + }, + { + "appid": 3225730, + "normalized_name": "umbra lumen" + }, + { + "appid": 3225740, + "normalized_name": "dark cooking" + }, + { + "appid": 3225750, + "normalized_name": "メスしかいないエルフの村に迷い込んだら全員孕ませるまで帰れなくなった件" + }, + { + "appid": 3225780, + "normalized_name": "destroyed base" + }, + { + "appid": 3225790, + "normalized_name": "wildrise" + }, + { + "appid": 3225800, + "normalized_name": "abdicate" + }, + { + "appid": 3225810, + "normalized_name": "forbidden formula" + }, + { + "appid": 3225820, + "normalized_name": "indulge" + }, + { + "appid": 3225830, + "normalized_name": "reverie" + }, + { + "appid": 3225840, + "normalized_name": "wilderness" + }, + { + "appid": 3225850, + "normalized_name": "vending machine hero" + }, + { + "appid": 3225860, + "normalized_name": "super ricko’s islands" + }, + { + "appid": 3225870, + "normalized_name": "forest route" + }, + { + "appid": 3225880, + "normalized_name": "snow town geek store" + }, + { + "appid": 3225890, + "normalized_name": "pissed off peeing simulator" + }, + { + "appid": 3225900, + "normalized_name": "phantompunk" + }, + { + "appid": 3225930, + "normalized_name": "rotate or die" + }, + { + "appid": 3225940, + "normalized_name": "tower of jank" + }, + { + "appid": 3225970, + "normalized_name": "封神榜重置版" + }, + { + "appid": 3225990, + "normalized_name": "sweet animal girls" + }, + { + "appid": 3226010, + "normalized_name": "last subway" + }, + { + "appid": 3226030, + "normalized_name": "rotten woods" + }, + { + "appid": 3226040, + "normalized_name": "duckiost" + }, + { + "appid": 3226060, + "normalized_name": "梦境回响 dreamecho" + }, + { + "appid": 3226070, + "normalized_name": "villburdhum" + }, + { + "appid": 3226130, + "normalized_name": "幽霊屋敷と猫の家" + }, + { + "appid": 3226140, + "normalized_name": "coffee please" + }, + { + "appid": 3226180, + "normalized_name": "zozo's show" + }, + { + "appid": 3226190, + "normalized_name": "erotic rhythm" + }, + { + "appid": 3226210, + "normalized_name": "skeleseller" + }, + { + "appid": 3226220, + "normalized_name": "作为游戏和诗歌的世界" + }, + { + "appid": 3226250, + "normalized_name": "dustgrave prologue" + }, + { + "appid": 3226310, + "normalized_name": "furry whores" + }, + { + "appid": 3226330, + "normalized_name": "foot lovers" + }, + { + "appid": 3226360, + "normalized_name": "kangaroo court" + }, + { + "appid": 3226460, + "normalized_name": "scar lead salvation" + }, + { + "appid": 3226480, + "normalized_name": "bedtime stories 2" + }, + { + "appid": 3226530, + "normalized_name": "tower dominion" + }, + { + "appid": 3226540, + "normalized_name": "void scout" + }, + { + "appid": 3226550, + "normalized_name": "don't be scared episode 1 the lost soul" + }, + { + "appid": 3226570, + "normalized_name": "amazoom blimp jockey '69" + }, + { + "appid": 3226660, + "normalized_name": "heroes of magic and steel" + }, + { + "appid": 3226680, + "normalized_name": "rabbiman adventures" + }, + { + "appid": 3226700, + "normalized_name": "goblin mutation" + }, + { + "appid": 3226720, + "normalized_name": "what is in the black box?" + }, + { + "appid": 3226730, + "normalized_name": "titan star" + }, + { + "appid": 3226740, + "normalized_name": "beastly tactics rock paper scissors" + }, + { + "appid": 3226750, + "normalized_name": "deep space cache" + }, + { + "appid": 3226760, + "normalized_name": "pizza delivery in a storm" + }, + { + "appid": 3226770, + "normalized_name": "bad 4 business" + }, + { + "appid": 3226800, + "normalized_name": "arcturus" + }, + { + "appid": 3226820, + "normalized_name": "mother's home" + }, + { + "appid": 3226850, + "normalized_name": "sol rui after mini" + }, + { + "appid": 3226870, + "normalized_name": "the demon lord's daughter and the tower of seals" + }, + { + "appid": 3226890, + "normalized_name": "the great yokai of the haunted halls" + }, + { + "appid": 3226990, + "normalized_name": "ascendance fighters" + }, + { + "appid": 3227040, + "normalized_name": "dress the duel" + }, + { + "appid": 3227060, + "normalized_name": "saloonery" + }, + { + "appid": 3227110, + "normalized_name": "remain" + }, + { + "appid": 3227140, + "normalized_name": "supersize my heart" + }, + { + "appid": 3227150, + "normalized_name": "relics the card game" + }, + { + "appid": 3227190, + "normalized_name": "overtime anomaly" + }, + { + "appid": 3227240, + "normalized_name": "minegeon renegades" + }, + { + "appid": 3227260, + "normalized_name": "pet cam" + }, + { + "appid": 3227280, + "normalized_name": "neetnectar's abysmally small assortment" + }, + { + "appid": 3227300, + "normalized_name": "hentai world bikini" + }, + { + "appid": 3227320, + "normalized_name": "polytropos a tactical odyssey" + }, + { + "appid": 3227350, + "normalized_name": "abduction!?おっぱい星人" + }, + { + "appid": 3227380, + "normalized_name": "tanks racing sim" + }, + { + "appid": 3227420, + "normalized_name": "copper odyssey 2" + }, + { + "appid": 3227460, + "normalized_name": "limscape the liminal space explorer" + }, + { + "appid": 3227470, + "normalized_name": "the eldritch ascent" + }, + { + "appid": 3227490, + "normalized_name": "jumfrog" + }, + { + "appid": 3227500, + "normalized_name": "blades of mirage" + }, + { + "appid": 3227520, + "normalized_name": "wash the cars" + }, + { + "appid": 3227530, + "normalized_name": "进击之钢" + }, + { + "appid": 3227580, + "normalized_name": "implausible tales" + }, + { + "appid": 3227600, + "normalized_name": "tanks of chaos" + }, + { + "appid": 3227610, + "normalized_name": "sexy memory puzzle gloryhole girls" + }, + { + "appid": 3227640, + "normalized_name": "sorting inc" + }, + { + "appid": 3227670, + "normalized_name": "吾家有女 ai" + }, + { + "appid": 3227700, + "normalized_name": "futanari sex adventures episode 4" + }, + { + "appid": 3227710, + "normalized_name": "the hunting!" + }, + { + "appid": 3227720, + "normalized_name": "tower deckfense" + }, + { + "appid": 3227730, + "normalized_name": "龙魂无限斗 dragonspiritsinfight" + }, + { + "appid": 3227750, + "normalized_name": "spartacus blood arena" + }, + { + "appid": 3227760, + "normalized_name": "纸嫁衣6千秋魇" + }, + { + "appid": 3227790, + "normalized_name": "the uncultured" + }, + { + "appid": 3227810, + "normalized_name": "sucker head bodycam" + }, + { + "appid": 3227900, + "normalized_name": "nightmare circus" + }, + { + "appid": 3227980, + "normalized_name": "lost heaven station" + }, + { + "appid": 3228030, + "normalized_name": "gloomy tales hotel frightsylvania collector's" + }, + { + "appid": 3228090, + "normalized_name": "space saber" + }, + { + "appid": 3228100, + "normalized_name": "lost in the mirrors" + }, + { + "appid": 3228120, + "normalized_name": "the uncalled" + }, + { + "appid": 3228160, + "normalized_name": "polclash" + }, + { + "appid": 3228180, + "normalized_name": "click mage" + }, + { + "appid": 3228230, + "normalized_name": "earthquake margarita school" + }, + { + "appid": 3228280, + "normalized_name": "巴克坦克" + }, + { + "appid": 3228290, + "normalized_name": "st. yariman's former sluts ~mega milf edition~" + }, + { + "appid": 3228380, + "normalized_name": "burger typer" + }, + { + "appid": 3228440, + "normalized_name": "project nihilum zero" + }, + { + "appid": 3228530, + "normalized_name": "liphidain key keeper" + }, + { + "appid": 3228540, + "normalized_name": "lightkeeper" + }, + { + "appid": 3228550, + "normalized_name": "mayo mayo" + }, + { + "appid": 3228560, + "normalized_name": "the bewildering basilica of the bishop of bobtown" + }, + { + "appid": 3228580, + "normalized_name": "stolen realm survivors" + }, + { + "appid": 3228590, + "normalized_name": "deadzone rogue" + }, + { + "appid": 3228600, + "normalized_name": "hand holding simulator" + }, + { + "appid": 3228650, + "normalized_name": "capybaras chill in hell" + }, + { + "appid": 3228660, + "normalized_name": "brilliant jigsaw" + }, + { + "appid": 3228680, + "normalized_name": "luke the hybrid" + }, + { + "appid": 3228690, + "normalized_name": "gesund essen lernen" + }, + { + "appid": 3228720, + "normalized_name": "da vi nc1" + }, + { + "appid": 3228740, + "normalized_name": "skullsp" + }, + { + "appid": 3228760, + "normalized_name": "ignition arena" + }, + { + "appid": 3228790, + "normalized_name": "sacrificio" + }, + { + "appid": 3228800, + "normalized_name": "neon highways" + }, + { + "appid": 3228880, + "normalized_name": "draw for me" + }, + { + "appid": 3228900, + "normalized_name": "the kharzov effect" + }, + { + "appid": 3228930, + "normalized_name": "short ntr stories" + }, + { + "appid": 3228940, + "normalized_name": "blight night" + }, + { + "appid": 3228950, + "normalized_name": "static sky and yet it █████ (██落在夜空生成以前)" + }, + { + "appid": 3229010, + "normalized_name": "forgotten dreams" + }, + { + "appid": 3229020, + "normalized_name": "project bengal" + }, + { + "appid": 3229030, + "normalized_name": "nefarius the last wizard" + }, + { + "appid": 3229040, + "normalized_name": "deadzone haunt" + }, + { + "appid": 3229100, + "normalized_name": "teenage mutant ninja turtles tactical takedown" + }, + { + "appid": 3229110, + "normalized_name": "dungeons of havoc" + }, + { + "appid": 3229140, + "normalized_name": "echoes of the house" + }, + { + "appid": 3229150, + "normalized_name": "party management" + }, + { + "appid": 3229160, + "normalized_name": "beneath her gaze" + }, + { + "appid": 3229170, + "normalized_name": "egg squeeze" + }, + { + "appid": 3229210, + "normalized_name": "game of thrallan" + }, + { + "appid": 3229220, + "normalized_name": "堡外就医 / can i buy you a cheeseburger?" + }, + { + "appid": 3229240, + "normalized_name": "掷个骰子" + }, + { + "appid": 3229260, + "normalized_name": "aquapazza aquaplus dream match" + }, + { + "appid": 3229280, + "normalized_name": "bullet dawn" + }, + { + "appid": 3229290, + "normalized_name": "rusted" + }, + { + "appid": 3229300, + "normalized_name": "be touch and go" + }, + { + "appid": 3229310, + "normalized_name": "女王蟻のperfume 切り裂きジャックの狂愛 /queen ant perfume the mad love of jack the ripper" + }, + { + "appid": 3229320, + "normalized_name": "lightray | wayfinder" + }, + { + "appid": 3229370, + "normalized_name": "ストレイ・メモリア" + }, + { + "appid": 3229420, + "normalized_name": "danger world" + }, + { + "appid": 3229460, + "normalized_name": "my puppy" + }, + { + "appid": 3229480, + "normalized_name": "relentless expanse" + }, + { + "appid": 3229520, + "normalized_name": "berry berry festival" + }, + { + "appid": 3229530, + "normalized_name": "through the veil" + }, + { + "appid": 3229540, + "normalized_name": "save the village tower defense" + }, + { + "appid": 3229570, + "normalized_name": "gokai awesome simulator +" + }, + { + "appid": 3229580, + "normalized_name": "blood endless pursuit" + }, + { + "appid": 3229600, + "normalized_name": "easoar" + }, + { + "appid": 3229620, + "normalized_name": "fart game" + }, + { + "appid": 3229630, + "normalized_name": "毕业生活模拟器 graduation life simulator" + }, + { + "appid": 3229690, + "normalized_name": "见诡录:色孽 haunting record sins of lust" + }, + { + "appid": 3229700, + "normalized_name": "labyrinth destroyer 1" + }, + { + "appid": 3229710, + "normalized_name": "hardtrace" + }, + { + "appid": 3229730, + "normalized_name": "game factory" + }, + { + "appid": 3229780, + "normalized_name": "arbiter's circus" + }, + { + "appid": 3229790, + "normalized_name": "mind loop" + }, + { + "appid": 3229860, + "normalized_name": "last spirit origin" + }, + { + "appid": 3229900, + "normalized_name": "asuka idol journey" + }, + { + "appid": 3229910, + "normalized_name": "later" + }, + { + "appid": 3229940, + "normalized_name": "苍空之韵" + }, + { + "appid": 3229950, + "normalized_name": "titan spire" + }, + { + "appid": 3229980, + "normalized_name": "this is fine maximum cope" + }, + { + "appid": 3229990, + "normalized_name": "污水危机:起源 sewage crisis origins" + }, + { + "appid": 3230010, + "normalized_name": "on and on" + }, + { + "appid": 3230020, + "normalized_name": "the laziest person in the world competition" + }, + { + "appid": 3230030, + "normalized_name": "chaos of destiny remake" + }, + { + "appid": 3230040, + "normalized_name": "kidduca 3d" + }, + { + "appid": 3230070, + "normalized_name": "duat beyond light & shadow" + }, + { + "appid": 3230090, + "normalized_name": "typinc." + }, + { + "appid": 3230120, + "normalized_name": "nightmare battler zozo" + }, + { + "appid": 3230150, + "normalized_name": "road rush" + }, + { + "appid": 3230170, + "normalized_name": "setup savior" + }, + { + "appid": 3230200, + "normalized_name": "forgotten heroes" + }, + { + "appid": 3230210, + "normalized_name": "tasty business" + }, + { + "appid": 3230220, + "normalized_name": "crowded mysteries 2 winter romance" + }, + { + "appid": 3230230, + "normalized_name": "just desserts" + }, + { + "appid": 3230240, + "normalized_name": "shadow's descent" + }, + { + "appid": 3230270, + "normalized_name": "mad void" + }, + { + "appid": 3230280, + "normalized_name": "horizons the end of words" + }, + { + "appid": 3230290, + "normalized_name": "blightfog" + }, + { + "appid": 3230330, + "normalized_name": "hex bots" + }, + { + "appid": 3230350, + "normalized_name": "monsterful tavern" + }, + { + "appid": 3230380, + "normalized_name": "yareta" + }, + { + "appid": 3230400, + "normalized_name": "madden nfl 26" + }, + { + "appid": 3230440, + "normalized_name": "monkey bunch" + }, + { + "appid": 3230470, + "normalized_name": "逃出魔法少女之家☆" + }, + { + "appid": 3230520, + "normalized_name": "gigabot run" + }, + { + "appid": 3230540, + "normalized_name": "cronela´s mansion" + }, + { + "appid": 3230770, + "normalized_name": "arcane drifter" + }, + { + "appid": 3230790, + "normalized_name": "cosmi forbidden forests" + }, + { + "appid": 3230820, + "normalized_name": "that sausage museum game" + }, + { + "appid": 3230850, + "normalized_name": "dead abyss" + }, + { + "appid": 3230860, + "normalized_name": "kitty loves birds" + }, + { + "appid": 3230870, + "normalized_name": "archaeology frozen wall" + }, + { + "appid": 3230880, + "normalized_name": "it's a farmer thing" + }, + { + "appid": 3230890, + "normalized_name": "hidden space station top down 3d" + }, + { + "appid": 3230900, + "normalized_name": "hidden storehouse top down 3d" + }, + { + "appid": 3230930, + "normalized_name": "ruya ascension" + }, + { + "appid": 3230940, + "normalized_name": "共和国のロンメル ~ operation weichsel ~" + }, + { + "appid": 3230990, + "normalized_name": "lust academy final" + }, + { + "appid": 3231030, + "normalized_name": "mountain hook" + }, + { + "appid": 3231040, + "normalized_name": "between the lines" + }, + { + "appid": 3231090, + "normalized_name": "amarillo's butt slapper" + }, + { + "appid": 3231120, + "normalized_name": "multiplayer citizens" + }, + { + "appid": 3231130, + "normalized_name": "bloodlust" + }, + { + "appid": 3231190, + "normalized_name": "dungeon train" + }, + { + "appid": 3231250, + "normalized_name": "haoxsora =the sky's abound= ride to our final" + }, + { + "appid": 3231260, + "normalized_name": "relentless dark" + }, + { + "appid": 3231330, + "normalized_name": "monster girl puzzle" + }, + { + "appid": 3231370, + "normalized_name": "the last nightmare" + }, + { + "appid": 3231460, + "normalized_name": "dreamstate" + }, + { + "appid": 3231480, + "normalized_name": "dreamspring" + }, + { + "appid": 3231520, + "normalized_name": "the bleakest keep" + }, + { + "appid": 3231550, + "normalized_name": "corridor geodesic" + }, + { + "appid": 3231570, + "normalized_name": "bombseeker" + }, + { + "appid": 3231600, + "normalized_name": "insect empires" + }, + { + "appid": 3231630, + "normalized_name": "princess burst" + }, + { + "appid": 3231690, + "normalized_name": "pumpkin restaurant" + }, + { + "appid": 3231720, + "normalized_name": "my shy futanari succubus" + }, + { + "appid": 3231740, + "normalized_name": "care" + }, + { + "appid": 3231830, + "normalized_name": "失乐园歌留多" + }, + { + "appid": 3231840, + "normalized_name": "hydra coil" + }, + { + "appid": 3231850, + "normalized_name": "cats fishing for cats" + }, + { + "appid": 3231900, + "normalized_name": "go babies" + }, + { + "appid": 3231910, + "normalized_name": "underwater cycling" + }, + { + "appid": 3231920, + "normalized_name": "project sjhg" + }, + { + "appid": 3231960, + "normalized_name": "little lighthouse of horror" + }, + { + "appid": 3231970, + "normalized_name": "lower? higher! buy or bye" + }, + { + "appid": 3231990, + "normalized_name": "soccer in a box" + }, + { + "appid": 3232000, + "normalized_name": "echo//shredd" + }, + { + "appid": 3232010, + "normalized_name": "three doors labyrinth of fear" + }, + { + "appid": 3232040, + "normalized_name": "bodyrecords" + }, + { + "appid": 3232060, + "normalized_name": "海棋(seachess)" + }, + { + "appid": 3232130, + "normalized_name": "into the void" + }, + { + "appid": 3232190, + "normalized_name": "lonefield evacutation survivor" + }, + { + "appid": 3232240, + "normalized_name": "zombie shooter tps" + }, + { + "appid": 3232250, + "normalized_name": "movefort" + }, + { + "appid": 3232310, + "normalized_name": "unseen" + }, + { + "appid": 3232320, + "normalized_name": "a strange mage's rampage" + }, + { + "appid": 3232400, + "normalized_name": "novi blaster" + }, + { + "appid": 3232460, + "normalized_name": "manny's murderous movie theater the snackbar simulator" + }, + { + "appid": 3232480, + "normalized_name": "tower petroleum" + }, + { + "appid": 3232520, + "normalized_name": "blasted dice" + }, + { + "appid": 3232530, + "normalized_name": "click and tits 3" + }, + { + "appid": 3232560, + "normalized_name": "hot dog simulator" + }, + { + "appid": 3232580, + "normalized_name": "medieval legacy" + }, + { + "appid": 3232590, + "normalized_name": "real or fake" + }, + { + "appid": 3232610, + "normalized_name": "bendy lone wolf" + }, + { + "appid": 3232650, + "normalized_name": "the funskin project" + }, + { + "appid": 3232660, + "normalized_name": "im bann der dunklen jagd" + }, + { + "appid": 3232680, + "normalized_name": "haunting the rosefield manor" + }, + { + "appid": 3232710, + "normalized_name": "rivalhearts" + }, + { + "appid": 3232750, + "normalized_name": "three to the point" + }, + { + "appid": 3232760, + "normalized_name": "cappi starbound saga" + }, + { + "appid": 3232800, + "normalized_name": "paradox the breaking of time" + }, + { + "appid": 3233060, + "normalized_name": "lost zone survival" + }, + { + "appid": 3233080, + "normalized_name": "the patient" + }, + { + "appid": 3233130, + "normalized_name": "claire" + }, + { + "appid": 3233180, + "normalized_name": "shadow lab" + }, + { + "appid": 3233190, + "normalized_name": "evolrun" + }, + { + "appid": 3233220, + "normalized_name": "cursed fables before the clock strikes collector's" + }, + { + "appid": 3233230, + "normalized_name": "ironstrike" + }, + { + "appid": 3233250, + "normalized_name": "islanode rescue signal" + }, + { + "appid": 3233260, + "normalized_name": "case files internal affairs" + }, + { + "appid": 3233300, + "normalized_name": "the house of hamelin" + }, + { + "appid": 3233390, + "normalized_name": "lilith's lair" + }, + { + "appid": 3233430, + "normalized_name": "mystery boxes" + }, + { + "appid": 3233490, + "normalized_name": "kingdom of cubes" + }, + { + "appid": 3233500, + "normalized_name": "zombme" + }, + { + "appid": 3233510, + "normalized_name": "icy shores" + }, + { + "appid": 3233520, + "normalized_name": "heart of the mountains" + }, + { + "appid": 3233530, + "normalized_name": "warden" + }, + { + "appid": 3233630, + "normalized_name": "bandeirantes" + }, + { + "appid": 3233650, + "normalized_name": "gring×grind" + }, + { + "appid": 3233660, + "normalized_name": "sumo wrestler slime" + }, + { + "appid": 3233710, + "normalized_name": "monday the 14th" + }, + { + "appid": 3233740, + "normalized_name": "tetrimatch" + }, + { + "appid": 3233770, + "normalized_name": "laundry room dilemma" + }, + { + "appid": 3233810, + "normalized_name": "tae kwon dog" + }, + { + "appid": 3233820, + "normalized_name": "rhythm drum 节奏鼓" + }, + { + "appid": 3233860, + "normalized_name": "魔女的童话" + }, + { + "appid": 3233870, + "normalized_name": "dami and secret library" + }, + { + "appid": 3233930, + "normalized_name": "rushmith(ラッシュミス)" + }, + { + "appid": 3233940, + "normalized_name": "solo tactics" + }, + { + "appid": 3233960, + "normalized_name": "aleator" + }, + { + "appid": 3233970, + "normalized_name": "loop" + }, + { + "appid": 3234000, + "normalized_name": "night winter drift" + }, + { + "appid": 3234030, + "normalized_name": "jester" + }, + { + "appid": 3234050, + "normalized_name": "新米教師" + }, + { + "appid": 3234080, + "normalized_name": "cheetahs are meant to be fast" + }, + { + "appid": 3234100, + "normalized_name": "dead engine" + }, + { + "appid": 3234110, + "normalized_name": "selenetrope" + }, + { + "appid": 3234140, + "normalized_name": "erotica" + }, + { + "appid": 3234280, + "normalized_name": "valkyrie star a cacophony choir" + }, + { + "appid": 3234300, + "normalized_name": "haltclimb" + }, + { + "appid": 3234310, + "normalized_name": "unchained" + }, + { + "appid": 3234330, + "normalized_name": "ninja ming" + }, + { + "appid": 3234360, + "normalized_name": "bullet voyage" + }, + { + "appid": 3234380, + "normalized_name": "once upon a dungeon infinity" + }, + { + "appid": 3234400, + "normalized_name": "arrow hood" + }, + { + "appid": 3234420, + "normalized_name": "報い retribution" + }, + { + "appid": 3234430, + "normalized_name": "the ouroboros express" + }, + { + "appid": 3234440, + "normalized_name": "biodacity the mansion" + }, + { + "appid": 3234450, + "normalized_name": "robot fury mech combat simulator" + }, + { + "appid": 3234480, + "normalized_name": "greengrocer simulator 2024" + }, + { + "appid": 3234500, + "normalized_name": "atomic city" + }, + { + "appid": 3234510, + "normalized_name": "delusional mind" + }, + { + "appid": 3234520, + "normalized_name": "文明征程" + }, + { + "appid": 3234550, + "normalized_name": "cadence" + }, + { + "appid": 3234570, + "normalized_name": "deep in enemy territory" + }, + { + "appid": 3234660, + "normalized_name": "tokiros" + }, + { + "appid": 3234680, + "normalized_name": "jet fighters with friends 2" + }, + { + "appid": 3234690, + "normalized_name": "haunted streamer" + }, + { + "appid": 3234700, + "normalized_name": "突破重围(break siege)" + }, + { + "appid": 3234730, + "normalized_name": "blue rabbit black future" + }, + { + "appid": 3234740, + "normalized_name": "ancestral" + }, + { + "appid": 3234750, + "normalized_name": "escape from 8 12" + }, + { + "appid": 3234760, + "normalized_name": "orange roulette" + }, + { + "appid": 3234800, + "normalized_name": "dare & scare" + }, + { + "appid": 3234820, + "normalized_name": "zitifono" + }, + { + "appid": 3234850, + "normalized_name": "hyperwired" + }, + { + "appid": 3234870, + "normalized_name": "ghosty paw’s adventure" + }, + { + "appid": 3234890, + "normalized_name": "yet another hentai puzzle cyberpunk" + }, + { + "appid": 3234900, + "normalized_name": "durak with friends" + }, + { + "appid": 3234930, + "normalized_name": "elven impulse" + }, + { + "appid": 3234940, + "normalized_name": "wonderland red queen protocol" + }, + { + "appid": 3234970, + "normalized_name": "ells tales idols" + }, + { + "appid": 3234980, + "normalized_name": "d.a.d.s." + }, + { + "appid": 3235030, + "normalized_name": "karate punk" + }, + { + "appid": 3235040, + "normalized_name": "rubbish" + }, + { + "appid": 3235070, + "normalized_name": "wild willy west" + }, + { + "appid": 3235130, + "normalized_name": "somniora chapter 1" + }, + { + "appid": 3235140, + "normalized_name": "gangstalk" + }, + { + "appid": 3235150, + "normalized_name": "exile protocol" + }, + { + "appid": 3235170, + "normalized_name": "islets defense" + }, + { + "appid": 3235180, + "normalized_name": "identity test" + }, + { + "appid": 3235230, + "normalized_name": "iron roland" + }, + { + "appid": 3235270, + "normalized_name": "conradito cafézito" + }, + { + "appid": 3235340, + "normalized_name": "oblako ☁" + }, + { + "appid": 3235360, + "normalized_name": "your friend is a bad apple" + }, + { + "appid": 3235430, + "normalized_name": "frog box" + }, + { + "appid": 3235530, + "normalized_name": "虚衝 kyosho" + }, + { + "appid": 3235540, + "normalized_name": "cambion" + }, + { + "appid": 3235570, + "normalized_name": "how was your day?" + }, + { + "appid": 3235580, + "normalized_name": "乡人戏 local opera" + }, + { + "appid": 3235590, + "normalized_name": "大学物语" + }, + { + "appid": 3235600, + "normalized_name": "the mad pantser" + }, + { + "appid": 3235640, + "normalized_name": "sketchy marathon" + }, + { + "appid": 3235650, + "normalized_name": "出張 business trip" + }, + { + "appid": 3235660, + "normalized_name": "mystiques haunted antiques" + }, + { + "appid": 3235670, + "normalized_name": "april 8th" + }, + { + "appid": 3235690, + "normalized_name": "clock out at 2" + }, + { + "appid": 3235730, + "normalized_name": "golem smash" + }, + { + "appid": 3235740, + "normalized_name": "fruit n meat" + }, + { + "appid": 3235830, + "normalized_name": "nodenexus" + }, + { + "appid": 3235850, + "normalized_name": "misspell" + }, + { + "appid": 3235910, + "normalized_name": "halloween 1985" + }, + { + "appid": 3235920, + "normalized_name": "2 hours later" + }, + { + "appid": 3235980, + "normalized_name": "banisher" + }, + { + "appid": 3236000, + "normalized_name": "執着学園" + }, + { + "appid": 3236010, + "normalized_name": "supersorry" + }, + { + "appid": 3236030, + "normalized_name": "axe slasher" + }, + { + "appid": 3236040, + "normalized_name": "blackthorn witch" + }, + { + "appid": 3236050, + "normalized_name": "ai kill alice" + }, + { + "appid": 3236060, + "normalized_name": "creepy crawling" + }, + { + "appid": 3236080, + "normalized_name": "老虎机少女 slot girls" + }, + { + "appid": 3236110, + "normalized_name": "highrisers couch co op" + }, + { + "appid": 3236130, + "normalized_name": "adequately ever after" + }, + { + "appid": 3236170, + "normalized_name": "bat to the beat" + }, + { + "appid": 3236190, + "normalized_name": "fish fight!" + }, + { + "appid": 3236230, + "normalized_name": "paper cannon" + }, + { + "appid": 3236280, + "normalized_name": "flocking hell" + }, + { + "appid": 3236330, + "normalized_name": "plantasia" + }, + { + "appid": 3236340, + "normalized_name": "lilith's game" + }, + { + "appid": 3236350, + "normalized_name": "ultraviolent" + }, + { + "appid": 3236360, + "normalized_name": "loveland's leap" + }, + { + "appid": 3236460, + "normalized_name": "nnnnnight" + }, + { + "appid": 3236500, + "normalized_name": "echoes of the iron prison" + }, + { + "appid": 3236520, + "normalized_name": "wally the seal 2" + }, + { + "appid": 3236540, + "normalized_name": "bonk the goblins!" + }, + { + "appid": 3236560, + "normalized_name": "revertices" + }, + { + "appid": 3236570, + "normalized_name": "the burden of aldrin" + }, + { + "appid": 3236600, + "normalized_name": "suho defense" + }, + { + "appid": 3236680, + "normalized_name": "muatythai fighters for freedom" + }, + { + "appid": 3236830, + "normalized_name": "happy fisherman" + }, + { + "appid": 3236840, + "normalized_name": "生于厕所 born in the toilet" + }, + { + "appid": 3236890, + "normalized_name": "tattoovr" + }, + { + "appid": 3236920, + "normalized_name": "artillis" + }, + { + "appid": 3237000, + "normalized_name": "oopsfixers company" + }, + { + "appid": 3237010, + "normalized_name": "withering reflections" + }, + { + "appid": 3237030, + "normalized_name": "black zen white" + }, + { + "appid": 3237040, + "normalized_name": "sweet cinema" + }, + { + "appid": 3237050, + "normalized_name": "memoremovers" + }, + { + "appid": 3237090, + "normalized_name": "d.a.r deadly alien rogues" + }, + { + "appid": 3237110, + "normalized_name": "doomtide" + }, + { + "appid": 3237180, + "normalized_name": "the last joy" + }, + { + "appid": 3237200, + "normalized_name": "さくらいろテトラプリズム" + }, + { + "appid": 3237240, + "normalized_name": "the soul" + }, + { + "appid": 3237250, + "normalized_name": "a sexy tour with akiko" + }, + { + "appid": 3237290, + "normalized_name": "retaliation path of kingdoms" + }, + { + "appid": 3237300, + "normalized_name": "nindo" + }, + { + "appid": 3237320, + "normalized_name": "sexy memory puzzle futanari pool" + }, + { + "appid": 3237330, + "normalized_name": "shadow tale prologue" + }, + { + "appid": 3237340, + "normalized_name": "college gay sex episode 7" + }, + { + "appid": 3237360, + "normalized_name": "lone soul" + }, + { + "appid": 3237420, + "normalized_name": "lost shadows" + }, + { + "appid": 3237440, + "normalized_name": "求援" + }, + { + "appid": 3237450, + "normalized_name": "digger dan & the mine of doom" + }, + { + "appid": 3237460, + "normalized_name": "core containment" + }, + { + "appid": 3237470, + "normalized_name": "elementix" + }, + { + "appid": 3237550, + "normalized_name": "welcome to greedcorp" + }, + { + "appid": 3237570, + "normalized_name": "delivery pals" + }, + { + "appid": 3237590, + "normalized_name": "画笔勇者 | paintbrush warrior" + }, + { + "appid": 3237610, + "normalized_name": "shopenkraft's magic goods" + }, + { + "appid": 3237630, + "normalized_name": "nightmare busters rebirth" + }, + { + "appid": 3237640, + "normalized_name": "dark dominion" + }, + { + "appid": 3237680, + "normalized_name": "sex sport college 💦🏅" + }, + { + "appid": 3237720, + "normalized_name": "zuido" + }, + { + "appid": 3237730, + "normalized_name": "the denizen" + }, + { + "appid": 3237870, + "normalized_name": "cloudy with a chance of kittens" + }, + { + "appid": 3237920, + "normalized_name": "mech havoc" + }, + { + "appid": 3237930, + "normalized_name": "occultus daughter of darkness" + }, + { + "appid": 3237980, + "normalized_name": "dob" + }, + { + "appid": 3238030, + "normalized_name": "uruc" + }, + { + "appid": 3238160, + "normalized_name": "oct 14" + }, + { + "appid": 3238180, + "normalized_name": "poofie plays god" + }, + { + "appid": 3238190, + "normalized_name": "success in progress" + }, + { + "appid": 3238220, + "normalized_name": "hand of hexes" + }, + { + "appid": 3238240, + "normalized_name": "scaravan 66" + }, + { + "appid": 3238250, + "normalized_name": "双手随意闯!" + }, + { + "appid": 3238270, + "normalized_name": "sex hospital 💦" + }, + { + "appid": 3238290, + "normalized_name": "rift drift" + }, + { + "appid": 3238300, + "normalized_name": "project chernaya" + }, + { + "appid": 3238310, + "normalized_name": "try 2 sleep" + }, + { + "appid": 3238420, + "normalized_name": "torment hexus" + }, + { + "appid": 3238450, + "normalized_name": "plunder maps" + }, + { + "appid": 3238490, + "normalized_name": "killistar" + }, + { + "appid": 3238510, + "normalized_name": "fledgling manor" + }, + { + "appid": 3238520, + "normalized_name": "a waddleful life" + }, + { + "appid": 3238580, + "normalized_name": "a world of keflings" + }, + { + "appid": 3238640, + "normalized_name": "og puzzlers synthwave vampires" + }, + { + "appid": 3238650, + "normalized_name": "og memory synthwave vampires" + }, + { + "appid": 3238670, + "normalized_name": "conquest dark" + }, + { + "appid": 3238680, + "normalized_name": "catrun" + }, + { + "appid": 3238690, + "normalized_name": "arinoa conquest" + }, + { + "appid": 3238710, + "normalized_name": "pulse" + }, + { + "appid": 3238780, + "normalized_name": "the red hood hunting the wolf" + }, + { + "appid": 3238790, + "normalized_name": "blade rush" + }, + { + "appid": 3238890, + "normalized_name": "robot farm" + }, + { + "appid": 3238900, + "normalized_name": "quattropanicu" + }, + { + "appid": 3238920, + "normalized_name": "lexica" + }, + { + "appid": 3238950, + "normalized_name": "the rocky horror show video game" + }, + { + "appid": 3239020, + "normalized_name": "path to the goal" + }, + { + "appid": 3239080, + "normalized_name": "god chosen place ii stellar glory" + }, + { + "appid": 3239100, + "normalized_name": "love love 2024 the love election" + }, + { + "appid": 3239220, + "normalized_name": "bubbles in the air" + }, + { + "appid": 3239230, + "normalized_name": "c.v. 私と私の中の人 the fourth insider" + }, + { + "appid": 3239250, + "normalized_name": "clover reset" + }, + { + "appid": 3239270, + "normalized_name": "night shift nurses" + }, + { + "appid": 3239290, + "normalized_name": "the blue pommel katsuo's quest" + }, + { + "appid": 3239300, + "normalized_name": "dawn awaits" + }, + { + "appid": 3239330, + "normalized_name": "tutien path" + }, + { + "appid": 3239340, + "normalized_name": "emberwake" + }, + { + "appid": 3239350, + "normalized_name": "another head" + }, + { + "appid": 3239360, + "normalized_name": "beat heart beat" + }, + { + "appid": 3239370, + "normalized_name": "たんぼ" + }, + { + "appid": 3239420, + "normalized_name": "typingrocket" + }, + { + "appid": 3239480, + "normalized_name": "boobs hidden rio de janeiro" + }, + { + "appid": 3239500, + "normalized_name": "cloud cats` land" + }, + { + "appid": 3239540, + "normalized_name": "kawaii pancakes maid café" + }, + { + "appid": 3239550, + "normalized_name": "atc ground point" + }, + { + "appid": 3239570, + "normalized_name": "pix'hard" + }, + { + "appid": 3239610, + "normalized_name": "teamfight royale" + }, + { + "appid": 3239640, + "normalized_name": "a dual ascent" + }, + { + "appid": 3239660, + "normalized_name": "backrooms the lost circus" + }, + { + "appid": 3239670, + "normalized_name": "beast bio exo arena suit team" + }, + { + "appid": 3239710, + "normalized_name": "the red cathedral" + }, + { + "appid": 3239770, + "normalized_name": "metrogether train simulator" + }, + { + "appid": 3239780, + "normalized_name": "ketamine girl" + }, + { + "appid": 3239800, + "normalized_name": "lost lost lost" + }, + { + "appid": 3239830, + "normalized_name": "truth scrapper" + }, + { + "appid": 3239840, + "normalized_name": "merge together" + }, + { + "appid": 3239860, + "normalized_name": "史莱姆之旅" + }, + { + "appid": 3239870, + "normalized_name": "cyber soldier" + }, + { + "appid": 3239880, + "normalized_name": "fear still alive" + }, + { + "appid": 3239900, + "normalized_name": "no name game" + }, + { + "appid": 3239930, + "normalized_name": "cloners" + }, + { + "appid": 3239940, + "normalized_name": "mesoké an inside journey" + }, + { + "appid": 3239960, + "normalized_name": "goalkeeper journey" + }, + { + "appid": 3239970, + "normalized_name": "iss simulator" + }, + { + "appid": 3239990, + "normalized_name": "our church and halloween rpg episode one" + }, + { + "appid": 3240000, + "normalized_name": "zombiemachia" + }, + { + "appid": 3240010, + "normalized_name": "gregs linked together" + }, + { + "appid": 3240020, + "normalized_name": "mansion mayhem" + }, + { + "appid": 3240050, + "normalized_name": "sibel's journey" + }, + { + "appid": 3240220, + "normalized_name": "grand theft auto v enhanced" + }, + { + "appid": 3240230, + "normalized_name": "ludovischi survivors" + }, + { + "appid": 3240250, + "normalized_name": "autoblobber" + }, + { + "appid": 3240280, + "normalized_name": "bobrkur" + }, + { + "appid": 3240300, + "normalized_name": "elohim eternal exodus" + }, + { + "appid": 3240310, + "normalized_name": "the derailed" + }, + { + "appid": 3240350, + "normalized_name": "spore valley" + }, + { + "appid": 3240470, + "normalized_name": "a field of flowers" + }, + { + "appid": 3240500, + "normalized_name": "sakura isekai adventure 3" + }, + { + "appid": 3240510, + "normalized_name": "calypso's calamity" + }, + { + "appid": 3240540, + "normalized_name": "[stories to tell] greyville stay" + }, + { + "appid": 3240570, + "normalized_name": "knockeddown" + }, + { + "appid": 3240590, + "normalized_name": "wild whiskers cafe" + }, + { + "appid": 3240610, + "normalized_name": "memoria wake" + }, + { + "appid": 3240620, + "normalized_name": "astoria" + }, + { + "appid": 3240720, + "normalized_name": "dragon rank" + }, + { + "appid": 3240760, + "normalized_name": "lock down" + }, + { + "appid": 3240780, + "normalized_name": "the veil of the forgotten" + }, + { + "appid": 3240790, + "normalized_name": "chaotic cats" + }, + { + "appid": 3240820, + "normalized_name": "kubi zuka" + }, + { + "appid": 3240930, + "normalized_name": "hop n' swap" + }, + { + "appid": 3240970, + "normalized_name": "another nightmare" + }, + { + "appid": 3241020, + "normalized_name": "georgie yolkie enhanced" + }, + { + "appid": 3241030, + "normalized_name": "hack and slash fury" + }, + { + "appid": 3241060, + "normalized_name": "the damn psychiatric" + }, + { + "appid": 3241070, + "normalized_name": "the amateur deity society" + }, + { + "appid": 3241100, + "normalized_name": "幻面行者" + }, + { + "appid": 3241110, + "normalized_name": "封神" + }, + { + "appid": 3241120, + "normalized_name": "carden" + }, + { + "appid": 3241170, + "normalized_name": "くにゃ〜むソーダ〜meown soda float〜" + }, + { + "appid": 3241190, + "normalized_name": "三国诡影:黄天" + }, + { + "appid": 3241210, + "normalized_name": "animal striker 2" + }, + { + "appid": 3241230, + "normalized_name": "妖神记之巅峰对决" + }, + { + "appid": 3241270, + "normalized_name": "into the void" + }, + { + "appid": 3241300, + "normalized_name": "macrocosm 2772 g.e. olympus" + }, + { + "appid": 3241310, + "normalized_name": "unexpected pigeon race" + }, + { + "appid": 3241420, + "normalized_name": "dunes of raeth" + }, + { + "appid": 3241440, + "normalized_name": "hover rev hispeed burst" + }, + { + "appid": 3241480, + "normalized_name": "don't look back" + }, + { + "appid": 3241490, + "normalized_name": "下一个就是你" + }, + { + "appid": 3241520, + "normalized_name": "scp retrieval" + }, + { + "appid": 3241540, + "normalized_name": "xd1" + }, + { + "appid": 3241560, + "normalized_name": "tossdown" + }, + { + "appid": 3241660, + "normalized_name": "r.e.p.o." + }, + { + "appid": 3241670, + "normalized_name": "the pet squad" + }, + { + "appid": 3241680, + "normalized_name": "云梦之音 the melody of yunmeng" + }, + { + "appid": 3241700, + "normalized_name": "hentai ami" + }, + { + "appid": 3241710, + "normalized_name": "garden snap" + }, + { + "appid": 3241720, + "normalized_name": "玩仔的冒险" + }, + { + "appid": 3241760, + "normalized_name": "妖狐的深夜直播" + }, + { + "appid": 3241780, + "normalized_name": "南山忆" + }, + { + "appid": 3241860, + "normalized_name": "dziedzic księga pytań bez odpowiedzi" + }, + { + "appid": 3241880, + "normalized_name": "come right inn season 1" + }, + { + "appid": 3241910, + "normalized_name": "the spirit guide" + }, + { + "appid": 3241940, + "normalized_name": "regista reign your football club" + }, + { + "appid": 3242010, + "normalized_name": "stranger tavern brawl" + }, + { + "appid": 3242100, + "normalized_name": "sexy memory puzzle pool girls" + }, + { + "appid": 3242110, + "normalized_name": "security guard sex episode 6" + }, + { + "appid": 3242150, + "normalized_name": "ghostlyryokan" + }, + { + "appid": 3242170, + "normalized_name": "my wife's cheating on me!" + }, + { + "appid": 3242210, + "normalized_name": "开家小店" + }, + { + "appid": 3242230, + "normalized_name": "trailcam" + }, + { + "appid": 3242280, + "normalized_name": "relaxing time enchanting france collector's" + }, + { + "appid": 3242330, + "normalized_name": "the immemorial order ii sisters of darkness" + }, + { + "appid": 3242350, + "normalized_name": "galactic veins" + }, + { + "appid": 3242370, + "normalized_name": "101 cats hidden in australia" + }, + { + "appid": 3242410, + "normalized_name": "gaslift a chair horror" + }, + { + "appid": 3242430, + "normalized_name": "survival city" + }, + { + "appid": 3242500, + "normalized_name": "quantum curse" + }, + { + "appid": 3242510, + "normalized_name": "gun of fate the silver gun of ylia" + }, + { + "appid": 3242700, + "normalized_name": "pico pals" + }, + { + "appid": 3242730, + "normalized_name": "verismo" + }, + { + "appid": 3242740, + "normalized_name": "that's my monster neighbor amongus" + }, + { + "appid": 3242750, + "normalized_name": "level devil" + }, + { + "appid": 3242780, + "normalized_name": "你的所屬之花" + }, + { + "appid": 3242830, + "normalized_name": "ars vox arcana" + }, + { + "appid": 3242850, + "normalized_name": "a handy job" + }, + { + "appid": 3242870, + "normalized_name": "pushmania" + }, + { + "appid": 3242880, + "normalized_name": "ace of space" + }, + { + "appid": 3242890, + "normalized_name": "101 cute playland dogs find & paint" + }, + { + "appid": 3242910, + "normalized_name": "the memory machine" + }, + { + "appid": 3242930, + "normalized_name": "ninety nine (99)" + }, + { + "appid": 3242940, + "normalized_name": "a wicked game" + }, + { + "appid": 3242950, + "normalized_name": "outworld station" + }, + { + "appid": 3243190, + "normalized_name": "psychopomp gold" + }, + { + "appid": 3243220, + "normalized_name": "banana blitz" + }, + { + "appid": 3243230, + "normalized_name": "squa ca dri" + }, + { + "appid": 3243240, + "normalized_name": "the apus escape room" + }, + { + "appid": 3243250, + "normalized_name": "presidential beatdown" + }, + { + "appid": 3243300, + "normalized_name": "the human test / restart" + }, + { + "appid": 3243330, + "normalized_name": "youniverse" + }, + { + "appid": 3243350, + "normalized_name": "slumbering woods" + }, + { + "appid": 3243410, + "normalized_name": "the forbidden flask" + }, + { + "appid": 3243420, + "normalized_name": "選んで!打って!!クイズ4択タイピング" + }, + { + "appid": 3243450, + "normalized_name": "music memories" + }, + { + "appid": 3243490, + "normalized_name": "扎堆英雄" + }, + { + "appid": 3243590, + "normalized_name": "path of balls" + }, + { + "appid": 3243720, + "normalized_name": "cast dice away" + }, + { + "appid": 3243780, + "normalized_name": "abode" + }, + { + "appid": 3243790, + "normalized_name": "中华英雄online 一代宗师" + }, + { + "appid": 3243860, + "normalized_name": "fisherman" + }, + { + "appid": 3243920, + "normalized_name": "magibrick chapter one" + }, + { + "appid": 3243930, + "normalized_name": "missile survivor" + }, + { + "appid": 3243970, + "normalized_name": "sera dion survivor" + }, + { + "appid": 3243990, + "normalized_name": "magictowerreset" + }, + { + "appid": 3244030, + "normalized_name": "prize animals" + }, + { + "appid": 3244040, + "normalized_name": "the golden horde survival" + }, + { + "appid": 3244090, + "normalized_name": "猫猫虫乐园" + }, + { + "appid": 3244140, + "normalized_name": "zombie survivors eternal nightfall" + }, + { + "appid": 3244150, + "normalized_name": "orifoldium" + }, + { + "appid": 3244160, + "normalized_name": "skingdom" + }, + { + "appid": 3244180, + "normalized_name": "farm invaders" + }, + { + "appid": 3244190, + "normalized_name": "holidays survivors" + }, + { + "appid": 3244210, + "normalized_name": "chonkers" + }, + { + "appid": 3244220, + "normalized_name": "a game about digging a hole" + }, + { + "appid": 3244240, + "normalized_name": "midnight getaway" + }, + { + "appid": 3244270, + "normalized_name": "mahoroba cat" + }, + { + "appid": 3244290, + "normalized_name": "🌟k pop star🌟" + }, + { + "appid": 3244320, + "normalized_name": "archaeology rush" + }, + { + "appid": 3244350, + "normalized_name": "burial of shortcake" + }, + { + "appid": 3244360, + "normalized_name": "plant the towers" + }, + { + "appid": 3244420, + "normalized_name": "purrounding" + }, + { + "appid": 3244490, + "normalized_name": "欧酱的迷宫大冒险" + }, + { + "appid": 3244500, + "normalized_name": "被遗忘的神祇" + }, + { + "appid": 3244530, + "normalized_name": "shards of armor" + }, + { + "appid": 3244540, + "normalized_name": "balls crush simulator" + }, + { + "appid": 3244610, + "normalized_name": "tony and jennie 2" + }, + { + "appid": 3244640, + "normalized_name": "sexdivers 🔞" + }, + { + "appid": 3244650, + "normalized_name": "goddess of swing" + }, + { + "appid": 3244660, + "normalized_name": "halloween trouble 6 pumpkin rampage ce" + }, + { + "appid": 3244670, + "normalized_name": "the empty desk" + }, + { + "appid": 3244690, + "normalized_name": "save scream and run" + }, + { + "appid": 3244700, + "normalized_name": "archaeology egypt" + }, + { + "appid": 3244710, + "normalized_name": "archaeology post apocalypse" + }, + { + "appid": 3244720, + "normalized_name": "school beat" + }, + { + "appid": 3244900, + "normalized_name": "curvelicious" + }, + { + "appid": 3244910, + "normalized_name": "mayor of woodtree village" + }, + { + "appid": 3244940, + "normalized_name": "taryn barker demon hunter" + }, + { + "appid": 3244990, + "normalized_name": "unreality beyond worlds" + }, + { + "appid": 3245010, + "normalized_name": "dumbest tourists of timelines" + }, + { + "appid": 3245020, + "normalized_name": "endless conflict" + }, + { + "appid": 3245030, + "normalized_name": "rpg quiz" + }, + { + "appid": 3245050, + "normalized_name": "hockey super squad" + }, + { + "appid": 3245070, + "normalized_name": "world’s end" + }, + { + "appid": 3245080, + "normalized_name": "5th cataclysm" + }, + { + "appid": 3245090, + "normalized_name": "retro runner" + }, + { + "appid": 3245110, + "normalized_name": "parking attendant simulator" + }, + { + "appid": 3245140, + "normalized_name": "hello sunshine" + }, + { + "appid": 3245150, + "normalized_name": "carcerem" + }, + { + "appid": 3245190, + "normalized_name": "arjybeasts" + }, + { + "appid": 3245210, + "normalized_name": "virulent vessels the legend of gobbledygunk" + }, + { + "appid": 3245220, + "normalized_name": "sinvers on wheels" + }, + { + "appid": 3245250, + "normalized_name": "of ink and silver" + }, + { + "appid": 3245270, + "normalized_name": "in essence nil (maidxman) / chapel" + }, + { + "appid": 3245300, + "normalized_name": "shattered sun" + }, + { + "appid": 3245310, + "normalized_name": "čtyřlístek a strašidelný hrad" + }, + { + "appid": 3245330, + "normalized_name": "the final exam" + }, + { + "appid": 3245350, + "normalized_name": "adventure time" + }, + { + "appid": 3245370, + "normalized_name": "telly the tv" + }, + { + "appid": 3245380, + "normalized_name": "they do not die call of crimson tgirl apex land zombie shooter duty 2d keywords" + }, + { + "appid": 3245410, + "normalized_name": "elven forest" + }, + { + "appid": 3245420, + "normalized_name": "glory wall!" + }, + { + "appid": 3245530, + "normalized_name": "alix" + }, + { + "appid": 3245570, + "normalized_name": "diatribes" + }, + { + "appid": 3245610, + "normalized_name": "last spirit" + }, + { + "appid": 3245740, + "normalized_name": "100 hidden kooky & hiking boots" + }, + { + "appid": 3245790, + "normalized_name": "damien crawford's golf experience 2024" + }, + { + "appid": 3245830, + "normalized_name": "into the inferno" + }, + { + "appid": 3245890, + "normalized_name": "upstream" + }, + { + "appid": 3245900, + "normalized_name": "poker battle" + }, + { + "appid": 3245910, + "normalized_name": "baratrum" + }, + { + "appid": 3245920, + "normalized_name": "妖怪不懂談戀愛 falling for yaoguais" + }, + { + "appid": 3245960, + "normalized_name": "parasite attack 1984" + }, + { + "appid": 3245970, + "normalized_name": "tokyo girls chronicle" + }, + { + "appid": 3246020, + "normalized_name": "breeding grounds" + }, + { + "appid": 3246080, + "normalized_name": "day day up" + }, + { + "appid": 3246090, + "normalized_name": "no way home" + }, + { + "appid": 3246100, + "normalized_name": "sping" + }, + { + "appid": 3246110, + "normalized_name": "mystic warfare" + }, + { + "appid": 3246120, + "normalized_name": "no way home blammo!" + }, + { + "appid": 3246150, + "normalized_name": "wild kingdom" + }, + { + "appid": 3246160, + "normalized_name": "shelter" + }, + { + "appid": 3246190, + "normalized_name": "listen up! we tried to make “those games” even more extreme! some things have to be learned the hard way!" + }, + { + "appid": 3246230, + "normalized_name": "spider land" + }, + { + "appid": 3246240, + "normalized_name": "the escape room chronicles ep2 the old school building" + }, + { + "appid": 3246250, + "normalized_name": "the escape room chronicles ep3 the southern resort" + }, + { + "appid": 3246260, + "normalized_name": "the escape room chronicles ep4 the 24 hour tv station" + }, + { + "appid": 3246420, + "normalized_name": "project 0.1" + }, + { + "appid": 3246430, + "normalized_name": "ved journey beyond the cube" + }, + { + "appid": 3246450, + "normalized_name": "dismantling workshop of bio girl" + }, + { + "appid": 3246460, + "normalized_name": "munny the sea cave" + }, + { + "appid": 3246510, + "normalized_name": "osiris quest" + }, + { + "appid": 3246530, + "normalized_name": "genego" + }, + { + "appid": 3246550, + "normalized_name": "소녀는 꿈의 숲을 여행합니다 2 에이바" + }, + { + "appid": 3246600, + "normalized_name": "aiphobia" + }, + { + "appid": 3246640, + "normalized_name": "my rose" + }, + { + "appid": 3246690, + "normalized_name": "melons milkshake the creampied mommy" + }, + { + "appid": 3246770, + "normalized_name": "nightdirge" + }, + { + "appid": 3246820, + "normalized_name": "don't mess with your ex" + }, + { + "appid": 3246830, + "normalized_name": "eldritch survivors" + }, + { + "appid": 3246880, + "normalized_name": "city of dolorosa" + }, + { + "appid": 3246900, + "normalized_name": "coloring game girls 2" + }, + { + "appid": 3246930, + "normalized_name": "the exorcist" + }, + { + "appid": 3246970, + "normalized_name": "red blaster" + }, + { + "appid": 3246990, + "normalized_name": "encave" + }, + { + "appid": 3247050, + "normalized_name": "boringfly" + }, + { + "appid": 3247080, + "normalized_name": "unlight revive" + }, + { + "appid": 3247130, + "normalized_name": "liquor love lady" + }, + { + "appid": 3247150, + "normalized_name": "playtown genesis" + }, + { + "appid": 3247170, + "normalized_name": "dungeon decks" + }, + { + "appid": 3247190, + "normalized_name": "elsewhere" + }, + { + "appid": 3247200, + "normalized_name": "dawn of ages" + }, + { + "appid": 3247250, + "normalized_name": "hentai clicker lily is streaming" + }, + { + "appid": 3247270, + "normalized_name": "myrmidon" + }, + { + "appid": 3247280, + "normalized_name": "monsterfall" + }, + { + "appid": 3247290, + "normalized_name": "ellingby house" + }, + { + "appid": 3247300, + "normalized_name": "tumble track" + }, + { + "appid": 3247350, + "normalized_name": "operation remode" + }, + { + "appid": 3247390, + "normalized_name": "little repair shop" + }, + { + "appid": 3247410, + "normalized_name": "like others but about construction" + }, + { + "appid": 3247440, + "normalized_name": "madness on display" + }, + { + "appid": 3247480, + "normalized_name": "super ricko's odyssey" + }, + { + "appid": 3247500, + "normalized_name": "シューターズ レディ!" + }, + { + "appid": 3247510, + "normalized_name": "nanocatastrophe" + }, + { + "appid": 3247540, + "normalized_name": "going your own way episode one" + }, + { + "appid": 3247550, + "normalized_name": "sexy memory puzzle gay jail" + }, + { + "appid": 3247570, + "normalized_name": "anchor quest for atlantis" + }, + { + "appid": 3247610, + "normalized_name": "otaku miracles" + }, + { + "appid": 3247640, + "normalized_name": "7 days" + }, + { + "appid": 3247700, + "normalized_name": "the blackwood legacy" + }, + { + "appid": 3247710, + "normalized_name": "mad miner 2" + }, + { + "appid": 3247720, + "normalized_name": "cosmos point" + }, + { + "appid": 3247750, + "normalized_name": "mycopunk" + }, + { + "appid": 3247800, + "normalized_name": "镇魂歌" + }, + { + "appid": 3247830, + "normalized_name": "margaret’s sin" + }, + { + "appid": 3247840, + "normalized_name": "inner" + }, + { + "appid": 3247860, + "normalized_name": "talking coin" + }, + { + "appid": 3247910, + "normalized_name": "my monsters" + }, + { + "appid": 3247950, + "normalized_name": "guns and spookies" + }, + { + "appid": 3247980, + "normalized_name": "flint" + }, + { + "appid": 3247990, + "normalized_name": "from the other side" + }, + { + "appid": 3248010, + "normalized_name": "strip battle action cards" + }, + { + "appid": 3248030, + "normalized_name": "rapid eye madness" + }, + { + "appid": 3248110, + "normalized_name": "philodeka" + }, + { + "appid": 3248190, + "normalized_name": "buried spirits" + }, + { + "appid": 3248200, + "normalized_name": "witchpop" + }, + { + "appid": 3248210, + "normalized_name": "cemetery warrior 6" + }, + { + "appid": 3248260, + "normalized_name": "call of heroes tower defense" + }, + { + "appid": 3248290, + "normalized_name": "defendópolis" + }, + { + "appid": 3248310, + "normalized_name": "karting of banban" + }, + { + "appid": 3248320, + "normalized_name": "cdb6 a maldição dos zumbis" + }, + { + "appid": 3248350, + "normalized_name": "dungeon patrol" + }, + { + "appid": 3248360, + "normalized_name": "bass invaders" + }, + { + "appid": 3248390, + "normalized_name": "subspace hunter" + }, + { + "appid": 3248410, + "normalized_name": "snowkissed romance" + }, + { + "appid": 3248450, + "normalized_name": "invisiblehand" + }, + { + "appid": 3248490, + "normalized_name": "bbb balls bangs blocks" + }, + { + "appid": 3248500, + "normalized_name": "damashi game" + }, + { + "appid": 3248510, + "normalized_name": "你的老婆哦" + }, + { + "appid": 3248540, + "normalized_name": "a match made in hell" + }, + { + "appid": 3248550, + "normalized_name": "echos" + }, + { + "appid": 3248580, + "normalized_name": "new eromancer" + }, + { + "appid": 3248610, + "normalized_name": "bullet rogue" + }, + { + "appid": 3248630, + "normalized_name": "towst the one who sees things" + }, + { + "appid": 3248650, + "normalized_name": "jobifai" + }, + { + "appid": 3248690, + "normalized_name": "software dev tycoon" + }, + { + "appid": 3248700, + "normalized_name": "fox arcana" + }, + { + "appid": 3248880, + "normalized_name": "canary" + }, + { + "appid": 3248900, + "normalized_name": "airport manager" + }, + { + "appid": 3248910, + "normalized_name": "deserter" + }, + { + "appid": 3248920, + "normalized_name": "sexy memory puzzle futanari jail" + }, + { + "appid": 3248940, + "normalized_name": "cybergrid beat survivors" + }, + { + "appid": 3248990, + "normalized_name": "the detectorist guild" + }, + { + "appid": 3249050, + "normalized_name": "tap 4 sex" + }, + { + "appid": 3249060, + "normalized_name": "tombstone tally" + }, + { + "appid": 3249090, + "normalized_name": "ostrich run" + }, + { + "appid": 3249100, + "normalized_name": "virtual interactive fireplace" + }, + { + "appid": 3249120, + "normalized_name": "silent surveillance" + }, + { + "appid": 3249180, + "normalized_name": "traveller's hymn" + }, + { + "appid": 3249190, + "normalized_name": "eternal ninja" + }, + { + "appid": 3249210, + "normalized_name": "sigma squad" + }, + { + "appid": 3249290, + "normalized_name": "open tournament" + }, + { + "appid": 3249320, + "normalized_name": "strangler" + }, + { + "appid": 3249340, + "normalized_name": "spire surge and sea" + }, + { + "appid": 3249360, + "normalized_name": "math dash" + }, + { + "appid": 3249380, + "normalized_name": "piece by piece" + }, + { + "appid": 3249390, + "normalized_name": "the stone of wisdom" + }, + { + "appid": 3249420, + "normalized_name": "steam dreams" + }, + { + "appid": 3249470, + "normalized_name": "tears of the maker" + }, + { + "appid": 3249490, + "normalized_name": "rough rivals" + }, + { + "appid": 3249500, + "normalized_name": "thrack the fox" + }, + { + "appid": 3249540, + "normalized_name": "fling with a tiefling" + }, + { + "appid": 3249550, + "normalized_name": "man on the block" + }, + { + "appid": 3249560, + "normalized_name": "undercover fools" + }, + { + "appid": 3249580, + "normalized_name": "yakiniku party survival" + }, + { + "appid": 3249600, + "normalized_name": "徨恍 aware" + }, + { + "appid": 3249630, + "normalized_name": "the last customer" + }, + { + "appid": 3249650, + "normalized_name": "little fighter 2" + }, + { + "appid": 3249660, + "normalized_name": "neon testament" + }, + { + "appid": 3249680, + "normalized_name": "bread" + }, + { + "appid": 3249760, + "normalized_name": "six fingers الأصابع الستة" + }, + { + "appid": 3249770, + "normalized_name": "the greatest chef" + }, + { + "appid": 3249790, + "normalized_name": "小小勇士团little warriors team" + }, + { + "appid": 3249800, + "normalized_name": "touhou renkyouto ~ subterranean festival of love and jealousy" + }, + { + "appid": 3249890, + "normalized_name": "nde near dungeon experience" + }, + { + "appid": 3249900, + "normalized_name": "bloxpath" + }, + { + "appid": 3249910, + "normalized_name": "collinwood" + }, + { + "appid": 3249970, + "normalized_name": "corrupt them all tokyo meow" + }, + { + "appid": 3249990, + "normalized_name": "巅峰之智 peak wisdom" + }, + { + "appid": 3250010, + "normalized_name": "cold bed on route" + }, + { + "appid": 3250020, + "normalized_name": "hell dive" + }, + { + "appid": 3250050, + "normalized_name": "记忆岛" + }, + { + "appid": 3250080, + "normalized_name": "psycasso" + }, + { + "appid": 3250100, + "normalized_name": "sunset bite" + }, + { + "appid": 3250120, + "normalized_name": "cursed hours" + }, + { + "appid": 3250150, + "normalized_name": "corporate cut the hair raising adventure of an office employee" + }, + { + "appid": 3250160, + "normalized_name": "when it falls" + }, + { + "appid": 3250190, + "normalized_name": "giddy protocol" + }, + { + "appid": 3250210, + "normalized_name": "tacam" + }, + { + "appid": 3250220, + "normalized_name": "nuts about nuts" + }, + { + "appid": 3250240, + "normalized_name": "dimensions of subconsciousness" + }, + { + "appid": 3250310, + "normalized_name": "watermelon" + }, + { + "appid": 3250330, + "normalized_name": "incrate" + }, + { + "appid": 3250370, + "normalized_name": "卡丹历险记" + }, + { + "appid": 3250410, + "normalized_name": "yaku slap" + }, + { + "appid": 3250420, + "normalized_name": "talewarden riders of the new day" + }, + { + "appid": 3250430, + "normalized_name": "absolution of the dead" + }, + { + "appid": 3250440, + "normalized_name": "dem tanks" + }, + { + "appid": 3250450, + "normalized_name": "store empire" + }, + { + "appid": 3250620, + "normalized_name": "no artist credited" + }, + { + "appid": 3250710, + "normalized_name": "phantasia the sun thief" + }, + { + "appid": 3250720, + "normalized_name": "bulwark" + }, + { + "appid": 3250730, + "normalized_name": "paper 2 origami refolded" + }, + { + "appid": 3250760, + "normalized_name": "redshift" + }, + { + "appid": 3250860, + "normalized_name": "祛魅·化始(祛魅4)" + }, + { + "appid": 3250890, + "normalized_name": "解救女孩" + }, + { + "appid": 3250910, + "normalized_name": "街头打手ii" + }, + { + "appid": 3250930, + "normalized_name": "the last of the 9 lives" + }, + { + "appid": 3250940, + "normalized_name": "gatepass" + }, + { + "appid": 3250960, + "normalized_name": "异世轮回录:if" + }, + { + "appid": 3250970, + "normalized_name": "isekai reincarnation magic cock" + }, + { + "appid": 3250980, + "normalized_name": "imperial knightess wein's irregular life" + }, + { + "appid": 3251020, + "normalized_name": "birdknight" + }, + { + "appid": 3251050, + "normalized_name": "tyro legend of whisperwood" + }, + { + "appid": 3251070, + "normalized_name": "along long road" + }, + { + "appid": 3251080, + "normalized_name": "心之迷雾" + }, + { + "appid": 3251130, + "normalized_name": "dark goddess of destruction idle" + }, + { + "appid": 3251170, + "normalized_name": "lirai heir of darkness" + }, + { + "appid": 3251180, + "normalized_name": "vanishtan" + }, + { + "appid": 3251190, + "normalized_name": "体感赛车 motion sensing car" + }, + { + "appid": 3251240, + "normalized_name": "skewer of heroes bubble survivors" + }, + { + "appid": 3251270, + "normalized_name": "abyss of pleasure" + }, + { + "appid": 3251280, + "normalized_name": "rivals hover league" + }, + { + "appid": 3251300, + "normalized_name": "jonah lomu rugby challenge 4" + }, + { + "appid": 3251370, + "normalized_name": "lawnmower game 2024" + }, + { + "appid": 3251470, + "normalized_name": "fantasy kommander fascination of evil" + }, + { + "appid": 3251510, + "normalized_name": "race or crash secret racer league" + }, + { + "appid": 3251540, + "normalized_name": "oil rig simulator" + }, + { + "appid": 3251550, + "normalized_name": "to the kingdom" + }, + { + "appid": 3251590, + "normalized_name": "fateful night" + }, + { + "appid": 3251610, + "normalized_name": "space memory dogs" + }, + { + "appid": 3251660, + "normalized_name": "until your death" + }, + { + "appid": 3251680, + "normalized_name": "heartwood" + }, + { + "appid": 3251690, + "normalized_name": "anti terrorist shooting game" + }, + { + "appid": 3251700, + "normalized_name": "battle gang" + }, + { + "appid": 3251750, + "normalized_name": "dual discovery unite challenge 寻踪觅影:合二为一" + }, + { + "appid": 3251840, + "normalized_name": "equal to p (=p)" + }, + { + "appid": 3251850, + "normalized_name": "bound by desire 🍆👩" + }, + { + "appid": 3251910, + "normalized_name": "bondage mermaids fatal fap" + }, + { + "appid": 3251930, + "normalized_name": "beacon of hope" + }, + { + "appid": 3251950, + "normalized_name": "crapshoot" + }, + { + "appid": 3251990, + "normalized_name": "glimmer fighters" + }, + { + "appid": 3252050, + "normalized_name": "博物魅影" + }, + { + "appid": 3252090, + "normalized_name": "lando me? a hero?" + }, + { + "appid": 3252100, + "normalized_name": "寝取られ病 愛する妻が俺以外の男に中出しされないと助からない奇病になったら" + }, + { + "appid": 3252160, + "normalized_name": "farmyard survivors" + }, + { + "appid": 3252190, + "normalized_name": "nine heavens" + }, + { + "appid": 3252240, + "normalized_name": "mircea" + }, + { + "appid": 3252250, + "normalized_name": "unfoldink" + }, + { + "appid": 3252270, + "normalized_name": "xukaackque" + }, + { + "appid": 3252290, + "normalized_name": "ekron" + }, + { + "appid": 3252310, + "normalized_name": "comet rogue" + }, + { + "appid": 3252350, + "normalized_name": "spicex" + }, + { + "appid": 3252360, + "normalized_name": "unemployment simulator 2018" + }, + { + "appid": 3252380, + "normalized_name": "git gud" + }, + { + "appid": 3252390, + "normalized_name": "rock paper scissors the final match" + }, + { + "appid": 3252400, + "normalized_name": "clueless crew" + }, + { + "appid": 3252420, + "normalized_name": "launch and loot" + }, + { + "appid": 3252440, + "normalized_name": "geon" + }, + { + "appid": 3252490, + "normalized_name": "meow time machine munch" + }, + { + "appid": 3252500, + "normalized_name": "melt them all" + }, + { + "appid": 3252510, + "normalized_name": "crimson lust" + }, + { + "appid": 3252520, + "normalized_name": "magic puzzle king" + }, + { + "appid": 3252530, + "normalized_name": "easy" + }, + { + "appid": 3252550, + "normalized_name": "escaping diddler" + }, + { + "appid": 3252590, + "normalized_name": "sexy memory puzzle futanari doctor" + }, + { + "appid": 3252600, + "normalized_name": "100 dogs in india" + }, + { + "appid": 3252610, + "normalized_name": "nightmare flight" + }, + { + "appid": 3252650, + "normalized_name": "from beyond" + }, + { + "appid": 3252690, + "normalized_name": "dramatized soundtrack" + }, + { + "appid": 3252700, + "normalized_name": "soli tair ror" + }, + { + "appid": 3252730, + "normalized_name": "hover groove" + }, + { + "appid": 3252740, + "normalized_name": "lust night💋" + }, + { + "appid": 3252750, + "normalized_name": "nothing at stake" + }, + { + "appid": 3252770, + "normalized_name": "pixelite online" + }, + { + "appid": 3252790, + "normalized_name": "breathless hope" + }, + { + "appid": 3252830, + "normalized_name": "wychwood hollow" + }, + { + "appid": 3252900, + "normalized_name": "terror in the corn" + }, + { + "appid": 3252920, + "normalized_name": "door game deluxe" + }, + { + "appid": 3252930, + "normalized_name": "tritonxr reality warfare" + }, + { + "appid": 3252940, + "normalized_name": "tradiecraft tool trials" + }, + { + "appid": 3253030, + "normalized_name": "ダンジョンに出会いを求めるのは間違っているだろうか 水と光のフルランド" + }, + { + "appid": 3253040, + "normalized_name": "战略大师 strategy master" + }, + { + "appid": 3253070, + "normalized_name": "the gate" + }, + { + "appid": 3253080, + "normalized_name": "美国自由战士" + }, + { + "appid": 3253090, + "normalized_name": "these starless skies" + }, + { + "appid": 3253150, + "normalized_name": "diner bros 2" + }, + { + "appid": 3253170, + "normalized_name": "a paranormal story" + }, + { + "appid": 3253220, + "normalized_name": "make it! crepe" + }, + { + "appid": 3253300, + "normalized_name": "hangman" + }, + { + "appid": 3253310, + "normalized_name": "alone a long" + }, + { + "appid": 3253340, + "normalized_name": "push 3d" + }, + { + "appid": 3253420, + "normalized_name": "ain't no surprise" + }, + { + "appid": 3253440, + "normalized_name": "egg raiders" + }, + { + "appid": 3253460, + "normalized_name": "escape from box city" + }, + { + "appid": 3253530, + "normalized_name": "pit of goblin" + }, + { + "appid": 3253560, + "normalized_name": "shining princess lapisphilia" + }, + { + "appid": 3253620, + "normalized_name": "the exit project backstreets" + }, + { + "appid": 3253630, + "normalized_name": "gal guardians servants of the dark" + }, + { + "appid": 3253690, + "normalized_name": "castle of shikigami 3" + }, + { + "appid": 3253700, + "normalized_name": "palsync" + }, + { + "appid": 3253710, + "normalized_name": "landlady seduction simulator" + }, + { + "appid": 3253730, + "normalized_name": "碰碰派对" + }, + { + "appid": 3253760, + "normalized_name": "无尽迷途:轮回之境" + }, + { + "appid": 3253770, + "normalized_name": "stella in lewd dream" + }, + { + "appid": 3253830, + "normalized_name": "坦克竞技场:全面行动" + }, + { + "appid": 3253860, + "normalized_name": "gallery coloring book & decor" + }, + { + "appid": 3253920, + "normalized_name": "tentacle tango" + }, + { + "appid": 3253930, + "normalized_name": "rhythm hotel" + }, + { + "appid": 3253950, + "normalized_name": "awaking beauty" + }, + { + "appid": 3253970, + "normalized_name": "harvest master" + }, + { + "appid": 3253980, + "normalized_name": "return 回歸" + }, + { + "appid": 3253990, + "normalized_name": "the wallway" + }, + { + "appid": 3254010, + "normalized_name": "deathwoods" + }, + { + "appid": 3254020, + "normalized_name": "halloweenterror" + }, + { + "appid": 3254050, + "normalized_name": "the black ice" + }, + { + "appid": 3254130, + "normalized_name": "blood=bullets" + }, + { + "appid": 3254140, + "normalized_name": "forgekeepers" + }, + { + "appid": 3254150, + "normalized_name": "spyguys" + }, + { + "appid": 3254190, + "normalized_name": "runningwitch!" + }, + { + "appid": 3254200, + "normalized_name": "xerxes shadow" + }, + { + "appid": 3254210, + "normalized_name": "inside darkness" + }, + { + "appid": 3254250, + "normalized_name": "tigershark" + }, + { + "appid": 3254320, + "normalized_name": "world rally arcade" + }, + { + "appid": 3254380, + "normalized_name": "we grew up in war" + }, + { + "appid": 3254440, + "normalized_name": "rzr" + }, + { + "appid": 3254460, + "normalized_name": "ninja revenger" + }, + { + "appid": 3254470, + "normalized_name": "looks about right" + }, + { + "appid": 3254550, + "normalized_name": "crab crawl" + }, + { + "appid": 3254570, + "normalized_name": "eufloria classic" + }, + { + "appid": 3254620, + "normalized_name": "old magic grandtower" + }, + { + "appid": 3254630, + "normalized_name": "active 2048 body control" + }, + { + "appid": 3254670, + "normalized_name": "teddy the tractor" + }, + { + "appid": 3254730, + "normalized_name": "escape 51" + }, + { + "appid": 3254800, + "normalized_name": "princess or dragon" + }, + { + "appid": 3254820, + "normalized_name": "trainingtiles" + }, + { + "appid": 3254840, + "normalized_name": "crazy shipping" + }, + { + "appid": 3254900, + "normalized_name": "fairy rescue" + }, + { + "appid": 3254910, + "normalized_name": "looppip" + }, + { + "appid": 3254940, + "normalized_name": "my putrid ponies" + }, + { + "appid": 3254990, + "normalized_name": "corpse party ii darkness distortion" + }, + { + "appid": 3255000, + "normalized_name": "sexy memory puzzle gay pool" + }, + { + "appid": 3255100, + "normalized_name": "mom" + }, + { + "appid": 3255110, + "normalized_name": "grave seasons" + }, + { + "appid": 3255120, + "normalized_name": "miner hoversurf 2 multiplayer madness" + }, + { + "appid": 3255140, + "normalized_name": "corporeal" + }, + { + "appid": 3255170, + "normalized_name": "dream doctor" + }, + { + "appid": 3255210, + "normalized_name": "flowercorner plant watering to vibe to" + }, + { + "appid": 3255280, + "normalized_name": "這不是深坑" + }, + { + "appid": 3255310, + "normalized_name": "spellbound stumble" + }, + { + "appid": 3255320, + "normalized_name": "rebellion stryker" + }, + { + "appid": 3255330, + "normalized_name": "parasomnia no rem" + }, + { + "appid": 3255340, + "normalized_name": "art detective hidden through ancient china" + }, + { + "appid": 3255370, + "normalized_name": "fantasy island of elves" + }, + { + "appid": 3255380, + "normalized_name": "lunar collection" + }, + { + "appid": 3255440, + "normalized_name": "left to float" + }, + { + "appid": 3255480, + "normalized_name": "riverside of dice" + }, + { + "appid": 3255500, + "normalized_name": "ved 疗愈所" + }, + { + "appid": 3255510, + "normalized_name": "bolide" + }, + { + "appid": 3255540, + "normalized_name": "these darker tides" + }, + { + "appid": 3255570, + "normalized_name": "cookie survivors" + }, + { + "appid": 3255590, + "normalized_name": "grove keeper" + }, + { + "appid": 3255600, + "normalized_name": "poly fire" + }, + { + "appid": 3255610, + "normalized_name": "tower of silence" + }, + { + "appid": 3255650, + "normalized_name": "infinite zombie tide" + }, + { + "appid": 3255660, + "normalized_name": "requiem for a lost world" + }, + { + "appid": 3255670, + "normalized_name": "hemocrypt" + }, + { + "appid": 3255710, + "normalized_name": "edda physics 1" + }, + { + "appid": 3255810, + "normalized_name": "night of terror 26/11" + }, + { + "appid": 3255820, + "normalized_name": "angel roulette" + }, + { + "appid": 3255830, + "normalized_name": "milf selena and the dungeon of magic stones" + }, + { + "appid": 3255860, + "normalized_name": "hymer 2000" + }, + { + "appid": 3255870, + "normalized_name": "whisper of y'ryando" + }, + { + "appid": 3255920, + "normalized_name": "escape the quack" + }, + { + "appid": 3255950, + "normalized_name": "whispers of the past" + }, + { + "appid": 3255960, + "normalized_name": "hammet p.i." + }, + { + "appid": 3255970, + "normalized_name": "my day challenge" + }, + { + "appid": 3255990, + "normalized_name": "miner open chests" + }, + { + "appid": 3256000, + "normalized_name": "井底 与奇迹邂逅的井底之人" + }, + { + "appid": 3256010, + "normalized_name": "a snoot's adventure" + }, + { + "appid": 3256020, + "normalized_name": "electrician simulator vr" + }, + { + "appid": 3256030, + "normalized_name": "hideko" + }, + { + "appid": 3256050, + "normalized_name": "far from the darkness" + }, + { + "appid": 3256060, + "normalized_name": "droian" + }, + { + "appid": 3256080, + "normalized_name": "tribes of hell tower defense" + }, + { + "appid": 3256100, + "normalized_name": "ednoka" + }, + { + "appid": 3256130, + "normalized_name": "hidden monsters" + }, + { + "appid": 3256280, + "normalized_name": "黑神话:天命人" + }, + { + "appid": 3256290, + "normalized_name": "honey trap" + }, + { + "appid": 3256450, + "normalized_name": "cards of prophecy" + }, + { + "appid": 3256470, + "normalized_name": "manickologi" + }, + { + "appid": 3256530, + "normalized_name": "zurcam arena" + }, + { + "appid": 3256560, + "normalized_name": "royal romances fortunes and foes collector's" + }, + { + "appid": 3256610, + "normalized_name": "bubble balance bonanza" + }, + { + "appid": 3256630, + "normalized_name": "ballman" + }, + { + "appid": 3256730, + "normalized_name": "inkesis" + }, + { + "appid": 3256740, + "normalized_name": "ethereal envoy" + }, + { + "appid": 3256760, + "normalized_name": "teddys volcanic voyage" + }, + { + "appid": 3256780, + "normalized_name": "ghost hunter simulator" + }, + { + "appid": 3256790, + "normalized_name": "satelital" + }, + { + "appid": 3256840, + "normalized_name": "odyssey to the frozen legion" + }, + { + "appid": 3256850, + "normalized_name": "tic tactic" + }, + { + "appid": 3256870, + "normalized_name": "viravius shooter" + }, + { + "appid": 3256880, + "normalized_name": "bouncy escape" + }, + { + "appid": 3256890, + "normalized_name": "flexible frosty" + }, + { + "appid": 3256900, + "normalized_name": "sub0ptimal" + }, + { + "appid": 3256960, + "normalized_name": "syntheticell bioclicker" + }, + { + "appid": 3256970, + "normalized_name": "a conversation with a magical deer" + }, + { + "appid": 3256980, + "normalized_name": "guitar fretter" + }, + { + "appid": 3257000, + "normalized_name": "scp cb multiplayer reborn" + }, + { + "appid": 3257020, + "normalized_name": "alarion" + }, + { + "appid": 3257040, + "normalized_name": "crop crusaders" + }, + { + "appid": 3257100, + "normalized_name": "trials of belphegor" + }, + { + "appid": 3257150, + "normalized_name": "robogal gaga delta lady" + }, + { + "appid": 3257160, + "normalized_name": "the stare" + }, + { + "appid": 3257190, + "normalized_name": "for old time's sake" + }, + { + "appid": 3257210, + "normalized_name": "pulse rebound" + }, + { + "appid": 3257220, + "normalized_name": "tenement" + }, + { + "appid": 3257230, + "normalized_name": "cadente" + }, + { + "appid": 3257260, + "normalized_name": "aim trainer asylum" + }, + { + "appid": 3257270, + "normalized_name": "haunted by femboy" + }, + { + "appid": 3257310, + "normalized_name": "10s forever" + }, + { + "appid": 3257320, + "normalized_name": "square jump" + }, + { + "appid": 3257330, + "normalized_name": "frenzy force" + }, + { + "appid": 3257340, + "normalized_name": "lightcells" + }, + { + "appid": 3257350, + "normalized_name": "fourth time around" + }, + { + "appid": 3257360, + "normalized_name": "我靠双修拯救世界" + }, + { + "appid": 3257490, + "normalized_name": "无人" + }, + { + "appid": 3257560, + "normalized_name": "斗兽场 colosseum" + }, + { + "appid": 3257590, + "normalized_name": "猫咪漂移 cat drift" + }, + { + "appid": 3257620, + "normalized_name": "in the woods" + }, + { + "appid": 3257630, + "normalized_name": "foxyball" + }, + { + "appid": 3257650, + "normalized_name": "奇域空间(wonderland space)" + }, + { + "appid": 3257690, + "normalized_name": "traumtal" + }, + { + "appid": 3257720, + "normalized_name": "喵將摸城" + }, + { + "appid": 3257730, + "normalized_name": "skulllord 骸骷王" + }, + { + "appid": 3257760, + "normalized_name": "龙沉异世录" + }, + { + "appid": 3257770, + "normalized_name": "abyssopelagic" + }, + { + "appid": 3257780, + "normalized_name": "your story games with death" + }, + { + "appid": 3257870, + "normalized_name": "more life dead interface" + }, + { + "appid": 3257910, + "normalized_name": "a thousand shores" + }, + { + "appid": 3257970, + "normalized_name": "strike force damocles" + }, + { + "appid": 3257980, + "normalized_name": "turtle riders adventure begins" + }, + { + "appid": 3258010, + "normalized_name": "tesera" + }, + { + "appid": 3258090, + "normalized_name": "fantasy hearts" + }, + { + "appid": 3258250, + "normalized_name": "eighthwell" + }, + { + "appid": 3258290, + "normalized_name": "equinox homecoming" + }, + { + "appid": 3258350, + "normalized_name": "furball farm" + }, + { + "appid": 3258370, + "normalized_name": "apple ring" + }, + { + "appid": 3258470, + "normalized_name": "skybound only up vr" + }, + { + "appid": 3258480, + "normalized_name": "wild ones battle stadium" + }, + { + "appid": 3258500, + "normalized_name": "speedboat simulator" + }, + { + "appid": 3258560, + "normalized_name": "我不是魔王" + }, + { + "appid": 3258580, + "normalized_name": "don't wake the beast" + }, + { + "appid": 3258590, + "normalized_name": "void dungeon" + }, + { + "appid": 3258600, + "normalized_name": "the deepwoods" + }, + { + "appid": 3258670, + "normalized_name": "tomorrow's land" + }, + { + "appid": 3258710, + "normalized_name": "samago" + }, + { + "appid": 3258800, + "normalized_name": "niva" + }, + { + "appid": 3258880, + "normalized_name": "astation" + }, + { + "appid": 3258910, + "normalized_name": "tank blitz underdog division" + }, + { + "appid": 3258960, + "normalized_name": "monochrome painter" + }, + { + "appid": 3258980, + "normalized_name": "不周山·湖" + }, + { + "appid": 3259040, + "normalized_name": "office affairs executive decisions" + }, + { + "appid": 3259060, + "normalized_name": "seductive blackjack" + }, + { + "appid": 3259080, + "normalized_name": "the fat cat fest" + }, + { + "appid": 3259090, + "normalized_name": "desktop summoni maidy" + }, + { + "appid": 3259110, + "normalized_name": "remnants of lumira" + }, + { + "appid": 3259190, + "normalized_name": "dead dawg delivery co." + }, + { + "appid": 3259210, + "normalized_name": "ämäränth the last day of my adolescence" + }, + { + "appid": 3259230, + "normalized_name": "little blue" + }, + { + "appid": 3259240, + "normalized_name": "nuckelavee" + }, + { + "appid": 3259250, + "normalized_name": "kami paper scissors" + }, + { + "appid": 3259260, + "normalized_name": "omakase (お任せ)" + }, + { + "appid": 3259380, + "normalized_name": "bouncing to the top with quantum quacks" + }, + { + "appid": 3259390, + "normalized_name": "goat massacre" + }, + { + "appid": 3259400, + "normalized_name": "natural unintelligence zueirama 2" + }, + { + "appid": 3259450, + "normalized_name": "marble simulation" + }, + { + "appid": 3259470, + "normalized_name": "papa's pizzeria deluxe" + }, + { + "appid": 3259570, + "normalized_name": "bots n bloom" + }, + { + "appid": 3259650, + "normalized_name": "迷宫逃亡 maze escape" + }, + { + "appid": 3259660, + "normalized_name": "pick me up" + }, + { + "appid": 3259680, + "normalized_name": "sweet slave" + }, + { + "appid": 3259700, + "normalized_name": "tommy's journal" + }, + { + "appid": 3259710, + "normalized_name": "whole note" + }, + { + "appid": 3259720, + "normalized_name": "few seconds many deaths!" + }, + { + "appid": 3259730, + "normalized_name": "beautiful life show" + }, + { + "appid": 3259770, + "normalized_name": "space hotel ltd" + }, + { + "appid": 3259810, + "normalized_name": "voodoo pin" + }, + { + "appid": 3259910, + "normalized_name": "waros" + }, + { + "appid": 3259990, + "normalized_name": "dwarfism" + }, + { + "appid": 3260000, + "normalized_name": "spectral prison" + }, + { + "appid": 3260040, + "normalized_name": "cold abyss directors cut" + }, + { + "appid": 3260080, + "normalized_name": "valkyrie destruction" + }, + { + "appid": 3260090, + "normalized_name": "burger station" + }, + { + "appid": 3260110, + "normalized_name": "project wand land of leng" + }, + { + "appid": 3260140, + "normalized_name": "流亡黯道2" + }, + { + "appid": 3260190, + "normalized_name": "slide puzzle" + }, + { + "appid": 3260240, + "normalized_name": "drivers of the apocalypse" + }, + { + "appid": 3260310, + "normalized_name": "strange block 36" + }, + { + "appid": 3260490, + "normalized_name": "cowgirl trainer" + }, + { + "appid": 3260570, + "normalized_name": "uneven" + }, + { + "appid": 3260730, + "normalized_name": "son of a glitch" + }, + { + "appid": 3260750, + "normalized_name": "stage fright" + }, + { + "appid": 3260830, + "normalized_name": "a tiny wander" + }, + { + "appid": 3260840, + "normalized_name": "барабан майстер торгаш" + }, + { + "appid": 3260870, + "normalized_name": "sexy memory puzzle pool massage" + }, + { + "appid": 3260880, + "normalized_name": "cuckold sex episode 6" + }, + { + "appid": 3260900, + "normalized_name": "sex adventures naughty sisters episode 1" + }, + { + "appid": 3260910, + "normalized_name": "psychopathy assessment" + }, + { + "appid": 3260920, + "normalized_name": "sexy memory puzzle gay bdsm" + }, + { + "appid": 3260930, + "normalized_name": "异世界放置" + }, + { + "appid": 3260950, + "normalized_name": "old hero" + }, + { + "appid": 3260970, + "normalized_name": "corporeal" + }, + { + "appid": 3260990, + "normalized_name": "metrocity" + }, + { + "appid": 3261010, + "normalized_name": "中华一商:传承" + }, + { + "appid": 3261030, + "normalized_name": "teen zombie in your ca" + }, + { + "appid": 3261050, + "normalized_name": "hats and guns" + }, + { + "appid": 3261060, + "normalized_name": "twisted logic abbotsfield" + }, + { + "appid": 3261100, + "normalized_name": "word warp" + }, + { + "appid": 3261140, + "normalized_name": "decadent heir" + }, + { + "appid": 3261190, + "normalized_name": "besert bydra" + }, + { + "appid": 3261200, + "normalized_name": "destroyer burger" + }, + { + "appid": 3261250, + "normalized_name": "dodgeball blast" + }, + { + "appid": 3261280, + "normalized_name": "rwsd" + }, + { + "appid": 3261300, + "normalized_name": "card draw" + }, + { + "appid": 3261360, + "normalized_name": "part of my heart" + }, + { + "appid": 3261370, + "normalized_name": "pogo knight" + }, + { + "appid": 3261390, + "normalized_name": "death infection" + }, + { + "appid": 3261430, + "normalized_name": "na re échelle des êtres" + }, + { + "appid": 3261450, + "normalized_name": "xxx nightshift" + }, + { + "appid": 3261460, + "normalized_name": "whiskara" + }, + { + "appid": 3261500, + "normalized_name": "pamina vs slimes" + }, + { + "appid": 3261510, + "normalized_name": "the carnival killer" + }, + { + "appid": 3261520, + "normalized_name": "red moon kingdom" + }, + { + "appid": 3261600, + "normalized_name": "mythos mission sunken kingdom" + }, + { + "appid": 3261630, + "normalized_name": "hood rpg" + }, + { + "appid": 3261750, + "normalized_name": "oppressed" + }, + { + "appid": 3261780, + "normalized_name": "artemed" + }, + { + "appid": 3261800, + "normalized_name": "tossin tads!" + }, + { + "appid": 3261850, + "normalized_name": "formula rush" + }, + { + "appid": 3261860, + "normalized_name": "caige cum overflow" + }, + { + "appid": 3261870, + "normalized_name": "multiplayer ninjas" + }, + { + "appid": 3261880, + "normalized_name": "homecoming kitaku" + }, + { + "appid": 3261890, + "normalized_name": "toy battlegrounds shoot 'em up survival" + }, + { + "appid": 3262080, + "normalized_name": "word rave" + }, + { + "appid": 3262090, + "normalized_name": "ogora" + }, + { + "appid": 3262100, + "normalized_name": "mighty meow" + }, + { + "appid": 3262110, + "normalized_name": "pryizm multiplayer" + }, + { + "appid": 3262120, + "normalized_name": "mcbelle manor" + }, + { + "appid": 3262160, + "normalized_name": "fjorir" + }, + { + "appid": 3262190, + "normalized_name": "power gem fetcher" + }, + { + "appid": 3262200, + "normalized_name": "jetpackpush" + }, + { + "appid": 3262210, + "normalized_name": "jungle jim" + }, + { + "appid": 3262220, + "normalized_name": "red blue cell" + }, + { + "appid": 3262250, + "normalized_name": "simp leveling up on a dating" + }, + { + "appid": 3262260, + "normalized_name": "西州除妖记" + }, + { + "appid": 3262290, + "normalized_name": "elimora" + }, + { + "appid": 3262300, + "normalized_name": "星际争爸" + }, + { + "appid": 3262310, + "normalized_name": "look at me" + }, + { + "appid": 3262320, + "normalized_name": "修仙•母珠传 pig training legend" + }, + { + "appid": 3262350, + "normalized_name": "trouble in pacifica" + }, + { + "appid": 3262360, + "normalized_name": "kryva hora" + }, + { + "appid": 3262410, + "normalized_name": "neptune island" + }, + { + "appid": 3262420, + "normalized_name": "alchemy laboratory simulator" + }, + { + "appid": 3262440, + "normalized_name": "ladies i'm ready" + }, + { + "appid": 3262450, + "normalized_name": "trash buster simulator" + }, + { + "appid": 3262470, + "normalized_name": "虚妄之言 hollow life and insincere words" + }, + { + "appid": 3262480, + "normalized_name": "jump! the floor is..." + }, + { + "appid": 3262490, + "normalized_name": "polywar" + }, + { + "appid": 3262520, + "normalized_name": "victory of seeker" + }, + { + "appid": 3262530, + "normalized_name": "source code" + }, + { + "appid": 3262560, + "normalized_name": "weeks till winter" + }, + { + "appid": 3262570, + "normalized_name": "warranty man" + }, + { + "appid": 3262580, + "normalized_name": "酒馆21点 blackjack tavern" + }, + { + "appid": 3262600, + "normalized_name": "bubble frog dx" + }, + { + "appid": 3262610, + "normalized_name": "manacaster" + }, + { + "appid": 3262620, + "normalized_name": "剑武玄幻之旅" + }, + { + "appid": 3262650, + "normalized_name": "fatebound" + }, + { + "appid": 3262660, + "normalized_name": "fallen into the darkness" + }, + { + "appid": 3262670, + "normalized_name": "stray sketch" + }, + { + "appid": 3262720, + "normalized_name": "fantasy valley season 2" + }, + { + "appid": 3262760, + "normalized_name": "valley of stars" + }, + { + "appid": 3262770, + "normalized_name": "number way" + }, + { + "appid": 3262810, + "normalized_name": "mushroom hunter world" + }, + { + "appid": 3262850, + "normalized_name": "feudal glory" + }, + { + "appid": 3262860, + "normalized_name": "christmas tree decorator" + }, + { + "appid": 3262870, + "normalized_name": "bird simulator 24" + }, + { + "appid": 3262900, + "normalized_name": "little library" + }, + { + "appid": 3262910, + "normalized_name": "terrarium" + }, + { + "appid": 3262940, + "normalized_name": "classroom whispers" + }, + { + "appid": 3262950, + "normalized_name": "gunshop" + }, + { + "appid": 3262990, + "normalized_name": "vaca bullet" + }, + { + "appid": 3263000, + "normalized_name": "dmt simulator" + }, + { + "appid": 3263070, + "normalized_name": "forgotten depths" + }, + { + "appid": 3263090, + "normalized_name": "amelia's escape" + }, + { + "appid": 3263150, + "normalized_name": "anna's summer splash" + }, + { + "appid": 3263180, + "normalized_name": "lost explorer of pine grove" + }, + { + "appid": 3263210, + "normalized_name": "subway exorcist girl" + }, + { + "appid": 3263220, + "normalized_name": "forgotten valor" + }, + { + "appid": 3263230, + "normalized_name": "sayonara okaasan" + }, + { + "appid": 3263280, + "normalized_name": "the spire of mech zero" + }, + { + "appid": 3263310, + "normalized_name": "anders ii the cursed coast" + }, + { + "appid": 3263320, + "normalized_name": "carry the glass" + }, + { + "appid": 3263330, + "normalized_name": "landmine princess" + }, + { + "appid": 3263340, + "normalized_name": "fishing on my desktop" + }, + { + "appid": 3263370, + "normalized_name": "fart bubble dx" + }, + { + "appid": 3263380, + "normalized_name": "heaven's door" + }, + { + "appid": 3263400, + "normalized_name": "iris odyssey" + }, + { + "appid": 3263410, + "normalized_name": "我的废土日记" + }, + { + "appid": 3263440, + "normalized_name": "mythomania" + }, + { + "appid": 3263460, + "normalized_name": "过气网红 pass air web red" + }, + { + "appid": 3263480, + "normalized_name": "divine orders" + }, + { + "appid": 3263510, + "normalized_name": "naked boy" + }, + { + "appid": 3263540, + "normalized_name": "the beautiful game" + }, + { + "appid": 3263550, + "normalized_name": "the last game" + }, + { + "appid": 3263590, + "normalized_name": "mazzle halloween" + }, + { + "appid": 3263610, + "normalized_name": "无畏糜战" + }, + { + "appid": 3263640, + "normalized_name": "the gambit lost to time" + }, + { + "appid": 3263680, + "normalized_name": "inspiring ballads" + }, + { + "appid": 3263710, + "normalized_name": "sacrifices" + }, + { + "appid": 3263720, + "normalized_name": "sweet wedding" + }, + { + "appid": 3263850, + "normalized_name": "kingdom of cards and tiles" + }, + { + "appid": 3263880, + "normalized_name": "噬莱姆实验室" + }, + { + "appid": 3263940, + "normalized_name": "ideal" + }, + { + "appid": 3263950, + "normalized_name": "sex summer camp" + }, + { + "appid": 3263990, + "normalized_name": "floria" + }, + { + "appid": 3264020, + "normalized_name": "our ephemeral nights" + }, + { + "appid": 3264050, + "normalized_name": "in the facade we trust" + }, + { + "appid": 3264110, + "normalized_name": "auto_battler_rpg" + }, + { + "appid": 3264140, + "normalized_name": "zacisa idle defense!" + }, + { + "appid": 3264150, + "normalized_name": "paloma island" + }, + { + "appid": 3264170, + "normalized_name": "birdigo" + }, + { + "appid": 3264180, + "normalized_name": "eden salvation" + }, + { + "appid": 3264200, + "normalized_name": "aces over airfields" + }, + { + "appid": 3264250, + "normalized_name": "knights of the apocalypse" + }, + { + "appid": 3264300, + "normalized_name": "spark of joy" + }, + { + "appid": 3264310, + "normalized_name": "infernal chess" + }, + { + "appid": 3264320, + "normalized_name": "pole vault" + }, + { + "appid": 3264340, + "normalized_name": "rusty the rooster" + }, + { + "appid": 3264360, + "normalized_name": "monster ops 6" + }, + { + "appid": 3264370, + "normalized_name": "monster ops 7" + }, + { + "appid": 3264390, + "normalized_name": "corner bookshop" + }, + { + "appid": 3264400, + "normalized_name": "parryman" + }, + { + "appid": 3264420, + "normalized_name": "一厘米时光" + }, + { + "appid": 3264440, + "normalized_name": "hermes library" + }, + { + "appid": 3264460, + "normalized_name": "spooky time" + }, + { + "appid": 3264480, + "normalized_name": "forest of soul slave2" + }, + { + "appid": 3264490, + "normalized_name": "pastopia" + }, + { + "appid": 3264570, + "normalized_name": "last landlord" + }, + { + "appid": 3264590, + "normalized_name": "bang shoot." + }, + { + "appid": 3264600, + "normalized_name": "arcane whispers the last stand" + }, + { + "appid": 3264610, + "normalized_name": "redhawk simulator" + }, + { + "appid": 3264640, + "normalized_name": "backyard digger" + }, + { + "appid": 3264650, + "normalized_name": "guanabara warriors" + }, + { + "appid": 3264670, + "normalized_name": "office 29" + }, + { + "appid": 3264700, + "normalized_name": "goal poacher vr football header simulator" + }, + { + "appid": 3264710, + "normalized_name": "mishaka ubivaka" + }, + { + "appid": 3264720, + "normalized_name": "魔神封印:勇者集结" + }, + { + "appid": 3264750, + "normalized_name": "堕天の牢獄 / fallen cage" + }, + { + "appid": 3264820, + "normalized_name": "不可撤离区" + }, + { + "appid": 3264830, + "normalized_name": "mindlift" + }, + { + "appid": 3264850, + "normalized_name": "that time i got reincarnated as a perverted hand" + }, + { + "appid": 3264870, + "normalized_name": "unspoken echoes" + }, + { + "appid": 3264890, + "normalized_name": "goobi's dimension" + }, + { + "appid": 3264920, + "normalized_name": "amer fighting عامر المشاجرة" + }, + { + "appid": 3264940, + "normalized_name": "极限求生 survival x" + }, + { + "appid": 3264960, + "normalized_name": "cardburners" + }, + { + "appid": 3264980, + "normalized_name": "hell yeah simulator" + }, + { + "appid": 3265000, + "normalized_name": "death city" + }, + { + "appid": 3265020, + "normalized_name": "mental saga" + }, + { + "appid": 3265030, + "normalized_name": "path to serenity" + }, + { + "appid": 3265060, + "normalized_name": "东方异域见闻 ~ touhou dystopian" + }, + { + "appid": 3265070, + "normalized_name": "city tales medieval era" + }, + { + "appid": 3265100, + "normalized_name": "unshaken" + }, + { + "appid": 3265110, + "normalized_name": "keyboard crush" + }, + { + "appid": 3265130, + "normalized_name": "can't sleep!" + }, + { + "appid": 3265190, + "normalized_name": "odd job" + }, + { + "appid": 3265230, + "normalized_name": "cursed companions" + }, + { + "appid": 3265250, + "normalized_name": "mindseye" + }, + { + "appid": 3265280, + "normalized_name": "pic me!" + }, + { + "appid": 3265290, + "normalized_name": "swan song" + }, + { + "appid": 3265300, + "normalized_name": "sqube the beginning" + }, + { + "appid": 3265310, + "normalized_name": "isekai wet dream" + }, + { + "appid": 3265330, + "normalized_name": "tsunagari chess school" + }, + { + "appid": 3265370, + "normalized_name": "mosghost" + }, + { + "appid": 3265380, + "normalized_name": "island of challenge" + }, + { + "appid": 3265390, + "normalized_name": "meowventures inside the mirror realm" + }, + { + "appid": 3265410, + "normalized_name": "alchemist historical simulator" + }, + { + "appid": 3265480, + "normalized_name": "spooky workers" + }, + { + "appid": 3265490, + "normalized_name": "metrophobia" + }, + { + "appid": 3265510, + "normalized_name": "nocky el armadillo" + }, + { + "appid": 3265530, + "normalized_name": "ntr sexy girl with cold hearded" + }, + { + "appid": 3265620, + "normalized_name": "sgs battle of the bulge" + }, + { + "appid": 3265690, + "normalized_name": "jump & fall" + }, + { + "appid": 3265750, + "normalized_name": "saci the cursed hunt" + }, + { + "appid": 3265770, + "normalized_name": "evernoth a deep descent" + }, + { + "appid": 3265870, + "normalized_name": "cubic 2 3 4 player games" + }, + { + "appid": 3265880, + "normalized_name": "魔女黏糊笔记" + }, + { + "appid": 3265900, + "normalized_name": "electronics shop simulator" + }, + { + "appid": 3265940, + "normalized_name": "seaside cafe rush hour" + }, + { + "appid": 3265960, + "normalized_name": "adventures of a cat in space" + }, + { + "appid": 3266090, + "normalized_name": "it specialist simulator" + }, + { + "appid": 3266110, + "normalized_name": "black pine incident response" + }, + { + "appid": 3266120, + "normalized_name": "plush party" + }, + { + "appid": 3266180, + "normalized_name": "void phantom" + }, + { + "appid": 3266200, + "normalized_name": "cowacowa jinmenken" + }, + { + "appid": 3266210, + "normalized_name": "big 2 × dodgeball dojo" + }, + { + "appid": 3266220, + "normalized_name": "insanity" + }, + { + "appid": 3266240, + "normalized_name": "outlaw standoff" + }, + { + "appid": 3266290, + "normalized_name": "wallflower" + }, + { + "appid": 3266330, + "normalized_name": "the witch of the wake" + }, + { + "appid": 3266350, + "normalized_name": "back alley darts" + }, + { + "appid": 3266470, + "normalized_name": "futanari sex adventures episode 5" + }, + { + "appid": 3266580, + "normalized_name": "apes warfare" + }, + { + "appid": 3266590, + "normalized_name": "die for the economy!" + }, + { + "appid": 3266620, + "normalized_name": "no the baby" + }, + { + "appid": 3266660, + "normalized_name": "the forsaken anthology obsession" + }, + { + "appid": 3266730, + "normalized_name": "no alibi" + }, + { + "appid": 3266740, + "normalized_name": "pirates of justice" + }, + { + "appid": 3266800, + "normalized_name": "endseeker" + }, + { + "appid": 3266900, + "normalized_name": "the prophecy of horn" + }, + { + "appid": 3266950, + "normalized_name": "triangle cursed town" + }, + { + "appid": 3266960, + "normalized_name": "political party frenzy" + }, + { + "appid": 3267010, + "normalized_name": "annie's school trip" + }, + { + "appid": 3267050, + "normalized_name": "dead sale" + }, + { + "appid": 3267090, + "normalized_name": "canis watch" + }, + { + "appid": 3267180, + "normalized_name": "cosmic racer" + }, + { + "appid": 3267290, + "normalized_name": "sect" + }, + { + "appid": 3267350, + "normalized_name": "tiny shooters" + }, + { + "appid": 3267360, + "normalized_name": "liminal death" + }, + { + "appid": 3267370, + "normalized_name": "my friend mango" + }, + { + "appid": 3267430, + "normalized_name": "last remains" + }, + { + "appid": 3267440, + "normalized_name": "beanrise" + }, + { + "appid": 3267460, + "normalized_name": "avenge myself" + }, + { + "appid": 3267470, + "normalized_name": "purrfect frenzy" + }, + { + "appid": 3267500, + "normalized_name": "through the stars" + }, + { + "appid": 3267520, + "normalized_name": "match app!" + }, + { + "appid": 3267530, + "normalized_name": "bitrick's venture" + }, + { + "appid": 3267550, + "normalized_name": "the backrooms rescue expedition" + }, + { + "appid": 3267560, + "normalized_name": "hentai secrets animesex story" + }, + { + "appid": 3267570, + "normalized_name": "for the pine cone" + }, + { + "appid": 3267590, + "normalized_name": "無口の口無 ~ road to kaiwa mastery? ~" + }, + { + "appid": 3267620, + "normalized_name": "compulsory" + }, + { + "appid": 3267650, + "normalized_name": "taming yore dragon" + }, + { + "appid": 3267680, + "normalized_name": "hentai slash" + }, + { + "appid": 3267710, + "normalized_name": "hungry monster cooking game" + }, + { + "appid": 3267870, + "normalized_name": "transport simulator" + }, + { + "appid": 3267900, + "normalized_name": "click and conquer" + }, + { + "appid": 3267980, + "normalized_name": "she erotic treatment center" + }, + { + "appid": 3268000, + "normalized_name": "lostvail" + }, + { + "appid": 3268010, + "normalized_name": "floating star" + }, + { + "appid": 3268020, + "normalized_name": "the mystery of doomsday valley" + }, + { + "appid": 3268080, + "normalized_name": "quadrober simulator" + }, + { + "appid": 3268130, + "normalized_name": "endless shift" + }, + { + "appid": 3268180, + "normalized_name": "gorf the frog" + }, + { + "appid": 3268250, + "normalized_name": "waifu simulator beach" + }, + { + "appid": 3268260, + "normalized_name": "waifu simulator furry" + }, + { + "appid": 3268290, + "normalized_name": "chessfinity" + }, + { + "appid": 3268370, + "normalized_name": "paw rescuers" + }, + { + "appid": 3268440, + "normalized_name": "sim sports raid" + }, + { + "appid": 3268450, + "normalized_name": "gohome_pico" + }, + { + "appid": 3268460, + "normalized_name": "towerful guardians" + }, + { + "appid": 3268480, + "normalized_name": "henri and the hexagons" + }, + { + "appid": 3268510, + "normalized_name": "hotel 2025 anomalies" + }, + { + "appid": 3268520, + "normalized_name": "before exit gas station" + }, + { + "appid": 3268600, + "normalized_name": "milo's dream" + }, + { + "appid": 3268640, + "normalized_name": "apocalypse shop simulator" + }, + { + "appid": 3268680, + "normalized_name": "the unexpected (but not entirely surprising) demise of jacques du schnozzle" + }, + { + "appid": 3268690, + "normalized_name": "love revenge" + }, + { + "appid": 3268710, + "normalized_name": "my bloody weekend 2" + }, + { + "appid": 3268720, + "normalized_name": "out of memories" + }, + { + "appid": 3268730, + "normalized_name": "kaiju control force" + }, + { + "appid": 3268870, + "normalized_name": "mercator" + }, + { + "appid": 3268900, + "normalized_name": "light the beacon" + }, + { + "appid": 3268910, + "normalized_name": "dear brother beware of the witch" + }, + { + "appid": 3268960, + "normalized_name": "brawlers of the west" + }, + { + "appid": 3268970, + "normalized_name": "rise of the vanguard" + }, + { + "appid": 3269050, + "normalized_name": "the lost hunter" + }, + { + "appid": 3269080, + "normalized_name": "burntime" + }, + { + "appid": 3269120, + "normalized_name": "easy japanese hiragana" + }, + { + "appid": 3269150, + "normalized_name": "mommy's milk and cookies christmas sex puzzles" + }, + { + "appid": 3269180, + "normalized_name": "piñata go boom" + }, + { + "appid": 3269230, + "normalized_name": "earth vs mars" + }, + { + "appid": 3269300, + "normalized_name": "hidden cats spooky" + }, + { + "appid": 3269310, + "normalized_name": "echoes of elysium airship builder" + }, + { + "appid": 3269340, + "normalized_name": "horus desert survivor" + }, + { + "appid": 3269360, + "normalized_name": "tormented soul" + }, + { + "appid": 3269380, + "normalized_name": "roll'n with da punchez" + }, + { + "appid": 3269410, + "normalized_name": "stellargrift" + }, + { + "appid": 3269430, + "normalized_name": "melted time" + }, + { + "appid": 3269440, + "normalized_name": "craftia regency" + }, + { + "appid": 3269450, + "normalized_name": "alone in the house" + }, + { + "appid": 3269460, + "normalized_name": "tide—1932—" + }, + { + "appid": 3269510, + "normalized_name": "system death" + }, + { + "appid": 3269600, + "normalized_name": "flowers and favours florist simulator" + }, + { + "appid": 3269610, + "normalized_name": "how much items food" + }, + { + "appid": 3269620, + "normalized_name": "archaeology frozen knights" + }, + { + "appid": 3269630, + "normalized_name": "archaeology frozen village" + }, + { + "appid": 3269650, + "normalized_name": "isle of the night pirate survivors" + }, + { + "appid": 3269660, + "normalized_name": "starmaker story" + }, + { + "appid": 3269670, + "normalized_name": "the pirate's casino" + }, + { + "appid": 3269680, + "normalized_name": "a very simple puzzle..." + }, + { + "appid": 3269710, + "normalized_name": "rpg1 rancid polluted globe radioactive plastic wasteland" + }, + { + "appid": 3269810, + "normalized_name": "knockoff" + }, + { + "appid": 3269830, + "normalized_name": "paper towel royale" + }, + { + "appid": 3269850, + "normalized_name": "whispers of the dead" + }, + { + "appid": 3269860, + "normalized_name": "locomotive 115" + }, + { + "appid": 3269960, + "normalized_name": "鼓手余命十日谭" + }, + { + "appid": 3270020, + "normalized_name": "dungeon desire the sleepless city of runeheim" + }, + { + "appid": 3270050, + "normalized_name": "shifting rooms" + }, + { + "appid": 3270090, + "normalized_name": "forever epic story a journey of life [music ep]" + }, + { + "appid": 3270110, + "normalized_name": "我所知的唯一魔法——愚者与爱" + }, + { + "appid": 3270210, + "normalized_name": "abolish" + }, + { + "appid": 3270220, + "normalized_name": "benchmark" + }, + { + "appid": 3270230, + "normalized_name": "manual" + }, + { + "appid": 3270240, + "normalized_name": "phantom" + }, + { + "appid": 3270270, + "normalized_name": "haunted halloween" + }, + { + "appid": 3270320, + "normalized_name": "zero line" + }, + { + "appid": 3270330, + "normalized_name": "the rose of cravenmor" + }, + { + "appid": 3270410, + "normalized_name": "rocket simulator" + }, + { + "appid": 3270440, + "normalized_name": "lewd family" + }, + { + "appid": 3270510, + "normalized_name": "rescue q" + }, + { + "appid": 3270520, + "normalized_name": "limbo" + }, + { + "appid": 3270550, + "normalized_name": "fcwclf" + }, + { + "appid": 3270560, + "normalized_name": "boo boo booster" + }, + { + "appid": 3270580, + "normalized_name": "contract of zerg hunter" + }, + { + "appid": 3270600, + "normalized_name": "drifters & demons" + }, + { + "appid": 3270620, + "normalized_name": "cats vs cthulhu" + }, + { + "appid": 3270660, + "normalized_name": "sealand survivor" + }, + { + "appid": 3270680, + "normalized_name": "kota`s new journey" + }, + { + "appid": 3270700, + "normalized_name": "熔炉魔神" + }, + { + "appid": 3270770, + "normalized_name": "the isle of no return" + }, + { + "appid": 3270780, + "normalized_name": "打飞机" + }, + { + "appid": 3270800, + "normalized_name": "happy chase" + }, + { + "appid": 3270810, + "normalized_name": "beyond the ordinary" + }, + { + "appid": 3270820, + "normalized_name": "skyeisle cube" + }, + { + "appid": 3270850, + "normalized_name": "keep your eyes open" + }, + { + "appid": 3270900, + "normalized_name": "into the zone – arcade escape" + }, + { + "appid": 3270920, + "normalized_name": "のりきれ!雛ちゃんスタンプ" + }, + { + "appid": 3270950, + "normalized_name": "echoes of argora" + }, + { + "appid": 3270970, + "normalized_name": "in search of the golden crops" + }, + { + "appid": 3270980, + "normalized_name": "the concept" + }, + { + "appid": 3271020, + "normalized_name": "breecell" + }, + { + "appid": 3271070, + "normalized_name": "shrine of haunts" + }, + { + "appid": 3271080, + "normalized_name": "mister antonio" + }, + { + "appid": 3271090, + "normalized_name": "house of dred" + }, + { + "appid": 3271100, + "normalized_name": "making waves" + }, + { + "appid": 3271120, + "normalized_name": "dragon khan" + }, + { + "appid": 3271250, + "normalized_name": "assault mayhem" + }, + { + "appid": 3271260, + "normalized_name": "dodge it! 3" + }, + { + "appid": 3271280, + "normalized_name": "shroom and gloom" + }, + { + "appid": 3271310, + "normalized_name": "gordy" + }, + { + "appid": 3271320, + "normalized_name": "baptisterio" + }, + { + "appid": 3271330, + "normalized_name": "via" + }, + { + "appid": 3271340, + "normalized_name": "dark reflection" + }, + { + "appid": 3271360, + "normalized_name": "守卫墙角 into the corner" + }, + { + "appid": 3271400, + "normalized_name": "marsbound" + }, + { + "appid": 3271430, + "normalized_name": "portrait of a cornish woman" + }, + { + "appid": 3271470, + "normalized_name": "zoey nightclub secrets" + }, + { + "appid": 3271490, + "normalized_name": "gates of olympus" + }, + { + "appid": 3271530, + "normalized_name": "pop the corn kernel clicker" + }, + { + "appid": 3271540, + "normalized_name": "sexy clicker" + }, + { + "appid": 3271610, + "normalized_name": "snake classic 3d reborn" + }, + { + "appid": 3271720, + "normalized_name": "obliterator x" + }, + { + "appid": 3271790, + "normalized_name": "marbles ricochet" + }, + { + "appid": 3271820, + "normalized_name": "squink" + }, + { + "appid": 3271860, + "normalized_name": "roid chimp" + }, + { + "appid": 3271870, + "normalized_name": "biohazard siberia" + }, + { + "appid": 3271880, + "normalized_name": "кано. каменные острова." + }, + { + "appid": 3271960, + "normalized_name": "crystal automaton" + }, + { + "appid": 3272000, + "normalized_name": "trinkets!" + }, + { + "appid": 3272020, + "normalized_name": "rust runners" + }, + { + "appid": 3272040, + "normalized_name": "kiln people revelations" + }, + { + "appid": 3272050, + "normalized_name": "ball game" + }, + { + "appid": 3272110, + "normalized_name": "mystic rest stop" + }, + { + "appid": 3272140, + "normalized_name": "diddy" + }, + { + "appid": 3272150, + "normalized_name": "climb don't dig" + }, + { + "appid": 3272170, + "normalized_name": "face of another" + }, + { + "appid": 3272180, + "normalized_name": "quantum joe" + }, + { + "appid": 3272200, + "normalized_name": "teddy war ii" + }, + { + "appid": 3272300, + "normalized_name": "yasuke simulator" + }, + { + "appid": 3272320, + "normalized_name": "one possible future" + }, + { + "appid": 3272330, + "normalized_name": "country hopper" + }, + { + "appid": 3272360, + "normalized_name": "decade" + }, + { + "appid": 3272390, + "normalized_name": "gaucho subway escape" + }, + { + "appid": 3272450, + "normalized_name": "swingularity" + }, + { + "appid": 3272510, + "normalized_name": "eyes of rain" + }, + { + "appid": 3272600, + "normalized_name": "auto jump" + }, + { + "appid": 3272610, + "normalized_name": "under the city lights" + }, + { + "appid": 3272660, + "normalized_name": "kamata" + }, + { + "appid": 3272680, + "normalized_name": "i'm drone" + }, + { + "appid": 3272690, + "normalized_name": "seasonala cemetery" + }, + { + "appid": 3272710, + "normalized_name": "朱鴉~akegarasu~ journey to the underworld" + }, + { + "appid": 3272730, + "normalized_name": "whispers of fear" + }, + { + "appid": 3272810, + "normalized_name": "ethernity" + }, + { + "appid": 3272820, + "normalized_name": "deazon 本の中の牢獄 eternaldungeon2" + }, + { + "appid": 3272830, + "normalized_name": "choko loco 2" + }, + { + "appid": 3272860, + "normalized_name": "ducklaserduck" + }, + { + "appid": 3272870, + "normalized_name": "ゲーマー女子と引きこもり me and gamer girl" + }, + { + "appid": 3272890, + "normalized_name": "江湖宝鉴" + }, + { + "appid": 3272930, + "normalized_name": "a few days with amber" + }, + { + "appid": 3272960, + "normalized_name": "dead lamb walking" + }, + { + "appid": 3272970, + "normalized_name": "mars clicker" + }, + { + "appid": 3272980, + "normalized_name": "siren's well" + }, + { + "appid": 3272990, + "normalized_name": "saibi" + }, + { + "appid": 3273020, + "normalized_name": "cone crushers autocross" + }, + { + "appid": 3273040, + "normalized_name": "venus or die" + }, + { + "appid": 3273060, + "normalized_name": "bound gulag getaway" + }, + { + "appid": 3273070, + "normalized_name": "re sss" + }, + { + "appid": 3273100, + "normalized_name": "hunter of the ming dynasty" + }, + { + "appid": 3273120, + "normalized_name": "lawnmower game racing 2 drunken" + }, + { + "appid": 3273130, + "normalized_name": "roots of harmony" + }, + { + "appid": 3273230, + "normalized_name": "thirsty bird" + }, + { + "appid": 3273260, + "normalized_name": "lost host" + }, + { + "appid": 3273290, + "normalized_name": "neptunia riders vs dogoos" + }, + { + "appid": 3273370, + "normalized_name": "a vampyre story a bat's tale" + }, + { + "appid": 3273380, + "normalized_name": "shadow of ancients demo" + }, + { + "appid": 3273420, + "normalized_name": "fpv battleground" + }, + { + "appid": 3273530, + "normalized_name": "1998 the toll keeper story" + }, + { + "appid": 3273620, + "normalized_name": "hell hold'em" + }, + { + "appid": 3273630, + "normalized_name": "key 2" + }, + { + "appid": 3273640, + "normalized_name": "hot strip poker 2" + }, + { + "appid": 3273650, + "normalized_name": "motorbike evolution 2025" + }, + { + "appid": 3273660, + "normalized_name": "formula evolution 2025" + }, + { + "appid": 3273670, + "normalized_name": "sidecar evolution 2025" + }, + { + "appid": 3273680, + "normalized_name": "supercar evolution 2025" + }, + { + "appid": 3273690, + "normalized_name": "hypercar evolution 2025" + }, + { + "appid": 3273700, + "normalized_name": "rally evolution 2025" + }, + { + "appid": 3273710, + "normalized_name": "kart evolution 2025" + }, + { + "appid": 3273720, + "normalized_name": "motocross evolution 2025" + }, + { + "appid": 3273730, + "normalized_name": "shut the box" + }, + { + "appid": 3273740, + "normalized_name": "abyss chaser" + }, + { + "appid": 3273750, + "normalized_name": "chessplus" + }, + { + "appid": 3273760, + "normalized_name": "あきのかえりみち<完全版>" + }, + { + "appid": 3273850, + "normalized_name": "spooky dwellers 3" + }, + { + "appid": 3273860, + "normalized_name": "maw" + }, + { + "appid": 3273880, + "normalized_name": "under a desert sun seekers of the cursed vessel" + }, + { + "appid": 3273900, + "normalized_name": "reindeer racing" + }, + { + "appid": 3273910, + "normalized_name": "scary magic zombie" + }, + { + "appid": 3273920, + "normalized_name": "letters of art" + }, + { + "appid": 3273940, + "normalized_name": "the legend of tomoko" + }, + { + "appid": 3273950, + "normalized_name": "limbonauts" + }, + { + "appid": 3273960, + "normalized_name": "the dark crown genesis" + }, + { + "appid": 3273980, + "normalized_name": "mamorukun recurse!" + }, + { + "appid": 3273990, + "normalized_name": "drizzlepath picturae" + }, + { + "appid": 3274000, + "normalized_name": "魔法少女クリティカル deluxe" + }, + { + "appid": 3274010, + "normalized_name": "zoomageddon" + }, + { + "appid": 3274040, + "normalized_name": "doors more doors" + }, + { + "appid": 3274060, + "normalized_name": "liquor and wine shop simulator store simulator" + }, + { + "appid": 3274090, + "normalized_name": "unbound eternity" + }, + { + "appid": 3274110, + "normalized_name": "jet fighters with friends 3" + }, + { + "appid": 3274140, + "normalized_name": "blitz society" + }, + { + "appid": 3274150, + "normalized_name": "50 doors" + }, + { + "appid": 3274220, + "normalized_name": "when push comes to shove" + }, + { + "appid": 3274300, + "normalized_name": "awaria" + }, + { + "appid": 3274350, + "normalized_name": "save me my hero" + }, + { + "appid": 3274380, + "normalized_name": "drift halls" + }, + { + "appid": 3274390, + "normalized_name": "bambas!" + }, + { + "appid": 3274470, + "normalized_name": "sweet tooth" + }, + { + "appid": 3274480, + "normalized_name": "multiplayer mummies" + }, + { + "appid": 3274530, + "normalized_name": "epitome" + }, + { + "appid": 3274560, + "normalized_name": "night hazard" + }, + { + "appid": 3274580, + "normalized_name": "anno 117 pax romana" + }, + { + "appid": 3274770, + "normalized_name": "the gleaming grill" + }, + { + "appid": 3274780, + "normalized_name": "bike park simulator bmx dirt jump & mtb" + }, + { + "appid": 3274790, + "normalized_name": "ultra cop" + }, + { + "appid": 3274800, + "normalized_name": "apocalypse island" + }, + { + "appid": 3274830, + "normalized_name": "barback" + }, + { + "appid": 3274880, + "normalized_name": "rollick n' roll" + }, + { + "appid": 3274940, + "normalized_name": "liar's dice" + }, + { + "appid": 3274970, + "normalized_name": "bug hunters" + }, + { + "appid": 3275000, + "normalized_name": "silent howl" + }, + { + "appid": 3275010, + "normalized_name": "rogue loops" + }, + { + "appid": 3275040, + "normalized_name": "autonomous odyssey" + }, + { + "appid": 3275060, + "normalized_name": "blackstar ranger" + }, + { + "appid": 3275120, + "normalized_name": "末世旅人" + }, + { + "appid": 3275130, + "normalized_name": "knight of noshland" + }, + { + "appid": 3275200, + "normalized_name": "失欲" + }, + { + "appid": 3275210, + "normalized_name": "pionero capital" + }, + { + "appid": 3275220, + "normalized_name": "robocoil" + }, + { + "appid": 3275230, + "normalized_name": "maze estate escape" + }, + { + "appid": 3275270, + "normalized_name": "shape of dreams prologue" + }, + { + "appid": 3275280, + "normalized_name": "storm the swan and the power of friendship and imagination" + }, + { + "appid": 3275410, + "normalized_name": "puppet project" + }, + { + "appid": 3275440, + "normalized_name": "pluralys" + }, + { + "appid": 3275460, + "normalized_name": "five mysterious murders part 2" + }, + { + "appid": 3275470, + "normalized_name": "じゃんつの janken horn" + }, + { + "appid": 3275480, + "normalized_name": "green heights" + }, + { + "appid": 3275600, + "normalized_name": "rescue team ancient guardian" + }, + { + "appid": 3275610, + "normalized_name": "nwo anarchy collapsed" + }, + { + "appid": 3275620, + "normalized_name": "sweet warrior" + }, + { + "appid": 3275650, + "normalized_name": "magtiles" + }, + { + "appid": 3275720, + "normalized_name": "drinking song" + }, + { + "appid": 3275750, + "normalized_name": "last drop" + }, + { + "appid": 3275770, + "normalized_name": "koshari defense" + }, + { + "appid": 3275870, + "normalized_name": "coffee break" + }, + { + "appid": 3275880, + "normalized_name": "chronoquartz" + }, + { + "appid": 3275890, + "normalized_name": "battle bloodlines" + }, + { + "appid": 3275910, + "normalized_name": "ninja wars battle simulator" + }, + { + "appid": 3275930, + "normalized_name": "haxrail" + }, + { + "appid": 3276050, + "normalized_name": "spacecraft" + }, + { + "appid": 3276080, + "normalized_name": "iron cauldron guess the colorblock" + }, + { + "appid": 3276180, + "normalized_name": "axolotl shaman" + }, + { + "appid": 3276190, + "normalized_name": "война миров сибирь" + }, + { + "appid": 3276220, + "normalized_name": "picomix by nusan" + }, + { + "appid": 3276230, + "normalized_name": "adit 11" + }, + { + "appid": 3276260, + "normalized_name": "project badlight" + }, + { + "appid": 3276310, + "normalized_name": "star odyssey" + }, + { + "appid": 3276410, + "normalized_name": "seals of madness" + }, + { + "appid": 3276440, + "normalized_name": "jumpkin" + }, + { + "appid": 3276450, + "normalized_name": "colmeia inserção" + }, + { + "appid": 3276510, + "normalized_name": "sylvester and the entity of dust" + }, + { + "appid": 3276530, + "normalized_name": "clean stack" + }, + { + "appid": 3276540, + "normalized_name": "luddite" + }, + { + "appid": 3276560, + "normalized_name": "welcome to the dungeon" + }, + { + "appid": 3276600, + "normalized_name": "hirai nya" + }, + { + "appid": 3276670, + "normalized_name": "the wandering trader" + }, + { + "appid": 3276680, + "normalized_name": "초요소녀 리리나 완전판(choyo girl lilina edition)" + }, + { + "appid": 3276730, + "normalized_name": "no rest for the witches" + }, + { + "appid": 3276800, + "normalized_name": "snowboard legends" + }, + { + "appid": 3276840, + "normalized_name": "myrmica" + }, + { + "appid": 3276900, + "normalized_name": "super block boy and friends" + }, + { + "appid": 3276910, + "normalized_name": "eye the journey" + }, + { + "appid": 3276920, + "normalized_name": "mars exodus" + }, + { + "appid": 3276950, + "normalized_name": "cardcaster" + }, + { + "appid": 3276960, + "normalized_name": "sorcery slam" + }, + { + "appid": 3276970, + "normalized_name": "shapes of war" + }, + { + "appid": 3276980, + "normalized_name": "night shift warehouse" + }, + { + "appid": 3277010, + "normalized_name": "tin lord" + }, + { + "appid": 3277040, + "normalized_name": "the queen of phalli" + }, + { + "appid": 3277060, + "normalized_name": "the story of" + }, + { + "appid": 3277070, + "normalized_name": "hidden cats halloween" + }, + { + "appid": 3277100, + "normalized_name": "varevo" + }, + { + "appid": 3277140, + "normalized_name": "pirates never die" + }, + { + "appid": 3277150, + "normalized_name": "shinobi unleashed" + }, + { + "appid": 3277170, + "normalized_name": "chubby story" + }, + { + "appid": 3277200, + "normalized_name": "oh no orcs!" + }, + { + "appid": 3277230, + "normalized_name": "sandy tetra!!" + }, + { + "appid": 3277240, + "normalized_name": "farm invader" + }, + { + "appid": 3277250, + "normalized_name": "catch it" + }, + { + "appid": 3277260, + "normalized_name": "the thirteen floors" + }, + { + "appid": 3277270, + "normalized_name": "quarter lie" + }, + { + "appid": 3277300, + "normalized_name": "elestrals clash!" + }, + { + "appid": 3277320, + "normalized_name": "silk soar" + }, + { + "appid": 3277350, + "normalized_name": "光域" + }, + { + "appid": 3277370, + "normalized_name": "paper puzzle ⅱ" + }, + { + "appid": 3277390, + "normalized_name": "objective f.e.a.s.t" + }, + { + "appid": 3277400, + "normalized_name": "aurora" + }, + { + "appid": 3277410, + "normalized_name": "patient 001" + }, + { + "appid": 3277450, + "normalized_name": "kozomo the smoldering ember" + }, + { + "appid": 3277480, + "normalized_name": "one night ~young bride for one night~" + }, + { + "appid": 3277500, + "normalized_name": "desktop blocks" + }, + { + "appid": 3277510, + "normalized_name": "hook the boss" + }, + { + "appid": 3277520, + "normalized_name": "berserker's domain" + }, + { + "appid": 3277530, + "normalized_name": "aeonic" + }, + { + "appid": 3277560, + "normalized_name": "succubus challenge" + }, + { + "appid": 3277610, + "normalized_name": "ahon" + }, + { + "appid": 3277630, + "normalized_name": "精灵幸存者 elf survivor" + }, + { + "appid": 3277640, + "normalized_name": "bug.splash td debugged" + }, + { + "appid": 3277650, + "normalized_name": "fiendrise" + }, + { + "appid": 3277660, + "normalized_name": "the time traveling toxicologist" + }, + { + "appid": 3277670, + "normalized_name": "cozy dash" + }, + { + "appid": 3277750, + "normalized_name": "hentai puzzle tropical seduction" + }, + { + "appid": 3277840, + "normalized_name": "chaperon" + }, + { + "appid": 3277860, + "normalized_name": "solacinity" + }, + { + "appid": 3277880, + "normalized_name": "warped universe" + }, + { + "appid": 3277920, + "normalized_name": "slender a crooked manifestation" + }, + { + "appid": 3277980, + "normalized_name": "campaign clash the u.s. history card game" + }, + { + "appid": 3277990, + "normalized_name": "mobs 'n monsters" + }, + { + "appid": 3278000, + "normalized_name": "prophecrawl" + }, + { + "appid": 3278100, + "normalized_name": "diamond word" + }, + { + "appid": 3278120, + "normalized_name": "girls kitchen dinner" + }, + { + "appid": 3278160, + "normalized_name": "fatal delivery" + }, + { + "appid": 3278170, + "normalized_name": "pirate survivors" + }, + { + "appid": 3278190, + "normalized_name": "project amica" + }, + { + "appid": 3278230, + "normalized_name": "gravity block 2" + }, + { + "appid": 3278260, + "normalized_name": "lucipurr" + }, + { + "appid": 3278290, + "normalized_name": "feed the pit" + }, + { + "appid": 3278310, + "normalized_name": "lanesplit" + }, + { + "appid": 3278330, + "normalized_name": "forever time" + }, + { + "appid": 3278350, + "normalized_name": "darling darling... dead?" + }, + { + "appid": 3278390, + "normalized_name": "gravenfall veil of darkness" + }, + { + "appid": 3278420, + "normalized_name": "robot wars" + }, + { + "appid": 3278460, + "normalized_name": "catch a fish" + }, + { + "appid": 3278480, + "normalized_name": "上个p班" + }, + { + "appid": 3278500, + "normalized_name": "numina construct" + }, + { + "appid": 3278560, + "normalized_name": "himei dam" + }, + { + "appid": 3278590, + "normalized_name": "hexed time" + }, + { + "appid": 3278620, + "normalized_name": "nothing is known the innocents" + }, + { + "appid": 3278680, + "normalized_name": "deskquarium" + }, + { + "appid": 3278690, + "normalized_name": "gravy the gravedigger" + }, + { + "appid": 3278720, + "normalized_name": "mutual assured destruction simulator" + }, + { + "appid": 3278730, + "normalized_name": "call for heroes pompolic wars" + }, + { + "appid": 3278740, + "normalized_name": "neuro" + }, + { + "appid": 3278760, + "normalized_name": "the happyhills homicide" + }, + { + "appid": 3278860, + "normalized_name": "lucky realtor" + }, + { + "appid": 3278870, + "normalized_name": "just another endless runner" + }, + { + "appid": 3278880, + "normalized_name": "バグだらけの城" + }, + { + "appid": 3278900, + "normalized_name": "roguemath" + }, + { + "appid": 3278950, + "normalized_name": "易传说" + }, + { + "appid": 3278980, + "normalized_name": "budget guardian health realm" + }, + { + "appid": 3279000, + "normalized_name": "byteworld" + }, + { + "appid": 3279030, + "normalized_name": "blue hill wendigo" + }, + { + "appid": 3279120, + "normalized_name": "arisen force life devotee" + }, + { + "appid": 3279140, + "normalized_name": "swimsuit girl battle to avoid" + }, + { + "appid": 3279150, + "normalized_name": "rusty coffin" + }, + { + "appid": 3279160, + "normalized_name": "only up lizards must fall" + }, + { + "appid": 3279170, + "normalized_name": "moon carrier" + }, + { + "appid": 3279240, + "normalized_name": "gloop" + }, + { + "appid": 3279270, + "normalized_name": "regolith viozic suns" + }, + { + "appid": 3279300, + "normalized_name": "doodle hunt halloween rush" + }, + { + "appid": 3279330, + "normalized_name": "home wars battlefield" + }, + { + "appid": 3279340, + "normalized_name": "מלך השווארמה" + }, + { + "appid": 3279360, + "normalized_name": "code trainer" + }, + { + "appid": 3279410, + "normalized_name": "the case of the worst day ever" + }, + { + "appid": 3279420, + "normalized_name": "alien ship console" + }, + { + "appid": 3279440, + "normalized_name": "drone sector" + }, + { + "appid": 3279450, + "normalized_name": "tezcatlipoca" + }, + { + "appid": 3279480, + "normalized_name": "chess 'n' blocks" + }, + { + "appid": 3279530, + "normalized_name": "nina ntmp" + }, + { + "appid": 3279580, + "normalized_name": "lock. stock. and hungry pumpkins." + }, + { + "appid": 3279640, + "normalized_name": "healer simulator rpg" + }, + { + "appid": 3279740, + "normalized_name": "lost temple treasure" + }, + { + "appid": 3279750, + "normalized_name": "puzznyanquest" + }, + { + "appid": 3279760, + "normalized_name": "the time forgotten" + }, + { + "appid": 3279780, + "normalized_name": "horizon walker" + }, + { + "appid": 3279870, + "normalized_name": "eco ronin" + }, + { + "appid": 3279900, + "normalized_name": "fábulas porteñas" + }, + { + "appid": 3279980, + "normalized_name": "dicey tales" + }, + { + "appid": 3280010, + "normalized_name": "vile exhumed" + }, + { + "appid": 3280020, + "normalized_name": "eclipse special forces" + }, + { + "appid": 3280070, + "normalized_name": "thelostwoods / 迷いの森" + }, + { + "appid": 3280080, + "normalized_name": "malware tycoon" + }, + { + "appid": 3280100, + "normalized_name": "zoo time" + }, + { + "appid": 3280110, + "normalized_name": "ghost traveler adventures in edo" + }, + { + "appid": 3280210, + "normalized_name": "soul trader" + }, + { + "appid": 3280340, + "normalized_name": "ohjata" + }, + { + "appid": 3280370, + "normalized_name": "arcade combat" + }, + { + "appid": 3280380, + "normalized_name": "hidden pinball" + }, + { + "appid": 3280410, + "normalized_name": "vr gwangju tour with omaena" + }, + { + "appid": 3280430, + "normalized_name": "tophet" + }, + { + "appid": 3280550, + "normalized_name": "hashie" + }, + { + "appid": 3280560, + "normalized_name": "happyhazard" + }, + { + "appid": 3280590, + "normalized_name": "slammer" + }, + { + "appid": 3280650, + "normalized_name": "paper wars" + }, + { + "appid": 3280660, + "normalized_name": "grayton the detective" + }, + { + "appid": 3280680, + "normalized_name": "flower for a farewell" + }, + { + "appid": 3280750, + "normalized_name": "hashi infinite" + }, + { + "appid": 3280800, + "normalized_name": "recurring dream" + }, + { + "appid": 3280810, + "normalized_name": "the liquid jet" + }, + { + "appid": 3280820, + "normalized_name": "iron fuse" + }, + { + "appid": 3280830, + "normalized_name": "mr trials" + }, + { + "appid": 3280860, + "normalized_name": "duel to the holes" + }, + { + "appid": 3280980, + "normalized_name": "mimic alert" + }, + { + "appid": 3280990, + "normalized_name": "stellar rhythm" + }, + { + "appid": 3281050, + "normalized_name": "operius dx" + }, + { + "appid": 3281090, + "normalized_name": "human fast food" + }, + { + "appid": 3281100, + "normalized_name": "jumper jon" + }, + { + "appid": 3281130, + "normalized_name": "world of outlaws dirt racing 24 gold" + }, + { + "appid": 3281140, + "normalized_name": "card hero" + }, + { + "appid": 3281190, + "normalized_name": "they yearn for the mines" + }, + { + "appid": 3281200, + "normalized_name": "jezzball classic deluxe" + }, + { + "appid": 3281210, + "normalized_name": "bath house simulator" + }, + { + "appid": 3281230, + "normalized_name": "tales of the uncanny" + }, + { + "appid": 3281250, + "normalized_name": "öga" + }, + { + "appid": 3281300, + "normalized_name": "ダンジョン崩し" + }, + { + "appid": 3281330, + "normalized_name": "a simple ball game" + }, + { + "appid": 3281380, + "normalized_name": "nelumbra" + }, + { + "appid": 3281390, + "normalized_name": "night of the iron dead" + }, + { + "appid": 3281400, + "normalized_name": "bodypanic" + }, + { + "appid": 3281420, + "normalized_name": "paradise" + }, + { + "appid": 3281460, + "normalized_name": "carry on" + }, + { + "appid": 3281490, + "normalized_name": "farming through the end" + }, + { + "appid": 3281500, + "normalized_name": "avalon rise of the templars" + }, + { + "appid": 3281550, + "normalized_name": "chalice of highland" + }, + { + "appid": 3281570, + "normalized_name": "disc out!" + }, + { + "appid": 3281600, + "normalized_name": "eyes on yuki" + }, + { + "appid": 3281620, + "normalized_name": "astropods starside glaze" + }, + { + "appid": 3281630, + "normalized_name": "junkyard empire simulator" + }, + { + "appid": 3281810, + "normalized_name": "hollowforge" + }, + { + "appid": 3281840, + "normalized_name": "spooky maze" + }, + { + "appid": 3281940, + "normalized_name": "rip through time" + }, + { + "appid": 3281960, + "normalized_name": "the trio" + }, + { + "appid": 3281970, + "normalized_name": "deep snow delivery" + }, + { + "appid": 3281980, + "normalized_name": "demigoddess!" + }, + { + "appid": 3282040, + "normalized_name": "stray savior" + }, + { + "appid": 3282050, + "normalized_name": "there's always a madman bring the thunder" + }, + { + "appid": 3282060, + "normalized_name": "cyberseas" + }, + { + "appid": 3282100, + "normalized_name": "ruins of araethia" + }, + { + "appid": 3282110, + "normalized_name": "sakichan track of fury" + }, + { + "appid": 3282130, + "normalized_name": "exo helljumper descent x" + }, + { + "appid": 3282140, + "normalized_name": "red vanguard siege" + }, + { + "appid": 3282200, + "normalized_name": "nature atelier" + }, + { + "appid": 3282210, + "normalized_name": "the fire nobody started" + }, + { + "appid": 3282280, + "normalized_name": "astronaut adventure" + }, + { + "appid": 3282290, + "normalized_name": "flashcard hero" + }, + { + "appid": 3282300, + "normalized_name": "mistfall hunter" + }, + { + "appid": 3282310, + "normalized_name": "数色" + }, + { + "appid": 3282350, + "normalized_name": "开关盒 switch box" + }, + { + "appid": 3282390, + "normalized_name": "完蛋!我被美女包围了! 2" + }, + { + "appid": 3282420, + "normalized_name": "zoominoes" + }, + { + "appid": 3282440, + "normalized_name": "10run" + }, + { + "appid": 3282450, + "normalized_name": "baggy duo" + }, + { + "appid": 3282460, + "normalized_name": "iridescence ~ a charming seaside epic!" + }, + { + "appid": 3282480, + "normalized_name": "温泉でお酒を飲もう!~drinking in the hot spring!~" + }, + { + "appid": 3282490, + "normalized_name": "fate town!" + }, + { + "appid": 3282500, + "normalized_name": "甜点饿魔" + }, + { + "appid": 3282510, + "normalized_name": "body pay \"omg! the girl with the big titties is too hitting on me!\"" + }, + { + "appid": 3282520, + "normalized_name": "garden&bird" + }, + { + "appid": 3282550, + "normalized_name": "喵路昭昭 the long journey" + }, + { + "appid": 3282650, + "normalized_name": "life before death" + }, + { + "appid": 3282670, + "normalized_name": "sex police 🔞🚨" + }, + { + "appid": 3282690, + "normalized_name": "roundz" + }, + { + "appid": 3282700, + "normalized_name": "liminal shift" + }, + { + "appid": 3282710, + "normalized_name": "put the sausage in the bun" + }, + { + "appid": 3282730, + "normalized_name": "mad wave" + }, + { + "appid": 3282790, + "normalized_name": "who killed john malone? vr investigation game" + }, + { + "appid": 3282820, + "normalized_name": "dungeon sweeper" + }, + { + "appid": 3282860, + "normalized_name": "exist.exe" + }, + { + "appid": 3282920, + "normalized_name": "sex slave of the bunker" + }, + { + "appid": 3282930, + "normalized_name": "ai asylum" + }, + { + "appid": 3282980, + "normalized_name": "urbex murder" + }, + { + "appid": 3282990, + "normalized_name": "welcome home sweetie" + }, + { + "appid": 3283030, + "normalized_name": "gargoyle doyle" + }, + { + "appid": 3283070, + "normalized_name": "flappy tank" + }, + { + "appid": 3283120, + "normalized_name": "jane austen simulator pride and prejudice" + }, + { + "appid": 3283130, + "normalized_name": "orbit economica" + }, + { + "appid": 3283230, + "normalized_name": "randotura" + }, + { + "appid": 3283290, + "normalized_name": "biblegames erstes buch mose teil 1" + }, + { + "appid": 3283300, + "normalized_name": "managun wizard" + }, + { + "appid": 3283310, + "normalized_name": "kioku last summer" + }, + { + "appid": 3283330, + "normalized_name": "逻辑方块" + }, + { + "appid": 3283340, + "normalized_name": "nekopunch island" + }, + { + "appid": 3283380, + "normalized_name": "the trust" + }, + { + "appid": 3283430, + "normalized_name": "oakley the leafbug" + }, + { + "appid": 3283460, + "normalized_name": "mochi's cosy quest" + }, + { + "appid": 3283480, + "normalized_name": "hentai tales strangers house" + }, + { + "appid": 3283490, + "normalized_name": "hentai tales strangers house 2" + }, + { + "appid": 3283590, + "normalized_name": "saturday night racing" + }, + { + "appid": 3283620, + "normalized_name": "sweet cruise" + }, + { + "appid": 3283630, + "normalized_name": "moorhuhn remake" + }, + { + "appid": 3283650, + "normalized_name": "van simulator" + }, + { + "appid": 3283680, + "normalized_name": "dreadful night at school" + }, + { + "appid": 3283690, + "normalized_name": "the helminths" + }, + { + "appid": 3283720, + "normalized_name": "the righteous scar" + }, + { + "appid": 3283730, + "normalized_name": "dragon gate tournament" + }, + { + "appid": 3283740, + "normalized_name": "pick me up cabbie" + }, + { + "appid": 3283760, + "normalized_name": "demon inc." + }, + { + "appid": 3283790, + "normalized_name": "ryder" + }, + { + "appid": 3283830, + "normalized_name": "switch poker" + }, + { + "appid": 3283860, + "normalized_name": "repeater" + }, + { + "appid": 3283890, + "normalized_name": "interstate 35" + }, + { + "appid": 3283900, + "normalized_name": "forest ranger services episode 1" + }, + { + "appid": 3283940, + "normalized_name": "dreamwalker" + }, + { + "appid": 3283950, + "normalized_name": "trophy truck racing tour" + }, + { + "appid": 3284020, + "normalized_name": "cashrooms" + }, + { + "appid": 3284050, + "normalized_name": "halloween stories written in blood collector's" + }, + { + "appid": 3284080, + "normalized_name": "liber magus" + }, + { + "appid": 3284110, + "normalized_name": "soccer pro simulator" + }, + { + "appid": 3284120, + "normalized_name": "enlightening" + }, + { + "appid": 3284200, + "normalized_name": "muri wildwoods" + }, + { + "appid": 3284220, + "normalized_name": "hyperwar" + }, + { + "appid": 3284260, + "normalized_name": "blades & battles" + }, + { + "appid": 3284270, + "normalized_name": "blobun" + }, + { + "appid": 3284290, + "normalized_name": "moonsigil atlas" + }, + { + "appid": 3284310, + "normalized_name": "stay alive my son (pc version) a true story about a father's search for his son" + }, + { + "appid": 3284320, + "normalized_name": "ortunia mysteries where did everybody go?" + }, + { + "appid": 3284330, + "normalized_name": "grym knights in the garden" + }, + { + "appid": 3284340, + "normalized_name": "the madness of billiards" + }, + { + "appid": 3284450, + "normalized_name": "eldritch escape" + }, + { + "appid": 3284460, + "normalized_name": "dark city amsterdam collector's" + }, + { + "appid": 3284530, + "normalized_name": "outl1ned" + }, + { + "appid": 3284580, + "normalized_name": "the nightmare of pandemic kyle's story" + }, + { + "appid": 3284610, + "normalized_name": "kosmolaris" + }, + { + "appid": 3284640, + "normalized_name": "hidden cats haunted mansion" + }, + { + "appid": 3284750, + "normalized_name": "infection roots deluxe" + }, + { + "appid": 3284760, + "normalized_name": "pigeon's mission" + }, + { + "appid": 3284770, + "normalized_name": "steampunk shinobi" + }, + { + "appid": 3284780, + "normalized_name": "mahjong realms" + }, + { + "appid": 3284790, + "normalized_name": "draconis 8" + }, + { + "appid": 3284810, + "normalized_name": "the courage of cordelia" + }, + { + "appid": 3284860, + "normalized_name": "异兽之王 the king of beasts" + }, + { + "appid": 3284880, + "normalized_name": "solitaire flowerscapes" + }, + { + "appid": 3284910, + "normalized_name": "storm's wrath" + }, + { + "appid": 3284960, + "normalized_name": "drone fire" + }, + { + "appid": 3285170, + "normalized_name": "peel a banana" + }, + { + "appid": 3285200, + "normalized_name": "good morning" + }, + { + "appid": 3285220, + "normalized_name": "ashwake" + }, + { + "appid": 3285240, + "normalized_name": "troptopia" + }, + { + "appid": 3285260, + "normalized_name": "cosy company puzzle" + }, + { + "appid": 3285300, + "normalized_name": "crowbar climber" + }, + { + "appid": 3285320, + "normalized_name": "clear drops" + }, + { + "appid": 3285360, + "normalized_name": "stand survive team up and never die" + }, + { + "appid": 3285370, + "normalized_name": "ancient ruins" + }, + { + "appid": 3285390, + "normalized_name": "project kvasir" + }, + { + "appid": 3285410, + "normalized_name": "sizebound" + }, + { + "appid": 3285420, + "normalized_name": "tibor tale of a kind vampire" + }, + { + "appid": 3285430, + "normalized_name": "the patient can you escape?" + }, + { + "appid": 3285480, + "normalized_name": "don't play breakout deluxe" + }, + { + "appid": 3285490, + "normalized_name": "go" + }, + { + "appid": 3285500, + "normalized_name": "three kingdoms mushouden" + }, + { + "appid": 3285530, + "normalized_name": "kaskade" + }, + { + "appid": 3285550, + "normalized_name": "nightfall protocol" + }, + { + "appid": 3285660, + "normalized_name": "labyrinth of wild abyss layeredux" + }, + { + "appid": 3285700, + "normalized_name": "life is feudal arden" + }, + { + "appid": 3285730, + "normalized_name": "all hail gloop!" + }, + { + "appid": 3285770, + "normalized_name": "industrial dominion" + }, + { + "appid": 3285780, + "normalized_name": "flaak td" + }, + { + "appid": 3285790, + "normalized_name": "spylens sex in focus" + }, + { + "appid": 3285890, + "normalized_name": "darkfield" + }, + { + "appid": 3285900, + "normalized_name": "cubs story 崽物语" + }, + { + "appid": 3285910, + "normalized_name": "spirit level" + }, + { + "appid": 3285920, + "normalized_name": "florafriend" + }, + { + "appid": 3285930, + "normalized_name": "the basement ritual" + }, + { + "appid": 3285960, + "normalized_name": "the victor initiative" + }, + { + "appid": 3286000, + "normalized_name": "evil siege" + }, + { + "appid": 3286010, + "normalized_name": "christian quest" + }, + { + "appid": 3286020, + "normalized_name": "carl's alien shooting" + }, + { + "appid": 3286030, + "normalized_name": "boardguard" + }, + { + "appid": 3286080, + "normalized_name": "stellar stables" + }, + { + "appid": 3286090, + "normalized_name": "exsanguination" + }, + { + "appid": 3286110, + "normalized_name": "happy home prologue" + }, + { + "appid": 3286130, + "normalized_name": "lumen world of color" + }, + { + "appid": 3286140, + "normalized_name": "providentia academy" + }, + { + "appid": 3286170, + "normalized_name": "krax ca caw's concoction chaos" + }, + { + "appid": 3286190, + "normalized_name": "spaceum" + }, + { + "appid": 3286220, + "normalized_name": "dimaworld" + }, + { + "appid": 3286250, + "normalized_name": "snakes with fists!" + }, + { + "appid": 3286280, + "normalized_name": "operation strike & secure" + }, + { + "appid": 3286320, + "normalized_name": "astrosmash 1981" + }, + { + "appid": 3286330, + "normalized_name": "monitoring all night" + }, + { + "appid": 3286360, + "normalized_name": "100 hidden cats kitty house 2" + }, + { + "appid": 3286430, + "normalized_name": "the revenants" + }, + { + "appid": 3286440, + "normalized_name": "p.a.c.k. post apocalyptic cleaning kit" + }, + { + "appid": 3286460, + "normalized_name": "two sides voyage to the mainland" + }, + { + "appid": 3286560, + "normalized_name": "evil lurks below" + }, + { + "appid": 3286570, + "normalized_name": "runback" + }, + { + "appid": 3286700, + "normalized_name": "eros raiders" + }, + { + "appid": 3286710, + "normalized_name": "softie" + }, + { + "appid": 3286730, + "normalized_name": "battlercore team blazer" + }, + { + "appid": 3286790, + "normalized_name": "car carrier simulator" + }, + { + "appid": 3286810, + "normalized_name": "lana longbeard and the golden stacks prologue" + }, + { + "appid": 3286830, + "normalized_name": "acroama company of strays" + }, + { + "appid": 3286860, + "normalized_name": "the hundredth hike" + }, + { + "appid": 3286880, + "normalized_name": "i lost my eggs easter" + }, + { + "appid": 3286910, + "normalized_name": "woke quest" + }, + { + "appid": 3286990, + "normalized_name": "wasd" + }, + { + "appid": 3287020, + "normalized_name": "fatrifice 3" + }, + { + "appid": 3287050, + "normalized_name": "fate of the three kingdoms" + }, + { + "appid": 3287070, + "normalized_name": "princess safia & her lesbian master" + }, + { + "appid": 3287120, + "normalized_name": "squid's manslaughter" + }, + { + "appid": 3287200, + "normalized_name": "bluebie vs the army of cyborgs" + }, + { + "appid": 3287210, + "normalized_name": "starmetal crusaders" + }, + { + "appid": 3287220, + "normalized_name": "creepy crypt critters" + }, + { + "appid": 3287300, + "normalized_name": "bit cremental fishistry" + }, + { + "appid": 3287330, + "normalized_name": "kitsune's paths tower defense" + }, + { + "appid": 3287400, + "normalized_name": "drone shooter" + }, + { + "appid": 3287460, + "normalized_name": "dark assassin trial chambers" + }, + { + "appid": 3287480, + "normalized_name": "roll with friends" + }, + { + "appid": 3287510, + "normalized_name": "colorminis" + }, + { + "appid": 3287520, + "normalized_name": "ninja gaiden 2 black" + }, + { + "appid": 3287530, + "normalized_name": "monolithus" + }, + { + "appid": 3287610, + "normalized_name": "春秋无义战" + }, + { + "appid": 3287620, + "normalized_name": "塞拉的大冒险" + }, + { + "appid": 3287650, + "normalized_name": "butcherbird" + }, + { + "appid": 3287710, + "normalized_name": "square circle war" + }, + { + "appid": 3287720, + "normalized_name": "elissa:卧室的缢吊尸" + }, + { + "appid": 3287730, + "normalized_name": "scp a star replicator" + }, + { + "appid": 3287810, + "normalized_name": "burning squad" + }, + { + "appid": 3287840, + "normalized_name": "tower of arithmetic" + }, + { + "appid": 3287870, + "normalized_name": "asmr runner" + }, + { + "appid": 3287900, + "normalized_name": "8月32日の水族館vr" + }, + { + "appid": 3287980, + "normalized_name": "marriage impossible! 2 ~love love ♥ christmas~" + }, + { + "appid": 3287990, + "normalized_name": "第三灵界" + }, + { + "appid": 3288020, + "normalized_name": "100 hidden capybaras" + }, + { + "appid": 3288050, + "normalized_name": "sog vietnam" + }, + { + "appid": 3288100, + "normalized_name": "all that glitters" + }, + { + "appid": 3288160, + "normalized_name": "grave filler" + }, + { + "appid": 3288170, + "normalized_name": "awen" + }, + { + "appid": 3288180, + "normalized_name": "tales beyond the tomb pineville night stalker" + }, + { + "appid": 3288190, + "normalized_name": "numx" + }, + { + "appid": 3288250, + "normalized_name": "it unstoppable" + }, + { + "appid": 3288270, + "normalized_name": "monster care simulator" + }, + { + "appid": 3288300, + "normalized_name": "dark fairy tale dreamland survivors" + }, + { + "appid": 3288330, + "normalized_name": "bunker 24" + }, + { + "appid": 3288380, + "normalized_name": "sex club simulator 🔞🍓" + }, + { + "appid": 3288400, + "normalized_name": "aetherdrift" + }, + { + "appid": 3288420, + "normalized_name": "enhanced vengeance" + }, + { + "appid": 3288430, + "normalized_name": "robosoul" + }, + { + "appid": 3288450, + "normalized_name": "frontline protocol" + }, + { + "appid": 3288460, + "normalized_name": "rolling star" + }, + { + "appid": 3288510, + "normalized_name": "spacecaps" + }, + { + "appid": 3288520, + "normalized_name": "the litter trigo" + }, + { + "appid": 3288560, + "normalized_name": "forgotten cave roguelite dungeon crawler" + }, + { + "appid": 3288570, + "normalized_name": "pearl of the desert" + }, + { + "appid": 3288600, + "normalized_name": "skibidi gyatrooms" + }, + { + "appid": 3288650, + "normalized_name": "little slippey" + }, + { + "appid": 3288660, + "normalized_name": "mortimer first launch" + }, + { + "appid": 3288680, + "normalized_name": "my favorite school" + }, + { + "appid": 3288810, + "normalized_name": "traverse colour space" + }, + { + "appid": 3288840, + "normalized_name": "carnage battle arena" + }, + { + "appid": 3288870, + "normalized_name": "takedown last shot forever" + }, + { + "appid": 3288890, + "normalized_name": "oubliette" + }, + { + "appid": 3288910, + "normalized_name": "what should i eat" + }, + { + "appid": 3288920, + "normalized_name": "ed & edda grand prix – racing champions" + }, + { + "appid": 3288940, + "normalized_name": "multiplayer mongolians" + }, + { + "appid": 3288990, + "normalized_name": "grove fisher" + }, + { + "appid": 3289000, + "normalized_name": "shadows of lir'ah" + }, + { + "appid": 3289010, + "normalized_name": "xmas surprise" + }, + { + "appid": 3289040, + "normalized_name": "dark manor" + }, + { + "appid": 3289060, + "normalized_name": "cruft" + }, + { + "appid": 3289090, + "normalized_name": "ghost master resurrection" + }, + { + "appid": 3289130, + "normalized_name": "crazy screw removal" + }, + { + "appid": 3289210, + "normalized_name": "蘑菇的异常事件调查记录:躲风雨" + }, + { + "appid": 3289220, + "normalized_name": "lost valley of the frog king" + }, + { + "appid": 3289230, + "normalized_name": "little buddy" + }, + { + "appid": 3289240, + "normalized_name": "拜托!请你先告白" + }, + { + "appid": 3289250, + "normalized_name": "the questness light of ra" + }, + { + "appid": 3289270, + "normalized_name": "firelore short tales" + }, + { + "appid": 3289280, + "normalized_name": "lady's tourney" + }, + { + "appid": 3289370, + "normalized_name": "super furry world" + }, + { + "appid": 3289450, + "normalized_name": "abstractpunk" + }, + { + "appid": 3289480, + "normalized_name": "timetrain" + }, + { + "appid": 3289500, + "normalized_name": "homeward" + }, + { + "appid": 3289550, + "normalized_name": "to the eden 末日行者" + }, + { + "appid": 3289570, + "normalized_name": "scrapped" + }, + { + "appid": 3289580, + "normalized_name": "winter ~life in the countryside~" + }, + { + "appid": 3289600, + "normalized_name": "jolly's park" + }, + { + "appid": 3289970, + "normalized_name": "one wild futa nightclub" + }, + { + "appid": 3290010, + "normalized_name": "great adventure alice's wonderland" + }, + { + "appid": 3290020, + "normalized_name": "homicide judge" + }, + { + "appid": 3290030, + "normalized_name": "rabbit rush" + }, + { + "appid": 3290040, + "normalized_name": "魔剑镇魂曲 英雄之泪" + }, + { + "appid": 3290070, + "normalized_name": "bilge junction" + }, + { + "appid": 3290090, + "normalized_name": "absolution" + }, + { + "appid": 3290100, + "normalized_name": "moonlit journey the age of deth" + }, + { + "appid": 3290110, + "normalized_name": "lanesplitterz" + }, + { + "appid": 3290120, + "normalized_name": "pig & chikin" + }, + { + "appid": 3290130, + "normalized_name": "a deep world" + }, + { + "appid": 3290150, + "normalized_name": "shed skin bleed ink" + }, + { + "appid": 3290160, + "normalized_name": "kai unearthed" + }, + { + "appid": 3290180, + "normalized_name": "adhvan chakra" + }, + { + "appid": 3290210, + "normalized_name": "250ms" + }, + { + "appid": 3290220, + "normalized_name": "abeline rush" + }, + { + "appid": 3290260, + "normalized_name": "spring time" + }, + { + "appid": 3290310, + "normalized_name": "b type space builder" + }, + { + "appid": 3290330, + "normalized_name": "nitro thrash" + }, + { + "appid": 3290340, + "normalized_name": "outer express" + }, + { + "appid": 3290350, + "normalized_name": "eclipse 2nd dawn for the galaxy" + }, + { + "appid": 3290380, + "normalized_name": "寒冬无治" + }, + { + "appid": 3290390, + "normalized_name": "ナイトストライカーgear" + }, + { + "appid": 3290400, + "normalized_name": "find this pixel anomaly" + }, + { + "appid": 3290440, + "normalized_name": "virtual girl @ world’s end" + }, + { + "appid": 3290450, + "normalized_name": "arcade manager" + }, + { + "appid": 3290460, + "normalized_name": "陪你上北大 your study mate" + }, + { + "appid": 3290470, + "normalized_name": "crimebot 2 unsolved cold case" + }, + { + "appid": 3290480, + "normalized_name": "fishing for numbers" + }, + { + "appid": 3290500, + "normalized_name": "hyperborea" + }, + { + "appid": 3290550, + "normalized_name": "malevolent madness" + }, + { + "appid": 3290560, + "normalized_name": "evolution of species 2 online" + }, + { + "appid": 3290590, + "normalized_name": "诸子亡秦" + }, + { + "appid": 3290600, + "normalized_name": "cottonville" + }, + { + "appid": 3290610, + "normalized_name": "pick my heart chapter 1" + }, + { + "appid": 3290620, + "normalized_name": "pick my heart chapter 2" + }, + { + "appid": 3290660, + "normalized_name": "pirate cove simulator" + }, + { + "appid": 3290680, + "normalized_name": "eliminate fear" + }, + { + "appid": 3290690, + "normalized_name": "styx blades of greed" + }, + { + "appid": 3290710, + "normalized_name": "ratshaker" + }, + { + "appid": 3290830, + "normalized_name": "faith of life _ survive" + }, + { + "appid": 3290990, + "normalized_name": "immotro" + }, + { + "appid": 3291000, + "normalized_name": "rax genesis" + }, + { + "appid": 3291030, + "normalized_name": "slashing night" + }, + { + "appid": 3291040, + "normalized_name": "ordinary heroes" + }, + { + "appid": 3291080, + "normalized_name": "desperadrops" + }, + { + "appid": 3291090, + "normalized_name": "planet hoarders" + }, + { + "appid": 3291120, + "normalized_name": "book of abominations" + }, + { + "appid": 3291130, + "normalized_name": "qr dead" + }, + { + "appid": 3291220, + "normalized_name": "there's a gun in the office" + }, + { + "appid": 3291240, + "normalized_name": "match3 x bricks" + }, + { + "appid": 3291260, + "normalized_name": "craft & conquer" + }, + { + "appid": 3291270, + "normalized_name": "jink in" + }, + { + "appid": 3291290, + "normalized_name": "e commerce simulator 2025" + }, + { + "appid": 3291310, + "normalized_name": "mutant college" + }, + { + "appid": 3291340, + "normalized_name": "undead awakens" + }, + { + "appid": 3291350, + "normalized_name": "灭绝虚空" + }, + { + "appid": 3291440, + "normalized_name": "astro architect" + }, + { + "appid": 3291450, + "normalized_name": "the vow vampire's curse" + }, + { + "appid": 3291470, + "normalized_name": "watch where you're going" + }, + { + "appid": 3291510, + "normalized_name": "fantasy memory a relaxing match game" + }, + { + "appid": 3291520, + "normalized_name": "simulo" + }, + { + "appid": 3291580, + "normalized_name": "the nebula project" + }, + { + "appid": 3291660, + "normalized_name": "cropolution" + }, + { + "appid": 3291690, + "normalized_name": "legends bmx" + }, + { + "appid": 3291700, + "normalized_name": "nirih" + }, + { + "appid": 3291770, + "normalized_name": "the search" + }, + { + "appid": 3291790, + "normalized_name": "durak online" + }, + { + "appid": 3291800, + "normalized_name": "acrogorpon" + }, + { + "appid": 3291850, + "normalized_name": "scaling up" + }, + { + "appid": 3291870, + "normalized_name": "addled clicker" + }, + { + "appid": 3291880, + "normalized_name": "spud customs" + }, + { + "appid": 3291890, + "normalized_name": "backrooms 5 missing wanderers" + }, + { + "appid": 3291900, + "normalized_name": "the way to life" + }, + { + "appid": 3291910, + "normalized_name": "foxgirl trainer" + }, + { + "appid": 3291920, + "normalized_name": "未語" + }, + { + "appid": 3292010, + "normalized_name": "isekai ya" + }, + { + "appid": 3292090, + "normalized_name": "man in a suit in a building in a city" + }, + { + "appid": 3292110, + "normalized_name": "rogue run" + }, + { + "appid": 3292170, + "normalized_name": "the legend of ure" + }, + { + "appid": 3292180, + "normalized_name": "wifewantsntr" + }, + { + "appid": 3292190, + "normalized_name": "버튜버 파라노이아 vtuber paranoia" + }, + { + "appid": 3292220, + "normalized_name": "little screamies" + }, + { + "appid": 3292260, + "normalized_name": "amenti" + }, + { + "appid": 3292290, + "normalized_name": "肥羊危机ii / fatsheep crisis ii" + }, + { + "appid": 3292310, + "normalized_name": "卡牌小镇" + }, + { + "appid": 3292320, + "normalized_name": "the dispatcher" + }, + { + "appid": 3292340, + "normalized_name": "time space rebuild" + }, + { + "appid": 3292370, + "normalized_name": "subjects" + }, + { + "appid": 3292380, + "normalized_name": "gnome adventure" + }, + { + "appid": 3292410, + "normalized_name": "转生魔塔" + }, + { + "appid": 3292420, + "normalized_name": "phantom asylum vr" + }, + { + "appid": 3292460, + "normalized_name": "dump[ster] of fears" + }, + { + "appid": 3292470, + "normalized_name": "tides of annihilation" + }, + { + "appid": 3292480, + "normalized_name": "ignited entry" + }, + { + "appid": 3292500, + "normalized_name": "anathema's symphony" + }, + { + "appid": 3292510, + "normalized_name": "from the last shift horror collection" + }, + { + "appid": 3292520, + "normalized_name": "grandma's in hell" + }, + { + "appid": 3292540, + "normalized_name": "+1%" + }, + { + "appid": 3292550, + "normalized_name": "torchr runners demastered" + }, + { + "appid": 3292590, + "normalized_name": "donerksela sacred area" + }, + { + "appid": 3292600, + "normalized_name": "eva's lab" + }, + { + "appid": 3292610, + "normalized_name": "crabs dive in crossway" + }, + { + "appid": 3292620, + "normalized_name": "project rebirth" + }, + { + "appid": 3292640, + "normalized_name": "雄闯天下" + }, + { + "appid": 3292650, + "normalized_name": "奇迹松鼠俱乐部" + }, + { + "appid": 3292670, + "normalized_name": "una ad astra" + }, + { + "appid": 3292680, + "normalized_name": "red star over america" + }, + { + "appid": 3292710, + "normalized_name": "tracktopia" + }, + { + "appid": 3292730, + "normalized_name": "death in your dice" + }, + { + "appid": 3292740, + "normalized_name": "with the fire and sword" + }, + { + "appid": 3292750, + "normalized_name": "distractor" + }, + { + "appid": 3292760, + "normalized_name": "the lone sword" + }, + { + "appid": 3292770, + "normalized_name": "fiefdom" + }, + { + "appid": 3292780, + "normalized_name": "atlas protocol escape room" + }, + { + "appid": 3292790, + "normalized_name": "sword snap" + }, + { + "appid": 3292830, + "normalized_name": "bunny hop hop" + }, + { + "appid": 3292890, + "normalized_name": "c.a.r.d.s redux" + }, + { + "appid": 3292920, + "normalized_name": "lucky hand roguelike deck builder" + }, + { + "appid": 3292930, + "normalized_name": "path of spirits" + }, + { + "appid": 3292960, + "normalized_name": "masters of the air" + }, + { + "appid": 3292980, + "normalized_name": "hacky" + }, + { + "appid": 3293010, + "normalized_name": "easy delivery co." + }, + { + "appid": 3293020, + "normalized_name": "no more enemies" + }, + { + "appid": 3293030, + "normalized_name": "underpath" + }, + { + "appid": 3293060, + "normalized_name": "fast lap racing" + }, + { + "appid": 3293100, + "normalized_name": "scientist creature" + }, + { + "appid": 3293150, + "normalized_name": "keep looking" + }, + { + "appid": 3293180, + "normalized_name": "slingshot pilot" + }, + { + "appid": 3293190, + "normalized_name": "tagtopia" + }, + { + "appid": 3293210, + "normalized_name": "lonayr libraries a king's greed" + }, + { + "appid": 3293230, + "normalized_name": "idle explorer" + }, + { + "appid": 3293250, + "normalized_name": "delirium" + }, + { + "appid": 3293260, + "normalized_name": "waterpark simulator" + }, + { + "appid": 3293290, + "normalized_name": "rage platformer" + }, + { + "appid": 3293300, + "normalized_name": "dread it" + }, + { + "appid": 3293350, + "normalized_name": "dante's 9" + }, + { + "appid": 3293360, + "normalized_name": "三日月星めぐりの歌" + }, + { + "appid": 3293380, + "normalized_name": "castle fractal" + }, + { + "appid": 3293460, + "normalized_name": "static black" + }, + { + "appid": 3293470, + "normalized_name": "operation blackfox" + }, + { + "appid": 3293490, + "normalized_name": "dragon ruins ii" + }, + { + "appid": 3293520, + "normalized_name": "bussy master cyberbussy 2069" + }, + { + "appid": 3293640, + "normalized_name": "trees and jellyfish" + }, + { + "appid": 3293650, + "normalized_name": "relic delivery" + }, + { + "appid": 3293660, + "normalized_name": "cartier 06" + }, + { + "appid": 3293700, + "normalized_name": "maya steps out" + }, + { + "appid": 3293750, + "normalized_name": "keebee" + }, + { + "appid": 3293770, + "normalized_name": "the last table" + }, + { + "appid": 3293800, + "normalized_name": "fiora" + }, + { + "appid": 3293820, + "normalized_name": "infection warfare" + }, + { + "appid": 3293830, + "normalized_name": "千灯巷 thousand lantern lane" + }, + { + "appid": 3293850, + "normalized_name": "suffering with tang sanzang" + }, + { + "appid": 3293880, + "normalized_name": "sho hei and the champ of secrets" + }, + { + "appid": 3293960, + "normalized_name": "echoes of asjud" + }, + { + "appid": 3293970, + "normalized_name": "hidden cats spring festival" + }, + { + "appid": 3293990, + "normalized_name": "がんばれ!受付嬢2 ~stardust liberate~" + }, + { + "appid": 3294020, + "normalized_name": "contra spem spero" + }, + { + "appid": 3294030, + "normalized_name": "candy christmas" + }, + { + "appid": 3294060, + "normalized_name": "遥远的村庄 an outland village" + }, + { + "appid": 3294070, + "normalized_name": "horny princess survivors" + }, + { + "appid": 3294100, + "normalized_name": "animal tilt a show" + }, + { + "appid": 3294130, + "normalized_name": "death trap mountain" + }, + { + "appid": 3294180, + "normalized_name": "kota the survival" + }, + { + "appid": 3294210, + "normalized_name": "maestro level editor" + }, + { + "appid": 3294220, + "normalized_name": "curse of darkness" + }, + { + "appid": 3294230, + "normalized_name": "prey of the night" + }, + { + "appid": 3294270, + "normalized_name": "poolcore submersion" + }, + { + "appid": 3294280, + "normalized_name": "gafes special agent" + }, + { + "appid": 3294300, + "normalized_name": "dinosaur" + }, + { + "appid": 3294330, + "normalized_name": "201 the bad number" + }, + { + "appid": 3294360, + "normalized_name": "interim crossroads" + }, + { + "appid": 3294370, + "normalized_name": "facing the rain" + }, + { + "appid": 3294440, + "normalized_name": "memoirium" + }, + { + "appid": 3294540, + "normalized_name": "迷宫塔防" + }, + { + "appid": 3294550, + "normalized_name": "cat trip" + }, + { + "appid": 3294570, + "normalized_name": "killer depths" + }, + { + "appid": 3294580, + "normalized_name": "506战纪" + }, + { + "appid": 3294610, + "normalized_name": "go go fight" + }, + { + "appid": 3294620, + "normalized_name": "last sighting" + }, + { + "appid": 3294630, + "normalized_name": "mini racer car shop simulator" + }, + { + "appid": 3294640, + "normalized_name": "brickrobo shop simulator" + }, + { + "appid": 3294660, + "normalized_name": "what in hell is bad?" + }, + { + "appid": 3294670, + "normalized_name": "sweet honey" + }, + { + "appid": 3294730, + "normalized_name": "some jello and a hard place" + }, + { + "appid": 3294740, + "normalized_name": "mpirimpa" + }, + { + "appid": 3294750, + "normalized_name": "mubosama" + }, + { + "appid": 3294780, + "normalized_name": "perpetual mazes" + }, + { + "appid": 3294790, + "normalized_name": "elf world adventure 3" + }, + { + "appid": 3294800, + "normalized_name": "astra village" + }, + { + "appid": 3294880, + "normalized_name": "不安ごと" + }, + { + "appid": 3294890, + "normalized_name": "five nights at roner's" + }, + { + "appid": 3294930, + "normalized_name": "shadow alchemist" + }, + { + "appid": 3294950, + "normalized_name": "akabos" + }, + { + "appid": 3294960, + "normalized_name": "sticky mayhem" + }, + { + "appid": 3294970, + "normalized_name": "blixia" + }, + { + "appid": 3295010, + "normalized_name": "insect dude! underground roots" + }, + { + "appid": 3295020, + "normalized_name": "endless deaths" + }, + { + "appid": 3295080, + "normalized_name": "paraglock" + }, + { + "appid": 3295110, + "normalized_name": "level 37" + }, + { + "appid": 3295150, + "normalized_name": "core break" + }, + { + "appid": 3295160, + "normalized_name": "s" + }, + { + "appid": 3295190, + "normalized_name": "东方祈妖录" + }, + { + "appid": 3295210, + "normalized_name": "bonnie blob in shapeville" + }, + { + "appid": 3295220, + "normalized_name": "geojet" + }, + { + "appid": 3295230, + "normalized_name": "happy hotel" + }, + { + "appid": 3295240, + "normalized_name": "virtual towers online" + }, + { + "appid": 3295250, + "normalized_name": "cats diner" + }, + { + "appid": 3295280, + "normalized_name": "beyond stories jester" + }, + { + "appid": 3295340, + "normalized_name": "it's all over" + }, + { + "appid": 3295350, + "normalized_name": "starsim battlezone" + }, + { + "appid": 3295420, + "normalized_name": "escape memoirs bank heist" + }, + { + "appid": 3295430, + "normalized_name": "type ride" + }, + { + "appid": 3295480, + "normalized_name": "trump is in trouble" + }, + { + "appid": 3295490, + "normalized_name": "jellystar" + }, + { + "appid": 3295530, + "normalized_name": "strand" + }, + { + "appid": 3295650, + "normalized_name": "escape from dead city" + }, + { + "appid": 3295670, + "normalized_name": "labernum" + }, + { + "appid": 3295680, + "normalized_name": "stellar archipelago" + }, + { + "appid": 3295690, + "normalized_name": "bladeforge ascension crusade" + }, + { + "appid": 3295700, + "normalized_name": "adventure awaits in the secret of the golden key" + }, + { + "appid": 3295710, + "normalized_name": "paravoid" + }, + { + "appid": 3295720, + "normalized_name": "逃家少女~蜜梨與巧克力~" + }, + { + "appid": 3295750, + "normalized_name": "demon compass" + }, + { + "appid": 3295760, + "normalized_name": "ai stories cybee princess" + }, + { + "appid": 3295810, + "normalized_name": "remote reaper fpv drone" + }, + { + "appid": 3295820, + "normalized_name": "rebirth of legal maniac" + }, + { + "appid": 3295890, + "normalized_name": "parkour civilization" + }, + { + "appid": 3295900, + "normalized_name": "parkour challenger" + }, + { + "appid": 3295930, + "normalized_name": "the dark arrival shadows of the past" + }, + { + "appid": 3295990, + "normalized_name": "braise satan" + }, + { + "appid": 3296010, + "normalized_name": "this party is killer" + }, + { + "appid": 3296050, + "normalized_name": "space corps" + }, + { + "appid": 3296070, + "normalized_name": "sweetcanvas" + }, + { + "appid": 3296110, + "normalized_name": "meander land" + }, + { + "appid": 3296160, + "normalized_name": "wendigo's outside" + }, + { + "appid": 3296180, + "normalized_name": "5 dice" + }, + { + "appid": 3296190, + "normalized_name": "onibito kiki" + }, + { + "appid": 3296200, + "normalized_name": "5 nights at timokha 4 school" + }, + { + "appid": 3296240, + "normalized_name": "math master" + }, + { + "appid": 3296250, + "normalized_name": "the last refuge" + }, + { + "appid": 3296260, + "normalized_name": "cafe dreamland" + }, + { + "appid": 3296330, + "normalized_name": "timelake time travel tactics" + }, + { + "appid": 3296350, + "normalized_name": "seed 'n breed" + }, + { + "appid": 3296370, + "normalized_name": "cursed new year" + }, + { + "appid": 3296440, + "normalized_name": "the feces feasters" + }, + { + "appid": 3296450, + "normalized_name": "the window 8" + }, + { + "appid": 3296470, + "normalized_name": "metal genesis" + }, + { + "appid": 3296480, + "normalized_name": "破阵子" + }, + { + "appid": 3296520, + "normalized_name": "the rise of the new han prince" + }, + { + "appid": 3296530, + "normalized_name": "the rise of the new han prince 2" + }, + { + "appid": 3296540, + "normalized_name": "my kirin kidney and my beloved teachers" + }, + { + "appid": 3296550, + "normalized_name": "my kirin kidney and my beloved teachers 2" + }, + { + "appid": 3296560, + "normalized_name": "kopitiam story" + }, + { + "appid": 3296570, + "normalized_name": "phoenix nirvana rebirth" + }, + { + "appid": 3296580, + "normalized_name": "phoenix nirvana rebirth 2" + }, + { + "appid": 3296600, + "normalized_name": "hentaimon prologue" + }, + { + "appid": 3296610, + "normalized_name": "hulltown" + }, + { + "appid": 3296620, + "normalized_name": "双相:水管(bipolar the tube)" + }, + { + "appid": 3296630, + "normalized_name": "rebirth of legal maniac 2" + }, + { + "appid": 3296760, + "normalized_name": "cosmic ultramarine" + }, + { + "appid": 3296790, + "normalized_name": "the shell part iii paradiso" + }, + { + "appid": 3296800, + "normalized_name": "stock market tycoon challenge" + }, + { + "appid": 3296820, + "normalized_name": "water effect" + }, + { + "appid": 3296840, + "normalized_name": "modernfactory" + }, + { + "appid": 3296910, + "normalized_name": "stash a card looter" + }, + { + "appid": 3296920, + "normalized_name": "flibbius mcdoogle and the mysterious flying machine" + }, + { + "appid": 3296960, + "normalized_name": "space atlas the solar system" + }, + { + "appid": 3297010, + "normalized_name": "ふとんがふっとんだ!with ロケットランチャー" + }, + { + "appid": 3297020, + "normalized_name": "farmsville" + }, + { + "appid": 3297030, + "normalized_name": "コントロールルーム" + }, + { + "appid": 3297040, + "normalized_name": "adventurers guild inc." + }, + { + "appid": 3297050, + "normalized_name": "gabang" + }, + { + "appid": 3297070, + "normalized_name": "a sexy tour with stella" + }, + { + "appid": 3297080, + "normalized_name": "the sisterhood pasture cozy folklore farming" + }, + { + "appid": 3297110, + "normalized_name": "anemorie" + }, + { + "appid": 3297120, + "normalized_name": "intrude and destroy" + }, + { + "appid": 3297160, + "normalized_name": "norush!" + }, + { + "appid": 3297190, + "normalized_name": "tummy bonbons the sweet monster" + }, + { + "appid": 3297200, + "normalized_name": "the last worlds crossed souls" + }, + { + "appid": 3297210, + "normalized_name": "project mnemosyne" + }, + { + "appid": 3297230, + "normalized_name": "pinball jam" + }, + { + "appid": 3297240, + "normalized_name": "re mind" + }, + { + "appid": 3297250, + "normalized_name": "lost whispers" + }, + { + "appid": 3297290, + "normalized_name": "radiation cleaner" + }, + { + "appid": 3297310, + "normalized_name": "the cursed hour" + }, + { + "appid": 3297340, + "normalized_name": "doomed hell 64 fps dungeon crawler" + }, + { + "appid": 3297360, + "normalized_name": "we're here papa" + }, + { + "appid": 3297370, + "normalized_name": "golf up" + }, + { + "appid": 3297440, + "normalized_name": "123木头人" + }, + { + "appid": 3297490, + "normalized_name": "new moons" + }, + { + "appid": 3297500, + "normalized_name": "carnegie" + }, + { + "appid": 3297510, + "normalized_name": "the immortal scripture" + }, + { + "appid": 3297520, + "normalized_name": "vr store simulator" + }, + { + "appid": 3297600, + "normalized_name": "frontline footage" + }, + { + "appid": 3297620, + "normalized_name": "raider of realms" + }, + { + "appid": 3297630, + "normalized_name": "finnish cottage 8" + }, + { + "appid": 3297650, + "normalized_name": "daughters of the dragon" + }, + { + "appid": 3297660, + "normalized_name": "the lighthouse secrets" + }, + { + "appid": 3297670, + "normalized_name": "ulgamor dungeon arena" + }, + { + "appid": 3297720, + "normalized_name": "flying pigs" + }, + { + "appid": 3297730, + "normalized_name": "nightmare journey" + }, + { + "appid": 3297740, + "normalized_name": "big air desert rally" + }, + { + "appid": 3297790, + "normalized_name": "icobeat" + }, + { + "appid": 3297800, + "normalized_name": "plushes" + }, + { + "appid": 3297850, + "normalized_name": "froggo's adventure drifting sky" + }, + { + "appid": 3297870, + "normalized_name": "feminization device" + }, + { + "appid": 3297900, + "normalized_name": "tierras infernales" + }, + { + "appid": 3297920, + "normalized_name": "finity" + }, + { + "appid": 3297940, + "normalized_name": "fear academy" + }, + { + "appid": 3297960, + "normalized_name": "bear shooter くまっとシューティング" + }, + { + "appid": 3298020, + "normalized_name": "a night with succubus" + }, + { + "appid": 3298030, + "normalized_name": "feigning innocence" + }, + { + "appid": 3298050, + "normalized_name": "crime investigator" + }, + { + "appid": 3298060, + "normalized_name": "galactic wargames" + }, + { + "appid": 3298080, + "normalized_name": "neon spellstorm" + }, + { + "appid": 3298130, + "normalized_name": "mazewar" + }, + { + "appid": 3298140, + "normalized_name": "the guardians realm" + }, + { + "appid": 3298150, + "normalized_name": "flip flop xl" + }, + { + "appid": 3298170, + "normalized_name": "s.e.x. z.o.n.e. ☢" + }, + { + "appid": 3298200, + "normalized_name": "come up with hyper" + }, + { + "appid": 3298230, + "normalized_name": "the grappler" + }, + { + "appid": 3298250, + "normalized_name": "yoshima hentai simulator" + }, + { + "appid": 3298300, + "normalized_name": "sleep_mode" + }, + { + "appid": 3298340, + "normalized_name": "lunar corps" + }, + { + "appid": 3298380, + "normalized_name": "royal odyssey" + }, + { + "appid": 3298390, + "normalized_name": "blumenia historias de un mundo de plantas" + }, + { + "appid": 3298410, + "normalized_name": "moonshadows" + }, + { + "appid": 3298420, + "normalized_name": "fossil keeper" + }, + { + "appid": 3298430, + "normalized_name": "flaregate network" + }, + { + "appid": 3298460, + "normalized_name": "pushing it! together sisyphus co op" + }, + { + "appid": 3298480, + "normalized_name": "macht magie" + }, + { + "appid": 3298490, + "normalized_name": "soul rush" + }, + { + "appid": 3298500, + "normalized_name": "failing witch iris and the philosopher's stone" + }, + { + "appid": 3298530, + "normalized_name": "fm skyline's \"reality\"" + }, + { + "appid": 3298560, + "normalized_name": "recovery sierra" + }, + { + "appid": 3298570, + "normalized_name": "the legend of cyber cowboy" + }, + { + "appid": 3298580, + "normalized_name": "fury!" + }, + { + "appid": 3298590, + "normalized_name": "101 cats hidden in tokyo" + }, + { + "appid": 3298620, + "normalized_name": "circadial" + }, + { + "appid": 3298640, + "normalized_name": "inn 8" + }, + { + "appid": 3298650, + "normalized_name": "the devils mirror" + }, + { + "appid": 3298660, + "normalized_name": "toilet world" + }, + { + "appid": 3298710, + "normalized_name": "s.x.e. slider hard ridin'" + }, + { + "appid": 3298720, + "normalized_name": "fish shop simulator" + }, + { + "appid": 3298760, + "normalized_name": "galactic arena" + }, + { + "appid": 3298780, + "normalized_name": "aleae" + }, + { + "appid": 3298800, + "normalized_name": "coup ahoo" + }, + { + "appid": 3298820, + "normalized_name": "my proud girlfriend lina chapter" + }, + { + "appid": 3298840, + "normalized_name": "pet town" + }, + { + "appid": 3298870, + "normalized_name": "梦幻八仙" + }, + { + "appid": 3298880, + "normalized_name": "clicker kingdom" + }, + { + "appid": 3298910, + "normalized_name": "once a pawn a king" + }, + { + "appid": 3298920, + "normalized_name": "psy relic" + }, + { + "appid": 3298940, + "normalized_name": "static dread 15 nights at the old lighthouse" + }, + { + "appid": 3298950, + "normalized_name": "noir light" + }, + { + "appid": 3298960, + "normalized_name": "journey to the dao" + }, + { + "appid": 3299050, + "normalized_name": "no such place" + }, + { + "appid": 3299080, + "normalized_name": "snow resort simulator" + }, + { + "appid": 3299100, + "normalized_name": "null transit" + }, + { + "appid": 3299130, + "normalized_name": "mayhem maidens" + }, + { + "appid": 3299140, + "normalized_name": "hogs rampage" + }, + { + "appid": 3299150, + "normalized_name": "完美天劫" + }, + { + "appid": 3299160, + "normalized_name": "weldiver" + }, + { + "appid": 3299190, + "normalized_name": "lsd dream emulator retro" + }, + { + "appid": 3299230, + "normalized_name": "above the horizon" + }, + { + "appid": 3299340, + "normalized_name": "游郭惊梦" + }, + { + "appid": 3299350, + "normalized_name": "definitely not addictive" + }, + { + "appid": 3299360, + "normalized_name": "binary station" + }, + { + "appid": 3299380, + "normalized_name": "usagi sekai bunny shaman" + }, + { + "appid": 3299440, + "normalized_name": "瘋狂地下餐酒館《crazy dungeon tavern》" + }, + { + "appid": 3299450, + "normalized_name": "calame" + }, + { + "appid": 3299460, + "normalized_name": "arcade empire tycoon" + }, + { + "appid": 3299470, + "normalized_name": "soup n' shots" + }, + { + "appid": 3299500, + "normalized_name": "squire road the quest for the black knight" + }, + { + "appid": 3299520, + "normalized_name": "king of cards" + }, + { + "appid": 3299550, + "normalized_name": "mutant legion" + }, + { + "appid": 3299620, + "normalized_name": "artem" + }, + { + "appid": 3299710, + "normalized_name": "dicks and dragons puzzle game" + }, + { + "appid": 3299750, + "normalized_name": "cornhole duels" + }, + { + "appid": 3299760, + "normalized_name": "nexus touch spider" + }, + { + "appid": 3299780, + "normalized_name": "grinding guilds" + }, + { + "appid": 3299810, + "normalized_name": "gamba simulator" + }, + { + "appid": 3299850, + "normalized_name": "the last phoenix" + }, + { + "appid": 3299870, + "normalized_name": "late night sausage" + }, + { + "appid": 3299880, + "normalized_name": "the black maple anomaly" + }, + { + "appid": 3299900, + "normalized_name": "tensor" + }, + { + "appid": 3299920, + "normalized_name": "liminal point" + }, + { + "appid": 3299940, + "normalized_name": "omega luma the first battle" + }, + { + "appid": 3299960, + "normalized_name": "doodle knight" + }, + { + "appid": 3299980, + "normalized_name": "liege of the labyrinth" + }, + { + "appid": 3299990, + "normalized_name": "memoralysis the scorched home" + }, + { + "appid": 3300050, + "normalized_name": "system breakdown" + }, + { + "appid": 3300060, + "normalized_name": "enchanted a magic shop" + }, + { + "appid": 3300090, + "normalized_name": "bloom a puzzle adventure" + }, + { + "appid": 3300140, + "normalized_name": "bumper blitz td" + }, + { + "appid": 3300170, + "normalized_name": "simple clicker" + }, + { + "appid": 3300240, + "normalized_name": "the cyriaan chronicles" + }, + { + "appid": 3300260, + "normalized_name": "8 ball reborn" + }, + { + "appid": 3300280, + "normalized_name": "germ blasters" + }, + { + "appid": 3300300, + "normalized_name": "witches' hand" + }, + { + "appid": 3300350, + "normalized_name": "campgrounds adventures the big oopsie" + }, + { + "appid": 3300370, + "normalized_name": "astrozar" + }, + { + "appid": 3300400, + "normalized_name": "summer in the city" + }, + { + "appid": 3300410, + "normalized_name": "garten of banban 0" + }, + { + "appid": 3300470, + "normalized_name": "songs of rats" + }, + { + "appid": 3300480, + "normalized_name": "pocket mystery ep dx" + }, + { + "appid": 3300490, + "normalized_name": "midnight release" + }, + { + "appid": 3300500, + "normalized_name": "secret bureau" + }, + { + "appid": 3300510, + "normalized_name": "bricks over blocks" + }, + { + "appid": 3300580, + "normalized_name": "mushroom jump! miracle" + }, + { + "appid": 3300590, + "normalized_name": "3.2m2" + }, + { + "appid": 3300620, + "normalized_name": "bonds of ecstasy" + }, + { + "appid": 3300640, + "normalized_name": "incompenauts" + }, + { + "appid": 3300670, + "normalized_name": "elevator 25" + }, + { + "appid": 3300740, + "normalized_name": "怪谈事务所:破界" + }, + { + "appid": 3300760, + "normalized_name": "lootmage" + }, + { + "appid": 3300800, + "normalized_name": "her trees puzzle dream" + }, + { + "appid": 3300820, + "normalized_name": "クジライフ" + }, + { + "appid": 3300830, + "normalized_name": "the abandoned levels" + }, + { + "appid": 3300840, + "normalized_name": "pharaoh's riches" + }, + { + "appid": 3300910, + "normalized_name": "snake king" + }, + { + "appid": 3300920, + "normalized_name": "go! chicken jump!" + }, + { + "appid": 3300950, + "normalized_name": "dimensionalillusion" + }, + { + "appid": 3300960, + "normalized_name": "winteringsquirrel" + }, + { + "appid": 3301000, + "normalized_name": "the vast white" + }, + { + "appid": 3301010, + "normalized_name": "den den tokyo horror" + }, + { + "appid": 3301020, + "normalized_name": "echoes of nara" + }, + { + "appid": 3301040, + "normalized_name": "teetiny online smart tower life" + }, + { + "appid": 3301070, + "normalized_name": "uwar" + }, + { + "appid": 3301080, + "normalized_name": "how west clement was kinda won" + }, + { + "appid": 3301090, + "normalized_name": "realescape" + }, + { + "appid": 3301100, + "normalized_name": "buttons" + }, + { + "appid": 3301140, + "normalized_name": "xtreme club racing" + }, + { + "appid": 3301160, + "normalized_name": "goblin assault tower defense" + }, + { + "appid": 3301180, + "normalized_name": "aro dangerous campaign" + }, + { + "appid": 3301210, + "normalized_name": "loopido" + }, + { + "appid": 3301260, + "normalized_name": "one minute" + }, + { + "appid": 3301280, + "normalized_name": "refighter" + }, + { + "appid": 3301290, + "normalized_name": "soul nexus" + }, + { + "appid": 3301300, + "normalized_name": "wild terrain" + }, + { + "appid": 3301310, + "normalized_name": "hungry neighbors" + }, + { + "appid": 3301350, + "normalized_name": "sleep well cemetery" + }, + { + "appid": 3301370, + "normalized_name": "comatose" + }, + { + "appid": 3301380, + "normalized_name": "sam vs (a lot of) djs" + }, + { + "appid": 3301400, + "normalized_name": "bully ball brigade" + }, + { + "appid": 3301410, + "normalized_name": "drunk alien" + }, + { + "appid": 3301420, + "normalized_name": "back in the swamp" + }, + { + "appid": 3301430, + "normalized_name": "lustra lachea's tale" + }, + { + "appid": 3301480, + "normalized_name": "mortality" + }, + { + "appid": 3301500, + "normalized_name": "surplus" + }, + { + "appid": 3301510, + "normalized_name": "tomo endless blue" + }, + { + "appid": 3301520, + "normalized_name": "cozy cooking lo fi beats" + }, + { + "appid": 3301530, + "normalized_name": "boogey hunters" + }, + { + "appid": 3301580, + "normalized_name": "i had a friend" + }, + { + "appid": 3301610, + "normalized_name": "streamer manager simulator 💖" + }, + { + "appid": 3301650, + "normalized_name": "superstellar" + }, + { + "appid": 3301660, + "normalized_name": "sexy memory puzzle bdsm restroom" + }, + { + "appid": 3301670, + "normalized_name": "my goth goblin princess" + }, + { + "appid": 3301730, + "normalized_name": "art of evil" + }, + { + "appid": 3301740, + "normalized_name": "tcg master trader" + }, + { + "appid": 3301810, + "normalized_name": "never stop gaming an epic video game store simulation" + }, + { + "appid": 3301820, + "normalized_name": "class of heroes 3 remaster" + }, + { + "appid": 3301850, + "normalized_name": "the swamp daughter" + }, + { + "appid": 3301870, + "normalized_name": "ヒドラハイドランド" + }, + { + "appid": 3301890, + "normalized_name": "emberfall" + }, + { + "appid": 3301900, + "normalized_name": "venusblood ragnarok international" + }, + { + "appid": 3301910, + "normalized_name": "dream force warrior rpg" + }, + { + "appid": 3301970, + "normalized_name": "backrooms new gate" + }, + { + "appid": 3302080, + "normalized_name": "effulgence rpg" + }, + { + "appid": 3302090, + "normalized_name": "rust bucket" + }, + { + "appid": 3302110, + "normalized_name": "arthur's quest between the big sword and the bara spirits" + }, + { + "appid": 3302140, + "normalized_name": "gatestodian" + }, + { + "appid": 3302150, + "normalized_name": "karaoke love song" + }, + { + "appid": 3302160, + "normalized_name": "octohill ski tycoon" + }, + { + "appid": 3302190, + "normalized_name": "realm rift the hunt across worlds" + }, + { + "appid": 3302270, + "normalized_name": "bounce quest" + }, + { + "appid": 3302350, + "normalized_name": "jump over it !" + }, + { + "appid": 3302360, + "normalized_name": "mystic market" + }, + { + "appid": 3302370, + "normalized_name": "crux diaries rpg" + }, + { + "appid": 3302380, + "normalized_name": "mercy station zombie hospital simulation" + }, + { + "appid": 3302410, + "normalized_name": "lancelot" + }, + { + "appid": 3302460, + "normalized_name": "enerdusk" + }, + { + "appid": 3302500, + "normalized_name": "liquidator" + }, + { + "appid": 3302510, + "normalized_name": "liquidator 2 welcome to hell" + }, + { + "appid": 3302560, + "normalized_name": "フェスバ+ 〜festibattle〜" + }, + { + "appid": 3302570, + "normalized_name": "backrooms 0" + }, + { + "appid": 3302600, + "normalized_name": "itty bitty little kitties" + }, + { + "appid": 3302610, + "normalized_name": "hellgate senigallia remake" + }, + { + "appid": 3302620, + "normalized_name": "live well" + }, + { + "appid": 3302650, + "normalized_name": "conscience" + }, + { + "appid": 3302660, + "normalized_name": "past mistakes act i" + }, + { + "appid": 3302680, + "normalized_name": "mojicraft" + }, + { + "appid": 3302710, + "normalized_name": "clumsy champions" + }, + { + "appid": 3302740, + "normalized_name": "supernatural squad" + }, + { + "appid": 3302800, + "normalized_name": "eclipse" + }, + { + "appid": 3302850, + "normalized_name": "hate gem rise of demon" + }, + { + "appid": 3302880, + "normalized_name": "curry princess gold" + }, + { + "appid": 3302900, + "normalized_name": "水たまりのスペクトル" + }, + { + "appid": 3302910, + "normalized_name": "wanted?" + }, + { + "appid": 3302950, + "normalized_name": "blu dude in the quest of reality in time" + }, + { + "appid": 3302960, + "normalized_name": "dark times" + }, + { + "appid": 3303010, + "normalized_name": "katana dragon" + }, + { + "appid": 3303070, + "normalized_name": "song of aria" + }, + { + "appid": 3303100, + "normalized_name": "sweet fantasy" + }, + { + "appid": 3303140, + "normalized_name": "city folding" + }, + { + "appid": 3303150, + "normalized_name": "无尽塔防:活下去" + }, + { + "appid": 3303180, + "normalized_name": "sweet slaughter" + }, + { + "appid": 3303230, + "normalized_name": "backrooms level x" + }, + { + "appid": 3303250, + "normalized_name": "escape the office vr" + }, + { + "appid": 3303290, + "normalized_name": "kira kira magical stars" + }, + { + "appid": 3303320, + "normalized_name": "kraken city" + }, + { + "appid": 3303340, + "normalized_name": "zomb zerro 999" + }, + { + "appid": 3303350, + "normalized_name": "don't panic" + }, + { + "appid": 3303370, + "normalized_name": "evil water ep1" + }, + { + "appid": 3303400, + "normalized_name": "blank spaces" + }, + { + "appid": 3303420, + "normalized_name": "hot slice lust exposed" + }, + { + "appid": 3303480, + "normalized_name": "build the sun" + }, + { + "appid": 3303520, + "normalized_name": "of roots and gears" + }, + { + "appid": 3303530, + "normalized_name": "just grill the steak!" + }, + { + "appid": 3303540, + "normalized_name": "polarity warthog" + }, + { + "appid": 3303550, + "normalized_name": "convicts collection" + }, + { + "appid": 3303560, + "normalized_name": "gridvania" + }, + { + "appid": 3303590, + "normalized_name": "ghost in the house" + }, + { + "appid": 3303630, + "normalized_name": "niblet rescues" + }, + { + "appid": 3303640, + "normalized_name": "heat seekers" + }, + { + "appid": 3303660, + "normalized_name": "chibi ninja shino kun 2" + }, + { + "appid": 3303670, + "normalized_name": "heist schoolers" + }, + { + "appid": 3303680, + "normalized_name": "sexy memory puzzle futanari bdsm" + }, + { + "appid": 3303700, + "normalized_name": "vagnerun" + }, + { + "appid": 3303720, + "normalized_name": "dataclysm" + }, + { + "appid": 3303740, + "normalized_name": "shyondemic" + }, + { + "appid": 3303770, + "normalized_name": "eagle special forces" + }, + { + "appid": 3303780, + "normalized_name": "code bunny" + }, + { + "appid": 3303790, + "normalized_name": "death delivery" + }, + { + "appid": 3303820, + "normalized_name": "gravewatcher nightfall" + }, + { + "appid": 3303870, + "normalized_name": "underground security inc" + }, + { + "appid": 3303890, + "normalized_name": "alien black ops" + }, + { + "appid": 3303910, + "normalized_name": "slice suffer serve!" + }, + { + "appid": 3303920, + "normalized_name": "nightclub manager simulator" + }, + { + "appid": 3303940, + "normalized_name": "aquadark" + }, + { + "appid": 3303950, + "normalized_name": "tictactoetwo" + }, + { + "appid": 3303990, + "normalized_name": "cube's quest" + }, + { + "appid": 3304010, + "normalized_name": "blackblade revenant" + }, + { + "appid": 3304020, + "normalized_name": "void protocol" + }, + { + "appid": 3304030, + "normalized_name": "ika's odyssey" + }, + { + "appid": 3304050, + "normalized_name": "日進月歩" + }, + { + "appid": 3304070, + "normalized_name": "deliria vr" + }, + { + "appid": 3304110, + "normalized_name": "868 back" + }, + { + "appid": 3304190, + "normalized_name": "death climbing" + }, + { + "appid": 3304220, + "normalized_name": "emily's bizarre dreams" + }, + { + "appid": 3304280, + "normalized_name": "my chandroid sweetheart" + }, + { + "appid": 3304320, + "normalized_name": "中国足球模拟器 (cfs)" + }, + { + "appid": 3304350, + "normalized_name": "ambush all sides" + }, + { + "appid": 3304370, + "normalized_name": "onslaught" + }, + { + "appid": 3304390, + "normalized_name": "dusty dunes tycoon" + }, + { + "appid": 3304400, + "normalized_name": "trump vs harris clicker" + }, + { + "appid": 3304410, + "normalized_name": "void echo" + }, + { + "appid": 3304420, + "normalized_name": "astrolabus" + }, + { + "appid": 3304430, + "normalized_name": "vasrak kingdom battle on the frontier" + }, + { + "appid": 3304460, + "normalized_name": "alien cat story" + }, + { + "appid": 3304490, + "normalized_name": "the japanese calligraphy" + }, + { + "appid": 3304500, + "normalized_name": "cloud piercer" + }, + { + "appid": 3304510, + "normalized_name": "phantom's estate" + }, + { + "appid": 3304540, + "normalized_name": "abstract dwelling" + }, + { + "appid": 3304570, + "normalized_name": "schoolteacher simulator" + }, + { + "appid": 3304580, + "normalized_name": "auto crisis" + }, + { + "appid": 3304590, + "normalized_name": "tales of tirunia" + }, + { + "appid": 3304610, + "normalized_name": "elgem td" + }, + { + "appid": 3304630, + "normalized_name": "hidden evil" + }, + { + "appid": 3304640, + "normalized_name": "the weather gage" + }, + { + "appid": 3304660, + "normalized_name": "santa is real" + }, + { + "appid": 3304700, + "normalized_name": "ai桌面伴侣 艾露芙 erufuai" + }, + { + "appid": 3304730, + "normalized_name": "back to back" + }, + { + "appid": 3304750, + "normalized_name": "mansion of the dead" + }, + { + "appid": 3304760, + "normalized_name": "ethereal sunder" + }, + { + "appid": 3304770, + "normalized_name": "exposed livestream" + }, + { + "appid": 3304780, + "normalized_name": "echoes of the lost" + }, + { + "appid": 3304800, + "normalized_name": "f20 eclipse" + }, + { + "appid": 3304820, + "normalized_name": "vespia shield of aberration" + }, + { + "appid": 3304830, + "normalized_name": "outside" + }, + { + "appid": 3304840, + "normalized_name": "春の音はまるで君に似てて" + }, + { + "appid": 3304930, + "normalized_name": "retro dungeon slayer" + }, + { + "appid": 3304950, + "normalized_name": "wacky teppanyaki cooking chaos" + }, + { + "appid": 3304980, + "normalized_name": "the duchess curse" + }, + { + "appid": 3304990, + "normalized_name": "starship destroyer" + }, + { + "appid": 3305060, + "normalized_name": "escape floor 13" + }, + { + "appid": 3305070, + "normalized_name": "real life flappy bird" + }, + { + "appid": 3305080, + "normalized_name": "one day at a time" + }, + { + "appid": 3305110, + "normalized_name": "floppy/write" + }, + { + "appid": 3305120, + "normalized_name": "dead exhale" + }, + { + "appid": 3305180, + "normalized_name": "oblivion's gate" + }, + { + "appid": 3305190, + "normalized_name": "one more plate" + }, + { + "appid": 3305200, + "normalized_name": "walking with diet" + }, + { + "appid": 3305210, + "normalized_name": "2025 tobi" + }, + { + "appid": 3305230, + "normalized_name": "kalaha" + }, + { + "appid": 3305330, + "normalized_name": "amozon extraplanetary colonization program" + }, + { + "appid": 3305350, + "normalized_name": "night at the office" + }, + { + "appid": 3305360, + "normalized_name": "扭扭乐(twist logic)" + }, + { + "appid": 3305370, + "normalized_name": "molest" + }, + { + "appid": 3305380, + "normalized_name": "interpret" + }, + { + "appid": 3305390, + "normalized_name": "investigate" + }, + { + "appid": 3305430, + "normalized_name": "the short trip" + }, + { + "appid": 3305490, + "normalized_name": "obscurefiend" + }, + { + "appid": 3305530, + "normalized_name": "clean it up!" + }, + { + "appid": 3305540, + "normalized_name": "a night duty" + }, + { + "appid": 3305630, + "normalized_name": "sword tale lost excalibur" + }, + { + "appid": 3305640, + "normalized_name": "echoes of madness the hawthorne case" + }, + { + "appid": 3305650, + "normalized_name": "dinosaurs in place" + }, + { + "appid": 3305700, + "normalized_name": "13km deep" + }, + { + "appid": 3305710, + "normalized_name": "태엽시계의 왕좌 리마스터" + }, + { + "appid": 3305740, + "normalized_name": "life in rivone" + }, + { + "appid": 3305750, + "normalized_name": "timemoon" + }, + { + "appid": 3305770, + "normalized_name": "flipper frenzy" + }, + { + "appid": 3305830, + "normalized_name": "koumi jima after training with konomi chan live2d" + }, + { + "appid": 3305840, + "normalized_name": "custodes of elf hearts" + }, + { + "appid": 3305890, + "normalized_name": "happy holes" + }, + { + "appid": 3305900, + "normalized_name": "dirty halloween" + }, + { + "appid": 3305920, + "normalized_name": "cubeycollect" + }, + { + "appid": 3305930, + "normalized_name": "panzer strike" + }, + { + "appid": 3305940, + "normalized_name": "ザワークラウトの中で自転車を漕ぐ" + }, + { + "appid": 3305960, + "normalized_name": "怨嗟の村~village of grudges~" + }, + { + "appid": 3305970, + "normalized_name": "monday syndrome" + }, + { + "appid": 3305980, + "normalized_name": "star life" + }, + { + "appid": 3306030, + "normalized_name": "fruit stand fortune" + }, + { + "appid": 3306040, + "normalized_name": "kiana & biscuit pirates on a visit!" + }, + { + "appid": 3306050, + "normalized_name": "potion problems" + }, + { + "appid": 3306080, + "normalized_name": "chef gecko" + }, + { + "appid": 3306090, + "normalized_name": "the cursed ritual" + }, + { + "appid": 3306140, + "normalized_name": "lonely house" + }, + { + "appid": 3306150, + "normalized_name": "my sticker zoo" + }, + { + "appid": 3306160, + "normalized_name": "realdol" + }, + { + "appid": 3306170, + "normalized_name": "big burger store" + }, + { + "appid": 3306180, + "normalized_name": "seyahat a journey to mecca" + }, + { + "appid": 3306200, + "normalized_name": "futanari★coffee shop" + }, + { + "appid": 3306280, + "normalized_name": "vartra abyss" + }, + { + "appid": 3306300, + "normalized_name": "apollo" + }, + { + "appid": 3306310, + "normalized_name": "welcome to a sexy open world!" + }, + { + "appid": 3306350, + "normalized_name": "i am customer support." + }, + { + "appid": 3306390, + "normalized_name": "scrapbot manual" + }, + { + "appid": 3306400, + "normalized_name": "琉隐神渡" + }, + { + "appid": 3306410, + "normalized_name": "angryfruitis" + }, + { + "appid": 3306460, + "normalized_name": "clashes in elemental battles" + }, + { + "appid": 3306470, + "normalized_name": "into death and beyond" + }, + { + "appid": 3306480, + "normalized_name": "dracamar" + }, + { + "appid": 3306780, + "normalized_name": "cafe dash cooking diner game" + }, + { + "appid": 3306790, + "normalized_name": "settle and battle new empires" + }, + { + "appid": 3306800, + "normalized_name": "freeflow" + }, + { + "appid": 3306870, + "normalized_name": "恋のナースコール nurse call" + }, + { + "appid": 3306890, + "normalized_name": "dungeons of shalnor" + }, + { + "appid": 3306900, + "normalized_name": "a few days with emma" + }, + { + "appid": 3306910, + "normalized_name": "hentai elizabeth" + }, + { + "appid": 3306920, + "normalized_name": "cosmic fear" + }, + { + "appid": 3306940, + "normalized_name": "dragon eclipse arena" + }, + { + "appid": 3306950, + "normalized_name": "runes of legend" + }, + { + "appid": 3306960, + "normalized_name": "tinymon rpg" + }, + { + "appid": 3306970, + "normalized_name": "hina cast ! after dark" + }, + { + "appid": 3306990, + "normalized_name": "corner shop nightshift" + }, + { + "appid": 3307010, + "normalized_name": "soldiers vs zombies tower defense" + }, + { + "appid": 3307020, + "normalized_name": "an empty void" + }, + { + "appid": 3307030, + "normalized_name": "扑克大乱斗" + }, + { + "appid": 3307050, + "normalized_name": "凛冬将至 winter is coming" + }, + { + "appid": 3307110, + "normalized_name": "anime scary teacher 3d" + }, + { + "appid": 3307120, + "normalized_name": "kitty powers' matchmaker makeover" + }, + { + "appid": 3307130, + "normalized_name": "shadows at bay" + }, + { + "appid": 3307200, + "normalized_name": "jewel match solitaire winterscapes 3 collector's" + }, + { + "appid": 3307230, + "normalized_name": "crimson apostle" + }, + { + "appid": 3307240, + "normalized_name": "voidwalker call of insomnia" + }, + { + "appid": 3307250, + "normalized_name": "find the flaw" + }, + { + "appid": 3307270, + "normalized_name": "the backrooms anomaly containment unit" + }, + { + "appid": 3307300, + "normalized_name": "chained 2 violence" + }, + { + "appid": 3307350, + "normalized_name": "condenado sem saída" + }, + { + "appid": 3307390, + "normalized_name": "gizmo" + }, + { + "appid": 3307410, + "normalized_name": "housekeeping to room 501" + }, + { + "appid": 3307440, + "normalized_name": "living shadows" + }, + { + "appid": 3307460, + "normalized_name": "monster shuttle" + }, + { + "appid": 3307560, + "normalized_name": "feedback" + }, + { + "appid": 3307580, + "normalized_name": "neon sliders" + }, + { + "appid": 3307610, + "normalized_name": "golf battle" + }, + { + "appid": 3307670, + "normalized_name": "math4topdogs" + }, + { + "appid": 3307710, + "normalized_name": "grove" + }, + { + "appid": 3307750, + "normalized_name": "xontainer meta space" + }, + { + "appid": 3307850, + "normalized_name": "candy hunt" + }, + { + "appid": 3307860, + "normalized_name": "the lanterne of light" + }, + { + "appid": 3307880, + "normalized_name": "this game was made by ai" + }, + { + "appid": 3307980, + "normalized_name": "unpunished" + }, + { + "appid": 3308010, + "normalized_name": "wheelie city" + }, + { + "appid": 3308030, + "normalized_name": "death in balamber" + }, + { + "appid": 3308040, + "normalized_name": "the slime races" + }, + { + "appid": 3308110, + "normalized_name": "sunset of death" + }, + { + "appid": 3308120, + "normalized_name": "cha recoil" + }, + { + "appid": 3308140, + "normalized_name": "who needs to study?" + }, + { + "appid": 3308150, + "normalized_name": "handstand hank" + }, + { + "appid": 3308180, + "normalized_name": "iron skies" + }, + { + "appid": 3308190, + "normalized_name": "ringer" + }, + { + "appid": 3308200, + "normalized_name": "tombwater" + }, + { + "appid": 3308210, + "normalized_name": "store wars prologue multiplayer shop simulator" + }, + { + "appid": 3308220, + "normalized_name": "galatico" + }, + { + "appid": 3308230, + "normalized_name": "brawlers of the west prologue" + }, + { + "appid": 3308240, + "normalized_name": "allophobia" + }, + { + "appid": 3308280, + "normalized_name": "synthrome" + }, + { + "appid": 3308310, + "normalized_name": "button game 10 minutes war" + }, + { + "appid": 3308320, + "normalized_name": "optimal conditions for a sacrifice" + }, + { + "appid": 3308330, + "normalized_name": "hardcore circus" + }, + { + "appid": 3308350, + "normalized_name": "orion's belt expedition" + }, + { + "appid": 3308380, + "normalized_name": "at sea" + }, + { + "appid": 3308540, + "normalized_name": "dark return" + }, + { + "appid": 3308550, + "normalized_name": "sky end market" + }, + { + "appid": 3308560, + "normalized_name": "gugu pizza delivering pizza to the space station? boss this is just not right!" + }, + { + "appid": 3308580, + "normalized_name": "360hexaworld" + }, + { + "appid": 3308670, + "normalized_name": "girls' frontline 2 exilium" + }, + { + "appid": 3308800, + "normalized_name": "银河先锋" + }, + { + "appid": 3308870, + "normalized_name": "and roger" + }, + { + "appid": 3308920, + "normalized_name": "depths of endor dungeon crawler" + }, + { + "appid": 3308930, + "normalized_name": "re shrinking conflict vr indoor air battle" + }, + { + "appid": 3308940, + "normalized_name": "specular cranny" + }, + { + "appid": 3308950, + "normalized_name": "star scourge" + }, + { + "appid": 3308960, + "normalized_name": "conquest tactics realm of sin" + }, + { + "appid": 3309020, + "normalized_name": "幸运牌" + }, + { + "appid": 3309070, + "normalized_name": "zombie must dead!" + }, + { + "appid": 3309130, + "normalized_name": "monstrix tcg card shop" + }, + { + "appid": 3309140, + "normalized_name": "ragnar" + }, + { + "appid": 3309150, + "normalized_name": "puzzleverse" + }, + { + "appid": 3309160, + "normalized_name": "chronocracy" + }, + { + "appid": 3309210, + "normalized_name": "time's abyss" + }, + { + "appid": 3309220, + "normalized_name": "path to heaven" + }, + { + "appid": 3309240, + "normalized_name": "creeping clark" + }, + { + "appid": 3309250, + "normalized_name": "the rift tower defense" + }, + { + "appid": 3309270, + "normalized_name": "hero's odyssey summoned into ancient greece with a quest i didn't ask for!" + }, + { + "appid": 3309290, + "normalized_name": "black raven" + }, + { + "appid": 3309360, + "normalized_name": "graveborn" + }, + { + "appid": 3309380, + "normalized_name": "love in tiny spaces" + }, + { + "appid": 3309390, + "normalized_name": "同一天~永無止境的慶功宴~" + }, + { + "appid": 3309440, + "normalized_name": "罪孽庄园 manor of sins" + }, + { + "appid": 3309450, + "normalized_name": "ユニティちゃん kick & blow" + }, + { + "appid": 3309460, + "normalized_name": "demon knives" + }, + { + "appid": 3309510, + "normalized_name": "coloring book for adults 2 family" + }, + { + "appid": 3309620, + "normalized_name": "lavender dream" + }, + { + "appid": 3309730, + "normalized_name": "college gay sex episode 8" + }, + { + "appid": 3309750, + "normalized_name": "as long as you're here" + }, + { + "appid": 3309760, + "normalized_name": "endless leveling in mycelium dungeons from zero to infinity" + }, + { + "appid": 3309850, + "normalized_name": "the gold maker rendez vous with death" + }, + { + "appid": 3309870, + "normalized_name": "crtx a psychological horror puzzle" + }, + { + "appid": 3309880, + "normalized_name": "take that mainstage!" + }, + { + "appid": 3309950, + "normalized_name": "planetx" + }, + { + "appid": 3309980, + "normalized_name": "salve a fantasia" + }, + { + "appid": 3310000, + "normalized_name": "chumini tiny army" + }, + { + "appid": 3310020, + "normalized_name": "top burger shop simulator" + }, + { + "appid": 3310090, + "normalized_name": "break shot hero" + }, + { + "appid": 3310100, + "normalized_name": "raaabix le" + }, + { + "appid": 3310110, + "normalized_name": "big burger tower" + }, + { + "appid": 3310160, + "normalized_name": "beware tomorrow" + }, + { + "appid": 3310170, + "normalized_name": "shrooms! tower defence" + }, + { + "appid": 3310180, + "normalized_name": "alex and the aliens" + }, + { + "appid": 3310190, + "normalized_name": "arima lodge" + }, + { + "appid": 3310200, + "normalized_name": "quadruped match" + }, + { + "appid": 3310230, + "normalized_name": "the replacables" + }, + { + "appid": 3310260, + "normalized_name": "accolade sports collection (qubyte classics)" + }, + { + "appid": 3310280, + "normalized_name": "new active object" + }, + { + "appid": 3310320, + "normalized_name": "cacotopia" + }, + { + "appid": 3310330, + "normalized_name": "星尘舰队" + }, + { + "appid": 3310350, + "normalized_name": "tactical battles" + }, + { + "appid": 3310390, + "normalized_name": "super space frogs" + }, + { + "appid": 3310410, + "normalized_name": "dominated by sadistic sensei" + }, + { + "appid": 3310510, + "normalized_name": "top sellers ecommerce simulator" + }, + { + "appid": 3310520, + "normalized_name": "plastomorphosis final corruption" + }, + { + "appid": 3310530, + "normalized_name": "fairground online" + }, + { + "appid": 3310540, + "normalized_name": "baker bros's quarantine" + }, + { + "appid": 3310560, + "normalized_name": "a safe place" + }, + { + "appid": 3310570, + "normalized_name": "night plane" + }, + { + "appid": 3310590, + "normalized_name": "lurking danger" + }, + { + "appid": 3310640, + "normalized_name": "幻世战旗" + }, + { + "appid": 3310670, + "normalized_name": "solo defender" + }, + { + "appid": 3310680, + "normalized_name": "shadow in my blood" + }, + { + "appid": 3310740, + "normalized_name": "幻想世纪:缘起" + }, + { + "appid": 3310750, + "normalized_name": "finnish pub simulator" + }, + { + "appid": 3310830, + "normalized_name": "linked" + }, + { + "appid": 3310850, + "normalized_name": "project robot" + }, + { + "appid": 3310870, + "normalized_name": "dictocracy" + }, + { + "appid": 3310880, + "normalized_name": "黄金公寓" + }, + { + "appid": 3310890, + "normalized_name": "pew pew gaem 3" + }, + { + "appid": 3310910, + "normalized_name": "space walk" + }, + { + "appid": 3310930, + "normalized_name": "hue hooligans" + }, + { + "appid": 3310940, + "normalized_name": "神明高中生 cosmic high schooler" + }, + { + "appid": 3310950, + "normalized_name": "nightmare frontier" + }, + { + "appid": 3310970, + "normalized_name": "still water" + }, + { + "appid": 3310990, + "normalized_name": "summer of hengyang in 1944" + }, + { + "appid": 3311180, + "normalized_name": "우주 교신" + }, + { + "appid": 3311220, + "normalized_name": "童话塔防 fairy tale tower defense" + }, + { + "appid": 3311360, + "normalized_name": "lightbringer" + }, + { + "appid": 3311380, + "normalized_name": "netveil" + }, + { + "appid": 3311460, + "normalized_name": "n.r.v" + }, + { + "appid": 3311470, + "normalized_name": "no exit" + }, + { + "appid": 3311520, + "normalized_name": "4番線 | platform 4" + }, + { + "appid": 3311550, + "normalized_name": "big adventure trip to europe 9 collector's" + }, + { + "appid": 3311560, + "normalized_name": "重返现场:真人版" + }, + { + "appid": 3311570, + "normalized_name": "frontline assault corps ww2" + }, + { + "appid": 3311610, + "normalized_name": "souls that wait penunggu" + }, + { + "appid": 3311670, + "normalized_name": "bento blocks" + }, + { + "appid": 3311690, + "normalized_name": "vtubers network" + }, + { + "appid": 3311700, + "normalized_name": "orestruck space miner" + }, + { + "appid": 3311710, + "normalized_name": "hentai link" + }, + { + "appid": 3311730, + "normalized_name": "dreamland farm" + }, + { + "appid": 3311740, + "normalized_name": "the cabin factory" + }, + { + "appid": 3311840, + "normalized_name": "karakuri ninja vr" + }, + { + "appid": 3311980, + "normalized_name": "one of the many" + }, + { + "appid": 3312020, + "normalized_name": "lost in anomaly" + }, + { + "appid": 3312030, + "normalized_name": "ai learns to drive" + }, + { + "appid": 3312040, + "normalized_name": "space diner simulator" + }, + { + "appid": 3312060, + "normalized_name": "beast survivor" + }, + { + "appid": 3312100, + "normalized_name": "run bird run!" + }, + { + "appid": 3312130, + "normalized_name": "factory town 2 paradise" + }, + { + "appid": 3312180, + "normalized_name": "automatica" + }, + { + "appid": 3312190, + "normalized_name": "pathogen code omega" + }, + { + "appid": 3312200, + "normalized_name": "ad astra infinita the new evolution" + }, + { + "appid": 3312230, + "normalized_name": "dead christmas" + }, + { + "appid": 3312250, + "normalized_name": "fear of faith" + }, + { + "appid": 3312290, + "normalized_name": "dimension l" + }, + { + "appid": 3312300, + "normalized_name": "maskared" + }, + { + "appid": 3312310, + "normalized_name": "devil slayer raksasi 2 / 斩妖raksasi2" + }, + { + "appid": 3312330, + "normalized_name": "burn the witch toll of the bell bearer" + }, + { + "appid": 3312340, + "normalized_name": "风之歌" + }, + { + "appid": 3312350, + "normalized_name": "war angels" + }, + { + "appid": 3312400, + "normalized_name": "lust o’ heaven" + }, + { + "appid": 3312410, + "normalized_name": "i touched tips with a femboy" + }, + { + "appid": 3312420, + "normalized_name": "defender's dynasty" + }, + { + "appid": 3312430, + "normalized_name": "second odium" + }, + { + "appid": 3312510, + "normalized_name": "1000 waves" + }, + { + "appid": 3312530, + "normalized_name": "deathrun" + }, + { + "appid": 3312540, + "normalized_name": "sacred ground" + }, + { + "appid": 3312600, + "normalized_name": "corporate chaos" + }, + { + "appid": 3312670, + "normalized_name": "seasons of solitude" + }, + { + "appid": 3312700, + "normalized_name": "king of hoops" + }, + { + "appid": 3312720, + "normalized_name": "juggler" + }, + { + "appid": 3312730, + "normalized_name": "broken world save your children" + }, + { + "appid": 3312740, + "normalized_name": "doomed brigade" + }, + { + "appid": 3312820, + "normalized_name": "the automaton of second london" + }, + { + "appid": 3312890, + "normalized_name": "bfsh [to back find safe a home]" + }, + { + "appid": 3313070, + "normalized_name": "frontier forge" + }, + { + "appid": 3313130, + "normalized_name": "the cloud vr" + }, + { + "appid": 3313140, + "normalized_name": "punishment special" + }, + { + "appid": 3313160, + "normalized_name": "vampire castle vr maiden's adventure" + }, + { + "appid": 3313180, + "normalized_name": "blade n' blood" + }, + { + "appid": 3313200, + "normalized_name": "cat snap" + }, + { + "appid": 3313210, + "normalized_name": "jeux bleu" + }, + { + "appid": 3313230, + "normalized_name": "saloon king" + }, + { + "appid": 3313290, + "normalized_name": "speed lane" + }, + { + "appid": 3313310, + "normalized_name": "fishing the abyss" + }, + { + "appid": 3313330, + "normalized_name": "medieval heroes" + }, + { + "appid": 3313350, + "normalized_name": "popo & rob" + }, + { + "appid": 3313390, + "normalized_name": "split souls" + }, + { + "appid": 3313410, + "normalized_name": "刻印战记1:法利兹传" + }, + { + "appid": 3313420, + "normalized_name": "捱光:金瓶梅" + }, + { + "appid": 3313430, + "normalized_name": "spectral sonata" + }, + { + "appid": 3313480, + "normalized_name": "after death" + }, + { + "appid": 3313530, + "normalized_name": "dangerouspath" + }, + { + "appid": 3313540, + "normalized_name": "dairy farm" + }, + { + "appid": 3313560, + "normalized_name": "falco xolon" + }, + { + "appid": 3313580, + "normalized_name": "hunger of heaven" + }, + { + "appid": 3313640, + "normalized_name": "giggy shangri la" + }, + { + "appid": 3313720, + "normalized_name": "今古群侠传" + }, + { + "appid": 3313800, + "normalized_name": "zack in fight" + }, + { + "appid": 3313810, + "normalized_name": "mini star math 4 routes" + }, + { + "appid": 3313830, + "normalized_name": "battle ball" + }, + { + "appid": 3313850, + "normalized_name": "z virus outbreak" + }, + { + "appid": 3313860, + "normalized_name": "frostgrims revenge" + }, + { + "appid": 3313880, + "normalized_name": "hexborn" + }, + { + "appid": 3313930, + "normalized_name": "galactic simulator" + }, + { + "appid": 3313960, + "normalized_name": "пацанская некромантия" + }, + { + "appid": 3313970, + "normalized_name": "lern island letters" + }, + { + "appid": 3314020, + "normalized_name": "拟态生还" + }, + { + "appid": 3314030, + "normalized_name": "人のいない世界に" + }, + { + "appid": 3314040, + "normalized_name": "final exit" + }, + { + "appid": 3314060, + "normalized_name": "the sims legacy collection" + }, + { + "appid": 3314070, + "normalized_name": "the sims 2 legacy collection" + }, + { + "appid": 3314090, + "normalized_name": "エネルギークラッシュ" + }, + { + "appid": 3314140, + "normalized_name": "fevercide" + }, + { + "appid": 3314190, + "normalized_name": "oh no! ufo!" + }, + { + "appid": 3314240, + "normalized_name": "lustful apocalypse" + }, + { + "appid": 3314260, + "normalized_name": "suqare hired gun" + }, + { + "appid": 3314270, + "normalized_name": "planetary delivery boys" + }, + { + "appid": 3314300, + "normalized_name": "experimental gnawer no.44 observation record" + }, + { + "appid": 3314310, + "normalized_name": "cursed house 14" + }, + { + "appid": 3314320, + "normalized_name": "immorally" + }, + { + "appid": 3314340, + "normalized_name": "burgie's cozy kitchen" + }, + { + "appid": 3314350, + "normalized_name": "everforge craft legends" + }, + { + "appid": 3314420, + "normalized_name": "morph" + }, + { + "appid": 3314450, + "normalized_name": "weapon rearing" + }, + { + "appid": 3314600, + "normalized_name": "shapeland" + }, + { + "appid": 3314630, + "normalized_name": "power chips" + }, + { + "appid": 3314670, + "normalized_name": "paragon tower" + }, + { + "appid": 3314690, + "normalized_name": "cardalaxy" + }, + { + "appid": 3314700, + "normalized_name": "kintsugi a journey through the broken pieces" + }, + { + "appid": 3314710, + "normalized_name": "ravensburg" + }, + { + "appid": 3314740, + "normalized_name": "terminal toilet simulator" + }, + { + "appid": 3314780, + "normalized_name": "tinycraft town" + }, + { + "appid": 3314790, + "normalized_name": "cloverpit" + }, + { + "appid": 3314880, + "normalized_name": "exterminium" + }, + { + "appid": 3314980, + "normalized_name": "die by anything" + }, + { + "appid": 3315010, + "normalized_name": "mitch" + }, + { + "appid": 3315020, + "normalized_name": "record/rewind" + }, + { + "appid": 3315120, + "normalized_name": "twilight apartment" + }, + { + "appid": 3315130, + "normalized_name": "in country vietnam" + }, + { + "appid": 3315190, + "normalized_name": "acuaria pet desktop" + }, + { + "appid": 3315230, + "normalized_name": "rocket squad infinity" + }, + { + "appid": 3315280, + "normalized_name": "only a billion?!" + }, + { + "appid": 3315300, + "normalized_name": "separium 12th elevator" + }, + { + "appid": 3315310, + "normalized_name": "六足冒险 the legend of six legged" + }, + { + "appid": 3315320, + "normalized_name": "pico drift" + }, + { + "appid": 3315330, + "normalized_name": "big winner" + }, + { + "appid": 3315370, + "normalized_name": "justicecat 裁决之猫" + }, + { + "appid": 3315400, + "normalized_name": "forest heroes prologue" + }, + { + "appid": 3315490, + "normalized_name": "sorted" + }, + { + "appid": 3315600, + "normalized_name": "party party time 3" + }, + { + "appid": 3315610, + "normalized_name": "cosmo chef" + }, + { + "appid": 3315630, + "normalized_name": "sailbound" + }, + { + "appid": 3315670, + "normalized_name": "necro blade" + }, + { + "appid": 3315690, + "normalized_name": "fps英雄" + }, + { + "appid": 3315700, + "normalized_name": "unsound love" + }, + { + "appid": 3315710, + "normalized_name": "drill to hell clicked too deep" + }, + { + "appid": 3315720, + "normalized_name": "位面领主:海盗与低语 another world pirates and the great old gods" + }, + { + "appid": 3315750, + "normalized_name": "nomanual" + }, + { + "appid": 3315770, + "normalized_name": "铜刀银剑" + }, + { + "appid": 3315800, + "normalized_name": "honey trap amnesia" + }, + { + "appid": 3315820, + "normalized_name": "one more turret" + }, + { + "appid": 3315830, + "normalized_name": "cosmic royale" + }, + { + "appid": 3315840, + "normalized_name": "techquest" + }, + { + "appid": 3315850, + "normalized_name": "lost relics" + }, + { + "appid": 3315880, + "normalized_name": "sweet robot" + }, + { + "appid": 3315890, + "normalized_name": "front lines" + }, + { + "appid": 3315900, + "normalized_name": "nusantara bermuda" + }, + { + "appid": 3315910, + "normalized_name": "swap" + }, + { + "appid": 3315920, + "normalized_name": "一心多用 multimind" + }, + { + "appid": 3316010, + "normalized_name": "dominate & conquer" + }, + { + "appid": 3316020, + "normalized_name": "the president bodyguard sam story" + }, + { + "appid": 3316080, + "normalized_name": "mine of despair" + }, + { + "appid": 3316090, + "normalized_name": "the third pig" + }, + { + "appid": 3316120, + "normalized_name": "sexy memory puzzle gay affair" + }, + { + "appid": 3316150, + "normalized_name": "the doll museum" + }, + { + "appid": 3316170, + "normalized_name": "binarycurse" + }, + { + "appid": 3316180, + "normalized_name": "cuckoo's clock" + }, + { + "appid": 3316190, + "normalized_name": "project neon" + }, + { + "appid": 3316200, + "normalized_name": "interactive sex naughty stepsisters" + }, + { + "appid": 3316210, + "normalized_name": "梧州旅行家" + }, + { + "appid": 3316330, + "normalized_name": "undead hunter part i" + }, + { + "appid": 3316340, + "normalized_name": "the haunted keepsake" + }, + { + "appid": 3316350, + "normalized_name": "flesh made fear" + }, + { + "appid": 3316360, + "normalized_name": "zombie pandemia 2d" + }, + { + "appid": 3316380, + "normalized_name": "lilac 0" + }, + { + "appid": 3316390, + "normalized_name": "we are square" + }, + { + "appid": 3316400, + "normalized_name": "blitz" + }, + { + "appid": 3316410, + "normalized_name": "otherwise" + }, + { + "appid": 3316430, + "normalized_name": "unpatterned cut" + }, + { + "appid": 3316450, + "normalized_name": "olympia festival of the gods" + }, + { + "appid": 3316470, + "normalized_name": "dead trash" + }, + { + "appid": 3316500, + "normalized_name": "dmz nuclear survival" + }, + { + "appid": 3316510, + "normalized_name": "just a village clicker" + }, + { + "appid": 3316570, + "normalized_name": "typing stars" + }, + { + "appid": 3316580, + "normalized_name": "octopticom 3d" + }, + { + "appid": 3316590, + "normalized_name": "infernum vr" + }, + { + "appid": 3316610, + "normalized_name": "orium" + }, + { + "appid": 3316620, + "normalized_name": "prove you can win" + }, + { + "appid": 3316640, + "normalized_name": "neon hearts city" + }, + { + "appid": 3316650, + "normalized_name": "cozy halloween" + }, + { + "appid": 3316660, + "normalized_name": "goo goo grapplers" + }, + { + "appid": 3316690, + "normalized_name": "the travelers" + }, + { + "appid": 3316700, + "normalized_name": "the horror" + }, + { + "appid": 3316750, + "normalized_name": "gamma zero" + }, + { + "appid": 3316800, + "normalized_name": "idle heroes clicker" + }, + { + "appid": 3316830, + "normalized_name": "queen's revenge" + }, + { + "appid": 3316840, + "normalized_name": "z force recon" + }, + { + "appid": 3316880, + "normalized_name": "central bank" + }, + { + "appid": 3316910, + "normalized_name": "uncursed" + }, + { + "appid": 3316920, + "normalized_name": "tds" + }, + { + "appid": 3316930, + "normalized_name": "just up" + }, + { + "appid": 3316940, + "normalized_name": "the legend of heroes trails beyond the horizon" + }, + { + "appid": 3316960, + "normalized_name": "ashes of morgravia" + }, + { + "appid": 3316970, + "normalized_name": "kickoff land!" + }, + { + "appid": 3316990, + "normalized_name": "rogue" + }, + { + "appid": 3317000, + "normalized_name": "blades of crossed hearts" + }, + { + "appid": 3317120, + "normalized_name": "radventure the rise of ryle" + }, + { + "appid": 3317140, + "normalized_name": "art spotting co op" + }, + { + "appid": 3317170, + "normalized_name": "neon knives" + }, + { + "appid": 3317220, + "normalized_name": "weaveborn heroes" + }, + { + "appid": 3317230, + "normalized_name": "killing baby hitler" + }, + { + "appid": 3317350, + "normalized_name": "capacity" + }, + { + "appid": 3317360, + "normalized_name": "equality" + }, + { + "appid": 3317370, + "normalized_name": "the last farewell" + }, + { + "appid": 3317390, + "normalized_name": "magic scavenger" + }, + { + "appid": 3317450, + "normalized_name": "short stories whispers in the walls" + }, + { + "appid": 3317460, + "normalized_name": "the otherworld laboratory" + }, + { + "appid": 3317480, + "normalized_name": "pixel waifu escape from the dark corporation. the telepathic power of a lovestruck otaku" + }, + { + "appid": 3317510, + "normalized_name": "sokobots" + }, + { + "appid": 3317520, + "normalized_name": "i am going for a beer" + }, + { + "appid": 3317530, + "normalized_name": "knight's night!" + }, + { + "appid": 3317540, + "normalized_name": "thesaurus" + }, + { + "appid": 3317550, + "normalized_name": "war of the old gods" + }, + { + "appid": 3317560, + "normalized_name": "fated thread" + }, + { + "appid": 3317570, + "normalized_name": "hell drill" + }, + { + "appid": 3317580, + "normalized_name": "soul oath" + }, + { + "appid": 3317590, + "normalized_name": "jump man" + }, + { + "appid": 3317600, + "normalized_name": "a tale of brothers" + }, + { + "appid": 3317620, + "normalized_name": "clan duramont" + }, + { + "appid": 3317630, + "normalized_name": "christine's care" + }, + { + "appid": 3317650, + "normalized_name": "无限骰子" + }, + { + "appid": 3317660, + "normalized_name": "kaamos puzzle roguelike" + }, + { + "appid": 3317680, + "normalized_name": "광기의 함정(the madness trap trek)" + }, + { + "appid": 3317700, + "normalized_name": "圆圆圆" + }, + { + "appid": 3317710, + "normalized_name": "razorback" + }, + { + "appid": 3317720, + "normalized_name": "autoarena" + }, + { + "appid": 3317740, + "normalized_name": "chroma" + }, + { + "appid": 3317780, + "normalized_name": "dungeon vending machines" + }, + { + "appid": 3317820, + "normalized_name": "planet finder" + }, + { + "appid": 3317850, + "normalized_name": "grind and dine" + }, + { + "appid": 3317880, + "normalized_name": "intrusive thoughts" + }, + { + "appid": 3317890, + "normalized_name": "project search" + }, + { + "appid": 3317920, + "normalized_name": "gordak" + }, + { + "appid": 3317930, + "normalized_name": "chosen of god" + }, + { + "appid": 3317960, + "normalized_name": "evoscape" + }, + { + "appid": 3318000, + "normalized_name": "flatinside simulator" + }, + { + "appid": 3318010, + "normalized_name": "devilish temptation" + }, + { + "appid": 3318050, + "normalized_name": "robot unlock" + }, + { + "appid": 3318080, + "normalized_name": "grorb grow the orb" + }, + { + "appid": 3318090, + "normalized_name": "evil mana" + }, + { + "appid": 3318110, + "normalized_name": "the last star walker book one" + }, + { + "appid": 3318120, + "normalized_name": "underway (remastered)" + }, + { + "appid": 3318140, + "normalized_name": "workaholic simulator leaving the dream" + }, + { + "appid": 3318190, + "normalized_name": "cosmic cafe" + }, + { + "appid": 3318210, + "normalized_name": "파멸의 오타쿠" + }, + { + "appid": 3318330, + "normalized_name": "tablets of power" + }, + { + "appid": 3318360, + "normalized_name": "odessa" + }, + { + "appid": 3318380, + "normalized_name": "death by chatter" + }, + { + "appid": 3318450, + "normalized_name": "havenlocked" + }, + { + "appid": 3318470, + "normalized_name": "re exit" + }, + { + "appid": 3318490, + "normalized_name": "bunker constructor simulator" + }, + { + "appid": 3318500, + "normalized_name": "bad summer" + }, + { + "appid": 3318510, + "normalized_name": "aurora heights" + }, + { + "appid": 3318550, + "normalized_name": "countryballs conquest" + }, + { + "appid": 3318560, + "normalized_name": "he maid her fall" + }, + { + "appid": 3318580, + "normalized_name": "scrapworks simulator" + }, + { + "appid": 3318640, + "normalized_name": "迷路会社 | maze company" + }, + { + "appid": 3318670, + "normalized_name": "multiplayer barbarians" + }, + { + "appid": 3318700, + "normalized_name": "hotwife jasmine" + }, + { + "appid": 3318720, + "normalized_name": "lythe the forgetful witch a visual novel" + }, + { + "appid": 3318730, + "normalized_name": "异常侦探:少女的安眠" + }, + { + "appid": 3318760, + "normalized_name": "アネモネ / anemone" + }, + { + "appid": 3318810, + "normalized_name": "天道奇谈" + }, + { + "appid": 3318830, + "normalized_name": "honu" + }, + { + "appid": 3318870, + "normalized_name": "ai interrogation simulator" + }, + { + "appid": 3318910, + "normalized_name": "nextbuild" + }, + { + "appid": 3318920, + "normalized_name": "quickball" + }, + { + "appid": 3318940, + "normalized_name": "rocket boots mania space train" + }, + { + "appid": 3318950, + "normalized_name": "the mirror's curse" + }, + { + "appid": 3319000, + "normalized_name": "aggrolotls" + }, + { + "appid": 3319040, + "normalized_name": "bubblesinker" + }, + { + "appid": 3319050, + "normalized_name": "perino candy buster" + }, + { + "appid": 3319070, + "normalized_name": "my clinical death" + }, + { + "appid": 3319100, + "normalized_name": "graveyard caretaker" + }, + { + "appid": 3319120, + "normalized_name": "don't play this" + }, + { + "appid": 3319130, + "normalized_name": "smokkehed" + }, + { + "appid": 3319140, + "normalized_name": "purge phalanx" + }, + { + "appid": 3319150, + "normalized_name": "猫抓老鼠 黑白世界" + }, + { + "appid": 3319160, + "normalized_name": "eldritch evolution" + }, + { + "appid": 3319180, + "normalized_name": "53x homecoming" + }, + { + "appid": 3319230, + "normalized_name": "pizza simulator together" + }, + { + "appid": 3319240, + "normalized_name": "kingsguard" + }, + { + "appid": 3319250, + "normalized_name": "shoes store simulator" + }, + { + "appid": 3319270, + "normalized_name": "armada last light" + }, + { + "appid": 3319290, + "normalized_name": "usa nature's trails jigsaw" + }, + { + "appid": 3319330, + "normalized_name": "makis adventure level editor" + }, + { + "appid": 3319370, + "normalized_name": "caball sunset hour" + }, + { + "appid": 3319380, + "normalized_name": "dead inside" + }, + { + "appid": 3319460, + "normalized_name": "comical sara" + }, + { + "appid": 3319510, + "normalized_name": "jet fighters with friends 4" + }, + { + "appid": 3319570, + "normalized_name": "savage arena dead ball zone" + }, + { + "appid": 3319580, + "normalized_name": "catechumen" + }, + { + "appid": 3319590, + "normalized_name": "ominous horizons a paladin's calling" + }, + { + "appid": 3319620, + "normalized_name": "潮痕 tideline" + }, + { + "appid": 3319630, + "normalized_name": "light of motiram" + }, + { + "appid": 3319650, + "normalized_name": "the berenstain bears in the dark" + }, + { + "appid": 3319660, + "normalized_name": "the berenstain bears get in a fight" + }, + { + "appid": 3319670, + "normalized_name": "重写末日" + }, + { + "appid": 3319680, + "normalized_name": "delve survivors" + }, + { + "appid": 3319700, + "normalized_name": "新世界:暗影成双" + }, + { + "appid": 3319710, + "normalized_name": "cybarena" + }, + { + "appid": 3319720, + "normalized_name": "心核 kernel" + }, + { + "appid": 3319730, + "normalized_name": "purrfect chatter 喵语心扉" + }, + { + "appid": 3319740, + "normalized_name": "learn japanese kana & vocab with sushi" + }, + { + "appid": 3319750, + "normalized_name": "mati" + }, + { + "appid": 3319780, + "normalized_name": "encounter" + }, + { + "appid": 3319790, + "normalized_name": "tactical domination operation veranite" + }, + { + "appid": 3319960, + "normalized_name": "one tap roulette" + }, + { + "appid": 3319980, + "normalized_name": "the legend of heroes kai no kiseki farewell o zemuria" + }, + { + "appid": 3320000, + "normalized_name": "tailscape the corgi’s advendture" + }, + { + "appid": 3320020, + "normalized_name": "cats with standards" + }, + { + "appid": 3320070, + "normalized_name": "progress knight multiplayer" + }, + { + "appid": 3320100, + "normalized_name": "drowned god conspiracy of the ages." + }, + { + "appid": 3320140, + "normalized_name": "the last awen" + }, + { + "appid": 3320200, + "normalized_name": "kaal yoddha curse of the mask" + }, + { + "appid": 3320260, + "normalized_name": "mechanic supermarket simulator" + }, + { + "appid": 3320270, + "normalized_name": "chertovica" + }, + { + "appid": 3320310, + "normalized_name": "escape the laser trap" + }, + { + "appid": 3320320, + "normalized_name": "次元沙漏的棋盘 dimensional racing board" + }, + { + "appid": 3320330, + "normalized_name": "cursed baby" + }, + { + "appid": 3320340, + "normalized_name": "nomadic tale (harvest elysium)" + }, + { + "appid": 3320370, + "normalized_name": "little adventure tale" + }, + { + "appid": 3320380, + "normalized_name": "hangul typing tale" + }, + { + "appid": 3320390, + "normalized_name": "スラッグのシスターディフェンス" + }, + { + "appid": 3320440, + "normalized_name": "cannonhead" + }, + { + "appid": 3320490, + "normalized_name": "row hard" + }, + { + "appid": 3320510, + "normalized_name": "lines of balls" + }, + { + "appid": 3320520, + "normalized_name": "cat lines" + }, + { + "appid": 3320530, + "normalized_name": "ととのいシミュレーター" + }, + { + "appid": 3320540, + "normalized_name": "run pizza run 2" + }, + { + "appid": 3320600, + "normalized_name": "in the night you had bad dreams" + }, + { + "appid": 3320610, + "normalized_name": "sexbot ii recalibrated" + }, + { + "appid": 3320710, + "normalized_name": "trials of yarbil" + }, + { + "appid": 3320760, + "normalized_name": "shinobi match" + }, + { + "appid": 3320770, + "normalized_name": "a femboy polished my knob" + }, + { + "appid": 3320780, + "normalized_name": "night at grandma's" + }, + { + "appid": 3320790, + "normalized_name": "caught lacking femboy" + }, + { + "appid": 3320800, + "normalized_name": "book bound" + }, + { + "appid": 3320840, + "normalized_name": "odile black duckling tale" + }, + { + "appid": 3320850, + "normalized_name": "periapsis eclipse" + }, + { + "appid": 3320880, + "normalized_name": "creepy claus" + }, + { + "appid": 3320930, + "normalized_name": "paranormal night shift" + }, + { + "appid": 3320940, + "normalized_name": "liar's bet" + }, + { + "appid": 3320960, + "normalized_name": "the dead has risen" + }, + { + "appid": 3320980, + "normalized_name": "motemancer" + }, + { + "appid": 3321000, + "normalized_name": "the house of toys" + }, + { + "appid": 3321010, + "normalized_name": "the sintonia chronicles" + }, + { + "appid": 3321020, + "normalized_name": "fluff'n'roll" + }, + { + "appid": 3321050, + "normalized_name": "ninja cats" + }, + { + "appid": 3321080, + "normalized_name": "guardians a wardens tale" + }, + { + "appid": 3321090, + "normalized_name": "beach outlet simulator" + }, + { + "appid": 3321120, + "normalized_name": "ambulance driver life vr" + }, + { + "appid": 3321150, + "normalized_name": "eternal descent" + }, + { + "appid": 3321160, + "normalized_name": "deck of treads" + }, + { + "appid": 3321180, + "normalized_name": "undercover" + }, + { + "appid": 3321190, + "normalized_name": "t.i.o.s(mp)" + }, + { + "appid": 3321220, + "normalized_name": "escape from nightmare school" + }, + { + "appid": 3321270, + "normalized_name": "world below" + }, + { + "appid": 3321280, + "normalized_name": "nothing beyond this point" + }, + { + "appid": 3321290, + "normalized_name": "cold sweat" + }, + { + "appid": 3321300, + "normalized_name": "hide 'n heist" + }, + { + "appid": 3321360, + "normalized_name": "seedbo and that time the sun exploded" + }, + { + "appid": 3321390, + "normalized_name": "hentai senpai thiccmas cumsluts" + }, + { + "appid": 3321400, + "normalized_name": "santa" + }, + { + "appid": 3321410, + "normalized_name": "keep chopping!" + }, + { + "appid": 3321440, + "normalized_name": "无限幻想" + }, + { + "appid": 3321460, + "normalized_name": "crimson desert" + }, + { + "appid": 3321480, + "normalized_name": "orbis fractura" + }, + { + "appid": 3321490, + "normalized_name": "chinese universities" + }, + { + "appid": 3321550, + "normalized_name": "the adventures of tango rio" + }, + { + "appid": 3321560, + "normalized_name": "vessel the first chapter" + }, + { + "appid": 3321600, + "normalized_name": "quadernion" + }, + { + "appid": 3321610, + "normalized_name": "1st pc game in 1958" + }, + { + "appid": 3321630, + "normalized_name": "cinema story" + }, + { + "appid": 3321650, + "normalized_name": "ココロトーカーズ" + }, + { + "appid": 3321680, + "normalized_name": "末日漫游指南" + }, + { + "appid": 3321690, + "normalized_name": "方块碰碰" + }, + { + "appid": 3321700, + "normalized_name": "christmas fables the wishing store collector's" + }, + { + "appid": 3321720, + "normalized_name": "bestiary of the mountains and seas" + }, + { + "appid": 3321760, + "normalized_name": "levels of fear voidwalker act i an undying devotion" + }, + { + "appid": 3321770, + "normalized_name": "overdeveloped requiem" + }, + { + "appid": 3321790, + "normalized_name": "careening" + }, + { + "appid": 3321850, + "normalized_name": "hypercoven" + }, + { + "appid": 3322260, + "normalized_name": "どきどきメイド部 shirogane maid club" + }, + { + "appid": 3322370, + "normalized_name": "街机三国" + }, + { + "appid": 3322380, + "normalized_name": "blend_it" + }, + { + "appid": 3322640, + "normalized_name": "99% 残された被検体" + }, + { + "appid": 3322650, + "normalized_name": "欺诈之森" + }, + { + "appid": 3322670, + "normalized_name": "ヒバリでなくナイチンゲールでもなく" + }, + { + "appid": 3322710, + "normalized_name": "dragon fishing" + }, + { + "appid": 3322730, + "normalized_name": "nocturnal visitors book one" + }, + { + "appid": 3322740, + "normalized_name": "gaung" + }, + { + "appid": 3322770, + "normalized_name": "1x1" + }, + { + "appid": 3322780, + "normalized_name": "deep horrors of fishing" + }, + { + "appid": 3322790, + "normalized_name": "easy view" + }, + { + "appid": 3322800, + "normalized_name": "奈何" + }, + { + "appid": 3322820, + "normalized_name": "beyond the outbreak" + }, + { + "appid": 3322850, + "normalized_name": "the maze survivor first entrants" + }, + { + "appid": 3322900, + "normalized_name": "lifetakers & heartbreakers" + }, + { + "appid": 3322930, + "normalized_name": "robo tennis" + }, + { + "appid": 3322940, + "normalized_name": "十秒奪取!" + }, + { + "appid": 3322950, + "normalized_name": "le plan spectral" + }, + { + "appid": 3322980, + "normalized_name": "hotel 188" + }, + { + "appid": 3323000, + "normalized_name": "mahjong" + }, + { + "appid": 3323020, + "normalized_name": "dino ducks dash" + }, + { + "appid": 3323030, + "normalized_name": "gunnies" + }, + { + "appid": 3323040, + "normalized_name": "shapefighter" + }, + { + "appid": 3323050, + "normalized_name": "little resort simulator" + }, + { + "appid": 3323090, + "normalized_name": "trash tale of wastetown" + }, + { + "appid": 3323120, + "normalized_name": "escape from grimazel's cottage" + }, + { + "appid": 3323130, + "normalized_name": "hidden bloodhunt" + }, + { + "appid": 3323150, + "normalized_name": "three six nine" + }, + { + "appid": 3323180, + "normalized_name": "cat nap" + }, + { + "appid": 3323190, + "normalized_name": "electrified" + }, + { + "appid": 3323210, + "normalized_name": "the age of bhaarat" + }, + { + "appid": 3323220, + "normalized_name": "battle carnival multiplayer fun" + }, + { + "appid": 3323260, + "normalized_name": "planeturem" + }, + { + "appid": 3323300, + "normalized_name": "crazy dungeon" + }, + { + "appid": 3323310, + "normalized_name": "recitallion" + }, + { + "appid": 3323440, + "normalized_name": "gem warrior r" + }, + { + "appid": 3323460, + "normalized_name": "relictor" + }, + { + "appid": 3323470, + "normalized_name": "wanderness" + }, + { + "appid": 3323480, + "normalized_name": "grinville" + }, + { + "appid": 3323500, + "normalized_name": "half away" + }, + { + "appid": 3323590, + "normalized_name": "draft day sports pro football 2025" + }, + { + "appid": 3323600, + "normalized_name": "the deepwatch" + }, + { + "appid": 3323630, + "normalized_name": "grukhthani" + }, + { + "appid": 3323650, + "normalized_name": "curation" + }, + { + "appid": 3323670, + "normalized_name": "last shift" + }, + { + "appid": 3323710, + "normalized_name": "pizza rogue p.p.m.p.d.e.s." + }, + { + "appid": 3323720, + "normalized_name": "cube" + }, + { + "appid": 3323740, + "normalized_name": "bearstone campsite" + }, + { + "appid": 3323770, + "normalized_name": "deep in the dread" + }, + { + "appid": 3323800, + "normalized_name": "3 nights of terror" + }, + { + "appid": 3323830, + "normalized_name": "call from the darkness" + }, + { + "appid": 3323850, + "normalized_name": "blippo+" + }, + { + "appid": 3323860, + "normalized_name": "jelly farm" + }, + { + "appid": 3323890, + "normalized_name": "bearly alive" + }, + { + "appid": 3323960, + "normalized_name": "hyper tunnel" + }, + { + "appid": 3323970, + "normalized_name": "pinbleton park" + }, + { + "appid": 3323990, + "normalized_name": "i'm rich" + }, + { + "appid": 3324000, + "normalized_name": "unblock" + }, + { + "appid": 3324030, + "normalized_name": "爱坤新手教程" + }, + { + "appid": 3324040, + "normalized_name": "small santa simulator" + }, + { + "appid": 3324060, + "normalized_name": "seek and click" + }, + { + "appid": 3324100, + "normalized_name": "sidewalk simulator" + }, + { + "appid": 3324120, + "normalized_name": "horryefieing high rise" + }, + { + "appid": 3324130, + "normalized_name": "bordermind" + }, + { + "appid": 3324140, + "normalized_name": "sever's zone" + }, + { + "appid": 3324150, + "normalized_name": "tales of the cryptozoo" + }, + { + "appid": 3324230, + "normalized_name": "critter gang" + }, + { + "appid": 3324240, + "normalized_name": "valsa das macaúbas" + }, + { + "appid": 3324250, + "normalized_name": "星际领主" + }, + { + "appid": 3324260, + "normalized_name": "shepherd's plan" + }, + { + "appid": 3324270, + "normalized_name": "tust 奇缘 (tust's story)" + }, + { + "appid": 3324280, + "normalized_name": "battle of witches" + }, + { + "appid": 3324310, + "normalized_name": "porção tropical" + }, + { + "appid": 3324320, + "normalized_name": "myriad death" + }, + { + "appid": 3324350, + "normalized_name": "攻城略地抢人妻" + }, + { + "appid": 3324440, + "normalized_name": "逆转命运之光" + }, + { + "appid": 3324450, + "normalized_name": "bullet syndrome" + }, + { + "appid": 3324480, + "normalized_name": "sweet x'mas" + }, + { + "appid": 3324490, + "normalized_name": "emberhold" + }, + { + "appid": 3324530, + "normalized_name": "western shadowlands" + }, + { + "appid": 3324540, + "normalized_name": "fury of light" + }, + { + "appid": 3324560, + "normalized_name": "super star shooter classic" + }, + { + "appid": 3324570, + "normalized_name": "planet factory" + }, + { + "appid": 3324580, + "normalized_name": "planet lust" + }, + { + "appid": 3324590, + "normalized_name": "guard break" + }, + { + "appid": 3324610, + "normalized_name": "落星" + }, + { + "appid": 3324630, + "normalized_name": "alter age" + }, + { + "appid": 3324640, + "normalized_name": "the grave keeper" + }, + { + "appid": 3324650, + "normalized_name": "judenki kashite" + }, + { + "appid": 3324740, + "normalized_name": "wind breaker 不良たちの英雄譚" + }, + { + "appid": 3324750, + "normalized_name": "r/nosleep the night shift at paradise valley pool" + }, + { + "appid": 3324800, + "normalized_name": "shout & shoot" + }, + { + "appid": 3324810, + "normalized_name": "淫慾試煉" + }, + { + "appid": 3324820, + "normalized_name": "阿可&小白:丛林大冒险 ( akuro & bahaku jungle adventure )" + }, + { + "appid": 3324900, + "normalized_name": "poland car simulator" + }, + { + "appid": 3324930, + "normalized_name": "braise" + }, + { + "appid": 3324980, + "normalized_name": "everdark undead apocalypse" + }, + { + "appid": 3325000, + "normalized_name": "rabbitparty" + }, + { + "appid": 3325020, + "normalized_name": "nightmariners" + }, + { + "appid": 3325030, + "normalized_name": "glass cannon" + }, + { + "appid": 3325070, + "normalized_name": "forest reigns" + }, + { + "appid": 3325120, + "normalized_name": "erase the deck" + }, + { + "appid": 3325130, + "normalized_name": "year of the ladybug season 1" + }, + { + "appid": 3325160, + "normalized_name": "covenant of anubis" + }, + { + "appid": 3325200, + "normalized_name": "teddy knight" + }, + { + "appid": 3325210, + "normalized_name": "chronicles reborn" + }, + { + "appid": 3325260, + "normalized_name": "tank zero" + }, + { + "appid": 3325290, + "normalized_name": "lilia" + }, + { + "appid": 3325310, + "normalized_name": "floor x" + }, + { + "appid": 3325340, + "normalized_name": "train world driver" + }, + { + "appid": 3325350, + "normalized_name": "catfall" + }, + { + "appid": 3325410, + "normalized_name": "yoga sex practice" + }, + { + "appid": 3325480, + "normalized_name": "sky fields" + }, + { + "appid": 3325490, + "normalized_name": "mighty miners" + }, + { + "appid": 3325500, + "normalized_name": "worldwide rush" + }, + { + "appid": 3325570, + "normalized_name": "kaodi" + }, + { + "appid": 3325590, + "normalized_name": "emi long road home" + }, + { + "appid": 3325600, + "normalized_name": "just skateboard" + }, + { + "appid": 3325610, + "normalized_name": "idet" + }, + { + "appid": 3325620, + "normalized_name": "only climber venice" + }, + { + "appid": 3325640, + "normalized_name": "the lovecraft pages" + }, + { + "appid": 3325660, + "normalized_name": "alibai" + }, + { + "appid": 3325680, + "normalized_name": "crescent roll" + }, + { + "appid": 3325690, + "normalized_name": "lost & found collection" + }, + { + "appid": 3325710, + "normalized_name": "flashback dream" + }, + { + "appid": 3325720, + "normalized_name": "animas" + }, + { + "appid": 3325730, + "normalized_name": "crosswire" + }, + { + "appid": 3325740, + "normalized_name": "a world at war tactics" + }, + { + "appid": 3325750, + "normalized_name": "the last progenitor chapter 1" + }, + { + "appid": 3325780, + "normalized_name": "bizzare cat rescuer" + }, + { + "appid": 3325820, + "normalized_name": "consortium's fall echoes of xo'lara" + }, + { + "appid": 3325830, + "normalized_name": "decks of deceit" + }, + { + "appid": 3325840, + "normalized_name": "hollow space" + }, + { + "appid": 3325860, + "normalized_name": "candivity" + }, + { + "appid": 3325870, + "normalized_name": "low poly stories mist" + }, + { + "appid": 3325920, + "normalized_name": "blitzthera" + }, + { + "appid": 3325950, + "normalized_name": "red crucible assault" + }, + { + "appid": 3325960, + "normalized_name": "constantine scores" + }, + { + "appid": 3326000, + "normalized_name": "exot" + }, + { + "appid": 3326040, + "normalized_name": "nazireu 1.0" + }, + { + "appid": 3326050, + "normalized_name": "whispers in the woods" + }, + { + "appid": 3326100, + "normalized_name": "brawl squad x battle arena" + }, + { + "appid": 3326170, + "normalized_name": "chi project" + }, + { + "appid": 3326220, + "normalized_name": "game the vote 2024 red" + }, + { + "appid": 3326230, + "normalized_name": "hozy" + }, + { + "appid": 3326250, + "normalized_name": "tip" + }, + { + "appid": 3326280, + "normalized_name": "arctic wolves" + }, + { + "appid": 3326290, + "normalized_name": "internet cafe simulator 2025" + }, + { + "appid": 3326300, + "normalized_name": "inside byte chapter 1" + }, + { + "appid": 3326310, + "normalized_name": "worlds easiest game" + }, + { + "appid": 3326420, + "normalized_name": "hoops ahead basketball manager" + }, + { + "appid": 3326440, + "normalized_name": "i commissioned some frogs 3" + }, + { + "appid": 3326460, + "normalized_name": "i commissioned some frogs 4" + }, + { + "appid": 3326520, + "normalized_name": "banisher of lust" + }, + { + "appid": 3326530, + "normalized_name": "my taskbar farm" + }, + { + "appid": 3326600, + "normalized_name": "hallway shot" + }, + { + "appid": 3326610, + "normalized_name": "only dodge!" + }, + { + "appid": 3326650, + "normalized_name": "クリオネのボムボムスイーパー" + }, + { + "appid": 3326660, + "normalized_name": "ソフィアは嘘と引き換えに" + }, + { + "appid": 3326700, + "normalized_name": "travelling home" + }, + { + "appid": 3326760, + "normalized_name": "sexy katana" + }, + { + "appid": 3326770, + "normalized_name": "bulletheart" + }, + { + "appid": 3326810, + "normalized_name": "dots survivors" + }, + { + "appid": 3326820, + "normalized_name": "whiskers and wizardry" + }, + { + "appid": 3326830, + "normalized_name": "warren's vr movement test" + }, + { + "appid": 3326840, + "normalized_name": "nak" + }, + { + "appid": 3326900, + "normalized_name": "supermarket surviving simulator" + }, + { + "appid": 3326910, + "normalized_name": "なぃとみ〜ちゅ! おばけのめあと癒しのヒトイキ" + }, + { + "appid": 3326920, + "normalized_name": "natsumi and the absurd academy" + }, + { + "appid": 3326940, + "normalized_name": "astragene" + }, + { + "appid": 3326950, + "normalized_name": "whispers of kurogane castle" + }, + { + "appid": 3326960, + "normalized_name": "beach boys zodiac date" + }, + { + "appid": 3326970, + "normalized_name": "lustful victor" + }, + { + "appid": 3327000, + "normalized_name": "roguebound pirates" + }, + { + "appid": 3327020, + "normalized_name": "crunda" + }, + { + "appid": 3327030, + "normalized_name": "bunker descent trapped" + }, + { + "appid": 3327080, + "normalized_name": "the long cold" + }, + { + "appid": 3327090, + "normalized_name": "shadowbridge the genesis" + }, + { + "appid": 3327100, + "normalized_name": "the drawing of the apocalypse" + }, + { + "appid": 3327120, + "normalized_name": "dreadline express" + }, + { + "appid": 3327150, + "normalized_name": "futanari sex adventures episode 6" + }, + { + "appid": 3327160, + "normalized_name": "syndicate of souls" + }, + { + "appid": 3327170, + "normalized_name": "minutescape" + }, + { + "appid": 3327200, + "normalized_name": "morse academy" + }, + { + "appid": 3327210, + "normalized_name": "escape the end" + }, + { + "appid": 3327240, + "normalized_name": "orbcraft survivors" + }, + { + "appid": 3327250, + "normalized_name": "aatral origins" + }, + { + "appid": 3327260, + "normalized_name": "eloquent" + }, + { + "appid": 3327270, + "normalized_name": "imminent" + }, + { + "appid": 3327280, + "normalized_name": "i need to go" + }, + { + "appid": 3327300, + "normalized_name": "juxtapose" + }, + { + "appid": 3327310, + "normalized_name": "mitigate" + }, + { + "appid": 3327340, + "normalized_name": "the battle for christmas" + }, + { + "appid": 3327360, + "normalized_name": "踏月尋歌" + }, + { + "appid": 3327370, + "normalized_name": "apricity" + }, + { + "appid": 3327380, + "normalized_name": "午前五時にピアノを弾く encore" + }, + { + "appid": 3327400, + "normalized_name": "the shattered veil" + }, + { + "appid": 3327470, + "normalized_name": "cinemaster cinema simulator" + }, + { + "appid": 3327480, + "normalized_name": "santa slides to town" + }, + { + "appid": 3327590, + "normalized_name": "the confinement" + }, + { + "appid": 3327600, + "normalized_name": "sexy memory puzzle dildo girl" + }, + { + "appid": 3327640, + "normalized_name": "hololive holo's hanafuda" + }, + { + "appid": 3327670, + "normalized_name": "grand mall simulator" + }, + { + "appid": 3327700, + "normalized_name": "starium" + }, + { + "appid": 3327710, + "normalized_name": "shadows of wyrmwood" + }, + { + "appid": 3327820, + "normalized_name": "escape camp stranded" + }, + { + "appid": 3327880, + "normalized_name": "star leap" + }, + { + "appid": 3327900, + "normalized_name": "void grimm clicker" + }, + { + "appid": 3327910, + "normalized_name": "trigonomis" + }, + { + "appid": 3327950, + "normalized_name": "冷战:前线 cold war frontline" + }, + { + "appid": 3327980, + "normalized_name": "fight life vanguard prologue" + }, + { + "appid": 3328010, + "normalized_name": "poradora vs monsters of the world" + }, + { + "appid": 3328020, + "normalized_name": "weird wormholes" + }, + { + "appid": 3328040, + "normalized_name": "horse evolutions" + }, + { + "appid": 3328090, + "normalized_name": "cuckold sex episode 7" + }, + { + "appid": 3328100, + "normalized_name": "bowlatro" + }, + { + "appid": 3328230, + "normalized_name": "lyra convolution" + }, + { + "appid": 3328260, + "normalized_name": "女王蟻のperfume エピソード0 切り裂きジャックの狂愛 /queen ant perfume episode0 the mad love of jack the ripper" + }, + { + "appid": 3328270, + "normalized_name": "desecrated deck" + }, + { + "appid": 3328280, + "normalized_name": "ms. holmes the milverton plot collector's" + }, + { + "appid": 3328320, + "normalized_name": "super senseless soccer" + }, + { + "appid": 3328330, + "normalized_name": "pseudosanity" + }, + { + "appid": 3328340, + "normalized_name": "avalanxe" + }, + { + "appid": 3328350, + "normalized_name": "galactic sex odyssey nsfw sci fi porn" + }, + { + "appid": 3328380, + "normalized_name": "negative reverie" + }, + { + "appid": 3328390, + "normalized_name": "gyroban" + }, + { + "appid": 3328410, + "normalized_name": "slumbering feline" + }, + { + "appid": 3328480, + "normalized_name": "tetris the grand master 4 absolute eye" + }, + { + "appid": 3328500, + "normalized_name": "shadows of truth vr" + }, + { + "appid": 3328520, + "normalized_name": "math" + }, + { + "appid": 3328530, + "normalized_name": "harca" + }, + { + "appid": 3328540, + "normalized_name": "librarian lust" + }, + { + "appid": 3328580, + "normalized_name": "planes of fear" + }, + { + "appid": 3328610, + "normalized_name": "大荒图志录" + }, + { + "appid": 3328620, + "normalized_name": "tabletop shop simulator" + }, + { + "appid": 3328630, + "normalized_name": "icekai" + }, + { + "appid": 3328670, + "normalized_name": "咏唱魔女 witch's aria" + }, + { + "appid": 3328680, + "normalized_name": "星海的流言" + }, + { + "appid": 3328700, + "normalized_name": "3d escape chinese room" + }, + { + "appid": 3328720, + "normalized_name": "闪光公仔 flashdoll" + }, + { + "appid": 3328730, + "normalized_name": "autogun heroes supercharged" + }, + { + "appid": 3328740, + "normalized_name": "i can't handle my body" + }, + { + "appid": 3328770, + "normalized_name": "blueberry tales" + }, + { + "appid": 3328810, + "normalized_name": "portal factory" + }, + { + "appid": 3328820, + "normalized_name": "marks of ki" + }, + { + "appid": 3328840, + "normalized_name": "timefront" + }, + { + "appid": 3328860, + "normalized_name": "colorfire redux" + }, + { + "appid": 3328870, + "normalized_name": "mazzle christmas" + }, + { + "appid": 3328880, + "normalized_name": "block number 5" + }, + { + "appid": 3328900, + "normalized_name": "mysims" + }, + { + "appid": 3328910, + "normalized_name": "mysims kingdom" + }, + { + "appid": 3328930, + "normalized_name": "crime lords" + }, + { + "appid": 3328940, + "normalized_name": "the isolated" + }, + { + "appid": 3328960, + "normalized_name": "monad tachyon" + }, + { + "appid": 3328980, + "normalized_name": "christmas yarn 3 tangled traditions ce" + }, + { + "appid": 3329000, + "normalized_name": "finger fury clicker" + }, + { + "appid": 3329020, + "normalized_name": "cookie monster clicker" + }, + { + "appid": 3329040, + "normalized_name": "throw home" + }, + { + "appid": 3329050, + "normalized_name": "velhodium isle" + }, + { + "appid": 3329080, + "normalized_name": "primal fear" + }, + { + "appid": 3329100, + "normalized_name": "скуфоритянин" + }, + { + "appid": 3329130, + "normalized_name": "hentai cho" + }, + { + "appid": 3329150, + "normalized_name": "kismet" + }, + { + "appid": 3329170, + "normalized_name": "gob johnson's downhill marmalade" + }, + { + "appid": 3329190, + "normalized_name": "the perfect model" + }, + { + "appid": 3329200, + "normalized_name": "break hentai gallery" + }, + { + "appid": 3329210, + "normalized_name": "disguised blessing" + }, + { + "appid": 3329220, + "normalized_name": "yet another climbing game" + }, + { + "appid": 3329240, + "normalized_name": "cyberphobia" + }, + { + "appid": 3329260, + "normalized_name": "化工人模拟器" + }, + { + "appid": 3329400, + "normalized_name": "intense desire" + }, + { + "appid": 3329410, + "normalized_name": "beak island visitor center" + }, + { + "appid": 3329420, + "normalized_name": "waifu app 90 days to escape a lonely fate" + }, + { + "appid": 3329430, + "normalized_name": "adventuring with matilda!" + }, + { + "appid": 3329450, + "normalized_name": "halloween stories inspiration's spark collector's" + }, + { + "appid": 3329490, + "normalized_name": "drawn before" + }, + { + "appid": 3329510, + "normalized_name": "perilous skies" + }, + { + "appid": 3329520, + "normalized_name": "labyrintheam" + }, + { + "appid": 3329530, + "normalized_name": "urbex awakening" + }, + { + "appid": 3329570, + "normalized_name": "last hope of pirates" + }, + { + "appid": 3329580, + "normalized_name": "girlfriend tapes" + }, + { + "appid": 3329610, + "normalized_name": "jet fighters with friends 5" + }, + { + "appid": 3329620, + "normalized_name": "broken time" + }, + { + "appid": 3329630, + "normalized_name": "cosmic miners" + }, + { + "appid": 3329650, + "normalized_name": "find love or die trying til death do us part" + }, + { + "appid": 3329660, + "normalized_name": "romimimi" + }, + { + "appid": 3329700, + "normalized_name": "アウラルと光の竜~gathering light~" + }, + { + "appid": 3329730, + "normalized_name": "chef strikes back" + }, + { + "appid": 3329820, + "normalized_name": "diligent" + }, + { + "appid": 3329840, + "normalized_name": "focus" + }, + { + "appid": 3330050, + "normalized_name": "mess" + }, + { + "appid": 3330060, + "normalized_name": "virtual campus" + }, + { + "appid": 3330070, + "normalized_name": "dice art studio" + }, + { + "appid": 3330140, + "normalized_name": "burrow wing" + }, + { + "appid": 3330150, + "normalized_name": "bean battle brawl" + }, + { + "appid": 3330160, + "normalized_name": "kingdom ascension" + }, + { + "appid": 3330170, + "normalized_name": "sync sprint" + }, + { + "appid": 3330180, + "normalized_name": "randobounce" + }, + { + "appid": 3330190, + "normalized_name": "dark 4799" + }, + { + "appid": 3330200, + "normalized_name": "nospellhero" + }, + { + "appid": 3330210, + "normalized_name": "kinny and the cosmic cauldron" + }, + { + "appid": 3330220, + "normalized_name": "magic puzzle king 2 rolling cat" + }, + { + "appid": 3330250, + "normalized_name": "ithya magic studies" + }, + { + "appid": 3330270, + "normalized_name": "quiz & learn food & drink" + }, + { + "appid": 3330280, + "normalized_name": "free solitaire" + }, + { + "appid": 3330350, + "normalized_name": "trackdown genesis" + }, + { + "appid": 3330360, + "normalized_name": "fatal pursuit" + }, + { + "appid": 3330380, + "normalized_name": "ad nauseam the wrong side" + }, + { + "appid": 3330390, + "normalized_name": "five minutes till christmas" + }, + { + "appid": 3330400, + "normalized_name": "abyssal swarm" + }, + { + "appid": 3330410, + "normalized_name": "spell slide" + }, + { + "appid": 3330420, + "normalized_name": "elohim eternal ii son of man" + }, + { + "appid": 3330450, + "normalized_name": "catch the beaukes" + }, + { + "appid": 3330460, + "normalized_name": "cock fight simulator" + }, + { + "appid": 3330470, + "normalized_name": "cats bounce ball" + }, + { + "appid": 3330500, + "normalized_name": "smutstone" + }, + { + "appid": 3330510, + "normalized_name": "cosmo's industry" + }, + { + "appid": 3330530, + "normalized_name": "曙光之刃" + }, + { + "appid": 3330540, + "normalized_name": "palace of a thousand curses" + }, + { + "appid": 3330580, + "normalized_name": "奥尔卡尼亚:帷幕 orcania curtain" + }, + { + "appid": 3330620, + "normalized_name": "wheelie king 7 motorbike simulator 3d" + }, + { + "appid": 3330650, + "normalized_name": "l'histoire de karl" + }, + { + "appid": 3330730, + "normalized_name": "kitty convenience" + }, + { + "appid": 3330750, + "normalized_name": "corrupt them all devilina vein" + }, + { + "appid": 3330840, + "normalized_name": "street food simulator" + }, + { + "appid": 3330860, + "normalized_name": "hello girl" + }, + { + "appid": 3330880, + "normalized_name": "fragments of tyranny" + }, + { + "appid": 3330890, + "normalized_name": "shiver" + }, + { + "appid": 3330920, + "normalized_name": "those npc's love stories" + }, + { + "appid": 3330930, + "normalized_name": "locked in my darkness 2 the room" + }, + { + "appid": 3331000, + "normalized_name": "retrowave 2" + }, + { + "appid": 3331010, + "normalized_name": "furry x bussy master randy the red knot reindeer" + }, + { + "appid": 3331040, + "normalized_name": "katagiri san is relying on me" + }, + { + "appid": 3331050, + "normalized_name": "a café couple's joyful life of resistance" + }, + { + "appid": 3331060, + "normalized_name": "decomposition" + }, + { + "appid": 3331090, + "normalized_name": "fall in flowers" + }, + { + "appid": 3331120, + "normalized_name": "史莱狗(slimg)" + }, + { + "appid": 3331140, + "normalized_name": "i lost someone" + }, + { + "appid": 3331170, + "normalized_name": "镇魔塔 pagoda" + }, + { + "appid": 3331210, + "normalized_name": "manic magic ciena's desire" + }, + { + "appid": 3331230, + "normalized_name": "觀塘 | kwun tong" + }, + { + "appid": 3331260, + "normalized_name": "ho ho maze!" + }, + { + "appid": 3331270, + "normalized_name": "銀河守望隊" + }, + { + "appid": 3331280, + "normalized_name": "the supernatural power troll" + }, + { + "appid": 3331310, + "normalized_name": "jixo the season of joy collector's" + }, + { + "appid": 3331320, + "normalized_name": "back in service a metro driver" + }, + { + "appid": 3331350, + "normalized_name": "void lands" + }, + { + "appid": 3331370, + "normalized_name": "cardinal sequence" + }, + { + "appid": 3331390, + "normalized_name": "sonic surge rhythm showdown" + }, + { + "appid": 3331400, + "normalized_name": "rogue drone hunter" + }, + { + "appid": 3331420, + "normalized_name": "population quiz" + }, + { + "appid": 3331450, + "normalized_name": "a hole in my room" + }, + { + "appid": 3331520, + "normalized_name": "dream of a nightmarish runaway" + }, + { + "appid": 3331540, + "normalized_name": "p.a.n.i.c" + }, + { + "appid": 3331570, + "normalized_name": "valkeala birds" + }, + { + "appid": 3331580, + "normalized_name": "the chronicles of lancelot 2 the adventure to avalon" + }, + { + "appid": 3331590, + "normalized_name": "olapu" + }, + { + "appid": 3331600, + "normalized_name": "hardships of a vampire" + }, + { + "appid": 3331610, + "normalized_name": "dark honor" + }, + { + "appid": 3331640, + "normalized_name": "tank frenzy survivor" + }, + { + "appid": 3331650, + "normalized_name": "nico saves the state" + }, + { + "appid": 3331670, + "normalized_name": "exocogs" + }, + { + "appid": 3331690, + "normalized_name": "static paradox" + }, + { + "appid": 3331710, + "normalized_name": "pan drivers burger" + }, + { + "appid": 3331770, + "normalized_name": "void vanguards" + }, + { + "appid": 3331810, + "normalized_name": "slimenator" + }, + { + "appid": 3331860, + "normalized_name": "three quest" + }, + { + "appid": 3331900, + "normalized_name": "the hentai 8 turns" + }, + { + "appid": 3331940, + "normalized_name": "myths of minerva stolen sceptre" + }, + { + "appid": 3331950, + "normalized_name": "powers to poison" + }, + { + "appid": 3331960, + "normalized_name": "late night confessional" + }, + { + "appid": 3331980, + "normalized_name": "brahmarakshas" + }, + { + "appid": 3332000, + "normalized_name": "廃層" + }, + { + "appid": 3332020, + "normalized_name": "ribelic" + }, + { + "appid": 3332030, + "normalized_name": "py oneers" + }, + { + "appid": 3332040, + "normalized_name": "mushroom island" + }, + { + "appid": 3332050, + "normalized_name": "sonifi" + }, + { + "appid": 3332060, + "normalized_name": "feng shui meowjong" + }, + { + "appid": 3332070, + "normalized_name": "dark fantasy godhood" + }, + { + "appid": 3332080, + "normalized_name": "gastronomicon" + }, + { + "appid": 3332090, + "normalized_name": "no forgiveness to the sinners" + }, + { + "appid": 3332120, + "normalized_name": "dark island faded memories" + }, + { + "appid": 3332150, + "normalized_name": "ail" + }, + { + "appid": 3332160, + "normalized_name": "처음 만든 돌 부수기" + }, + { + "appid": 3332170, + "normalized_name": "open fire" + }, + { + "appid": 3332370, + "normalized_name": "climb the bullet" + }, + { + "appid": 3332380, + "normalized_name": "契约摄影集 contract album" + }, + { + "appid": 3332400, + "normalized_name": "molo's revenge" + }, + { + "appid": 3332410, + "normalized_name": "din of sen" + }, + { + "appid": 3332440, + "normalized_name": "kumamawashi" + }, + { + "appid": 3332450, + "normalized_name": "wykke" + }, + { + "appid": 3332460, + "normalized_name": "my slime garden" + }, + { + "appid": 3332490, + "normalized_name": "arpicos" + }, + { + "appid": 3332530, + "normalized_name": "sweet new year" + }, + { + "appid": 3332550, + "normalized_name": "light in the woods" + }, + { + "appid": 3332600, + "normalized_name": "cubic cosmos" + }, + { + "appid": 3332630, + "normalized_name": "made for" + }, + { + "appid": 3332640, + "normalized_name": "女神氪金系统" + }, + { + "appid": 3332660, + "normalized_name": "sicko sanctum 2" + }, + { + "appid": 3332670, + "normalized_name": "acesurvivor" + }, + { + "appid": 3332680, + "normalized_name": "enemy territory terrorists takedown" + }, + { + "appid": 3332690, + "normalized_name": "sweet home 3 look and find collector's" + }, + { + "appid": 3332700, + "normalized_name": "backrooms inside the escape" + }, + { + "appid": 3332710, + "normalized_name": "hentai tales monster girl tamer" + }, + { + "appid": 3332720, + "normalized_name": "hentai tales futanari x monster girl" + }, + { + "appid": 3332730, + "normalized_name": "gnomich" + }, + { + "appid": 3332760, + "normalized_name": "pangea dawn" + }, + { + "appid": 3332780, + "normalized_name": "time x drifter" + }, + { + "appid": 3332790, + "normalized_name": "rogue runner" + }, + { + "appid": 3332800, + "normalized_name": "180 seconds survivors" + }, + { + "appid": 3332830, + "normalized_name": "男神模拟器" + }, + { + "appid": 3332860, + "normalized_name": "封淫洞窟エロネスト" + }, + { + "appid": 3332870, + "normalized_name": "heightmaster" + }, + { + "appid": 3332880, + "normalized_name": "anzu" + }, + { + "appid": 3332970, + "normalized_name": "twisted grove" + }, + { + "appid": 3333000, + "normalized_name": "boto labo" + }, + { + "appid": 3333020, + "normalized_name": "astronormous survivor" + }, + { + "appid": 3333050, + "normalized_name": "sexy memory puzzle futanari striptease" + }, + { + "appid": 3333060, + "normalized_name": "starbasesim" + }, + { + "appid": 3333080, + "normalized_name": "mine" + }, + { + "appid": 3333110, + "normalized_name": "de conditione mortalis bloodbath/metanoia" + }, + { + "appid": 3333120, + "normalized_name": "unimo startrip vr" + }, + { + "appid": 3333130, + "normalized_name": "cosmic lighthouse" + }, + { + "appid": 3333180, + "normalized_name": "lunar descent" + }, + { + "appid": 3333200, + "normalized_name": "village of vagabonds" + }, + { + "appid": 3333220, + "normalized_name": "p world" + }, + { + "appid": 3333250, + "normalized_name": "red souls(红色之魂)" + }, + { + "appid": 3333310, + "normalized_name": "holes" + }, + { + "appid": 3333330, + "normalized_name": "you are the code" + }, + { + "appid": 3333340, + "normalized_name": "执念" + }, + { + "appid": 3333350, + "normalized_name": "headrooms" + }, + { + "appid": 3333360, + "normalized_name": "harem inn" + }, + { + "appid": 3333380, + "normalized_name": "dungeon hotpot" + }, + { + "appid": 3333450, + "normalized_name": "electronic market simulator prologue" + }, + { + "appid": 3333460, + "normalized_name": "no space for all" + }, + { + "appid": 3333470, + "normalized_name": "gretel the lost tale" + }, + { + "appid": 3333600, + "normalized_name": "the mysterious thief; forget me not" + }, + { + "appid": 3333610, + "normalized_name": "the house a maple street story" + }, + { + "appid": 3333630, + "normalized_name": "mnamosyna" + }, + { + "appid": 3333650, + "normalized_name": "minesweeper tactics" + }, + { + "appid": 3333670, + "normalized_name": "mr. president" + }, + { + "appid": 3333680, + "normalized_name": "hidden cats thief" + }, + { + "appid": 3333700, + "normalized_name": "the royal writ" + }, + { + "appid": 3333740, + "normalized_name": "exit together" + }, + { + "appid": 3333790, + "normalized_name": "king fighter xtreme" + }, + { + "appid": 3333830, + "normalized_name": "knightfall showdown" + }, + { + "appid": 3333840, + "normalized_name": "the dream" + }, + { + "appid": 3333890, + "normalized_name": "panelak" + }, + { + "appid": 3333900, + "normalized_name": "timber trails alpine puzzle" + }, + { + "appid": 3333930, + "normalized_name": "bouncing buggies" + }, + { + "appid": 3333940, + "normalized_name": "virtual girlfriend lia" + }, + { + "appid": 3333980, + "normalized_name": "slaughter void" + }, + { + "appid": 3333990, + "normalized_name": "covenant" + }, + { + "appid": 3334050, + "normalized_name": "what the hell i draw" + }, + { + "appid": 3334100, + "normalized_name": "shippin" + }, + { + "appid": 3334170, + "normalized_name": "tales of tuscany" + }, + { + "appid": 3334190, + "normalized_name": "thinking inside the box" + }, + { + "appid": 3334200, + "normalized_name": "onedayone" + }, + { + "appid": 3334220, + "normalized_name": "deadly chance" + }, + { + "appid": 3334260, + "normalized_name": "block cracker" + }, + { + "appid": 3334280, + "normalized_name": "spyfall" + }, + { + "appid": 3334330, + "normalized_name": "heal the survivors" + }, + { + "appid": 3334350, + "normalized_name": "mech log zero" + }, + { + "appid": 3334360, + "normalized_name": "proton & electron" + }, + { + "appid": 3334400, + "normalized_name": "pio" + }, + { + "appid": 3334430, + "normalized_name": "the fool's apprentice" + }, + { + "appid": 3334450, + "normalized_name": "traversal" + }, + { + "appid": 3334510, + "normalized_name": "hidden cats in buttonwood street" + }, + { + "appid": 3334520, + "normalized_name": "奶茶店大亨 milktea time" + }, + { + "appid": 3334530, + "normalized_name": "猫面 necomen" + }, + { + "appid": 3334540, + "normalized_name": "deepspace emporium" + }, + { + "appid": 3334550, + "normalized_name": "cursed digicam | 呪われたデジカメ" + }, + { + "appid": 3334560, + "normalized_name": "binding" + }, + { + "appid": 3334580, + "normalized_name": "steam revolution the age of rail" + }, + { + "appid": 3334600, + "normalized_name": "echoes beneath" + }, + { + "appid": 3334610, + "normalized_name": "hidden cats of egypt" + }, + { + "appid": 3334630, + "normalized_name": "cat and isle of stars" + }, + { + "appid": 3334640, + "normalized_name": "time jump" + }, + { + "appid": 3334650, + "normalized_name": "pixel game maker series lunlun super hero babies plus newgames" + }, + { + "appid": 3334660, + "normalized_name": "winion virus" + }, + { + "appid": 3334690, + "normalized_name": "one room ー花坂結衣メモリアルー" + }, + { + "appid": 3334710, + "normalized_name": "pro wrestler story" + }, + { + "appid": 3334740, + "normalized_name": "voyage on the alihacc desert | アリハック沙漠の旅" + }, + { + "appid": 3334750, + "normalized_name": "ゴキ's room" + }, + { + "appid": 3334770, + "normalized_name": "99 managers futsal" + }, + { + "appid": 3334830, + "normalized_name": "let's get larry a haircut" + }, + { + "appid": 3334980, + "normalized_name": "pixelpop 2087" + }, + { + "appid": 3334990, + "normalized_name": "relicbound" + }, + { + "appid": 3335040, + "normalized_name": "throne of valoria" + }, + { + "appid": 3335050, + "normalized_name": "lab cats" + }, + { + "appid": 3335060, + "normalized_name": "the campsite" + }, + { + "appid": 3335070, + "normalized_name": "kill ze bugs" + }, + { + "appid": 3335100, + "normalized_name": "leather tactical boxing management" + }, + { + "appid": 3335120, + "normalized_name": "coconut simulator" + }, + { + "appid": 3335130, + "normalized_name": "哥布林之蚀" + }, + { + "appid": 3335170, + "normalized_name": "desktop siege" + }, + { + "appid": 3335390, + "normalized_name": "sexbot lab" + }, + { + "appid": 3335420, + "normalized_name": "slashin' around" + }, + { + "appid": 3335500, + "normalized_name": "connect collect" + }, + { + "appid": 3335540, + "normalized_name": "psychological challenge" + }, + { + "appid": 3335600, + "normalized_name": "escape the room" + }, + { + "appid": 3335650, + "normalized_name": "wellville fair" + }, + { + "appid": 3335690, + "normalized_name": "typing valley" + }, + { + "appid": 3335730, + "normalized_name": "adventures of carson fractured continuum" + }, + { + "appid": 3335810, + "normalized_name": "el misterio de plaza mayor" + }, + { + "appid": 3335840, + "normalized_name": "the cursed soul" + }, + { + "appid": 3335880, + "normalized_name": "night store simulator" + }, + { + "appid": 3335890, + "normalized_name": "monochrome momentum" + }, + { + "appid": 3335910, + "normalized_name": "wing it" + }, + { + "appid": 3335980, + "normalized_name": "traíras" + }, + { + "appid": 3336000, + "normalized_name": "bumpn roll" + }, + { + "appid": 3336010, + "normalized_name": "beachhead arcade" + }, + { + "appid": 3336020, + "normalized_name": "book of decisions" + }, + { + "appid": 3336070, + "normalized_name": "cybrlich and the death cult of labor" + }, + { + "appid": 3336100, + "normalized_name": "no pacing when the client is here" + }, + { + "appid": 3336140, + "normalized_name": "chimken" + }, + { + "appid": 3336150, + "normalized_name": "golden feather" + }, + { + "appid": 3336160, + "normalized_name": "ioretin" + }, + { + "appid": 3336170, + "normalized_name": "penguin escape" + }, + { + "appid": 3336200, + "normalized_name": "nock & load" + }, + { + "appid": 3336220, + "normalized_name": "pingbert's snow ride" + }, + { + "appid": 3336230, + "normalized_name": "the big book of monsters" + }, + { + "appid": 3336240, + "normalized_name": "walk the frog" + }, + { + "appid": 3336260, + "normalized_name": "flurryhurry!" + }, + { + "appid": 3336270, + "normalized_name": "how much is happiness?" + }, + { + "appid": 3336280, + "normalized_name": "oh my wrench" + }, + { + "appid": 3336340, + "normalized_name": "circuit defender" + }, + { + "appid": 3336360, + "normalized_name": "die for me" + }, + { + "appid": 3336370, + "normalized_name": "animal pattern" + }, + { + "appid": 3336430, + "normalized_name": "memic" + }, + { + "appid": 3336440, + "normalized_name": "millivolt" + }, + { + "appid": 3336450, + "normalized_name": "lost soul" + }, + { + "appid": 3336460, + "normalized_name": "snakeloop" + }, + { + "appid": 3336520, + "normalized_name": "dino topia" + }, + { + "appid": 3336530, + "normalized_name": "embers adrift" + }, + { + "appid": 3336590, + "normalized_name": "puyo! push brain" + }, + { + "appid": 3336610, + "normalized_name": "ghostly acres" + }, + { + "appid": 3336620, + "normalized_name": "liminal shroud" + }, + { + "appid": 3336630, + "normalized_name": "invention 7" + }, + { + "appid": 3336640, + "normalized_name": "macho de pon! for steam" + }, + { + "appid": 3336660, + "normalized_name": "star titans war of the galaxy" + }, + { + "appid": 3336670, + "normalized_name": "[afantasia]" + }, + { + "appid": 3336710, + "normalized_name": "find lah!" + }, + { + "appid": 3336760, + "normalized_name": "the feast of the end a night of domination with temptation and terror" + }, + { + "appid": 3336800, + "normalized_name": "doorms" + }, + { + "appid": 3336940, + "normalized_name": "good sleep company" + }, + { + "appid": 3336960, + "normalized_name": "云梦九歌" + }, + { + "appid": 3336990, + "normalized_name": "dreamstairs" + }, + { + "appid": 3337000, + "normalized_name": "bridge" + }, + { + "appid": 3337010, + "normalized_name": "icon_survive" + }, + { + "appid": 3337050, + "normalized_name": "the night games collection" + }, + { + "appid": 3337060, + "normalized_name": "kapih" + }, + { + "appid": 3337100, + "normalized_name": "typo!" + }, + { + "appid": 3337110, + "normalized_name": "bulletproof tank adventure" + }, + { + "appid": 3337120, + "normalized_name": "wandaria" + }, + { + "appid": 3337130, + "normalized_name": "rmf's ragdoll physics experiments" + }, + { + "appid": 3337140, + "normalized_name": "after inc revival" + }, + { + "appid": 3337150, + "normalized_name": "hop step sing! summer live 2023" + }, + { + "appid": 3337160, + "normalized_name": "entropy" + }, + { + "appid": 3337180, + "normalized_name": "tiny isle" + }, + { + "appid": 3337200, + "normalized_name": "bodycam adrenaline" + }, + { + "appid": 3337210, + "normalized_name": "girls made pudding" + }, + { + "appid": 3337220, + "normalized_name": "that level again" + }, + { + "appid": 3337280, + "normalized_name": "tony's creepy crawly zoo 2.0" + }, + { + "appid": 3337310, + "normalized_name": "erz online" + }, + { + "appid": 3337340, + "normalized_name": "templar" + }, + { + "appid": 3337350, + "normalized_name": "project lost island" + }, + { + "appid": 3337370, + "normalized_name": "law 56" + }, + { + "appid": 3337380, + "normalized_name": "tabletop tavern" + }, + { + "appid": 3337390, + "normalized_name": "black legend wukong" + }, + { + "appid": 3337480, + "normalized_name": "waifu simulator horem" + }, + { + "appid": 3337490, + "normalized_name": "waifu simulator latex" + }, + { + "appid": 3337500, + "normalized_name": "waifu simulator christmas" + }, + { + "appid": 3337620, + "normalized_name": "sheva" + }, + { + "appid": 3337630, + "normalized_name": "paranormal snap shot" + }, + { + "appid": 3337640, + "normalized_name": "dungeon gang" + }, + { + "appid": 3337660, + "normalized_name": "cosmotiles" + }, + { + "appid": 3337670, + "normalized_name": "hentai office" + }, + { + "appid": 3337680, + "normalized_name": "brainrot animals fighting" + }, + { + "appid": 3337690, + "normalized_name": "mortifera" + }, + { + "appid": 3337710, + "normalized_name": "ghost pub" + }, + { + "appid": 3337720, + "normalized_name": "speedracer" + }, + { + "appid": 3337740, + "normalized_name": "tiny divide" + }, + { + "appid": 3337750, + "normalized_name": "election fighterz kamala vs trump" + }, + { + "appid": 3337770, + "normalized_name": "frontiers of ruin tcg" + }, + { + "appid": 3337780, + "normalized_name": "jump & hook" + }, + { + "appid": 3337790, + "normalized_name": "ways" + }, + { + "appid": 3337840, + "normalized_name": "no need for flowers" + }, + { + "appid": 3337850, + "normalized_name": "kyora" + }, + { + "appid": 3337860, + "normalized_name": "ball saves ball" + }, + { + "appid": 3337870, + "normalized_name": "suddenly meow christmas" + }, + { + "appid": 3337920, + "normalized_name": "hidden winter things" + }, + { + "appid": 3337930, + "normalized_name": "furry novel locked hearts" + }, + { + "appid": 3337950, + "normalized_name": "vaultframe" + }, + { + "appid": 3337970, + "normalized_name": "coffee beans" + }, + { + "appid": 3337980, + "normalized_name": "ivayami berço da névoa" + }, + { + "appid": 3338000, + "normalized_name": "aliya's awakening doge 2042" + }, + { + "appid": 3338020, + "normalized_name": "bloodstone rising" + }, + { + "appid": 3338050, + "normalized_name": "god syndrome" + }, + { + "appid": 3338100, + "normalized_name": "mystic pub" + }, + { + "appid": 3338140, + "normalized_name": "verfall" + }, + { + "appid": 3338180, + "normalized_name": "inconceivable rat endeavour" + }, + { + "appid": 3338190, + "normalized_name": "ducky clicker idle game" + }, + { + "appid": 3338200, + "normalized_name": "green thing from the planet jupiter" + }, + { + "appid": 3338240, + "normalized_name": "daughter of pain" + }, + { + "appid": 3338260, + "normalized_name": "horrher" + }, + { + "appid": 3338320, + "normalized_name": "snackdown" + }, + { + "appid": 3338350, + "normalized_name": "wheelchair racer" + }, + { + "appid": 3338380, + "normalized_name": "the cursed moon ~the girl trapped in the haunted house~" + }, + { + "appid": 3338390, + "normalized_name": "secretpact restart" + }, + { + "appid": 3338440, + "normalized_name": "338338" + }, + { + "appid": 3338450, + "normalized_name": "アスクギア リブースト" + }, + { + "appid": 3338460, + "normalized_name": "dimensional dilemma" + }, + { + "appid": 3338470, + "normalized_name": "i am reptile" + }, + { + "appid": 3338490, + "normalized_name": "boardmancer" + }, + { + "appid": 3338510, + "normalized_name": "hema. humetal era morphose arms" + }, + { + "appid": 3338530, + "normalized_name": "decofarm" + }, + { + "appid": 3338550, + "normalized_name": "alma and the fragments of cursed memories" + }, + { + "appid": 3338560, + "normalized_name": "metal hunter" + }, + { + "appid": 3338570, + "normalized_name": "军团保卫战" + }, + { + "appid": 3338600, + "normalized_name": "the last experiment a memetric story" + }, + { + "appid": 3338630, + "normalized_name": "little gods of ancient echoes" + }, + { + "appid": 3338660, + "normalized_name": "something to write about unbroken book one" + }, + { + "appid": 3338670, + "normalized_name": "muse / ミューズ" + }, + { + "appid": 3338680, + "normalized_name": "ちらしーる" + }, + { + "appid": 3338720, + "normalized_name": "malvorn" + }, + { + "appid": 3338750, + "normalized_name": "haru and wonder land" + }, + { + "appid": 3338820, + "normalized_name": "my joyful aquarium" + }, + { + "appid": 3338860, + "normalized_name": "nonsolar" + }, + { + "appid": 3338880, + "normalized_name": "into the deep end" + }, + { + "appid": 3338890, + "normalized_name": "wacky volleyball" + }, + { + "appid": 3338950, + "normalized_name": "the scouring" + }, + { + "appid": 3339100, + "normalized_name": "demon alive" + }, + { + "appid": 3339180, + "normalized_name": "lost verses" + }, + { + "appid": 3339200, + "normalized_name": "kinky cats 🔞" + }, + { + "appid": 3339220, + "normalized_name": "“light” is" + }, + { + "appid": 3339230, + "normalized_name": "ragnar’s quest return of the hero" + }, + { + "appid": 3339240, + "normalized_name": "beyond the struggle" + }, + { + "appid": 3339270, + "normalized_name": "bdsm fuel station interactive physics simulation" + }, + { + "appid": 3339280, + "normalized_name": "from basement with love" + }, + { + "appid": 3339300, + "normalized_name": "legacy looper" + }, + { + "appid": 3339330, + "normalized_name": "junkyard builder" + }, + { + "appid": 3339350, + "normalized_name": "spitfire moonpie´s mission" + }, + { + "appid": 3339410, + "normalized_name": "ba the city within" + }, + { + "appid": 3339420, + "normalized_name": "你的老婆" + }, + { + "appid": 3339450, + "normalized_name": "deliverance" + }, + { + "appid": 3339460, + "normalized_name": "doomwall" + }, + { + "appid": 3339470, + "normalized_name": "101 cats hidden in madrid" + }, + { + "appid": 3339490, + "normalized_name": "c4 classical caliber combat contest" + }, + { + "appid": 3339500, + "normalized_name": "東方瞬殺弾幕劇場~初見殺しに命をかけて" + }, + { + "appid": 3339510, + "normalized_name": "hidden magical creatures" + }, + { + "appid": 3339570, + "normalized_name": "adrenaline overdrive" + }, + { + "appid": 3339600, + "normalized_name": "ho hop! christmas board game" + }, + { + "appid": 3339630, + "normalized_name": "peagrove noir" + }, + { + "appid": 3339680, + "normalized_name": "miolhr wrestling league the game" + }, + { + "appid": 3339720, + "normalized_name": "quirky forest" + }, + { + "appid": 3339730, + "normalized_name": "lust survivor" + }, + { + "appid": 3339780, + "normalized_name": "desktop survivors 98" + }, + { + "appid": 3339800, + "normalized_name": "alpha cube" + }, + { + "appid": 3339810, + "normalized_name": "ballest of them all" + }, + { + "appid": 3339830, + "normalized_name": "succubus roulette" + }, + { + "appid": 3339860, + "normalized_name": "unbound drift" + }, + { + "appid": 3339880, + "normalized_name": "off" + }, + { + "appid": 3339910, + "normalized_name": "duel drive" + }, + { + "appid": 3339920, + "normalized_name": "false world" + }, + { + "appid": 3340020, + "normalized_name": "word scores" + }, + { + "appid": 3340040, + "normalized_name": "恩泽 无妄之恩" + }, + { + "appid": 3340050, + "normalized_name": "global chess" + }, + { + "appid": 3340070, + "normalized_name": "ユニバース・リズムシューティング" + }, + { + "appid": 3340080, + "normalized_name": "grandis adventures" + }, + { + "appid": 3340110, + "normalized_name": "hotland" + }, + { + "appid": 3340120, + "normalized_name": "red cap squad zombie source" + }, + { + "appid": 3340160, + "normalized_name": "lenrual" + }, + { + "appid": 3340210, + "normalized_name": "please pay the rent!" + }, + { + "appid": 3340220, + "normalized_name": "the adventures of badgersaw chapter 1" + }, + { + "appid": 3340240, + "normalized_name": "lingkaran:リンカラン" + }, + { + "appid": 3340250, + "normalized_name": "skibidi toilet operation terror" + }, + { + "appid": 3340270, + "normalized_name": "revelations" + }, + { + "appid": 3340290, + "normalized_name": "fantasy puzzle 3d奇幻拼图世界vr" + }, + { + "appid": 3340300, + "normalized_name": "mate" + }, + { + "appid": 3340510, + "normalized_name": "sculptor" + }, + { + "appid": 3340530, + "normalized_name": "holbrook hotel" + }, + { + "appid": 3340710, + "normalized_name": "don't shoot first!" + }, + { + "appid": 3340740, + "normalized_name": "city multi fun" + }, + { + "appid": 3340750, + "normalized_name": "100 new year cats" + }, + { + "appid": 3340760, + "normalized_name": "ring toss" + }, + { + "appid": 3340770, + "normalized_name": "deadly swag" + }, + { + "appid": 3340810, + "normalized_name": "hero of the kingdom the lost tales 3" + }, + { + "appid": 3340820, + "normalized_name": "witch stories" + }, + { + "appid": 3340870, + "normalized_name": "barbarian axe" + }, + { + "appid": 3340880, + "normalized_name": "silicone heart" + }, + { + "appid": 3340890, + "normalized_name": "necrowhisper" + }, + { + "appid": 3340900, + "normalized_name": "月上咖啡店 cafe on the moon" + }, + { + "appid": 3340910, + "normalized_name": "我的修仙世界my xiuxian world" + }, + { + "appid": 3340920, + "normalized_name": "madlum" + }, + { + "appid": 3340940, + "normalized_name": "naughty list" + }, + { + "appid": 3340980, + "normalized_name": "dontfalldown" + }, + { + "appid": 3341000, + "normalized_name": "thick as thieves" + }, + { + "appid": 3341100, + "normalized_name": "swift striders parkour" + }, + { + "appid": 3341110, + "normalized_name": "the tale of bubble boy" + }, + { + "appid": 3341140, + "normalized_name": "qurtys" + }, + { + "appid": 3341150, + "normalized_name": "the last prisoner" + }, + { + "appid": 3341190, + "normalized_name": "ultra maze" + }, + { + "appid": 3341220, + "normalized_name": "just build" + }, + { + "appid": 3341330, + "normalized_name": "サモンズソード ~ 鍋の守護者 ~" + }, + { + "appid": 3341350, + "normalized_name": "crazy voyage" + }, + { + "appid": 3341370, + "normalized_name": "fluid flight" + }, + { + "appid": 3341420, + "normalized_name": "they're alive!" + }, + { + "appid": 3341430, + "normalized_name": "the orange of tomorrow" + }, + { + "appid": 3341440, + "normalized_name": "utopia city" + }, + { + "appid": 3341450, + "normalized_name": "rat hunter" + }, + { + "appid": 3341460, + "normalized_name": "metathrone" + }, + { + "appid": 3341610, + "normalized_name": "spook game" + }, + { + "appid": 3341620, + "normalized_name": "imaginary chaos fight" + }, + { + "appid": 3341630, + "normalized_name": "kingdom fortress" + }, + { + "appid": 3341650, + "normalized_name": "pigface" + }, + { + "appid": 3341660, + "normalized_name": "red fox unit" + }, + { + "appid": 3341710, + "normalized_name": "decodence" + }, + { + "appid": 3341750, + "normalized_name": "starboard" + }, + { + "appid": 3341780, + "normalized_name": "itrp _ vacuum bless" + }, + { + "appid": 3341800, + "normalized_name": "pack it out" + }, + { + "appid": 3341830, + "normalized_name": "toy box" + }, + { + "appid": 3341920, + "normalized_name": "blindernoth" + }, + { + "appid": 3341950, + "normalized_name": "topographical agnosia" + }, + { + "appid": 3341980, + "normalized_name": "just catch fireballs" + }, + { + "appid": 3342040, + "normalized_name": "paranoide" + }, + { + "appid": 3342050, + "normalized_name": "#7 j5z the driftwood experiment" + }, + { + "appid": 3342080, + "normalized_name": "arobynn sword of adventure" + }, + { + "appid": 3342090, + "normalized_name": "second works" + }, + { + "appid": 3342130, + "normalized_name": "surgepoint" + }, + { + "appid": 3342140, + "normalized_name": "escave" + }, + { + "appid": 3342150, + "normalized_name": "10min heroes" + }, + { + "appid": 3342170, + "normalized_name": "animal workforce idle tycoon clicker" + }, + { + "appid": 3342190, + "normalized_name": "lycoris" + }, + { + "appid": 3342210, + "normalized_name": "agent jump" + }, + { + "appid": 3342240, + "normalized_name": "feast valley" + }, + { + "appid": 3342270, + "normalized_name": "agoodfield" + }, + { + "appid": 3342320, + "normalized_name": "无限猫猫计划" + }, + { + "appid": 3342330, + "normalized_name": "hallowed crucible" + }, + { + "appid": 3342350, + "normalized_name": "scary granny" + }, + { + "appid": 3342370, + "normalized_name": "arthur loves watermelon" + }, + { + "appid": 3342380, + "normalized_name": "blood house ultra" + }, + { + "appid": 3342390, + "normalized_name": "the world of marius" + }, + { + "appid": 3342400, + "normalized_name": "flames in modern europe" + }, + { + "appid": 3342410, + "normalized_name": "dr voss’ escape room" + }, + { + "appid": 3342430, + "normalized_name": "dino quake" + }, + { + "appid": 3342470, + "normalized_name": "city of voices" + }, + { + "appid": 3342480, + "normalized_name": "terram reduc protocol" + }, + { + "appid": 3342490, + "normalized_name": "1938" + }, + { + "appid": 3342500, + "normalized_name": "tanks the ace" + }, + { + "appid": 3342540, + "normalized_name": "x teroids" + }, + { + "appid": 3342580, + "normalized_name": "mall manager simulator prologue" + }, + { + "appid": 3342600, + "normalized_name": "letters from the war" + }, + { + "appid": 3342610, + "normalized_name": "bloodmoon" + }, + { + "appid": 3342630, + "normalized_name": "escape from sandhill" + }, + { + "appid": 3342640, + "normalized_name": "地狱烹烹乐 hell's cooking joy" + }, + { + "appid": 3342650, + "normalized_name": "from the past" + }, + { + "appid": 3342680, + "normalized_name": "lofi cafe" + }, + { + "appid": 3342770, + "normalized_name": "wordsmithia" + }, + { + "appid": 3342800, + "normalized_name": "代筆屋ワールドワード" + }, + { + "appid": 3342810, + "normalized_name": "spin protocol" + }, + { + "appid": 3342870, + "normalized_name": "lottery vs aliens" + }, + { + "appid": 3342880, + "normalized_name": "erotic shop simulator" + }, + { + "appid": 3342890, + "normalized_name": "cozy nook" + }, + { + "appid": 3342960, + "normalized_name": "blaster bunny redemption" + }, + { + "appid": 3342980, + "normalized_name": "star paws" + }, + { + "appid": 3343010, + "normalized_name": "and10" + }, + { + "appid": 3343020, + "normalized_name": "polyrealms the lost kingdom" + }, + { + "appid": 3343040, + "normalized_name": "potion & fortune" + }, + { + "appid": 3343160, + "normalized_name": "fill up the hole" + }, + { + "appid": 3343170, + "normalized_name": "universal rivals" + }, + { + "appid": 3343250, + "normalized_name": "lines" + }, + { + "appid": 3343300, + "normalized_name": "nightfall house" + }, + { + "appid": 3343320, + "normalized_name": "lustborn" + }, + { + "appid": 3343330, + "normalized_name": "idle hero siege" + }, + { + "appid": 3343360, + "normalized_name": "end's reach" + }, + { + "appid": 3343390, + "normalized_name": "ship of mist" + }, + { + "appid": 3343400, + "normalized_name": "the little world" + }, + { + "appid": 3343440, + "normalized_name": "pixel pirates" + }, + { + "appid": 3343480, + "normalized_name": "seedgod" + }, + { + "appid": 3343530, + "normalized_name": "监视" + }, + { + "appid": 3343550, + "normalized_name": "unhorrible horror game" + }, + { + "appid": 3343560, + "normalized_name": "异界炮艇" + }, + { + "appid": 3343570, + "normalized_name": "shape sweeper" + }, + { + "appid": 3343590, + "normalized_name": "find all christmas" + }, + { + "appid": 3343600, + "normalized_name": "conjunctivitalizer" + }, + { + "appid": 3343630, + "normalized_name": "card heroes of millford" + }, + { + "appid": 3343650, + "normalized_name": "where are you diamond" + }, + { + "appid": 3343670, + "normalized_name": "globalization" + }, + { + "appid": 3343690, + "normalized_name": "rlll tower of choices" + }, + { + "appid": 3343700, + "normalized_name": "acquaint" + }, + { + "appid": 3343710, + "normalized_name": "rendagor" + }, + { + "appid": 3343720, + "normalized_name": "hatman" + }, + { + "appid": 3343750, + "normalized_name": "consequently" + }, + { + "appid": 3343760, + "normalized_name": "cooperate" + }, + { + "appid": 3343770, + "normalized_name": "scauage" + }, + { + "appid": 3343790, + "normalized_name": "superhero market" + }, + { + "appid": 3343810, + "normalized_name": "abysscat" + }, + { + "appid": 3343840, + "normalized_name": "dino running from a furry gamesforfarm" + }, + { + "appid": 3343850, + "normalized_name": "only down gravitation up" + }, + { + "appid": 3343880, + "normalized_name": "renewed3d" + }, + { + "appid": 3343910, + "normalized_name": "chicken craft" + }, + { + "appid": 3343920, + "normalized_name": "my recycling center 2" + }, + { + "appid": 3343930, + "normalized_name": "devil hearts" + }, + { + "appid": 3343940, + "normalized_name": "spin foward" + }, + { + "appid": 3343950, + "normalized_name": "i am pill" + }, + { + "appid": 3343960, + "normalized_name": "vesnickej nářez" + }, + { + "appid": 3343970, + "normalized_name": "simulario" + }, + { + "appid": 3344000, + "normalized_name": "puzzle machine" + }, + { + "appid": 3344030, + "normalized_name": "videophobia" + }, + { + "appid": 3344150, + "normalized_name": "gift collector [ギフトコレクター]" + }, + { + "appid": 3344160, + "normalized_name": "hidden cats 2 crafts" + }, + { + "appid": 3344180, + "normalized_name": "secret horny santa" + }, + { + "appid": 3344190, + "normalized_name": "orpheus' revenge" + }, + { + "appid": 3344250, + "normalized_name": "sword sanctuary" + }, + { + "appid": 3344270, + "normalized_name": "jack street" + }, + { + "appid": 3344310, + "normalized_name": "quartermaster the forgotten front" + }, + { + "appid": 3344320, + "normalized_name": "lethal dungeon" + }, + { + "appid": 3344350, + "normalized_name": "rouletum" + }, + { + "appid": 3344360, + "normalized_name": "convict team tactics" + }, + { + "appid": 3344400, + "normalized_name": "street soccer online" + }, + { + "appid": 3344410, + "normalized_name": "homelessvania" + }, + { + "appid": 3344420, + "normalized_name": "clocknockers 3" + }, + { + "appid": 3344450, + "normalized_name": "frog escape" + }, + { + "appid": 3344520, + "normalized_name": "slendrina escape together" + }, + { + "appid": 3344530, + "normalized_name": "château royale jigsaw" + }, + { + "appid": 3344550, + "normalized_name": "blurred reality" + }, + { + "appid": 3344560, + "normalized_name": "world drawn" + }, + { + "appid": 3344580, + "normalized_name": "露奈伊物語" + }, + { + "appid": 3344640, + "normalized_name": "empirical" + }, + { + "appid": 3344710, + "normalized_name": "dying water" + }, + { + "appid": 3344730, + "normalized_name": "peaceable kingdom green" + }, + { + "appid": 3344750, + "normalized_name": "debug deadline" + }, + { + "appid": 3344760, + "normalized_name": "magic inn prologue" + }, + { + "appid": 3344770, + "normalized_name": "axe & bow land" + }, + { + "appid": 3344790, + "normalized_name": "眼傀公司(eyepuppet campany)" + }, + { + "appid": 3344800, + "normalized_name": "esca" + }, + { + "appid": 3344810, + "normalized_name": "blood soaked bastard!" + }, + { + "appid": 3344820, + "normalized_name": "castle xenon" + }, + { + "appid": 3344830, + "normalized_name": "一牌超人 one card hero" + }, + { + "appid": 3344870, + "normalized_name": "rise of shrooms" + }, + { + "appid": 3344890, + "normalized_name": "netescape" + }, + { + "appid": 3344910, + "normalized_name": "paradale" + }, + { + "appid": 3344920, + "normalized_name": "living sim" + }, + { + "appid": 3344930, + "normalized_name": "darker chapter 1" + }, + { + "appid": 3344950, + "normalized_name": "incredible dracula academy of shadows" + }, + { + "appid": 3344960, + "normalized_name": "夏目友人帳 ~葉月の記~" + }, + { + "appid": 3344970, + "normalized_name": "quacker bros" + }, + { + "appid": 3345040, + "normalized_name": "小径分岔的花园" + }, + { + "appid": 3345050, + "normalized_name": "programming simulator" + }, + { + "appid": 3345140, + "normalized_name": "あなたに花束を" + }, + { + "appid": 3345150, + "normalized_name": "mine defender" + }, + { + "appid": 3345210, + "normalized_name": "the hidden ones" + }, + { + "appid": 3345260, + "normalized_name": "empire in decay" + }, + { + "appid": 3345270, + "normalized_name": "streamer mini games collection" + }, + { + "appid": 3345290, + "normalized_name": "about an elf" + }, + { + "appid": 3345390, + "normalized_name": "industrial robotics" + }, + { + "appid": 3345430, + "normalized_name": "squaser" + }, + { + "appid": 3345480, + "normalized_name": "after mankind td" + }, + { + "appid": 3345490, + "normalized_name": "subpixels" + }, + { + "appid": 3345500, + "normalized_name": "饥饿的英灵殿" + }, + { + "appid": 3345530, + "normalized_name": "哪吒传说" + }, + { + "appid": 3345540, + "normalized_name": "idle tiers" + }, + { + "appid": 3345550, + "normalized_name": "tactical annihilation" + }, + { + "appid": 3345580, + "normalized_name": "cimen adventures story teller!" + }, + { + "appid": 3345590, + "normalized_name": "idiots in the das" + }, + { + "appid": 3345620, + "normalized_name": "adventure with succubus" + }, + { + "appid": 3345660, + "normalized_name": "sustain" + }, + { + "appid": 3345670, + "normalized_name": "ubiquitous" + }, + { + "appid": 3345680, + "normalized_name": "re spin. die. repeat." + }, + { + "appid": 3345690, + "normalized_name": "medieval laws elvan rising" + }, + { + "appid": 3345710, + "normalized_name": "café keeper" + }, + { + "appid": 3345760, + "normalized_name": "silent anomalies" + }, + { + "appid": 3345780, + "normalized_name": "歸宿之國1" + }, + { + "appid": 3345810, + "normalized_name": "e9uations" + }, + { + "appid": 3345820, + "normalized_name": "lonely christmas" + }, + { + "appid": 3345880, + "normalized_name": "dungeon rummage survival" + }, + { + "appid": 3345910, + "normalized_name": "dreamship sugarcube" + }, + { + "appid": 3345950, + "normalized_name": "capote" + }, + { + "appid": 3345960, + "normalized_name": "贝如塔医院 beta hospital" + }, + { + "appid": 3345970, + "normalized_name": "benign land" + }, + { + "appid": 3346090, + "normalized_name": "alpha shift" + }, + { + "appid": 3346170, + "normalized_name": "perimbó" + }, + { + "appid": 3346220, + "normalized_name": "curse of diamond" + }, + { + "appid": 3346240, + "normalized_name": "reverie shift" + }, + { + "appid": 3346250, + "normalized_name": "exodus frontier the last stand" + }, + { + "appid": 3346260, + "normalized_name": "sweet winter" + }, + { + "appid": 3346270, + "normalized_name": "maximum chaser 1001 squad" + }, + { + "appid": 3346300, + "normalized_name": "millie and friends hidden object puzzles" + }, + { + "appid": 3346310, + "normalized_name": "kill me if you can multiplayer" + }, + { + "appid": 3346320, + "normalized_name": "re choice" + }, + { + "appid": 3346340, + "normalized_name": "grill'd the vanishing" + }, + { + "appid": 3346390, + "normalized_name": "odyssey 2024" + }, + { + "appid": 3346400, + "normalized_name": "can you make it man" + }, + { + "appid": 3346410, + "normalized_name": "club soko" + }, + { + "appid": 3346420, + "normalized_name": "aralunis" + }, + { + "appid": 3346440, + "normalized_name": "some the house" + }, + { + "appid": 3346480, + "normalized_name": "empires of a tiny universe" + }, + { + "appid": 3346500, + "normalized_name": "split apart" + }, + { + "appid": 3346520, + "normalized_name": "in the abyss of dream | dans l'abîme du rêve" + }, + { + "appid": 3346610, + "normalized_name": "zamok" + }, + { + "appid": 3346670, + "normalized_name": "heli 100" + }, + { + "appid": 3346720, + "normalized_name": "catpunk" + }, + { + "appid": 3346740, + "normalized_name": "retro soccer" + }, + { + "appid": 3346760, + "normalized_name": "whisperstring" + }, + { + "appid": 3346790, + "normalized_name": "ropebound" + }, + { + "appid": 3346820, + "normalized_name": "progress racer rpg" + }, + { + "appid": 3346830, + "normalized_name": "shadow" + }, + { + "appid": 3346860, + "normalized_name": "mega pirate pandemonium" + }, + { + "appid": 3346940, + "normalized_name": "dough slapping a touch to desire" + }, + { + "appid": 3346950, + "normalized_name": "sanechek lost coins" + }, + { + "appid": 3346970, + "normalized_name": "anatta" + }, + { + "appid": 3346990, + "normalized_name": "ninja vs. zombies 3" + }, + { + "appid": 3347020, + "normalized_name": "punch party" + }, + { + "appid": 3347050, + "normalized_name": "101 cats hidden in singapore" + }, + { + "appid": 3347060, + "normalized_name": "101 cats hidden in miami" + }, + { + "appid": 3347070, + "normalized_name": "101 cats hidden in rome" + }, + { + "appid": 3347080, + "normalized_name": "hentai world succubus" + }, + { + "appid": 3347090, + "normalized_name": "solomon's keep dreadful retro" + }, + { + "appid": 3347110, + "normalized_name": "全城追缉3" + }, + { + "appid": 3347120, + "normalized_name": "above the cloud time bound mansion" + }, + { + "appid": 3347150, + "normalized_name": "crimson harvest" + }, + { + "appid": 3347170, + "normalized_name": "project horizon" + }, + { + "appid": 3347200, + "normalized_name": "cat gladiator" + }, + { + "appid": 3347210, + "normalized_name": "stage break idle" + }, + { + "appid": 3347250, + "normalized_name": "尸潮汹涌" + }, + { + "appid": 3347280, + "normalized_name": ".headspace" + }, + { + "appid": 3347290, + "normalized_name": "spellslime" + }, + { + "appid": 3347310, + "normalized_name": "let's build wonders galaxy" + }, + { + "appid": 3347330, + "normalized_name": "realm traveler" + }, + { + "appid": 3347370, + "normalized_name": "morrigan's isle" + }, + { + "appid": 3347400, + "normalized_name": "girls' frontline 2 exilium" + }, + { + "appid": 3347420, + "normalized_name": "3" + }, + { + "appid": 3347430, + "normalized_name": "小石游记 little stone journey" + }, + { + "appid": 3347500, + "normalized_name": "meow island" + }, + { + "appid": 3347520, + "normalized_name": "mining" + }, + { + "appid": 3347560, + "normalized_name": "binary game" + }, + { + "appid": 3347600, + "normalized_name": "プロトリジゲン" + }, + { + "appid": 3347610, + "normalized_name": "碎梦人 dreambreaker" + }, + { + "appid": 3347650, + "normalized_name": "soundscape" + }, + { + "appid": 3347690, + "normalized_name": "among the waves" + }, + { + "appid": 3347710, + "normalized_name": "baoli" + }, + { + "appid": 3347800, + "normalized_name": "odra online" + }, + { + "appid": 3347810, + "normalized_name": "阳光物语" + }, + { + "appid": 3347830, + "normalized_name": "hittube" + }, + { + "appid": 3347860, + "normalized_name": "wool" + }, + { + "appid": 3347930, + "normalized_name": "brave joe" + }, + { + "appid": 3347940, + "normalized_name": "8女" + }, + { + "appid": 3347960, + "normalized_name": "backrooms x" + }, + { + "appid": 3347970, + "normalized_name": "少女前线" + }, + { + "appid": 3348100, + "normalized_name": "connected hearts hour of the witch collector's" + }, + { + "appid": 3348120, + "normalized_name": "guards vs goats" + }, + { + "appid": 3348150, + "normalized_name": "disaster party!" + }, + { + "appid": 3348240, + "normalized_name": "trouble in warsaw" + }, + { + "appid": 3348260, + "normalized_name": "cultprits" + }, + { + "appid": 3348270, + "normalized_name": "carnal sins malum incarnatum + carne vescens" + }, + { + "appid": 3348280, + "normalized_name": "a few days with bianca" + }, + { + "appid": 3348300, + "normalized_name": "bullet hell game anthology" + }, + { + "appid": 3348500, + "normalized_name": "o.w.l projekt 2" + }, + { + "appid": 3348510, + "normalized_name": "tower arena survive" + }, + { + "appid": 3348540, + "normalized_name": "the rise of the hero" + }, + { + "appid": 3348550, + "normalized_name": "the legend of pamperlotte" + }, + { + "appid": 3348560, + "normalized_name": "zorezdra" + }, + { + "appid": 3348570, + "normalized_name": "the line of defense" + }, + { + "appid": 3348590, + "normalized_name": "i am quadrober!" + }, + { + "appid": 3348600, + "normalized_name": "skuf for altushki" + }, + { + "appid": 3348640, + "normalized_name": "tsarevna" + }, + { + "appid": 3348650, + "normalized_name": "strange new tides" + }, + { + "appid": 3348660, + "normalized_name": "rogue samurai prologue" + }, + { + "appid": 3348670, + "normalized_name": "project aionix" + }, + { + "appid": 3348690, + "normalized_name": "lionhearts" + }, + { + "appid": 3348710, + "normalized_name": "freeky faucets arcade" + }, + { + "appid": 3348720, + "normalized_name": "the friendly droppets" + }, + { + "appid": 3348730, + "normalized_name": "upunchitto" + }, + { + "appid": 3348770, + "normalized_name": "barrel baller" + }, + { + "appid": 3348850, + "normalized_name": "tabletop tumult" + }, + { + "appid": 3348860, + "normalized_name": "hopepunk city" + }, + { + "appid": 3348880, + "normalized_name": "for the forge" + }, + { + "appid": 3348900, + "normalized_name": "of the lilies" + }, + { + "appid": 3348910, + "normalized_name": "bee simulator the hive" + }, + { + "appid": 3348920, + "normalized_name": "skill eater" + }, + { + "appid": 3348970, + "normalized_name": "arvis punch 2" + }, + { + "appid": 3349010, + "normalized_name": "space escape" + }, + { + "appid": 3349070, + "normalized_name": "ghost of the porcelain cat" + }, + { + "appid": 3349150, + "normalized_name": "crab game 2" + }, + { + "appid": 3349190, + "normalized_name": "luminora tides of colors" + }, + { + "appid": 3349270, + "normalized_name": "hexbotica" + }, + { + "appid": 3349290, + "normalized_name": "returnless" + }, + { + "appid": 3349340, + "normalized_name": "blood reckoning the eternal war" + }, + { + "appid": 3349440, + "normalized_name": "watcher from the void" + }, + { + "appid": 3349460, + "normalized_name": "chatters lake" + }, + { + "appid": 3349490, + "normalized_name": "quantum soteriology" + }, + { + "appid": 3349500, + "normalized_name": "last pickup" + }, + { + "appid": 3349510, + "normalized_name": "魔法使いの嫁盛夏の幻と夢見る旅路" + }, + { + "appid": 3349520, + "normalized_name": "iris dissolution" + }, + { + "appid": 3349560, + "normalized_name": "princess of frozen flowers" + }, + { + "appid": 3349570, + "normalized_name": "ballad of bravos jiangchengzi 江城子" + }, + { + "appid": 3349600, + "normalized_name": "romania prop hunt" + }, + { + "appid": 3349610, + "normalized_name": "leafing home" + }, + { + "appid": 3349670, + "normalized_name": "cavalry charge·three kingdoms" + }, + { + "appid": 3349700, + "normalized_name": "2synth" + }, + { + "appid": 3349730, + "normalized_name": "forge together" + }, + { + "appid": 3349750, + "normalized_name": "东隅荡寇志·朝鲜战争" + }, + { + "appid": 3349770, + "normalized_name": "stormwater" + }, + { + "appid": 3349800, + "normalized_name": "bone to gather" + }, + { + "appid": 3349820, + "normalized_name": "big blind" + }, + { + "appid": 3349830, + "normalized_name": "pro flight simulator" + }, + { + "appid": 3349840, + "normalized_name": "inking" + }, + { + "appid": 3349850, + "normalized_name": "balantica" + }, + { + "appid": 3349860, + "normalized_name": "dr. cog" + }, + { + "appid": 3349870, + "normalized_name": "hagsville" + }, + { + "appid": 3349900, + "normalized_name": "coring" + }, + { + "appid": 3349930, + "normalized_name": "only out" + }, + { + "appid": 3349940, + "normalized_name": "the ghost of anna" + }, + { + "appid": 3349960, + "normalized_name": "okey.gg" + }, + { + "appid": 3349970, + "normalized_name": "gamestonk simulator" + }, + { + "appid": 3349980, + "normalized_name": "brebeman" + }, + { + "appid": 3350000, + "normalized_name": "边界" + }, + { + "appid": 3350030, + "normalized_name": "the permanent residence souls kept" + }, + { + "appid": 3350040, + "normalized_name": "holiday in europe wonders of germany collector's" + }, + { + "appid": 3350050, + "normalized_name": "we must survive" + }, + { + "appid": 3350110, + "normalized_name": "the alchemist & his battle scarred homunculus" + }, + { + "appid": 3350140, + "normalized_name": "漢字でgo! 集英社マンガ祭" + }, + { + "appid": 3350190, + "normalized_name": "焦虑小狗 anxiety puppy" + }, + { + "appid": 3350200, + "normalized_name": "捞女游戏" + }, + { + "appid": 3350250, + "normalized_name": "brawlmageddon" + }, + { + "appid": 3350310, + "normalized_name": "playing tag with a bear" + }, + { + "appid": 3350340, + "normalized_name": "boundaries" + }, + { + "appid": 3350350, + "normalized_name": "galactic conquest" + }, + { + "appid": 3350380, + "normalized_name": "the fox and devil tales of eleonora" + }, + { + "appid": 3350440, + "normalized_name": "velvet's veil" + }, + { + "appid": 3350460, + "normalized_name": "flicker" + }, + { + "appid": 3350480, + "normalized_name": "cardio" + }, + { + "appid": 3350500, + "normalized_name": "rêves lettres et ciel" + }, + { + "appid": 3350610, + "normalized_name": "jai kali" + }, + { + "appid": 3350630, + "normalized_name": "cain" + }, + { + "appid": 3350740, + "normalized_name": "dreaded wunder" + }, + { + "appid": 3350750, + "normalized_name": "amberspire" + }, + { + "appid": 3350780, + "normalized_name": "nice pro?" + }, + { + "appid": 3350790, + "normalized_name": "banana ragdoll" + }, + { + "appid": 3350800, + "normalized_name": "boo! are you scared?" + }, + { + "appid": 3350820, + "normalized_name": "the crossroads" + }, + { + "appid": 3350840, + "normalized_name": "pirates adventure solitaire" + }, + { + "appid": 3350860, + "normalized_name": "trifolium" + }, + { + "appid": 3350870, + "normalized_name": "gst wars" + }, + { + "appid": 3350890, + "normalized_name": "find petey" + }, + { + "appid": 3350910, + "normalized_name": "the fourth anno" + }, + { + "appid": 3350920, + "normalized_name": "belote 3 in 1" + }, + { + "appid": 3350940, + "normalized_name": "extermination" + }, + { + "appid": 3350950, + "normalized_name": "ravenous rhythm" + }, + { + "appid": 3350960, + "normalized_name": "wyrm words" + }, + { + "appid": 3351020, + "normalized_name": "home cleaning cozy baby cleanup" + }, + { + "appid": 3351040, + "normalized_name": "happy puppy" + }, + { + "appid": 3351070, + "normalized_name": "constance" + }, + { + "appid": 3351080, + "normalized_name": "qualia" + }, + { + "appid": 3351090, + "normalized_name": "murder&spies" + }, + { + "appid": 3351100, + "normalized_name": "snapshot spirit live!" + }, + { + "appid": 3351110, + "normalized_name": "foddia" + }, + { + "appid": 3351140, + "normalized_name": "limoria" + }, + { + "appid": 3351150, + "normalized_name": "astroball" + }, + { + "appid": 3351220, + "normalized_name": "the rotting chronicles" + }, + { + "appid": 3351230, + "normalized_name": "founders legacy" + }, + { + "appid": 3351270, + "normalized_name": "invariant" + }, + { + "appid": 3351280, + "normalized_name": "tinkershot" + }, + { + "appid": 3351290, + "normalized_name": "specter the battle of the mind" + }, + { + "appid": 3351330, + "normalized_name": "clown is hungry" + }, + { + "appid": 3351340, + "normalized_name": "robocycle" + }, + { + "appid": 3351350, + "normalized_name": "ooga booga battle" + }, + { + "appid": 3351360, + "normalized_name": "tessera" + }, + { + "appid": 3351390, + "normalized_name": "asmr studio simulator" + }, + { + "appid": 3351400, + "normalized_name": "makine" + }, + { + "appid": 3351410, + "normalized_name": "awakening" + }, + { + "appid": 3351420, + "normalized_name": "miku may i keep up?" + }, + { + "appid": 3351430, + "normalized_name": "batography" + }, + { + "appid": 3351470, + "normalized_name": "i'd kill you as a worm" + }, + { + "appid": 3351490, + "normalized_name": "cleantwin" + }, + { + "appid": 3351530, + "normalized_name": "peacebringer" + }, + { + "appid": 3351550, + "normalized_name": "alien grounds" + }, + { + "appid": 3351560, + "normalized_name": "one little world" + }, + { + "appid": 3351570, + "normalized_name": "sandbox survivors" + }, + { + "appid": 3351610, + "normalized_name": "god of terra crestfallen" + }, + { + "appid": 3351620, + "normalized_name": "homeland last defense" + }, + { + "appid": 3351640, + "normalized_name": "三界劫" + }, + { + "appid": 3351650, + "normalized_name": "长夜之后" + }, + { + "appid": 3351660, + "normalized_name": "gilgul" + }, + { + "appid": 3351670, + "normalized_name": "enscroll" + }, + { + "appid": 3351690, + "normalized_name": "gauntlet" + }, + { + "appid": 3351710, + "normalized_name": "meow meow invasion" + }, + { + "appid": 3351730, + "normalized_name": "ganyang setan alas! the game" + }, + { + "appid": 3351760, + "normalized_name": "chromapix" + }, + { + "appid": 3351770, + "normalized_name": "bumble brawlers" + }, + { + "appid": 3351790, + "normalized_name": "deadlike" + }, + { + "appid": 3351830, + "normalized_name": "memory distortion" + }, + { + "appid": 3351840, + "normalized_name": "play twice" + }, + { + "appid": 3351860, + "normalized_name": "thrustme too" + }, + { + "appid": 3351890, + "normalized_name": "wizault" + }, + { + "appid": 3351910, + "normalized_name": "大善" + }, + { + "appid": 3351940, + "normalized_name": "underground" + }, + { + "appid": 3351950, + "normalized_name": "western wizards" + }, + { + "appid": 3351970, + "normalized_name": "unicorn wars" + }, + { + "appid": 3351990, + "normalized_name": "brelok ねずみたちの脱出" + }, + { + "appid": 3352020, + "normalized_name": "cloudy & stormy pawtastic adventure!" + }, + { + "appid": 3352070, + "normalized_name": "hole bottomless" + }, + { + "appid": 3352130, + "normalized_name": "tsan shadow ninja" + }, + { + "appid": 3352140, + "normalized_name": "satellite odyssey jupiter" + }, + { + "appid": 3352150, + "normalized_name": "bushcraft simulator" + }, + { + "appid": 3352160, + "normalized_name": "willow’s descent into the under" + }, + { + "appid": 3352180, + "normalized_name": "glory destiny reborn 晴空物語" + }, + { + "appid": 3352240, + "normalized_name": "raiders of blackveil" + }, + { + "appid": 3352250, + "normalized_name": "pentaloop ペンタループ" + }, + { + "appid": 3352260, + "normalized_name": "spire blast" + }, + { + "appid": 3352300, + "normalized_name": "the electrifying incident a monster mini expedition" + }, + { + "appid": 3352310, + "normalized_name": "spooky express" + }, + { + "appid": 3352350, + "normalized_name": "行走 walk" + }, + { + "appid": 3352390, + "normalized_name": "tides of succession" + }, + { + "appid": 3352440, + "normalized_name": "rusty heights" + }, + { + "appid": 3352470, + "normalized_name": "your android" + }, + { + "appid": 3352670, + "normalized_name": "flåklypa grand prix jubileumsutgave" + }, + { + "appid": 3352680, + "normalized_name": "latent experience" + }, + { + "appid": 3352750, + "normalized_name": "kings of emperor bonaparte" + }, + { + "appid": 3352820, + "normalized_name": "nyctophobia" + }, + { + "appid": 3352840, + "normalized_name": "ocean breeze" + }, + { + "appid": 3352850, + "normalized_name": "the naki files" + }, + { + "appid": 3352870, + "normalized_name": "digi cyber angel" + }, + { + "appid": 3352880, + "normalized_name": "clash battle simulator" + }, + { + "appid": 3352930, + "normalized_name": "dino citadel" + }, + { + "appid": 3352970, + "normalized_name": "anima fighters" + }, + { + "appid": 3353000, + "normalized_name": "potatogeddon" + }, + { + "appid": 3353030, + "normalized_name": "heather wreath the reporter" + }, + { + "appid": 3353050, + "normalized_name": "base defense" + }, + { + "appid": 3353080, + "normalized_name": "2024 aliens are coming" + }, + { + "appid": 3353090, + "normalized_name": "bark and catch" + }, + { + "appid": 3353100, + "normalized_name": "passant a chess roguelike" + }, + { + "appid": 3353120, + "normalized_name": "obstacle sprint" + }, + { + "appid": 3353130, + "normalized_name": "joltt battle pillars" + }, + { + "appid": 3353170, + "normalized_name": "velocirambo" + }, + { + "appid": 3353180, + "normalized_name": "straight to the bone" + }, + { + "appid": 3353200, + "normalized_name": "neon exploding bread" + }, + { + "appid": 3353230, + "normalized_name": "courier dragons within" + }, + { + "appid": 3353260, + "normalized_name": "cubi mystery of the unsolved" + }, + { + "appid": 3353280, + "normalized_name": "subvirtual" + }, + { + "appid": 3353290, + "normalized_name": "按魔大师 magical massage" + }, + { + "appid": 3353380, + "normalized_name": "dead by skill check" + }, + { + "appid": 3353400, + "normalized_name": "oni's tale" + }, + { + "appid": 3353490, + "normalized_name": "another hole to seduce a married woman" + }, + { + "appid": 3353510, + "normalized_name": "imperium titans of commerce" + }, + { + "appid": 3353580, + "normalized_name": "sophistry the card game" + }, + { + "appid": 3353590, + "normalized_name": "jinn hunter" + }, + { + "appid": 3353620, + "normalized_name": "缚戎人:唐建中十三年" + }, + { + "appid": 3353670, + "normalized_name": "summer flower of summer snow" + }, + { + "appid": 3353700, + "normalized_name": "card quest" + }, + { + "appid": 3353740, + "normalized_name": "hunt for the alchemists" + }, + { + "appid": 3353800, + "normalized_name": "golden swirl" + }, + { + "appid": 3353810, + "normalized_name": "abject abyss" + }, + { + "appid": 3353820, + "normalized_name": "makoku the seductive twilight squadron" + }, + { + "appid": 3353830, + "normalized_name": "livingbattle" + }, + { + "appid": 3353840, + "normalized_name": "priestess·女祭司" + }, + { + "appid": 3353860, + "normalized_name": "exo calibre" + }, + { + "appid": 3353880, + "normalized_name": "what a legend!" + }, + { + "appid": 3353900, + "normalized_name": "cold boot" + }, + { + "appid": 3354040, + "normalized_name": "milestone" + }, + { + "appid": 3354050, + "normalized_name": "dungeon hero" + }, + { + "appid": 3354080, + "normalized_name": "eggsneverhurt" + }, + { + "appid": 3354130, + "normalized_name": "recurrence" + }, + { + "appid": 3354160, + "normalized_name": "toxic toads" + }, + { + "appid": 3354170, + "normalized_name": "supreme power" + }, + { + "appid": 3354190, + "normalized_name": "romance.exe" + }, + { + "appid": 3354200, + "normalized_name": "bakso simulator 2" + }, + { + "appid": 3354220, + "normalized_name": "comic book store simulator" + }, + { + "appid": 3354230, + "normalized_name": "avropolis" + }, + { + "appid": 3354250, + "normalized_name": "通缉令 wanted poster" + }, + { + "appid": 3354260, + "normalized_name": "tcg multiplayer card shop simulator" + }, + { + "appid": 3354280, + "normalized_name": "mongirl conquest" + }, + { + "appid": 3354290, + "normalized_name": "mailbound" + }, + { + "appid": 3354300, + "normalized_name": "a little bit of carnage" + }, + { + "appid": 3354320, + "normalized_name": "game for aliens" + }, + { + "appid": 3354760, + "normalized_name": "dreadveil" + }, + { + "appid": 3354770, + "normalized_name": "jiwa the damned soul" + }, + { + "appid": 3354850, + "normalized_name": "双魂のデュアリスト" + }, + { + "appid": 3354920, + "normalized_name": "midpoint" + }, + { + "appid": 3354930, + "normalized_name": "junk sec" + }, + { + "appid": 3354950, + "normalized_name": "re aktor" + }, + { + "appid": 3354960, + "normalized_name": "empluna" + }, + { + "appid": 3354980, + "normalized_name": "scary shadow spot bitter glass" + }, + { + "appid": 3354990, + "normalized_name": "the naughty list curse" + }, + { + "appid": 3355020, + "normalized_name": "reverse problem" + }, + { + "appid": 3355060, + "normalized_name": "unknown hero" + }, + { + "appid": 3355070, + "normalized_name": "ambroise niflette & the gleaned bell" + }, + { + "appid": 3355080, + "normalized_name": "vicious cycle" + }, + { + "appid": 3355110, + "normalized_name": "a fistful of cowboys" + }, + { + "appid": 3355120, + "normalized_name": "ghosts attack" + }, + { + "appid": 3355140, + "normalized_name": "crimson skyline" + }, + { + "appid": 3355150, + "normalized_name": "stellarion" + }, + { + "appid": 3355170, + "normalized_name": "transcontinental" + }, + { + "appid": 3355230, + "normalized_name": "smol adventure" + }, + { + "appid": 3355240, + "normalized_name": "teach kids games" + }, + { + "appid": 3355400, + "normalized_name": "crayon crusaders vr" + }, + { + "appid": 3355420, + "normalized_name": "battle for rakir" + }, + { + "appid": 3355430, + "normalized_name": "alice mesmerizing episodes of neurosis (amen)" + }, + { + "appid": 3355510, + "normalized_name": "kill dee" + }, + { + "appid": 3355550, + "normalized_name": "fari stjornu" + }, + { + "appid": 3355610, + "normalized_name": "promized land outer town 2025" + }, + { + "appid": 3355690, + "normalized_name": "hamachi the psychotic killer" + }, + { + "appid": 3355700, + "normalized_name": "紅蜘蛛外伝:暗花" + }, + { + "appid": 3355730, + "normalized_name": "fitness lifestyle" + }, + { + "appid": 3355740, + "normalized_name": "legacy of ashes" + }, + { + "appid": 3355750, + "normalized_name": "ad astra sci fi tower defense" + }, + { + "appid": 3355760, + "normalized_name": "望文爱生义" + }, + { + "appid": 3355780, + "normalized_name": "magic honey ❥ exorcism shooter" + }, + { + "appid": 3355790, + "normalized_name": "freezia" + }, + { + "appid": 3355800, + "normalized_name": "bank simulator" + }, + { + "appid": 3355810, + "normalized_name": "bataliron" + }, + { + "appid": 3355830, + "normalized_name": "hydro" + }, + { + "appid": 3355890, + "normalized_name": "up island" + }, + { + "appid": 3355900, + "normalized_name": "fireball" + }, + { + "appid": 3355910, + "normalized_name": "help the dog" + }, + { + "appid": 3355930, + "normalized_name": "mechanical throb" + }, + { + "appid": 3355940, + "normalized_name": "card coder" + }, + { + "appid": 3355950, + "normalized_name": "エデンタクティクス" + }, + { + "appid": 3355980, + "normalized_name": "exoplanet outpost" + }, + { + "appid": 3355990, + "normalized_name": "lunar miner" + }, + { + "appid": 3356010, + "normalized_name": "xeno conflict" + }, + { + "appid": 3356060, + "normalized_name": "the count of monte cristo" + }, + { + "appid": 3356080, + "normalized_name": "мир ступ" + }, + { + "appid": 3356090, + "normalized_name": "toast astronauts" + }, + { + "appid": 3356130, + "normalized_name": "the reunion" + }, + { + "appid": 3356160, + "normalized_name": "yeet thyself" + }, + { + "appid": 3356220, + "normalized_name": "roots and recipes farm and restaurant simulator" + }, + { + "appid": 3356230, + "normalized_name": "humble holiday horrors" + }, + { + "appid": 3356250, + "normalized_name": "low_signal" + }, + { + "appid": 3356290, + "normalized_name": "the accuser and the abyss" + }, + { + "appid": 3356310, + "normalized_name": "sheeeroom" + }, + { + "appid": 3356320, + "normalized_name": "for her" + }, + { + "appid": 3356330, + "normalized_name": "squid plays game" + }, + { + "appid": 3356440, + "normalized_name": "fleshbound" + }, + { + "appid": 3356480, + "normalized_name": "stick tongue" + }, + { + "appid": 3356500, + "normalized_name": "marbleous!" + }, + { + "appid": 3356520, + "normalized_name": "mazeophobia" + }, + { + "appid": 3356540, + "normalized_name": "freedom maker" + }, + { + "appid": 3356570, + "normalized_name": "unforgivable" + }, + { + "appid": 3356590, + "normalized_name": "heavenx" + }, + { + "appid": 3356660, + "normalized_name": "game quest the backlog battler" + }, + { + "appid": 3356690, + "normalized_name": "gearspark" + }, + { + "appid": 3356700, + "normalized_name": "病みっ子トラブルメーカー" + }, + { + "appid": 3356720, + "normalized_name": "grass life sim" + }, + { + "appid": 3356740, + "normalized_name": "weed simulator" + }, + { + "appid": 3356770, + "normalized_name": "missile pilot" + }, + { + "appid": 3356780, + "normalized_name": "minestrone" + }, + { + "appid": 3356790, + "normalized_name": "cozy solitaire" + }, + { + "appid": 3356800, + "normalized_name": "wonderland" + }, + { + "appid": 3356810, + "normalized_name": "王国之盾" + }, + { + "appid": 3356830, + "normalized_name": "milky mouse" + }, + { + "appid": 3356840, + "normalized_name": "echoes of steel" + }, + { + "appid": 3356860, + "normalized_name": "jigsaw puzzles" + }, + { + "appid": 3356920, + "normalized_name": "the voodoo soldier" + }, + { + "appid": 3356930, + "normalized_name": "anticipate" + }, + { + "appid": 3356950, + "normalized_name": "differentiate" + }, + { + "appid": 3356960, + "normalized_name": "disseminate" + }, + { + "appid": 3356970, + "normalized_name": "nightfall secrets" + }, + { + "appid": 3356980, + "normalized_name": "exon" + }, + { + "appid": 3357010, + "normalized_name": "glitchguesser" + }, + { + "appid": 3357030, + "normalized_name": "fingie bandits" + }, + { + "appid": 3357050, + "normalized_name": "cozy" + }, + { + "appid": 3357120, + "normalized_name": "the child" + }, + { + "appid": 3357130, + "normalized_name": "figure skating legends" + }, + { + "appid": 3357250, + "normalized_name": "corner kitchen fast food simulator" + }, + { + "appid": 3357260, + "normalized_name": "nexus m4" + }, + { + "appid": 3357310, + "normalized_name": "asuka the ascent" + }, + { + "appid": 3357380, + "normalized_name": "nedra" + }, + { + "appid": 3357410, + "normalized_name": "sara the slutty lusty agent" + }, + { + "appid": 3357430, + "normalized_name": "etherburn" + }, + { + "appid": 3357470, + "normalized_name": "superbunny's adventure" + }, + { + "appid": 3357480, + "normalized_name": "space is red" + }, + { + "appid": 3357510, + "normalized_name": "3.14 idle" + }, + { + "appid": 3357570, + "normalized_name": "government contractors arms of influence" + }, + { + "appid": 3357580, + "normalized_name": "winter hubris" + }, + { + "appid": 3357590, + "normalized_name": "shadows of morhaven" + }, + { + "appid": 3357600, + "normalized_name": "motherland" + }, + { + "appid": 3357660, + "normalized_name": "christmas bazaar manager simulator" + }, + { + "appid": 3357670, + "normalized_name": "advanced kick challenge" + }, + { + "appid": 3357680, + "normalized_name": "deadwalker chronicles" + }, + { + "appid": 3357860, + "normalized_name": "cannoneer" + }, + { + "appid": 3357870, + "normalized_name": "sugoroku casino party" + }, + { + "appid": 3357880, + "normalized_name": "tower defense for virus" + }, + { + "appid": 3357890, + "normalized_name": "kaoni カメラで顔を取り戻せ" + }, + { + "appid": 3357910, + "normalized_name": "moba大乱斗" + }, + { + "appid": 3357930, + "normalized_name": "todo list" + }, + { + "appid": 3357960, + "normalized_name": "kuloniku bowl up!" + }, + { + "appid": 3357970, + "normalized_name": "d.o.t" + }, + { + "appid": 3357980, + "normalized_name": "回ル!ハッカー探偵" + }, + { + "appid": 3358010, + "normalized_name": "de lithe last memories" + }, + { + "appid": 3358020, + "normalized_name": "olympus of the heavens" + }, + { + "appid": 3358030, + "normalized_name": "polly's gone" + }, + { + "appid": 3358040, + "normalized_name": "aaa simulator" + }, + { + "appid": 3358060, + "normalized_name": "catena" + }, + { + "appid": 3358170, + "normalized_name": "dodo duckie" + }, + { + "appid": 3358220, + "normalized_name": "oasys speedbots tournament" + }, + { + "appid": 3358230, + "normalized_name": "collect mania" + }, + { + "appid": 3358250, + "normalized_name": "loot of baal" + }, + { + "appid": 3358260, + "normalized_name": "old bones" + }, + { + "appid": 3358270, + "normalized_name": "galeid." + }, + { + "appid": 3358300, + "normalized_name": "mahjong tiles" + }, + { + "appid": 3358340, + "normalized_name": "fearscape the boogeyman" + }, + { + "appid": 3358360, + "normalized_name": "motorcycle night ride" + }, + { + "appid": 3358400, + "normalized_name": "夜班护士模拟器" + }, + { + "appid": 3358410, + "normalized_name": "breaking blocks ~the wizard's annihilation expedition~" + }, + { + "appid": 3358470, + "normalized_name": "timeless treasures the lost artifact" + }, + { + "appid": 3358480, + "normalized_name": "idiom" + }, + { + "appid": 3358510, + "normalized_name": "再刷一把2:金色传说" + }, + { + "appid": 3358520, + "normalized_name": "hidden cats of mayan" + }, + { + "appid": 3358560, + "normalized_name": "hardware store simulator" + }, + { + "appid": 3358580, + "normalized_name": "foot tab" + }, + { + "appid": 3358590, + "normalized_name": "プロレゴメナ およそ3分間の交信の先に現れるであろうきわめて超次元的なインターフェースのための序論" + }, + { + "appid": 3358650, + "normalized_name": "橙子小白大冒险" + }, + { + "appid": 3358660, + "normalized_name": "the yapori clicker" + }, + { + "appid": 3358680, + "normalized_name": "salvage protocol" + }, + { + "appid": 3358690, + "normalized_name": "千和饭堂" + }, + { + "appid": 3358740, + "normalized_name": "sami" + }, + { + "appid": 3358820, + "normalized_name": "snapaul" + }, + { + "appid": 3358850, + "normalized_name": "unfamiliar lands" + }, + { + "appid": 3358870, + "normalized_name": "a sexy tour with marie" + }, + { + "appid": 3358880, + "normalized_name": "nippon marathon 2 daijoubu" + }, + { + "appid": 3358900, + "normalized_name": "tiny racing" + }, + { + "appid": 3358980, + "normalized_name": "red nose guy gauntlet inc. the burnout" + }, + { + "appid": 3359030, + "normalized_name": "boringparty" + }, + { + "appid": 3359140, + "normalized_name": "mr. bomb" + }, + { + "appid": 3359160, + "normalized_name": "couch cup" + }, + { + "appid": 3359190, + "normalized_name": "wolley's dungeon adventure" + }, + { + "appid": 3359200, + "normalized_name": "all aboard! the train defense express" + }, + { + "appid": 3359210, + "normalized_name": "the dreamscape | open beta" + }, + { + "appid": 3359260, + "normalized_name": "strawberry" + }, + { + "appid": 3359280, + "normalized_name": "coolmath games the game" + }, + { + "appid": 3359310, + "normalized_name": "castle dark" + }, + { + "appid": 3359320, + "normalized_name": "schoolboy runaway" + }, + { + "appid": 3359330, + "normalized_name": "crystal rail" + }, + { + "appid": 3359360, + "normalized_name": "randungeon" + }, + { + "appid": 3359370, + "normalized_name": "lands of rumour" + }, + { + "appid": 3359390, + "normalized_name": "wendigo blue" + }, + { + "appid": 3359410, + "normalized_name": "under destruction" + }, + { + "appid": 3359420, + "normalized_name": "celestial front galactic war sim" + }, + { + "appid": 3359430, + "normalized_name": "shadow baptism" + }, + { + "appid": 3359440, + "normalized_name": "soko spectacle" + }, + { + "appid": 3359450, + "normalized_name": "gravity matters" + }, + { + "appid": 3359470, + "normalized_name": "mecha" + }, + { + "appid": 3359480, + "normalized_name": "model casting" + }, + { + "appid": 3359510, + "normalized_name": "ordinary world the video game" + }, + { + "appid": 3359520, + "normalized_name": "shapes like" + }, + { + "appid": 3359540, + "normalized_name": "sex supermarket" + }, + { + "appid": 3359560, + "normalized_name": "fateful destiny" + }, + { + "appid": 3359580, + "normalized_name": "cats contrast" + }, + { + "appid": 3359610, + "normalized_name": "herreshoff's legacy" + }, + { + "appid": 3359630, + "normalized_name": "hazardous hunt" + }, + { + "appid": 3359650, + "normalized_name": "stealthtag" + }, + { + "appid": 3359690, + "normalized_name": "1 bit explorer" + }, + { + "appid": 3359710, + "normalized_name": "rogue protocol" + }, + { + "appid": 3359830, + "normalized_name": "i wanna fuck my busty boss" + }, + { + "appid": 3359840, + "normalized_name": "block sprawl" + }, + { + "appid": 3359860, + "normalized_name": "cappy & tappy temples of peril" + }, + { + "appid": 3359870, + "normalized_name": "grey's sonata" + }, + { + "appid": 3359920, + "normalized_name": "king for a knight" + }, + { + "appid": 3359930, + "normalized_name": "classic solitaire" + }, + { + "appid": 3359990, + "normalized_name": "skullhunter a worm's tale" + }, + { + "appid": 3360000, + "normalized_name": "costume curse" + }, + { + "appid": 3360010, + "normalized_name": "tsukuyomi the divine hunter" + }, + { + "appid": 3360070, + "normalized_name": "天鶴之戀" + }, + { + "appid": 3360110, + "normalized_name": "dice eater a supernatural mystery card game" + }, + { + "appid": 3360130, + "normalized_name": "celestial trails" + }, + { + "appid": 3360150, + "normalized_name": "morning star" + }, + { + "appid": 3360170, + "normalized_name": "maker arena path of vaiolet" + }, + { + "appid": 3360190, + "normalized_name": "九州纪之烽烟四起" + }, + { + "appid": 3360220, + "normalized_name": "run the backrooms" + }, + { + "appid": 3360230, + "normalized_name": "dookie clicker" + }, + { + "appid": 3360250, + "normalized_name": "my cute egg diary" + }, + { + "appid": 3360260, + "normalized_name": "epiko world" + }, + { + "appid": 3360270, + "normalized_name": "potion promise" + }, + { + "appid": 3360280, + "normalized_name": "suspicious holes" + }, + { + "appid": 3360300, + "normalized_name": "水中套圈机模拟器" + }, + { + "appid": 3360320, + "normalized_name": "silent signals" + }, + { + "appid": 3360330, + "normalized_name": "灵魂重生 reborn the soul" + }, + { + "appid": 3360380, + "normalized_name": "おしゃべりキング!コミュ力診断ゲーム" + }, + { + "appid": 3360390, + "normalized_name": "pursued" + }, + { + "appid": 3360420, + "normalized_name": "evil world hopsca" + }, + { + "appid": 3360580, + "normalized_name": "oden" + }, + { + "appid": 3360590, + "normalized_name": "lofty little chess" + }, + { + "appid": 3360630, + "normalized_name": "onionisin" + }, + { + "appid": 3360660, + "normalized_name": "orbital battle" + }, + { + "appid": 3360690, + "normalized_name": "集墨聚场:水镜三国" + }, + { + "appid": 3360700, + "normalized_name": "decktd" + }, + { + "appid": 3360710, + "normalized_name": "a way home uzy's journey" + }, + { + "appid": 3360730, + "normalized_name": "society girl" + }, + { + "appid": 3360740, + "normalized_name": "spatium" + }, + { + "appid": 3360770, + "normalized_name": "the blue cut hook" + }, + { + "appid": 3360780, + "normalized_name": "bloodmoon rush" + }, + { + "appid": 3360810, + "normalized_name": "sweet tavern" + }, + { + "appid": 3360820, + "normalized_name": "great hoax the moon landing" + }, + { + "appid": 3360850, + "normalized_name": "harmony in the wild" + }, + { + "appid": 3360860, + "normalized_name": "sneakbit" + }, + { + "appid": 3360880, + "normalized_name": "spirit driver" + }, + { + "appid": 3360890, + "normalized_name": "project thea" + }, + { + "appid": 3360930, + "normalized_name": "super jagger bomb 2 go east" + }, + { + "appid": 3360950, + "normalized_name": "run the rings" + }, + { + "appid": 3360990, + "normalized_name": "cook or be cooked your next meal could be your last—or your true love" + }, + { + "appid": 3361000, + "normalized_name": "swing swamp" + }, + { + "appid": 3361030, + "normalized_name": "orbital cascade" + }, + { + "appid": 3361060, + "normalized_name": "m.a.n" + }, + { + "appid": 3361090, + "normalized_name": "feedme. puzzle" + }, + { + "appid": 3361120, + "normalized_name": "vermilion dance" + }, + { + "appid": 3361180, + "normalized_name": "doomed detective game" + }, + { + "appid": 3361190, + "normalized_name": "zopharion" + }, + { + "appid": 3361200, + "normalized_name": "time management" + }, + { + "appid": 3361210, + "normalized_name": "brok natal tail a new christmas" + }, + { + "appid": 3361220, + "normalized_name": "watermelon simulator" + }, + { + "appid": 3361280, + "normalized_name": "sattelite" + }, + { + "appid": 3361320, + "normalized_name": "amarela" + }, + { + "appid": 3361330, + "normalized_name": "turret titans" + }, + { + "appid": 3361340, + "normalized_name": "shop simulator waifu pillows" + }, + { + "appid": 3361360, + "normalized_name": "red pill cola" + }, + { + "appid": 3361380, + "normalized_name": "leas city of the sun" + }, + { + "appid": 3361460, + "normalized_name": "deluded" + }, + { + "appid": 3361470, + "normalized_name": "digseum" + }, + { + "appid": 3361480, + "normalized_name": "bagdex" + }, + { + "appid": 3361500, + "normalized_name": "thaumsmith" + }, + { + "appid": 3361510, + "normalized_name": "coal llc" + }, + { + "appid": 3361540, + "normalized_name": "tyrone vs cops 2" + }, + { + "appid": 3361600, + "normalized_name": "divine sin" + }, + { + "appid": 3361620, + "normalized_name": "motorcycle sales simulator" + }, + { + "appid": 3361660, + "normalized_name": "slashboy" + }, + { + "appid": 3361700, + "normalized_name": "one million stars" + }, + { + "appid": 3361720, + "normalized_name": "saucepanhead i pangalactic panic" + }, + { + "appid": 3361730, + "normalized_name": "bouncing buds" + }, + { + "appid": 3361760, + "normalized_name": "metabrawl" + }, + { + "appid": 3361770, + "normalized_name": "escape from castle claymount" + }, + { + "appid": 3361780, + "normalized_name": "celestia's light" + }, + { + "appid": 3361790, + "normalized_name": "aquaco" + }, + { + "appid": 3361810, + "normalized_name": "jr's christmas adventure" + }, + { + "appid": 3361820, + "normalized_name": "beware behind you" + }, + { + "appid": 3361860, + "normalized_name": "army troop" + }, + { + "appid": 3361890, + "normalized_name": "v shift" + }, + { + "appid": 3361900, + "normalized_name": "quipu runner warmi's legacy" + }, + { + "appid": 3361910, + "normalized_name": "stan" + }, + { + "appid": 3361980, + "normalized_name": "grocery store simulator" + }, + { + "appid": 3362040, + "normalized_name": "cell command" + }, + { + "appid": 3362070, + "normalized_name": "pizzadefense" + }, + { + "appid": 3362090, + "normalized_name": "etaine magic link dungeon / 伊泰恩:魔链迷宫" + }, + { + "appid": 3362100, + "normalized_name": "sticks aim trainer" + }, + { + "appid": 3362120, + "normalized_name": "悠星大陆『elysium expanse』bd构筑二次元mmorpg" + }, + { + "appid": 3362130, + "normalized_name": "room 502" + }, + { + "appid": 3362140, + "normalized_name": "mirage episode:1" + }, + { + "appid": 3362160, + "normalized_name": "арка края" + }, + { + "appid": 3362170, + "normalized_name": "uciana" + }, + { + "appid": 3362190, + "normalized_name": "料理乱斗" + }, + { + "appid": 3362210, + "normalized_name": "sea fight" + }, + { + "appid": 3362250, + "normalized_name": "not tactical vr" + }, + { + "appid": 3362260, + "normalized_name": "the ninth forset" + }, + { + "appid": 3362290, + "normalized_name": "kukumber" + }, + { + "appid": 3362320, + "normalized_name": "tap derby horse racing" + }, + { + "appid": 3362330, + "normalized_name": "eggroyale" + }, + { + "appid": 3362340, + "normalized_name": "survive society" + }, + { + "appid": 3362350, + "normalized_name": "dankenstoned’s bongster’s gram smoker’s stankula" + }, + { + "appid": 3362370, + "normalized_name": "帝国烽烟" + }, + { + "appid": 3362390, + "normalized_name": "烈焰狂奔" + }, + { + "appid": 3362480, + "normalized_name": "sex apartment 💫" + }, + { + "appid": 3362500, + "normalized_name": "wild horizon edge of survival" + }, + { + "appid": 3362670, + "normalized_name": "crypt robbery" + }, + { + "appid": 3362750, + "normalized_name": "stormbridge" + }, + { + "appid": 3362760, + "normalized_name": "locating echo" + }, + { + "appid": 3362780, + "normalized_name": "outlaws vs aliens" + }, + { + "appid": 3362790, + "normalized_name": "pets" + }, + { + "appid": 3362830, + "normalized_name": "rolling toss" + }, + { + "appid": 3362850, + "normalized_name": "the dollmaker" + }, + { + "appid": 3362860, + "normalized_name": "丧尸猎杀" + }, + { + "appid": 3362870, + "normalized_name": "simpwalk" + }, + { + "appid": 3362900, + "normalized_name": "idle legion" + }, + { + "appid": 3362940, + "normalized_name": "wordblast" + }, + { + "appid": 3362960, + "normalized_name": "twinkleby" + }, + { + "appid": 3362990, + "normalized_name": "the three kingdoms the tales of jian an" + }, + { + "appid": 3363000, + "normalized_name": "1000 princes born to love you" + }, + { + "appid": 3363030, + "normalized_name": "tdp4 team battle" + }, + { + "appid": 3363040, + "normalized_name": "flan's bn" + }, + { + "appid": 3363050, + "normalized_name": "piñata puppy world" + }, + { + "appid": 3363180, + "normalized_name": "maze master" + }, + { + "appid": 3363200, + "normalized_name": "midnight snack" + }, + { + "appid": 3363230, + "normalized_name": "shadows guard" + }, + { + "appid": 3363240, + "normalized_name": "かいがらの夢" + }, + { + "appid": 3363250, + "normalized_name": "anomaly corridor" + }, + { + "appid": 3363270, + "normalized_name": "fischer's fishing journey" + }, + { + "appid": 3363280, + "normalized_name": "harvester's shrine" + }, + { + "appid": 3363310, + "normalized_name": "rethink | evolved 6" + }, + { + "appid": 3363390, + "normalized_name": "passioners" + }, + { + "appid": 3363410, + "normalized_name": "lumi trek" + }, + { + "appid": 3363420, + "normalized_name": "xmas super puzzles dream" + }, + { + "appid": 3363430, + "normalized_name": "dreamscape island" + }, + { + "appid": 3363450, + "normalized_name": "3 days in another world" + }, + { + "appid": 3363480, + "normalized_name": "void point" + }, + { + "appid": 3363510, + "normalized_name": "junkyard rush racing" + }, + { + "appid": 3363530, + "normalized_name": "the tavern tales medieval simulator" + }, + { + "appid": 3363550, + "normalized_name": "dreadful defenders" + }, + { + "appid": 3363560, + "normalized_name": "shard squad" + }, + { + "appid": 3363570, + "normalized_name": "symphorix" + }, + { + "appid": 3363580, + "normalized_name": "domain of hallucination" + }, + { + "appid": 3363590, + "normalized_name": "secrets in green" + }, + { + "appid": 3363600, + "normalized_name": "bonk the rat" + }, + { + "appid": 3363610, + "normalized_name": "lurking among shadows" + }, + { + "appid": 3363630, + "normalized_name": "hidden cats of atlantis" + }, + { + "appid": 3363640, + "normalized_name": "puyo! sokoban" + }, + { + "appid": 3363680, + "normalized_name": "eversiege untold ages" + }, + { + "appid": 3363700, + "normalized_name": "beyond the bridge" + }, + { + "appid": 3363730, + "normalized_name": "christmas chaos" + }, + { + "appid": 3363740, + "normalized_name": "charley crew" + }, + { + "appid": 3363780, + "normalized_name": "save the miners!" + }, + { + "appid": 3363790, + "normalized_name": "lift/shift" + }, + { + "appid": 3363800, + "normalized_name": "echo of souls" + }, + { + "appid": 3363810, + "normalized_name": "hidden dogs in the dog house" + }, + { + "appid": 3363820, + "normalized_name": "inside the forest" + }, + { + "appid": 3363830, + "normalized_name": "weed store simulator" + }, + { + "appid": 3363840, + "normalized_name": "hangman" + }, + { + "appid": 3363890, + "normalized_name": "vehicle no. 4" + }, + { + "appid": 3363970, + "normalized_name": "varg" + }, + { + "appid": 3363980, + "normalized_name": "galaxy hassle" + }, + { + "appid": 3364060, + "normalized_name": "ocean goal" + }, + { + "appid": 3364080, + "normalized_name": "blessing in the darkness" + }, + { + "appid": 3364120, + "normalized_name": "the undergrounders" + }, + { + "appid": 3364130, + "normalized_name": "eoprism" + }, + { + "appid": 3364220, + "normalized_name": "ventilate" + }, + { + "appid": 3364470, + "normalized_name": "forklift certified" + }, + { + "appid": 3364480, + "normalized_name": "shai’s gambit" + }, + { + "appid": 3364490, + "normalized_name": "maid for my master" + }, + { + "appid": 3364500, + "normalized_name": "puzzle pop paradise" + }, + { + "appid": 3364520, + "normalized_name": "scenes from the heart part 1" + }, + { + "appid": 3364560, + "normalized_name": "pogopogo" + }, + { + "appid": 3364570, + "normalized_name": "hoard hotel" + }, + { + "appid": 3364590, + "normalized_name": "human hunting hijinks" + }, + { + "appid": 3364600, + "normalized_name": "the hunter's path" + }, + { + "appid": 3364650, + "normalized_name": "exorcist" + }, + { + "appid": 3364770, + "normalized_name": "迷雾审判" + }, + { + "appid": 3364810, + "normalized_name": "don't shoot the humans!" + }, + { + "appid": 3364830, + "normalized_name": "brave × junction" + }, + { + "appid": 3364850, + "normalized_name": "birdworld" + }, + { + "appid": 3364860, + "normalized_name": "少女地獄カルデア|galaxy express chaldea" + }, + { + "appid": 3364880, + "normalized_name": "moral dilemma the interview" + }, + { + "appid": 3364910, + "normalized_name": "herbal haven" + }, + { + "appid": 3364940, + "normalized_name": "ナンプレ relax" + }, + { + "appid": 3364970, + "normalized_name": "alisa's grimoire" + }, + { + "appid": 3364980, + "normalized_name": "gameday mayhem!!" + }, + { + "appid": 3365000, + "normalized_name": "zombies ate my femboy" + }, + { + "appid": 3365080, + "normalized_name": "赴生" + }, + { + "appid": 3365090, + "normalized_name": "alexander" + }, + { + "appid": 3365120, + "normalized_name": "doomsday tower defense" + }, + { + "appid": 3365130, + "normalized_name": "air traffic control" + }, + { + "appid": 3365140, + "normalized_name": "brainrot" + }, + { + "appid": 3365170, + "normalized_name": "nexus fpv drone warfare simulator" + }, + { + "appid": 3365300, + "normalized_name": "a stitch in time" + }, + { + "appid": 3365320, + "normalized_name": "idle little buddies" + }, + { + "appid": 3365360, + "normalized_name": "灵魂•启示录" + }, + { + "appid": 3365370, + "normalized_name": "strange alchemy" + }, + { + "appid": 3365380, + "normalized_name": "big boy adventure" + }, + { + "appid": 3365400, + "normalized_name": "dungeon mana" + }, + { + "appid": 3365420, + "normalized_name": "cosmic star lounge" + }, + { + "appid": 3365430, + "normalized_name": "ファンタジーワールド ~魔王の想いと真実と~" + }, + { + "appid": 3365440, + "normalized_name": "chromesthesia vr music visualizer" + }, + { + "appid": 3365450, + "normalized_name": "a regular store" + }, + { + "appid": 3365470, + "normalized_name": "synthwave driver" + }, + { + "appid": 3365560, + "normalized_name": "fireside fables cozy narrative adventure!" + }, + { + "appid": 3365630, + "normalized_name": "heroes & dice" + }, + { + "appid": 3365660, + "normalized_name": "tidal rush" + }, + { + "appid": 3365680, + "normalized_name": "noneworld" + }, + { + "appid": 3365730, + "normalized_name": "quick coin run away" + }, + { + "appid": 3365820, + "normalized_name": "palette cleanser" + }, + { + "appid": 3365840, + "normalized_name": "the final print" + }, + { + "appid": 3365850, + "normalized_name": "katharsi" + }, + { + "appid": 3365860, + "normalized_name": "break a bot" + }, + { + "appid": 3365870, + "normalized_name": "umbra mortis" + }, + { + "appid": 3365890, + "normalized_name": "up n smoke" + }, + { + "appid": 3365900, + "normalized_name": "oh bugger!" + }, + { + "appid": 3365910, + "normalized_name": "dreadtome" + }, + { + "appid": 3365920, + "normalized_name": "blightspire" + }, + { + "appid": 3365970, + "normalized_name": "愛情終點" + }, + { + "appid": 3365990, + "normalized_name": "broom broom karts" + }, + { + "appid": 3366000, + "normalized_name": "shooting range owner simulator" + }, + { + "appid": 3366010, + "normalized_name": "kitchen wars appetiser" + }, + { + "appid": 3366030, + "normalized_name": "hidden cats of mars" + }, + { + "appid": 3366050, + "normalized_name": "crypt of light" + }, + { + "appid": 3366060, + "normalized_name": "dice making ending" + }, + { + "appid": 3366070, + "normalized_name": "champi" + }, + { + "appid": 3366120, + "normalized_name": "goppy" + }, + { + "appid": 3366130, + "normalized_name": "towers heritage" + }, + { + "appid": 3366140, + "normalized_name": "cybercook" + }, + { + "appid": 3366170, + "normalized_name": "jirai the red panda" + }, + { + "appid": 3366200, + "normalized_name": "nonogos" + }, + { + "appid": 3366270, + "normalized_name": "attack of the dead" + }, + { + "appid": 3366410, + "normalized_name": "hidden cats christmas" + }, + { + "appid": 3366590, + "normalized_name": "crestfall" + }, + { + "appid": 3366600, + "normalized_name": "2nd shot" + }, + { + "appid": 3366700, + "normalized_name": "penalty" + }, + { + "appid": 3366710, + "normalized_name": "color a cube" + }, + { + "appid": 3366750, + "normalized_name": "echo extract" + }, + { + "appid": 3366870, + "normalized_name": "fatal research" + }, + { + "appid": 3366910, + "normalized_name": "slime rush leshy and the magic book" + }, + { + "appid": 3366940, + "normalized_name": "lover interface" + }, + { + "appid": 3366950, + "normalized_name": "propeller pete" + }, + { + "appid": 3366960, + "normalized_name": "pit of the plague pre alpha" + }, + { + "appid": 3366990, + "normalized_name": "anthony" + }, + { + "appid": 3367000, + "normalized_name": "threads of karma" + }, + { + "appid": 3367010, + "normalized_name": "chasers" + }, + { + "appid": 3367020, + "normalized_name": "ungaland!" + }, + { + "appid": 3367030, + "normalized_name": "雪原余烬 snow ash" + }, + { + "appid": 3367060, + "normalized_name": "nifty smashers" + }, + { + "appid": 3367070, + "normalized_name": "lost age" + }, + { + "appid": 3367130, + "normalized_name": "nine lives" + }, + { + "appid": 3367170, + "normalized_name": "mystic watcher" + }, + { + "appid": 3367190, + "normalized_name": "rake in scoring big with monster girls!" + }, + { + "appid": 3367260, + "normalized_name": "dungeon invader" + }, + { + "appid": 3367360, + "normalized_name": "3072" + }, + { + "appid": 3367480, + "normalized_name": "null path" + }, + { + "appid": 3367490, + "normalized_name": "color escape 🌈" + }, + { + "appid": 3367500, + "normalized_name": "fish stick protocol" + }, + { + "appid": 3367520, + "normalized_name": "wrath and retribution" + }, + { + "appid": 3367540, + "normalized_name": "code loopbreaker escape room" + }, + { + "appid": 3367590, + "normalized_name": "hidden tomatoes" + }, + { + "appid": 3367600, + "normalized_name": "dream garden" + }, + { + "appid": 3367610, + "normalized_name": "scent of clouds" + }, + { + "appid": 3367620, + "normalized_name": "cleave" + }, + { + "appid": 3367660, + "normalized_name": "vamos rafa" + }, + { + "appid": 3367680, + "normalized_name": "duel champions roguelike trading card game" + }, + { + "appid": 3367690, + "normalized_name": "void sails" + }, + { + "appid": 3367700, + "normalized_name": "parallhex" + }, + { + "appid": 3367710, + "normalized_name": "the abyss break" + }, + { + "appid": 3367720, + "normalized_name": "andalas realms of eternal lights" + }, + { + "appid": 3367740, + "normalized_name": "the secret story" + }, + { + "appid": 3367770, + "normalized_name": "sheol inferno" + }, + { + "appid": 3367780, + "normalized_name": "mutational loading" + }, + { + "appid": 3367820, + "normalized_name": "my femboy roommate special weekend" + }, + { + "appid": 3367880, + "normalized_name": "gigabyte dynamite" + }, + { + "appid": 3367900, + "normalized_name": "brainstorm" + }, + { + "appid": 3367920, + "normalized_name": "emborne lucidem redemption" + }, + { + "appid": 3367930, + "normalized_name": "dismal dreams" + }, + { + "appid": 3367950, + "normalized_name": "five more minutes" + }, + { + "appid": 3367980, + "normalized_name": "tankthunder" + }, + { + "appid": 3368050, + "normalized_name": "mr. photographer into the light" + }, + { + "appid": 3368060, + "normalized_name": "fartissimo" + }, + { + "appid": 3368080, + "normalized_name": "exobrave" + }, + { + "appid": 3368090, + "normalized_name": "bumperfish" + }, + { + "appid": 3368100, + "normalized_name": "very bad dreams" + }, + { + "appid": 3368150, + "normalized_name": "saltwater bodies" + }, + { + "appid": 3368200, + "normalized_name": "the void an incremental roguelite" + }, + { + "appid": 3368210, + "normalized_name": "blocktopia" + }, + { + "appid": 3368230, + "normalized_name": "blue" + }, + { + "appid": 3368250, + "normalized_name": "delicious the first course" + }, + { + "appid": 3368280, + "normalized_name": "interstellar together" + }, + { + "appid": 3368300, + "normalized_name": "fogrest the whisper of harbingers" + }, + { + "appid": 3368340, + "normalized_name": "mystic resistance" + }, + { + "appid": 3368350, + "normalized_name": "shogi 3d" + }, + { + "appid": 3368360, + "normalized_name": "potion seller" + }, + { + "appid": 3368390, + "normalized_name": "nyric" + }, + { + "appid": 3368400, + "normalized_name": "tretrais" + }, + { + "appid": 3368410, + "normalized_name": "banners called" + }, + { + "appid": 3368470, + "normalized_name": "road to yvhalon" + }, + { + "appid": 3368480, + "normalized_name": "pest control in the crypt" + }, + { + "appid": 3368510, + "normalized_name": "city of stories the professor's secret collector's" + }, + { + "appid": 3368530, + "normalized_name": "flockit" + }, + { + "appid": 3368550, + "normalized_name": "panzer planet" + }, + { + "appid": 3368580, + "normalized_name": "thor's delivery service" + }, + { + "appid": 3368640, + "normalized_name": "jbomb" + }, + { + "appid": 3368800, + "normalized_name": "jumpers league" + }, + { + "appid": 3368820, + "normalized_name": "edge of reality the legend of greenbush collector's" + }, + { + "appid": 3368850, + "normalized_name": "cards battle royale" + }, + { + "appid": 3368860, + "normalized_name": "sinkie soldiers" + }, + { + "appid": 3368880, + "normalized_name": "pickscover 2" + }, + { + "appid": 3368910, + "normalized_name": "outsiders" + }, + { + "appid": 3368940, + "normalized_name": "someone is behind you" + }, + { + "appid": 3368980, + "normalized_name": "cat rescue" + }, + { + "appid": 3369000, + "normalized_name": "noox" + }, + { + "appid": 3369010, + "normalized_name": "error loop" + }, + { + "appid": 3369020, + "normalized_name": "death & faeology" + }, + { + "appid": 3369050, + "normalized_name": "art detective hidden in gusu" + }, + { + "appid": 3369060, + "normalized_name": "space defense special force" + }, + { + "appid": 3369070, + "normalized_name": "law school season 1" + }, + { + "appid": 3369080, + "normalized_name": "飞机大战 hit a plane" + }, + { + "appid": 3369100, + "normalized_name": "修真幸存者(immortal survivor)" + }, + { + "appid": 3369110, + "normalized_name": "bubble girl" + }, + { + "appid": 3369120, + "normalized_name": "rockout only up with your head" + }, + { + "appid": 3369140, + "normalized_name": "sorrel coffee" + }, + { + "appid": 3369150, + "normalized_name": "destiny spire" + }, + { + "appid": 3369180, + "normalized_name": "万族竞技场 wanzu arena" + }, + { + "appid": 3369190, + "normalized_name": "reptilian" + }, + { + "appid": 3369200, + "normalized_name": "kabuki fire" + }, + { + "appid": 3369210, + "normalized_name": "roachman" + }, + { + "appid": 3369220, + "normalized_name": "bitbeasts" + }, + { + "appid": 3369250, + "normalized_name": "loki the lynx" + }, + { + "appid": 3369290, + "normalized_name": "combat rally" + }, + { + "appid": 3369300, + "normalized_name": "well dumb" + }, + { + "appid": 3369340, + "normalized_name": "meowland island farm" + }, + { + "appid": 3369360, + "normalized_name": "my little milf" + }, + { + "appid": 3369370, + "normalized_name": "ship of love" + }, + { + "appid": 3369390, + "normalized_name": "penguin hotel 2 snake penguin ambition" + }, + { + "appid": 3369410, + "normalized_name": "the fallen kingdom" + }, + { + "appid": 3369420, + "normalized_name": "fading echoes" + }, + { + "appid": 3369430, + "normalized_name": "for blood and glory" + }, + { + "appid": 3369470, + "normalized_name": "unlock me" + }, + { + "appid": 3369500, + "normalized_name": "querent" + }, + { + "appid": 3369510, + "normalized_name": "kenix and the cat king" + }, + { + "appid": 3369570, + "normalized_name": "mamizou's mimic check" + }, + { + "appid": 3369610, + "normalized_name": "berserk warrior infinite roguelike" + }, + { + "appid": 3369700, + "normalized_name": "the tower of eden" + }, + { + "appid": 3369850, + "normalized_name": "the sushi bar | 寿司バー" + }, + { + "appid": 3369920, + "normalized_name": "upg" + }, + { + "appid": 3369940, + "normalized_name": "the tall man tapes" + }, + { + "appid": 3369970, + "normalized_name": "super burger clicker" + }, + { + "appid": 3370050, + "normalized_name": "bam bam boom" + }, + { + "appid": 3370080, + "normalized_name": "new year's surprise" + }, + { + "appid": 3370120, + "normalized_name": "block puzzle" + }, + { + "appid": 3370150, + "normalized_name": "moka cat" + }, + { + "appid": 3370170, + "normalized_name": "the underworld of brain damage" + }, + { + "appid": 3370180, + "normalized_name": "天使機構執行部魂救済課" + }, + { + "appid": 3370190, + "normalized_name": "open fishing 2" + }, + { + "appid": 3370230, + "normalized_name": "trait" + }, + { + "appid": 3370260, + "normalized_name": "white room mind’s prison" + }, + { + "appid": 3370270, + "normalized_name": "backrooms" + }, + { + "appid": 3370290, + "normalized_name": "four circles" + }, + { + "appid": 3370330, + "normalized_name": "purple tears. part i everybody dies in the end" + }, + { + "appid": 3370340, + "normalized_name": "dimension escape" + }, + { + "appid": 3370350, + "normalized_name": "happy furry restaurant" + }, + { + "appid": 3370370, + "normalized_name": "fruitopia" + }, + { + "appid": 3370430, + "normalized_name": "hentai world halloween" + }, + { + "appid": 3370450, + "normalized_name": "celestials door" + }, + { + "appid": 3370460, + "normalized_name": "幼馴染とイチャラブえっち!! ~初々しかったあの子がド〇乱セッ〇ス中毒に~" + }, + { + "appid": 3370480, + "normalized_name": "rotten forgotten" + }, + { + "appid": 3370490, + "normalized_name": "giggleland" + }, + { + "appid": 3370500, + "normalized_name": "mine forever" + }, + { + "appid": 3370510, + "normalized_name": "artillery tycoon" + }, + { + "appid": 3370520, + "normalized_name": "blasteroids" + }, + { + "appid": 3370540, + "normalized_name": "street chef food seller simulator" + }, + { + "appid": 3370560, + "normalized_name": "wizard's quest reclaiming the realm" + }, + { + "appid": 3370570, + "normalized_name": "space and lazers" + }, + { + "appid": 3370580, + "normalized_name": "runes of madness" + }, + { + "appid": 3370600, + "normalized_name": "lost room escape" + }, + { + "appid": 3370640, + "normalized_name": "liminophobia" + }, + { + "appid": 3370680, + "normalized_name": "violet muscle pain" + }, + { + "appid": 3370710, + "normalized_name": "rome in a day" + }, + { + "appid": 3370730, + "normalized_name": "falconlander" + }, + { + "appid": 3370750, + "normalized_name": "blacknoise shutdown" + }, + { + "appid": 3370840, + "normalized_name": "five heads" + }, + { + "appid": 3370930, + "normalized_name": "slimebrew" + }, + { + "appid": 3370940, + "normalized_name": "erotic fantasy hentai photographer" + }, + { + "appid": 3370950, + "normalized_name": "phantom demon siege" + }, + { + "appid": 3370960, + "normalized_name": "kinshft" + }, + { + "appid": 3370970, + "normalized_name": "star garden" + }, + { + "appid": 3371030, + "normalized_name": "つめたい夏" + }, + { + "appid": 3371050, + "normalized_name": "zeverland" + }, + { + "appid": 3371060, + "normalized_name": "keyclash" + }, + { + "appid": 3371070, + "normalized_name": "你确定要喝这个?" + }, + { + "appid": 3371090, + "normalized_name": "biophyllia" + }, + { + "appid": 3371110, + "normalized_name": "究极少女 阿尔特斯" + }, + { + "appid": 3371180, + "normalized_name": "rgb athletes" + }, + { + "appid": 3371200, + "normalized_name": "遺品" + }, + { + "appid": 3371220, + "normalized_name": "jumpo world" + }, + { + "appid": 3371240, + "normalized_name": "beyond citadel" + }, + { + "appid": 3371250, + "normalized_name": "ウザいハゲ上司は一発シバいたろか!" + }, + { + "appid": 3371260, + "normalized_name": "列乌尼斯的挽歌 requiem of reuinis" + }, + { + "appid": 3371270, + "normalized_name": "にんぷち!cryptoninja petit" + }, + { + "appid": 3371320, + "normalized_name": "wildage" + }, + { + "appid": 3371410, + "normalized_name": "赢了嫩模 输了不活 all in everyday" + }, + { + "appid": 3371420, + "normalized_name": "吸血鬼杀人事件 the resurrection of vampire" + }, + { + "appid": 3371430, + "normalized_name": "unsolved case ash and secrets collector's" + }, + { + "appid": 3371460, + "normalized_name": "the lighthouse is my home" + }, + { + "appid": 3371480, + "normalized_name": "蜀汉再临:源起 restart shuhan dynasty origin" + }, + { + "appid": 3371500, + "normalized_name": "傲世修仙录" + }, + { + "appid": 3371510, + "normalized_name": "roulette hero" + }, + { + "appid": 3371520, + "normalized_name": "tea house simulator" + }, + { + "appid": 3371630, + "normalized_name": "age of warbots" + }, + { + "appid": 3371650, + "normalized_name": "car mechanic workshop" + }, + { + "appid": 3371660, + "normalized_name": "rochford reanimated" + }, + { + "appid": 3371710, + "normalized_name": "rabbit trail" + }, + { + "appid": 3371720, + "normalized_name": "tangles 2 تشابك" + }, + { + "appid": 3371740, + "normalized_name": "aum the game" + }, + { + "appid": 3371770, + "normalized_name": "funguys swarm" + }, + { + "appid": 3371790, + "normalized_name": "platform run" + }, + { + "appid": 3371840, + "normalized_name": "heritage" + }, + { + "appid": 3371930, + "normalized_name": "only false" + }, + { + "appid": 3371940, + "normalized_name": "powerless" + }, + { + "appid": 3372000, + "normalized_name": "brutalistika" + }, + { + "appid": 3372010, + "normalized_name": "darke haunting hours" + }, + { + "appid": 3372040, + "normalized_name": "numanuin clicker" + }, + { + "appid": 3372080, + "normalized_name": "mogradiz" + }, + { + "appid": 3372090, + "normalized_name": "hell of fear mind breach" + }, + { + "appid": 3372180, + "normalized_name": "dark matters" + }, + { + "appid": 3372190, + "normalized_name": "blue crow" + }, + { + "appid": 3372390, + "normalized_name": "estacion piramides" + }, + { + "appid": 3372410, + "normalized_name": "audioglide" + }, + { + "appid": 3372420, + "normalized_name": "libritopia librarian simulator" + }, + { + "appid": 3372440, + "normalized_name": "wizard's warp" + }, + { + "appid": 3372460, + "normalized_name": "screaming head" + }, + { + "appid": 3372500, + "normalized_name": "1000 the all mother's embrace" + }, + { + "appid": 3372510, + "normalized_name": "car wash" + }, + { + "appid": 3372530, + "normalized_name": "valorborn" + }, + { + "appid": 3372540, + "normalized_name": "dungeon mutt" + }, + { + "appid": 3372570, + "normalized_name": "peek a mimic christmas castle" + }, + { + "appid": 3372590, + "normalized_name": "fit right in" + }, + { + "appid": 3372620, + "normalized_name": "axyn adventure" + }, + { + "appid": 3372630, + "normalized_name": "project plague" + }, + { + "appid": 3372640, + "normalized_name": "merchants of the stars" + }, + { + "appid": 3372650, + "normalized_name": "tangermarine" + }, + { + "appid": 3372710, + "normalized_name": "noble legacy" + }, + { + "appid": 3372720, + "normalized_name": "anime jigsaw" + }, + { + "appid": 3372740, + "normalized_name": "evil timefall" + }, + { + "appid": 3372820, + "normalized_name": "christmas wonderland 15 collector's" + }, + { + "appid": 3372850, + "normalized_name": "there's always a madman the macguffin" + }, + { + "appid": 3372930, + "normalized_name": "station haven 3" + }, + { + "appid": 3372950, + "normalized_name": "ashgard infinity mask" + }, + { + "appid": 3372960, + "normalized_name": "christmas infinity" + }, + { + "appid": 3372980, + "normalized_name": "tower wizard" + }, + { + "appid": 3372990, + "normalized_name": "the backrooms liminalphobia" + }, + { + "appid": 3373000, + "normalized_name": "multiwindows" + }, + { + "appid": 3373030, + "normalized_name": "journey on the other side" + }, + { + "appid": 3373040, + "normalized_name": "electronics supermarket simulator" + }, + { + "appid": 3373050, + "normalized_name": "girl abducted" + }, + { + "appid": 3373280, + "normalized_name": "undead rampage" + }, + { + "appid": 3373310, + "normalized_name": "mawforged" + }, + { + "appid": 3373330, + "normalized_name": "pik the archon" + }, + { + "appid": 3373340, + "normalized_name": "bounceback" + }, + { + "appid": 3373390, + "normalized_name": "hidden cats snow" + }, + { + "appid": 3373400, + "normalized_name": "recoil control the adventures of rico ché" + }, + { + "appid": 3373410, + "normalized_name": "katakamuna idle" + }, + { + "appid": 3373430, + "normalized_name": "somnium eleven" + }, + { + "appid": 3373460, + "normalized_name": "goblin quest ii" + }, + { + "appid": 3373480, + "normalized_name": "white prototype" + }, + { + "appid": 3373490, + "normalized_name": "chasing cassidy" + }, + { + "appid": 3373500, + "normalized_name": "scavland" + }, + { + "appid": 3373520, + "normalized_name": "xalos conquest" + }, + { + "appid": 3373530, + "normalized_name": "おしかけケモミミついんず furry twins" + }, + { + "appid": 3373540, + "normalized_name": "our war firepower suppression" + }, + { + "appid": 3373550, + "normalized_name": "なつ♡カノ summer girlfriend" + }, + { + "appid": 3373580, + "normalized_name": "there's always a madman v.i.c.t.o.r." + }, + { + "appid": 3373630, + "normalized_name": "entities" + }, + { + "appid": 3373660, + "normalized_name": "look outside" + }, + { + "appid": 3373670, + "normalized_name": "dice people" + }, + { + "appid": 3373680, + "normalized_name": "nightmare owl" + }, + { + "appid": 3373730, + "normalized_name": "the secret ops 2" + }, + { + "appid": 3373750, + "normalized_name": "limb origins" + }, + { + "appid": 3373760, + "normalized_name": "afei's trouble" + }, + { + "appid": 3373800, + "normalized_name": "relaxing fields" + }, + { + "appid": 3373810, + "normalized_name": "on roads between" + }, + { + "appid": 3373820, + "normalized_name": "~婆~怪異譚病棟編" + }, + { + "appid": 3373830, + "normalized_name": "the way of the tray japanese restaurant simulator 🍙" + }, + { + "appid": 3373860, + "normalized_name": "cerulean invasion" + }, + { + "appid": 3373900, + "normalized_name": "星梦轨迹 中国式经纪人" + }, + { + "appid": 3373920, + "normalized_name": "pengu lost and wanted" + }, + { + "appid": 3373950, + "normalized_name": "古き薔薇の館 old rose mansion" + }, + { + "appid": 3373960, + "normalized_name": "holo8" + }, + { + "appid": 3373970, + "normalized_name": "antd" + }, + { + "appid": 3373990, + "normalized_name": "小孩语" + }, + { + "appid": 3374020, + "normalized_name": "buddy bug" + }, + { + "appid": 3374040, + "normalized_name": "since 1935" + }, + { + "appid": 3374060, + "normalized_name": "ruins of the titan" + }, + { + "appid": 3374070, + "normalized_name": "pachinko td" + }, + { + "appid": 3374090, + "normalized_name": "wishes of dawn" + }, + { + "appid": 3374140, + "normalized_name": "the gears factory" + }, + { + "appid": 3374160, + "normalized_name": "csc" + }, + { + "appid": 3374270, + "normalized_name": "heresis" + }, + { + "appid": 3374280, + "normalized_name": "p.i." + }, + { + "appid": 3374300, + "normalized_name": "seize the elixir" + }, + { + "appid": 3374340, + "normalized_name": "opa super janken" + }, + { + "appid": 3374360, + "normalized_name": "dream kitten" + }, + { + "appid": 3374390, + "normalized_name": "fleshbound" + }, + { + "appid": 3374420, + "normalized_name": "cards & crown" + }, + { + "appid": 3374440, + "normalized_name": "majulah" + }, + { + "appid": 3374450, + "normalized_name": "lawnmower game jigsaw" + }, + { + "appid": 3374460, + "normalized_name": "causal loop" + }, + { + "appid": 3374470, + "normalized_name": "dungeon destroyer" + }, + { + "appid": 3374550, + "normalized_name": "quad puzzler" + }, + { + "appid": 3374560, + "normalized_name": "catch the skunk" + }, + { + "appid": 3374570, + "normalized_name": "pond twister" + }, + { + "appid": 3374590, + "normalized_name": "lewis quest" + }, + { + "appid": 3374600, + "normalized_name": "cryptage" + }, + { + "appid": 3374610, + "normalized_name": "christmas mutilator" + }, + { + "appid": 3374620, + "normalized_name": "cheddar's crusade" + }, + { + "appid": 3374640, + "normalized_name": "crown of hispania" + }, + { + "appid": 3374670, + "normalized_name": "super hot cube" + }, + { + "appid": 3374680, + "normalized_name": "背徳シレネ|immoral cyrene" + }, + { + "appid": 3374700, + "normalized_name": "moldbreaker rise of the loaf" + }, + { + "appid": 3374720, + "normalized_name": "tales beyond the tomb the farm's secret" + }, + { + "appid": 3374790, + "normalized_name": "bee z factory" + }, + { + "appid": 3374820, + "normalized_name": "hockey pong" + }, + { + "appid": 3374840, + "normalized_name": "piss off" + }, + { + "appid": 3374880, + "normalized_name": "bloomstone myths & legends" + }, + { + "appid": 3374900, + "normalized_name": "sweet massage" + }, + { + "appid": 3374920, + "normalized_name": "games of the monarch's eye" + }, + { + "appid": 3374950, + "normalized_name": "stronghold caverns of sorcery" + }, + { + "appid": 3374970, + "normalized_name": "golden kingdom vr" + }, + { + "appid": 3375060, + "normalized_name": "shapeyard" + }, + { + "appid": 3375070, + "normalized_name": "sheep quest" + }, + { + "appid": 3375110, + "normalized_name": "city garden harvest" + }, + { + "appid": 3375220, + "normalized_name": "dogs contrast" + }, + { + "appid": 3375270, + "normalized_name": "lost tides" + }, + { + "appid": 3375300, + "normalized_name": "dark shadows" + }, + { + "appid": 3375310, + "normalized_name": "explore dreams dreamcore" + }, + { + "appid": 3375330, + "normalized_name": "vltra mayhem" + }, + { + "appid": 3375340, + "normalized_name": "catchick" + }, + { + "appid": 3375350, + "normalized_name": "floorball practice" + }, + { + "appid": 3375360, + "normalized_name": "overwing" + }, + { + "appid": 3375490, + "normalized_name": "block block block" + }, + { + "appid": 3375520, + "normalized_name": "one nation under the old gods" + }, + { + "appid": 3375550, + "normalized_name": "heat retreat" + }, + { + "appid": 3375580, + "normalized_name": "lustful dead 🔞" + }, + { + "appid": 3375590, + "normalized_name": "fly hard" + }, + { + "appid": 3375640, + "normalized_name": "math quest vr the search for the crown of calculation" + }, + { + "appid": 3375700, + "normalized_name": "the grey road" + }, + { + "appid": 3375730, + "normalized_name": "alpha trashman antoine" + }, + { + "appid": 3375750, + "normalized_name": "skyfall" + }, + { + "appid": 3375780, + "normalized_name": "trails in the sky 1st chapter" + }, + { + "appid": 3375800, + "normalized_name": "night life clubbing in the metaverse" + }, + { + "appid": 3375830, + "normalized_name": "pixel blitz" + }, + { + "appid": 3375870, + "normalized_name": "babka" + }, + { + "appid": 3375880, + "normalized_name": "total defense three kingdoms" + }, + { + "appid": 3375940, + "normalized_name": "frogz" + }, + { + "appid": 3375950, + "normalized_name": "巅峰之路" + }, + { + "appid": 3375970, + "normalized_name": "project 1337 the well" + }, + { + "appid": 3376020, + "normalized_name": "kimochii classroom" + }, + { + "appid": 3376030, + "normalized_name": "swordspire" + }, + { + "appid": 3376040, + "normalized_name": "poppy" + }, + { + "appid": 3376060, + "normalized_name": "s.s.c. rusted" + }, + { + "appid": 3376070, + "normalized_name": "rotorsim helicopter simulator" + }, + { + "appid": 3376080, + "normalized_name": "the leviathan's fantasy" + }, + { + "appid": 3376130, + "normalized_name": "perplex" + }, + { + "appid": 3376140, + "normalized_name": "武侠幸存者" + }, + { + "appid": 3376150, + "normalized_name": "i`m not spider" + }, + { + "appid": 3376160, + "normalized_name": "おしかけねーちゃん can i crash at your place?" + }, + { + "appid": 3376180, + "normalized_name": "telepath of evil" + }, + { + "appid": 3376200, + "normalized_name": "lawless blood and dust" + }, + { + "appid": 3376210, + "normalized_name": "royal explorer" + }, + { + "appid": 3376230, + "normalized_name": "voxel party inde game publisher" + }, + { + "appid": 3376250, + "normalized_name": "nine ball roulette" + }, + { + "appid": 3376290, + "normalized_name": "海蓝星之梦" + }, + { + "appid": 3376340, + "normalized_name": "conchiglia" + }, + { + "appid": 3376410, + "normalized_name": "lab escape box puzzle game" + }, + { + "appid": 3376430, + "normalized_name": "hunter moonstrike ai npcs version" + }, + { + "appid": 3376440, + "normalized_name": "warp blaster vr" + }, + { + "appid": 3376480, + "normalized_name": "delivery & beyond" + }, + { + "appid": 3376500, + "normalized_name": "little chef 2" + }, + { + "appid": 3376510, + "normalized_name": "cafe haven" + }, + { + "appid": 3376520, + "normalized_name": "1+1=?" + }, + { + "appid": 3376540, + "normalized_name": "逆境重生" + }, + { + "appid": 3376550, + "normalized_name": "4x4 progress" + }, + { + "appid": 3376570, + "normalized_name": "coffee snow and you" + }, + { + "appid": 3376580, + "normalized_name": "raiders rise" + }, + { + "appid": 3376590, + "normalized_name": "hearth storm" + }, + { + "appid": 3376620, + "normalized_name": "vigaro runner 2 return" + }, + { + "appid": 3376630, + "normalized_name": "the sacred mariner" + }, + { + "appid": 3376640, + "normalized_name": "synthwave tunnel" + }, + { + "appid": 3376650, + "normalized_name": "pochemeow" + }, + { + "appid": 3376690, + "normalized_name": "the house of the dead 2 remake" + }, + { + "appid": 3376710, + "normalized_name": "raccoon hunter" + }, + { + "appid": 3376760, + "normalized_name": "panelka" + }, + { + "appid": 3376830, + "normalized_name": "lovely anime puzzle christmas" + }, + { + "appid": 3376840, + "normalized_name": "glimmer" + }, + { + "appid": 3376850, + "normalized_name": "bomb vehicle the idle clicker" + }, + { + "appid": 3376860, + "normalized_name": "the retrospection of tomorrow" + }, + { + "appid": 3376930, + "normalized_name": "rogue protocol" + }, + { + "appid": 3376950, + "normalized_name": "rabolut escape from hell" + }, + { + "appid": 3376960, + "normalized_name": "nighthold" + }, + { + "appid": 3376990, + "normalized_name": "kabuto park" + }, + { + "appid": 3377010, + "normalized_name": "カレカノトライアル~時をかけるときめき大作戦♪~" + }, + { + "appid": 3377020, + "normalized_name": "大宋小厨娘" + }, + { + "appid": 3377170, + "normalized_name": "prop hunt rumble" + }, + { + "appid": 3377200, + "normalized_name": "dragon lands" + }, + { + "appid": 3377220, + "normalized_name": "dedalo escape room adventure" + }, + { + "appid": 3377230, + "normalized_name": "seal of solitomb" + }, + { + "appid": 3377290, + "normalized_name": "life choices" + }, + { + "appid": 3377300, + "normalized_name": "theboll" + }, + { + "appid": 3377310, + "normalized_name": "sex exit 🔞" + }, + { + "appid": 3377320, + "normalized_name": "arcane lust 18+" + }, + { + "appid": 3377340, + "normalized_name": "delivery guy simulator" + }, + { + "appid": 3377360, + "normalized_name": "beneath the surface" + }, + { + "appid": 3377390, + "normalized_name": "test subject" + }, + { + "appid": 3377400, + "normalized_name": "few shall return" + }, + { + "appid": 3377410, + "normalized_name": "treefiner" + }, + { + "appid": 3377420, + "normalized_name": "through the murky water" + }, + { + "appid": 3377480, + "normalized_name": "tiles in time" + }, + { + "appid": 3377510, + "normalized_name": "after dark" + }, + { + "appid": 3377530, + "normalized_name": "terminal 81r" + }, + { + "appid": 3377550, + "normalized_name": "baskin all in the family" + }, + { + "appid": 3377570, + "normalized_name": "rockoon" + }, + { + "appid": 3377640, + "normalized_name": "oasis of lust" + }, + { + "appid": 3377680, + "normalized_name": "罪赎(zuishu)" + }, + { + "appid": 3377690, + "normalized_name": "phrenetic shooting reunion" + }, + { + "appid": 3377720, + "normalized_name": "just a little purr suit" + }, + { + "appid": 3377770, + "normalized_name": "haunting havens" + }, + { + "appid": 3377790, + "normalized_name": "action game course" + }, + { + "appid": 3377840, + "normalized_name": "jeff and crackhead" + }, + { + "appid": 3377860, + "normalized_name": "oreplant" + }, + { + "appid": 3377890, + "normalized_name": "the corgi knight" + }, + { + "appid": 3377900, + "normalized_name": "dice clash world" + }, + { + "appid": 3377940, + "normalized_name": "you reincarnated into the game world and fucked the npcs! animation" + }, + { + "appid": 3377960, + "normalized_name": "the red zone zombie factory" + }, + { + "appid": 3377990, + "normalized_name": "santa gamepaper" + }, + { + "appid": 3378000, + "normalized_name": "尼古丁真大战芙蓉王源 nigudin really fought against furong wangyuan" + }, + { + "appid": 3378070, + "normalized_name": "엑설런트 러브코미디" + }, + { + "appid": 3378080, + "normalized_name": "woods of war" + }, + { + "appid": 3378100, + "normalized_name": "killer chat! expanded" + }, + { + "appid": 3378130, + "normalized_name": "肉鸽武林 fighting rogue" + }, + { + "appid": 3378140, + "normalized_name": "resistance is brutal" + }, + { + "appid": 3378190, + "normalized_name": "cartoon survivor" + }, + { + "appid": 3378240, + "normalized_name": "丝路长歌" + }, + { + "appid": 3378250, + "normalized_name": "motorcycle combat" + }, + { + "appid": 3378260, + "normalized_name": "鸭鸭大冒险 (duck duck adventure)" + }, + { + "appid": 3378270, + "normalized_name": "love&bitch" + }, + { + "appid": 3378280, + "normalized_name": "burger shop simulator 2024" + }, + { + "appid": 3378300, + "normalized_name": "final resistance 2" + }, + { + "appid": 3378330, + "normalized_name": "rekindled trails" + }, + { + "appid": 3378340, + "normalized_name": "endless vine" + }, + { + "appid": 3378360, + "normalized_name": "the heretics" + }, + { + "appid": 3378410, + "normalized_name": "rip & tear" + }, + { + "appid": 3378460, + "normalized_name": "困兽trappedbeast" + }, + { + "appid": 3378600, + "normalized_name": "confluence an of sense and soul soliloquy" + }, + { + "appid": 3378610, + "normalized_name": "angelshot chapter 1" + }, + { + "appid": 3378640, + "normalized_name": "mika's battle s 2" + }, + { + "appid": 3378650, + "normalized_name": "zombocalypse" + }, + { + "appid": 3378770, + "normalized_name": "skrunkly gets a meal deal" + }, + { + "appid": 3378830, + "normalized_name": "occultus vitae hidden life" + }, + { + "appid": 3378950, + "normalized_name": "midio!" + }, + { + "appid": 3378960, + "normalized_name": "lost soul aside" + }, + { + "appid": 3379110, + "normalized_name": "ecochess" + }, + { + "appid": 3379150, + "normalized_name": "adventurous slime" + }, + { + "appid": 3379170, + "normalized_name": "カップルメーカー" + }, + { + "appid": 3379180, + "normalized_name": "the king's despair" + }, + { + "appid": 3379190, + "normalized_name": "laserboy vr" + }, + { + "appid": 3379210, + "normalized_name": "symphone" + }, + { + "appid": 3379220, + "normalized_name": "poop on red" + }, + { + "appid": 3379270, + "normalized_name": "aconitum" + }, + { + "appid": 3379280, + "normalized_name": "girlfriends office!" + }, + { + "appid": 3379360, + "normalized_name": "inhuman resources a literary machination" + }, + { + "appid": 3379380, + "normalized_name": "hidden cats of shanghai" + }, + { + "appid": 3379390, + "normalized_name": "espresso economics" + }, + { + "appid": 3379440, + "normalized_name": "maze racer balls" + }, + { + "appid": 3379460, + "normalized_name": "crisis reign orbis" + }, + { + "appid": 3379580, + "normalized_name": "lily and sury adventures on cristya" + }, + { + "appid": 3379590, + "normalized_name": "i found myself in a strange house and i'm scared" + }, + { + "appid": 3379610, + "normalized_name": "stranded island" + }, + { + "appid": 3379620, + "normalized_name": "milf's camp🔥" + }, + { + "appid": 3379630, + "normalized_name": "truth or dare" + }, + { + "appid": 3379640, + "normalized_name": "evil crops" + }, + { + "appid": 3379650, + "normalized_name": "dark pgt" + }, + { + "appid": 3379690, + "normalized_name": "amanaha hockey" + }, + { + "appid": 3379720, + "normalized_name": "ravager warfare" + }, + { + "appid": 3379750, + "normalized_name": "manifest369" + }, + { + "appid": 3379770, + "normalized_name": "quartermain and the cult of cthulhu" + }, + { + "appid": 3379860, + "normalized_name": "chinese strange stories" + }, + { + "appid": 3379870, + "normalized_name": "aether effect" + }, + { + "appid": 3379880, + "normalized_name": "countermeasure pioneers modern drone battlefield" + }, + { + "appid": 3380020, + "normalized_name": "towars" + }, + { + "appid": 3380090, + "normalized_name": "gangs of neo tokyo" + }, + { + "appid": 3380100, + "normalized_name": "estella" + }, + { + "appid": 3380110, + "normalized_name": "上学威龙" + }, + { + "appid": 3380150, + "normalized_name": "the pancake paradox" + }, + { + "appid": 3380170, + "normalized_name": "bottomless pitfall" + }, + { + "appid": 3380310, + "normalized_name": "regex game" + }, + { + "appid": 3380320, + "normalized_name": "non euclidean minesweeper" + }, + { + "appid": 3380340, + "normalized_name": "dragonroad龙道" + }, + { + "appid": 3380360, + "normalized_name": "亡灵宝藏" + }, + { + "appid": 3380380, + "normalized_name": "bits of love an otome game" + }, + { + "appid": 3380470, + "normalized_name": "rabbitconquest" + }, + { + "appid": 3380480, + "normalized_name": "clash of emojis" + }, + { + "appid": 3380500, + "normalized_name": "rolly" + }, + { + "appid": 3380520, + "normalized_name": "toheart" + }, + { + "appid": 3380580, + "normalized_name": "psynostic" + }, + { + "appid": 3380610, + "normalized_name": "galaxidia" + }, + { + "appid": 3380620, + "normalized_name": "くつひも物語" + }, + { + "appid": 3380640, + "normalized_name": "wildlife sports untamed" + }, + { + "appid": 3380650, + "normalized_name": "rabanaz" + }, + { + "appid": 3380700, + "normalized_name": "papercraft tactics" + }, + { + "appid": 3380730, + "normalized_name": "dominated by sadistic delinquent" + }, + { + "appid": 3380740, + "normalized_name": "boo! are you scared? the chests game" + }, + { + "appid": 3380760, + "normalized_name": "2024 mosaic retrospective" + }, + { + "appid": 3380790, + "normalized_name": "风旅人 wind traveler" + }, + { + "appid": 3380800, + "normalized_name": "turbo balls" + }, + { + "appid": 3380810, + "normalized_name": "wild snap" + }, + { + "appid": 3380820, + "normalized_name": "respaced" + }, + { + "appid": 3380830, + "normalized_name": "квадроберы" + }, + { + "appid": 3380840, + "normalized_name": "snack them all" + }, + { + "appid": 3380860, + "normalized_name": "drone modern warfare" + }, + { + "appid": 3380880, + "normalized_name": "keep" + }, + { + "appid": 3380940, + "normalized_name": "paw & hop jigsaw quest" + }, + { + "appid": 3380950, + "normalized_name": "discopup" + }, + { + "appid": 3380960, + "normalized_name": "kalnazar" + }, + { + "appid": 3380980, + "normalized_name": "the nutcracker of riepass (nymph's tale ep 2)" + }, + { + "appid": 3381010, + "normalized_name": "catch me" + }, + { + "appid": 3381030, + "normalized_name": "hungry" + }, + { + "appid": 3381080, + "normalized_name": "hentai aina" + }, + { + "appid": 3381120, + "normalized_name": "zdsimulator" + }, + { + "appid": 3381140, + "normalized_name": "xiii a final game of tarot with death" + }, + { + "appid": 3381170, + "normalized_name": "backrooms what's next" + }, + { + "appid": 3381190, + "normalized_name": "i am motherfucker" + }, + { + "appid": 3381300, + "normalized_name": "steam & iron. battle of port arthur" + }, + { + "appid": 3381310, + "normalized_name": "畜神" + }, + { + "appid": 3381320, + "normalized_name": "cave crusade" + }, + { + "appid": 3381370, + "normalized_name": "breachwalk survivor" + }, + { + "appid": 3381380, + "normalized_name": "starry sky" + }, + { + "appid": 3381420, + "normalized_name": "dreamcore retro" + }, + { + "appid": 3381430, + "normalized_name": "siege of shadows" + }, + { + "appid": 3381470, + "normalized_name": "eggstraordinary goose chase" + }, + { + "appid": 3381510, + "normalized_name": "nephilim" + }, + { + "appid": 3381650, + "normalized_name": "super silent sensei" + }, + { + "appid": 3381760, + "normalized_name": "plant poker" + }, + { + "appid": 3381780, + "normalized_name": "caveman hits giraffe in a car" + }, + { + "appid": 3381820, + "normalized_name": "ore market masters simulator" + }, + { + "appid": 3381880, + "normalized_name": "the corn maze" + }, + { + "appid": 3381930, + "normalized_name": "klepto sauria and the crystal knights" + }, + { + "appid": 3381940, + "normalized_name": "crazy eyes" + }, + { + "appid": 3381950, + "normalized_name": "radiant rush" + }, + { + "appid": 3381970, + "normalized_name": "super pump" + }, + { + "appid": 3381990, + "normalized_name": "gacha addict simulator" + }, + { + "appid": 3382010, + "normalized_name": "tokyo overdrive" + }, + { + "appid": 3382070, + "normalized_name": "queen of treasure isle" + }, + { + "appid": 3382090, + "normalized_name": "cosmorbit" + }, + { + "appid": 3382100, + "normalized_name": "pocket oracle" + }, + { + "appid": 3382110, + "normalized_name": "ing angler" + }, + { + "appid": 3382170, + "normalized_name": "筑城与探险" + }, + { + "appid": 3382220, + "normalized_name": "overdose" + }, + { + "appid": 3382240, + "normalized_name": "恋爱猪脚饭" + }, + { + "appid": 3382280, + "normalized_name": "huntnprey" + }, + { + "appid": 3382290, + "normalized_name": "cursed blood" + }, + { + "appid": 3382300, + "normalized_name": "甜心帝国" + }, + { + "appid": 3382310, + "normalized_name": "solis" + }, + { + "appid": 3382350, + "normalized_name": "just another supermarket" + }, + { + "appid": 3382360, + "normalized_name": "私の娘は話すことができません" + }, + { + "appid": 3382380, + "normalized_name": "qoob" + }, + { + "appid": 3382410, + "normalized_name": "isla de la muerte" + }, + { + "appid": 3382460, + "normalized_name": "descent" + }, + { + "appid": 3382500, + "normalized_name": "a coloring break" + }, + { + "appid": 3382540, + "normalized_name": "lonely christmas cute santa" + }, + { + "appid": 3382560, + "normalized_name": "battle legends" + }, + { + "appid": 3382580, + "normalized_name": "小明明的世界" + }, + { + "appid": 3382590, + "normalized_name": "終わりの鐘が鳴る前に chapter3" + }, + { + "appid": 3382600, + "normalized_name": "light of the labyrinth" + }, + { + "appid": 3382660, + "normalized_name": "pizza blitz" + }, + { + "appid": 3382670, + "normalized_name": "polterparty" + }, + { + "appid": 3382690, + "normalized_name": "cross the c" + }, + { + "appid": 3382740, + "normalized_name": "f.e.r.a.s e o mistério da ilha do futuro" + }, + { + "appid": 3382750, + "normalized_name": "dark of the depths" + }, + { + "appid": 3382780, + "normalized_name": "sektar echoes of fear" + }, + { + "appid": 3382790, + "normalized_name": "dissolving disarray" + }, + { + "appid": 3382820, + "normalized_name": "stealth strike" + }, + { + "appid": 3382830, + "normalized_name": "zombie escape" + }, + { + "appid": 3382840, + "normalized_name": "baghead" + }, + { + "appid": 3382860, + "normalized_name": "monkeround" + }, + { + "appid": 3382870, + "normalized_name": "cheese racer" + }, + { + "appid": 3382880, + "normalized_name": "amazon animals" + }, + { + "appid": 3382900, + "normalized_name": "hentai witch academy 2" + }, + { + "appid": 3382940, + "normalized_name": "the pumpkin knight" + }, + { + "appid": 3383020, + "normalized_name": "ghostbreaker corps" + }, + { + "appid": 3383030, + "normalized_name": "星河仙道 immortal path" + }, + { + "appid": 3383040, + "normalized_name": "beatdown city survivors" + }, + { + "appid": 3383050, + "normalized_name": "貢げ!女神様" + }, + { + "appid": 3383070, + "normalized_name": "cutie panda find the legend" + }, + { + "appid": 3383090, + "normalized_name": "ufo stole my egg!" + }, + { + "appid": 3383100, + "normalized_name": "echoes of myth" + }, + { + "appid": 3383120, + "normalized_name": "呪いの穢れ唄鳴海龍也の回奇録" + }, + { + "appid": 3383130, + "normalized_name": "infinity r" + }, + { + "appid": 3383160, + "normalized_name": "thirst" + }, + { + "appid": 3383180, + "normalized_name": "moon keys" + }, + { + "appid": 3383190, + "normalized_name": "the 4th wall" + }, + { + "appid": 3383210, + "normalized_name": "click for humanity" + }, + { + "appid": 3383220, + "normalized_name": "lightmatter anniversary" + }, + { + "appid": 3383230, + "normalized_name": "meaningless echoes" + }, + { + "appid": 3383240, + "normalized_name": "blockers advanced breakout" + }, + { + "appid": 3383260, + "normalized_name": "schematic void" + }, + { + "appid": 3383290, + "normalized_name": "永夜光辉" + }, + { + "appid": 3383340, + "normalized_name": "tales of zizada" + }, + { + "appid": 3383350, + "normalized_name": "kinetic" + }, + { + "appid": 3383360, + "normalized_name": "sibling souls" + }, + { + "appid": 3383380, + "normalized_name": "the overground" + }, + { + "appid": 3383390, + "normalized_name": "tonya the killer" + }, + { + "appid": 3383410, + "normalized_name": "amaroo's christmas shop simulator" + }, + { + "appid": 3383430, + "normalized_name": "internet fisherman" + }, + { + "appid": 3383440, + "normalized_name": "digital diamond baseball v13" + }, + { + "appid": 3383450, + "normalized_name": "rpg chess" + }, + { + "appid": 3383460, + "normalized_name": "sea bikers jetski" + }, + { + "appid": 3383490, + "normalized_name": "mythara chronicles" + }, + { + "appid": 3383520, + "normalized_name": "incest story sister" + }, + { + "appid": 3383530, + "normalized_name": "慰藉之庭 the yard of solace." + }, + { + "appid": 3383580, + "normalized_name": "hidden cats winter" + }, + { + "appid": 3383600, + "normalized_name": "zenith" + }, + { + "appid": 3383610, + "normalized_name": "soulchain" + }, + { + "appid": 3383630, + "normalized_name": "dream of forgotten songs" + }, + { + "appid": 3383640, + "normalized_name": "atropos" + }, + { + "appid": 3383700, + "normalized_name": "cards!" + }, + { + "appid": 3383710, + "normalized_name": "beneath the bell" + }, + { + "appid": 3383750, + "normalized_name": "anti invasion warfare" + }, + { + "appid": 3383780, + "normalized_name": "only the lost shall see" + }, + { + "appid": 3383820, + "normalized_name": "sungka" + }, + { + "appid": 3383850, + "normalized_name": "the little adventure" + }, + { + "appid": 3383870, + "normalized_name": "dodecapunk" + }, + { + "appid": 3383880, + "normalized_name": "legacy of the lost witchhunter" + }, + { + "appid": 3383900, + "normalized_name": "frankie freako" + }, + { + "appid": 3383910, + "normalized_name": "arena monarchy" + }, + { + "appid": 3383930, + "normalized_name": "aritas the demon lord" + }, + { + "appid": 3383970, + "normalized_name": "ryo and gears" + }, + { + "appid": 3384010, + "normalized_name": "millennium police" + }, + { + "appid": 3384020, + "normalized_name": "the legend of shiande" + }, + { + "appid": 3384050, + "normalized_name": "vampire hunt" + }, + { + "appid": 3384070, + "normalized_name": "meldpit" + }, + { + "appid": 3384090, + "normalized_name": "plastic battlegrounds" + }, + { + "appid": 3384110, + "normalized_name": "samvstom" + }, + { + "appid": 3384120, + "normalized_name": "isopod keeping simulator" + }, + { + "appid": 3384130, + "normalized_name": "trophies a corruption tale" + }, + { + "appid": 3384140, + "normalized_name": "the chastity scholarship" + }, + { + "appid": 3384150, + "normalized_name": "sinew" + }, + { + "appid": 3384180, + "normalized_name": "a simple garbage sorting game" + }, + { + "appid": 3384190, + "normalized_name": "trickshot simulator" + }, + { + "appid": 3384220, + "normalized_name": "vr secretary ailey" + }, + { + "appid": 3384230, + "normalized_name": "familiar stranger" + }, + { + "appid": 3384240, + "normalized_name": "hanzi match" + }, + { + "appid": 3384250, + "normalized_name": "the whitaker’s library part 1" + }, + { + "appid": 3384260, + "normalized_name": "诛仙世界" + }, + { + "appid": 3384270, + "normalized_name": "deep siege" + }, + { + "appid": 3384280, + "normalized_name": "starship scarwolf" + }, + { + "appid": 3384330, + "normalized_name": "art strikers" + }, + { + "appid": 3384340, + "normalized_name": "rico's theater" + }, + { + "appid": 3384350, + "normalized_name": "the butterfly collector" + }, + { + "appid": 3384360, + "normalized_name": "ashbound expanse" + }, + { + "appid": 3384370, + "normalized_name": "sand eaters" + }, + { + "appid": 3384380, + "normalized_name": "psi academy orientation" + }, + { + "appid": 3384410, + "normalized_name": "クギリビト the divider" + }, + { + "appid": 3384440, + "normalized_name": "部落召唤 call of clans" + }, + { + "appid": 3384490, + "normalized_name": "stella gladio" + }, + { + "appid": 3384570, + "normalized_name": "planet party time" + }, + { + "appid": 3384580, + "normalized_name": "дейтсим говна" + }, + { + "appid": 3384610, + "normalized_name": "glider simulator" + }, + { + "appid": 3384690, + "normalized_name": "逆袭!爆爽打工人!" + }, + { + "appid": 3384720, + "normalized_name": "disguise royale" + }, + { + "appid": 3384740, + "normalized_name": "god lives in the moon" + }, + { + "appid": 3384750, + "normalized_name": "raed" + }, + { + "appid": 3384820, + "normalized_name": "broken relic" + }, + { + "appid": 3384840, + "normalized_name": "blacksmith simulator" + }, + { + "appid": 3384860, + "normalized_name": "devilish lady doctor a night of domination and seduction" + }, + { + "appid": 3384880, + "normalized_name": "vox populi deutschland 2025" + }, + { + "appid": 3384890, + "normalized_name": "ascent dx" + }, + { + "appid": 3384900, + "normalized_name": "誘日 ユウヒ" + }, + { + "appid": 3384920, + "normalized_name": "possessions" + }, + { + "appid": 3385060, + "normalized_name": "cafe maid classic" + }, + { + "appid": 3385100, + "normalized_name": "mechanic beyond the horizon" + }, + { + "appid": 3385110, + "normalized_name": "predator of the night" + }, + { + "appid": 3385120, + "normalized_name": "the dragons's path" + }, + { + "appid": 3385130, + "normalized_name": "the titan quest" + }, + { + "appid": 3385140, + "normalized_name": "evercastle" + }, + { + "appid": 3385160, + "normalized_name": "cryst" + }, + { + "appid": 3385170, + "normalized_name": "wheelbot" + }, + { + "appid": 3385240, + "normalized_name": "cats visiting christmas town" + }, + { + "appid": 3385250, + "normalized_name": "ラビィとパネルでしりとり" + }, + { + "appid": 3385260, + "normalized_name": "luminatory" + }, + { + "appid": 3385300, + "normalized_name": "driving around" + }, + { + "appid": 3385350, + "normalized_name": "jaguar suns" + }, + { + "appid": 3385360, + "normalized_name": "code valkyrie iii" + }, + { + "appid": 3385370, + "normalized_name": "maze mice" + }, + { + "appid": 3385380, + "normalized_name": "mars survivor" + }, + { + "appid": 3385390, + "normalized_name": "after nightfall" + }, + { + "appid": 3385400, + "normalized_name": "evils eve" + }, + { + "appid": 3385420, + "normalized_name": "how much items weapon" + }, + { + "appid": 3385430, + "normalized_name": "archaeology sand fantasy" + }, + { + "appid": 3385440, + "normalized_name": "archaeology sand japanese" + }, + { + "appid": 3385450, + "normalized_name": "sweet spring festival" + }, + { + "appid": 3385490, + "normalized_name": "goldo lost goblin" + }, + { + "appid": 3385500, + "normalized_name": "sweet sailor" + }, + { + "appid": 3385520, + "normalized_name": "our winding road" + }, + { + "appid": 3385570, + "normalized_name": "santa for adult men" + }, + { + "appid": 3385610, + "normalized_name": "hidden evidence" + }, + { + "appid": 3385670, + "normalized_name": "world of goo 2" + }, + { + "appid": 3385710, + "normalized_name": "wasted bloodline" + }, + { + "appid": 3385820, + "normalized_name": "夜中作戦" + }, + { + "appid": 3385870, + "normalized_name": "office outbreak savior" + }, + { + "appid": 3385900, + "normalized_name": "underworld adventure" + }, + { + "appid": 3385910, + "normalized_name": "machine particle" + }, + { + "appid": 3385960, + "normalized_name": "battlegroupvr2" + }, + { + "appid": 3385970, + "normalized_name": "beyond sandbox" + }, + { + "appid": 3386030, + "normalized_name": "white line fever" + }, + { + "appid": 3386100, + "normalized_name": "drift survivor 2" + }, + { + "appid": 3386110, + "normalized_name": "zoid zoid tetsoidea ii" + }, + { + "appid": 3386120, + "normalized_name": "necroflora" + }, + { + "appid": 3386140, + "normalized_name": "lost in endoria a monster girl harem" + }, + { + "appid": 3386230, + "normalized_name": "sewers adventures" + }, + { + "appid": 3386240, + "normalized_name": "中国式加班" + }, + { + "appid": 3386250, + "normalized_name": "ephemeral miniature garden" + }, + { + "appid": 3386260, + "normalized_name": "贄の町 いろむすび" + }, + { + "appid": 3386290, + "normalized_name": "on the q.t." + }, + { + "appid": 3386300, + "normalized_name": "secret crush unrequited love" + }, + { + "appid": 3386350, + "normalized_name": "shinjuku anomaly" + }, + { + "appid": 3386360, + "normalized_name": "生死天注定" + }, + { + "appid": 3386380, + "normalized_name": "guardian grids" + }, + { + "appid": 3386480, + "normalized_name": "casino heist aruba" + }, + { + "appid": 3386520, + "normalized_name": "frontier control invasion" + }, + { + "appid": 3386650, + "normalized_name": "みんなでウミガメのスープ" + }, + { + "appid": 3386660, + "normalized_name": "foxes' festival" + }, + { + "appid": 3386670, + "normalized_name": "不可思議メメメは寝ていたい" + }, + { + "appid": 3386690, + "normalized_name": "jigsaw chronicles haunting tales" + }, + { + "appid": 3386700, + "normalized_name": "cobble the stone forager" + }, + { + "appid": 3386800, + "normalized_name": "thesilentsnowfall" + }, + { + "appid": 3386890, + "normalized_name": "灵剑奇缘" + }, + { + "appid": 3386900, + "normalized_name": "castle of heart retold" + }, + { + "appid": 3386930, + "normalized_name": "tools of the trade" + }, + { + "appid": 3387000, + "normalized_name": "hentai tales sweety milf" + }, + { + "appid": 3387010, + "normalized_name": "luna hop" + }, + { + "appid": 3387040, + "normalized_name": "corner world" + }, + { + "appid": 3387050, + "normalized_name": "detritus" + }, + { + "appid": 3387070, + "normalized_name": "anycircuit" + }, + { + "appid": 3387100, + "normalized_name": "15 minutes" + }, + { + "appid": 3387120, + "normalized_name": "the dark gift" + }, + { + "appid": 3387150, + "normalized_name": "jumping henry" + }, + { + "appid": 3387160, + "normalized_name": "united heist facility zero" + }, + { + "appid": 3387190, + "normalized_name": "trolley dash" + }, + { + "appid": 3387220, + "normalized_name": "5 girls 1 honey" + }, + { + "appid": 3387230, + "normalized_name": "mypawnshop" + }, + { + "appid": 3387240, + "normalized_name": "仙乡小千金" + }, + { + "appid": 3387290, + "normalized_name": "machine of the wasteland" + }, + { + "appid": 3387320, + "normalized_name": "人類滅亡後のアンドロイドの物語" + }, + { + "appid": 3387330, + "normalized_name": "见诡录:阴魂街 haunting record phantom street" + }, + { + "appid": 3387340, + "normalized_name": "debugdebut" + }, + { + "appid": 3387370, + "normalized_name": "debt city" + }, + { + "appid": 3387390, + "normalized_name": "リクイッド・アビス the melted jelly" + }, + { + "appid": 3387400, + "normalized_name": "final zone 「(fz戦記アクシス」" + }, + { + "appid": 3387420, + "normalized_name": "pokettohiro" + }, + { + "appid": 3387560, + "normalized_name": "govnovoz" + }, + { + "appid": 3387640, + "normalized_name": "asher's bakery" + }, + { + "appid": 3387650, + "normalized_name": "beé! ovelhinhas do barulho" + }, + { + "appid": 3387660, + "normalized_name": "codebound" + }, + { + "appid": 3387720, + "normalized_name": "wyld land" + }, + { + "appid": 3387740, + "normalized_name": "zombies and orcs" + }, + { + "appid": 3387790, + "normalized_name": "game of patios" + }, + { + "appid": 3387880, + "normalized_name": "sunbay city stories tina from the grand auto workshop" + }, + { + "appid": 3387970, + "normalized_name": "squash and spell kids typing" + }, + { + "appid": 3387990, + "normalized_name": "kunoichi beat" + }, + { + "appid": 3388000, + "normalized_name": "miko funk" + }, + { + "appid": 3388010, + "normalized_name": "phoskia" + }, + { + "appid": 3388080, + "normalized_name": "crack in the dark" + }, + { + "appid": 3388130, + "normalized_name": "sex adventures naughty sisters episode 2" + }, + { + "appid": 3388140, + "normalized_name": "master of stealth" + }, + { + "appid": 3388150, + "normalized_name": "slime trials" + }, + { + "appid": 3388220, + "normalized_name": "virion" + }, + { + "appid": 3388230, + "normalized_name": "skytaxi" + }, + { + "appid": 3388250, + "normalized_name": "delta perspective" + }, + { + "appid": 3388270, + "normalized_name": "lottory world 彩金天下" + }, + { + "appid": 3388280, + "normalized_name": "fille fatale compassion" + }, + { + "appid": 3388290, + "normalized_name": "cardist party" + }, + { + "appid": 3388300, + "normalized_name": "fortitude tower defense" + }, + { + "appid": 3388330, + "normalized_name": "crónicas no contadas la cosecha" + }, + { + "appid": 3388340, + "normalized_name": "laundromat manager simulator" + }, + { + "appid": 3388350, + "normalized_name": "redirect" + }, + { + "appid": 3388360, + "normalized_name": "oublivious" + }, + { + "appid": 3388390, + "normalized_name": "underside the lift" + }, + { + "appid": 3388410, + "normalized_name": "monster crown sin eater" + }, + { + "appid": 3388420, + "normalized_name": "don't forget the phone" + }, + { + "appid": 3388440, + "normalized_name": "are you happy" + }, + { + "appid": 3388450, + "normalized_name": "fetch" + }, + { + "appid": 3388490, + "normalized_name": "warlocks vs shadows 2 be a hero!" + }, + { + "appid": 3388530, + "normalized_name": "banana massacre" + }, + { + "appid": 3388550, + "normalized_name": "island of sacrifice" + }, + { + "appid": 3388570, + "normalized_name": "lonely christmas sadistic santa" + }, + { + "appid": 3388620, + "normalized_name": "isle of harvest" + }, + { + "appid": 3388640, + "normalized_name": "go kart simulator" + }, + { + "appid": 3388740, + "normalized_name": "bedtime stories" + }, + { + "appid": 3388760, + "normalized_name": "project hailstorm" + }, + { + "appid": 3388770, + "normalized_name": "tides of lava" + }, + { + "appid": 3388780, + "normalized_name": "轮回之始" + }, + { + "appid": 3388800, + "normalized_name": "void vanguard" + }, + { + "appid": 3388810, + "normalized_name": "insentient" + }, + { + "appid": 3388870, + "normalized_name": "青鬼 ブルーベリー温泉の怪異" + }, + { + "appid": 3388890, + "normalized_name": "magical nut ikuno" + }, + { + "appid": 3388940, + "normalized_name": "big buck backshots" + }, + { + "appid": 3389040, + "normalized_name": "hand eternal" + }, + { + "appid": 3389080, + "normalized_name": "beneath a dead city" + }, + { + "appid": 3389100, + "normalized_name": "arcadea" + }, + { + "appid": 3389120, + "normalized_name": "jailbreak assault" + }, + { + "appid": 3389200, + "normalized_name": "我的恋爱逃生攻略 love to live" + }, + { + "appid": 3389210, + "normalized_name": "lonely christmas succubus santa" + }, + { + "appid": 3389220, + "normalized_name": "castle bomber red" + }, + { + "appid": 3389230, + "normalized_name": "spaceship killer" + }, + { + "appid": 3389240, + "normalized_name": "《蜀山:初章》正式版" + }, + { + "appid": 3389290, + "normalized_name": "naughty store manager" + }, + { + "appid": 3389300, + "normalized_name": "peekaboo" + }, + { + "appid": 3389320, + "normalized_name": "hentai clicker kristina is streaming" + }, + { + "appid": 3389330, + "normalized_name": "pathologic 3 quarantine" + }, + { + "appid": 3389380, + "normalized_name": "minimo crazy chase" + }, + { + "appid": 3389390, + "normalized_name": "speed rivals" + }, + { + "appid": 3389400, + "normalized_name": "tactichord glam strategy" + }, + { + "appid": 3389430, + "normalized_name": "蓝星快被妖兽占领了!不要着急 我会出手" + }, + { + "appid": 3389440, + "normalized_name": "xenobreakers classic tower defense" + }, + { + "appid": 3389450, + "normalized_name": "trawler’s empire" + }, + { + "appid": 3389470, + "normalized_name": "amusement park" + }, + { + "appid": 3389500, + "normalized_name": "lost footage sound in the silence" + }, + { + "appid": 3389540, + "normalized_name": "rotten planks i mutiny on the betty" + }, + { + "appid": 3389660, + "normalized_name": "a sexy tour with fiona" + }, + { + "appid": 3389680, + "normalized_name": "the abandoned crossroads" + }, + { + "appid": 3389690, + "normalized_name": "lustful heist" + }, + { + "appid": 3389700, + "normalized_name": "spell wizard" + }, + { + "appid": 3389710, + "normalized_name": "philomel" + }, + { + "appid": 3389720, + "normalized_name": "detective rainy night" + }, + { + "appid": 3389760, + "normalized_name": "holorun" + }, + { + "appid": 3389860, + "normalized_name": "puff love story" + }, + { + "appid": 3389920, + "normalized_name": "宗门修仙录" + }, + { + "appid": 3389960, + "normalized_name": "sigrid and friends playtime" + }, + { + "appid": 3389980, + "normalized_name": "recursion" + }, + { + "appid": 3390010, + "normalized_name": "homebound path" + }, + { + "appid": 3390020, + "normalized_name": "soul pact" + }, + { + "appid": 3390060, + "normalized_name": "dino dash" + }, + { + "appid": 3390070, + "normalized_name": "fearcarly" + }, + { + "appid": 3390080, + "normalized_name": "city heist" + }, + { + "appid": 3390160, + "normalized_name": "the pub life simulator" + }, + { + "appid": 3390200, + "normalized_name": "silent fleet" + }, + { + "appid": 3390210, + "normalized_name": "異星間恋愛ガイド ‐interplanetary love guide‐" + }, + { + "appid": 3390230, + "normalized_name": "secrets of antares" + }, + { + "appid": 3390250, + "normalized_name": "32 secs" + }, + { + "appid": 3390260, + "normalized_name": "benny & nana's barrel adventure" + }, + { + "appid": 3390280, + "normalized_name": "pay 2 win the world is mine" + }, + { + "appid": 3390300, + "normalized_name": "conqueror of the galaxy" + }, + { + "appid": 3390310, + "normalized_name": "once glorious artahk" + }, + { + "appid": 3390340, + "normalized_name": "gnaw & order" + }, + { + "appid": 3390350, + "normalized_name": "frogeon" + }, + { + "appid": 3390420, + "normalized_name": "wholesaler simulator" + }, + { + "appid": 3390470, + "normalized_name": "land of anima origin of union" + }, + { + "appid": 3390500, + "normalized_name": "xappy ship" + }, + { + "appid": 3390520, + "normalized_name": "word to angel" + }, + { + "appid": 3390630, + "normalized_name": "propa." + }, + { + "appid": 3390690, + "normalized_name": "steammaze" + }, + { + "appid": 3390730, + "normalized_name": "unidentified feline obliterators" + }, + { + "appid": 3390760, + "normalized_name": "幻法绘世 魔典" + }, + { + "appid": 3390770, + "normalized_name": "royal goldenbeak and the curse of snowy island" + }, + { + "appid": 3390780, + "normalized_name": "tokyo day" + }, + { + "appid": 3390790, + "normalized_name": "dominated by nerdy childhood friend" + }, + { + "appid": 3390830, + "normalized_name": "astrosembler" + }, + { + "appid": 3390870, + "normalized_name": "浪尖舞动 surf dance" + }, + { + "appid": 3390880, + "normalized_name": "captured 2" + }, + { + "appid": 3390890, + "normalized_name": "ucopia" + }, + { + "appid": 3390900, + "normalized_name": "exit condition one" + }, + { + "appid": 3390910, + "normalized_name": "baby pygmy hippo zoo" + }, + { + "appid": 3390950, + "normalized_name": "shattered dreams" + }, + { + "appid": 3390980, + "normalized_name": "daemonbride additional gain" + }, + { + "appid": 3390990, + "normalized_name": "跳一跳一跳" + }, + { + "appid": 3391000, + "normalized_name": "undisclosed" + }, + { + "appid": 3391030, + "normalized_name": "project domeforge" + }, + { + "appid": 3391060, + "normalized_name": "survaival" + }, + { + "appid": 3391090, + "normalized_name": "holosona5" + }, + { + "appid": 3391110, + "normalized_name": "最強宗師" + }, + { + "appid": 3391130, + "normalized_name": "shock" + }, + { + "appid": 3391150, + "normalized_name": "百禾梦境漫游 wandering dreams of yuri" + }, + { + "appid": 3391170, + "normalized_name": "nyxverse.ai" + }, + { + "appid": 3391190, + "normalized_name": "oreblaze" + }, + { + "appid": 3391200, + "normalized_name": "snowman mo" + }, + { + "appid": 3391210, + "normalized_name": "space shooter tryü sora" + }, + { + "appid": 3391220, + "normalized_name": "gnope gnome owner simulator" + }, + { + "appid": 3391260, + "normalized_name": "who's who 2.0" + }, + { + "appid": 3391270, + "normalized_name": "nayla's fable lust & rust" + }, + { + "appid": 3391280, + "normalized_name": "klondike's hike a solitaire roguelike" + }, + { + "appid": 3391300, + "normalized_name": "ship it! a warehouse game" + }, + { + "appid": 3391340, + "normalized_name": "unserious sandbox" + }, + { + "appid": 3391350, + "normalized_name": "white chocolate" + }, + { + "appid": 3391370, + "normalized_name": "final sanctuary" + }, + { + "appid": 3391420, + "normalized_name": "修仙实操手册" + }, + { + "appid": 3391450, + "normalized_name": "gorn 2" + }, + { + "appid": 3391470, + "normalized_name": "a monkey's adventure" + }, + { + "appid": 3391500, + "normalized_name": "侦探,请守护我的秘密吧!" + }, + { + "appid": 3391510, + "normalized_name": "island market simulator" + }, + { + "appid": 3391550, + "normalized_name": "victoria la primera" + }, + { + "appid": 3391560, + "normalized_name": "genesis" + }, + { + "appid": 3391580, + "normalized_name": "strange monsters memory" + }, + { + "appid": 3391600, + "normalized_name": "ころコロ" + }, + { + "appid": 3391620, + "normalized_name": "机器人大战蜘蛛" + }, + { + "appid": 3391660, + "normalized_name": "submansion" + }, + { + "appid": 3391670, + "normalized_name": "secret kinks" + }, + { + "appid": 3391690, + "normalized_name": "lrud" + }, + { + "appid": 3391720, + "normalized_name": "eridani survivors" + }, + { + "appid": 3391730, + "normalized_name": "sengoku baccarat" + }, + { + "appid": 3391740, + "normalized_name": "a planet of mine mastermine" + }, + { + "appid": 3391750, + "normalized_name": "the experiment 49" + }, + { + "appid": 3391810, + "normalized_name": "squaser 2" + }, + { + "appid": 3391830, + "normalized_name": "召しませ!レミリアお嬢様!" + }, + { + "appid": 3391910, + "normalized_name": "'golden castle'" + }, + { + "appid": 3391930, + "normalized_name": "götz" + }, + { + "appid": 3391940, + "normalized_name": "samurai stratagem" + }, + { + "appid": 3391980, + "normalized_name": "cooking meomeo" + }, + { + "appid": 3391990, + "normalized_name": "super bouncy gumball party" + }, + { + "appid": 3392000, + "normalized_name": "captain midnight" + }, + { + "appid": 3392010, + "normalized_name": "paath z" + }, + { + "appid": 3392020, + "normalized_name": "aether" + }, + { + "appid": 3392040, + "normalized_name": "omega phenex commenced project six" + }, + { + "appid": 3392060, + "normalized_name": "shelter from the storm" + }, + { + "appid": 3392070, + "normalized_name": "samly's merge" + }, + { + "appid": 3392100, + "normalized_name": "kubic" + }, + { + "appid": 3392110, + "normalized_name": "the crystal realms saga rise of the crystals" + }, + { + "appid": 3392130, + "normalized_name": "sundown" + }, + { + "appid": 3392160, + "normalized_name": "coffee simulator" + }, + { + "appid": 3392230, + "normalized_name": "sekira" + }, + { + "appid": 3392240, + "normalized_name": "planar robit" + }, + { + "appid": 3392280, + "normalized_name": "retro gameshop simulator" + }, + { + "appid": 3392300, + "normalized_name": "sterling shroud" + }, + { + "appid": 3392380, + "normalized_name": "anomaly 13" + }, + { + "appid": 3392420, + "normalized_name": "geckoshop" + }, + { + "appid": 3392430, + "normalized_name": "ginger's letter to santa" + }, + { + "appid": 3392490, + "normalized_name": "moon river" + }, + { + "appid": 3392510, + "normalized_name": "zexion" + }, + { + "appid": 3392550, + "normalized_name": "quadurbs" + }, + { + "appid": 3392560, + "normalized_name": "witherwood" + }, + { + "appid": 3392570, + "normalized_name": "mortal quest" + }, + { + "appid": 3392590, + "normalized_name": "backfire" + }, + { + "appid": 3392610, + "normalized_name": "care for your horse" + }, + { + "appid": 3392670, + "normalized_name": "christmas drift delivery simulator" + }, + { + "appid": 3392700, + "normalized_name": "geopogo cities" + }, + { + "appid": 3392720, + "normalized_name": "entity midnight’s watcher" + }, + { + "appid": 3392730, + "normalized_name": "lifter" + }, + { + "appid": 3392780, + "normalized_name": "shadow siege" + }, + { + "appid": 3392790, + "normalized_name": "bullet inferno" + }, + { + "appid": 3392840, + "normalized_name": "lightqb" + }, + { + "appid": 3392930, + "normalized_name": "residual christmas" + }, + { + "appid": 3392980, + "normalized_name": "typeshot" + }, + { + "appid": 3393030, + "normalized_name": "anderkant 2" + }, + { + "appid": 3393040, + "normalized_name": "heroic wars" + }, + { + "appid": 3393070, + "normalized_name": "kaiju no. 8 the game" + }, + { + "appid": 3393090, + "normalized_name": "table game end" + }, + { + "appid": 3393140, + "normalized_name": "ninth hotel" + }, + { + "appid": 3393160, + "normalized_name": "封神:缘起" + }, + { + "appid": 3393170, + "normalized_name": "被遺留的夜幕細語" + }, + { + "appid": 3393180, + "normalized_name": "sweep" + }, + { + "appid": 3393190, + "normalized_name": "dinoswarm" + }, + { + "appid": 3393200, + "normalized_name": "sillyahhpvp" + }, + { + "appid": 3393230, + "normalized_name": "parts unknown the last fight" + }, + { + "appid": 3393240, + "normalized_name": "banker simulator" + }, + { + "appid": 3393280, + "normalized_name": "anime shop simulator ✨" + }, + { + "appid": 3393330, + "normalized_name": "数字心跳:未来制造局" + }, + { + "appid": 3393340, + "normalized_name": "heroic" + }, + { + "appid": 3393370, + "normalized_name": "moorhuhn / crazy chicken vr blast" + }, + { + "appid": 3393380, + "normalized_name": "the sex curse 💋" + }, + { + "appid": 3393400, + "normalized_name": "rust of steel" + }, + { + "appid": 3393450, + "normalized_name": "timeloop titans" + }, + { + "appid": 3393470, + "normalized_name": "don't stop you'll die!" + }, + { + "appid": 3393480, + "normalized_name": "seagull sauté" + }, + { + "appid": 3393500, + "normalized_name": "monument" + }, + { + "appid": 3393520, + "normalized_name": "criteria" + }, + { + "appid": 3393530, + "normalized_name": "decline" + }, + { + "appid": 3393580, + "normalized_name": "phantoms" + }, + { + "appid": 3393600, + "normalized_name": "singularity strike" + }, + { + "appid": 3393610, + "normalized_name": "valiant worlds adventure of falken" + }, + { + "appid": 3393620, + "normalized_name": "double shoulders" + }, + { + "appid": 3393640, + "normalized_name": "truckerx" + }, + { + "appid": 3393690, + "normalized_name": "tasks for two" + }, + { + "appid": 3393700, + "normalized_name": "fempunks" + }, + { + "appid": 3393710, + "normalized_name": "dungeon fletcher" + }, + { + "appid": 3393720, + "normalized_name": "ramen shop simulator" + }, + { + "appid": 3393740, + "normalized_name": "firefly village" + }, + { + "appid": 3393750, + "normalized_name": "我的人生" + }, + { + "appid": 3393760, + "normalized_name": "the advent children of arla" + }, + { + "appid": 3393780, + "normalized_name": "paintball madness" + }, + { + "appid": 3393800, + "normalized_name": "rodent race" + }, + { + "appid": 3393820, + "normalized_name": "escape together secrets of the professor" + }, + { + "appid": 3393850, + "normalized_name": "dicewood" + }, + { + "appid": 3393890, + "normalized_name": "behind the smile" + }, + { + "appid": 3393930, + "normalized_name": "justice ninja casey" + }, + { + "appid": 3393940, + "normalized_name": "feudal bros tonosama #1" + }, + { + "appid": 3393970, + "normalized_name": "story 210" + }, + { + "appid": 3394040, + "normalized_name": "landonia" + }, + { + "appid": 3394080, + "normalized_name": "friendship with benefits 2" + }, + { + "appid": 3394220, + "normalized_name": "build a lot mysteries" + }, + { + "appid": 3394250, + "normalized_name": "duet" + }, + { + "appid": 3394400, + "normalized_name": "interactive sex bdsm" + }, + { + "appid": 3394420, + "normalized_name": "sweep city" + }, + { + "appid": 3394450, + "normalized_name": "doggins" + }, + { + "appid": 3394460, + "normalized_name": "shieven" + }, + { + "appid": 3394480, + "normalized_name": "treasure hunter" + }, + { + "appid": 3394500, + "normalized_name": "the simulation" + }, + { + "appid": 3394510, + "normalized_name": "a short death" + }, + { + "appid": 3394540, + "normalized_name": "joshgeoff weiner simulator" + }, + { + "appid": 3394560, + "normalized_name": "witchbound" + }, + { + "appid": 3394590, + "normalized_name": "the life and times of daniel vastberaden" + }, + { + "appid": 3394600, + "normalized_name": "sydney and the cicadas in \"immanentize\"" + }, + { + "appid": 3394620, + "normalized_name": "keeping night" + }, + { + "appid": 3394680, + "normalized_name": "哼?想润:签证官模拟器" + }, + { + "appid": 3394690, + "normalized_name": "steel judgment" + }, + { + "appid": 3394720, + "normalized_name": "scarlett university" + }, + { + "appid": 3394730, + "normalized_name": "risk of rabbit" + }, + { + "appid": 3394750, + "normalized_name": "look & learn" + }, + { + "appid": 3394760, + "normalized_name": "my house" + }, + { + "appid": 3394770, + "normalized_name": "メンヘラリウム" + }, + { + "appid": 3394780, + "normalized_name": "hellspawn trials how many toddlers can you beat in a fight?" + }, + { + "appid": 3394790, + "normalized_name": "strider arena" + }, + { + "appid": 3394800, + "normalized_name": "koko's cafe" + }, + { + "appid": 3394840, + "normalized_name": "clawed" + }, + { + "appid": 3394850, + "normalized_name": "jigsaw usa" + }, + { + "appid": 3394870, + "normalized_name": "defenders of the dune" + }, + { + "appid": 3394890, + "normalized_name": "amazing tictactoe" + }, + { + "appid": 3394900, + "normalized_name": "トリと木の実" + }, + { + "appid": 3394910, + "normalized_name": "月之扉" + }, + { + "appid": 3394930, + "normalized_name": "妹ーたるサバイバー!" + }, + { + "appid": 3394940, + "normalized_name": "ホロウドライヴ" + }, + { + "appid": 3394980, + "normalized_name": "drop 'n' fill!" + }, + { + "appid": 3395030, + "normalized_name": "microverse" + }, + { + "appid": 3395040, + "normalized_name": "meow td endless yarn" + }, + { + "appid": 3395050, + "normalized_name": "little onryo" + }, + { + "appid": 3395060, + "normalized_name": "children of hell" + }, + { + "appid": 3395070, + "normalized_name": "plot4" + }, + { + "appid": 3395080, + "normalized_name": "kingdom cum" + }, + { + "appid": 3395090, + "normalized_name": "tokyo's neon monsters" + }, + { + "appid": 3395140, + "normalized_name": "小小侠客模拟器" + }, + { + "appid": 3395150, + "normalized_name": "orbital mechanic" + }, + { + "appid": 3395180, + "normalized_name": "rose in the mist" + }, + { + "appid": 3395190, + "normalized_name": "sex adventures incest family episode 1" + }, + { + "appid": 3395210, + "normalized_name": "quiz & learn geography" + }, + { + "appid": 3395220, + "normalized_name": "skuf vs beer bottle party" + }, + { + "appid": 3395250, + "normalized_name": "broken wings hornet down" + }, + { + "appid": 3395260, + "normalized_name": "tropicalypse" + }, + { + "appid": 3395280, + "normalized_name": "dino farm" + }, + { + "appid": 3395290, + "normalized_name": "sumo tatami" + }, + { + "appid": 3395300, + "normalized_name": "哎呦!这么多美女呀!" + }, + { + "appid": 3395320, + "normalized_name": "critical shift" + }, + { + "appid": 3395330, + "normalized_name": "mechanimals" + }, + { + "appid": 3395360, + "normalized_name": "reflections of the void" + }, + { + "appid": 3395370, + "normalized_name": "bigpemu" + }, + { + "appid": 3395390, + "normalized_name": "infested" + }, + { + "appid": 3395410, + "normalized_name": "cats of mona lisa a hidden object game" + }, + { + "appid": 3395420, + "normalized_name": "peek a mimic" + }, + { + "appid": 3395460, + "normalized_name": "resurrection the judgment" + }, + { + "appid": 3395470, + "normalized_name": "the legend of kuro" + }, + { + "appid": 3395500, + "normalized_name": "yap wizards tower defence" + }, + { + "appid": 3395530, + "normalized_name": "tenshi" + }, + { + "appid": 3395700, + "normalized_name": "hentai puzzle winter passion" + }, + { + "appid": 3395710, + "normalized_name": "nosferatu's dominion" + }, + { + "appid": 3395730, + "normalized_name": "banshee bash" + }, + { + "appid": 3395750, + "normalized_name": "pang in time" + }, + { + "appid": 3395760, + "normalized_name": "with me aquatic time" + }, + { + "appid": 3395810, + "normalized_name": "suspense madman's dreams" + }, + { + "appid": 3395840, + "normalized_name": "waves of hell" + }, + { + "appid": 3395850, + "normalized_name": "foepower" + }, + { + "appid": 3395860, + "normalized_name": "endless descent" + }, + { + "appid": 3395890, + "normalized_name": "nanima" + }, + { + "appid": 3395910, + "normalized_name": "black pellet" + }, + { + "appid": 3395920, + "normalized_name": "25920" + }, + { + "appid": 3395930, + "normalized_name": "mashina" + }, + { + "appid": 3395960, + "normalized_name": "gg tanks" + }, + { + "appid": 3395970, + "normalized_name": "wdf" + }, + { + "appid": 3396030, + "normalized_name": "eva's hook" + }, + { + "appid": 3396040, + "normalized_name": "kewter’s showroom" + }, + { + "appid": 3396090, + "normalized_name": "shop life simulator" + }, + { + "appid": 3396120, + "normalized_name": "イマジナリーバッドフレンド" + }, + { + "appid": 3396150, + "normalized_name": "the trickshot challenge" + }, + { + "appid": 3396160, + "normalized_name": "warfactory" + }, + { + "appid": 3396180, + "normalized_name": "perdition village" + }, + { + "appid": 3396280, + "normalized_name": "big cat jigsaw quest" + }, + { + "appid": 3396290, + "normalized_name": "puni the florist" + }, + { + "appid": 3396310, + "normalized_name": "shorebound" + }, + { + "appid": 3396320, + "normalized_name": "pragmatics" + }, + { + "appid": 3396330, + "normalized_name": "involve" + }, + { + "appid": 3396340, + "normalized_name": "em 8er" + }, + { + "appid": 3396350, + "normalized_name": "macaronpolis" + }, + { + "appid": 3396370, + "normalized_name": "夕日まで" + }, + { + "appid": 3396400, + "normalized_name": "dragon conqueror" + }, + { + "appid": 3396420, + "normalized_name": "virtual sniper" + }, + { + "appid": 3396430, + "normalized_name": "pain" + }, + { + "appid": 3396460, + "normalized_name": "urban shadows racing tokyo" + }, + { + "appid": 3396470, + "normalized_name": "ambient dark" + }, + { + "appid": 3396480, + "normalized_name": "judah knight knights & demons chapter 1" + }, + { + "appid": 3396520, + "normalized_name": "farm life" + }, + { + "appid": 3396540, + "normalized_name": "signal" + }, + { + "appid": 3396550, + "normalized_name": "hospital hospitality" + }, + { + "appid": 3396560, + "normalized_name": "the blessed fool" + }, + { + "appid": 3396570, + "normalized_name": "à la carte" + }, + { + "appid": 3396580, + "normalized_name": "keep it shut" + }, + { + "appid": 3396600, + "normalized_name": "gun reflex vr" + }, + { + "appid": 3396620, + "normalized_name": "song song" + }, + { + "appid": 3396630, + "normalized_name": "poumosa" + }, + { + "appid": 3396640, + "normalized_name": "secret paws cozy apartments" + }, + { + "appid": 3396650, + "normalized_name": "who made this" + }, + { + "appid": 3396670, + "normalized_name": "i write games not tragedies" + }, + { + "appid": 3396740, + "normalized_name": "backrooms hide together" + }, + { + "appid": 3396830, + "normalized_name": "santa's christmas solitaire 3" + }, + { + "appid": 3396850, + "normalized_name": "/r a neurodivergent thriller" + }, + { + "appid": 3396890, + "normalized_name": "the search for fran 3" + }, + { + "appid": 3396900, + "normalized_name": "devtycoon" + }, + { + "appid": 3396920, + "normalized_name": "settler's domain" + }, + { + "appid": 3396930, + "normalized_name": "beetle barrage" + }, + { + "appid": 3396950, + "normalized_name": "ice eyes" + }, + { + "appid": 3396980, + "normalized_name": "chair force" + }, + { + "appid": 3396990, + "normalized_name": "tawa defense" + }, + { + "appid": 3397050, + "normalized_name": "skylark" + }, + { + "appid": 3397070, + "normalized_name": "super rising ball" + }, + { + "appid": 3397090, + "normalized_name": "soldier adventure" + }, + { + "appid": 3397100, + "normalized_name": "eye of the incubus" + }, + { + "appid": 3397120, + "normalized_name": "holy valkyrie exs tia p" + }, + { + "appid": 3397130, + "normalized_name": "特工训练" + }, + { + "appid": 3397160, + "normalized_name": "hunter hitman" + }, + { + "appid": 3397170, + "normalized_name": "24 puzzle" + }, + { + "appid": 3397200, + "normalized_name": "sarukhstart takeover" + }, + { + "appid": 3397230, + "normalized_name": "kitten food alley" + }, + { + "appid": 3397240, + "normalized_name": "battle air hockey break beats!" + }, + { + "appid": 3397260, + "normalized_name": "liminal city axiom of maria chapter one" + }, + { + "appid": 3397270, + "normalized_name": "q dungeon 地穴抓娃娃" + }, + { + "appid": 3397340, + "normalized_name": "break.up" + }, + { + "appid": 3397360, + "normalized_name": "femboy feet" + }, + { + "appid": 3397380, + "normalized_name": "from zero to slime hero" + }, + { + "appid": 3397390, + "normalized_name": "gassal simulation" + }, + { + "appid": 3397400, + "normalized_name": "frick it" + }, + { + "appid": 3397450, + "normalized_name": "elemental defender" + }, + { + "appid": 3397460, + "normalized_name": "void harvest" + }, + { + "appid": 3397470, + "normalized_name": "borzoi" + }, + { + "appid": 3397480, + "normalized_name": "slowly fighter" + }, + { + "appid": 3397510, + "normalized_name": "hidden tomatoes 2" + }, + { + "appid": 3397530, + "normalized_name": "c aged" + }, + { + "appid": 3397540, + "normalized_name": "deva rise of demons" + }, + { + "appid": 3397590, + "normalized_name": "aeschylus death" + }, + { + "appid": 3397600, + "normalized_name": "croquettesclicker" + }, + { + "appid": 3397620, + "normalized_name": "neurosis" + }, + { + "appid": 3397670, + "normalized_name": "nine minute mayhem" + }, + { + "appid": 3397690, + "normalized_name": "westfall" + }, + { + "appid": 3397720, + "normalized_name": "alchemist journey of the soul prologue" + }, + { + "appid": 3397750, + "normalized_name": "the banana game" + }, + { + "appid": 3397770, + "normalized_name": "night dessert" + }, + { + "appid": 3397780, + "normalized_name": "air master hanemaru" + }, + { + "appid": 3397790, + "normalized_name": "gravity's apple" + }, + { + "appid": 3397800, + "normalized_name": "vrovpilot titanic" + }, + { + "appid": 3397810, + "normalized_name": "fear to face" + }, + { + "appid": 3397820, + "normalized_name": "eternal challenger" + }, + { + "appid": 3397830, + "normalized_name": "minimalist sudoku" + }, + { + "appid": 3397850, + "normalized_name": "rot" + }, + { + "appid": 3397870, + "normalized_name": "endless mind" + }, + { + "appid": 3397880, + "normalized_name": "sokoku" + }, + { + "appid": 3397910, + "normalized_name": "the lootlands idle arpg" + }, + { + "appid": 3397940, + "normalized_name": "infernity the devil's arena" + }, + { + "appid": 3397980, + "normalized_name": "tired to fall" + }, + { + "appid": 3398070, + "normalized_name": "boomcestors" + }, + { + "appid": 3398080, + "normalized_name": "can we still get high" + }, + { + "appid": 3398110, + "normalized_name": "the walking trade" + }, + { + "appid": 3398140, + "normalized_name": "supermarket simulator pro" + }, + { + "appid": 3398150, + "normalized_name": "t1wre3 noname" + }, + { + "appid": 3398160, + "normalized_name": "super debt" + }, + { + "appid": 3398180, + "normalized_name": "hephep fever retold" + }, + { + "appid": 3398200, + "normalized_name": "pacifish recast" + }, + { + "appid": 3398230, + "normalized_name": "go fkn fast" + }, + { + "appid": 3398250, + "normalized_name": "honekawa marionette" + }, + { + "appid": 3398370, + "normalized_name": "obscura" + }, + { + "appid": 3398430, + "normalized_name": "quail crossing" + }, + { + "appid": 3398440, + "normalized_name": "纸片飞机" + }, + { + "appid": 3398460, + "normalized_name": "方块消一消" + }, + { + "appid": 3398470, + "normalized_name": "zipsokoban" + }, + { + "appid": 3398480, + "normalized_name": "xenofields frontier" + }, + { + "appid": 3398490, + "normalized_name": "azure ember" + }, + { + "appid": 3398560, + "normalized_name": "slice & dice pizza shop simulator" + }, + { + "appid": 3398580, + "normalized_name": "slimeclimb" + }, + { + "appid": 3398600, + "normalized_name": "eclipse casino" + }, + { + "appid": 3398670, + "normalized_name": "ripple park" + }, + { + "appid": 3398690, + "normalized_name": "lonely christmas cupid's punishment" + }, + { + "appid": 3398700, + "normalized_name": "santacorps snow patrol" + }, + { + "appid": 3398720, + "normalized_name": "slidenglide" + }, + { + "appid": 3398730, + "normalized_name": "poly rancher" + }, + { + "appid": 3398740, + "normalized_name": "tower of penguinaria" + }, + { + "appid": 3398750, + "normalized_name": "gear slayer tcg" + }, + { + "appid": 3398760, + "normalized_name": "smiling misery" + }, + { + "appid": 3398790, + "normalized_name": "interactive sex incest twins" + }, + { + "appid": 3398810, + "normalized_name": "lonely christmas sadistic femdom punishment" + }, + { + "appid": 3398830, + "normalized_name": "funnyland farms" + }, + { + "appid": 3398870, + "normalized_name": "dooms hair salon" + }, + { + "appid": 3398880, + "normalized_name": "castle v castle" + }, + { + "appid": 3398890, + "normalized_name": "femdom tower defence" + }, + { + "appid": 3398900, + "normalized_name": "the turkish bazaar" + }, + { + "appid": 3398920, + "normalized_name": "drones vs tanks" + }, + { + "appid": 3398940, + "normalized_name": "waypoint" + }, + { + "appid": 3398950, + "normalized_name": "kindred [snowbound]" + }, + { + "appid": 3398960, + "normalized_name": "maize" + }, + { + "appid": 3398990, + "normalized_name": "leena" + }, + { + "appid": 3399040, + "normalized_name": "office simulator" + }, + { + "appid": 3399050, + "normalized_name": "corefall" + }, + { + "appid": 3399080, + "normalized_name": "verbena tales of growing up" + }, + { + "appid": 3399090, + "normalized_name": "magical frontline" + }, + { + "appid": 3399100, + "normalized_name": "flashes of chaos" + }, + { + "appid": 3399130, + "normalized_name": "dominova" + }, + { + "appid": 3399140, + "normalized_name": "chrono chasm" + }, + { + "appid": 3399150, + "normalized_name": "miko no kanata curious tales from oguni shrine zero" + }, + { + "appid": 3399200, + "normalized_name": "billie beetleneck a detective tale" + }, + { + "appid": 3399240, + "normalized_name": "buster jam" + }, + { + "appid": 3399260, + "normalized_name": "夜烬迷航 veil of ember" + }, + { + "appid": 3399290, + "normalized_name": "dead format" + }, + { + "appid": 3399300, + "normalized_name": "memento" + }, + { + "appid": 3399360, + "normalized_name": "'my' parkour(‘我’的跑酷)" + }, + { + "appid": 3399370, + "normalized_name": "crone" + }, + { + "appid": 3399400, + "normalized_name": "monochrome echoes white" + }, + { + "appid": 3399430, + "normalized_name": "18岁清纯少萝" + }, + { + "appid": 3399480, + "normalized_name": "viper squad" + }, + { + "appid": 3399510, + "normalized_name": "revengeful ghost" + }, + { + "appid": 3399520, + "normalized_name": "亩产亿万斤" + }, + { + "appid": 3399540, + "normalized_name": "浮云游戏公司" + }, + { + "appid": 3399570, + "normalized_name": "お前ゲーム+" + }, + { + "appid": 3399580, + "normalized_name": "8人お前+" + }, + { + "appid": 3399590, + "normalized_name": "jumpお前+" + }, + { + "appid": 3399630, + "normalized_name": "the curse of mount madre" + }, + { + "appid": 3399670, + "normalized_name": "writer. chapter 1" + }, + { + "appid": 3399680, + "normalized_name": "cooking clash" + }, + { + "appid": 3399690, + "normalized_name": "motor racing battle" + }, + { + "appid": 3399700, + "normalized_name": "parkour assassin sprint run" + }, + { + "appid": 3399770, + "normalized_name": "miryam the polluted land" + }, + { + "appid": 3399780, + "normalized_name": "镇邪ⅱ" + }, + { + "appid": 3399830, + "normalized_name": "the last of them" + }, + { + "appid": 3399840, + "normalized_name": "double d. f." + }, + { + "appid": 3399850, + "normalized_name": "the corruption" + }, + { + "appid": 3399880, + "normalized_name": "wisterix" + }, + { + "appid": 3399920, + "normalized_name": "infinite rails" + }, + { + "appid": 3399930, + "normalized_name": "roulette dungeon" + }, + { + "appid": 3399940, + "normalized_name": "drift survivors" + }, + { + "appid": 3399950, + "normalized_name": "your mother" + }, + { + "appid": 3399960, + "normalized_name": "fish to dish idle sushi" + }, + { + "appid": 3399990, + "normalized_name": "christmas store santa's supermarket simulator" + }, + { + "appid": 3400000, + "normalized_name": "cubic odyssey" + }, + { + "appid": 3400010, + "normalized_name": "window of perspecitves" + }, + { + "appid": 3400030, + "normalized_name": "六六大作战" + }, + { + "appid": 3400040, + "normalized_name": "心霊物件 | haunted property" + }, + { + "appid": 3400050, + "normalized_name": "medieval startup" + }, + { + "appid": 3400080, + "normalized_name": "fantasy soul revenge" + }, + { + "appid": 3400090, + "normalized_name": "the night shift" + }, + { + "appid": 3400110, + "normalized_name": "ironweld" + }, + { + "appid": 3400140, + "normalized_name": "夏日盛宴" + }, + { + "appid": 3400150, + "normalized_name": "crazy robot ball" + }, + { + "appid": 3400160, + "normalized_name": "tank battle salvo" + }, + { + "appid": 3400290, + "normalized_name": "reclaim the wasteland" + }, + { + "appid": 3400300, + "normalized_name": "madora" + }, + { + "appid": 3400310, + "normalized_name": "game" + }, + { + "appid": 3400350, + "normalized_name": "third crisis neon nights" + }, + { + "appid": 3400360, + "normalized_name": "extreme cycling" + }, + { + "appid": 3400380, + "normalized_name": "look mum no computer" + }, + { + "appid": 3400420, + "normalized_name": "deeper you go" + }, + { + "appid": 3400470, + "normalized_name": "hell bug" + }, + { + "appid": 3400490, + "normalized_name": "parkour skyrun" + }, + { + "appid": 3400500, + "normalized_name": "scoop 'n shoot" + }, + { + "appid": 3400510, + "normalized_name": "magical advertence" + }, + { + "appid": 3400520, + "normalized_name": "pohinki simulator" + }, + { + "appid": 3400530, + "normalized_name": "therapy simulator" + }, + { + "appid": 3400540, + "normalized_name": "survivalist hustle" + }, + { + "appid": 3400610, + "normalized_name": "warrior of democracy" + }, + { + "appid": 3400650, + "normalized_name": "creepy shift house for sale" + }, + { + "appid": 3400710, + "normalized_name": "look a bazooka" + }, + { + "appid": 3400820, + "normalized_name": "leap of faith" + }, + { + "appid": 3400890, + "normalized_name": "defe the defender" + }, + { + "appid": 3400930, + "normalized_name": "guilty as sock!" + }, + { + "appid": 3400960, + "normalized_name": "oaken tower" + }, + { + "appid": 3401000, + "normalized_name": "car mechanic shop simulator" + }, + { + "appid": 3401050, + "normalized_name": "face love face designer" + }, + { + "appid": 3401060, + "normalized_name": "descending curse of the blood crown" + }, + { + "appid": 3401100, + "normalized_name": "unleashed fmx" + }, + { + "appid": 3401110, + "normalized_name": "a game about you" + }, + { + "appid": 3401120, + "normalized_name": "hot dawg" + }, + { + "appid": 3401160, + "normalized_name": "ceaseless" + }, + { + "appid": 3401170, + "normalized_name": "last agent" + }, + { + "appid": 3401350, + "normalized_name": "clickoin" + }, + { + "appid": 3401370, + "normalized_name": "yell at each other online" + }, + { + "appid": 3401390, + "normalized_name": "akumon summoner" + }, + { + "appid": 3401410, + "normalized_name": "sex office" + }, + { + "appid": 3401430, + "normalized_name": "negotiations have failed!" + }, + { + "appid": 3401460, + "normalized_name": "maid of venia" + }, + { + "appid": 3401480, + "normalized_name": "emberblade" + }, + { + "appid": 3401490, + "normalized_name": "replicube" + }, + { + "appid": 3401500, + "normalized_name": "all the stars" + }, + { + "appid": 3401530, + "normalized_name": "seed adventure" + }, + { + "appid": 3401570, + "normalized_name": "abyss ring" + }, + { + "appid": 3401730, + "normalized_name": "holyhex! become a legend" + }, + { + "appid": 3401750, + "normalized_name": "reaper's awakening!" + }, + { + "appid": 3401820, + "normalized_name": "神籠り kamikomori" + }, + { + "appid": 3401830, + "normalized_name": "炎の料理人クッキングファイター好" + }, + { + "appid": 3401850, + "normalized_name": "erandique" + }, + { + "appid": 3401870, + "normalized_name": "ella stars" + }, + { + "appid": 3401880, + "normalized_name": "street crime mission" + }, + { + "appid": 3401890, + "normalized_name": "the seabed's shining star" + }, + { + "appid": 3401900, + "normalized_name": "menticide" + }, + { + "appid": 3401910, + "normalized_name": "森の中の迷い家からの脱出" + }, + { + "appid": 3401930, + "normalized_name": "lof ely the dark cave" + }, + { + "appid": 3402110, + "normalized_name": "hackos" + }, + { + "appid": 3402140, + "normalized_name": "speedus shedding speed card plus" + }, + { + "appid": 3402150, + "normalized_name": "duck dating sim" + }, + { + "appid": 3402160, + "normalized_name": "prisoners of ulag'bol a dungeon crawling deckbuilder" + }, + { + "appid": 3402170, + "normalized_name": "routine soul" + }, + { + "appid": 3402180, + "normalized_name": "fighting for land / 打怪兽抢领地" + }, + { + "appid": 3402230, + "normalized_name": "sivers" + }, + { + "appid": 3402270, + "normalized_name": "the dragon odyssey" + }, + { + "appid": 3402300, + "normalized_name": "smith & dungeon crafting the legendary weapons" + }, + { + "appid": 3402330, + "normalized_name": "astro combat" + }, + { + "appid": 3402390, + "normalized_name": "mau squared" + }, + { + "appid": 3402410, + "normalized_name": "tacball" + }, + { + "appid": 3402500, + "normalized_name": "unblock now" + }, + { + "appid": 3402530, + "normalized_name": "screen cat" + }, + { + "appid": 3402540, + "normalized_name": "just grow" + }, + { + "appid": 3402560, + "normalized_name": "sweet fantasy world" + }, + { + "appid": 3402620, + "normalized_name": "soul roach city" + }, + { + "appid": 3402700, + "normalized_name": "norma" + }, + { + "appid": 3402720, + "normalized_name": "clean up earth" + }, + { + "appid": 3402730, + "normalized_name": "mission to fission" + }, + { + "appid": 3402850, + "normalized_name": "shape warzone" + }, + { + "appid": 3403080, + "normalized_name": "subject 7" + }, + { + "appid": 3403090, + "normalized_name": "fire hero pixel rescue" + }, + { + "appid": 3403150, + "normalized_name": "twins & dreams" + }, + { + "appid": 3403310, + "normalized_name": "ever hotter" + }, + { + "appid": 3403380, + "normalized_name": "sisyphus the game" + }, + { + "appid": 3403440, + "normalized_name": "hikidama" + }, + { + "appid": 3403500, + "normalized_name": "sym shepherd" + }, + { + "appid": 3403510, + "normalized_name": "winter clothing" + }, + { + "appid": 3403530, + "normalized_name": "magnesian" + }, + { + "appid": 3403540, + "normalized_name": "space grunts 3" + }, + { + "appid": 3403560, + "normalized_name": "bonsai '98" + }, + { + "appid": 3403570, + "normalized_name": "denovo" + }, + { + "appid": 3403590, + "normalized_name": "glimvale my mini overworld" + }, + { + "appid": 3403610, + "normalized_name": "enemania td" + }, + { + "appid": 3403630, + "normalized_name": "pack lunch" + }, + { + "appid": 3403660, + "normalized_name": "the 18th attic paranormal anomaly hunting game" + }, + { + "appid": 3403670, + "normalized_name": "the gas station" + }, + { + "appid": 3403680, + "normalized_name": "magic world simulator" + }, + { + "appid": 3403720, + "normalized_name": "miami paradise" + }, + { + "appid": 3403750, + "normalized_name": "pixel domain" + }, + { + "appid": 3403780, + "normalized_name": "the stick figure game" + }, + { + "appid": 3403790, + "normalized_name": "elevator music" + }, + { + "appid": 3403850, + "normalized_name": "mr. white's agency" + }, + { + "appid": 3403860, + "normalized_name": "samurai brothers" + }, + { + "appid": 3403870, + "normalized_name": "bloodface" + }, + { + "appid": 3403880, + "normalized_name": "klaws" + }, + { + "appid": 3403920, + "normalized_name": "luxury supermarket simulator" + }, + { + "appid": 3403960, + "normalized_name": "turkish coffee daily" + }, + { + "appid": 3404010, + "normalized_name": "恐惧深处(fear deeps)" + }, + { + "appid": 3404040, + "normalized_name": "heirs of heaven" + }, + { + "appid": 3404050, + "normalized_name": "inside intruder" + }, + { + "appid": 3404060, + "normalized_name": "arcane realms" + }, + { + "appid": 3404110, + "normalized_name": "move dash rush" + }, + { + "appid": 3404140, + "normalized_name": "bloody night cult" + }, + { + "appid": 3404150, + "normalized_name": "arcaid" + }, + { + "appid": 3404160, + "normalized_name": "portugal tourism gp!" + }, + { + "appid": 3404170, + "normalized_name": "together we play help me help you" + }, + { + "appid": 3404180, + "normalized_name": "gods must work" + }, + { + "appid": 3404250, + "normalized_name": "we love fish tanks" + }, + { + "appid": 3404260, + "normalized_name": "dead as disco" + }, + { + "appid": 3404330, + "normalized_name": "wuttworld" + }, + { + "appid": 3404360, + "normalized_name": "burger race" + }, + { + "appid": 3404380, + "normalized_name": "your daughter" + }, + { + "appid": 3404410, + "normalized_name": "the new apartment" + }, + { + "appid": 3404440, + "normalized_name": "musical meteors" + }, + { + "appid": 3404470, + "normalized_name": "animal spa" + }, + { + "appid": 3404480, + "normalized_name": "grimm work" + }, + { + "appid": 3404520, + "normalized_name": "rise of the penguins gb" + }, + { + "appid": 3404610, + "normalized_name": "hentai world winter" + }, + { + "appid": 3404630, + "normalized_name": "snowscape" + }, + { + "appid": 3404640, + "normalized_name": "bright past" + }, + { + "appid": 3404670, + "normalized_name": "the night of escape" + }, + { + "appid": 3404690, + "normalized_name": "赛博斗蛐蛐" + }, + { + "appid": 3404770, + "normalized_name": "奇华幻相" + }, + { + "appid": 3404890, + "normalized_name": "chess bomb" + }, + { + "appid": 3404900, + "normalized_name": "主播养成12dora pet streamer 12dora" + }, + { + "appid": 3404940, + "normalized_name": "3d desktop pets" + }, + { + "appid": 3405010, + "normalized_name": "lil lootin lizards" + }, + { + "appid": 3405020, + "normalized_name": "that village" + }, + { + "appid": 3405050, + "normalized_name": "hayden's odyssey" + }, + { + "appid": 3405070, + "normalized_name": "trick or beat" + }, + { + "appid": 3405080, + "normalized_name": "smile thief" + }, + { + "appid": 3405100, + "normalized_name": "crashed" + }, + { + "appid": 3405120, + "normalized_name": "hide the corpse" + }, + { + "appid": 3405140, + "normalized_name": "medix" + }, + { + "appid": 3405160, + "normalized_name": "yokai art 2 tales of the nine tails" + }, + { + "appid": 3405200, + "normalized_name": "mini estate" + }, + { + "appid": 3405220, + "normalized_name": "dungeonfell" + }, + { + "appid": 3405230, + "normalized_name": "fast fingers" + }, + { + "appid": 3405340, + "normalized_name": "megabonk" + }, + { + "appid": 3405360, + "normalized_name": "train your slayer" + }, + { + "appid": 3405400, + "normalized_name": "cursed feed" + }, + { + "appid": 3405420, + "normalized_name": "just cube" + }, + { + "appid": 3405430, + "normalized_name": "spamware" + }, + { + "appid": 3405460, + "normalized_name": "melon clicker" + }, + { + "appid": 3405470, + "normalized_name": "hentai uni 3" + }, + { + "appid": 3405490, + "normalized_name": "sorry survivor" + }, + { + "appid": 3405540, + "normalized_name": "tiny auto knights" + }, + { + "appid": 3405580, + "normalized_name": "lunar rebirth dungeon of eternal return" + }, + { + "appid": 3405590, + "normalized_name": "infinite onslaught" + }, + { + "appid": 3405620, + "normalized_name": "ggo 枪战火线" + }, + { + "appid": 3405630, + "normalized_name": "adventure realm" + }, + { + "appid": 3405660, + "normalized_name": "night is coming — wrath of the woods" + }, + { + "appid": 3405670, + "normalized_name": "assetflip attorney" + }, + { + "appid": 3405680, + "normalized_name": "teamcrafter" + }, + { + "appid": 3405860, + "normalized_name": "lurking within" + }, + { + "appid": 3405880, + "normalized_name": "mr donald" + }, + { + "appid": 3405910, + "normalized_name": "bandido rush" + }, + { + "appid": 3405960, + "normalized_name": "cataclysm wars" + }, + { + "appid": 3405990, + "normalized_name": "bowling simulator" + }, + { + "appid": 3406040, + "normalized_name": "defense duel" + }, + { + "appid": 3406060, + "normalized_name": "sammy." + }, + { + "appid": 3406090, + "normalized_name": "a difficult game about wheelchair" + }, + { + "appid": 3406120, + "normalized_name": "the sausage game" + }, + { + "appid": 3406130, + "normalized_name": "fierce kingdoms" + }, + { + "appid": 3406290, + "normalized_name": "the forgotten village (demo)" + }, + { + "appid": 3406310, + "normalized_name": "back wars" + }, + { + "appid": 3406330, + "normalized_name": "quacolé tennis" + }, + { + "appid": 3406460, + "normalized_name": "soundward the lost signal" + }, + { + "appid": 3406480, + "normalized_name": "breaking point operation exodus" + }, + { + "appid": 3406560, + "normalized_name": "monkey bubble defense" + }, + { + "appid": 3406570, + "normalized_name": "chaos machina" + }, + { + "appid": 3406600, + "normalized_name": "winter quackdown" + }, + { + "appid": 3406610, + "normalized_name": "teleport master" + }, + { + "appid": 3406620, + "normalized_name": "ヴァレット/varlet" + }, + { + "appid": 3406640, + "normalized_name": "永夜镇eternalnighttown" + }, + { + "appid": 3406660, + "normalized_name": "1.96.9 all update" + }, + { + "appid": 3406690, + "normalized_name": "puzzle spy international" + }, + { + "appid": 3406700, + "normalized_name": "miko x miko sisters 神楽家の巫女と悪霊" + }, + { + "appid": 3406710, + "normalized_name": "vr japanese sharpshooter" + }, + { + "appid": 3406730, + "normalized_name": "twnkl gft 2 a lust for blood" + }, + { + "appid": 3406740, + "normalized_name": "dino space station" + }, + { + "appid": 3406750, + "normalized_name": "room washer" + }, + { + "appid": 3406760, + "normalized_name": "monmusu paradise" + }, + { + "appid": 3406800, + "normalized_name": "monmusu paradise ~visitors~" + }, + { + "appid": 3406810, + "normalized_name": "dyping escape" + }, + { + "appid": 3406840, + "normalized_name": "technically frogs can fly" + }, + { + "appid": 3406850, + "normalized_name": "debugging hero" + }, + { + "appid": 3406870, + "normalized_name": "blockgame" + }, + { + "appid": 3406890, + "normalized_name": "东方神域传 ~在游戏里展示威严~" + }, + { + "appid": 3406940, + "normalized_name": "paintman go!" + }, + { + "appid": 3407040, + "normalized_name": "kalakala" + }, + { + "appid": 3407070, + "normalized_name": "sex with friends" + }, + { + "appid": 3407150, + "normalized_name": "elemental surge" + }, + { + "appid": 3407170, + "normalized_name": "hamster funland" + }, + { + "appid": 3407180, + "normalized_name": "ballquizzle" + }, + { + "appid": 3407310, + "normalized_name": "consumables" + }, + { + "appid": 3407360, + "normalized_name": "pardon my french toast" + }, + { + "appid": 3407380, + "normalized_name": "leanna quest" + }, + { + "appid": 3407390, + "normalized_name": "endless legend 2" + }, + { + "appid": 3407450, + "normalized_name": "the northern path" + }, + { + "appid": 3407480, + "normalized_name": "magic wands workshop" + }, + { + "appid": 3407500, + "normalized_name": "inspector schmidt the ebbing prolog" + }, + { + "appid": 3407570, + "normalized_name": "pineapple" + }, + { + "appid": 3407680, + "normalized_name": "time breaking dino breach" + }, + { + "appid": 3407700, + "normalized_name": "witch’s lewd curse" + }, + { + "appid": 3407710, + "normalized_name": "let's go metal hero! vol. 1" + }, + { + "appid": 3407760, + "normalized_name": "the night of the trickster" + }, + { + "appid": 3407770, + "normalized_name": "tennis pro tour" + }, + { + "appid": 3407810, + "normalized_name": "dream girlfriend trad girl" + }, + { + "appid": 3407820, + "normalized_name": "recolor" + }, + { + "appid": 3407910, + "normalized_name": "spellbound acres" + }, + { + "appid": 3407960, + "normalized_name": "a father's tale" + }, + { + "appid": 3407980, + "normalized_name": "2 minutes to die" + }, + { + "appid": 3407990, + "normalized_name": "second chances" + }, + { + "appid": 3408000, + "normalized_name": "neon rain" + }, + { + "appid": 3408010, + "normalized_name": "election day!!!" + }, + { + "appid": 3408020, + "normalized_name": "succubus forest" + }, + { + "appid": 3408060, + "normalized_name": "palm cracker" + }, + { + "appid": 3408110, + "normalized_name": "cafemart simulator" + }, + { + "appid": 3408120, + "normalized_name": "blj bombones" + }, + { + "appid": 3408140, + "normalized_name": "threats to humanity" + }, + { + "appid": 3408160, + "normalized_name": "cactus flats" + }, + { + "appid": 3408170, + "normalized_name": "deadswitch combat" + }, + { + "appid": 3408190, + "normalized_name": "时光物语" + }, + { + "appid": 3408260, + "normalized_name": "bonk" + }, + { + "appid": 3408290, + "normalized_name": "merbert's tower" + }, + { + "appid": 3408300, + "normalized_name": "running up" + }, + { + "appid": 3408320, + "normalized_name": "frostbite" + }, + { + "appid": 3408330, + "normalized_name": "小小士兵" + }, + { + "appid": 3408340, + "normalized_name": "inferno cafe" + }, + { + "appid": 3408350, + "normalized_name": "aaa" + }, + { + "appid": 3408360, + "normalized_name": "odd machines lost artifacts" + }, + { + "appid": 3408370, + "normalized_name": "三国志 乱世如梦" + }, + { + "appid": 3408380, + "normalized_name": "除灵事务所" + }, + { + "appid": 3408410, + "normalized_name": "lucky lord the coin pusher of fate" + }, + { + "appid": 3408420, + "normalized_name": "girl card battle" + }, + { + "appid": 3408440, + "normalized_name": "whampunch 超能打" + }, + { + "appid": 3408450, + "normalized_name": "tiny hero courier" + }, + { + "appid": 3408470, + "normalized_name": "7 days shrine" + }, + { + "appid": 3408480, + "normalized_name": "卜卦 / bugua" + }, + { + "appid": 3408490, + "normalized_name": "military defense" + }, + { + "appid": 3408500, + "normalized_name": "mentes y lienzos" + }, + { + "appid": 3408510, + "normalized_name": "ava" + }, + { + "appid": 3408540, + "normalized_name": "coco" + }, + { + "appid": 3408550, + "normalized_name": "postman simulator" + }, + { + "appid": 3408560, + "normalized_name": "saunageddon" + }, + { + "appid": 3408570, + "normalized_name": "harmony of fear" + }, + { + "appid": 3408580, + "normalized_name": "rome nightmares of empire" + }, + { + "appid": 3408600, + "normalized_name": "a song in elyel nalore" + }, + { + "appid": 3408610, + "normalized_name": "the transitions" + }, + { + "appid": 3408640, + "normalized_name": "cubesc vr" + }, + { + "appid": 3408670, + "normalized_name": "stranger's worlds" + }, + { + "appid": 3408690, + "normalized_name": "soul cards" + }, + { + "appid": 3408700, + "normalized_name": "lovely anime puzzle lunar" + }, + { + "appid": 3408710, + "normalized_name": "mac & jack candy bashers" + }, + { + "appid": 3408720, + "normalized_name": "kosmosis" + }, + { + "appid": 3408790, + "normalized_name": "rogue rubber" + }, + { + "appid": 3408810, + "normalized_name": "wonderlang spanish" + }, + { + "appid": 3408820, + "normalized_name": "vida" + }, + { + "appid": 3408830, + "normalized_name": "a tiny snow game" + }, + { + "appid": 3408850, + "normalized_name": "怪しいマッサージ屋" + }, + { + "appid": 3408870, + "normalized_name": "rlchess" + }, + { + "appid": 3408900, + "normalized_name": "ferulorum" + }, + { + "appid": 3408950, + "normalized_name": "automate!" + }, + { + "appid": 3409010, + "normalized_name": "brutal cube" + }, + { + "appid": 3409270, + "normalized_name": "mistress of the tower" + }, + { + "appid": 3409350, + "normalized_name": "braving chronicles" + }, + { + "appid": 3409370, + "normalized_name": "hentai senpai goth feet" + }, + { + "appid": 3409390, + "normalized_name": "zen beauty" + }, + { + "appid": 3409430, + "normalized_name": "坍缩谜室 shrink rooms" + }, + { + "appid": 3409460, + "normalized_name": "whispers in the forest" + }, + { + "appid": 3409500, + "normalized_name": "crabs" + }, + { + "appid": 3409540, + "normalized_name": "tap monster saga" + }, + { + "appid": 3409560, + "normalized_name": "path ball" + }, + { + "appid": 3409570, + "normalized_name": "bricks smasher" + }, + { + "appid": 3409620, + "normalized_name": "the path home" + }, + { + "appid": 3409630, + "normalized_name": "ninja" + }, + { + "appid": 3409660, + "normalized_name": "spinning scarecrow" + }, + { + "appid": 3409680, + "normalized_name": "coffin delivery" + }, + { + "appid": 3409720, + "normalized_name": "pogo epoch impossible 99%" + }, + { + "appid": 3409730, + "normalized_name": "魔愿 devil's wish" + }, + { + "appid": 3409760, + "normalized_name": "sloppy fields" + }, + { + "appid": 3409770, + "normalized_name": "カノンの錬金日記" + }, + { + "appid": 3409800, + "normalized_name": "stack your burger vr" + }, + { + "appid": 3409820, + "normalized_name": "hexamerge 2048" + }, + { + "appid": 3409870, + "normalized_name": "treasuretails" + }, + { + "appid": 3409890, + "normalized_name": "rustic defense" + }, + { + "appid": 3409940, + "normalized_name": "sexy memory" + }, + { + "appid": 3409980, + "normalized_name": "你的女友" + }, + { + "appid": 3409990, + "normalized_name": "gangster boss simulator" + }, + { + "appid": 3410020, + "normalized_name": "moonstone resort" + }, + { + "appid": 3410030, + "normalized_name": "the hidden library" + }, + { + "appid": 3410060, + "normalized_name": "够级大师" + }, + { + "appid": 3410080, + "normalized_name": "power of the stars" + }, + { + "appid": 3410120, + "normalized_name": "golden soul" + }, + { + "appid": 3410180, + "normalized_name": "overlooting" + }, + { + "appid": 3410240, + "normalized_name": "shadows over whispering pines" + }, + { + "appid": 3410250, + "normalized_name": "final absolution" + }, + { + "appid": 3410310, + "normalized_name": "make good choices" + }, + { + "appid": 3410340, + "normalized_name": "绝境守护 dao's cover" + }, + { + "appid": 3410370, + "normalized_name": "wiz vs. kingdom" + }, + { + "appid": 3410390, + "normalized_name": "hear tell of hauntings" + }, + { + "appid": 3410410, + "normalized_name": "apocashift" + }, + { + "appid": 3410420, + "normalized_name": "office survival simulator" + }, + { + "appid": 3410490, + "normalized_name": "oscuro blossom's glow" + }, + { + "appid": 3410530, + "normalized_name": "dawn awaits" + }, + { + "appid": 3410600, + "normalized_name": "distorted hallways" + }, + { + "appid": 3410630, + "normalized_name": "waning flowers of a world eternal the rainbow appears after flowering rain" + }, + { + "appid": 3410640, + "normalized_name": "rogue worlds" + }, + { + "appid": 3410660, + "normalized_name": "glowkeeper" + }, + { + "appid": 3410670, + "normalized_name": "fusty dungeon" + }, + { + "appid": 3410880, + "normalized_name": "train and tame" + }, + { + "appid": 3410910, + "normalized_name": "two dimension time" + }, + { + "appid": 3410980, + "normalized_name": "the fallow city" + }, + { + "appid": 3411010, + "normalized_name": "panda runner" + }, + { + "appid": 3411020, + "normalized_name": "villages & dungeons" + }, + { + "appid": 3411030, + "normalized_name": "the killer pass season 1" + }, + { + "appid": 3411050, + "normalized_name": "3d escape room detective story" + }, + { + "appid": 3411060, + "normalized_name": "broomstick exorcist" + }, + { + "appid": 3411080, + "normalized_name": "cultural exchange" + }, + { + "appid": 3411120, + "normalized_name": "everstill valley" + }, + { + "appid": 3411160, + "normalized_name": "cship" + }, + { + "appid": 3411260, + "normalized_name": "wallace & gromit in the grand getaway" + }, + { + "appid": 3411310, + "normalized_name": "迷失ロストthedark" + }, + { + "appid": 3411320, + "normalized_name": "hexroll" + }, + { + "appid": 3411360, + "normalized_name": "train jumble" + }, + { + "appid": 3411410, + "normalized_name": "samurai ghost revenge" + }, + { + "appid": 3411420, + "normalized_name": "burger joint simulator" + }, + { + "appid": 3411430, + "normalized_name": "border patrol simulator" + }, + { + "appid": 3411450, + "normalized_name": "popyalive" + }, + { + "appid": 3411490, + "normalized_name": "flavors of desires" + }, + { + "appid": 3411510, + "normalized_name": "ステラーコード" + }, + { + "appid": 3411540, + "normalized_name": "station" + }, + { + "appid": 3411560, + "normalized_name": "total loadout" + }, + { + "appid": 3411570, + "normalized_name": "clutch the drift simulation" + }, + { + "appid": 3411580, + "normalized_name": "mystery of myths heart of athens collector's" + }, + { + "appid": 3411590, + "normalized_name": "survivor of egypt the ancient curse" + }, + { + "appid": 3411600, + "normalized_name": "tropical clicker" + }, + { + "appid": 3411660, + "normalized_name": "wood and flesh a candleforth short story" + }, + { + "appid": 3411670, + "normalized_name": "dreams of amelia 🔞 💜" + }, + { + "appid": 3411700, + "normalized_name": "miner’s business simulator" + }, + { + "appid": 3411720, + "normalized_name": "元素大陆" + }, + { + "appid": 3411730, + "normalized_name": "desktop fishing" + }, + { + "appid": 3411790, + "normalized_name": "grimroll" + }, + { + "appid": 3411800, + "normalized_name": "goc streetz" + }, + { + "appid": 3411810, + "normalized_name": "cobra strike" + }, + { + "appid": 3411820, + "normalized_name": "skystead christmas" + }, + { + "appid": 3411840, + "normalized_name": "noah's vrk" + }, + { + "appid": 3411850, + "normalized_name": "bullet fury" + }, + { + "appid": 3411860, + "normalized_name": "project fractured reality" + }, + { + "appid": 3411890, + "normalized_name": "truck up catch me if you can" + }, + { + "appid": 3411900, + "normalized_name": "kero quest 64" + }, + { + "appid": 3411930, + "normalized_name": "sin cards welcome to the netherworld" + }, + { + "appid": 3411970, + "normalized_name": "the abbess garden" + }, + { + "appid": 3412000, + "normalized_name": "liminal department" + }, + { + "appid": 3412070, + "normalized_name": "echoes of the past" + }, + { + "appid": 3412110, + "normalized_name": "欠損失愛" + }, + { + "appid": 3412160, + "normalized_name": "grand casino simulator" + }, + { + "appid": 3412210, + "normalized_name": "demon’s soar" + }, + { + "appid": 3412230, + "normalized_name": "kaiju evolution survivor" + }, + { + "appid": 3412240, + "normalized_name": "monster trucking" + }, + { + "appid": 3412250, + "normalized_name": "good worker" + }, + { + "appid": 3412270, + "normalized_name": "encounter" + }, + { + "appid": 3412280, + "normalized_name": "that's nuts!" + }, + { + "appid": 3412310, + "normalized_name": "aeternum grand plaza" + }, + { + "appid": 3412330, + "normalized_name": "the skeletons are fighting" + }, + { + "appid": 3412340, + "normalized_name": "rennova the new frontier" + }, + { + "appid": 3412380, + "normalized_name": "aster symphona" + }, + { + "appid": 3412400, + "normalized_name": "pinball breeze" + }, + { + "appid": 3412490, + "normalized_name": "obstacle overdrive" + }, + { + "appid": 3412530, + "normalized_name": "metal savior black" + }, + { + "appid": 3412540, + "normalized_name": "operation zero" + }, + { + "appid": 3412560, + "normalized_name": "retro endurance 8bit" + }, + { + "appid": 3412580, + "normalized_name": "higgs boson particle puzzle" + }, + { + "appid": 3412600, + "normalized_name": "supermarket" + }, + { + "appid": 3412620, + "normalized_name": "her love like poison" + }, + { + "appid": 3412660, + "normalized_name": "downtown shuffle" + }, + { + "appid": 3412670, + "normalized_name": "toy size" + }, + { + "appid": 3412680, + "normalized_name": "sex wish a deliciously naughty porn vn" + }, + { + "appid": 3412690, + "normalized_name": "microjumper" + }, + { + "appid": 3412730, + "normalized_name": "unforgettable encounters" + }, + { + "appid": 3412760, + "normalized_name": "electrial" + }, + { + "appid": 3412790, + "normalized_name": "satisfying simulator" + }, + { + "appid": 3412800, + "normalized_name": "jawbone hollow" + }, + { + "appid": 3412850, + "normalized_name": "starling" + }, + { + "appid": 3412900, + "normalized_name": "代号三国" + }, + { + "appid": 3412910, + "normalized_name": "cyberarena" + }, + { + "appid": 3412990, + "normalized_name": "spaicerocks" + }, + { + "appid": 3413060, + "normalized_name": "the anomaly experiment" + }, + { + "appid": 3413080, + "normalized_name": "tolampis" + }, + { + "appid": 3413090, + "normalized_name": "phantomrider" + }, + { + "appid": 3413110, + "normalized_name": "fleet summoner" + }, + { + "appid": 3413130, + "normalized_name": "kawaii ryona trap dungeon" + }, + { + "appid": 3413140, + "normalized_name": "月光下的怪物 方块乱斗 monsters in the moonlight tetris" + }, + { + "appid": 3413150, + "normalized_name": "makai agito" + }, + { + "appid": 3413190, + "normalized_name": "october's curse" + }, + { + "appid": 3413210, + "normalized_name": "宇宙之网 ~ cosmolace" + }, + { + "appid": 3413230, + "normalized_name": "御剑封魔" + }, + { + "appid": 3413260, + "normalized_name": "omexyan" + }, + { + "appid": 3413270, + "normalized_name": "maya cats of istanbul" + }, + { + "appid": 3413300, + "normalized_name": "room escape open doors" + }, + { + "appid": 3413330, + "normalized_name": "soccer" + }, + { + "appid": 3413350, + "normalized_name": "fox leap" + }, + { + "appid": 3413390, + "normalized_name": "v.o.l.t" + }, + { + "appid": 3413420, + "normalized_name": "slaughtra" + }, + { + "appid": 3413440, + "normalized_name": "sadko" + }, + { + "appid": 3413470, + "normalized_name": "smol gods" + }, + { + "appid": 3413490, + "normalized_name": "the misadventures of magical girl luna" + }, + { + "appid": 3413500, + "normalized_name": "void observation" + }, + { + "appid": 3413520, + "normalized_name": "the duck amikaze strikes back" + }, + { + "appid": 3413540, + "normalized_name": "rts chess" + }, + { + "appid": 3413560, + "normalized_name": "heat incremental" + }, + { + "appid": 3413590, + "normalized_name": "raid auctus" + }, + { + "appid": 3413650, + "normalized_name": "apartment filled with cats" + }, + { + "appid": 3413660, + "normalized_name": "thalorian arena" + }, + { + "appid": 3413680, + "normalized_name": "house filled with cats" + }, + { + "appid": 3413750, + "normalized_name": "英雄守护团" + }, + { + "appid": 3413800, + "normalized_name": "hotel tales" + }, + { + "appid": 3413810, + "normalized_name": "i̇stanbul puzzle" + }, + { + "appid": 3413850, + "normalized_name": "florahive" + }, + { + "appid": 3413900, + "normalized_name": "speed dates summer" + }, + { + "appid": 3413950, + "normalized_name": "come fight me" + }, + { + "appid": 3414010, + "normalized_name": "safetyoff simulator" + }, + { + "appid": 3414020, + "normalized_name": "epic musical chairs" + }, + { + "appid": 3414040, + "normalized_name": "decorporate" + }, + { + "appid": 3414060, + "normalized_name": "incest tales sister and mom" + }, + { + "appid": 3414240, + "normalized_name": "grubby fingers" + }, + { + "appid": 3414320, + "normalized_name": "dungeon minesweeper chronicles" + }, + { + "appid": 3414350, + "normalized_name": "mana land" + }, + { + "appid": 3414360, + "normalized_name": "forest floor" + }, + { + "appid": 3414370, + "normalized_name": "satan santa" + }, + { + "appid": 3414390, + "normalized_name": "forest fury" + }, + { + "appid": 3414410, + "normalized_name": "island hook" + }, + { + "appid": 3414450, + "normalized_name": "separated by the demon queen" + }, + { + "appid": 3414460, + "normalized_name": "pizza super slice" + }, + { + "appid": 3414470, + "normalized_name": "elysium" + }, + { + "appid": 3414480, + "normalized_name": "double trip" + }, + { + "appid": 3414530, + "normalized_name": "draguna matata" + }, + { + "appid": 3414550, + "normalized_name": "fling your friends td tower defense" + }, + { + "appid": 3414580, + "normalized_name": "forbidden solitaire" + }, + { + "appid": 3414630, + "normalized_name": "turbotz testing 20xx" + }, + { + "appid": 3414690, + "normalized_name": "tales of the lost ghosts of the past" + }, + { + "appid": 3414720, + "normalized_name": "prestrafe" + }, + { + "appid": 3414730, + "normalized_name": "cube lab" + }, + { + "appid": 3414760, + "normalized_name": "monster ops 8" + }, + { + "appid": 3414770, + "normalized_name": "monster ops 9" + }, + { + "appid": 3414780, + "normalized_name": "monster ops 10" + }, + { + "appid": 3414830, + "normalized_name": "abyssal shade" + }, + { + "appid": 3414840, + "normalized_name": "cardattack gabee's roads" + }, + { + "appid": 3414870, + "normalized_name": "will o wisp" + }, + { + "appid": 3414890, + "normalized_name": "road island adventure" + }, + { + "appid": 3414900, + "normalized_name": "just move clean city messy battle" + }, + { + "appid": 3414910, + "normalized_name": "hentai tales saimin kouhai" + }, + { + "appid": 3414920, + "normalized_name": "lobsterpunk" + }, + { + "appid": 3414930, + "normalized_name": "hentai tales taboo sisters" + }, + { + "appid": 3414940, + "normalized_name": "七彩皇冠 rainbow crown" + }, + { + "appid": 3415060, + "normalized_name": "lorain" + }, + { + "appid": 3415080, + "normalized_name": "filtration" + }, + { + "appid": 3415100, + "normalized_name": "gem tales" + }, + { + "appid": 3415130, + "normalized_name": "behind the sword" + }, + { + "appid": 3415140, + "normalized_name": "はじめてのnicu探索編" + }, + { + "appid": 3415150, + "normalized_name": "robot run" + }, + { + "appid": 3415230, + "normalized_name": "witchy business" + }, + { + "appid": 3415240, + "normalized_name": "cozy organizer" + }, + { + "appid": 3415260, + "normalized_name": "divine reckoning" + }, + { + "appid": 3415280, + "normalized_name": "悟空大闹考瑞亚" + }, + { + "appid": 3415300, + "normalized_name": "supercat survivors meow or die" + }, + { + "appid": 3415310, + "normalized_name": "don't die dummy!" + }, + { + "appid": 3415340, + "normalized_name": "地狱里的牛马" + }, + { + "appid": 3415350, + "normalized_name": "shell bless the faithless" + }, + { + "appid": 3415380, + "normalized_name": "corerunner" + }, + { + "appid": 3415390, + "normalized_name": "dungeon slide" + }, + { + "appid": 3415410, + "normalized_name": "project louisiana the bounds vr" + }, + { + "appid": 3415450, + "normalized_name": "a pizza delivery" + }, + { + "appid": 3415500, + "normalized_name": "tower defense" + }, + { + "appid": 3415530, + "normalized_name": "ballardo" + }, + { + "appid": 3415570, + "normalized_name": "die for the lich" + }, + { + "appid": 3415580, + "normalized_name": "death ring second impact" + }, + { + "appid": 3415620, + "normalized_name": "sixteen undead" + }, + { + "appid": 3415680, + "normalized_name": "dating app simulator" + }, + { + "appid": 3415760, + "normalized_name": "reincarnation in another world going to rape all npcs vr" + }, + { + "appid": 3415790, + "normalized_name": "golf island" + }, + { + "appid": 3415840, + "normalized_name": "totto's magic soup" + }, + { + "appid": 3415860, + "normalized_name": "your girlfriend" + }, + { + "appid": 3415870, + "normalized_name": "grex" + }, + { + "appid": 3415910, + "normalized_name": "魔法细胞:无尽繁殖" + }, + { + "appid": 3415920, + "normalized_name": "world of dypians" + }, + { + "appid": 3416040, + "normalized_name": "vincere" + }, + { + "appid": 3416070, + "normalized_name": "ropuka's idle island" + }, + { + "appid": 3416080, + "normalized_name": "voyeur villa living with monster girls" + }, + { + "appid": 3416140, + "normalized_name": "hell and back" + }, + { + "appid": 3416150, + "normalized_name": "the vampire academy" + }, + { + "appid": 3416160, + "normalized_name": "journey north" + }, + { + "appid": 3416180, + "normalized_name": "minidinos" + }, + { + "appid": 3416230, + "normalized_name": "深夜1時の交換手" + }, + { + "appid": 3416260, + "normalized_name": "recoil" + }, + { + "appid": 3416270, + "normalized_name": "cross the boundaries" + }, + { + "appid": 3416290, + "normalized_name": "a.l.a.r.m. autistic lovely assassins rise of the matriarchy" + }, + { + "appid": 3416300, + "normalized_name": "intelektronica" + }, + { + "appid": 3416350, + "normalized_name": "anime girls mirror quest" + }, + { + "appid": 3416360, + "normalized_name": "cute patoots" + }, + { + "appid": 3416370, + "normalized_name": "hope's farm 2" + }, + { + "appid": 3416380, + "normalized_name": "17 random achievements" + }, + { + "appid": 3416450, + "normalized_name": "hell of a birthday" + }, + { + "appid": 3416510, + "normalized_name": "bridge to another world the christmas curse collector's" + }, + { + "appid": 3416530, + "normalized_name": "pawn shop simulator" + }, + { + "appid": 3416560, + "normalized_name": "scary world" + }, + { + "appid": 3416630, + "normalized_name": "debie zone 2" + }, + { + "appid": 3416650, + "normalized_name": "night painting of atti" + }, + { + "appid": 3416680, + "normalized_name": "o.w.l. one wave length" + }, + { + "appid": 3416690, + "normalized_name": "tales beyond the tomb the last vigil" + }, + { + "appid": 3416800, + "normalized_name": "cone punk" + }, + { + "appid": 3416810, + "normalized_name": "flying birds" + }, + { + "appid": 3416960, + "normalized_name": "dorm janitor's revenge" + }, + { + "appid": 3416970, + "normalized_name": "jack the puppet" + }, + { + "appid": 3417030, + "normalized_name": "first name shi last name wang" + }, + { + "appid": 3417040, + "normalized_name": "terpaling legend" + }, + { + "appid": 3417120, + "normalized_name": "lakeside bar" + }, + { + "appid": 3417130, + "normalized_name": "get out school" + }, + { + "appid": 3417180, + "normalized_name": "伏魔人偶:万象" + }, + { + "appid": 3417200, + "normalized_name": "leave" + }, + { + "appid": 3417210, + "normalized_name": "sweet vtuber shooter" + }, + { + "appid": 3417260, + "normalized_name": "a few days with valentina" + }, + { + "appid": 3417310, + "normalized_name": "pokertown cheater's paradise" + }, + { + "appid": 3417320, + "normalized_name": "luminarun" + }, + { + "appid": 3417340, + "normalized_name": "the rogue of nexus" + }, + { + "appid": 3417350, + "normalized_name": "hero hellspawn learn arithmetic" + }, + { + "appid": 3417370, + "normalized_name": "parallel past" + }, + { + "appid": 3417390, + "normalized_name": "treasure match" + }, + { + "appid": 3417410, + "normalized_name": "storebound" + }, + { + "appid": 3417470, + "normalized_name": "jurnal risa dark destiny" + }, + { + "appid": 3417490, + "normalized_name": "with eyes closed season 2" + }, + { + "appid": 3417500, + "normalized_name": "killdozer" + }, + { + "appid": 3417510, + "normalized_name": "goblintown really hard driving game" + }, + { + "appid": 3417520, + "normalized_name": "a directionless cycle" + }, + { + "appid": 3417550, + "normalized_name": "polders" + }, + { + "appid": 3417600, + "normalized_name": "vaulted valor" + }, + { + "appid": 3417630, + "normalized_name": "melt abyss" + }, + { + "appid": 3417650, + "normalized_name": "cult trials incarnation" + }, + { + "appid": 3417690, + "normalized_name": "mewseum masterpieces" + }, + { + "appid": 3417760, + "normalized_name": "angstraum" + }, + { + "appid": 3417780, + "normalized_name": "yokai tales" + }, + { + "appid": 3417820, + "normalized_name": "kill the twister" + }, + { + "appid": 3417830, + "normalized_name": "semko" + }, + { + "appid": 3417900, + "normalized_name": "mine & slash" + }, + { + "appid": 3417930, + "normalized_name": "liminal spaces outside the backrooms" + }, + { + "appid": 3417990, + "normalized_name": "battle sablemon!" + }, + { + "appid": 3418020, + "normalized_name": "master of the arena" + }, + { + "appid": 3418030, + "normalized_name": "nyxerion" + }, + { + "appid": 3418040, + "normalized_name": "heistland" + }, + { + "appid": 3418100, + "normalized_name": "faithfall" + }, + { + "appid": 3418150, + "normalized_name": "lored" + }, + { + "appid": 3418180, + "normalized_name": "scp v/h/s gifts" + }, + { + "appid": 3418190, + "normalized_name": "poltergeist @ button mash" + }, + { + "appid": 3418200, + "normalized_name": "etherland tactics" + }, + { + "appid": 3418250, + "normalized_name": "setup builder" + }, + { + "appid": 3418270, + "normalized_name": "stick ragdoll battle simulator" + }, + { + "appid": 3418300, + "normalized_name": "everfall 1999" + }, + { + "appid": 3418320, + "normalized_name": "hotel limbo" + }, + { + "appid": 3418350, + "normalized_name": "tricky hotel" + }, + { + "appid": 3418430, + "normalized_name": "10 seconds" + }, + { + "appid": 3418490, + "normalized_name": "nemesis shock" + }, + { + "appid": 3418500, + "normalized_name": "cs manager" + }, + { + "appid": 3418560, + "normalized_name": "inner truth" + }, + { + "appid": 3418610, + "normalized_name": "火起雪中寺" + }, + { + "appid": 3418620, + "normalized_name": "epochs of fire" + }, + { + "appid": 3418640, + "normalized_name": "saltwater" + }, + { + "appid": 3418670, + "normalized_name": "迷你王国战争 mini kingdom wars" + }, + { + "appid": 3418690, + "normalized_name": "消失的航班,还有她她她!lost in the secret!" + }, + { + "appid": 3418710, + "normalized_name": "慾望21點:牌桌下的暗潮胸湧" + }, + { + "appid": 3418810, + "normalized_name": "marmot fight club" + }, + { + "appid": 3418820, + "normalized_name": "platformer slider" + }, + { + "appid": 3418830, + "normalized_name": "bear jump" + }, + { + "appid": 3418840, + "normalized_name": "whack mole" + }, + { + "appid": 3418850, + "normalized_name": "project hangman" + }, + { + "appid": 3418880, + "normalized_name": "task code foolish" + }, + { + "appid": 3418910, + "normalized_name": "ginger" + }, + { + "appid": 3418920, + "normalized_name": "liminal urbanism" + }, + { + "appid": 3418930, + "normalized_name": "吞食天地之乱舞三国" + }, + { + "appid": 3418970, + "normalized_name": "y.m.c.a.背包射手的日常" + }, + { + "appid": 3418990, + "normalized_name": "神陨之地" + }, + { + "appid": 3419000, + "normalized_name": "像素梦工厂 dream arcade" + }, + { + "appid": 3419010, + "normalized_name": "grawe" + }, + { + "appid": 3419090, + "normalized_name": "はっかーさん!大団円まで連れてって!" + }, + { + "appid": 3419120, + "normalized_name": "devil's way 2" + }, + { + "appid": 3419130, + "normalized_name": "deadly quiet" + }, + { + "appid": 3419140, + "normalized_name": "stickility" + }, + { + "appid": 3419160, + "normalized_name": "helbreath usa" + }, + { + "appid": 3419210, + "normalized_name": "articrafty" + }, + { + "appid": 3419220, + "normalized_name": "dungeon warfare 3" + }, + { + "appid": 3419240, + "normalized_name": "saintess of the golden bow" + }, + { + "appid": 3419250, + "normalized_name": "mid" + }, + { + "appid": 3419290, + "normalized_name": "神弃之地" + }, + { + "appid": 3419390, + "normalized_name": "gelluloid domination" + }, + { + "appid": 3419430, + "normalized_name": "bongo cat" + }, + { + "appid": 3419440, + "normalized_name": "into the depths" + }, + { + "appid": 3419460, + "normalized_name": "我和妹妹的日常~" + }, + { + "appid": 3419510, + "normalized_name": "seep last drop" + }, + { + "appid": 3419520, + "normalized_name": "quarantine zone the last check" + }, + { + "appid": 3419530, + "normalized_name": "teedee" + }, + { + "appid": 3419540, + "normalized_name": "my waifu a pornstar" + }, + { + "appid": 3419550, + "normalized_name": "strange day" + }, + { + "appid": 3419560, + "normalized_name": "late 2 escape chapter one" + }, + { + "appid": 3419610, + "normalized_name": "draw in the tray" + }, + { + "appid": 3419620, + "normalized_name": "a handful of dust" + }, + { + "appid": 3419650, + "normalized_name": "thin line" + }, + { + "appid": 3419660, + "normalized_name": "zombie liminal fishing" + }, + { + "appid": 3419670, + "normalized_name": "unaccessible" + }, + { + "appid": 3419720, + "normalized_name": "the madness" + }, + { + "appid": 3419770, + "normalized_name": "apple man" + }, + { + "appid": 3419780, + "normalized_name": "tick hop" + }, + { + "appid": 3419790, + "normalized_name": "newton" + }, + { + "appid": 3419800, + "normalized_name": "the little pixel that could" + }, + { + "appid": 3419850, + "normalized_name": "trackastrophe!" + }, + { + "appid": 3419860, + "normalized_name": "bunny tavern" + }, + { + "appid": 3419870, + "normalized_name": "slay the demon queen" + }, + { + "appid": 3419880, + "normalized_name": "elect" + }, + { + "appid": 3419910, + "normalized_name": "light up the town" + }, + { + "appid": 3419930, + "normalized_name": "cobbled quest" + }, + { + "appid": 3419950, + "normalized_name": "a very merry nightmare" + }, + { + "appid": 3419960, + "normalized_name": "dog gone cats tail of 300 days (pawlike edition)" + }, + { + "appid": 3420000, + "normalized_name": "impartial" + }, + { + "appid": 3420020, + "normalized_name": "abyss born" + }, + { + "appid": 3420060, + "normalized_name": "extremely fun" + }, + { + "appid": 3420070, + "normalized_name": "cozy littlequarium" + }, + { + "appid": 3420100, + "normalized_name": "bazar simulator the wan story" + }, + { + "appid": 3420140, + "normalized_name": "hentai emiko" + }, + { + "appid": 3420180, + "normalized_name": "hentai girls stories" + }, + { + "appid": 3420230, + "normalized_name": "steam & stones" + }, + { + "appid": 3420280, + "normalized_name": "idle research 2" + }, + { + "appid": 3420290, + "normalized_name": "look down" + }, + { + "appid": 3420300, + "normalized_name": "the closing shift" + }, + { + "appid": 3420340, + "normalized_name": "deep space facility outcast" + }, + { + "appid": 3420410, + "normalized_name": "进化岛:jinhuadao" + }, + { + "appid": 3420490, + "normalized_name": "迫降landing" + }, + { + "appid": 3420510, + "normalized_name": "hentai step milf" + }, + { + "appid": 3420590, + "normalized_name": "bob don't sleep!" + }, + { + "appid": 3420630, + "normalized_name": "炼丹与电焊 alchemy and weldcraft" + }, + { + "appid": 3420650, + "normalized_name": "food escape" + }, + { + "appid": 3420680, + "normalized_name": "the 13th floor" + }, + { + "appid": 3420690, + "normalized_name": "bloodkill goreblast overkill" + }, + { + "appid": 3420700, + "normalized_name": "pioneers of the unknown" + }, + { + "appid": 3420710, + "normalized_name": "f.o.r.s" + }, + { + "appid": 3420770, + "normalized_name": "dark dungeon feminized" + }, + { + "appid": 3420790, + "normalized_name": "taram baba" + }, + { + "appid": 3420800, + "normalized_name": "room 54 horde survival" + }, + { + "appid": 3420820, + "normalized_name": "chaos ascension" + }, + { + "appid": 3420840, + "normalized_name": "the outer side" + }, + { + "appid": 3420860, + "normalized_name": "梅花千日谈" + }, + { + "appid": 3420870, + "normalized_name": "cloverskar" + }, + { + "appid": 3420910, + "normalized_name": "keyboard warrior" + }, + { + "appid": 3420920, + "normalized_name": "trade rivals goblin age" + }, + { + "appid": 3420940, + "normalized_name": "cycle sever" + }, + { + "appid": 3420960, + "normalized_name": "3d raid river" + }, + { + "appid": 3420980, + "normalized_name": "you have a delivery" + }, + { + "appid": 3421000, + "normalized_name": "the right to bear arms" + }, + { + "appid": 3421010, + "normalized_name": "transylvania drift" + }, + { + "appid": 3421050, + "normalized_name": "keepers of the keep" + }, + { + "appid": 3421070, + "normalized_name": "sayaka's addiction" + }, + { + "appid": 3421080, + "normalized_name": "island life with mayalala" + }, + { + "appid": 3421090, + "normalized_name": "driftx" + }, + { + "appid": 3421100, + "normalized_name": "war and politics" + }, + { + "appid": 3421110, + "normalized_name": "forlorn society" + }, + { + "appid": 3421130, + "normalized_name": "those who crawl vr" + }, + { + "appid": 3421180, + "normalized_name": "wildworlds zyxaranth's domain" + }, + { + "appid": 3421220, + "normalized_name": "rrrrrabbits" + }, + { + "appid": 3421280, + "normalized_name": "pete's world" + }, + { + "appid": 3421300, + "normalized_name": "lyca" + }, + { + "appid": 3421310, + "normalized_name": "roller heist" + }, + { + "appid": 3421320, + "normalized_name": "leadlight" + }, + { + "appid": 3421330, + "normalized_name": "there's no cake" + }, + { + "appid": 3421340, + "normalized_name": "there's no dragons" + }, + { + "appid": 3421410, + "normalized_name": "spiritbound the goddess's quest" + }, + { + "appid": 3421420, + "normalized_name": "逃离梦魇(escape from the nightmare)" + }, + { + "appid": 3421430, + "normalized_name": "gutbuster" + }, + { + "appid": 3421480, + "normalized_name": "lizardsurvivalduo" + }, + { + "appid": 3421500, + "normalized_name": "江北皮革厂" + }, + { + "appid": 3421510, + "normalized_name": "cataclysm bright future ahead" + }, + { + "appid": 3421520, + "normalized_name": "the lists vr" + }, + { + "appid": 3421560, + "normalized_name": "逃离感化院 the reformatory" + }, + { + "appid": 3421590, + "normalized_name": "bootsies" + }, + { + "appid": 3421620, + "normalized_name": "stack erz" + }, + { + "appid": 3421670, + "normalized_name": "babel defense" + }, + { + "appid": 3421690, + "normalized_name": "deforb" + }, + { + "appid": 3421710, + "normalized_name": "arcade shop simulator" + }, + { + "appid": 3421740, + "normalized_name": "garden ink" + }, + { + "appid": 3421780, + "normalized_name": "lucifer vs. furries" + }, + { + "appid": 3421800, + "normalized_name": "swingin' beats" + }, + { + "appid": 3421810, + "normalized_name": "manalia notes a memory of innocence" + }, + { + "appid": 3421830, + "normalized_name": "カンフービート" + }, + { + "appid": 3421850, + "normalized_name": "circuit maze" + }, + { + "appid": 3421860, + "normalized_name": "no.8 high school" + }, + { + "appid": 3421920, + "normalized_name": "riftborn" + }, + { + "appid": 3421930, + "normalized_name": "journey of the lone star" + }, + { + "appid": 3421940, + "normalized_name": "baspetball" + }, + { + "appid": 3421950, + "normalized_name": "square 2048" + }, + { + "appid": 3421960, + "normalized_name": "mule of graves بغلة القبور" + }, + { + "appid": 3421970, + "normalized_name": "汽车射击" + }, + { + "appid": 3422000, + "normalized_name": "ward off evil" + }, + { + "appid": 3422060, + "normalized_name": "investour" + }, + { + "appid": 3422090, + "normalized_name": "between" + }, + { + "appid": 3422120, + "normalized_name": "инцелтред" + }, + { + "appid": 3422130, + "normalized_name": "the last corpse forge survivor" + }, + { + "appid": 3422140, + "normalized_name": "backyard boxing" + }, + { + "appid": 3422160, + "normalized_name": "frankie's funclub" + }, + { + "appid": 3422170, + "normalized_name": "rapid impact" + }, + { + "appid": 3422180, + "normalized_name": "sokobos 2" + }, + { + "appid": 3422200, + "normalized_name": "upward bound" + }, + { + "appid": 3422210, + "normalized_name": "santa's shadow" + }, + { + "appid": 3422220, + "normalized_name": "jennifer's lustful journey" + }, + { + "appid": 3422260, + "normalized_name": "mr dookie adventures" + }, + { + "appid": 3422270, + "normalized_name": "terra firma 2" + }, + { + "appid": 3422290, + "normalized_name": "the way we all go" + }, + { + "appid": 3422320, + "normalized_name": "saika" + }, + { + "appid": 3422330, + "normalized_name": "cat dog go adventure" + }, + { + "appid": 3422410, + "normalized_name": "chop sous y chef" + }, + { + "appid": 3422420, + "normalized_name": "约拍女神 · 制服狩猎" + }, + { + "appid": 3422450, + "normalized_name": "stray of lost cat" + }, + { + "appid": 3422460, + "normalized_name": "transpawt train" + }, + { + "appid": 3422490, + "normalized_name": "team dehdehbon" + }, + { + "appid": 3422580, + "normalized_name": "森林粉碎者" + }, + { + "appid": 3422590, + "normalized_name": "琥珀末日" + }, + { + "appid": 3422620, + "normalized_name": "chicken maze" + }, + { + "appid": 3422630, + "normalized_name": "snake eat chicken" + }, + { + "appid": 3422660, + "normalized_name": "flowerbots" + }, + { + "appid": 3422680, + "normalized_name": "assassin's shadows" + }, + { + "appid": 3422700, + "normalized_name": "cribbish" + }, + { + "appid": 3422710, + "normalized_name": "dark pray" + }, + { + "appid": 3422740, + "normalized_name": "memento mori" + }, + { + "appid": 3422770, + "normalized_name": "fearful obscured grounds" + }, + { + "appid": 3422800, + "normalized_name": "idle airport ceo" + }, + { + "appid": 3422820, + "normalized_name": "你猫来了" + }, + { + "appid": 3422830, + "normalized_name": "ball drop" + }, + { + "appid": 3422840, + "normalized_name": "nightmares awake" + }, + { + "appid": 3422860, + "normalized_name": "mage at stake" + }, + { + "appid": 3422900, + "normalized_name": "idle town billionaire" + }, + { + "appid": 3422910, + "normalized_name": "赤焰号角" + }, + { + "appid": 3422930, + "normalized_name": "whisper of anima" + }, + { + "appid": 3422940, + "normalized_name": "非常迷 variable puzzle" + }, + { + "appid": 3422950, + "normalized_name": "beasts & rogues" + }, + { + "appid": 3423000, + "normalized_name": "up & over" + }, + { + "appid": 3423010, + "normalized_name": "xoru the nightmare wars" + }, + { + "appid": 3423030, + "normalized_name": "aera flying heroes" + }, + { + "appid": 3423050, + "normalized_name": "an alien girl fell on my head and now i must save our world by demonstrating great and beautiful love" + }, + { + "appid": 3423060, + "normalized_name": "chiggy pigg & the great drought" + }, + { + "appid": 3423180, + "normalized_name": "grassrootsfootball" + }, + { + "appid": 3423200, + "normalized_name": "群星劫 万界流火" + }, + { + "appid": 3423210, + "normalized_name": "wivroll the attempt" + }, + { + "appid": 3423230, + "normalized_name": "addicdead" + }, + { + "appid": 3423240, + "normalized_name": "crimen exceptum" + }, + { + "appid": 3423270, + "normalized_name": "who am i エラーコード:九十九" + }, + { + "appid": 3423360, + "normalized_name": "herringen" + }, + { + "appid": 3423380, + "normalized_name": "雀球ぽん" + }, + { + "appid": 3423400, + "normalized_name": "wet girls" + }, + { + "appid": 3423410, + "normalized_name": "sexy christmas" + }, + { + "appid": 3423430, + "normalized_name": "街头烤肠王" + }, + { + "appid": 3423440, + "normalized_name": "slime knight" + }, + { + "appid": 3423500, + "normalized_name": "skills and slimes" + }, + { + "appid": 3423550, + "normalized_name": "comickingdom" + }, + { + "appid": 3423620, + "normalized_name": "accubow vr" + }, + { + "appid": 3423650, + "normalized_name": "roguebots arena" + }, + { + "appid": 3423660, + "normalized_name": "backrooms exploration" + }, + { + "appid": 3423700, + "normalized_name": "pl4no b" + }, + { + "appid": 3423720, + "normalized_name": "ruinscape" + }, + { + "appid": 3423800, + "normalized_name": "idle kingdom" + }, + { + "appid": 3423820, + "normalized_name": "life of a cat" + }, + { + "appid": 3423840, + "normalized_name": "華札の虎" + }, + { + "appid": 3423860, + "normalized_name": "covid 29" + }, + { + "appid": 3423990, + "normalized_name": "frozen ship" + }, + { + "appid": 3424000, + "normalized_name": "horrors glade" + }, + { + "appid": 3424010, + "normalized_name": "the night of the exorcism" + }, + { + "appid": 3424020, + "normalized_name": "letterlike" + }, + { + "appid": 3424030, + "normalized_name": "the little puzzle house" + }, + { + "appid": 3424040, + "normalized_name": "synthetic dreams 18+" + }, + { + "appid": 3424090, + "normalized_name": "justd" + }, + { + "appid": 3424110, + "normalized_name": "project1st54" + }, + { + "appid": 3424130, + "normalized_name": "why not both?" + }, + { + "appid": 3424190, + "normalized_name": "the golden tile" + }, + { + "appid": 3424220, + "normalized_name": "one & done" + }, + { + "appid": 3424230, + "normalized_name": "shadow spell saga the winds of fate" + }, + { + "appid": 3424260, + "normalized_name": "mirrorandum" + }, + { + "appid": 3424270, + "normalized_name": "the spirit engine dx" + }, + { + "appid": 3424370, + "normalized_name": "slime climb" + }, + { + "appid": 3424400, + "normalized_name": "广州扑克 guangzhoupoker" + }, + { + "appid": 3424430, + "normalized_name": "bean busy" + }, + { + "appid": 3424470, + "normalized_name": "今日はヴァレンティヌスが処刑された日だよっ!" + }, + { + "appid": 3424500, + "normalized_name": "fix mas" + }, + { + "appid": 3424540, + "normalized_name": "no way out 13" + }, + { + "appid": 3424550, + "normalized_name": "merp in merpworld" + }, + { + "appid": 3424580, + "normalized_name": "最遥远的距离" + }, + { + "appid": 3424600, + "normalized_name": "三国群英传 争霸" + }, + { + "appid": 3424610, + "normalized_name": "fantasy idle dungeon" + }, + { + "appid": 3424620, + "normalized_name": "that time i got trapped in an office dungeon" + }, + { + "appid": 3424670, + "normalized_name": "ルミネックス カルテット" + }, + { + "appid": 3424690, + "normalized_name": "spirit valor" + }, + { + "appid": 3424740, + "normalized_name": "firework war" + }, + { + "appid": 3424760, + "normalized_name": "gun x" + }, + { + "appid": 3424780, + "normalized_name": "实至名归tca2024(yes or no?)" + }, + { + "appid": 3424820, + "normalized_name": "frisson dt" + }, + { + "appid": 3424830, + "normalized_name": "backrooms multi verses" + }, + { + "appid": 3424870, + "normalized_name": "the throng" + }, + { + "appid": 3424900, + "normalized_name": "lust & magic ✨" + }, + { + "appid": 3424910, + "normalized_name": "mushroom hunter simulator" + }, + { + "appid": 3424920, + "normalized_name": "暗夜游侠" + }, + { + "appid": 3424930, + "normalized_name": "conjured through death" + }, + { + "appid": 3424940, + "normalized_name": "prize denied" + }, + { + "appid": 3424990, + "normalized_name": "together in forgotten lands" + }, + { + "appid": 3425060, + "normalized_name": "fantasy quest realm survival" + }, + { + "appid": 3425070, + "normalized_name": "poultry party" + }, + { + "appid": 3425100, + "normalized_name": "the last issue chasing angels" + }, + { + "appid": 3425120, + "normalized_name": "drop 4" + }, + { + "appid": 3425150, + "normalized_name": "liliput defender" + }, + { + "appid": 3425170, + "normalized_name": "protest sim" + }, + { + "appid": 3425190, + "normalized_name": "rc car simulator" + }, + { + "appid": 3425200, + "normalized_name": "black flag rising" + }, + { + "appid": 3425210, + "normalized_name": "bog busters" + }, + { + "appid": 3425240, + "normalized_name": "aerostrike" + }, + { + "appid": 3425280, + "normalized_name": "car grind" + }, + { + "appid": 3425290, + "normalized_name": "hentai puzzle naughty nurses" + }, + { + "appid": 3425310, + "normalized_name": "rocket hit" + }, + { + "appid": 3425320, + "normalized_name": "pako 4" + }, + { + "appid": 3425330, + "normalized_name": "who infected?" + }, + { + "appid": 3425350, + "normalized_name": "모두를 위한 정통 rpg" + }, + { + "appid": 3425390, + "normalized_name": "death and ladders" + }, + { + "appid": 3425430, + "normalized_name": "cyberverse" + }, + { + "appid": 3425440, + "normalized_name": "the mirrion" + }, + { + "appid": 3425450, + "normalized_name": "hotwives on holiday" + }, + { + "appid": 3425460, + "normalized_name": "console shop simulator" + }, + { + "appid": 3425530, + "normalized_name": "amarillo's vehicular manslaughter" + }, + { + "appid": 3425550, + "normalized_name": "guncaster" + }, + { + "appid": 3425570, + "normalized_name": "overspelled" + }, + { + "appid": 3425580, + "normalized_name": "exterminatus a grim odyssey" + }, + { + "appid": 3425600, + "normalized_name": "goblins with guns" + }, + { + "appid": 3425700, + "normalized_name": "little robot" + }, + { + "appid": 3425720, + "normalized_name": "슈와[ʃwɑ ]" + }, + { + "appid": 3425800, + "normalized_name": "capture catcoffee" + }, + { + "appid": 3425850, + "normalized_name": "demon town maker" + }, + { + "appid": 3425870, + "normalized_name": "kiity2" + }, + { + "appid": 3425880, + "normalized_name": "the noble quran" + }, + { + "appid": 3425890, + "normalized_name": "メルクストーリア 癒術士と心の旋律" + }, + { + "appid": 3425970, + "normalized_name": "detective club missing in the fog collector's" + }, + { + "appid": 3425990, + "normalized_name": "realm keep" + }, + { + "appid": 3426000, + "normalized_name": "capri care" + }, + { + "appid": 3426020, + "normalized_name": "ぷにゃん" + }, + { + "appid": 3426030, + "normalized_name": "g modeアーカイブス+ 探偵・癸生川凌介事件譚 vol.16「淡雪は緋の哀しみ」" + }, + { + "appid": 3426090, + "normalized_name": "cats around us black cat" + }, + { + "appid": 3426110, + "normalized_name": "world traveler" + }, + { + "appid": 3426130, + "normalized_name": "the paradixion restroom" + }, + { + "appid": 3426150, + "normalized_name": "i have no change" + }, + { + "appid": 3426160, + "normalized_name": "card memory" + }, + { + "appid": 3426200, + "normalized_name": "animal planet" + }, + { + "appid": 3426210, + "normalized_name": "hottie sweetie" + }, + { + "appid": 3426260, + "normalized_name": "sex & coffee ☕🤎" + }, + { + "appid": 3426300, + "normalized_name": "i am here i won't disappear. i am here i won't..." + }, + { + "appid": 3426330, + "normalized_name": "investigating alien cats 调查外星猫" + }, + { + "appid": 3426400, + "normalized_name": "celestial odyssey" + }, + { + "appid": 3426410, + "normalized_name": "我就是建 i just build" + }, + { + "appid": 3426420, + "normalized_name": "lust curse 🔞" + }, + { + "appid": 3426430, + "normalized_name": "love hotel simulator 🏩" + }, + { + "appid": 3426440, + "normalized_name": "love shop simulator 💕🛒" + }, + { + "appid": 3426450, + "normalized_name": "lust company 👾" + }, + { + "appid": 3426460, + "normalized_name": "greyvale rivalry season 1" + }, + { + "appid": 3426490, + "normalized_name": "end transmission?" + }, + { + "appid": 3426500, + "normalized_name": "strong crab" + }, + { + "appid": 3426540, + "normalized_name": "get hired" + }, + { + "appid": 3426550, + "normalized_name": "spirits' forest" + }, + { + "appid": 3426610, + "normalized_name": "nightmare of silkencore train hell" + }, + { + "appid": 3426640, + "normalized_name": "snake" + }, + { + "appid": 3426660, + "normalized_name": "sprunki rise of horror" + }, + { + "appid": 3426680, + "normalized_name": "iron skys" + }, + { + "appid": 3426730, + "normalized_name": "cosmic arcade tycoon" + }, + { + "appid": 3426770, + "normalized_name": "nexo" + }, + { + "appid": 3426780, + "normalized_name": "{ v e l o c i t y }" + }, + { + "appid": 3426790, + "normalized_name": "捕鱼金蟾去哪了" + }, + { + "appid": 3426850, + "normalized_name": "chronicles of veldoria" + }, + { + "appid": 3426880, + "normalized_name": "wings of the kite in sky" + }, + { + "appid": 3426920, + "normalized_name": "twisted gallery 异馆" + }, + { + "appid": 3426930, + "normalized_name": "adult education" + }, + { + "appid": 3426960, + "normalized_name": "doors closed" + }, + { + "appid": 3427010, + "normalized_name": "metal strike" + }, + { + "appid": 3427020, + "normalized_name": "kumori village" + }, + { + "appid": 3427060, + "normalized_name": "tank battle world war" + }, + { + "appid": 3427090, + "normalized_name": "refence" + }, + { + "appid": 3427110, + "normalized_name": "a fascinating story 2" + }, + { + "appid": 3427130, + "normalized_name": "the ten" + }, + { + "appid": 3427140, + "normalized_name": "aquilon lust sex arcana" + }, + { + "appid": 3427150, + "normalized_name": "aquilon sex chronicles 📖🔥" + }, + { + "appid": 3427170, + "normalized_name": "マスターオブモンスターズssb" + }, + { + "appid": 3427220, + "normalized_name": "チェッタ the machinery girl" + }, + { + "appid": 3427260, + "normalized_name": "get out of the woods" + }, + { + "appid": 3427300, + "normalized_name": "the tales of wonderlend" + }, + { + "appid": 3427350, + "normalized_name": "bad trip" + }, + { + "appid": 3427360, + "normalized_name": "my mates" + }, + { + "appid": 3427370, + "normalized_name": "a passing in the night" + }, + { + "appid": 3427390, + "normalized_name": "sister's curriculum after story" + }, + { + "appid": 3427410, + "normalized_name": "wet city" + }, + { + "appid": 3427420, + "normalized_name": "bdsm clicker" + }, + { + "appid": 3427460, + "normalized_name": "vr basketball training challenge" + }, + { + "appid": 3427470, + "normalized_name": "gem exploration" + }, + { + "appid": 3427490, + "normalized_name": "azrael herald of death" + }, + { + "appid": 3427510, + "normalized_name": "incest tales webcam daughter" + }, + { + "appid": 3427540, + "normalized_name": "foglit" + }, + { + "appid": 3427550, + "normalized_name": "dating app simulator" + }, + { + "appid": 3427560, + "normalized_name": "box hard" + }, + { + "appid": 3427570, + "normalized_name": "平安" + }, + { + "appid": 3427580, + "normalized_name": "krampus's escape" + }, + { + "appid": 3427590, + "normalized_name": "查寝" + }, + { + "appid": 3427610, + "normalized_name": "tragedy at ashville lane" + }, + { + "appid": 3427620, + "normalized_name": "locked in temptation" + }, + { + "appid": 3427650, + "normalized_name": "mandragora seeker in the creep zone" + }, + { + "appid": 3427660, + "normalized_name": "waifusitter 🔞 furry collection" + }, + { + "appid": 3427700, + "normalized_name": "farmyard pals jigsaw puzzles" + }, + { + "appid": 3427710, + "normalized_name": "pinchi stingi" + }, + { + "appid": 3427730, + "normalized_name": "你的爱人" + }, + { + "appid": 3427740, + "normalized_name": "sounds of her love 2" + }, + { + "appid": 3427760, + "normalized_name": "modularity" + }, + { + "appid": 3427810, + "normalized_name": "mindbringers" + }, + { + "appid": 3427820, + "normalized_name": "lemonade apocalypse the great filter" + }, + { + "appid": 3427860, + "normalized_name": "fast food manager 2" + }, + { + "appid": 3427890, + "normalized_name": "the dancer's lullaby" + }, + { + "appid": 3427940, + "normalized_name": "automatic kingdom" + }, + { + "appid": 3427970, + "normalized_name": "a session with dr. liebnitz" + }, + { + "appid": 3427990, + "normalized_name": "spell magic" + }, + { + "appid": 3428000, + "normalized_name": "carnival of souls" + }, + { + "appid": 3428010, + "normalized_name": "ray cheng trivia editor" + }, + { + "appid": 3428050, + "normalized_name": "感染½ infect½" + }, + { + "appid": 3428060, + "normalized_name": "sealand 2124" + }, + { + "appid": 3428080, + "normalized_name": "jaleco sports bases loaded" + }, + { + "appid": 3428100, + "normalized_name": "すてきなプリンワールドdx" + }, + { + "appid": 3428120, + "normalized_name": "qimen tower defense" + }, + { + "appid": 3428180, + "normalized_name": "メアリウム" + }, + { + "appid": 3428240, + "normalized_name": "kolotun" + }, + { + "appid": 3428260, + "normalized_name": "nexus overdrive" + }, + { + "appid": 3428270, + "normalized_name": "prop haunters" + }, + { + "appid": 3428300, + "normalized_name": "フィアリウム" + }, + { + "appid": 3428310, + "normalized_name": "magic regrowth" + }, + { + "appid": 3428330, + "normalized_name": "touhou volleyball danmaku" + }, + { + "appid": 3428350, + "normalized_name": "airport police simulator" + }, + { + "appid": 3428410, + "normalized_name": "langit lupa office series" + }, + { + "appid": 3428430, + "normalized_name": "deep sea heroes" + }, + { + "appid": 3428480, + "normalized_name": "expedition shadow world" + }, + { + "appid": 3428500, + "normalized_name": "help rococo" + }, + { + "appid": 3428510, + "normalized_name": "totem clash" + }, + { + "appid": 3428530, + "normalized_name": "american milf" + }, + { + "appid": 3428550, + "normalized_name": "sweet racing girl" + }, + { + "appid": 3428570, + "normalized_name": "teller's duty" + }, + { + "appid": 3428620, + "normalized_name": "max manos" + }, + { + "appid": 3428640, + "normalized_name": "whitty bird" + }, + { + "appid": 3428660, + "normalized_name": "hit monkey" + }, + { + "appid": 3428700, + "normalized_name": "owl shooter" + }, + { + "appid": 3428730, + "normalized_name": "firefighter frankie 🚒" + }, + { + "appid": 3428750, + "normalized_name": "pookie's lingerie shop" + }, + { + "appid": 3428790, + "normalized_name": "wonderlang german" + }, + { + "appid": 3428800, + "normalized_name": "bibbidiba fan game" + }, + { + "appid": 3428830, + "normalized_name": "アンシェリアントリガー" + }, + { + "appid": 3428840, + "normalized_name": "countryballs rise of europe" + }, + { + "appid": 3428850, + "normalized_name": "dump of the dead x" + }, + { + "appid": 3428860, + "normalized_name": "renounced" + }, + { + "appid": 3428890, + "normalized_name": "waste sorting" + }, + { + "appid": 3428910, + "normalized_name": "separated by nightmares where duty dies" + }, + { + "appid": 3428920, + "normalized_name": "boat racer" + }, + { + "appid": 3428930, + "normalized_name": "slime attack survivor" + }, + { + "appid": 3428940, + "normalized_name": "pest control simulator" + }, + { + "appid": 3428960, + "normalized_name": "desktop dynasties 3" + }, + { + "appid": 3428990, + "normalized_name": "apple orchard escape" + }, + { + "appid": 3429020, + "normalized_name": "a regular pinball game" + }, + { + "appid": 3429040, + "normalized_name": "celeste & luna hentai puzzle 18+" + }, + { + "appid": 3429050, + "normalized_name": "stellar shapers" + }, + { + "appid": 3429120, + "normalized_name": "우리 아빠는 용사랍니다" + }, + { + "appid": 3429150, + "normalized_name": "floodlight" + }, + { + "appid": 3429160, + "normalized_name": "action clicker" + }, + { + "appid": 3429170, + "normalized_name": "공고소녀(gong go girl)" + }, + { + "appid": 3429210, + "normalized_name": "deep space bellhop" + }, + { + "appid": 3429250, + "normalized_name": "uagi saba 2" + }, + { + "appid": 3429260, + "normalized_name": "food croupier" + }, + { + "appid": 3429270, + "normalized_name": "revenge of the firstborn" + }, + { + "appid": 3429300, + "normalized_name": "strife lords" + }, + { + "appid": 3429340, + "normalized_name": "bittersweet blossoms" + }, + { + "appid": 3429380, + "normalized_name": "kindred ills" + }, + { + "appid": 3429400, + "normalized_name": "code quest" + }, + { + "appid": 3429410, + "normalized_name": "essence hunters" + }, + { + "appid": 3429460, + "normalized_name": "sense cook" + }, + { + "appid": 3429480, + "normalized_name": "road toads" + }, + { + "appid": 3429500, + "normalized_name": "popoposan" + }, + { + "appid": 3429570, + "normalized_name": "dead sea director's cut remaster" + }, + { + "appid": 3429650, + "normalized_name": "world of elemental (穿越外星当大拿)" + }, + { + "appid": 3429680, + "normalized_name": "1899 secrets of the maze" + }, + { + "appid": 3429710, + "normalized_name": "惡作劇" + }, + { + "appid": 3429720, + "normalized_name": "any castle" + }, + { + "appid": 3429730, + "normalized_name": "briscas the game" + }, + { + "appid": 3429740, + "normalized_name": "灵童" + }, + { + "appid": 3429770, + "normalized_name": "dragon knight" + }, + { + "appid": 3429830, + "normalized_name": "pointdexter" + }, + { + "appid": 3429850, + "normalized_name": "winter heat" + }, + { + "appid": 3429860, + "normalized_name": "undead desert massacre" + }, + { + "appid": 3429890, + "normalized_name": "devil of the plague" + }, + { + "appid": 3429910, + "normalized_name": "little adventurer treasure hunt" + }, + { + "appid": 3429940, + "normalized_name": "emojis battle" + }, + { + "appid": 3429970, + "normalized_name": "数字革命" + }, + { + "appid": 3429980, + "normalized_name": "类地星球" + }, + { + "appid": 3429990, + "normalized_name": "running through backrooms" + }, + { + "appid": 3430010, + "normalized_name": "the variant void" + }, + { + "appid": 3430030, + "normalized_name": "shovelware" + }, + { + "appid": 3430040, + "normalized_name": "update monster" + }, + { + "appid": 3430060, + "normalized_name": "串 zen&" + }, + { + "appid": 3430070, + "normalized_name": "tank core" + }, + { + "appid": 3430090, + "normalized_name": "里山のおと 春さんぽ" + }, + { + "appid": 3430140, + "normalized_name": "astro defender" + }, + { + "appid": 3430160, + "normalized_name": "fungi crossing" + }, + { + "appid": 3430190, + "normalized_name": "cocktail girl service" + }, + { + "appid": 3430260, + "normalized_name": "wrath aeon of ruin vr" + }, + { + "appid": 3430280, + "normalized_name": "seaward" + }, + { + "appid": 3430290, + "normalized_name": "hustler simulator" + }, + { + "appid": 3430300, + "normalized_name": "tayutama kiss on my deity" + }, + { + "appid": 3430330, + "normalized_name": "body sushi" + }, + { + "appid": 3430340, + "normalized_name": "dice a million" + }, + { + "appid": 3430380, + "normalized_name": "platonic solids" + }, + { + "appid": 3430450, + "normalized_name": "zombie graveyard simulator" + }, + { + "appid": 3430460, + "normalized_name": "blacklaceassassins" + }, + { + "appid": 3430470, + "normalized_name": "platina lab" + }, + { + "appid": 3430480, + "normalized_name": "gaunts gambit | multiplayer fps" + }, + { + "appid": 3430520, + "normalized_name": "exo exploits" + }, + { + "appid": 3430550, + "normalized_name": "stickman adventures" + }, + { + "appid": 3430570, + "normalized_name": "我要苟到100岁 survive till 100 years old" + }, + { + "appid": 3430600, + "normalized_name": "fecal freighter" + }, + { + "appid": 3430620, + "normalized_name": "from hel to asgard" + }, + { + "appid": 3430630, + "normalized_name": "finger party" + }, + { + "appid": 3430720, + "normalized_name": "third shift" + }, + { + "appid": 3430730, + "normalized_name": "fusion mage" + }, + { + "appid": 3430780, + "normalized_name": "escape the tower" + }, + { + "appid": 3430790, + "normalized_name": "steeplejack" + }, + { + "appid": 3430840, + "normalized_name": "slap street" + }, + { + "appid": 3430880, + "normalized_name": "chinese chess xiangqi" + }, + { + "appid": 3430910, + "normalized_name": "samurai conqueror" + }, + { + "appid": 3430920, + "normalized_name": "roadside egg stand" + }, + { + "appid": 3430960, + "normalized_name": "the lost desert aka cube game 9x" + }, + { + "appid": 3431020, + "normalized_name": "office rivals" + }, + { + "appid": 3431030, + "normalized_name": "slime climb" + }, + { + "appid": 3431040, + "normalized_name": "that's not my neighbor" + }, + { + "appid": 3431050, + "normalized_name": "pongpong" + }, + { + "appid": 3431060, + "normalized_name": "misty abyss" + }, + { + "appid": 3431120, + "normalized_name": "somnus" + }, + { + "appid": 3431170, + "normalized_name": "duel & trial" + }, + { + "appid": 3431200, + "normalized_name": "garrulous" + }, + { + "appid": 3431210, + "normalized_name": "juxtaposition" + }, + { + "appid": 3431220, + "normalized_name": "lastbane" + }, + { + "appid": 3431280, + "normalized_name": "astral blaze" + }, + { + "appid": 3431300, + "normalized_name": "slow roads" + }, + { + "appid": 3431340, + "normalized_name": "call of ponchy mahjong warfare" + }, + { + "appid": 3431380, + "normalized_name": "dark genesis" + }, + { + "appid": 3431410, + "normalized_name": "relaxing fishing" + }, + { + "appid": 3431480, + "normalized_name": "不朽之心" + }, + { + "appid": 3431500, + "normalized_name": "sphere up" + }, + { + "appid": 3431530, + "normalized_name": "placeholder name" + }, + { + "appid": 3431600, + "normalized_name": "supreme heroes" + }, + { + "appid": 3431610, + "normalized_name": "the froglings" + }, + { + "appid": 3431620, + "normalized_name": "kowloon 666" + }, + { + "appid": 3431630, + "normalized_name": "ahapika – heroic agency" + }, + { + "appid": 3431680, + "normalized_name": "car factory empire" + }, + { + "appid": 3431700, + "normalized_name": "apes at sea" + }, + { + "appid": 3431720, + "normalized_name": "bookey manor" + }, + { + "appid": 3431750, + "normalized_name": "office lady vore game" + }, + { + "appid": 3431760, + "normalized_name": "desire's burgers" + }, + { + "appid": 3431770, + "normalized_name": "lords of the void" + }, + { + "appid": 3431800, + "normalized_name": "joi lab pc" + }, + { + "appid": 3431830, + "normalized_name": "[southern fjords] veil of pestilence" + }, + { + "appid": 3431910, + "normalized_name": "sympathy for the wicked hindsight" + }, + { + "appid": 3431930, + "normalized_name": "past face" + }, + { + "appid": 3431950, + "normalized_name": "planetary siege" + }, + { + "appid": 3431980, + "normalized_name": "mouldog" + }, + { + "appid": 3432000, + "normalized_name": "memory of lust" + }, + { + "appid": 3432050, + "normalized_name": "hurry up! bar" + }, + { + "appid": 3432070, + "normalized_name": "nebula cleanup crew" + }, + { + "appid": 3432100, + "normalized_name": "stellar cardworks" + }, + { + "appid": 3432110, + "normalized_name": "江湖黄老六 lord of mythical beast" + }, + { + "appid": 3432130, + "normalized_name": "toy fight" + }, + { + "appid": 3432140, + "normalized_name": "crazlipse" + }, + { + "appid": 3432160, + "normalized_name": "囍" + }, + { + "appid": 3432200, + "normalized_name": "top check" + }, + { + "appid": 3432210, + "normalized_name": "吃脚" + }, + { + "appid": 3432220, + "normalized_name": "hell gangs" + }, + { + "appid": 3432230, + "normalized_name": "numinous" + }, + { + "appid": 3432260, + "normalized_name": "humility" + }, + { + "appid": 3432270, + "normalized_name": "monmusu girls autobattler" + }, + { + "appid": 3432290, + "normalized_name": "survive the labyrinth" + }, + { + "appid": 3432310, + "normalized_name": "slide to solve" + }, + { + "appid": 3432320, + "normalized_name": "ferro bellator" + }, + { + "appid": 3432390, + "normalized_name": "haunted dorm" + }, + { + "appid": 3432400, + "normalized_name": "洪荒道藏录" + }, + { + "appid": 3432420, + "normalized_name": "silent woods" + }, + { + "appid": 3432440, + "normalized_name": "phantomware 0" + }, + { + "appid": 3432460, + "normalized_name": "为了姚 for yao" + }, + { + "appid": 3432470, + "normalized_name": "ぼくの葬式にようこそ happy rebirthday" + }, + { + "appid": 3432500, + "normalized_name": "长安:石之舞" + }, + { + "appid": 3432510, + "normalized_name": "江湖日记" + }, + { + "appid": 3432530, + "normalized_name": "grocery store tycoon first store" + }, + { + "appid": 3432540, + "normalized_name": "sexxx girls [18+]" + }, + { + "appid": 3432590, + "normalized_name": "cats in cozy rooms" + }, + { + "appid": 3432600, + "normalized_name": "bdsm oasis interactive physics simulation" + }, + { + "appid": 3432610, + "normalized_name": "weeb store simulator" + }, + { + "appid": 3432620, + "normalized_name": "perry" + }, + { + "appid": 3432630, + "normalized_name": "gomiboru" + }, + { + "appid": 3432640, + "normalized_name": "sealion flying" + }, + { + "appid": 3432650, + "normalized_name": "追曙" + }, + { + "appid": 3432660, + "normalized_name": "island rescue tropic survival" + }, + { + "appid": 3432690, + "normalized_name": "推理小说的关键一定会出现两次" + }, + { + "appid": 3432750, + "normalized_name": "laundering simulator" + }, + { + "appid": 3432780, + "normalized_name": "when disappear a light 先生さようなら、みなさんさようなら。" + }, + { + "appid": 3432800, + "normalized_name": "slingbot survivors" + }, + { + "appid": 3432810, + "normalized_name": "wreck poly survival" + }, + { + "appid": 3432830, + "normalized_name": "victory's grave outflank" + }, + { + "appid": 3432860, + "normalized_name": "psycho sleuth" + }, + { + "appid": 3432880, + "normalized_name": "雅里中興 (中興新村地方創生類型遊戲)" + }, + { + "appid": 3432890, + "normalized_name": "paper war" + }, + { + "appid": 3432910, + "normalized_name": "metascapes" + }, + { + "appid": 3432920, + "normalized_name": "cozy forge blacksmith simulator" + }, + { + "appid": 3432960, + "normalized_name": "math monster quest" + }, + { + "appid": 3432980, + "normalized_name": "ballistic.exe" + }, + { + "appid": 3433000, + "normalized_name": "downhill" + }, + { + "appid": 3433030, + "normalized_name": "poker clicker" + }, + { + "appid": 3433050, + "normalized_name": "fireplace simulator" + }, + { + "appid": 3433110, + "normalized_name": "cinema theater tycoon" + }, + { + "appid": 3433170, + "normalized_name": "∀stround" + }, + { + "appid": 3433180, + "normalized_name": "hentai sally" + }, + { + "appid": 3433200, + "normalized_name": "sqr" + }, + { + "appid": 3433210, + "normalized_name": "ghostie's escape" + }, + { + "appid": 3433230, + "normalized_name": "the gretlow tapes" + }, + { + "appid": 3433240, + "normalized_name": "parasitic business" + }, + { + "appid": 3433250, + "normalized_name": "swt survivor with towers" + }, + { + "appid": 3433280, + "normalized_name": "haunted hues" + }, + { + "appid": 3433290, + "normalized_name": "ruyn hd" + }, + { + "appid": 3433330, + "normalized_name": "clockwork sword" + }, + { + "appid": 3433410, + "normalized_name": "powder runners maze quest" + }, + { + "appid": 3433430, + "normalized_name": "boo! hunt" + }, + { + "appid": 3433450, + "normalized_name": "danger cliff 2" + }, + { + "appid": 3433480, + "normalized_name": "suki suki love" + }, + { + "appid": 3433520, + "normalized_name": "the sixth sorrow" + }, + { + "appid": 3433530, + "normalized_name": "billy's tower" + }, + { + "appid": 3433540, + "normalized_name": "delta z. inc" + }, + { + "appid": 3433550, + "normalized_name": "misterios ocultos" + }, + { + "appid": 3433610, + "normalized_name": "terrafactor" + }, + { + "appid": 3433640, + "normalized_name": "mining company" + }, + { + "appid": 3433680, + "normalized_name": "sprout crafter" + }, + { + "appid": 3433690, + "normalized_name": "meeting a hunk in the park" + }, + { + "appid": 3433700, + "normalized_name": "a happy place" + }, + { + "appid": 3433720, + "normalized_name": "smokin potions" + }, + { + "appid": 3433730, + "normalized_name": "pocket lint" + }, + { + "appid": 3433740, + "normalized_name": "dominated by sadistic roommate" + }, + { + "appid": 3433760, + "normalized_name": "crown insignis" + }, + { + "appid": 3433800, + "normalized_name": "moonbrella" + }, + { + "appid": 3433810, + "normalized_name": "咸鱼殿下 / my journey" + }, + { + "appid": 3433820, + "normalized_name": "the indomitable rocket dog" + }, + { + "appid": 3433840, + "normalized_name": "epic transport" + }, + { + "appid": 3433870, + "normalized_name": "时忆 memory of time" + }, + { + "appid": 3433880, + "normalized_name": "stompyboy" + }, + { + "appid": 3433920, + "normalized_name": "创造世界" + }, + { + "appid": 3433940, + "normalized_name": "forsaker dingding&blade" + }, + { + "appid": 3433960, + "normalized_name": "abyss unleashed" + }, + { + "appid": 3433970, + "normalized_name": "vr head football" + }, + { + "appid": 3433990, + "normalized_name": "chinese mythology journey to the west" + }, + { + "appid": 3434000, + "normalized_name": "bally fears the paradox" + }, + { + "appid": 3434040, + "normalized_name": "you die today" + }, + { + "appid": 3434050, + "normalized_name": "queen naeja's desires" + }, + { + "appid": 3434070, + "normalized_name": "concentration required" + }, + { + "appid": 3434120, + "normalized_name": "seeker" + }, + { + "appid": 3434130, + "normalized_name": "food wagon" + }, + { + "appid": 3434150, + "normalized_name": "automatic battle galaxy general" + }, + { + "appid": 3434160, + "normalized_name": "bones" + }, + { + "appid": 3434180, + "normalized_name": "project; virai doomer’s life escape" + }, + { + "appid": 3434200, + "normalized_name": "so far up" + }, + { + "appid": 3434210, + "normalized_name": "farmer’s market simulator" + }, + { + "appid": 3434240, + "normalized_name": "《'点'到为止》" + }, + { + "appid": 3434250, + "normalized_name": "scp autophobia" + }, + { + "appid": 3434280, + "normalized_name": "1000 missiles defense of tornwa" + }, + { + "appid": 3434300, + "normalized_name": "灵能冲击" + }, + { + "appid": 3434330, + "normalized_name": "恶魔的房间 the demon's room" + }, + { + "appid": 3434340, + "normalized_name": "oblitus mortis" + }, + { + "appid": 3434370, + "normalized_name": "remembrance" + }, + { + "appid": 3434400, + "normalized_name": "勿忘黯鵺 forgive for ever" + }, + { + "appid": 3434420, + "normalized_name": "in ashes" + }, + { + "appid": 3434430, + "normalized_name": "goblin's gamble 24" + }, + { + "appid": 3434440, + "normalized_name": "welcome home" + }, + { + "appid": 3434460, + "normalized_name": "asteroidia" + }, + { + "appid": 3434490, + "normalized_name": "scary ferry" + }, + { + "appid": 3434530, + "normalized_name": "mechanized corps rebirth" + }, + { + "appid": 3434580, + "normalized_name": "polyfocus" + }, + { + "appid": 3434620, + "normalized_name": "spectrum siege" + }, + { + "appid": 3434660, + "normalized_name": "run" + }, + { + "appid": 3434670, + "normalized_name": "no more deep" + }, + { + "appid": 3434700, + "normalized_name": "indoor baseball" + }, + { + "appid": 3434710, + "normalized_name": "black pieces move first" + }, + { + "appid": 3434720, + "normalized_name": "shy cats hidden tracks collection" + }, + { + "appid": 3434740, + "normalized_name": "fantasy tower defense" + }, + { + "appid": 3434800, + "normalized_name": "my virtual friend" + }, + { + "appid": 3434850, + "normalized_name": "kraken's canvas" + }, + { + "appid": 3434880, + "normalized_name": "perpession" + }, + { + "appid": 3434890, + "normalized_name": "mythic mire" + }, + { + "appid": 3434920, + "normalized_name": "sage" + }, + { + "appid": 3434940, + "normalized_name": "insanity locked" + }, + { + "appid": 3434950, + "normalized_name": "ninja skills" + }, + { + "appid": 3435050, + "normalized_name": "a fugu's dive" + }, + { + "appid": 3435100, + "normalized_name": "gas giant voyage" + }, + { + "appid": 3435110, + "normalized_name": "don't freeze a winter card survival" + }, + { + "appid": 3435120, + "normalized_name": "[k]night city" + }, + { + "appid": 3435160, + "normalized_name": "fashion shop simulator" + }, + { + "appid": 3435170, + "normalized_name": "牛马派对" + }, + { + "appid": 3435180, + "normalized_name": "looters inc." + }, + { + "appid": 3435210, + "normalized_name": "与衾 with quilt" + }, + { + "appid": 3435250, + "normalized_name": "frog brain" + }, + { + "appid": 3435260, + "normalized_name": "dice with death" + }, + { + "appid": 3435270, + "normalized_name": "しかくの勿忘草" + }, + { + "appid": 3435310, + "normalized_name": "dragon expedition" + }, + { + "appid": 3435340, + "normalized_name": "sign white" + }, + { + "appid": 3435360, + "normalized_name": "bullet coven 枪弹女巫" + }, + { + "appid": 3435400, + "normalized_name": "the end of infinity return" + }, + { + "appid": 3435420, + "normalized_name": "undead exile" + }, + { + "appid": 3435430, + "normalized_name": "i'm caught in a time loop i need to find a girl as soon as possible" + }, + { + "appid": 3435440, + "normalized_name": "anthony the monk" + }, + { + "appid": 3435470, + "normalized_name": "bangalore daze" + }, + { + "appid": 3435500, + "normalized_name": "last harvest" + }, + { + "appid": 3435530, + "normalized_name": "double dangerous" + }, + { + "appid": 3435560, + "normalized_name": "the butterfly dream" + }, + { + "appid": 3435580, + "normalized_name": "noir total deadly party" + }, + { + "appid": 3435600, + "normalized_name": "pexit 8" + }, + { + "appid": 3435610, + "normalized_name": "exark" + }, + { + "appid": 3435630, + "normalized_name": "5th dimension" + }, + { + "appid": 3435640, + "normalized_name": "monster mending" + }, + { + "appid": 3435650, + "normalized_name": "diamond thief" + }, + { + "appid": 3435690, + "normalized_name": "桃色双修物语" + }, + { + "appid": 3435700, + "normalized_name": "evolized" + }, + { + "appid": 3435710, + "normalized_name": "the last nordic tribe" + }, + { + "appid": 3435750, + "normalized_name": "snarewaves' shooting challenge" + }, + { + "appid": 3435790, + "normalized_name": "仙缘:红尘一笑" + }, + { + "appid": 3435820, + "normalized_name": "rougineer" + }, + { + "appid": 3435830, + "normalized_name": "timer" + }, + { + "appid": 3435840, + "normalized_name": "card bundler collection" + }, + { + "appid": 3435890, + "normalized_name": "polytopia" + }, + { + "appid": 3435920, + "normalized_name": "echoes of forgotten dreams" + }, + { + "appid": 3435950, + "normalized_name": "dead cat bounce" + }, + { + "appid": 3435980, + "normalized_name": "mistworld" + }, + { + "appid": 3436000, + "normalized_name": "the world ends in ohio" + }, + { + "appid": 3436030, + "normalized_name": "idle boss rush" + }, + { + "appid": 3436050, + "normalized_name": "push through hell" + }, + { + "appid": 3436090, + "normalized_name": "sprunki town" + }, + { + "appid": 3436120, + "normalized_name": "blueberry town a date with a gentleman" + }, + { + "appid": 3436130, + "normalized_name": "elton manor requiem of the cursed roses" + }, + { + "appid": 3436140, + "normalized_name": "freestyle man in office" + }, + { + "appid": 3436350, + "normalized_name": "naked interrogation simulator" + }, + { + "appid": 3436370, + "normalized_name": "destroy! mosaic!" + }, + { + "appid": 3436420, + "normalized_name": "keep them sleeping" + }, + { + "appid": 3436430, + "normalized_name": "isoterra" + }, + { + "appid": 3436450, + "normalized_name": "herolike; an unfortunate isekai" + }, + { + "appid": 3436460, + "normalized_name": "slime co." + }, + { + "appid": 3436480, + "normalized_name": "death in the gulag" + }, + { + "appid": 3436490, + "normalized_name": "stella can't hear" + }, + { + "appid": 3436500, + "normalized_name": "typewriter monkeys" + }, + { + "appid": 3436530, + "normalized_name": "dyslexia" + }, + { + "appid": 3436540, + "normalized_name": "cyty byldyr" + }, + { + "appid": 3436560, + "normalized_name": "seeking adventure" + }, + { + "appid": 3436570, + "normalized_name": "no room for error" + }, + { + "appid": 3436590, + "normalized_name": "mosh" + }, + { + "appid": 3436620, + "normalized_name": "roads of rage" + }, + { + "appid": 3436630, + "normalized_name": "nox aeterna veil of darkness" + }, + { + "appid": 3436650, + "normalized_name": "no other alchemists here" + }, + { + "appid": 3436730, + "normalized_name": "命令重启" + }, + { + "appid": 3436750, + "normalized_name": "寒雪记忆 snowy memories" + }, + { + "appid": 3436760, + "normalized_name": "白垩纪 龙岛" + }, + { + "appid": 3436770, + "normalized_name": "极乐不羡仙" + }, + { + "appid": 3436790, + "normalized_name": "doctrine" + }, + { + "appid": 3436840, + "normalized_name": "规则怪谈:梦核密室逃脱" + }, + { + "appid": 3436860, + "normalized_name": "radiowave" + }, + { + "appid": 3436870, + "normalized_name": "broken pact" + }, + { + "appid": 3436880, + "normalized_name": "aliminal" + }, + { + "appid": 3436890, + "normalized_name": "kimæra" + }, + { + "appid": 3436940, + "normalized_name": "cosmic dream" + }, + { + "appid": 3436970, + "normalized_name": "mournight" + }, + { + "appid": 3436980, + "normalized_name": "supercowboy" + }, + { + "appid": 3436990, + "normalized_name": "suika idle" + }, + { + "appid": 3437020, + "normalized_name": "gyra" + }, + { + "appid": 3437030, + "normalized_name": "西西弗斯 sisyphus" + }, + { + "appid": 3437060, + "normalized_name": "黑童话" + }, + { + "appid": 3437090, + "normalized_name": "瞳 创之槲 tong create thorns" + }, + { + "appid": 3437110, + "normalized_name": "satan's dungeon" + }, + { + "appid": 3437160, + "normalized_name": "india 89" + }, + { + "appid": 3437170, + "normalized_name": "壶中日月 timeless teapot" + }, + { + "appid": 3437180, + "normalized_name": "ukrainian shield iraq" + }, + { + "appid": 3437190, + "normalized_name": "與貓同行 always with you" + }, + { + "appid": 3437200, + "normalized_name": "luna" + }, + { + "appid": 3437210, + "normalized_name": "bird bump" + }, + { + "appid": 3437270, + "normalized_name": "i rizzed up a femboy" + }, + { + "appid": 3437280, + "normalized_name": "the masculine urge to blow a femboy" + }, + { + "appid": 3437350, + "normalized_name": "woodlins" + }, + { + "appid": 3437370, + "normalized_name": "sweet zodiac 1" + }, + { + "appid": 3437390, + "normalized_name": "delta vector turn based racing" + }, + { + "appid": 3437440, + "normalized_name": "bedman challenge" + }, + { + "appid": 3437460, + "normalized_name": "zirquitz" + }, + { + "appid": 3437470, + "normalized_name": "dragons reef" + }, + { + "appid": 3437540, + "normalized_name": "mysteries of fangclaw" + }, + { + "appid": 3437570, + "normalized_name": "monkey drive" + }, + { + "appid": 3437610, + "normalized_name": "dragon fall" + }, + { + "appid": 3437650, + "normalized_name": "codename g" + }, + { + "appid": 3437700, + "normalized_name": "fishing alone" + }, + { + "appid": 3437790, + "normalized_name": "happy bones welcome home" + }, + { + "appid": 3437820, + "normalized_name": "wiped clean" + }, + { + "appid": 3437850, + "normalized_name": "propaganda vs. zombies" + }, + { + "appid": 3437860, + "normalized_name": "clothing supermarket store simulator" + }, + { + "appid": 3437940, + "normalized_name": "sheep escape" + }, + { + "appid": 3438040, + "normalized_name": "gooning aim trainer" + }, + { + "appid": 3438060, + "normalized_name": "harvey the sleeper" + }, + { + "appid": 3438070, + "normalized_name": "sword of mejor" + }, + { + "appid": 3438080, + "normalized_name": "proytz" + }, + { + "appid": 3438090, + "normalized_name": "purfect climb" + }, + { + "appid": 3438100, + "normalized_name": "lustful fingers" + }, + { + "appid": 3438110, + "normalized_name": "grims garden" + }, + { + "appid": 3438130, + "normalized_name": "dynasty protocol" + }, + { + "appid": 3438210, + "normalized_name": "blimpy" + }, + { + "appid": 3438220, + "normalized_name": "agony 'n' torture" + }, + { + "appid": 3438250, + "normalized_name": "paranormal mutagens cargo" + }, + { + "appid": 3438340, + "normalized_name": "tumble egg" + }, + { + "appid": 3438350, + "normalized_name": "five nights at pt's" + }, + { + "appid": 3438360, + "normalized_name": "synthwave smashers" + }, + { + "appid": 3438400, + "normalized_name": "it sprawls" + }, + { + "appid": 3438430, + "normalized_name": "quodan treachery on the arheid" + }, + { + "appid": 3438460, + "normalized_name": "onsen milf rainbow party" + }, + { + "appid": 3438470, + "normalized_name": "multiplanetary" + }, + { + "appid": 3438490, + "normalized_name": "アンリアリィ・サバイバーズ:わたしたちのときめき無人島ライフ" + }, + { + "appid": 3438510, + "normalized_name": "before arthur" + }, + { + "appid": 3438530, + "normalized_name": "sect leader's decree" + }, + { + "appid": 3438550, + "normalized_name": "fobia fights" + }, + { + "appid": 3438570, + "normalized_name": "beer" + }, + { + "appid": 3438600, + "normalized_name": "battle lines" + }, + { + "appid": 3438630, + "normalized_name": "storm burst tornado alley" + }, + { + "appid": 3438640, + "normalized_name": "dicey bugs" + }, + { + "appid": 3438690, + "normalized_name": "elf world adventure 4" + }, + { + "appid": 3438700, + "normalized_name": "elf world adventure 5" + }, + { + "appid": 3438720, + "normalized_name": "the laundromat sidequest" + }, + { + "appid": 3438730, + "normalized_name": "red is lava" + }, + { + "appid": 3438760, + "normalized_name": "协议战线" + }, + { + "appid": 3438770, + "normalized_name": "redo" + }, + { + "appid": 3438800, + "normalized_name": "doodle empires" + }, + { + "appid": 3438810, + "normalized_name": "프린세스 메이커 예언의 아이들" + }, + { + "appid": 3438830, + "normalized_name": "上传" + }, + { + "appid": 3438840, + "normalized_name": "kill ralph" + }, + { + "appid": 3438850, + "normalized_name": "sledding game" + }, + { + "appid": 3438860, + "normalized_name": "卡皮巴拉的幸福时光 capybara's happytime" + }, + { + "appid": 3438880, + "normalized_name": "with dream" + }, + { + "appid": 3438900, + "normalized_name": "azazel gamble 阿撒兹勒赌局" + }, + { + "appid": 3438910, + "normalized_name": "project rr" + }, + { + "appid": 3438920, + "normalized_name": "project de" + }, + { + "appid": 3438950, + "normalized_name": "猫猫彩票店" + }, + { + "appid": 3438970, + "normalized_name": "aslo" + }, + { + "appid": 3438990, + "normalized_name": "cheaters cheetah" + }, + { + "appid": 3439000, + "normalized_name": "the candle" + }, + { + "appid": 3439010, + "normalized_name": "clicker conquest" + }, + { + "appid": 3439020, + "normalized_name": "the butterfly effect" + }, + { + "appid": 3439030, + "normalized_name": "逃学之王" + }, + { + "appid": 3439040, + "normalized_name": "mystery island missing amy" + }, + { + "appid": 3439050, + "normalized_name": "bank it!" + }, + { + "appid": 3439060, + "normalized_name": "ghost infinite labyrinth" + }, + { + "appid": 3439080, + "normalized_name": "vr football heading challenge" + }, + { + "appid": 3439100, + "normalized_name": "atc flight operator" + }, + { + "appid": 3439150, + "normalized_name": "marriage contract with billionaire ceo" + }, + { + "appid": 3439210, + "normalized_name": "lurking in tenebris" + }, + { + "appid": 3439240, + "normalized_name": "marras" + }, + { + "appid": 3439250, + "normalized_name": "steamforge" + }, + { + "appid": 3439300, + "normalized_name": "a butterfly" + }, + { + "appid": 3439310, + "normalized_name": "storytime cats a twilight tale" + }, + { + "appid": 3439320, + "normalized_name": "red or blue" + }, + { + "appid": 3439430, + "normalized_name": "gridle" + }, + { + "appid": 3439440, + "normalized_name": "hunted within the walls" + }, + { + "appid": 3439490, + "normalized_name": "amseven" + }, + { + "appid": 3439500, + "normalized_name": "dusty secrets" + }, + { + "appid": 3439510, + "normalized_name": "merge guard" + }, + { + "appid": 3439520, + "normalized_name": "up up and away web !" + }, + { + "appid": 3439530, + "normalized_name": "tomboy annoying childhood friend" + }, + { + "appid": 3439540, + "normalized_name": "pigkaboo" + }, + { + "appid": 3439580, + "normalized_name": "翻滚外星人 rollover alien" + }, + { + "appid": 3439590, + "normalized_name": "the gates of neptune" + }, + { + "appid": 3439600, + "normalized_name": "alphafurry" + }, + { + "appid": 3439620, + "normalized_name": "runpunk the parkour game" + }, + { + "appid": 3439640, + "normalized_name": "nowhere to run" + }, + { + "appid": 3439670, + "normalized_name": "graphic marbles 图形弹珠" + }, + { + "appid": 3439700, + "normalized_name": "holocall send your cheers!" + }, + { + "appid": 3439710, + "normalized_name": "quadphos" + }, + { + "appid": 3439730, + "normalized_name": "endless nightmare never awaken" + }, + { + "appid": 3439740, + "normalized_name": "lithium" + }, + { + "appid": 3439790, + "normalized_name": "cuckold husband" + }, + { + "appid": 3439800, + "normalized_name": "between invisible walls" + }, + { + "appid": 3439820, + "normalized_name": "back rooms the old watcher" + }, + { + "appid": 3439830, + "normalized_name": "dead end colosseum" + }, + { + "appid": 3439940, + "normalized_name": "xargon remake ep.1" + }, + { + "appid": 3439950, + "normalized_name": "mask of dead 2 shadow of pelagius" + }, + { + "appid": 3439970, + "normalized_name": "elsewhere electric" + }, + { + "appid": 3439980, + "normalized_name": "moby dick a tiny tale of revenge" + }, + { + "appid": 3439990, + "normalized_name": "pato land" + }, + { + "appid": 3440000, + "normalized_name": "merchant 64" + }, + { + "appid": 3440010, + "normalized_name": "puzkin magnetic odyssey" + }, + { + "appid": 3440060, + "normalized_name": "cralon" + }, + { + "appid": 3440070, + "normalized_name": "dinoblade" + }, + { + "appid": 3440090, + "normalized_name": "cage me not" + }, + { + "appid": 3440100, + "normalized_name": "fluxis" + }, + { + "appid": 3440120, + "normalized_name": "knights of the crusades" + }, + { + "appid": 3440130, + "normalized_name": "songs of the shore" + }, + { + "appid": 3440140, + "normalized_name": "do not disturb" + }, + { + "appid": 3440190, + "normalized_name": "money trails" + }, + { + "appid": 3440200, + "normalized_name": "the holy fool" + }, + { + "appid": 3440230, + "normalized_name": "es clicker" + }, + { + "appid": 3440240, + "normalized_name": "101 cats hidden in bangkok" + }, + { + "appid": 3440270, + "normalized_name": "amaroo's christmas shop simulator prologue" + }, + { + "appid": 3440280, + "normalized_name": "let's freeze some penguins" + }, + { + "appid": 3440310, + "normalized_name": "hexcavator" + }, + { + "appid": 3440320, + "normalized_name": "anomaly zero twelve" + }, + { + "appid": 3440340, + "normalized_name": "isles of isvenness" + }, + { + "appid": 3440360, + "normalized_name": "digipunks 2069" + }, + { + "appid": 3440370, + "normalized_name": "vessel tactics" + }, + { + "appid": 3440390, + "normalized_name": "drunkard simulator" + }, + { + "appid": 3440410, + "normalized_name": "horrorcore maze and pools of horror" + }, + { + "appid": 3440430, + "normalized_name": "zerofactory" + }, + { + "appid": 3440490, + "normalized_name": "circus saboteur" + }, + { + "appid": 3440580, + "normalized_name": "agony increment" + }, + { + "appid": 3440610, + "normalized_name": "draft day sports college basketball 2025" + }, + { + "appid": 3440710, + "normalized_name": "美梦乌托邦" + }, + { + "appid": 3440740, + "normalized_name": "disc creatures world" + }, + { + "appid": 3440750, + "normalized_name": "beats&boss" + }, + { + "appid": 3440770, + "normalized_name": "the glued" + }, + { + "appid": 3440790, + "normalized_name": "night of the wendigo" + }, + { + "appid": 3440810, + "normalized_name": "rescue heli rh407" + }, + { + "appid": 3440830, + "normalized_name": "new year home" + }, + { + "appid": 3440840, + "normalized_name": "リズフリたん!rhythmic flip (re)turn" + }, + { + "appid": 3440880, + "normalized_name": "bloodpunished no time por patience" + }, + { + "appid": 3440890, + "normalized_name": "a difficult game about letters" + }, + { + "appid": 3440900, + "normalized_name": "tumultus" + }, + { + "appid": 3440950, + "normalized_name": "chronos phantasia" + }, + { + "appid": 3440960, + "normalized_name": "grim blade" + }, + { + "appid": 3440980, + "normalized_name": "it's raining acorn!" + }, + { + "appid": 3441000, + "normalized_name": "ardena" + }, + { + "appid": 3441060, + "normalized_name": "stone age" + }, + { + "appid": 3441120, + "normalized_name": "no hell for me!" + }, + { + "appid": 3441130, + "normalized_name": "day zero" + }, + { + "appid": 3441140, + "normalized_name": "trashcan simulator" + }, + { + "appid": 3441160, + "normalized_name": "fey" + }, + { + "appid": 3441190, + "normalized_name": "dead of night supermarket" + }, + { + "appid": 3441200, + "normalized_name": "ruby journey" + }, + { + "appid": 3441220, + "normalized_name": "chatnpc" + }, + { + "appid": 3441240, + "normalized_name": "gridiron masters '98" + }, + { + "appid": 3441280, + "normalized_name": "the greenening" + }, + { + "appid": 3441320, + "normalized_name": "hyperdrive horizon" + }, + { + "appid": 3441330, + "normalized_name": "liber 777 without tears" + }, + { + "appid": 3441340, + "normalized_name": "house of guilt" + }, + { + "appid": 3441350, + "normalized_name": "heart future whispers" + }, + { + "appid": 3441360, + "normalized_name": "screaming in the basement (2025)" + }, + { + "appid": 3441370, + "normalized_name": "rag doll" + }, + { + "appid": 3441380, + "normalized_name": "albatross program" + }, + { + "appid": 3441420, + "normalized_name": "dustbound" + }, + { + "appid": 3441430, + "normalized_name": "polycar blitz" + }, + { + "appid": 3441450, + "normalized_name": "叛逆の守護者" + }, + { + "appid": 3441460, + "normalized_name": "fuel harvest together" + }, + { + "appid": 3441490, + "normalized_name": "zeizen" + }, + { + "appid": 3441510, + "normalized_name": "egypt" + }, + { + "appid": 3441540, + "normalized_name": "takara cards academy" + }, + { + "appid": 3441580, + "normalized_name": "minigolf showdown" + }, + { + "appid": 3441600, + "normalized_name": "battle mayhem" + }, + { + "appid": 3441610, + "normalized_name": "emery" + }, + { + "appid": 3441620, + "normalized_name": "retro racers" + }, + { + "appid": 3441630, + "normalized_name": "the waste" + }, + { + "appid": 3441660, + "normalized_name": "parámetro zero calígine" + }, + { + "appid": 3441720, + "normalized_name": "epimutation" + }, + { + "appid": 3441730, + "normalized_name": "quiet classroom" + }, + { + "appid": 3441750, + "normalized_name": "cyber storm edge" + }, + { + "appid": 3441780, + "normalized_name": "fire in the dark" + }, + { + "appid": 3441790, + "normalized_name": "berty the giraffe" + }, + { + "appid": 3441820, + "normalized_name": "titanium raiders" + }, + { + "appid": 3441970, + "normalized_name": "falmouth" + }, + { + "appid": 3441990, + "normalized_name": "withering realms" + }, + { + "appid": 3442000, + "normalized_name": "swingin'!" + }, + { + "appid": 3442010, + "normalized_name": "euphionia the tree spirit's curse" + }, + { + "appid": 3442040, + "normalized_name": "dream life in the country side" + }, + { + "appid": 3442050, + "normalized_name": "kuu" + }, + { + "appid": 3442140, + "normalized_name": "lord of the click 5" + }, + { + "appid": 3442170, + "normalized_name": "swooshcat" + }, + { + "appid": 3442190, + "normalized_name": "萌爪餐厅" + }, + { + "appid": 3442220, + "normalized_name": "boobs" + }, + { + "appid": 3442240, + "normalized_name": "red guest biography" + }, + { + "appid": 3442250, + "normalized_name": "the null doctrine" + }, + { + "appid": 3442260, + "normalized_name": "zombie metal band" + }, + { + "appid": 3442270, + "normalized_name": "stone of adventure" + }, + { + "appid": 3442280, + "normalized_name": "phantomancer" + }, + { + "appid": 3442290, + "normalized_name": "armory simulator" + }, + { + "appid": 3442310, + "normalized_name": "trauma record" + }, + { + "appid": 3442380, + "normalized_name": "summer waifu" + }, + { + "appid": 3442390, + "normalized_name": "黑神传:悟净 | black mystery wujing" + }, + { + "appid": 3442410, + "normalized_name": "real time chess" + }, + { + "appid": 3442440, + "normalized_name": "technology market simulation" + }, + { + "appid": 3442450, + "normalized_name": "in the dark" + }, + { + "appid": 3442470, + "normalized_name": "photographer's life simulator" + }, + { + "appid": 3442580, + "normalized_name": "monster merchant" + }, + { + "appid": 3442660, + "normalized_name": "love letters first bloom" + }, + { + "appid": 3442680, + "normalized_name": "deep water" + }, + { + "appid": 3442710, + "normalized_name": "sex casino" + }, + { + "appid": 3442720, + "normalized_name": "tilebound" + }, + { + "appid": 3442740, + "normalized_name": "hollow memories" + }, + { + "appid": 3442760, + "normalized_name": "apocalypse ? no !" + }, + { + "appid": 3442770, + "normalized_name": "fire me i insist" + }, + { + "appid": 3442830, + "normalized_name": "like them" + }, + { + "appid": 3442840, + "normalized_name": "shadow eagle" + }, + { + "appid": 3442880, + "normalized_name": "touhou farming ~ minoriko's homestead harvest" + }, + { + "appid": 3442890, + "normalized_name": "can no one hear me?" + }, + { + "appid": 3442910, + "normalized_name": "steampunks 1869" + }, + { + "appid": 3442950, + "normalized_name": "witch’s gaze the vanishing village" + }, + { + "appid": 3442970, + "normalized_name": "barracks simulator" + }, + { + "appid": 3442980, + "normalized_name": "a slight chance of sawblades" + }, + { + "appid": 3442990, + "normalized_name": "bespoke" + }, + { + "appid": 3443020, + "normalized_name": "push³" + }, + { + "appid": 3443030, + "normalized_name": "なごやか3組" + }, + { + "appid": 3443080, + "normalized_name": "auridia" + }, + { + "appid": 3443160, + "normalized_name": "3 bullets" + }, + { + "appid": 3443190, + "normalized_name": "s.x.e. slider swole mates" + }, + { + "appid": 3443200, + "normalized_name": "simple sudoku" + }, + { + "appid": 3443250, + "normalized_name": "chambers & crops" + }, + { + "appid": 3443270, + "normalized_name": "tryhard" + }, + { + "appid": 3443330, + "normalized_name": "spark quest" + }, + { + "appid": 3443350, + "normalized_name": "sketch magician" + }, + { + "appid": 3443380, + "normalized_name": "金田一耕助シリーズ 本陣殺人事件" + }, + { + "appid": 3443400, + "normalized_name": "anomaly evolution" + }, + { + "appid": 3443410, + "normalized_name": "the brothers hotel" + }, + { + "appid": 3443420, + "normalized_name": "prong" + }, + { + "appid": 3443430, + "normalized_name": "rotschwert" + }, + { + "appid": 3443440, + "normalized_name": "dungeon battles" + }, + { + "appid": 3443450, + "normalized_name": "帕斯的餐厅pas's restaurant" + }, + { + "appid": 3443470, + "normalized_name": "new jersey drone simulator" + }, + { + "appid": 3443480, + "normalized_name": "蛊真人 gu zhen ren reverend insanity" + }, + { + "appid": 3443520, + "normalized_name": "陰陽師絵巻" + }, + { + "appid": 3443560, + "normalized_name": "places to go" + }, + { + "appid": 3443570, + "normalized_name": "imago" + }, + { + "appid": 3443590, + "normalized_name": "niskala sacred knowledge of leyak" + }, + { + "appid": 3443610, + "normalized_name": "zombiecards" + }, + { + "appid": 3443620, + "normalized_name": "samabakescramble" + }, + { + "appid": 3443640, + "normalized_name": "detective araka" + }, + { + "appid": 3443650, + "normalized_name": "spooky night" + }, + { + "appid": 3443670, + "normalized_name": "赤ずきんちゃんのお見舞い" + }, + { + "appid": 3443680, + "normalized_name": "final redoubt zombie apocalypse" + }, + { + "appid": 3443700, + "normalized_name": "金鱼症候群 goldfish syndrome" + }, + { + "appid": 3443710, + "normalized_name": "ritualrx" + }, + { + "appid": 3443790, + "normalized_name": "throw a life!" + }, + { + "appid": 3443800, + "normalized_name": "scaledeep" + }, + { + "appid": 3443850, + "normalized_name": "vr police pursuit alien zombies" + }, + { + "appid": 3443870, + "normalized_name": "押してダメなら押してみろ" + }, + { + "appid": 3443900, + "normalized_name": "shadow dreams" + }, + { + "appid": 3443910, + "normalized_name": "in death we love" + }, + { + "appid": 3443930, + "normalized_name": "utopia" + }, + { + "appid": 3444000, + "normalized_name": "firefighters together" + }, + { + "appid": 3444010, + "normalized_name": "the chroma from the wasteland" + }, + { + "appid": 3444020, + "normalized_name": "我在地府打麻将 demonic mahjong" + }, + { + "appid": 3444050, + "normalized_name": "find all 6 netherlands" + }, + { + "appid": 3444080, + "normalized_name": "bakery cafe simulator" + }, + { + "appid": 3444100, + "normalized_name": "链链相扣" + }, + { + "appid": 3444110, + "normalized_name": "cow chess" + }, + { + "appid": 3444160, + "normalized_name": "welcome to the survey" + }, + { + "appid": 3444170, + "normalized_name": "codestrike python powered action" + }, + { + "appid": 3444180, + "normalized_name": "梦镜—乌托邦dream mirrorutopia" + }, + { + "appid": 3444200, + "normalized_name": "woridii chapter 1 lurker" + }, + { + "appid": 3444220, + "normalized_name": "牛马" + }, + { + "appid": 3444230, + "normalized_name": "abulia" + }, + { + "appid": 3444240, + "normalized_name": "individualism in the dead internet age an anti big tech asset flip shovelware r̶a̶n̶t̶ manifesto" + }, + { + "appid": 3444260, + "normalized_name": "neverlight" + }, + { + "appid": 3444350, + "normalized_name": "numbers destiny" + }, + { + "appid": 3444360, + "normalized_name": "极速滚珠" + }, + { + "appid": 3444370, + "normalized_name": "astro maze" + }, + { + "appid": 3444380, + "normalized_name": "黎明之战" + }, + { + "appid": 3444400, + "normalized_name": "oscillation framer" + }, + { + "appid": 3444430, + "normalized_name": "horg's brewery" + }, + { + "appid": 3444480, + "normalized_name": "nebulock" + }, + { + "appid": 3444500, + "normalized_name": "bumper animals" + }, + { + "appid": 3444520, + "normalized_name": "interactive sex futanari bdsm" + }, + { + "appid": 3444540, + "normalized_name": "living with temptation 2 french confessions" + }, + { + "appid": 3444560, + "normalized_name": "sweet succubus" + }, + { + "appid": 3444570, + "normalized_name": "super miners" + }, + { + "appid": 3444580, + "normalized_name": "taishō romance theater" + }, + { + "appid": 3444610, + "normalized_name": "遗弃的大陆" + }, + { + "appid": 3444620, + "normalized_name": "guild shop simulator" + }, + { + "appid": 3444640, + "normalized_name": "蜀韵华章" + }, + { + "appid": 3444650, + "normalized_name": "mosaic of the strange" + }, + { + "appid": 3444690, + "normalized_name": "dying sun" + }, + { + "appid": 3444720, + "normalized_name": "the sultan and his harem" + }, + { + "appid": 3444740, + "normalized_name": "goo hunter" + }, + { + "appid": 3444750, + "normalized_name": "most quietly" + }, + { + "appid": 3444760, + "normalized_name": "unpuzzle quest" + }, + { + "appid": 3444790, + "normalized_name": "train to die" + }, + { + "appid": 3444830, + "normalized_name": "wizard hand" + }, + { + "appid": 3444870, + "normalized_name": "rogue bricks" + }, + { + "appid": 3444890, + "normalized_name": "trading card shop simulator" + }, + { + "appid": 3445000, + "normalized_name": "sky dreamer" + }, + { + "appid": 3445020, + "normalized_name": "lost flight survival" + }, + { + "appid": 3445030, + "normalized_name": "sea scraps" + }, + { + "appid": 3445040, + "normalized_name": "belle citique" + }, + { + "appid": 3445050, + "normalized_name": "slug wars" + }, + { + "appid": 3445070, + "normalized_name": "headshot roulette" + }, + { + "appid": 3445090, + "normalized_name": "gigacrab getting over the meme" + }, + { + "appid": 3445100, + "normalized_name": "cat slaps" + }, + { + "appid": 3445120, + "normalized_name": "kingdom of piss" + }, + { + "appid": 3445150, + "normalized_name": "box #341" + }, + { + "appid": 3445170, + "normalized_name": "🎧 yellowcake the audio game 🎧" + }, + { + "appid": 3445200, + "normalized_name": "summer camp" + }, + { + "appid": 3445230, + "normalized_name": "hellgate reiko" + }, + { + "appid": 3445250, + "normalized_name": "daydream" + }, + { + "appid": 3445290, + "normalized_name": "r/a\\w" + }, + { + "appid": 3445300, + "normalized_name": "full spectrum gradient" + }, + { + "appid": 3445340, + "normalized_name": "sandwich simulator" + }, + { + "appid": 3445360, + "normalized_name": "rust & roots" + }, + { + "appid": 3445380, + "normalized_name": "something took her" + }, + { + "appid": 3445410, + "normalized_name": "lowlife forms" + }, + { + "appid": 3445430, + "normalized_name": "剣撃クロスゾーン" + }, + { + "appid": 3445490, + "normalized_name": "angry video game nerd 8 bit" + }, + { + "appid": 3445500, + "normalized_name": "perpetuo" + }, + { + "appid": 3445510, + "normalized_name": "anarchy road" + }, + { + "appid": 3445520, + "normalized_name": "100 sri lanka cats" + }, + { + "appid": 3445530, + "normalized_name": "forest of death masks" + }, + { + "appid": 3445540, + "normalized_name": "sherlocat nonogram rio" + }, + { + "appid": 3445550, + "normalized_name": "hero world 2" + }, + { + "appid": 3445580, + "normalized_name": "ambidextro" + }, + { + "appid": 3445610, + "normalized_name": "bombshell blitz" + }, + { + "appid": 3445620, + "normalized_name": "hostile dreams 2" + }, + { + "appid": 3445630, + "normalized_name": "super capsule boy" + }, + { + "appid": 3445640, + "normalized_name": "the edge of" + }, + { + "appid": 3445670, + "normalized_name": "what the chuck?" + }, + { + "appid": 3445680, + "normalized_name": "rogue pirates" + }, + { + "appid": 3445690, + "normalized_name": "theralite" + }, + { + "appid": 3445700, + "normalized_name": "lawnmower day" + }, + { + "appid": 3445720, + "normalized_name": "drone dash" + }, + { + "appid": 3445760, + "normalized_name": "grim pastures" + }, + { + "appid": 3445800, + "normalized_name": "fishtopia" + }, + { + "appid": 3445850, + "normalized_name": "friday night knockout" + }, + { + "appid": 3445890, + "normalized_name": "light 'em" + }, + { + "appid": 3445970, + "normalized_name": "midnight garden" + }, + { + "appid": 3445980, + "normalized_name": "another world adventures" + }, + { + "appid": 3446020, + "normalized_name": "the lost island" + }, + { + "appid": 3446030, + "normalized_name": "wardens of the rift" + }, + { + "appid": 3446040, + "normalized_name": "chat is real" + }, + { + "appid": 3446060, + "normalized_name": "backpack guardian" + }, + { + "appid": 3446070, + "normalized_name": "zombies overloaded" + }, + { + "appid": 3446090, + "normalized_name": "dragoon ascension" + }, + { + "appid": 3446110, + "normalized_name": "village empires" + }, + { + "appid": 3446120, + "normalized_name": "kira☆kano" + }, + { + "appid": 3446130, + "normalized_name": "windblown land" + }, + { + "appid": 3446150, + "normalized_name": "tsuki ni yorisou otome no sahou 2" + }, + { + "appid": 3446170, + "normalized_name": "kono aozora ni yakusoku o refine" + }, + { + "appid": 3446180, + "normalized_name": "erohpuzzle" + }, + { + "appid": 3446200, + "normalized_name": "sharks and minnows" + }, + { + "appid": 3446210, + "normalized_name": "tantalus" + }, + { + "appid": 3446230, + "normalized_name": "battery farm" + }, + { + "appid": 3446240, + "normalized_name": "宗门起源(eastern era)" + }, + { + "appid": 3446250, + "normalized_name": "aslimelate" + }, + { + "appid": 3446300, + "normalized_name": "mountain legends 5" + }, + { + "appid": 3446310, + "normalized_name": "goth clicker" + }, + { + "appid": 3446390, + "normalized_name": "hero academy legacy" + }, + { + "appid": 3446450, + "normalized_name": "hidden cats in white sand village" + }, + { + "appid": 3446470, + "normalized_name": "riverside" + }, + { + "appid": 3446490, + "normalized_name": "sixtar gate stargazer" + }, + { + "appid": 3446550, + "normalized_name": "ツクールシリーズアルティエクエスト [rta quest]" + }, + { + "appid": 3446560, + "normalized_name": "悠闲的末日郊游 traveling after doomsday" + }, + { + "appid": 3446570, + "normalized_name": "skate squire" + }, + { + "appid": 3446640, + "normalized_name": "lunaris" + }, + { + "appid": 3446710, + "normalized_name": "サキュバスマリーンの搾活~悪魔は魔性のバナナに魅入られ堕ちる~" + }, + { + "appid": 3446730, + "normalized_name": "wildroot" + }, + { + "appid": 3446740, + "normalized_name": "the random game" + }, + { + "appid": 3446750, + "normalized_name": "to the top mammoth!" + }, + { + "appid": 3446760, + "normalized_name": "multi deck hero" + }, + { + "appid": 3446780, + "normalized_name": "landhold" + }, + { + "appid": 3446800, + "normalized_name": "space orcs brawl" + }, + { + "appid": 3446810, + "normalized_name": "2匹はスライム兄弟メーカー" + }, + { + "appid": 3446830, + "normalized_name": "mouse shooter" + }, + { + "appid": 3446840, + "normalized_name": "roguejack21" + }, + { + "appid": 3446850, + "normalized_name": "skufs vs quadrobers" + }, + { + "appid": 3446860, + "normalized_name": "i met an archaeologist" + }, + { + "appid": 3446880, + "normalized_name": "sheep pageant" + }, + { + "appid": 3446900, + "normalized_name": "clean history" + }, + { + "appid": 3446910, + "normalized_name": "le code d'athos" + }, + { + "appid": 3446920, + "normalized_name": "mecharashi" + }, + { + "appid": 3446940, + "normalized_name": "spinbot arena" + }, + { + "appid": 3446950, + "normalized_name": "solace inc. 2" + }, + { + "appid": 3446960, + "normalized_name": "魔亦佛" + }, + { + "appid": 3446980, + "normalized_name": "holoreversi" + }, + { + "appid": 3446990, + "normalized_name": "fubuki ~zero in on holoearth~ hololive alternative" + }, + { + "appid": 3447000, + "normalized_name": "米姆米姆哈" + }, + { + "appid": 3447030, + "normalized_name": "idle bones magic" + }, + { + "appid": 3447040, + "normalized_name": "sora no kiseki the 1st" + }, + { + "appid": 3447090, + "normalized_name": "digitalink" + }, + { + "appid": 3447100, + "normalized_name": "collapsed horizon" + }, + { + "appid": 3447120, + "normalized_name": "异界法师" + }, + { + "appid": 3447150, + "normalized_name": "feral metaverse" + }, + { + "appid": 3447170, + "normalized_name": "cursedland" + }, + { + "appid": 3447180, + "normalized_name": "the seal game" + }, + { + "appid": 3447220, + "normalized_name": "sweet zodiac 2" + }, + { + "appid": 3447270, + "normalized_name": "ferral quest" + }, + { + "appid": 3447280, + "normalized_name": "fantasy world manager" + }, + { + "appid": 3447300, + "normalized_name": "cardrunners" + }, + { + "appid": 3447310, + "normalized_name": "on money" + }, + { + "appid": 3447340, + "normalized_name": "alacrity" + }, + { + "appid": 3447350, + "normalized_name": "determine" + }, + { + "appid": 3447360, + "normalized_name": "requiem of dread" + }, + { + "appid": 3447390, + "normalized_name": "wet" + }, + { + "appid": 3447410, + "normalized_name": "the test reality check" + }, + { + "appid": 3447420, + "normalized_name": "marble run maker" + }, + { + "appid": 3447430, + "normalized_name": "领星物语" + }, + { + "appid": 3447440, + "normalized_name": "wet vr" + }, + { + "appid": 3447490, + "normalized_name": "tenebris legion" + }, + { + "appid": 3447510, + "normalized_name": "village tale" + }, + { + "appid": 3447530, + "normalized_name": "supermarket" + }, + { + "appid": 3447550, + "normalized_name": "metamorph" + }, + { + "appid": 3447560, + "normalized_name": "chicken shop simulator fast food empire" + }, + { + "appid": 3447570, + "normalized_name": "get a midnight snack without mom knowing" + }, + { + "appid": 3447580, + "normalized_name": "contractor simulator" + }, + { + "appid": 3447600, + "normalized_name": "fly rocket die" + }, + { + "appid": 3447610, + "normalized_name": "super sakura boom boom multiverse madness ultraturboremixhd" + }, + { + "appid": 3447620, + "normalized_name": "christmas story" + }, + { + "appid": 3447640, + "normalized_name": "怪物館(kaibutsukan)" + }, + { + "appid": 3447670, + "normalized_name": "block king demands red squares" + }, + { + "appid": 3447680, + "normalized_name": "kasperia arena" + }, + { + "appid": 3447690, + "normalized_name": "idigging" + }, + { + "appid": 3447730, + "normalized_name": "polish simulator" + }, + { + "appid": 3447740, + "normalized_name": "make us whole" + }, + { + "appid": 3447760, + "normalized_name": "lustle" + }, + { + "appid": 3447820, + "normalized_name": "gimme space battle" + }, + { + "appid": 3447830, + "normalized_name": "tankore mining" + }, + { + "appid": 3447840, + "normalized_name": "gimlé trials" + }, + { + "appid": 3447910, + "normalized_name": "forged into history speedway odyssey" + }, + { + "appid": 3447940, + "normalized_name": "metal slugger ops" + }, + { + "appid": 3447970, + "normalized_name": "isoforge" + }, + { + "appid": 3447990, + "normalized_name": "intermundia dungeons polygons & magic" + }, + { + "appid": 3448010, + "normalized_name": "kandinhale" + }, + { + "appid": 3448060, + "normalized_name": "the beacon" + }, + { + "appid": 3448120, + "normalized_name": "car parking adventure" + }, + { + "appid": 3448160, + "normalized_name": "reunion autumn leaf final release" + }, + { + "appid": 3448240, + "normalized_name": "who am i?" + }, + { + "appid": 3448250, + "normalized_name": "jumpbound" + }, + { + "appid": 3448260, + "normalized_name": "lullaby of lost soul" + }, + { + "appid": 3448270, + "normalized_name": "twilight tales ∣ hollow's store" + }, + { + "appid": 3448300, + "normalized_name": "somnus" + }, + { + "appid": 3448310, + "normalized_name": "saudade" + }, + { + "appid": 3448320, + "normalized_name": "altar" + }, + { + "appid": 3448340, + "normalized_name": "danger horizon" + }, + { + "appid": 3448380, + "normalized_name": "keep it running together" + }, + { + "appid": 3448390, + "normalized_name": "embroideryvania" + }, + { + "appid": 3448420, + "normalized_name": "echoes of arcane realms" + }, + { + "appid": 3448430, + "normalized_name": "origament a paper adventure" + }, + { + "appid": 3448510, + "normalized_name": "hop on it" + }, + { + "appid": 3448530, + "normalized_name": "your mini wife" + }, + { + "appid": 3448570, + "normalized_name": "red horizon mars" + }, + { + "appid": 3448680, + "normalized_name": "threat vector" + }, + { + "appid": 3448750, + "normalized_name": "frog jump" + }, + { + "appid": 3448760, + "normalized_name": "trace" + }, + { + "appid": 3448800, + "normalized_name": "omega" + }, + { + "appid": 3448810, + "normalized_name": "radio stalker" + }, + { + "appid": 3448830, + "normalized_name": "amy hates robots" + }, + { + "appid": 3448840, + "normalized_name": "surface" + }, + { + "appid": 3448850, + "normalized_name": "tarot" + }, + { + "appid": 3448860, + "normalized_name": "mountain 78" + }, + { + "appid": 3448870, + "normalized_name": "necrologium" + }, + { + "appid": 3448930, + "normalized_name": "untitled hand game titled" + }, + { + "appid": 3448980, + "normalized_name": "settlement odyssey" + }, + { + "appid": 3449030, + "normalized_name": "upwards rain! the post office of farewells" + }, + { + "appid": 3449040, + "normalized_name": "machick 2" + }, + { + "appid": 3449060, + "normalized_name": "starbright agency" + }, + { + "appid": 3449070, + "normalized_name": "barfbot" + }, + { + "appid": 3449100, + "normalized_name": "take a walk" + }, + { + "appid": 3449110, + "normalized_name": "stela boss" + }, + { + "appid": 3449130, + "normalized_name": "now i'm home" + }, + { + "appid": 3449140, + "normalized_name": "tank society" + }, + { + "appid": 3449190, + "normalized_name": "comfort and warmth" + }, + { + "appid": 3449210, + "normalized_name": "みんなでシンプル間違い探しコレクション" + }, + { + "appid": 3449390, + "normalized_name": "inspoquest" + }, + { + "appid": 3449440, + "normalized_name": "美少女万华镜异闻 雪女" + }, + { + "appid": 3449450, + "normalized_name": "virtual hearts" + }, + { + "appid": 3449460, + "normalized_name": "arcarg" + }, + { + "appid": 3449530, + "normalized_name": "apothecurse" + }, + { + "appid": 3449590, + "normalized_name": "murim survival" + }, + { + "appid": 3449610, + "normalized_name": "gcs salvage rat" + }, + { + "appid": 3449640, + "normalized_name": "idle farming business" + }, + { + "appid": 3449660, + "normalized_name": "one more round" + }, + { + "appid": 3449670, + "normalized_name": "mutant slime survivor team" + }, + { + "appid": 3449690, + "normalized_name": "malys" + }, + { + "appid": 3449700, + "normalized_name": "vtuber survivor" + }, + { + "appid": 3449710, + "normalized_name": "null heart break" + }, + { + "appid": 3449750, + "normalized_name": "the red one occultation" + }, + { + "appid": 3449830, + "normalized_name": "李二牛勇闯合欢宗" + }, + { + "appid": 3449840, + "normalized_name": "fisher idle" + }, + { + "appid": 3449850, + "normalized_name": "桌面小猫娘" + }, + { + "appid": 3449860, + "normalized_name": "charta dungeon ambidextrous" + }, + { + "appid": 3449870, + "normalized_name": "heart keeper" + }, + { + "appid": 3449880, + "normalized_name": "countryside life" + }, + { + "appid": 3449900, + "normalized_name": "slime squisher" + }, + { + "appid": 3449950, + "normalized_name": "a tale of petty wizard" + }, + { + "appid": 3450090, + "normalized_name": "出路是一直冲" + }, + { + "appid": 3450100, + "normalized_name": "gretel's honesty" + }, + { + "appid": 3450120, + "normalized_name": "gears of glory" + }, + { + "appid": 3450150, + "normalized_name": "house of mimics" + }, + { + "appid": 3450180, + "normalized_name": "sheep dog" + }, + { + "appid": 3450190, + "normalized_name": "remix mania" + }, + { + "appid": 3450220, + "normalized_name": "コインスロット" + }, + { + "appid": 3450270, + "normalized_name": "dineinn" + }, + { + "appid": 3450300, + "normalized_name": "insomnia" + }, + { + "appid": 3450310, + "normalized_name": "europa universalis v" + }, + { + "appid": 3450340, + "normalized_name": "henshin mybro!" + }, + { + "appid": 3450360, + "normalized_name": "robot beekeeper" + }, + { + "appid": 3450370, + "normalized_name": "街漓芳传" + }, + { + "appid": 3450390, + "normalized_name": "e.t.e" + }, + { + "appid": 3450410, + "normalized_name": "free castle survival store" + }, + { + "appid": 3450420, + "normalized_name": "make my car" + }, + { + "appid": 3450450, + "normalized_name": "china chic girl" + }, + { + "appid": 3450470, + "normalized_name": "squid gals challenge" + }, + { + "appid": 3450480, + "normalized_name": "figure it out!" + }, + { + "appid": 3450490, + "normalized_name": "orc hunter elven archers vr" + }, + { + "appid": 3450530, + "normalized_name": "joy" + }, + { + "appid": 3450540, + "normalized_name": "tiny monster village" + }, + { + "appid": 3450570, + "normalized_name": "diabolika" + }, + { + "appid": 3450600, + "normalized_name": "king's legacy a crown divided collector's" + }, + { + "appid": 3450650, + "normalized_name": "plane balance" + }, + { + "appid": 3450660, + "normalized_name": "opus castle vr" + }, + { + "appid": 3450680, + "normalized_name": "etymology" + }, + { + "appid": 3450690, + "normalized_name": "phonetics" + }, + { + "appid": 3450710, + "normalized_name": "forklift driving simulator vr" + }, + { + "appid": 3450750, + "normalized_name": "a whole wolfrush" + }, + { + "appid": 3450760, + "normalized_name": "cross court tennis 3" + }, + { + "appid": 3450780, + "normalized_name": "primordial empire" + }, + { + "appid": 3450790, + "normalized_name": "spacehack eden" + }, + { + "appid": 3450800, + "normalized_name": "bloodline" + }, + { + "appid": 3450810, + "normalized_name": "sci futa" + }, + { + "appid": 3450820, + "normalized_name": "worn out" + }, + { + "appid": 3450880, + "normalized_name": "hunter into the abyss" + }, + { + "appid": 3450890, + "normalized_name": "the future is ours" + }, + { + "appid": 3450900, + "normalized_name": "dosmic" + }, + { + "appid": 3450910, + "normalized_name": "dice builder" + }, + { + "appid": 3450940, + "normalized_name": "math muncher" + }, + { + "appid": 3451020, + "normalized_name": "banker simulator prologue" + }, + { + "appid": 3451030, + "normalized_name": "conveyor" + }, + { + "appid": 3451040, + "normalized_name": "champions city" + }, + { + "appid": 3451060, + "normalized_name": "health insurance claim denier" + }, + { + "appid": 3451130, + "normalized_name": "ascend the dome" + }, + { + "appid": 3451150, + "normalized_name": "false ages the fading light" + }, + { + "appid": 3451200, + "normalized_name": "spider canyon" + }, + { + "appid": 3451210, + "normalized_name": "curs" + }, + { + "appid": 3451220, + "normalized_name": "the second circle" + }, + { + "appid": 3451260, + "normalized_name": "skull rainbow" + }, + { + "appid": 3451270, + "normalized_name": "nachtschicht" + }, + { + "appid": 3451290, + "normalized_name": "pale abyss" + }, + { + "appid": 3451300, + "normalized_name": "boutique builder simulator" + }, + { + "appid": 3451330, + "normalized_name": "lady knight quest" + }, + { + "appid": 3451340, + "normalized_name": "frost bursting with color and life" + }, + { + "appid": 3451380, + "normalized_name": "game of grass" + }, + { + "appid": 3451400, + "normalized_name": "don't come home until you save the world" + }, + { + "appid": 3451440, + "normalized_name": "train valley origins" + }, + { + "appid": 3451470, + "normalized_name": "molten maze" + }, + { + "appid": 3451480, + "normalized_name": "scallywag's revenge" + }, + { + "appid": 3451490, + "normalized_name": "firetruck rescue" + }, + { + "appid": 3451500, + "normalized_name": "car guys" + }, + { + "appid": 3451520, + "normalized_name": "kingdom lands" + }, + { + "appid": 3451530, + "normalized_name": "magivor" + }, + { + "appid": 3451540, + "normalized_name": "planet hero" + }, + { + "appid": 3451550, + "normalized_name": "robot problems" + }, + { + "appid": 3451560, + "normalized_name": "pc store simulator" + }, + { + "appid": 3451570, + "normalized_name": "rope guy" + }, + { + "appid": 3451580, + "normalized_name": "sobakan" + }, + { + "appid": 3451590, + "normalized_name": "zombie dash" + }, + { + "appid": 3451600, + "normalized_name": "transregnum" + }, + { + "appid": 3451620, + "normalized_name": "the jester" + }, + { + "appid": 3451670, + "normalized_name": "quallet 2" + }, + { + "appid": 3451690, + "normalized_name": "crash and conquer" + }, + { + "appid": 3451720, + "normalized_name": "street life hollow earth" + }, + { + "appid": 3451810, + "normalized_name": "staroot" + }, + { + "appid": 3451820, + "normalized_name": "plates of peril" + }, + { + "appid": 3451930, + "normalized_name": "tricks treats and mirrors an eog side story" + }, + { + "appid": 3451940, + "normalized_name": "escape from the archives" + }, + { + "appid": 3451960, + "normalized_name": "101 cats hidden in new delhi" + }, + { + "appid": 3451970, + "normalized_name": "backrooms anomaly" + }, + { + "appid": 3451980, + "normalized_name": "soul's remnant" + }, + { + "appid": 3451990, + "normalized_name": "lost lune ~ the foreign god's eternal night" + }, + { + "appid": 3452010, + "normalized_name": "101 cats hidden in istanbul" + }, + { + "appid": 3452020, + "normalized_name": "101 cats hidden in london" + }, + { + "appid": 3452040, + "normalized_name": "affraid" + }, + { + "appid": 3452050, + "normalized_name": "mighty 1990" + }, + { + "appid": 3452060, + "normalized_name": "tiny takedowns" + }, + { + "appid": 3452160, + "normalized_name": "remnants of the witch" + }, + { + "appid": 3452170, + "normalized_name": "sky resort 3" + }, + { + "appid": 3452230, + "normalized_name": "succubus of aphrodisia ako's first embrace" + }, + { + "appid": 3452240, + "normalized_name": "mayday trials" + }, + { + "appid": 3452270, + "normalized_name": "secret paws cozy offices" + }, + { + "appid": 3452280, + "normalized_name": "the solitude project" + }, + { + "appid": 3452290, + "normalized_name": "borrowed thyme" + }, + { + "appid": 3452320, + "normalized_name": "东方龙华传 the gatekeeper of scarlet's mansion" + }, + { + "appid": 3452370, + "normalized_name": "anderkant 3" + }, + { + "appid": 3452390, + "normalized_name": "ancient ocean the fall of atlantis" + }, + { + "appid": 3452400, + "normalized_name": "demiurge sacrifice" + }, + { + "appid": 3452530, + "normalized_name": "run sprint parkour!" + }, + { + "appid": 3452540, + "normalized_name": "史莱姆异世录" + }, + { + "appid": 3452610, + "normalized_name": "奇趣博物馆" + }, + { + "appid": 3452630, + "normalized_name": "欧派大作战2:华的湖中小屋" + }, + { + "appid": 3452650, + "normalized_name": "soul survivor" + }, + { + "appid": 3452670, + "normalized_name": "妄生 wandering souls" + }, + { + "appid": 3452680, + "normalized_name": "ronin's way" + }, + { + "appid": 3452740, + "normalized_name": "oil refinery the simulation" + }, + { + "appid": 3452750, + "normalized_name": "规则怪谈:商场" + }, + { + "appid": 3452770, + "normalized_name": "catacomb" + }, + { + "appid": 3452790, + "normalized_name": "黄色猫片" + }, + { + "appid": 3452800, + "normalized_name": "sniper at work" + }, + { + "appid": 3452840, + "normalized_name": "primal fray prologue" + }, + { + "appid": 3452900, + "normalized_name": "机器塔2984" + }, + { + "appid": 3452910, + "normalized_name": "varjomana" + }, + { + "appid": 3452940, + "normalized_name": "prism master tape" + }, + { + "appid": 3452960, + "normalized_name": "darktopia" + }, + { + "appid": 3452980, + "normalized_name": "哆奇塔" + }, + { + "appid": 3452990, + "normalized_name": "knight's errand" + }, + { + "appid": 3453000, + "normalized_name": "spear" + }, + { + "appid": 3453040, + "normalized_name": "inflation inc." + }, + { + "appid": 3453060, + "normalized_name": "the forest of black eden" + }, + { + "appid": 3453100, + "normalized_name": "the battle of jhansi" + }, + { + "appid": 3453110, + "normalized_name": "cubefence" + }, + { + "appid": 3453140, + "normalized_name": "race master" + }, + { + "appid": 3453150, + "normalized_name": "愉快でくだらないゲーム" + }, + { + "appid": 3453240, + "normalized_name": "the highland ritual" + }, + { + "appid": 3453290, + "normalized_name": "my gambian boyfriend" + }, + { + "appid": 3453330, + "normalized_name": "cult leader simulator" + }, + { + "appid": 3453360, + "normalized_name": "tribute" + }, + { + "appid": 3453370, + "normalized_name": "lust bet milf" + }, + { + "appid": 3453390, + "normalized_name": "squaser 3" + }, + { + "appid": 3453400, + "normalized_name": "machinery 3" + }, + { + "appid": 3453420, + "normalized_name": "shroud of gloom" + }, + { + "appid": 3453440, + "normalized_name": "reap" + }, + { + "appid": 3453470, + "normalized_name": "恋爱泡馍!青春老陕:shannxi love story" + }, + { + "appid": 3453490, + "normalized_name": "rootbound" + }, + { + "appid": 3453500, + "normalized_name": "академия дронов" + }, + { + "appid": 3453520, + "normalized_name": "chainward" + }, + { + "appid": 3453530, + "normalized_name": "coffie simulator" + }, + { + "appid": 3453540, + "normalized_name": "jurard run" + }, + { + "appid": 3453570, + "normalized_name": "supercar collection simulator prologue" + }, + { + "appid": 3453600, + "normalized_name": "supercar collection simulator" + }, + { + "appid": 3453610, + "normalized_name": "hoover heroes" + }, + { + "appid": 3453650, + "normalized_name": "slimeisland" + }, + { + "appid": 3453660, + "normalized_name": "archerry storm" + }, + { + "appid": 3453670, + "normalized_name": "dead daylight 死昼" + }, + { + "appid": 3453680, + "normalized_name": "where is my hat?" + }, + { + "appid": 3453840, + "normalized_name": "dead spaceshot" + }, + { + "appid": 3453870, + "normalized_name": "the daruma challenge" + }, + { + "appid": 3453890, + "normalized_name": "catshift" + }, + { + "appid": 3453900, + "normalized_name": "micromega" + }, + { + "appid": 3453930, + "normalized_name": "battow mages and monsters" + }, + { + "appid": 3454040, + "normalized_name": "interimperium" + }, + { + "appid": 3454130, + "normalized_name": "superstition blackcat" + }, + { + "appid": 3454180, + "normalized_name": "no rest for lex" + }, + { + "appid": 3454190, + "normalized_name": "the four money bears berryville" + }, + { + "appid": 3454200, + "normalized_name": "101 cats hidden in milan" + }, + { + "appid": 3454210, + "normalized_name": "101 cats hidden in vienna" + }, + { + "appid": 3454220, + "normalized_name": "101 cats hidden in new york" + }, + { + "appid": 3454230, + "normalized_name": "gun painter sim" + }, + { + "appid": 3454250, + "normalized_name": "101 cats hidden in paris" + }, + { + "appid": 3454260, + "normalized_name": "metal treasure hunt simulator" + }, + { + "appid": 3454270, + "normalized_name": "forklift sim" + }, + { + "appid": 3454280, + "normalized_name": "timeless odyssey" + }, + { + "appid": 3454300, + "normalized_name": "west escape" + }, + { + "appid": 3454350, + "normalized_name": "conversion strain" + }, + { + "appid": 3454410, + "normalized_name": "sea battle simulator" + }, + { + "appid": 3454440, + "normalized_name": "interactive sex incest twins bath" + }, + { + "appid": 3454470, + "normalized_name": "9mm roulette 💀" + }, + { + "appid": 3454480, + "normalized_name": "gnaughty gnomes" + }, + { + "appid": 3454520, + "normalized_name": "death drive" + }, + { + "appid": 3454530, + "normalized_name": "lets get loot!" + }, + { + "appid": 3454540, + "normalized_name": "whitematter" + }, + { + "appid": 3454570, + "normalized_name": "schoolboy escape 2 village" + }, + { + "appid": 3454580, + "normalized_name": "kaaz featuring akilah & zak" + }, + { + "appid": 3454590, + "normalized_name": "cornerpond" + }, + { + "appid": 3454610, + "normalized_name": "poco" + }, + { + "appid": 3454620, + "normalized_name": "monsters tcg fishing" + }, + { + "appid": 3454630, + "normalized_name": "spaceship idle design build explore & battle" + }, + { + "appid": 3454650, + "normalized_name": "bitcraft online" + }, + { + "appid": 3454660, + "normalized_name": "color factory automation meets canvas" + }, + { + "appid": 3454670, + "normalized_name": "planet of the ants" + }, + { + "appid": 3454680, + "normalized_name": "mini soccer" + }, + { + "appid": 3454690, + "normalized_name": "regotown" + }, + { + "appid": 3454700, + "normalized_name": "horrows end" + }, + { + "appid": 3454750, + "normalized_name": "in another world" + }, + { + "appid": 3454770, + "normalized_name": "endless machines" + }, + { + "appid": 3454780, + "normalized_name": "terradune" + }, + { + "appid": 3454810, + "normalized_name": "poltergeist prodigy" + }, + { + "appid": 3454830, + "normalized_name": "surfsup" + }, + { + "appid": 3454840, + "normalized_name": "boast guards" + }, + { + "appid": 3454910, + "normalized_name": "metro mini market simulator" + }, + { + "appid": 3454920, + "normalized_name": "banpo's bridge wondrous worlds" + }, + { + "appid": 3454930, + "normalized_name": "shadows of memory ll" + }, + { + "appid": 3455030, + "normalized_name": "go kart racing 2" + }, + { + "appid": 3455040, + "normalized_name": "bread & butter" + }, + { + "appid": 3455070, + "normalized_name": "doki doki tijmen club" + }, + { + "appid": 3455080, + "normalized_name": "rakka wake 01 soot" + }, + { + "appid": 3455110, + "normalized_name": "advent of the reaper" + }, + { + "appid": 3455140, + "normalized_name": "三国阵" + }, + { + "appid": 3455160, + "normalized_name": "broken epoch" + }, + { + "appid": 3455320, + "normalized_name": "supre immune" + }, + { + "appid": 3455330, + "normalized_name": "科技素" + }, + { + "appid": 3455380, + "normalized_name": "chemical burn" + }, + { + "appid": 3455450, + "normalized_name": "useless princess and the village renovation" + }, + { + "appid": 3455870, + "normalized_name": "congruence" + }, + { + "appid": 3456160, + "normalized_name": "truck driving cargo simulator" + }, + { + "appid": 3456170, + "normalized_name": "ex★termi" + }, + { + "appid": 3456200, + "normalized_name": "the night museum" + }, + { + "appid": 3456220, + "normalized_name": "techguardian territory defense" + }, + { + "appid": 3456230, + "normalized_name": "dotu" + }, + { + "appid": 3456250, + "normalized_name": "爱心方块 square love" + }, + { + "appid": 3456260, + "normalized_name": "in search of something" + }, + { + "appid": 3456300, + "normalized_name": "tatar altan vs shaitan" + }, + { + "appid": 3456340, + "normalized_name": "harold rabbit finder of lost things" + }, + { + "appid": 3456350, + "normalized_name": "where the walls breathe" + }, + { + "appid": 3456460, + "normalized_name": "sailor simulator world war ii" + }, + { + "appid": 3456470, + "normalized_name": "faereld old blood" + }, + { + "appid": 3456480, + "normalized_name": "魔法幸存者 magic survivors" + }, + { + "appid": 3456550, + "normalized_name": "beast's bane" + }, + { + "appid": 3456640, + "normalized_name": "hopfall" + }, + { + "appid": 3456720, + "normalized_name": "the maid" + }, + { + "appid": 3456730, + "normalized_name": "wonderlang portuguese" + }, + { + "appid": 3456760, + "normalized_name": "seller simulator" + }, + { + "appid": 3456800, + "normalized_name": "rock crusher" + }, + { + "appid": 3456810, + "normalized_name": "frame machina ocularzero" + }, + { + "appid": 3456830, + "normalized_name": "超探偵シャーロックちゃん~掟破りのミスディレクション~" + }, + { + "appid": 3456860, + "normalized_name": "dice & figurines business life simulator" + }, + { + "appid": 3456880, + "normalized_name": "pinball simulator" + }, + { + "appid": 3456910, + "normalized_name": "rush tactics" + }, + { + "appid": 3456920, + "normalized_name": "isle of pirates" + }, + { + "appid": 3456930, + "normalized_name": "pure pool pro" + }, + { + "appid": 3456940, + "normalized_name": "egg racing" + }, + { + "appid": 3456950, + "normalized_name": "pixel gun 2" + }, + { + "appid": 3456960, + "normalized_name": "scp origins forgotten steps" + }, + { + "appid": 3456970, + "normalized_name": "death kid" + }, + { + "appid": 3457070, + "normalized_name": "timeparadox" + }, + { + "appid": 3457080, + "normalized_name": "four mini kingdoms war" + }, + { + "appid": 3457100, + "normalized_name": "tiaoyvdexiaomao" + }, + { + "appid": 3457140, + "normalized_name": "鸡哥守护者" + }, + { + "appid": 3457170, + "normalized_name": "battle witch" + }, + { + "appid": 3457200, + "normalized_name": "witch pachi" + }, + { + "appid": 3457230, + "normalized_name": "idle critter adventure" + }, + { + "appid": 3457240, + "normalized_name": "笨笨传奇" + }, + { + "appid": 3457380, + "normalized_name": "waifu shop" + }, + { + "appid": 3457390, + "normalized_name": "little wings deliveries" + }, + { + "appid": 3457410, + "normalized_name": "zombie tide incoming final defense" + }, + { + "appid": 3457460, + "normalized_name": "mermeows chill cat mermaids" + }, + { + "appid": 3457480, + "normalized_name": "foetality fetus deletus" + }, + { + "appid": 3457490, + "normalized_name": "senet households" + }, + { + "appid": 3457590, + "normalized_name": "betty boom" + }, + { + "appid": 3457660, + "normalized_name": "wav ocs airport v2" + }, + { + "appid": 3457690, + "normalized_name": "genesis" + }, + { + "appid": 3457700, + "normalized_name": "dungeon! order of the raven" + }, + { + "appid": 3457730, + "normalized_name": "area51" + }, + { + "appid": 3457740, + "normalized_name": "cool kingdom" + }, + { + "appid": 3457780, + "normalized_name": "bone n' gone" + }, + { + "appid": 3457790, + "normalized_name": "toy scrappers" + }, + { + "appid": 3457800, + "normalized_name": "barabizna" + }, + { + "appid": 3457830, + "normalized_name": "cityventory" + }, + { + "appid": 3457940, + "normalized_name": "funkyheart" + }, + { + "appid": 3457950, + "normalized_name": "warpswap" + }, + { + "appid": 3458030, + "normalized_name": "desctop" + }, + { + "appid": 3458050, + "normalized_name": "mailstrom" + }, + { + "appid": 3458090, + "normalized_name": "broadcast empire" + }, + { + "appid": 3458220, + "normalized_name": "station master rpg" + }, + { + "appid": 3458280, + "normalized_name": "book head monster" + }, + { + "appid": 3458300, + "normalized_name": "シーモンタウンtdふたつの魔法の杖と危険すぎた追跡" + }, + { + "appid": 3458330, + "normalized_name": "d.o.g.s." + }, + { + "appid": 3458340, + "normalized_name": "atomanta" + }, + { + "appid": 3458380, + "normalized_name": "the week with grugles" + }, + { + "appid": 3458410, + "normalized_name": "give me panty‼" + }, + { + "appid": 3458500, + "normalized_name": "lichgate tower survivor" + }, + { + "appid": 3458540, + "normalized_name": "new meat" + }, + { + "appid": 3458600, + "normalized_name": "nindo 星影の守護者" + }, + { + "appid": 3458610, + "normalized_name": "i’ll fuck your grandpa!" + }, + { + "appid": 3458620, + "normalized_name": "轮回修仙传" + }, + { + "appid": 3458640, + "normalized_name": "乡村老师" + }, + { + "appid": 3458650, + "normalized_name": "fun center simulator" + }, + { + "appid": 3458690, + "normalized_name": "柴设格斗" + }, + { + "appid": 3458750, + "normalized_name": "interstellar escape" + }, + { + "appid": 3458840, + "normalized_name": "atven" + }, + { + "appid": 3458850, + "normalized_name": "puppycraft" + }, + { + "appid": 3458860, + "normalized_name": "seducing my elf family" + }, + { + "appid": 3458870, + "normalized_name": "maze maou" + }, + { + "appid": 3458880, + "normalized_name": "hammam simulator" + }, + { + "appid": 3458890, + "normalized_name": "doom spiral" + }, + { + "appid": 3458900, + "normalized_name": "problem solved" + }, + { + "appid": 3458930, + "normalized_name": "ethereal odyssey" + }, + { + "appid": 3458960, + "normalized_name": "cattris" + }, + { + "appid": 3459030, + "normalized_name": "dreadcore locked unit" + }, + { + "appid": 3459050, + "normalized_name": "acrolyte" + }, + { + "appid": 3459080, + "normalized_name": "oh buoy!" + }, + { + "appid": 3459100, + "normalized_name": "biomenace" + }, + { + "appid": 3459130, + "normalized_name": "beastly bites" + }, + { + "appid": 3459140, + "normalized_name": "flooded lands" + }, + { + "appid": 3459150, + "normalized_name": "the fortress" + }, + { + "appid": 3459160, + "normalized_name": "zombie tower defense" + }, + { + "appid": 3459210, + "normalized_name": "veil of sanity" + }, + { + "appid": 3459310, + "normalized_name": "jameela and the treasure of the demon queen" + }, + { + "appid": 3459320, + "normalized_name": "the two thinkers" + }, + { + "appid": 3459330, + "normalized_name": "tire fire rally" + }, + { + "appid": 3459340, + "normalized_name": "lacey's flash games" + }, + { + "appid": 3459390, + "normalized_name": "switched destiny" + }, + { + "appid": 3459420, + "normalized_name": "y2roll" + }, + { + "appid": 3459460, + "normalized_name": "macro data refinement simulator" + }, + { + "appid": 3459470, + "normalized_name": "i hope you die!" + }, + { + "appid": 3459480, + "normalized_name": "the week with grugles 2" + }, + { + "appid": 3459500, + "normalized_name": "zombie cubes 2" + }, + { + "appid": 3459510, + "normalized_name": "blitzpoint" + }, + { + "appid": 3459520, + "normalized_name": "rolling bombs" + }, + { + "appid": 3459580, + "normalized_name": "brainwasher" + }, + { + "appid": 3459590, + "normalized_name": "tetra's escape 2" + }, + { + "appid": 3459600, + "normalized_name": "teraslide" + }, + { + "appid": 3459610, + "normalized_name": "untold winter" + }, + { + "appid": 3459670, + "normalized_name": "run jump climb disarm" + }, + { + "appid": 3459680, + "normalized_name": "indicate" + }, + { + "appid": 3459690, + "normalized_name": "method" + }, + { + "appid": 3459700, + "normalized_name": "significant" + }, + { + "appid": 3459740, + "normalized_name": "cemetery warrior 7 boss rush" + }, + { + "appid": 3459760, + "normalized_name": "18th floor(18层楼)" + }, + { + "appid": 3459810, + "normalized_name": "扩张吧王国 expand the kingdom" + }, + { + "appid": 3459830, + "normalized_name": "sweet glassirl" + }, + { + "appid": 3459840, + "normalized_name": "kult rising" + }, + { + "appid": 3459850, + "normalized_name": "monster girl saga fallen heroes" + }, + { + "appid": 3459860, + "normalized_name": "hentai shop simulator" + }, + { + "appid": 3459880, + "normalized_name": "幻想之旅 fantasyjourney" + }, + { + "appid": 3459890, + "normalized_name": "dice or die" + }, + { + "appid": 3459900, + "normalized_name": "a.m.c.a. monitor" + }, + { + "appid": 3459910, + "normalized_name": "evaluate" + }, + { + "appid": 3459920, + "normalized_name": "fractious" + }, + { + "appid": 3459930, + "normalized_name": "lexis" + }, + { + "appid": 3459940, + "normalized_name": "duck's hunt" + }, + { + "appid": 3459950, + "normalized_name": "monster tactic" + }, + { + "appid": 3459960, + "normalized_name": "摇曳天堂:命运之钟(swaying heaven:destiny clock)" + }, + { + "appid": 3459990, + "normalized_name": "cosmic composer" + }, + { + "appid": 3460020, + "normalized_name": "幻想症 fantasy illness" + }, + { + "appid": 3460040, + "normalized_name": "梦境管理公司:梦魇清洁工" + }, + { + "appid": 3460050, + "normalized_name": "a sexy tour with tanvi" + }, + { + "appid": 3460060, + "normalized_name": "bakken ski jumping 2025" + }, + { + "appid": 3460100, + "normalized_name": "hit and stand blackjack" + }, + { + "appid": 3460110, + "normalized_name": "天地有私,宿命之主" + }, + { + "appid": 3460150, + "normalized_name": "mighty wars" + }, + { + "appid": 3460170, + "normalized_name": "whispers of blackridge" + }, + { + "appid": 3460190, + "normalized_name": "color madness" + }, + { + "appid": 3460220, + "normalized_name": "金币收集挑战" + }, + { + "appid": 3460230, + "normalized_name": "rake the lake" + }, + { + "appid": 3460280, + "normalized_name": "unique ladies" + }, + { + "appid": 3460310, + "normalized_name": "ocean otter climb" + }, + { + "appid": 3460320, + "normalized_name": "gemmy's adventure" + }, + { + "appid": 3460330, + "normalized_name": "nexus_drop" + }, + { + "appid": 3460340, + "normalized_name": "디시인사이드 중붕이의 모험(joongboongi's adventure)" + }, + { + "appid": 3460370, + "normalized_name": "virgin simulator" + }, + { + "appid": 3460380, + "normalized_name": "virtual nature" + }, + { + "appid": 3460400, + "normalized_name": "harrowlands" + }, + { + "appid": 3460440, + "normalized_name": "only up chan chained together" + }, + { + "appid": 3460500, + "normalized_name": "keyless" + }, + { + "appid": 3460520, + "normalized_name": "game room" + }, + { + "appid": 3460530, + "normalized_name": "forsaken island" + }, + { + "appid": 3460540, + "normalized_name": "cardtographer" + }, + { + "appid": 3460570, + "normalized_name": "deck combo" + }, + { + "appid": 3460610, + "normalized_name": "mars era" + }, + { + "appid": 3460680, + "normalized_name": "wonderlang italian" + }, + { + "appid": 3460690, + "normalized_name": "츄츄를 찾아서" + }, + { + "appid": 3460770, + "normalized_name": "rogue melee" + }, + { + "appid": 3460780, + "normalized_name": "hidden cats japan" + }, + { + "appid": 3460790, + "normalized_name": "hidden skulls" + }, + { + "appid": 3460800, + "normalized_name": "hidden cats city" + }, + { + "appid": 3460840, + "normalized_name": "gloamvault" + }, + { + "appid": 3460910, + "normalized_name": "whale flesh" + }, + { + "appid": 3460920, + "normalized_name": "void frontiers" + }, + { + "appid": 3460950, + "normalized_name": "pillow fight" + }, + { + "appid": 3461060, + "normalized_name": "new face on the block" + }, + { + "appid": 3461090, + "normalized_name": "run veggies!" + }, + { + "appid": 3461110, + "normalized_name": "berry picker" + }, + { + "appid": 3461130, + "normalized_name": "play friends party games" + }, + { + "appid": 3461160, + "normalized_name": "强者群英传" + }, + { + "appid": 3461190, + "normalized_name": "magatch" + }, + { + "appid": 3461200, + "normalized_name": "matchmania donate" + }, + { + "appid": 3461210, + "normalized_name": "my bird" + }, + { + "appid": 3461220, + "normalized_name": "monsterend" + }, + { + "appid": 3461230, + "normalized_name": "prex // naq" + }, + { + "appid": 3461270, + "normalized_name": "异星家园(xenohaven)" + }, + { + "appid": 3461280, + "normalized_name": "poly up" + }, + { + "appid": 3461290, + "normalized_name": "ユメギド" + }, + { + "appid": 3461300, + "normalized_name": "i'm truely a good guy!" + }, + { + "appid": 3461410, + "normalized_name": "snowmelt manor" + }, + { + "appid": 3461430, + "normalized_name": "corporate suck up" + }, + { + "appid": 3461440, + "normalized_name": "wooden battles 2" + }, + { + "appid": 3461460, + "normalized_name": "刑死のためのカウンセル" + }, + { + "appid": 3461480, + "normalized_name": "the new kid on the block" + }, + { + "appid": 3461490, + "normalized_name": "arthur's camping adventure" + }, + { + "appid": 3461500, + "normalized_name": "arthur's thinking games" + }, + { + "appid": 3461510, + "normalized_name": "bug bait" + }, + { + "appid": 3461520, + "normalized_name": "鸡生蛋蛋生鸡eggchickenfarm" + }, + { + "appid": 3461560, + "normalized_name": "heist royale" + }, + { + "appid": 3461580, + "normalized_name": "再来一枪" + }, + { + "appid": 3461600, + "normalized_name": "cybersim noetic city" + }, + { + "appid": 3461610, + "normalized_name": "牧野之歌:桌面逸境" + }, + { + "appid": 3461620, + "normalized_name": "跨越次元壁的光污染" + }, + { + "appid": 3461630, + "normalized_name": "the lustful inn of female adventurers" + }, + { + "appid": 3461670, + "normalized_name": "samurai arena" + }, + { + "appid": 3461680, + "normalized_name": "restoring the past" + }, + { + "appid": 3461730, + "normalized_name": "喵之塔 末日守卫" + }, + { + "appid": 3461750, + "normalized_name": "where's my kitty" + }, + { + "appid": 3461760, + "normalized_name": "tractor driving simulator" + }, + { + "appid": 3461800, + "normalized_name": "devil jam" + }, + { + "appid": 3461810, + "normalized_name": "threaded dungeons" + }, + { + "appid": 3461880, + "normalized_name": "card linker" + }, + { + "appid": 3461890, + "normalized_name": "cyber farmer" + }, + { + "appid": 3461910, + "normalized_name": "audiorace" + }, + { + "appid": 3461920, + "normalized_name": "the boba teashop" + }, + { + "appid": 3461950, + "normalized_name": "霊屋" + }, + { + "appid": 3462000, + "normalized_name": "lobotrypo" + }, + { + "appid": 3462040, + "normalized_name": "american cooking simulator" + }, + { + "appid": 3462100, + "normalized_name": "stripbrickbreakersimulator♡脱衣ブロック崩し♡シミュレーター" + }, + { + "appid": 3462110, + "normalized_name": "poopy's wonderland" + }, + { + "appid": 3462130, + "normalized_name": "el boletero the space ticketer" + }, + { + "appid": 3462150, + "normalized_name": "turret baffler" + }, + { + "appid": 3462180, + "normalized_name": "re – fracture the prophet’s awakening" + }, + { + "appid": 3462190, + "normalized_name": "phase zero" + }, + { + "appid": 3462200, + "normalized_name": "diecast car shop simulator" + }, + { + "appid": 3462210, + "normalized_name": "mini idle dice monster" + }, + { + "appid": 3462290, + "normalized_name": "自梳:消逝的姑婆屋 self comb women home left behind" + }, + { + "appid": 3462330, + "normalized_name": "goldfish" + }, + { + "appid": 3462340, + "normalized_name": "monkey testing" + }, + { + "appid": 3462360, + "normalized_name": "adventurer shop simulator" + }, + { + "appid": 3462560, + "normalized_name": "retro killer" + }, + { + "appid": 3462570, + "normalized_name": "tombs of myra" + }, + { + "appid": 3462580, + "normalized_name": "factory life" + }, + { + "appid": 3462600, + "normalized_name": "differences online" + }, + { + "appid": 3462730, + "normalized_name": "disaster arms impact project b.a.h.n." + }, + { + "appid": 3462790, + "normalized_name": "battle for embolia" + }, + { + "appid": 3462890, + "normalized_name": "crowley hotel. the jh chronicles" + }, + { + "appid": 3462900, + "normalized_name": "streaming for love" + }, + { + "appid": 3462910, + "normalized_name": "space sucks" + }, + { + "appid": 3462940, + "normalized_name": "revival of the noble blade" + }, + { + "appid": 3462950, + "normalized_name": "icetwine" + }, + { + "appid": 3462960, + "normalized_name": "malón" + }, + { + "appid": 3462980, + "normalized_name": "nirvana" + }, + { + "appid": 3463000, + "normalized_name": "les nominés du néombre" + }, + { + "appid": 3463020, + "normalized_name": "phantom house" + }, + { + "appid": 3463030, + "normalized_name": "death to the universe act i" + }, + { + "appid": 3463050, + "normalized_name": "dreams of aether" + }, + { + "appid": 3463100, + "normalized_name": "shameless afterparty" + }, + { + "appid": 3463170, + "normalized_name": "dyskairos" + }, + { + "appid": 3463180, + "normalized_name": "archaeology frozen space" + }, + { + "appid": 3463190, + "normalized_name": "archaeology frozen pirates" + }, + { + "appid": 3463220, + "normalized_name": "clockwork palace mysteries of the mughal mechanicum" + }, + { + "appid": 3463240, + "normalized_name": "quadrivium paths of history" + }, + { + "appid": 3463250, + "normalized_name": "idle space shooter" + }, + { + "appid": 3463260, + "normalized_name": "sea hunter idle" + }, + { + "appid": 3463290, + "normalized_name": "hex blast" + }, + { + "appid": 3463360, + "normalized_name": "deerboy and the light of eden" + }, + { + "appid": 3463400, + "normalized_name": "gsc game store chronicle" + }, + { + "appid": 3463460, + "normalized_name": "hidden tomatoes 3" + }, + { + "appid": 3463470, + "normalized_name": "hidden tomatoes farm frenzy" + }, + { + "appid": 3463490, + "normalized_name": "frosty enterprise prologue" + }, + { + "appid": 3463530, + "normalized_name": "fisheye" + }, + { + "appid": 3463560, + "normalized_name": "zovid27 the last vaccine" + }, + { + "appid": 3463580, + "normalized_name": "telealiens" + }, + { + "appid": 3463660, + "normalized_name": "necrotombs" + }, + { + "appid": 3463690, + "normalized_name": "sojourn saga" + }, + { + "appid": 3463700, + "normalized_name": "gameon!" + }, + { + "appid": 3463750, + "normalized_name": "escape the research center" + }, + { + "appid": 3463780, + "normalized_name": "strive a path forward" + }, + { + "appid": 3463810, + "normalized_name": "はせがわのぞみ" + }, + { + "appid": 3463820, + "normalized_name": "unforgettable 4th dimensional bartending" + }, + { + "appid": 3463830, + "normalized_name": "plunderdome" + }, + { + "appid": 3463900, + "normalized_name": "ルミナスプロジェクト" + }, + { + "appid": 3463910, + "normalized_name": "snow • fall" + }, + { + "appid": 3463930, + "normalized_name": "eteriu" + }, + { + "appid": 3464040, + "normalized_name": "hole war the abyss" + }, + { + "appid": 3464080, + "normalized_name": "cats & critters a dungeon claw er" + }, + { + "appid": 3464180, + "normalized_name": "reinbo" + }, + { + "appid": 3464230, + "normalized_name": "the meowfficer" + }, + { + "appid": 3464320, + "normalized_name": "hgpp" + }, + { + "appid": 3464350, + "normalized_name": "dungeon of love catch monsters" + }, + { + "appid": 3464360, + "normalized_name": "knight lobster" + }, + { + "appid": 3464370, + "normalized_name": "sani yang's laboratory" + }, + { + "appid": 3464390, + "normalized_name": "stoned" + }, + { + "appid": 3464490, + "normalized_name": "lord of ogre" + }, + { + "appid": 3464500, + "normalized_name": "100 hidden cats playground" + }, + { + "appid": 3464540, + "normalized_name": "kaiten" + }, + { + "appid": 3464550, + "normalized_name": "no human shall pass" + }, + { + "appid": 3464560, + "normalized_name": "spared!" + }, + { + "appid": 3464570, + "normalized_name": "я беременна в 16" + }, + { + "appid": 3464580, + "normalized_name": "flat gravity cult" + }, + { + "appid": 3464600, + "normalized_name": "旧日棋局" + }, + { + "appid": 3464610, + "normalized_name": "死者还阳escape from the underworld" + }, + { + "appid": 3464620, + "normalized_name": "bondage simulator" + }, + { + "appid": 3464630, + "normalized_name": "dark lord leona" + }, + { + "appid": 3464640, + "normalized_name": "ssr summoners" + }, + { + "appid": 3464680, + "normalized_name": "swords & bones 5" + }, + { + "appid": 3464690, + "normalized_name": "out of the fog" + }, + { + "appid": 3464700, + "normalized_name": "lord of island" + }, + { + "appid": 3464710, + "normalized_name": "tiny bomber" + }, + { + "appid": 3464760, + "normalized_name": "tiny crypts" + }, + { + "appid": 3464800, + "normalized_name": "grand taking ages" + }, + { + "appid": 3464820, + "normalized_name": "jewel match solitaire fantasy collector's" + }, + { + "appid": 3464830, + "normalized_name": "sound of survival" + }, + { + "appid": 3464900, + "normalized_name": "vanguard princess mobile (pc port)" + }, + { + "appid": 3464920, + "normalized_name": "flesh and fury" + }, + { + "appid": 3464950, + "normalized_name": "museums of history" + }, + { + "appid": 3464960, + "normalized_name": "skill issue vr" + }, + { + "appid": 3464970, + "normalized_name": "holder of place" + }, + { + "appid": 3465050, + "normalized_name": "bloop" + }, + { + "appid": 3465080, + "normalized_name": "dungeons bomb" + }, + { + "appid": 3465130, + "normalized_name": "no jokes with mages" + }, + { + "appid": 3465170, + "normalized_name": "f11 football manager" + }, + { + "appid": 3465180, + "normalized_name": "streamlands defense" + }, + { + "appid": 3465190, + "normalized_name": "aerial_knight's dropshot" + }, + { + "appid": 3465220, + "normalized_name": "go go! grapplestaff" + }, + { + "appid": 3465310, + "normalized_name": "retronika" + }, + { + "appid": 3465370, + "normalized_name": "behind the backrooms lost levels" + }, + { + "appid": 3465390, + "normalized_name": "only up !!!the king of spring stilts" + }, + { + "appid": 3465400, + "normalized_name": "homaysa free to play" + }, + { + "appid": 3465440, + "normalized_name": "citadrill" + }, + { + "appid": 3465450, + "normalized_name": "omoneko" + }, + { + "appid": 3465470, + "normalized_name": "formula heroes gp" + }, + { + "appid": 3465510, + "normalized_name": "ulyana's shift" + }, + { + "appid": 3465680, + "normalized_name": "sex note" + }, + { + "appid": 3465740, + "normalized_name": "v2 cucumber scam" + }, + { + "appid": 3465780, + "normalized_name": "super golden odyssey 3d platformer world" + }, + { + "appid": 3465820, + "normalized_name": "cyber siege" + }, + { + "appid": 3465830, + "normalized_name": "alex hill the body at clearwater bay" + }, + { + "appid": 3465850, + "normalized_name": "manhunter" + }, + { + "appid": 3465900, + "normalized_name": "water ring toss sim" + }, + { + "appid": 3466030, + "normalized_name": "《暗门》" + }, + { + "appid": 3466110, + "normalized_name": "tactical ghost" + }, + { + "appid": 3466130, + "normalized_name": "obscura protocol" + }, + { + "appid": 3466180, + "normalized_name": "red supreme" + }, + { + "appid": 3466230, + "normalized_name": "beamdown" + }, + { + "appid": 3466260, + "normalized_name": "adrenaline online" + }, + { + "appid": 3466300, + "normalized_name": "eternal prowl" + }, + { + "appid": 3466310, + "normalized_name": "pathup!" + }, + { + "appid": 3466320, + "normalized_name": "vinyls" + }, + { + "appid": 3466340, + "normalized_name": "mumbo shuffle" + }, + { + "appid": 3466370, + "normalized_name": "mystic tesserae" + }, + { + "appid": 3466420, + "normalized_name": "100 miami cats" + }, + { + "appid": 3466430, + "normalized_name": "100 berlin cats" + }, + { + "appid": 3466440, + "normalized_name": "100 greece cats" + }, + { + "appid": 3466450, + "normalized_name": "100 india cats" + }, + { + "appid": 3466460, + "normalized_name": "100 singapore cats" + }, + { + "appid": 3466470, + "normalized_name": "nuts for you" + }, + { + "appid": 3466500, + "normalized_name": "putrika 1st.cut the reason she must perish" + }, + { + "appid": 3466530, + "normalized_name": "hathor's peak" + }, + { + "appid": 3466570, + "normalized_name": "italian brainrot in prison" + }, + { + "appid": 3466580, + "normalized_name": "blade of one" + }, + { + "appid": 3466630, + "normalized_name": "grapple simulator" + }, + { + "appid": 3466660, + "normalized_name": "isekai revitalizer" + }, + { + "appid": 3466670, + "normalized_name": "ichigo's study sessions" + }, + { + "appid": 3466680, + "normalized_name": "magical girl opal" + }, + { + "appid": 3467040, + "normalized_name": "bookshop simulator" + }, + { + "appid": 3467280, + "normalized_name": "dominated by yandere goth girlfriend" + }, + { + "appid": 3467390, + "normalized_name": "don't get got" + }, + { + "appid": 3467540, + "normalized_name": "fruit mountain party" + }, + { + "appid": 3467590, + "normalized_name": "tiny tots" + }, + { + "appid": 3467620, + "normalized_name": "no throwing" + }, + { + "appid": 3467700, + "normalized_name": "yeonkyung" + }, + { + "appid": 3467710, + "normalized_name": "wall world 2" + }, + { + "appid": 3467750, + "normalized_name": "fairysite" + }, + { + "appid": 3467770, + "normalized_name": "malpractice hospital" + }, + { + "appid": 3468090, + "normalized_name": "wanderdawn" + }, + { + "appid": 3468160, + "normalized_name": "soccer field pro 3d" + }, + { + "appid": 3468180, + "normalized_name": "app empire tycoon" + }, + { + "appid": 3468200, + "normalized_name": "eden discovery" + }, + { + "appid": 3468230, + "normalized_name": "mop skater" + }, + { + "appid": 3468260, + "normalized_name": "blind_site" + }, + { + "appid": 3468270, + "normalized_name": "tape denial" + }, + { + "appid": 3468280, + "normalized_name": "deathblight jormungandr" + }, + { + "appid": 3468330, + "normalized_name": "fish hunters the most ridiculous fishing simulator 🐟" + }, + { + "appid": 3468350, + "normalized_name": "blockade war stories .vr" + }, + { + "appid": 3468390, + "normalized_name": "wishbind" + }, + { + "appid": 3468430, + "normalized_name": "idle together" + }, + { + "appid": 3468450, + "normalized_name": "blackjack & hookers" + }, + { + "appid": 3468490, + "normalized_name": "medieval war simulator rts" + }, + { + "appid": 3468500, + "normalized_name": "my waifu becomes real" + }, + { + "appid": 3468510, + "normalized_name": "ball torment" + }, + { + "appid": 3468590, + "normalized_name": "astral quest" + }, + { + "appid": 3468600, + "normalized_name": "demonster" + }, + { + "appid": 3468630, + "normalized_name": "farmer's defence 2" + }, + { + "appid": 3468640, + "normalized_name": "afl 26" + }, + { + "appid": 3468670, + "normalized_name": "iron convoy" + }, + { + "appid": 3468720, + "normalized_name": "unexpected cry of the wild" + }, + { + "appid": 3468750, + "normalized_name": "ruins of blackspire" + }, + { + "appid": 3468760, + "normalized_name": "peril in the pines" + }, + { + "appid": 3468780, + "normalized_name": "draftcraft the path of trials" + }, + { + "appid": 3468790, + "normalized_name": "rebel tank solo raid" + }, + { + "appid": 3468810, + "normalized_name": "butterfly x" + }, + { + "appid": 3468820, + "normalized_name": "escape from ghosts" + }, + { + "appid": 3468840, + "normalized_name": "robots and planets" + }, + { + "appid": 3468850, + "normalized_name": "godwreath chapter 1" + }, + { + "appid": 3468870, + "normalized_name": "collection of silly games" + }, + { + "appid": 3468900, + "normalized_name": "flow of fortune" + }, + { + "appid": 3468920, + "normalized_name": "coin devotee" + }, + { + "appid": 3468960, + "normalized_name": "detective firefly" + }, + { + "appid": 3469000, + "normalized_name": "carpathian survival" + }, + { + "appid": 3469010, + "normalized_name": "pill fight" + }, + { + "appid": 3469050, + "normalized_name": "kaila the journey to the underworld" + }, + { + "appid": 3469090, + "normalized_name": "beat garden" + }, + { + "appid": 3469140, + "normalized_name": "backrooms the yellow dream" + }, + { + "appid": 3469190, + "normalized_name": "touhou spell carnival" + }, + { + "appid": 3469220, + "normalized_name": "sally's house" + }, + { + "appid": 3469230, + "normalized_name": "baki hanma blood arena" + }, + { + "appid": 3469260, + "normalized_name": "marblous worlds" + }, + { + "appid": 3469270, + "normalized_name": "iintwo" + }, + { + "appid": 3469310, + "normalized_name": "wheel of words crossword" + }, + { + "appid": 3469340, + "normalized_name": "mysplaced" + }, + { + "appid": 3469350, + "normalized_name": "high mountain abbey" + }, + { + "appid": 3469370, + "normalized_name": "motorcycle sales simulator prologue" + }, + { + "appid": 3469380, + "normalized_name": "don't let me rot" + }, + { + "appid": 3469420, + "normalized_name": "biofactory" + }, + { + "appid": 3469470, + "normalized_name": "a cat named gossamergoober" + }, + { + "appid": 3469500, + "normalized_name": "golden knight" + }, + { + "appid": 3469530, + "normalized_name": "choco clicker world" + }, + { + "appid": 3469570, + "normalized_name": "christmas stories clara and the guiding star collector's" + }, + { + "appid": 3469600, + "normalized_name": "level 13" + }, + { + "appid": 3469620, + "normalized_name": "girlfriend strip blackjack" + }, + { + "appid": 3469750, + "normalized_name": "military incremental complex" + }, + { + "appid": 3469820, + "normalized_name": "cipheur" + }, + { + "appid": 3469850, + "normalized_name": "噩梦摇篮:献花于你" + }, + { + "appid": 3469860, + "normalized_name": "nferium taskforce" + }, + { + "appid": 3469890, + "normalized_name": "spell rift" + }, + { + "appid": 3469990, + "normalized_name": "mama station" + }, + { + "appid": 3470010, + "normalized_name": "infinite origin" + }, + { + "appid": 3470020, + "normalized_name": "eutolant saga" + }, + { + "appid": 3470040, + "normalized_name": "journey to impossible" + }, + { + "appid": 3470050, + "normalized_name": "pure heat" + }, + { + "appid": 3470070, + "normalized_name": "kimbow escape" + }, + { + "appid": 3470080, + "normalized_name": "迷你幻想 pixelegend" + }, + { + "appid": 3470090, + "normalized_name": "derpy fish" + }, + { + "appid": 3470100, + "normalized_name": "气运之子the one of fortune" + }, + { + "appid": 3470140, + "normalized_name": "metamorphosis" + }, + { + "appid": 3470150, + "normalized_name": "blight's grasp" + }, + { + "appid": 3470170, + "normalized_name": "queens casino" + }, + { + "appid": 3470180, + "normalized_name": "warlocked" + }, + { + "appid": 3470190, + "normalized_name": "brightgunner" + }, + { + "appid": 3470220, + "normalized_name": "lazy train game" + }, + { + "appid": 3470230, + "normalized_name": "craftpunk" + }, + { + "appid": 3470250, + "normalized_name": "expedition chronicles" + }, + { + "appid": 3470340, + "normalized_name": "roguecraft" + }, + { + "appid": 3470370, + "normalized_name": "像素英雄 色系战记 pixelhero rainbow legend" + }, + { + "appid": 3470390, + "normalized_name": "cursor survival" + }, + { + "appid": 3470400, + "normalized_name": "9 ways hentai harem" + }, + { + "appid": 3470430, + "normalized_name": "dere quartet" + }, + { + "appid": 3470450, + "normalized_name": "主神试炼" + }, + { + "appid": 3470480, + "normalized_name": "streaming on! vtuber training" + }, + { + "appid": 3470500, + "normalized_name": "ember and blade" + }, + { + "appid": 3470520, + "normalized_name": "trip japan puzzle" + }, + { + "appid": 3470530, + "normalized_name": "perennial dusk kinsenka" + }, + { + "appid": 3470560, + "normalized_name": "millennium dream" + }, + { + "appid": 3470610, + "normalized_name": "破晓" + }, + { + "appid": 3470660, + "normalized_name": "goat survivor" + }, + { + "appid": 3470690, + "normalized_name": "warlocks maze" + }, + { + "appid": 3470800, + "normalized_name": "save mom" + }, + { + "appid": 3470820, + "normalized_name": "ball adventure" + }, + { + "appid": 3470850, + "normalized_name": "void martyrs" + }, + { + "appid": 3470870, + "normalized_name": "lost egg the hard boiled" + }, + { + "appid": 3470880, + "normalized_name": "a home below" + }, + { + "appid": 3470920, + "normalized_name": "territors" + }, + { + "appid": 3470940, + "normalized_name": "little betty gold rush" + }, + { + "appid": 3470970, + "normalized_name": "interactive sex incest sister" + }, + { + "appid": 3470980, + "normalized_name": "town market simulator 2025" + }, + { + "appid": 3471040, + "normalized_name": "코드 안티데시스" + }, + { + "appid": 3471060, + "normalized_name": "sweet delights the girl’s cafe quest" + }, + { + "appid": 3471070, + "normalized_name": "octane100" + }, + { + "appid": 3471090, + "normalized_name": "how much items tanks" + }, + { + "appid": 3471100, + "normalized_name": "how much items plants" + }, + { + "appid": 3471130, + "normalized_name": "casual sport series tennis" + }, + { + "appid": 3471180, + "normalized_name": "freezer pops 2 little blo's party" + }, + { + "appid": 3471210, + "normalized_name": "聖靈之石" + }, + { + "appid": 3471240, + "normalized_name": "boulder crash" + }, + { + "appid": 3471270, + "normalized_name": "island wayfinder" + }, + { + "appid": 3471280, + "normalized_name": "liquor store simulator prologue" + }, + { + "appid": 3471310, + "normalized_name": "kindled hope" + }, + { + "appid": 3471320, + "normalized_name": "abyss unchained" + }, + { + "appid": 3471340, + "normalized_name": "the storied sword" + }, + { + "appid": 3471350, + "normalized_name": "alpha league hd" + }, + { + "appid": 3471370, + "normalized_name": "unnatural beauties" + }, + { + "appid": 3471390, + "normalized_name": "escaping wonderland" + }, + { + "appid": 3471420, + "normalized_name": "atonement" + }, + { + "appid": 3471440, + "normalized_name": "lovely anime puzzle valentine" + }, + { + "appid": 3471580, + "normalized_name": "creatures like us" + }, + { + "appid": 3471590, + "normalized_name": "coffee & boobs" + }, + { + "appid": 3471640, + "normalized_name": "cosmic construct" + }, + { + "appid": 3471670, + "normalized_name": "the flayed man" + }, + { + "appid": 3471760, + "normalized_name": "aleprok" + }, + { + "appid": 3471800, + "normalized_name": "vanguard galaxy" + }, + { + "appid": 3471810, + "normalized_name": "sashimi hearts" + }, + { + "appid": 3471820, + "normalized_name": "roguefall" + }, + { + "appid": 3471830, + "normalized_name": "chronos experiment" + }, + { + "appid": 3471850, + "normalized_name": "disappeared" + }, + { + "appid": 3471890, + "normalized_name": "market garden" + }, + { + "appid": 3471980, + "normalized_name": "fastro dude" + }, + { + "appid": 3472010, + "normalized_name": "the armed shadow" + }, + { + "appid": 3472030, + "normalized_name": "sunny shores coaster ride" + }, + { + "appid": 3472070, + "normalized_name": "project corruption" + }, + { + "appid": 3472080, + "normalized_name": "find the keys" + }, + { + "appid": 3472100, + "normalized_name": "sexstellar" + }, + { + "appid": 3472140, + "normalized_name": "le fol" + }, + { + "appid": 3472190, + "normalized_name": "anime boys mirror quest" + }, + { + "appid": 3472200, + "normalized_name": "stay alive" + }, + { + "appid": 3472230, + "normalized_name": "invader simulator" + }, + { + "appid": 3472260, + "normalized_name": "bubbles the octopus" + }, + { + "appid": 3472270, + "normalized_name": "red pippy" + }, + { + "appid": 3472280, + "normalized_name": "let it riff" + }, + { + "appid": 3472300, + "normalized_name": "medievaly battle simulator" + }, + { + "appid": 3472390, + "normalized_name": "dragon sprouts" + }, + { + "appid": 3472410, + "normalized_name": "mini eco" + }, + { + "appid": 3472420, + "normalized_name": "supershot" + }, + { + "appid": 3472440, + "normalized_name": "magic survivor undead" + }, + { + "appid": 3472490, + "normalized_name": "descendance" + }, + { + "appid": 3472510, + "normalized_name": "iconick duster planets defender" + }, + { + "appid": 3472550, + "normalized_name": "the mr. rabbit magic show" + }, + { + "appid": 3472560, + "normalized_name": "pulled strings" + }, + { + "appid": 3472700, + "normalized_name": "pip puzzle pip and ooma's battle" + }, + { + "appid": 3472710, + "normalized_name": "柔蒂亚克:永眠之城" + }, + { + "appid": 3472740, + "normalized_name": "space eve tan!" + }, + { + "appid": 3472820, + "normalized_name": "the last crypt" + }, + { + "appid": 3472840, + "normalized_name": "by bait or by bullet" + }, + { + "appid": 3472850, + "normalized_name": "指尖问道" + }, + { + "appid": 3472870, + "normalized_name": "public toilet simulator" + }, + { + "appid": 3472880, + "normalized_name": "trivia war" + }, + { + "appid": 3472890, + "normalized_name": "joyquarium" + }, + { + "appid": 3472930, + "normalized_name": "ogrewatch" + }, + { + "appid": 3472960, + "normalized_name": "untold depths" + }, + { + "appid": 3472970, + "normalized_name": "bitliberator" + }, + { + "appid": 3473020, + "normalized_name": "i'd lowkey simp for that bussin femboy at work" + }, + { + "appid": 3473050, + "normalized_name": "ducky the curious" + }, + { + "appid": 3473060, + "normalized_name": "gordon and the light within" + }, + { + "appid": 3473130, + "normalized_name": "valkyrie rosetta" + }, + { + "appid": 3473160, + "normalized_name": "少女与城主" + }, + { + "appid": 3473200, + "normalized_name": "liminal hell" + }, + { + "appid": 3473210, + "normalized_name": "alana" + }, + { + "appid": 3473250, + "normalized_name": "broomsweeper" + }, + { + "appid": 3473260, + "normalized_name": "babyrun" + }, + { + "appid": 3473330, + "normalized_name": "皇上驾到" + }, + { + "appid": 3473350, + "normalized_name": "shrine of the forest god" + }, + { + "appid": 3473400, + "normalized_name": "精灵与爱丽丝" + }, + { + "appid": 3473500, + "normalized_name": "幻想神域 源神啟動" + }, + { + "appid": 3473540, + "normalized_name": "bring slime to mommy" + }, + { + "appid": 3473570, + "normalized_name": "detective the test" + }, + { + "appid": 3473610, + "normalized_name": "bridge constructor studio" + }, + { + "appid": 3473630, + "normalized_name": "stagees just play !" + }, + { + "appid": 3473710, + "normalized_name": "dark in light" + }, + { + "appid": 3473760, + "normalized_name": "mini merchant" + }, + { + "appid": 3473780, + "normalized_name": "multiple territory war" + }, + { + "appid": 3473800, + "normalized_name": "collect honey" + }, + { + "appid": 3473810, + "normalized_name": "mindfall" + }, + { + "appid": 3473870, + "normalized_name": "chill fishing" + }, + { + "appid": 3473890, + "normalized_name": "the girl from gunma kai 群馬県から来た少女・改" + }, + { + "appid": 3473960, + "normalized_name": "caprice domina noctis" + }, + { + "appid": 3474020, + "normalized_name": "tanne portals of eternity" + }, + { + "appid": 3474060, + "normalized_name": "relic hunt" + }, + { + "appid": 3474110, + "normalized_name": "cubey quarry" + }, + { + "appid": 3474130, + "normalized_name": "dice x dice" + }, + { + "appid": 3474140, + "normalized_name": "azmar quest text & turn rpg" + }, + { + "appid": 3474150, + "normalized_name": "void hazard" + }, + { + "appid": 3474160, + "normalized_name": "venomous" + }, + { + "appid": 3474190, + "normalized_name": "sudoku" + }, + { + "appid": 3474220, + "normalized_name": "wild lynx jigsaw" + }, + { + "appid": 3474230, + "normalized_name": "blocks" + }, + { + "appid": 3474250, + "normalized_name": "heart of pacific" + }, + { + "appid": 3474260, + "normalized_name": "perfect sword" + }, + { + "appid": 3474310, + "normalized_name": "だる絡み背後霊" + }, + { + "appid": 3474340, + "normalized_name": "incest tales hot sister" + }, + { + "appid": 3474360, + "normalized_name": "last stronghold" + }, + { + "appid": 3474380, + "normalized_name": "chocodie" + }, + { + "appid": 3474390, + "normalized_name": "boiled" + }, + { + "appid": 3474400, + "normalized_name": "shadows of the past" + }, + { + "appid": 3474420, + "normalized_name": "bad janitor" + }, + { + "appid": 3474440, + "normalized_name": "egg of skill tree" + }, + { + "appid": 3474450, + "normalized_name": "race jam" + }, + { + "appid": 3474510, + "normalized_name": "hopeguard" + }, + { + "appid": 3474520, + "normalized_name": "all abug!" + }, + { + "appid": 3474530, + "normalized_name": "catnip fever dreamland" + }, + { + "appid": 3474590, + "normalized_name": "hentai mia" + }, + { + "appid": 3474620, + "normalized_name": "exonautis" + }, + { + "appid": 3474700, + "normalized_name": "plant nursery simulator" + }, + { + "appid": 3474710, + "normalized_name": "the mystical traveler" + }, + { + "appid": 3474720, + "normalized_name": "slut metamorphosis" + }, + { + "appid": 3474790, + "normalized_name": "princess ursula" + }, + { + "appid": 3474800, + "normalized_name": "highrise" + }, + { + "appid": 3474820, + "normalized_name": "stumble royale" + }, + { + "appid": 3474840, + "normalized_name": "good lord! everyone at the reunion for my religious all girls school is a trans man... and they're hot?!" + }, + { + "appid": 3474870, + "normalized_name": "love cult" + }, + { + "appid": 3474890, + "normalized_name": "super citycon" + }, + { + "appid": 3474920, + "normalized_name": "skyblocker" + }, + { + "appid": 3474950, + "normalized_name": "decorum" + }, + { + "appid": 3474960, + "normalized_name": "kijutsu rider" + }, + { + "appid": 3474980, + "normalized_name": "blobbert 64" + }, + { + "appid": 3475010, + "normalized_name": "rocketpool" + }, + { + "appid": 3475020, + "normalized_name": "tales of miravia" + }, + { + "appid": 3475040, + "normalized_name": "arcade management simulator" + }, + { + "appid": 3475070, + "normalized_name": "arrow & fang" + }, + { + "appid": 3475080, + "normalized_name": "roulette heist" + }, + { + "appid": 3475110, + "normalized_name": "draggin'" + }, + { + "appid": 3475130, + "normalized_name": "immortal boy" + }, + { + "appid": 3475190, + "normalized_name": "death fortress 死狱" + }, + { + "appid": 3475210, + "normalized_name": "card fable quest" + }, + { + "appid": 3475240, + "normalized_name": "proxy training corp" + }, + { + "appid": 3475250, + "normalized_name": "firefly forge autumn bastion" + }, + { + "appid": 3475330, + "normalized_name": "fillet fury" + }, + { + "appid": 3475340, + "normalized_name": "帝天之战" + }, + { + "appid": 3475360, + "normalized_name": "sycophant" + }, + { + "appid": 3475370, + "normalized_name": "syntax" + }, + { + "appid": 3475380, + "normalized_name": "parallel world" + }, + { + "appid": 3475420, + "normalized_name": "shapevasion" + }, + { + "appid": 3475470, + "normalized_name": "supermarket" + }, + { + "appid": 3475510, + "normalized_name": "forest runner" + }, + { + "appid": 3475580, + "normalized_name": "opollo" + }, + { + "appid": 3475600, + "normalized_name": "friendshapes" + }, + { + "appid": 3475620, + "normalized_name": "mythfall" + }, + { + "appid": 3475670, + "normalized_name": "永夜地铁 eternal night metro" + }, + { + "appid": 3475710, + "normalized_name": "dungeon spheres" + }, + { + "appid": 3475720, + "normalized_name": "sweet idol" + }, + { + "appid": 3475730, + "normalized_name": "寄生トンネル" + }, + { + "appid": 3475750, + "normalized_name": "floworlds" + }, + { + "appid": 3475840, + "normalized_name": "deep in snow" + }, + { + "appid": 3475860, + "normalized_name": "tale of dark lands" + }, + { + "appid": 3475900, + "normalized_name": "无妄之都:求解的莫比乌斯 the city of unforeseen fates" + }, + { + "appid": 3475950, + "normalized_name": "mata's demise" + }, + { + "appid": 3475970, + "normalized_name": "nemesis galaxy at war" + }, + { + "appid": 3476010, + "normalized_name": "flask & barrel" + }, + { + "appid": 3476040, + "normalized_name": "hentai witch academy 3" + }, + { + "appid": 3476060, + "normalized_name": "pure bubble hockey" + }, + { + "appid": 3476120, + "normalized_name": "back on your feet" + }, + { + "appid": 3476180, + "normalized_name": "chlorofell" + }, + { + "appid": 3476210, + "normalized_name": "furo" + }, + { + "appid": 3476230, + "normalized_name": "virum colony" + }, + { + "appid": 3476240, + "normalized_name": "berghotel heist" + }, + { + "appid": 3476250, + "normalized_name": "atompunks 1969" + }, + { + "appid": 3476300, + "normalized_name": "the door before" + }, + { + "appid": 3476340, + "normalized_name": "vaccine zombies" + }, + { + "appid": 3476490, + "normalized_name": "battle airforce" + }, + { + "appid": 3476500, + "normalized_name": "thunder of the demonking" + }, + { + "appid": 3476510, + "normalized_name": "marksman vr" + }, + { + "appid": 3476540, + "normalized_name": "春秋 英雄(heroes of chunqiu)" + }, + { + "appid": 3476600, + "normalized_name": "zero point survivor" + }, + { + "appid": 3476610, + "normalized_name": "ai clicker" + }, + { + "appid": 3476620, + "normalized_name": "the snackdown" + }, + { + "appid": 3476640, + "normalized_name": "safa" + }, + { + "appid": 3476660, + "normalized_name": "star crafter" + }, + { + "appid": 3476670, + "normalized_name": "escape 2 space" + }, + { + "appid": 3476730, + "normalized_name": "killer chat! original" + }, + { + "appid": 3476750, + "normalized_name": "hentai math teacher" + }, + { + "appid": 3476790, + "normalized_name": "cozy aquarium" + }, + { + "appid": 3476800, + "normalized_name": "anturi" + }, + { + "appid": 3476870, + "normalized_name": "foss park" + }, + { + "appid": 3476950, + "normalized_name": "campoca" + }, + { + "appid": 3477030, + "normalized_name": "record rewind repeat" + }, + { + "appid": 3477080, + "normalized_name": "tree kingdoms" + }, + { + "appid": 3477170, + "normalized_name": "isle of the eagle" + }, + { + "appid": 3477190, + "normalized_name": "reckless drive" + }, + { + "appid": 3477200, + "normalized_name": "crash course" + }, + { + "appid": 3477230, + "normalized_name": "sled together" + }, + { + "appid": 3477240, + "normalized_name": "just do eat" + }, + { + "appid": 3477270, + "normalized_name": "chaos dweller havoc of tyranny" + }, + { + "appid": 3477320, + "normalized_name": "redcrest 1993" + }, + { + "appid": 3477470, + "normalized_name": "era" + }, + { + "appid": 3477520, + "normalized_name": "ragdoll chimps" + }, + { + "appid": 3477530, + "normalized_name": "ventomori" + }, + { + "appid": 3477550, + "normalized_name": "her erotic life" + }, + { + "appid": 3477590, + "normalized_name": "culinary wizard" + }, + { + "appid": 3477620, + "normalized_name": "through the ages" + }, + { + "appid": 3477680, + "normalized_name": "scratched!" + }, + { + "appid": 3477720, + "normalized_name": "go to sleep" + }, + { + "appid": 3477730, + "normalized_name": "night of the witch's invasion" + }, + { + "appid": 3477740, + "normalized_name": "mistress marigold's home improvement" + }, + { + "appid": 3477800, + "normalized_name": "shelldom" + }, + { + "appid": 3477810, + "normalized_name": "room service" + }, + { + "appid": 3477820, + "normalized_name": "taskbar titans" + }, + { + "appid": 3477860, + "normalized_name": "sonic wings reunion" + }, + { + "appid": 3477870, + "normalized_name": "silent oaths" + }, + { + "appid": 3477880, + "normalized_name": "月途——中国探月数字博物馆 moon journey china's lunar exploration digital museum" + }, + { + "appid": 3477890, + "normalized_name": "furball over the front" + }, + { + "appid": 3477910, + "normalized_name": "the willowmist emporium of antiques & curiosities" + }, + { + "appid": 3477920, + "normalized_name": "战姬绝斗(shojo warriors)" + }, + { + "appid": 3477950, + "normalized_name": "perfect shot" + }, + { + "appid": 3477970, + "normalized_name": "run pro" + }, + { + "appid": 3478010, + "normalized_name": "desire's embrace" + }, + { + "appid": 3478020, + "normalized_name": "living with my little sister" + }, + { + "appid": 3478030, + "normalized_name": "retr0mine" + }, + { + "appid": 3478040, + "normalized_name": "vr battle of the sea monsters" + }, + { + "appid": 3478060, + "normalized_name": "宫三国" + }, + { + "appid": 3478120, + "normalized_name": "retro jump" + }, + { + "appid": 3478130, + "normalized_name": "knob" + }, + { + "appid": 3478140, + "normalized_name": "arcane rings" + }, + { + "appid": 3478190, + "normalized_name": "take care (of me)" + }, + { + "appid": 3478200, + "normalized_name": "trilogy of the moon" + }, + { + "appid": 3478210, + "normalized_name": "hentai world festival" + }, + { + "appid": 3478260, + "normalized_name": "dominate the skies" + }, + { + "appid": 3478290, + "normalized_name": "wasted" + }, + { + "appid": 3478300, + "normalized_name": "saláta" + }, + { + "appid": 3478400, + "normalized_name": "behind the mists" + }, + { + "appid": 3478420, + "normalized_name": "hentai tales scent of mixed" + }, + { + "appid": 3478440, + "normalized_name": "hentai tales cheating family" + }, + { + "appid": 3478450, + "normalized_name": "monochrome nemesis" + }, + { + "appid": 3478470, + "normalized_name": "あと1%で運命の恋" + }, + { + "appid": 3478560, + "normalized_name": "void future" + }, + { + "appid": 3478590, + "normalized_name": "十二影twelves shadow" + }, + { + "appid": 3478640, + "normalized_name": "aristocratic potato" + }, + { + "appid": 3478660, + "normalized_name": "basketboy's adventure" + }, + { + "appid": 3478700, + "normalized_name": "the children of clay" + }, + { + "appid": 3478720, + "normalized_name": "trail of angels" + }, + { + "appid": 3478740, + "normalized_name": "传教模拟器" + }, + { + "appid": 3478750, + "normalized_name": "squabble" + }, + { + "appid": 3478760, + "normalized_name": "hold.for.humans" + }, + { + "appid": 3478780, + "normalized_name": "the panda who fell" + }, + { + "appid": 3478790, + "normalized_name": "shadowless light" + }, + { + "appid": 3478850, + "normalized_name": "bonjin ~ an ordinary man" + }, + { + "appid": 3478870, + "normalized_name": "geoguessr steam" + }, + { + "appid": 3478880, + "normalized_name": "zombiefield" + }, + { + "appid": 3478920, + "normalized_name": "getting inside hentai story" + }, + { + "appid": 3478950, + "normalized_name": "in purr suit" + }, + { + "appid": 3478990, + "normalized_name": "necromerc" + }, + { + "appid": 3479050, + "normalized_name": "songs of yummy" + }, + { + "appid": 3479070, + "normalized_name": "stainless steel 2048" + }, + { + "appid": 3479080, + "normalized_name": "dreampainters" + }, + { + "appid": 3479140, + "normalized_name": "zen aquarium" + }, + { + "appid": 3479150, + "normalized_name": "bakka" + }, + { + "appid": 3479160, + "normalized_name": "holy hoop" + }, + { + "appid": 3479170, + "normalized_name": "rhythmic" + }, + { + "appid": 3479190, + "normalized_name": "azoth & ignis" + }, + { + "appid": 3479240, + "normalized_name": "hollow frontier" + }, + { + "appid": 3479300, + "normalized_name": "kinder finders" + }, + { + "appid": 3479310, + "normalized_name": "the pogo witch" + }, + { + "appid": 3479420, + "normalized_name": "okko the exiled" + }, + { + "appid": 3479610, + "normalized_name": "the most dangerous game" + }, + { + "appid": 3479620, + "normalized_name": "flyingchicken" + }, + { + "appid": 3479630, + "normalized_name": "miya & aya hentai puzzle 18+" + }, + { + "appid": 3479640, + "normalized_name": "sunny blooms garden center" + }, + { + "appid": 3479650, + "normalized_name": "el pasante elementalista" + }, + { + "appid": 3479660, + "normalized_name": "块跳" + }, + { + "appid": 3479680, + "normalized_name": "cats and the city shanghai" + }, + { + "appid": 3479690, + "normalized_name": "jump potato" + }, + { + "appid": 3479790, + "normalized_name": "my splitting image" + }, + { + "appid": 3479820, + "normalized_name": "terminal outbreak" + }, + { + "appid": 3479840, + "normalized_name": "brixby" + }, + { + "appid": 3479870, + "normalized_name": "file 47" + }, + { + "appid": 3479940, + "normalized_name": "xvr" + }, + { + "appid": 3480010, + "normalized_name": "gazebo simulator" + }, + { + "appid": 3480030, + "normalized_name": "환상약국" + }, + { + "appid": 3480040, + "normalized_name": "扫雷世界 minesweeper world" + }, + { + "appid": 3480120, + "normalized_name": "moon maiden terror on planet x" + }, + { + "appid": 3480180, + "normalized_name": "our freedom prologue" + }, + { + "appid": 3480200, + "normalized_name": "战国之影" + }, + { + "appid": 3480320, + "normalized_name": "ax roguelike" + }, + { + "appid": 3480330, + "normalized_name": "恋恋幻之森(touhou koishi's enchanted woods)" + }, + { + "appid": 3480340, + "normalized_name": "bootup! td" + }, + { + "appid": 3480360, + "normalized_name": "穷途" + }, + { + "appid": 3480390, + "normalized_name": "fluffyinn" + }, + { + "appid": 3480420, + "normalized_name": "tictoc guardians" + }, + { + "appid": 3480430, + "normalized_name": "stair tap" + }, + { + "appid": 3480490, + "normalized_name": "无限地牢" + }, + { + "appid": 3480500, + "normalized_name": "アノマラスシティ" + }, + { + "appid": 3480580, + "normalized_name": "workhorse 牛马" + }, + { + "appid": 3480590, + "normalized_name": "roll roll hero" + }, + { + "appid": 3480600, + "normalized_name": "crossing" + }, + { + "appid": 3480620, + "normalized_name": "超魔法书" + }, + { + "appid": 3480650, + "normalized_name": "魔菇塔防 mushroom tower defense" + }, + { + "appid": 3480670, + "normalized_name": "who let the bugs out?" + }, + { + "appid": 3480710, + "normalized_name": "con clicker" + }, + { + "appid": 3480720, + "normalized_name": "attack of bunnies" + }, + { + "appid": 3480750, + "normalized_name": "仙塔传说(mystic tower legends)" + }, + { + "appid": 3480760, + "normalized_name": "soda splash" + }, + { + "appid": 3480830, + "normalized_name": "minimalist boxes" + }, + { + "appid": 3480840, + "normalized_name": "closerlook vr oldways" + }, + { + "appid": 3480850, + "normalized_name": "maiden" + }, + { + "appid": 3480860, + "normalized_name": "league of immortals" + }, + { + "appid": 3480890, + "normalized_name": "feudal craft" + }, + { + "appid": 3480900, + "normalized_name": "primalpha" + }, + { + "appid": 3480910, + "normalized_name": "shipping nightmares" + }, + { + "appid": 3480920, + "normalized_name": "crimson frontier" + }, + { + "appid": 3480930, + "normalized_name": "midnight taco" + }, + { + "appid": 3480960, + "normalized_name": "project roy" + }, + { + "appid": 3480980, + "normalized_name": "survivors symphonys" + }, + { + "appid": 3480990, + "normalized_name": "there are no orcs" + }, + { + "appid": 3481020, + "normalized_name": "天启派对:恶魔牌" + }, + { + "appid": 3481030, + "normalized_name": "juicy blast" + }, + { + "appid": 3481040, + "normalized_name": "apocalypse survivors" + }, + { + "appid": 3481070, + "normalized_name": "vehicle laboratory" + }, + { + "appid": 3481110, + "normalized_name": "yeti ski" + }, + { + "appid": 3481150, + "normalized_name": "m.o.q.r. company" + }, + { + "appid": 3481240, + "normalized_name": "honey trap escape ~ family of villains and the cage ~" + }, + { + "appid": 3481270, + "normalized_name": "the shafts of damnation" + }, + { + "appid": 3481300, + "normalized_name": "dead and broken" + }, + { + "appid": 3481320, + "normalized_name": "deckline" + }, + { + "appid": 3481340, + "normalized_name": "potion in motion" + }, + { + "appid": 3481360, + "normalized_name": "that time i found a box" + }, + { + "appid": 3481370, + "normalized_name": "diecast shop simulator" + }, + { + "appid": 3481380, + "normalized_name": "escapegameshow the timeline" + }, + { + "appid": 3481410, + "normalized_name": "life altered" + }, + { + "appid": 3481450, + "normalized_name": "goblin lands" + }, + { + "appid": 3481470, + "normalized_name": "fatal grounds" + }, + { + "appid": 3481480, + "normalized_name": "超级妙音鸟 super kalavinka" + }, + { + "appid": 3481510, + "normalized_name": "final descent" + }, + { + "appid": 3481550, + "normalized_name": "k.i.d.n.a.p" + }, + { + "appid": 3481560, + "normalized_name": "crossing the southern border futa freedom" + }, + { + "appid": 3481570, + "normalized_name": "secrets of salem shadow of the witch collector's" + }, + { + "appid": 3481610, + "normalized_name": "hopetown" + }, + { + "appid": 3481630, + "normalized_name": "climb it!" + }, + { + "appid": 3481640, + "normalized_name": "kisaragi station" + }, + { + "appid": 3481650, + "normalized_name": "diacritic" + }, + { + "appid": 3481660, + "normalized_name": "smuggler city simulator" + }, + { + "appid": 3481670, + "normalized_name": "gridfiller" + }, + { + "appid": 3481710, + "normalized_name": "my sleeping girlfriend" + }, + { + "appid": 3481740, + "normalized_name": "battle of rovers (early access)" + }, + { + "appid": 3481760, + "normalized_name": "eternal flame romance dawn" + }, + { + "appid": 3481850, + "normalized_name": "the legend of the crystals" + }, + { + "appid": 3481910, + "normalized_name": "innocent au pair" + }, + { + "appid": 3481920, + "normalized_name": "one hard game please!" + }, + { + "appid": 3481970, + "normalized_name": "pumpkin hop" + }, + { + "appid": 3482070, + "normalized_name": "excavator ball" + }, + { + "appid": 3482100, + "normalized_name": "a night with superhero" + }, + { + "appid": 3482170, + "normalized_name": "cat paws and dungeon" + }, + { + "appid": 3482200, + "normalized_name": "trucker 2056" + }, + { + "appid": 3482240, + "normalized_name": "picnic penguin" + }, + { + "appid": 3482260, + "normalized_name": "gta+" + }, + { + "appid": 3482350, + "normalized_name": "succubus spell" + }, + { + "appid": 3482370, + "normalized_name": "our dreadling" + }, + { + "appid": 3482390, + "normalized_name": "oru" + }, + { + "appid": 3482410, + "normalized_name": "catch that pizza! maze game" + }, + { + "appid": 3482440, + "normalized_name": "space outpost sigma" + }, + { + "appid": 3482490, + "normalized_name": "project gravity" + }, + { + "appid": 3482500, + "normalized_name": "chosen for tribute" + }, + { + "appid": 3482530, + "normalized_name": "third party president" + }, + { + "appid": 3482540, + "normalized_name": "tessa's treasures treasure hunters are closer to goddesses" + }, + { + "appid": 3482550, + "normalized_name": "a day's work" + }, + { + "appid": 3482660, + "normalized_name": "dominated by sadistic valentine" + }, + { + "appid": 3482670, + "normalized_name": "bunny jump jump" + }, + { + "appid": 3482770, + "normalized_name": "the pitch" + }, + { + "appid": 3482780, + "normalized_name": "kings & savages" + }, + { + "appid": 3482870, + "normalized_name": "gravity storm first mission" + }, + { + "appid": 3483190, + "normalized_name": "749档案集:无锡外星人事件" + }, + { + "appid": 3483220, + "normalized_name": "東方ファンタジー ~toho fantasy~" + }, + { + "appid": 3483230, + "normalized_name": "pussy master all pussy wrestling" + }, + { + "appid": 3483260, + "normalized_name": "hemohound" + }, + { + "appid": 3483330, + "normalized_name": "balls up" + }, + { + "appid": 3483630, + "normalized_name": "69 days after" + }, + { + "appid": 3483690, + "normalized_name": "diligent ranch" + }, + { + "appid": 3483740, + "normalized_name": "cast n chill" + }, + { + "appid": 3483800, + "normalized_name": "rob the dead" + }, + { + "appid": 3483820, + "normalized_name": "万民长歌:三国" + }, + { + "appid": 3483920, + "normalized_name": "sixteenpetals" + }, + { + "appid": 3483950, + "normalized_name": "pawblem careline" + }, + { + "appid": 3483990, + "normalized_name": "metaneurosis" + }, + { + "appid": 3484010, + "normalized_name": "immortum" + }, + { + "appid": 3484020, + "normalized_name": "mini golf madness" + }, + { + "appid": 3484030, + "normalized_name": "rod of asclepius" + }, + { + "appid": 3484040, + "normalized_name": "blood accord" + }, + { + "appid": 3484050, + "normalized_name": "oko's quest" + }, + { + "appid": 3484080, + "normalized_name": "harvestopia" + }, + { + "appid": 3484100, + "normalized_name": "bait soul" + }, + { + "appid": 3484110, + "normalized_name": "gourmet zombie" + }, + { + "appid": 3484130, + "normalized_name": "sex adventures incest family episode 2" + }, + { + "appid": 3484170, + "normalized_name": "nova jet" + }, + { + "appid": 3484260, + "normalized_name": "deadcore redux" + }, + { + "appid": 3484300, + "normalized_name": "dreadzone" + }, + { + "appid": 3484310, + "normalized_name": "сумрак" + }, + { + "appid": 3484360, + "normalized_name": "interactive sex incest daughters" + }, + { + "appid": 3484380, + "normalized_name": "soul mirror relics" + }, + { + "appid": 3484450, + "normalized_name": "shadow of the forgotten" + }, + { + "appid": 3484470, + "normalized_name": "zu xing" + }, + { + "appid": 3484510, + "normalized_name": "equanimity" + }, + { + "appid": 3484520, + "normalized_name": "oddli a satisfying game" + }, + { + "appid": 3484560, + "normalized_name": "compass of destiny survivors" + }, + { + "appid": 3484590, + "normalized_name": "sea of dreams survivors" + }, + { + "appid": 3484610, + "normalized_name": "akashic slingshot" + }, + { + "appid": 3484620, + "normalized_name": "tales of survival horror chapter one" + }, + { + "appid": 3484640, + "normalized_name": "recharge rc high voltage" + }, + { + "appid": 3484670, + "normalized_name": "blanksword" + }, + { + "appid": 3484680, + "normalized_name": "les mills xr bodycombat" + }, + { + "appid": 3484690, + "normalized_name": "drones of war fpv drone simulator" + }, + { + "appid": 3484710, + "normalized_name": "ultranatural" + }, + { + "appid": 3484730, + "normalized_name": "the glory dungeon raider" + }, + { + "appid": 3484750, + "normalized_name": "tailor simulator" + }, + { + "appid": 3484780, + "normalized_name": "true roman" + }, + { + "appid": 3484800, + "normalized_name": "hivaneph the legend of elles" + }, + { + "appid": 3484850, + "normalized_name": "under kingdom scam centre simulator" + }, + { + "appid": 3484860, + "normalized_name": "迷雾之村misty village" + }, + { + "appid": 3484870, + "normalized_name": "scp november 2010" + }, + { + "appid": 3484890, + "normalized_name": "irene. the window" + }, + { + "appid": 3484940, + "normalized_name": "curse of pirates" + }, + { + "appid": 3484950, + "normalized_name": "afterquest" + }, + { + "appid": 3484990, + "normalized_name": "tete's atelier patches" + }, + { + "appid": 3485000, + "normalized_name": "lost city of bardo" + }, + { + "appid": 3485030, + "normalized_name": "the curse of beatriz" + }, + { + "appid": 3485090, + "normalized_name": "sky blitz" + }, + { + "appid": 3485160, + "normalized_name": "dtc" + }, + { + "appid": 3485220, + "normalized_name": "murder is game over murder otaku" + }, + { + "appid": 3485250, + "normalized_name": "portal foxes td" + }, + { + "appid": 3485290, + "normalized_name": "crimson tale" + }, + { + "appid": 3485300, + "normalized_name": "a little perspective" + }, + { + "appid": 3485350, + "normalized_name": "stolen life" + }, + { + "appid": 3485380, + "normalized_name": "xenoquarium" + }, + { + "appid": 3485400, + "normalized_name": "19th century printing press experience vr" + }, + { + "appid": 3485480, + "normalized_name": "jon's jigsaw puzzle" + }, + { + "appid": 3485540, + "normalized_name": "roofz panda" + }, + { + "appid": 3485570, + "normalized_name": "ابو فانوس abu fanous" + }, + { + "appid": 3485580, + "normalized_name": "bodybuilder simulator co op" + }, + { + "appid": 3485730, + "normalized_name": "cockroach clicker" + }, + { + "appid": 3485760, + "normalized_name": "trapventure" + }, + { + "appid": 3485770, + "normalized_name": "smart jump" + }, + { + "appid": 3485830, + "normalized_name": "backrooms fishing" + }, + { + "appid": 3485880, + "normalized_name": "哨兵骑士sentinel knights" + }, + { + "appid": 3485890, + "normalized_name": "studio scream verse one" + }, + { + "appid": 3485900, + "normalized_name": "tennis antics" + }, + { + "appid": 3485910, + "normalized_name": "the squirrel & sea" + }, + { + "appid": 3485920, + "normalized_name": "the thistle and the flower" + }, + { + "appid": 3485940, + "normalized_name": "shrimp keeping simulator" + }, + { + "appid": 3485950, + "normalized_name": "silent whisper" + }, + { + "appid": 3485990, + "normalized_name": "memoridian" + }, + { + "appid": 3486000, + "normalized_name": "starcatcher" + }, + { + "appid": 3486020, + "normalized_name": "狂野网 wild web" + }, + { + "appid": 3486050, + "normalized_name": "hamster hunter rodent rampage" + }, + { + "appid": 3486110, + "normalized_name": "just cat slap" + }, + { + "appid": 3486120, + "normalized_name": "zodiac reborn" + }, + { + "appid": 3486140, + "normalized_name": "unluckily in love fragments of love" + }, + { + "appid": 3486160, + "normalized_name": "critical point" + }, + { + "appid": 3486180, + "normalized_name": "interstellar sentinel 2" + }, + { + "appid": 3486200, + "normalized_name": "shift happens" + }, + { + "appid": 3486220, + "normalized_name": "cats together" + }, + { + "appid": 3486230, + "normalized_name": "al sira" + }, + { + "appid": 3486240, + "normalized_name": "最后的修仙者" + }, + { + "appid": 3486250, + "normalized_name": "dball" + }, + { + "appid": 3486280, + "normalized_name": "long knives" + }, + { + "appid": 3486420, + "normalized_name": "road to school" + }, + { + "appid": 3486490, + "normalized_name": "mechanoid" + }, + { + "appid": 3486500, + "normalized_name": "aftershock" + }, + { + "appid": 3486520, + "normalized_name": "isle frontier" + }, + { + "appid": 3486590, + "normalized_name": "plague doctor and panacea" + }, + { + "appid": 3486610, + "normalized_name": "find y" + }, + { + "appid": 3486630, + "normalized_name": "this is kiko" + }, + { + "appid": 3486680, + "normalized_name": "画剑draw sword" + }, + { + "appid": 3486750, + "normalized_name": "doombox" + }, + { + "appid": 3486770, + "normalized_name": "red light" + }, + { + "appid": 3486780, + "normalized_name": "hope is fading" + }, + { + "appid": 3486810, + "normalized_name": "君は無慈悲な豚の女王" + }, + { + "appid": 3486940, + "normalized_name": "the liftboy" + }, + { + "appid": 3486970, + "normalized_name": "urlate" + }, + { + "appid": 3486980, + "normalized_name": "the dunkers" + }, + { + "appid": 3487020, + "normalized_name": "sub verge" + }, + { + "appid": 3487060, + "normalized_name": "youtubers life 3 stream together!" + }, + { + "appid": 3487090, + "normalized_name": "ludocracy" + }, + { + "appid": 3487130, + "normalized_name": "sex adventures naughty sisters episode 3" + }, + { + "appid": 3487170, + "normalized_name": "semantics" + }, + { + "appid": 3487230, + "normalized_name": "murder inc" + }, + { + "appid": 3487240, + "normalized_name": "mistaken" + }, + { + "appid": 3487340, + "normalized_name": "zavod" + }, + { + "appid": 3487370, + "normalized_name": "roguerampage" + }, + { + "appid": 3487380, + "normalized_name": "outlawyer" + }, + { + "appid": 3487390, + "normalized_name": "brány skeldalu 2 pátý učedník" + }, + { + "appid": 3487410, + "normalized_name": "idle circles" + }, + { + "appid": 3487460, + "normalized_name": "a few days with darlene" + }, + { + "appid": 3487490, + "normalized_name": "collect baby oil" + }, + { + "appid": 3487500, + "normalized_name": "animal aboard!" + }, + { + "appid": 3487520, + "normalized_name": "bridge trap" + }, + { + "appid": 3487590, + "normalized_name": "medusa crisis" + }, + { + "appid": 3487600, + "normalized_name": "the last ride home" + }, + { + "appid": 3487620, + "normalized_name": "hit it back" + }, + { + "appid": 3487660, + "normalized_name": "the bunker" + }, + { + "appid": 3487690, + "normalized_name": "escape from chancellor's chambers" + }, + { + "appid": 3487740, + "normalized_name": "haunted mines" + }, + { + "appid": 3487770, + "normalized_name": "idle commonwealth" + }, + { + "appid": 3487830, + "normalized_name": "the wall" + }, + { + "appid": 3487850, + "normalized_name": "leafscape" + }, + { + "appid": 3487880, + "normalized_name": "mariusz the game" + }, + { + "appid": 3487930, + "normalized_name": "beautiful checkers" + }, + { + "appid": 3487940, + "normalized_name": "laruaville 16" + }, + { + "appid": 3488030, + "normalized_name": "ceuswark defenders" + }, + { + "appid": 3488050, + "normalized_name": "photophoboy" + }, + { + "appid": 3488200, + "normalized_name": "superquest" + }, + { + "appid": 3488380, + "normalized_name": "jupiter swirl" + }, + { + "appid": 3488440, + "normalized_name": "infinity climber" + }, + { + "appid": 3488460, + "normalized_name": "dirtbag mahjong" + }, + { + "appid": 3488490, + "normalized_name": "magic soldier" + }, + { + "appid": 3488500, + "normalized_name": "the junkyard" + }, + { + "appid": 3488540, + "normalized_name": "metal apex rogue prototype" + }, + { + "appid": 3488570, + "normalized_name": "freak face" + }, + { + "appid": 3488580, + "normalized_name": "craftae" + }, + { + "appid": 3488610, + "normalized_name": "bedtime story saint" + }, + { + "appid": 3488630, + "normalized_name": "redbeard's recoil" + }, + { + "appid": 3488680, + "normalized_name": "白蛇" + }, + { + "appid": 3488700, + "normalized_name": "打倒東京にはjimotoism" + }, + { + "appid": 3488740, + "normalized_name": "red & blue" + }, + { + "appid": 3488760, + "normalized_name": "grow harvest repeat" + }, + { + "appid": 3488770, + "normalized_name": "camilla" + }, + { + "appid": 3488790, + "normalized_name": "燈吉診療所 hiyoshi clinic" + }, + { + "appid": 3488800, + "normalized_name": "juggling" + }, + { + "appid": 3488810, + "normalized_name": "aquarium adventures" + }, + { + "appid": 3488820, + "normalized_name": "my wife’s voice through the wall" + }, + { + "appid": 3488840, + "normalized_name": "cats are money" + }, + { + "appid": 3488890, + "normalized_name": "sayaka my naughty milf neighbor" + }, + { + "appid": 3488900, + "normalized_name": "kiloton" + }, + { + "appid": 3488970, + "normalized_name": "极速营救" + }, + { + "appid": 3489070, + "normalized_name": "cozy beach" + }, + { + "appid": 3489080, + "normalized_name": "life of an npc" + }, + { + "appid": 3489130, + "normalized_name": "move and die" + }, + { + "appid": 3489150, + "normalized_name": "meow" + }, + { + "appid": 3489220, + "normalized_name": "kkokko industry" + }, + { + "appid": 3489380, + "normalized_name": "daihaoy" + }, + { + "appid": 3489400, + "normalized_name": "sailing the winds" + }, + { + "appid": 3489420, + "normalized_name": "they killed your cat" + }, + { + "appid": 3489450, + "normalized_name": "ashcrown gauntlet" + }, + { + "appid": 3489460, + "normalized_name": "loop//error" + }, + { + "appid": 3489480, + "normalized_name": "hentai phoebe" + }, + { + "appid": 3489520, + "normalized_name": "going for nuts" + }, + { + "appid": 3489550, + "normalized_name": "the onyx crown" + }, + { + "appid": 3489590, + "normalized_name": "bald ball" + }, + { + "appid": 3489610, + "normalized_name": "hentai shibari" + }, + { + "appid": 3489620, + "normalized_name": "bonfires of azure" + }, + { + "appid": 3489630, + "normalized_name": "distant lands earendel" + }, + { + "appid": 3489640, + "normalized_name": "hellcrackers" + }, + { + "appid": 3489650, + "normalized_name": "sudokunexus" + }, + { + "appid": 3489670, + "normalized_name": "the happyhills homicide 2 out for blood" + }, + { + "appid": 3489700, + "normalized_name": "stellar blade" + }, + { + "appid": 3489710, + "normalized_name": "coin hunter" + }, + { + "appid": 3489860, + "normalized_name": "kunkun miner" + }, + { + "appid": 3489880, + "normalized_name": "surgebound" + }, + { + "appid": 3489990, + "normalized_name": "emma's umbrella" + }, + { + "appid": 3490000, + "normalized_name": "cooking with magic" + }, + { + "appid": 3490020, + "normalized_name": "piground" + }, + { + "appid": 3490060, + "normalized_name": "the professor" + }, + { + "appid": 3490090, + "normalized_name": "hentai rika" + }, + { + "appid": 3490190, + "normalized_name": "the void chronicles chronis" + }, + { + "appid": 3490220, + "normalized_name": "my lil afterlife" + }, + { + "appid": 3490230, + "normalized_name": "wild west saloon simulator" + }, + { + "appid": 3490240, + "normalized_name": "latex leather lipstick love lust" + }, + { + "appid": 3490250, + "normalized_name": "chemical combat" + }, + { + "appid": 3490280, + "normalized_name": "bearly brave" + }, + { + "appid": 3490320, + "normalized_name": "galactic express" + }, + { + "appid": 3490400, + "normalized_name": "aetherbound td" + }, + { + "appid": 3490420, + "normalized_name": "frog bard" + }, + { + "appid": 3490450, + "normalized_name": "endless horizons" + }, + { + "appid": 3490510, + "normalized_name": "duneborn" + }, + { + "appid": 3490530, + "normalized_name": "arachnoid" + }, + { + "appid": 3490570, + "normalized_name": "rumble city" + }, + { + "appid": 3490620, + "normalized_name": "tumbleboy" + }, + { + "appid": 3490650, + "normalized_name": "the first contact" + }, + { + "appid": 3490660, + "normalized_name": "wintervale keep" + }, + { + "appid": 3490680, + "normalized_name": "寒いから鍋食いたいね女苑ちゃんと!!" + }, + { + "appid": 3490690, + "normalized_name": "guard roulette" + }, + { + "appid": 3490700, + "normalized_name": "evac" + }, + { + "appid": 3490710, + "normalized_name": "burn" + }, + { + "appid": 3490730, + "normalized_name": "fuzz & dizzy part time heroes" + }, + { + "appid": 3490740, + "normalized_name": "cyber art" + }, + { + "appid": 3490760, + "normalized_name": "song of maka" + }, + { + "appid": 3490820, + "normalized_name": "meme survivors backrooms" + }, + { + "appid": 3490890, + "normalized_name": "cute broke and dungeon bound" + }, + { + "appid": 3490920, + "normalized_name": "il13 sonya e links" + }, + { + "appid": 3491070, + "normalized_name": "don't sleep" + }, + { + "appid": 3491080, + "normalized_name": "the bicameral protocol" + }, + { + "appid": 3491090, + "normalized_name": "void drift" + }, + { + "appid": 3491100, + "normalized_name": "roadside motel simulator" + }, + { + "appid": 3491110, + "normalized_name": "erfcity" + }, + { + "appid": 3491160, + "normalized_name": "イワクツギ iwakutsugi" + }, + { + "appid": 3491190, + "normalized_name": "birddawg x" + }, + { + "appid": 3491200, + "normalized_name": "dictators war strategy battle" + }, + { + "appid": 3491230, + "normalized_name": "monster girls and the mysterious adventure" + }, + { + "appid": 3491240, + "normalized_name": "surging matrix" + }, + { + "appid": 3491280, + "normalized_name": "the zone fpv drone simulator" + }, + { + "appid": 3491290, + "normalized_name": "unblinking" + }, + { + "appid": 3491310, + "normalized_name": "chicken invaders 1" + }, + { + "appid": 3491350, + "normalized_name": "seeker tactics" + }, + { + "appid": 3491370, + "normalized_name": "헬로 유니버시티 hell o university" + }, + { + "appid": 3491410, + "normalized_name": "tofas simulator" + }, + { + "appid": 3491420, + "normalized_name": "dronaldo drone football league" + }, + { + "appid": 3491430, + "normalized_name": "mini star quest" + }, + { + "appid": 3491450, + "normalized_name": "cyber girl 2.0 running" + }, + { + "appid": 3491470, + "normalized_name": "musestruck" + }, + { + "appid": 3491490, + "normalized_name": "will the king escape?" + }, + { + "appid": 3491520, + "normalized_name": "eternal siege" + }, + { + "appid": 3491530, + "normalized_name": "nanokeeper" + }, + { + "appid": 3491560, + "normalized_name": "dr. kinderwood's asylum" + }, + { + "appid": 3491570, + "normalized_name": "find all 7 japan" + }, + { + "appid": 3491640, + "normalized_name": "mindbound" + }, + { + "appid": 3491650, + "normalized_name": "attack of the jersey drones" + }, + { + "appid": 3491670, + "normalized_name": "drifters don't brake midnight" + }, + { + "appid": 3491680, + "normalized_name": "battle for cloud 9" + }, + { + "appid": 3491690, + "normalized_name": "lovebyte.exe" + }, + { + "appid": 3491700, + "normalized_name": "the music at the end of the world" + }, + { + "appid": 3491710, + "normalized_name": "wobblepop" + }, + { + "appid": 3491720, + "normalized_name": "mop’n spark" + }, + { + "appid": 3491740, + "normalized_name": "kollectomaniac" + }, + { + "appid": 3491750, + "normalized_name": "inari's redemption" + }, + { + "appid": 3491760, + "normalized_name": "hero and a wicked man" + }, + { + "appid": 3491850, + "normalized_name": "youtopia" + }, + { + "appid": 3491910, + "normalized_name": "suexy drop" + }, + { + "appid": 3491920, + "normalized_name": "fastro dude 2" + }, + { + "appid": 3491950, + "normalized_name": "food truck monopoly" + }, + { + "appid": 3491960, + "normalized_name": "lost liminal" + }, + { + "appid": 3492020, + "normalized_name": "skvears" + }, + { + "appid": 3492030, + "normalized_name": "the tower" + }, + { + "appid": 3492060, + "normalized_name": "遗憾" + }, + { + "appid": 3492070, + "normalized_name": "buildandextract" + }, + { + "appid": 3492120, + "normalized_name": "legion was here" + }, + { + "appid": 3492150, + "normalized_name": "ministry of truth 1984" + }, + { + "appid": 3492200, + "normalized_name": "bebshoru lodbuka" + }, + { + "appid": 3492250, + "normalized_name": "ultra x treme hunting simulator 2001" + }, + { + "appid": 3492320, + "normalized_name": "我亲爱的妹妹 happy sisters life" + }, + { + "appid": 3492330, + "normalized_name": "kombi" + }, + { + "appid": 3492360, + "normalized_name": "agent dunoz" + }, + { + "appid": 3492380, + "normalized_name": "cats and cows" + }, + { + "appid": 3492430, + "normalized_name": "pandora's doom apocalypse hotline" + }, + { + "appid": 3492440, + "normalized_name": "those who know" + }, + { + "appid": 3492460, + "normalized_name": "portilus civitas sanguinis" + }, + { + "appid": 3492480, + "normalized_name": "backrooms worlds" + }, + { + "appid": 3492490, + "normalized_name": "orange simulator" + }, + { + "appid": 3492560, + "normalized_name": "crystal keepers" + }, + { + "appid": 3492580, + "normalized_name": "car soccer simulator" + }, + { + "appid": 3492590, + "normalized_name": "a soldier's struggle" + }, + { + "appid": 3492620, + "normalized_name": "president coin" + }, + { + "appid": 3492640, + "normalized_name": "dark trip" + }, + { + "appid": 3492650, + "normalized_name": "extreme offroad racing vr" + }, + { + "appid": 3492690, + "normalized_name": "focus simulator" + }, + { + "appid": 3492720, + "normalized_name": "stranded souls" + }, + { + "appid": 3492730, + "normalized_name": "agora" + }, + { + "appid": 3492760, + "normalized_name": "engine eternal" + }, + { + "appid": 3492770, + "normalized_name": "deer head" + }, + { + "appid": 3492810, + "normalized_name": "remnant blade the scarlet edge" + }, + { + "appid": 3492830, + "normalized_name": "gunlocked 2" + }, + { + "appid": 3492860, + "normalized_name": "auto adventures" + }, + { + "appid": 3492920, + "normalized_name": "clay beats" + }, + { + "appid": 3492940, + "normalized_name": "giá như" + }, + { + "appid": 3492950, + "normalized_name": "rope grabber" + }, + { + "appid": 3492990, + "normalized_name": "al[fé]tena" + }, + { + "appid": 3493110, + "normalized_name": "city park simulator" + }, + { + "appid": 3493150, + "normalized_name": "rival roads car racing" + }, + { + "appid": 3493230, + "normalized_name": "悪夢祓いのアリス" + }, + { + "appid": 3493260, + "normalized_name": "ネコノヤキュウ" + }, + { + "appid": 3493340, + "normalized_name": "carrier deck 2" + }, + { + "appid": 3493400, + "normalized_name": "bloodletter" + }, + { + "appid": 3493410, + "normalized_name": "we will be gods" + }, + { + "appid": 3493430, + "normalized_name": "set a watch digital" + }, + { + "appid": 3493540, + "normalized_name": "transport fever 3" + }, + { + "appid": 3493550, + "normalized_name": "stele" + }, + { + "appid": 3493610, + "normalized_name": "threat scream and escape" + }, + { + "appid": 3493640, + "normalized_name": "battleline" + }, + { + "appid": 3493730, + "normalized_name": "炎上棉hot糖" + }, + { + "appid": 3493740, + "normalized_name": "drawn to lordskeep" + }, + { + "appid": 3493760, + "normalized_name": "desolorian defenses" + }, + { + "appid": 3493780, + "normalized_name": "bygone dreams prophecy" + }, + { + "appid": 3493840, + "normalized_name": "wasd in the west" + }, + { + "appid": 3493880, + "normalized_name": "dylio's adventures" + }, + { + "appid": 3494130, + "normalized_name": "clink" + }, + { + "appid": 3494200, + "normalized_name": "attack hole" + }, + { + "appid": 3494210, + "normalized_name": "choo choo survivor 2" + }, + { + "appid": 3494220, + "normalized_name": "pawsky" + }, + { + "appid": 3494230, + "normalized_name": "cosmic cleaner" + }, + { + "appid": 3494270, + "normalized_name": "world of rebus" + }, + { + "appid": 3494320, + "normalized_name": "uncubed" + }, + { + "appid": 3494330, + "normalized_name": "bubblenauts" + }, + { + "appid": 3494360, + "normalized_name": "project fiend" + }, + { + "appid": 3494420, + "normalized_name": "economic clicker" + }, + { + "appid": 3494430, + "normalized_name": "cute star heroes" + }, + { + "appid": 3494450, + "normalized_name": "skyvern" + }, + { + "appid": 3494470, + "normalized_name": "coinage" + }, + { + "appid": 3494490, + "normalized_name": "turn based touchdown" + }, + { + "appid": 3494520, + "normalized_name": "lost rift" + }, + { + "appid": 3494560, + "normalized_name": "lani's call a tiny whale singer story" + }, + { + "appid": 3494570, + "normalized_name": "chernobyl the secrets of pripyat" + }, + { + "appid": 3494580, + "normalized_name": "erazer" + }, + { + "appid": 3494660, + "normalized_name": "okinawa journal" + }, + { + "appid": 3494680, + "normalized_name": "turbo takedown" + }, + { + "appid": 3494790, + "normalized_name": "radio ghosts" + }, + { + "appid": 3494920, + "normalized_name": "dragon realms" + }, + { + "appid": 3494930, + "normalized_name": "assemblands" + }, + { + "appid": 3494950, + "normalized_name": "deeper underground" + }, + { + "appid": 3495000, + "normalized_name": "100 los angeles cats" + }, + { + "appid": 3495020, + "normalized_name": "100 africa cats" + }, + { + "appid": 3495030, + "normalized_name": "100 cyprus cats" + }, + { + "appid": 3495040, + "normalized_name": "100 dubai cats" + }, + { + "appid": 3495050, + "normalized_name": "100 zombie cats" + }, + { + "appid": 3495060, + "normalized_name": "ape drop" + }, + { + "appid": 3495070, + "normalized_name": "train hero" + }, + { + "appid": 3495090, + "normalized_name": "select quiz" + }, + { + "appid": 3495100, + "normalized_name": "protodungeon episode i" + }, + { + "appid": 3495110, + "normalized_name": "a killer chat! christmas" + }, + { + "appid": 3495120, + "normalized_name": "dino girls" + }, + { + "appid": 3495160, + "normalized_name": "protodungeon episode ii" + }, + { + "appid": 3495220, + "normalized_name": "rigged" + }, + { + "appid": 3495250, + "normalized_name": "glory on pluto" + }, + { + "appid": 3495270, + "normalized_name": "hell under ice" + }, + { + "appid": 3495290, + "normalized_name": "the monetary lever" + }, + { + "appid": 3495300, + "normalized_name": "beetlemen jump!" + }, + { + "appid": 3495340, + "normalized_name": "elemental towers" + }, + { + "appid": 3495400, + "normalized_name": "bannerlands" + }, + { + "appid": 3495420, + "normalized_name": "profane" + }, + { + "appid": 3495470, + "normalized_name": "light rush" + }, + { + "appid": 3495480, + "normalized_name": "derby" + }, + { + "appid": 3495490, + "normalized_name": "marble allstars" + }, + { + "appid": 3495500, + "normalized_name": "more far land" + }, + { + "appid": 3495520, + "normalized_name": "万界之塔 the tower of the world" + }, + { + "appid": 3495730, + "normalized_name": "lucid blocks" + }, + { + "appid": 3495740, + "normalized_name": "blademancer" + }, + { + "appid": 3495790, + "normalized_name": "hopshot" + }, + { + "appid": 3495810, + "normalized_name": "wet passion" + }, + { + "appid": 3495820, + "normalized_name": "квартирант" + }, + { + "appid": 3495830, + "normalized_name": "hentai dolls" + }, + { + "appid": 3495840, + "normalized_name": "shopfront" + }, + { + "appid": 3495910, + "normalized_name": "smalltown architect" + }, + { + "appid": 3495980, + "normalized_name": "wanted 3d dead or alive" + }, + { + "appid": 3495990, + "normalized_name": "fear fa 98" + }, + { + "appid": 3496000, + "normalized_name": "ship inc." + }, + { + "appid": 3496100, + "normalized_name": "mind echoes the lost mysteries collector's" + }, + { + "appid": 3496160, + "normalized_name": "die harder" + }, + { + "appid": 3496340, + "normalized_name": "welcome sharehouse!" + }, + { + "appid": 3496360, + "normalized_name": "road of heros" + }, + { + "appid": 3496370, + "normalized_name": "divine move 神之手" + }, + { + "appid": 3496430, + "normalized_name": "shadow city mysteries case files rise of the rat king" + }, + { + "appid": 3496440, + "normalized_name": "snowflake master" + }, + { + "appid": 3496490, + "normalized_name": "hexadale" + }, + { + "appid": 3496500, + "normalized_name": "orb tower" + }, + { + "appid": 3496510, + "normalized_name": "ai roommate life with an artificial companion" + }, + { + "appid": 3496540, + "normalized_name": "xreemu" + }, + { + "appid": 3496570, + "normalized_name": "daydayup" + }, + { + "appid": 3496620, + "normalized_name": "rc crash course" + }, + { + "appid": 3496650, + "normalized_name": "war flavor" + }, + { + "appid": 3496660, + "normalized_name": "manastone" + }, + { + "appid": 3496690, + "normalized_name": "wild explorer" + }, + { + "appid": 3496700, + "normalized_name": "hentai girls lust [18+]" + }, + { + "appid": 3496710, + "normalized_name": "(the) rise of willy" + }, + { + "appid": 3496780, + "normalized_name": "brews & blood origin" + }, + { + "appid": 3496820, + "normalized_name": "kill.the.fridge shoot upgrade repeat" + }, + { + "appid": 3496840, + "normalized_name": "organic burger simulator" + }, + { + "appid": 3496850, + "normalized_name": "living cost" + }, + { + "appid": 3496890, + "normalized_name": "slot or not" + }, + { + "appid": 3496900, + "normalized_name": "unpinned" + }, + { + "appid": 3496940, + "normalized_name": "loot line" + }, + { + "appid": 3496950, + "normalized_name": "aurora flight (オーロラ・フライト)" + }, + { + "appid": 3496970, + "normalized_name": "gloopalaxy" + }, + { + "appid": 3496980, + "normalized_name": "greenhouse schism" + }, + { + "appid": 3496990, + "normalized_name": "guild encounters" + }, + { + "appid": 3497010, + "normalized_name": "死娩花 shimenka" + }, + { + "appid": 3497040, + "normalized_name": "descent to the top" + }, + { + "appid": 3497230, + "normalized_name": "shoot p" + }, + { + "appid": 3497240, + "normalized_name": "kong fu" + }, + { + "appid": 3497260, + "normalized_name": "supermarket simulator holidays 2025" + }, + { + "appid": 3497280, + "normalized_name": "canvas infernum" + }, + { + "appid": 3497310, + "normalized_name": "beihai 2010" + }, + { + "appid": 3497350, + "normalized_name": "gladiator rumble" + }, + { + "appid": 3497380, + "normalized_name": "speedway challenge 2025" + }, + { + "appid": 3497410, + "normalized_name": "biogenesis" + }, + { + "appid": 3497420, + "normalized_name": "eternal halls" + }, + { + "appid": 3497510, + "normalized_name": "soul blossom" + }, + { + "appid": 3497530, + "normalized_name": "bruisin cruisers" + }, + { + "appid": 3497540, + "normalized_name": "beauty salon simulator" + }, + { + "appid": 3497560, + "normalized_name": "space gas station simulator" + }, + { + "appid": 3497590, + "normalized_name": "fusion skills" + }, + { + "appid": 3497660, + "normalized_name": "astonishing" + }, + { + "appid": 3497680, + "normalized_name": "operator unknown" + }, + { + "appid": 3497690, + "normalized_name": "cutucadores" + }, + { + "appid": 3497800, + "normalized_name": "bonehold" + }, + { + "appid": 3497840, + "normalized_name": "hoppin buna's adventure" + }, + { + "appid": 3497860, + "normalized_name": "shell shock" + }, + { + "appid": 3497870, + "normalized_name": "dry sand damp steps" + }, + { + "appid": 3497880, + "normalized_name": "gemmas gauntlet" + }, + { + "appid": 3497920, + "normalized_name": "maze of perdition" + }, + { + "appid": 3497930, + "normalized_name": "gamba gun" + }, + { + "appid": 3497960, + "normalized_name": "the symbiant ii" + }, + { + "appid": 3498000, + "normalized_name": "back to save the universe" + }, + { + "appid": 3498030, + "normalized_name": "klasztorna lost within" + }, + { + "appid": 3498050, + "normalized_name": "be brave barb" + }, + { + "appid": 3498070, + "normalized_name": "spring adventure" + }, + { + "appid": 3498110, + "normalized_name": "爱情笔记" + }, + { + "appid": 3498130, + "normalized_name": "rage click" + }, + { + "appid": 3498260, + "normalized_name": "shoot for the stars" + }, + { + "appid": 3498270, + "normalized_name": "better mart" + }, + { + "appid": 3498300, + "normalized_name": "dungeon grid" + }, + { + "appid": 3498310, + "normalized_name": "1 bit hero" + }, + { + "appid": 3498390, + "normalized_name": "astroloot" + }, + { + "appid": 3498550, + "normalized_name": "questwood" + }, + { + "appid": 3498560, + "normalized_name": "cactus simulator remake" + }, + { + "appid": 3498620, + "normalized_name": "haze carnival of horror" + }, + { + "appid": 3498640, + "normalized_name": "squaser 4" + }, + { + "appid": 3498680, + "normalized_name": "the mindvasion" + }, + { + "appid": 3498700, + "normalized_name": "appulse" + }, + { + "appid": 3498710, + "normalized_name": "touchfish" + }, + { + "appid": 3498720, + "normalized_name": "rain98" + }, + { + "appid": 3498790, + "normalized_name": "the saga of a lone man" + }, + { + "appid": 3498800, + "normalized_name": "740 racing" + }, + { + "appid": 3498820, + "normalized_name": "the travelling land" + }, + { + "appid": 3498860, + "normalized_name": "interactive sex futanari incest twins" + }, + { + "appid": 3498880, + "normalized_name": "npc simulator heroes need us" + }, + { + "appid": 3498890, + "normalized_name": "with friends like these" + }, + { + "appid": 3498960, + "normalized_name": "fastshoot" + }, + { + "appid": 3498980, + "normalized_name": "m.i.a. mission in asia" + }, + { + "appid": 3499000, + "normalized_name": "partisan" + }, + { + "appid": 3499010, + "normalized_name": "steam slug" + }, + { + "appid": 3499020, + "normalized_name": "alehouse tavern simulator" + }, + { + "appid": 3499050, + "normalized_name": "cacophony" + }, + { + "appid": 3499110, + "normalized_name": "fumble freaks" + }, + { + "appid": 3499160, + "normalized_name": "hemera" + }, + { + "appid": 3499170, + "normalized_name": "alien shooters" + }, + { + "appid": 3499220, + "normalized_name": "gamer stop simulator" + }, + { + "appid": 3499230, + "normalized_name": "sweet pool" + }, + { + "appid": 3499260, + "normalized_name": "ravel the frays" + }, + { + "appid": 3499270, + "normalized_name": "an imp and an imposter" + }, + { + "appid": 3499300, + "normalized_name": "somnicore" + }, + { + "appid": 3499330, + "normalized_name": "succu mama" + }, + { + "appid": 3499410, + "normalized_name": "yami protocol" + }, + { + "appid": 3499430, + "normalized_name": "a recipe for survival cat cooking roguelike deckbuilder" + }, + { + "appid": 3499440, + "normalized_name": "full effect" + }, + { + "appid": 3499520, + "normalized_name": "pianoglow" + }, + { + "appid": 3499530, + "normalized_name": "defend the vault" + }, + { + "appid": 3499540, + "normalized_name": "combolite" + }, + { + "appid": 3499650, + "normalized_name": "sex adventures incest family episode 3" + }, + { + "appid": 3499700, + "normalized_name": "santherya uprising" + }, + { + "appid": 3499720, + "normalized_name": "bedtime stories 3" + }, + { + "appid": 3499750, + "normalized_name": "gassal simulator" + }, + { + "appid": 3499760, + "normalized_name": "bubblebyte" + }, + { + "appid": 3499770, + "normalized_name": "silent research" + }, + { + "appid": 3499820, + "normalized_name": "basketball simulator" + }, + { + "appid": 3499860, + "normalized_name": "post speed" + }, + { + "appid": 3499890, + "normalized_name": "netcrusher" + }, + { + "appid": 3499910, + "normalized_name": "dachs hunter" + }, + { + "appid": 3499940, + "normalized_name": "i commissioned some dogs 5" + }, + { + "appid": 3499960, + "normalized_name": "arca 102" + }, + { + "appid": 3500010, + "normalized_name": "empower your intent" + }, + { + "appid": 3500050, + "normalized_name": "gappy's adventure coinkeeper's cantrip" + }, + { + "appid": 3500080, + "normalized_name": "find my love" + }, + { + "appid": 3500250, + "normalized_name": "eclipse" + }, + { + "appid": 3500340, + "normalized_name": "a dream about parking lots" + }, + { + "appid": 3500350, + "normalized_name": "no survivors" + }, + { + "appid": 3500430, + "normalized_name": "the depths of duskraven manor" + }, + { + "appid": 3500490, + "normalized_name": "xiwang ave n 3rd section" + }, + { + "appid": 3500510, + "normalized_name": "advanced v.g. saturn tribute" + }, + { + "appid": 3500530, + "normalized_name": "optimize man gymcel" + }, + { + "appid": 3500580, + "normalized_name": "fire hop" + }, + { + "appid": 3500600, + "normalized_name": "steam heart's saturn tribute" + }, + { + "appid": 3500620, + "normalized_name": "bounded together" + }, + { + "appid": 3500630, + "normalized_name": "奇门象棋 qimen chess" + }, + { + "appid": 3500640, + "normalized_name": "arithmetic" + }, + { + "appid": 3500660, + "normalized_name": "shifter" + }, + { + "appid": 3500670, + "normalized_name": "arenaofnature" + }, + { + "appid": 3500680, + "normalized_name": "cropdeck" + }, + { + "appid": 3500700, + "normalized_name": "mythbreak" + }, + { + "appid": 3500720, + "normalized_name": "get 0ut" + }, + { + "appid": 3500750, + "normalized_name": "恐怖の採点 score the fear" + }, + { + "appid": 3500760, + "normalized_name": "realms of alurya" + }, + { + "appid": 3500770, + "normalized_name": "dinosaur vs hitler" + }, + { + "appid": 3500790, + "normalized_name": "对影世界" + }, + { + "appid": 3500800, + "normalized_name": "dreadout collection" + }, + { + "appid": 3500810, + "normalized_name": "dreadout 3" + }, + { + "appid": 3500830, + "normalized_name": "store keeper" + }, + { + "appid": 3500840, + "normalized_name": "under ichigo love me baby!!! in tokyo super arena 2025" + }, + { + "appid": 3500910, + "normalized_name": "backpack scavenger" + }, + { + "appid": 3500950, + "normalized_name": "very aggressive adventure" + }, + { + "appid": 3500990, + "normalized_name": "psycho frogo" + }, + { + "appid": 3501010, + "normalized_name": "spalg" + }, + { + "appid": 3501040, + "normalized_name": "ortomnia broken trinity" + }, + { + "appid": 3501070, + "normalized_name": "car service together" + }, + { + "appid": 3501210, + "normalized_name": "menhera & troll" + }, + { + "appid": 3501260, + "normalized_name": "bathroom" + }, + { + "appid": 3501370, + "normalized_name": "banned tapes" + }, + { + "appid": 3501380, + "normalized_name": "knight adventure" + }, + { + "appid": 3501390, + "normalized_name": "3d modern tower" + }, + { + "appid": 3501400, + "normalized_name": "cute space shooter" + }, + { + "appid": 3501470, + "normalized_name": "what happened on the moon?" + }, + { + "appid": 3501510, + "normalized_name": "my cozy room" + }, + { + "appid": 3501540, + "normalized_name": "spiritstead" + }, + { + "appid": 3501550, + "normalized_name": "portale zur hölle" + }, + { + "appid": 3501580, + "normalized_name": "rice & rest" + }, + { + "appid": 3501600, + "normalized_name": "bodacious blasteroids" + }, + { + "appid": 3501630, + "normalized_name": "shapeshapers" + }, + { + "appid": 3501760, + "normalized_name": "aoa academy christmas" + }, + { + "appid": 3501850, + "normalized_name": "echoes of the outworlder" + }, + { + "appid": 3501880, + "normalized_name": "flightless fables" + }, + { + "appid": 3501890, + "normalized_name": "cute robot time" + }, + { + "appid": 3501900, + "normalized_name": "the haunting of stabbey road" + }, + { + "appid": 3501960, + "normalized_name": "99999両" + }, + { + "appid": 3502000, + "normalized_name": "全部試せば開く!" + }, + { + "appid": 3502020, + "normalized_name": "sometimes toast is o.k." + }, + { + "appid": 3502030, + "normalized_name": "wet and wild" + }, + { + "appid": 3502060, + "normalized_name": "beasts of mystery" + }, + { + "appid": 3502100, + "normalized_name": "quarantine quest" + }, + { + "appid": 3502130, + "normalized_name": "everyone fights" + }, + { + "appid": 3502150, + "normalized_name": "city of cats" + }, + { + "appid": 3502230, + "normalized_name": "meat grinder" + }, + { + "appid": 3502250, + "normalized_name": "sabotage city" + }, + { + "appid": 3502270, + "normalized_name": "mall simulator 2025 prologue" + }, + { + "appid": 3502300, + "normalized_name": "blackhole simulator" + }, + { + "appid": 3502310, + "normalized_name": "synco path" + }, + { + "appid": 3502320, + "normalized_name": "murder in complex" + }, + { + "appid": 3502340, + "normalized_name": "torn veil" + }, + { + "appid": 3502390, + "normalized_name": "mimibird" + }, + { + "appid": 3502460, + "normalized_name": "gun gone wrong" + }, + { + "appid": 3502510, + "normalized_name": "moon drop miners" + }, + { + "appid": 3502520, + "normalized_name": "math attack" + }, + { + "appid": 3502530, + "normalized_name": "face invaders" + }, + { + "appid": 3502550, + "normalized_name": "og world" + }, + { + "appid": 3502580, + "normalized_name": "freetown forest" + }, + { + "appid": 3502590, + "normalized_name": "zima" + }, + { + "appid": 3502610, + "normalized_name": "red van simulator 極速紅van傳說" + }, + { + "appid": 3502680, + "normalized_name": "伊邪那美闇行 izanamiyako" + }, + { + "appid": 3502700, + "normalized_name": "像素农场" + }, + { + "appid": 3502720, + "normalized_name": "vtuberのq" + }, + { + "appid": 3502780, + "normalized_name": "sungaia saga" + }, + { + "appid": 3502860, + "normalized_name": "caller of the crows" + }, + { + "appid": 3502880, + "normalized_name": "veggie brawl battle for the garden" + }, + { + "appid": 3502930, + "normalized_name": "sportsday" + }, + { + "appid": 3502940, + "normalized_name": "rage of the elder gods" + }, + { + "appid": 3502970, + "normalized_name": "do not play" + }, + { + "appid": 3503020, + "normalized_name": "duckstruck" + }, + { + "appid": 3503050, + "normalized_name": "dream fallen remake village" + }, + { + "appid": 3503070, + "normalized_name": "lines 98" + }, + { + "appid": 3503080, + "normalized_name": "i wanna ascend" + }, + { + "appid": 3503120, + "normalized_name": "はじめての児童発達支援" + }, + { + "appid": 3503160, + "normalized_name": "grid battles" + }, + { + "appid": 3503180, + "normalized_name": "eye on you!" + }, + { + "appid": 3503190, + "normalized_name": "astrocore mining" + }, + { + "appid": 3503200, + "normalized_name": "chaos royale" + }, + { + "appid": 3503220, + "normalized_name": "clamo critical logging and anomaly monitoring operation" + }, + { + "appid": 3503230, + "normalized_name": "cozy desktop konbini" + }, + { + "appid": 3503250, + "normalized_name": "信标2010" + }, + { + "appid": 3503260, + "normalized_name": "ryugaku ren'ai" + }, + { + "appid": 3503280, + "normalized_name": "idle farm tycoon" + }, + { + "appid": 3503300, + "normalized_name": "toxic yuri" + }, + { + "appid": 3503340, + "normalized_name": "梦夜nightmare" + }, + { + "appid": 3503380, + "normalized_name": "寻龙分金模拟器" + }, + { + "appid": 3503390, + "normalized_name": "driving master d" + }, + { + "appid": 3503400, + "normalized_name": "h index" + }, + { + "appid": 3503440, + "normalized_name": "astro prospector" + }, + { + "appid": 3503500, + "normalized_name": "appa" + }, + { + "appid": 3503510, + "normalized_name": "shtrek" + }, + { + "appid": 3503530, + "normalized_name": "all front assault" + }, + { + "appid": 3503540, + "normalized_name": "football career mode 26" + }, + { + "appid": 3503570, + "normalized_name": "whispers of lust" + }, + { + "appid": 3503680, + "normalized_name": "5番線おじさん救出編 platform 5 dungeons" + }, + { + "appid": 3503710, + "normalized_name": "medieval horse dealer simulator" + }, + { + "appid": 3503720, + "normalized_name": "letters of longing" + }, + { + "appid": 3503770, + "normalized_name": "meatmare" + }, + { + "appid": 3503790, + "normalized_name": "prohibeast" + }, + { + "appid": 3503810, + "normalized_name": "「terror」type 【a.l.c.h.e.m.y.】" + }, + { + "appid": 3503830, + "normalized_name": "marty's funducational tour!" + }, + { + "appid": 3503870, + "normalized_name": "pokitaire" + }, + { + "appid": 3503880, + "normalized_name": "astronook" + }, + { + "appid": 3503950, + "normalized_name": "heart of y" + }, + { + "appid": 3503970, + "normalized_name": "food go! simulator" + }, + { + "appid": 3503980, + "normalized_name": "soul knight" + }, + { + "appid": 3503990, + "normalized_name": "plumbum" + }, + { + "appid": 3504020, + "normalized_name": "shroomwood" + }, + { + "appid": 3504130, + "normalized_name": "the haunting of ptolemy" + }, + { + "appid": 3504140, + "normalized_name": "screw puzzle master" + }, + { + "appid": 3504170, + "normalized_name": "emberfly" + }, + { + "appid": 3504230, + "normalized_name": "pumps don't suck" + }, + { + "appid": 3504240, + "normalized_name": "fragile peace" + }, + { + "appid": 3504260, + "normalized_name": "cursed fables a gilded rose collector's" + }, + { + "appid": 3504290, + "normalized_name": "the witch's realm" + }, + { + "appid": 3504310, + "normalized_name": "ghost sector" + }, + { + "appid": 3504390, + "normalized_name": "let's dye together" + }, + { + "appid": 3504400, + "normalized_name": "blade of mercy bloody countess" + }, + { + "appid": 3504430, + "normalized_name": "soulglass" + }, + { + "appid": 3504460, + "normalized_name": "raiders of the apocalypse" + }, + { + "appid": 3504490, + "normalized_name": "legacy of valor" + }, + { + "appid": 3504510, + "normalized_name": "vesper and the umbral passage" + }, + { + "appid": 3504530, + "normalized_name": "please stop crying terrible twos" + }, + { + "appid": 3504540, + "normalized_name": "minuto galactic deliveries" + }, + { + "appid": 3504570, + "normalized_name": "fear effect" + }, + { + "appid": 3504610, + "normalized_name": "echoes of adventure" + }, + { + "appid": 3504770, + "normalized_name": "lust knight lisa" + }, + { + "appid": 3504780, + "normalized_name": "wildgate" + }, + { + "appid": 3504820, + "normalized_name": "shattered spines" + }, + { + "appid": 3504840, + "normalized_name": "jaro tcg" + }, + { + "appid": 3504850, + "normalized_name": "deadvale" + }, + { + "appid": 3504870, + "normalized_name": "消消果汁店" + }, + { + "appid": 3504940, + "normalized_name": "desktop angel" + }, + { + "appid": 3504960, + "normalized_name": "the void corridors" + }, + { + "appid": 3504970, + "normalized_name": "starnova aerospace" + }, + { + "appid": 3504980, + "normalized_name": "mutex+" + }, + { + "appid": 3504990, + "normalized_name": "backspace" + }, + { + "appid": 3505040, + "normalized_name": "sleeper s9" + }, + { + "appid": 3505060, + "normalized_name": "castle of mist" + }, + { + "appid": 3505080, + "normalized_name": "half light" + }, + { + "appid": 3505120, + "normalized_name": "骸柵織" + }, + { + "appid": 3505140, + "normalized_name": "pekla" + }, + { + "appid": 3505230, + "normalized_name": "soulblaze" + }, + { + "appid": 3505240, + "normalized_name": "deaded the runner" + }, + { + "appid": 3505250, + "normalized_name": "skilander" + }, + { + "appid": 3505260, + "normalized_name": "鬼の守り人" + }, + { + "appid": 3505270, + "normalized_name": "doomer simulator" + }, + { + "appid": 3505280, + "normalized_name": "fluffy's house" + }, + { + "appid": 3505330, + "normalized_name": "brominion" + }, + { + "appid": 3505350, + "normalized_name": "brainkilled" + }, + { + "appid": 3505390, + "normalized_name": "car crash x" + }, + { + "appid": 3505410, + "normalized_name": "bearships" + }, + { + "appid": 3505450, + "normalized_name": "dimension" + }, + { + "appid": 3505630, + "normalized_name": "tinker world arrival at kedhreon" + }, + { + "appid": 3505640, + "normalized_name": "time heals" + }, + { + "appid": 3505650, + "normalized_name": "vampire cat" + }, + { + "appid": 3505660, + "normalized_name": "异世界小队长" + }, + { + "appid": 3505680, + "normalized_name": "real estate tycoon!" + }, + { + "appid": 3505690, + "normalized_name": "fight ascension" + }, + { + "appid": 3505700, + "normalized_name": "lobotomy" + }, + { + "appid": 3505770, + "normalized_name": "kin and quarry" + }, + { + "appid": 3505780, + "normalized_name": "click the block 点击方块" + }, + { + "appid": 3505790, + "normalized_name": "garden of love" + }, + { + "appid": 3505800, + "normalized_name": "yurei hunt" + }, + { + "appid": 3505820, + "normalized_name": "cyber tower 2048" + }, + { + "appid": 3505830, + "normalized_name": "kitty's hungry adventure" + }, + { + "appid": 3505840, + "normalized_name": "magic tiny lands" + }, + { + "appid": 3505850, + "normalized_name": "schizo dark" + }, + { + "appid": 3505860, + "normalized_name": "make a hit!" + }, + { + "appid": 3505880, + "normalized_name": "snake game ultra core" + }, + { + "appid": 3505890, + "normalized_name": "tech blast" + }, + { + "appid": 3505910, + "normalized_name": "unusual and not safe experiments" + }, + { + "appid": 3505930, + "normalized_name": "skyline" + }, + { + "appid": 3505940, + "normalized_name": "the hatchling" + }, + { + "appid": 3505960, + "normalized_name": "g switch 4 creator" + }, + { + "appid": 3506030, + "normalized_name": "the stones" + }, + { + "appid": 3506050, + "normalized_name": "pixel fortress tower defense" + }, + { + "appid": 3506060, + "normalized_name": "otters and stones" + }, + { + "appid": 3506070, + "normalized_name": "teios journey" + }, + { + "appid": 3506090, + "normalized_name": "flopshot" + }, + { + "appid": 3506100, + "normalized_name": "silent witness" + }, + { + "appid": 3506110, + "normalized_name": "lunacid tears of the moon" + }, + { + "appid": 3506150, + "normalized_name": "booty battler" + }, + { + "appid": 3506160, + "normalized_name": "sweatshop simulator" + }, + { + "appid": 3506200, + "normalized_name": "only for gamers" + }, + { + "appid": 3506220, + "normalized_name": "wonderlang japanese" + }, + { + "appid": 3506230, + "normalized_name": "billionaire in the oil boom" + }, + { + "appid": 3506250, + "normalized_name": "scare crow" + }, + { + "appid": 3506280, + "normalized_name": "spherical symphony" + }, + { + "appid": 3506310, + "normalized_name": "clover" + }, + { + "appid": 3506330, + "normalized_name": "the judge" + }, + { + "appid": 3506350, + "normalized_name": "the sahara tournament" + }, + { + "appid": 3506370, + "normalized_name": "mr. blob's honey do list" + }, + { + "appid": 3506380, + "normalized_name": "kaldros team survival" + }, + { + "appid": 3506430, + "normalized_name": "peak" + }, + { + "appid": 3506440, + "normalized_name": "the economic west" + }, + { + "appid": 3506450, + "normalized_name": "inner city unit" + }, + { + "appid": 3506500, + "normalized_name": "the hyperreal rock in a surreal world" + }, + { + "appid": 3506510, + "normalized_name": "mmkk" + }, + { + "appid": 3506550, + "normalized_name": "シンゴウブレイカ singou breaka" + }, + { + "appid": 3506560, + "normalized_name": "confection combat" + }, + { + "appid": 3506630, + "normalized_name": "thin threads" + }, + { + "appid": 3506700, + "normalized_name": "all we fallen" + }, + { + "appid": 3506730, + "normalized_name": "towerandmagic" + }, + { + "appid": 3506750, + "normalized_name": "monster punk" + }, + { + "appid": 3506780, + "normalized_name": "the fellowship of infinity" + }, + { + "appid": 3506790, + "normalized_name": "tempus umbra" + }, + { + "appid": 3506800, + "normalized_name": "walking survival" + }, + { + "appid": 3506820, + "normalized_name": "medisim emergency response" + }, + { + "appid": 3506830, + "normalized_name": "out of the shadows" + }, + { + "appid": 3506840, + "normalized_name": "faceless" + }, + { + "appid": 3506850, + "normalized_name": "midspring" + }, + { + "appid": 3506860, + "normalized_name": "retro adventurer" + }, + { + "appid": 3506900, + "normalized_name": "the mariner" + }, + { + "appid": 3506960, + "normalized_name": "bunker 2" + }, + { + "appid": 3506970, + "normalized_name": "chess hunt" + }, + { + "appid": 3507020, + "normalized_name": "wild west simulator" + }, + { + "appid": 3507070, + "normalized_name": "lost kingdom idle war" + }, + { + "appid": 3507100, + "normalized_name": "hidden cats 3 steampunk" + }, + { + "appid": 3507120, + "normalized_name": "prison escape simulator" + }, + { + "appid": 3507220, + "normalized_name": "locked together" + }, + { + "appid": 3507290, + "normalized_name": "治愈之森 dream connector" + }, + { + "appid": 3507360, + "normalized_name": "the longest tale" + }, + { + "appid": 3507390, + "normalized_name": "million clicker" + }, + { + "appid": 3507400, + "normalized_name": "smogshadow hunter" + }, + { + "appid": 3507420, + "normalized_name": "remains of yith" + }, + { + "appid": 3507490, + "normalized_name": "little luna" + }, + { + "appid": 3507500, + "normalized_name": "triage" + }, + { + "appid": 3507510, + "normalized_name": "gemmiferous" + }, + { + "appid": 3507520, + "normalized_name": "mors memora" + }, + { + "appid": 3507550, + "normalized_name": "soul eyes demon horror skulls" + }, + { + "appid": 3507600, + "normalized_name": "frostpoint toll" + }, + { + "appid": 3507680, + "normalized_name": "stone 4 souls" + }, + { + "appid": 3507690, + "normalized_name": "mutagen" + }, + { + "appid": 3507770, + "normalized_name": "league of y" + }, + { + "appid": 3507800, + "normalized_name": "ascending realms" + }, + { + "appid": 3507830, + "normalized_name": "buzz off!" + }, + { + "appid": 3507840, + "normalized_name": "no more grudges" + }, + { + "appid": 3507910, + "normalized_name": "setuna legend of hamburger" + }, + { + "appid": 3507930, + "normalized_name": "hellborn" + }, + { + "appid": 3507960, + "normalized_name": "idlemancer" + }, + { + "appid": 3507970, + "normalized_name": "project25" + }, + { + "appid": 3507980, + "normalized_name": "hard wheelchair" + }, + { + "appid": 3508010, + "normalized_name": "fightstone amnesty" + }, + { + "appid": 3508030, + "normalized_name": "the royal rebel casino" + }, + { + "appid": 3508040, + "normalized_name": "train plus | トレインプラス" + }, + { + "appid": 3508050, + "normalized_name": "dig dig burrito!" + }, + { + "appid": 3508060, + "normalized_name": "shutterbuds" + }, + { + "appid": 3508090, + "normalized_name": "angvik returns" + }, + { + "appid": 3508130, + "normalized_name": "beauty salon simulator vr" + }, + { + "appid": 3508200, + "normalized_name": "conundrum" + }, + { + "appid": 3508220, + "normalized_name": "art therapy jigsaw puzzle" + }, + { + "appid": 3508270, + "normalized_name": "pupupu" + }, + { + "appid": 3508280, + "normalized_name": "warlord rhapsody" + }, + { + "appid": 3508300, + "normalized_name": "way of robot" + }, + { + "appid": 3508310, + "normalized_name": "dungeon of the desirable detainees" + }, + { + "appid": 3508320, + "normalized_name": "crumps" + }, + { + "appid": 3508430, + "normalized_name": "blueline" + }, + { + "appid": 3508530, + "normalized_name": "earthlings" + }, + { + "appid": 3508560, + "normalized_name": "hallow maze" + }, + { + "appid": 3508580, + "normalized_name": "мне только спросить!" + }, + { + "appid": 3508620, + "normalized_name": "the wall" + }, + { + "appid": 3508720, + "normalized_name": "endless is near" + }, + { + "appid": 3508730, + "normalized_name": "灰烬圣预" + }, + { + "appid": 3508740, + "normalized_name": "zodiac" + }, + { + "appid": 3508750, + "normalized_name": "quest at the crossroads" + }, + { + "appid": 3508760, + "normalized_name": "sex dorm🔞" + }, + { + "appid": 3508770, + "normalized_name": "haydee 3" + }, + { + "appid": 3508780, + "normalized_name": "dr. plague" + }, + { + "appid": 3508790, + "normalized_name": "one more experiment" + }, + { + "appid": 3508820, + "normalized_name": "lantern of worlds layla's quest" + }, + { + "appid": 3508840, + "normalized_name": "witch hazel" + }, + { + "appid": 3508900, + "normalized_name": "cereal reaper" + }, + { + "appid": 3508910, + "normalized_name": "abyss kitchen" + }, + { + "appid": 3508940, + "normalized_name": "last stand zombie horde" + }, + { + "appid": 3508970, + "normalized_name": "wake up kid" + }, + { + "appid": 3509050, + "normalized_name": "[rec] desolation" + }, + { + "appid": 3509060, + "normalized_name": "finger soccer" + }, + { + "appid": 3509090, + "normalized_name": "moonspire" + }, + { + "appid": 3509120, + "normalized_name": "meowware" + }, + { + "appid": 3509150, + "normalized_name": "lunar elixer" + }, + { + "appid": 3509160, + "normalized_name": "baionlenja" + }, + { + "appid": 3509200, + "normalized_name": "michelangelo stonemason simulator" + }, + { + "appid": 3509230, + "normalized_name": "gambonanza" + }, + { + "appid": 3509250, + "normalized_name": "burst" + }, + { + "appid": 3509280, + "normalized_name": "the dojo of mochiko" + }, + { + "appid": 3509340, + "normalized_name": "clean" + }, + { + "appid": 3509380, + "normalized_name": "grimkeep" + }, + { + "appid": 3509390, + "normalized_name": "gliss" + }, + { + "appid": 3509400, + "normalized_name": "a heavy morning" + }, + { + "appid": 3509420, + "normalized_name": "planetbase 2" + }, + { + "appid": 3509430, + "normalized_name": "replicat" + }, + { + "appid": 3509460, + "normalized_name": "through the edges" + }, + { + "appid": 3509650, + "normalized_name": "vertical descent" + }, + { + "appid": 3509660, + "normalized_name": "hunt the yeti" + }, + { + "appid": 3509710, + "normalized_name": "project smile" + }, + { + "appid": 3509720, + "normalized_name": "eternalqube" + }, + { + "appid": 3509730, + "normalized_name": "jackie hart headhunter" + }, + { + "appid": 3509740, + "normalized_name": "pawns of war" + }, + { + "appid": 3509760, + "normalized_name": "i wanna quit my job" + }, + { + "appid": 3509770, + "normalized_name": "片腕のザリガニ one armed crayfish" + }, + { + "appid": 3509780, + "normalized_name": "i commissioned some frogs 5" + }, + { + "appid": 3509790, + "normalized_name": "i commissioned some snails 2" + }, + { + "appid": 3509830, + "normalized_name": "frenzy fall" + }, + { + "appid": 3509860, + "normalized_name": "cltrs" + }, + { + "appid": 3509890, + "normalized_name": "westview academy season 2" + }, + { + "appid": 3509920, + "normalized_name": "zombie tide incoming rising" + }, + { + "appid": 3509930, + "normalized_name": "the hermit and the witch" + }, + { + "appid": 3509940, + "normalized_name": "rezarus" + }, + { + "appid": 3509950, + "normalized_name": "gun in a well" + }, + { + "appid": 3509960, + "normalized_name": "scarlet quest" + }, + { + "appid": 3509970, + "normalized_name": "medieval archer simulator" + }, + { + "appid": 3510020, + "normalized_name": "fowl legacy" + }, + { + "appid": 3510060, + "normalized_name": "hellbrella" + }, + { + "appid": 3510100, + "normalized_name": "red and white" + }, + { + "appid": 3510160, + "normalized_name": "my dorm season 1" + }, + { + "appid": 3510250, + "normalized_name": "where they go" + }, + { + "appid": 3510280, + "normalized_name": "thunder tiger" + }, + { + "appid": 3510310, + "normalized_name": "flat 9" + }, + { + "appid": 3510330, + "normalized_name": "单词农场" + }, + { + "appid": 3510340, + "normalized_name": "地喰いオロチと整腸勇者 〜ダンジョン オブ ローグライク〜" + }, + { + "appid": 3510390, + "normalized_name": "chumps chained" + }, + { + "appid": 3510400, + "normalized_name": "toronto rave game" + }, + { + "appid": 3510450, + "normalized_name": "you are not alice" + }, + { + "appid": 3510460, + "normalized_name": "rollo boi" + }, + { + "appid": 3510500, + "normalized_name": "烟花自动机 firework automata" + }, + { + "appid": 3510510, + "normalized_name": "phantom of the grove" + }, + { + "appid": 3510530, + "normalized_name": "lapse" + }, + { + "appid": 3510560, + "normalized_name": "電視夢工場" + }, + { + "appid": 3510570, + "normalized_name": "香港地產王" + }, + { + "appid": 3510590, + "normalized_name": "purr fect chef cats can cook" + }, + { + "appid": 3510610, + "normalized_name": "percolator" + }, + { + "appid": 3510690, + "normalized_name": "wild shot animal savior" + }, + { + "appid": 3510710, + "normalized_name": "the sisyphus journey" + }, + { + "appid": 3510730, + "normalized_name": "loop环形谬论" + }, + { + "appid": 3510750, + "normalized_name": "chained backrooms" + }, + { + "appid": 3510760, + "normalized_name": "module berserk" + }, + { + "appid": 3510770, + "normalized_name": "sweet model" + }, + { + "appid": 3510860, + "normalized_name": "黑暗迷域" + }, + { + "appid": 3510920, + "normalized_name": "stolen blood" + }, + { + "appid": 3510930, + "normalized_name": "deep in hell" + }, + { + "appid": 3510940, + "normalized_name": "boobs hidden ibiza" + }, + { + "appid": 3510970, + "normalized_name": "blackbeard's treasure" + }, + { + "appid": 3510990, + "normalized_name": "dead rails" + }, + { + "appid": 3511010, + "normalized_name": "cursed bloodline" + }, + { + "appid": 3511020, + "normalized_name": "i drink sorrel coffee to reboot reality but i'm being hunted by monster girls and armed agents" + }, + { + "appid": 3511030, + "normalized_name": "mini cozy room lo fi" + }, + { + "appid": 3511100, + "normalized_name": "lust horizon 🔞" + }, + { + "appid": 3511120, + "normalized_name": "lost lands x" + }, + { + "appid": 3511130, + "normalized_name": "ホロライブごろごろマウンテン" + }, + { + "appid": 3511210, + "normalized_name": "der fachinformatiker trainer" + }, + { + "appid": 3511270, + "normalized_name": "strikenet" + }, + { + "appid": 3511330, + "normalized_name": "catalyst from the stars" + }, + { + "appid": 3511340, + "normalized_name": "forest mansion incident" + }, + { + "appid": 3511350, + "normalized_name": "chat ragdoll racing" + }, + { + "appid": 3511370, + "normalized_name": "tales of metal" + }, + { + "appid": 3511440, + "normalized_name": "gunsmith's defense" + }, + { + "appid": 3511450, + "normalized_name": "mystic fishing a fantasy fishing rpg 🎣" + }, + { + "appid": 3511520, + "normalized_name": "the artifactory" + }, + { + "appid": 3511530, + "normalized_name": "gulyabani" + }, + { + "appid": 3511540, + "normalized_name": "veil of ashes" + }, + { + "appid": 3511610, + "normalized_name": "dudu" + }, + { + "appid": 3511620, + "normalized_name": "super spy violet" + }, + { + "appid": 3511640, + "normalized_name": "break the block" + }, + { + "appid": 3511660, + "normalized_name": "no time to build" + }, + { + "appid": 3511670, + "normalized_name": "perfect color" + }, + { + "appid": 3511710, + "normalized_name": "hgmgame breakfast" + }, + { + "appid": 3511720, + "normalized_name": "monster hookups" + }, + { + "appid": 3511730, + "normalized_name": "終末メイドロイド" + }, + { + "appid": 3511740, + "normalized_name": "running out" + }, + { + "appid": 3511750, + "normalized_name": "asteroids and aliens" + }, + { + "appid": 3511770, + "normalized_name": "mind flowers" + }, + { + "appid": 3511810, + "normalized_name": "bot & tic" + }, + { + "appid": 3511820, + "normalized_name": "compression" + }, + { + "appid": 3511850, + "normalized_name": "hell worlds reinvigorated" + }, + { + "appid": 3511870, + "normalized_name": "grandma simulator" + }, + { + "appid": 3511890, + "normalized_name": "soul of y" + }, + { + "appid": 3511920, + "normalized_name": "haunters.net" + }, + { + "appid": 3511960, + "normalized_name": "17 ways to not die (or not idk) interactive movie" + }, + { + "appid": 3511970, + "normalized_name": "bubble dome pop to the top!" + }, + { + "appid": 3512110, + "normalized_name": "virtual drug dealer" + }, + { + "appid": 3512190, + "normalized_name": "sock dating simulator" + }, + { + "appid": 3512200, + "normalized_name": "forest asylum" + }, + { + "appid": 3512210, + "normalized_name": "skjold" + }, + { + "appid": 3512260, + "normalized_name": "project coffee" + }, + { + "appid": 3512280, + "normalized_name": "wilderlocke" + }, + { + "appid": 3512300, + "normalized_name": "dead finger dice a billionaire killing game" + }, + { + "appid": 3512410, + "normalized_name": "hentai natsuki" + }, + { + "appid": 3512420, + "normalized_name": "wirelight" + }, + { + "appid": 3512480, + "normalized_name": "drownlight" + }, + { + "appid": 3512610, + "normalized_name": "rogue warlock" + }, + { + "appid": 3512630, + "normalized_name": "bulmaca parkur yüksek çıkış" + }, + { + "appid": 3512670, + "normalized_name": "b.a.d. institute" + }, + { + "appid": 3512690, + "normalized_name": "the last son of vorona" + }, + { + "appid": 3512720, + "normalized_name": "unmasked truths shattered dreams" + }, + { + "appid": 3512730, + "normalized_name": "bouncy butt castle" + }, + { + "appid": 3512750, + "normalized_name": "vampire's veil" + }, + { + "appid": 3512760, + "normalized_name": "hidden tomatoes 4" + }, + { + "appid": 3512780, + "normalized_name": "warmonger 45" + }, + { + "appid": 3512790, + "normalized_name": "lex talionis a" + }, + { + "appid": 3512810, + "normalized_name": "fractured perception" + }, + { + "appid": 3512870, + "normalized_name": "epoch makers" + }, + { + "appid": 3512880, + "normalized_name": "incautas paradise" + }, + { + "appid": 3512950, + "normalized_name": "monterey jack" + }, + { + "appid": 3512970, + "normalized_name": "not so smart delivery" + }, + { + "appid": 3513000, + "normalized_name": "comfy girl lofi companion" + }, + { + "appid": 3513040, + "normalized_name": "the curse of the howling woods" + }, + { + "appid": 3513050, + "normalized_name": "last town" + }, + { + "appid": 3513070, + "normalized_name": "blaze of storm" + }, + { + "appid": 3513080, + "normalized_name": "yandere goth boss valentine's day" + }, + { + "appid": 3513100, + "normalized_name": "knights in a different spacetime" + }, + { + "appid": 3513190, + "normalized_name": "档案诡计" + }, + { + "appid": 3513200, + "normalized_name": "night kin" + }, + { + "appid": 3513250, + "normalized_name": "hentai furry" + }, + { + "appid": 3513270, + "normalized_name": "mr. shorty" + }, + { + "appid": 3513340, + "normalized_name": "why do boys play games?" + }, + { + "appid": 3513350, + "normalized_name": "wuthering waves" + }, + { + "appid": 3513410, + "normalized_name": "code of corruption" + }, + { + "appid": 3513430, + "normalized_name": "dashfire" + }, + { + "appid": 3513440, + "normalized_name": "combo critters battle checkers" + }, + { + "appid": 3513470, + "normalized_name": "cabinets don`t cry" + }, + { + "appid": 3513480, + "normalized_name": "ヴィクトルズ・テスト・ナイトレーヴス" + }, + { + "appid": 3513500, + "normalized_name": "cats of the yuan dynasty" + }, + { + "appid": 3513560, + "normalized_name": "lost balls" + }, + { + "appid": 3513580, + "normalized_name": "please knock sloppy research life" + }, + { + "appid": 3513590, + "normalized_name": "gravity flip x" + }, + { + "appid": 3513680, + "normalized_name": "judgement day" + }, + { + "appid": 3513720, + "normalized_name": "ravengrave iron bonds" + }, + { + "appid": 3513740, + "normalized_name": "squad raid" + }, + { + "appid": 3513790, + "normalized_name": "chess visualized" + }, + { + "appid": 3513800, + "normalized_name": "gold for retirement" + }, + { + "appid": 3513810, + "normalized_name": "无量疯之章" + }, + { + "appid": 3513850, + "normalized_name": "invisible ascent" + }, + { + "appid": 3513900, + "normalized_name": "diffusion" + }, + { + "appid": 3513920, + "normalized_name": "极乐世界(elysium)" + }, + { + "appid": 3513970, + "normalized_name": "lovely anime puzzle patrick" + }, + { + "appid": 3513990, + "normalized_name": "xerminus" + }, + { + "appid": 3514030, + "normalized_name": "hero hellspawn roguelite english learning game" + }, + { + "appid": 3514090, + "normalized_name": "filthium zero" + }, + { + "appid": 3514320, + "normalized_name": "peachy sands bay" + }, + { + "appid": 3514380, + "normalized_name": "interstice journey into darkness" + }, + { + "appid": 3514400, + "normalized_name": "prism warriors dx" + }, + { + "appid": 3514410, + "normalized_name": "mini racer car shop simulator prologue" + }, + { + "appid": 3514440, + "normalized_name": "no time for pants" + }, + { + "appid": 3514490, + "normalized_name": "tv head" + }, + { + "appid": 3514510, + "normalized_name": "trump tariff" + }, + { + "appid": 3514580, + "normalized_name": "golf pro simulator" + }, + { + "appid": 3514610, + "normalized_name": "dorsaka" + }, + { + "appid": 3514620, + "normalized_name": "astrophibian" + }, + { + "appid": 3514630, + "normalized_name": "roach post" + }, + { + "appid": 3514670, + "normalized_name": "super serious golf" + }, + { + "appid": 3514680, + "normalized_name": "box matrix" + }, + { + "appid": 3514690, + "normalized_name": "yokai survivor" + }, + { + "appid": 3514700, + "normalized_name": "brave risks" + }, + { + "appid": 3514760, + "normalized_name": "meyouw" + }, + { + "appid": 3514820, + "normalized_name": "crypt keeper" + }, + { + "appid": 3514840, + "normalized_name": "小王维修店模拟器" + }, + { + "appid": 3514940, + "normalized_name": "social caterpillar" + }, + { + "appid": 3515040, + "normalized_name": "apocalyptic pussy" + }, + { + "appid": 3515060, + "normalized_name": "ホロウソロウ" + }, + { + "appid": 3515120, + "normalized_name": "雨中的生命之歌" + }, + { + "appid": 3515130, + "normalized_name": "only up with friends 2" + }, + { + "appid": 3515140, + "normalized_name": "котыха" + }, + { + "appid": 3515160, + "normalized_name": "carcade" + }, + { + "appid": 3515180, + "normalized_name": "战区危机" + }, + { + "appid": 3515190, + "normalized_name": "lone shadow" + }, + { + "appid": 3515210, + "normalized_name": "wasteland rangers" + }, + { + "appid": 3515230, + "normalized_name": "velocity rush" + }, + { + "appid": 3515240, + "normalized_name": "track masters pro" + }, + { + "appid": 3515250, + "normalized_name": "puzzle paradise" + }, + { + "appid": 3515260, + "normalized_name": "operation blackout" + }, + { + "appid": 3515270, + "normalized_name": "freeforce airplanes" + }, + { + "appid": 3515280, + "normalized_name": "cyber revolution" + }, + { + "appid": 3515290, + "normalized_name": "seaport man" + }, + { + "appid": 3515300, + "normalized_name": "countryside legends" + }, + { + "appid": 3515310, + "normalized_name": "axios football" + }, + { + "appid": 3515320, + "normalized_name": "hillracing43" + }, + { + "appid": 3515330, + "normalized_name": "warrior adventure" + }, + { + "appid": 3515340, + "normalized_name": "cute mini golf" + }, + { + "appid": 3515350, + "normalized_name": "one screen shooter" + }, + { + "appid": 3515360, + "normalized_name": "cute cube game" + }, + { + "appid": 3515370, + "normalized_name": "cute snake 3d" + }, + { + "appid": 3515440, + "normalized_name": "death delivery" + }, + { + "appid": 3515490, + "normalized_name": "melodic mage" + }, + { + "appid": 3515500, + "normalized_name": "the proprietor" + }, + { + "appid": 3515530, + "normalized_name": "ice cream simulator" + }, + { + "appid": 3515540, + "normalized_name": "where's my hentai deck?" + }, + { + "appid": 3515550, + "normalized_name": "mr. meat" + }, + { + "appid": 3515570, + "normalized_name": "sprunki horror from the loop" + }, + { + "appid": 3515580, + "normalized_name": "deductopia chapter 1 bring your pet to school day" + }, + { + "appid": 3515620, + "normalized_name": "bunny hurling" + }, + { + "appid": 3515630, + "normalized_name": "babelomania" + }, + { + "appid": 3515660, + "normalized_name": "just a simulation" + }, + { + "appid": 3515690, + "normalized_name": "invisible wall" + }, + { + "appid": 3515710, + "normalized_name": "ashen reverie" + }, + { + "appid": 3515740, + "normalized_name": "the elevator beyond the doors" + }, + { + "appid": 3515760, + "normalized_name": "urban project" + }, + { + "appid": 3515770, + "normalized_name": "sex adventures naughty sisters episode 4" + }, + { + "appid": 3515780, + "normalized_name": "interactive sex daddy daughter incest" + }, + { + "appid": 3515790, + "normalized_name": "capybara achievement clicker" + }, + { + "appid": 3515810, + "normalized_name": "fish can run 2" + }, + { + "appid": 3515930, + "normalized_name": "leap by franklin burnett" + }, + { + "appid": 3515980, + "normalized_name": "wind giants" + }, + { + "appid": 3516000, + "normalized_name": "the crypt" + }, + { + "appid": 3516100, + "normalized_name": "tenebyss" + }, + { + "appid": 3516110, + "normalized_name": "grab it! crane game" + }, + { + "appid": 3516120, + "normalized_name": "wireframe warfare" + }, + { + "appid": 3516160, + "normalized_name": "grabbus" + }, + { + "appid": 3516180, + "normalized_name": "don't fool me beauties!" + }, + { + "appid": 3516220, + "normalized_name": "squawky" + }, + { + "appid": 3516270, + "normalized_name": "大圣伏魔:黑神话之无间劫" + }, + { + "appid": 3516420, + "normalized_name": "beyond the grove" + }, + { + "appid": 3516430, + "normalized_name": "management in space" + }, + { + "appid": 3516440, + "normalized_name": "荒野国度 legends of the wild" + }, + { + "appid": 3516450, + "normalized_name": "回家吧喵" + }, + { + "appid": 3516460, + "normalized_name": "shoot for the moon" + }, + { + "appid": 3516540, + "normalized_name": "love and hatred" + }, + { + "appid": 3516590, + "normalized_name": "allumeria" + }, + { + "appid": 3516600, + "normalized_name": "sea balloon" + }, + { + "appid": 3516620, + "normalized_name": "magical beat" + }, + { + "appid": 3516640, + "normalized_name": "desktop pasture" + }, + { + "appid": 3516700, + "normalized_name": "isekai harem quest" + }, + { + "appid": 3516710, + "normalized_name": "liquid dreams" + }, + { + "appid": 3516740, + "normalized_name": "quadrofriend" + }, + { + "appid": 3516780, + "normalized_name": "2nd eve" + }, + { + "appid": 3516800, + "normalized_name": "hyper mice rescue" + }, + { + "appid": 3516850, + "normalized_name": "typing ritual" + }, + { + "appid": 3516920, + "normalized_name": "开心宝藏王" + }, + { + "appid": 3516930, + "normalized_name": "momo bunny cash me or crash me!!" + }, + { + "appid": 3516940, + "normalized_name": "intelroach" + }, + { + "appid": 3516960, + "normalized_name": "elemental labyrinth" + }, + { + "appid": 3517050, + "normalized_name": "the unknown" + }, + { + "appid": 3517060, + "normalized_name": "fantasy shop simulator ⚔" + }, + { + "appid": 3517070, + "normalized_name": "agent sirius" + }, + { + "appid": 3517090, + "normalized_name": "fallen vestige" + }, + { + "appid": 3517110, + "normalized_name": "god of y" + }, + { + "appid": 3517150, + "normalized_name": "地狱之门" + }, + { + "appid": 3517170, + "normalized_name": "hide from papaku" + }, + { + "appid": 3517180, + "normalized_name": "muse" + }, + { + "appid": 3517270, + "normalized_name": "room football royale lands" + }, + { + "appid": 3517280, + "normalized_name": "room football ranch" + }, + { + "appid": 3517290, + "normalized_name": "archaeology grass farm" + }, + { + "appid": 3517300, + "normalized_name": "the way of knight" + }, + { + "appid": 3517310, + "normalized_name": "archaeology grass kingdom" + }, + { + "appid": 3517330, + "normalized_name": "veilwalkers" + }, + { + "appid": 3517370, + "normalized_name": "hotpot defense" + }, + { + "appid": 3517470, + "normalized_name": "shark's treasures adventure" + }, + { + "appid": 3517530, + "normalized_name": "paleolith" + }, + { + "appid": 3517550, + "normalized_name": "fishing pro simulator" + }, + { + "appid": 3517560, + "normalized_name": "undead presidents" + }, + { + "appid": 3517600, + "normalized_name": "100 closes" + }, + { + "appid": 3517660, + "normalized_name": "slime dreamscape" + }, + { + "appid": 3517740, + "normalized_name": "frostrail" + }, + { + "appid": 3517820, + "normalized_name": "my fly" + }, + { + "appid": 3517880, + "normalized_name": "clawsome" + }, + { + "appid": 3517920, + "normalized_name": "nylos" + }, + { + "appid": 3517930, + "normalized_name": "nemorsys" + }, + { + "appid": 3517950, + "normalized_name": "void raiders" + }, + { + "appid": 3517970, + "normalized_name": "reclamation" + }, + { + "appid": 3517980, + "normalized_name": "secrets of blackrock manor escape room" + }, + { + "appid": 3518010, + "normalized_name": "the ringing of twilight" + }, + { + "appid": 3518030, + "normalized_name": "synthetic paradox" + }, + { + "appid": 3518050, + "normalized_name": "chicken chasers" + }, + { + "appid": 3518070, + "normalized_name": "mystic origins" + }, + { + "appid": 3518110, + "normalized_name": "exit the abyss" + }, + { + "appid": 3518130, + "normalized_name": "saul of tarsus bible game" + }, + { + "appid": 3518210, + "normalized_name": "xenna the invasion" + }, + { + "appid": 3518220, + "normalized_name": "super meddl boy" + }, + { + "appid": 3518310, + "normalized_name": "sea aquarium screensaver" + }, + { + "appid": 3518350, + "normalized_name": "a dance with lead" + }, + { + "appid": 3518380, + "normalized_name": "myth of lumi" + }, + { + "appid": 3518400, + "normalized_name": "esquire robo" + }, + { + "appid": 3518510, + "normalized_name": "mochi conquest" + }, + { + "appid": 3518530, + "normalized_name": "fractured fables" + }, + { + "appid": 3518610, + "normalized_name": "smogshadow hunter 2" + }, + { + "appid": 3518620, + "normalized_name": "マッチョハーベスト ~ムキムキ収穫パズル~" + }, + { + "appid": 3518740, + "normalized_name": "life garden" + }, + { + "appid": 3518760, + "normalized_name": "异兽洪荒" + }, + { + "appid": 3518780, + "normalized_name": "(the lingering) last customer" + }, + { + "appid": 3518810, + "normalized_name": "鼠鼠使劲滑" + }, + { + "appid": 3518850, + "normalized_name": "psychic ward kill the seven king dragon" + }, + { + "appid": 3518870, + "normalized_name": "meteor mania" + }, + { + "appid": 3518940, + "normalized_name": "tanks online" + }, + { + "appid": 3518980, + "normalized_name": "ポーカーソリティア" + }, + { + "appid": 3518990, + "normalized_name": "nad" + }, + { + "appid": 3519030, + "normalized_name": "pixel mall" + }, + { + "appid": 3519070, + "normalized_name": "overdawn" + }, + { + "appid": 3519080, + "normalized_name": "veilbound" + }, + { + "appid": 3519090, + "normalized_name": "sunny solana" + }, + { + "appid": 3519130, + "normalized_name": "a bad clicker" + }, + { + "appid": 3519170, + "normalized_name": "又是少年立志冒险打倒魔王传" + }, + { + "appid": 3519180, + "normalized_name": "farland saga i saturn tribute" + }, + { + "appid": 3519190, + "normalized_name": "farland saga ii saturn tribute" + }, + { + "appid": 3519330, + "normalized_name": "mystery ep1" + }, + { + "appid": 3519340, + "normalized_name": "aquasplendere" + }, + { + "appid": 3519370, + "normalized_name": "death trial" + }, + { + "appid": 3519470, + "normalized_name": "land mine land" + }, + { + "appid": 3519480, + "normalized_name": "carthage bellum punicum" + }, + { + "appid": 3519500, + "normalized_name": "elusive" + }, + { + "appid": 3519530, + "normalized_name": "merge maestro" + }, + { + "appid": 3519540, + "normalized_name": "ゴールド漁師 (金條釣手)" + }, + { + "appid": 3519590, + "normalized_name": "hentai clicker maria is streaming" + }, + { + "appid": 3519630, + "normalized_name": "live war" + }, + { + "appid": 3519650, + "normalized_name": "man vs. cats" + }, + { + "appid": 3519660, + "normalized_name": "pyramid puzzle" + }, + { + "appid": 3519690, + "normalized_name": "panem ascension" + }, + { + "appid": 3519700, + "normalized_name": "go forward survivors" + }, + { + "appid": 3519730, + "normalized_name": "defying the shadows" + }, + { + "appid": 3519760, + "normalized_name": "アヴェ・クラシック" + }, + { + "appid": 3519770, + "normalized_name": "find clowns" + }, + { + "appid": 3519780, + "normalized_name": "queen's cards" + }, + { + "appid": 3519830, + "normalized_name": "さとり (satori)" + }, + { + "appid": 3519870, + "normalized_name": "aerial lockdown" + }, + { + "appid": 3519880, + "normalized_name": "hentai cleopatra" + }, + { + "appid": 3519890, + "normalized_name": "hentai yumiko" + }, + { + "appid": 3519940, + "normalized_name": "valenza family" + }, + { + "appid": 3519990, + "normalized_name": "leucanthemum eyes" + }, + { + "appid": 3520030, + "normalized_name": "knock on the window" + }, + { + "appid": 3520060, + "normalized_name": "rami on watalands" + }, + { + "appid": 3520180, + "normalized_name": "tasty bite" + }, + { + "appid": 3520210, + "normalized_name": "metal head warfare" + }, + { + "appid": 3520220, + "normalized_name": "dominions priests prophets & pretenders" + }, + { + "appid": 3520260, + "normalized_name": "bell bot" + }, + { + "appid": 3520290, + "normalized_name": "where's my bara deck?" + }, + { + "appid": 3520300, + "normalized_name": "this is love" + }, + { + "appid": 3520310, + "normalized_name": "where's my futa deck?" + }, + { + "appid": 3520330, + "normalized_name": "case records lost night" + }, + { + "appid": 3520350, + "normalized_name": "少女的求生之路:研究所" + }, + { + "appid": 3520370, + "normalized_name": "shizuoka curse | 静岡の呪い" + }, + { + "appid": 3520450, + "normalized_name": "medic simulator" + }, + { + "appid": 3520460, + "normalized_name": "cowboy in space" + }, + { + "appid": 3520480, + "normalized_name": "clown town" + }, + { + "appid": 3520490, + "normalized_name": "dragon defense" + }, + { + "appid": 3520520, + "normalized_name": "day train" + }, + { + "appid": 3520540, + "normalized_name": "card'em all!" + }, + { + "appid": 3520570, + "normalized_name": "agent of veil" + }, + { + "appid": 3520580, + "normalized_name": "sheep for the stars" + }, + { + "appid": 3520620, + "normalized_name": "computer store simulator" + }, + { + "appid": 3520660, + "normalized_name": "celler" + }, + { + "appid": 3520670, + "normalized_name": "yes sir!" + }, + { + "appid": 3520690, + "normalized_name": "eternal warriors" + }, + { + "appid": 3520750, + "normalized_name": "hardshell" + }, + { + "appid": 3520770, + "normalized_name": "deadman's wonder chapter 1" + }, + { + "appid": 3520800, + "normalized_name": "gravitech" + }, + { + "appid": 3520820, + "normalized_name": "挂机猫猫传" + }, + { + "appid": 3520830, + "normalized_name": "through his eyes" + }, + { + "appid": 3520890, + "normalized_name": "bubbleware" + }, + { + "appid": 3520940, + "normalized_name": "the outbreak protocol" + }, + { + "appid": 3520970, + "normalized_name": "minerva labyrinth" + }, + { + "appid": 3521010, + "normalized_name": "grid gladiators" + }, + { + "appid": 3521020, + "normalized_name": "perished truth" + }, + { + "appid": 3521030, + "normalized_name": "chaotic cute ghost" + }, + { + "appid": 3521050, + "normalized_name": "horny elf" + }, + { + "appid": 3521080, + "normalized_name": "oneira" + }, + { + "appid": 3521130, + "normalized_name": "rune craft" + }, + { + "appid": 3521200, + "normalized_name": "catastrophe earthquake" + }, + { + "appid": 3521220, + "normalized_name": "nano squadron" + }, + { + "appid": 3521230, + "normalized_name": "parallel rift" + }, + { + "appid": 3521270, + "normalized_name": "弓箭女神" + }, + { + "appid": 3521290, + "normalized_name": "prove it if you can! 1" + }, + { + "appid": 3521300, + "normalized_name": "tuna hake's underwater" + }, + { + "appid": 3521310, + "normalized_name": "hegzis" + }, + { + "appid": 3521320, + "normalized_name": "魔法书自走棋:契约 magicbook autobattler contract" + }, + { + "appid": 3521330, + "normalized_name": "smile you're being filmed together" + }, + { + "appid": 3521360, + "normalized_name": "budget binge just within limits" + }, + { + "appid": 3521390, + "normalized_name": "the devil ball" + }, + { + "appid": 3521410, + "normalized_name": "cats & cups" + }, + { + "appid": 3521460, + "normalized_name": "the door" + }, + { + "appid": 3521490, + "normalized_name": "mystery of the malign" + }, + { + "appid": 3521520, + "normalized_name": "silent bibus" + }, + { + "appid": 3521570, + "normalized_name": "quiete" + }, + { + "appid": 3521580, + "normalized_name": "dreamland" + }, + { + "appid": 3521600, + "normalized_name": "druids crown" + }, + { + "appid": 3521610, + "normalized_name": "waifu builder" + }, + { + "appid": 3521650, + "normalized_name": "trek" + }, + { + "appid": 3521660, + "normalized_name": "blind touch" + }, + { + "appid": 3521670, + "normalized_name": "my femboy maid" + }, + { + "appid": 3521720, + "normalized_name": "sunny reef" + }, + { + "appid": 3521740, + "normalized_name": "newbinis!" + }, + { + "appid": 3521750, + "normalized_name": "arca" + }, + { + "appid": 3521770, + "normalized_name": "boiiing boiiing" + }, + { + "appid": 3521810, + "normalized_name": "team buddies" + }, + { + "appid": 3521860, + "normalized_name": "wolf on rail" + }, + { + "appid": 3521880, + "normalized_name": "afk shift" + }, + { + "appid": 3521890, + "normalized_name": "cursebound" + }, + { + "appid": 3521930, + "normalized_name": "dream cleaners" + }, + { + "appid": 3521990, + "normalized_name": "find oann" + }, + { + "appid": 3522010, + "normalized_name": "earl the tomb robber" + }, + { + "appid": 3522040, + "normalized_name": "monster women suvivors" + }, + { + "appid": 3522090, + "normalized_name": "hobeey" + }, + { + "appid": 3522130, + "normalized_name": "dunthera tower defense" + }, + { + "appid": 3522160, + "normalized_name": "traffic jam simulator" + }, + { + "appid": 3522180, + "normalized_name": "daily driven racer" + }, + { + "appid": 3522190, + "normalized_name": "molly rodger" + }, + { + "appid": 3522230, + "normalized_name": "death stream" + }, + { + "appid": 3522240, + "normalized_name": "overrun protocol" + }, + { + "appid": 3522290, + "normalized_name": "ultrabravorpg" + }, + { + "appid": 3522320, + "normalized_name": "duelist's gambit" + }, + { + "appid": 3522350, + "normalized_name": "leadbelly" + }, + { + "appid": 3522380, + "normalized_name": "kamioza (ch1 azaria)" + }, + { + "appid": 3522420, + "normalized_name": "dumms!" + }, + { + "appid": 3522430, + "normalized_name": "rock the rim" + }, + { + "appid": 3522470, + "normalized_name": "bugsquash" + }, + { + "appid": 3522480, + "normalized_name": "trucky mctruckface" + }, + { + "appid": 3522530, + "normalized_name": "polyglock" + }, + { + "appid": 3522540, + "normalized_name": "death of a dungslinger" + }, + { + "appid": 3522560, + "normalized_name": "iron rain" + }, + { + "appid": 3522600, + "normalized_name": "demon bluff" + }, + { + "appid": 3522620, + "normalized_name": "super cricket fighter turbo" + }, + { + "appid": 3522650, + "normalized_name": "lawnmower game survival" + }, + { + "appid": 3522660, + "normalized_name": "beyond the limits" + }, + { + "appid": 3522700, + "normalized_name": "path of the ory" + }, + { + "appid": 3522710, + "normalized_name": "endless car" + }, + { + "appid": 3522720, + "normalized_name": "square jump" + }, + { + "appid": 3522730, + "normalized_name": "dodge the plane" + }, + { + "appid": 3522740, + "normalized_name": "bubble shooter" + }, + { + "appid": 3522750, + "normalized_name": "cute jump game" + }, + { + "appid": 3522760, + "normalized_name": "canada clash" + }, + { + "appid": 3522770, + "normalized_name": "森林法则" + }, + { + "appid": 3522780, + "normalized_name": "strange dream" + }, + { + "appid": 3522820, + "normalized_name": "prism shift" + }, + { + "appid": 3522860, + "normalized_name": "project enceladus" + }, + { + "appid": 3522870, + "normalized_name": "calc overflow" + }, + { + "appid": 3522960, + "normalized_name": "den pain" + }, + { + "appid": 3523000, + "normalized_name": "hero of y" + }, + { + "appid": 3523030, + "normalized_name": "widlands dominion" + }, + { + "appid": 3523120, + "normalized_name": "aeromachina" + }, + { + "appid": 3523140, + "normalized_name": "boeckham's football manager" + }, + { + "appid": 3523150, + "normalized_name": "five nights with froggy" + }, + { + "appid": 3523170, + "normalized_name": "mystery chamber world" + }, + { + "appid": 3523180, + "normalized_name": "echo arena" + }, + { + "appid": 3523260, + "normalized_name": "colossal crisis" + }, + { + "appid": 3523390, + "normalized_name": "last hit titan" + }, + { + "appid": 3523400, + "normalized_name": "waifu cards" + }, + { + "appid": 3523490, + "normalized_name": "felisade" + }, + { + "appid": 3523510, + "normalized_name": "soul sight" + }, + { + "appid": 3523520, + "normalized_name": "man of nollyn" + }, + { + "appid": 3523590, + "normalized_name": "the last job 2" + }, + { + "appid": 3523660, + "normalized_name": "adult fairy tale collector viscount" + }, + { + "appid": 3523690, + "normalized_name": "ai & the demon & the curse of lust" + }, + { + "appid": 3523700, + "normalized_name": "coulrofans" + }, + { + "appid": 3523750, + "normalized_name": "down with the ship" + }, + { + "appid": 3523760, + "normalized_name": "イーシャの魔法書解読室" + }, + { + "appid": 3523800, + "normalized_name": "lingua franca" + }, + { + "appid": 3523810, + "normalized_name": "dark jump endless ascent" + }, + { + "appid": 3523820, + "normalized_name": "king of the chat" + }, + { + "appid": 3523850, + "normalized_name": "off road together" + }, + { + "appid": 3523940, + "normalized_name": "奇迹之旅 3d找不同" + }, + { + "appid": 3523990, + "normalized_name": "坐着" + }, + { + "appid": 3524000, + "normalized_name": "dark fantasy" + }, + { + "appid": 3524040, + "normalized_name": "rope raider" + }, + { + "appid": 3524050, + "normalized_name": "creature containment" + }, + { + "appid": 3524060, + "normalized_name": "crazy golf party" + }, + { + "appid": 3524070, + "normalized_name": "teaparty in candyworld" + }, + { + "appid": 3524090, + "normalized_name": "cute fruit game" + }, + { + "appid": 3524110, + "normalized_name": "fp racer" + }, + { + "appid": 3524160, + "normalized_name": "crescent tower" + }, + { + "appid": 3524180, + "normalized_name": "终曲。" + }, + { + "appid": 3524280, + "normalized_name": "project fd" + }, + { + "appid": 3524510, + "normalized_name": "the hobo complex" + }, + { + "appid": 3524570, + "normalized_name": "bliss valley" + }, + { + "appid": 3524610, + "normalized_name": "机械臂模拟器" + }, + { + "appid": 3524700, + "normalized_name": "anomaly living" + }, + { + "appid": 3524740, + "normalized_name": "talystro" + }, + { + "appid": 3524750, + "normalized_name": "tabletop game shop simulator" + }, + { + "appid": 3524770, + "normalized_name": "ski jumping simulator" + }, + { + "appid": 3524900, + "normalized_name": "space base defense" + }, + { + "appid": 3524910, + "normalized_name": "kenopsia" + }, + { + "appid": 3524930, + "normalized_name": "robbery day" + }, + { + "appid": 3524950, + "normalized_name": "the last good boy" + }, + { + "appid": 3524960, + "normalized_name": "kingdom defense deliverance" + }, + { + "appid": 3524970, + "normalized_name": "美女公寓" + }, + { + "appid": 3525020, + "normalized_name": "the stepfather remake" + }, + { + "appid": 3525060, + "normalized_name": "moving simulator" + }, + { + "appid": 3525120, + "normalized_name": "unlock the game" + }, + { + "appid": 3525140, + "normalized_name": "platform park" + }, + { + "appid": 3525160, + "normalized_name": "black horizon armada" + }, + { + "appid": 3525210, + "normalized_name": "hunters of idlearth" + }, + { + "appid": 3525240, + "normalized_name": "kingdom wars" + }, + { + "appid": 3525320, + "normalized_name": "mina" + }, + { + "appid": 3525350, + "normalized_name": "wild space" + }, + { + "appid": 3525360, + "normalized_name": "two the top" + }, + { + "appid": 3525380, + "normalized_name": "luminaya" + }, + { + "appid": 3525390, + "normalized_name": "coloring game girls 3" + }, + { + "appid": 3525430, + "normalized_name": "研究生战斗" + }, + { + "appid": 3525460, + "normalized_name": "everyday life fragments" + }, + { + "appid": 3525530, + "normalized_name": "corpse city" + }, + { + "appid": 3525580, + "normalized_name": "castle combat" + }, + { + "appid": 3525610, + "normalized_name": "profana" + }, + { + "appid": 3525620, + "normalized_name": "wall street raider" + }, + { + "appid": 3525650, + "normalized_name": "macro data refinement simulator shapes" + }, + { + "appid": 3525750, + "normalized_name": "constant pressure" + }, + { + "appid": 3525840, + "normalized_name": "complex 629" + }, + { + "appid": 3525850, + "normalized_name": "how much items animals" + }, + { + "appid": 3525880, + "normalized_name": "how much items vehicles" + }, + { + "appid": 3525890, + "normalized_name": "future vibe check" + }, + { + "appid": 3525930, + "normalized_name": "project r" + }, + { + "appid": 3525940, + "normalized_name": "pestilence" + }, + { + "appid": 3525970, + "normalized_name": "horripilant" + }, + { + "appid": 3526100, + "normalized_name": "bullet dungeon" + }, + { + "appid": 3526260, + "normalized_name": "kinetic canvas" + }, + { + "appid": 3526440, + "normalized_name": "annota line" + }, + { + "appid": 3526450, + "normalized_name": "exitless" + }, + { + "appid": 3526560, + "normalized_name": "dwarven village dark siege td" + }, + { + "appid": 3526620, + "normalized_name": "day after day" + }, + { + "appid": 3526710, + "normalized_name": "everything is crab" + }, + { + "appid": 3526730, + "normalized_name": "rainbow unicorn dash" + }, + { + "appid": 3526790, + "normalized_name": "love mart 🛒❤" + }, + { + "appid": 3526810, + "normalized_name": "frontiers reach battlespace" + }, + { + "appid": 3526830, + "normalized_name": "demon goblin and mr. knight 小鬼哥布林與騎士先生" + }, + { + "appid": 3526900, + "normalized_name": "magic ball" + }, + { + "appid": 3526920, + "normalized_name": "ms. holmes letter m collector's" + }, + { + "appid": 3527020, + "normalized_name": "shut the windows and don't look outside" + }, + { + "appid": 3527030, + "normalized_name": "mister gato idle the meowsiah" + }, + { + "appid": 3527070, + "normalized_name": "bound by volithine" + }, + { + "appid": 3527080, + "normalized_name": "phantom incident" + }, + { + "appid": 3527250, + "normalized_name": "自然選擇大學" + }, + { + "appid": 3527300, + "normalized_name": "mountain taxi challenge" + }, + { + "appid": 3527340, + "normalized_name": "castle war" + }, + { + "appid": 3527610, + "normalized_name": "money theft" + }, + { + "appid": 3527650, + "normalized_name": "taskbar looters" + }, + { + "appid": 3527690, + "normalized_name": "mind controlling magic device" + }, + { + "appid": 3527700, + "normalized_name": "another voice" + }, + { + "appid": 3527750, + "normalized_name": "爱人:aijin" + }, + { + "appid": 3527760, + "normalized_name": "robocop rogue city unfinished business" + }, + { + "appid": 3527780, + "normalized_name": "blockcharted" + }, + { + "appid": 3527800, + "normalized_name": "hentai clicker reika is streaming" + }, + { + "appid": 3527820, + "normalized_name": "chickenhare and the treasure of spiking beard" + }, + { + "appid": 3527880, + "normalized_name": "synforce" + }, + { + "appid": 3527890, + "normalized_name": "mystic merchant" + }, + { + "appid": 3527900, + "normalized_name": "破法神谕" + }, + { + "appid": 3527910, + "normalized_name": "dragon attack mythologies a night wolf revenge" + }, + { + "appid": 3527920, + "normalized_name": "corot" + }, + { + "appid": 3527930, + "normalized_name": "sex adventures incest family episode 4" + }, + { + "appid": 3528000, + "normalized_name": "witch hunters" + }, + { + "appid": 3528170, + "normalized_name": "hentai clicker hanma is streaming" + }, + { + "appid": 3528190, + "normalized_name": "月之冕" + }, + { + "appid": 3528200, + "normalized_name": "ballad as the music goes (alpha)" + }, + { + "appid": 3528210, + "normalized_name": "floor 0" + }, + { + "appid": 3528230, + "normalized_name": "fading light" + }, + { + "appid": 3528270, + "normalized_name": "forgotten the curse of village" + }, + { + "appid": 3528280, + "normalized_name": "crime detective red flags" + }, + { + "appid": 3528320, + "normalized_name": "secret seeker" + }, + { + "appid": 3528380, + "normalized_name": "scalebox" + }, + { + "appid": 3528400, + "normalized_name": "silent mist" + }, + { + "appid": 3528450, + "normalized_name": "纸房子" + }, + { + "appid": 3528480, + "normalized_name": "deal on four wheels" + }, + { + "appid": 3528490, + "normalized_name": "swipe right for sugar mama sensei" + }, + { + "appid": 3528500, + "normalized_name": "perspective" + }, + { + "appid": 3528510, + "normalized_name": "shank prison survival" + }, + { + "appid": 3528560, + "normalized_name": "おじvsおじ" + }, + { + "appid": 3528590, + "normalized_name": "u.n.p.o.c. vessel of opportunity" + }, + { + "appid": 3528640, + "normalized_name": "green revival" + }, + { + "appid": 3528650, + "normalized_name": "spin the fire" + }, + { + "appid": 3528740, + "normalized_name": "boss of fcs" + }, + { + "appid": 3528840, + "normalized_name": "pragma twice" + }, + { + "appid": 3528870, + "normalized_name": "despair dungeon" + }, + { + "appid": 3528900, + "normalized_name": "turd merge" + }, + { + "appid": 3528910, + "normalized_name": "ассенизатор" + }, + { + "appid": 3528930, + "normalized_name": "spacesheep" + }, + { + "appid": 3528950, + "normalized_name": "fluffy memories" + }, + { + "appid": 3528970, + "normalized_name": "unmourned" + }, + { + "appid": 3529010, + "normalized_name": "blood curse legions" + }, + { + "appid": 3529090, + "normalized_name": "astra bestiary" + }, + { + "appid": 3529110, + "normalized_name": "bushcraft survival" + }, + { + "appid": 3529140, + "normalized_name": "no rest for the weary" + }, + { + "appid": 3529190, + "normalized_name": "riftbound legacy of the surge" + }, + { + "appid": 3529200, + "normalized_name": "fly with friends" + }, + { + "appid": 3529240, + "normalized_name": "prismatic nox's gate" + }, + { + "appid": 3529320, + "normalized_name": "relatos silenciados visita indesejada" + }, + { + "appid": 3529330, + "normalized_name": "the gallery" + }, + { + "appid": 3529380, + "normalized_name": "carrotour" + }, + { + "appid": 3529390, + "normalized_name": "bait & tackle" + }, + { + "appid": 3529400, + "normalized_name": "mow meow" + }, + { + "appid": 3529560, + "normalized_name": "voiceatc simulator" + }, + { + "appid": 3529630, + "normalized_name": "dungeon explorers" + }, + { + "appid": 3529690, + "normalized_name": "creepy tale snow child" + }, + { + "appid": 3529750, + "normalized_name": "pomopet" + }, + { + "appid": 3529780, + "normalized_name": "starhunter" + }, + { + "appid": 3529820, + "normalized_name": "uworld" + }, + { + "appid": 3529870, + "normalized_name": "晓慧同学的完美推理" + }, + { + "appid": 3529900, + "normalized_name": "comeback jam" + }, + { + "appid": 3529910, + "normalized_name": "the great coffee caper" + }, + { + "appid": 3529930, + "normalized_name": "the great tribes" + }, + { + "appid": 3530000, + "normalized_name": "プールクラブからの脱出" + }, + { + "appid": 3530010, + "normalized_name": "meows farm" + }, + { + "appid": 3530050, + "normalized_name": "dr.robert's clinic" + }, + { + "appid": 3530060, + "normalized_name": "drill space" + }, + { + "appid": 3530080, + "normalized_name": "hentai world slice" + }, + { + "appid": 3530120, + "normalized_name": "jump to space" + }, + { + "appid": 3530130, + "normalized_name": "봄을 부르는 설녀 유나" + }, + { + "appid": 3530160, + "normalized_name": "heartreasure stellar journey" + }, + { + "appid": 3530170, + "normalized_name": "mind over monarchy" + }, + { + "appid": 3530200, + "normalized_name": "questionbank" + }, + { + "appid": 3530230, + "normalized_name": "end chess arrow" + }, + { + "appid": 3530240, + "normalized_name": "love is a demon" + }, + { + "appid": 3530280, + "normalized_name": "bus simulator" + }, + { + "appid": 3530370, + "normalized_name": "sweet easter" + }, + { + "appid": 3530380, + "normalized_name": "bloodbreaker labyrinth of the witch" + }, + { + "appid": 3530480, + "normalized_name": "花連火匠ノ宴" + }, + { + "appid": 3530490, + "normalized_name": "黯淡密林:鲁莽小队(fadedlands the reckless squad)" + }, + { + "appid": 3530510, + "normalized_name": "poor piggy pirate" + }, + { + "appid": 3530540, + "normalized_name": "bulletnico" + }, + { + "appid": 3530600, + "normalized_name": "snapaul 2 anomalies" + }, + { + "appid": 3530630, + "normalized_name": "bless you again" + }, + { + "appid": 3530640, + "normalized_name": "pecking order" + }, + { + "appid": 3530660, + "normalized_name": "reboot my heart" + }, + { + "appid": 3530670, + "normalized_name": "mosaic of the pharaohs" + }, + { + "appid": 3530680, + "normalized_name": "how 2 escape lost submarine" + }, + { + "appid": 3530690, + "normalized_name": "hidden anime girls" + }, + { + "appid": 3530700, + "normalized_name": "101 cats hidden in orlando" + }, + { + "appid": 3530750, + "normalized_name": "tower offense" + }, + { + "appid": 3530760, + "normalized_name": "interactive sex mom son incest" + }, + { + "appid": 3530770, + "normalized_name": "monster city a monster college story" + }, + { + "appid": 3530780, + "normalized_name": "cube guardian tower defender" + }, + { + "appid": 3530790, + "normalized_name": "101 cats hidden in thailand" + }, + { + "appid": 3530800, + "normalized_name": "101 cats hidden in antalya" + }, + { + "appid": 3530820, + "normalized_name": "puzzling places 3d jigsaw sim" + }, + { + "appid": 3530860, + "normalized_name": "candyville cafe" + }, + { + "appid": 3530900, + "normalized_name": "ninja parkour" + }, + { + "appid": 3530950, + "normalized_name": "zombie blocks pixel shooter gun" + }, + { + "appid": 3530960, + "normalized_name": "drug city simulator" + }, + { + "appid": 3531170, + "normalized_name": "ぎゃるぼっち" + }, + { + "appid": 3531180, + "normalized_name": "magic frog" + }, + { + "appid": 3531200, + "normalized_name": "forever epic story a journey of life [music album]" + }, + { + "appid": 3531250, + "normalized_name": "kid mystic enchanted" + }, + { + "appid": 3531260, + "normalized_name": "superhero simulator" + }, + { + "appid": 3531340, + "normalized_name": "car painter sim" + }, + { + "appid": 3531360, + "normalized_name": "scribbles" + }, + { + "appid": 3531410, + "normalized_name": "architecture designer" + }, + { + "appid": 3531430, + "normalized_name": "love sim" + }, + { + "appid": 3531450, + "normalized_name": "meow mates" + }, + { + "appid": 3531470, + "normalized_name": "driving life" + }, + { + "appid": 3531490, + "normalized_name": "treeplanter" + }, + { + "appid": 3531520, + "normalized_name": "spirit channel" + }, + { + "appid": 3531590, + "normalized_name": "就活シスターエリーゼ!" + }, + { + "appid": 3531610, + "normalized_name": "stellar raiders" + }, + { + "appid": 3531630, + "normalized_name": "tomb of the bloodletter" + }, + { + "appid": 3531640, + "normalized_name": "you shouldn't be here" + }, + { + "appid": 3531660, + "normalized_name": "unwahrheit" + }, + { + "appid": 3531710, + "normalized_name": "qiyb2" + }, + { + "appid": 3531760, + "normalized_name": "wonderlang korean" + }, + { + "appid": 3531770, + "normalized_name": "cybercafe" + }, + { + "appid": 3531790, + "normalized_name": "pioneers of the coast" + }, + { + "appid": 3531800, + "normalized_name": "sherman's quest" + }, + { + "appid": 3531880, + "normalized_name": "shag your it" + }, + { + "appid": 3531890, + "normalized_name": "d beat heroes" + }, + { + "appid": 3531920, + "normalized_name": "under rooms" + }, + { + "appid": 3531950, + "normalized_name": "medieval halloween vr" + }, + { + "appid": 3531960, + "normalized_name": "liese in the city of trials" + }, + { + "appid": 3531970, + "normalized_name": "railway chai wala" + }, + { + "appid": 3531980, + "normalized_name": "obscurite magie 3 the divine stones" + }, + { + "appid": 3531990, + "normalized_name": "tentacaliens making ends meet in a new world" + }, + { + "appid": 3532010, + "normalized_name": "art house" + }, + { + "appid": 3532030, + "normalized_name": "just keep looting" + }, + { + "appid": 3532060, + "normalized_name": "foldy's os quest" + }, + { + "appid": 3532100, + "normalized_name": "shadow sector" + }, + { + "appid": 3532150, + "normalized_name": "drift kings multiplayer" + }, + { + "appid": 3532280, + "normalized_name": "journey through the undead" + }, + { + "appid": 3532290, + "normalized_name": "a simple platformer" + }, + { + "appid": 3532300, + "normalized_name": "chaos classroom" + }, + { + "appid": 3532340, + "normalized_name": "bobo in hell" + }, + { + "appid": 3532360, + "normalized_name": "pirate's gambit" + }, + { + "appid": 3532380, + "normalized_name": "ai gallery ”city girls”" + }, + { + "appid": 3532430, + "normalized_name": "general" + }, + { + "appid": 3532460, + "normalized_name": "project ud" + }, + { + "appid": 3532470, + "normalized_name": "wild boar survival" + }, + { + "appid": 3532560, + "normalized_name": "moe waifu h push box" + }, + { + "appid": 3532570, + "normalized_name": "super engine gt turbo spec" + }, + { + "appid": 3532650, + "normalized_name": "square escape challenge" + }, + { + "appid": 3532680, + "normalized_name": "lusty shores" + }, + { + "appid": 3532690, + "normalized_name": "climbing gym simulator" + }, + { + "appid": 3532720, + "normalized_name": "turnbreak" + }, + { + "appid": 3532780, + "normalized_name": "the lost saga" + }, + { + "appid": 3532800, + "normalized_name": "跋山" + }, + { + "appid": 3532810, + "normalized_name": "gulltastrophe" + }, + { + "appid": 3532830, + "normalized_name": "saints of the fallen cross" + }, + { + "appid": 3532860, + "normalized_name": "漂流到岛" + }, + { + "appid": 3532870, + "normalized_name": "双面王牌" + }, + { + "appid": 3532890, + "normalized_name": "dad's monster house 2 medal" + }, + { + "appid": 3532920, + "normalized_name": "sex adventures naughty sisters episode 5" + }, + { + "appid": 3532980, + "normalized_name": "flicker" + }, + { + "appid": 3532990, + "normalized_name": "the map is the thing" + }, + { + "appid": 3533010, + "normalized_name": "sphenoid" + }, + { + "appid": 3533080, + "normalized_name": "up or down?" + }, + { + "appid": 3533100, + "normalized_name": "wrap house simulator🌯" + }, + { + "appid": 3533130, + "normalized_name": "ファイヤーエムブレイスii~中年と希望の光~" + }, + { + "appid": 3533210, + "normalized_name": "invisible room" + }, + { + "appid": 3533230, + "normalized_name": "三国.群英重制版" + }, + { + "appid": 3533290, + "normalized_name": "迷雾岛屿:9号万能试剂" + }, + { + "appid": 3533330, + "normalized_name": "milf's so juicy 🍑💦" + }, + { + "appid": 3533360, + "normalized_name": "filiy eclipse" + }, + { + "appid": 3533370, + "normalized_name": "ogrüuk" + }, + { + "appid": 3533380, + "normalized_name": "fixing the apocalypse" + }, + { + "appid": 3533400, + "normalized_name": "paint rumble" + }, + { + "appid": 3533480, + "normalized_name": "settletopia" + }, + { + "appid": 3533500, + "normalized_name": "leaforia" + }, + { + "appid": 3533520, + "normalized_name": "accursed isle survival" + }, + { + "appid": 3533540, + "normalized_name": "napolitan hotel" + }, + { + "appid": 3533560, + "normalized_name": "atomic cyclecar racing 2" + }, + { + "appid": 3533570, + "normalized_name": "spidle tridle" + }, + { + "appid": 3533600, + "normalized_name": "dominions 2 the ascension wars" + }, + { + "appid": 3533630, + "normalized_name": "rhythm town music visualizer" + }, + { + "appid": 3533640, + "normalized_name": "liars" + }, + { + "appid": 3533650, + "normalized_name": "wallsmashers" + }, + { + "appid": 3533660, + "normalized_name": "wildcat snack attack" + }, + { + "appid": 3533690, + "normalized_name": "ghouls & guardians" + }, + { + "appid": 3533720, + "normalized_name": "escape room tiny room collection" + }, + { + "appid": 3533830, + "normalized_name": "brány skeldalu" + }, + { + "appid": 3533870, + "normalized_name": "code of reality" + }, + { + "appid": 3533920, + "normalized_name": "dinos td" + }, + { + "appid": 3534000, + "normalized_name": "the mailman" + }, + { + "appid": 3534040, + "normalized_name": "mirror quest dog and cat" + }, + { + "appid": 3534070, + "normalized_name": "exorsys" + }, + { + "appid": 3534090, + "normalized_name": "dealicious" + }, + { + "appid": 3534130, + "normalized_name": "glitchers" + }, + { + "appid": 3534150, + "normalized_name": "postal 2 vr" + }, + { + "appid": 3534170, + "normalized_name": "mination" + }, + { + "appid": 3534190, + "normalized_name": "yokai hunters" + }, + { + "appid": 3534220, + "normalized_name": "bojan" + }, + { + "appid": 3534240, + "normalized_name": "uncanny tales cold road" + }, + { + "appid": 3534300, + "normalized_name": "low cup" + }, + { + "appid": 3534460, + "normalized_name": "the path of blades" + }, + { + "appid": 3534520, + "normalized_name": "positive! hapili link" + }, + { + "appid": 3534530, + "normalized_name": "warded fortress" + }, + { + "appid": 3534630, + "normalized_name": "stellar drift" + }, + { + "appid": 3534650, + "normalized_name": "jet birds" + }, + { + "appid": 3534690, + "normalized_name": "games tycoon" + }, + { + "appid": 3534700, + "normalized_name": "the fear chants echoes of the devil" + }, + { + "appid": 3534720, + "normalized_name": "inner rain" + }, + { + "appid": 3534760, + "normalized_name": "la residencia del doctor gallagher" + }, + { + "appid": 3534820, + "normalized_name": "seeker 3" + }, + { + "appid": 3534830, + "normalized_name": "việt quốc truyền kỳ" + }, + { + "appid": 3534850, + "normalized_name": "summit steps of solace" + }, + { + "appid": 3534910, + "normalized_name": "雄蜂の規律 uav practical simulator ドローン実技シミュレーター" + }, + { + "appid": 3534920, + "normalized_name": "blade of the yokai" + }, + { + "appid": 3534940, + "normalized_name": "soundcolors" + }, + { + "appid": 3535000, + "normalized_name": "naughty doughy" + }, + { + "appid": 3535030, + "normalized_name": "sweets & dragons" + }, + { + "appid": 3535050, + "normalized_name": "void breaker" + }, + { + "appid": 3535060, + "normalized_name": "lecture me later" + }, + { + "appid": 3535110, + "normalized_name": "hexa world 3d" + }, + { + "appid": 3535130, + "normalized_name": "寻踪" + }, + { + "appid": 3535160, + "normalized_name": "r2r rewire to revolt" + }, + { + "appid": 3535190, + "normalized_name": "deskeroes" + }, + { + "appid": 3535200, + "normalized_name": "时流回忆录 凤鸣千秋" + }, + { + "appid": 3535210, + "normalized_name": "stealer" + }, + { + "appid": 3535220, + "normalized_name": "石頭物語" + }, + { + "appid": 3535310, + "normalized_name": "vermin control 害蟲防治" + }, + { + "appid": 3535320, + "normalized_name": "memories of zattera" + }, + { + "appid": 3535330, + "normalized_name": "terraspace" + }, + { + "appid": 3535400, + "normalized_name": "project dimension" + }, + { + "appid": 3535430, + "normalized_name": "カプリット球ミニゲームコレクション" + }, + { + "appid": 3535470, + "normalized_name": "axia and the grim reaper" + }, + { + "appid": 3535480, + "normalized_name": "your digital cookbook" + }, + { + "appid": 3535530, + "normalized_name": "circus of pain" + }, + { + "appid": 3535590, + "normalized_name": "legend of cozar" + }, + { + "appid": 3535600, + "normalized_name": "berserker 2 the saga of hilde" + }, + { + "appid": 3535730, + "normalized_name": "kiki's nightmare" + }, + { + "appid": 3535760, + "normalized_name": "high above" + }, + { + "appid": 3535770, + "normalized_name": "救援战记" + }, + { + "appid": 3535800, + "normalized_name": "collisions cosmic geometry" + }, + { + "appid": 3535830, + "normalized_name": "anomaly report" + }, + { + "appid": 3535860, + "normalized_name": "home again" + }, + { + "appid": 3535870, + "normalized_name": "bayaya" + }, + { + "appid": 3535970, + "normalized_name": "valhalla lilith rising 3" + }, + { + "appid": 3535980, + "normalized_name": "kiloton black company" + }, + { + "appid": 3536020, + "normalized_name": "ancestral harvest" + }, + { + "appid": 3536080, + "normalized_name": "里世界学院1:终末轮回救赎" + }, + { + "appid": 3536090, + "normalized_name": "the exorcist gravebound horror" + }, + { + "appid": 3536100, + "normalized_name": "cyberslayer no time to regret" + }, + { + "appid": 3536140, + "normalized_name": "easy as pi" + }, + { + "appid": 3536150, + "normalized_name": "sushicup legend" + }, + { + "appid": 3536260, + "normalized_name": "dyed in white" + }, + { + "appid": 3536310, + "normalized_name": "charlotte a soft femdom game" + }, + { + "appid": 3536350, + "normalized_name": "my wife is a porn star" + }, + { + "appid": 3536380, + "normalized_name": "gridkeeper" + }, + { + "appid": 3536400, + "normalized_name": "incest story mother and aunt" + }, + { + "appid": 3536410, + "normalized_name": "sweet revenge" + }, + { + "appid": 3536470, + "normalized_name": "uprising on altyyr 5" + }, + { + "appid": 3536480, + "normalized_name": "ac 130丧尸炮艇" + }, + { + "appid": 3536490, + "normalized_name": "scaredy cat the tale of boo" + }, + { + "appid": 3536500, + "normalized_name": "tunguska 2 whitefall" + }, + { + "appid": 3536520, + "normalized_name": "warding witches" + }, + { + "appid": 3536530, + "normalized_name": "örnöga idle" + }, + { + "appid": 3536600, + "normalized_name": "rabit" + }, + { + "appid": 3536610, + "normalized_name": "time guard the red menace" + }, + { + "appid": 3536630, + "normalized_name": "automacake" + }, + { + "appid": 3536660, + "normalized_name": "scary shadow spot all in" + }, + { + "appid": 3536670, + "normalized_name": "conveyor belt sushi simulator" + }, + { + "appid": 3536730, + "normalized_name": "hermes' runner" + }, + { + "appid": 3536760, + "normalized_name": "hollywood mogul 4" + }, + { + "appid": 3536770, + "normalized_name": "egnima" + }, + { + "appid": 3536870, + "normalized_name": "cat girl without salad amuse bouche" + }, + { + "appid": 3536910, + "normalized_name": "maniac path 4" + }, + { + "appid": 3536950, + "normalized_name": "mini worlds dioramas" + }, + { + "appid": 3537000, + "normalized_name": "megamelon suika beach" + }, + { + "appid": 3537140, + "normalized_name": "misty's idle fishing" + }, + { + "appid": 3537220, + "normalized_name": "departure" + }, + { + "appid": 3537230, + "normalized_name": "anlg_void" + }, + { + "appid": 3537310, + "normalized_name": "rusty's adventure" + }, + { + "appid": 3537400, + "normalized_name": "sky reclaimers" + }, + { + "appid": 3537410, + "normalized_name": "the dinner" + }, + { + "appid": 3537420, + "normalized_name": "hidden assault" + }, + { + "appid": 3537450, + "normalized_name": "dysfunct" + }, + { + "appid": 3537490, + "normalized_name": "vial trial" + }, + { + "appid": 3537530, + "normalized_name": "don't shoot politics" + }, + { + "appid": 3537540, + "normalized_name": "pit of despair" + }, + { + "appid": 3537580, + "normalized_name": "lumara" + }, + { + "appid": 3537620, + "normalized_name": "friday night" + }, + { + "appid": 3537640, + "normalized_name": "five s'hift masters" + }, + { + "appid": 3537650, + "normalized_name": "天降神兵(soldiers from the sky)" + }, + { + "appid": 3537680, + "normalized_name": "sea of trials" + }, + { + "appid": 3537690, + "normalized_name": "balls dice & stickers" + }, + { + "appid": 3537700, + "normalized_name": "just anomalies" + }, + { + "appid": 3537720, + "normalized_name": "quantum tank" + }, + { + "appid": 3537730, + "normalized_name": "yukomon" + }, + { + "appid": 3537830, + "normalized_name": "echoes of the architects prologue" + }, + { + "appid": 3537850, + "normalized_name": "rockit ronnie" + }, + { + "appid": 3537890, + "normalized_name": "drill beat" + }, + { + "appid": 3537910, + "normalized_name": "小杂鱼求生记" + }, + { + "appid": 3537930, + "normalized_name": "mobocalypse" + }, + { + "appid": 3537950, + "normalized_name": "cleaning simulator" + }, + { + "appid": 3537960, + "normalized_name": "puppet’s last act" + }, + { + "appid": 3537980, + "normalized_name": "beatfinder" + }, + { + "appid": 3537990, + "normalized_name": "office simulator prologue" + }, + { + "appid": 3538010, + "normalized_name": "dug out" + }, + { + "appid": 3538050, + "normalized_name": "fun school chapter 1" + }, + { + "appid": 3538060, + "normalized_name": "insomnia" + }, + { + "appid": 3538070, + "normalized_name": "greed & darkness" + }, + { + "appid": 3538090, + "normalized_name": "stream star sensations" + }, + { + "appid": 3538100, + "normalized_name": "mouse" + }, + { + "appid": 3538130, + "normalized_name": "after juice animal disco mafia" + }, + { + "appid": 3538140, + "normalized_name": "heading over it with the twins" + }, + { + "appid": 3538190, + "normalized_name": "the adventures of freddie and squeak" + }, + { + "appid": 3538210, + "normalized_name": "alliance peacefighter" + }, + { + "appid": 3538230, + "normalized_name": "alleyville harbor 09" + }, + { + "appid": 3538250, + "normalized_name": "the book of plagues" + }, + { + "appid": 3538320, + "normalized_name": "core rush ! dash arena" + }, + { + "appid": 3538350, + "normalized_name": "trump simulator 2025" + }, + { + "appid": 3538370, + "normalized_name": "wadar a dimension altering reality" + }, + { + "appid": 3538380, + "normalized_name": "crazy racer" + }, + { + "appid": 3538420, + "normalized_name": "simple nightmares strategic shooter" + }, + { + "appid": 3538440, + "normalized_name": "fugue shot" + }, + { + "appid": 3538500, + "normalized_name": "etiquette elegance" + }, + { + "appid": 3538510, + "normalized_name": "summer break" + }, + { + "appid": 3538520, + "normalized_name": "super dash" + }, + { + "appid": 3538620, + "normalized_name": "spank the idle monkey" + }, + { + "appid": 3538660, + "normalized_name": "red filament" + }, + { + "appid": 3538680, + "normalized_name": "hiroshi" + }, + { + "appid": 3538690, + "normalized_name": "surge runner" + }, + { + "appid": 3538720, + "normalized_name": "tower runner" + }, + { + "appid": 3538750, + "normalized_name": "chaos fighter" + }, + { + "appid": 3538760, + "normalized_name": "code angel reloaded vr" + }, + { + "appid": 3538780, + "normalized_name": "(ツン)デレ少女とイチャラブえっち!! ~快楽を知ってしまった末路はお〇んぽ依存症に~" + }, + { + "appid": 3538810, + "normalized_name": "universal power blade of persia" + }, + { + "appid": 3538820, + "normalized_name": "galactic simulator2 stargate" + }, + { + "appid": 3538840, + "normalized_name": "haunted service" + }, + { + "appid": 3538850, + "normalized_name": "entropy architects" + }, + { + "appid": 3538860, + "normalized_name": "tabulo" + }, + { + "appid": 3538880, + "normalized_name": "leann sins" + }, + { + "appid": 3538920, + "normalized_name": "battle ground battle royale" + }, + { + "appid": 3538950, + "normalized_name": "昆仑仙境" + }, + { + "appid": 3539010, + "normalized_name": "spider’s climb" + }, + { + "appid": 3539020, + "normalized_name": "conveyor belt sushi simulator prologue" + }, + { + "appid": 3539030, + "normalized_name": "melodraw" + }, + { + "appid": 3539120, + "normalized_name": "vampire's castle" + }, + { + "appid": 3539150, + "normalized_name": "puzzle tales arcane voyager" + }, + { + "appid": 3539170, + "normalized_name": "galactic vibes" + }, + { + "appid": 3539200, + "normalized_name": "crownbound fantasy kingdom sim" + }, + { + "appid": 3539220, + "normalized_name": "trash trek simulator" + }, + { + "appid": 3539270, + "normalized_name": "vox populi australia 2025" + }, + { + "appid": 3539280, + "normalized_name": "vox populi canada 2025" + }, + { + "appid": 3539320, + "normalized_name": "scribble wolf" + }, + { + "appid": 3539330, + "normalized_name": "human heritage" + }, + { + "appid": 3539360, + "normalized_name": "full gear mong kok" + }, + { + "appid": 3539440, + "normalized_name": "metal garden" + }, + { + "appid": 3539480, + "normalized_name": "back of beyond" + }, + { + "appid": 3539520, + "normalized_name": "star words the board game" + }, + { + "appid": 3539570, + "normalized_name": "clap clash" + }, + { + "appid": 3539590, + "normalized_name": "wrong floor" + }, + { + "appid": 3539600, + "normalized_name": "tales of klodan" + }, + { + "appid": 3539680, + "normalized_name": "semp 64" + }, + { + "appid": 3539690, + "normalized_name": "bomb around" + }, + { + "appid": 3539710, + "normalized_name": "shroom man's destination" + }, + { + "appid": 3539790, + "normalized_name": "road 7" + }, + { + "appid": 3539870, + "normalized_name": "i got hired to guard the button that destroys the earth" + }, + { + "appid": 3539920, + "normalized_name": "hexa fusion 2048" + }, + { + "appid": 3539970, + "normalized_name": "super smiling dungeon" + }, + { + "appid": 3540100, + "normalized_name": "beyond the red door" + }, + { + "appid": 3540160, + "normalized_name": "vr helsing" + }, + { + "appid": 3540210, + "normalized_name": "demonstrate" + }, + { + "appid": 3540230, + "normalized_name": "stopping santa" + }, + { + "appid": 3540270, + "normalized_name": "archon initiator" + }, + { + "appid": 3540360, + "normalized_name": "fuck paper scissors" + }, + { + "appid": 3540430, + "normalized_name": "dungeon weiqi" + }, + { + "appid": 3540440, + "normalized_name": "百鬼图鉴 国风.挂机.卡牌.游戏" + }, + { + "appid": 3540450, + "normalized_name": "shan hai mythic origins" + }, + { + "appid": 3540460, + "normalized_name": "watermelon (with a broken head) game" + }, + { + "appid": 3540500, + "normalized_name": "vampire master" + }, + { + "appid": 3540510, + "normalized_name": "loopmayor" + }, + { + "appid": 3540530, + "normalized_name": "lost child" + }, + { + "appid": 3540550, + "normalized_name": "purgatory’s flower" + }, + { + "appid": 3540560, + "normalized_name": "sweet succubus" + }, + { + "appid": 3540570, + "normalized_name": "survivesmith" + }, + { + "appid": 3540580, + "normalized_name": "elemental slime" + }, + { + "appid": 3540590, + "normalized_name": "the cooking club" + }, + { + "appid": 3540600, + "normalized_name": "master knight" + }, + { + "appid": 3540610, + "normalized_name": "astral hunter homebound" + }, + { + "appid": 3540620, + "normalized_name": "the linger" + }, + { + "appid": 3540670, + "normalized_name": "squaser 5" + }, + { + "appid": 3540690, + "normalized_name": "take care" + }, + { + "appid": 3540760, + "normalized_name": "the son of art" + }, + { + "appid": 3540770, + "normalized_name": "camel keeper" + }, + { + "appid": 3540790, + "normalized_name": "dungeon duelists" + }, + { + "appid": 3540820, + "normalized_name": "shadows of tuonela" + }, + { + "appid": 3540830, + "normalized_name": "菜鸟闯江湖" + }, + { + "appid": 3540870, + "normalized_name": "you are a failed murderer" + }, + { + "appid": 3540880, + "normalized_name": "balloon hater" + }, + { + "appid": 3540900, + "normalized_name": "golf up tropical" + }, + { + "appid": 3540920, + "normalized_name": "frogstool" + }, + { + "appid": 3541000, + "normalized_name": "kingdom loop" + }, + { + "appid": 3541050, + "normalized_name": "draw in the tray 2" + }, + { + "appid": 3541070, + "normalized_name": "the dream crawler" + }, + { + "appid": 3541100, + "normalized_name": "digsite" + }, + { + "appid": 3541130, + "normalized_name": "many nights a whisper" + }, + { + "appid": 3541160, + "normalized_name": "jitter games" + }, + { + "appid": 3541180, + "normalized_name": "梦境边界" + }, + { + "appid": 3541190, + "normalized_name": "rush the towers" + }, + { + "appid": 3541210, + "normalized_name": "one more run" + }, + { + "appid": 3541250, + "normalized_name": "welcome to brightville" + }, + { + "appid": 3541280, + "normalized_name": "isekai mom stories" + }, + { + "appid": 3541320, + "normalized_name": "scarlet hunt" + }, + { + "appid": 3541340, + "normalized_name": "your crown is mine" + }, + { + "appid": 3541350, + "normalized_name": "candy & emily hentai puzzle 18+" + }, + { + "appid": 3541430, + "normalized_name": "climbing chaos much earlier access" + }, + { + "appid": 3541450, + "normalized_name": "dusty" + }, + { + "appid": 3541460, + "normalized_name": "dream place" + }, + { + "appid": 3541470, + "normalized_name": "looxi" + }, + { + "appid": 3541480, + "normalized_name": "mirror mirror" + }, + { + "appid": 3541490, + "normalized_name": "dancing bones" + }, + { + "appid": 3541590, + "normalized_name": "arcadie ii cold lands" + }, + { + "appid": 3541630, + "normalized_name": "hr human remains" + }, + { + "appid": 3541710, + "normalized_name": "propple" + }, + { + "appid": 3541730, + "normalized_name": "dark crescent" + }, + { + "appid": 3541740, + "normalized_name": "mob boss simulator" + }, + { + "appid": 3541750, + "normalized_name": "古咒迷途" + }, + { + "appid": 3541770, + "normalized_name": "toilet empire" + }, + { + "appid": 3541810, + "normalized_name": "blastforge" + }, + { + "appid": 3541830, + "normalized_name": "lawn havoc" + }, + { + "appid": 3541880, + "normalized_name": "labyban" + }, + { + "appid": 3541940, + "normalized_name": "breaking news" + }, + { + "appid": 3542000, + "normalized_name": "floating life party on bird street" + }, + { + "appid": 3542220, + "normalized_name": "shadows of teotihuacan" + }, + { + "appid": 3542240, + "normalized_name": "prismania" + }, + { + "appid": 3542260, + "normalized_name": "all those who wander" + }, + { + "appid": 3542300, + "normalized_name": "car cleaner simulator" + }, + { + "appid": 3542310, + "normalized_name": "escape haunted mansion" + }, + { + "appid": 3542350, + "normalized_name": "grendel's cave" + }, + { + "appid": 3542380, + "normalized_name": "rune dice" + }, + { + "appid": 3542390, + "normalized_name": "prisonela md" + }, + { + "appid": 3542400, + "normalized_name": "square brothers" + }, + { + "appid": 3542420, + "normalized_name": "liminal lane" + }, + { + "appid": 3542540, + "normalized_name": "calm before the storm" + }, + { + "appid": 3542600, + "normalized_name": "rodobus simulador" + }, + { + "appid": 3542650, + "normalized_name": "magic typo" + }, + { + "appid": 3542660, + "normalized_name": "i̇nsignis" + }, + { + "appid": 3542690, + "normalized_name": "colors of the past" + }, + { + "appid": 3542700, + "normalized_name": "mermaid life" + }, + { + "appid": 3542710, + "normalized_name": "campus bonds season 1" + }, + { + "appid": 3542780, + "normalized_name": "one map never ending battle royale" + }, + { + "appid": 3542790, + "normalized_name": "riseon" + }, + { + "appid": 3542820, + "normalized_name": "athena's circus" + }, + { + "appid": 3542850, + "normalized_name": "attention deficit a story about adhd" + }, + { + "appid": 3542890, + "normalized_name": "grumblemoor" + }, + { + "appid": 3542910, + "normalized_name": "sugar & rolling stone" + }, + { + "appid": 3542920, + "normalized_name": "eternal league" + }, + { + "appid": 3542940, + "normalized_name": "trapped at home" + }, + { + "appid": 3542960, + "normalized_name": "초요소녀 리리나 2 (choyo girl lilina 2)" + }, + { + "appid": 3543000, + "normalized_name": "discussion over dinner" + }, + { + "appid": 3543020, + "normalized_name": "bill wants to retire" + }, + { + "appid": 3543050, + "normalized_name": "moss becoming human" + }, + { + "appid": 3543070, + "normalized_name": "cordels & spells" + }, + { + "appid": 3543120, + "normalized_name": "embers of the night" + }, + { + "appid": 3543130, + "normalized_name": "zomboard" + }, + { + "appid": 3543170, + "normalized_name": "animal match" + }, + { + "appid": 3543210, + "normalized_name": "repian" + }, + { + "appid": 3543230, + "normalized_name": "littlerednina" + }, + { + "appid": 3543260, + "normalized_name": "goblin storm" + }, + { + "appid": 3543300, + "normalized_name": "medic mayhem" + }, + { + "appid": 3543350, + "normalized_name": "holoidle" + }, + { + "appid": 3543370, + "normalized_name": "μ of the m world" + }, + { + "appid": 3543390, + "normalized_name": "rawyokan" + }, + { + "appid": 3543410, + "normalized_name": "meow meow kattie" + }, + { + "appid": 3543420, + "normalized_name": "тихий дэн" + }, + { + "appid": 3543440, + "normalized_name": "heir to the queen" + }, + { + "appid": 3543450, + "normalized_name": "our last conversation" + }, + { + "appid": 3543490, + "normalized_name": "the peacemakers" + }, + { + "appid": 3543560, + "normalized_name": "quest of legend" + }, + { + "appid": 3543570, + "normalized_name": "やがて散りゆく鏡の花へ" + }, + { + "appid": 3543640, + "normalized_name": "凡人神將傳" + }, + { + "appid": 3543710, + "normalized_name": "a few days with hazel" + }, + { + "appid": 3543720, + "normalized_name": "find all bunker" + }, + { + "appid": 3543740, + "normalized_name": "the b.l.o.o.m initiative" + }, + { + "appid": 3543860, + "normalized_name": "seven sinners" + }, + { + "appid": 3543870, + "normalized_name": "shadows of the blade" + }, + { + "appid": 3543890, + "normalized_name": "boat together" + }, + { + "appid": 3543940, + "normalized_name": "aspiel edge of chaos" + }, + { + "appid": 3543960, + "normalized_name": "问题偶像的养成计划" + }, + { + "appid": 3543970, + "normalized_name": "platzle" + }, + { + "appid": 3544020, + "normalized_name": "unknot!" + }, + { + "appid": 3544030, + "normalized_name": "magic world" + }, + { + "appid": 3544040, + "normalized_name": "gloamryn" + }, + { + "appid": 3544060, + "normalized_name": "farol del diablo (devil's lantern)" + }, + { + "appid": 3544080, + "normalized_name": "analog skin off" + }, + { + "appid": 3544090, + "normalized_name": "verserunner escape" + }, + { + "appid": 3544100, + "normalized_name": "重返大学时代" + }, + { + "appid": 3544110, + "normalized_name": "wizards and knights" + }, + { + "appid": 3544120, + "normalized_name": "rollover" + }, + { + "appid": 3544130, + "normalized_name": "soul chained" + }, + { + "appid": 3544260, + "normalized_name": "arijigoku" + }, + { + "appid": 3544390, + "normalized_name": "air hares" + }, + { + "appid": 3544460, + "normalized_name": "kitsune" + }, + { + "appid": 3544480, + "normalized_name": "best friends" + }, + { + "appid": 3544490, + "normalized_name": "re gspot master" + }, + { + "appid": 3544500, + "normalized_name": "shoot the wall" + }, + { + "appid": 3544520, + "normalized_name": "trapsetter" + }, + { + "appid": 3544530, + "normalized_name": "vertighoul" + }, + { + "appid": 3544570, + "normalized_name": "witch city stories" + }, + { + "appid": 3544580, + "normalized_name": "stack the pixels" + }, + { + "appid": 3544590, + "normalized_name": "feast of the beast" + }, + { + "appid": 3544640, + "normalized_name": "data drift cyberpunk shooter top down indie action" + }, + { + "appid": 3544680, + "normalized_name": "puzzle crossing" + }, + { + "appid": 3544900, + "normalized_name": "davy jones' deckhand" + }, + { + "appid": 3544920, + "normalized_name": "the trail reign of apocalypse" + }, + { + "appid": 3544930, + "normalized_name": "my life with you" + }, + { + "appid": 3544970, + "normalized_name": "obscured stories the resentment" + }, + { + "appid": 3545140, + "normalized_name": "the red shift" + }, + { + "appid": 3545170, + "normalized_name": "alice's current draft" + }, + { + "appid": 3545210, + "normalized_name": "tribute of minos" + }, + { + "appid": 3545220, + "normalized_name": "silo" + }, + { + "appid": 3545290, + "normalized_name": "bearzerk" + }, + { + "appid": 3545310, + "normalized_name": "misery avenue" + }, + { + "appid": 3545350, + "normalized_name": "iron trident" + }, + { + "appid": 3545360, + "normalized_name": "aquaball league" + }, + { + "appid": 3545460, + "normalized_name": "single forever" + }, + { + "appid": 3545590, + "normalized_name": "salary mon | hiro versus his demons" + }, + { + "appid": 3545620, + "normalized_name": "plate" + }, + { + "appid": 3545640, + "normalized_name": "rooftop" + }, + { + "appid": 3545670, + "normalized_name": "prepare the past" + }, + { + "appid": 3545690, + "normalized_name": "the silly knight" + }, + { + "appid": 3545730, + "normalized_name": "haowei1 your domineering warlord" + }, + { + "appid": 3545810, + "normalized_name": "伽蓝战歌" + }, + { + "appid": 3545880, + "normalized_name": "its time to meet god" + }, + { + "appid": 3545890, + "normalized_name": "slime with a gun" + }, + { + "appid": 3545930, + "normalized_name": "九州长歌" + }, + { + "appid": 3545940, + "normalized_name": "kollywood the game" + }, + { + "appid": 3545990, + "normalized_name": "美女,请别影响我成仙" + }, + { + "appid": 3546020, + "normalized_name": "surface labyrinth kurumabu" + }, + { + "appid": 3546040, + "normalized_name": "hgmgame dog" + }, + { + "appid": 3546070, + "normalized_name": "the everfloating island" + }, + { + "appid": 3546120, + "normalized_name": "stillness" + }, + { + "appid": 3546130, + "normalized_name": "dominated by sadistic childhood valentine" + }, + { + "appid": 3546240, + "normalized_name": "치르노의 카드교실" + }, + { + "appid": 3546320, + "normalized_name": "interactive sex king princess incest" + }, + { + "appid": 3546330, + "normalized_name": "snowy trail" + }, + { + "appid": 3546440, + "normalized_name": "rentlord" + }, + { + "appid": 3546480, + "normalized_name": "midnight billiards" + }, + { + "appid": 3546500, + "normalized_name": "cascade" + }, + { + "appid": 3546540, + "normalized_name": "aker fern 2" + }, + { + "appid": 3546620, + "normalized_name": "sumigami" + }, + { + "appid": 3546630, + "normalized_name": "destiny isle" + }, + { + "appid": 3546640, + "normalized_name": "corastral" + }, + { + "appid": 3546660, + "normalized_name": "dungeon legend party" + }, + { + "appid": 3546700, + "normalized_name": "revive" + }, + { + "appid": 3546720, + "normalized_name": "dominated by my bully's daughter" + }, + { + "appid": 3546740, + "normalized_name": "champions tactics reforged" + }, + { + "appid": 3546760, + "normalized_name": "type 'n' fish" + }, + { + "appid": 3546770, + "normalized_name": "dreamscape legends" + }, + { + "appid": 3546790, + "normalized_name": "backrooms liminal nightmare" + }, + { + "appid": 3546900, + "normalized_name": "the swordsman" + }, + { + "appid": 3546980, + "normalized_name": "friday at ours" + }, + { + "appid": 3546990, + "normalized_name": "futantastic adventure" + }, + { + "appid": 3547010, + "normalized_name": "occlude" + }, + { + "appid": 3547020, + "normalized_name": "radical zomboarding" + }, + { + "appid": 3547120, + "normalized_name": "squars" + }, + { + "appid": 3547140, + "normalized_name": "project starfall" + }, + { + "appid": 3547190, + "normalized_name": "mavors" + }, + { + "appid": 3547270, + "normalized_name": "worming from home" + }, + { + "appid": 3547310, + "normalized_name": "smell like a puddle" + }, + { + "appid": 3547360, + "normalized_name": "and the world went dark" + }, + { + "appid": 3547370, + "normalized_name": "dawnhelm defense" + }, + { + "appid": 3547430, + "normalized_name": "hell moon harvest" + }, + { + "appid": 3547450, + "normalized_name": "the grafted gear" + }, + { + "appid": 3547510, + "normalized_name": "service dog" + }, + { + "appid": 3547580, + "normalized_name": "hollowglass" + }, + { + "appid": 3547620, + "normalized_name": "wanted dead or alive" + }, + { + "appid": 3547720, + "normalized_name": "cerberus corporation red room" + }, + { + "appid": 3547730, + "normalized_name": "depopulation agent" + }, + { + "appid": 3547750, + "normalized_name": "doces & calabouços caos no reino do doce" + }, + { + "appid": 3547760, + "normalized_name": "crabby fishes" + }, + { + "appid": 3547770, + "normalized_name": "东方桃源祭" + }, + { + "appid": 3547790, + "normalized_name": "my wife" + }, + { + "appid": 3547800, + "normalized_name": "twinspell" + }, + { + "appid": 3547830, + "normalized_name": "wardoll" + }, + { + "appid": 3547890, + "normalized_name": "motorcross simulator" + }, + { + "appid": 3547910, + "normalized_name": "alisa the parting" + }, + { + "appid": 3547920, + "normalized_name": "the dark delivers" + }, + { + "appid": 3547960, + "normalized_name": "chronominion idler" + }, + { + "appid": 3547980, + "normalized_name": "seen before" + }, + { + "appid": 3547990, + "normalized_name": "invasion's edge" + }, + { + "appid": 3548000, + "normalized_name": "cosmobreeder yiffai" + }, + { + "appid": 3548010, + "normalized_name": "toilet battle" + }, + { + "appid": 3548020, + "normalized_name": "hexarx" + }, + { + "appid": 3548050, + "normalized_name": "the lost song" + }, + { + "appid": 3548060, + "normalized_name": "湖中天空 :caelum in lacu" + }, + { + "appid": 3548080, + "normalized_name": "the voynich proyect" + }, + { + "appid": 3548140, + "normalized_name": "luck and fear" + }, + { + "appid": 3548200, + "normalized_name": "a sexy tour with riley" + }, + { + "appid": 3548220, + "normalized_name": "cursorlublub" + }, + { + "appid": 3548310, + "normalized_name": "gargantuic" + }, + { + "appid": 3548380, + "normalized_name": "how much items fishes" + }, + { + "appid": 3548400, + "normalized_name": "how much items vegetation" + }, + { + "appid": 3548450, + "normalized_name": "the headless hunter" + }, + { + "appid": 3548490, + "normalized_name": "super slime boy" + }, + { + "appid": 3548500, + "normalized_name": "speed brain blind quiz ia" + }, + { + "appid": 3548510, + "normalized_name": "dig a hole multiplayer" + }, + { + "appid": 3548520, + "normalized_name": "dog witch" + }, + { + "appid": 3548550, + "normalized_name": "the charity shop" + }, + { + "appid": 3548580, + "normalized_name": "chill with you lo fi story" + }, + { + "appid": 3548650, + "normalized_name": "rogue candy" + }, + { + "appid": 3548760, + "normalized_name": "hotel abyss" + }, + { + "appid": 3548770, + "normalized_name": "nobody expects exploding immortal pigeon" + }, + { + "appid": 3548790, + "normalized_name": "wild roots chef vs critters" + }, + { + "appid": 3548800, + "normalized_name": "alchemixum" + }, + { + "appid": 3548830, + "normalized_name": "降本增效" + }, + { + "appid": 3548880, + "normalized_name": "新世界 new world" + }, + { + "appid": 3548930, + "normalized_name": "the unrested" + }, + { + "appid": 3548950, + "normalized_name": "scary tales horror school" + }, + { + "appid": 3548980, + "normalized_name": "ballrun" + }, + { + "appid": 3548990, + "normalized_name": "kill the skeletons" + }, + { + "appid": 3549060, + "normalized_name": "100 hidden cats ninja" + }, + { + "appid": 3549120, + "normalized_name": "triumvora" + }, + { + "appid": 3549140, + "normalized_name": "my stranger family" + }, + { + "appid": 3549150, + "normalized_name": "跳跳为营/leap tactics" + }, + { + "appid": 3549210, + "normalized_name": "novems" + }, + { + "appid": 3549220, + "normalized_name": "tennis manager 25" + }, + { + "appid": 3549230, + "normalized_name": "fpi bank cryptocalypse" + }, + { + "appid": 3549250, + "normalized_name": "specters of the deep" + }, + { + "appid": 3549270, + "normalized_name": "dodot!" + }, + { + "appid": 3549280, + "normalized_name": "bulbo's belief system" + }, + { + "appid": 3549310, + "normalized_name": "magic madness vr" + }, + { + "appid": 3549320, + "normalized_name": "the survivor" + }, + { + "appid": 3549350, + "normalized_name": "god in a closet" + }, + { + "appid": 3549370, + "normalized_name": "screen pets" + }, + { + "appid": 3549390, + "normalized_name": "exoshock" + }, + { + "appid": 3549430, + "normalized_name": "veins of darkness" + }, + { + "appid": 3549440, + "normalized_name": "gripper's 3d/vr adventure" + }, + { + "appid": 3549690, + "normalized_name": "moondusk masquerade" + }, + { + "appid": 3549720, + "normalized_name": "chimera simulator" + }, + { + "appid": 3549730, + "normalized_name": "blood aliens 3" + }, + { + "appid": 3549740, + "normalized_name": "the last camp" + }, + { + "appid": 3549750, + "normalized_name": "in the midst of a neverending season" + }, + { + "appid": 3549760, + "normalized_name": "heretic red" + }, + { + "appid": 3549790, + "normalized_name": "mechxis war the rise of ai" + }, + { + "appid": 3549820, + "normalized_name": "pineapple legend" + }, + { + "appid": 3549860, + "normalized_name": "backrooms blackmarket" + }, + { + "appid": 3549930, + "normalized_name": "firefighter gaiden" + }, + { + "appid": 3550060, + "normalized_name": "minesweeper together" + }, + { + "appid": 3550150, + "normalized_name": "delos space traffic control" + }, + { + "appid": 3550170, + "normalized_name": "fuggedaboutit farm" + }, + { + "appid": 3550190, + "normalized_name": "2 headed boy" + }, + { + "appid": 3550200, + "normalized_name": "英雄エンブレム ~hero emblem~" + }, + { + "appid": 3550240, + "normalized_name": "finding pots & pets" + }, + { + "appid": 3550250, + "normalized_name": "pc install girl / 装机媛" + }, + { + "appid": 3550260, + "normalized_name": "双雄风流传(romantic emperor)" + }, + { + "appid": 3550270, + "normalized_name": "yumi's adventure" + }, + { + "appid": 3550280, + "normalized_name": "tyrofeud" + }, + { + "appid": 3550290, + "normalized_name": "escape observation" + }, + { + "appid": 3550300, + "normalized_name": "through the trees" + }, + { + "appid": 3550370, + "normalized_name": "cafe new york 9/11" + }, + { + "appid": 3550400, + "normalized_name": "project jurit" + }, + { + "appid": 3550410, + "normalized_name": "steelark" + }, + { + "appid": 3550420, + "normalized_name": "thou shalt parry" + }, + { + "appid": 3550470, + "normalized_name": "infinite einstein tiles" + }, + { + "appid": 3550490, + "normalized_name": "overcome your fears" + }, + { + "appid": 3550500, + "normalized_name": "sinja unitystory" + }, + { + "appid": 3550520, + "normalized_name": "ballbusting amazons the escape" + }, + { + "appid": 3550670, + "normalized_name": "拂晓之诗dawn's poem" + }, + { + "appid": 3550800, + "normalized_name": "little td" + }, + { + "appid": 3550810, + "normalized_name": "hentai hotel" + }, + { + "appid": 3550880, + "normalized_name": "武道残编" + }, + { + "appid": 3550900, + "normalized_name": "olympusan" + }, + { + "appid": 3550920, + "normalized_name": "ball game" + }, + { + "appid": 3550980, + "normalized_name": "night club simulator prolouge" + }, + { + "appid": 3551040, + "normalized_name": "the nurse" + }, + { + "appid": 3551100, + "normalized_name": "they see us" + }, + { + "appid": 3551150, + "normalized_name": "metal coffin" + }, + { + "appid": 3551170, + "normalized_name": "flat mars" + }, + { + "appid": 3551180, + "normalized_name": "ultima chess vr" + }, + { + "appid": 3551190, + "normalized_name": "the last salvage squad" + }, + { + "appid": 3551200, + "normalized_name": "slime feet" + }, + { + "appid": 3551230, + "normalized_name": "zory" + }, + { + "appid": 3551300, + "normalized_name": "tale of darkness" + }, + { + "appid": 3551310, + "normalized_name": "alien's fridge" + }, + { + "appid": 3551320, + "normalized_name": "shiny stones" + }, + { + "appid": 3551330, + "normalized_name": "anigma byte" + }, + { + "appid": 3551350, + "normalized_name": "the novice animal kingdom" + }, + { + "appid": 3551370, + "normalized_name": "魔书射爆(book shooter)" + }, + { + "appid": 3551460, + "normalized_name": "unwelcome guest" + }, + { + "appid": 3551540, + "normalized_name": "reaper hunt survivor" + }, + { + "appid": 3551570, + "normalized_name": "tomb of the golden relic" + }, + { + "appid": 3551600, + "normalized_name": "jumpscare simulator system breach" + }, + { + "appid": 3551630, + "normalized_name": "backrooms the next level" + }, + { + "appid": 3551650, + "normalized_name": "waste time lotto" + }, + { + "appid": 3551680, + "normalized_name": "payout shop simulator" + }, + { + "appid": 3551750, + "normalized_name": "murder in crayontopia" + }, + { + "appid": 3551820, + "normalized_name": "castlebound" + }, + { + "appid": 3551850, + "normalized_name": "calming forest" + }, + { + "appid": 3551950, + "normalized_name": "tribes" + }, + { + "appid": 3551960, + "normalized_name": "banned together" + }, + { + "appid": 3552020, + "normalized_name": "fate's masquerade otome visual novel" + }, + { + "appid": 3552030, + "normalized_name": "fate is not a line" + }, + { + "appid": 3552050, + "normalized_name": "burger witch" + }, + { + "appid": 3552080, + "normalized_name": "valhalla awaits" + }, + { + "appid": 3552090, + "normalized_name": "penguin festival" + }, + { + "appid": 3552120, + "normalized_name": "sélas" + }, + { + "appid": 3552150, + "normalized_name": "goblin god" + }, + { + "appid": 3552200, + "normalized_name": "it's john's house" + }, + { + "appid": 3552220, + "normalized_name": "match shot chimera" + }, + { + "appid": 3552240, + "normalized_name": "lekano world online" + }, + { + "appid": 3552260, + "normalized_name": "phantom havoc" + }, + { + "appid": 3552330, + "normalized_name": "tcg & duel" + }, + { + "appid": 3552350, + "normalized_name": "voices from the stars" + }, + { + "appid": 3552390, + "normalized_name": "kiwi's adventure" + }, + { + "appid": 3552400, + "normalized_name": "dashball" + }, + { + "appid": 3552430, + "normalized_name": "dead silence echoes of the damned" + }, + { + "appid": 3552440, + "normalized_name": "two solar home" + }, + { + "appid": 3552470, + "normalized_name": "the light of celestia" + }, + { + "appid": 3552500, + "normalized_name": "don't turn back" + }, + { + "appid": 3552510, + "normalized_name": "lastorage|最果て倉庫" + }, + { + "appid": 3552520, + "normalized_name": "raising niziiro albion's witch" + }, + { + "appid": 3552530, + "normalized_name": "oc桌面管理器" + }, + { + "appid": 3552560, + "normalized_name": "stella into the shadow" + }, + { + "appid": 3552570, + "normalized_name": "brainrot parade 3" + }, + { + "appid": 3552590, + "normalized_name": "animal bakery" + }, + { + "appid": 3552600, + "normalized_name": "モモちゃんの脳ミソはヤバい!" + }, + { + "appid": 3552610, + "normalized_name": "失落大陆 lost continent" + }, + { + "appid": 3552630, + "normalized_name": "swing hero" + }, + { + "appid": 3552660, + "normalized_name": "claw & load mine shoot meow!" + }, + { + "appid": 3552680, + "normalized_name": "world hockey '88" + }, + { + "appid": 3552690, + "normalized_name": "unbox the cats" + }, + { + "appid": 3552700, + "normalized_name": "cyberpunk shadow of ethereal city" + }, + { + "appid": 3552710, + "normalized_name": "cucu" + }, + { + "appid": 3552720, + "normalized_name": "lustwick duchy" + }, + { + "appid": 3552740, + "normalized_name": "john waves" + }, + { + "appid": 3552750, + "normalized_name": "enfora star" + }, + { + "appid": 3552760, + "normalized_name": "last question" + }, + { + "appid": 3552780, + "normalized_name": "neuromira first death" + }, + { + "appid": 3552790, + "normalized_name": "roxanne" + }, + { + "appid": 3552820, + "normalized_name": "the horde wants you dead" + }, + { + "appid": 3552840, + "normalized_name": "deepstone rift" + }, + { + "appid": 3552870, + "normalized_name": "drones of destruction" + }, + { + "appid": 3552900, + "normalized_name": "茶ノ魔 cha no ma" + }, + { + "appid": 3552910, + "normalized_name": "random deck" + }, + { + "appid": 3552920, + "normalized_name": "bomb bowling x" + }, + { + "appid": 3552940, + "normalized_name": "春日落幕爱物语spring's finale tales of love" + }, + { + "appid": 3552970, + "normalized_name": "we don't cry zombie survival" + }, + { + "appid": 3553000, + "normalized_name": "nolean the space bartender" + }, + { + "appid": 3553010, + "normalized_name": "portal way" + }, + { + "appid": 3553020, + "normalized_name": "survive the hunt" + }, + { + "appid": 3553040, + "normalized_name": "逃脱生化" + }, + { + "appid": 3553050, + "normalized_name": "writer tycoon" + }, + { + "appid": 3553060, + "normalized_name": "hetepheres tomb secrets of the lost queen" + }, + { + "appid": 3553110, + "normalized_name": "poop killer flush or die" + }, + { + "appid": 3553130, + "normalized_name": "bullet shine" + }, + { + "appid": 3553150, + "normalized_name": "the cascadier" + }, + { + "appid": 3553180, + "normalized_name": "this world is over" + }, + { + "appid": 3553190, + "normalized_name": "isekai i'm an fps hero who was summoned to another world" + }, + { + "appid": 3553200, + "normalized_name": "riseofcommander" + }, + { + "appid": 3553210, + "normalized_name": "auto rogue" + }, + { + "appid": 3553320, + "normalized_name": "them" + }, + { + "appid": 3553350, + "normalized_name": "the hilltop funeral" + }, + { + "appid": 3553390, + "normalized_name": "burnit" + }, + { + "appid": 3553460, + "normalized_name": "super scratch cards" + }, + { + "appid": 3553490, + "normalized_name": "the monster next door" + }, + { + "appid": 3553500, + "normalized_name": "sigame" + }, + { + "appid": 3553540, + "normalized_name": "prison miners" + }, + { + "appid": 3553580, + "normalized_name": "the ritual" + }, + { + "appid": 3553590, + "normalized_name": "color soul 2 nightfall" + }, + { + "appid": 3553600, + "normalized_name": "the empty house a dementia interactive experience" + }, + { + "appid": 3553610, + "normalized_name": "mainu" + }, + { + "appid": 3553620, + "normalized_name": "poly rally" + }, + { + "appid": 3553640, + "normalized_name": "umbra" + }, + { + "appid": 3553650, + "normalized_name": "dream slayers" + }, + { + "appid": 3553670, + "normalized_name": "unknown raven field" + }, + { + "appid": 3553690, + "normalized_name": "ending it today" + }, + { + "appid": 3553700, + "normalized_name": "congwei your electric hubby" + }, + { + "appid": 3553710, + "normalized_name": "ponkots" + }, + { + "appid": 3553730, + "normalized_name": "crypts & curves" + }, + { + "appid": 3553750, + "normalized_name": "deep blue devour and evolve" + }, + { + "appid": 3553790, + "normalized_name": "alife" + }, + { + "appid": 3553800, + "normalized_name": "epic survivors" + }, + { + "appid": 3553870, + "normalized_name": "dirt" + }, + { + "appid": 3553880, + "normalized_name": "a game about mowing your lawn" + }, + { + "appid": 3553890, + "normalized_name": "galaxy odyssey" + }, + { + "appid": 3553910, + "normalized_name": "we're in the same boat" + }, + { + "appid": 3553920, + "normalized_name": "snap flex" + }, + { + "appid": 3553970, + "normalized_name": "地城物语 dungeon story" + }, + { + "appid": 3553990, + "normalized_name": "pockets of hope" + }, + { + "appid": 3554000, + "normalized_name": "it digs up" + }, + { + "appid": 3554020, + "normalized_name": "hexbound" + }, + { + "appid": 3554030, + "normalized_name": "behind the hydra's eyes" + }, + { + "appid": 3554050, + "normalized_name": "sweet dungeon" + }, + { + "appid": 3554100, + "normalized_name": "warrior's dilemma 勇者难题" + }, + { + "appid": 3554110, + "normalized_name": "scrap dealer simulator" + }, + { + "appid": 3554130, + "normalized_name": "reel run" + }, + { + "appid": 3554140, + "normalized_name": "keep them busy" + }, + { + "appid": 3554230, + "normalized_name": "out of skull" + }, + { + "appid": 3554250, + "normalized_name": "pudding fantasy tales of go and magic chapter 1" + }, + { + "appid": 3554340, + "normalized_name": "vr blade of blocks" + }, + { + "appid": 3554350, + "normalized_name": "cauldron chaos" + }, + { + "appid": 3554370, + "normalized_name": "vampires vs mechas" + }, + { + "appid": 3554390, + "normalized_name": "shadow of backrooms" + }, + { + "appid": 3554420, + "normalized_name": "poly vinyl pests!" + }, + { + "appid": 3554430, + "normalized_name": "this is the last time" + }, + { + "appid": 3554450, + "normalized_name": "escape from timokha 2 army" + }, + { + "appid": 3554520, + "normalized_name": "cheapskate" + }, + { + "appid": 3554590, + "normalized_name": "ventory" + }, + { + "appid": 3554600, + "normalized_name": "life of a dispatch english teacher in japan" + }, + { + "appid": 3554630, + "normalized_name": "vmx" + }, + { + "appid": 3554650, + "normalized_name": "code name alteon" + }, + { + "appid": 3554660, + "normalized_name": "ninja cats" + }, + { + "appid": 3554750, + "normalized_name": "reincarnation in another world" + }, + { + "appid": 3554760, + "normalized_name": "mahjong 16 tw" + }, + { + "appid": 3554770, + "normalized_name": "abdomen expansion" + }, + { + "appid": 3554790, + "normalized_name": "burial" + }, + { + "appid": 3554810, + "normalized_name": "neverending ai storybook" + }, + { + "appid": 3554820, + "normalized_name": "xelvita" + }, + { + "appid": 3554890, + "normalized_name": "the overlap" + }, + { + "appid": 3554900, + "normalized_name": "super muscle knight" + }, + { + "appid": 3554930, + "normalized_name": "the bright path" + }, + { + "appid": 3554940, + "normalized_name": "slut squad" + }, + { + "appid": 3554950, + "normalized_name": "谜境·ai剧本杀互动剧场" + }, + { + "appid": 3554980, + "normalized_name": "stars of the valkyrie" + }, + { + "appid": 3555040, + "normalized_name": "botkill" + }, + { + "appid": 3555050, + "normalized_name": "bedtimestory" + }, + { + "appid": 3555150, + "normalized_name": "我被女神盯上了! beauty’s target" + }, + { + "appid": 3555210, + "normalized_name": "beekeeper simulator" + }, + { + "appid": 3555300, + "normalized_name": "keycards" + }, + { + "appid": 3555360, + "normalized_name": "skippy's grand escape" + }, + { + "appid": 3555370, + "normalized_name": "atura" + }, + { + "appid": 3555390, + "normalized_name": "the king's courier" + }, + { + "appid": 3555410, + "normalized_name": "hit" + }, + { + "appid": 3555440, + "normalized_name": "lich lords" + }, + { + "appid": 3555460, + "normalized_name": "kill all enemies" + }, + { + "appid": 3555490, + "normalized_name": "dwarf miner" + }, + { + "appid": 3555520, + "normalized_name": "hamstermind" + }, + { + "appid": 3555600, + "normalized_name": "little farm island" + }, + { + "appid": 3555630, + "normalized_name": "occupy" + }, + { + "appid": 3555670, + "normalized_name": "chill with lisa – she listens she cares she supports" + }, + { + "appid": 3555690, + "normalized_name": "soul express ticket to afterlife" + }, + { + "appid": 3555700, + "normalized_name": "liar game" + }, + { + "appid": 3555730, + "normalized_name": "maisons de repos" + }, + { + "appid": 3555740, + "normalized_name": "making friends" + }, + { + "appid": 3555760, + "normalized_name": "brighter than burning" + }, + { + "appid": 3555780, + "normalized_name": "bookbinding" + }, + { + "appid": 3555810, + "normalized_name": "friendly cat" + }, + { + "appid": 3555830, + "normalized_name": "orbitower" + }, + { + "appid": 3555890, + "normalized_name": "creature pedia 怪物手冊" + }, + { + "appid": 3555950, + "normalized_name": "world's toughest quiz (free to play)" + }, + { + "appid": 3555970, + "normalized_name": "my bimbo dream season 2" + }, + { + "appid": 3555980, + "normalized_name": "caput mortum" + }, + { + "appid": 3556110, + "normalized_name": "you've changed" + }, + { + "appid": 3556370, + "normalized_name": "snow hell" + }, + { + "appid": 3556460, + "normalized_name": "贝如塔之家 beta house" + }, + { + "appid": 3556490, + "normalized_name": "show yourself (director's cut)" + }, + { + "appid": 3556500, + "normalized_name": "lustful roommates" + }, + { + "appid": 3556510, + "normalized_name": "deep six" + }, + { + "appid": 3556630, + "normalized_name": "barnyard battle" + }, + { + "appid": 3556640, + "normalized_name": "blademistress chronicles" + }, + { + "appid": 3556660, + "normalized_name": "dino genesis" + }, + { + "appid": 3556670, + "normalized_name": "beach invasion 1915 gallipoli" + }, + { + "appid": 3556680, + "normalized_name": "fjn blackjack cup" + }, + { + "appid": 3556700, + "normalized_name": "legends of azamar" + }, + { + "appid": 3556730, + "normalized_name": "hypnosis knight princess" + }, + { + "appid": 3556740, + "normalized_name": "a night filled with the sound of rain" + }, + { + "appid": 3556760, + "normalized_name": "a game about cutting a tree" + }, + { + "appid": 3556780, + "normalized_name": "the last shores" + }, + { + "appid": 3556810, + "normalized_name": "32 dandelion drift" + }, + { + "appid": 3556830, + "normalized_name": "super one more jump" + }, + { + "appid": 3556860, + "normalized_name": "arborvitae" + }, + { + "appid": 3557000, + "normalized_name": "love in match" + }, + { + "appid": 3557030, + "normalized_name": "particles of reality remembrance" + }, + { + "appid": 3557040, + "normalized_name": "never fall" + }, + { + "appid": 3557050, + "normalized_name": "kungfu2" + }, + { + "appid": 3557090, + "normalized_name": "stick figure combat" + }, + { + "appid": 3557100, + "normalized_name": "serendia random equip draw defense" + }, + { + "appid": 3557110, + "normalized_name": "warden of the crypt" + }, + { + "appid": 3557130, + "normalized_name": "rise of the inferno" + }, + { + "appid": 3557150, + "normalized_name": "the fruit game" + }, + { + "appid": 3557190, + "normalized_name": "comic store simulator" + }, + { + "appid": 3557230, + "normalized_name": "battle" + }, + { + "appid": 3557270, + "normalized_name": "little witch's carnival" + }, + { + "appid": 3557360, + "normalized_name": "second stone the legend of the hidden world" + }, + { + "appid": 3557370, + "normalized_name": "glamour riot" + }, + { + "appid": 3557380, + "normalized_name": "cake up" + }, + { + "appid": 3557420, + "normalized_name": "legacy of the fallen" + }, + { + "appid": 3557470, + "normalized_name": "魔王の娘達境界線上のアリア" + }, + { + "appid": 3557480, + "normalized_name": "oh?me" + }, + { + "appid": 3557530, + "normalized_name": "bug cleaners" + }, + { + "appid": 3557540, + "normalized_name": "fire from the sky cagliari 1943vr" + }, + { + "appid": 3557550, + "normalized_name": "final district" + }, + { + "appid": 3557600, + "normalized_name": "dataclysm" + }, + { + "appid": 3557690, + "normalized_name": "我的动物公司" + }, + { + "appid": 3557710, + "normalized_name": "shadow of the valkyrie" + }, + { + "appid": 3557720, + "normalized_name": "monster girl jungle" + }, + { + "appid": 3557750, + "normalized_name": "hot and lovely seduction" + }, + { + "appid": 3557760, + "normalized_name": "hot and lovely seduction waifu" + }, + { + "appid": 3557790, + "normalized_name": "vendetta forever" + }, + { + "appid": 3557830, + "normalized_name": "skarab" + }, + { + "appid": 3557860, + "normalized_name": "pawfish bay" + }, + { + "appid": 3557980, + "normalized_name": "initium" + }, + { + "appid": 3557990, + "normalized_name": "cats organized neatly 2" + }, + { + "appid": 3558020, + "normalized_name": "clicker maker" + }, + { + "appid": 3558060, + "normalized_name": "last fuse" + }, + { + "appid": 3558080, + "normalized_name": "a tale of misery" + }, + { + "appid": 3558090, + "normalized_name": "divine craftedy" + }, + { + "appid": 3558120, + "normalized_name": "伊利斯之梦ellixir's dream" + }, + { + "appid": 3558140, + "normalized_name": "morphing bullets" + }, + { + "appid": 3558150, + "normalized_name": "duckpool" + }, + { + "appid": 3558170, + "normalized_name": "maskerade the deadpan cry" + }, + { + "appid": 3558180, + "normalized_name": "hello loaf" + }, + { + "appid": 3558190, + "normalized_name": "gnollhack" + }, + { + "appid": 3558200, + "normalized_name": "jnz anchor archetype" + }, + { + "appid": 3558240, + "normalized_name": "bonfire barrage" + }, + { + "appid": 3558260, + "normalized_name": "奈布的冒险 naib's adventure" + }, + { + "appid": 3558270, + "normalized_name": "cygnus 13" + }, + { + "appid": 3558300, + "normalized_name": "fear of hot water ghost" + }, + { + "appid": 3558310, + "normalized_name": "bring the book back" + }, + { + "appid": 3558350, + "normalized_name": "higher than mush" + }, + { + "appid": 3558370, + "normalized_name": "maze quest" + }, + { + "appid": 3558380, + "normalized_name": "rename the history" + }, + { + "appid": 3558400, + "normalized_name": "backseat drivers" + }, + { + "appid": 3558410, + "normalized_name": "swifty" + }, + { + "appid": 3558420, + "normalized_name": "suck it up!" + }, + { + "appid": 3558460, + "normalized_name": "in season" + }, + { + "appid": 3558470, + "normalized_name": "vastophobia" + }, + { + "appid": 3558480, + "normalized_name": "offspring" + }, + { + "appid": 3558490, + "normalized_name": "the fall" + }, + { + "appid": 3558530, + "normalized_name": "victim complex" + }, + { + "appid": 3558550, + "normalized_name": "wandering within" + }, + { + "appid": 3558570, + "normalized_name": "pudding frog" + }, + { + "appid": 3558580, + "normalized_name": "war on crime elite squad" + }, + { + "appid": 3558620, + "normalized_name": "black square" + }, + { + "appid": 3558710, + "normalized_name": "darling darling... devious!" + }, + { + "appid": 3558720, + "normalized_name": "out of sight vr" + }, + { + "appid": 3558730, + "normalized_name": "surviving mars pioneer" + }, + { + "appid": 3558770, + "normalized_name": "harpoon arena" + }, + { + "appid": 3558840, + "normalized_name": "the bear frontline" + }, + { + "appid": 3559040, + "normalized_name": "passages" + }, + { + "appid": 3559060, + "normalized_name": "store life simulator" + }, + { + "appid": 3559170, + "normalized_name": "the garden of hermeneus" + }, + { + "appid": 3559550, + "normalized_name": "sex adventures incest family episode 5" + }, + { + "appid": 3559710, + "normalized_name": "interactive sex queen prince incest" + }, + { + "appid": 3559950, + "normalized_name": "convergence point" + }, + { + "appid": 3559960, + "normalized_name": "warrior duels" + }, + { + "appid": 3559970, + "normalized_name": "lost in the dark" + }, + { + "appid": 3560000, + "normalized_name": "my sadistic princess is my roommate" + }, + { + "appid": 3560040, + "normalized_name": "like a fairytale" + }, + { + "appid": 3560100, + "normalized_name": "rope it two" + }, + { + "appid": 3560110, + "normalized_name": "fracture point" + }, + { + "appid": 3560150, + "normalized_name": "sweet roommate" + }, + { + "appid": 3560170, + "normalized_name": "yagazem elements" + }, + { + "appid": 3560280, + "normalized_name": "hungrities" + }, + { + "appid": 3560310, + "normalized_name": "petrichor" + }, + { + "appid": 3560360, + "normalized_name": "forsworn" + }, + { + "appid": 3560370, + "normalized_name": "éalú" + }, + { + "appid": 3560380, + "normalized_name": "bosquet" + }, + { + "appid": 3560410, + "normalized_name": "8 ball kings" + }, + { + "appid": 3560420, + "normalized_name": "espirito delusion" + }, + { + "appid": 3560430, + "normalized_name": "evolvania" + }, + { + "appid": 3560440, + "normalized_name": "im not supposed to be here or anywhere" + }, + { + "appid": 3560470, + "normalized_name": "chains of reality" + }, + { + "appid": 3560480, + "normalized_name": "through the fog" + }, + { + "appid": 3560510, + "normalized_name": "candynight" + }, + { + "appid": 3560520, + "normalized_name": "spellbound skirmish" + }, + { + "appid": 3560530, + "normalized_name": "crushiator" + }, + { + "appid": 3560620, + "normalized_name": "knight light" + }, + { + "appid": 3560630, + "normalized_name": "meat without master" + }, + { + "appid": 3560640, + "normalized_name": "broken scary skeleton" + }, + { + "appid": 3560680, + "normalized_name": "little spaceman" + }, + { + "appid": 3560690, + "normalized_name": "astro fighters" + }, + { + "appid": 3560730, + "normalized_name": "mortality decomp. killers" + }, + { + "appid": 3560740, + "normalized_name": "labyrinthine dread" + }, + { + "appid": 3560830, + "normalized_name": "metahorror therapy session" + }, + { + "appid": 3560860, + "normalized_name": "don't touch us" + }, + { + "appid": 3560870, + "normalized_name": "izzy's arcade" + }, + { + "appid": 3560880, + "normalized_name": "critter isle" + }, + { + "appid": 3560900, + "normalized_name": "a clareira" + }, + { + "appid": 3560910, + "normalized_name": "big dig energy" + }, + { + "appid": 3560920, + "normalized_name": "the sword's awakening" + }, + { + "appid": 3560940, + "normalized_name": "drift wars" + }, + { + "appid": 3560960, + "normalized_name": "polyphemus" + }, + { + "appid": 3560970, + "normalized_name": "click click bomb" + }, + { + "appid": 3560990, + "normalized_name": "おままごと" + }, + { + "appid": 3561020, + "normalized_name": "挂到1000级 idle to level 1000" + }, + { + "appid": 3561030, + "normalized_name": "rock island" + }, + { + "appid": 3561040, + "normalized_name": "skyscraper tiles" + }, + { + "appid": 3561070, + "normalized_name": "capsule fighting" + }, + { + "appid": 3561090, + "normalized_name": "與色情漫畫家的同居生活" + }, + { + "appid": 3561120, + "normalized_name": "band stage" + }, + { + "appid": 3561130, + "normalized_name": "ant guardians prologue" + }, + { + "appid": 3561140, + "normalized_name": "一分通学" + }, + { + "appid": 3561170, + "normalized_name": "leaks in space" + }, + { + "appid": 3561180, + "normalized_name": "在时间的尽头等你" + }, + { + "appid": 3561190, + "normalized_name": "bad midwife" + }, + { + "appid": 3561200, + "normalized_name": "i commissioned some snails 3" + }, + { + "appid": 3561230, + "normalized_name": "dreams of another" + }, + { + "appid": 3561240, + "normalized_name": "heroes unhinged" + }, + { + "appid": 3561260, + "normalized_name": "accidental hypnosis" + }, + { + "appid": 3561270, + "normalized_name": "continuity" + }, + { + "appid": 3561300, + "normalized_name": "stack overflow" + }, + { + "appid": 3561310, + "normalized_name": "jade spring" + }, + { + "appid": 3561400, + "normalized_name": "fallen / brand new world" + }, + { + "appid": 3561420, + "normalized_name": "g modeアーカイブス22 ヘラクレスの栄光ⅲ 神々の沈黙" + }, + { + "appid": 3561430, + "normalized_name": "solanis" + }, + { + "appid": 3561460, + "normalized_name": "ドアーズ灯籠屋敷に続く怪談" + }, + { + "appid": 3561490, + "normalized_name": "cell knights td" + }, + { + "appid": 3561510, + "normalized_name": "math climber" + }, + { + "appid": 3561530, + "normalized_name": "cunnilingus use your tongue!" + }, + { + "appid": 3561560, + "normalized_name": "hentai tales c d girls" + }, + { + "appid": 3561570, + "normalized_name": "公主请放心" + }, + { + "appid": 3561580, + "normalized_name": "hauntrick" + }, + { + "appid": 3561590, + "normalized_name": "hentai tales isekai uncle reversal" + }, + { + "appid": 3561610, + "normalized_name": "horde arena" + }, + { + "appid": 3561620, + "normalized_name": "love hospital" + }, + { + "appid": 3561640, + "normalized_name": "sharp fists" + }, + { + "appid": 3561730, + "normalized_name": "pro dino hunt vr jurassic hunting world" + }, + { + "appid": 3561740, + "normalized_name": "福尔摩斯:暗夜追踪者 全球首款ai悬疑推理游戏" + }, + { + "appid": 3561760, + "normalized_name": "100 cats italy" + }, + { + "appid": 3561770, + "normalized_name": "イル・ドー" + }, + { + "appid": 3561780, + "normalized_name": "sulo the sidekick" + }, + { + "appid": 3561790, + "normalized_name": "100 cats india" + }, + { + "appid": 3561800, + "normalized_name": "hero in an all forgiving fantasy world rpg" + }, + { + "appid": 3561810, + "normalized_name": "100 cats philippines" + }, + { + "appid": 3561820, + "normalized_name": "trump searching vigaro" + }, + { + "appid": 3561830, + "normalized_name": "100 cats istanbul" + }, + { + "appid": 3561840, + "normalized_name": "cat tag jump only up" + }, + { + "appid": 3561850, + "normalized_name": "this game is ground breaking" + }, + { + "appid": 3561860, + "normalized_name": "twist tac toe" + }, + { + "appid": 3561870, + "normalized_name": "flip rally" + }, + { + "appid": 3561910, + "normalized_name": "burning house" + }, + { + "appid": 3561920, + "normalized_name": "graveyard simulator" + }, + { + "appid": 3561930, + "normalized_name": "liquid lungs" + }, + { + "appid": 3561960, + "normalized_name": "乐吧斗地主" + }, + { + "appid": 3561970, + "normalized_name": "friend of a slime" + }, + { + "appid": 3561980, + "normalized_name": "sex adventures naughty sisters episode 6" + }, + { + "appid": 3562000, + "normalized_name": "dungeon danger traps 2" + }, + { + "appid": 3562020, + "normalized_name": "the werewolf" + }, + { + "appid": 3562050, + "normalized_name": "free dunk" + }, + { + "appid": 3562110, + "normalized_name": "mo the moai" + }, + { + "appid": 3562120, + "normalized_name": "magical princess" + }, + { + "appid": 3562180, + "normalized_name": "can you reach 60 seconds" + }, + { + "appid": 3562200, + "normalized_name": "cloudscrapers" + }, + { + "appid": 3562220, + "normalized_name": "questy chess" + }, + { + "appid": 3562230, + "normalized_name": "ruff day at the office" + }, + { + "appid": 3562250, + "normalized_name": "mixcity swap" + }, + { + "appid": 3562260, + "normalized_name": "planks and arrows" + }, + { + "appid": 3562270, + "normalized_name": "the catastrophe" + }, + { + "appid": 3562310, + "normalized_name": "trials of interspecies sisters~erotic exchange with humans~" + }, + { + "appid": 3562320, + "normalized_name": "masters in the shadows" + }, + { + "appid": 3562330, + "normalized_name": "mass matter" + }, + { + "appid": 3562340, + "normalized_name": "castle crumble" + }, + { + "appid": 3562360, + "normalized_name": "legend of red" + }, + { + "appid": 3562420, + "normalized_name": "reflections in amber" + }, + { + "appid": 3562460, + "normalized_name": "the whispering woods" + }, + { + "appid": 3562520, + "normalized_name": "stone breaker" + }, + { + "appid": 3562530, + "normalized_name": "主播之心" + }, + { + "appid": 3562540, + "normalized_name": "forgetmenots" + }, + { + "appid": 3562620, + "normalized_name": "egg game" + }, + { + "appid": 3562630, + "normalized_name": "mushroam" + }, + { + "appid": 3562820, + "normalized_name": "the last of the minnows" + }, + { + "appid": 3562830, + "normalized_name": "cycle of struggle ardengrad" + }, + { + "appid": 3562850, + "normalized_name": "naica online" + }, + { + "appid": 3562970, + "normalized_name": "factions" + }, + { + "appid": 3563000, + "normalized_name": "gig crawler" + }, + { + "appid": 3563100, + "normalized_name": "station noctis" + }, + { + "appid": 3563120, + "normalized_name": "hexaurbs" + }, + { + "appid": 3563130, + "normalized_name": "vaifurion – idle waifu ccg" + }, + { + "appid": 3563190, + "normalized_name": "追逃 chase&escape" + }, + { + "appid": 3563220, + "normalized_name": "sobe" + }, + { + "appid": 3563260, + "normalized_name": "bee careful!" + }, + { + "appid": 3563270, + "normalized_name": "robo rolo" + }, + { + "appid": 3563370, + "normalized_name": "emperor pigeon sandbox" + }, + { + "appid": 3563380, + "normalized_name": "mari's magical deliveries" + }, + { + "appid": 3563430, + "normalized_name": "secret love temple" + }, + { + "appid": 3563450, + "normalized_name": "renegade rush" + }, + { + "appid": 3563460, + "normalized_name": "echo rift" + }, + { + "appid": 3563470, + "normalized_name": "raev kingdom on the distant shores" + }, + { + "appid": 3563480, + "normalized_name": "interstellar espionage inc." + }, + { + "appid": 3563490, + "normalized_name": "mysteries of the forbidden forest" + }, + { + "appid": 3563500, + "normalized_name": "rogue maze" + }, + { + "appid": 3563530, + "normalized_name": "brass lament" + }, + { + "appid": 3563550, + "normalized_name": "ghost adventure" + }, + { + "appid": 3563570, + "normalized_name": "the biggest fool durak" + }, + { + "appid": 3563610, + "normalized_name": "omnitsu slash or die" + }, + { + "appid": 3563690, + "normalized_name": "real hotwives of marbury lane" + }, + { + "appid": 3563710, + "normalized_name": "blacksmith shop simulator" + }, + { + "appid": 3563760, + "normalized_name": "relive" + }, + { + "appid": 3563810, + "normalized_name": "unreal zombies" + }, + { + "appid": 3563820, + "normalized_name": "summoner's cookbook" + }, + { + "appid": 3563830, + "normalized_name": "pixel cavern quest" + }, + { + "appid": 3563860, + "normalized_name": "dion" + }, + { + "appid": 3563920, + "normalized_name": "monster brothel" + }, + { + "appid": 3563950, + "normalized_name": "phantom ops" + }, + { + "appid": 3564090, + "normalized_name": "smoke break!" + }, + { + "appid": 3564110, + "normalized_name": "dx legends" + }, + { + "appid": 3564130, + "normalized_name": "ai gallery ”kimono”" + }, + { + "appid": 3564140, + "normalized_name": "ai gallery ”onsen”" + }, + { + "appid": 3564220, + "normalized_name": "desktop golf" + }, + { + "appid": 3564260, + "normalized_name": "we bowling?!" + }, + { + "appid": 3564310, + "normalized_name": "blipper" + }, + { + "appid": 3564330, + "normalized_name": "the core" + }, + { + "appid": 3564360, + "normalized_name": "pillar of gods" + }, + { + "appid": 3564370, + "normalized_name": "remanence" + }, + { + "appid": 3564400, + "normalized_name": "ウマ娘 プリティーダービー" + }, + { + "appid": 3564490, + "normalized_name": "hell express" + }, + { + "appid": 3564520, + "normalized_name": "back in time" + }, + { + "appid": 3564530, + "normalized_name": "hidden cats st. patrick" + }, + { + "appid": 3564570, + "normalized_name": "mazeslug" + }, + { + "appid": 3564580, + "normalized_name": "tricky and the dream caster" + }, + { + "appid": 3564590, + "normalized_name": "rivers of astrum daughter of darkness" + }, + { + "appid": 3564650, + "normalized_name": "hidden heir" + }, + { + "appid": 3564660, + "normalized_name": "escape game sleepless" + }, + { + "appid": 3564670, + "normalized_name": "cult vacui" + }, + { + "appid": 3564680, + "normalized_name": "happykids" + }, + { + "appid": 3564700, + "normalized_name": "9 trials of whiskers" + }, + { + "appid": 3564710, + "normalized_name": "clicksama" + }, + { + "appid": 3564740, + "normalized_name": "where winds meet" + }, + { + "appid": 3564750, + "normalized_name": "bite the crown" + }, + { + "appid": 3564790, + "normalized_name": "squid adventure 3d" + }, + { + "appid": 3564820, + "normalized_name": "lust storm" + }, + { + "appid": 3564880, + "normalized_name": "vr wilderness survival" + }, + { + "appid": 3564900, + "normalized_name": "vr dunk assistant" + }, + { + "appid": 3565010, + "normalized_name": "goblin vs princess" + }, + { + "appid": 3565020, + "normalized_name": "mad television tycoon" + }, + { + "appid": 3565030, + "normalized_name": "online records unknown seller" + }, + { + "appid": 3565040, + "normalized_name": "rumbral" + }, + { + "appid": 3565050, + "normalized_name": "trucker horror" + }, + { + "appid": 3565070, + "normalized_name": "cybernoir" + }, + { + "appid": 3565080, + "normalized_name": "cyber rats" + }, + { + "appid": 3565100, + "normalized_name": "unboxathon" + }, + { + "appid": 3565110, + "normalized_name": "the librarian" + }, + { + "appid": 3565120, + "normalized_name": "static the beginning" + }, + { + "appid": 3565130, + "normalized_name": "trail racer" + }, + { + "appid": 3565140, + "normalized_name": "little offroad adventures" + }, + { + "appid": 3565150, + "normalized_name": "infection" + }, + { + "appid": 3565220, + "normalized_name": "survivors dawn zombie world" + }, + { + "appid": 3565260, + "normalized_name": "shadows of midnight they watch me sleep" + }, + { + "appid": 3565290, + "normalized_name": "无限进化" + }, + { + "appid": 3565320, + "normalized_name": "shattered bride" + }, + { + "appid": 3565330, + "normalized_name": "squinky" + }, + { + "appid": 3565390, + "normalized_name": "sigillum" + }, + { + "appid": 3565410, + "normalized_name": "乐园终点 the end of paradise" + }, + { + "appid": 3565460, + "normalized_name": "tahitian driftin'" + }, + { + "appid": 3565560, + "normalized_name": "box king" + }, + { + "appid": 3565570, + "normalized_name": "stu the fisherman" + }, + { + "appid": 3565590, + "normalized_name": "my camp of memories" + }, + { + "appid": 3565600, + "normalized_name": "レビィのスライムファクトリー" + }, + { + "appid": 3565610, + "normalized_name": "the blackout project" + }, + { + "appid": 3565620, + "normalized_name": "tales of isenberg" + }, + { + "appid": 3565630, + "normalized_name": "s4bl3" + }, + { + "appid": 3565640, + "normalized_name": "life inside" + }, + { + "appid": 3565650, + "normalized_name": "drone simulator vr" + }, + { + "appid": 3565660, + "normalized_name": "scrapwings" + }, + { + "appid": 3565680, + "normalized_name": "decrypto project" + }, + { + "appid": 3565690, + "normalized_name": "goofy lil guys" + }, + { + "appid": 3565720, + "normalized_name": "星际战场" + }, + { + "appid": 3565740, + "normalized_name": "bannerbound" + }, + { + "appid": 3565820, + "normalized_name": "chuck nolemland the starving kid" + }, + { + "appid": 3565880, + "normalized_name": "ведьмы зов" + }, + { + "appid": 3565940, + "normalized_name": "war of the wormholes janitor duty" + }, + { + "appid": 3565980, + "normalized_name": "the stalked 3" + }, + { + "appid": 3565990, + "normalized_name": "path of light" + }, + { + "appid": 3566050, + "normalized_name": "nighthawk" + }, + { + "appid": 3566060, + "normalized_name": "tiny sheriff" + }, + { + "appid": 3566070, + "normalized_name": "shooting range simulator prologue" + }, + { + "appid": 3566120, + "normalized_name": "pinball with a gun" + }, + { + "appid": 3566140, + "normalized_name": "niut" + }, + { + "appid": 3566150, + "normalized_name": "condemned to be free" + }, + { + "appid": 3566180, + "normalized_name": "honey:欲望、尊严与毁灭" + }, + { + "appid": 3566200, + "normalized_name": "pocket city 2" + }, + { + "appid": 3566270, + "normalized_name": "survivors of the wildstone" + }, + { + "appid": 3566280, + "normalized_name": "cabin fever a descent into darkness" + }, + { + "appid": 3566320, + "normalized_name": "why?" + }, + { + "appid": 3566410, + "normalized_name": "sexy puzzle" + }, + { + "appid": 3566420, + "normalized_name": "phantasms maledictus" + }, + { + "appid": 3566430, + "normalized_name": "botomy" + }, + { + "appid": 3566480, + "normalized_name": "switcheroo" + }, + { + "appid": 3566540, + "normalized_name": "kawaii clicker" + }, + { + "appid": 3566580, + "normalized_name": "legendary heroes survivors" + }, + { + "appid": 3566590, + "normalized_name": "one hunread year kingdom" + }, + { + "appid": 3566630, + "normalized_name": "the third tourist" + }, + { + "appid": 3566660, + "normalized_name": "ammo garden" + }, + { + "appid": 3566670, + "normalized_name": "speed surge" + }, + { + "appid": 3566710, + "normalized_name": "stan's magic museum olympian trouble" + }, + { + "appid": 3566720, + "normalized_name": "lan party adventures" + }, + { + "appid": 3566730, + "normalized_name": "naroike" + }, + { + "appid": 3566780, + "normalized_name": "box hustle" + }, + { + "appid": 3566790, + "normalized_name": "too many to kill" + }, + { + "appid": 3566820, + "normalized_name": "повышенная облачность high clouds" + }, + { + "appid": 3566850, + "normalized_name": "ai t/f escape 10 in a row to freedom" + }, + { + "appid": 3566860, + "normalized_name": "touhou tenshiin ~ celestial examination hall" + }, + { + "appid": 3566870, + "normalized_name": "the dark rites of arkham" + }, + { + "appid": 3566890, + "normalized_name": "the legend of gandar iii" + }, + { + "appid": 3566900, + "normalized_name": "treetale" + }, + { + "appid": 3566920, + "normalized_name": "goal3" + }, + { + "appid": 3566930, + "normalized_name": "my pet femboy" + }, + { + "appid": 3566940, + "normalized_name": "galactic pawns" + }, + { + "appid": 3566990, + "normalized_name": "sports adventure:5 in 1" + }, + { + "appid": 3567000, + "normalized_name": "洗屋人" + }, + { + "appid": 3567010, + "normalized_name": "gravethorn" + }, + { + "appid": 3567020, + "normalized_name": "mumble pines the arrival" + }, + { + "appid": 3567030, + "normalized_name": "名もなき塔" + }, + { + "appid": 3567060, + "normalized_name": "superheromanager" + }, + { + "appid": 3567080, + "normalized_name": "konpira fune fune" + }, + { + "appid": 3567120, + "normalized_name": "geringi" + }, + { + "appid": 3567140, + "normalized_name": "astromattech" + }, + { + "appid": 3567200, + "normalized_name": "overvåkerne" + }, + { + "appid": 3567270, + "normalized_name": "bunny ball" + }, + { + "appid": 3567350, + "normalized_name": "deadly joy" + }, + { + "appid": 3567560, + "normalized_name": "fight against corona" + }, + { + "appid": 3567580, + "normalized_name": "echoes of the night" + }, + { + "appid": 3567590, + "normalized_name": "persimmon" + }, + { + "appid": 3567600, + "normalized_name": "icoptic journey" + }, + { + "appid": 3567620, + "normalized_name": "heroines of swords & spells 2" + }, + { + "appid": 3567660, + "normalized_name": "funfair billionaire" + }, + { + "appid": 3567740, + "normalized_name": "cloudforth" + }, + { + "appid": 3567760, + "normalized_name": "twig's adventure 64" + }, + { + "appid": 3567790, + "normalized_name": "catboy sorcery" + }, + { + "appid": 3567800, + "normalized_name": "the good the bad & the monkey" + }, + { + "appid": 3567810, + "normalized_name": "氷華の雪化粧/snow veil" + }, + { + "appid": 3567910, + "normalized_name": "shattered dreams redemption" + }, + { + "appid": 3567920, + "normalized_name": "the abyss book" + }, + { + "appid": 3567940, + "normalized_name": "失乡骑士" + }, + { + "appid": 3567980, + "normalized_name": "serwis u stasia" + }, + { + "appid": 3568000, + "normalized_name": "lucky summoner" + }, + { + "appid": 3568030, + "normalized_name": "beast and cleaver" + }, + { + "appid": 3568150, + "normalized_name": "a totally legal archaeology adventure" + }, + { + "appid": 3568160, + "normalized_name": "dracula end of days" + }, + { + "appid": 3568170, + "normalized_name": "cybervoid" + }, + { + "appid": 3568200, + "normalized_name": "どこでも!!釣りマゥス" + }, + { + "appid": 3568210, + "normalized_name": "gutter" + }, + { + "appid": 3568230, + "normalized_name": "ガロゥズストライフ" + }, + { + "appid": 3568290, + "normalized_name": "uzg" + }, + { + "appid": 3568300, + "normalized_name": "in a bit of tales" + }, + { + "appid": 3568370, + "normalized_name": "asylum patient zero" + }, + { + "appid": 3568380, + "normalized_name": "the deep creep" + }, + { + "appid": 3568390, + "normalized_name": "the forest keeper" + }, + { + "appid": 3568400, + "normalized_name": "dungeon ascent" + }, + { + "appid": 3568410, + "normalized_name": "spell weaver" + }, + { + "appid": 3568420, + "normalized_name": "crown of chaos" + }, + { + "appid": 3568430, + "normalized_name": "the thread of fate" + }, + { + "appid": 3568440, + "normalized_name": "arctic isolation" + }, + { + "appid": 3568450, + "normalized_name": "pandemic ground zero" + }, + { + "appid": 3568460, + "normalized_name": "mustscream" + }, + { + "appid": 3568470, + "normalized_name": "the trials chapter one" + }, + { + "appid": 3568480, + "normalized_name": "how deep is the dark water? (乌水有多深?)" + }, + { + "appid": 3568530, + "normalized_name": "argol ii curse of nemesis" + }, + { + "appid": 3568550, + "normalized_name": "tainted pools" + }, + { + "appid": 3568570, + "normalized_name": "anode heart 2" + }, + { + "appid": 3568640, + "normalized_name": "personal hover attack tanks" + }, + { + "appid": 3568690, + "normalized_name": "tales of legendary lust lewd dungeon runs" + }, + { + "appid": 3568710, + "normalized_name": "growth spurt a meandering intermission into the afterhours of a miscalculation" + }, + { + "appid": 3568720, + "normalized_name": "qwerty zombies" + }, + { + "appid": 3568740, + "normalized_name": "the fatum" + }, + { + "appid": 3568760, + "normalized_name": "your world" + }, + { + "appid": 3568780, + "normalized_name": "the last bloom" + }, + { + "appid": 3568800, + "normalized_name": "welcome to the chop house" + }, + { + "appid": 3568810, + "normalized_name": "livetale" + }, + { + "appid": 3568830, + "normalized_name": "duck off!" + }, + { + "appid": 3568900, + "normalized_name": "broth bounty" + }, + { + "appid": 3568930, + "normalized_name": "hexagon experiments" + }, + { + "appid": 3568980, + "normalized_name": "baseball legacy manager 25" + }, + { + "appid": 3569020, + "normalized_name": "souls end" + }, + { + "appid": 3569040, + "normalized_name": "grind momo" + }, + { + "appid": 3569050, + "normalized_name": "iron onslaught" + }, + { + "appid": 3569060, + "normalized_name": "90fx" + }, + { + "appid": 3569240, + "normalized_name": "academy of magic a new beginning" + }, + { + "appid": 3569250, + "normalized_name": "the sequencer" + }, + { + "appid": 3569390, + "normalized_name": "marble mash" + }, + { + "appid": 3569400, + "normalized_name": "총알배달 우주반점" + }, + { + "appid": 3569410, + "normalized_name": "abigail" + }, + { + "appid": 3569420, + "normalized_name": "chained beasts" + }, + { + "appid": 3569430, + "normalized_name": "catgirl" + }, + { + "appid": 3569440, + "normalized_name": "the legend returns" + }, + { + "appid": 3569450, + "normalized_name": "the hollow line" + }, + { + "appid": 3569480, + "normalized_name": "lingtian2 your destined prince" + }, + { + "appid": 3569500, + "normalized_name": "card shop simulator multiplayer" + }, + { + "appid": 3569510, + "normalized_name": "neuro nightmare" + }, + { + "appid": 3569560, + "normalized_name": "the escape to the afterlife | この世からの脱出" + }, + { + "appid": 3569570, + "normalized_name": "project dreamscape" + }, + { + "appid": 3569590, + "normalized_name": "newton coin" + }, + { + "appid": 3569660, + "normalized_name": "everstrife" + }, + { + "appid": 3569700, + "normalized_name": "祖宗饶命" + }, + { + "appid": 3569710, + "normalized_name": "mota of latex" + }, + { + "appid": 3569820, + "normalized_name": "the demon lord's lover" + }, + { + "appid": 3569850, + "normalized_name": "tcg banned list simulator" + }, + { + "appid": 3569940, + "normalized_name": "rolling in gears" + }, + { + "appid": 3569950, + "normalized_name": "everdream village" + }, + { + "appid": 3569980, + "normalized_name": "trash horror collection 5" + }, + { + "appid": 3569990, + "normalized_name": "chromadi" + }, + { + "appid": 3570000, + "normalized_name": "emotionless the last ticket" + }, + { + "appid": 3570010, + "normalized_name": "bow course" + }, + { + "appid": 3570020, + "normalized_name": "eggpan a sokoban adventure" + }, + { + "appid": 3570040, + "normalized_name": "nubiaphobia" + }, + { + "appid": 3570060, + "normalized_name": "the ember guardian" + }, + { + "appid": 3570070, + "normalized_name": "paddle paddle paddle" + }, + { + "appid": 3570080, + "normalized_name": "stellastory" + }, + { + "appid": 3570130, + "normalized_name": "multi championchip futsal" + }, + { + "appid": 3570160, + "normalized_name": "the balldragon" + }, + { + "appid": 3570170, + "normalized_name": "fishing tycoon simulator" + }, + { + "appid": 3570180, + "normalized_name": "wojak tower" + }, + { + "appid": 3570190, + "normalized_name": "candy shop business simulator" + }, + { + "appid": 3570210, + "normalized_name": "unlog" + }, + { + "appid": 3570260, + "normalized_name": "tower of nightmares" + }, + { + "appid": 3570280, + "normalized_name": "upfall" + }, + { + "appid": 3570340, + "normalized_name": "这个ceo我当定了!" + }, + { + "appid": 3570350, + "normalized_name": "silkgrove" + }, + { + "appid": 3570360, + "normalized_name": "shichiya shrine" + }, + { + "appid": 3570370, + "normalized_name": "carimara beneath the forlorn limbs" + }, + { + "appid": 3570400, + "normalized_name": "wall town wonders" + }, + { + "appid": 3570430, + "normalized_name": "snakecremental" + }, + { + "appid": 3570450, + "normalized_name": "bacterian" + }, + { + "appid": 3570470, + "normalized_name": "dark farts parody smell" + }, + { + "appid": 3570490, + "normalized_name": "фронтир путем теней" + }, + { + "appid": 3570500, + "normalized_name": "aurora dawn poet" + }, + { + "appid": 3570540, + "normalized_name": "rain kills" + }, + { + "appid": 3570570, + "normalized_name": "windows separate worlds chapter 1" + }, + { + "appid": 3570590, + "normalized_name": "orchid glitter" + }, + { + "appid": 3570600, + "normalized_name": "below benni's" + }, + { + "appid": 3570650, + "normalized_name": "shell cells" + }, + { + "appid": 3570670, + "normalized_name": "巫回" + }, + { + "appid": 3570700, + "normalized_name": "arete" + }, + { + "appid": 3570780, + "normalized_name": "core order" + }, + { + "appid": 3570840, + "normalized_name": "allen" + }, + { + "appid": 3571080, + "normalized_name": "delving the depths" + }, + { + "appid": 3571460, + "normalized_name": "space conquest ai" + }, + { + "appid": 3571530, + "normalized_name": "channel surfing" + }, + { + "appid": 3571540, + "normalized_name": "there's chaos!" + }, + { + "appid": 3571560, + "normalized_name": "lust eternal 🔞" + }, + { + "appid": 3571570, + "normalized_name": "sex of thrones 2 👑" + }, + { + "appid": 3571580, + "normalized_name": "abstractica" + }, + { + "appid": 3571590, + "normalized_name": "delta's discs" + }, + { + "appid": 3571630, + "normalized_name": "timeborn" + }, + { + "appid": 3571640, + "normalized_name": "mystic jumper" + }, + { + "appid": 3571650, + "normalized_name": "room football hangar" + }, + { + "appid": 3571660, + "normalized_name": "room football petrol station" + }, + { + "appid": 3571690, + "normalized_name": "the last chronomancer" + }, + { + "appid": 3571700, + "normalized_name": "oboi" + }, + { + "appid": 3571710, + "normalized_name": "leaf blower co." + }, + { + "appid": 3571780, + "normalized_name": "mosh pit mayhem" + }, + { + "appid": 3571800, + "normalized_name": "pogo stick champion" + }, + { + "appid": 3571820, + "normalized_name": "hopeless junction cuppy dog barf girl and co." + }, + { + "appid": 3571830, + "normalized_name": "the hideous arena" + }, + { + "appid": 3571840, + "normalized_name": "toot adventure" + }, + { + "appid": 3571850, + "normalized_name": "selve" + }, + { + "appid": 3571920, + "normalized_name": "path of clicks" + }, + { + "appid": 3571940, + "normalized_name": "demon of the time" + }, + { + "appid": 3572020, + "normalized_name": "konkonkon" + }, + { + "appid": 3572030, + "normalized_name": "motamo" + }, + { + "appid": 3572050, + "normalized_name": "cattrigger horror collection" + }, + { + "appid": 3572060, + "normalized_name": "raining cats and dogs" + }, + { + "appid": 3572080, + "normalized_name": "acornia of the stars" + }, + { + "appid": 3572120, + "normalized_name": "ghost kitchen" + }, + { + "appid": 3572310, + "normalized_name": "ministry of order" + }, + { + "appid": 3572320, + "normalized_name": "verocity" + }, + { + "appid": 3572330, + "normalized_name": "total tank tapout" + }, + { + "appid": 3572410, + "normalized_name": "dead pixel" + }, + { + "appid": 3572420, + "normalized_name": "creatorrpg" + }, + { + "appid": 3572440, + "normalized_name": "just the boss fights" + }, + { + "appid": 3572530, + "normalized_name": "lhea and the word spirit" + }, + { + "appid": 3572570, + "normalized_name": "pac's revenge" + }, + { + "appid": 3572580, + "normalized_name": "hachishaku" + }, + { + "appid": 3572640, + "normalized_name": "save the babies" + }, + { + "appid": 3572660, + "normalized_name": "solstorm" + }, + { + "appid": 3572720, + "normalized_name": "mudbird" + }, + { + "appid": 3572740, + "normalized_name": "get to the chopper" + }, + { + "appid": 3572770, + "normalized_name": "port shipping tycoon" + }, + { + "appid": 3572800, + "normalized_name": "duo quest" + }, + { + "appid": 3572820, + "normalized_name": "crimson theory" + }, + { + "appid": 3572830, + "normalized_name": "西游降魔" + }, + { + "appid": 3572850, + "normalized_name": "slime guy" + }, + { + "appid": 3572870, + "normalized_name": "rescue team attack of the atom" + }, + { + "appid": 3572900, + "normalized_name": "galago" + }, + { + "appid": 3572990, + "normalized_name": "shaolin strategy" + }, + { + "appid": 3573000, + "normalized_name": "milo's tiny fish pond" + }, + { + "appid": 3573010, + "normalized_name": "rock'n slayer" + }, + { + "appid": 3573020, + "normalized_name": "goosthetic" + }, + { + "appid": 3573030, + "normalized_name": "hide in dummy" + }, + { + "appid": 3573040, + "normalized_name": "squad 22 zov" + }, + { + "appid": 3573060, + "normalized_name": "the home way" + }, + { + "appid": 3573070, + "normalized_name": "toy smash kaboom!" + }, + { + "appid": 3573110, + "normalized_name": "bussy master ropeshooter ranch" + }, + { + "appid": 3573120, + "normalized_name": "spellchain" + }, + { + "appid": 3573180, + "normalized_name": "第八大道 8th avenue" + }, + { + "appid": 3573190, + "normalized_name": "revive the town!" + }, + { + "appid": 3573260, + "normalized_name": "lucky hero wanted" + }, + { + "appid": 3573410, + "normalized_name": "sherok's case ;recollection" + }, + { + "appid": 3573430, + "normalized_name": "cargo simulator" + }, + { + "appid": 3573440, + "normalized_name": "puffin parcel post" + }, + { + "appid": 3573460, + "normalized_name": "beebo & luna" + }, + { + "appid": 3573470, + "normalized_name": "circle mountain circle sea 圈圈圆圆圈圈" + }, + { + "appid": 3573490, + "normalized_name": "insect control" + }, + { + "appid": 3573500, + "normalized_name": "spong' it!" + }, + { + "appid": 3573580, + "normalized_name": "interactive sex princess sisters incest" + }, + { + "appid": 3573750, + "normalized_name": "a rooftop tale" + }, + { + "appid": 3573760, + "normalized_name": "验证:请证明你是人类" + }, + { + "appid": 3573770, + "normalized_name": "vow" + }, + { + "appid": 3573780, + "normalized_name": "sex adventures incest family episode 6" + }, + { + "appid": 3573800, + "normalized_name": "lane hunters" + }, + { + "appid": 3573900, + "normalized_name": "shattered dimensions" + }, + { + "appid": 3573920, + "normalized_name": "clutchtime tournament" + }, + { + "appid": 3573980, + "normalized_name": "曇りのちにぼし cloudy then dried sardines" + }, + { + "appid": 3574000, + "normalized_name": "twiwood tales" + }, + { + "appid": 3574020, + "normalized_name": "ramen simulator" + }, + { + "appid": 3574060, + "normalized_name": "hit & haunted" + }, + { + "appid": 3574090, + "normalized_name": "void guard outpost" + }, + { + "appid": 3574100, + "normalized_name": "夏夜的魔法门" + }, + { + "appid": 3574130, + "normalized_name": "farmer's loop" + }, + { + "appid": 3574160, + "normalized_name": "shimagami" + }, + { + "appid": 3574210, + "normalized_name": "galaxy tactics" + }, + { + "appid": 3574220, + "normalized_name": "for aerolite" + }, + { + "appid": 3574280, + "normalized_name": "pocket thief" + }, + { + "appid": 3574290, + "normalized_name": "greed grid" + }, + { + "appid": 3574300, + "normalized_name": "enchanted stories mystic woods collector's" + }, + { + "appid": 3574320, + "normalized_name": "make capybara happy" + }, + { + "appid": 3574510, + "normalized_name": "serre" + }, + { + "appid": 3574540, + "normalized_name": "bladebearer recarved" + }, + { + "appid": 3574550, + "normalized_name": "zombie dog" + }, + { + "appid": 3574570, + "normalized_name": "the last outposts" + }, + { + "appid": 3574610, + "normalized_name": "cats visiting cozy art studios" + }, + { + "appid": 3574680, + "normalized_name": "gallery theft" + }, + { + "appid": 3574700, + "normalized_name": "strange waveforms" + }, + { + "appid": 3574730, + "normalized_name": "the long fall home" + }, + { + "appid": 3574740, + "normalized_name": "memoreum" + }, + { + "appid": 3574750, + "normalized_name": "the dark west" + }, + { + "appid": 3574760, + "normalized_name": "cozy sanctuary" + }, + { + "appid": 3574770, + "normalized_name": "pre odyssey love at first quack" + }, + { + "appid": 3574810, + "normalized_name": "shadow of the union" + }, + { + "appid": 3574830, + "normalized_name": "warship survival" + }, + { + "appid": 3574840, + "normalized_name": "my pet hooligan" + }, + { + "appid": 3574850, + "normalized_name": "hentai clicker nina is streaming" + }, + { + "appid": 3574870, + "normalized_name": "kreuzwort++" + }, + { + "appid": 3574890, + "normalized_name": "deadly rails" + }, + { + "appid": 3574900, + "normalized_name": "sex bot corp" + }, + { + "appid": 3574920, + "normalized_name": "evocell bioclicker" + }, + { + "appid": 3574930, + "normalized_name": "classical bullet hell" + }, + { + "appid": 3574950, + "normalized_name": "univocity" + }, + { + "appid": 3575020, + "normalized_name": "couch racers" + }, + { + "appid": 3575030, + "normalized_name": "neon overdrive" + }, + { + "appid": 3575040, + "normalized_name": "life core" + }, + { + "appid": 3575190, + "normalized_name": "peek" + }, + { + "appid": 3575210, + "normalized_name": "isle of trees" + }, + { + "appid": 3575260, + "normalized_name": "only sliding" + }, + { + "appid": 3575280, + "normalized_name": "build a bot" + }, + { + "appid": 3575290, + "normalized_name": "malice within" + }, + { + "appid": 3575310, + "normalized_name": "bombardiro crocodillo" + }, + { + "appid": 3575350, + "normalized_name": "nature picross" + }, + { + "appid": 3575360, + "normalized_name": "vill" + }, + { + "appid": 3575370, + "normalized_name": "the macro mines" + }, + { + "appid": 3575380, + "normalized_name": "dungeon escape" + }, + { + "appid": 3575390, + "normalized_name": "umm oyoun ام عيون" + }, + { + "appid": 3575400, + "normalized_name": "friendly duel" + }, + { + "appid": 3575420, + "normalized_name": "netoria tactics 2" + }, + { + "appid": 3575430, + "normalized_name": "mystery case files the riddle of mrs. bishop collector's" + }, + { + "appid": 3575480, + "normalized_name": "gender dysphoria" + }, + { + "appid": 3575500, + "normalized_name": "invasion survivors" + }, + { + "appid": 3575520, + "normalized_name": "hogen" + }, + { + "appid": 3575570, + "normalized_name": "toad tavern" + }, + { + "appid": 3575600, + "normalized_name": "shatter point" + }, + { + "appid": 3575610, + "normalized_name": "bolsheviktion 3d" + }, + { + "appid": 3575650, + "normalized_name": "dark adelita" + }, + { + "appid": 3575670, + "normalized_name": "league of foes" + }, + { + "appid": 3575690, + "normalized_name": "empyrean defense" + }, + { + "appid": 3575790, + "normalized_name": "desk garden" + }, + { + "appid": 3575810, + "normalized_name": "pick your poison" + }, + { + "appid": 3575840, + "normalized_name": "backrooms escape protocol" + }, + { + "appid": 3575850, + "normalized_name": "lone pine" + }, + { + "appid": 3575880, + "normalized_name": "fernandez big mystery" + }, + { + "appid": 3575920, + "normalized_name": "curse of dominion" + }, + { + "appid": 3575930, + "normalized_name": "出将入相" + }, + { + "appid": 3575940, + "normalized_name": "brigands" + }, + { + "appid": 3575960, + "normalized_name": "하츠카 (hatsuka)" + }, + { + "appid": 3575990, + "normalized_name": "gun paradise" + }, + { + "appid": 3576000, + "normalized_name": "behind the curtain" + }, + { + "appid": 3576060, + "normalized_name": "project origin" + }, + { + "appid": 3576070, + "normalized_name": "sudden attack zero point" + }, + { + "appid": 3576250, + "normalized_name": "cargo shop simulator" + }, + { + "appid": 3576330, + "normalized_name": "hentai tavern" + }, + { + "appid": 3576350, + "normalized_name": "修幹嘛?二手3c店的闇營業" + }, + { + "appid": 3576360, + "normalized_name": "paradise musubi" + }, + { + "appid": 3576370, + "normalized_name": "william the best shooter" + }, + { + "appid": 3576380, + "normalized_name": "beast siege" + }, + { + "appid": 3576390, + "normalized_name": "real roulette" + }, + { + "appid": 3576410, + "normalized_name": "john w. beans" + }, + { + "appid": 3576430, + "normalized_name": "word blitz" + }, + { + "appid": 3576460, + "normalized_name": "stellar infestation" + }, + { + "appid": 3576500, + "normalized_name": "surviving purge a gay tower defense" + }, + { + "appid": 3576520, + "normalized_name": "spinera" + }, + { + "appid": 3576540, + "normalized_name": "su42 hired gun" + }, + { + "appid": 3576560, + "normalized_name": "the shadow cosmos" + }, + { + "appid": 3576580, + "normalized_name": "ritualis summoner simulator" + }, + { + "appid": 3576590, + "normalized_name": "sayonara sigil sentry" + }, + { + "appid": 3576600, + "normalized_name": "dragon riddler" + }, + { + "appid": 3576630, + "normalized_name": "girlfriend saves the city" + }, + { + "appid": 3576680, + "normalized_name": "postknight world" + }, + { + "appid": 3576690, + "normalized_name": "last laugh" + }, + { + "appid": 3576700, + "normalized_name": "barcha" + }, + { + "appid": 3576720, + "normalized_name": "echoes of night the exodus of the stars" + }, + { + "appid": 3576750, + "normalized_name": "it was beautiful" + }, + { + "appid": 3576780, + "normalized_name": "shadow's end" + }, + { + "appid": 3576870, + "normalized_name": "blossom the seed of life" + }, + { + "appid": 3576880, + "normalized_name": "dreadline net quota" + }, + { + "appid": 3576890, + "normalized_name": "waiting for reply" + }, + { + "appid": 3576910, + "normalized_name": "庞加莱回归 poincaré recurrence" + }, + { + "appid": 3576940, + "normalized_name": "molitva" + }, + { + "appid": 3576960, + "normalized_name": "i wanna fuck my daughter’s besties" + }, + { + "appid": 3576980, + "normalized_name": "encrypted_nightmares" + }, + { + "appid": 3577020, + "normalized_name": "poof! cleaning services" + }, + { + "appid": 3577070, + "normalized_name": "the solace of flowers" + }, + { + "appid": 3577080, + "normalized_name": "aokigahara the death forest" + }, + { + "appid": 3577110, + "normalized_name": "仙灵图录" + }, + { + "appid": 3577120, + "normalized_name": "超能力麻将" + }, + { + "appid": 3577140, + "normalized_name": "escape from mental hospital" + }, + { + "appid": 3577250, + "normalized_name": "vacation romance ♥" + }, + { + "appid": 3577260, + "normalized_name": "obsccurus somulum" + }, + { + "appid": 3577380, + "normalized_name": "another game about digging a hole" + }, + { + "appid": 3577420, + "normalized_name": "frenzy islands" + }, + { + "appid": 3577570, + "normalized_name": "project leo" + }, + { + "appid": 3577680, + "normalized_name": "hidden cats easter" + }, + { + "appid": 3577700, + "normalized_name": "moto roader 「モトローダー」" + }, + { + "appid": 3577710, + "normalized_name": "末日下班特快" + }, + { + "appid": 3577770, + "normalized_name": "bloodbound knights" + }, + { + "appid": 3577780, + "normalized_name": "进击吧,fish!" + }, + { + "appid": 3577830, + "normalized_name": "elemental shifter" + }, + { + "appid": 3577850, + "normalized_name": "astro amigo" + }, + { + "appid": 3577880, + "normalized_name": "mythfarer" + }, + { + "appid": 3577920, + "normalized_name": "will of the mountainhopper" + }, + { + "appid": 3578040, + "normalized_name": "the victims of lost sunny days eclipse" + }, + { + "appid": 3578060, + "normalized_name": "synthetic hopes" + }, + { + "appid": 3578070, + "normalized_name": "shake it co!" + }, + { + "appid": 3578080, + "normalized_name": "wee boats" + }, + { + "appid": 3578100, + "normalized_name": "smartplant" + }, + { + "appid": 3578120, + "normalized_name": "the stairwell" + }, + { + "appid": 3578130, + "normalized_name": "stack & sort pals" + }, + { + "appid": 3578180, + "normalized_name": "blitzr ball" + }, + { + "appid": 3578190, + "normalized_name": "you are circle" + }, + { + "appid": 3578220, + "normalized_name": "doors" + }, + { + "appid": 3578240, + "normalized_name": "passion rift" + }, + { + "appid": 3578250, + "normalized_name": "clayground" + }, + { + "appid": 3578290, + "normalized_name": "vongarland castle beyond blood" + }, + { + "appid": 3578310, + "normalized_name": "cat crazy" + }, + { + "appid": 3578340, + "normalized_name": "space cowboy and the robot scourge" + }, + { + "appid": 3578350, + "normalized_name": "40d40m" + }, + { + "appid": 3578380, + "normalized_name": "garbageland" + }, + { + "appid": 3578430, + "normalized_name": "paresis ii" + }, + { + "appid": 3578440, + "normalized_name": "my tiny park" + }, + { + "appid": 3578460, + "normalized_name": "shifting to the backrooms" + }, + { + "appid": 3578480, + "normalized_name": "攻上凌霄宝殿" + }, + { + "appid": 3578500, + "normalized_name": "rusty foodies" + }, + { + "appid": 3578520, + "normalized_name": "gemstone realm" + }, + { + "appid": 3578530, + "normalized_name": "finding ivy" + }, + { + "appid": 3578550, + "normalized_name": "hood tales part 1 morocco" + }, + { + "appid": 3578580, + "normalized_name": "配对达人 pairmaster" + }, + { + "appid": 3578590, + "normalized_name": "这个游戏" + }, + { + "appid": 3578600, + "normalized_name": "labyrinth trials" + }, + { + "appid": 3578710, + "normalized_name": "第二中学 中国式校园 chinese style school" + }, + { + "appid": 3578720, + "normalized_name": "nightmare halls" + }, + { + "appid": 3578740, + "normalized_name": "hgmgame cat" + }, + { + "appid": 3578820, + "normalized_name": "super adventure" + }, + { + "appid": 3578900, + "normalized_name": "cursed crown" + }, + { + "appid": 3578920, + "normalized_name": "realms of the forgotten" + }, + { + "appid": 3578940, + "normalized_name": "find cats 5 天使猫" + }, + { + "appid": 3578960, + "normalized_name": "wave leads you..." + }, + { + "appid": 3578980, + "normalized_name": "lovecraft locker 2 tentacle breach" + }, + { + "appid": 3579010, + "normalized_name": "jail dice roll to break" + }, + { + "appid": 3579020, + "normalized_name": "nisukka racing simulation" + }, + { + "appid": 3579050, + "normalized_name": "草莓巧克力" + }, + { + "appid": 3579060, + "normalized_name": "お前昨日風呂入った? 2:ツッコミバカゲー" + }, + { + "appid": 3579070, + "normalized_name": "disposable corps" + }, + { + "appid": 3579100, + "normalized_name": "至尊战神传奇" + }, + { + "appid": 3579180, + "normalized_name": "flip crystal league" + }, + { + "appid": 3579230, + "normalized_name": "grimmvale" + }, + { + "appid": 3579240, + "normalized_name": "九幽梦ninedarkdream" + }, + { + "appid": 3579250, + "normalized_name": "rad ctrl" + }, + { + "appid": 3579280, + "normalized_name": "buns booze & bucks simulator" + }, + { + "appid": 3579290, + "normalized_name": "lord of the wilds" + }, + { + "appid": 3579300, + "normalized_name": "what's needed" + }, + { + "appid": 3579340, + "normalized_name": "tyto" + }, + { + "appid": 3579350, + "normalized_name": "astroscaper" + }, + { + "appid": 3579360, + "normalized_name": "caveman jump jump" + }, + { + "appid": 3579390, + "normalized_name": "don't forget to smile" + }, + { + "appid": 3579490, + "normalized_name": "monsters' den book of vengeance" + }, + { + "appid": 3579650, + "normalized_name": "derail sacrifice 脱轨:血祭" + }, + { + "appid": 3579720, + "normalized_name": "world war ii armored recon" + }, + { + "appid": 3579880, + "normalized_name": "isles above" + }, + { + "appid": 3579890, + "normalized_name": "zombie epoch deck apocalypse" + }, + { + "appid": 3579900, + "normalized_name": "grapple car" + }, + { + "appid": 3579920, + "normalized_name": "market simulator" + }, + { + "appid": 3579960, + "normalized_name": "laser tag massacre" + }, + { + "appid": 3579980, + "normalized_name": "departure of darkness" + }, + { + "appid": 3580010, + "normalized_name": "lust odyssey" + }, + { + "appid": 3580050, + "normalized_name": "legend of krigz" + }, + { + "appid": 3580060, + "normalized_name": "karma and jonar the rock trolls" + }, + { + "appid": 3580070, + "normalized_name": "within" + }, + { + "appid": 3580100, + "normalized_name": "sokowand" + }, + { + "appid": 3580110, + "normalized_name": "fuckstone" + }, + { + "appid": 3580130, + "normalized_name": "deal with the devil chapter 1 journey to tuonela" + }, + { + "appid": 3580210, + "normalized_name": "strangers lurk" + }, + { + "appid": 3580260, + "normalized_name": "siegebound" + }, + { + "appid": 3580300, + "normalized_name": "hit idol" + }, + { + "appid": 3580330, + "normalized_name": "naughty chat" + }, + { + "appid": 3580340, + "normalized_name": "ash & adam's existential treads" + }, + { + "appid": 3580370, + "normalized_name": "beachside bloodbath" + }, + { + "appid": 3580400, + "normalized_name": "wyversium" + }, + { + "appid": 3580440, + "normalized_name": "timenot" + }, + { + "appid": 3580450, + "normalized_name": "dice with the universe" + }, + { + "appid": 3580500, + "normalized_name": "so it's simple!" + }, + { + "appid": 3580580, + "normalized_name": "jacksmith weapons and warriors" + }, + { + "appid": 3580630, + "normalized_name": "in the foundations" + }, + { + "appid": 3580650, + "normalized_name": "arcanatris" + }, + { + "appid": 3580760, + "normalized_name": "concrete spaces" + }, + { + "appid": 3580890, + "normalized_name": "into the rootforge" + }, + { + "appid": 3581040, + "normalized_name": "bharat police" + }, + { + "appid": 3581050, + "normalized_name": "falarma open world" + }, + { + "appid": 3581070, + "normalized_name": "harmonicord" + }, + { + "appid": 3581090, + "normalized_name": "arcane investigations" + }, + { + "appid": 3581110, + "normalized_name": "spherical worlds evolution" + }, + { + "appid": 3581120, + "normalized_name": "echo leap" + }, + { + "appid": 3581130, + "normalized_name": "time arena" + }, + { + "appid": 3581140, + "normalized_name": "clockwork maiden" + }, + { + "appid": 3581150, + "normalized_name": "basement" + }, + { + "appid": 3581160, + "normalized_name": "accelerate" + }, + { + "appid": 3581200, + "normalized_name": "the cursed deep" + }, + { + "appid": 3581210, + "normalized_name": "你能活到第几集" + }, + { + "appid": 3581220, + "normalized_name": "alien breakout" + }, + { + "appid": 3581230, + "normalized_name": "cozy game restoration" + }, + { + "appid": 3581510, + "normalized_name": "deal with the devil chapter 2 from tuonela to hell" + }, + { + "appid": 3581530, + "normalized_name": "demon century" + }, + { + "appid": 3581570, + "normalized_name": "召神防线" + }, + { + "appid": 3581590, + "normalized_name": "santa's hitlist ceo" + }, + { + "appid": 3581660, + "normalized_name": "black equation" + }, + { + "appid": 3581680, + "normalized_name": "fantasy car" + }, + { + "appid": 3581700, + "normalized_name": "n/a museum" + }, + { + "appid": 3581730, + "normalized_name": "shade protocol" + }, + { + "appid": 3581780, + "normalized_name": "tower king" + }, + { + "appid": 3581810, + "normalized_name": "desktop cat" + }, + { + "appid": 3581820, + "normalized_name": "my township" + }, + { + "appid": 3581840, + "normalized_name": "misty garden" + }, + { + "appid": 3581850, + "normalized_name": "diamond runway" + }, + { + "appid": 3581870, + "normalized_name": "apocalypse approaches" + }, + { + "appid": 3581880, + "normalized_name": "hentai bath" + }, + { + "appid": 3581890, + "normalized_name": "catlands" + }, + { + "appid": 3581900, + "normalized_name": "malhaar from the banks of the sindhu" + }, + { + "appid": 3581910, + "normalized_name": "victory banner" + }, + { + "appid": 3581940, + "normalized_name": "deja view a spot the difference game" + }, + { + "appid": 3581960, + "normalized_name": "resina salvation" + }, + { + "appid": 3581980, + "normalized_name": "void soul" + }, + { + "appid": 3582020, + "normalized_name": "evilslayer" + }, + { + "appid": 3582060, + "normalized_name": "harvester arno" + }, + { + "appid": 3582100, + "normalized_name": "沙城.传奇" + }, + { + "appid": 3582120, + "normalized_name": "cohen 1939" + }, + { + "appid": 3582130, + "normalized_name": "破环者 loopbreaker" + }, + { + "appid": 3582170, + "normalized_name": "cart capers" + }, + { + "appid": 3582230, + "normalized_name": "soul of the dungeon" + }, + { + "appid": 3582270, + "normalized_name": "ryzy nyil" + }, + { + "appid": 3582290, + "normalized_name": "!mrak" + }, + { + "appid": 3582320, + "normalized_name": "inazuma eleven team builder" + }, + { + "appid": 3582350, + "normalized_name": "squaser 6" + }, + { + "appid": 3582360, + "normalized_name": "snowfall's mystery" + }, + { + "appid": 3582420, + "normalized_name": "millennium runners" + }, + { + "appid": 3582430, + "normalized_name": "uh oh airlines" + }, + { + "appid": 3582440, + "normalized_name": "dss 2 war industry" + }, + { + "appid": 3582450, + "normalized_name": "wrap house simulator🌯 prologue" + }, + { + "appid": 3582460, + "normalized_name": "misty's super golf solitaire" + }, + { + "appid": 3582470, + "normalized_name": "rage room catharsis" + }, + { + "appid": 3582480, + "normalized_name": "goop up!" + }, + { + "appid": 3582490, + "normalized_name": "neuroza" + }, + { + "appid": 3582500, + "normalized_name": "medieval contrast" + }, + { + "appid": 3582510, + "normalized_name": "pantry raid" + }, + { + "appid": 3582520, + "normalized_name": "deep in the lab" + }, + { + "appid": 3582530, + "normalized_name": "max beyond" + }, + { + "appid": 3582540, + "normalized_name": "foxxel quest" + }, + { + "appid": 3582560, + "normalized_name": "chef niya" + }, + { + "appid": 3582590, + "normalized_name": "deedlee doo! carkour!" + }, + { + "appid": 3582640, + "normalized_name": "• dread chess ✣" + }, + { + "appid": 3582660, + "normalized_name": "kauna" + }, + { + "appid": 3582670, + "normalized_name": "resurrection core" + }, + { + "appid": 3582690, + "normalized_name": "night crew" + }, + { + "appid": 3582740, + "normalized_name": "dreadhaven the last colony" + }, + { + "appid": 3582780, + "normalized_name": "101 cats hidden in shenzhen" + }, + { + "appid": 3582790, + "normalized_name": "101 cats hidden in cancun" + }, + { + "appid": 3582800, + "normalized_name": "101 cats hidden in kuala lumpur" + }, + { + "appid": 3582830, + "normalized_name": "the gold is mine" + }, + { + "appid": 3582850, + "normalized_name": "orange you glad i didn't say banana" + }, + { + "appid": 3582890, + "normalized_name": "breaking point" + }, + { + "appid": 3582900, + "normalized_name": "mama nyah's house of tarot" + }, + { + "appid": 3582920, + "normalized_name": "forged desires a bara jrpg" + }, + { + "appid": 3582990, + "normalized_name": "desecration" + }, + { + "appid": 3583000, + "normalized_name": "2deez" + }, + { + "appid": 3583010, + "normalized_name": "my new roommate is a jealous sadist" + }, + { + "appid": 3583060, + "normalized_name": "5 nights at bobr kurwa" + }, + { + "appid": 3583070, + "normalized_name": "yes mr. president" + }, + { + "appid": 3583110, + "normalized_name": "midway 1981" + }, + { + "appid": 3583120, + "normalized_name": "versetender" + }, + { + "appid": 3583140, + "normalized_name": "lag simulator" + }, + { + "appid": 3583170, + "normalized_name": "rush" + }, + { + "appid": 3583250, + "normalized_name": "monster networking" + }, + { + "appid": 3583310, + "normalized_name": "hellkind" + }, + { + "appid": 3583320, + "normalized_name": "the little shelter" + }, + { + "appid": 3583330, + "normalized_name": "robot anomaly" + }, + { + "appid": 3583340, + "normalized_name": "miniature painter simulator" + }, + { + "appid": 3583380, + "normalized_name": "little big backrooms" + }, + { + "appid": 3583430, + "normalized_name": "the devil’s gun market" + }, + { + "appid": 3583470, + "normalized_name": "prison escape io" + }, + { + "appid": 3583540, + "normalized_name": "水浒绘卷(water margin scrolls)" + }, + { + "appid": 3583560, + "normalized_name": "rogue waves" + }, + { + "appid": 3583570, + "normalized_name": "the legend of bubble boy" + }, + { + "appid": 3583600, + "normalized_name": "hentai senpai kairaku no maid service" + }, + { + "appid": 3583620, + "normalized_name": "carrot cake" + }, + { + "appid": 3583630, + "normalized_name": "evolits" + }, + { + "appid": 3583660, + "normalized_name": "vampire prison" + }, + { + "appid": 3583670, + "normalized_name": "where the forest ends" + }, + { + "appid": 3583680, + "normalized_name": "eternal decay souls" + }, + { + "appid": 3583710, + "normalized_name": "space fighter code 1999" + }, + { + "appid": 3583740, + "normalized_name": "sweet rock paper scissors" + }, + { + "appid": 3583750, + "normalized_name": "neon echo" + }, + { + "appid": 3583760, + "normalized_name": "earth space defenders" + }, + { + "appid": 3583780, + "normalized_name": "luna and the sea" + }, + { + "appid": 3583790, + "normalized_name": "virtual skate" + }, + { + "appid": 3583800, + "normalized_name": "海与鱼ocean and fish" + }, + { + "appid": 3583870, + "normalized_name": "define" + }, + { + "appid": 3583930, + "normalized_name": "esoteric" + }, + { + "appid": 3583940, + "normalized_name": "master of balance" + }, + { + "appid": 3583960, + "normalized_name": "establish" + }, + { + "appid": 3583970, + "normalized_name": "mycelium the silent contract" + }, + { + "appid": 3583980, + "normalized_name": "noctis" + }, + { + "appid": 3584000, + "normalized_name": "evidence" + }, + { + "appid": 3584010, + "normalized_name": "fastidious" + }, + { + "appid": 3584020, + "normalized_name": "texas holdem poker" + }, + { + "appid": 3584060, + "normalized_name": "bonebuilder" + }, + { + "appid": 3584070, + "normalized_name": "wolf and the warren" + }, + { + "appid": 3584090, + "normalized_name": "planet ix" + }, + { + "appid": 3584100, + "normalized_name": "流木缘driftwood fate" + }, + { + "appid": 3584120, + "normalized_name": "truck town kids and toddlers driving game" + }, + { + "appid": 3584150, + "normalized_name": "range" + }, + { + "appid": 3584170, + "normalized_name": "turn it around" + }, + { + "appid": 3584190, + "normalized_name": "three sisters" + }, + { + "appid": 3584210, + "normalized_name": "please follow the instructions" + }, + { + "appid": 3584240, + "normalized_name": "frogrammer" + }, + { + "appid": 3584250, + "normalized_name": "off the shelf!" + }, + { + "appid": 3584260, + "normalized_name": "fogreaver" + }, + { + "appid": 3584290, + "normalized_name": "falling undercover nox syndicate" + }, + { + "appid": 3584300, + "normalized_name": "war for bryndor" + }, + { + "appid": 3584360, + "normalized_name": "war untold" + }, + { + "appid": 3584370, + "normalized_name": "hangman.exe" + }, + { + "appid": 3584380, + "normalized_name": "personal murder theater strangled roots" + }, + { + "appid": 3584390, + "normalized_name": "你老婆" + }, + { + "appid": 3584440, + "normalized_name": "7 keys saga" + }, + { + "appid": 3584450, + "normalized_name": "ovidius (blood for love)" + }, + { + "appid": 3584490, + "normalized_name": "dominated by yandere goth landlord" + }, + { + "appid": 3584550, + "normalized_name": "wolf night" + }, + { + "appid": 3584560, + "normalized_name": "chronopsykotik" + }, + { + "appid": 3584590, + "normalized_name": "yellow*demon" + }, + { + "appid": 3584610, + "normalized_name": "primal frost" + }, + { + "appid": 3584630, + "normalized_name": "soul rift" + }, + { + "appid": 3584640, + "normalized_name": "oil worker the empty quarter | موظف النفط الربع الخالي" + }, + { + "appid": 3584660, + "normalized_name": "hex and chill" + }, + { + "appid": 3584690, + "normalized_name": "micro zoo" + }, + { + "appid": 3584710, + "normalized_name": "touch the sky" + }, + { + "appid": 3584720, + "normalized_name": "cybermaid" + }, + { + "appid": 3584870, + "normalized_name": "lucha chess" + }, + { + "appid": 3584900, + "normalized_name": "do not fall" + }, + { + "appid": 3584920, + "normalized_name": "kaolengmian legend" + }, + { + "appid": 3584940, + "normalized_name": "forgot to poo" + }, + { + "appid": 3584970, + "normalized_name": "bloodfire" + }, + { + "appid": 3585000, + "normalized_name": "bulltales 🦬" + }, + { + "appid": 3585030, + "normalized_name": "coin x union" + }, + { + "appid": 3585040, + "normalized_name": "frontier force vanguard" + }, + { + "appid": 3585080, + "normalized_name": "backrooms the others" + }, + { + "appid": 3585150, + "normalized_name": "good time to play" + }, + { + "appid": 3585160, + "normalized_name": "from the top" + }, + { + "appid": 3585210, + "normalized_name": "你的老奶" + }, + { + "appid": 3585220, + "normalized_name": "monster mayhem" + }, + { + "appid": 3585240, + "normalized_name": "tomodakill" + }, + { + "appid": 3585260, + "normalized_name": "蝎之尾 (tailofscorpios)" + }, + { + "appid": 3585310, + "normalized_name": "kunkun defender 2" + }, + { + "appid": 3585320, + "normalized_name": "炮灰兄弟 cannon fodder brothers" + }, + { + "appid": 3585330, + "normalized_name": "パチっとヒパチー かけだせ!パチパチときめき花火大会!" + }, + { + "appid": 3585340, + "normalized_name": "flail your arm hit the ball." + }, + { + "appid": 3585370, + "normalized_name": "trouble dash" + }, + { + "appid": 3585400, + "normalized_name": "steal the pig" + }, + { + "appid": 3585420, + "normalized_name": "遗传之线:从过去到未来的生命传承" + }, + { + "appid": 3585430, + "normalized_name": "talpa" + }, + { + "appid": 3585440, + "normalized_name": "giddy up" + }, + { + "appid": 3585460, + "normalized_name": "galactic vault" + }, + { + "appid": 3585480, + "normalized_name": "soul gather" + }, + { + "appid": 3585490, + "normalized_name": "standard procedures" + }, + { + "appid": 3585520, + "normalized_name": "hillshade farm" + }, + { + "appid": 3585540, + "normalized_name": "dungeon thrones rise of slimes" + }, + { + "appid": 3585550, + "normalized_name": "the organized capy god" + }, + { + "appid": 3585600, + "normalized_name": "你的老公" + }, + { + "appid": 3585620, + "normalized_name": "omnn" + }, + { + "appid": 3585640, + "normalized_name": "lavender field" + }, + { + "appid": 3585650, + "normalized_name": "mazer" + }, + { + "appid": 3585660, + "normalized_name": "pirate pillage and plunder" + }, + { + "appid": 3585680, + "normalized_name": "grafika66 the galleries" + }, + { + "appid": 3585690, + "normalized_name": "crown of lust" + }, + { + "appid": 3585710, + "normalized_name": "chromatic odyssey" + }, + { + "appid": 3585740, + "normalized_name": "quibi" + }, + { + "appid": 3585750, + "normalized_name": "heroes' call a casual mmo guild sim" + }, + { + "appid": 3585810, + "normalized_name": "nia and the abyss" + }, + { + "appid": 3585820, + "normalized_name": "root echoes of shadow" + }, + { + "appid": 3585860, + "normalized_name": "timber wars" + }, + { + "appid": 3585900, + "normalized_name": "void tech" + }, + { + "appid": 3585930, + "normalized_name": "pan's permia" + }, + { + "appid": 3586060, + "normalized_name": "desk paws" + }, + { + "appid": 3586150, + "normalized_name": "case 42 the redwood files" + }, + { + "appid": 3586180, + "normalized_name": "the escape team battle arena" + }, + { + "appid": 3586200, + "normalized_name": "life with a homunculus" + }, + { + "appid": 3586220, + "normalized_name": "orbital nexus" + }, + { + "appid": 3586250, + "normalized_name": "empire game" + }, + { + "appid": 3586280, + "normalized_name": "夢現しろっぷ dreamy syrup" + }, + { + "appid": 3586380, + "normalized_name": "thief office simulator" + }, + { + "appid": 3586410, + "normalized_name": "怪兽分解公司 kaiju cracking corporation" + }, + { + "appid": 3586420, + "normalized_name": "iron core mech survivor" + }, + { + "appid": 3586440, + "normalized_name": "gunjutsu" + }, + { + "appid": 3586450, + "normalized_name": "world tree ranch elven legacy" + }, + { + "appid": 3586460, + "normalized_name": "slots man" + }, + { + "appid": 3586480, + "normalized_name": "bling fortune memories" + }, + { + "appid": 3586520, + "normalized_name": "beek familiar spirit" + }, + { + "appid": 3586650, + "normalized_name": "stellaluna" + }, + { + "appid": 3586660, + "normalized_name": "word play" + }, + { + "appid": 3586670, + "normalized_name": "mahjong solitaire pro" + }, + { + "appid": 3586740, + "normalized_name": "ellentis" + }, + { + "appid": 3586750, + "normalized_name": "猫猫旅行社 ももいろ町おこしプロジェクト!" + }, + { + "appid": 3586770, + "normalized_name": "desktop dragon" + }, + { + "appid": 3586810, + "normalized_name": "[red7cat] elfwork" + }, + { + "appid": 3586830, + "normalized_name": "paw arena" + }, + { + "appid": 3586850, + "normalized_name": "rockabillyhostel" + }, + { + "appid": 3586870, + "normalized_name": "electric road" + }, + { + "appid": 3586880, + "normalized_name": "sudoku pro" + }, + { + "appid": 3586910, + "normalized_name": "the forgotten rooms" + }, + { + "appid": 3586920, + "normalized_name": "extreme cleaning simulator" + }, + { + "appid": 3586950, + "normalized_name": "refuse & reuse" + }, + { + "appid": 3586970, + "normalized_name": "paladin's horn the destiny of the holy lance" + }, + { + "appid": 3587000, + "normalized_name": "glass beads" + }, + { + "appid": 3587010, + "normalized_name": "dice battle 3d board game" + }, + { + "appid": 3587020, + "normalized_name": "dream eaters.exe" + }, + { + "appid": 3587080, + "normalized_name": "suizokukan project" + }, + { + "appid": 3587090, + "normalized_name": "double it" + }, + { + "appid": 3587160, + "normalized_name": "plaything" + }, + { + "appid": 3587200, + "normalized_name": "animesports party basketball!" + }, + { + "appid": 3587260, + "normalized_name": "backrooms the deep dark" + }, + { + "appid": 3587280, + "normalized_name": "puzzled cube" + }, + { + "appid": 3587490, + "normalized_name": "terrors to unveil day off" + }, + { + "appid": 3587590, + "normalized_name": "alluring lullaby" + }, + { + "appid": 3587620, + "normalized_name": "stellar outcast arena" + }, + { + "appid": 3587720, + "normalized_name": "delivery depot" + }, + { + "appid": 3587750, + "normalized_name": "psycho pigs" + }, + { + "appid": 3587760, + "normalized_name": "sime is back 18+" + }, + { + "appid": 3587770, + "normalized_name": "song of the dead" + }, + { + "appid": 3587780, + "normalized_name": "plenty of fish in the sea" + }, + { + "appid": 3587790, + "normalized_name": "cola tycoon" + }, + { + "appid": 3587800, + "normalized_name": "castaside" + }, + { + "appid": 3587820, + "normalized_name": "double envelopment" + }, + { + "appid": 3587830, + "normalized_name": "space restaurant" + }, + { + "appid": 3587900, + "normalized_name": "spellloom" + }, + { + "appid": 3587960, + "normalized_name": "card gauntlet" + }, + { + "appid": 3587980, + "normalized_name": "the motherblade" + }, + { + "appid": 3587990, + "normalized_name": "car crash chaos" + }, + { + "appid": 3588050, + "normalized_name": "valiant villagers" + }, + { + "appid": 3588140, + "normalized_name": "tune in to the show part 2" + }, + { + "appid": 3588150, + "normalized_name": "the bureau of fantastical & arcane affairs" + }, + { + "appid": 3588220, + "normalized_name": "system of sentinels" + }, + { + "appid": 3588230, + "normalized_name": "shadows beneath the dust" + }, + { + "appid": 3588260, + "normalized_name": "georgie yolkie 64 the furry tale" + }, + { + "appid": 3588300, + "normalized_name": "canoe dodge" + }, + { + "appid": 3588310, + "normalized_name": "coloring cats sports with friends" + }, + { + "appid": 3588330, + "normalized_name": "finnigan fox" + }, + { + "appid": 3588350, + "normalized_name": "neko no yume" + }, + { + "appid": 3588360, + "normalized_name": "no path forward" + }, + { + "appid": 3588390, + "normalized_name": "get'trump`ed trivia" + }, + { + "appid": 3588430, + "normalized_name": "toad turf" + }, + { + "appid": 3588460, + "normalized_name": "evel knievel" + }, + { + "appid": 3588490, + "normalized_name": "bogos binted?" + }, + { + "appid": 3588510, + "normalized_name": "byte & brew" + }, + { + "appid": 3588530, + "normalized_name": "orbital descent" + }, + { + "appid": 3588540, + "normalized_name": "你的牛牛" + }, + { + "appid": 3588570, + "normalized_name": "spookitchen" + }, + { + "appid": 3588580, + "normalized_name": "another world guardian" + }, + { + "appid": 3588590, + "normalized_name": "doll parts" + }, + { + "appid": 3588610, + "normalized_name": "celestial sokoban" + }, + { + "appid": 3588620, + "normalized_name": "swimmer away" + }, + { + "appid": 3588630, + "normalized_name": "pc building empire" + }, + { + "appid": 3588660, + "normalized_name": "chubby cats" + }, + { + "appid": 3588760, + "normalized_name": "spacenoids" + }, + { + "appid": 3588820, + "normalized_name": "human may jump" + }, + { + "appid": 3588840, + "normalized_name": "fourth age idle rpg" + }, + { + "appid": 3588930, + "normalized_name": "pixel transit" + }, + { + "appid": 3589030, + "normalized_name": "standoff" + }, + { + "appid": 3589050, + "normalized_name": "stream defense protocol" + }, + { + "appid": 3589130, + "normalized_name": "life dash" + }, + { + "appid": 3589160, + "normalized_name": "代号:恶魔契约" + }, + { + "appid": 3589190, + "normalized_name": "cocoboy" + }, + { + "appid": 3589210, + "normalized_name": "阴影蘑菇" + }, + { + "appid": 3589250, + "normalized_name": "kutha stroom rush" + }, + { + "appid": 3589280, + "normalized_name": "zafira" + }, + { + "appid": 3589290, + "normalized_name": "the tumor" + }, + { + "appid": 3589350, + "normalized_name": "hayo and the emporium" + }, + { + "appid": 3589390, + "normalized_name": "星际猫咖" + }, + { + "appid": 3589460, + "normalized_name": "robo catcher" + }, + { + "appid": 3589480, + "normalized_name": "あみだくじ ~amidakuji~" + }, + { + "appid": 3589540, + "normalized_name": "stickman puzzle" + }, + { + "appid": 3589560, + "normalized_name": "to get there" + }, + { + "appid": 3589720, + "normalized_name": "ball & roll" + }, + { + "appid": 3589740, + "normalized_name": "charlie spotlight" + }, + { + "appid": 3589770, + "normalized_name": "vibe city islands architect" + }, + { + "appid": 3589780, + "normalized_name": "sound of summer thunder day 1" + }, + { + "appid": 3589790, + "normalized_name": "duno" + }, + { + "appid": 3589810, + "normalized_name": "caves of combat" + }, + { + "appid": 3589870, + "normalized_name": "bleached" + }, + { + "appid": 3589880, + "normalized_name": "awoken" + }, + { + "appid": 3589910, + "normalized_name": "voivod the nuclear warrior" + }, + { + "appid": 3589920, + "normalized_name": "one fool's move" + }, + { + "appid": 3589940, + "normalized_name": "周而复始的夏天 the neverending summer" + }, + { + "appid": 3589950, + "normalized_name": "take stock" + }, + { + "appid": 3589980, + "normalized_name": "在你的声音里" + }, + { + "appid": 3590010, + "normalized_name": "robot hospice" + }, + { + "appid": 3590020, + "normalized_name": "roulette pro simulator" + }, + { + "appid": 3590040, + "normalized_name": "the gassal" + }, + { + "appid": 3590090, + "normalized_name": "robosoul chariot" + }, + { + "appid": 3590120, + "normalized_name": "blade of jinshu" + }, + { + "appid": 3590180, + "normalized_name": "hoard's llc limited labyrinth corporation" + }, + { + "appid": 3590330, + "normalized_name": "dvd store simulator" + }, + { + "appid": 3590370, + "normalized_name": "insanitation" + }, + { + "appid": 3590400, + "normalized_name": "nyanco channel engine" + }, + { + "appid": 3590480, + "normalized_name": "discard" + }, + { + "appid": 3590510, + "normalized_name": "the awakening of the bleak dimension" + }, + { + "appid": 3590520, + "normalized_name": "vampires die" + }, + { + "appid": 3590530, + "normalized_name": "sauteorfaute" + }, + { + "appid": 3590540, + "normalized_name": "village defenders" + }, + { + "appid": 3590550, + "normalized_name": "potatopunk" + }, + { + "appid": 3590570, + "normalized_name": "bar of betrayal" + }, + { + "appid": 3590590, + "normalized_name": "animacircus" + }, + { + "appid": 3590610, + "normalized_name": "vacation adventures park ranger 17 collectors" + }, + { + "appid": 3590620, + "normalized_name": "baccarat" + }, + { + "appid": 3590630, + "normalized_name": "hero's hand" + }, + { + "appid": 3590660, + "normalized_name": "metits magic 3 the revenge of luli" + }, + { + "appid": 3590670, + "normalized_name": "gloctopus" + }, + { + "appid": 3590760, + "normalized_name": "garden masters" + }, + { + "appid": 3590770, + "normalized_name": "dimwood" + }, + { + "appid": 3590780, + "normalized_name": "nano neighbors" + }, + { + "appid": 3590790, + "normalized_name": "bloodright" + }, + { + "appid": 3590830, + "normalized_name": "blackjack" + }, + { + "appid": 3590840, + "normalized_name": "dollmaker" + }, + { + "appid": 3590870, + "normalized_name": "ripley [remembered]" + }, + { + "appid": 3590890, + "normalized_name": "girl.exe.exe" + }, + { + "appid": 3590940, + "normalized_name": "adventure in hender´s castle" + }, + { + "appid": 3591010, + "normalized_name": "sea drillers" + }, + { + "appid": 3591090, + "normalized_name": "teach me master" + }, + { + "appid": 3591130, + "normalized_name": "furry master slutbunnies" + }, + { + "appid": 3591190, + "normalized_name": "モンゴリアンデスワーム捕獲部活動記録" + }, + { + "appid": 3591200, + "normalized_name": "friends with traitors" + }, + { + "appid": 3591240, + "normalized_name": "妇人启门" + }, + { + "appid": 3591250, + "normalized_name": "trinity heart" + }, + { + "appid": 3591270, + "normalized_name": "hauntibles" + }, + { + "appid": 3591300, + "normalized_name": "getting goopy" + }, + { + "appid": 3591340, + "normalized_name": "lost soul escape the doom museum" + }, + { + "appid": 3591360, + "normalized_name": "bad bitch blasters" + }, + { + "appid": 3591400, + "normalized_name": "cosplayer's quest" + }, + { + "appid": 3591470, + "normalized_name": "struggle weapon girl" + }, + { + "appid": 3591480, + "normalized_name": "sweet theme park" + }, + { + "appid": 3591500, + "normalized_name": "no good streamer mirai chan! (now accepting lewd comments)" + }, + { + "appid": 3591510, + "normalized_name": "frutiger space" + }, + { + "appid": 3591550, + "normalized_name": "hunter roulette" + }, + { + "appid": 3591560, + "normalized_name": "《负芒之旅 |journey of carrying light》" + }, + { + "appid": 3591650, + "normalized_name": "slippy bear" + }, + { + "appid": 3591660, + "normalized_name": "midtris" + }, + { + "appid": 3591670, + "normalized_name": "alegraz" + }, + { + "appid": 3591680, + "normalized_name": "nursing back to pleasure" + }, + { + "appid": 3591700, + "normalized_name": "arcana" + }, + { + "appid": 3591760, + "normalized_name": "interactive sex daddy daughter incest bdsm" + }, + { + "appid": 3591770, + "normalized_name": "helping hand" + }, + { + "appid": 3591870, + "normalized_name": "classroom 9" + }, + { + "appid": 3591890, + "normalized_name": "hope" + }, + { + "appid": 3591920, + "normalized_name": "angels with scaly wings part 2 the strands of fate" + }, + { + "appid": 3591940, + "normalized_name": "jump man" + }, + { + "appid": 3591970, + "normalized_name": "bird coloring" + }, + { + "appid": 3591990, + "normalized_name": "space rocks in space" + }, + { + "appid": 3592000, + "normalized_name": "激情麻将" + }, + { + "appid": 3592060, + "normalized_name": "dominated by yandere goth girlfriend 2 valentine's day" + }, + { + "appid": 3592070, + "normalized_name": "雀夢麻雀(mahjong dream)" + }, + { + "appid": 3592090, + "normalized_name": "明末飞升之昙" + }, + { + "appid": 3592170, + "normalized_name": "backrooms the silence" + }, + { + "appid": 3592190, + "normalized_name": "cthulhu mysteries veins of arkham" + }, + { + "appid": 3592200, + "normalized_name": "electrician life" + }, + { + "appid": 3592220, + "normalized_name": "breaking the grip" + }, + { + "appid": 3592240, + "normalized_name": "card streamer simulator" + }, + { + "appid": 3592290, + "normalized_name": "riftella" + }, + { + "appid": 3592300, + "normalized_name": "awkward valley" + }, + { + "appid": 3592310, + "normalized_name": "desktop pals 2" + }, + { + "appid": 3592340, + "normalized_name": "the great axe" + }, + { + "appid": 3592350, + "normalized_name": "happy piggy" + }, + { + "appid": 3592420, + "normalized_name": "knight musume" + }, + { + "appid": 3592450, + "normalized_name": "crusaderman" + }, + { + "appid": 3592460, + "normalized_name": "rapid fire girls armpit" + }, + { + "appid": 3592490, + "normalized_name": "backrooms the scream" + }, + { + "appid": 3592520, + "normalized_name": "math challenge ar" + }, + { + "appid": 3592530, + "normalized_name": "resort galactica" + }, + { + "appid": 3592540, + "normalized_name": "niverium" + }, + { + "appid": 3592570, + "normalized_name": "alchemy duel" + }, + { + "appid": 3592710, + "normalized_name": "neon striker" + }, + { + "appid": 3592760, + "normalized_name": "journey's spirit" + }, + { + "appid": 3592770, + "normalized_name": "gravitus" + }, + { + "appid": 3592780, + "normalized_name": "parlay" + }, + { + "appid": 3592790, + "normalized_name": "master hanzi" + }, + { + "appid": 3592800, + "normalized_name": "galactibus" + }, + { + "appid": 3592820, + "normalized_name": "vessyl" + }, + { + "appid": 3592860, + "normalized_name": "とぶ、とり。" + }, + { + "appid": 3592920, + "normalized_name": "sticks and stones" + }, + { + "appid": 3592960, + "normalized_name": "zoom" + }, + { + "appid": 3592990, + "normalized_name": "hibridya" + }, + { + "appid": 3593000, + "normalized_name": "abrez" + }, + { + "appid": 3593020, + "normalized_name": "fruitgeddon" + }, + { + "appid": 3593040, + "normalized_name": "long live my lady!" + }, + { + "appid": 3593060, + "normalized_name": "destruction overdrive" + }, + { + "appid": 3593130, + "normalized_name": "one liners" + }, + { + "appid": 3593180, + "normalized_name": "launching over it" + }, + { + "appid": 3593190, + "normalized_name": "sisyphi" + }, + { + "appid": 3593250, + "normalized_name": "the liminal library" + }, + { + "appid": 3593290, + "normalized_name": "the town that died in the night" + }, + { + "appid": 3593330, + "normalized_name": "plush rangers" + }, + { + "appid": 3593370, + "normalized_name": "beattown" + }, + { + "appid": 3593380, + "normalized_name": "grim tales light in the darkness collector's" + }, + { + "appid": 3593430, + "normalized_name": "golgalian" + }, + { + "appid": 3593470, + "normalized_name": "1992 rasputie" + }, + { + "appid": 3593500, + "normalized_name": "strange shores social desktop fishing" + }, + { + "appid": 3593510, + "normalized_name": "dragon dodge" + }, + { + "appid": 3593520, + "normalized_name": "lust arcanum" + }, + { + "appid": 3593540, + "normalized_name": "dead man's drive" + }, + { + "appid": 3593600, + "normalized_name": "星痕绘梦 starry trace" + }, + { + "appid": 3593610, + "normalized_name": "desert cup air races" + }, + { + "appid": 3593620, + "normalized_name": "幻蝶:双生对立的少女" + }, + { + "appid": 3593660, + "normalized_name": "super penguin ball & chain" + }, + { + "appid": 3593760, + "normalized_name": "the silent jungle" + }, + { + "appid": 3593780, + "normalized_name": "lumberjacked" + }, + { + "appid": 3593850, + "normalized_name": "machine of the damned" + }, + { + "appid": 3593860, + "normalized_name": "fisher haven" + }, + { + "appid": 3593870, + "normalized_name": "storage full" + }, + { + "appid": 3593910, + "normalized_name": "hellkeeper" + }, + { + "appid": 3593920, + "normalized_name": "hgmgame panda" + }, + { + "appid": 3593940, + "normalized_name": "出马" + }, + { + "appid": 3593990, + "normalized_name": "番言薯语" + }, + { + "appid": 3594000, + "normalized_name": "性感史莱姆派对(slime sexy party)" + }, + { + "appid": 3594040, + "normalized_name": "herb seek slash" + }, + { + "appid": 3594050, + "normalized_name": "混乱纷争" + }, + { + "appid": 3594090, + "normalized_name": "大荒" + }, + { + "appid": 3594100, + "normalized_name": "学院逃生 正式版" + }, + { + "appid": 3594120, + "normalized_name": "brush burial 2" + }, + { + "appid": 3594170, + "normalized_name": "endor awakens roguelike drpg" + }, + { + "appid": 3594190, + "normalized_name": "her place vr" + }, + { + "appid": 3594210, + "normalized_name": "yet another one" + }, + { + "appid": 3594280, + "normalized_name": "avtale" + }, + { + "appid": 3594430, + "normalized_name": "hentai world west" + }, + { + "appid": 3594450, + "normalized_name": "towerdefense blobsmash" + }, + { + "appid": 3594470, + "normalized_name": "mordar warrior" + }, + { + "appid": 3594500, + "normalized_name": "ninja shadowblade" + }, + { + "appid": 3594550, + "normalized_name": "billy the hero" + }, + { + "appid": 3594560, + "normalized_name": "nomads descent last stand" + }, + { + "appid": 3594590, + "normalized_name": "异能重组" + }, + { + "appid": 3594610, + "normalized_name": "get yoked extreme bodybuilding" + }, + { + "appid": 3594670, + "normalized_name": "ranman" + }, + { + "appid": 3594680, + "normalized_name": "battle food mania" + }, + { + "appid": 3594690, + "normalized_name": "destroy the asteroids" + }, + { + "appid": 3594740, + "normalized_name": "monster drift" + }, + { + "appid": 3594780, + "normalized_name": "blackjack 21 blackjackist" + }, + { + "appid": 3594790, + "normalized_name": "forgotten signal portal" + }, + { + "appid": 3594970, + "normalized_name": "fire & brimstone" + }, + { + "appid": 3594980, + "normalized_name": "kings of cratia" + }, + { + "appid": 3594990, + "normalized_name": "pirate's gambit" + }, + { + "appid": 3595000, + "normalized_name": "farkle with friends" + }, + { + "appid": 3595010, + "normalized_name": "placid plastic duck vr" + }, + { + "appid": 3595020, + "normalized_name": "diomedea keep" + }, + { + "appid": 3595050, + "normalized_name": "幻觉病理" + }, + { + "appid": 3595060, + "normalized_name": "tetrescape" + }, + { + "appid": 3595130, + "normalized_name": "syvnta sovereignty" + }, + { + "appid": 3595140, + "normalized_name": "orion shooter オリオンシューター" + }, + { + "appid": 3595180, + "normalized_name": "the sex adventures of a gladiator" + }, + { + "appid": 3595210, + "normalized_name": "hypermage" + }, + { + "appid": 3595220, + "normalized_name": "pioneer racing" + }, + { + "appid": 3595280, + "normalized_name": "airplane racing championship" + }, + { + "appid": 3595390, + "normalized_name": "rixa" + }, + { + "appid": 3595430, + "normalized_name": "business empire online board game" + }, + { + "appid": 3595440, + "normalized_name": "study arcade" + }, + { + "appid": 3595460, + "normalized_name": "tiny vending machines" + }, + { + "appid": 3595480, + "normalized_name": "shuttle mining" + }, + { + "appid": 3595490, + "normalized_name": "pussylympics" + }, + { + "appid": 3595560, + "normalized_name": "zetazania part 1 vampire pirates from uranus" + }, + { + "appid": 3595570, + "normalized_name": "ballmaster" + }, + { + "appid": 3595590, + "normalized_name": "spacerocks" + }, + { + "appid": 3595630, + "normalized_name": "schoolboy outdoors" + }, + { + "appid": 3595640, + "normalized_name": "fried rice apocalypse" + }, + { + "appid": 3595680, + "normalized_name": "sincerely ro" + }, + { + "appid": 3595730, + "normalized_name": "devil meat" + }, + { + "appid": 3595740, + "normalized_name": "cirque de slay" + }, + { + "appid": 3595760, + "normalized_name": "marginal land" + }, + { + "appid": 3595790, + "normalized_name": "slime egg" + }, + { + "appid": 3595800, + "normalized_name": "road59a yakuza’s last stand" + }, + { + "appid": 3595820, + "normalized_name": "prismidia spirit of the rift" + }, + { + "appid": 3595850, + "normalized_name": "city of spells" + }, + { + "appid": 3595900, + "normalized_name": "pomodoro train in japan" + }, + { + "appid": 3595940, + "normalized_name": "soulforge" + }, + { + "appid": 3595960, + "normalized_name": "u桌球u" + }, + { + "appid": 3595980, + "normalized_name": "fortune" + }, + { + "appid": 3596000, + "normalized_name": "show me the money desktop gold rush" + }, + { + "appid": 3596030, + "normalized_name": "sweepin' xs" + }, + { + "appid": 3596100, + "normalized_name": "ダンジョンデストロイヤー dungeon destroyer" + }, + { + "appid": 3596130, + "normalized_name": "chaos coin" + }, + { + "appid": 3596230, + "normalized_name": "survival spin" + }, + { + "appid": 3596240, + "normalized_name": "強襲装甲少女大戦ヴァシレイア" + }, + { + "appid": 3596260, + "normalized_name": "anime girls gacha game" + }, + { + "appid": 3596280, + "normalized_name": "coffinman" + }, + { + "appid": 3596320, + "normalized_name": "the screen" + }, + { + "appid": 3596330, + "normalized_name": "盟军远征 地下世界" + }, + { + "appid": 3596370, + "normalized_name": "bearly escape" + }, + { + "appid": 3596380, + "normalized_name": "the guiding spirit" + }, + { + "appid": 3596390, + "normalized_name": "至尊传说" + }, + { + "appid": 3596410, + "normalized_name": "rock and scroll" + }, + { + "appid": 3596510, + "normalized_name": "taking london" + }, + { + "appid": 3596580, + "normalized_name": "temporal gunslinger" + }, + { + "appid": 3596610, + "normalized_name": "whotfire" + }, + { + "appid": 3596630, + "normalized_name": "sex adventures naughty sisters episode 7" + }, + { + "appid": 3596640, + "normalized_name": "interactive sex mom son incest bdsm" + }, + { + "appid": 3596650, + "normalized_name": "echomnesia" + }, + { + "appid": 3596670, + "normalized_name": "mochi o" + }, + { + "appid": 3596680, + "normalized_name": "sleepless shadows" + }, + { + "appid": 3596690, + "normalized_name": "いとこの家" + }, + { + "appid": 3596720, + "normalized_name": "パリィでボーガイ!デュアルランナー!" + }, + { + "appid": 3596730, + "normalized_name": "paper castle" + }, + { + "appid": 3596750, + "normalized_name": "圣歌德嘉的挽歌" + }, + { + "appid": 3596760, + "normalized_name": "short stax" + }, + { + "appid": 3596780, + "normalized_name": "defracted" + }, + { + "appid": 3596820, + "normalized_name": "tome tumble tournament" + }, + { + "appid": 3596910, + "normalized_name": "unboxing 1 bit paradox" + }, + { + "appid": 3596980, + "normalized_name": "twist of light" + }, + { + "appid": 3597020, + "normalized_name": "becoming a king" + }, + { + "appid": 3597060, + "normalized_name": "hack and climb" + }, + { + "appid": 3597150, + "normalized_name": "halftime adventures" + }, + { + "appid": 3597260, + "normalized_name": "far fresnel" + }, + { + "appid": 3597340, + "normalized_name": "after hell freezes over" + }, + { + "appid": 3597390, + "normalized_name": "forsaken valley" + }, + { + "appid": 3597480, + "normalized_name": "homesickness" + }, + { + "appid": 3597500, + "normalized_name": "croquis" + }, + { + "appid": 3597510, + "normalized_name": "myrobot" + }, + { + "appid": 3597530, + "normalized_name": "royal's gambit" + }, + { + "appid": 3597580, + "normalized_name": "earthion" + }, + { + "appid": 3597590, + "normalized_name": "dungeon mori" + }, + { + "appid": 3597610, + "normalized_name": "space witch" + }, + { + "appid": 3597630, + "normalized_name": "resfer who is there" + }, + { + "appid": 3597650, + "normalized_name": "gym simulator" + }, + { + "appid": 3597660, + "normalized_name": "karim and the 60 thieves" + }, + { + "appid": 3597670, + "normalized_name": "capybara hot tub" + }, + { + "appid": 3597690, + "normalized_name": "光影人生 lights and shadow" + }, + { + "appid": 3597700, + "normalized_name": "obscula" + }, + { + "appid": 3597710, + "normalized_name": "rise of the penguins 2 penguin's dark ascent" + }, + { + "appid": 3597720, + "normalized_name": "lootworld" + }, + { + "appid": 3597750, + "normalized_name": "lumina the uprising of folk legends" + }, + { + "appid": 3597770, + "normalized_name": "kittenship care" + }, + { + "appid": 3597790, + "normalized_name": "fightcum furry & hentai" + }, + { + "appid": 3597840, + "normalized_name": "乐队经理2077" + }, + { + "appid": 3597880, + "normalized_name": "cat named mojave" + }, + { + "appid": 3597890, + "normalized_name": "nekogumi" + }, + { + "appid": 3597900, + "normalized_name": "quack & hatch" + }, + { + "appid": 3597930, + "normalized_name": "hamster hustle" + }, + { + "appid": 3597980, + "normalized_name": "echofall" + }, + { + "appid": 3597990, + "normalized_name": "奥法探秘团" + }, + { + "appid": 3598020, + "normalized_name": "谶纬破云者" + }, + { + "appid": 3598040, + "normalized_name": "last wave" + }, + { + "appid": 3598060, + "normalized_name": "reviving an angel" + }, + { + "appid": 3598070, + "normalized_name": "auto legion" + }, + { + "appid": 3598090, + "normalized_name": "knight brawler" + }, + { + "appid": 3598130, + "normalized_name": "big rigs over the road racing" + }, + { + "appid": 3598140, + "normalized_name": "yokai goddess an urban legend bullet hell adventure" + }, + { + "appid": 3598180, + "normalized_name": "midnight souls" + }, + { + "appid": 3598190, + "normalized_name": "hamspater" + }, + { + "appid": 3598210, + "normalized_name": "sweet train" + }, + { + "appid": 3598240, + "normalized_name": "na gaill" + }, + { + "appid": 3598250, + "normalized_name": "virtual frenzy nexus corps" + }, + { + "appid": 3598260, + "normalized_name": "worm of steel" + }, + { + "appid": 3598270, + "normalized_name": "end turn" + }, + { + "appid": 3598280, + "normalized_name": "durga the lionhearted" + }, + { + "appid": 3598340, + "normalized_name": "schizophrenia" + }, + { + "appid": 3598390, + "normalized_name": "jacmena" + }, + { + "appid": 3598410, + "normalized_name": "luontile" + }, + { + "appid": 3598420, + "normalized_name": "sister takes two dicks" + }, + { + "appid": 3598430, + "normalized_name": "wanted cat" + }, + { + "appid": 3598470, + "normalized_name": "mayor's secretary escape game" + }, + { + "appid": 3598550, + "normalized_name": "atlas hands" + }, + { + "appid": 3598560, + "normalized_name": "hentai lucia" + }, + { + "appid": 3598570, + "normalized_name": "super komio island" + }, + { + "appid": 3598580, + "normalized_name": "viking breaker" + }, + { + "appid": 3598600, + "normalized_name": "tomochi" + }, + { + "appid": 3598620, + "normalized_name": "luminare" + }, + { + "appid": 3598680, + "normalized_name": "blackhill keep heir of the night" + }, + { + "appid": 3598720, + "normalized_name": "bling bling bankruptcy" + }, + { + "appid": 3598790, + "normalized_name": "bear vs. wolf jigsaw puzzle" + }, + { + "appid": 3598860, + "normalized_name": "swann's song" + }, + { + "appid": 3598920, + "normalized_name": "astral planes" + }, + { + "appid": 3598930, + "normalized_name": "lab lvl" + }, + { + "appid": 3598950, + "normalized_name": "catfish idle pond" + }, + { + "appid": 3598980, + "normalized_name": "whist" + }, + { + "appid": 3598990, + "normalized_name": "zonark" + }, + { + "appid": 3599040, + "normalized_name": "spacebar" + }, + { + "appid": 3599050, + "normalized_name": "shoot'n'shell" + }, + { + "appid": 3599070, + "normalized_name": "waxweaver" + }, + { + "appid": 3599160, + "normalized_name": "全トレ" + }, + { + "appid": 3599220, + "normalized_name": "zombie demolition infinite zombie shooter" + }, + { + "appid": 3599330, + "normalized_name": "wok this way" + }, + { + "appid": 3599340, + "normalized_name": "warbot engineer" + }, + { + "appid": 3599350, + "normalized_name": "レッツカチコミ!! のおかちゃん(開発中)" + }, + { + "appid": 3599390, + "normalized_name": "amber alert total vr" + }, + { + "appid": 3599440, + "normalized_name": "izea 10puzzle rogue lite rpg!" + }, + { + "appid": 3599460, + "normalized_name": "conformer" + }, + { + "appid": 3599470, + "normalized_name": "final fall" + }, + { + "appid": 3599480, + "normalized_name": "wonderlang polyglot" + }, + { + "appid": 3599490, + "normalized_name": "kanka" + }, + { + "appid": 3599510, + "normalized_name": "oiia" + }, + { + "appid": 3599640, + "normalized_name": "velistra failed state" + }, + { + "appid": 3599660, + "normalized_name": "颠市健康中心" + }, + { + "appid": 3599670, + "normalized_name": "forest factory simulator" + }, + { + "appid": 3599690, + "normalized_name": "funi raccoon game" + }, + { + "appid": 3599700, + "normalized_name": "chopper extractor" + }, + { + "appid": 3599710, + "normalized_name": "noir as love" + }, + { + "appid": 3599740, + "normalized_name": "mfc monkeyfightchampionship" + }, + { + "appid": 3599800, + "normalized_name": "blossom breeze" + }, + { + "appid": 3599820, + "normalized_name": "enchanter 附魔师" + }, + { + "appid": 3599830, + "normalized_name": "mandated fate" + }, + { + "appid": 3599840, + "normalized_name": "interstellar survivor" + }, + { + "appid": 3599850, + "normalized_name": "divergence beyond the singularity (part 1)" + }, + { + "appid": 3599860, + "normalized_name": "phonkside killers" + }, + { + "appid": 3599890, + "normalized_name": "人间恶灵 evil spirits of the mortal world" + }, + { + "appid": 3599900, + "normalized_name": "september 19" + }, + { + "appid": 3599920, + "normalized_name": "artius pure imagination" + }, + { + "appid": 3599930, + "normalized_name": "mooncrawler" + }, + { + "appid": 3599990, + "normalized_name": "serious survivors" + }, + { + "appid": 3600040, + "normalized_name": "flushed" + }, + { + "appid": 3600050, + "normalized_name": "animal games" + }, + { + "appid": 3600070, + "normalized_name": "casual fishing" + }, + { + "appid": 3600150, + "normalized_name": "co ape rise of the monke" + }, + { + "appid": 3600160, + "normalized_name": "mochiko the samurai" + }, + { + "appid": 3600210, + "normalized_name": "page turner" + }, + { + "appid": 3600240, + "normalized_name": "phi the broken strings" + }, + { + "appid": 3600250, + "normalized_name": "whomers ate my lawn!" + }, + { + "appid": 3600280, + "normalized_name": "core tycoon" + }, + { + "appid": 3600350, + "normalized_name": "bashing brutal" + }, + { + "appid": 3600380, + "normalized_name": "g.m.m" + }, + { + "appid": 3600400, + "normalized_name": "entropy" + }, + { + "appid": 3600440, + "normalized_name": "lillapad" + }, + { + "appid": 3600510, + "normalized_name": "the last reunion" + }, + { + "appid": 3600530, + "normalized_name": "ruins runner" + }, + { + "appid": 3600590, + "normalized_name": "the last squad" + }, + { + "appid": 3600620, + "normalized_name": "banshee" + }, + { + "appid": 3600670, + "normalized_name": "zombie town breakout" + }, + { + "appid": 3600690, + "normalized_name": "midnight gt primary racer" + }, + { + "appid": 3600700, + "normalized_name": "e racer" + }, + { + "appid": 3600730, + "normalized_name": "desktop standing card plates" + }, + { + "appid": 3600800, + "normalized_name": "retro rugby" + }, + { + "appid": 3600820, + "normalized_name": "in gehenna fantasy heroine" + }, + { + "appid": 3600840, + "normalized_name": "back:fade" + }, + { + "appid": 3600940, + "normalized_name": "大落大起 hard jump" + }, + { + "appid": 3600950, + "normalized_name": "squeeze" + }, + { + "appid": 3600960, + "normalized_name": "逝去之物 passenger gone" + }, + { + "appid": 3600970, + "normalized_name": "paragon of time" + }, + { + "appid": 3600990, + "normalized_name": "sinker sound" + }, + { + "appid": 3601030, + "normalized_name": "unto the aurora" + }, + { + "appid": 3601120, + "normalized_name": "toffee cats" + }, + { + "appid": 3601130, + "normalized_name": "touhou crawl" + }, + { + "appid": 3601150, + "normalized_name": "1!2!3!battle card!" + }, + { + "appid": 3601190, + "normalized_name": "skating rink story" + }, + { + "appid": 3601210, + "normalized_name": "donald jump" + }, + { + "appid": 3601310, + "normalized_name": "galaxy" + }, + { + "appid": 3601320, + "normalized_name": "口算快乐消" + }, + { + "appid": 3601330, + "normalized_name": "safety check yoshi!" + }, + { + "appid": 3601370, + "normalized_name": "don't breathe in!" + }, + { + "appid": 3601420, + "normalized_name": "casino roulette roulettist" + }, + { + "appid": 3601450, + "normalized_name": "vegas craps by pokerist" + }, + { + "appid": 3601590, + "normalized_name": "recyclic" + }, + { + "appid": 3601610, + "normalized_name": "fragile packages handle with care" + }, + { + "appid": 3601640, + "normalized_name": "citadel knight" + }, + { + "appid": 3601660, + "normalized_name": "ninja ruins" + }, + { + "appid": 3601680, + "normalized_name": "slain 2 the beast within" + }, + { + "appid": 3601690, + "normalized_name": "packjack" + }, + { + "appid": 3601710, + "normalized_name": "white day lost class funds" + }, + { + "appid": 3601720, + "normalized_name": "回南天 damp days in southern" + }, + { + "appid": 3601780, + "normalized_name": "it takes one year to beat this game" + }, + { + "appid": 3601790, + "normalized_name": "不吃香菜" + }, + { + "appid": 3601840, + "normalized_name": "adult life yuri bundle by team anpim" + }, + { + "appid": 3601860, + "normalized_name": "tamer town" + }, + { + "appid": 3601890, + "normalized_name": "cosmic drift" + }, + { + "appid": 3601900, + "normalized_name": "sepulcrum" + }, + { + "appid": 3601970, + "normalized_name": "cat a strophic" + }, + { + "appid": 3601980, + "normalized_name": "manivore" + }, + { + "appid": 3602000, + "normalized_name": "the black bahr" + }, + { + "appid": 3602010, + "normalized_name": "rogue cell" + }, + { + "appid": 3602030, + "normalized_name": "steel artery train city building simulator" + }, + { + "appid": 3602040, + "normalized_name": "the life together online" + }, + { + "appid": 3602060, + "normalized_name": "g astro" + }, + { + "appid": 3602080, + "normalized_name": "your god is false" + }, + { + "appid": 3602090, + "normalized_name": "cute girl suika game bouble" + }, + { + "appid": 3602100, + "normalized_name": "the last renovation" + }, + { + "appid": 3602120, + "normalized_name": "room football apocalyptic wasteland" + }, + { + "appid": 3602130, + "normalized_name": "room football cursed west" + }, + { + "appid": 3602150, + "normalized_name": "rise of transport" + }, + { + "appid": 3602170, + "normalized_name": "a mirror darkly" + }, + { + "appid": 3602190, + "normalized_name": "the easter bunny game" + }, + { + "appid": 3602240, + "normalized_name": "prime world legends" + }, + { + "appid": 3602290, + "normalized_name": "femboy futa house" + }, + { + "appid": 3602390, + "normalized_name": "biorage" + }, + { + "appid": 3602400, + "normalized_name": "the radio" + }, + { + "appid": 3602430, + "normalized_name": "night shift" + }, + { + "appid": 3602530, + "normalized_name": "star scavenger" + }, + { + "appid": 3602540, + "normalized_name": "warning" + }, + { + "appid": 3602600, + "normalized_name": "fish season" + }, + { + "appid": 3602640, + "normalized_name": "hell of war" + }, + { + "appid": 3602650, + "normalized_name": "viceria" + }, + { + "appid": 3602680, + "normalized_name": "transmission in progress…" + }, + { + "appid": 3602700, + "normalized_name": "sketchbook" + }, + { + "appid": 3602710, + "normalized_name": "pacostep" + }, + { + "appid": 3602720, + "normalized_name": "cashgrab refunded" + }, + { + "appid": 3602740, + "normalized_name": "my little sister's friend" + }, + { + "appid": 3602780, + "normalized_name": "kanji grinder" + }, + { + "appid": 3602820, + "normalized_name": "少女侦探白猫 girl detective white cat" + }, + { + "appid": 3602870, + "normalized_name": "slipstream" + }, + { + "appid": 3602880, + "normalized_name": "dark mine" + }, + { + "appid": 3602890, + "normalized_name": "dandelia" + }, + { + "appid": 3602940, + "normalized_name": "shadowfront" + }, + { + "appid": 3602980, + "normalized_name": "the vigilante" + }, + { + "appid": 3602990, + "normalized_name": "marimomo" + }, + { + "appid": 3603010, + "normalized_name": "pungo" + }, + { + "appid": 3603020, + "normalized_name": "auto legends" + }, + { + "appid": 3603040, + "normalized_name": "spirits of lunara" + }, + { + "appid": 3603070, + "normalized_name": "hope deferred" + }, + { + "appid": 3603080, + "normalized_name": "nijica" + }, + { + "appid": 3603100, + "normalized_name": "lost luminosity" + }, + { + "appid": 3603110, + "normalized_name": "the final kick" + }, + { + "appid": 3603330, + "normalized_name": "motte & passion" + }, + { + "appid": 3603340, + "normalized_name": "enter the dojo" + }, + { + "appid": 3603350, + "normalized_name": "hoard defender vr" + }, + { + "appid": 3603360, + "normalized_name": "lemonia the last castle" + }, + { + "appid": 3603370, + "normalized_name": "death pit explorer" + }, + { + "appid": 3603380, + "normalized_name": "death kitchen" + }, + { + "appid": 3603400, + "normalized_name": "drillmaster 9000" + }, + { + "appid": 3603410, + "normalized_name": "chaos rider" + }, + { + "appid": 3603430, + "normalized_name": "kid kharagma" + }, + { + "appid": 3603510, + "normalized_name": "astrovoids" + }, + { + "appid": 3603520, + "normalized_name": "final passage" + }, + { + "appid": 3603530, + "normalized_name": "dungeon with girl" + }, + { + "appid": 3603540, + "normalized_name": "전설의 반팅" + }, + { + "appid": 3603550, + "normalized_name": "chess" + }, + { + "appid": 3603560, + "normalized_name": "don't lose hope" + }, + { + "appid": 3603570, + "normalized_name": "dig & decode" + }, + { + "appid": 3603580, + "normalized_name": "whisker wanderlust" + }, + { + "appid": 3603590, + "normalized_name": "the ghost of alcantra" + }, + { + "appid": 3603650, + "normalized_name": "cubic blitz" + }, + { + "appid": 3603660, + "normalized_name": "zui's witch academy" + }, + { + "appid": 3603690, + "normalized_name": "pool protocol loop" + }, + { + "appid": 3603770, + "normalized_name": "through the wall" + }, + { + "appid": 3603800, + "normalized_name": "get to gold" + }, + { + "appid": 3603820, + "normalized_name": "kwyjibo adventure" + }, + { + "appid": 3603860, + "normalized_name": "beach bar simulator" + }, + { + "appid": 3603870, + "normalized_name": "raccateer" + }, + { + "appid": 3603890, + "normalized_name": "little tank" + }, + { + "appid": 3603900, + "normalized_name": "drunkonauts" + }, + { + "appid": 3603920, + "normalized_name": "hellmarch" + }, + { + "appid": 3603930, + "normalized_name": "dry bones" + }, + { + "appid": 3603940, + "normalized_name": "soviet survival" + }, + { + "appid": 3604010, + "normalized_name": "i am football" + }, + { + "appid": 3604070, + "normalized_name": "neon merger" + }, + { + "appid": 3604090, + "normalized_name": "mang ojek driving test" + }, + { + "appid": 3604100, + "normalized_name": "et le grain mourut" + }, + { + "appid": 3604110, + "normalized_name": "hgmgame monkey" + }, + { + "appid": 3604130, + "normalized_name": "usb bot" + }, + { + "appid": 3604140, + "normalized_name": "after friday 星期五之后" + }, + { + "appid": 3604220, + "normalized_name": "美少女スナップ!メタモル写真クラブ school photo transformer" + }, + { + "appid": 3604230, + "normalized_name": "お嬢様学院のインチキ占い師 ghost of boarding school" + }, + { + "appid": 3604260, + "normalized_name": "liminal city" + }, + { + "appid": 3604310, + "normalized_name": "sinful villa 🔞" + }, + { + "appid": 3604320, + "normalized_name": "女神异闻录:夜幕魅影" + }, + { + "appid": 3604330, + "normalized_name": "naughty narratives" + }, + { + "appid": 3604350, + "normalized_name": "ashen blade" + }, + { + "appid": 3604430, + "normalized_name": "digger galactic treasures" + }, + { + "appid": 3604450, + "normalized_name": "ovorol" + }, + { + "appid": 3604470, + "normalized_name": "kill your heart" + }, + { + "appid": 3604480, + "normalized_name": "i hate seagulls" + }, + { + "appid": 3604490, + "normalized_name": "dining deck" + }, + { + "appid": 3604500, + "normalized_name": "pixel frontier tactics" + }, + { + "appid": 3604510, + "normalized_name": "仅你一人" + }, + { + "appid": 3604520, + "normalized_name": "the mare show" + }, + { + "appid": 3604550, + "normalized_name": "ball scooping friends" + }, + { + "appid": 3604560, + "normalized_name": "figure shop simulator" + }, + { + "appid": 3604580, + "normalized_name": "垂直之光the light of vertical" + }, + { + "appid": 3604600, + "normalized_name": "liminality" + }, + { + "appid": 3604670, + "normalized_name": "news company simulator" + }, + { + "appid": 3604750, + "normalized_name": "dominated by yandere goth childhood friend" + }, + { + "appid": 3604780, + "normalized_name": "sunken engine" + }, + { + "appid": 3604790, + "normalized_name": "cozymeow" + }, + { + "appid": 3604810, + "normalized_name": "deliveriez" + }, + { + "appid": 3604860, + "normalized_name": "beatlords" + }, + { + "appid": 3604870, + "normalized_name": "cyber sentinel" + }, + { + "appid": 3604880, + "normalized_name": "kit 10" + }, + { + "appid": 3604910, + "normalized_name": "capybound" + }, + { + "appid": 3604920, + "normalized_name": "incredibug" + }, + { + "appid": 3604950, + "normalized_name": "polysouls" + }, + { + "appid": 3604960, + "normalized_name": "影の遺産 legacy of shadows" + }, + { + "appid": 3604980, + "normalized_name": "duster buster" + }, + { + "appid": 3605000, + "normalized_name": "nocturnarya collector's" + }, + { + "appid": 3605010, + "normalized_name": "makuta stories" + }, + { + "appid": 3605070, + "normalized_name": "ラミィの大冒険 1&2 リメイク" + }, + { + "appid": 3605120, + "normalized_name": "trails" + }, + { + "appid": 3605150, + "normalized_name": "pub toilet simulator 25" + }, + { + "appid": 3605230, + "normalized_name": "火烧城" + }, + { + "appid": 3605260, + "normalized_name": "villain's quest" + }, + { + "appid": 3605330, + "normalized_name": "grand mountain adventure 2" + }, + { + "appid": 3605340, + "normalized_name": "the eternal hunt" + }, + { + "appid": 3605350, + "normalized_name": "empyrean league hex tactics" + }, + { + "appid": 3605360, + "normalized_name": "ephemeral frame" + }, + { + "appid": 3605370, + "normalized_name": "the last fortress" + }, + { + "appid": 3605440, + "normalized_name": "furry tits" + }, + { + "appid": 3605450, + "normalized_name": "dirty teachers" + }, + { + "appid": 3605460, + "normalized_name": "bound survivor" + }, + { + "appid": 3605470, + "normalized_name": "remotespace first settlement" + }, + { + "appid": 3605480, + "normalized_name": "traveler lost" + }, + { + "appid": 3605490, + "normalized_name": "frostbite frenzy" + }, + { + "appid": 3605500, + "normalized_name": "biosynth rising" + }, + { + "appid": 3605520, + "normalized_name": "digital market simulator" + }, + { + "appid": 3605550, + "normalized_name": "potato cop" + }, + { + "appid": 3605560, + "normalized_name": "ping profit internet tycoon" + }, + { + "appid": 3605910, + "normalized_name": "don't drop dead" + }, + { + "appid": 3605920, + "normalized_name": "cosmic concealed" + }, + { + "appid": 3606000, + "normalized_name": "grim" + }, + { + "appid": 3606030, + "normalized_name": "dr. suun" + }, + { + "appid": 3606060, + "normalized_name": "drift shell" + }, + { + "appid": 3606150, + "normalized_name": "somniphobia" + }, + { + "appid": 3606160, + "normalized_name": "the designer's curse chapter 2 forgotten horrors" + }, + { + "appid": 3606180, + "normalized_name": "winoa wizard's witchy quest to womanhood vs the botanical bitches" + }, + { + "appid": 3606330, + "normalized_name": "my grandpa turned into a zombie. at least he stopped asking when i’m having kids." + }, + { + "appid": 3606340, + "normalized_name": "harvest reaper" + }, + { + "appid": 3606360, + "normalized_name": "everybody wants my girl" + }, + { + "appid": 3606380, + "normalized_name": "summer days in the joyful countryside" + }, + { + "appid": 3606390, + "normalized_name": "box stocks" + }, + { + "appid": 3606450, + "normalized_name": "the bloody cross" + }, + { + "appid": 3606520, + "normalized_name": "paranormal survey" + }, + { + "appid": 3606580, + "normalized_name": "survive the cards" + }, + { + "appid": 3606610, + "normalized_name": "into black" + }, + { + "appid": 3606680, + "normalized_name": "探偵は月を見る" + }, + { + "appid": 3606700, + "normalized_name": "andria" + }, + { + "appid": 3606740, + "normalized_name": "jack barau" + }, + { + "appid": 3606750, + "normalized_name": "succubus crisis" + }, + { + "appid": 3606780, + "normalized_name": "chunky jump!" + }, + { + "appid": 3606810, + "normalized_name": "death club our dead pawns" + }, + { + "appid": 3606820, + "normalized_name": "doudou machine" + }, + { + "appid": 3606830, + "normalized_name": "life in the janitor's room with a jk girl" + }, + { + "appid": 3606910, + "normalized_name": "hentai tales isekai uncle reversal 2" + }, + { + "appid": 3606920, + "normalized_name": "hentai tales academy's record" + }, + { + "appid": 3606930, + "normalized_name": "虚拟萌伴 菜闻姬" + }, + { + "appid": 3606970, + "normalized_name": "brass rain" + }, + { + "appid": 3606980, + "normalized_name": "modulea" + }, + { + "appid": 3607000, + "normalized_name": "workplace stories" + }, + { + "appid": 3607010, + "normalized_name": "pegshot vendetta" + }, + { + "appid": 3607020, + "normalized_name": "ライヒェは街灯の下で" + }, + { + "appid": 3607100, + "normalized_name": "rekindle" + }, + { + "appid": 3607120, + "normalized_name": "zombies in valkeala" + }, + { + "appid": 3607150, + "normalized_name": "survival in space is not guaranteed" + }, + { + "appid": 3607190, + "normalized_name": "anime dream match girls" + }, + { + "appid": 3607230, + "normalized_name": "ridiculous space battles" + }, + { + "appid": 3607270, + "normalized_name": "holiday in europe netherlands dreams collector's" + }, + { + "appid": 3607290, + "normalized_name": "survivor's rhythm" + }, + { + "appid": 3607310, + "normalized_name": "moonlit carnage" + }, + { + "appid": 3607370, + "normalized_name": "the last oath" + }, + { + "appid": 3607380, + "normalized_name": "a bottled up island" + }, + { + "appid": 3607440, + "normalized_name": "a.a.u." + }, + { + "appid": 3607450, + "normalized_name": "le bureau des rêves" + }, + { + "appid": 3607460, + "normalized_name": "zone" + }, + { + "appid": 3607480, + "normalized_name": "dummy" + }, + { + "appid": 3607490, + "normalized_name": "mr. billion idle rich tycoon" + }, + { + "appid": 3607500, + "normalized_name": "disclosures" + }, + { + "appid": 3607510, + "normalized_name": "magla" + }, + { + "appid": 3607540, + "normalized_name": "horror camp" + }, + { + "appid": 3607560, + "normalized_name": "balloomia sky playground" + }, + { + "appid": 3607690, + "normalized_name": "depth dwellers (1994)" + }, + { + "appid": 3607700, + "normalized_name": "末日战姬 二次元.策略.卡牌.游戏" + }, + { + "appid": 3607710, + "normalized_name": "go to hell" + }, + { + "appid": 3607730, + "normalized_name": "trauma island dream doctor" + }, + { + "appid": 3607770, + "normalized_name": "jester a foolish ritual" + }, + { + "appid": 3607790, + "normalized_name": "brick breaker maker" + }, + { + "appid": 3607800, + "normalized_name": "backpack seeker`s" + }, + { + "appid": 3607840, + "normalized_name": "tasu bowl" + }, + { + "appid": 3607850, + "normalized_name": "yandere maid~love crazed maid~" + }, + { + "appid": 3607990, + "normalized_name": "block rush" + }, + { + "appid": 3608010, + "normalized_name": "overrealm" + }, + { + "appid": 3608020, + "normalized_name": "trade tycoon life simulator" + }, + { + "appid": 3608050, + "normalized_name": "dreamwanderer" + }, + { + "appid": 3608090, + "normalized_name": "lemon basket" + }, + { + "appid": 3608120, + "normalized_name": "in their shoes" + }, + { + "appid": 3608250, + "normalized_name": "laserade" + }, + { + "appid": 3608290, + "normalized_name": "the last fireman" + }, + { + "appid": 3608320, + "normalized_name": "fluid drift" + }, + { + "appid": 3608340, + "normalized_name": "lewd math" + }, + { + "appid": 3608390, + "normalized_name": "glow journey" + }, + { + "appid": 3608430, + "normalized_name": "ultima nex" + }, + { + "appid": 3608480, + "normalized_name": "funny cargo simulator" + }, + { + "appid": 3608550, + "normalized_name": "door to somewhere" + }, + { + "appid": 3608580, + "normalized_name": "wanderlust the magnificent journey" + }, + { + "appid": 3608620, + "normalized_name": "calix" + }, + { + "appid": 3608630, + "normalized_name": "flavours of the past" + }, + { + "appid": 3608680, + "normalized_name": "make your country dominate again" + }, + { + "appid": 3608730, + "normalized_name": "tales for the long nights" + }, + { + "appid": 3608780, + "normalized_name": "elon musk saves britain" + }, + { + "appid": 3608900, + "normalized_name": "nomia" + }, + { + "appid": 3609100, + "normalized_name": "hero slayers" + }, + { + "appid": 3609130, + "normalized_name": "空島ノーカ" + }, + { + "appid": 3609140, + "normalized_name": "fragments of us" + }, + { + "appid": 3609150, + "normalized_name": "bupsya" + }, + { + "appid": 3609160, + "normalized_name": "goty" + }, + { + "appid": 3609170, + "normalized_name": "4story the original" + }, + { + "appid": 3609260, + "normalized_name": "idle zombie wave premium" + }, + { + "appid": 3609330, + "normalized_name": "driftwood diner" + }, + { + "appid": 3609380, + "normalized_name": "veredilia the sacred forest" + }, + { + "appid": 3609400, + "normalized_name": "the children's limbo" + }, + { + "appid": 3609470, + "normalized_name": "scorpion hero arcade" + }, + { + "appid": 3609520, + "normalized_name": "sweet disco" + }, + { + "appid": 3609530, + "normalized_name": "ego league" + }, + { + "appid": 3609580, + "normalized_name": "怪物塔 monster tower" + }, + { + "appid": 3609590, + "normalized_name": "detective k" + }, + { + "appid": 3609610, + "normalized_name": "meat market" + }, + { + "appid": 3609700, + "normalized_name": "小骑士2黯苏旧梦" + }, + { + "appid": 3609710, + "normalized_name": "领域(realm)" + }, + { + "appid": 3609720, + "normalized_name": "sanctum mage" + }, + { + "appid": 3609750, + "normalized_name": "organized inside" + }, + { + "appid": 3609760, + "normalized_name": "hong kong haunting fishball girl" + }, + { + "appid": 3609780, + "normalized_name": "chess bulk" + }, + { + "appid": 3609790, + "normalized_name": "only cards" + }, + { + "appid": 3609890, + "normalized_name": "surface tension" + }, + { + "appid": 3609900, + "normalized_name": "怪物联萌 巨龙守护者" + }, + { + "appid": 3609920, + "normalized_name": "my sadistic yandere goth wife mercilessly dominates me" + }, + { + "appid": 3609970, + "normalized_name": "dekmon" + }, + { + "appid": 3609980, + "normalized_name": "yes my queen" + }, + { + "appid": 3609990, + "normalized_name": "sunset drive" + }, + { + "appid": 3610000, + "normalized_name": "last stretch" + }, + { + "appid": 3610120, + "normalized_name": "mead & glory" + }, + { + "appid": 3610130, + "normalized_name": "bolodil evolution" + }, + { + "appid": 3610150, + "normalized_name": "hentai beach" + }, + { + "appid": 3610170, + "normalized_name": "arcadian days" + }, + { + "appid": 3610210, + "normalized_name": "klostyn" + }, + { + "appid": 3610310, + "normalized_name": "doorz" + }, + { + "appid": 3610340, + "normalized_name": "good luck crossing" + }, + { + "appid": 3610380, + "normalized_name": "guild of hunters" + }, + { + "appid": 3610410, + "normalized_name": "非幸存者 not survivors" + }, + { + "appid": 3610440, + "normalized_name": "take back the land" + }, + { + "appid": 3610500, + "normalized_name": "meganaut" + }, + { + "appid": 3610520, + "normalized_name": "who is ethan?" + }, + { + "appid": 3610530, + "normalized_name": "d.p.s weapons testing facility 2" + }, + { + "appid": 3610570, + "normalized_name": "the dark between" + }, + { + "appid": 3610580, + "normalized_name": "soul harvester" + }, + { + "appid": 3610630, + "normalized_name": "yuri demon" + }, + { + "appid": 3610650, + "normalized_name": "loco muko" + }, + { + "appid": 3610780, + "normalized_name": "el gaucho martín fierro" + }, + { + "appid": 3610940, + "normalized_name": "gunbot diplomacy blast off" + }, + { + "appid": 3611030, + "normalized_name": "quiet little town" + }, + { + "appid": 3611180, + "normalized_name": "riftseekers" + }, + { + "appid": 3611450, + "normalized_name": "monster shop simulator" + }, + { + "appid": 3611530, + "normalized_name": "touhou chouhatsuyou ~ burgeoning tresses of longevity" + }, + { + "appid": 3611540, + "normalized_name": "potat" + }, + { + "appid": 3611560, + "normalized_name": "sneaky all nighter" + }, + { + "appid": 3611620, + "normalized_name": "deadrunners" + }, + { + "appid": 3611640, + "normalized_name": "hero stickman" + }, + { + "appid": 3611650, + "normalized_name": "hurley the hyrax" + }, + { + "appid": 3611700, + "normalized_name": "after lights out" + }, + { + "appid": 3611710, + "normalized_name": "hideseekbattle" + }, + { + "appid": 3611900, + "normalized_name": "the blessing of airon" + }, + { + "appid": 3611940, + "normalized_name": "おハム食堂記 ham cafe" + }, + { + "appid": 3611950, + "normalized_name": "greatsword point!" + }, + { + "appid": 3612000, + "normalized_name": "block+hole" + }, + { + "appid": 3612060, + "normalized_name": "idle land of exile" + }, + { + "appid": 3612080, + "normalized_name": "oppai render first love" + }, + { + "appid": 3612110, + "normalized_name": "mbti survivors" + }, + { + "appid": 3612120, + "normalized_name": "晦朔(hui shuo)" + }, + { + "appid": 3612160, + "normalized_name": "ashen dungeon" + }, + { + "appid": 3612210, + "normalized_name": "rumbly" + }, + { + "appid": 3612250, + "normalized_name": "arcana academy" + }, + { + "appid": 3612300, + "normalized_name": "fool's trigger" + }, + { + "appid": 3612320, + "normalized_name": "the meowpao" + }, + { + "appid": 3612370, + "normalized_name": "yooca next horizon" + }, + { + "appid": 3612390, + "normalized_name": "new yankee the way of the knight" + }, + { + "appid": 3612460, + "normalized_name": "city gangster simulator" + }, + { + "appid": 3612480, + "normalized_name": "3d escape room mystic manor" + }, + { + "appid": 3612510, + "normalized_name": "rayser" + }, + { + "appid": 3612520, + "normalized_name": "over shooter" + }, + { + "appid": 3612610, + "normalized_name": "stackmancy" + }, + { + "appid": 3612620, + "normalized_name": "exo digger" + }, + { + "appid": 3612630, + "normalized_name": "monitor state" + }, + { + "appid": 3612640, + "normalized_name": "infiniclick" + }, + { + "appid": 3612670, + "normalized_name": "love surge!" + }, + { + "appid": 3612720, + "normalized_name": "the seven enchantments" + }, + { + "appid": 3612730, + "normalized_name": "destined notes the written fate" + }, + { + "appid": 3612740, + "normalized_name": "battlers of ekrasys" + }, + { + "appid": 3612760, + "normalized_name": "room football wetlands" + }, + { + "appid": 3612770, + "normalized_name": "room football sun shrine" + }, + { + "appid": 3612780, + "normalized_name": "nikarus!" + }, + { + "appid": 3612790, + "normalized_name": "gearbound odyssey" + }, + { + "appid": 3612800, + "normalized_name": "gore rapture" + }, + { + "appid": 3612850, + "normalized_name": "the lightkeeper" + }, + { + "appid": 3612870, + "normalized_name": "samurai blitz ex" + }, + { + "appid": 3612900, + "normalized_name": "lost altr" + }, + { + "appid": 3612960, + "normalized_name": "shuttered" + }, + { + "appid": 3612980, + "normalized_name": "grease monkey grand prix" + }, + { + "appid": 3612990, + "normalized_name": "tales from the unending void season 2" + }, + { + "appid": 3613030, + "normalized_name": "ludaro" + }, + { + "appid": 3613040, + "normalized_name": "tales of lyfael" + }, + { + "appid": 3613070, + "normalized_name": "dino might" + }, + { + "appid": 3613080, + "normalized_name": "bot colony _redux" + }, + { + "appid": 3613120, + "normalized_name": "出摊啦!鼠大厨!" + }, + { + "appid": 3613130, + "normalized_name": "ascent of eternity" + }, + { + "appid": 3613170, + "normalized_name": "dino & chill" + }, + { + "appid": 3613230, + "normalized_name": "dnb starfighter" + }, + { + "appid": 3613300, + "normalized_name": "rymdval space trucking" + }, + { + "appid": 3613400, + "normalized_name": "block plop" + }, + { + "appid": 3613450, + "normalized_name": "coil's containment" + }, + { + "appid": 3613470, + "normalized_name": "my pet fan" + }, + { + "appid": 3613480, + "normalized_name": "羊与虎" + }, + { + "appid": 3613490, + "normalized_name": "budget rally" + }, + { + "appid": 3613500, + "normalized_name": "idle fisher" + }, + { + "appid": 3613550, + "normalized_name": "checkmage!" + }, + { + "appid": 3613600, + "normalized_name": "long shot" + }, + { + "appid": 3613610, + "normalized_name": "double down" + }, + { + "appid": 3613790, + "normalized_name": "pixel ronin" + }, + { + "appid": 3613830, + "normalized_name": "focusflow field" + }, + { + "appid": 3613860, + "normalized_name": "the prisonbreak" + }, + { + "appid": 3613910, + "normalized_name": "pipeline crawl" + }, + { + "appid": 3613920, + "normalized_name": "prism of you" + }, + { + "appid": 3613930, + "normalized_name": "中国式外卖" + }, + { + "appid": 3613960, + "normalized_name": "resort island simulator" + }, + { + "appid": 3613980, + "normalized_name": "sex goddess chronicles lilith's seduction an nsfw porn vn" + }, + { + "appid": 3614050, + "normalized_name": "moon & the fractured reincarnation" + }, + { + "appid": 3614100, + "normalized_name": "accretion" + }, + { + "appid": 3614140, + "normalized_name": "bubble's adventure 2d platformer 泡泡人大冒险:2d平台" + }, + { + "appid": 3614160, + "normalized_name": "isekai adventurer guild" + }, + { + "appid": 3614170, + "normalized_name": "冰河" + }, + { + "appid": 3614220, + "normalized_name": "快抢24点 24 points grab" + }, + { + "appid": 3614250, + "normalized_name": "waifu puzzle" + }, + { + "appid": 3614300, + "normalized_name": "arpg collection sales science & spirits" + }, + { + "appid": 3614380, + "normalized_name": "the truth of a snowy night" + }, + { + "appid": 3614410, + "normalized_name": "poking ghosts" + }, + { + "appid": 3614460, + "normalized_name": "hypermarket simulator" + }, + { + "appid": 3614480, + "normalized_name": "circle jump" + }, + { + "appid": 3614490, + "normalized_name": "tiny crate" + }, + { + "appid": 3614500, + "normalized_name": "alternative alliance alpha" + }, + { + "appid": 3614510, + "normalized_name": "simple block" + }, + { + "appid": 3614520, + "normalized_name": "open star fighter" + }, + { + "appid": 3614570, + "normalized_name": "龙与精灵 dragons and elves" + }, + { + "appid": 3614580, + "normalized_name": "gørkjes finger food fighting" + }, + { + "appid": 3614600, + "normalized_name": "city supermarket simulator" + }, + { + "appid": 3614620, + "normalized_name": "project num" + }, + { + "appid": 3614630, + "normalized_name": "santa's last stand" + }, + { + "appid": 3614690, + "normalized_name": "lunhowl co op horror" + }, + { + "appid": 3614700, + "normalized_name": "undead horizon" + }, + { + "appid": 3614730, + "normalized_name": "monster pod quest" + }, + { + "appid": 3614960, + "normalized_name": "harvest" + }, + { + "appid": 3614980, + "normalized_name": "keytamine" + }, + { + "appid": 3615020, + "normalized_name": "arcade jumper" + }, + { + "appid": 3615080, + "normalized_name": "ass sniffing simulator" + }, + { + "appid": 3615160, + "normalized_name": "teddy's haven a fantasy inspired shop simulator" + }, + { + "appid": 3615210, + "normalized_name": "orbs of duality" + }, + { + "appid": 3615290, + "normalized_name": "outpour" + }, + { + "appid": 3615350, + "normalized_name": "rustborns" + }, + { + "appid": 3615360, + "normalized_name": "your stepsister" + }, + { + "appid": 3615380, + "normalized_name": "anime girls mirror quest 2" + }, + { + "appid": 3615390, + "normalized_name": "a journey through shadow to reach the light." + }, + { + "appid": 3615440, + "normalized_name": "la pasion xr" + }, + { + "appid": 3615480, + "normalized_name": "sisyphe's backspace" + }, + { + "appid": 3615490, + "normalized_name": "sunset sprout" + }, + { + "appid": 3615590, + "normalized_name": "my life as a robot vacuum" + }, + { + "appid": 3615650, + "normalized_name": "re leap·美丽新世界" + }, + { + "appid": 3615670, + "normalized_name": "geometry factory" + }, + { + "appid": 3615680, + "normalized_name": "kinanh town of darkness" + }, + { + "appid": 3615710, + "normalized_name": "hako" + }, + { + "appid": 3615760, + "normalized_name": "archetypal destroyer" + }, + { + "appid": 3615770, + "normalized_name": "recursion vessel" + }, + { + "appid": 3615790, + "normalized_name": "a sexy tour with yeona" + }, + { + "appid": 3615800, + "normalized_name": "wand mart a totally normal magical store" + }, + { + "appid": 3615830, + "normalized_name": "sex adventures incest family episode 7" + }, + { + "appid": 3615840, + "normalized_name": "meow time machine newton" + }, + { + "appid": 3615850, + "normalized_name": "blighted deep" + }, + { + "appid": 3615860, + "normalized_name": "desktop aquarium" + }, + { + "appid": 3615870, + "normalized_name": "farewell we see each other for the last time....." + }, + { + "appid": 3615940, + "normalized_name": "a short russian blackjack game" + }, + { + "appid": 3615950, + "normalized_name": "scarlet enigma" + }, + { + "appid": 3615970, + "normalized_name": "vesper's hunt" + }, + { + "appid": 3616000, + "normalized_name": "king's amusements" + }, + { + "appid": 3616070, + "normalized_name": "trump jigsaw" + }, + { + "appid": 3616180, + "normalized_name": "zenzicube the power of six" + }, + { + "appid": 3616210, + "normalized_name": "jump" + }, + { + "appid": 3616220, + "normalized_name": "echoes of the city" + }, + { + "appid": 3616230, + "normalized_name": "glyphs" + }, + { + "appid": 3616240, + "normalized_name": "facility of dusk" + }, + { + "appid": 3616250, + "normalized_name": "cozy holes" + }, + { + "appid": 3616290, + "normalized_name": "your time has come" + }, + { + "appid": 3616320, + "normalized_name": "fairy tale td 2 童话塔防2" + }, + { + "appid": 3616330, + "normalized_name": "droplex" + }, + { + "appid": 3616450, + "normalized_name": "paws against the world" + }, + { + "appid": 3616480, + "normalized_name": "grimdelve" + }, + { + "appid": 3616540, + "normalized_name": "mike’s hidden basement" + }, + { + "appid": 3616550, + "normalized_name": "car dealership simulator 2" + }, + { + "appid": 3616560, + "normalized_name": "dread not" + }, + { + "appid": 3616580, + "normalized_name": "invaderz" + }, + { + "appid": 3616630, + "normalized_name": "arcadia cloudbound" + }, + { + "appid": 3616650, + "normalized_name": "你的老婆" + }, + { + "appid": 3616680, + "normalized_name": "the edge" + }, + { + "appid": 3616730, + "normalized_name": "homestray" + }, + { + "appid": 3616780, + "normalized_name": "paradise lust 3" + }, + { + "appid": 3616840, + "normalized_name": "ゴキ's room 2" + }, + { + "appid": 3616910, + "normalized_name": "backrooms we escape forever" + }, + { + "appid": 3616930, + "normalized_name": "病みカレ" + }, + { + "appid": 3616940, + "normalized_name": "angry bean" + }, + { + "appid": 3616960, + "normalized_name": "his bet her loss" + }, + { + "appid": 3616970, + "normalized_name": "out of the ocean" + }, + { + "appid": 3616980, + "normalized_name": "reframe" + }, + { + "appid": 3617020, + "normalized_name": "神的名字" + }, + { + "appid": 3617040, + "normalized_name": "处处吻 chuchu" + }, + { + "appid": 3617110, + "normalized_name": "我在西游开黑店" + }, + { + "appid": 3617120, + "normalized_name": "dragon march" + }, + { + "appid": 3617130, + "normalized_name": "maze breaker" + }, + { + "appid": 3617150, + "normalized_name": "drive & deliver" + }, + { + "appid": 3617170, + "normalized_name": "东方求闻编年史~ark of eternal recollection" + }, + { + "appid": 3617190, + "normalized_name": "hidden cats ellara" + }, + { + "appid": 3617200, + "normalized_name": "the people of sea sun & salt" + }, + { + "appid": 3617250, + "normalized_name": "floor 8" + }, + { + "appid": 3617270, + "normalized_name": "ogantto" + }, + { + "appid": 3617300, + "normalized_name": "不劳则死 the choices of priori" + }, + { + "appid": 3617310, + "normalized_name": "proptop" + }, + { + "appid": 3617320, + "normalized_name": "31 room" + }, + { + "appid": 3617340, + "normalized_name": "eggcellent life" + }, + { + "appid": 3617350, + "normalized_name": "boomerpunk" + }, + { + "appid": 3617370, + "normalized_name": "anomaly runner" + }, + { + "appid": 3617390, + "normalized_name": "桌面小农场" + }, + { + "appid": 3617400, + "normalized_name": "赛博忏悔室" + }, + { + "appid": 3617410, + "normalized_name": "goblomite" + }, + { + "appid": 3617420, + "normalized_name": "cooperate with yourself" + }, + { + "appid": 3617430, + "normalized_name": "你的绿帽子" + }, + { + "appid": 3617460, + "normalized_name": "will jump" + }, + { + "appid": 3617470, + "normalized_name": "paradox protocol" + }, + { + "appid": 3617490, + "normalized_name": "single spark" + }, + { + "appid": 3617530, + "normalized_name": "purr suit of happiness" + }, + { + "appid": 3617560, + "normalized_name": "buck trucker in rowdy business" + }, + { + "appid": 3617570, + "normalized_name": "blade vs undead" + }, + { + "appid": 3617600, + "normalized_name": "knowmad" + }, + { + "appid": 3617620, + "normalized_name": "my card is better than your card!" + }, + { + "appid": 3617650, + "normalized_name": "butler guillotine" + }, + { + "appid": 3617690, + "normalized_name": "bibelgame" + }, + { + "appid": 3617730, + "normalized_name": "funny volleyball" + }, + { + "appid": 3617750, + "normalized_name": "do up" + }, + { + "appid": 3617820, + "normalized_name": "囚夢" + }, + { + "appid": 3617830, + "normalized_name": "scary cargo" + }, + { + "appid": 3617840, + "normalized_name": "a game about penguins" + }, + { + "appid": 3617900, + "normalized_name": "공돌이 vs ai" + }, + { + "appid": 3617930, + "normalized_name": "horror tale 3 the witch" + }, + { + "appid": 3618000, + "normalized_name": "hordeguard winds of the north" + }, + { + "appid": 3618010, + "normalized_name": "fire in the hole" + }, + { + "appid": 3618020, + "normalized_name": "lullapops sail race" + }, + { + "appid": 3618050, + "normalized_name": "hotel security" + }, + { + "appid": 3618060, + "normalized_name": "astro busters" + }, + { + "appid": 3618080, + "normalized_name": "dreadful death" + }, + { + "appid": 3618090, + "normalized_name": "noosphere" + }, + { + "appid": 3618120, + "normalized_name": "guess me if you can" + }, + { + "appid": 3618140, + "normalized_name": "temne" + }, + { + "appid": 3618170, + "normalized_name": "absolute canasta for windows 11" + }, + { + "appid": 3618200, + "normalized_name": "gun center simulator" + }, + { + "appid": 3618210, + "normalized_name": "bombardiro crocodilo italian brainrot simulator" + }, + { + "appid": 3618320, + "normalized_name": "life is a journey" + }, + { + "appid": 3618330, + "normalized_name": "area 75" + }, + { + "appid": 3618390, + "normalized_name": "gamblers table" + }, + { + "appid": 3618400, + "normalized_name": "eternal survival" + }, + { + "appid": 3618470, + "normalized_name": "can't you run?" + }, + { + "appid": 3618480, + "normalized_name": "journey under the pyramids" + }, + { + "appid": 3618510, + "normalized_name": "pudding up!" + }, + { + "appid": 3618550, + "normalized_name": "wandererstip" + }, + { + "appid": 3618640, + "normalized_name": "esc4pe!" + }, + { + "appid": 3618650, + "normalized_name": "office tycoon" + }, + { + "appid": 3618660, + "normalized_name": "antidote to despair" + }, + { + "appid": 3618690, + "normalized_name": "coma control" + }, + { + "appid": 3618700, + "normalized_name": "cats visiting historical times" + }, + { + "appid": 3618720, + "normalized_name": "dungeoncrawlers" + }, + { + "appid": 3618760, + "normalized_name": "pyramidvalley reborn" + }, + { + "appid": 3618780, + "normalized_name": "weird island vr" + }, + { + "appid": 3618820, + "normalized_name": "stompy's antique shop" + }, + { + "appid": 3618840, + "normalized_name": "tower up" + }, + { + "appid": 3618880, + "normalized_name": "desktop fishes" + }, + { + "appid": 3618890, + "normalized_name": "night shift at the museum" + }, + { + "appid": 3618900, + "normalized_name": "momento pole" + }, + { + "appid": 3618910, + "normalized_name": "another level" + }, + { + "appid": 3618930, + "normalized_name": "a kingdom together" + }, + { + "appid": 3619230, + "normalized_name": "springbound" + }, + { + "appid": 3619240, + "normalized_name": "midnight arcade" + }, + { + "appid": 3619270, + "normalized_name": "super people" + }, + { + "appid": 3619280, + "normalized_name": "skin tailor" + }, + { + "appid": 3619290, + "normalized_name": "exit panic" + }, + { + "appid": 3619300, + "normalized_name": "tonin 兎忍" + }, + { + "appid": 3619340, + "normalized_name": "wlright" + }, + { + "appid": 3619350, + "normalized_name": "anderkant 4" + }, + { + "appid": 3619360, + "normalized_name": "万圣节之眼halloween eye" + }, + { + "appid": 3619370, + "normalized_name": "365天:gap year!" + }, + { + "appid": 3619380, + "normalized_name": "busy cowboy" + }, + { + "appid": 3619420, + "normalized_name": "lab eject" + }, + { + "appid": 3619460, + "normalized_name": "异世笔录" + }, + { + "appid": 3619490, + "normalized_name": "trickshotterz" + }, + { + "appid": 3619520, + "normalized_name": "蓝色公馆" + }, + { + "appid": 3619580, + "normalized_name": "the apocalypse" + }, + { + "appid": 3619600, + "normalized_name": "indulgentia nsfw anime puzzle game" + }, + { + "appid": 3619730, + "normalized_name": "sweet age" + }, + { + "appid": 3619780, + "normalized_name": "守卫地下城" + }, + { + "appid": 3619950, + "normalized_name": "the room in a glass box" + }, + { + "appid": 3620020, + "normalized_name": "大唐斩妖诀" + }, + { + "appid": 3620040, + "normalized_name": "fly cowboy online" + }, + { + "appid": 3620060, + "normalized_name": "hidden legacy dark heirloom collector's" + }, + { + "appid": 3620070, + "normalized_name": "hidden portals eternal balance collector's" + }, + { + "appid": 3620080, + "normalized_name": "dimension ascent" + }, + { + "appid": 3620120, + "normalized_name": "find cats 4 女神与猫" + }, + { + "appid": 3620180, + "normalized_name": "nietzsche's shadow" + }, + { + "appid": 3620260, + "normalized_name": "whispering stacks" + }, + { + "appid": 3620350, + "normalized_name": "two realms whispers from the rift" + }, + { + "appid": 3620360, + "normalized_name": "the dark story starving child" + }, + { + "appid": 3620440, + "normalized_name": "bagelball" + }, + { + "appid": 3620470, + "normalized_name": "pirate game!" + }, + { + "appid": 3620480, + "normalized_name": "pal♡world! ~more than just pals~" + }, + { + "appid": 3620510, + "normalized_name": "simarket cloth store simulator" + }, + { + "appid": 3620520, + "normalized_name": "in silico" + }, + { + "appid": 3620570, + "normalized_name": "hentai dates" + }, + { + "appid": 3620600, + "normalized_name": "quattroman" + }, + { + "appid": 3620610, + "normalized_name": "primal survival" + }, + { + "appid": 3620670, + "normalized_name": "interactive sex daddy twins incest" + }, + { + "appid": 3620680, + "normalized_name": "catastrophic inversion" + }, + { + "appid": 3620690, + "normalized_name": "never let go buddy" + }, + { + "appid": 3620720, + "normalized_name": "buckle up!" + }, + { + "appid": 3620730, + "normalized_name": "trash dude hustle" + }, + { + "appid": 3620740, + "normalized_name": "纸鸢(paperkite threads of distant love)" + }, + { + "appid": 3620760, + "normalized_name": "at the bottom" + }, + { + "appid": 3620780, + "normalized_name": "ai deal rays" + }, + { + "appid": 3620810, + "normalized_name": "ムシャムシャメモリアル" + }, + { + "appid": 3620830, + "normalized_name": "a few days with olivia" + }, + { + "appid": 3620860, + "normalized_name": "kung fu addiction" + }, + { + "appid": 3620950, + "normalized_name": "out of gear" + }, + { + "appid": 3621000, + "normalized_name": "hydroplant tycoon" + }, + { + "appid": 3621010, + "normalized_name": "infinite hole simulator" + }, + { + "appid": 3621020, + "normalized_name": "off world prospecting" + }, + { + "appid": 3621040, + "normalized_name": "adventures & quests the black crystal" + }, + { + "appid": 3621150, + "normalized_name": "gunman drift" + }, + { + "appid": 3621170, + "normalized_name": "witch's brew love and lattes" + }, + { + "appid": 3621190, + "normalized_name": "spellbound malachite coven" + }, + { + "appid": 3621200, + "normalized_name": "pimbolas" + }, + { + "appid": 3621210, + "normalized_name": "museum magnate" + }, + { + "appid": 3621240, + "normalized_name": "paranormal realtor" + }, + { + "appid": 3621260, + "normalized_name": "house of terror" + }, + { + "appid": 3621290, + "normalized_name": "project r2" + }, + { + "appid": 3621320, + "normalized_name": "oreflux" + }, + { + "appid": 3621330, + "normalized_name": "pro jank footy" + }, + { + "appid": 3621350, + "normalized_name": "apprentice of darkness" + }, + { + "appid": 3621370, + "normalized_name": "parsec express" + }, + { + "appid": 3621400, + "normalized_name": "impossible moto sim" + }, + { + "appid": 3621410, + "normalized_name": "the expedition" + }, + { + "appid": 3621440, + "normalized_name": "cut it!" + }, + { + "appid": 3621450, + "normalized_name": "the lullaby weaver" + }, + { + "appid": 3621510, + "normalized_name": "burger rush simulator" + }, + { + "appid": 3621560, + "normalized_name": "indianops" + }, + { + "appid": 3621600, + "normalized_name": "failed falling" + }, + { + "appid": 3621660, + "normalized_name": "shape brawl" + }, + { + "appid": 3621680, + "normalized_name": "cosmic tails" + }, + { + "appid": 3621700, + "normalized_name": "try to drive" + }, + { + "appid": 3621760, + "normalized_name": "miki the creative roomate" + }, + { + "appid": 3621840, + "normalized_name": "my goth girl" + }, + { + "appid": 3621860, + "normalized_name": "rain;check" + }, + { + "appid": 3621920, + "normalized_name": "top notch" + }, + { + "appid": 3621930, + "normalized_name": "unsent" + }, + { + "appid": 3621950, + "normalized_name": "shattered nightmare's" + }, + { + "appid": 3621990, + "normalized_name": "the cameraman" + }, + { + "appid": 3622010, + "normalized_name": "putt down" + }, + { + "appid": 3622090, + "normalized_name": "moonshot" + }, + { + "appid": 3622180, + "normalized_name": "coincremental" + }, + { + "appid": 3622250, + "normalized_name": "one hit slayer! swordog" + }, + { + "appid": 3622260, + "normalized_name": "april grove" + }, + { + "appid": 3622290, + "normalized_name": "逃离狂热的追求者 | escape from kiss" + }, + { + "appid": 3622330, + "normalized_name": "我的ai老婆" + }, + { + "appid": 3622370, + "normalized_name": "八仙:天命杀局" + }, + { + "appid": 3622380, + "normalized_name": "vr prison showdown:rookie guard rumble" + }, + { + "appid": 3622420, + "normalized_name": "jackroid" + }, + { + "appid": 3622450, + "normalized_name": "sea blindness" + }, + { + "appid": 3622480, + "normalized_name": "weaponeers" + }, + { + "appid": 3622490, + "normalized_name": "rebirth which is my toilet" + }, + { + "appid": 3622510, + "normalized_name": "booklet's big story" + }, + { + "appid": 3622570, + "normalized_name": "sorter (early access)" + }, + { + "appid": 3622650, + "normalized_name": "战法纪元" + }, + { + "appid": 3622660, + "normalized_name": "paw to talk" + }, + { + "appid": 3622670, + "normalized_name": "飘渺之路 path to the void" + }, + { + "appid": 3622690, + "normalized_name": "point of collapse" + }, + { + "appid": 3622730, + "normalized_name": "the adventure of amethyst knight / 紫水晶骑士物语" + }, + { + "appid": 3622800, + "normalized_name": "zcurse" + }, + { + "appid": 3622810, + "normalized_name": "the drunken beard" + }, + { + "appid": 3623000, + "normalized_name": "罐装远征军" + }, + { + "appid": 3623050, + "normalized_name": "ending the happy route" + }, + { + "appid": 3623080, + "normalized_name": "days with marie my love motion" + }, + { + "appid": 3623090, + "normalized_name": "deer" + }, + { + "appid": 3623110, + "normalized_name": "ping pong up" + }, + { + "appid": 3623120, + "normalized_name": "silktrails cats in the grove" + }, + { + "appid": 3623140, + "normalized_name": "anomaly bus" + }, + { + "appid": 3623190, + "normalized_name": "argonauts agency gorgon medusa" + }, + { + "appid": 3623200, + "normalized_name": "upalu mundi" + }, + { + "appid": 3623230, + "normalized_name": "midnight souvenirs" + }, + { + "appid": 3623270, + "normalized_name": "the stairwell" + }, + { + "appid": 3623280, + "normalized_name": "vampirates" + }, + { + "appid": 3623330, + "normalized_name": "parking together!" + }, + { + "appid": 3623370, + "normalized_name": "stand by me otome isekai rpg" + }, + { + "appid": 3623380, + "normalized_name": "toilet toss" + }, + { + "appid": 3623390, + "normalized_name": "we were racers first drive" + }, + { + "appid": 3623400, + "normalized_name": "orbs orbs orbs" + }, + { + "appid": 3623410, + "normalized_name": "region55" + }, + { + "appid": 3623430, + "normalized_name": "magic of lust" + }, + { + "appid": 3623440, + "normalized_name": "mysterious treasure" + }, + { + "appid": 3623470, + "normalized_name": "project ignition" + }, + { + "appid": 3623480, + "normalized_name": "flipto" + }, + { + "appid": 3623490, + "normalized_name": "one more button" + }, + { + "appid": 3623500, + "normalized_name": "zombie graveyard simulator prologue" + }, + { + "appid": 3623550, + "normalized_name": "detective club gallery of shadows collector's" + }, + { + "appid": 3623590, + "normalized_name": "the 5th door" + }, + { + "appid": 3623600, + "normalized_name": "evergrow shards of tomorrow" + }, + { + "appid": 3623630, + "normalized_name": "code 9" + }, + { + "appid": 3623660, + "normalized_name": "palwar" + }, + { + "appid": 3623670, + "normalized_name": "i see me" + }, + { + "appid": 3623700, + "normalized_name": "gorepunk" + }, + { + "appid": 3623730, + "normalized_name": "beautiful girl" + }, + { + "appid": 3623790, + "normalized_name": "dreamrealms resurgence" + }, + { + "appid": 3623890, + "normalized_name": "launch dude" + }, + { + "appid": 3623910, + "normalized_name": "the runics" + }, + { + "appid": 3624020, + "normalized_name": "bullet yeeters" + }, + { + "appid": 3624050, + "normalized_name": "jolly land adventure" + }, + { + "appid": 3624090, + "normalized_name": "patient zero pandemiс simulator" + }, + { + "appid": 3624120, + "normalized_name": "samurai's odyssey" + }, + { + "appid": 3624150, + "normalized_name": "snakevib" + }, + { + "appid": 3624170, + "normalized_name": "everything is fine" + }, + { + "appid": 3624300, + "normalized_name": "negative space" + }, + { + "appid": 3624330, + "normalized_name": "medetashi medetashi" + }, + { + "appid": 3624370, + "normalized_name": "bullet force" + }, + { + "appid": 3624430, + "normalized_name": "pandemonium merge!" + }, + { + "appid": 3624520, + "normalized_name": "dark erosion endless sieg" + }, + { + "appid": 3624530, + "normalized_name": "brain workout – 15 puzzles for memory math & logic | iq test games" + }, + { + "appid": 3624570, + "normalized_name": "mortal advocate" + }, + { + "appid": 3624580, + "normalized_name": "the adventures of candle boy" + }, + { + "appid": 3624590, + "normalized_name": "yasuke hentai simulator" + }, + { + "appid": 3624600, + "normalized_name": "mdc" + }, + { + "appid": 3624610, + "normalized_name": "hazmob fps online shooter" + }, + { + "appid": 3624640, + "normalized_name": "stellar howl galactic repairs" + }, + { + "appid": 3624750, + "normalized_name": "天道轮回:我的修仙梦" + }, + { + "appid": 3624790, + "normalized_name": "letter lost" + }, + { + "appid": 3624800, + "normalized_name": "momenta" + }, + { + "appid": 3624840, + "normalized_name": "lady dracula" + }, + { + "appid": 3624860, + "normalized_name": "kuafu chases the sun" + }, + { + "appid": 3624880, + "normalized_name": "lone voyage" + }, + { + "appid": 3625110, + "normalized_name": "惡魔與貓娘" + }, + { + "appid": 3625190, + "normalized_name": "my island airport" + }, + { + "appid": 3625210, + "normalized_name": "摸鱼小镇 loafing town" + }, + { + "appid": 3625220, + "normalized_name": "wild hunter vr" + }, + { + "appid": 3625230, + "normalized_name": "bloomcraft" + }, + { + "appid": 3625280, + "normalized_name": "alive" + }, + { + "appid": 3625340, + "normalized_name": "mage tower massacre" + }, + { + "appid": 3625350, + "normalized_name": "re.dive wonderland" + }, + { + "appid": 3625360, + "normalized_name": "framed fear" + }, + { + "appid": 3625380, + "normalized_name": "おかゆにゅ~~む!~okayunyumu!~" + }, + { + "appid": 3625390, + "normalized_name": "polar star" + }, + { + "appid": 3625420, + "normalized_name": "moth" + }, + { + "appid": 3625530, + "normalized_name": "falling thingies" + }, + { + "appid": 3625540, + "normalized_name": "outer gas" + }, + { + "appid": 3625550, + "normalized_name": "manicos haunted hotel" + }, + { + "appid": 3625560, + "normalized_name": "sex adventures naughty sisters episode 8" + }, + { + "appid": 3625570, + "normalized_name": "upsidedownsky" + }, + { + "appid": 3625600, + "normalized_name": "你是情圣 the magnificent scoundrels" + }, + { + "appid": 3625610, + "normalized_name": "futanari affairs 🍆" + }, + { + "appid": 3625620, + "normalized_name": "casual cruise" + }, + { + "appid": 3625660, + "normalized_name": "a few days with zoey" + }, + { + "appid": 3625740, + "normalized_name": "space sex lab 🚀" + }, + { + "appid": 3625820, + "normalized_name": "hollowroot" + }, + { + "appid": 3625830, + "normalized_name": "evofoot 25" + }, + { + "appid": 3625870, + "normalized_name": "dungeon drops" + }, + { + "appid": 3625890, + "normalized_name": "squaser 7" + }, + { + "appid": 3625960, + "normalized_name": "unreturning" + }, + { + "appid": 3625970, + "normalized_name": "sex viking island" + }, + { + "appid": 3625990, + "normalized_name": "gougoul downfall" + }, + { + "appid": 3626020, + "normalized_name": "despicable boss" + }, + { + "appid": 3626040, + "normalized_name": "猫猫永不空军" + }, + { + "appid": 3626090, + "normalized_name": "blitzkrieg express" + }, + { + "appid": 3626100, + "normalized_name": "exit" + }, + { + "appid": 3626160, + "normalized_name": "ラムネのスクエアダンジョン" + }, + { + "appid": 3626280, + "normalized_name": "night will prevail" + }, + { + "appid": 3626300, + "normalized_name": "parable academy" + }, + { + "appid": 3626310, + "normalized_name": "hakoniwa defense" + }, + { + "appid": 3626340, + "normalized_name": "moon break" + }, + { + "appid": 3626460, + "normalized_name": "to the moon" + }, + { + "appid": 3626470, + "normalized_name": "sky sorcerer" + }, + { + "appid": 3626480, + "normalized_name": "amaz'd" + }, + { + "appid": 3626490, + "normalized_name": "starship guardian" + }, + { + "appid": 3626600, + "normalized_name": "hentai ariya" + }, + { + "appid": 3626610, + "normalized_name": "hentai mira" + }, + { + "appid": 3626730, + "normalized_name": "spectre vigil" + }, + { + "appid": 3626750, + "normalized_name": "stray girl 🔞" + }, + { + "appid": 3626800, + "normalized_name": "barro f25" + }, + { + "appid": 3626810, + "normalized_name": "merge pineapple" + }, + { + "appid": 3626860, + "normalized_name": "protect gloobi" + }, + { + "appid": 3626890, + "normalized_name": "upstream" + }, + { + "appid": 3626930, + "normalized_name": "galleons of fortune pioneers" + }, + { + "appid": 3626960, + "normalized_name": "part of him remains" + }, + { + "appid": 3627000, + "normalized_name": "gnom" + }, + { + "appid": 3627030, + "normalized_name": "letter from heart antique shop" + }, + { + "appid": 3627200, + "normalized_name": "dungemon" + }, + { + "appid": 3627210, + "normalized_name": "mansion of a million monsters!" + }, + { + "appid": 3627240, + "normalized_name": "neon cipher" + }, + { + "appid": 3627270, + "normalized_name": "yokumo night parade" + }, + { + "appid": 3627280, + "normalized_name": "get it up!" + }, + { + "appid": 3627290, + "normalized_name": "botnet of ares" + }, + { + "appid": 3627340, + "normalized_name": "sayonalaika" + }, + { + "appid": 3627360, + "normalized_name": "this is my house" + }, + { + "appid": 3627380, + "normalized_name": "dragons of 1066" + }, + { + "appid": 3627450, + "normalized_name": "strike back" + }, + { + "appid": 3627490, + "normalized_name": "polariball" + }, + { + "appid": 3627510, + "normalized_name": "geo blaster" + }, + { + "appid": 3627520, + "normalized_name": "hardpoint" + }, + { + "appid": 3627580, + "normalized_name": "necromance" + }, + { + "appid": 3627590, + "normalized_name": "exilus viper" + }, + { + "appid": 3627640, + "normalized_name": "greed" + }, + { + "appid": 3627650, + "normalized_name": "酥酥车" + }, + { + "appid": 3627670, + "normalized_name": "galaxy empires online" + }, + { + "appid": 3627680, + "normalized_name": "摸鱼公司:职场生存" + }, + { + "appid": 3627690, + "normalized_name": "ramen crisis" + }, + { + "appid": 3627720, + "normalized_name": "people and zombies" + }, + { + "appid": 3627770, + "normalized_name": "little crossroads" + }, + { + "appid": 3627790, + "normalized_name": "纸嫁衣7卿不负" + }, + { + "appid": 3627800, + "normalized_name": "adventurers guild receptionist" + }, + { + "appid": 3627820, + "normalized_name": "jammer dash" + }, + { + "appid": 3627880, + "normalized_name": "时渊:溯光之行" + }, + { + "appid": 3627900, + "normalized_name": "zero gravity heroes" + }, + { + "appid": 3627920, + "normalized_name": "the mirror's edge 鏡界" + }, + { + "appid": 3627940, + "normalized_name": "let catch me" + }, + { + "appid": 3627950, + "normalized_name": "siberian experiment" + }, + { + "appid": 3628000, + "normalized_name": "man without clothes runner" + }, + { + "appid": 3628010, + "normalized_name": "hired stars" + }, + { + "appid": 3628020, + "normalized_name": "third person shooter and platform jumping and level based adventure" + }, + { + "appid": 3628050, + "normalized_name": "tamara" + }, + { + "appid": 3628060, + "normalized_name": "the fortress of dr. radiaki fancy" + }, + { + "appid": 3628070, + "normalized_name": "x飞行俱乐部:fpv飞行模拟器" + }, + { + "appid": 3628120, + "normalized_name": "•zenku •" + }, + { + "appid": 3628200, + "normalized_name": "neko no sentouki the greatest fighter" + }, + { + "appid": 3628360, + "normalized_name": "backrooms no way out" + }, + { + "appid": 3628370, + "normalized_name": "核金风暴(gigaslave)" + }, + { + "appid": 3628400, + "normalized_name": "zombie ship" + }, + { + "appid": 3628410, + "normalized_name": "queen's vanguard" + }, + { + "appid": 3628440, + "normalized_name": "艾比斯物语" + }, + { + "appid": 3628520, + "normalized_name": "battleboat" + }, + { + "appid": 3628530, + "normalized_name": "12.12.25" + }, + { + "appid": 3628560, + "normalized_name": "lewd beach 💦" + }, + { + "appid": 3628580, + "normalized_name": "digging the forgotten cave" + }, + { + "appid": 3628610, + "normalized_name": "gaslighters" + }, + { + "appid": 3628620, + "normalized_name": "spherecore survival" + }, + { + "appid": 3628630, + "normalized_name": "parking lot simulator car collector" + }, + { + "appid": 3628660, + "normalized_name": "small farm" + }, + { + "appid": 3628670, + "normalized_name": "chronicles of immortality in the cloud abyss" + }, + { + "appid": 3628790, + "normalized_name": "kabonk!" + }, + { + "appid": 3628840, + "normalized_name": "ember fall" + }, + { + "appid": 3628890, + "normalized_name": "forklift certified stacked and loaded" + }, + { + "appid": 3628910, + "normalized_name": "主平面" + }, + { + "appid": 3628920, + "normalized_name": "market street tycoon simulator" + }, + { + "appid": 3628960, + "normalized_name": "miscrits world of creatures" + }, + { + "appid": 3629050, + "normalized_name": "punch to glory" + }, + { + "appid": 3629080, + "normalized_name": "sizzle & stack" + }, + { + "appid": 3629120, + "normalized_name": "swords and suspicion" + }, + { + "appid": 3629160, + "normalized_name": "手机时代 mobile era" + }, + { + "appid": 3629180, + "normalized_name": "a night with brazilian waifu" + }, + { + "appid": 3629190, + "normalized_name": "the mystery of oak island" + }, + { + "appid": 3629200, + "normalized_name": "synthesis of corruption" + }, + { + "appid": 3629210, + "normalized_name": "мемасики" + }, + { + "appid": 3629280, + "normalized_name": "lone survivors" + }, + { + "appid": 3629300, + "normalized_name": "soul cauldron" + }, + { + "appid": 3629320, + "normalized_name": "astrocraft" + }, + { + "appid": 3629360, + "normalized_name": "sanity loops" + }, + { + "appid": 3629370, + "normalized_name": "vibrant dash" + }, + { + "appid": 3629430, + "normalized_name": "dreadmoor" + }, + { + "appid": 3629460, + "normalized_name": "idle crypto mining" + }, + { + "appid": 3629470, + "normalized_name": "rockstars!" + }, + { + "appid": 3629480, + "normalized_name": "the grandfather" + }, + { + "appid": 3629490, + "normalized_name": "prototype juan a tale of two mundos" + }, + { + "appid": 3629550, + "normalized_name": "berenice videogame" + }, + { + "appid": 3629560, + "normalized_name": "hentai clicker cathy is streaming" + }, + { + "appid": 3629570, + "normalized_name": "red core division" + }, + { + "appid": 3629580, + "normalized_name": "crisálida" + }, + { + "appid": 3629620, + "normalized_name": "host mortem" + }, + { + "appid": 3629750, + "normalized_name": "hentai kai" + }, + { + "appid": 3629810, + "normalized_name": "nipi" + }, + { + "appid": 3629840, + "normalized_name": "blast rush ls" + }, + { + "appid": 3629860, + "normalized_name": "america against ants" + }, + { + "appid": 3629880, + "normalized_name": "eye of khaos" + }, + { + "appid": 3629970, + "normalized_name": "edgefield" + }, + { + "appid": 3629990, + "normalized_name": "inkventure" + }, + { + "appid": 3630010, + "normalized_name": "cooprooms" + }, + { + "appid": 3630060, + "normalized_name": "knights of milfgaard" + }, + { + "appid": 3630100, + "normalized_name": "リンネテンジョウ" + }, + { + "appid": 3630120, + "normalized_name": "nexistoreum" + }, + { + "appid": 3630160, + "normalized_name": "kill wilbo" + }, + { + "appid": 3630200, + "normalized_name": "妖恋西游" + }, + { + "appid": 3630230, + "normalized_name": "conservation concentration" + }, + { + "appid": 3630270, + "normalized_name": "sneak a snap" + }, + { + "appid": 3630280, + "normalized_name": "universal car ball" + }, + { + "appid": 3630290, + "normalized_name": "close encounter p.i." + }, + { + "appid": 3630300, + "normalized_name": "soly brave little explorer" + }, + { + "appid": 3630310, + "normalized_name": "boom buddy" + }, + { + "appid": 3630320, + "normalized_name": "auto washer life" + }, + { + "appid": 3630330, + "normalized_name": "polterquest" + }, + { + "appid": 3630350, + "normalized_name": "shadow of the cursed realm" + }, + { + "appid": 3630380, + "normalized_name": "fruit wars" + }, + { + "appid": 3630410, + "normalized_name": "little witch survivors" + }, + { + "appid": 3630600, + "normalized_name": "from by" + }, + { + "appid": 3630620, + "normalized_name": "legend of hiraq" + }, + { + "appid": 3630640, + "normalized_name": "limb driver" + }, + { + "appid": 3630680, + "normalized_name": "galaxy critter co." + }, + { + "appid": 3630760, + "normalized_name": "bloodban the undeadseeker" + }, + { + "appid": 3630790, + "normalized_name": "cosmic colonists" + }, + { + "appid": 3630800, + "normalized_name": "payasos y balazos" + }, + { + "appid": 3630870, + "normalized_name": "fart king" + }, + { + "appid": 3630910, + "normalized_name": "love battle spirit" + }, + { + "appid": 3630930, + "normalized_name": "art together" + }, + { + "appid": 3630950, + "normalized_name": "bearskull 2" + }, + { + "appid": 3630970, + "normalized_name": "puzzle moments" + }, + { + "appid": 3630980, + "normalized_name": "the island of thugs" + }, + { + "appid": 3631020, + "normalized_name": "the elementalist typing" + }, + { + "appid": 3631040, + "normalized_name": "wiz herd" + }, + { + "appid": 3631050, + "normalized_name": "end the endless" + }, + { + "appid": 3631080, + "normalized_name": "maze quest vr" + }, + { + "appid": 3631090, + "normalized_name": "the still" + }, + { + "appid": 3631100, + "normalized_name": "the platform" + }, + { + "appid": 3631130, + "normalized_name": "pure shooter" + }, + { + "appid": 3631170, + "normalized_name": "shyma and the lesbian demon lord" + }, + { + "appid": 3631190, + "normalized_name": "the fisherman" + }, + { + "appid": 3631200, + "normalized_name": "honorless!" + }, + { + "appid": 3631230, + "normalized_name": "castleminer z resurrection" + }, + { + "appid": 3631250, + "normalized_name": "nightlings" + }, + { + "appid": 3631260, + "normalized_name": "the sunken city" + }, + { + "appid": 3631350, + "normalized_name": "divine intervention quran miracles" + }, + { + "appid": 3631440, + "normalized_name": "infected towns" + }, + { + "appid": 3631460, + "normalized_name": "ice cream you scream" + }, + { + "appid": 3631500, + "normalized_name": "killer karnival" + }, + { + "appid": 3631560, + "normalized_name": "未择之路" + }, + { + "appid": 3631580, + "normalized_name": "super crash" + }, + { + "appid": 3631620, + "normalized_name": "invention 8" + }, + { + "appid": 3631670, + "normalized_name": "ま~する 序章" + }, + { + "appid": 3631710, + "normalized_name": "the crimson contract" + }, + { + "appid": 3631750, + "normalized_name": "the hidden mystery" + }, + { + "appid": 3631830, + "normalized_name": "dice to pay" + }, + { + "appid": 3631850, + "normalized_name": "kyoto anomaly" + }, + { + "appid": 3631890, + "normalized_name": "此间相" + }, + { + "appid": 3631920, + "normalized_name": "matters matter" + }, + { + "appid": 3631940, + "normalized_name": "open sea simulator" + }, + { + "appid": 3631970, + "normalized_name": "game giant" + }, + { + "appid": 3632010, + "normalized_name": "//signal." + }, + { + "appid": 3632040, + "normalized_name": "sex prison block 69" + }, + { + "appid": 3632070, + "normalized_name": "超自然任务 unnatural force" + }, + { + "appid": 3632100, + "normalized_name": "well of darkness" + }, + { + "appid": 3632150, + "normalized_name": "nightguard schoolhunt" + }, + { + "appid": 3632200, + "normalized_name": "porn star fake interview" + }, + { + "appid": 3632240, + "normalized_name": "hivecraft" + }, + { + "appid": 3632280, + "normalized_name": "枫叶之舞" + }, + { + "appid": 3632340, + "normalized_name": "hell descent" + }, + { + "appid": 3632360, + "normalized_name": "the haunting of the chea wilson family" + }, + { + "appid": 3632370, + "normalized_name": "yoram question arc" + }, + { + "appid": 3632420, + "normalized_name": "the long tale" + }, + { + "appid": 3632430, + "normalized_name": "arcane heat" + }, + { + "appid": 3632460, + "normalized_name": "typingvania" + }, + { + "appid": 3632480, + "normalized_name": "blackvein" + }, + { + "appid": 3632490, + "normalized_name": "11 doors escape from prison" + }, + { + "appid": 3632510, + "normalized_name": "when the crow sings" + }, + { + "appid": 3632570, + "normalized_name": "gut eater" + }, + { + "appid": 3632660, + "normalized_name": "echoes of the wild" + }, + { + "appid": 3632670, + "normalized_name": "mechaconda" + }, + { + "appid": 3632680, + "normalized_name": "hexpunk" + }, + { + "appid": 3632730, + "normalized_name": "grocer craze" + }, + { + "appid": 3632740, + "normalized_name": "the last screening" + }, + { + "appid": 3632770, + "normalized_name": "computronium" + }, + { + "appid": 3632780, + "normalized_name": "shards reunited kintsugi" + }, + { + "appid": 3632810, + "normalized_name": "life of tabayama" + }, + { + "appid": 3632820, + "normalized_name": "daybreak" + }, + { + "appid": 3632910, + "normalized_name": "gumshoe detective agency the first case" + }, + { + "appid": 3632980, + "normalized_name": "insanity within" + }, + { + "appid": 3633000, + "normalized_name": "defend the dead" + }, + { + "appid": 3633040, + "normalized_name": "grocery run" + }, + { + "appid": 3633060, + "normalized_name": "striker hero" + }, + { + "appid": 3633120, + "normalized_name": "god's blessing on that desire world!" + }, + { + "appid": 3633180, + "normalized_name": "undead horde dark conqueror" + }, + { + "appid": 3633220, + "normalized_name": "aletheia prophecy of perseus" + }, + { + "appid": 3633310, + "normalized_name": "射不中就死?只能瞄准病娇美少女心防的弹珠射姬游戏 !" + }, + { + "appid": 3633320, + "normalized_name": "逐殃" + }, + { + "appid": 3633340, + "normalized_name": "summercamp" + }, + { + "appid": 3633390, + "normalized_name": "deck collector" + }, + { + "appid": 3633400, + "normalized_name": "happy surprise garden" + }, + { + "appid": 3633410, + "normalized_name": "g modeアーカイブス+ armored core mobile mission" + }, + { + "appid": 3633420, + "normalized_name": "my tiny room" + }, + { + "appid": 3633430, + "normalized_name": "the genius hamster" + }, + { + "appid": 3633450, + "normalized_name": "fingerdance" + }, + { + "appid": 3633480, + "normalized_name": "instantale" + }, + { + "appid": 3633490, + "normalized_name": "sweet sport" + }, + { + "appid": 3633500, + "normalized_name": "mystic cleaver" + }, + { + "appid": 3633530, + "normalized_name": "void stalkers" + }, + { + "appid": 3633540, + "normalized_name": "golden arrow" + }, + { + "appid": 3633560, + "normalized_name": "warfront command" + }, + { + "appid": 3633580, + "normalized_name": "mountain's memory" + }, + { + "appid": 3633600, + "normalized_name": "oh tennis" + }, + { + "appid": 3633720, + "normalized_name": "gemima" + }, + { + "appid": 3633730, + "normalized_name": "fuck fest" + }, + { + "appid": 3633760, + "normalized_name": "kaz" + }, + { + "appid": 3633790, + "normalized_name": "attack on inirea" + }, + { + "appid": 3633830, + "normalized_name": "iceburg" + }, + { + "appid": 3633840, + "normalized_name": "浊令" + }, + { + "appid": 3633880, + "normalized_name": "turbo liar rust & fast" + }, + { + "appid": 3633890, + "normalized_name": "nyip" + }, + { + "appid": 3633900, + "normalized_name": "princess of the medieval dark age vr" + }, + { + "appid": 3633910, + "normalized_name": "lady camara" + }, + { + "appid": 3633940, + "normalized_name": "microfisher" + }, + { + "appid": 3633990, + "normalized_name": "spellbinder" + }, + { + "appid": 3634010, + "normalized_name": "islantiles" + }, + { + "appid": 3634040, + "normalized_name": "mystic academy escape room vr" + }, + { + "appid": 3634090, + "normalized_name": "the first foreigner" + }, + { + "appid": 3634100, + "normalized_name": "药膳食疗大师" + }, + { + "appid": 3634210, + "normalized_name": "angry golf 2" + }, + { + "appid": 3634220, + "normalized_name": "don`t peek" + }, + { + "appid": 3634230, + "normalized_name": "stellar command" + }, + { + "appid": 3634270, + "normalized_name": "game store simulator" + }, + { + "appid": 3634280, + "normalized_name": "age of pirates" + }, + { + "appid": 3634300, + "normalized_name": "contagion protocol" + }, + { + "appid": 3634330, + "normalized_name": "income roads" + }, + { + "appid": 3634340, + "normalized_name": "吾皇万岁" + }, + { + "appid": 3634370, + "normalized_name": "sad virus" + }, + { + "appid": 3634400, + "normalized_name": "elara" + }, + { + "appid": 3634410, + "normalized_name": "the gas n’ grind" + }, + { + "appid": 3634420, + "normalized_name": "sword duel" + }, + { + "appid": 3634550, + "normalized_name": "ninja game" + }, + { + "appid": 3634700, + "normalized_name": "moonlit reaper" + }, + { + "appid": 3634710, + "normalized_name": "dwarrf a pinball roguelike" + }, + { + "appid": 3634720, + "normalized_name": "super yapori minigames" + }, + { + "appid": 3634760, + "normalized_name": "am i the asshole?" + }, + { + "appid": 3634770, + "normalized_name": "elf world adventure 6" + }, + { + "appid": 3634780, + "normalized_name": "elf world adventure 7" + }, + { + "appid": 3634800, + "normalized_name": "我的女孩 my girl" + }, + { + "appid": 3634810, + "normalized_name": "hero like" + }, + { + "appid": 3634870, + "normalized_name": "caverns and dryads" + }, + { + "appid": 3634880, + "normalized_name": "western death" + }, + { + "appid": 3634890, + "normalized_name": "greenlake fish tournament" + }, + { + "appid": 3634910, + "normalized_name": "shadow sprinter" + }, + { + "appid": 3634920, + "normalized_name": "bombardier squad" + }, + { + "appid": 3634950, + "normalized_name": "2 4d game" + }, + { + "appid": 3635020, + "normalized_name": "pay your crimes" + }, + { + "appid": 3635050, + "normalized_name": "hogtagon" + }, + { + "appid": 3635060, + "normalized_name": "1234 connect puzzle" + }, + { + "appid": 3635070, + "normalized_name": "cof" + }, + { + "appid": 3635080, + "normalized_name": "galactic plague 2000" + }, + { + "appid": 3635150, + "normalized_name": "civrise" + }, + { + "appid": 3635220, + "normalized_name": "zynga poker – texas holdem" + }, + { + "appid": 3635240, + "normalized_name": "saw counter" + }, + { + "appid": 3635280, + "normalized_name": "i offered you the crown" + }, + { + "appid": 3635290, + "normalized_name": "jovian drive" + }, + { + "appid": 3635310, + "normalized_name": "scp short story" + }, + { + "appid": 3635360, + "normalized_name": "i can't stop gooning and jorking to my virtual girlfriend" + }, + { + "appid": 3635380, + "normalized_name": "demonk" + }, + { + "appid": 3635450, + "normalized_name": "mini gears mayhem" + }, + { + "appid": 3635520, + "normalized_name": "helicopter simulator 2025 real flight pc/vr" + }, + { + "appid": 3635540, + "normalized_name": "spectral protocol" + }, + { + "appid": 3635630, + "normalized_name": "primordial fate" + }, + { + "appid": 3635700, + "normalized_name": "just snap" + }, + { + "appid": 3635720, + "normalized_name": "fizz flow factory management" + }, + { + "appid": 3635730, + "normalized_name": "i am a robot" + }, + { + "appid": 3635740, + "normalized_name": "subjectivation" + }, + { + "appid": 3635800, + "normalized_name": "jawless fishtank" + }, + { + "appid": 3635830, + "normalized_name": "richard" + }, + { + "appid": 3635850, + "normalized_name": "corcovado's night guard" + }, + { + "appid": 3635870, + "normalized_name": "dungeons & midlifer" + }, + { + "appid": 3635930, + "normalized_name": "cartoon bash" + }, + { + "appid": 3635960, + "normalized_name": "クマ吉&ニャン蔵の爆誕☆破壊神dx" + }, + { + "appid": 3635970, + "normalized_name": "chick" + }, + { + "appid": 3636000, + "normalized_name": "fortress frenzy" + }, + { + "appid": 3636080, + "normalized_name": "harvey's nine lives" + }, + { + "appid": 3636100, + "normalized_name": "sheep" + }, + { + "appid": 3636110, + "normalized_name": "不思議な世界の観光日記ⅱ~パクルワールドとセジカの逆襲~" + }, + { + "appid": 3636120, + "normalized_name": "vr hentai mma" + }, + { + "appid": 3636130, + "normalized_name": "dimensional gates" + }, + { + "appid": 3636140, + "normalized_name": "pyrosynchist" + }, + { + "appid": 3636180, + "normalized_name": "老夏的逆袭人生" + }, + { + "appid": 3636230, + "normalized_name": "death game hotel" + }, + { + "appid": 3636260, + "normalized_name": "suburbadrome" + }, + { + "appid": 3636320, + "normalized_name": "reposition defense" + }, + { + "appid": 3636360, + "normalized_name": "the abyss desire" + }, + { + "appid": 3636380, + "normalized_name": "美味缤果 yummy bingo" + }, + { + "appid": 3636440, + "normalized_name": "click to continue" + }, + { + "appid": 3636470, + "normalized_name": "dream abyss survivors" + }, + { + "appid": 3636490, + "normalized_name": "interactive sex futanari incest bdsm" + }, + { + "appid": 3636510, + "normalized_name": "into a hearth yonder" + }, + { + "appid": 3636530, + "normalized_name": "dungeon maiden survivor" + }, + { + "appid": 3636660, + "normalized_name": "mini racer mini 4wd" + }, + { + "appid": 3636680, + "normalized_name": "erascape escape duo" + }, + { + "appid": 3636690, + "normalized_name": "drift online" + }, + { + "appid": 3636730, + "normalized_name": "seedovia" + }, + { + "appid": 3636750, + "normalized_name": "deep dark" + }, + { + "appid": 3636760, + "normalized_name": "serverbound" + }, + { + "appid": 3636770, + "normalized_name": "servant of the lake" + }, + { + "appid": 3636840, + "normalized_name": "combat master battle to death" + }, + { + "appid": 3636900, + "normalized_name": "gaslamp cases 4 the arcane village" + }, + { + "appid": 3636930, + "normalized_name": "nautic xp" + }, + { + "appid": 3637020, + "normalized_name": "阿露子·馆" + }, + { + "appid": 3637040, + "normalized_name": "very unserious game" + }, + { + "appid": 3637060, + "normalized_name": "golden rails the heart of the state" + }, + { + "appid": 3637070, + "normalized_name": "星标3最终未来" + }, + { + "appid": 3637080, + "normalized_name": "runaway cheater" + }, + { + "appid": 3637170, + "normalized_name": "grandfather’s bakery" + }, + { + "appid": 3637250, + "normalized_name": "the well's blessing" + }, + { + "appid": 3637280, + "normalized_name": "back to the college" + }, + { + "appid": 3637330, + "normalized_name": "meow time machine van gogh" + }, + { + "appid": 3637340, + "normalized_name": "modavuj platform" + }, + { + "appid": 3637390, + "normalized_name": "三国城池" + }, + { + "appid": 3637410, + "normalized_name": "barkvr" + }, + { + "appid": 3637420, + "normalized_name": "plura" + }, + { + "appid": 3637440, + "normalized_name": "dreadpeak" + }, + { + "appid": 3637450, + "normalized_name": "the forgotten mine" + }, + { + "appid": 3637520, + "normalized_name": "slime store simulator" + }, + { + "appid": 3637580, + "normalized_name": "不上岸不恋爱" + }, + { + "appid": 3637610, + "normalized_name": "cross country case" + }, + { + "appid": 3637620, + "normalized_name": "azoth" + }, + { + "appid": 3637630, + "normalized_name": "camp keepalive endless summer" + }, + { + "appid": 3637650, + "normalized_name": "don't fall" + }, + { + "appid": 3637660, + "normalized_name": "techno2k" + }, + { + "appid": 3637690, + "normalized_name": "chokur" + }, + { + "appid": 3637730, + "normalized_name": "find all 8 the road to the maya" + }, + { + "appid": 3637770, + "normalized_name": "hate you" + }, + { + "appid": 3637800, + "normalized_name": "tales of the nightmares temporada 1" + }, + { + "appid": 3637820, + "normalized_name": "addy" + }, + { + "appid": 3637860, + "normalized_name": "shmooblin blaster" + }, + { + "appid": 3637890, + "normalized_name": "pomofish" + }, + { + "appid": 3637900, + "normalized_name": "shimmershoal a cozy island adventure" + }, + { + "appid": 3637940, + "normalized_name": "cats hate onions" + }, + { + "appid": 3637980, + "normalized_name": "achievement monster" + }, + { + "appid": 3638030, + "normalized_name": "rng jam" + }, + { + "appid": 3638040, + "normalized_name": "cakey's twisted bakery 2" + }, + { + "appid": 3638060, + "normalized_name": "twenty six" + }, + { + "appid": 3638070, + "normalized_name": "hermit computer" + }, + { + "appid": 3638180, + "normalized_name": "donuts for deer teeth" + }, + { + "appid": 3638240, + "normalized_name": "scionide" + }, + { + "appid": 3638280, + "normalized_name": "iteration" + }, + { + "appid": 3638310, + "normalized_name": "crystal cub" + }, + { + "appid": 3638400, + "normalized_name": "lightbulb" + }, + { + "appid": 3638410, + "normalized_name": "numbra" + }, + { + "appid": 3638420, + "normalized_name": "universal gravitation" + }, + { + "appid": 3638430, + "normalized_name": "cheer squad" + }, + { + "appid": 3638540, + "normalized_name": "あれぐろもるとをはこぶゲーム" + }, + { + "appid": 3638580, + "normalized_name": "realization" + }, + { + "appid": 3638590, + "normalized_name": "みすずの国" + }, + { + "appid": 3638630, + "normalized_name": "videoclub simulator" + }, + { + "appid": 3638650, + "normalized_name": "the internal" + }, + { + "appid": 3638680, + "normalized_name": "下一站青城" + }, + { + "appid": 3638730, + "normalized_name": "aircraft wars" + }, + { + "appid": 3638750, + "normalized_name": "seed's end" + }, + { + "appid": 3638820, + "normalized_name": "风月重书:金瓶梅" + }, + { + "appid": 3638830, + "normalized_name": "cryptid engine" + }, + { + "appid": 3638970, + "normalized_name": "wheretheskyis" + }, + { + "appid": 3638980, + "normalized_name": "fastmoba" + }, + { + "appid": 3639000, + "normalized_name": "the room stalker" + }, + { + "appid": 3639030, + "normalized_name": "node strike" + }, + { + "appid": 3639040, + "normalized_name": "hentai elf" + }, + { + "appid": 3639050, + "normalized_name": "picnic in the zone" + }, + { + "appid": 3639100, + "normalized_name": "no customers left" + }, + { + "appid": 3639160, + "normalized_name": "hentai world space" + }, + { + "appid": 3639190, + "normalized_name": "operation escape" + }, + { + "appid": 3639210, + "normalized_name": "one last toast" + }, + { + "appid": 3639220, + "normalized_name": "escape mall" + }, + { + "appid": 3639230, + "normalized_name": "i am busy digging a hole" + }, + { + "appid": 3639240, + "normalized_name": "we are busy digging a hole" + }, + { + "appid": 3639250, + "normalized_name": "midnight date unleashed" + }, + { + "appid": 3639270, + "normalized_name": "timeless greece immersive heritage adventures" + }, + { + "appid": 3639280, + "normalized_name": "mastermind" + }, + { + "appid": 3639310, + "normalized_name": "darkness in reflection" + }, + { + "appid": 3639380, + "normalized_name": "super movie tycoon" + }, + { + "appid": 3639420, + "normalized_name": "salted" + }, + { + "appid": 3639480, + "normalized_name": "choicer my hentai step sister" + }, + { + "appid": 3639490, + "normalized_name": "chancelot td merge wars" + }, + { + "appid": 3639500, + "normalized_name": "dead by backrooms anomaly" + }, + { + "appid": 3639550, + "normalized_name": "tankazooka" + }, + { + "appid": 3639710, + "normalized_name": "pondlings" + }, + { + "appid": 3639730, + "normalized_name": "omnos the endless journey" + }, + { + "appid": 3639750, + "normalized_name": "davis haunted house" + }, + { + "appid": 3639770, + "normalized_name": "into the fold nala junction" + }, + { + "appid": 3639790, + "normalized_name": "robicon" + }, + { + "appid": 3639840, + "normalized_name": "your side girls" + }, + { + "appid": 3639860, + "normalized_name": "super kappy island" + }, + { + "appid": 3639880, + "normalized_name": "blossoms of eternity" + }, + { + "appid": 3639960, + "normalized_name": "deep room" + }, + { + "appid": 3639970, + "normalized_name": "神椿學園新聞部(kamitsubaki academy newspaper club)" + }, + { + "appid": 3640040, + "normalized_name": "回煞录 | phantom reckoning" + }, + { + "appid": 3640120, + "normalized_name": "yesterday's crossroads" + }, + { + "appid": 3640130, + "normalized_name": "tenfold tales" + }, + { + "appid": 3640160, + "normalized_name": "spell beat" + }, + { + "appid": 3640170, + "normalized_name": "灯" + }, + { + "appid": 3640240, + "normalized_name": "inhouse" + }, + { + "appid": 3640290, + "normalized_name": "chthon" + }, + { + "appid": 3640330, + "normalized_name": "gumball in trick or treat land" + }, + { + "appid": 3640460, + "normalized_name": "smash fight" + }, + { + "appid": 3640530, + "normalized_name": "kuzo" + }, + { + "appid": 3640570, + "normalized_name": "country slime" + }, + { + "appid": 3640640, + "normalized_name": "struggle" + }, + { + "appid": 3640700, + "normalized_name": "mad rats" + }, + { + "appid": 3640720, + "normalized_name": "liar luna" + }, + { + "appid": 3640740, + "normalized_name": "anomaly protocol" + }, + { + "appid": 3640750, + "normalized_name": "this is interesting" + }, + { + "appid": 3640790, + "normalized_name": "pogs power of golden slammer" + }, + { + "appid": 3640820, + "normalized_name": "the revanchist" + }, + { + "appid": 3640840, + "normalized_name": "landlord" + }, + { + "appid": 3640850, + "normalized_name": "dragon detective a friend from the shadows" + }, + { + "appid": 3640860, + "normalized_name": "don't pop my bubble" + }, + { + "appid": 3640880, + "normalized_name": "tamabuki" + }, + { + "appid": 3640970, + "normalized_name": "feba gunship r" + }, + { + "appid": 3640990, + "normalized_name": "clash of melodies" + }, + { + "appid": 3641180, + "normalized_name": "nova jumper" + }, + { + "appid": 3641250, + "normalized_name": "fish³" + }, + { + "appid": 3641270, + "normalized_name": "deathtouch" + }, + { + "appid": 3641370, + "normalized_name": "color breaker" + }, + { + "appid": 3641420, + "normalized_name": "magecraft spellbuilding" + }, + { + "appid": 3641530, + "normalized_name": "sin retorno" + }, + { + "appid": 3641720, + "normalized_name": "hell's 8th avenue miori's mysterious notebook" + }, + { + "appid": 3641730, + "normalized_name": "alchemonium" + }, + { + "appid": 3641740, + "normalized_name": "room 808" + }, + { + "appid": 3641760, + "normalized_name": "marcella moon the phantom of harvest grove (demo)" + }, + { + "appid": 3641800, + "normalized_name": "murder at ironwood inn" + }, + { + "appid": 3641820, + "normalized_name": "此生小军" + }, + { + "appid": 3641830, + "normalized_name": "overnight interview" + }, + { + "appid": 3641840, + "normalized_name": "wartable democracy is optional" + }, + { + "appid": 3641850, + "normalized_name": "kingcoming" + }, + { + "appid": 3641880, + "normalized_name": "easytetris" + }, + { + "appid": 3641940, + "normalized_name": "the count of monte clicker" + }, + { + "appid": 3641980, + "normalized_name": "boogey's wicked game" + }, + { + "appid": 3641990, + "normalized_name": "麻将的远征" + }, + { + "appid": 3642110, + "normalized_name": "少女武士 葵纹(jk girl samurai)" + }, + { + "appid": 3642180, + "normalized_name": "cultivation magic world 3" + }, + { + "appid": 3642250, + "normalized_name": "convalescent codex an alchemist's story" + }, + { + "appid": 3642380, + "normalized_name": "toco" + }, + { + "appid": 3642390, + "normalized_name": "异常 彻底失控" + }, + { + "appid": 3642420, + "normalized_name": "codename twilight" + }, + { + "appid": 3642430, + "normalized_name": "rogue shapes" + }, + { + "appid": 3642500, + "normalized_name": "liv nordic survival" + }, + { + "appid": 3642530, + "normalized_name": "桌面猫猫钓鱼" + }, + { + "appid": 3642550, + "normalized_name": "noon stone" + }, + { + "appid": 3642560, + "normalized_name": "scp control error" + }, + { + "appid": 3642600, + "normalized_name": "forest" + }, + { + "appid": 3642650, + "normalized_name": "boom ascent" + }, + { + "appid": 3642660, + "normalized_name": "fear the timeloop prologue" + }, + { + "appid": 3642690, + "normalized_name": "searchandbomb" + }, + { + "appid": 3642720, + "normalized_name": "сыновья одина | sons of odin" + }, + { + "appid": 3642730, + "normalized_name": "backrooms exit from supermarket" + }, + { + "appid": 3642810, + "normalized_name": "hug me senpai!" + }, + { + "appid": 3642860, + "normalized_name": "vr naughty" + }, + { + "appid": 3642920, + "normalized_name": "fire shadows + people the last bullet" + }, + { + "appid": 3642960, + "normalized_name": "finelined!" + }, + { + "appid": 3642980, + "normalized_name": "spinner" + }, + { + "appid": 3642990, + "normalized_name": "totally spaced" + }, + { + "appid": 3643080, + "normalized_name": "rasna" + }, + { + "appid": 3643220, + "normalized_name": "roomgaze" + }, + { + "appid": 3643250, + "normalized_name": "chiklet's human products" + }, + { + "appid": 3643330, + "normalized_name": "car parkour x zozo" + }, + { + "appid": 3643430, + "normalized_name": "暗茧" + }, + { + "appid": 3643480, + "normalized_name": "byte of the dead" + }, + { + "appid": 3643510, + "normalized_name": "up's and wipes" + }, + { + "appid": 3643520, + "normalized_name": "少年名将" + }, + { + "appid": 3643540, + "normalized_name": "divergence beyond the singularity (part 2)" + }, + { + "appid": 3643560, + "normalized_name": "invasive species" + }, + { + "appid": 3643600, + "normalized_name": "providence" + }, + { + "appid": 3643610, + "normalized_name": "paper knight" + }, + { + "appid": 3643630, + "normalized_name": "anime fart simulator" + }, + { + "appid": 3643690, + "normalized_name": "project c.u.r.e. origins" + }, + { + "appid": 3643710, + "normalized_name": "hakoniwa code" + }, + { + "appid": 3643740, + "normalized_name": "heavy in the hand" + }, + { + "appid": 3643760, + "normalized_name": "resume rush" + }, + { + "appid": 3643800, + "normalized_name": "fear of horror" + }, + { + "appid": 3643830, + "normalized_name": "the horde won't stop" + }, + { + "appid": 3643900, + "normalized_name": "ragdoll boxing multiplayer" + }, + { + "appid": 3643910, + "normalized_name": "goo b3 r" + }, + { + "appid": 3643940, + "normalized_name": "heroin hero" + }, + { + "appid": 3643990, + "normalized_name": "balloon chess" + }, + { + "appid": 3644010, + "normalized_name": "zjawa bloodstained soul" + }, + { + "appid": 3644020, + "normalized_name": "cleaner company" + }, + { + "appid": 3644040, + "normalized_name": "goblins & gun runnin’" + }, + { + "appid": 3644050, + "normalized_name": "loot shop simulator" + }, + { + "appid": 3644060, + "normalized_name": "silvern moonrise" + }, + { + "appid": 3644070, + "normalized_name": "block sky rise" + }, + { + "appid": 3644100, + "normalized_name": "spooky monster" + }, + { + "appid": 3644110, + "normalized_name": "かえると剣鬼" + }, + { + "appid": 3644140, + "normalized_name": "planet chyton" + }, + { + "appid": 3644160, + "normalized_name": "monsters and me 🧟♂🤷♂" + }, + { + "appid": 3644170, + "normalized_name": "shirohebi and the tower of mercy" + }, + { + "appid": 3644210, + "normalized_name": "core of magic" + }, + { + "appid": 3644240, + "normalized_name": "minook and the brainbots collector card battle" + }, + { + "appid": 3644250, + "normalized_name": "testimony of shew depths of sheol" + }, + { + "appid": 3644490, + "normalized_name": "happy flappy" + }, + { + "appid": 3644520, + "normalized_name": "yogoe hunter" + }, + { + "appid": 3644530, + "normalized_name": "桌上足球 tablesoccer" + }, + { + "appid": 3644550, + "normalized_name": "万兽天工" + }, + { + "appid": 3644610, + "normalized_name": "my summer vacation" + }, + { + "appid": 3644630, + "normalized_name": "柘榴団地" + }, + { + "appid": 3644780, + "normalized_name": "fishing master kitty" + }, + { + "appid": 3644790, + "normalized_name": "way to hell" + }, + { + "appid": 3644800, + "normalized_name": "うみのもくず / depths debris" + }, + { + "appid": 3644870, + "normalized_name": "tower of wishes 4 shaka" + }, + { + "appid": 3644930, + "normalized_name": "meathook" + }, + { + "appid": 3644940, + "normalized_name": "hotel lust" + }, + { + "appid": 3644950, + "normalized_name": "黄泉漂流记" + }, + { + "appid": 3644970, + "normalized_name": "fading serenades" + }, + { + "appid": 3644980, + "normalized_name": "upgrade my heart" + }, + { + "appid": 3645040, + "normalized_name": "candy shop simulator sweet start" + }, + { + "appid": 3645070, + "normalized_name": "monkey king five elements survival" + }, + { + "appid": 3645090, + "normalized_name": "pick up your masks" + }, + { + "appid": 3645160, + "normalized_name": "frostpunk 1886" + }, + { + "appid": 3645170, + "normalized_name": "blood sword" + }, + { + "appid": 3645180, + "normalized_name": "vanakan" + }, + { + "appid": 3645220, + "normalized_name": "sempiternal" + }, + { + "appid": 3645270, + "normalized_name": "june" + }, + { + "appid": 3645280, + "normalized_name": "night of the living skurre" + }, + { + "appid": 3645300, + "normalized_name": "摸鱼模拟器 desktop fisher" + }, + { + "appid": 3645320, + "normalized_name": "succupie an erotic short story" + }, + { + "appid": 3645410, + "normalized_name": "midgardr" + }, + { + "appid": 3645430, + "normalized_name": "escape the monstalkers!" + }, + { + "appid": 3645460, + "normalized_name": "bridge race" + }, + { + "appid": 3645470, + "normalized_name": "sad virus winter" + }, + { + "appid": 3645490, + "normalized_name": "furniture fu" + }, + { + "appid": 3645520, + "normalized_name": "faith requiem" + }, + { + "appid": 3645530, + "normalized_name": "parasite echo" + }, + { + "appid": 3645600, + "normalized_name": "frog attack" + }, + { + "appid": 3645610, + "normalized_name": "cozy market simulator" + }, + { + "appid": 3645650, + "normalized_name": "athyra rock paper scissors" + }, + { + "appid": 3645660, + "normalized_name": "wildheart gourmet" + }, + { + "appid": 3645700, + "normalized_name": "what happened to lily?" + }, + { + "appid": 3645710, + "normalized_name": "my silly science summer in the past" + }, + { + "appid": 3645720, + "normalized_name": "breakfall nuclear winter" + }, + { + "appid": 3645770, + "normalized_name": "nico and the shadows" + }, + { + "appid": 3645780, + "normalized_name": "fishing the sky" + }, + { + "appid": 3645820, + "normalized_name": "the storyteller" + }, + { + "appid": 3645860, + "normalized_name": "annihilator" + }, + { + "appid": 3645880, + "normalized_name": "hungry lily & the fallen knight" + }, + { + "appid": 3645890, + "normalized_name": "gone fishing" + }, + { + "appid": 3646060, + "normalized_name": "what could go wrong?" + }, + { + "appid": 3646120, + "normalized_name": "levitation simulator 2" + }, + { + "appid": 3646130, + "normalized_name": "karol world breaker" + }, + { + "appid": 3646210, + "normalized_name": "junkyard fury 3" + }, + { + "appid": 3646230, + "normalized_name": "creaturebeads mint" + }, + { + "appid": 3646280, + "normalized_name": "world alone dreampools" + }, + { + "appid": 3646320, + "normalized_name": "persona shell" + }, + { + "appid": 3646380, + "normalized_name": "the last sanctum" + }, + { + "appid": 3646430, + "normalized_name": "箱子岛:推箱子游戏" + }, + { + "appid": 3646450, + "normalized_name": "cat golf" + }, + { + "appid": 3646460, + "normalized_name": "devil spire falls" + }, + { + "appid": 3646480, + "normalized_name": "creaturebeads lavender" + }, + { + "appid": 3646490, + "normalized_name": "sala de juegos 3d" + }, + { + "appid": 3646510, + "normalized_name": "aisha’s futa diaries" + }, + { + "appid": 3646530, + "normalized_name": "blunatic" + }, + { + "appid": 3646550, + "normalized_name": "zombie survivors inventory apocalypse" + }, + { + "appid": 3646560, + "normalized_name": "rainy day" + }, + { + "appid": 3646590, + "normalized_name": "burrows" + }, + { + "appid": 3646610, + "normalized_name": "hive stampers" + }, + { + "appid": 3646640, + "normalized_name": "legend of the platforms" + }, + { + "appid": 3646650, + "normalized_name": "make tracks great again" + }, + { + "appid": 3646660, + "normalized_name": "after the end" + }, + { + "appid": 3646670, + "normalized_name": "wiener coffee wake up action" + }, + { + "appid": 3646700, + "normalized_name": "battles for glory" + }, + { + "appid": 3646750, + "normalized_name": "tooned out duo dippin" + }, + { + "appid": 3646810, + "normalized_name": "mara" + }, + { + "appid": 3646830, + "normalized_name": "잃어버린 정신머리를 찾아서" + }, + { + "appid": 3646850, + "normalized_name": "the drone lord" + }, + { + "appid": 3646860, + "normalized_name": "koegasuru" + }, + { + "appid": 3646920, + "normalized_name": "乡下勇士" + }, + { + "appid": 3646930, + "normalized_name": "forsaken struggle" + }, + { + "appid": 3646940, + "normalized_name": "ten years of rain" + }, + { + "appid": 3646950, + "normalized_name": "灵能中介所 ghost hunting journal" + }, + { + "appid": 3647000, + "normalized_name": "judgement angel" + }, + { + "appid": 3647010, + "normalized_name": "drug schedule" + }, + { + "appid": 3647030, + "normalized_name": "show quiz" + }, + { + "appid": 3647040, + "normalized_name": "超级小狐狸 super fox" + }, + { + "appid": 3647050, + "normalized_name": "anime dream match girls 2" + }, + { + "appid": 3647070, + "normalized_name": "detachment crew" + }, + { + "appid": 3647120, + "normalized_name": "暗室绘光" + }, + { + "appid": 3647140, + "normalized_name": "food cart simulator" + }, + { + "appid": 3647190, + "normalized_name": "malignant survivors hellmarch" + }, + { + "appid": 3647220, + "normalized_name": "what lies frozen" + }, + { + "appid": 3647240, + "normalized_name": "fullsenders" + }, + { + "appid": 3647290, + "normalized_name": "eclipse of the lost" + }, + { + "appid": 3647380, + "normalized_name": "ascension gamebook" + }, + { + "appid": 3647420, + "normalized_name": "bar soviet" + }, + { + "appid": 3647450, + "normalized_name": "sortlandia" + }, + { + "appid": 3647480, + "normalized_name": "unknown host" + }, + { + "appid": 3647550, + "normalized_name": "coinflate!!" + }, + { + "appid": 3647600, + "normalized_name": "midnight riff" + }, + { + "appid": 3647620, + "normalized_name": "hope harrison" + }, + { + "appid": 3647630, + "normalized_name": "abyssal trench" + }, + { + "appid": 3647660, + "normalized_name": "mech assembler model kit builder simulator" + }, + { + "appid": 3647670, + "normalized_name": "the chicking" + }, + { + "appid": 3647680, + "normalized_name": "a song of steel and spirits" + }, + { + "appid": 3647690, + "normalized_name": "cuddle corner" + }, + { + "appid": 3647820, + "normalized_name": "embassy says no" + }, + { + "appid": 3647830, + "normalized_name": "passed the future" + }, + { + "appid": 3647870, + "normalized_name": "byterogue" + }, + { + "appid": 3647900, + "normalized_name": "bell & hoof the silent journey" + }, + { + "appid": 3647920, + "normalized_name": "wall dodging 3d" + }, + { + "appid": 3647950, + "normalized_name": "the inspireist" + }, + { + "appid": 3647960, + "normalized_name": "森林王国的试炼" + }, + { + "appid": 3648060, + "normalized_name": "lunar impact" + }, + { + "appid": 3648070, + "normalized_name": "warp speed and witchcraft disastrous dating sim" + }, + { + "appid": 3648140, + "normalized_name": "東方連打幻想祭 touhou rhythm of fantasy" + }, + { + "appid": 3648150, + "normalized_name": "roofgrown life" + }, + { + "appid": 3648180, + "normalized_name": "你老板的屁股" + }, + { + "appid": 3648210, + "normalized_name": "tavern builder" + }, + { + "appid": 3648240, + "normalized_name": "death burger" + }, + { + "appid": 3648260, + "normalized_name": "破晓之战" + }, + { + "appid": 3648300, + "normalized_name": "alter psycho" + }, + { + "appid": 3648320, + "normalized_name": "marbies party" + }, + { + "appid": 3648370, + "normalized_name": "node math" + }, + { + "appid": 3648390, + "normalized_name": "纳伊阿德斯的坠落" + }, + { + "appid": 3648400, + "normalized_name": "the wellmonts case" + }, + { + "appid": 3648420, + "normalized_name": "soviet village" + }, + { + "appid": 3648430, + "normalized_name": "think and choice" + }, + { + "appid": 3648450, + "normalized_name": "white room protocol" + }, + { + "appid": 3648520, + "normalized_name": "duo heli combat" + }, + { + "appid": 3648530, + "normalized_name": "coin war" + }, + { + "appid": 3648540, + "normalized_name": "cure for death" + }, + { + "appid": 3648550, + "normalized_name": "your magic hook" + }, + { + "appid": 3648620, + "normalized_name": "knight of the dungeon" + }, + { + "appid": 3648660, + "normalized_name": "novaxandria volume 01" + }, + { + "appid": 3648700, + "normalized_name": "cards and fables" + }, + { + "appid": 3648730, + "normalized_name": "blood vial" + }, + { + "appid": 3648770, + "normalized_name": "the airflow trials" + }, + { + "appid": 3648800, + "normalized_name": "collector's companion" + }, + { + "appid": 3648840, + "normalized_name": "spider hotel" + }, + { + "appid": 3648880, + "normalized_name": "mazut" + }, + { + "appid": 3648900, + "normalized_name": "years gone by" + }, + { + "appid": 3648910, + "normalized_name": "超忍伝 super shinobi den" + }, + { + "appid": 3648940, + "normalized_name": "lick roll" + }, + { + "appid": 3649050, + "normalized_name": "coagulation station fleshfall" + }, + { + "appid": 3649130, + "normalized_name": "grimwar" + }, + { + "appid": 3649160, + "normalized_name": "dishventory" + }, + { + "appid": 3649240, + "normalized_name": "the maze x the first chapter" + }, + { + "appid": 3649320, + "normalized_name": "manaweaver" + }, + { + "appid": 3649350, + "normalized_name": "my sadistic yandere goth sister and mom bully me" + }, + { + "appid": 3649380, + "normalized_name": "the promethean project" + }, + { + "appid": 3649430, + "normalized_name": "neohell" + }, + { + "appid": 3649440, + "normalized_name": "fingertipracing" + }, + { + "appid": 3649460, + "normalized_name": "your bunny secretary" + }, + { + "appid": 3649480, + "normalized_name": "逃离森林" + }, + { + "appid": 3649570, + "normalized_name": "骰子小队" + }, + { + "appid": 3649580, + "normalized_name": "frostbound" + }, + { + "appid": 3649610, + "normalized_name": "before waking up (梦醒边缘)" + }, + { + "appid": 3649650, + "normalized_name": "merica tale" + }, + { + "appid": 3649670, + "normalized_name": "paygame" + }, + { + "appid": 3649680, + "normalized_name": "tiny shop" + }, + { + "appid": 3649730, + "normalized_name": "legend battles" + }, + { + "appid": 3649750, + "normalized_name": "neohack" + }, + { + "appid": 3649760, + "normalized_name": "radley ravencroft's spy web mystery" + }, + { + "appid": 3649790, + "normalized_name": "宿命倒影:科通乌警部疑案" + }, + { + "appid": 3649840, + "normalized_name": "ゾンビポリス ~ゾンビ刑事と凍てつく真夏のお正月~" + }, + { + "appid": 3649860, + "normalized_name": "a good day fishing" + }, + { + "appid": 3649890, + "normalized_name": "capybaras huddled together" + }, + { + "appid": 3649900, + "normalized_name": "keep me gifted" + }, + { + "appid": 3649920, + "normalized_name": "me resbala!" + }, + { + "appid": 3649930, + "normalized_name": "bokeh adventure" + }, + { + "appid": 3649950, + "normalized_name": "bside" + }, + { + "appid": 3649980, + "normalized_name": "fields of fortune" + }, + { + "appid": 3649990, + "normalized_name": "putin jigsaw" + }, + { + "appid": 3650000, + "normalized_name": "specimen 07" + }, + { + "appid": 3650050, + "normalized_name": "day of drift" + }, + { + "appid": 3650090, + "normalized_name": "reel it! fishing" + }, + { + "appid": 3650100, + "normalized_name": "graphic tower defense" + }, + { + "appid": 3650140, + "normalized_name": "互联网创业模拟器" + }, + { + "appid": 3650150, + "normalized_name": "teeko" + }, + { + "appid": 3650160, + "normalized_name": "harem of lust battle cards" + }, + { + "appid": 3650230, + "normalized_name": "fortune paradox" + }, + { + "appid": 3650240, + "normalized_name": "hole digging simulator" + }, + { + "appid": 3650250, + "normalized_name": "octorridor" + }, + { + "appid": 3650270, + "normalized_name": "trade up" + }, + { + "appid": 3650320, + "normalized_name": "another game about clicking" + }, + { + "appid": 3650370, + "normalized_name": "chess of doom" + }, + { + "appid": 3650390, + "normalized_name": "price of a life" + }, + { + "appid": 3650410, + "normalized_name": "cellscape" + }, + { + "appid": 3650490, + "normalized_name": "oikizo" + }, + { + "appid": 3650510, + "normalized_name": "malware city" + }, + { + "appid": 3650520, + "normalized_name": "绝色禁区" + }, + { + "appid": 3650550, + "normalized_name": "pharabis" + }, + { + "appid": 3650580, + "normalized_name": "golden tides" + }, + { + "appid": 3650620, + "normalized_name": "barn quest" + }, + { + "appid": 3650650, + "normalized_name": "fief lord" + }, + { + "appid": 3650720, + "normalized_name": "shininja" + }, + { + "appid": 3650730, + "normalized_name": "miniwars" + }, + { + "appid": 3650740, + "normalized_name": "dig & deal" + }, + { + "appid": 3650770, + "normalized_name": "tale of excalibun" + }, + { + "appid": 3650790, + "normalized_name": "redemption under the tide" + }, + { + "appid": 3650910, + "normalized_name": "lost spirits" + }, + { + "appid": 3650950, + "normalized_name": "car dealer tycoon" + }, + { + "appid": 3651010, + "normalized_name": "高中生模拟器the existence theory of the no.13 high school" + }, + { + "appid": 3651020, + "normalized_name": "forest ranger services episode 2" + }, + { + "appid": 3651080, + "normalized_name": "rebel pirates" + }, + { + "appid": 3651090, + "normalized_name": "ötüken" + }, + { + "appid": 3651160, + "normalized_name": "succubus the lustborn curse" + }, + { + "appid": 3651170, + "normalized_name": "syncrochromia" + }, + { + "appid": 3651180, + "normalized_name": "daddy's long milk run" + }, + { + "appid": 3651230, + "normalized_name": "wanderstate" + }, + { + "appid": 3651240, + "normalized_name": "kinfolk" + }, + { + "appid": 3651250, + "normalized_name": "青涩补正" + }, + { + "appid": 3651300, + "normalized_name": "mist" + }, + { + "appid": 3651320, + "normalized_name": "nigredo" + }, + { + "appid": 3651360, + "normalized_name": "o último dos moicanos" + }, + { + "appid": 3651370, + "normalized_name": "sombie" + }, + { + "appid": 3651410, + "normalized_name": "the faked" + }, + { + "appid": 3651450, + "normalized_name": "fight with valkyries [18+]" + }, + { + "appid": 3651480, + "normalized_name": "only up 3" + }, + { + "appid": 3651490, + "normalized_name": "fire at campsite" + }, + { + "appid": 3651560, + "normalized_name": "easy bubbles" + }, + { + "appid": 3651600, + "normalized_name": "ichor burns" + }, + { + "appid": 3651620, + "normalized_name": "amentia" + }, + { + "appid": 3651630, + "normalized_name": "enchanted meadows" + }, + { + "appid": 3651670, + "normalized_name": "astral destiny" + }, + { + "appid": 3651710, + "normalized_name": "papao the legend of the bogeyman" + }, + { + "appid": 3651720, + "normalized_name": "3d puzzle leafless" + }, + { + "appid": 3651730, + "normalized_name": "3d puzzle dark fantasy" + }, + { + "appid": 3651760, + "normalized_name": "вторая степень покоя" + }, + { + "appid": 3651780, + "normalized_name": "mafioso's dice" + }, + { + "appid": 3651830, + "normalized_name": "project dinoz" + }, + { + "appid": 3651870, + "normalized_name": "이레인 대리님 결재 부탁드립니다!" + }, + { + "appid": 3651880, + "normalized_name": "kasap" + }, + { + "appid": 3651890, + "normalized_name": "buried below" + }, + { + "appid": 3651940, + "normalized_name": "submeris" + }, + { + "appid": 3651950, + "normalized_name": "evil egg" + }, + { + "appid": 3651960, + "normalized_name": "spider macro survivors" + }, + { + "appid": 3651980, + "normalized_name": "bankshot" + }, + { + "appid": 3651990, + "normalized_name": "waystone" + }, + { + "appid": 3652020, + "normalized_name": "the nagen project" + }, + { + "appid": 3652040, + "normalized_name": "always ill" + }, + { + "appid": 3652080, + "normalized_name": "masterrunners" + }, + { + "appid": 3652120, + "normalized_name": "reflections of life sleep's embrace collector's" + }, + { + "appid": 3652160, + "normalized_name": "glowing lamps" + }, + { + "appid": 3652210, + "normalized_name": "hiss & hunt" + }, + { + "appid": 3652220, + "normalized_name": "inkronos" + }, + { + "appid": 3652230, + "normalized_name": "extreme delivery" + }, + { + "appid": 3652250, + "normalized_name": "nothmere" + }, + { + "appid": 3652280, + "normalized_name": "读心神探:神鬼出游" + }, + { + "appid": 3652300, + "normalized_name": "l'héritier du demi jour" + }, + { + "appid": 3652330, + "normalized_name": "the attack on egg harbor" + }, + { + "appid": 3652410, + "normalized_name": "ares 2192" + }, + { + "appid": 3652420, + "normalized_name": "war of reproduction evolution" + }, + { + "appid": 3652460, + "normalized_name": "g modeアーカイブス+ 真・女神転生 20xx" + }, + { + "appid": 3652470, + "normalized_name": "max madness" + }, + { + "appid": 3652550, + "normalized_name": "soundless nightmare" + }, + { + "appid": 3652570, + "normalized_name": "assassins arena" + }, + { + "appid": 3652580, + "normalized_name": "境界勇士" + }, + { + "appid": 3652610, + "normalized_name": "casting clicker" + }, + { + "appid": 3652620, + "normalized_name": "wild west the last cowboy" + }, + { + "appid": 3652630, + "normalized_name": "bobbies evolution" + }, + { + "appid": 3652650, + "normalized_name": "恋爱从离别开始" + }, + { + "appid": 3652660, + "normalized_name": "maline" + }, + { + "appid": 3652690, + "normalized_name": "no one leaves the field" + }, + { + "appid": 3652700, + "normalized_name": "eye of the beholder" + }, + { + "appid": 3652750, + "normalized_name": "your dog hitler" + }, + { + "appid": 3652770, + "normalized_name": "depth origin" + }, + { + "appid": 3652840, + "normalized_name": "cheerleaders" + }, + { + "appid": 3652860, + "normalized_name": "東方エターナルフロンティア(touhoueternalfrontier)" + }, + { + "appid": 3652900, + "normalized_name": "later elevator" + }, + { + "appid": 3652910, + "normalized_name": "don't drop the soap" + }, + { + "appid": 3652940, + "normalized_name": "beastkeepers" + }, + { + "appid": 3652960, + "normalized_name": "papercut art gallery nature ii" + }, + { + "appid": 3653030, + "normalized_name": "kassei road cycling 2025" + }, + { + "appid": 3653050, + "normalized_name": "gun shooting range aim master" + }, + { + "appid": 3653130, + "normalized_name": "荒神录:山海迷津" + }, + { + "appid": 3653180, + "normalized_name": "ghosts of ancient io" + }, + { + "appid": 3653240, + "normalized_name": "battlegeuse" + }, + { + "appid": 3653250, + "normalized_name": "sporting goods shop" + }, + { + "appid": 3653260, + "normalized_name": "sporting goods shop prologue" + }, + { + "appid": 3653300, + "normalized_name": "up to divine" + }, + { + "appid": 3653320, + "normalized_name": "bye bye bindings! (しばりよ、バイバイ!)" + }, + { + "appid": 3653390, + "normalized_name": "终末回响" + }, + { + "appid": 3653420, + "normalized_name": "storytime cats meows and mistletoes" + }, + { + "appid": 3653440, + "normalized_name": "问鼎千秋" + }, + { + "appid": 3653450, + "normalized_name": "super bros" + }, + { + "appid": 3653460, + "normalized_name": "wail" + }, + { + "appid": 3653480, + "normalized_name": "time survivor" + }, + { + "appid": 3653510, + "normalized_name": "space memory parrots" + }, + { + "appid": 3653590, + "normalized_name": "n.o.x." + }, + { + "appid": 3653600, + "normalized_name": "this isn't just tower defense" + }, + { + "appid": 3653610, + "normalized_name": "独行天启" + }, + { + "appid": 3653710, + "normalized_name": "cybercontrol another life" + }, + { + "appid": 3653720, + "normalized_name": "hades harem" + }, + { + "appid": 3653810, + "normalized_name": "猫之屋 cat home" + }, + { + "appid": 3653820, + "normalized_name": "the tavern in the woods" + }, + { + "appid": 3653850, + "normalized_name": "remnants of yore" + }, + { + "appid": 3653870, + "normalized_name": "antyavan" + }, + { + "appid": 3653890, + "normalized_name": "sprkls.exe" + }, + { + "appid": 3653910, + "normalized_name": "the old woman | 無言老婆" + }, + { + "appid": 3653920, + "normalized_name": "柜台之后trust me i am a banker" + }, + { + "appid": 3653930, + "normalized_name": "demonbyte" + }, + { + "appid": 3653960, + "normalized_name": "家训 dogma" + }, + { + "appid": 3653970, + "normalized_name": "starlight squad" + }, + { + "appid": 3653990, + "normalized_name": "infploria" + }, + { + "appid": 3654000, + "normalized_name": "blitzstrike" + }, + { + "appid": 3654040, + "normalized_name": "tomboy trapped by orcs" + }, + { + "appid": 3654050, + "normalized_name": "veles scary" + }, + { + "appid": 3654060, + "normalized_name": "百陽師" + }, + { + "appid": 3654130, + "normalized_name": "levania" + }, + { + "appid": 3654190, + "normalized_name": "orcalypse" + }, + { + "appid": 3654200, + "normalized_name": "sunset racer" + }, + { + "appid": 3654210, + "normalized_name": "bitbird" + }, + { + "appid": 3654260, + "normalized_name": "echoes of metal 学園防衛線" + }, + { + "appid": 3654370, + "normalized_name": "pixel combat" + }, + { + "appid": 3654410, + "normalized_name": "keeper of the dead" + }, + { + "appid": 3654540, + "normalized_name": "mirny" + }, + { + "appid": 3654570, + "normalized_name": "cube mind" + }, + { + "appid": 3654580, + "normalized_name": "toy escape" + }, + { + "appid": 3654590, + "normalized_name": "donut shop simulator" + }, + { + "appid": 3654610, + "normalized_name": "dead hourz" + }, + { + "appid": 3654640, + "normalized_name": "dew" + }, + { + "appid": 3654650, + "normalized_name": "the lost identity" + }, + { + "appid": 3654670, + "normalized_name": "palette forge" + }, + { + "appid": 3654710, + "normalized_name": "interactive sex daddy twins incest bdsm" + }, + { + "appid": 3654730, + "normalized_name": "interactive sex twin sisters incest bdsm" + }, + { + "appid": 3654740, + "normalized_name": "stardream" + }, + { + "appid": 3654800, + "normalized_name": "changelog" + }, + { + "appid": 3654830, + "normalized_name": "traceback" + }, + { + "appid": 3654850, + "normalized_name": "aquariums" + }, + { + "appid": 3654900, + "normalized_name": "monster magnet" + }, + { + "appid": 3654990, + "normalized_name": "infra et intus" + }, + { + "appid": 3655010, + "normalized_name": "[ void ]" + }, + { + "appid": 3655030, + "normalized_name": "legume of zeldoom" + }, + { + "appid": 3655080, + "normalized_name": "stick and stack" + }, + { + "appid": 3655090, + "normalized_name": "3d next puzzle" + }, + { + "appid": 3655100, + "normalized_name": "worker 7549" + }, + { + "appid": 3655150, + "normalized_name": "nekopara after" + }, + { + "appid": 3655200, + "normalized_name": "chick defender" + }, + { + "appid": 3655210, + "normalized_name": "101 cats hidden in hong kong" + }, + { + "appid": 3655230, + "normalized_name": "101 cats hidden in mumbai" + }, + { + "appid": 3655240, + "normalized_name": "101 cats hidden in taiwan" + }, + { + "appid": 3655260, + "normalized_name": "my tiny landscape" + }, + { + "appid": 3655270, + "normalized_name": "wildseed" + }, + { + "appid": 3655290, + "normalized_name": "rotten" + }, + { + "appid": 3655330, + "normalized_name": "quiver and die" + }, + { + "appid": 3655340, + "normalized_name": "bubble up!" + }, + { + "appid": 3655380, + "normalized_name": "beaver rampage" + }, + { + "appid": 3655390, + "normalized_name": "alien rogue incursion evolved" + }, + { + "appid": 3655430, + "normalized_name": "the waking ashes" + }, + { + "appid": 3655520, + "normalized_name": "tomokin monsters" + }, + { + "appid": 3655540, + "normalized_name": "mmmmmm multi merge mix & match minigame mayhem" + }, + { + "appid": 3655570, + "normalized_name": "toey weedz forreal" + }, + { + "appid": 3655580, + "normalized_name": "four divine abidings" + }, + { + "appid": 3655590, + "normalized_name": "tiger simulator" + }, + { + "appid": 3655610, + "normalized_name": "pancitomerge" + }, + { + "appid": 3655650, + "normalized_name": "文明但是扫雷" + }, + { + "appid": 3655670, + "normalized_name": "vesperis" + }, + { + "appid": 3655710, + "normalized_name": "clickshot" + }, + { + "appid": 3655720, + "normalized_name": "stellar inc internship" + }, + { + "appid": 3655760, + "normalized_name": "whistle pig" + }, + { + "appid": 3655780, + "normalized_name": "shake" + }, + { + "appid": 3655790, + "normalized_name": "blood country" + }, + { + "appid": 3655820, + "normalized_name": "possession" + }, + { + "appid": 3655870, + "normalized_name": "starflower inc." + }, + { + "appid": 3655880, + "normalized_name": "塔防编辑器towerdefenseeditor" + }, + { + "appid": 3655890, + "normalized_name": "the saint wife's newlywed trials" + }, + { + "appid": 3655910, + "normalized_name": "shining in mind" + }, + { + "appid": 3655930, + "normalized_name": "greed's grub" + }, + { + "appid": 3655960, + "normalized_name": "tales beyond the tomb white silence" + }, + { + "appid": 3655970, + "normalized_name": "深渊谜影" + }, + { + "appid": 3655990, + "normalized_name": "宁静之海" + }, + { + "appid": 3656050, + "normalized_name": "aleato" + }, + { + "appid": 3656060, + "normalized_name": "シールオブマジック" + }, + { + "appid": 3656090, + "normalized_name": "hentai night milf" + }, + { + "appid": 3656100, + "normalized_name": "shootx" + }, + { + "appid": 3656140, + "normalized_name": "彼德海姆之影" + }, + { + "appid": 3656190, + "normalized_name": "way of the dragons" + }, + { + "appid": 3656220, + "normalized_name": "nhr nitro hyper racing" + }, + { + "appid": 3656260, + "normalized_name": "ノーラと時を戻さない魔法" + }, + { + "appid": 3656270, + "normalized_name": "touchdown poker" + }, + { + "appid": 3656300, + "normalized_name": "kreya cursed rings" + }, + { + "appid": 3656320, + "normalized_name": "pup boy cowboy infinite desert" + }, + { + "appid": 3656330, + "normalized_name": "gazar" + }, + { + "appid": 3656340, + "normalized_name": "momentum" + }, + { + "appid": 3656360, + "normalized_name": "melody ball" + }, + { + "appid": 3656370, + "normalized_name": "buried" + }, + { + "appid": 3656380, + "normalized_name": "江湖风云" + }, + { + "appid": 3656400, + "normalized_name": "dragon's chronicles~暗黒大魔王と北斗の剣(つるぎ)~" + }, + { + "appid": 3656480, + "normalized_name": "追凶" + }, + { + "appid": 3656520, + "normalized_name": "steelsilk championship" + }, + { + "appid": 3656530, + "normalized_name": "sex hill" + }, + { + "appid": 3656550, + "normalized_name": "claustromania" + }, + { + "appid": 3656570, + "normalized_name": "experiment 28" + }, + { + "appid": 3656640, + "normalized_name": "gun shop manager" + }, + { + "appid": 3656650, + "normalized_name": "music producer tycoon" + }, + { + "appid": 3656660, + "normalized_name": "deep space exploitation" + }, + { + "appid": 3656680, + "normalized_name": "gold and graves" + }, + { + "appid": 3656690, + "normalized_name": "arc’s glitch defender" + }, + { + "appid": 3656710, + "normalized_name": "formasupa supplementary studies" + }, + { + "appid": 3656720, + "normalized_name": "dungeon raid" + }, + { + "appid": 3656760, + "normalized_name": "paper traces whisper" + }, + { + "appid": 3656780, + "normalized_name": "cypher override" + }, + { + "appid": 3656980, + "normalized_name": "corgi conquest" + }, + { + "appid": 3656990, + "normalized_name": "工廈 warehouse" + }, + { + "appid": 3657000, + "normalized_name": "fields of malice" + }, + { + "appid": 3657030, + "normalized_name": "star legion" + }, + { + "appid": 3657100, + "normalized_name": "petmate" + }, + { + "appid": 3657150, + "normalized_name": "echo railway" + }, + { + "appid": 3657210, + "normalized_name": "amanda the adventurer 3" + }, + { + "appid": 3657230, + "normalized_name": "backrooms final exam" + }, + { + "appid": 3657240, + "normalized_name": "good luck" + }, + { + "appid": 3657290, + "normalized_name": "100 hidden pandas village" + }, + { + "appid": 3657460, + "normalized_name": "lost taboo forest" + }, + { + "appid": 3657470, + "normalized_name": "a frog's folly" + }, + { + "appid": 3657480, + "normalized_name": "graviton 引力子" + }, + { + "appid": 3657500, + "normalized_name": "uncrewed 2" + }, + { + "appid": 3657530, + "normalized_name": "backrooms liminal escape" + }, + { + "appid": 3657540, + "normalized_name": "cursed station" + }, + { + "appid": 3658000, + "normalized_name": "meaning of flower" + }, + { + "appid": 3658150, + "normalized_name": "femdom girlfriend my neighbor is a narcissistic spoiled brat bully" + }, + { + "appid": 3658160, + "normalized_name": "puzzledom" + }, + { + "appid": 3658200, + "normalized_name": "myth2myth origin" + }, + { + "appid": 3658220, + "normalized_name": "island of corruption" + }, + { + "appid": 3658230, + "normalized_name": "mageye" + }, + { + "appid": 3658250, + "normalized_name": "deck of stabs" + }, + { + "appid": 3658310, + "normalized_name": "snake party extreme" + }, + { + "appid": 3658460, + "normalized_name": "gooms a physics puzzle" + }, + { + "appid": 3658570, + "normalized_name": "donuts!" + }, + { + "appid": 3658590, + "normalized_name": "rust onslaught" + }, + { + "appid": 3658600, + "normalized_name": "爱上!小狐娘" + }, + { + "appid": 3658650, + "normalized_name": "flowrate" + }, + { + "appid": 3658670, + "normalized_name": "palette cards & chaos" + }, + { + "appid": 3658680, + "normalized_name": "the gurgling" + }, + { + "appid": 3658780, + "normalized_name": "bonds of zeniarai" + }, + { + "appid": 3658800, + "normalized_name": "realm runner" + }, + { + "appid": 3658850, + "normalized_name": "banana loco" + }, + { + "appid": 3658910, + "normalized_name": "as ra ashen skies radiant arena" + }, + { + "appid": 3658940, + "normalized_name": "rey shattered darkness" + }, + { + "appid": 3658970, + "normalized_name": "antibored evolution" + }, + { + "appid": 3659000, + "normalized_name": "poarker" + }, + { + "appid": 3659050, + "normalized_name": "soulpactum" + }, + { + "appid": 3659120, + "normalized_name": "why jump" + }, + { + "appid": 3659130, + "normalized_name": "star loot" + }, + { + "appid": 3659140, + "normalized_name": "lobstar arcade version" + }, + { + "appid": 3659150, + "normalized_name": "出張2 next business trip" + }, + { + "appid": 3659160, + "normalized_name": "hgmgame horse" + }, + { + "appid": 3659170, + "normalized_name": "再构镜像reconstructing" + }, + { + "appid": 3659180, + "normalized_name": "?? movie theater" + }, + { + "appid": 3659190, + "normalized_name": "techrunners" + }, + { + "appid": 3659210, + "normalized_name": "void wave drift" + }, + { + "appid": 3659270, + "normalized_name": "wumball" + }, + { + "appid": 3659280, + "normalized_name": "off the grid" + }, + { + "appid": 3659440, + "normalized_name": "foray" + }, + { + "appid": 3659470, + "normalized_name": "longevity codex" + }, + { + "appid": 3659540, + "normalized_name": "fervent sovereign struggle" + }, + { + "appid": 3659550, + "normalized_name": "rob your friends or die" + }, + { + "appid": 3659750, + "normalized_name": "if letters had pants would they wear them like this? what about numbers? what if they had small shovels and they dug stuff up to put in a museum?" + }, + { + "appid": 3659780, + "normalized_name": "bus simulator offroad" + }, + { + "appid": 3659800, + "normalized_name": "inumbra" + }, + { + "appid": 3659810, + "normalized_name": "zombie chef" + }, + { + "appid": 3659860, + "normalized_name": "lightrix" + }, + { + "appid": 3659880, + "normalized_name": "pit of fears" + }, + { + "appid": 3659900, + "normalized_name": "blue paradise joyful survival" + }, + { + "appid": 3659920, + "normalized_name": "dream on" + }, + { + "appid": 3659940, + "normalized_name": "cats visiting fairy tales" + }, + { + "appid": 3659960, + "normalized_name": "ohmyeye stick" + }, + { + "appid": 3659970, + "normalized_name": "aurora polaris" + }, + { + "appid": 3659980, + "normalized_name": "tease and please charlotte" + }, + { + "appid": 3659990, + "normalized_name": "hate.net" + }, + { + "appid": 3660000, + "normalized_name": "flow of banners grim whistles" + }, + { + "appid": 3660060, + "normalized_name": "cal & bomba" + }, + { + "appid": 3660080, + "normalized_name": "sexy glasses" + }, + { + "appid": 3660090, + "normalized_name": "paradise love" + }, + { + "appid": 3660100, + "normalized_name": "holiday in europe czech adventure collector's" + }, + { + "appid": 3660110, + "normalized_name": "血姬:双生 (vampiress eternal duet)" + }, + { + "appid": 3660130, + "normalized_name": "rat's contracts" + }, + { + "appid": 3660140, + "normalized_name": "rush rush red shoes" + }, + { + "appid": 3660150, + "normalized_name": "gun traders" + }, + { + "appid": 3660220, + "normalized_name": "syberia" + }, + { + "appid": 3660260, + "normalized_name": "out fishing" + }, + { + "appid": 3660320, + "normalized_name": "skullx aibohphobia" + }, + { + "appid": 3660330, + "normalized_name": "mythic ascendancy" + }, + { + "appid": 3660360, + "normalized_name": "deadly deals" + }, + { + "appid": 3660410, + "normalized_name": "uncontrolled" + }, + { + "appid": 3660430, + "normalized_name": "freya the starfall" + }, + { + "appid": 3660440, + "normalized_name": "chiba" + }, + { + "appid": 3660520, + "normalized_name": "五行乱斗" + }, + { + "appid": 3660540, + "normalized_name": "rotem" + }, + { + "appid": 3660580, + "normalized_name": "royal vermin" + }, + { + "appid": 3660590, + "normalized_name": "paracosma" + }, + { + "appid": 3660600, + "normalized_name": "зумеры" + }, + { + "appid": 3660610, + "normalized_name": "l.i.s.t.e.d." + }, + { + "appid": 3660630, + "normalized_name": "don't kill the messenger" + }, + { + "appid": 3660700, + "normalized_name": "train driver 2" + }, + { + "appid": 3660790, + "normalized_name": "sad virus foodland" + }, + { + "appid": 3660800, + "normalized_name": "3d puzzle race track" + }, + { + "appid": 3660810, + "normalized_name": "room football abandoned factory" + }, + { + "appid": 3660840, + "normalized_name": "digopolis" + }, + { + "appid": 3660860, + "normalized_name": "turnip boy steals the mail" + }, + { + "appid": 3660900, + "normalized_name": "rogue scum" + }, + { + "appid": 3661160, + "normalized_name": "darkest descent" + }, + { + "appid": 3661280, + "normalized_name": "desert dino run" + }, + { + "appid": 3661290, + "normalized_name": "whispers of wings jigsaw puzzles" + }, + { + "appid": 3661300, + "normalized_name": "celldom classic" + }, + { + "appid": 3661360, + "normalized_name": "smush bois" + }, + { + "appid": 3661380, + "normalized_name": "krysolov" + }, + { + "appid": 3661530, + "normalized_name": "per reliquias" + }, + { + "appid": 3661590, + "normalized_name": "through hell and back" + }, + { + "appid": 3661630, + "normalized_name": "galactic outlaws" + }, + { + "appid": 3661660, + "normalized_name": "tessel run" + }, + { + "appid": 3661670, + "normalized_name": "hell and back" + }, + { + "appid": 3661690, + "normalized_name": "legends of myth" + }, + { + "appid": 3661740, + "normalized_name": "gat rat" + }, + { + "appid": 3661790, + "normalized_name": "island off outer darkness" + }, + { + "appid": 3661830, + "normalized_name": "tape us out" + }, + { + "appid": 3661840, + "normalized_name": "一個普通的俯視角射擊遊戲" + }, + { + "appid": 3661890, + "normalized_name": "voidnomicon" + }, + { + "appid": 3661930, + "normalized_name": "vaccine case" + }, + { + "appid": 3661950, + "normalized_name": "restoruzz" + }, + { + "appid": 3662060, + "normalized_name": "mushi mansion" + }, + { + "appid": 3662140, + "normalized_name": "the firestorm is coming" + }, + { + "appid": 3662150, + "normalized_name": "winning tactics" + }, + { + "appid": 3662180, + "normalized_name": "omanah" + }, + { + "appid": 3662240, + "normalized_name": "雪花斗兽棋" + }, + { + "appid": 3662590, + "normalized_name": "the presidential assassins" + }, + { + "appid": 3662620, + "normalized_name": "crime lawn repeat" + }, + { + "appid": 3662750, + "normalized_name": "network nodes" + }, + { + "appid": 3662770, + "normalized_name": "frogspin" + }, + { + "appid": 3663290, + "normalized_name": "百鬼之王 中式.恐怖.卡牌.遊戲" + }, + { + "appid": 3663960, + "normalized_name": "sex adventures naughty sisters episode 9" + }, + { + "appid": 3663980, + "normalized_name": "pogo stick challenge" + }, + { + "appid": 3664010, + "normalized_name": "drift legends 2" + }, + { + "appid": 3664070, + "normalized_name": "nothing strange here" + }, + { + "appid": 3664100, + "normalized_name": "hentai mika" + }, + { + "appid": 3664230, + "normalized_name": "bounce cat" + }, + { + "appid": 3664250, + "normalized_name": "astroplanet" + }, + { + "appid": 3664300, + "normalized_name": "디시인사이드 중붕이의 모험2 (jungbung's adventure 2)" + }, + { + "appid": 3664430, + "normalized_name": "silver malfeasant" + }, + { + "appid": 3664440, + "normalized_name": "red rust pioneers co op wild west survival" + }, + { + "appid": 3664470, + "normalized_name": "kindergarten of hell" + }, + { + "appid": 3664490, + "normalized_name": "esa shield" + }, + { + "appid": 3664510, + "normalized_name": "once up" + }, + { + "appid": 3664520, + "normalized_name": "stoatman" + }, + { + "appid": 3664530, + "normalized_name": "pyramis" + }, + { + "appid": 3664560, + "normalized_name": "escape from lava" + }, + { + "appid": 3664600, + "normalized_name": "glorb" + }, + { + "appid": 3664630, + "normalized_name": "afk_gf" + }, + { + "appid": 3664690, + "normalized_name": "my oppai mommy makes me want to spill all of my company secrets" + }, + { + "appid": 3664700, + "normalized_name": "さんよん ~三女?四対!~" + }, + { + "appid": 3664710, + "normalized_name": "drone simulator smash zombies" + }, + { + "appid": 3664720, + "normalized_name": "lords of the fallen free friend's pass" + }, + { + "appid": 3664750, + "normalized_name": "let them breathe" + }, + { + "appid": 3664810, + "normalized_name": "frest" + }, + { + "appid": 3664820, + "normalized_name": "sandboxels" + }, + { + "appid": 3664840, + "normalized_name": "compress(space)" + }, + { + "appid": 3664880, + "normalized_name": "snail tail" + }, + { + "appid": 3664890, + "normalized_name": "moon tropica" + }, + { + "appid": 3664910, + "normalized_name": "frantic birdies" + }, + { + "appid": 3664920, + "normalized_name": "dream spectra" + }, + { + "appid": 3664990, + "normalized_name": "too many captains" + }, + { + "appid": 3665010, + "normalized_name": "bound beyond" + }, + { + "appid": 3665050, + "normalized_name": "flying up" + }, + { + "appid": 3665100, + "normalized_name": "sucks to be in the sticks" + }, + { + "appid": 3665110, + "normalized_name": "hentai furry unicorny" + }, + { + "appid": 3665120, + "normalized_name": "hentai furry bunny" + }, + { + "appid": 3665180, + "normalized_name": "minesweeper 3d" + }, + { + "appid": 3665240, + "normalized_name": "诡廊" + }, + { + "appid": 3665250, + "normalized_name": "beak force" + }, + { + "appid": 3665270, + "normalized_name": "cursorcana" + }, + { + "appid": 3665290, + "normalized_name": "femdom girlfriend 2 victoria loves teasing me with her boobs" + }, + { + "appid": 3665300, + "normalized_name": "rogue ninjas" + }, + { + "appid": 3665430, + "normalized_name": "kaporanga" + }, + { + "appid": 3665460, + "normalized_name": "jumpscare slayer" + }, + { + "appid": 3665500, + "normalized_name": "ham's game store simulator" + }, + { + "appid": 3665510, + "normalized_name": "dogpunk" + }, + { + "appid": 3665550, + "normalized_name": "raptors vs. goblins" + }, + { + "appid": 3665570, + "normalized_name": "mirrorlight" + }, + { + "appid": 3665610, + "normalized_name": "evol" + }, + { + "appid": 3665620, + "normalized_name": "through the lens" + }, + { + "appid": 3665640, + "normalized_name": "ballshakerz a climbing game." + }, + { + "appid": 3665660, + "normalized_name": "space scrublords" + }, + { + "appid": 3665670, + "normalized_name": "zombies and strangers" + }, + { + "appid": 3665680, + "normalized_name": "夢の終わり upon the dream's end" + }, + { + "appid": 3665740, + "normalized_name": "希望小镇 the hope town" + }, + { + "appid": 3665770, + "normalized_name": "三日追凶" + }, + { + "appid": 3665780, + "normalized_name": "subtracto" + }, + { + "appid": 3665790, + "normalized_name": "project mayhem" + }, + { + "appid": 3665800, + "normalized_name": "the communist manifesto ~ a visual novel" + }, + { + "appid": 3665820, + "normalized_name": "cyber evolution" + }, + { + "appid": 3665830, + "normalized_name": "sprouting depths" + }, + { + "appid": 3665840, + "normalized_name": "minesweeper rush" + }, + { + "appid": 3665880, + "normalized_name": "capsoul" + }, + { + "appid": 3665900, + "normalized_name": "砲撃少女" + }, + { + "appid": 3665930, + "normalized_name": "dependency psychological test" + }, + { + "appid": 3665970, + "normalized_name": "drop adventure مغامرة قطرة" + }, + { + "appid": 3666020, + "normalized_name": "asmr pressure wash vr" + }, + { + "appid": 3666030, + "normalized_name": "nightmarena" + }, + { + "appid": 3666080, + "normalized_name": "你的彩虹牛牛" + }, + { + "appid": 3666160, + "normalized_name": "buttonbox" + }, + { + "appid": 3666180, + "normalized_name": "solitaire of stygian shadows" + }, + { + "appid": 3666200, + "normalized_name": "quantum resonance" + }, + { + "appid": 3666260, + "normalized_name": "sweet run" + }, + { + "appid": 3666320, + "normalized_name": "connected fates" + }, + { + "appid": 3666470, + "normalized_name": "backslap" + }, + { + "appid": 3666490, + "normalized_name": "raccoon cocoon a cozy puzzle game" + }, + { + "appid": 3666520, + "normalized_name": "storm mined" + }, + { + "appid": 3666530, + "normalized_name": "phantom break" + }, + { + "appid": 3666590, + "normalized_name": "hentai ladyboy ren" + }, + { + "appid": 3666610, + "normalized_name": "tempoverdose" + }, + { + "appid": 3666640, + "normalized_name": "انتم السابقون" + }, + { + "appid": 3666670, + "normalized_name": "signal intentions" + }, + { + "appid": 3666710, + "normalized_name": "dodgix" + }, + { + "appid": 3666780, + "normalized_name": "relinked 0.26091975" + }, + { + "appid": 3666830, + "normalized_name": "shards of dread" + }, + { + "appid": 3666880, + "normalized_name": "exit loops street 001" + }, + { + "appid": 3666900, + "normalized_name": "a game about clicking crystals" + }, + { + "appid": 3666920, + "normalized_name": "the journey east and west" + }, + { + "appid": 3666940, + "normalized_name": "rebels under the spell of magic (chapter 5)" + }, + { + "appid": 3666950, + "normalized_name": "aim trainer bee pro" + }, + { + "appid": 3666980, + "normalized_name": "diceball" + }, + { + "appid": 3667000, + "normalized_name": "scour" + }, + { + "appid": 3667020, + "normalized_name": "cryphora" + }, + { + "appid": 3667070, + "normalized_name": "dillo's dilemma" + }, + { + "appid": 3667080, + "normalized_name": "farlands journey" + }, + { + "appid": 3667120, + "normalized_name": "runway 66" + }, + { + "appid": 3667150, + "normalized_name": "mech builder 3d" + }, + { + "appid": 3667220, + "normalized_name": "isekai attack on oppai" + }, + { + "appid": 3667230, + "normalized_name": "the deadseat" + }, + { + "appid": 3667270, + "normalized_name": "nekomimi destruction" + }, + { + "appid": 3667280, + "normalized_name": "masters of gaia" + }, + { + "appid": 3667360, + "normalized_name": "type pressure" + }, + { + "appid": 3667380, + "normalized_name": "lag kills" + }, + { + "appid": 3667390, + "normalized_name": "black hole fishing" + }, + { + "appid": 3667400, + "normalized_name": "ghostbound" + }, + { + "appid": 3667420, + "normalized_name": "jelli nook" + }, + { + "appid": 3667460, + "normalized_name": "balaspire" + }, + { + "appid": 3667500, + "normalized_name": "dage prince mushroom feast with bros" + }, + { + "appid": 3667510, + "normalized_name": "rebirth i became the emperor of america by creating toktik" + }, + { + "appid": 3667590, + "normalized_name": "land of infinite dreams" + }, + { + "appid": 3667610, + "normalized_name": "squaser 8" + }, + { + "appid": 3667630, + "normalized_name": "tunnel" + }, + { + "appid": 3667660, + "normalized_name": "bug off" + }, + { + "appid": 3667680, + "normalized_name": "obelisk foundry" + }, + { + "appid": 3667690, + "normalized_name": "cumboy in space" + }, + { + "appid": 3667720, + "normalized_name": "heroes against time" + }, + { + "appid": 3667730, + "normalized_name": "console store simulator" + }, + { + "appid": 3667740, + "normalized_name": "ribbit up frog climber" + }, + { + "appid": 3667790, + "normalized_name": "guild hall simulator prologue" + }, + { + "appid": 3667840, + "normalized_name": "journey quest" + }, + { + "appid": 3667850, + "normalized_name": "silk roads ii paths of fortune" + }, + { + "appid": 3667880, + "normalized_name": "forestia" + }, + { + "appid": 3667980, + "normalized_name": "sky & soul" + }, + { + "appid": 3668070, + "normalized_name": "ironclash arena of echoes" + }, + { + "appid": 3668080, + "normalized_name": "reflection" + }, + { + "appid": 3668110, + "normalized_name": "silent fangs stealthy vampire's tale" + }, + { + "appid": 3668150, + "normalized_name": "theplanewar" + }, + { + "appid": 3668260, + "normalized_name": "chinook" + }, + { + "appid": 3668270, + "normalized_name": "granvir zero front" + }, + { + "appid": 3668280, + "normalized_name": "exploring friscott" + }, + { + "appid": 3668300, + "normalized_name": "the shadow syndicate" + }, + { + "appid": 3668320, + "normalized_name": "palmora" + }, + { + "appid": 3668340, + "normalized_name": "symphoni composer" + }, + { + "appid": 3668350, + "normalized_name": "good dreams" + }, + { + "appid": 3668370, + "normalized_name": "night swarm" + }, + { + "appid": 3668420, + "normalized_name": "gomoku" + }, + { + "appid": 3668450, + "normalized_name": "office sirens hard at work" + }, + { + "appid": 3668470, + "normalized_name": "operation sour power" + }, + { + "appid": 3668480, + "normalized_name": "path of master 大師之路" + }, + { + "appid": 3668530, + "normalized_name": "quadra break" + }, + { + "appid": 3668550, + "normalized_name": "挚爱解体之因" + }, + { + "appid": 3668630, + "normalized_name": "ちゅーちゅーパンケーキ" + }, + { + "appid": 3668740, + "normalized_name": "femdom girlfriend 3 my sadistic girlfriend and her friend bully me in their swimsuits" + }, + { + "appid": 3668790, + "normalized_name": "watermeasure" + }, + { + "appid": 3668800, + "normalized_name": "我又幻想了 i antasized again" + }, + { + "appid": 3668810, + "normalized_name": "luna cove" + }, + { + "appid": 3668830, + "normalized_name": "pieces left behind" + }, + { + "appid": 3668840, + "normalized_name": "笼中鸟" + }, + { + "appid": 3668890, + "normalized_name": "the legend of abdal" + }, + { + "appid": 3668900, + "normalized_name": "caligula 1996" + }, + { + "appid": 3668950, + "normalized_name": "スターそらイトファンタジー~空へ届く魔法~" + }, + { + "appid": 3668990, + "normalized_name": "legacy reawakening" + }, + { + "appid": 3669010, + "normalized_name": "大江戸でべろっぱ" + }, + { + "appid": 3669040, + "normalized_name": "our red string" + }, + { + "appid": 3669050, + "normalized_name": "void resurgence" + }, + { + "appid": 3669060, + "normalized_name": "blade & soul neo" + }, + { + "appid": 3669150, + "normalized_name": "blackjack allure" + }, + { + "appid": 3669270, + "normalized_name": "forpost" + }, + { + "appid": 3669280, + "normalized_name": "there will be light" + }, + { + "appid": 3669360, + "normalized_name": "umami" + }, + { + "appid": 3669370, + "normalized_name": "dead oil" + }, + { + "appid": 3669380, + "normalized_name": "春秋浮生记" + }, + { + "appid": 3669450, + "normalized_name": "pantheion" + }, + { + "appid": 3669490, + "normalized_name": "三国蜀汉传" + }, + { + "appid": 3669500, + "normalized_name": "mathbits" + }, + { + "appid": 3669520, + "normalized_name": "mythic isle" + }, + { + "appid": 3669530, + "normalized_name": "treasure hunters prologue" + }, + { + "appid": 3669540, + "normalized_name": "coded black" + }, + { + "appid": 3669550, + "normalized_name": "snail mail" + }, + { + "appid": 3669570, + "normalized_name": "alchemy factory" + }, + { + "appid": 3669600, + "normalized_name": "service please" + }, + { + "appid": 3669610, + "normalized_name": "desktop garden" + }, + { + "appid": 3669640, + "normalized_name": "bound by bones" + }, + { + "appid": 3669660, + "normalized_name": "capture nexus" + }, + { + "appid": 3669690, + "normalized_name": "noir lords" + }, + { + "appid": 3669700, + "normalized_name": "subroutine" + }, + { + "appid": 3669710, + "normalized_name": "hgmgame pig" + }, + { + "appid": 3669720, + "normalized_name": "bakery cafe simulator prologue" + }, + { + "appid": 3669740, + "normalized_name": "mail it to the king!" + }, + { + "appid": 3669770, + "normalized_name": "fi" + }, + { + "appid": 3669780, + "normalized_name": "quantum dogfight" + }, + { + "appid": 3669830, + "normalized_name": "shroomer" + }, + { + "appid": 3669850, + "normalized_name": "calico" + }, + { + "appid": 3669860, + "normalized_name": "gourmet steak odyssey" + }, + { + "appid": 3669890, + "normalized_name": "how we became heroes" + }, + { + "appid": 3669960, + "normalized_name": "fate and destiny the elonia chronicles" + }, + { + "appid": 3669990, + "normalized_name": "apocalypse rush" + }, + { + "appid": 3670010, + "normalized_name": "the others" + }, + { + "appid": 3670040, + "normalized_name": "block bounce" + }, + { + "appid": 3670060, + "normalized_name": "last stand legends" + }, + { + "appid": 3670080, + "normalized_name": "project 2025 text based story board" + }, + { + "appid": 3670120, + "normalized_name": "orebit" + }, + { + "appid": 3670170, + "normalized_name": "survival hold your self" + }, + { + "appid": 3670180, + "normalized_name": "baby kings" + }, + { + "appid": 3670200, + "normalized_name": "colossal kickoff" + }, + { + "appid": 3670260, + "normalized_name": "frebbventure alliance" + }, + { + "appid": 3670290, + "normalized_name": "dragons frolic!" + }, + { + "appid": 3670310, + "normalized_name": "lost in the grotto thievery" + }, + { + "appid": 3670320, + "normalized_name": "arvis knock out!" + }, + { + "appid": 3670340, + "normalized_name": "cubaria the sun trial" + }, + { + "appid": 3670460, + "normalized_name": "blackgate" + }, + { + "appid": 3670500, + "normalized_name": "overgrown!" + }, + { + "appid": 3670510, + "normalized_name": "protect the hangar from zombies" + }, + { + "appid": 3670530, + "normalized_name": "tacit" + }, + { + "appid": 3670600, + "normalized_name": "hexitten" + }, + { + "appid": 3670630, + "normalized_name": "besmirch" + }, + { + "appid": 3670640, + "normalized_name": "krampus" + }, + { + "appid": 3670730, + "normalized_name": "horror tales eats the world" + }, + { + "appid": 3670750, + "normalized_name": "余温 第五个结局" + }, + { + "appid": 3670820, + "normalized_name": "restore" + }, + { + "appid": 3670900, + "normalized_name": "minute man" + }, + { + "appid": 3670960, + "normalized_name": "neon eclipse dominium" + }, + { + "appid": 3670970, + "normalized_name": "rudeirer.wtf" + }, + { + "appid": 3671060, + "normalized_name": "screenside station" + }, + { + "appid": 3671320, + "normalized_name": "we need an army" + }, + { + "appid": 3671510, + "normalized_name": "maidomina vr" + }, + { + "appid": 3671520, + "normalized_name": "the anomaly protocol" + }, + { + "appid": 3671550, + "normalized_name": "painted echoes" + }, + { + "appid": 3671580, + "normalized_name": "relapse" + }, + { + "appid": 3671660, + "normalized_name": "dream of change poker" + }, + { + "appid": 3671710, + "normalized_name": "東方錦上京 〜 fossilized wonders." + }, + { + "appid": 3671730, + "normalized_name": "goblin gourmet" + }, + { + "appid": 3671740, + "normalized_name": "karate rogue" + }, + { + "appid": 3671800, + "normalized_name": "rafica and sealing wedge" + }, + { + "appid": 3671830, + "normalized_name": "harem of three thousand" + }, + { + "appid": 3671900, + "normalized_name": "drowned in hell" + }, + { + "appid": 3671970, + "normalized_name": "monster merchant simulator hatch evolve capture" + }, + { + "appid": 3671980, + "normalized_name": "job battle simulator accurate physics showdown" + }, + { + "appid": 3671990, + "normalized_name": "greatsword prologue" + }, + { + "appid": 3672020, + "normalized_name": "monster merchant simulator prologue" + }, + { + "appid": 3672040, + "normalized_name": "the love between litchis and elms" + }, + { + "appid": 3672050, + "normalized_name": "chimp war" + }, + { + "appid": 3672060, + "normalized_name": "zombeo y vampireta" + }, + { + "appid": 3672080, + "normalized_name": "jellyfish egg" + }, + { + "appid": 3672090, + "normalized_name": "hgmgame sheep" + }, + { + "appid": 3672110, + "normalized_name": "裂隙驱动 / fracture" + }, + { + "appid": 3672130, + "normalized_name": "與我簽約吧!~愛與夢想的主旋律~" + }, + { + "appid": 3672160, + "normalized_name": "icebound" + }, + { + "appid": 3672240, + "normalized_name": "game of hearts" + }, + { + "appid": 3672270, + "normalized_name": "moleconomy" + }, + { + "appid": 3672290, + "normalized_name": "stuckon hamsterball" + }, + { + "appid": 3672320, + "normalized_name": "moving forward with cat" + }, + { + "appid": 3672390, + "normalized_name": "the island of crossed destinies" + }, + { + "appid": 3672410, + "normalized_name": "pogo stadium" + }, + { + "appid": 3672420, + "normalized_name": "泛驭一" + }, + { + "appid": 3672440, + "normalized_name": "mighty arms" + }, + { + "appid": 3672470, + "normalized_name": "racket pinball" + }, + { + "appid": 3672490, + "normalized_name": "walk of fire" + }, + { + "appid": 3672500, + "normalized_name": "赛博小宠oi" + }, + { + "appid": 3672520, + "normalized_name": "castle forbidden" + }, + { + "appid": 3672540, + "normalized_name": "backroom loop" + }, + { + "appid": 3672600, + "normalized_name": "labyrainth" + }, + { + "appid": 3672640, + "normalized_name": "motoscafo" + }, + { + "appid": 3672650, + "normalized_name": "dfiance" + }, + { + "appid": 3672660, + "normalized_name": "caramel creek" + }, + { + "appid": 3672670, + "normalized_name": "siegeborn" + }, + { + "appid": 3672710, + "normalized_name": "grizzly golfers" + }, + { + "appid": 3672720, + "normalized_name": "prison escape simulator dig out" + }, + { + "appid": 3672780, + "normalized_name": "femdom girlfriend 4 isabelle the facesitting queen" + }, + { + "appid": 3672790, + "normalized_name": "delivery point simulator" + }, + { + "appid": 3672800, + "normalized_name": "unknown td" + }, + { + "appid": 3672820, + "normalized_name": "gleanbound" + }, + { + "appid": 3672890, + "normalized_name": "angry youth" + }, + { + "appid": 3672900, + "normalized_name": "the honours project" + }, + { + "appid": 3672970, + "normalized_name": "the haunted nora apartment" + }, + { + "appid": 3672980, + "normalized_name": "fishing nightmares" + }, + { + "appid": 3673000, + "normalized_name": "aghaz" + }, + { + "appid": 3673050, + "normalized_name": "tamagorudo floor o" + }, + { + "appid": 3673060, + "normalized_name": "how to train your cock" + }, + { + "appid": 3673090, + "normalized_name": "dino rocks" + }, + { + "appid": 3673110, + "normalized_name": "backrooms" + }, + { + "appid": 3673120, + "normalized_name": "saqer's paradox" + }, + { + "appid": 3673180, + "normalized_name": "blossom's grove" + }, + { + "appid": 3673220, + "normalized_name": "the joycare" + }, + { + "appid": 3673300, + "normalized_name": "spellbound emporium" + }, + { + "appid": 3673360, + "normalized_name": "wizbuilder!" + }, + { + "appid": 3673400, + "normalized_name": "新宝島トーアの新天地開拓記 toaisnewland" + }, + { + "appid": 3673450, + "normalized_name": "potion politics simulator" + }, + { + "appid": 3673490, + "normalized_name": "eldramoor haven in the mist" + }, + { + "appid": 3673500, + "normalized_name": "backrooms" + }, + { + "appid": 3673540, + "normalized_name": "auto land mechanical horror" + }, + { + "appid": 3673550, + "normalized_name": "暗夜时代 age of dark" + }, + { + "appid": 3673560, + "normalized_name": "the museum of you" + }, + { + "appid": 3673630, + "normalized_name": "ashes of memory" + }, + { + "appid": 3673660, + "normalized_name": "東方凸凹遊戯" + }, + { + "appid": 3673710, + "normalized_name": "decay of worlds" + }, + { + "appid": 3673750, + "normalized_name": "temptation at sunset cove" + }, + { + "appid": 3673900, + "normalized_name": "re gals panic 2|幻想天蠶變 2" + }, + { + "appid": 3673910, + "normalized_name": "modular" + }, + { + "appid": 3673960, + "normalized_name": "akiiwan survival" + }, + { + "appid": 3673970, + "normalized_name": "memoria" + }, + { + "appid": 3673980, + "normalized_name": "quartermaster" + }, + { + "appid": 3674000, + "normalized_name": "arkwright" + }, + { + "appid": 3674050, + "normalized_name": "silly's gameshow" + }, + { + "appid": 3674080, + "normalized_name": "duskisle" + }, + { + "appid": 3674110, + "normalized_name": "luna obscura" + }, + { + "appid": 3674140, + "normalized_name": "finding annie" + }, + { + "appid": 3674150, + "normalized_name": "summer islands the board game" + }, + { + "appid": 3674170, + "normalized_name": "arcane assault" + }, + { + "appid": 3674200, + "normalized_name": "miner crysis" + }, + { + "appid": 3674240, + "normalized_name": "anura" + }, + { + "appid": 3674270, + "normalized_name": "fallstruktur" + }, + { + "appid": 3674590, + "normalized_name": "noirmancer" + }, + { + "appid": 3674690, + "normalized_name": "stay" + }, + { + "appid": 3674790, + "normalized_name": "russian survivors" + }, + { + "appid": 3674920, + "normalized_name": "markus's miasma" + }, + { + "appid": 3674930, + "normalized_name": "prison 69 24 hours in jail" + }, + { + "appid": 3674970, + "normalized_name": "colony 19" + }, + { + "appid": 3674980, + "normalized_name": "explosive odds" + }, + { + "appid": 3675060, + "normalized_name": "ゴブリン・ノーム・ホーン" + }, + { + "appid": 3675110, + "normalized_name": "地禍駐車場 the cursed underground parking lot" + }, + { + "appid": 3675130, + "normalized_name": "楽園樹海" + }, + { + "appid": 3675150, + "normalized_name": "donut riders" + }, + { + "appid": 3675160, + "normalized_name": "taima miko" + }, + { + "appid": 3675210, + "normalized_name": "drive and unwind" + }, + { + "appid": 3675240, + "normalized_name": "roger that" + }, + { + "appid": 3675290, + "normalized_name": "crystal gaiden origins" + }, + { + "appid": 3675320, + "normalized_name": "the lost crucible" + }, + { + "appid": 3675500, + "normalized_name": "snake 贪吃蛇" + }, + { + "appid": 3675510, + "normalized_name": "龍躍九天 情繫江湖" + }, + { + "appid": 3675530, + "normalized_name": "draw world 星屑の「勇者」" + }, + { + "appid": 3675540, + "normalized_name": "the darkness delivers" + }, + { + "appid": 3675570, + "normalized_name": "prism" + }, + { + "appid": 3675600, + "normalized_name": "hentai mature milf" + }, + { + "appid": 3675630, + "normalized_name": "another day to die" + }, + { + "appid": 3675700, + "normalized_name": "王国君主" + }, + { + "appid": 3675720, + "normalized_name": "seven days until morning" + }, + { + "appid": 3675880, + "normalized_name": "proximity effect" + }, + { + "appid": 3675890, + "normalized_name": "a life's journey" + }, + { + "appid": 3675920, + "normalized_name": "raft days" + }, + { + "appid": 3675950, + "normalized_name": "sky fields goober gardens" + }, + { + "appid": 3676030, + "normalized_name": "stackoban" + }, + { + "appid": 3676060, + "normalized_name": "half a cado" + }, + { + "appid": 3676080, + "normalized_name": "world in the abyss" + }, + { + "appid": 3676100, + "normalized_name": "life 2047 escape simulator" + }, + { + "appid": 3676140, + "normalized_name": "trawler's wake" + }, + { + "appid": 3676240, + "normalized_name": "emyliveshow dungeon & mistresses tale" + }, + { + "appid": 3676250, + "normalized_name": "boars in rome" + }, + { + "appid": 3676260, + "normalized_name": "hordelord" + }, + { + "appid": 3676310, + "normalized_name": "异星幸存者 nova survivors" + }, + { + "appid": 3676320, + "normalized_name": "梦西游" + }, + { + "appid": 3676330, + "normalized_name": "noflash" + }, + { + "appid": 3676430, + "normalized_name": "shade walkers" + }, + { + "appid": 3676450, + "normalized_name": "corridor exit 8" + }, + { + "appid": 3676460, + "normalized_name": "早洩外甥與性冷感阿姨—肉體交換物語~" + }, + { + "appid": 3676490, + "normalized_name": "喵喵茶餐厅" + }, + { + "appid": 3676500, + "normalized_name": "princess shall prevail" + }, + { + "appid": 3676510, + "normalized_name": "hgmgame wolf" + }, + { + "appid": 3676530, + "normalized_name": "rage enchanted manifested nightmare animatronics nullify tmwbs" + }, + { + "appid": 3676550, + "normalized_name": "isles of rain" + }, + { + "appid": 3676590, + "normalized_name": "witch please sex service" + }, + { + "appid": 3676600, + "normalized_name": "sereno" + }, + { + "appid": 3676670, + "normalized_name": "ashborn" + }, + { + "appid": 3676740, + "normalized_name": "lighting lanterns" + }, + { + "appid": 3676750, + "normalized_name": "moondark" + }, + { + "appid": 3676840, + "normalized_name": "dino ducks mayhem" + }, + { + "appid": 3676850, + "normalized_name": "blossom voyage" + }, + { + "appid": 3676870, + "normalized_name": "qume echoes of sand" + }, + { + "appid": 3676930, + "normalized_name": "the evil inside" + }, + { + "appid": 3676960, + "normalized_name": "the last train baquedano" + }, + { + "appid": 3677050, + "normalized_name": "habromania" + }, + { + "appid": 3677060, + "normalized_name": "electoral empire all lies trump truth" + }, + { + "appid": 3677070, + "normalized_name": "mark of cain" + }, + { + "appid": 3677120, + "normalized_name": "3tower" + }, + { + "appid": 3677140, + "normalized_name": "whispers of the hourglass" + }, + { + "appid": 3677290, + "normalized_name": "office intrigue" + }, + { + "appid": 3677310, + "normalized_name": "misty valley a cozy fishing tale" + }, + { + "appid": 3677370, + "normalized_name": "housekeeping" + }, + { + "appid": 3677400, + "normalized_name": "brix infinite" + }, + { + "appid": 3677420, + "normalized_name": "tile tales builder" + }, + { + "appid": 3677520, + "normalized_name": "goddess scroll the last starlight" + }, + { + "appid": 3677530, + "normalized_name": "pixelogic nonograms unlimited" + }, + { + "appid": 3677580, + "normalized_name": "blest" + }, + { + "appid": 3677620, + "normalized_name": "duoq" + }, + { + "appid": 3677650, + "normalized_name": "blocky's short quest" + }, + { + "appid": 3677750, + "normalized_name": "sex adventures incest family episode 8" + }, + { + "appid": 3677760, + "normalized_name": "interactive sex incest daughters episode 1" + }, + { + "appid": 3677780, + "normalized_name": "v monsters forgotten link" + }, + { + "appid": 3678070, + "normalized_name": "connected" + }, + { + "appid": 3678080, + "normalized_name": "ravenhille awakened" + }, + { + "appid": 3678110, + "normalized_name": "50 cents please" + }, + { + "appid": 3678130, + "normalized_name": "gutfarm" + }, + { + "appid": 3678250, + "normalized_name": "gooning simulator" + }, + { + "appid": 3678260, + "normalized_name": "sacker job simulator" + }, + { + "appid": 3678320, + "normalized_name": "末日来袭 美漫风.策略.卡牌.游戏" + }, + { + "appid": 3678330, + "normalized_name": "underworld tycoon" + }, + { + "appid": 3678350, + "normalized_name": "as we unite" + }, + { + "appid": 3678440, + "normalized_name": "up or fall" + }, + { + "appid": 3678450, + "normalized_name": "hyperdrive" + }, + { + "appid": 3678490, + "normalized_name": "oblivio" + }, + { + "appid": 3678600, + "normalized_name": "curse of the abyss" + }, + { + "appid": 3678690, + "normalized_name": "liminara" + }, + { + "appid": 3678750, + "normalized_name": "tiny dino" + }, + { + "appid": 3678770, + "normalized_name": "void protocol" + }, + { + "appid": 3678790, + "normalized_name": "aetherfall" + }, + { + "appid": 3678800, + "normalized_name": "boxing machine vr" + }, + { + "appid": 3678810, + "normalized_name": "reflection of sin" + }, + { + "appid": 3678860, + "normalized_name": "黑西行:诛八界(pigup)" + }, + { + "appid": 3678870, + "normalized_name": "happy nuclear" + }, + { + "appid": 3678880, + "normalized_name": "swarm sweeper" + }, + { + "appid": 3678900, + "normalized_name": "grim chan's soul fight" + }, + { + "appid": 3678920, + "normalized_name": "逆乱西游之西天取经" + }, + { + "appid": 3678930, + "normalized_name": "armed animals rpg" + }, + { + "appid": 3678950, + "normalized_name": "idle awakening mages path" + }, + { + "appid": 3679060, + "normalized_name": "bloodpact" + }, + { + "appid": 3679100, + "normalized_name": "慧音的寺子屋 ~ a schoolhouse in gensokyo" + }, + { + "appid": 3679190, + "normalized_name": "chernobots" + }, + { + "appid": 3679240, + "normalized_name": "melilot versus the madgic" + }, + { + "appid": 3679330, + "normalized_name": "pet hero vs zombie" + }, + { + "appid": 3679340, + "normalized_name": "of model simulator 2025" + }, + { + "appid": 3679350, + "normalized_name": "trump trade war" + }, + { + "appid": 3679390, + "normalized_name": "megadeka" + }, + { + "appid": 3679410, + "normalized_name": "cumboy in space 2" + }, + { + "appid": 3679440, + "normalized_name": "dichotomy illusion the coser disassembly incident" + }, + { + "appid": 3679470, + "normalized_name": "the dark legacy" + }, + { + "appid": 3679520, + "normalized_name": "fallen hunter" + }, + { + "appid": 3679540, + "normalized_name": "evershade the forgotten mansion" + }, + { + "appid": 3679590, + "normalized_name": "fox & finch 1 2 jellies!" + }, + { + "appid": 3679690, + "normalized_name": "duskmarch" + }, + { + "appid": 3679740, + "normalized_name": "профессор галактионов и начало робоапокалипсиса" + }, + { + "appid": 3679750, + "normalized_name": "shrine protectors" + }, + { + "appid": 3679760, + "normalized_name": "paper dungeon deep down" + }, + { + "appid": 3679870, + "normalized_name": "callmara" + }, + { + "appid": 3679920, + "normalized_name": "favela defender" + }, + { + "appid": 3679930, + "normalized_name": "factory planner" + }, + { + "appid": 3679940, + "normalized_name": "flappy harpy daddy" + }, + { + "appid": 3680040, + "normalized_name": "clean freak! perfect cook!" + }, + { + "appid": 3680060, + "normalized_name": "合欢宗不允许谈恋爱" + }, + { + "appid": 3680080, + "normalized_name": "ai painter" + }, + { + "appid": 3680090, + "normalized_name": "ratatata" + }, + { + "appid": 3680110, + "normalized_name": "love me" + }, + { + "appid": 3680140, + "normalized_name": "small bird poem" + }, + { + "appid": 3680150, + "normalized_name": "back alley brawl" + }, + { + "appid": 3680160, + "normalized_name": "vivid days" + }, + { + "appid": 3680170, + "normalized_name": "fear to survive" + }, + { + "appid": 3680240, + "normalized_name": "pressure point" + }, + { + "appid": 3680370, + "normalized_name": "turbo apex redline" + }, + { + "appid": 3680390, + "normalized_name": "anatomy of the terrible" + }, + { + "appid": 3680400, + "normalized_name": "lore of terra td" + }, + { + "appid": 3680410, + "normalized_name": "tears of vanfell new beginning" + }, + { + "appid": 3680420, + "normalized_name": "green ember helmer in the dragon tomb" + }, + { + "appid": 3680450, + "normalized_name": "junkyard space agency" + }, + { + "appid": 3680460, + "normalized_name": "velocity rift" + }, + { + "appid": 3680470, + "normalized_name": "touhou dream duel" + }, + { + "appid": 3680510, + "normalized_name": "sip fisher" + }, + { + "appid": 3680520, + "normalized_name": "tring!" + }, + { + "appid": 3680540, + "normalized_name": "sunset speedway" + }, + { + "appid": 3680550, + "normalized_name": "pixel nitro rush" + }, + { + "appid": 3680560, + "normalized_name": "torque drift x" + }, + { + "appid": 3680580, + "normalized_name": "the last gig" + }, + { + "appid": 3680600, + "normalized_name": "mana smack" + }, + { + "appid": 3680640, + "normalized_name": "living nightmares false familiar" + }, + { + "appid": 3680750, + "normalized_name": "cats ritual" + }, + { + "appid": 3680760, + "normalized_name": "yasuke my legendary samurai" + }, + { + "appid": 3680770, + "normalized_name": "dungeon star" + }, + { + "appid": 3680790, + "normalized_name": "chroma blasters" + }, + { + "appid": 3680860, + "normalized_name": "solitary" + }, + { + "appid": 3680870, + "normalized_name": "striatum" + }, + { + "appid": 3680900, + "normalized_name": "future war tactics sof vs alien invasion – turn based strategy" + }, + { + "appid": 3680910, + "normalized_name": "book travelers ii a royal story collector's" + }, + { + "appid": 3680950, + "normalized_name": "belief a god's burden" + }, + { + "appid": 3680970, + "normalized_name": "nebula swarm voidfire" + }, + { + "appid": 3680980, + "normalized_name": "ashes of the skyborn" + }, + { + "appid": 3681000, + "normalized_name": "赫夜 カグヤ" + }, + { + "appid": 3681100, + "normalized_name": "hgmgame fox" + }, + { + "appid": 3681110, + "normalized_name": "avenue zero" + }, + { + "appid": 3681140, + "normalized_name": "operation surface takeover" + }, + { + "appid": 3681160, + "normalized_name": "desktop slot" + }, + { + "appid": 3681220, + "normalized_name": "the light switch" + }, + { + "appid": 3681230, + "normalized_name": "observe" + }, + { + "appid": 3681270, + "normalized_name": "digi doll" + }, + { + "appid": 3681280, + "normalized_name": "anime girls fantasy desire [uncensored]" + }, + { + "appid": 3681310, + "normalized_name": "my mentally unstable streamer girlfriend is an abusive sadist" + }, + { + "appid": 3681340, + "normalized_name": "all living things" + }, + { + "appid": 3681480, + "normalized_name": "nightmare visions chapter 1" + }, + { + "appid": 3681520, + "normalized_name": "天文节气" + }, + { + "appid": 3681550, + "normalized_name": "emoiro" + }, + { + "appid": 3681590, + "normalized_name": "vsky x mmorpg" + }, + { + "appid": 3681650, + "normalized_name": "the lavarish facility" + }, + { + "appid": 3681690, + "normalized_name": "волшебная свадьба гусляра ивана" + }, + { + "appid": 3681700, + "normalized_name": "sunberry care center" + }, + { + "appid": 3681750, + "normalized_name": "summer passion" + }, + { + "appid": 3681780, + "normalized_name": "tiny gunmon" + }, + { + "appid": 3681810, + "normalized_name": "blue protocol star resonance" + }, + { + "appid": 3681820, + "normalized_name": "moonminers" + }, + { + "appid": 3681830, + "normalized_name": "walter's adventure" + }, + { + "appid": 3681890, + "normalized_name": "day x" + }, + { + "appid": 3681940, + "normalized_name": "hidden cats rome" + }, + { + "appid": 3681960, + "normalized_name": "the last kich of us" + }, + { + "appid": 3682040, + "normalized_name": "heizen airspace" + }, + { + "appid": 3682050, + "normalized_name": "sickly days and summer traces" + }, + { + "appid": 3682060, + "normalized_name": "vocator" + }, + { + "appid": 3682070, + "normalized_name": "widget warriors" + }, + { + "appid": 3682080, + "normalized_name": "gambler’s loop" + }, + { + "appid": 3682110, + "normalized_name": "roadkill" + }, + { + "appid": 3682170, + "normalized_name": "wobble wars" + }, + { + "appid": 3682210, + "normalized_name": "hardwired" + }, + { + "appid": 3682250, + "normalized_name": "my little friend chibi" + }, + { + "appid": 3682260, + "normalized_name": "getrix" + }, + { + "appid": 3682290, + "normalized_name": "peskit" + }, + { + "appid": 3682300, + "normalized_name": "exile" + }, + { + "appid": 3682360, + "normalized_name": "きっと大丈夫だよね!" + }, + { + "appid": 3682370, + "normalized_name": "breakout season" + }, + { + "appid": 3682380, + "normalized_name": "dogwood" + }, + { + "appid": 3682400, + "normalized_name": "parabellum siege of legends" + }, + { + "appid": 3682440, + "normalized_name": "othello battleroyale" + }, + { + "appid": 3682450, + "normalized_name": "nina" + }, + { + "appid": 3682500, + "normalized_name": "my mum's garden" + }, + { + "appid": 3682520, + "normalized_name": "escape from the island" + }, + { + "appid": 3682530, + "normalized_name": "尸来运转 lucky zombie survival" + }, + { + "appid": 3682550, + "normalized_name": "birb game" + }, + { + "appid": 3682620, + "normalized_name": "sos (save our sandwiches)" + }, + { + "appid": 3682680, + "normalized_name": "gunloop protocol" + }, + { + "appid": 3682700, + "normalized_name": "girls i just want to get paid!" + }, + { + "appid": 3682730, + "normalized_name": "lead horizon" + }, + { + "appid": 3682750, + "normalized_name": "echo bastion" + }, + { + "appid": 3682760, + "normalized_name": "dead in your trackz" + }, + { + "appid": 3682820, + "normalized_name": "i want to cook like mom" + }, + { + "appid": 3682850, + "normalized_name": "who summoned it?" + }, + { + "appid": 3682880, + "normalized_name": "variance" + }, + { + "appid": 3682900, + "normalized_name": "abelina" + }, + { + "appid": 3682910, + "normalized_name": "a game about cards" + }, + { + "appid": 3682920, + "normalized_name": "chicken coop invaders" + }, + { + "appid": 3682940, + "normalized_name": "dreamless kingdom" + }, + { + "appid": 3682950, + "normalized_name": "b.o.o. squad" + }, + { + "appid": 3683010, + "normalized_name": "mandatory fun" + }, + { + "appid": 3683030, + "normalized_name": "anime" + }, + { + "appid": 3683040, + "normalized_name": "hentai boxing maggie" + }, + { + "appid": 3683090, + "normalized_name": "battle of nowhere" + }, + { + "appid": 3683160, + "normalized_name": "mad experiments escape room sanctuary" + }, + { + "appid": 3683250, + "normalized_name": "laburantitos" + }, + { + "appid": 3683270, + "normalized_name": "college simulator who is the killer?" + }, + { + "appid": 3683410, + "normalized_name": "split times" + }, + { + "appid": 3683450, + "normalized_name": "otaku survival horror" + }, + { + "appid": 3683640, + "normalized_name": "only up?climb the tower!" + }, + { + "appid": 3683680, + "normalized_name": "pawfee bean" + }, + { + "appid": 3683690, + "normalized_name": "bonki bonk" + }, + { + "appid": 3683700, + "normalized_name": "topzerah" + }, + { + "appid": 3683740, + "normalized_name": "monster kingdom thefirst" + }, + { + "appid": 3683800, + "normalized_name": "beer onsen resort" + }, + { + "appid": 3683860, + "normalized_name": "maple wars" + }, + { + "appid": 3683880, + "normalized_name": "abandoned hospital" + }, + { + "appid": 3683910, + "normalized_name": "pinball crush" + }, + { + "appid": 3683920, + "normalized_name": "beat up my dreams" + }, + { + "appid": 3683930, + "normalized_name": "あれぐろもるとをきくゲーム" + }, + { + "appid": 3683960, + "normalized_name": "magical runes" + }, + { + "appid": 3683980, + "normalized_name": "你的屁股" + }, + { + "appid": 3684010, + "normalized_name": "3 hell" + }, + { + "appid": 3684040, + "normalized_name": "super stripe" + }, + { + "appid": 3684050, + "normalized_name": "selling game" + }, + { + "appid": 3684080, + "normalized_name": "d.e.l.i.v.e.r.e.r.s." + }, + { + "appid": 3684120, + "normalized_name": "sectoris sky" + }, + { + "appid": 3684170, + "normalized_name": "interactive sex futanari incest episode 1" + }, + { + "appid": 3684300, + "normalized_name": "war of the worlds new york" + }, + { + "appid": 3684320, + "normalized_name": "clutter 18 joe's challenge collector's" + }, + { + "appid": 3684330, + "normalized_name": "hop's awakening!" + }, + { + "appid": 3684350, + "normalized_name": "doomclock" + }, + { + "appid": 3684370, + "normalized_name": "rabbit's hop" + }, + { + "appid": 3684390, + "normalized_name": "nanna" + }, + { + "appid": 3684410, + "normalized_name": "goat stand and turtle guy" + }, + { + "appid": 3684430, + "normalized_name": "dreamnest" + }, + { + "appid": 3684480, + "normalized_name": "meowventure" + }, + { + "appid": 3684540, + "normalized_name": "capybara cafe chronicles" + }, + { + "appid": 3684590, + "normalized_name": "heaven's gambler" + }, + { + "appid": 3684600, + "normalized_name": "lost signal" + }, + { + "appid": 3684610, + "normalized_name": "s.p.l.i.t" + }, + { + "appid": 3684630, + "normalized_name": "退休冒险家的小镇 adventopia" + }, + { + "appid": 3684690, + "normalized_name": "bonjour cream inside 💦" + }, + { + "appid": 3684700, + "normalized_name": "empire of lust 🏛" + }, + { + "appid": 3684720, + "normalized_name": "diner simulator 🍔" + }, + { + "appid": 3684740, + "normalized_name": "kingdom cum deep entrance 🏰" + }, + { + "appid": 3684760, + "normalized_name": "mixxpell" + }, + { + "appid": 3684800, + "normalized_name": "frustration factory" + }, + { + "appid": 3684820, + "normalized_name": "prime world classic" + }, + { + "appid": 3684830, + "normalized_name": "tales of mystic world" + }, + { + "appid": 3684850, + "normalized_name": "the haunted riddle" + }, + { + "appid": 3684860, + "normalized_name": "prostitute simulator 3" + }, + { + "appid": 3684880, + "normalized_name": "many ducks" + }, + { + "appid": 3684920, + "normalized_name": "z mission breakout" + }, + { + "appid": 3685020, + "normalized_name": "estrella quest" + }, + { + "appid": 3685040, + "normalized_name": "type & magic" + }, + { + "appid": 3685060, + "normalized_name": "speedcoins" + }, + { + "appid": 3685120, + "normalized_name": "vampire skuf" + }, + { + "appid": 3685170, + "normalized_name": "地球倒数日:981赫兹" + }, + { + "appid": 3685180, + "normalized_name": "cubeverse the lonely planets" + }, + { + "appid": 3685270, + "normalized_name": "the yellow files" + }, + { + "appid": 3685280, + "normalized_name": "dungeons of uhr" + }, + { + "appid": 3685310, + "normalized_name": "mega mouse" + }, + { + "appid": 3685340, + "normalized_name": "my milf stepmom free use💋" + }, + { + "appid": 3685370, + "normalized_name": "黑山羊blackgoat" + }, + { + "appid": 3685510, + "normalized_name": "depth of debts" + }, + { + "appid": 3685530, + "normalized_name": "mind split" + }, + { + "appid": 3685540, + "normalized_name": "只要你幸福就好" + }, + { + "appid": 3685550, + "normalized_name": "my sadistic yandere goth mom mercilessly dominates me" + }, + { + "appid": 3685600, + "normalized_name": "ozric" + }, + { + "appid": 3685650, + "normalized_name": "eysan" + }, + { + "appid": 3685670, + "normalized_name": "walking on ice" + }, + { + "appid": 3685740, + "normalized_name": "arcanard" + }, + { + "appid": 3685830, + "normalized_name": "trump horror" + }, + { + "appid": 3685850, + "normalized_name": "synthetic captive" + }, + { + "appid": 3685900, + "normalized_name": "creepy support" + }, + { + "appid": 3685980, + "normalized_name": "entity strike" + }, + { + "appid": 3686050, + "normalized_name": "nude cat fights" + }, + { + "appid": 3686080, + "normalized_name": "forest of siege" + }, + { + "appid": 3686200, + "normalized_name": "digital desktop cats" + }, + { + "appid": 3686370, + "normalized_name": "strip miner" + }, + { + "appid": 3686390, + "normalized_name": "hotel hellion" + }, + { + "appid": 3686400, + "normalized_name": "titan core" + }, + { + "appid": 3686450, + "normalized_name": "john parkour" + }, + { + "appid": 3686460, + "normalized_name": "cell servant" + }, + { + "appid": 3686500, + "normalized_name": "quantum eye" + }, + { + "appid": 3686550, + "normalized_name": "fallbound" + }, + { + "appid": 3686580, + "normalized_name": "repel the rifts" + }, + { + "appid": 3686610, + "normalized_name": "2048:数字拼图与策略的终极挑战" + }, + { + "appid": 3686650, + "normalized_name": "囚笼少女" + }, + { + "appid": 3686670, + "normalized_name": "beware of space dragons" + }, + { + "appid": 3686690, + "normalized_name": "dark origins" + }, + { + "appid": 3686710, + "normalized_name": "gacha idle" + }, + { + "appid": 3686810, + "normalized_name": "cave trek" + }, + { + "appid": 3686880, + "normalized_name": "dwarfhold tokens & towers" + }, + { + "appid": 3686920, + "normalized_name": "cursed shorts" + }, + { + "appid": 3686940, + "normalized_name": "uncanny tales 1992" + }, + { + "appid": 3686990, + "normalized_name": "亡犬 dead dog" + }, + { + "appid": 3687010, + "normalized_name": "boom cube" + }, + { + "appid": 3687020, + "normalized_name": "walls" + }, + { + "appid": 3687110, + "normalized_name": "[开路先锋]" + }, + { + "appid": 3687120, + "normalized_name": "蘑菇庄园(mushroom manor)" + }, + { + "appid": 3687250, + "normalized_name": "epileptic spectrum" + }, + { + "appid": 3687280, + "normalized_name": "viagem à varksa" + }, + { + "appid": 3687320, + "normalized_name": "mystery of myths mystery of the fjords collector's" + }, + { + "appid": 3687340, + "normalized_name": "e4c fallen arena" + }, + { + "appid": 3687350, + "normalized_name": "tiny truck simulator" + }, + { + "appid": 3687370, + "normalized_name": "the borderless" + }, + { + "appid": 3687410, + "normalized_name": "dead station files" + }, + { + "appid": 3687450, + "normalized_name": "dad left me in the car" + }, + { + "appid": 3687530, + "normalized_name": "tank defeater" + }, + { + "appid": 3687560, + "normalized_name": "sfsim" + }, + { + "appid": 3687580, + "normalized_name": "strength in numbers" + }, + { + "appid": 3687600, + "normalized_name": "seeking the guardian" + }, + { + "appid": 3687710, + "normalized_name": "sugar sling showdown" + }, + { + "appid": 3687720, + "normalized_name": "leximorph word merge game" + }, + { + "appid": 3687730, + "normalized_name": "idle colors" + }, + { + "appid": 3687760, + "normalized_name": "bianka lovesick" + }, + { + "appid": 3687780, + "normalized_name": "gpu inferno" + }, + { + "appid": 3687790, + "normalized_name": "deadliest pigeon" + }, + { + "appid": 3687810, + "normalized_name": "时光超市" + }, + { + "appid": 3687890, + "normalized_name": "cots" + }, + { + "appid": 3687910, + "normalized_name": "in the dark" + }, + { + "appid": 3687940, + "normalized_name": "missing hearts crimson cruise collector's" + }, + { + "appid": 3688030, + "normalized_name": "trials of proelium" + }, + { + "appid": 3688040, + "normalized_name": "phantom grid" + }, + { + "appid": 3688050, + "normalized_name": "patch play" + }, + { + "appid": 3688080, + "normalized_name": "tribute clicker" + }, + { + "appid": 3688120, + "normalized_name": "memoria altera" + }, + { + "appid": 3688130, + "normalized_name": "moldwasher" + }, + { + "appid": 3688140, + "normalized_name": "mine spiders" + }, + { + "appid": 3688150, + "normalized_name": "阿比斯终焉幸存者 abyss eschaton survivors" + }, + { + "appid": 3688160, + "normalized_name": "神佑竞技场" + }, + { + "appid": 3688210, + "normalized_name": "tolom" + }, + { + "appid": 3688250, + "normalized_name": "gladiator fights" + }, + { + "appid": 3688310, + "normalized_name": "cosmic tempest" + }, + { + "appid": 3688330, + "normalized_name": "fishing time" + }, + { + "appid": 3688340, + "normalized_name": "all about chopsticks" + }, + { + "appid": 3688410, + "normalized_name": "catpillar" + }, + { + "appid": 3688420, + "normalized_name": "brainrot animal quizzes" + }, + { + "appid": 3688460, + "normalized_name": "blood & bananas" + }, + { + "appid": 3688470, + "normalized_name": "致恶灵的你(to you the evil spirit)" + }, + { + "appid": 3688480, + "normalized_name": "canyon of outlaws" + }, + { + "appid": 3688510, + "normalized_name": "ruling horsestown" + }, + { + "appid": 3688540, + "normalized_name": "pocket hoes" + }, + { + "appid": 3688630, + "normalized_name": "heart idler" + }, + { + "appid": 3688650, + "normalized_name": "false alarm" + }, + { + "appid": 3688730, + "normalized_name": "apocalypse of the universe" + }, + { + "appid": 3688780, + "normalized_name": "colonterra" + }, + { + "appid": 3689000, + "normalized_name": "protocol meltdown" + }, + { + "appid": 3689040, + "normalized_name": "van v. vamp" + }, + { + "appid": 3689060, + "normalized_name": "desktop forest" + }, + { + "appid": 3689090, + "normalized_name": "labyrinth dracula's lair" + }, + { + "appid": 3689140, + "normalized_name": "contraindication" + }, + { + "appid": 3689200, + "normalized_name": "페리오드 서바이벌 마지막 시련" + }, + { + "appid": 3689210, + "normalized_name": "hyperfist" + }, + { + "appid": 3689220, + "normalized_name": "cave oasis at shylake" + }, + { + "appid": 3689240, + "normalized_name": "mumagi stellar saviors" + }, + { + "appid": 3689250, + "normalized_name": "to the loot land" + }, + { + "appid": 3689270, + "normalized_name": "our exciting summer camp" + }, + { + "appid": 3689280, + "normalized_name": "die fighter" + }, + { + "appid": 3689390, + "normalized_name": "swamp keeper" + }, + { + "appid": 3689420, + "normalized_name": "velocity arena" + }, + { + "appid": 3689490, + "normalized_name": "idle dangers" + }, + { + "appid": 3689520, + "normalized_name": "bioprototype" + }, + { + "appid": 3689540, + "normalized_name": "king's raid" + }, + { + "appid": 3689550, + "normalized_name": "outlanders hunt and survive" + }, + { + "appid": 3689560, + "normalized_name": "bossfish" + }, + { + "appid": 3689570, + "normalized_name": "orbitrel" + }, + { + "appid": 3689620, + "normalized_name": "war of the wilds" + }, + { + "appid": 3689640, + "normalized_name": "super tennis breakout" + }, + { + "appid": 3689660, + "normalized_name": "夜巡守则" + }, + { + "appid": 3689670, + "normalized_name": "the triminals" + }, + { + "appid": 3689680, + "normalized_name": "奥术轮回 arcane eternity" + }, + { + "appid": 3689690, + "normalized_name": "saratoga" + }, + { + "appid": 3689700, + "normalized_name": "新古典:流彩演奏家" + }, + { + "appid": 3689710, + "normalized_name": "rattus velocitas" + }, + { + "appid": 3689840, + "normalized_name": "inspektor" + }, + { + "appid": 3689860, + "normalized_name": "mount lomyst" + }, + { + "appid": 3689890, + "normalized_name": "god's league" + }, + { + "appid": 3689920, + "normalized_name": "职场破坏者" + }, + { + "appid": 3689930, + "normalized_name": "super stroke the pants" + }, + { + "appid": 3690010, + "normalized_name": "who's at the door?" + }, + { + "appid": 3690030, + "normalized_name": "the last gas station" + }, + { + "appid": 3690100, + "normalized_name": "among space" + }, + { + "appid": 3690170, + "normalized_name": "empyrean//you" + }, + { + "appid": 3690200, + "normalized_name": "三国志群雄天下" + }, + { + "appid": 3690220, + "normalized_name": "one day of romance" + }, + { + "appid": 3690230, + "normalized_name": "one night of romance with my waifu" + }, + { + "appid": 3690250, + "normalized_name": "enchanted vampire defense" + }, + { + "appid": 3690280, + "normalized_name": "blobbert and tutorialbert" + }, + { + "appid": 3690320, + "normalized_name": "the last earth fighter" + }, + { + "appid": 3690390, + "normalized_name": "pictective" + }, + { + "appid": 3690420, + "normalized_name": "桜色の夢を見て、僕は君に恋をする" + }, + { + "appid": 3690450, + "normalized_name": "paloo spiral" + }, + { + "appid": 3690460, + "normalized_name": "flick solitaire" + }, + { + "appid": 3690470, + "normalized_name": "super tsa" + }, + { + "appid": 3690510, + "normalized_name": "faceball captain" + }, + { + "appid": 3690530, + "normalized_name": "末日之火(doomsdayfire)" + }, + { + "appid": 3690550, + "normalized_name": "ohayo gianthook! monster fishing adventure" + }, + { + "appid": 3690560, + "normalized_name": "neko neko love" + }, + { + "appid": 3690570, + "normalized_name": "ms vampire love to date with me" + }, + { + "appid": 3690630, + "normalized_name": "practical pinball" + }, + { + "appid": 3690650, + "normalized_name": "一橋動物記" + }, + { + "appid": 3690660, + "normalized_name": "carrot time" + }, + { + "appid": 3690670, + "normalized_name": "the aquarium" + }, + { + "appid": 3690690, + "normalized_name": "infinite loop backrooms" + }, + { + "appid": 3690720, + "normalized_name": "growmancer" + }, + { + "appid": 3690750, + "normalized_name": "once upon a mind a little too friendly" + }, + { + "appid": 3690780, + "normalized_name": "hemomancer" + }, + { + "appid": 3690810, + "normalized_name": "actual roommates!" + }, + { + "appid": 3690820, + "normalized_name": "people of mine" + }, + { + "appid": 3690850, + "normalized_name": "asterika phantom rose refrain" + }, + { + "appid": 3690860, + "normalized_name": "enchanted desert" + }, + { + "appid": 3690870, + "normalized_name": "tow game" + }, + { + "appid": 3690890, + "normalized_name": "odd dorable" + }, + { + "appid": 3690900, + "normalized_name": "mystic shroom" + }, + { + "appid": 3690920, + "normalized_name": "winters wrath" + }, + { + "appid": 3690980, + "normalized_name": "screen boy" + }, + { + "appid": 3690990, + "normalized_name": "don't freeze" + }, + { + "appid": 3691020, + "normalized_name": "interactive sex incest twins episode 1" + }, + { + "appid": 3691030, + "normalized_name": "cursor blast" + }, + { + "appid": 3691050, + "normalized_name": "tiny vinyard" + }, + { + "appid": 3691060, + "normalized_name": "ashuk and mashuk" + }, + { + "appid": 3691100, + "normalized_name": "is this a game?" + }, + { + "appid": 3691180, + "normalized_name": "roundurbs" + }, + { + "appid": 3691190, + "normalized_name": "fed chairman" + }, + { + "appid": 3691210, + "normalized_name": "awrak" + }, + { + "appid": 3691240, + "normalized_name": "the midnight exorcist" + }, + { + "appid": 3691290, + "normalized_name": "medusa" + }, + { + "appid": 3691300, + "normalized_name": "三国混战" + }, + { + "appid": 3691400, + "normalized_name": "forgebound" + }, + { + "appid": 3691430, + "normalized_name": "blood of the lamb" + }, + { + "appid": 3691460, + "normalized_name": "isles of corvus" + }, + { + "appid": 3691510, + "normalized_name": "bandit" + }, + { + "appid": 3691520, + "normalized_name": "library simulator" + }, + { + "appid": 3691550, + "normalized_name": "rock paper scissors party" + }, + { + "appid": 3691640, + "normalized_name": "lovecraft" + }, + { + "appid": 3691670, + "normalized_name": "light and sneak" + }, + { + "appid": 3691680, + "normalized_name": "anomalous railroad crossing | 異変踏切" + }, + { + "appid": 3691730, + "normalized_name": "sweet delivery" + }, + { + "appid": 3691760, + "normalized_name": "回忆忘却之看板娘" + }, + { + "appid": 3691770, + "normalized_name": "universes alike 2" + }, + { + "appid": 3691780, + "normalized_name": "continuum keeper" + }, + { + "appid": 3691920, + "normalized_name": "车速太快了" + }, + { + "appid": 3691940, + "normalized_name": "pokerii" + }, + { + "appid": 3691950, + "normalized_name": "elunar" + }, + { + "appid": 3692010, + "normalized_name": "foreman frenzy!" + }, + { + "appid": 3692040, + "normalized_name": "oblivion" + }, + { + "appid": 3692050, + "normalized_name": "the soul stone war 3" + }, + { + "appid": 3692070, + "normalized_name": "one man´s trash" + }, + { + "appid": 3692100, + "normalized_name": "ghost vcd" + }, + { + "appid": 3692110, + "normalized_name": "journey of the garden rose" + }, + { + "appid": 3692160, + "normalized_name": "lets nuke mars" + }, + { + "appid": 3692180, + "normalized_name": "washout" + }, + { + "appid": 3692200, + "normalized_name": "train your fingers lab" + }, + { + "appid": 3692240, + "normalized_name": "deer hunting camp" + }, + { + "appid": 3692250, + "normalized_name": "as i survive" + }, + { + "appid": 3692260, + "normalized_name": "booster" + }, + { + "appid": 3692300, + "normalized_name": "chronicles of childhood" + }, + { + "appid": 3692320, + "normalized_name": "galactic coffee shop" + }, + { + "appid": 3692370, + "normalized_name": "galdia" + }, + { + "appid": 3692530, + "normalized_name": "exit strategy" + }, + { + "appid": 3692620, + "normalized_name": "loot profit" + }, + { + "appid": 3692650, + "normalized_name": "honeycomb coins" + }, + { + "appid": 3692660, + "normalized_name": "the new flesh" + }, + { + "appid": 3692680, + "normalized_name": "ego" + }, + { + "appid": 3692720, + "normalized_name": "dna 2 episode 1" + }, + { + "appid": 3692730, + "normalized_name": "hyrax in the rocks" + }, + { + "appid": 3692740, + "normalized_name": "project obscure" + }, + { + "appid": 3692770, + "normalized_name": "the flying dutchman" + }, + { + "appid": 3692780, + "normalized_name": "revenant's reach" + }, + { + "appid": 3692880, + "normalized_name": "seraphonin" + }, + { + "appid": 3692890, + "normalized_name": "边界过载" + }, + { + "appid": 3692970, + "normalized_name": "沉默传奇" + }, + { + "appid": 3693000, + "normalized_name": "the last waltz" + }, + { + "appid": 3693030, + "normalized_name": "king of bones" + }, + { + "appid": 3693050, + "normalized_name": "cururu whispers of the enchanted forest" + }, + { + "appid": 3693150, + "normalized_name": "office bot simulator" + }, + { + "appid": 3693190, + "normalized_name": "avalone's adventurers my parents were assassinated so i've started an adventuring party to avoid a political marriage" + }, + { + "appid": 3693260, + "normalized_name": "room for one!" + }, + { + "appid": 3693340, + "normalized_name": "calypso" + }, + { + "appid": 3693350, + "normalized_name": "三国.群英志" + }, + { + "appid": 3693360, + "normalized_name": "ghost in the grid" + }, + { + "appid": 3693370, + "normalized_name": "masters of anghoul" + }, + { + "appid": 3693380, + "normalized_name": "richat structure" + }, + { + "appid": 3693450, + "normalized_name": "cyberrhapsody" + }, + { + "appid": 3693510, + "normalized_name": "dwarf simulator" + }, + { + "appid": 3693530, + "normalized_name": "100 cats world" + }, + { + "appid": 3693590, + "normalized_name": "晶石战记" + }, + { + "appid": 3693710, + "normalized_name": "sweet camping" + }, + { + "appid": 3693720, + "normalized_name": "concerto on white cajon story" + }, + { + "appid": 3693730, + "normalized_name": "equate 8" + }, + { + "appid": 3693830, + "normalized_name": "museum guard exhibit unknown" + }, + { + "appid": 3693870, + "normalized_name": "奇异贴纸簿 mystic stickerbook" + }, + { + "appid": 3693900, + "normalized_name": "dumpyland" + }, + { + "appid": 3693970, + "normalized_name": "plant tales" + }, + { + "appid": 3694010, + "normalized_name": "cat rescue inc." + }, + { + "appid": 3694060, + "normalized_name": "manos the hands of choice" + }, + { + "appid": 3694070, + "normalized_name": "贪婪小队(greedy squad)" + }, + { + "appid": 3694110, + "normalized_name": "glide btl" + }, + { + "appid": 3694190, + "normalized_name": "deep pixel melancholy" + }, + { + "appid": 3694230, + "normalized_name": "ghost ripper" + }, + { + "appid": 3694240, + "normalized_name": "hidden bananas" + }, + { + "appid": 3694260, + "normalized_name": "casual sport series badminton" + }, + { + "appid": 3694270, + "normalized_name": "chasing her light" + }, + { + "appid": 3694350, + "normalized_name": "影棲:deliverance" + }, + { + "appid": 3694470, + "normalized_name": "coupling" + }, + { + "appid": 3694530, + "normalized_name": "relic digger" + }, + { + "appid": 3694550, + "normalized_name": "kholin echo" + }, + { + "appid": 3694580, + "normalized_name": "pure instinct katana" + }, + { + "appid": 3694590, + "normalized_name": "haunted room 205" + }, + { + "appid": 3694620, + "normalized_name": "truck world australia first haul" + }, + { + "appid": 3694710, + "normalized_name": "others" + }, + { + "appid": 3694720, + "normalized_name": "beforedisaster" + }, + { + "appid": 3694740, + "normalized_name": "bean sidhe" + }, + { + "appid": 3694760, + "normalized_name": "starvedge" + }, + { + "appid": 3694770, + "normalized_name": "target dragon 2 maze runner" + }, + { + "appid": 3694840, + "normalized_name": "mini painter" + }, + { + "appid": 3694870, + "normalized_name": "cosmic castaway" + }, + { + "appid": 3694880, + "normalized_name": "hero's ignition" + }, + { + "appid": 3694910, + "normalized_name": "tank busters" + }, + { + "appid": 3694980, + "normalized_name": "regression" + }, + { + "appid": 3694990, + "normalized_name": "ecos da mata" + }, + { + "appid": 3695010, + "normalized_name": "mr. cloak" + }, + { + "appid": 3695020, + "normalized_name": "beat dodger" + }, + { + "appid": 3695040, + "normalized_name": "chamy ball" + }, + { + "appid": 3695080, + "normalized_name": "beneath the static" + }, + { + "appid": 3695090, + "normalized_name": "no way out" + }, + { + "appid": 3695100, + "normalized_name": "whispers from the cellar" + }, + { + "appid": 3695110, + "normalized_name": "warborn dominion tactics" + }, + { + "appid": 3695120, + "normalized_name": "stellar riftfront" + }, + { + "appid": 3695130, + "normalized_name": "ironroots siege and soil" + }, + { + "appid": 3695140, + "normalized_name": "survive the silence" + }, + { + "appid": 3695190, + "normalized_name": "z evil road" + }, + { + "appid": 3695390, + "normalized_name": "brainrot story of glorbo frutodrillo & ballerino cappuccino" + }, + { + "appid": 3695440, + "normalized_name": "coreward" + }, + { + "appid": 3695470, + "normalized_name": "rock quest a rhythm adventure" + }, + { + "appid": 3695570, + "normalized_name": "h.a.d.e.s zero" + }, + { + "appid": 3695580, + "normalized_name": "sea of souls" + }, + { + "appid": 3695600, + "normalized_name": "spin shop simulator" + }, + { + "appid": 3695630, + "normalized_name": "project landsword" + }, + { + "appid": 3695640, + "normalized_name": "jurassic gym" + }, + { + "appid": 3695950, + "normalized_name": "safe inside" + }, + { + "appid": 3695970, + "normalized_name": "ejaculation treatment by nurse luna with her bursting tits in a sexual treatment ward! ~3dcg animation animation~" + }, + { + "appid": 3695990, + "normalized_name": "mystery case files a crime in reflection collector's" + }, + { + "appid": 3696000, + "normalized_name": "anime dream match boys" + }, + { + "appid": 3696080, + "normalized_name": "zombie outbreak 1942" + }, + { + "appid": 3696090, + "normalized_name": "sub terra" + }, + { + "appid": 3696110, + "normalized_name": "square game" + }, + { + "appid": 3696140, + "normalized_name": "dyson era idle" + }, + { + "appid": 3696150, + "normalized_name": "サキュバスクエスト ~succubus quest~" + }, + { + "appid": 3696160, + "normalized_name": "the goblin game" + }, + { + "appid": 3696180, + "normalized_name": "失落世界幸存者" + }, + { + "appid": 3696710, + "normalized_name": "2025" + }, + { + "appid": 3696730, + "normalized_name": "oil town" + }, + { + "appid": 3697140, + "normalized_name": "nina’s sugar cage" + }, + { + "appid": 3697150, + "normalized_name": "defense legend 5 survivor td" + }, + { + "appid": 3697170, + "normalized_name": "module miner" + }, + { + "appid": 3697180, + "normalized_name": "dicey heroes" + }, + { + "appid": 3697240, + "normalized_name": "idle cultivation" + }, + { + "appid": 3697280, + "normalized_name": "space bubbles must die!" + }, + { + "appid": 3697350, + "normalized_name": "gtl schedule" + }, + { + "appid": 3697370, + "normalized_name": "beyond the space wall" + }, + { + "appid": 3697390, + "normalized_name": "cell craft 细胞工艺" + }, + { + "appid": 3697560, + "normalized_name": "pizza deathlivery" + }, + { + "appid": 3697670, + "normalized_name": "nanostorm" + }, + { + "appid": 3697750, + "normalized_name": "guardian of the light" + }, + { + "appid": 3697770, + "normalized_name": "kleptomaniacs" + }, + { + "appid": 3697780, + "normalized_name": "berrycade brawl" + }, + { + "appid": 3697860, + "normalized_name": "cheliki" + }, + { + "appid": 3697870, + "normalized_name": "warehouse warrior" + }, + { + "appid": 3697880, + "normalized_name": "legends esport manager" + }, + { + "appid": 3697890, + "normalized_name": "mango's fisharium" + }, + { + "appid": 3697950, + "normalized_name": "scratchers" + }, + { + "appid": 3698050, + "normalized_name": "remembering emily" + }, + { + "appid": 3698130, + "normalized_name": "mine idle craft" + }, + { + "appid": 3698150, + "normalized_name": "zombitality" + }, + { + "appid": 3698200, + "normalized_name": "soulgatherer" + }, + { + "appid": 3698230, + "normalized_name": "grumpy jack" + }, + { + "appid": 3698240, + "normalized_name": "escape the desert" + }, + { + "appid": 3698250, + "normalized_name": "master of cigkofte" + }, + { + "appid": 3698340, + "normalized_name": "codeyssey" + }, + { + "appid": 3698420, + "normalized_name": "soul machine" + }, + { + "appid": 3698470, + "normalized_name": "simulacro" + }, + { + "appid": 3698490, + "normalized_name": "acrodrift fpv drone simulator" + }, + { + "appid": 3698510, + "normalized_name": "kick and hide" + }, + { + "appid": 3698540, + "normalized_name": "30 days adrift" + }, + { + "appid": 3698550, + "normalized_name": "merciless vixxxen" + }, + { + "appid": 3698590, + "normalized_name": "amato" + }, + { + "appid": 3698600, + "normalized_name": "paper depths" + }, + { + "appid": 3698640, + "normalized_name": "chronicles from the abyss" + }, + { + "appid": 3698700, + "normalized_name": "case sealed" + }, + { + "appid": 3698720, + "normalized_name": "ランブルバースト" + }, + { + "appid": 3698830, + "normalized_name": "infernal antlers" + }, + { + "appid": 3698900, + "normalized_name": "steal out" + }, + { + "appid": 3699100, + "normalized_name": "safe zone" + }, + { + "appid": 3699210, + "normalized_name": "fucking my favorite characters" + }, + { + "appid": 3699330, + "normalized_name": "motile works" + }, + { + "appid": 3699350, + "normalized_name": "a game about building a tower" + }, + { + "appid": 3699380, + "normalized_name": "space memory butterflies" + }, + { + "appid": 3699390, + "normalized_name": "little mage" + }, + { + "appid": 3699450, + "normalized_name": "the masochistic ball" + }, + { + "appid": 3699490, + "normalized_name": "super potion pals" + }, + { + "appid": 3699510, + "normalized_name": "trooops" + }, + { + "appid": 3699520, + "normalized_name": "flip wave" + }, + { + "appid": 3699720, + "normalized_name": "prolific mindset" + }, + { + "appid": 3699870, + "normalized_name": "sea life explorer collector's" + }, + { + "appid": 3699910, + "normalized_name": "lines of battle" + }, + { + "appid": 3699920, + "normalized_name": "project centurion" + }, + { + "appid": 3699950, + "normalized_name": "go! go! beetle roller!" + }, + { + "appid": 3699960, + "normalized_name": "everstead origins" + }, + { + "appid": 3699970, + "normalized_name": "blasfemia" + }, + { + "appid": 3700000, + "normalized_name": "bloodlit" + }, + { + "appid": 3700050, + "normalized_name": "cotard" + }, + { + "appid": 3700080, + "normalized_name": "mythscroll" + }, + { + "appid": 3700110, + "normalized_name": "sonder embrace the world" + }, + { + "appid": 3700170, + "normalized_name": "sumin's tower session no.5" + }, + { + "appid": 3700200, + "normalized_name": "the last captain" + }, + { + "appid": 3700210, + "normalized_name": "island supermarket simulator" + }, + { + "appid": 3700540, + "normalized_name": "the old mansion eternal night" + }, + { + "appid": 3700580, + "normalized_name": "livber smoke and mirrors" + }, + { + "appid": 3700600, + "normalized_name": "it witch case" + }, + { + "appid": 3700740, + "normalized_name": "griddle" + }, + { + "appid": 3700760, + "normalized_name": "角落里的艾果 eggo" + }, + { + "appid": 3700790, + "normalized_name": "the final ride" + }, + { + "appid": 3700840, + "normalized_name": "car tuninggaragesimulator" + }, + { + "appid": 3700850, + "normalized_name": "songs without loneliness" + }, + { + "appid": 3700890, + "normalized_name": "bubble" + }, + { + "appid": 3700910, + "normalized_name": "hentai store" + }, + { + "appid": 3700920, + "normalized_name": "ball stars" + }, + { + "appid": 3700950, + "normalized_name": "under the disco lights" + }, + { + "appid": 3701010, + "normalized_name": "dwarf digger" + }, + { + "appid": 3701090, + "normalized_name": "erevos descent" + }, + { + "appid": 3701180, + "normalized_name": "car rental simulator" + }, + { + "appid": 3701300, + "normalized_name": "douchebag bro pack" + }, + { + "appid": 3701310, + "normalized_name": "swanfield survival" + }, + { + "appid": 3701320, + "normalized_name": "the last guild" + }, + { + "appid": 3701370, + "normalized_name": "おじいちゃん!ごはんつくって!" + }, + { + "appid": 3701420, + "normalized_name": "forged in fury" + }, + { + "appid": 3701460, + "normalized_name": "furry fantasy adult world" + }, + { + "appid": 3701830, + "normalized_name": "barks and bytes" + }, + { + "appid": 3701910, + "normalized_name": "winnie the pooh hops for honey" + }, + { + "appid": 3701950, + "normalized_name": "polygon survivors" + }, + { + "appid": 3701980, + "normalized_name": "apocalypse zombie td" + }, + { + "appid": 3701990, + "normalized_name": "bad heroes" + }, + { + "appid": 3702020, + "normalized_name": "figurine shop simulator" + }, + { + "appid": 3702120, + "normalized_name": "life & shadow celestial call" + }, + { + "appid": 3702140, + "normalized_name": "fusion slash" + }, + { + "appid": 3702220, + "normalized_name": "night grip" + }, + { + "appid": 3702360, + "normalized_name": "pact warden" + }, + { + "appid": 3702370, + "normalized_name": "a game about mining an asteroid" + }, + { + "appid": 3702450, + "normalized_name": "chemistower" + }, + { + "appid": 3702510, + "normalized_name": "biophobia" + }, + { + "appid": 3702540, + "normalized_name": "between adventures idle" + }, + { + "appid": 3702640, + "normalized_name": "shadowstrike arrowheart" + }, + { + "appid": 3702810, + "normalized_name": "hellbound" + }, + { + "appid": 3702920, + "normalized_name": "hotel mount olympus" + }, + { + "appid": 3702930, + "normalized_name": "bum revenge" + }, + { + "appid": 3702950, + "normalized_name": "land of anima the research of artificer" + }, + { + "appid": 3702960, + "normalized_name": "desktop waifu" + }, + { + "appid": 3703030, + "normalized_name": "nourish" + }, + { + "appid": 3703080, + "normalized_name": "ribb eats" + }, + { + "appid": 3703090, + "normalized_name": "星星水族馆~star aquarium" + }, + { + "appid": 3703100, + "normalized_name": "rise from ruin" + }, + { + "appid": 3703150, + "normalized_name": "revella" + }, + { + "appid": 3703160, + "normalized_name": "pocket turtles" + }, + { + "appid": 3703170, + "normalized_name": "some assembly required" + }, + { + "appid": 3703180, + "normalized_name": "挂机三国 无限升级" + }, + { + "appid": 3703200, + "normalized_name": "凉茶王" + }, + { + "appid": 3703280, + "normalized_name": "wima magicamia cute girls magic battle 3dtps" + }, + { + "appid": 3703290, + "normalized_name": "carnival happy day" + }, + { + "appid": 3703300, + "normalized_name": "i checkmate thee" + }, + { + "appid": 3703330, + "normalized_name": "don't kill the fish" + }, + { + "appid": 3703340, + "normalized_name": "kindred [high tide]" + }, + { + "appid": 3703350, + "normalized_name": "carlos haunted house" + }, + { + "appid": 3703360, + "normalized_name": "world of dogs" + }, + { + "appid": 3703380, + "normalized_name": "奇幻打怪" + }, + { + "appid": 3703440, + "normalized_name": "actuator 表立つ異常" + }, + { + "appid": 3703460, + "normalized_name": "tictactix" + }, + { + "appid": 3703480, + "normalized_name": "frostcraft" + }, + { + "appid": 3703510, + "normalized_name": "fickleflame" + }, + { + "appid": 3703520, + "normalized_name": "slap 'em up!" + }, + { + "appid": 3703530, + "normalized_name": "war grid hero" + }, + { + "appid": 3703570, + "normalized_name": "synthetic dreams falling" + }, + { + "appid": 3703610, + "normalized_name": "daily waifu!" + }, + { + "appid": 3703660, + "normalized_name": "protocol nadir" + }, + { + "appid": 3703720, + "normalized_name": "host" + }, + { + "appid": 3703730, + "normalized_name": "tezzel the tilemaker's tale" + }, + { + "appid": 3703750, + "normalized_name": "ookami okami" + }, + { + "appid": 3703790, + "normalized_name": "skyfire legends" + }, + { + "appid": 3703820, + "normalized_name": "paradoxo" + }, + { + "appid": 3703870, + "normalized_name": "祝福:第一幕 blessing part i" + }, + { + "appid": 3703880, + "normalized_name": "dirty piano lessons 🍓" + }, + { + "appid": 3703910, + "normalized_name": "shuffle farm" + }, + { + "appid": 3703930, + "normalized_name": "balls gone wild" + }, + { + "appid": 3703940, + "normalized_name": "torrent empire" + }, + { + "appid": 3703970, + "normalized_name": "extraordinary ball" + }, + { + "appid": 3704000, + "normalized_name": "exit n.f." + }, + { + "appid": 3704020, + "normalized_name": "rollin' garry" + }, + { + "appid": 3704070, + "normalized_name": "one last gamble" + }, + { + "appid": 3704080, + "normalized_name": "plague genesis" + }, + { + "appid": 3704130, + "normalized_name": "my favorite coworker" + }, + { + "appid": 3704230, + "normalized_name": "broken fate" + }, + { + "appid": 3704290, + "normalized_name": "false princess iruruu" + }, + { + "appid": 3704300, + "normalized_name": "find all 9 fantasy" + }, + { + "appid": 3704340, + "normalized_name": "italian brainrot arena" + }, + { + "appid": 3704560, + "normalized_name": "immortal magus" + }, + { + "appid": 3704600, + "normalized_name": "balloon to the moon 2" + }, + { + "appid": 3704680, + "normalized_name": "kanjiflash" + }, + { + "appid": 3704690, + "normalized_name": "jampa buggys" + }, + { + "appid": 3704740, + "normalized_name": "skydunker" + }, + { + "appid": 3704790, + "normalized_name": "sword & sail" + }, + { + "appid": 3704800, + "normalized_name": "chibi wars deep state" + }, + { + "appid": 3704810, + "normalized_name": "simshock2025" + }, + { + "appid": 3704870, + "normalized_name": "cash the cache" + }, + { + "appid": 3704880, + "normalized_name": "souper hero" + }, + { + "appid": 3704900, + "normalized_name": "fruits power up!" + }, + { + "appid": 3704940, + "normalized_name": "fish 'n ships" + }, + { + "appid": 3704970, + "normalized_name": "the mountain and the moron" + }, + { + "appid": 3705100, + "normalized_name": "câi & darren code calamity" + }, + { + "appid": 3705150, + "normalized_name": "into the depths" + }, + { + "appid": 3705260, + "normalized_name": "sanitism" + }, + { + "appid": 3705300, + "normalized_name": "between her toes" + }, + { + "appid": 3705430, + "normalized_name": "hentai tales sexual guidance class" + }, + { + "appid": 3705460, + "normalized_name": "echoes in the storm" + }, + { + "appid": 3705490, + "normalized_name": "bombunter" + }, + { + "appid": 3705550, + "normalized_name": "internal incident" + }, + { + "appid": 3705570, + "normalized_name": "knight jump" + }, + { + "appid": 3705590, + "normalized_name": "steezelpunk" + }, + { + "appid": 3705620, + "normalized_name": "necromancer's last stand" + }, + { + "appid": 3705690, + "normalized_name": "jumppit" + }, + { + "appid": 3705720, + "normalized_name": "昭阳传" + }, + { + "appid": 3705770, + "normalized_name": "slideforce" + }, + { + "appid": 3705900, + "normalized_name": "president simulator" + }, + { + "appid": 3705940, + "normalized_name": "at sixes and sevens" + }, + { + "appid": 3705950, + "normalized_name": "exiled fighters" + }, + { + "appid": 3706040, + "normalized_name": "blastforge breach" + }, + { + "appid": 3706100, + "normalized_name": "gloria's house" + }, + { + "appid": 3706120, + "normalized_name": "excellent" + }, + { + "appid": 3706130, + "normalized_name": "gun dealer" + }, + { + "appid": 3706190, + "normalized_name": "idle lab rats" + }, + { + "appid": 3706210, + "normalized_name": "frost protocol" + }, + { + "appid": 3706250, + "normalized_name": "turn lands" + }, + { + "appid": 3706360, + "normalized_name": "safe hayven" + }, + { + "appid": 3706400, + "normalized_name": "little witch inuko" + }, + { + "appid": 3706410, + "normalized_name": "married woman survivor" + }, + { + "appid": 3706430, + "normalized_name": "the falling star" + }, + { + "appid": 3706440, + "normalized_name": "sleepy sister's friend" + }, + { + "appid": 3706460, + "normalized_name": "dungeon survivor" + }, + { + "appid": 3706580, + "normalized_name": "alpa" + }, + { + "appid": 3706590, + "normalized_name": "fluffy kitchen saga" + }, + { + "appid": 3706600, + "normalized_name": "songs of the broken crowns" + }, + { + "appid": 3706640, + "normalized_name": "老唐与朋友们的奇幻冒险" + }, + { + "appid": 3706720, + "normalized_name": "建国同志爱加税taxking" + }, + { + "appid": 3706820, + "normalized_name": "grappling bagel" + }, + { + "appid": 3706860, + "normalized_name": "fruit army" + }, + { + "appid": 3706910, + "normalized_name": "autoshot" + }, + { + "appid": 3707010, + "normalized_name": "有大雷 | minesweeper big bomb" + }, + { + "appid": 3707090, + "normalized_name": "they sold me a perfect mother but she's not what she seems" + }, + { + "appid": 3707370, + "normalized_name": "ラブ・スタートアゲイン" + }, + { + "appid": 3707390, + "normalized_name": "quizrealms from stone to steam" + }, + { + "appid": 3707580, + "normalized_name": "interactive sex incest daughters episode 2" + }, + { + "appid": 3707610, + "normalized_name": "delirium echoes of the domino" + }, + { + "appid": 3707660, + "normalized_name": "horrorillo brainrotillo" + }, + { + "appid": 3708060, + "normalized_name": "boogie fungi" + }, + { + "appid": 3708130, + "normalized_name": "road food simulator prologue" + }, + { + "appid": 3708250, + "normalized_name": "my heaven's dale" + }, + { + "appid": 3708380, + "normalized_name": "monster blast infinity" + }, + { + "appid": 3708400, + "normalized_name": "word mesh" + }, + { + "appid": 3708520, + "normalized_name": "quarantine me" + }, + { + "appid": 3708610, + "normalized_name": "take them down" + }, + { + "appid": 3708630, + "normalized_name": "copperfell" + }, + { + "appid": 3708640, + "normalized_name": "quaso studio the liven collection" + }, + { + "appid": 3708650, + "normalized_name": "liquor shop simulator" + }, + { + "appid": 3708660, + "normalized_name": "doctor viscera" + }, + { + "appid": 3708670, + "normalized_name": "click to punch" + }, + { + "appid": 3708740, + "normalized_name": "bombardiro crocodilo the naked clue" + }, + { + "appid": 3708760, + "normalized_name": "dinosauria alpha+" + }, + { + "appid": 3708870, + "normalized_name": "valet parking not included" + }, + { + "appid": 3709000, + "normalized_name": "the drawstring dungeon" + }, + { + "appid": 3709040, + "normalized_name": "dreadarion vr" + }, + { + "appid": 3709100, + "normalized_name": "they come at daylight" + }, + { + "appid": 3709180, + "normalized_name": "bermuda triangle knockout!" + }, + { + "appid": 3709230, + "normalized_name": "island getaway" + }, + { + "appid": 3709280, + "normalized_name": "the dark crown genesis demake" + }, + { + "appid": 3709390, + "normalized_name": "gold and bricks" + }, + { + "appid": 3709430, + "normalized_name": "witch's apocalyptic journey" + }, + { + "appid": 3709460, + "normalized_name": "fall cat" + }, + { + "appid": 3709490, + "normalized_name": "star clicker odyssey" + }, + { + "appid": 3709530, + "normalized_name": "vanguard unit 7" + }, + { + "appid": 3709570, + "normalized_name": "comfy plushpals! — the cozy raising simulator rpg — (with rizz ✨😏✨)" + }, + { + "appid": 3709580, + "normalized_name": "the web" + }, + { + "appid": 3709640, + "normalized_name": "decaying memories" + }, + { + "appid": 3709690, + "normalized_name": "accidentally" + }, + { + "appid": 3709750, + "normalized_name": "100 trials" + }, + { + "appid": 3709770, + "normalized_name": "ones" + }, + { + "appid": 3709790, + "normalized_name": "zerowake gates" + }, + { + "appid": 3709810, + "normalized_name": "mind the clown" + }, + { + "appid": 3709830, + "normalized_name": "redmoon idle rpg" + }, + { + "appid": 3709850, + "normalized_name": "the archaic unauthorized" + }, + { + "appid": 3709870, + "normalized_name": "nightmare diver" + }, + { + "appid": 3709880, + "normalized_name": "maddy's meadow" + }, + { + "appid": 3709980, + "normalized_name": "ai math dash" + }, + { + "appid": 3709990, + "normalized_name": "tale of the bullet knight" + }, + { + "appid": 3710010, + "normalized_name": "龍神的新娘外傳:神社經營考試~考不過就重修~" + }, + { + "appid": 3710050, + "normalized_name": "mini map" + }, + { + "appid": 3710060, + "normalized_name": "escape from tung tung sahur" + }, + { + "appid": 3710070, + "normalized_name": "colony 13 into the void" + }, + { + "appid": 3710130, + "normalized_name": "plinko pixel" + }, + { + "appid": 3710340, + "normalized_name": "flowershop master yuukarin!" + }, + { + "appid": 3710460, + "normalized_name": "room football junk town" + }, + { + "appid": 3710470, + "normalized_name": "raging bill" + }, + { + "appid": 3710480, + "normalized_name": "room football sand storm" + }, + { + "appid": 3710490, + "normalized_name": "escalating duel" + }, + { + "appid": 3710550, + "normalized_name": "matheroïde" + }, + { + "appid": 3710600, + "normalized_name": "warhammer 40 000 dark heresy" + }, + { + "appid": 3710610, + "normalized_name": "detra" + }, + { + "appid": 3710620, + "normalized_name": "squaser 9" + }, + { + "appid": 3710770, + "normalized_name": "globalquarantine" + }, + { + "appid": 3710800, + "normalized_name": "soviet clinic" + }, + { + "appid": 3710830, + "normalized_name": "curses" + }, + { + "appid": 3710840, + "normalized_name": "house flipper collection" + }, + { + "appid": 3710850, + "normalized_name": "becum a sperm's journey" + }, + { + "appid": 3710930, + "normalized_name": "cards of fortune" + }, + { + "appid": 3710940, + "normalized_name": "space swimmer" + }, + { + "appid": 3710990, + "normalized_name": "no logic inc." + }, + { + "appid": 3711030, + "normalized_name": "lo fi golf" + }, + { + "appid": 3711060, + "normalized_name": "tails of the north" + }, + { + "appid": 3711090, + "normalized_name": "bru & boegie episode 1 get da milk!" + }, + { + "appid": 3711160, + "normalized_name": "sinker" + }, + { + "appid": 3711220, + "normalized_name": "spooky bodies" + }, + { + "appid": 3711230, + "normalized_name": "slingshot quest" + }, + { + "appid": 3711240, + "normalized_name": "shattered memories" + }, + { + "appid": 3711260, + "normalized_name": "love blades and run" + }, + { + "appid": 3711300, + "normalized_name": "woodlike狸想" + }, + { + "appid": 3711330, + "normalized_name": "the doppel" + }, + { + "appid": 3711350, + "normalized_name": "sect house" + }, + { + "appid": 3711360, + "normalized_name": "electronic shop simulator" + }, + { + "appid": 3711450, + "normalized_name": "guild hall simulator" + }, + { + "appid": 3711460, + "normalized_name": "paranormal tape karak" + }, + { + "appid": 3711480, + "normalized_name": "monstergasm" + }, + { + "appid": 3711490, + "normalized_name": "oxidus tales" + }, + { + "appid": 3711540, + "normalized_name": "crit happens!" + }, + { + "appid": 3711700, + "normalized_name": "escape" + }, + { + "appid": 3711750, + "normalized_name": "flesh & spirit" + }, + { + "appid": 3711790, + "normalized_name": "otter yakuza" + }, + { + "appid": 3711860, + "normalized_name": "tarot awakening" + }, + { + "appid": 3711910, + "normalized_name": "cursebound" + }, + { + "appid": 3711920, + "normalized_name": "taxi average city" + }, + { + "appid": 3711950, + "normalized_name": "little kingdom rts" + }, + { + "appid": 3712020, + "normalized_name": "意识分裂 开篇季" + }, + { + "appid": 3712040, + "normalized_name": "léo" + }, + { + "appid": 3712200, + "normalized_name": "city of stories the hunter's heart collector's" + }, + { + "appid": 3712230, + "normalized_name": "pilgrim of darkness" + }, + { + "appid": 3712270, + "normalized_name": "paranormal inc." + }, + { + "appid": 3712340, + "normalized_name": "cosmic destroyer" + }, + { + "appid": 3712390, + "normalized_name": "the shade" + }, + { + "appid": 3712430, + "normalized_name": "carbrix" + }, + { + "appid": 3712490, + "normalized_name": "pilgrim unto shadow" + }, + { + "appid": 3712580, + "normalized_name": "climb out of hell" + }, + { + "appid": 3712710, + "normalized_name": "文字战争" + }, + { + "appid": 3712750, + "normalized_name": "robosouls" + }, + { + "appid": 3712810, + "normalized_name": "lucha throwdown" + }, + { + "appid": 3712860, + "normalized_name": "wonder of blue" + }, + { + "appid": 3712960, + "normalized_name": "思恋与你的终焉" + }, + { + "appid": 3713160, + "normalized_name": "clash of rock paper scissors" + }, + { + "appid": 3713180, + "normalized_name": "tradie tapper" + }, + { + "appid": 3713190, + "normalized_name": "art of bloodshed" + }, + { + "appid": 3713210, + "normalized_name": "battle shadow arena" + }, + { + "appid": 3713230, + "normalized_name": "gym simulator prologue" + }, + { + "appid": 3713250, + "normalized_name": "remote realms" + }, + { + "appid": 3713260, + "normalized_name": "unity to survive" + }, + { + "appid": 3713290, + "normalized_name": "a mind apart" + }, + { + "appid": 3713300, + "normalized_name": "sporeborne" + }, + { + "appid": 3713310, + "normalized_name": "resolute bay" + }, + { + "appid": 3713330, + "normalized_name": "午夜濒临midnightnears" + }, + { + "appid": 3713350, + "normalized_name": "max sterling pi the grady case" + }, + { + "appid": 3713420, + "normalized_name": "code ragnarok" + }, + { + "appid": 3713450, + "normalized_name": "hungry ghosts" + }, + { + "appid": 3713490, + "normalized_name": "moonlight" + }, + { + "appid": 3713500, + "normalized_name": "pain t" + }, + { + "appid": 3713510, + "normalized_name": "rat run" + }, + { + "appid": 3713550, + "normalized_name": "aigent" + }, + { + "appid": 3713690, + "normalized_name": "idle pizza business" + }, + { + "appid": 3713710, + "normalized_name": "torenstad" + }, + { + "appid": 3713720, + "normalized_name": "dark realms mysteries of hoia baciu forest" + }, + { + "appid": 3713730, + "normalized_name": "storage finder" + }, + { + "appid": 3713750, + "normalized_name": "dystopicon" + }, + { + "appid": 3713790, + "normalized_name": "xwheels grandslam" + }, + { + "appid": 3713820, + "normalized_name": "food truckshopsimulator" + }, + { + "appid": 3713850, + "normalized_name": "somnum" + }, + { + "appid": 3713920, + "normalized_name": "drug dealer schedule" + }, + { + "appid": 3714040, + "normalized_name": "strange days" + }, + { + "appid": 3714050, + "normalized_name": "monster mart" + }, + { + "appid": 3714070, + "normalized_name": "remember" + }, + { + "appid": 3714100, + "normalized_name": ".v valor runs deep" + }, + { + "appid": 3714140, + "normalized_name": "subspace reticulum" + }, + { + "appid": 3714200, + "normalized_name": "thargelia" + }, + { + "appid": 3714210, + "normalized_name": "ayrton idle" + }, + { + "appid": 3714370, + "normalized_name": "noslack pets" + }, + { + "appid": 3714700, + "normalized_name": "parallel" + }, + { + "appid": 3714740, + "normalized_name": "pity this busy monster" + }, + { + "appid": 3714750, + "normalized_name": "falling sand idle" + }, + { + "appid": 3714790, + "normalized_name": "russian village simulator 2" + }, + { + "appid": 3714810, + "normalized_name": "mantle" + }, + { + "appid": 3714920, + "normalized_name": "the shed" + }, + { + "appid": 3714960, + "normalized_name": "bastionforge" + }, + { + "appid": 3715010, + "normalized_name": "the universe of death" + }, + { + "appid": 3715020, + "normalized_name": "ye guild clerk!" + }, + { + "appid": 3715240, + "normalized_name": "hello space" + }, + { + "appid": 3715390, + "normalized_name": "star gun" + }, + { + "appid": 3715410, + "normalized_name": "cavernreach" + }, + { + "appid": 3715440, + "normalized_name": "joe and the lost pixels" + }, + { + "appid": 3715460, + "normalized_name": "napoleon rule of iron" + }, + { + "appid": 3715480, + "normalized_name": "sky die" + }, + { + "appid": 3715490, + "normalized_name": "撇捺物语" + }, + { + "appid": 3715520, + "normalized_name": "dumbass survivors" + }, + { + "appid": 3715540, + "normalized_name": "100 men vs 1 gorilla" + }, + { + "appid": 3715550, + "normalized_name": "dungeon inspection guild" + }, + { + "appid": 3715620, + "normalized_name": "the final flame" + }, + { + "appid": 3715630, + "normalized_name": "adohiinage" + }, + { + "appid": 3715670, + "normalized_name": "escape protocol hospital" + }, + { + "appid": 3715730, + "normalized_name": "男娘恋爱物语" + }, + { + "appid": 3715740, + "normalized_name": "rubatosis" + }, + { + "appid": 3715750, + "normalized_name": "just a random game" + }, + { + "appid": 3715770, + "normalized_name": "oh! robot legendary mechanic" + }, + { + "appid": 3715780, + "normalized_name": "deep dive" + }, + { + "appid": 3715790, + "normalized_name": "decklings" + }, + { + "appid": 3715950, + "normalized_name": "the night at barrington" + }, + { + "appid": 3715960, + "normalized_name": "macin vr" + }, + { + "appid": 3715980, + "normalized_name": "wahm | وهم" + }, + { + "appid": 3716010, + "normalized_name": "spellbound shire" + }, + { + "appid": 3716050, + "normalized_name": "wired coroner" + }, + { + "appid": 3716070, + "normalized_name": "twisted christmas" + }, + { + "appid": 3716080, + "normalized_name": "gold finger" + }, + { + "appid": 3716120, + "normalized_name": "truth beneath the shadows" + }, + { + "appid": 3716140, + "normalized_name": "anomalous the mansion" + }, + { + "appid": 3716160, + "normalized_name": "a sexy tour with carmen" + }, + { + "appid": 3716190, + "normalized_name": "dusky cap" + }, + { + "appid": 3716220, + "normalized_name": "spellarium 12" + }, + { + "appid": 3716260, + "normalized_name": "sweet restaurant" + }, + { + "appid": 3716280, + "normalized_name": "rumours of a roman empire" + }, + { + "appid": 3716300, + "normalized_name": "the wizards arena" + }, + { + "appid": 3716310, + "normalized_name": "runeblade automaton" + }, + { + "appid": 3716360, + "normalized_name": "upstairs" + }, + { + "appid": 3716370, + "normalized_name": "runebound bastion" + }, + { + "appid": 3716380, + "normalized_name": "joyjoydungeon" + }, + { + "appid": 3716480, + "normalized_name": "thruster" + }, + { + "appid": 3716530, + "normalized_name": "scare fatal picture manga story" + }, + { + "appid": 3716540, + "normalized_name": "love you more" + }, + { + "appid": 3716590, + "normalized_name": "hideous" + }, + { + "appid": 3716600, + "normalized_name": "mage arena" + }, + { + "appid": 3716640, + "normalized_name": "a gorilla vs 100 men simulator" + }, + { + "appid": 3716650, + "normalized_name": "antivirus protocol" + }, + { + "appid": 3716670, + "normalized_name": "thief simulator robin hood" + }, + { + "appid": 3716690, + "normalized_name": "glinium" + }, + { + "appid": 3716700, + "normalized_name": "terrors to unveil intrusion" + }, + { + "appid": 3716710, + "normalized_name": "the last scion" + }, + { + "appid": 3716720, + "normalized_name": "hero of hoofbeat hollow" + }, + { + "appid": 3716850, + "normalized_name": "dead tapes fading father" + }, + { + "appid": 3716900, + "normalized_name": "bloxiti" + }, + { + "appid": 3716930, + "normalized_name": "phase cross" + }, + { + "appid": 3716980, + "normalized_name": "thank you for your time" + }, + { + "appid": 3717010, + "normalized_name": "cooktopia:料理乌托邦" + }, + { + "appid": 3717150, + "normalized_name": "kegan" + }, + { + "appid": 3717170, + "normalized_name": "mashinomat" + }, + { + "appid": 3717190, + "normalized_name": "quill > pistol" + }, + { + "appid": 3717250, + "normalized_name": "acrochallenge" + }, + { + "appid": 3717310, + "normalized_name": "danmaku girl" + }, + { + "appid": 3717430, + "normalized_name": "elliot's show time" + }, + { + "appid": 3717490, + "normalized_name": "shattered realms" + }, + { + "appid": 3717500, + "normalized_name": "blob's adventure" + }, + { + "appid": 3717530, + "normalized_name": "music shop simulator" + }, + { + "appid": 3717620, + "normalized_name": "silverlake" + }, + { + "appid": 3717840, + "normalized_name": "infinity train" + }, + { + "appid": 3717850, + "normalized_name": "cragex 5" + }, + { + "appid": 3717880, + "normalized_name": "robot become human" + }, + { + "appid": 3717980, + "normalized_name": "100 men vs gorilla" + }, + { + "appid": 3718000, + "normalized_name": "brainrot wars" + }, + { + "appid": 3718040, + "normalized_name": "nocturnal throne" + }, + { + "appid": 3718080, + "normalized_name": "test of fear | 肝試しの夜に" + }, + { + "appid": 3718290, + "normalized_name": "全景测验cryptobiosis" + }, + { + "appid": 3718380, + "normalized_name": "mine the world" + }, + { + "appid": 3718410, + "normalized_name": "phantom necro" + }, + { + "appid": 3718550, + "normalized_name": "don’t tell mom i fed my stepsister 💦😳" + }, + { + "appid": 3718610, + "normalized_name": "cats & cakes the card game" + }, + { + "appid": 3718640, + "normalized_name": "geometry loop" + }, + { + "appid": 3718670, + "normalized_name": "bricks 10x10" + }, + { + "appid": 3718720, + "normalized_name": "proxima b" + }, + { + "appid": 3718740, + "normalized_name": "flag o tron" + }, + { + "appid": 3718750, + "normalized_name": "seaquest find the difference" + }, + { + "appid": 3718800, + "normalized_name": "deckanism singularity island" + }, + { + "appid": 3718880, + "normalized_name": "fast hands" + }, + { + "appid": 3718990, + "normalized_name": "hidden hijinks no cats in the orgy please!" + }, + { + "appid": 3719000, + "normalized_name": "dominated by sadistic rich trio" + }, + { + "appid": 3719040, + "normalized_name": "restorart horizon bay collector's" + }, + { + "appid": 3719050, + "normalized_name": "tilnize" + }, + { + "appid": 3719100, + "normalized_name": "tiris" + }, + { + "appid": 3719160, + "normalized_name": "late shift midnight burger" + }, + { + "appid": 3719170, + "normalized_name": "the last bell" + }, + { + "appid": 3719250, + "normalized_name": "shadow of the yokai" + }, + { + "appid": 3719380, + "normalized_name": "the memological dungeon" + }, + { + "appid": 3719440, + "normalized_name": "touhou kichouden ~ mythos of phantasmagoria 2" + }, + { + "appid": 3719450, + "normalized_name": "shuffles 'n scuffles" + }, + { + "appid": 3719540, + "normalized_name": "total driftin' touge dreams" + }, + { + "appid": 3719550, + "normalized_name": "the solitary existence of a little universe" + }, + { + "appid": 3719570, + "normalized_name": "silhouetteiscoming" + }, + { + "appid": 3719610, + "normalized_name": "mini games 30 in 1 unpacking hyper casual fun challenges" + }, + { + "appid": 3719660, + "normalized_name": "tower command" + }, + { + "appid": 3719850, + "normalized_name": "v/v" + }, + { + "appid": 3719900, + "normalized_name": "pereelous" + }, + { + "appid": 3719920, + "normalized_name": "i am the cat" + }, + { + "appid": 3719950, + "normalized_name": "futa troll’s shelter" + }, + { + "appid": 3719970, + "normalized_name": "solitude" + }, + { + "appid": 3720060, + "normalized_name": "condemned nightfall" + }, + { + "appid": 3720070, + "normalized_name": "pizza shop simulator" + }, + { + "appid": 3720110, + "normalized_name": "pullback racers" + }, + { + "appid": 3720170, + "normalized_name": "the showdown gorilla vs 100" + }, + { + "appid": 3720340, + "normalized_name": "your wife mother and daughter" + }, + { + "appid": 3720420, + "normalized_name": "cardventure justahead!" + }, + { + "appid": 3720430, + "normalized_name": "honest helper" + }, + { + "appid": 3720440, + "normalized_name": "ryne arca" + }, + { + "appid": 3720450, + "normalized_name": "the trial" + }, + { + "appid": 3720470, + "normalized_name": "overwork empire" + }, + { + "appid": 3720510, + "normalized_name": "aglow ash" + }, + { + "appid": 3720530, + "normalized_name": "operation followthrough" + }, + { + "appid": 3720620, + "normalized_name": "mannequin echoes of their minds" + }, + { + "appid": 3720630, + "normalized_name": "caemdale" + }, + { + "appid": 3720640, + "normalized_name": "arisa | psychological horror game" + }, + { + "appid": 3720670, + "normalized_name": "apex ascent" + }, + { + "appid": 3720680, + "normalized_name": "little pilot" + }, + { + "appid": 3720720, + "normalized_name": "under the floor" + }, + { + "appid": 3720800, + "normalized_name": "jump verse" + }, + { + "appid": 3720810, + "normalized_name": "vacation in paradise" + }, + { + "appid": 3720830, + "normalized_name": "fire road" + }, + { + "appid": 3720880, + "normalized_name": "aquaville" + }, + { + "appid": 3720950, + "normalized_name": "left by angels" + }, + { + "appid": 3720960, + "normalized_name": "zenvader" + }, + { + "appid": 3720970, + "normalized_name": "hentai furry wolfy" + }, + { + "appid": 3720990, + "normalized_name": "daily note" + }, + { + "appid": 3721000, + "normalized_name": "battle brewers" + }, + { + "appid": 3721020, + "normalized_name": "galactic bounty" + }, + { + "appid": 3721040, + "normalized_name": "404 breakpoint" + }, + { + "appid": 3721080, + "normalized_name": "don't look behind" + }, + { + "appid": 3721200, + "normalized_name": "bay zero" + }, + { + "appid": 3721240, + "normalized_name": "relax parkour" + }, + { + "appid": 3721250, + "normalized_name": "vasilisa the beautiful" + }, + { + "appid": 3721420, + "normalized_name": "the factory" + }, + { + "appid": 3721470, + "normalized_name": "terra 7" + }, + { + "appid": 3721490, + "normalized_name": "yollen" + }, + { + "appid": 3721500, + "normalized_name": "night seeker" + }, + { + "appid": 3721570, + "normalized_name": "forsaken manor" + }, + { + "appid": 3721680, + "normalized_name": "shatterland" + }, + { + "appid": 3721690, + "normalized_name": "moron's gambit" + }, + { + "appid": 3721720, + "normalized_name": "異世界転生したおっさん、不遇スキルでもめげずに戦乱の島で傭兵に転職する。" + }, + { + "appid": 3721790, + "normalized_name": "crabs n rats" + }, + { + "appid": 3721890, + "normalized_name": "maid of salvation" + }, + { + "appid": 3722000, + "normalized_name": "middenmoon" + }, + { + "appid": 3722010, + "normalized_name": "the old one" + }, + { + "appid": 3722040, + "normalized_name": "寻找自由的星星 the star that longed to be free" + }, + { + "appid": 3722060, + "normalized_name": "virsamals companion console" + }, + { + "appid": 3722070, + "normalized_name": "night patrol" + }, + { + "appid": 3722160, + "normalized_name": "beyond the edge" + }, + { + "appid": 3722170, + "normalized_name": "foldloop" + }, + { + "appid": 3722210, + "normalized_name": "multigun" + }, + { + "appid": 3722220, + "normalized_name": "fungus world" + }, + { + "appid": 3722230, + "normalized_name": "outpost assault" + }, + { + "appid": 3722240, + "normalized_name": "dungeon adventure" + }, + { + "appid": 3722250, + "normalized_name": "dodge the creeps" + }, + { + "appid": 3722290, + "normalized_name": "flycremental" + }, + { + "appid": 3722340, + "normalized_name": "isle of finbari" + }, + { + "appid": 3722350, + "normalized_name": "fairypunk" + }, + { + "appid": 3722510, + "normalized_name": "mannequin syndrome" + }, + { + "appid": 3722530, + "normalized_name": "攻略那个男人" + }, + { + "appid": 3722600, + "normalized_name": "last term" + }, + { + "appid": 3722690, + "normalized_name": "fields of mine" + }, + { + "appid": 3722760, + "normalized_name": "doll inc" + }, + { + "appid": 3722790, + "normalized_name": "demons must die" + }, + { + "appid": 3722810, + "normalized_name": "elliot's great symphony" + }, + { + "appid": 3722860, + "normalized_name": "hibr" + }, + { + "appid": 3722990, + "normalized_name": "stack attack" + }, + { + "appid": 3723050, + "normalized_name": "beta hazard" + }, + { + "appid": 3723090, + "normalized_name": "computer manufacturer" + }, + { + "appid": 3723100, + "normalized_name": "エターナルハンド" + }, + { + "appid": 3723140, + "normalized_name": "kin d barabin's expedition" + }, + { + "appid": 3723150, + "normalized_name": "oathbound" + }, + { + "appid": 3723160, + "normalized_name": "brainrooms brainrot backrooms" + }, + { + "appid": 3723200, + "normalized_name": "backstreet grabber" + }, + { + "appid": 3723210, + "normalized_name": "unchained tale of enra" + }, + { + "appid": 3723280, + "normalized_name": "aperture dating simulator" + }, + { + "appid": 3723330, + "normalized_name": "harmony havoc" + }, + { + "appid": 3723350, + "normalized_name": "在异世界打怪的修仙者" + }, + { + "appid": 3723390, + "normalized_name": "ecliptica" + }, + { + "appid": 3723400, + "normalized_name": "polycrime" + }, + { + "appid": 3723410, + "normalized_name": "grim diary" + }, + { + "appid": 3723450, + "normalized_name": "catastrophe" + }, + { + "appid": 3723480, + "normalized_name": "cardrottini" + }, + { + "appid": 3723580, + "normalized_name": "ascension of the dead" + }, + { + "appid": 3723590, + "normalized_name": "project nexos" + }, + { + "appid": 3723610, + "normalized_name": "together in forgotten lands chapter one" + }, + { + "appid": 3723710, + "normalized_name": "escape the baby alarm" + }, + { + "appid": 3723800, + "normalized_name": "grind mindset" + }, + { + "appid": 3723850, + "normalized_name": "goat mode activated" + }, + { + "appid": 3723930, + "normalized_name": "deathkrew" + }, + { + "appid": 3723940, + "normalized_name": "stellar chroma codex" + }, + { + "appid": 3723950, + "normalized_name": "last survivor day on earth" + }, + { + "appid": 3723970, + "normalized_name": "delivery service courier" + }, + { + "appid": 3724010, + "normalized_name": "skeleton arena" + }, + { + "appid": 3724020, + "normalized_name": "geolight" + }, + { + "appid": 3724340, + "normalized_name": "robots with guns" + }, + { + "appid": 3724370, + "normalized_name": "lumina" + }, + { + "appid": 3724380, + "normalized_name": "jump or smash" + }, + { + "appid": 3724420, + "normalized_name": "cyber haze" + }, + { + "appid": 3724470, + "normalized_name": "scale bullet ~after story~" + }, + { + "appid": 3724550, + "normalized_name": "pretty buttons" + }, + { + "appid": 3724560, + "normalized_name": "浮华工造·千机百炼 ornate machina the thousand trials" + }, + { + "appid": 3724570, + "normalized_name": "winslow" + }, + { + "appid": 3724590, + "normalized_name": "idle empires" + }, + { + "appid": 3724680, + "normalized_name": "gangsters way" + }, + { + "appid": 3724760, + "normalized_name": "twin oaths" + }, + { + "appid": 3724800, + "normalized_name": "the shift" + }, + { + "appid": 3724870, + "normalized_name": "memology italian brainrot" + }, + { + "appid": 3724880, + "normalized_name": "battle boss" + }, + { + "appid": 3724950, + "normalized_name": "walls that watch" + }, + { + "appid": 3725010, + "normalized_name": "cloud popper (toddler/early years game)" + }, + { + "appid": 3725050, + "normalized_name": "o livro dos heróis" + }, + { + "appid": 3725150, + "normalized_name": "legitimate space corp simulator llc" + }, + { + "appid": 3725170, + "normalized_name": "riftveil" + }, + { + "appid": 3725220, + "normalized_name": "weed wacker warrior" + }, + { + "appid": 3725360, + "normalized_name": "101 cats hidden in barcelona" + }, + { + "appid": 3725390, + "normalized_name": "street pizza" + }, + { + "appid": 3725420, + "normalized_name": "vape shop simulator" + }, + { + "appid": 3725470, + "normalized_name": "primateria reburn" + }, + { + "appid": 3725490, + "normalized_name": "jackknife" + }, + { + "appid": 3725500, + "normalized_name": "blood drive" + }, + { + "appid": 3725510, + "normalized_name": "help! i've been cursed with a bubble butt" + }, + { + "appid": 3725520, + "normalized_name": "ding!" + }, + { + "appid": 3725530, + "normalized_name": "chick clicker" + }, + { + "appid": 3725600, + "normalized_name": "schematica" + }, + { + "appid": 3725670, + "normalized_name": "underworld" + }, + { + "appid": 3725710, + "normalized_name": "supermarket simulator deluxe" + }, + { + "appid": 3725730, + "normalized_name": "kaire" + }, + { + "appid": 3725770, + "normalized_name": "arcade boss simulator" + }, + { + "appid": 3725860, + "normalized_name": "mind within" + }, + { + "appid": 3725900, + "normalized_name": "basket bots" + }, + { + "appid": 3725960, + "normalized_name": "9 lives to escape" + }, + { + "appid": 3726000, + "normalized_name": "wood & flesh chapter 2" + }, + { + "appid": 3726010, + "normalized_name": "battlement" + }, + { + "appid": 3726090, + "normalized_name": "leyline chronicles 2" + }, + { + "appid": 3726110, + "normalized_name": "dropcore" + }, + { + "appid": 3726240, + "normalized_name": "sunny's odyssey" + }, + { + "appid": 3726370, + "normalized_name": "heavy metal death can" + }, + { + "appid": 3726380, + "normalized_name": "the curse of tethria" + }, + { + "appid": 3726400, + "normalized_name": "mountain's secret" + }, + { + "appid": 3726420, + "normalized_name": "warrior's reward 🗡" + }, + { + "appid": 3726440, + "normalized_name": "hal protocol" + }, + { + "appid": 3726480, + "normalized_name": "cube jump game" + }, + { + "appid": 3726570, + "normalized_name": "synthwave burnout vr" + }, + { + "appid": 3726630, + "normalized_name": "depths of insanity 3" + }, + { + "appid": 3726700, + "normalized_name": "brainrot battle simulator" + }, + { + "appid": 3726770, + "normalized_name": "leaving home" + }, + { + "appid": 3726830, + "normalized_name": "interstellar holy spirit" + }, + { + "appid": 3727050, + "normalized_name": "endless robot dash" + }, + { + "appid": 3727100, + "normalized_name": "brainrot nightmares" + }, + { + "appid": 3727130, + "normalized_name": "madhouse" + }, + { + "appid": 3727140, + "normalized_name": "echoes of the skyfire" + }, + { + "appid": 3727150, + "normalized_name": "fisher man" + }, + { + "appid": 3727270, + "normalized_name": "trap ball adventure" + }, + { + "appid": 3727280, + "normalized_name": "swordborn" + }, + { + "appid": 3727380, + "normalized_name": "oniria" + }, + { + "appid": 3727460, + "normalized_name": "zombie quest" + }, + { + "appid": 3727530, + "normalized_name": "the last dictator" + }, + { + "appid": 3727580, + "normalized_name": "recall news" + }, + { + "appid": 3727600, + "normalized_name": "all the promised burn an yssaia game" + }, + { + "appid": 3727650, + "normalized_name": "forest keeper lookout" + }, + { + "appid": 3727690, + "normalized_name": "dark awakening" + }, + { + "appid": 3727710, + "normalized_name": "gothic hell survivors" + }, + { + "appid": 3727720, + "normalized_name": "cute fame highschool days" + }, + { + "appid": 3727730, + "normalized_name": "the whisperers" + }, + { + "appid": 3727750, + "normalized_name": "kissed by a star" + }, + { + "appid": 3727780, + "normalized_name": "the ferry" + }, + { + "appid": 3727810, + "normalized_name": "the forgotten apartment" + }, + { + "appid": 3727820, + "normalized_name": "dustward" + }, + { + "appid": 3727830, + "normalized_name": "forest asylum 2" + }, + { + "appid": 3728030, + "normalized_name": "i commissioned some snails 4" + }, + { + "appid": 3728040, + "normalized_name": "i commissioned some snails 5" + }, + { + "appid": 3728050, + "normalized_name": "i commissioned some pigeons 2" + }, + { + "appid": 3728070, + "normalized_name": "living legends frozen destiny collector's" + }, + { + "appid": 3728080, + "normalized_name": "uni code" + }, + { + "appid": 3728120, + "normalized_name": "spacecorp 2025 2300ad" + }, + { + "appid": 3728370, + "normalized_name": "i became my punk son's fake girlfriend" + }, + { + "appid": 3728380, + "normalized_name": "black arhat wujing" + }, + { + "appid": 3728400, + "normalized_name": "necrodungeon" + }, + { + "appid": 3728490, + "normalized_name": "greta sees ghosts!" + }, + { + "appid": 3728520, + "normalized_name": "sweet driver" + }, + { + "appid": 3728540, + "normalized_name": "the high tower" + }, + { + "appid": 3728690, + "normalized_name": "palmvil haunted villa" + }, + { + "appid": 3728770, + "normalized_name": "lemegeton" + }, + { + "appid": 3728810, + "normalized_name": "cop rush" + }, + { + "appid": 3728830, + "normalized_name": "quiz kingdom elementary math kids rpg" + }, + { + "appid": 3728880, + "normalized_name": "scrow island" + }, + { + "appid": 3728900, + "normalized_name": "nobility simulator" + }, + { + "appid": 3728960, + "normalized_name": "witchy wonderland" + }, + { + "appid": 3729020, + "normalized_name": "hentai magic" + }, + { + "appid": 3729210, + "normalized_name": "adventure of realms" + }, + { + "appid": 3729270, + "normalized_name": "russian quest" + }, + { + "appid": 3729330, + "normalized_name": "buglab simulator" + }, + { + "appid": 3729350, + "normalized_name": "rebound express" + }, + { + "appid": 3729360, + "normalized_name": "afterheat" + }, + { + "appid": 3729400, + "normalized_name": "boomer brawler" + }, + { + "appid": 3729600, + "normalized_name": "my chibi friend" + }, + { + "appid": 3729610, + "normalized_name": "can you clear up to 100 stages?" + }, + { + "appid": 3729650, + "normalized_name": "cats hidden in chang'an" + }, + { + "appid": 3729730, + "normalized_name": "underground chapter 1" + }, + { + "appid": 3729780, + "normalized_name": "doom drive" + }, + { + "appid": 3729890, + "normalized_name": "bobo's big tower" + }, + { + "appid": 3730190, + "normalized_name": "it happened at night a new nightmare" + }, + { + "appid": 3730430, + "normalized_name": "doorka" + }, + { + "appid": 3730460, + "normalized_name": "wall" + }, + { + "appid": 3730520, + "normalized_name": "impossible rooms no way out" + }, + { + "appid": 3730560, + "normalized_name": "swamp fellas" + }, + { + "appid": 3730600, + "normalized_name": "aestheta" + }, + { + "appid": 3730630, + "normalized_name": "sorcerer's fortitude" + }, + { + "appid": 3730670, + "normalized_name": "sorcery and survival" + }, + { + "appid": 3730720, + "normalized_name": "chains on sand" + }, + { + "appid": 3730730, + "normalized_name": "bogdan's сlinic" + }, + { + "appid": 3730750, + "normalized_name": "steve & kyle's adventures" + }, + { + "appid": 3730930, + "normalized_name": "star tracer" + }, + { + "appid": 3730960, + "normalized_name": "where's that clown?!" + }, + { + "appid": 3730970, + "normalized_name": "matchology" + }, + { + "appid": 3731120, + "normalized_name": "akane's way hiragana" + }, + { + "appid": 3731240, + "normalized_name": "injection no.9 prologue" + }, + { + "appid": 3731260, + "normalized_name": "corbaci a cozy cinematic horror" + }, + { + "appid": 3731350, + "normalized_name": "memology escape of memes" + }, + { + "appid": 3731430, + "normalized_name": "桌面神社" + }, + { + "appid": 3731450, + "normalized_name": "blop" + }, + { + "appid": 3731460, + "normalized_name": "troop vs troop" + }, + { + "appid": 3731560, + "normalized_name": "mommy’s slipper" + }, + { + "appid": 3731570, + "normalized_name": "the darkblade" + }, + { + "appid": 3731770, + "normalized_name": "karma jump" + }, + { + "appid": 3731820, + "normalized_name": "con tale of the darkness" + }, + { + "appid": 3731850, + "normalized_name": "save your soul" + }, + { + "appid": 3731940, + "normalized_name": "ha ha ho ho horror" + }, + { + "appid": 3732040, + "normalized_name": "spacefighter rukia 2" + }, + { + "appid": 3732120, + "normalized_name": "abyssal maw" + }, + { + "appid": 3732190, + "normalized_name": "last guest" + }, + { + "appid": 3732330, + "normalized_name": "interactive sex futanari incest episode 2" + }, + { + "appid": 3732350, + "normalized_name": "incest daughters bdsm episode 1" + }, + { + "appid": 3732400, + "normalized_name": "apt. 407" + }, + { + "appid": 3732410, + "normalized_name": "bug catcher" + }, + { + "appid": 3732440, + "normalized_name": "highway hopper" + }, + { + "appid": 3732750, + "normalized_name": "prodix" + }, + { + "appid": 3732810, + "normalized_name": "deadhold" + }, + { + "appid": 3732840, + "normalized_name": "slime match adventure" + }, + { + "appid": 3732900, + "normalized_name": "push to win" + }, + { + "appid": 3732940, + "normalized_name": "merge & meow" + }, + { + "appid": 3732950, + "normalized_name": "timeline keepers" + }, + { + "appid": 3733100, + "normalized_name": "zoomers versus boomers" + }, + { + "appid": 3733160, + "normalized_name": "unwanted dungeon" + }, + { + "appid": 3733210, + "normalized_name": "dream scraper" + }, + { + "appid": 3733230, + "normalized_name": "obgoose" + }, + { + "appid": 3733380, + "normalized_name": "the house below" + }, + { + "appid": 3733400, + "normalized_name": "hotdog hustler" + }, + { + "appid": 3733450, + "normalized_name": "polar shift" + }, + { + "appid": 3733490, + "normalized_name": "highriseescape" + }, + { + "appid": 3733510, + "normalized_name": "book of fei" + }, + { + "appid": 3733620, + "normalized_name": "relaxing farm merge tales" + }, + { + "appid": 3733650, + "normalized_name": "horror night with tung tung tung sahur" + }, + { + "appid": 3733690, + "normalized_name": "bloodrise" + }, + { + "appid": 3733740, + "normalized_name": "ramen! road to mastery" + }, + { + "appid": 3733830, + "normalized_name": "loser got isekai’d gotta conquer the girls before conquering the world" + }, + { + "appid": 3733880, + "normalized_name": "path to freedom" + }, + { + "appid": 3733890, + "normalized_name": "toolbox tycoon" + }, + { + "appid": 3733970, + "normalized_name": "run quad run" + }, + { + "appid": 3733990, + "normalized_name": "adventurer's gate" + }, + { + "appid": 3734060, + "normalized_name": "night shift at the cement plant" + }, + { + "appid": 3734280, + "normalized_name": "prism" + }, + { + "appid": 3734310, + "normalized_name": "七宗罪:城中村(se7en village)" + }, + { + "appid": 3734340, + "normalized_name": "dimension drifters" + }, + { + "appid": 3734370, + "normalized_name": "smash simulator vr" + }, + { + "appid": 3734520, + "normalized_name": "the dark quarter" + }, + { + "appid": 3734550, + "normalized_name": "clumsy" + }, + { + "appid": 3734800, + "normalized_name": "puzzle company" + }, + { + "appid": 3734820, + "normalized_name": "truco argentino" + }, + { + "appid": 3734880, + "normalized_name": "time assassin" + }, + { + "appid": 3734930, + "normalized_name": "demonborg mining co" + }, + { + "appid": 3734980, + "normalized_name": "a simple job" + }, + { + "appid": 3735020, + "normalized_name": "the between" + }, + { + "appid": 3735030, + "normalized_name": "evergreen tavern" + }, + { + "appid": 3735190, + "normalized_name": "anime dream match dogs" + }, + { + "appid": 3735350, + "normalized_name": "akeno's veil" + }, + { + "appid": 3735400, + "normalized_name": "chasing the universe" + }, + { + "appid": 3735490, + "normalized_name": "mistpaw ravine" + }, + { + "appid": 3735750, + "normalized_name": "cat summoner block puzzle" + }, + { + "appid": 3735790, + "normalized_name": "viridian eclipse" + }, + { + "appid": 3735830, + "normalized_name": "rocket catch" + }, + { + "appid": 3735870, + "normalized_name": "shadow protocol" + }, + { + "appid": 3735880, + "normalized_name": "101 cats hidden in greece" + }, + { + "appid": 3736040, + "normalized_name": "cozy farm" + }, + { + "appid": 3736130, + "normalized_name": "nippon dojo" + }, + { + "appid": 3736210, + "normalized_name": "white rose" + }, + { + "appid": 3736240, + "normalized_name": "the last delivery man on earth" + }, + { + "appid": 3736250, + "normalized_name": "snapshot!" + }, + { + "appid": 3736260, + "normalized_name": "lunaraxia magpie sings of the world's end" + }, + { + "appid": 3736350, + "normalized_name": "italian brainrot tcg" + }, + { + "appid": 3736380, + "normalized_name": "gain tiles match trading dilemma" + }, + { + "appid": 3736400, + "normalized_name": "skillwarz" + }, + { + "appid": 3736420, + "normalized_name": "the garden of youth" + }, + { + "appid": 3736430, + "normalized_name": "humanity's heart" + }, + { + "appid": 3736440, + "normalized_name": "echoes in the dark" + }, + { + "appid": 3736520, + "normalized_name": "sahur escape together" + }, + { + "appid": 3736540, + "normalized_name": "unextinction" + }, + { + "appid": 3736550, + "normalized_name": "work life balance" + }, + { + "appid": 3736560, + "normalized_name": "if we make it home." + }, + { + "appid": 3736600, + "normalized_name": "come to an end" + }, + { + "appid": 3736610, + "normalized_name": "paper bleed" + }, + { + "appid": 3736680, + "normalized_name": "clustercluck" + }, + { + "appid": 3736860, + "normalized_name": "collapse of the midnight sun" + }, + { + "appid": 3737310, + "normalized_name": "寄生エレベーター" + }, + { + "appid": 3737330, + "normalized_name": "medical layers" + }, + { + "appid": 3737340, + "normalized_name": "epicross" + }, + { + "appid": 3737430, + "normalized_name": "gear combination" + }, + { + "appid": 3737450, + "normalized_name": "hentai hospital" + }, + { + "appid": 3737490, + "normalized_name": "hentai senpai hot summer beach resort" + }, + { + "appid": 3737550, + "normalized_name": "spin royale" + }, + { + "appid": 3737600, + "normalized_name": "magnecube" + }, + { + "appid": 3737720, + "normalized_name": "pact of blood" + }, + { + "appid": 3737850, + "normalized_name": "the rescue haven" + }, + { + "appid": 3737930, + "normalized_name": "drinking medieval" + }, + { + "appid": 3737990, + "normalized_name": "isekat crushed by a computer my beloved kitten is transported to a fantasy world where its typing skills save the kingdom!" + }, + { + "appid": 3738050, + "normalized_name": "the ice cream culprit" + }, + { + "appid": 3738180, + "normalized_name": "data rot" + }, + { + "appid": 3738190, + "normalized_name": "save stray cats" + }, + { + "appid": 3738340, + "normalized_name": "mirria" + }, + { + "appid": 3738450, + "normalized_name": "dash dot die" + }, + { + "appid": 3738570, + "normalized_name": "maniac hunt or be hunted" + }, + { + "appid": 3738630, + "normalized_name": "世界树葬火" + }, + { + "appid": 3738660, + "normalized_name": "nocturnal survivors" + }, + { + "appid": 3738700, + "normalized_name": "don't forget the bear" + }, + { + "appid": 3738720, + "normalized_name": "make it! sushi" + }, + { + "appid": 3738750, + "normalized_name": "knight in time" + }, + { + "appid": 3738820, + "normalized_name": "nonogram nonsense" + }, + { + "appid": 3738830, + "normalized_name": "bodycam onrecord" + }, + { + "appid": 3739040, + "normalized_name": "city taxi mission" + }, + { + "appid": 3739090, + "normalized_name": "reversi" + }, + { + "appid": 3739160, + "normalized_name": "highway bus rush" + }, + { + "appid": 3739210, + "normalized_name": "condo" + }, + { + "appid": 3739280, + "normalized_name": "nocturne fx" + }, + { + "appid": 3739340, + "normalized_name": "the white sea" + }, + { + "appid": 3739370, + "normalized_name": "they came for more pasta" + }, + { + "appid": 3739420, + "normalized_name": "burr puzzle" + }, + { + "appid": 3739620, + "normalized_name": "midnight" + }, + { + "appid": 3739660, + "normalized_name": "mega dimension ripper 9000" + }, + { + "appid": 3739690, + "normalized_name": "blah blah family" + }, + { + "appid": 3739700, + "normalized_name": "摸鱼大亨" + }, + { + "appid": 3739730, + "normalized_name": "skull hotel" + }, + { + "appid": 3739780, + "normalized_name": "projecta" + }, + { + "appid": 3739860, + "normalized_name": "hentai house wife" + }, + { + "appid": 3739920, + "normalized_name": "math is hard" + }, + { + "appid": 3740040, + "normalized_name": "ostensible" + }, + { + "appid": 3740060, + "normalized_name": "hapless" + }, + { + "appid": 3740070, + "normalized_name": "fear night tales brothers kebab saloon" + }, + { + "appid": 3740090, + "normalized_name": "bruisers 2d boxing" + }, + { + "appid": 3740120, + "normalized_name": "mabeldos" + }, + { + "appid": 3740180, + "normalized_name": "to late_the last room" + }, + { + "appid": 3740340, + "normalized_name": "astro grind" + }, + { + "appid": 3740360, + "normalized_name": "lia hacking destiny" + }, + { + "appid": 3740370, + "normalized_name": "kingdom's path" + }, + { + "appid": 3740500, + "normalized_name": "cave of gurg" + }, + { + "appid": 3740800, + "normalized_name": "harder parkour" + }, + { + "appid": 3740810, + "normalized_name": "space mechanics repair | hiring | crafting" + }, + { + "appid": 3740820, + "normalized_name": "sweet cheongsam" + }, + { + "appid": 3740890, + "normalized_name": "stray tekirs" + }, + { + "appid": 3740920, + "normalized_name": "orbit maze" + }, + { + "appid": 3741120, + "normalized_name": "帝王拆迁办" + }, + { + "appid": 3741340, + "normalized_name": "bkpr" + }, + { + "appid": 3741350, + "normalized_name": "aesop rock's black hole superette experience" + }, + { + "appid": 3741430, + "normalized_name": "chamber x" + }, + { + "appid": 3741470, + "normalized_name": "lonelight" + }, + { + "appid": 3741560, + "normalized_name": "mathletics" + }, + { + "appid": 3741570, + "normalized_name": "blackjack simple" + }, + { + "appid": 3741590, + "normalized_name": "evolvion" + }, + { + "appid": 3741750, + "normalized_name": "bleakmoor house" + }, + { + "appid": 3741890, + "normalized_name": "gladiators of roma revixit" + }, + { + "appid": 3741950, + "normalized_name": "방과 후 특별지도 (after school confession)" + }, + { + "appid": 3742110, + "normalized_name": "dustoria" + }, + { + "appid": 3742140, + "normalized_name": "backstabbing king" + }, + { + "appid": 3742650, + "normalized_name": "世界之外的愚人船" + }, + { + "appid": 3742930, + "normalized_name": "fantamon" + }, + { + "appid": 3743070, + "normalized_name": "twingrip" + }, + { + "appid": 3743090, + "normalized_name": "deadly delivery" + }, + { + "appid": 3743370, + "normalized_name": "craterville" + }, + { + "appid": 3743430, + "normalized_name": "hunter's journey tears of the lake collector's" + }, + { + "appid": 3743460, + "normalized_name": "黑地牢:抽卡 black dungeon draw a card" + }, + { + "appid": 3743620, + "normalized_name": "chill train densha no kuni" + }, + { + "appid": 3743830, + "normalized_name": "100 cats lost in world find & color" + }, + { + "appid": 3743890, + "normalized_name": "block blade" + }, + { + "appid": 3744220, + "normalized_name": "craball" + }, + { + "appid": 3744230, + "normalized_name": "stanley says" + }, + { + "appid": 3744300, + "normalized_name": "skaterpg" + }, + { + "appid": 3744310, + "normalized_name": "physics puzzle ball" + }, + { + "appid": 3744360, + "normalized_name": "a rayuela game" + }, + { + "appid": 3744480, + "normalized_name": "arabian gulf" + }, + { + "appid": 3744910, + "normalized_name": "硬汉猫猫:手法大师" + }, + { + "appid": 3744990, + "normalized_name": "archipelago luminary" + }, + { + "appid": 3745040, + "normalized_name": "hgmgame rooster" + }, + { + "appid": 3745060, + "normalized_name": "dracs after dusk" + }, + { + "appid": 3745270, + "normalized_name": "the alchemist's cards" + }, + { + "appid": 3745340, + "normalized_name": "pop cat" + }, + { + "appid": 3745510, + "normalized_name": "mika's battle s 3" + }, + { + "appid": 3745850, + "normalized_name": "luna & sol nightmare ward" + }, + { + "appid": 3745860, + "normalized_name": "space revolver" + }, + { + "appid": 3745970, + "normalized_name": "wonders of the deep" + }, + { + "appid": 3745990, + "normalized_name": "onora" + }, + { + "appid": 3746030, + "normalized_name": "flappy lord" + }, + { + "appid": 3746050, + "normalized_name": "super paparazzi" + }, + { + "appid": 3746210, + "normalized_name": "backrooms bodycam" + }, + { + "appid": 3746230, + "normalized_name": "withering horrors" + }, + { + "appid": 3746240, + "normalized_name": "refraction" + }, + { + "appid": 3746360, + "normalized_name": "blade and madness" + }, + { + "appid": 3746370, + "normalized_name": "midwest drag racing" + }, + { + "appid": 3746450, + "normalized_name": "pet oddities desktop shelter" + }, + { + "appid": 3746510, + "normalized_name": "3d puzzle mountain life" + }, + { + "appid": 3746520, + "normalized_name": "room football dark place" + }, + { + "appid": 3746610, + "normalized_name": "italian brainrot simulator" + }, + { + "appid": 3746620, + "normalized_name": "sz2000" + }, + { + "appid": 3746680, + "normalized_name": "impossible survival" + }, + { + "appid": 3746740, + "normalized_name": "muay mayhem" + }, + { + "appid": 3747040, + "normalized_name": "wicked subway 🚇" + }, + { + "appid": 3747060, + "normalized_name": "russian parkour simulator" + }, + { + "appid": 3747140, + "normalized_name": "fourmiworld" + }, + { + "appid": 3747180, + "normalized_name": "vinegar mutter" + }, + { + "appid": 3747300, + "normalized_name": "mitos.is og" + }, + { + "appid": 3747400, + "normalized_name": "beneath the quiet where it ends" + }, + { + "appid": 3747530, + "normalized_name": "orbital arena" + }, + { + "appid": 3747580, + "normalized_name": "underground racer" + }, + { + "appid": 3747610, + "normalized_name": "evacuate" + }, + { + "appid": 3747670, + "normalized_name": "dinoslap" + }, + { + "appid": 3747770, + "normalized_name": "history of dragosa" + }, + { + "appid": 3748050, + "normalized_name": "grav my balls" + }, + { + "appid": 3748070, + "normalized_name": "tap x3" + }, + { + "appid": 3748170, + "normalized_name": "zurd hunt" + }, + { + "appid": 3748450, + "normalized_name": "brewcrew" + }, + { + "appid": 3748660, + "normalized_name": "futanari goddess 🕯" + }, + { + "appid": 3748680, + "normalized_name": "space memory dinosaurs" + }, + { + "appid": 3748690, + "normalized_name": "gruniożerca trilogy" + }, + { + "appid": 3749280, + "normalized_name": "coffee rush" + }, + { + "appid": 3749540, + "normalized_name": "steampunk idle spinner" + }, + { + "appid": 3750360, + "normalized_name": "horse plinko" + }, + { + "appid": 3750460, + "normalized_name": "lumber and plunder" + }, + { + "appid": 3750480, + "normalized_name": "factory reset" + }, + { + "appid": 3750540, + "normalized_name": "fly to butterfly valley" + }, + { + "appid": 3750660, + "normalized_name": "秘密のfakering" + }, + { + "appid": 3751310, + "normalized_name": "captain star" + }, + { + "appid": 3751330, + "normalized_name": "the nest" + }, + { + "appid": 3751620, + "normalized_name": "lost gods adventures of k&k" + }, + { + "appid": 3751730, + "normalized_name": "loan shark" + }, + { + "appid": 3751980, + "normalized_name": "endless miles" + }, + { + "appid": 3752170, + "normalized_name": "episode" + }, + { + "appid": 3752220, + "normalized_name": "riftguard" + }, + { + "appid": 3752500, + "normalized_name": "annunaki clicker" + }, + { + "appid": 3752580, + "normalized_name": "sinister sodies" + }, + { + "appid": 3752630, + "normalized_name": "our town hero" + }, + { + "appid": 3752850, + "normalized_name": "just me and my cat" + }, + { + "appid": 3753000, + "normalized_name": "afterbright" + }, + { + "appid": 3753050, + "normalized_name": "facility of rizriz 2" + }, + { + "appid": 3753170, + "normalized_name": "sodahazard taste test" + }, + { + "appid": 3753250, + "normalized_name": "happy pet" + }, + { + "appid": 3753500, + "normalized_name": "made up chart" + }, + { + "appid": 3753590, + "normalized_name": "find the differences 3d" + }, + { + "appid": 3753810, + "normalized_name": "monster slayers incorporated" + }, + { + "appid": 3753880, + "normalized_name": "game saloon simulator" + }, + { + "appid": 3754030, + "normalized_name": "play possum" + }, + { + "appid": 3754050, + "normalized_name": "silvanis" + }, + { + "appid": 3754200, + "normalized_name": "eternity" + }, + { + "appid": 3754610, + "normalized_name": "jixo summer dreams collector's" + }, + { + "appid": 3754700, + "normalized_name": "asteroid forward" + }, + { + "appid": 3754830, + "normalized_name": "keyboard party" + }, + { + "appid": 3754920, + "normalized_name": "gothic scythe" + }, + { + "appid": 3755060, + "normalized_name": "seventh" + }, + { + "appid": 3755220, + "normalized_name": "dead zone bio weapon simulator" + }, + { + "appid": 3755350, + "normalized_name": "爱丽丝与彼岸" + }, + { + "appid": 3756530, + "normalized_name": "pretty peculiar lovers" + }, + { + "appid": 3756850, + "normalized_name": "cozy space shooter" + }, + { + "appid": 3756980, + "normalized_name": "the kingdom of frilensgrade" + }, + { + "appid": 3757480, + "normalized_name": "ever war" + }, + { + "appid": 3757660, + "normalized_name": "station 58" + }, + { + "appid": 3757980, + "normalized_name": "street dog legend" + }, + { + "appid": 3759590, + "normalized_name": "hgmgame eagle" + }, + { + "appid": 3759610, + "normalized_name": "weapon case" + }, + { + "appid": 3759760, + "normalized_name": "best lasagna recipe" + }, + { + "appid": 3759870, + "normalized_name": "pandas contrast" + }, + { + "appid": 3760160, + "normalized_name": "dungeon raid zero floor" + } +] \ No newline at end of file diff --git a/data/games_appid.tar.xz b/data/games_appid.tar.xz new file mode 100644 index 0000000..5553861 Binary files /dev/null and b/data/games_appid.tar.xz differ diff --git a/dev-scripts/.spellignore b/dev-scripts/.spellignore new file mode 100644 index 0000000..f6c1435 --- /dev/null +++ b/dev-scripts/.spellignore @@ -0,0 +1,16 @@ +PortProton +\n +flatpak +Auto Install +Project-Id-Version: +Report-Msgid-Bugs-To: +POT-Creation-Date: +PO-Revision-Date: +Last-Translator: +Language: +Language-Team: +Plural-Forms: +MIME-Version: +Content-Type: +Content-Transfer-Encoding: +Generated-By: diff --git a/dev-scripts/bump_ver.py b/dev-scripts/bump_ver.py new file mode 100755 index 0000000..d7595b0 --- /dev/null +++ b/dev-scripts/bump_ver.py @@ -0,0 +1,133 @@ +#!/usr/bin/env python3 + +import argparse +import re +from pathlib import Path + +# Base directory of the project +BASE_DIR = Path(__file__).parent.parent +# Specific project files +APPIMAGE_RECIPE = BASE_DIR / "build-aux" / "AppImageBuilder.yml" +ARCH_PKGBUILD = BASE_DIR / "build-aux" / "PKGBUILD" +FEDORA_SPEC = BASE_DIR / "build-aux" / "fedora.spec" +PYPROJECT = BASE_DIR / "pyproject.toml" +APP_PY = BASE_DIR / "portprotonqt" / "app.py" +GITHUB_WORKFLOW = BASE_DIR / ".github" / "workflows" / "build.yml" +GITEA_WORKFLOW = BASE_DIR / ".gitea" / "workflows" / "build.yml" + +def bump_appimage(path: Path, old: str, new: str) -> bool: + """ + Update only the 'version' field under app_info in AppImageBuilder.yml + """ + if not path.exists(): + return False + text = path.read_text(encoding='utf-8') + pattern = re.compile(r"(?m)^(\s*version:\s*)" + re.escape(old) + r"$") + new_text, count = pattern.subn(lambda m: m.group(1) + new, text) + if count: + path.write_text(new_text, encoding='utf-8') + return bool(count) + + +def bump_arch(path: Path, old: str, new: str) -> bool: + """ + Update pkgver in PKGBUILD + """ + if not path.exists(): + return False + text = path.read_text(encoding='utf-8') + pattern = re.compile(r"(?m)^(pkgver=)" + re.escape(old) + r"$") + new_text, count = pattern.subn(lambda m: m.group(1) + new, text) + if count: + path.write_text(new_text, encoding='utf-8') + return bool(count) + + +def bump_fedora(path: Path, old: str, new: str) -> bool: + """ + Update only the '%global pypi_version' line in fedora.spec + """ + if not path.exists(): + return False + text = path.read_text(encoding='utf-8') + pattern = re.compile(r"(?m)^(%global\s+pypi_version\s+)" + re.escape(old) + r"$") + new_text, count = pattern.subn(lambda m: m.group(1) + new, text) + if count: + path.write_text(new_text, encoding='utf-8') + return bool(count) + + +def bump_pyproject(path: Path, old: str, new: str) -> bool: + """ + Update version in pyproject.toml under [project] + """ + if not path.exists(): + return False + text = path.read_text(encoding='utf-8') + pattern = re.compile(r"(?m)^(version\s*=\s*)\"" + re.escape(old) + r"\"$") + new_text, count = pattern.subn(lambda m: m.group(1) + f'"{new}"', text) + if count: + path.write_text(new_text, encoding='utf-8') + return bool(count) + + +def bump_app_py(path: Path, old: str, new: str) -> bool: + """ + Update __app_version__ in app.py + """ + if not path.exists(): + return False + text = path.read_text(encoding='utf-8') + pattern = re.compile(r"(?m)^(\s*__app_version__\s*=\s*)\"" + re.escape(old) + r"\"$") + new_text, count = pattern.subn(lambda m: m.group(1) + f'"{new}"', text) + if count: + path.write_text(new_text, encoding='utf-8') + return bool(count) + + +def bump_workflow(path: Path, old: str, new: str) -> bool: + """ + Update VERSION in GitHub or Gitea Actions workflow + """ + if not path.exists(): + return False + text = path.read_text(encoding='utf-8') + pattern = re.compile(r"(?m)^(\s*VERSION:\s*)" + re.escape(old) + r"$") + new_text, count = pattern.subn(lambda m: m.group(1) + new, text) + if count: + path.write_text(new_text, encoding='utf-8') + return bool(count) + + +def main(): + parser = argparse.ArgumentParser(description='Bump project version in specific files') + parser.add_argument('old', help='Old version string') + parser.add_argument('new', help='New version string') + args = parser.parse_args() + old, new = args.old, args.new + + tasks = [ + (APPIMAGE_RECIPE, bump_appimage), + (ARCH_PKGBUILD, bump_arch), + (FEDORA_SPEC, bump_fedora), + (PYPROJECT, bump_pyproject), + (APP_PY, bump_app_py), + (GITHUB_WORKFLOW, bump_workflow), + (GITEA_WORKFLOW, bump_workflow) + ] + + updated = [] + for path, func in tasks: + if func(path, old, new): + updated.append(path.relative_to(BASE_DIR)) + + if updated: + print(f"Updated version from {old} to {new} in {len(updated)} files:") + for p in sorted(updated): + print(f" - {p}") + else: + print(f"No occurrences of version {old} found in specified files.") + + +if __name__ == '__main__': + main() diff --git a/dev-scripts/check_qss_properties.py b/dev-scripts/check_qss_properties.py new file mode 100755 index 0000000..3538b16 --- /dev/null +++ b/dev-scripts/check_qss_properties.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python3 + +import sys +from pathlib import Path +import re + +# Запрещенные свойства +FORBIDDEN_PROPERTIES = { + "box-shadow", + "backdrop-filter", + "cursor", + "text-shadow", +} + +def check_qss_files(): + has_errors = False + for qss_file in Path("portprotonqt/themes").glob("**/*.py"): + with open(qss_file, "r") as f: + content = f.read() + for prop in FORBIDDEN_PROPERTIES: + if re.search(rf"{prop}\s*:", content, re.IGNORECASE): + print(f"ERROR: Unknown qss property found '{prop}' on file {qss_file}") + has_errors = True + return has_errors + +if __name__ == "__main__": + if check_qss_files(): + sys.exit(1) diff --git a/dev-scripts/get_id.py b/dev-scripts/get_id.py new file mode 100755 index 0000000..529696e --- /dev/null +++ b/dev-scripts/get_id.py @@ -0,0 +1,199 @@ +#!/usr/bin/env python3 + +import os +import json +import asyncio +import aiohttp +import tarfile + + +# Получаем ключ Steam из переменной окружения. +key = os.environ.get('STEAM_KEY') +base_url = "https://api.steampowered.com/IStoreService/GetAppList/v1/?" +category = "games" + +def normalize_name(s): + """ + Приведение строки к нормальному виду: + - перевод в нижний регистр, + - удаление символов ™ и ®, + - замена разделителей (-, :, ,) на пробел, + - удаление лишних пробелов, + - удаление суффиксов 'bin' или 'app' в конце строки, + - удаление ключевых слов типа 'ultimate', 'edition' и т.п. + """ + s = s.lower() + for ch in ["™", "®"]: + s = s.replace(ch, "") + for ch in ["-", ":", ","]: + s = s.replace(ch, " ") + s = " ".join(s.split()) + for suffix in ["bin", "app"]: + if s.endswith(suffix): + s = s[:-len(suffix)].strip() + + # Удаляем служебные слова, которые не должны влиять на сопоставление + keywords_to_remove = {"ultimate", "edition", "definitive", "complete", "remastered"} + words = s.split() + filtered_words = [word for word in words if word not in keywords_to_remove] + return " ".join(filtered_words) + + +def process_steam_apps(steam_apps): + """ + Для каждого приложения из Steam добавляет ключ "normalized_name", + содержащий нормализованное значение имени (поле "name"), + и удаляет ненужные поля: "name", "last_modified", "price_change_number". + """ + for app in steam_apps: + original = app.get("name", "") + if not app.get("normalized_name"): + app["normalized_name"] = normalize_name(original) + # Удаляем ненужные поля + app.pop("name", None) + app.pop("last_modified", None) + app.pop("price_change_number", None) + return steam_apps + + +async def get_app_list(session, last_appid, endpoint): + """ + Получает часть списка приложений из API. + Если last_appid передан, добавляет его к URL для постраничной загрузки. + """ + url = endpoint + if last_appid: + url = f"{url}&last_appid={last_appid}" + async with session.get(url) as response: + response.raise_for_status() + return await response.json() + + +async def fetch_games_json(session): + """ + Загружает JSON с данными из AreWeAntiCheatYet и извлекает поля normalized_name и status. + """ + url = "https://raw.githubusercontent.com/AreWeAntiCheatYet/AreWeAntiCheatYet/HEAD/games.json" + try: + async with session.get(url) as response: + response.raise_for_status() + text = await response.text() + data = json.loads(text) + # Извлекаем только поля normalized_name и status + return [{"normalized_name": normalize_name(game["name"]), "status": game["status"]} for game in data] + except Exception as error: + print(f"Ошибка загрузки games.json: {error}") + return [] + + +async def request_data(): + """ + Получает данные списка приложений для категории "games" до тех пор, + пока не закончатся результаты, обрабатывает данные для добавления + нормализованных имён и записывает итоговый результат в JSON-файл. + Отдельно загружает games.json и сохраняет его в отдельный JSON-файл. + """ + # Параметры запроса для игр. + game_param = "&include_games=true" + dlc_param = "&include_dlc=false" + software_param = "&include_software=false" + videos_param = "&include_videos=false" + hardware_param = "&include_hardware=false" + + endpoint = ( + f"{base_url}key={key}" + f"{game_param}{dlc_param}{software_param}{videos_param}{hardware_param}" + f"&max_results=50000" + ) + + output_json = [] + total_parsed = 0 + + try: + async with aiohttp.ClientSession() as session: + # Загружаем данные Steam + have_more_results = True + last_appid_val = None + while have_more_results: + app_list = await get_app_list(session, last_appid_val, endpoint) + apps = app_list['response']['apps'] + # Обрабатываем приложения для добавления нормализованных имён + apps = process_steam_apps(apps) + output_json.extend(apps) + total_parsed += len(apps) + have_more_results = app_list['response'].get('have_more_results', False) + last_appid_val = app_list['response'].get('last_appid') + + print(f"Обработано {len(apps)} игр, всего: {total_parsed}.") + + # Загружаем и сохраняем games.json отдельно + anticheat_games = await fetch_games_json(session) + + except Exception as error: + print(f"Ошибка получения данных для {category}: {error}") + return False + + repo_root = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) + data_dir = os.path.join(repo_root, "data") + os.makedirs(data_dir, exist_ok=True) + + # Путь к JSON-файлам для Steam + output_json_full = os.path.join(data_dir, f"{category}_appid.json") + output_json_min = os.path.join(data_dir, f"{category}_appid_min.json") + + # Записываем полные данные Steam с отступами + with open(output_json_full, "w", encoding="utf-8") as f: + json.dump(output_json, f, ensure_ascii=False, indent=2) + + # Записываем минимизированные данные Steam + with open(output_json_min, "w", encoding="utf-8") as f: + json.dump(output_json, f, ensure_ascii=False, separators=(',',':')) + + # Путь к JSON-файлам для AreWeAntiCheatYet + anticheat_json_full = os.path.join(data_dir, "anticheat_games.json") + anticheat_json_min = os.path.join(data_dir, "anticheat_games_min.json") + + # Записываем полные данные AreWeAntiCheatYet с отступами + with open(anticheat_json_full, "w", encoding="utf-8") as f: + json.dump(anticheat_games, f, ensure_ascii=False, indent=2) + + # Записываем минимизированные данные AreWeAntiCheatYet + with open(anticheat_json_min, "w", encoding="utf-8") as f: + json.dump(anticheat_games, f, ensure_ascii=False, separators=(',',':')) + + # Упаковка только минифицированных JSON в tar.xz архивы с максимальным сжатием + # Архив для Steam + steam_archive_path = os.path.join(data_dir, f"{category}_appid.tar.xz") + try: + with tarfile.open(steam_archive_path, "w:xz", preset=9) as tar: + tar.add(output_json_min, arcname=os.path.basename(output_json_min)) + print(f"Упаковано минифицированное JSON Steam в архив: {steam_archive_path}") + # Удаляем исходный минифицированный файл после упаковки + os.remove(output_json_min) + except Exception as e: + print(f"Ошибка при упаковке архива Steam: {e}") + return False + + # Архив для AreWeAntiCheatYet + anticheat_archive_path = os.path.join(data_dir, "anticheat_games.tar.xz") + try: + with tarfile.open(anticheat_archive_path, "w:xz", preset=9) as tar: + tar.add(anticheat_json_min, arcname=os.path.basename(anticheat_json_min)) + print(f"Упаковано минифицированное JSON AreWeAntiCheatYet в архив: {anticheat_archive_path}") + # Удаляем исходный минифицированный файл после упаковки + os.remove(anticheat_json_min) + except Exception as e: + print(f"Ошибка при упаковке архива AreWeAntiCheatYet: {e}") + return False + + return True + + +async def run(): + success = await request_data() + if not success: + exit(1) + + +if __name__ == "__main__": + asyncio.run(run()) diff --git a/dev-scripts/l10n.py b/dev-scripts/l10n.py new file mode 100755 index 0000000..4acbb5b --- /dev/null +++ b/dev-scripts/l10n.py @@ -0,0 +1,246 @@ +#!/usr/bin/env python3 + +import argparse +import sys +import io +import contextlib +import re +from pathlib import Path +from collections import defaultdict +from concurrent.futures import ThreadPoolExecutor +from babel.messages.frontend import CommandLineInterface +from pyaspeller import YandexSpeller + +# ---------- Пути ---------- +GUIDE_DIR = Path(__file__).parent.parent / "documentation" / "localization_guide" +README_EN = GUIDE_DIR / "README.md" +README_RU = GUIDE_DIR / "README.ru.md" +LOCALES_PATH = Path(__file__).parent.parent / "portprotonqt" / "locales" +THEMES_PATH = Path(__file__).parent.parent / "portprotonqt" / "themes" +README_FILES = [README_EN, README_RU] +POT_FILE = LOCALES_PATH / "messages.pot" + +# ---------- Версия проекта ---------- +def _get_version() -> str: + return "0.1.1" + +# ---------- Обновление README ---------- +def _update_coverage(lines: list[str]) -> None: + # Парсим статистику из вывода pybabel --statistics + locales_stats = [line for line in lines if line.endswith(".po")] + # Извлекаем (count, pct, locale) и сортируем + rows = sorted( + (m := re.search( + r"""(\d+\ of\ \d+).* # message counts + \((\d+\%)\).* # message percentage + locales\/(.*)\/LC_MESSAGES # locale name""", + stat, re.VERBOSE + )) and m.groups() + for stat in locales_stats + ) + + for md_file in README_FILES: + if not md_file.exists(): + continue + + text = md_file.read_text(encoding="utf-8") + is_ru = (md_file == README_RU) + + # Выбираем заголовок раздела + status_header = ( + "Current translation status:" if not is_ru + else "Текущий статус перевода:" + ) + + # Формируем шапку и строки таблицы + if is_ru: + table_header = ( + "\n\n" + "| Локаль | Прогресс | Переведено |\n" + "| :----- | -------: | ---------: |\n" + ) + fmt = lambda count, pct, loc: f"| [{loc}](./{loc}/LC_MESSAGES/messages.po) | {pct} | {count.replace(' of ', ' из ')} |" + else: + table_header = ( + "\n\n" + "| Locale | Progress | Translated |\n" + "| :----- | -------: | ---------: |\n" + ) + fmt = lambda count, pct, loc: f"| [{loc}](./{loc}/LC_MESSAGES/messages.po) | {pct} | {count} |" + + # Собираем строки и добавляем '---' в конце + coverage_table = ( + table_header + + "\n".join(fmt(c, p, l) for c, p, l in rows) + + "\n\n---" + ) + + # Удаляем старую автоматически сгенерированную таблицу + old_block = ( + r"" + r".*?(?=\n(?:##|\Z))" + ) + cleaned = re.sub(old_block, "", text, flags=re.DOTALL) + + # Вставляем новую таблицу сразу после строки с заголовком + insert_pattern = rf"(^.*{re.escape(status_header)}.*$)" + new_text = re.sub( + insert_pattern, + lambda m: m.group(1) + "\n\n" + coverage_table, + cleaned, + count=1, + flags=re.MULTILINE + ) + + # Записываем файл, если были изменения + if new_text != text: + md_file.write_text(new_text, encoding="utf-8") + +# ---------- PyBabel команды ---------- +def compile_locales() -> None: + CommandLineInterface().run([ + "pybabel", "compile", "--use-fuzzy", "--directory", + f"{LOCALES_PATH.resolve()}", "--statistics" + ]) + +def extract_strings() -> None: + input_dir = (Path(__file__).parent.parent / "portprotonqt").resolve() + CommandLineInterface().run([ + "pybabel", "extract", "--project=PortProtonQT", + f"--version={_get_version()}", + "--strip-comment-tag", + "--no-location", + f"--input-dir={input_dir}", + "--copyright-holder=boria138", + f"--ignore-dirs={THEMES_PATH}", + f"--output-file={POT_FILE.resolve()}" + ]) + +def update_locales() -> None: + CommandLineInterface().run([ + "pybabel", "update", + f"--input-file={POT_FILE.resolve()}", + f"--output-dir={LOCALES_PATH.resolve()}", + "--ignore-obsolete", + "--update-header-comment", + ]) + +def create_new(locales: list[str]) -> None: + if not POT_FILE.exists(): + extract_strings() + for locale in locales: + CommandLineInterface().run([ + "pybabel", "init", + f"--input-file={POT_FILE.resolve()}", + f"--output-dir={LOCALES_PATH.resolve()}", + f"--locale={locale}" + ]) + +# ---------- Игнорируемые префиксы для spellcheck ---------- +IGNORED_PREFIXES = () + +def load_ignored_prefixes(ignore_file=".spellignore"): + path = Path(__file__).parent / ignore_file + try: + return tuple(path.read_text(encoding='utf-8').splitlines()) + except FileNotFoundError: + return () + +IGNORED_PREFIXES = load_ignored_prefixes() + ("PortProton", "flatpak") + +# ---------- Проверка орфографии с параллелизмом ---------- +speller = YandexSpeller() +MSGID_RE = re.compile(r'^msgid\s+"(.*)"') +MSGSTR_RE = re.compile(r'^msgstr\s+"(.*)"') + +def extract_po_strings(filepath: Path) -> list[str]: + # Collect all strings, then filter by ignore list + texts, current_key, buffer = [], None, "" + def flush(): + nonlocal buffer + if buffer.strip(): + texts.append(buffer) + buffer = "" + for line in filepath.read_text(encoding='utf-8').splitlines(): + stripped = line.strip() + if stripped.startswith("msgid ") and filepath.suffix == '.pot': + flush(); current_key = 'msgid'; buffer = MSGID_RE.match(stripped).group(1) or '' + elif stripped.startswith("msgstr "): + flush(); current_key = 'msgstr'; buffer = MSGSTR_RE.match(stripped).group(1) or '' + elif stripped.startswith('"') and stripped.endswith('"') and current_key: + buffer += stripped[1:-1] + else: + flush(); current_key = None + flush() + # Final filter: remove ignored and multi-line + return [ + t for t in texts + if t.strip() and all(pref not in t for pref in IGNORED_PREFIXES) and "\n" not in t + ] + +def _check_text(text: str) -> tuple[str, list[dict]]: + result = speller.spell(text) + errors = [r for r in result if r.get('word') and r.get('s')] + return text, errors + +def check_file(filepath: Path, issues_summary: dict) -> bool: + print(f"Checking file: {filepath}") + texts = extract_po_strings(filepath) + has_errors = False + printed_err = False + with ThreadPoolExecutor(max_workers=8) as pool: + for text, errors in pool.map(_check_text, texts): + print(f' In string: "{text}"') + if errors: + if not printed_err: + print(f"❌ Errors in file: {filepath}") + printed_err = True + has_errors = True + for err in errors: + print(f" - typo: {err['word']}, suggestions: {', '.join(err['s'])}") + issues_summary[filepath].extend([(text, err) for err in errors]) + return has_errors + +# ---------- Основной обработчик ---------- +def main(args) -> int: + if args.update_all: + extract_strings(); update_locales() + if args.create_new: + create_new(args.create_new) + if args.spellcheck: + files = list(LOCALES_PATH.glob("**/*.po")) + [POT_FILE] + seen = set(); has_err = False + issues_summary = defaultdict(list) + for f in files: + if not f.exists() or f in seen: continue + seen.add(f) + if check_file(f, issues_summary): + has_err = True + else: + print(f"✅ {f} — no errors found.") + if has_err: + print("\n📋 Summary of Spelling Errors:") + for file, errs in issues_summary.items(): + print(f"\n✗ {file}") + print("-----") + for idx, (text, err) in enumerate(errs, 1): + print(f"{idx}. In '{text}': typo '{err['word']}', suggestions: {', '.join(err['s'])}") + print("-----") + return 1 if has_err else 0 + extract_strings(); compile_locales() + return 0 + +if __name__ == "__main__": + parser = argparse.ArgumentParser(prog="l10n", description="Localization utility for PortProtonQT.") + parser.add_argument("--create-new", nargs='+', type=str, default=False, help="Create .po for new locales") + parser.add_argument("--update-all", action='store_true', help="Extract/update locales and update README coverage") + parser.add_argument("--spellcheck", action='store_true', help="Run spellcheck on POT and PO files") + args = parser.parse_args() + if args.spellcheck: + sys.exit(main(args)) + f = io.StringIO() + with contextlib.redirect_stdout(f), contextlib.redirect_stderr(f): + main(args) + output = f.getvalue().splitlines() + _update_coverage(output) + sys.exit(0) diff --git a/documentation/localization_guide/README.md b/documentation/localization_guide/README.md new file mode 100644 index 0000000..f056bd7 --- /dev/null +++ b/documentation/localization_guide/README.md @@ -0,0 +1,80 @@ +📘 Эта документация также доступна на [русском.](README.ru.md) + +--- + +## 📋 Contents +- [Overview](#overview) +- [Adding a New Translation](#adding-a-new-translation) +- [Updating Existing Translations](#updating-existing-translations) +- [Compiling Translations](#compiling-translations) + +--- + +## 📖 Overview + +Localization in `PortProtonQT` is powered by `Babel` using `.po/.mo` files stored under `LC_MESSAGES/messages.po` for each language. + +Current translation status: + + + +| Locale | Progress | Translated | +| :----- | -------: | ---------: | +| [de_DE](./de_DE/LC_MESSAGES/messages.po) | 0% | 0 of 152 | +| [es_ES](./es_ES/LC_MESSAGES/messages.po) | 0% | 0 of 152 | +| [ru_RU](./ru_RU/LC_MESSAGES/messages.po) | 100% | 152 of 152 | + +--- + + +## 🏁 Adding a New Translation + +1. Run: + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py --create-new +``` + +2. Edit the file `portprotonqt/locales//LC_MESSAGES/messages.po` in Poedit or any text editor. + +--- + +## 🔄 Updating Existing Translations + +If you’ve added new strings to the code: + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py --update-all +``` + +--- + +## 🧵 Compiling Translations + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py +``` + + +## 🔍 Spell Check + +To check spelling, run the following commands: + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py --spellcheck +``` + +The script performs parallel spellchecking of strings in `.po` and `.pot` files. For each file, it prints the list of strings being checked and highlights any spelling errors with suggestions. Words listed in `dev-scripts/.spellignore` are ignored and not treated as typos. + diff --git a/documentation/localization_guide/README.ru.md b/documentation/localization_guide/README.ru.md new file mode 100644 index 0000000..bfa6da2 --- /dev/null +++ b/documentation/localization_guide/README.ru.md @@ -0,0 +1,78 @@ +📘 This documentation is also available in [English](README.md) + +--- + +## 📋 Содержание +- [Обзор](#обзор) +- [Добавление нового перевода](#добавление-нового-перевода) +- [Обновление существующих переводов](#обновление-существующих-переводов) +- [Компиляция переводов](#компиляция-переводов) + +--- + +## 📖 Обзор + +Локализация в `PortProtonQT` осуществляется через систему `.po/.mo` файлов и управляется утилитой `Babel`. Все переводы находятся в подкаталогах вида `LC_MESSAGES/messages.po` для каждой поддерживаемой локали. + +Текущий статус перевода: + + + +| Локаль | Прогресс | Переведено | +| :----- | -------: | ---------: | +| [de_DE](./de_DE/LC_MESSAGES/messages.po) | 0% | 0 из 152 | +| [es_ES](./es_ES/LC_MESSAGES/messages.po) | 0% | 0 из 152 | +| [ru_RU](./ru_RU/LC_MESSAGES/messages.po) | 100% | 152 из 152 | + +--- + + +## 🏁 Добавление нового перевода + +1. Выполните: + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py --create-new <код_локали> +``` + +2. Отредактируйте файл `portprotonqt/locales/<локаль>/LC_MESSAGES/messages.po` в Poedit или любом текстовом редакторе. + +--- + +## 🔄 Обновление существующих переводов + +Если вы добавили новые строки в код: + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py --update-all +``` + +--- + +## 🧵 Компиляция переводов + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py +``` + +## 🔍 Проверка орфографии + +Для проверки орфографии используйте команду: + +```bash +uv python install 3.10 +uv sync --all-extras --dev +source .venv/bin/activate +python dev-scripts/l10n.py --spellcheck +``` + +Скрипт выполняет параллельную проверку строк в `.po` и `.pot` файлах, выводит для каждого файла список проверяемых строк и ошибки с предложениями исправлений. Игнорирует слова, указанные в файле `dev-scripts/.spellignore`, чтобы не считать их опечатками. diff --git a/documentation/metadata_override/README.md b/documentation/metadata_override/README.md new file mode 100644 index 0000000..381bf21 --- /dev/null +++ b/documentation/metadata_override/README.md @@ -0,0 +1,110 @@ +📘 Эта документация также доступна на [русском](README.ru.md) + +--- + +## 📋 Contents +- [Overview](#overview) +- [How It Works](#how-it-works) + - [Data Priorities](#data-priorities) + - [File Structure](#file-structure) +- [For Users](#for-users) + - [Creating User Overrides](#creating-user-overrides) + - [Example](#example) +- [For Developers](#for-developers) + - [Adding Built-In Overrides](#adding-built-in-overrides) + +--- + +## 📖 Overview + +In `PortProtonQT`, you can change: + +- Game title +- Description +- Cover image + +Override types: + +| Type | Location | Priority | +|-----------------|--------------------------------------------------|----------| +| User | `~/.local/share/PortProtonQT/custom_data/` | Highest | +| Built-in | `portprotonqt/custom_data/` | Lower | + +--- + +## ⚙️ How It Works + +### Data Priorities + +Data is used in the following order: + +1. **User Overrides** +2. **Built-in Overrides** +3. **Steam Metadata** +4. **`.desktop` file info** + +### File Structure + +Each `` folder can include: + +- `metadata.txt` — contains name and description: + ```txt + name=My Game Title + description=My Game Description + ``` +- `cover.` — image file (`.png`, `.jpg`, `.jpeg`, `.bmp`) + +--- + +## 👤 For Users + +### Creating User Overrides + +1. **Create a folder for your game**: + ```bash + mkdir -p ~/.local/share/PortProtonQT/custom_data/mygame + ``` + +2. **Add overrides**: + - **Metadata file**: + ```bash + echo -e "name=My Game\ndescription=Exciting game" > ~/.local/share/PortProtonQT/custom_data/mygame/metadata.txt + ``` + - **Cover image**: + ```bash + cp ~/Images/custom_cover.png ~/.local/share/PortProtonQT/custom_data/mygame/cover.png + ``` + +3. **Restart PortProtonQT**. + +## 🛠 For Developers + +### Adding Built-In Overrides + +1. **Create a folder in the project**: + ```bash + mkdir -p portprotonqt/custom_data/mygame + ``` + +2. **Add files**: + +- `metadata.txt`: + ```txt + name=Default Title + description=Default Description + ``` + +- Cover image (`cover.png`, for example): + ```bash + cp path/to/cover.png portprotonqt/custom_data/mygame/cover.png + ``` + +3. **Commit changes to repository**: + ```bash + git add portprotonqt/custom_data/mygame + git commit -m "Added built-in overrides for mygame" + ``` + +--- + +> Done! Your games will now look exactly how you want 🎮✨ diff --git a/documentation/metadata_override/README.ru.md b/documentation/metadata_override/README.ru.md new file mode 100644 index 0000000..7960961 --- /dev/null +++ b/documentation/metadata_override/README.ru.md @@ -0,0 +1,110 @@ +📘 This documentation is also available in [English](README.md) + +--- + +## 📋 Содержание +- [Обзор](#обзор) +- [Как это работает](#как-это-работает) + - [Приоритеты данных](#приоритеты-данных) + - [Структура файлов](#структура-файлов) +- [Для пользователей](#для-пользователей) + - [Создание пользовательских переопределений](#создание-пользовательских-переопределений) + - [Пример](#пример) +- [Для разработчиков](#для-разработчиков) + - [Добавление встроенных переопределений](#добавление-встроенных-переопределений) + +--- + +## 📖 Обзор + +В `PortProtonQT` можно изменить: + +- Название игры +- Описание +- Обложку + +Типы переопределений: + +| Тип | Расположение | Приоритет | +|----------------|---------------------------------------------------|-----------| +| Пользовательские | `~/.local/share/PortProtonQT/custom_data/` | Высший | +| Встроенные | `portprotonqt/custom_data/` | Ниже | + +--- + +## ⚙️ Как это работает + +### Приоритеты данных + +Данные берутся в следующем порядке: + +1. **Пользовательские переопределения** +2. **Встроенные переопределения** +3. **Данные Steam** +4. **Информация из `.desktop` файла** + +### Структура файлов + +В каждой папке `<имя_exe>` могут быть следующие файлы: + +- `metadata.txt` — имя и описание в формате: + ```txt + name=Моё название игры + description=Описание моей игры + ``` +- `cover.<расширение>` — обложка (`.png`, `.jpg`, `.jpeg`, `.bmp`) + +--- + +## 👤 Для пользователей + +### Создание пользовательских переопределений + +1. **Создайте папку для игры**: + ```bash + mkdir -p ~/.local/share/PortProtonQT/custom_data/mygame + ``` + +2. **Добавьте переопределения**: + - **Файл метаданных**: + ```bash + echo -e "name=Моя игра\ndescription=Захватывающая игра" > ~/.local/share/PortProtonQT/custom_data/mygame/metadata.txt + ``` + - **Обложку**: + ```bash + cp ~/Images/custom_cover.png ~/.local/share/PortProtonQT/custom_data/mygame/cover.png + ``` + +3. **Перезапустите PortProtonQT**. + +## 🛠 Для разработчиков + +### Добавление встроенных переопределений + +1. **Создайте папку в проекте**: + ```bash + mkdir -p portprotonqt/custom_data/mygame + ``` + +2. **Добавьте файлы**: + +- `metadata.txt`: + ```txt + name=Стандартное название + description=Стандартное описание игры + ``` + +- Обложка (`cover.png`, например): + ```bash + cp path/to/cover.png portprotonqt/custom_data/mygame/cover.png + ``` + +3. **Добавьте изменения в репозиторий**: + ```bash + git add portprotonqt/custom_data/mygame + git commit -m "Добавлены встроенные переопределения для mygame" + ``` + +--- + +> Готово! Теперь ваши игры будут выглядеть именно так, как вы хотите 🎮✨ diff --git a/documentation/theme_guide/README.md b/documentation/theme_guide/README.md new file mode 100644 index 0000000..d29dca5 --- /dev/null +++ b/documentation/theme_guide/README.md @@ -0,0 +1,71 @@ +📘 Эта документация также доступна на [русском](README.ru.md) + +--- + +## 📋 Contents +- [Overview](#overview) +- [Creating the Theme Folder](#creating-the-theme-folder) +- [Style File](#style-file) +- [Metadata](#metadata) +- [Screenshots](#screenshots) +- [Fonts and Icons](#fonts-and-icons) + +--- + +## 📖 Overview + +Themes in `PortProtonQT` allow customizing the UI appearance. Themes are stored under: + +- `~/.local/share/PortProtonQT/themes`. + +--- + +## 📁 Creating the Theme Folder + +```bash +mkdir -p ~/.local/share/PortProtonQT/themes/my_custom_theme +``` + +--- + +## 🎨 Style File (`styles.py`) + +Create a `styles.py` in the theme root. It should define variables or functions that return CSS. + +**Example:** +```python +def custom_button_style(color1, color2): + return f""" + QPushButton {{ + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 {color1}, stop:1 {color2}); + }} + """ +``` + +--- + +## 📝 Metadata (`metainfo.ini`) + +```ini +[Metainfo] +name = My Custom Theme +author = Your Name +author_link = https://example.com +description = Description of your theme. +``` + +--- + +## 🖼 Screenshots + +Folder: `images/screenshots/` — place UI screenshots there. + +--- + +## 🔡 Fonts and Icons (optional) + +- Fonts: `fonts/*.ttf` or `.otf` +- Icons: `images/icons/*.svg/.png` + +--- diff --git a/documentation/theme_guide/README.ru.md b/documentation/theme_guide/README.ru.md new file mode 100644 index 0000000..1b59e61 --- /dev/null +++ b/documentation/theme_guide/README.ru.md @@ -0,0 +1,71 @@ +📘 This documentation is also available in [English](README.md) + +--- + +## 📋 Содержание +- [Обзор](#обзор) +- [Создание папки темы](#создание-папки-темы) +- [Файл стилей](#файл-стилей) +- [Метаинформация](#метаинформация) +- [Скриншоты](#скриншоты) +- [Шрифты и иконки](#шрифты-и-иконки) + +--- + +## 📖 Обзор + +Темы в `PortProtonQT` позволяют изменить внешний вид интерфейса. Все темы хранятся в папке: + +- `~/.local/share/PortProtonQT/themes`. + +--- + +## 📁 Создание папки темы + +```bash +mkdir -p ~/.local/share/PortProtonQT/themes/my_custom_theme +``` + +--- + +## 🎨 Файл стилей (`styles.py`) + +Создайте `styles.py` в корне темы. В нём определите переменные и/или функции, возвращающие CSS-оформление. + +**Пример функции:** +```python +def custom_button_style(color1, color2): + return f""" + QPushButton {{ + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 {color1}, stop:1 {color2}); + }} + """ +``` + +--- + +## 📝 Метаинформация (`metainfo.ini`) + +```ini +[Metainfo] +name = My Custom Theme +author = Ваше имя +author_link = https://example.com +description = Описание вашей темы. +``` + +--- + +## 🖼 Скриншоты + +Папка: `images/screenshots/` — любые изображения оформления темы. + +--- + +## 🔡 Шрифты и иконки (опционально) + +- Шрифты: `fonts/*.ttf` или `.otf` +- Иконки: `images/icons/*.svg/.png` + +--- diff --git a/portprotonqt/__init__.py b/portprotonqt/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/portprotonqt/app.py b/portprotonqt/app.py new file mode 100644 index 0000000..fdd2bbf --- /dev/null +++ b/portprotonqt/app.py @@ -0,0 +1,50 @@ +import sys +from PySide6.QtCore import QLocale, QTranslator, QLibraryInfo +from PySide6.QtWidgets import QApplication +from PySide6.QtGui import QIcon +from portprotonqt.main_window import MainWindow +from portprotonqt.tray import SystemTray +from portprotonqt.config_utils import read_theme_from_config +from portprotonqt.logger import get_logger + +logger = get_logger(__name__) + +__app_id__ = "ru.linux_gaming.PortProtonQt" +__app_name__ = "PortProtonQt" +__app_version__ = "0.1.1" + +def main(): + app = QApplication(sys.argv) + app.setWindowIcon(QIcon.fromTheme(__app_id__)) + app.setDesktopFileName(__app_id__) + app.setApplicationName(__app_name__) + app.setApplicationVersion(__app_version__) + + system_locale = QLocale.system() + qt_translator = QTranslator() + translations_path = QLibraryInfo.path(QLibraryInfo.LibraryPath.TranslationsPath) + if qt_translator.load(system_locale, "qtbase", "_", translations_path): + app.installTranslator(qt_translator) + else: + logger.error(f"Qt translations for {system_locale.name()} not found in {translations_path}") + + window = MainWindow() + current_theme_name = read_theme_from_config() + tray = SystemTray(app, current_theme_name) + tray.show_action.triggered.connect(window.show) + tray.hide_action.triggered.connect(window.hide) + + def recreate_tray(): + nonlocal tray + tray.hide_tray() + current_theme = read_theme_from_config() + tray = SystemTray(app, current_theme) + tray.show_action.triggered.connect(window.show) + tray.hide_action.triggered.connect(window.hide) + + window.settings_saved.connect(recreate_tray) + window.show() + sys.exit(app.exec()) + +if __name__ == '__main__': + main() diff --git a/portprotonqt/config_utils.py b/portprotonqt/config_utils.py new file mode 100644 index 0000000..453b192 --- /dev/null +++ b/portprotonqt/config_utils.py @@ -0,0 +1,484 @@ +import os +import configparser +import shutil +from portprotonqt.logger import get_logger + +logger = get_logger(__name__) + +_portproton_location = None + +# Пути к конфигурационным файлам +CONFIG_FILE = os.path.join( + os.getenv("XDG_CONFIG_HOME", os.path.join(os.path.expanduser("~"), ".config")), + "PortProtonQT.conf" +) + +PORTPROTON_CONFIG_FILE = os.path.join( + os.getenv("XDG_CONFIG_HOME", os.path.join(os.path.expanduser("~"), ".config")), + "PortProton.conf" +) + +# Пути к папкам с темами +xdg_data_home = os.getenv("XDG_DATA_HOME", os.path.join(os.path.expanduser("~"), ".local", "share")) +THEMES_DIRS = [ + os.path.join(xdg_data_home, "PortProtonQT", "themes"), + os.path.join(os.path.dirname(os.path.abspath(__file__)), "themes") +] + +def read_config(): + """ + Читает конфигурационный файл и возвращает словарь параметров. + Пример строки в конфиге (без секций): + detail_level = detailed + """ + config_dict = {} + if os.path.exists(CONFIG_FILE): + with open(CONFIG_FILE, encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line or line.startswith("#"): + continue + key, sep, value = line.partition("=") + if sep: + config_dict[key.strip()] = value.strip() + return config_dict + +def read_theme_from_config(): + """ + Читает из конфигурационного файла тему из секции [Appearance]. + Если параметр не задан, возвращает "standart". + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + return "standart" + return cp.get("Appearance", "theme", fallback="standart") + +def save_theme_to_config(theme_name): + """ + Сохраняет имя выбранной темы в секции [Appearance] конфигурационного файла. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + if "Appearance" not in cp: + cp["Appearance"] = {} + cp["Appearance"]["theme"] = theme_name + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def read_time_config(): + """ + Читает настройки времени из секции [Time] конфигурационного файла. + Если секция или параметр отсутствуют, сохраняет и возвращает "detailed" по умолчанию. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + save_time_config("detailed") + return "detailed" + if not cp.has_section("Time") or not cp.has_option("Time", "detail_level"): + save_time_config("detailed") + return "detailed" + return cp.get("Time", "detail_level", fallback="detailed").lower() + return "detailed" + +def save_time_config(detail_level): + """ + Сохраняет настройку уровня детализации времени в секции [Time]. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + if "Time" not in cp: + cp["Time"] = {} + cp["Time"]["detail_level"] = detail_level + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def read_file_content(file_path): + """ + Читает содержимое файла и возвращает его как строку. + """ + with open(file_path, encoding="utf-8") as f: + return f.read().strip() + +def get_portproton_location(): + """ + Возвращает путь к директории PortProton. + Сначала проверяется кэшированный путь. Если он отсутствует, проверяется + наличие пути в файле PORTPROTON_CONFIG_FILE. Если путь недоступен, + используется директория по умолчанию. + """ + global _portproton_location + if _portproton_location is not None: + return _portproton_location + + # Попытка чтения пути из конфигурационного файла + if os.path.isfile(PORTPROTON_CONFIG_FILE): + try: + location = read_file_content(PORTPROTON_CONFIG_FILE).strip() + if location and os.path.isdir(location): + _portproton_location = location + logger.info(f"Путь PortProton из конфигурации: {location}") + return _portproton_location + logger.warning(f"Недействительный путь в конфиге PortProton: {location}") + except (OSError, PermissionError) as e: + logger.error(f"Ошибка чтения файла конфигурации PortProton: {e}") + + default_dir = os.path.join(os.path.expanduser("~"), ".var", "app", "ru.linux_gaming.PortProton") + if os.path.isdir(default_dir): + _portproton_location = default_dir + logger.info(f"Используется директория flatpak PortProton: {default_dir}") + return _portproton_location + + logger.warning("Конфигурация и директория flatpak PortProton не найдены") + return None + +def parse_desktop_entry(file_path): + """ + Читает и парсит .desktop файл с помощью configparser. + Если секция [Desktop Entry] отсутствует, возвращается None. + """ + cp = configparser.ConfigParser(interpolation=None) + cp.read(file_path, encoding="utf-8") + if "Desktop Entry" not in cp: + return None + return cp["Desktop Entry"] + +def load_theme_metainfo(theme_name): + """ + Загружает метаинформацию темы из файла metainfo.ini в корне папки темы. + Ожидаемые поля: author, author_link, description, name. + """ + meta = {} + for themes_dir in THEMES_DIRS: + theme_folder = os.path.join(themes_dir, theme_name) + metainfo_file = os.path.join(theme_folder, "metainfo.ini") + if os.path.exists(metainfo_file): + cp = configparser.ConfigParser() + cp.read(metainfo_file, encoding="utf-8") + if "Metainfo" in cp: + meta["author"] = cp.get("Metainfo", "author", fallback="Unknown") + meta["author_link"] = cp.get("Metainfo", "author_link", fallback="") + meta["description"] = cp.get("Metainfo", "description", fallback="") + meta["name"] = cp.get("Metainfo", "name", fallback=theme_name) + break + return meta + +def read_card_size(): + """ + Читает размер карточек (ширину) из секции [Cards], + Если параметр не задан, возвращает 250. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + save_card_size(250) + return 250 + if not cp.has_section("Cards") or not cp.has_option("Cards", "card_width"): + save_card_size(250) + return 250 + return cp.getint("Cards", "card_width", fallback=250) + return 250 + +def save_card_size(card_width): + """ + Сохраняет размер карточек (ширину) в секцию [Cards]. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + if "Cards" not in cp: + cp["Cards"] = {} + cp["Cards"]["card_width"] = str(card_width) + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def read_sort_method(): + """ + Читает метод сортировки из секции [Games]. + Если параметр не задан, возвращает last_launch. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + save_sort_method("last_launch") + return "last_launch" + if not cp.has_section("Games") or not cp.has_option("Games", "sort_method"): + save_sort_method("last_launch") + return "last_launch" + return cp.get("Games", "sort_method", fallback="last_launch").lower() + return "last_launch" + +def save_sort_method(sort_method): + """ + Сохраняет метод сортировки в секцию [Games]. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + if "Games" not in cp: + cp["Games"] = {} + cp["Games"]["sort_method"] = sort_method + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def read_display_filter(): + """ + Читает параметр display_filter из секции [Games]. + Если параметр отсутствует, сохраняет и возвращает значение "all". + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфига: %s", e) + save_display_filter("all") + return "all" + if not cp.has_section("Games") or not cp.has_option("Games", "display_filter"): + save_display_filter("all") + return "all" + return cp.get("Games", "display_filter", fallback="all").lower() + return "all" + +def save_display_filter(filter_value): + """ + Сохраняет параметр display_filter в секцию [Games] конфигурационного файла. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфига: %s", e) + if "Games" not in cp: + cp["Games"] = {} + cp["Games"]["display_filter"] = filter_value + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def read_favorites(): + """ + Читает список избранных игр из секции [Favorites] конфигурационного файла. + Список хранится как строка, заключённая в кавычки, с именами, разделёнными запятыми. + Если секция или параметр отсутствуют, возвращает пустой список. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфига: %s", e) + return [] + if cp.has_section("Favorites") and cp.has_option("Favorites", "games"): + favs = cp.get("Favorites", "games", fallback="").strip() + # Если строка начинается и заканчивается кавычками, удаляем их + if favs.startswith('"') and favs.endswith('"'): + favs = favs[1:-1] + return [s.strip() for s in favs.split(",") if s.strip()] + return [] + +def save_favorites(favorites): + """ + Сохраняет список избранных игр в секцию [Favorites] конфигурационного файла. + Список сохраняется как строка, заключённая в двойные кавычки, где имена игр разделены запятыми. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфига: %s", e) + if "Favorites" not in cp: + cp["Favorites"] = {} + fav_str = ", ".join(favorites) + cp["Favorites"]["games"] = f'"{fav_str}"' + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def ensure_default_proxy_config(): + """ + Проверяет наличие секции [Proxy] в конфигурационном файле. + Если секция отсутствует, создаёт её с пустыми значениями. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфигурационного файла: %s", e) + return + if not cp.has_section("Proxy"): + cp.add_section("Proxy") + cp["Proxy"]["proxy_url"] = "" + cp["Proxy"]["proxy_user"] = "" + cp["Proxy"]["proxy_password"] = "" + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + + +def read_proxy_config(): + """ + Читает настройки прокси из секции [Proxy] конфигурационного файла. + Если параметр proxy_url не задан или пустой, возвращает пустой словарь. + """ + ensure_default_proxy_config() + cp = configparser.ConfigParser() + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфигурационного файла: %s", e) + return {} + + proxy_url = cp.get("Proxy", "proxy_url", fallback="").strip() + if proxy_url: + # Если указаны логин и пароль, добавляем их к URL + proxy_user = cp.get("Proxy", "proxy_user", fallback="").strip() + proxy_password = cp.get("Proxy", "proxy_password", fallback="").strip() + if "://" in proxy_url and "@" not in proxy_url and proxy_user and proxy_password: + protocol, rest = proxy_url.split("://", 1) + proxy_url = f"{protocol}://{proxy_user}:{proxy_password}@{rest}" + return {"http": proxy_url, "https": proxy_url} + return {} + +def save_proxy_config(proxy_url="", proxy_user="", proxy_password=""): + """ + Сохраняет настройки proxy в секцию [Proxy] конфигурационного файла. + Если секция отсутствует, создаёт её. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка чтения конфигурационного файла: %s", e) + if "Proxy" not in cp: + cp["Proxy"] = {} + cp["Proxy"]["proxy_url"] = proxy_url + cp["Proxy"]["proxy_user"] = proxy_user + cp["Proxy"]["proxy_password"] = proxy_password + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def read_fullscreen_config(): + """ + Читает настройку полноэкранного режима приложения из секции [Display]. + Если параметр отсутствует, сохраняет и возвращает False по умолчанию. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except Exception as e: + logger.error("Ошибка чтения конфигурационного файла: %s", e) + save_fullscreen_config(False) + return False + if not cp.has_section("Display") or not cp.has_option("Display", "fullscreen"): + save_fullscreen_config(False) + return False + return cp.getboolean("Display", "fullscreen", fallback=False) + return False + +def save_fullscreen_config(fullscreen): + """ + Сохраняет настройку полноэкранного режима приложения в секцию [Display]. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка чтения конфигурационного файла: %s", e) + if "Display" not in cp: + cp["Display"] = {} + cp["Display"]["fullscreen"] = str(fullscreen) + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + + + +def read_window_geometry() -> tuple[int, int]: + """ + Читает ширину и высоту окна из секции [MainWindow] конфигурационного файла. + Возвращает кортеж (width, height). Если данные отсутствуют, возвращает (0, 0). + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + return (0, 0) + if cp.has_section("MainWindow"): + width = cp.getint("MainWindow", "width", fallback=0) + height = cp.getint("MainWindow", "height", fallback=0) + return (width, height) + return (0, 0) + +def save_window_geometry(width: int, height: int): + """ + Сохраняет ширину и высоту окна в секцию [MainWindow] конфигурационного файла. + """ + cp = configparser.ConfigParser() + if os.path.exists(CONFIG_FILE): + try: + cp.read(CONFIG_FILE, encoding="utf-8") + except (configparser.DuplicateSectionError, configparser.DuplicateOptionError) as e: + logger.error("Ошибка в конфигурационном файле: %s", e) + if "MainWindow" not in cp: + cp["MainWindow"] = {} + cp["MainWindow"]["width"] = str(width) + cp["MainWindow"]["height"] = str(height) + with open(CONFIG_FILE, "w", encoding="utf-8") as configfile: + cp.write(configfile) + +def reset_config(): + """ + Сбрасывает конфигурационный файл, удаляя его. + После этого все настройки будут возвращены к значениям по умолчанию при следующем чтении. + """ + if os.path.exists(CONFIG_FILE): + try: + os.remove(CONFIG_FILE) + logger.info("Конфигурационный файл %s удалён", CONFIG_FILE) + except Exception as e: + logger.error("Ошибка при удалении конфигурационного файла: %s", e) + +def clear_cache(): + """ + Очищает кэш PortProtonQT, удаляя папку кэша. + """ + xdg_cache_home = os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")) + cache_dir = os.path.join(xdg_cache_home, "PortProtonQT") + if os.path.exists(cache_dir): + try: + shutil.rmtree(cache_dir) + logger.info("Кэш PortProtonQT удалён: %s", cache_dir) + except Exception as e: + logger.error("Ошибка при удалении кэша: %s", e) diff --git a/portprotonqt/context_menu_manager.py b/portprotonqt/context_menu_manager.py new file mode 100644 index 0000000..ec7db57 --- /dev/null +++ b/portprotonqt/context_menu_manager.py @@ -0,0 +1,467 @@ +import os +import shlex +import glob +import shutil +import subprocess +from PySide6.QtWidgets import QMessageBox, QDialog, QMenu +from PySide6.QtCore import QUrl, QPoint +from PySide6.QtGui import QDesktopServices +from portprotonqt.config_utils import parse_desktop_entry +from portprotonqt.localization import _ +from portprotonqt.steam_api import is_game_in_steam, add_to_steam, remove_from_steam + +class ContextMenuManager: + """Manages context menu actions for game management in PortProtonQT.""" + + def __init__(self, parent, portproton_location, theme, load_games_callback, update_game_grid_callback): + """ + Initialize the ContextMenuManager. + + Args: + parent: The parent widget (MainWindow instance). + portproton_location: Path to the PortProton directory. + theme: The current theme object. + load_games_callback: Callback to reload games list. + update_game_grid_callback: Callback to update the game grid UI. + """ + self.parent = parent + self.portproton_location = portproton_location + self.theme = theme + self.load_games = load_games_callback + self.update_game_grid = update_game_grid_callback + + def show_context_menu(self, game_card, pos: QPoint): + """ + Show the context menu for a game card at the specified position. + + Args: + game_card: The GameCard instance requesting the context menu. + pos: The position (in widget coordinates) where the menu should appear. + """ + + menu = QMenu(self.parent) + if game_card.steam_game != "true": + desktop_dir = subprocess.check_output(['xdg-user-dir', 'DESKTOP']).decode('utf-8').strip() + desktop_path = os.path.join(desktop_dir, f"{game_card.name}.desktop") + if os.path.exists(desktop_path): + remove_action = menu.addAction(_("Remove from Desktop")) + remove_action.triggered.connect(lambda: self.remove_from_desktop(game_card.name)) + else: + add_action = menu.addAction(_("Add to Desktop")) + add_action.triggered.connect(lambda: self.add_to_desktop(game_card.name, game_card.exec_line)) + + edit_action = menu.addAction(_("Edit Shortcut")) + edit_action.triggered.connect(lambda: self.edit_game_shortcut(game_card.name, game_card.exec_line, game_card.cover_path)) + + delete_action = menu.addAction(_("Delete from PortProton")) + delete_action.triggered.connect(lambda: self.delete_game(game_card.name, game_card.exec_line)) + + open_folder_action = menu.addAction(_("Open Game Folder")) + open_folder_action.triggered.connect(lambda: self.open_game_folder(game_card.name, game_card.exec_line)) + + applications_dir = os.path.join(os.path.expanduser("~"), ".local", "share", "applications") + desktop_path = os.path.join(applications_dir, f"{game_card.name}.desktop") + if os.path.exists(desktop_path): + remove_action = menu.addAction(_("Remove from Menu")) + remove_action.triggered.connect(lambda: self.remove_from_menu(game_card.name)) + else: + add_action = menu.addAction(_("Add to Menu")) + add_action.triggered.connect(lambda: self.add_to_menu(game_card.name, game_card.exec_line)) + + # Add Steam-related actions + is_in_steam = is_game_in_steam(game_card.name) + if is_in_steam: + remove_steam_action = menu.addAction(_("Remove from Steam")) + remove_steam_action.triggered.connect(lambda: self.remove_from_steam(game_card.name, game_card.exec_line)) + else: + add_steam_action = menu.addAction(_("Add to Steam")) + add_steam_action.triggered.connect(lambda: self.add_to_steam(game_card.name, game_card.exec_line, game_card.cover_path)) + + menu.exec(game_card.mapToGlobal(pos)) + + def _check_portproton(self): + """Check if PortProton is available.""" + if self.portproton_location is None: + QMessageBox.warning(self.parent, _("Error"), _("PortProton is not found.")) + return False + return True + + def _get_desktop_path(self, game_name): + """Construct the .desktop file path, trying both original and sanitized game names.""" + desktop_path = os.path.join(self.portproton_location, f"{game_name}.desktop") + if not os.path.exists(desktop_path): + sanitized_name = game_name.replace("/", "_").replace(":", "_").replace(" ", "_") + desktop_path = os.path.join(self.portproton_location, f"{sanitized_name}.desktop") + return desktop_path + + def _get_exec_line(self, game_name, exec_line): + """Retrieve and validate exec_line from .desktop file if necessary.""" + if exec_line and exec_line.strip() != "full": + return exec_line + + desktop_path = self._get_desktop_path(game_name) + if os.path.exists(desktop_path): + try: + entry = parse_desktop_entry(desktop_path) + if entry: + exec_line = entry.get("Exec", entry.get("exec", "")).strip() + if not exec_line: + QMessageBox.warning( + self.parent, _("Error"), + _("No executable command found in .desktop for game: {0}").format(game_name) + ) + return None + else: + QMessageBox.warning( + self.parent, _("Error"), + _("Failed to parse .desktop file for game: {0}").format(game_name) + ) + return None + except Exception as e: + QMessageBox.warning( + self.parent, _("Error"), + _("Error reading .desktop file: {0}").format(e) + ) + return None + else: + # Fallback: Search all .desktop files + for file in glob.glob(os.path.join(self.portproton_location, "*.desktop")): + entry = parse_desktop_entry(file) + if entry: + exec_line = entry.get("Exec", entry.get("exec", "")).strip() + if exec_line: + return exec_line + QMessageBox.warning( + self.parent, _("Error"), + _(".desktop file not found for game: {0}").format(game_name) + ) + return None + return exec_line + + def _parse_exe_path(self, exec_line, game_name): + """Parse the executable path from exec_line.""" + try: + entry_exec_split = shlex.split(exec_line) + if not entry_exec_split: + QMessageBox.warning( + self.parent, _("Error"), + _("Invalid executable command: {0}").format(exec_line) + ) + return None + if entry_exec_split[0] == "env" and len(entry_exec_split) >= 3: + exe_path = entry_exec_split[2] + elif entry_exec_split[0] == "flatpak" and len(entry_exec_split) >= 4: + exe_path = entry_exec_split[3] + else: + exe_path = entry_exec_split[-1] + if not exe_path or not os.path.exists(exe_path): + QMessageBox.warning( + self.parent, _("Error"), + _("Executable file not found: {0}").format(exe_path or "None") + ) + return None + return exe_path + except Exception as e: + QMessageBox.warning( + self.parent, _("Error"), + _("Failed to parse executable command: {0}").format(e) + ) + return None + + def _remove_file(self, file_path, error_message, success_message, game_name): + """Remove a file and handle errors.""" + try: + os.remove(file_path) + self.parent.statusBar().showMessage(success_message.format(game_name), 3000) + return True + except OSError as e: + QMessageBox.warning(self.parent, _("Error"), error_message.format(e)) + return False + + def delete_game(self, game_name, exec_line): + """Delete the .desktop file and associated custom data for the game.""" + reply = QMessageBox.question( + self.parent, + _("Confirm Deletion"), + _("Are you sure you want to delete '{0}'? This will remove the .desktop file and custom data.") + .format(game_name), + QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No, + QMessageBox.StandardButton.No + ) + if reply != QMessageBox.StandardButton.Yes: + return + + if not self._check_portproton(): + return + + desktop_path = self._get_desktop_path(game_name) + if not os.path.exists(desktop_path): + QMessageBox.warning( + self.parent, _("Error"), + _("Could not locate .desktop file for '{0}'").format(game_name) + ) + return + + # Get exec_line and parse exe_path + exec_line = self._get_exec_line(game_name, exec_line) + if not exec_line: + return + + exe_path = self._parse_exe_path(exec_line, game_name) + exe_name = os.path.splitext(os.path.basename(exe_path))[0] if exe_path else None + + # Remove .desktop file + if not self._remove_file( + desktop_path, + _("Failed to delete .desktop file: {0}"), + _("Game '{0}' deleted successfully"), + game_name + ): + return + + # Remove custom data if we got an exe_name + if exe_name: + xdg_data_home = os.getenv( + "XDG_DATA_HOME", + os.path.join(os.path.expanduser("~"), ".local", "share") + ) + custom_folder = os.path.join(xdg_data_home, "PortProtonQT", "custom_data", exe_name) + if os.path.exists(custom_folder): + try: + shutil.rmtree(custom_folder) + except OSError as e: + QMessageBox.warning( + self.parent, _("Error"), + _("Failed to delete custom data: {0}").format(e) + ) + + # Refresh UI + self.parent.games = self.load_games() + self.update_game_grid() + + def add_to_menu(self, game_name, exec_line): + """Copy the .desktop file to ~/.local/share/applications.""" + if not self._check_portproton(): + return + + desktop_path = self._get_desktop_path(game_name) + if not os.path.exists(desktop_path): + QMessageBox.warning( + self.parent, _("Error"), + _("Could not locate .desktop file for '{0}'").format(game_name) + ) + return + + # Destination path + applications_dir = os.path.join(os.path.expanduser("~"), ".local", "share", "applications") + os.makedirs(applications_dir, exist_ok=True) + dest_path = os.path.join(applications_dir, f"{game_name}.desktop") + + # Copy .desktop file + try: + shutil.copyfile(desktop_path, dest_path) + os.chmod(dest_path, 0o755) # Ensure executable permissions + self.parent.statusBar().showMessage(_("Game '{0}' added to menu").format(game_name), 3000) + except OSError as e: + QMessageBox.warning( + self.parent, _("Error"), + _("Failed to add game to menu: {0}").format(str(e)) + ) + + def remove_from_menu(self, game_name): + """Remove the .desktop file from ~/.local/share/applications.""" + applications_dir = os.path.join(os.path.expanduser("~"), ".local", "share", "applications") + desktop_path = os.path.join(applications_dir, f"{game_name}.desktop") + self._remove_file( + desktop_path, + _("Failed to remove game from menu: {0}"), + _("Game '{0}' removed from menu"), + game_name + ) + + def add_to_desktop(self, game_name, exec_line): + """Copy the .desktop file to Desktop folder.""" + if not self._check_portproton(): + return + + desktop_path = self._get_desktop_path(game_name) + if not os.path.exists(desktop_path): + QMessageBox.warning( + self.parent, _("Error"), + _("Could not locate .desktop file for '{0}'").format(game_name) + ) + return + + # Destination path + desktop_dir = subprocess.check_output(['xdg-user-dir', 'DESKTOP']).decode('utf-8').strip() + os.makedirs(desktop_dir, exist_ok=True) + dest_path = os.path.join(desktop_dir, f"{game_name}.desktop") + + # Copy .desktop file + try: + shutil.copyfile(desktop_path, dest_path) + os.chmod(dest_path, 0o755) # Ensure executable permissions + self.parent.statusBar().showMessage(_("Game '{0}' added to desktop").format(game_name), 3000) + except OSError as e: + QMessageBox.warning( + self.parent, _("Error"), + _("Failed to add game to desktop: {0}").format(str(e)) + ) + + def remove_from_desktop(self, game_name): + """Remove the .desktop file from Desktop folder.""" + desktop_dir = subprocess.check_output(['xdg-user-dir', 'DESKTOP']).decode('utf-8').strip() + desktop_path = os.path.join(desktop_dir, f"{game_name}.desktop") + self._remove_file( + desktop_path, + _("Failed to remove game from Desktop: {0}"), + _("Game '{0}' removed from Desktop"), + game_name + ) + + def edit_game_shortcut(self, game_name, exec_line, cover_path): + """Opens the AddGameDialog in edit mode to modify an existing .desktop file.""" + from portprotonqt.dialogs import AddGameDialog # Local import to avoid circular dependency + + if not self._check_portproton(): + return + + exec_line = self._get_exec_line(game_name, exec_line) + if not exec_line: + return + + exe_path = self._parse_exe_path(exec_line, game_name) + if not exe_path: + return + + # Open dialog in edit mode + dialog = AddGameDialog( + parent=self.parent, + theme=self.theme, + edit_mode=True, + game_name=game_name, + exe_path=exe_path, + cover_path=cover_path + ) + + if dialog.exec() == QDialog.DialogCode.Accepted: + new_name = dialog.nameEdit.text().strip() + new_exe_path = dialog.exeEdit.text().strip() + new_cover_path = dialog.coverEdit.text().strip() + + if not new_name or not new_exe_path: + QMessageBox.warning(self.parent, _("Error"), _("Game name and executable path are required.")) + return + + # Generate new .desktop file content + desktop_entry, new_desktop_path = dialog.getDesktopEntryData() + if not desktop_entry or not new_desktop_path: + QMessageBox.warning(self.parent, _("Error"), _("Failed to generate .desktop file data.")) + return + + # If the name has changed, remove the old .desktop file + old_desktop_path = self._get_desktop_path(game_name) + if game_name != new_name and os.path.exists(old_desktop_path): + self._remove_file( + old_desktop_path, + _("Failed to remove old .desktop file: {0}"), + _("Old .desktop file removed for '{0}'"), + game_name + ) + + # Save the updated .desktop file + try: + with open(new_desktop_path, "w", encoding="utf-8") as f: + f.write(desktop_entry) + os.chmod(new_desktop_path, 0o755) + except OSError as e: + QMessageBox.warning(self.parent, _("Error"), _("Failed to save .desktop file: {0}").format(e)) + return + + # Update custom cover if provided + if os.path.isfile(new_cover_path): + exe_name = os.path.splitext(os.path.basename(new_exe_path))[0] + xdg_data_home = os.getenv( + "XDG_DATA_HOME", + os.path.join(os.path.expanduser("~"), ".local", "share") + ) + custom_folder = os.path.join(xdg_data_home, "PortProtonQT", "custom_data", exe_name) + os.makedirs(custom_folder, exist_ok=True) + + ext = os.path.splitext(new_cover_path)[1].lower() + if ext in [".png", ".jpg", ".jpeg", ".bmp"]: + try: + shutil.copyfile(new_cover_path, os.path.join(custom_folder, f"cover{ext}")) + except OSError as e: + QMessageBox.warning(self.parent, _("Error"), _("Failed to copy cover image: {0}").format(e)) + return + + # Refresh the game list + self.parent.games = self.load_games() + self.update_game_grid() + + def add_to_steam(self, game_name, exec_line, cover_path): + """Handle adding a non-Steam game to Steam via steam_api.""" + + if not self._check_portproton(): + return + + exec_line = self._get_exec_line(game_name, exec_line) + if not exec_line: + return + + exe_path = self._parse_exe_path(exec_line, game_name) + if not exe_path: + return + + success, message = add_to_steam(game_name, exec_line, cover_path) + if success: + QMessageBox.information( + self.parent, _("Restart Steam"), + _("The game was added successfully.\nPlease restart Steam for changes to take effect.") + ) + else: + QMessageBox.warning(self.parent, _("Error"), message) + + def remove_from_steam(self, game_name, exec_line): + """Handle removing a non-Steam game from Steam via steam_api.""" + + if not self._check_portproton(): + return + + exec_line = self._get_exec_line(game_name, exec_line) + if not exec_line: + return + + exe_path = self._parse_exe_path(exec_line, game_name) + if not exe_path: + return + + success, message = remove_from_steam(game_name, exec_line) + if success: + QMessageBox.information( + self.parent, _("Restart Steam"), + _("The game was removed successfully.\nPlease restart Steam for changes to take effect.") + ) + else: + QMessageBox.warning(self.parent, _("Error"), message) + + def open_game_folder(self, game_name, exec_line): + """Open the folder containing the game's executable.""" + if not self._check_portproton(): + return + + exec_line = self._get_exec_line(game_name, exec_line) + if not exec_line: + return + + exe_path = self._parse_exe_path(exec_line, game_name) + if not exe_path: + return + + try: + folder_path = os.path.dirname(os.path.abspath(exe_path)) + QDesktopServices.openUrl(QUrl.fromLocalFile(folder_path)) + self.parent.statusBar().showMessage(_("Opened folder for '{0}'").format(game_name), 3000) + except Exception as e: + QMessageBox.warning(self.parent, _("Error"), _("Failed to open game folder: {0}").format(str(e))) diff --git a/portprotonqt/custom_data/.gitkeep b/portprotonqt/custom_data/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/portprotonqt/custom_widgets.py b/portprotonqt/custom_widgets.py new file mode 100644 index 0000000..c8edb6b --- /dev/null +++ b/portprotonqt/custom_widgets.py @@ -0,0 +1,393 @@ +import numpy as np +from PySide6.QtWidgets import QLabel, QPushButton, QWidget, QLayout, QStyleOption, QLayoutItem +from PySide6.QtCore import Qt, Signal, QRect, QPoint, QSize +from PySide6.QtGui import QFont, QFontMetrics, QPainter + +def compute_layout(nat_sizes, rect_width, spacing, max_scale): + """ + Вычисляет расположение элементов с учетом отступов и возможного увеличения карточек. + nat_sizes: массив (N, 2) с натуральными размерами элементов (ширина, высота). + rect_width: доступная ширина контейнера. + spacing: отступ между элементами. + max_scale: максимальный коэффициент масштабирования (например, 1.2). + + Возвращает: + result: массив (N, 4), где каждая строка содержит [x, y, new_width, new_height]. + total_height: итоговая высота всех рядов. + """ + N = nat_sizes.shape[0] + result = np.zeros((N, 4), dtype=np.int32) + y = 0 + i = 0 + while i < N: + sum_width = 0 + row_max_height = 0 + count = 0 + j = i + # Подбираем количество элементов для текущего ряда + while j < N: + w = nat_sizes[j, 0] + # Если уже есть хотя бы один элемент и следующий не помещается с учетом spacing, выходим + if count > 0 and (sum_width + spacing + w) > rect_width: + break + sum_width += w + count += 1 + h = nat_sizes[j, 1] + if h > row_max_height: + row_max_height = h + j += 1 + # Доступная ширина ряда с учетом обязательных отступов между элементами + available_width = rect_width - spacing * (count - 1) + desired_scale = available_width / sum_width if sum_width > 0 else 1.0 + # Разрешаем увеличение карточек, но не более max_scale + scale = desired_scale if desired_scale < max_scale else max_scale + # Выравниваем по левому краю (offset = 0) + x = 0 + for k in range(i, j): + new_w = int(nat_sizes[k, 0] * scale) + new_h = int(nat_sizes[k, 1] * scale) + result[k, 0] = x + result[k, 1] = y + result[k, 2] = new_w + result[k, 3] = new_h + x += new_w + spacing + y += int(row_max_height * scale) + spacing + i = j + return result, y + +class FlowLayout(QLayout): + def __init__(self, parent=None): + super().__init__(parent) + self.itemList = [] + # Устанавливаем отступы контейнера в 0 и задаем spacing между карточками + self.setContentsMargins(0, 0, 0, 0) + self._spacing = 3 # отступ между карточками + self._max_scale = 1.2 # максимальное увеличение карточек (например, на 20%) + + def addItem(self, item: QLayoutItem) -> None: + self.itemList.append(item) + + def takeAt(self, index: int) -> QLayoutItem: + if 0 <= index < len(self.itemList): + return self.itemList.pop(index) + raise IndexError("Index out of range") + + def count(self) -> int: + return len(self.itemList) + + def itemAt(self, index: int) -> QLayoutItem | None: + if 0 <= index < len(self.itemList): + return self.itemList[index] + return None + + def expandingDirections(self): + return Qt.Orientation(0) + + def hasHeightForWidth(self): + return True + + def heightForWidth(self, width): + return self.doLayout(QRect(0, 0, width, 0), True) + + def setGeometry(self, rect): + super().setGeometry(rect) + self.doLayout(rect, False) + + def sizeHint(self): + return self.minimumSize() + + def minimumSize(self): + size = QSize() + for item in self.itemList: + size = size.expandedTo(item.minimumSize()) + margins = self.contentsMargins() + size += QSize(margins.left() + margins.right(), + margins.top() + margins.bottom()) + return size + + def doLayout(self, rect, testOnly): + N = len(self.itemList) + if N == 0: + return 0 + + # Собираем натуральные размеры всех элементов в массив NumPy + nat_sizes = np.empty((N, 2), dtype=np.int32) + for i, item in enumerate(self.itemList): + s = item.sizeHint() + nat_sizes[i, 0] = s.width() + nat_sizes[i, 1] = s.height() + + # Вычисляем геометрию с учетом spacing и max_scale через numba-функцию + geom_array, total_height = compute_layout(nat_sizes, rect.width(), self._spacing, self._max_scale) + + if not testOnly: + for i, item in enumerate(self.itemList): + x = geom_array[i, 0] + rect.x() + y = geom_array[i, 1] + rect.y() + w = geom_array[i, 2] + h = geom_array[i, 3] + item.setGeometry(QRect(QPoint(x, y), QSize(w, h))) + + return total_height + +class ClickableLabel(QLabel): + clicked = Signal() + + def __init__(self, *args, icon=None, icon_size=16, icon_space=5, **kwargs): + """ + Поддерживаются вызовы: + - ClickableLabel("текст", parent=...) – первый аргумент строка, + - ClickableLabel(parent, text="...") – если первым аргументом передается родитель. + + Аргументы: + icon: QIcon или None – иконка, которая будет отрисована вместе с текстом. + icon_size: int – размер иконки (ширина и высота). + icon_space: int – отступ между иконкой и текстом. + """ + if args and isinstance(args[0], str): + text = args[0] + parent = kwargs.get("parent", None) + super().__init__(text, parent) + elif args and isinstance(args[0], QWidget): + parent = args[0] + text = kwargs.get("text", "") + super().__init__(parent) + self.setText(text) + else: + text = "" + parent = kwargs.get("parent", None) + super().__init__(text, parent) + + self._icon = icon + self._icon_size = icon_size + self._icon_space = icon_space + self.setCursor(Qt.CursorShape.PointingHandCursor) + + def setIcon(self, icon): + """Устанавливает иконку и перерисовывает виджет.""" + self._icon = icon + self.update() + + def icon(self): + """Возвращает текущую иконку.""" + return self._icon + + def paintEvent(self, event): + """Переопределяем отрисовку: рисуем иконку и текст в одном лейбле.""" + painter = QPainter(self) + painter.setRenderHint(QPainter.RenderHint.Antialiasing) + + rect = self.contentsRect() + alignment = self.alignment() + + icon_size = self._icon_size + spacing = self._icon_space + + icon_rect = QRect() + text_rect = QRect() + text = self.text() + + if self._icon: + # Получаем QPixmap нужного размера + pixmap = self._icon.pixmap(icon_size, icon_size) + icon_rect = QRect(0, 0, icon_size, icon_size) + icon_rect.moveTop(rect.top() + (rect.height() - icon_size) // 2) + else: + pixmap = None + + fm = QFontMetrics(self.font()) + text_width = fm.horizontalAdvance(text) + text_height = fm.height() + total_width = text_width + (icon_size + spacing if pixmap else 0) + + if alignment & Qt.AlignmentFlag.AlignHCenter: + x = rect.left() + (rect.width() - total_width) // 2 + elif alignment & Qt.AlignmentFlag.AlignRight: + x = rect.right() - total_width + else: + x = rect.left() + + y = rect.top() + (rect.height() - text_height) // 2 + + if pixmap: + icon_rect.moveLeft(x) + text_rect = QRect(x + icon_size + spacing, y, text_width, text_height) + else: + text_rect = QRect(x, y, text_width, text_height) + + option = QStyleOption() + option.initFrom(self) + if pixmap: + painter.drawPixmap(icon_rect, pixmap) + self.style().drawItemText( + painter, + text_rect, + alignment, + self.palette(), + self.isEnabled(), + text, + self.foregroundRole(), + ) + + def mousePressEvent(self, event): + if event.button() == Qt.MouseButton.LeftButton: + self.clicked.emit() + event.accept() + else: + super().mousePressEvent(event) + +class AutoSizeButton(QPushButton): + def __init__(self, *args, icon=None, icon_size=16, + min_font_size=6, max_font_size=14, padding=20, update_size=True, **kwargs): + if args and isinstance(args[0], str): + text = args[0] + parent = kwargs.get("parent", None) + super().__init__(text, parent) + elif args and isinstance(args[0], QWidget): + parent = args[0] + text = kwargs.get("text", "") + super().__init__(text, parent) + else: + text = "" + parent = kwargs.get("parent", None) + super().__init__(text, parent) + + self._icon = icon + self._icon_size = icon_size + self._alignment = Qt.AlignmentFlag.AlignLeft | Qt.AlignmentFlag.AlignVCenter + self._min_font_size = min_font_size + self._max_font_size = max_font_size + self._padding = padding + self._update_size = update_size + self._original_font = self.font() + self._original_text = self.text() + + if self._icon: + self.setIcon(self._icon) + self.setIconSize(QSize(self._icon_size, self._icon_size)) + + self.setCursor(Qt.CursorShape.PointingHandCursor) + self.setFlat(True) + + # Изначально выставляем минимальную ширину + self.setMinimumWidth(50) + self.adjustFontSize() + + def setAlignment(self, alignment): + self._alignment = alignment + self.update() + + def alignment(self): + return self._alignment + + def setText(self, text): + self._original_text = text + if not self._update_size: + super().setText(text) + else: + super().setText(text) + self.adjustFontSize() + + def resizeEvent(self, event): + super().resizeEvent(event) + if self._update_size: + self.adjustFontSize() + + def adjustFontSize(self): + if not self._original_text: + return + + if not self._update_size: + return + + # Определяем доступную ширину внутри кнопки + available_width = self.width() + if self._icon: + available_width -= self._icon_size + + margins = self.contentsMargins() + available_width -= (margins.left() + margins.right() + self._padding * 2) + + font = QFont(self._original_font) + text = self._original_text + + # Подбираем максимально возможный размер шрифта, при котором текст укладывается + chosen_size = self._max_font_size + for font_size in range(self._max_font_size, self._min_font_size - 1, -1): + font.setPointSize(font_size) + fm = QFontMetrics(font) + text_width = fm.horizontalAdvance(text) + if text_width <= available_width: + chosen_size = font_size + break + + font.setPointSize(chosen_size) + self.setFont(font) + + # После выбора шрифта вычисляем требуемую ширину для полного отображения текста + fm = QFontMetrics(font) + text_width = fm.horizontalAdvance(text) + required_width = text_width + margins.left() + margins.right() + self._padding * 2 + if self._icon: + required_width += self._icon_size + + # Если текущая ширина меньше требуемой, обновляем минимальную ширину + if self.width() < required_width: + self.setMinimumWidth(required_width) + + super().setText(text) + + def sizeHint(self): + if not self._update_size: + return super().sizeHint() + else: + # Вычисляем оптимальный размер кнопки на основе текста и отступов + font = self.font() + fm = QFontMetrics(font) + text_width = fm.horizontalAdvance(self._original_text) + margins = self.contentsMargins() + width = text_width + margins.left() + margins.right() + self._padding * 2 + if self._icon: + width += self._icon_size + height = fm.height() + margins.top() + margins.bottom() + self._padding + return QSize(width, height) + + +class NavLabel(QLabel): + clicked = Signal() + + def __init__(self, text="", parent=None): + super().__init__(text, parent) + self.setWordWrap(True) + self.setAlignment(Qt.AlignmentFlag.AlignHCenter | Qt.AlignmentFlag.AlignVCenter) + self._checkable = False + self._isChecked = False + self.setProperty("checked", self._isChecked) + self.setCursor(Qt.CursorShape.PointingHandCursor) + # Explicitly enable focus + self.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + + def setCheckable(self, checkable): + self._checkable = checkable + + def setChecked(self, checked): + if self._checkable: + self._isChecked = checked + self.setProperty("checked", checked) + self.style().unpolish(self) + self.style().polish(self) + self.update() + + def isChecked(self): + return self._isChecked + + def mousePressEvent(self, event): + if event.button() == Qt.MouseButton.LeftButton: + # Ensure widget can take focus on click + self.setFocus(Qt.FocusReason.MouseFocusReason) + if self._checkable: + self.setChecked(not self._isChecked) + self.clicked.emit() + event.accept() + else: + super().mousePressEvent(event) diff --git a/portprotonqt/dialogs.py b/portprotonqt/dialogs.py new file mode 100644 index 0000000..a77fc5b --- /dev/null +++ b/portprotonqt/dialogs.py @@ -0,0 +1,252 @@ +import os +import shutil +import tempfile + +from PySide6.QtGui import QPixmap +from PySide6.QtWidgets import ( + QDialog, QLineEdit, QFormLayout, QPushButton, + QHBoxLayout, QDialogButtonBox, QFileDialog, QLabel +) +from PySide6.QtCore import Qt +from icoextract import IconExtractor, IconExtractorError +from PIL import Image + +from portprotonqt.config_utils import get_portproton_location +from portprotonqt.localization import _ +from portprotonqt.logger import get_logger +import portprotonqt.themes.standart.styles as default_styles + +logger = get_logger(__name__) + +def generate_thumbnail(inputfile, outfile, size=128, force_resize=True): + """ + Generates a thumbnail for an .exe file. + + inputfile: the input file path (%i) + outfile: output filename (%o) + size: determines the thumbnail output size (%s) + """ + logger.debug(f"Начинаем генерацию миниатюры: {inputfile} → {outfile}, размер={size}, принудительно={force_resize}") + + try: + extractor = IconExtractor(inputfile) + logger.debug("IconExtractor успешно создан.") + except (RuntimeError, IconExtractorError) as e: + logger.warning(f"Не удалось создать IconExtractor: {e}") + return False + + try: + data = extractor.get_icon() + im = Image.open(data) + logger.debug(f"Извлечена иконка размером {im.size}, форматы: {im.format}, кадры: {getattr(im, 'n_frames', 1)}") + except Exception as e: + logger.warning(f"Ошибка при извлечении иконки: {e}") + return False + + if force_resize: + logger.debug(f"Принудительное изменение размера иконки на {size}x{size}") + im = im.resize((size, size)) + else: + if size > 256: + logger.warning('Запрошен размер больше 256, установлен 256') + size = 256 + elif size not in (128, 256): + logger.warning(f'Неподдерживаемый размер {size}, установлен 128') + size = 128 + + if size == 256: + logger.debug("Сохраняем иконку без изменения размера (256x256)") + im.save(outfile, "PNG") + logger.info(f"Иконка сохранена в {outfile}") + return True + + frames = getattr(im, 'n_frames', 1) + try: + for frame in range(frames): + im.seek(frame) + if im.size == (size, size): + logger.debug(f"Найден кадр с размером {size}x{size}") + break + except EOFError: + logger.debug("Кадры закончились до нахождения нужного размера.") + + if im.size != (size, size): + logger.debug(f"Изменение размера с {im.size} на {size}x{size}") + im = im.resize((size, size)) + + try: + im.save(outfile, "PNG") + logger.info(f"Миниатюра успешно сохранена в {outfile}") + return True + except Exception as e: + logger.error(f"Ошибка при сохранении миниатюры: {e}") + return False + + +class AddGameDialog(QDialog): + def __init__(self, parent=None, theme=None, edit_mode=False, game_name=None, exe_path=None, cover_path=None): + super().__init__(parent) + self.theme = theme if theme else default_styles + self.edit_mode = edit_mode + self.original_name = game_name + + self.setWindowTitle(_("Edit Game") if edit_mode else _("Add Game")) + self.setModal(True) + self.setStyleSheet(self.theme.MAIN_WINDOW_STYLE + self.theme.MESSAGE_BOX_STYLE) + + layout = QFormLayout(self) + + # Game name + self.nameEdit = QLineEdit(self) + self.nameEdit.setStyleSheet(self.theme.SEARCH_EDIT_STYLE + " QLineEdit { color: #ffffff; font-size: 14px; }") + if game_name: + self.nameEdit.setText(game_name) + name_label = QLabel(_("Game Name:")) + name_label.setStyleSheet(self.theme.PARAMS_TITLE_STYLE + " QLabel { color: #ffffff; font-size: 14px; font-weight: bold; }") + layout.addRow(name_label, self.nameEdit) + + # Exe path + self.exeEdit = QLineEdit(self) + self.exeEdit.setStyleSheet(self.theme.SEARCH_EDIT_STYLE + " QLineEdit { color: #ffffff; font-size: 14px; }") + if exe_path: + self.exeEdit.setText(exe_path) + exeBrowseButton = QPushButton(_("Browse..."), self) + exeBrowseButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + exeBrowseButton.clicked.connect(self.browseExe) + + exeLayout = QHBoxLayout() + exeLayout.addWidget(self.exeEdit) + exeLayout.addWidget(exeBrowseButton) + exe_label = QLabel(_("Path to Executable:")) + exe_label.setStyleSheet(self.theme.PARAMS_TITLE_STYLE + " QLabel { color: #ffffff; font-size: 14px; font-weight: bold; }") + layout.addRow(exe_label, exeLayout) + + # Cover path + self.coverEdit = QLineEdit(self) + self.coverEdit.setStyleSheet(self.theme.SEARCH_EDIT_STYLE + " QLineEdit { color: #ffffff; font-size: 14px; }") + if cover_path: + self.coverEdit.setText(cover_path) + coverBrowseButton = QPushButton(_("Browse..."), self) + coverBrowseButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + coverBrowseButton.clicked.connect(self.browseCover) + + coverLayout = QHBoxLayout() + coverLayout.addWidget(self.coverEdit) + coverLayout.addWidget(coverBrowseButton) + cover_label = QLabel(_("Custom Cover:")) + cover_label.setStyleSheet(self.theme.PARAMS_TITLE_STYLE + " QLabel { color: #ffffff; font-size: 14px; font-weight: bold; }") + layout.addRow(cover_label, coverLayout) + + # Preview + self.coverPreview = QLabel(self) + self.coverPreview.setStyleSheet(self.theme.CONTENT_STYLE + " QLabel { color: #ffffff; }") + preview_label = QLabel(_("Cover Preview:")) + preview_label.setStyleSheet(self.theme.PARAMS_TITLE_STYLE + " QLabel { color: #ffffff; font-size: 14px; font-weight: bold; }") + layout.addRow(preview_label, self.coverPreview) + + # Dialog buttons + buttonBox = QDialogButtonBox( + QDialogButtonBox.StandardButton.Ok | QDialogButtonBox.StandardButton.Cancel + ) + buttonBox.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + buttonBox.accepted.connect(self.accept) + buttonBox.rejected.connect(self.reject) + layout.addRow(buttonBox) + + self.coverEdit.textChanged.connect(self.updatePreview) + self.exeEdit.textChanged.connect(self.updatePreview) + + if edit_mode: + self.updatePreview() + + def browseExe(self): + fileNameAndFilter = QFileDialog.getOpenFileName( + self, + _("Select Executable"), + "", + "Windows Executables (*.exe)" + ) + fileName = fileNameAndFilter[0] + if fileName: + self.exeEdit.setText(fileName) + if not self.edit_mode: + self.nameEdit.setText(os.path.splitext(os.path.basename(fileName))[0]) + + def browseCover(self): + fileNameAndFilter = QFileDialog.getOpenFileName( + self, + _("Select Cover Image"), + "", + "Images (*.png *.jpg *.jpeg *.bmp)" + ) + fileName = fileNameAndFilter[0] + if fileName: + self.coverEdit.setText(fileName) + + def updatePreview(self): + """Update the cover preview image.""" + cover_path = self.coverEdit.text().strip() + exe_path = self.exeEdit.text().strip() + if cover_path and os.path.isfile(cover_path): + pixmap = QPixmap(cover_path) + if not pixmap.isNull(): + self.coverPreview.setPixmap(pixmap.scaled(250, 250, Qt.AspectRatioMode.KeepAspectRatio)) + else: + self.coverPreview.setText(_("Invalid image")) + elif os.path.isfile(exe_path): + tmp = tempfile.NamedTemporaryFile(suffix='.png', delete=False) + tmp.close() + if generate_thumbnail(exe_path, tmp.name, size=128): + pixmap = QPixmap(tmp.name) + self.coverPreview.setPixmap(pixmap) + os.unlink(tmp.name) + else: + self.coverPreview.setText(_("No cover selected")) + + def getDesktopEntryData(self): + """Returns the .desktop content and save path""" + exe_path = self.exeEdit.text().strip() + name = self.nameEdit.text().strip() + + if not exe_path or not name: + return None, None + + portproton_path = get_portproton_location() + if portproton_path is None: + return None, None + + is_flatpak = ".var" in portproton_path + base_path = os.path.join(portproton_path, "data") + + if is_flatpak: + exec_str = f'flatpak run ru.linux_gaming.PortProton "{exe_path}"' + else: + start_sh = os.path.join(base_path, "scripts", "start.sh") + exec_str = f'env "{start_sh}" "{exe_path}"' + + icon_path = os.path.join(base_path, "img", f"{name}.png") + desktop_path = os.path.join(portproton_path, f"{name}.desktop") + working_dir = os.path.join(base_path, "scripts") + + user_cover_path = self.coverEdit.text().strip() + if os.path.isfile(user_cover_path): + shutil.copy(user_cover_path, icon_path) + else: + os.makedirs(os.path.dirname(icon_path), exist_ok=True) + os.system(f'exe-thumbnailer "{exe_path}" "{icon_path}"') + + comment = _('Launch game "{name}" with PortProton').format(name=name) + + desktop_entry = f"""[Desktop Entry] +Name={name} +Comment={comment} +Exec={exec_str} +Terminal=false +Type=Application +Categories=Game; +StartupNotify=true +Path={working_dir} +Icon={icon_path} +""" + + return desktop_entry, desktop_path diff --git a/portprotonqt/downloader.py b/portprotonqt/downloader.py new file mode 100644 index 0000000..8118b39 --- /dev/null +++ b/portprotonqt/downloader.py @@ -0,0 +1,310 @@ +from PySide6.QtCore import QObject, Signal, QThread +import threading +import os +import requests +import orjson +import socket +from pathlib import Path +from tqdm import tqdm +from collections.abc import Callable +from portprotonqt.config_utils import read_proxy_config +from portprotonqt.logger import get_logger + +logger = get_logger(__name__) + +def get_requests_session(): + session = requests.Session() + proxy = read_proxy_config() or {} + if proxy: + session.proxies.update(proxy) + session.verify = True + return session + +def download_with_cache(url, local_path, timeout=5, downloader_instance=None): + if os.path.exists(local_path): + return local_path + session = get_requests_session() + try: + with session.get(url, stream=True, timeout=timeout) as response: + response.raise_for_status() + total_size = int(response.headers.get('Content-Length', 0)) + os.makedirs(os.path.dirname(local_path), exist_ok=True) + desc = Path(local_path).name + with tqdm(total=total_size if total_size > 0 else None, + unit='B', unit_scale=True, unit_divisor=1024, + desc=f"Downloading {desc}", ascii=True) as pbar: + with open(local_path, 'wb') as f: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + f.write(chunk) + pbar.update(len(chunk)) + return local_path + except Exception as e: + logger.error(f"Ошибка загрузки {url}: {e}") + if downloader_instance and hasattr(downloader_instance, '_last_error'): + downloader_instance._last_error[url] = True + if os.path.exists(local_path): + os.remove(local_path) + return None + +def download_with_parallel(urls, local_paths, max_workers=4, timeout=5, downloader_instance=None): + from concurrent.futures import ThreadPoolExecutor, as_completed + + results = {} + session = get_requests_session() + + def _download_one(url, local_path): + if os.path.exists(local_path): + return local_path + try: + with session.get(url, stream=True, timeout=timeout) as response: + response.raise_for_status() + total_size = int(response.headers.get('Content-Length', 0)) + os.makedirs(os.path.dirname(local_path), exist_ok=True) + desc = Path(local_path).name + with tqdm(total=total_size if total_size > 0 else None, + unit='B', unit_scale=True, unit_divisor=1024, + desc=f"Downloading {desc}", ascii=True) as pbar: + with open(local_path, 'wb') as f: + for chunk in response.iter_content(chunk_size=8192): + if chunk: + f.write(chunk) + pbar.update(len(chunk)) + return local_path + except Exception as e: + logger.error(f"Ошибка загрузки {url}: {e}") + if downloader_instance and hasattr(downloader_instance, '_last_error'): + downloader_instance._last_error[url] = True + if os.path.exists(local_path): + os.remove(local_path) + return None + + with ThreadPoolExecutor(max_workers=max_workers) as executor: + future_to_url = {executor.submit(_download_one, url, local_path): url for url, local_path in zip(urls, local_paths, strict=False)} + for future in tqdm(as_completed(future_to_url), total=len(urls), desc="Downloading in parallel", ascii=True): + url = future_to_url[future] + try: + res = future.result() + results[url] = res + except Exception as e: + logger.error(f"Ошибка при загрузке {url}: {e}") + results[url] = None + return results + +class Downloader(QObject): + download_completed = Signal(str, str, bool) # url, local_path, success + + def __init__(self, max_workers=4): + super().__init__() + self.max_workers = max_workers + self._cache = {} + self._last_error = {} + self._locks = {} + self._active_threads: list[QThread] = [] + self._global_lock = threading.Lock() + self._has_internet = None + + def has_internet(self, timeout=3): + if self._has_internet is None: + errors = [] + try: + socket.create_connection(("8.8.8.8", 53), timeout=timeout) + except Exception as e: + errors.append(f"8.8.8.8: {e}") + try: + socket.create_connection(("8.8.4.4", 53), timeout=timeout) + except Exception as e: + errors.append(f"8.8.4.4: {e}") + try: + requests.get("https://www.google.com", timeout=timeout) + except Exception as e: + errors.append(f"google.com: {e}") + if errors: + logger.warning("Интернет недоступен:\n" + "\n".join(errors)) + self._has_internet = False + else: + self._has_internet = True + return self._has_internet + + def reset_internet_check(self): + self._has_internet = None + + def _get_url_lock(self, url): + with self._global_lock: + if url not in self._locks: + self._locks[url] = threading.Lock() + return self._locks[url] + + def download(self, url, local_path, timeout=5): + if not self.has_internet(): + logger.warning(f"Нет интернета, пропускаем загрузку {url}") + return None + with self._global_lock: + if url in self._last_error: + logger.warning(f"Предыдущая ошибка загрузки для {url}, пропускаем") + return None + if url in self._cache: + return self._cache[url] + url_lock = self._get_url_lock(url) + with url_lock: + with self._global_lock: + if url in self._last_error: + return None + if url in self._cache: + return self._cache[url] + result = download_with_cache(url, local_path, timeout, self) + with self._global_lock: + if result: + self._cache[url] = result + if url in self._locks: + del self._locks[url] + return result + + def download_parallel(self, urls, local_paths, timeout=5): + if not self.has_internet(): + logger.warning("Нет интернета, пропускаем параллельную загрузку") + return dict.fromkeys(urls) + + filtered_urls = [] + filtered_paths = [] + with self._global_lock: + for url, path in zip(urls, local_paths, strict=False): + if url in self._last_error: + logger.warning(f"Предыдущая ошибка загрузки для {url}, пропускаем") + continue + if url in self._cache: + continue + filtered_urls.append(url) + filtered_paths.append(path) + + results = download_with_parallel(filtered_urls, filtered_paths, max_workers=self.max_workers, timeout=timeout, downloader_instance=self) + + with self._global_lock: + for url, path in results.items(): + if path: + self._cache[url] = path + # Для URL которые были пропущены, добавляем их из кэша или None + final_results = {} + with self._global_lock: + for url in urls: + if url in self._cache: + final_results[url] = self._cache[url] + else: + final_results[url] = None + return final_results + + + def download_async(self, url: str, local_path: str, timeout: int = 5, callback: Callable[[str | None], None] | None = None, parallel: bool = False) -> QThread: + class DownloadThread(QThread): + def __init__(self, downloader: 'Downloader', url: str, local_path: str, timeout: int, parallel: bool): + super().__init__() + self.downloader = downloader + self.url = url + self.local_path = local_path + self.timeout = timeout + self.parallel = parallel + + def run(self): + try: + if self.parallel: + results = self.downloader.download_parallel([self.url], [self.local_path], timeout=self.timeout) + result = results.get(self.url, None) + else: + result = self.downloader.download(self.url, self.local_path, self.timeout) + success = result is not None + logger.debug(f"Async download completed {self.url}: success={success}, path={result or ''}") + self.downloader.download_completed.emit(self.url, result or "", success) + if callback: + callback(result) + except Exception as e: + logger.error(f"Ошибка при асинхронной загрузке {self.url}: {e}") + self.downloader.download_completed.emit(self.url, "", False) + if callback: + callback(None) + + thread = DownloadThread(self, url, local_path, timeout, parallel) + thread.finished.connect(thread.deleteLater) + + # Удалить из списка после завершения + def cleanup(): + self._active_threads.remove(thread) + + thread.finished.connect(cleanup) + + self._active_threads.append(thread) # Сохраняем поток, чтобы не уничтожился досрочно + logger.debug(f"Запуск потока для асинхронной загрузки {url}") + thread.start() + return thread + + def clear_cache(self): + with self._global_lock: + self._cache.clear() + + def is_cached(self, url): + with self._global_lock: + return url in self._cache + + def get_latest_legendary_release(self): + """Get the latest legendary release info from GitHub API.""" + try: + api_url = "https://api.github.com/repos/derrod/legendary/releases/latest" + response = requests.get(api_url, timeout=10) + response.raise_for_status() + + release_data = orjson.loads(response.content) + + # Find the Linux binary asset + for asset in release_data.get('assets', []): + if asset['name'] == 'legendary' and 'linux' in asset.get('content_type', '').lower(): + return { + 'version': release_data['tag_name'], + 'download_url': asset['browser_download_url'], + 'size': asset['size'] + } + + # Fallback: look for asset named just "legendary" + for asset in release_data.get('assets', []): + if asset['name'] == 'legendary': + return { + 'version': release_data['tag_name'], + 'download_url': asset['browser_download_url'], + 'size': asset['size'] + } + + logger.warning("Could not find legendary binary in latest release assets") + return None + + except requests.RequestException as e: + logger.error(f"Failed to fetch latest legendary release info: {e}") + return None + except (KeyError, orjson.JSONDecodeError) as e: + logger.error(f"Failed to parse legendary release info: {e}") + return None + + def download_legendary_binary(self, callback: Callable[[str | None], None] | None = None): + """Download the latest legendary binary for Linux from GitHub releases.""" + if not self.has_internet(): + logger.warning("No internet connection, skipping legendary binary download") + if callback: + callback(None) + return None + + # Get latest release info + latest_release = self.get_latest_legendary_release() + if not latest_release: + logger.error("Could not determine latest legendary version, falling back to hardcoded version") + # Fallback to hardcoded version + binary_url = "https://github.com/derrod/legendary/releases/download/0.20.34/legendary" + version = "0.20.34" + else: + binary_url = latest_release['download_url'] + version = latest_release['version'] + logger.info(f"Found latest legendary version: {version}") + + local_path = os.path.join( + os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")), + "PortProtonQT", "legendary_cache", "legendary" + ) + + logger.info(f"Downloading legendary binary version {version} from {binary_url} to {local_path}") + return self.download_async(binary_url, local_path, timeout=5, callback=callback) diff --git a/portprotonqt/egs_api.py b/portprotonqt/egs_api.py new file mode 100644 index 0000000..9feb1c2 --- /dev/null +++ b/portprotonqt/egs_api.py @@ -0,0 +1,373 @@ +import requests +import threading +import orjson +from pathlib import Path +import time +import subprocess +import os +from concurrent.futures import ThreadPoolExecutor +from collections.abc import Callable +from portprotonqt.localization import get_egs_language, _ +from portprotonqt.logger import get_logger +from portprotonqt.image_utils import load_pixmap_async +from PySide6.QtGui import QPixmap + +logger = get_logger(__name__) + +def get_cache_dir() -> Path: + """Returns the path to the cache directory, creating it if necessary.""" + xdg_cache_home = os.getenv( + "XDG_CACHE_HOME", + os.path.join(os.path.expanduser("~"), ".cache") + ) + cache_dir = Path(xdg_cache_home) / "PortProtonQT" + cache_dir.mkdir(parents=True, exist_ok=True) + return cache_dir + +def get_egs_game_description_async( + app_name: str, + callback: Callable[[str], None], + cache_ttl: int = 3600 +) -> None: + """ + Asynchronously fetches the game description from the Epic Games Store API. + Uses per-app cache files named egs_app_{app_name}.json in ~/.cache/PortProtonQT. + Checks the cache first; if the description is cached and not expired, returns it. + Prioritizes the page with type 'productHome' for the base game description. + """ + cache_dir = get_cache_dir() + cache_file = cache_dir / f"egs_app_{app_name.lower().replace(':', '_').replace(' ', '_')}.json" + + # Initialize content to avoid unbound variable + content = b"" + # Load existing cache + if cache_file.exists(): + try: + with open(cache_file, "rb") as f: + content = f.read() + cached_entry = orjson.loads(content) + if not isinstance(cached_entry, dict): + logger.warning( + "Invalid cache format in %s: expected dict, got %s", + cache_file, + type(cached_entry) + ) + cache_file.unlink(missing_ok=True) + else: + cached_time = cached_entry.get("timestamp", 0) + if time.time() - cached_time < cache_ttl: + description = cached_entry.get("description", "") + logger.debug( + "Using cached description for %s: %s", + app_name, + (description[:100] + "...") if len(description) > 100 else description + ) + callback(description) + return + except orjson.JSONDecodeError as e: + logger.warning( + "Failed to parse description cache for %s: %s", + app_name, + str(e) + ) + logger.debug( + "Cache file content (first 100 chars): %s", + content[:100].decode('utf-8', errors='replace') + ) + cache_file.unlink(missing_ok=True) + except Exception as e: + logger.error( + "Unexpected error reading description cache for %s: %s", + app_name, + str(e) + ) + cache_file.unlink(missing_ok=True) + + lang = get_egs_language() + slug = app_name.lower().replace(":", "").replace(" ", "-") + url = f"https://store-content.ak.epicgames.com/api/{lang}/content/products/{slug}" + + def fetch_description(): + try: + response = requests.get(url, timeout=5) + response.raise_for_status() + data = orjson.loads(response.content) + + if not isinstance(data, dict): + logger.warning("Invalid JSON structure for %s: %s", app_name, type(data)) + callback("") + return + + description = "" + pages = data.get("pages", []) + if pages: + # Look for the page with type "productHome" for the base game + for page in pages: + if page.get("type") == "productHome": + about_data = page.get("data", {}).get("about", {}) + description = about_data.get("shortDescription", "") + break + else: + # Fallback to first page's description if no productHome is found + description = ( + pages[0].get("data", {}) + .get("about", {}) + .get("shortDescription", "") + ) + + if not description: + logger.warning("No valid description found for %s", app_name) + + logger.debug( + "Fetched EGS description for %s: %s", + app_name, + (description[:100] + "...") if len(description) > 100 else description + ) + + cache_entry = {"description": description, "timestamp": time.time()} + try: + temp_file = cache_file.with_suffix('.tmp') + with open(temp_file, "wb") as f: + f.write(orjson.dumps(cache_entry)) + temp_file.replace(cache_file) + logger.debug( + "Saved description to cache for %s", app_name + ) + except Exception as e: + logger.error( + "Failed to save description cache for %s: %s", + app_name, + str(e) + ) + callback(description) + except requests.RequestException as e: + logger.warning( + "Failed to fetch EGS description for %s: %s", + app_name, + str(e) + ) + callback("") + except orjson.JSONDecodeError: + logger.warning( + "Invalid JSON response for %s", app_name + ) + callback("") + except Exception as e: + logger.error( + "Unexpected error fetching EGS description for %s: %s", + app_name, + str(e) + ) + callback("") + + thread = threading.Thread( + target=fetch_description, + daemon=True + ) + thread.start() + +def run_legendary_list_async(legendary_path: str, callback: Callable[[list | None], None]): + """ + Асинхронно выполняет команду 'legendary list --json' и возвращает результат через callback. + """ + def execute_command(): + process = None + try: + process = subprocess.Popen( + [legendary_path, "list", "--json"], + stdout=subprocess.PIPE, + stderr=subprocess.PIPE, + text=False + ) + stdout, stderr = process.communicate(timeout=30) + if process.returncode != 0: + logger.error("Legendary list command failed: %s", stderr.decode('utf-8', errors='replace')) + callback(None) + return + try: + result = orjson.loads(stdout) + if not isinstance(result, list): + logger.error("Invalid legendary output format: expected list, got %s", type(result)) + callback(None) + return + callback(result) + except orjson.JSONDecodeError as e: + logger.error("Failed to parse JSON output from legendary list: %s", str(e)) + callback(None) + except subprocess.TimeoutExpired: + logger.error("Legendary list command timed out") + if process: + process.kill() + callback(None) + except FileNotFoundError: + logger.error("Legendary executable not found at %s", legendary_path) + callback(None) + except Exception as e: + logger.error("Unexpected error executing legendary list: %s", str(e)) + callback(None) + + threading.Thread(target=execute_command, daemon=True).start() + +def load_egs_games_async(legendary_path: str, callback: Callable[[list[tuple]], None], downloader, update_progress: Callable[[int], None], update_status_message: Callable[[str, int], None]): + """ + Асинхронно загружает Epic Games Store игры с использованием legendary CLI. + """ + logger.debug("Starting to load Epic Games Store games") + games: list[tuple] = [] + cache_dir = Path(os.path.dirname(legendary_path)) + metadata_dir = cache_dir / "metadata" + cache_file = cache_dir / "legendary_games.json" + cache_ttl = 3600 # Cache TTL in seconds (1 hour) + + if not os.path.exists(legendary_path): + logger.info("Legendary binary not found, downloading...") + def on_legendary_downloaded(result): + if result: + logger.info("Legendary binary downloaded successfully") + try: + os.chmod(legendary_path, 0o755) + except Exception as e: + logger.error(f"Failed to make legendary binary executable: {e}") + callback(games) # Return empty games list on failure + return + _continue_loading_egs_games(legendary_path, callback, metadata_dir, cache_dir, cache_file, cache_ttl, update_progress, update_status_message) + else: + logger.error("Failed to download legendary binary") + callback(games) # Return empty games list on failure + try: + downloader.download_legendary_binary(on_legendary_downloaded) + except Exception as e: + logger.error(f"Error initiating legendary binary download: {e}") + callback(games) + return + else: + _continue_loading_egs_games(legendary_path, callback, metadata_dir, cache_dir, cache_file, cache_ttl, update_progress, update_status_message) + +def _continue_loading_egs_games(legendary_path: str, callback: Callable[[list[tuple]], None], metadata_dir: Path, cache_dir: Path, cache_file: Path, cache_ttl: int, update_progress: Callable[[int], None], update_status_message: Callable[[str, int], None]): + """ + Продолжает процесс загрузки EGS игр, либо из кэша, либо через legendary CLI. + """ + games: list[tuple] = [] + cache_dir.mkdir(parents=True, exist_ok=True) + + def process_games(installed_games: list | None): + if installed_games is None: + logger.info("No installed Epic Games Store games found") + callback(games) + return + + # Сохраняем в кэш + try: + with open(cache_file, "wb") as f: + f.write(orjson.dumps(installed_games)) + logger.debug("Saved Epic Games Store games to cache: %s", cache_file) + except Exception as e: + logger.error("Failed to save cache: %s", str(e)) + + # Фильтруем игры + valid_games = [game for game in installed_games if isinstance(game, dict) and game.get("app_name") and not game.get("is_dlc", False)] + if len(valid_games) != len(installed_games): + logger.warning("Filtered out %d invalid game records", len(installed_games) - len(valid_games)) + + if not valid_games: + logger.info("No valid Epic Games Store games found after filtering") + callback(games) + return + + pending_images = len(valid_games) + total_games = len(valid_games) + update_progress(0) + update_status_message(_("Loading Epic Games Store games..."), 3000) + + game_results: dict[int, tuple] = {} + results_lock = threading.Lock() + + def process_game_metadata(game, index): + nonlocal pending_images + app_name = game.get("app_name", "") + title = game.get("app_title", app_name) + if not app_name: + with results_lock: + pending_images -= 1 + update_progress(total_games - pending_images) + if pending_images == 0: + final_games = [game_results[i] for i in sorted(game_results.keys())] + callback(final_games) + return + + metadata_file = metadata_dir / f"{app_name}.json" + cover_url = "" + try: + with open(metadata_file, "rb") as f: + metadata = orjson.loads(f.read()) + key_images = metadata.get("metadata", {}).get("keyImages", []) + for img in key_images: + if isinstance(img, dict) and img.get("type") in ["DieselGameBoxTall", "Thumbnail"]: + cover_url = img.get("url", "") + break + except Exception as e: + logger.warning("Error processing metadata for %s: %s", app_name, str(e)) + + image_folder = os.path.join(os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")), "PortProtonQT", "images") + local_path = os.path.join(image_folder, f"{app_name}.jpg") if cover_url else "" + + def on_description_fetched(api_description: str): + final_description = api_description or _("No description available") + + def on_cover_loaded(pixmap: QPixmap): + from portprotonqt.steam_api import get_weanticheatyet_status_async + def on_anticheat_status(status: str): + nonlocal pending_images + with results_lock: + game_results[index] = ( + title, + final_description, + local_path if os.path.exists(local_path) else "", + app_name, + f"legendary:launch:{app_name}", + "", + _("Never"), + "", + "", + status or "", + 0, + 0, + "epic" + ) + pending_images -= 1 + update_progress(total_games - pending_images) + if pending_images == 0: + final_games = [game_results[i] for i in sorted(game_results.keys())] + callback(final_games) + + get_weanticheatyet_status_async(title, on_anticheat_status) + + load_pixmap_async(cover_url, 600, 900, on_cover_loaded, app_name=app_name) + + get_egs_game_description_async(title, on_description_fetched) + + max_workers = min(4, len(valid_games)) + with ThreadPoolExecutor(max_workers=max_workers) as executor: + for i, game in enumerate(valid_games): + executor.submit(process_game_metadata, game, i) + + # Проверяем кэш + use_cache = False + if cache_file.exists(): + try: + cache_mtime = cache_file.stat().st_mtime + if time.time() - cache_mtime < cache_ttl and metadata_dir.exists() and any(metadata_dir.iterdir()): + logger.debug("Loading Epic Games Store games from cache: %s", cache_file) + with open(cache_file, "rb") as f: + installed_games = orjson.loads(f.read()) + if not isinstance(installed_games, list): + logger.warning("Invalid cache format: expected list, got %s", type(installed_games)) + else: + use_cache = True + process_games(installed_games) + except Exception as e: + logger.error("Error reading cache: %s", str(e)) + + if not use_cache: + logger.info("Fetching Epic Games Store games using legendary list") + run_legendary_list_async(legendary_path, process_games) diff --git a/portprotonqt/game_card.py b/portprotonqt/game_card.py new file mode 100644 index 0000000..152474f --- /dev/null +++ b/portprotonqt/game_card.py @@ -0,0 +1,473 @@ +from PySide6.QtGui import QPainter, QPen, QColor, QConicalGradient, QBrush, QDesktopServices +from PySide6.QtCore import QEasingCurve, Signal, Property, Qt, QPropertyAnimation, QByteArray, QUrl +from PySide6.QtWidgets import QFrame, QGraphicsDropShadowEffect, QVBoxLayout, QWidget, QStackedLayout, QLabel +from collections.abc import Callable +import portprotonqt.themes.standart.styles as default_styles +from portprotonqt.image_utils import load_pixmap_async, round_corners +from portprotonqt.localization import _ +from portprotonqt.config_utils import read_favorites, save_favorites +from portprotonqt.theme_manager import ThemeManager +from portprotonqt.config_utils import read_theme_from_config +from portprotonqt.custom_widgets import ClickableLabel +import weakref +from typing import cast + +class GameCard(QFrame): + borderWidthChanged = Signal() + gradientAngleChanged = Signal() + # Signals for context menu actions + editShortcutRequested = Signal(str, str, str) # name, exec_line, cover_path + deleteGameRequested = Signal(str, str) # name, exec_line + addToMenuRequested = Signal(str, str) # name, exec_line + removeFromMenuRequested = Signal(str) # name + addToDesktopRequested = Signal(str, str) # name, exec_line + removeFromDesktopRequested = Signal(str) # name + addToSteamRequested = Signal(str, str, str) # name, exec_line, cover_path + removeFromSteamRequested = Signal(str, str) # name, exec_line + openGameFolderRequested = Signal(str, str) # name, exec_line + + def __init__(self, name, description, cover_path, appid, controller_support, exec_line, + last_launch, formatted_playtime, protondb_tier, anticheat_status, last_launch_ts, playtime_seconds, steam_game, + select_callback, theme=None, card_width=250, parent=None, context_menu_manager=None): + super().__init__(parent) + self.name = name + self.description = description + self.cover_path = cover_path + self.appid = appid + self.controller_support = controller_support + self.exec_line = exec_line + self.last_launch = last_launch + self.formatted_playtime = formatted_playtime + self.protondb_tier = protondb_tier + self.anticheat_status = anticheat_status + self.steam_game = steam_game + self.last_launch_ts = last_launch_ts + self.playtime_seconds = playtime_seconds + + self.select_callback = select_callback + self.context_menu_manager = context_menu_manager + self.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu) + self.customContextMenuRequested.connect(self._show_context_menu) + self.theme_manager = ThemeManager() + self.theme = theme if theme is not None else default_styles + + self.current_theme_name = read_theme_from_config() + + # Дополнительное пространство для анимации + extra_margin = 20 + self.setFixedSize(card_width + extra_margin, int(card_width * 1.6) + extra_margin) + self.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.setStyleSheet(self.theme.GAME_CARD_WINDOW_STYLE) + + # Параметры анимации обводки + self._borderWidth = 2 + self._gradientAngle = 0.0 + self._hovered = False + self._focused = False + + # Анимации + self.thickness_anim = QPropertyAnimation(self, QByteArray(b"borderWidth")) + self.thickness_anim.setDuration(300) + self.gradient_anim = None + self.pulse_anim = None + + # Флаг для отслеживания подключения слота startPulseAnimation + self._isPulseAnimationConnected = False + + # Тень + shadow = QGraphicsDropShadowEffect(self) + shadow.setBlurRadius(20) + shadow.setColor(QColor(0, 0, 0, 150)) + shadow.setOffset(0, 0) + self.setGraphicsEffect(shadow) + + # Отступы + layout = QVBoxLayout(self) + layout.setContentsMargins(extra_margin // 2, extra_margin // 2, extra_margin // 2, extra_margin // 2) + layout.setSpacing(5) + + # Контейнер обложки + coverWidget = QWidget() + coverWidget.setFixedSize(card_width, int(card_width * 1.2)) + coverLayout = QStackedLayout(coverWidget) + coverLayout.setContentsMargins(0, 0, 0, 0) + coverLayout.setStackingMode(QStackedLayout.StackingMode.StackAll) + + # Обложка + self.coverLabel = QLabel() + self.coverLabel.setFixedSize(card_width, int(card_width * 1.2)) + self.coverLabel.setStyleSheet(self.theme.COVER_LABEL_STYLE) + coverLayout.addWidget(self.coverLabel) + + # создаём слабую ссылку на label + label_ref = weakref.ref(self.coverLabel) + + def on_cover_loaded(pixmap): + label = label_ref() + if label is None: + # QLabel уже удалён — ничего не делаем + return + label.setPixmap(round_corners(pixmap, 15)) + + # асинхронная загрузка обложки (пустая строка даст placeholder внутри load_pixmap_async) + load_pixmap_async(cover_path or "", card_width, int(card_width * 1.2), on_cover_loaded) + + # Значок избранного (звёздочка) в левом верхнем углу обложки + self.favoriteLabel = ClickableLabel(coverWidget) + self.favoriteLabel.setFixedSize(*self.theme.favoriteLabelSize) + self.favoriteLabel.move(8, 8) + self.favoriteLabel.clicked.connect(self.toggle_favorite) + self.is_favorite = self.name in read_favorites() + self.update_favorite_icon() + self.favoriteLabel.raise_() + + # ProtonDB бейдж + tier_text = self.getProtonDBText(protondb_tier) + if tier_text: + icon_filename = self.getProtonDBIconFilename(protondb_tier) + icon = self.theme_manager.get_icon(icon_filename, self.current_theme_name) + self.protondbLabel = ClickableLabel( + tier_text, + icon=icon, + parent=coverWidget, + icon_size=16, + icon_space=3, + ) + self.protondbLabel.setStyleSheet(self.theme.get_protondb_badge_style(protondb_tier)) + self.protondbLabel.setFixedWidth(int(card_width * 2/3)) # Устанавливаем ширину в 2/3 ширины карточки + protondb_visible = True + else: + self.protondbLabel = ClickableLabel("", parent=coverWidget, icon_size=16, icon_space=3) + self.protondbLabel.setFixedWidth(int(card_width * 2/3)) # Устанавливаем ширину даже для невидимого бейджа + self.protondbLabel.setVisible(False) + protondb_visible = False + + # Steam бейдж + steam_icon = self.theme_manager.get_icon("steam") + self.steamLabel = ClickableLabel( + "Steam", + icon=steam_icon, + parent=coverWidget, + icon_size=16, + icon_space=5, + ) + self.steamLabel.setStyleSheet(self.theme.STEAM_BADGE_STYLE) + self.steamLabel.setFixedWidth(int(card_width * 2/3)) # Устанавливаем ширину в 2/3 ширины карточки + steam_visible = (str(steam_game).lower() == "true") + self.steamLabel.setVisible(steam_visible) + + # WeAntiCheatYet бейдж + anticheat_text = self.getAntiCheatText(anticheat_status) + if anticheat_text: + icon_filename = self.getAntiCheatIconFilename(anticheat_status) + icon = self.theme_manager.get_icon(icon_filename, self.current_theme_name) + self.anticheatLabel = ClickableLabel( + anticheat_text, + icon=icon, + parent=coverWidget, + icon_size=16, + icon_space=3, + ) + self.anticheatLabel.setStyleSheet(self.theme.STEAM_BADGE_STYLE) + self.anticheatLabel.setFixedWidth(int(card_width * 2/3)) # Устанавливаем ширину в 2/3 ширины карточки + anticheat_visible = True + else: + self.anticheatLabel = ClickableLabel("", parent=coverWidget, icon_size=16, icon_space=3) + self.anticheatLabel.setFixedWidth(int(card_width * 2/3)) # Устанавливаем ширину даже для невидимого бейджа + self.anticheatLabel.setVisible(False) + anticheat_visible = False + + # Расположение бейджей + right_margin = 8 + badge_spacing = 5 + top_y = 10 + badge_y_positions = [] + badge_width = int(card_width * 2/3) # Фиксированная ширина бейджей + if steam_visible: + steam_x = card_width - badge_width - right_margin + self.steamLabel.move(steam_x, top_y) + badge_y_positions.append(top_y + self.steamLabel.height()) + if protondb_visible: + protondb_x = card_width - badge_width - right_margin + protondb_y = badge_y_positions[-1] + badge_spacing if badge_y_positions else top_y + self.protondbLabel.move(protondb_x, protondb_y) + badge_y_positions.append(protondb_y + self.protondbLabel.height()) + if anticheat_visible: + anticheat_x = card_width - badge_width - right_margin + anticheat_y = badge_y_positions[-1] + badge_spacing if badge_y_positions else top_y + self.anticheatLabel.move(anticheat_x, anticheat_y) + + self.anticheatLabel.raise_() + self.protondbLabel.raise_() + self.steamLabel.raise_() + self.protondbLabel.clicked.connect(self.open_protondb_report) + self.steamLabel.clicked.connect(self.open_steam_page) + self.anticheatLabel.clicked.connect(self.open_weanticheatyet_page) + + layout.addWidget(coverWidget) + + # Название игры + nameLabel = QLabel(name) + nameLabel.setAlignment(Qt.AlignmentFlag.AlignCenter) + nameLabel.setStyleSheet(self.theme.GAME_CARD_NAME_LABEL_STYLE) + layout.addWidget(nameLabel) + + def _show_context_menu(self, pos): + """Delegate context menu display to ContextMenuManager.""" + if self.context_menu_manager: + self.context_menu_manager.show_context_menu(self, pos) + + def getAntiCheatText(self, status): + if not status: + return "" + translations = { + "supported": _("Supported"), + "running": _("Running"), + "planned": _("Planned"), + "broken": _("Broken"), + "denied": _("Denied") + } + return translations.get(status.lower(), "") + + def getAntiCheatIconFilename(self, status): + status = status.lower() + if status in ("supported", "running"): + return "platinum-gold" + elif status in ("denied", "planned", "broken"): + return "broken" + return "" + + def getProtonDBText(self, tier): + if not tier: + return "" + translations = { + "platinum": _("Platinum"), + "gold": _("Gold"), + "silver": _("Silver"), + "bronze": _("Bronze"), + "borked": _("Broken"), + "pending": _("Pending") + } + return translations.get(tier.lower(), "") + + def getProtonDBIconFilename(self, tier): + tier = tier.lower() + if tier in ("platinum", "gold"): + return "platinum-gold" + elif tier in ("silver", "bronze"): + return "silver-bronze" + elif tier in ("borked", "pending"): + return "broken" + return "" + + def open_protondb_report(self): + url = QUrl(f"https://www.protondb.com/app/{self.appid}") + QDesktopServices.openUrl(url) + + def open_steam_page(self): + url = QUrl(f"https://steamcommunity.com/app/{self.appid}") + QDesktopServices.openUrl(url) + + def open_weanticheatyet_page(self): + formatted_name = self.name.lower().replace(" ", "-") + url = QUrl(f"https://areweanticheatyet.com/game/{formatted_name}") + QDesktopServices.openUrl(url) + + def update_favorite_icon(self): + if self.is_favorite: + self.favoriteLabel.setText("★") + else: + self.favoriteLabel.setText("☆") + self.favoriteLabel.setStyleSheet(self.theme.FAVORITE_LABEL_STYLE) + + def toggle_favorite(self): + favorites = read_favorites() + if self.is_favorite: + if self.name in favorites: + favorites.remove(self.name) + self.is_favorite = False + else: + if self.name not in favorites: + favorites.append(self.name) + self.is_favorite = True + save_favorites(favorites) + self.update_favorite_icon() + + def getBorderWidth(self) -> int: + return self._borderWidth + + def setBorderWidth(self, value: int): + if self._borderWidth != value: + self._borderWidth = value + self.borderWidthChanged.emit() + self.update() + + def getGradientAngle(self) -> float: + return self._gradientAngle + + def setGradientAngle(self, value: float): + if self._gradientAngle != value: + self._gradientAngle = value + self.gradientAngleChanged.emit() + self.update() + + borderWidth = Property(int, getBorderWidth, setBorderWidth, None, "", notify=cast(Callable[[], None], borderWidthChanged)) + gradientAngle = Property(float, getGradientAngle, setGradientAngle, None, "", notify=cast(Callable[[], None], gradientAngleChanged)) + + def paintEvent(self, event): + super().paintEvent(event) + painter = QPainter(self) + painter.setRenderHint(QPainter.RenderHint.Antialiasing) + + pen = QPen() + pen.setWidth(self._borderWidth) + if self._hovered or self._focused: + center = self.rect().center() + gradient = QConicalGradient(center, self._gradientAngle) + gradient.setColorAt(0, QColor("#00fff5")) + gradient.setColorAt(0.33, QColor("#FF5733")) + gradient.setColorAt(0.66, QColor("#9B59B6")) + gradient.setColorAt(1, QColor("#00fff5")) + pen.setBrush(QBrush(gradient)) + else: + pen.setColor(QColor(0, 0, 0, 0)) + + painter.setPen(pen) + radius = 18 + bw = round(self._borderWidth / 2) + rect = self.rect().adjusted(bw, bw, -bw, -bw) + painter.drawRoundedRect(rect, radius, radius) + + def startPulseAnimation(self): + if not (self._hovered or self._focused): + return + if self.pulse_anim: + self.pulse_anim.stop() + self.pulse_anim = QPropertyAnimation(self, QByteArray(b"borderWidth")) + self.pulse_anim.setDuration(800) + self.pulse_anim.setLoopCount(0) + self.pulse_anim.setKeyValueAt(0, 8) + self.pulse_anim.setKeyValueAt(0.5, 10) + self.pulse_anim.setKeyValueAt(1, 8) + self.pulse_anim.start() + + def enterEvent(self, event): + self._hovered = True + self.thickness_anim.stop() + if self._isPulseAnimationConnected: + self.thickness_anim.finished.disconnect(self.startPulseAnimation) + self._isPulseAnimationConnected = False + self.thickness_anim.setEasingCurve(QEasingCurve(QEasingCurve.Type.OutBack)) + self.thickness_anim.setStartValue(self._borderWidth) + self.thickness_anim.setEndValue(8) + self.thickness_anim.finished.connect(self.startPulseAnimation) + self._isPulseAnimationConnected = True + self.thickness_anim.start() + + if self.gradient_anim: + self.gradient_anim.stop() + self.gradient_anim = QPropertyAnimation(self, QByteArray(b"gradientAngle")) + self.gradient_anim.setDuration(3000) + self.gradient_anim.setStartValue(360) + self.gradient_anim.setEndValue(0) + self.gradient_anim.setLoopCount(-1) + self.gradient_anim.start() + + super().enterEvent(event) + + def leaveEvent(self, event): + self._hovered = False + if not self._focused: # Сохраняем анимацию, если есть фокус + if self.gradient_anim: + self.gradient_anim.stop() + self.gradient_anim = None + self.thickness_anim.stop() + if self._isPulseAnimationConnected: + self.thickness_anim.finished.disconnect(self.startPulseAnimation) + self._isPulseAnimationConnected = False + if self.pulse_anim: + self.pulse_anim.stop() + self.pulse_anim = None + self.thickness_anim.setEasingCurve(QEasingCurve(QEasingCurve.Type.InBack)) + self.thickness_anim.setStartValue(self._borderWidth) + self.thickness_anim.setEndValue(2) + self.thickness_anim.start() + + super().leaveEvent(event) + + def focusInEvent(self, event): + self._focused = True + self.thickness_anim.stop() + if self._isPulseAnimationConnected: + self.thickness_anim.finished.disconnect(self.startPulseAnimation) + self._isPulseAnimationConnected = False + self.thickness_anim.setEasingCurve(QEasingCurve(QEasingCurve.Type.OutBack)) + self.thickness_anim.setStartValue(self._borderWidth) + self.thickness_anim.setEndValue(12) + self.thickness_anim.finished.connect(self.startPulseAnimation) + self._isPulseAnimationConnected = True + self.thickness_anim.start() + + if self.gradient_anim: + self.gradient_anim.stop() + self.gradient_anim = QPropertyAnimation(self, QByteArray(b"gradientAngle")) + self.gradient_anim.setDuration(3000) + self.gradient_anim.setStartValue(360) + self.gradient_anim.setEndValue(0) + self.gradient_anim.setLoopCount(-1) + self.gradient_anim.start() + + super().focusInEvent(event) + + def focusOutEvent(self, event): + self._focused = False + if not self._hovered: # Сохраняем анимацию, если есть наведение + if self.gradient_anim: + self.gradient_anim.stop() + self.gradient_anim = None + self.thickness_anim.stop() + if self._isPulseAnimationConnected: + self.thickness_anim.finished.disconnect(self.startPulseAnimation) + self._isPulseAnimationConnected = False + if self.pulse_anim: + self.pulse_anim.stop() + self.pulse_anim = None + self.thickness_anim.setEasingCurve(QEasingCurve(QEasingCurve.Type.InBack)) + self.thickness_anim.setStartValue(self._borderWidth) + self.thickness_anim.setEndValue(2) + self.thickness_anim.start() + + super().focusOutEvent(event) + + def mousePressEvent(self, event): + if event.button() == Qt.MouseButton.LeftButton: + self.select_callback( + self.name, + self.description, + self.cover_path, + self.appid, + self.controller_support, + self.exec_line, + self.last_launch, + self.formatted_playtime, + self.protondb_tier, + self.steam_game + ) + super().mousePressEvent(event) + + def keyPressEvent(self, event): + if event.key() in (Qt.Key.Key_Return, Qt.Key.Key_Enter): + self.select_callback( + self.name, + self.description, + self.cover_path, + self.appid, + self.controller_support, + self.exec_line, + self.last_launch, + self.formatted_playtime, + self.protondb_tier, + self.steam_game + ) + else: + super().keyPressEvent(event) diff --git a/portprotonqt/image_utils.py b/portprotonqt/image_utils.py new file mode 100644 index 0000000..0c2dda5 --- /dev/null +++ b/portprotonqt/image_utils.py @@ -0,0 +1,503 @@ +import os +from PySide6.QtGui import QPen, QColor, QPixmap, QPainter, QPainterPath +from PySide6.QtCore import Qt, QFile, QEvent, QByteArray, QEasingCurve, QPropertyAnimation +from PySide6.QtWidgets import QGraphicsItem, QToolButton, QFrame, QLabel, QGraphicsScene, QHBoxLayout, QWidget, QGraphicsView, QVBoxLayout, QSizePolicy +from PySide6.QtWidgets import QSpacerItem, QGraphicsPixmapItem, QDialog, QApplication +import portprotonqt.themes.standart.styles as default_styles +from portprotonqt.config_utils import read_theme_from_config +from portprotonqt.theme_manager import ThemeManager +from portprotonqt.downloader import Downloader +from portprotonqt.logger import get_logger +from collections.abc import Callable +from concurrent.futures import ThreadPoolExecutor +from queue import Queue +import threading + +downloader = Downloader() +logger = get_logger(__name__) + +# Глобальная очередь и пул потоков для загрузки изображений +image_load_queue = Queue() +image_executor = ThreadPoolExecutor(max_workers=4) +queue_lock = threading.Lock() + +def load_pixmap_async(cover: str, width: int, height: int, callback: Callable[[QPixmap], None], app_name: str = ""): + """ + Асинхронно загружает обложку через очередь задач. + """ + def process_image(): + theme_manager = ThemeManager() + current_theme_name = read_theme_from_config() + + def finish_with(pixmap: QPixmap): + scaled = pixmap.scaled(width, height, Qt.AspectRatioMode.KeepAspectRatioByExpanding, Qt.TransformationMode.SmoothTransformation) + x = (scaled.width() - width) // 2 + y = (scaled.height() - height) // 2 + cropped = scaled.copy(x, y, width, height) + callback(cropped) + # Removed: pixmap = None (unnecessary, causes type error) + + xdg_cache_home = os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")) + image_folder = os.path.join(xdg_cache_home, "PortProtonQT", "images") + os.makedirs(image_folder, exist_ok=True) + + if cover and cover.startswith("https://steamcdn-a.akamaihd.net/steam/apps/"): + try: + parts = cover.split("/") + appid = None + if "apps" in parts: + idx = parts.index("apps") + if idx + 1 < len(parts): + appid = parts[idx + 1] + if appid: + local_path = os.path.join(image_folder, f"{appid}.jpg") + if os.path.exists(local_path): + pixmap = QPixmap(local_path) + finish_with(pixmap) + return + + def on_downloaded(result: str | None): + pixmap = QPixmap() + if result and os.path.exists(result): + pixmap.load(result) + if pixmap.isNull(): + placeholder_path = theme_manager.get_theme_image("placeholder", current_theme_name) + if placeholder_path and QFile.exists(placeholder_path): + pixmap.load(placeholder_path) + else: + pixmap = QPixmap(width, height) + pixmap.fill(QColor("#333333")) + painter = QPainter(pixmap) + painter.setPen(QPen(QColor("white"))) + painter.drawText(pixmap.rect(), Qt.AlignmentFlag.AlignCenter, "No Image") + painter.end() + finish_with(pixmap) + + downloader.download_async(cover, local_path, timeout=5, callback=on_downloaded) + return + except Exception as e: + logger.error(f"Ошибка обработки URL {cover}: {e}") + + if cover and cover.startswith(("http://", "https://")): + try: + local_path = os.path.join(image_folder, f"{app_name}.jpg") + if os.path.exists(local_path): + pixmap = QPixmap(local_path) + finish_with(pixmap) + return + + def on_downloaded(result: str | None): + pixmap = QPixmap() + if result and os.path.exists(result): + pixmap.load(result) + if pixmap.isNull(): + placeholder_path = theme_manager.get_theme_image("placeholder", current_theme_name) + if placeholder_path and QFile.exists(placeholder_path): + pixmap.load(placeholder_path) + else: + pixmap = QPixmap(width, height) + pixmap.fill(QColor("#333333")) + painter = QPainter(pixmap) + painter.setPen(QPen(QColor("white"))) + painter.drawText(pixmap.rect(), Qt.AlignmentFlag.AlignCenter, "No Image") + painter.end() + finish_with(pixmap) + + downloader.download_async(cover, local_path, timeout=5, callback=on_downloaded) + return + except Exception as e: + logger.error("Error processing EGS URL %s: %s", cover, str(e)) + + if cover and QFile.exists(cover): + pixmap = QPixmap(cover) + finish_with(pixmap) + return + + placeholder_path = theme_manager.get_theme_image("placeholder", current_theme_name) + pixmap = QPixmap() + if placeholder_path and QFile.exists(placeholder_path): + pixmap.load(placeholder_path) + else: + pixmap = QPixmap(width, height) + pixmap.fill(QColor("#333333")) + painter = QPainter(pixmap) + painter.setPen(QPen(QColor("white"))) + painter.drawText(pixmap.rect(), Qt.AlignmentFlag.AlignCenter, "No Image") + painter.end() + finish_with(pixmap) + + with queue_lock: + image_load_queue.put(process_image) + image_executor.submit(lambda: image_load_queue.get()()) + +def round_corners(pixmap, radius): + """ + Возвращает QPixmap с закруглёнными углами. + """ + if pixmap.isNull(): + return pixmap + size = pixmap.size() + rounded = QPixmap(size) + rounded.fill(QColor(0, 0, 0, 0)) + painter = QPainter(rounded) + painter.setRenderHint(QPainter.RenderHint.Antialiasing) + path = QPainterPath() + path.addRoundedRect(0, 0, size.width(), size.height(), radius, radius) + painter.setClipPath(path) + painter.drawPixmap(0, 0, pixmap) + painter.end() + return rounded + +class FullscreenDialog(QDialog): + """ + Диалог для просмотра изображений без стандартных элементов управления. + Изображение отображается в области фиксированного размера, а подпись располагается чуть выше нижней границы. + В окне есть кнопки-стрелки для перелистывания изображений. + Диалог закрывается при клике по изображению или подписи. + """ + FIXED_WIDTH = 800 + FIXED_HEIGHT = 400 + + def __init__(self, images, current_index=0, parent=None, theme=None): + """ + :param images: Список кортежей (QPixmap, caption) + :param current_index: Индекс текущего изображения + :param theme: Объект темы для стилизации (если None, используется default_styles) + """ + super().__init__(parent) + # Удаление диалога после закрытия + self.setAttribute(Qt.WidgetAttribute.WA_DeleteOnClose) + self.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.setFocus() + + self.images = images + self.current_index = current_index + self.theme = theme if theme else default_styles + + # Убираем стандартные элементы управления окна + self.setWindowFlags(Qt.WindowType.FramelessWindowHint | Qt.WindowType.Dialog) + self.setAttribute(Qt.WidgetAttribute.WA_TranslucentBackground) + + self.init_ui() + self.update_display() + + # Фильтруем события для закрытия диалога по клику + self.imageLabel.installEventFilter(self) + self.captionLabel.installEventFilter(self) + + def init_ui(self): + self.mainLayout = QVBoxLayout(self) + self.setLayout(self.mainLayout) + self.mainLayout.setContentsMargins(0, 0, 0, 0) + self.mainLayout.setSpacing(0) + + # Контейнер для изображения и стрелок + self.imageContainer = QWidget() + self.imageContainer.setFixedSize(self.FIXED_WIDTH, self.FIXED_HEIGHT) + self.imageContainerLayout = QHBoxLayout(self.imageContainer) + self.imageContainerLayout.setContentsMargins(0, 0, 0, 0) + self.imageContainerLayout.setSpacing(0) + + # Левая стрелка + self.prevButton = QToolButton() + self.prevButton.setArrowType(Qt.ArrowType.LeftArrow) + self.prevButton.setStyleSheet(self.theme.PREV_BUTTON_STYLE) + self.prevButton.setCursor(Qt.CursorShape.PointingHandCursor) + self.prevButton.setFixedSize(40, 40) + self.prevButton.clicked.connect(self.show_prev) + self.imageContainerLayout.addWidget(self.prevButton) + + # Метка для изображения + self.imageLabel = QLabel() + self.imageLabel.setFixedSize(self.FIXED_WIDTH - 80, self.FIXED_HEIGHT) + self.imageLabel.setAlignment(Qt.AlignmentFlag.AlignCenter) + self.imageContainerLayout.addWidget(self.imageLabel, stretch=1) + + # Правая стрелка + self.nextButton = QToolButton() + self.nextButton.setArrowType(Qt.ArrowType.RightArrow) + self.nextButton.setStyleSheet(self.theme.NEXT_BUTTON_STYLE) + self.nextButton.setCursor(Qt.CursorShape.PointingHandCursor) + self.nextButton.setFixedSize(40, 40) + self.nextButton.clicked.connect(self.show_next) + self.imageContainerLayout.addWidget(self.nextButton) + + self.mainLayout.addWidget(self.imageContainer) + + # Небольшой отступ между изображением и подписью + spacer = QSpacerItem(20, 10, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed) + self.mainLayout.addItem(spacer) + + # Подпись + self.captionLabel = QLabel() + self.captionLabel.setAlignment(Qt.AlignmentFlag.AlignCenter) + self.captionLabel.setFixedHeight(40) + self.captionLabel.setWordWrap(True) + self.captionLabel.setStyleSheet(self.theme.CAPTION_LABEL_STYLE) + self.captionLabel.setCursor(Qt.CursorShape.PointingHandCursor) + self.mainLayout.addWidget(self.captionLabel) + + def update_display(self): + """Обновляет изображение и подпись согласно текущему индексу.""" + if not self.images: + return + + # Очищаем старое содержимое + self.imageLabel.clear() + self.captionLabel.clear() + QApplication.processEvents() + + pixmap, caption = self.images[self.current_index] + # Масштабируем изображение так, чтобы оно поместилось в область фиксированного размера + scaled_pixmap = pixmap.scaled( + self.FIXED_WIDTH - 80, # учитываем ширину стрелок + self.FIXED_HEIGHT, + Qt.AspectRatioMode.KeepAspectRatio, + Qt.TransformationMode.SmoothTransformation + ) + self.imageLabel.setPixmap(scaled_pixmap) + self.captionLabel.setText(caption) + self.setWindowTitle(caption) + + # Принудительная перерисовка виджетов + self.imageLabel.repaint() + self.captionLabel.repaint() + self.repaint() + + def show_prev(self): + """Показывает предыдущее изображение.""" + if self.images: + self.current_index = (self.current_index - 1) % len(self.images) + self.update_display() + + def show_next(self): + """Показывает следующее изображение.""" + if self.images: + self.current_index = (self.current_index + 1) % len(self.images) + self.update_display() + + def eventFilter(self, obj, event): + """Закрывает диалог при клике по изображению или подписи.""" + if event.type() == QEvent.Type.MouseButtonPress and obj in [self.imageLabel, self.captionLabel]: + self.close() + return True + return super().eventFilter(obj, event) + + def changeEvent(self, event): + """Закрывает диалог при потере фокуса.""" + if event.type() == QEvent.Type.ActivationChange: + if not self.isActiveWindow(): + self.close() + super().changeEvent(event) + + def mousePressEvent(self, event): + """Закрывает диалог при клике на пустую область.""" + pos = event.pos() + # Проверяем, находится ли клик вне imageContainer и captionLabel + if not (self.imageContainer.geometry().contains(pos) or + self.captionLabel.geometry().contains(pos)): + self.close() + super().mousePressEvent(event) + +class ClickablePixmapItem(QGraphicsPixmapItem): + """ + Элемент карусели, реагирующий на клик. + При клике открывается FullscreenDialog с возможностью перелистывания изображений. + """ + def __init__(self, pixmap, caption="Просмотр изображения", images_list=None, index=0, carousel=None): + """ + :param pixmap: QPixmap для отображения в карусели + :param caption: Подпись к изображению + :param images_list: Список всех изображений (кортежей (QPixmap, caption)), + чтобы в диалоге можно было перелистывать. + Если не передан, будет использован только текущее изображение. + :param index: Индекс текущего изображения в images_list. + :param carousel: Ссылка на родительскую карусель (ImageCarousel) для управления стрелками. + """ + super().__init__(pixmap) + self.caption = caption + self.images_list = images_list if images_list is not None else [(pixmap, caption)] + self.index = index + self.carousel = carousel + self.setCursor(Qt.CursorShape.PointingHandCursor) + self.setToolTip(caption) + self._click_start_position = None + self.setAcceptedMouseButtons(Qt.MouseButton.LeftButton) + self.setFlag(QGraphicsItem.GraphicsItemFlag.ItemIsSelectable) + + def mousePressEvent(self, event): + if event.button() == Qt.MouseButton.LeftButton: + self._click_start_position = event.scenePos() + event.accept() + + def mouseReleaseEvent(self, event): + if event.button() == Qt.MouseButton.LeftButton and self._click_start_position is not None: + distance = (event.scenePos() - self._click_start_position).manhattanLength() + if distance < 2: + self.show_fullscreen() + event.accept() + return + event.accept() + + def show_fullscreen(self): + # Скрываем стрелки карусели перед открытием FullscreenDialog + if self.carousel: + self.carousel.prevArrow.hide() + self.carousel.nextArrow.hide() + dialog = FullscreenDialog(self.images_list, current_index=self.index) + dialog.exec() + # После закрытия диалога обновляем видимость стрелок + if self.carousel: + self.carousel.update_arrows_visibility() + + +class ImageCarousel(QGraphicsView): + """ + Карусель изображений с адаптивностью, возможностью увеличения по клику + и перетаскиванием мыши. + """ + def __init__(self, images: list[tuple], parent: QWidget | None = None, theme: object | None = None): + super().__init__(parent) + + # Аннотируем тип scene как QGraphicsScene + self.carousel_scene: QGraphicsScene = QGraphicsScene(self) + self.setScene(self.carousel_scene) + + self.images = images # Список кортежей: (QPixmap, caption) + self.image_items = [] + self._animation = None + self.theme = theme if theme else default_styles + self.init_ui() + self.create_arrows() + + # Переменные для поддержки перетаскивания + self._drag_active = False + self._drag_start_position = None + self._scroll_start_value = None + + def init_ui(self): + self.setRenderHint(QPainter.RenderHint.Antialiasing) + self.setHorizontalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff) + self.setVerticalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff) + self.setFrameShape(QFrame.Shape.NoFrame) + + x_offset = 10 # Отступ между изображениями + max_height = 300 # Фиксированная высота изображений + x = 0 + + for i, (pixmap, caption) in enumerate(self.images): + item = ClickablePixmapItem( + pixmap.scaledToHeight(max_height, Qt.TransformationMode.SmoothTransformation), + caption, + images_list=self.images, + index=i, + carousel=self # Передаем ссылку на карусель + ) + item.setPos(x, 0) + self.carousel_scene.addItem(item) + self.image_items.append(item) + x += item.pixmap().width() + x_offset + + self.setSceneRect(0, 0, x, max_height) + + def create_arrows(self): + """Создаёт кнопки-стрелки и привязывает их к функциям прокрутки.""" + self.prevArrow = QToolButton(self) + self.prevArrow.setArrowType(Qt.ArrowType.LeftArrow) + self.prevArrow.setStyleSheet(self.theme.PREV_BUTTON_STYLE) # type: ignore + self.prevArrow.setFixedSize(40, 40) + self.prevArrow.setCursor(Qt.CursorShape.PointingHandCursor) + self.prevArrow.setAutoRepeat(True) + self.prevArrow.setAutoRepeatDelay(300) + self.prevArrow.setAutoRepeatInterval(100) + self.prevArrow.clicked.connect(self.scroll_left) + self.prevArrow.raise_() + + self.nextArrow = QToolButton(self) + self.nextArrow.setArrowType(Qt.ArrowType.RightArrow) + self.nextArrow.setStyleSheet(self.theme.NEXT_BUTTON_STYLE) # type: ignore + self.nextArrow.setFixedSize(40, 40) + self.nextArrow.setCursor(Qt.CursorShape.PointingHandCursor) + self.nextArrow.setAutoRepeat(True) + self.nextArrow.setAutoRepeatDelay(300) + self.nextArrow.setAutoRepeatInterval(100) + self.nextArrow.clicked.connect(self.scroll_right) + self.nextArrow.raise_() + + # Проверяем видимость стрелок при создании + self.update_arrows_visibility() + + def update_arrows_visibility(self): + """ + Показывает стрелки, если контент шире видимой области. + Иначе скрывает их. + """ + if hasattr(self, "prevArrow") and hasattr(self, "nextArrow"): + if self.horizontalScrollBar().maximum() == 0: + self.prevArrow.hide() + self.nextArrow.hide() + else: + self.prevArrow.show() + self.nextArrow.show() + + def resizeEvent(self, event): + super().resizeEvent(event) + margin = 10 + self.prevArrow.move(margin, (self.height() - self.prevArrow.height()) // 2) + self.nextArrow.move(self.width() - self.nextArrow.width() - margin, + (self.height() - self.nextArrow.height()) // 2) + self.update_arrows_visibility() + + def animate_scroll(self, end_value): + scrollbar = self.horizontalScrollBar() + start_value = scrollbar.value() + animation = QPropertyAnimation(scrollbar, QByteArray(b"value"), self) + animation.setDuration(300) + animation.setStartValue(start_value) + animation.setEndValue(end_value) + animation.setEasingCurve(QEasingCurve.Type.InOutQuad) + self._animation = animation + animation.start() + + def scroll_left(self): + scrollbar = self.horizontalScrollBar() + new_value = scrollbar.value() - 100 + self.animate_scroll(new_value) + + def scroll_right(self): + scrollbar = self.horizontalScrollBar() + new_value = scrollbar.value() + 100 + self.animate_scroll(new_value) + + def update_images(self, new_images): + self.carousel_scene.clear() + self.images = new_images + self.image_items.clear() + self.init_ui() + self.update_arrows_visibility() + + # Обработка событий мыши для перетаскивания + def mousePressEvent(self, event): + if event.button() == Qt.MouseButton.LeftButton: + self._drag_active = True + self._drag_start_position = event.pos() + self._scroll_start_value = self.horizontalScrollBar().value() + # Скрываем стрелки при начале перетаскивания + if hasattr(self, "prevArrow"): + self.prevArrow.hide() + if hasattr(self, "nextArrow"): + self.nextArrow.hide() + super().mousePressEvent(event) + + def mouseMoveEvent(self, event): + if self._drag_active and self._drag_start_position is not None: + delta = event.pos().x() - self._drag_start_position.x() + new_value = self._scroll_start_value - delta + self.horizontalScrollBar().setValue(new_value) + super().mouseMoveEvent(event) + + def mouseReleaseEvent(self, event): + self._drag_active = False + # Показываем стрелки после завершения перетаскивания (с проверкой видимости) + self.update_arrows_visibility() + super().mouseReleaseEvent(event) diff --git a/portprotonqt/input_manager.py b/portprotonqt/input_manager.py new file mode 100644 index 0000000..9370cf0 --- /dev/null +++ b/portprotonqt/input_manager.py @@ -0,0 +1,430 @@ +import time +import threading +from typing import Protocol, cast +from evdev import InputDevice, ecodes, list_devices +import pyudev +from PySide6.QtWidgets import QWidget, QStackedWidget, QApplication, QScrollArea, QLineEdit +from PySide6.QtCore import Qt, QObject, QEvent, QPoint +from PySide6.QtGui import QKeyEvent +from portprotonqt.logger import get_logger +from portprotonqt.image_utils import FullscreenDialog +from portprotonqt.custom_widgets import NavLabel +from portprotonqt.game_card import GameCard +from portprotonqt.config_utils import read_fullscreen_config + +logger = get_logger(__name__) + +class MainWindowProtocol(Protocol): + def activateFocusedWidget(self) -> None: + ... + def goBackDetailPage(self, page: QWidget | None) -> None: + ... + def switchTab(self, index: int) -> None: + ... + def openAddGameDialog(self, exe_path: str | None = None) -> None: + ... + def toggleGame(self, exec_line: str | None, button: QWidget | None = None) -> None: + ... + stackedWidget: QStackedWidget + tabButtons: dict[int, QWidget] + gamesListWidget: QWidget + currentDetailPage: QWidget | None + current_exec_line: str | None + +# Mapping of actions to evdev button codes, includes PlayStation, Xbox, and Switch controllers (https://www.kernel.org/doc/html/v4.12/input/gamepad.html) +BUTTONS = { + # South button: X (PlayStation), A (Xbox), B (Switch Joy-Con south) + 'confirm': {ecodes.BTN_SOUTH, ecodes.BTN_A}, + # East button: Circle (PS), B (Xbox), A (Switch Joy-Con east) + 'back': {ecodes.BTN_EAST, ecodes.BTN_B}, + # North button: Triangle (PS), Y (Xbox), X (Switch Joy-Con north) + 'add_game': {ecodes.BTN_NORTH, ecodes.BTN_Y}, + # Shoulder buttons: L1/L2 (PS), LB (Xbox), L (Switch): BTN_TL, BTN_TL2 + 'prev_tab': {ecodes.BTN_TL, ecodes.BTN_TL2}, + # Shoulder buttons: R1/R2 (PS), RB (Xbox), R (Switch): BTN_TR, BTN_TR2 + 'next_tab': {ecodes.BTN_TR, ecodes.BTN_TR2}, + # Optional: stick presses on Switch Joy-Con + 'confirm_stick': {ecodes.BTN_THUMBL, ecodes.BTN_THUMBR}, + # Start button for context menu + 'context_menu': {ecodes.BTN_START}, + # Select/home for back/menu + 'menu': {ecodes.BTN_SELECT, ecodes.BTN_MODE}, +} + +class InputManager(QObject): + """ + Manages input from gamepads and keyboards for navigating the application interface. + Supports gamepad hotplugging, button and axis events, and keyboard event filtering + for seamless UI interaction. + """ + def __init__( + self, + main_window: MainWindowProtocol, + axis_deadzone: float = 0.5, + initial_axis_move_delay: float = 0.3, + repeat_axis_move_delay: float = 0.15 + ): + super().__init__(cast(QObject, main_window)) + self._parent = main_window + # Ensure attributes exist on main_window + self._parent.currentDetailPage = getattr(self._parent, 'currentDetailPage', None) + self._parent.current_exec_line = getattr(self._parent, 'current_exec_line', None) + + self.axis_deadzone = axis_deadzone + self.initial_axis_move_delay = initial_axis_move_delay + self.repeat_axis_move_delay = repeat_axis_move_delay + self.current_axis_delay = initial_axis_move_delay + self.last_move_time = 0.0 + self.axis_moving = False + self.gamepad: InputDevice | None = None + self.gamepad_thread: threading.Thread | None = None + self.running = True + self._is_fullscreen = read_fullscreen_config() + + # Install keyboard event filter + app = QApplication.instance() + if app is not None: + app.installEventFilter(self) + else: + logger.error("QApplication instance is None, cannot install event filter") + + # Initialize evdev + hotplug + self.init_gamepad() + + def eventFilter(self, obj: QObject, event: QEvent) -> bool: + app = QApplication.instance() + if not app: + return super().eventFilter(obj, event) + + # 1) Интересуют только нажатия клавиш + if not (isinstance(event, QKeyEvent) and event.type() == QEvent.Type.KeyPress): + return super().eventFilter(obj, event) + + key = event.key() + modifiers = event.modifiers() + focused = QApplication.focusWidget() + popup = QApplication.activePopupWidget() + + # 2) Закрытие приложения по Ctrl+Q + if key == Qt.Key.Key_Q and modifiers & Qt.KeyboardModifier.ControlModifier: + app.quit() + return True + + # 3) Если открыт любой popup — не перехватываем ENTER, ESC и стрелки + if popup: + # возвращаем False, чтобы событие пошло дальше в Qt и закрыло popup как нужно + return False + + # 4) Навигация в полноэкранном просмотре + active_win = QApplication.activeWindow() + if isinstance(active_win, FullscreenDialog): + if key == Qt.Key.Key_Right: + active_win.show_next() + return True + if key == Qt.Key.Key_Left: + active_win.show_prev() + return True + if key in (Qt.Key.Key_Escape, Qt.Key.Key_Return, Qt.Key.Key_Enter, Qt.Key.Key_Backspace): + active_win.close() + return True + + # 5) На странице деталей Enter запускает/останавливает игру + if self._parent.currentDetailPage and key in (Qt.Key.Key_Return, Qt.Key.Key_Enter): + if self._parent.current_exec_line: + self._parent.toggleGame(self._parent.current_exec_line, None) + return True + + # 6) Открытие контекстного меню для GameCard + if isinstance(focused, GameCard): + if key == Qt.Key.Key_F10 and Qt.KeyboardModifier.ShiftModifier: + pos = QPoint(focused.width() // 2, focused.height() // 2) + focused._show_context_menu(pos) + return True + + # 7) Навигация по карточкам в Library + if self._parent.stackedWidget.currentIndex() == 0: + game_cards = self._parent.gamesListWidget.findChildren(GameCard) + scroll_area = self._parent.gamesListWidget.parentWidget() + while scroll_area and not isinstance(scroll_area, QScrollArea): + scroll_area = scroll_area.parentWidget() + if not scroll_area: + logger.warning("No QScrollArea found for gamesListWidget") + + if isinstance(focused, GameCard): + current_index = game_cards.index(focused) if focused in game_cards else -1 + if key == Qt.Key.Key_Down: + if current_index >= 0 and current_index + 1 < len(game_cards): + next_card = game_cards[current_index + 1] + next_card.setFocus() + if scroll_area: + scroll_area.ensureWidgetVisible(next_card, 50, 50) + return True + elif key == Qt.Key.Key_Up: + if current_index > 0: + prev_card = game_cards[current_index - 1] + prev_card.setFocus() + if scroll_area: + scroll_area.ensureWidgetVisible(prev_card, 50, 50) + return True + elif current_index == 0: + self._parent.tabButtons[0].setFocus() + return True + elif key == Qt.Key.Key_Left: + if current_index > 0: + prev_card = game_cards[current_index - 1] + prev_card.setFocus() + if scroll_area: + scroll_area.ensureWidgetVisible(prev_card, 50, 50) + return True + elif key == Qt.Key.Key_Right: + if current_index >= 0 and current_index + 1 < len(game_cards): + next_card = game_cards[current_index + 1] + next_card.setFocus() + if scroll_area: + scroll_area.ensureWidgetVisible(next_card, 50, 50) + return True + + # 8) Переключение вкладок ←/→ + idx = self._parent.stackedWidget.currentIndex() + total = len(self._parent.tabButtons) + if key == Qt.Key.Key_Left and not isinstance(focused, GameCard): + new = (idx - 1) % total + self._parent.switchTab(new) + self._parent.tabButtons[new].setFocus() + return True + if key == Qt.Key.Key_Right and not isinstance(focused, GameCard): + new = (idx + 1) % total + self._parent.switchTab(new) + self._parent.tabButtons[new].setFocus() + return True + + # 9) Спуск в содержимое вкладки ↓ + if key == Qt.Key.Key_Down: + if isinstance(focused, NavLabel): + page = self._parent.stackedWidget.currentWidget() + focusables = page.findChildren(QWidget, options=Qt.FindChildOption.FindChildrenRecursively) + focusables = [w for w in focusables if w.focusPolicy() & Qt.FocusPolicy.StrongFocus] + if focusables: + focusables[0].setFocus() + return True + else: + if focused is not None: + focused.focusNextChild() + return True + + # 10) Подъём по содержимому вкладки ↑ + if key == Qt.Key.Key_Up: + if isinstance(focused, NavLabel): + return True # Не даём уйти выше NavLabel + if focused is not None: + focused.focusPreviousChild() + return True + + # 11) Общие: Activate, Back, Add + if key in (Qt.Key.Key_Return, Qt.Key.Key_Enter): + self._parent.activateFocusedWidget() + return True + elif key in (Qt.Key.Key_Escape, Qt.Key.Key_Backspace): + if isinstance(focused, QLineEdit): + return False + self._parent.goBackDetailPage(self._parent.currentDetailPage) + return True + elif key == Qt.Key.Key_E: + if isinstance(focused, QLineEdit): + return False + self._parent.openAddGameDialog() + return True + + # 12) Переключение полноэкранного режима по F11 + if key == Qt.Key.Key_F11: + if read_fullscreen_config(): + return True + window = self._parent + if isinstance(window, QWidget): + if self._is_fullscreen: + window.showNormal() + self._is_fullscreen = False + else: + window.showFullScreen() + self._is_fullscreen = True + return True + + return super().eventFilter(obj, event) + + def init_gamepad(self) -> None: + self.check_gamepad() + threading.Thread(target=self.run_udev_monitor, daemon=True).start() + logger.info("Input support initialized with hotplug (evdev + pyudev)") + + def run_udev_monitor(self) -> None: + context = pyudev.Context() + monitor = pyudev.Monitor.from_netlink(context) + monitor.filter_by(subsystem='input') + observer = pyudev.MonitorObserver(monitor, self.handle_udev_event) + observer.start() + while self.running: + time.sleep(1) + + def handle_udev_event(self, action: str, device: pyudev.Device) -> None: + if action == 'add': + time.sleep(0.1) + self.check_gamepad() + elif action == 'remove' and self.gamepad: + if not any(self.gamepad.path == path for path in list_devices()): + logger.info("Gamepad disconnected") + self.gamepad = None + if self.gamepad_thread: + self.gamepad_thread.join() + + def check_gamepad(self) -> None: + new_gamepad = self.find_gamepad() + if new_gamepad and new_gamepad != self.gamepad: + logger.info(f"Gamepad connected: {new_gamepad.name}") + self.gamepad = new_gamepad + if self.gamepad_thread: + self.gamepad_thread.join() + self.gamepad_thread = threading.Thread(target=self.monitor_gamepad, daemon=True) + self.gamepad_thread.start() + + def find_gamepad(self) -> InputDevice | None: + devices = [InputDevice(path) for path in list_devices()] + for device in devices: + caps = device.capabilities() + if ecodes.EV_KEY in caps or ecodes.EV_ABS in caps: + return device + return None + + def monitor_gamepad(self) -> None: + try: + if not self.gamepad: + return + for event in self.gamepad.read_loop(): + if not self.running: + break + if event.type not in (ecodes.EV_KEY, ecodes.EV_ABS): + continue + now = time.time() + if event.type == ecodes.EV_KEY and event.value == 1: + self.handle_button(event.code) + elif event.type == ecodes.EV_ABS: + self.handle_dpad(event.code, event.value, now) + except Exception as e: + logger.error(f"Error accessing gamepad: {e}") + + def handle_button(self, button_code: int) -> None: + app = QApplication.instance() + if app is None: + logger.error("QApplication instance is None") + return + active = QApplication.activeWindow() + focused = QApplication.focusWidget() + + # FullscreenDialog + if isinstance(active, FullscreenDialog): + if button_code in BUTTONS['prev_tab']: + active.show_prev() + elif button_code in BUTTONS['next_tab']: + active.show_next() + elif button_code in BUTTONS['back']: + active.close() + return + + # Context menu for GameCard + if isinstance(focused, GameCard): + if button_code in BUTTONS['context_menu']: + pos = QPoint(focused.width() // 2, focused.height() // 2) + focused._show_context_menu(pos) + return + + # Game launch on detail page + if (button_code in BUTTONS['confirm'] or button_code in BUTTONS['confirm_stick']) and self._parent.currentDetailPage is not None: + if self._parent.current_exec_line: + self._parent.toggleGame(self._parent.current_exec_line, None) + return + + # Standard navigation + if button_code in BUTTONS['confirm'] or button_code in BUTTONS['confirm_stick']: + self._parent.activateFocusedWidget() + elif button_code in BUTTONS['back'] or button_code in BUTTONS['menu']: + self._parent.goBackDetailPage(getattr(self._parent, 'currentDetailPage', None)) + elif button_code in BUTTONS['add_game']: + self._parent.openAddGameDialog() + elif button_code in BUTTONS['prev_tab']: + idx = (self._parent.stackedWidget.currentIndex() - 1) % len(self._parent.tabButtons) + self._parent.switchTab(idx) + self._parent.tabButtons[idx].setFocus(Qt.FocusReason.OtherFocusReason) + elif button_code in BUTTONS['next_tab']: + idx = (self._parent.stackedWidget.currentIndex() + 1) % len(self._parent.tabButtons) + self._parent.switchTab(idx) + self._parent.tabButtons[idx].setFocus(Qt.FocusReason.OtherFocusReason) + + def handle_dpad(self, code: int, value: int, current_time: float) -> None: + app = QApplication.instance() + if app is None: + logger.error("QApplication instance is None") + return + active = QApplication.activeWindow() + + # Fullscreen horizontal + if isinstance(active, FullscreenDialog) and code == ecodes.ABS_HAT0X: + if value < 0: + active.show_prev() + elif value > 0: + active.show_next() + return + + # Vertical navigation (DPAD up/down) + if code == ecodes.ABS_HAT0Y: + # ignore release + if value == 0: + return + focused = QApplication.focusWidget() + page = self._parent.stackedWidget.currentWidget() + if value > 0: + # down + if isinstance(focused, NavLabel): + focusables = page.findChildren(QWidget, options=Qt.FindChildOption.FindChildrenRecursively) + focusables = [w for w in focusables if w.focusPolicy() & Qt.FocusPolicy.StrongFocus] + if focusables: + focusables[0].setFocus() + return + elif focused: + focused.focusNextChild() + return + elif value < 0 and focused: + # up + focused.focusPreviousChild() + return + + # Horizontal wrap navigation repeat logic + if code != ecodes.ABS_HAT0X: + return + if value == 0: + self.axis_moving = False + self.current_axis_delay = self.initial_axis_move_delay + return + if not self.axis_moving: + self.trigger_dpad_movement(code, value) + self.last_move_time = current_time + self.axis_moving = True + elif current_time - self.last_move_time >= self.current_axis_delay: + self.trigger_dpad_movement(code, value) + self.last_move_time = current_time + self.current_axis_delay = self.repeat_axis_move_delay + + def trigger_dpad_movement(self, code: int, value: int) -> None: + if code != ecodes.ABS_HAT0X: + return + idx = self._parent.stackedWidget.currentIndex() + if value < 0: + new = (idx - 1) % len(self._parent.tabButtons) + else: + new = (idx + 1) % len(self._parent.tabButtons) + self._parent.switchTab(new) + self._parent.tabButtons[new].setFocus(Qt.FocusReason.OtherFocusReason) + + def cleanup(self) -> None: + self.running = False + if self.gamepad: + self.gamepad.close() + logger.info("Input support cleaned up") diff --git a/portprotonqt/locales/de_DE/LC_MESSAGES/messages.mo b/portprotonqt/locales/de_DE/LC_MESSAGES/messages.mo new file mode 100644 index 0000000..506dbfb Binary files /dev/null and b/portprotonqt/locales/de_DE/LC_MESSAGES/messages.mo differ diff --git a/portprotonqt/locales/de_DE/LC_MESSAGES/messages.po b/portprotonqt/locales/de_DE/LC_MESSAGES/messages.po new file mode 100644 index 0000000..a0c3c4a --- /dev/null +++ b/portprotonqt/locales/de_DE/LC_MESSAGES/messages.po @@ -0,0 +1,516 @@ +# German (Germany) translations for PortProtonQT. +# Copyright (C) 2025 boria138 +# This file is distributed under the same license as the PortProtonQT +# project. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2025-05-29 17:42+0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: de_DE\n" +"Language-Team: de_DE \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.17.0\n" + +msgid "Remove from Desktop" +msgstr "" + +msgid "Add to Desktop" +msgstr "" + +msgid "Edit Shortcut" +msgstr "" + +msgid "Delete from PortProton" +msgstr "" + +msgid "Open Game Folder" +msgstr "" + +msgid "Remove from Menu" +msgstr "" + +msgid "Add to Menu" +msgstr "" + +msgid "Remove from Steam" +msgstr "" + +msgid "Add to Steam" +msgstr "" + +msgid "Error" +msgstr "" + +msgid "PortProton is not found." +msgstr "" + +#, python-brace-format +msgid "No executable command found in .desktop for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to parse .desktop file for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Error reading .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid ".desktop file not found for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Invalid executable command: {0}" +msgstr "" + +#, python-brace-format +msgid "Executable file not found: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to parse executable command: {0}" +msgstr "" + +msgid "Confirm Deletion" +msgstr "" + +#, python-brace-format +msgid "" +"Are you sure you want to delete '{0}'? This will remove the .desktop file" +" and custom data." +msgstr "" + +#, python-brace-format +msgid "Could not locate .desktop file for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to delete .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' deleted successfully" +msgstr "" + +#, python-brace-format +msgid "Failed to delete custom data: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' added to menu" +msgstr "" + +#, python-brace-format +msgid "Failed to add game to menu: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to remove game from menu: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' removed from menu" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' added to desktop" +msgstr "" + +#, python-brace-format +msgid "Failed to add game to desktop: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to remove game from Desktop: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' removed from Desktop" +msgstr "" + +msgid "Game name and executable path are required." +msgstr "" + +msgid "Failed to generate .desktop file data." +msgstr "" + +#, python-brace-format +msgid "Failed to remove old .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Old .desktop file removed for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to save .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to copy cover image: {0}" +msgstr "" + +msgid "Restart Steam" +msgstr "" + +msgid "" +"The game was added successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" + +msgid "" +"The game was removed successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" + +#, python-brace-format +msgid "Opened folder for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to open game folder: {0}" +msgstr "" + +msgid "Edit Game" +msgstr "" + +msgid "Add Game" +msgstr "" + +msgid "Game Name:" +msgstr "" + +msgid "Browse..." +msgstr "" + +msgid "Path to Executable:" +msgstr "" + +msgid "Custom Cover:" +msgstr "" + +msgid "Cover Preview:" +msgstr "" + +msgid "Select Executable" +msgstr "" + +msgid "Select Cover Image" +msgstr "" + +msgid "Invalid image" +msgstr "" + +msgid "No cover selected" +msgstr "" + +#, python-brace-format +msgid "Launch game \"{name}\" with PortProton" +msgstr "" + +msgid "Loading Epic Games Store games..." +msgstr "" + +msgid "No description available" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Supported" +msgstr "" + +msgid "Running" +msgstr "" + +msgid "Planned" +msgstr "" + +msgid "Broken" +msgstr "" + +msgid "Denied" +msgstr "" + +msgid "Platinum" +msgstr "" + +msgid "Gold" +msgstr "" + +msgid "Silver" +msgstr "" + +msgid "Bronze" +msgstr "" + +msgid "Pending" +msgstr "" + +msgid "Library" +msgstr "" + +msgid "Auto Install" +msgstr "" + +msgid "Emulators" +msgstr "" + +msgid "Wine Settings" +msgstr "" + +msgid "PortProton Settings" +msgstr "" + +msgid "Themes" +msgstr "" + +msgid "Loading Steam games..." +msgstr "" + +msgid "Loading PortProton games..." +msgstr "" + +msgid "Unknown Game" +msgstr "" + +msgid "Game Library" +msgstr "" + +msgid "Find Games ..." +msgstr "" + +msgid "Here you can configure automatic game installation..." +msgstr "" + +msgid "List of available emulators and their configuration..." +msgstr "" + +msgid "Various Wine parameters and versions..." +msgstr "" + +msgid "Main PortProton parameters..." +msgstr "" + +msgid "detailed" +msgstr "" + +msgid "brief" +msgstr "" + +msgid "Time Detail Level:" +msgstr "" + +msgid "last launch" +msgstr "" + +msgid "playtime" +msgstr "" + +msgid "alphabetical" +msgstr "" + +msgid "favorites" +msgstr "" + +msgid "Games Sort Method:" +msgstr "" + +msgid "all" +msgstr "" + +msgid "Games Display Filter:" +msgstr "" + +msgid "Proxy URL" +msgstr "" + +msgid "Proxy URL:" +msgstr "" + +msgid "Proxy Username" +msgstr "" + +msgid "Proxy Username:" +msgstr "" + +msgid "Proxy Password" +msgstr "" + +msgid "Proxy Password:" +msgstr "" + +msgid "Launch Application in Fullscreen" +msgstr "" + +msgid "Application Fullscreen Mode:" +msgstr "" + +msgid "Open Legendary Login" +msgstr "" + +msgid "Legendary Authentication:" +msgstr "" + +msgid "Enter Legendary Authorization Code" +msgstr "" + +msgid "Authorization Code:" +msgstr "" + +msgid "Submit Code" +msgstr "" + +msgid "Save Settings" +msgstr "" + +msgid "Reset Settings" +msgstr "" + +msgid "Clear Cache" +msgstr "" + +msgid "Opened Legendary login page in browser" +msgstr "" + +msgid "Failed to open Legendary login page" +msgstr "" + +msgid "Please enter an authorization code" +msgstr "" + +msgid "Successfully authenticated with Legendary" +msgstr "" + +#, python-brace-format +msgid "Legendary authentication failed: {0}" +msgstr "" + +msgid "Legendary executable not found" +msgstr "" + +msgid "Unexpected error during authentication" +msgstr "" + +msgid "Confirm Reset" +msgstr "" + +msgid "Are you sure you want to reset all settings? This action cannot be undone." +msgstr "" + +msgid "Settings reset. Restarting..." +msgstr "" + +msgid "Confirm Clear Cache" +msgstr "" + +msgid "Are you sure you want to clear the cache? This action cannot be undone." +msgstr "" + +msgid "Cache cleared" +msgstr "" + +msgid "Settings saved" +msgstr "" + +msgid "Select Theme:" +msgstr "" + +msgid "Apply Theme" +msgstr "" + +msgid "No link" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Name:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Author:" +msgstr "" + +msgid "Link:" +msgstr "" + +#, python-brace-format +msgid "Theme '{0}' applied successfully" +msgstr "" + +#, python-brace-format +msgid "Error applying theme '{0}'" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "LAST LAUNCH" +msgstr "" + +msgid "PLAY TIME" +msgstr "" + +msgid "full" +msgstr "" + +msgid "partial" +msgstr "" + +msgid "none" +msgstr "" + +#, python-brace-format +msgid "Gamepad Support: {0}" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Invalid command format (native)" +msgstr "" + +msgid "Invalid command format (flatpak)" +msgstr "" + +#, python-brace-format +msgid "File not found: {0}" +msgstr "" + +msgid "Cannot launch game while another game is running" +msgstr "" + +msgid "Launching" +msgstr "" + +msgid "just now" +msgstr "" + +msgid "d." +msgstr "" + +msgid "h." +msgstr "" + +msgid "min." +msgstr "" + +msgid "sec." +msgstr "" + diff --git a/portprotonqt/locales/es_ES/LC_MESSAGES/messages.mo b/portprotonqt/locales/es_ES/LC_MESSAGES/messages.mo new file mode 100644 index 0000000..ab19c0d Binary files /dev/null and b/portprotonqt/locales/es_ES/LC_MESSAGES/messages.mo differ diff --git a/portprotonqt/locales/es_ES/LC_MESSAGES/messages.po b/portprotonqt/locales/es_ES/LC_MESSAGES/messages.po new file mode 100644 index 0000000..9aae70b --- /dev/null +++ b/portprotonqt/locales/es_ES/LC_MESSAGES/messages.po @@ -0,0 +1,516 @@ +# Spanish (Spain) translations for PortProtonQT. +# Copyright (C) 2025 boria138 +# This file is distributed under the same license as the PortProtonQT +# project. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2025-05-29 17:42+0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: es_ES\n" +"Language-Team: es_ES \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.17.0\n" + +msgid "Remove from Desktop" +msgstr "" + +msgid "Add to Desktop" +msgstr "" + +msgid "Edit Shortcut" +msgstr "" + +msgid "Delete from PortProton" +msgstr "" + +msgid "Open Game Folder" +msgstr "" + +msgid "Remove from Menu" +msgstr "" + +msgid "Add to Menu" +msgstr "" + +msgid "Remove from Steam" +msgstr "" + +msgid "Add to Steam" +msgstr "" + +msgid "Error" +msgstr "" + +msgid "PortProton is not found." +msgstr "" + +#, python-brace-format +msgid "No executable command found in .desktop for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to parse .desktop file for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Error reading .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid ".desktop file not found for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Invalid executable command: {0}" +msgstr "" + +#, python-brace-format +msgid "Executable file not found: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to parse executable command: {0}" +msgstr "" + +msgid "Confirm Deletion" +msgstr "" + +#, python-brace-format +msgid "" +"Are you sure you want to delete '{0}'? This will remove the .desktop file" +" and custom data." +msgstr "" + +#, python-brace-format +msgid "Could not locate .desktop file for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to delete .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' deleted successfully" +msgstr "" + +#, python-brace-format +msgid "Failed to delete custom data: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' added to menu" +msgstr "" + +#, python-brace-format +msgid "Failed to add game to menu: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to remove game from menu: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' removed from menu" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' added to desktop" +msgstr "" + +#, python-brace-format +msgid "Failed to add game to desktop: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to remove game from Desktop: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' removed from Desktop" +msgstr "" + +msgid "Game name and executable path are required." +msgstr "" + +msgid "Failed to generate .desktop file data." +msgstr "" + +#, python-brace-format +msgid "Failed to remove old .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Old .desktop file removed for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to save .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to copy cover image: {0}" +msgstr "" + +msgid "Restart Steam" +msgstr "" + +msgid "" +"The game was added successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" + +msgid "" +"The game was removed successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" + +#, python-brace-format +msgid "Opened folder for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to open game folder: {0}" +msgstr "" + +msgid "Edit Game" +msgstr "" + +msgid "Add Game" +msgstr "" + +msgid "Game Name:" +msgstr "" + +msgid "Browse..." +msgstr "" + +msgid "Path to Executable:" +msgstr "" + +msgid "Custom Cover:" +msgstr "" + +msgid "Cover Preview:" +msgstr "" + +msgid "Select Executable" +msgstr "" + +msgid "Select Cover Image" +msgstr "" + +msgid "Invalid image" +msgstr "" + +msgid "No cover selected" +msgstr "" + +#, python-brace-format +msgid "Launch game \"{name}\" with PortProton" +msgstr "" + +msgid "Loading Epic Games Store games..." +msgstr "" + +msgid "No description available" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Supported" +msgstr "" + +msgid "Running" +msgstr "" + +msgid "Planned" +msgstr "" + +msgid "Broken" +msgstr "" + +msgid "Denied" +msgstr "" + +msgid "Platinum" +msgstr "" + +msgid "Gold" +msgstr "" + +msgid "Silver" +msgstr "" + +msgid "Bronze" +msgstr "" + +msgid "Pending" +msgstr "" + +msgid "Library" +msgstr "" + +msgid "Auto Install" +msgstr "" + +msgid "Emulators" +msgstr "" + +msgid "Wine Settings" +msgstr "" + +msgid "PortProton Settings" +msgstr "" + +msgid "Themes" +msgstr "" + +msgid "Loading Steam games..." +msgstr "" + +msgid "Loading PortProton games..." +msgstr "" + +msgid "Unknown Game" +msgstr "" + +msgid "Game Library" +msgstr "" + +msgid "Find Games ..." +msgstr "" + +msgid "Here you can configure automatic game installation..." +msgstr "" + +msgid "List of available emulators and their configuration..." +msgstr "" + +msgid "Various Wine parameters and versions..." +msgstr "" + +msgid "Main PortProton parameters..." +msgstr "" + +msgid "detailed" +msgstr "" + +msgid "brief" +msgstr "" + +msgid "Time Detail Level:" +msgstr "" + +msgid "last launch" +msgstr "" + +msgid "playtime" +msgstr "" + +msgid "alphabetical" +msgstr "" + +msgid "favorites" +msgstr "" + +msgid "Games Sort Method:" +msgstr "" + +msgid "all" +msgstr "" + +msgid "Games Display Filter:" +msgstr "" + +msgid "Proxy URL" +msgstr "" + +msgid "Proxy URL:" +msgstr "" + +msgid "Proxy Username" +msgstr "" + +msgid "Proxy Username:" +msgstr "" + +msgid "Proxy Password" +msgstr "" + +msgid "Proxy Password:" +msgstr "" + +msgid "Launch Application in Fullscreen" +msgstr "" + +msgid "Application Fullscreen Mode:" +msgstr "" + +msgid "Open Legendary Login" +msgstr "" + +msgid "Legendary Authentication:" +msgstr "" + +msgid "Enter Legendary Authorization Code" +msgstr "" + +msgid "Authorization Code:" +msgstr "" + +msgid "Submit Code" +msgstr "" + +msgid "Save Settings" +msgstr "" + +msgid "Reset Settings" +msgstr "" + +msgid "Clear Cache" +msgstr "" + +msgid "Opened Legendary login page in browser" +msgstr "" + +msgid "Failed to open Legendary login page" +msgstr "" + +msgid "Please enter an authorization code" +msgstr "" + +msgid "Successfully authenticated with Legendary" +msgstr "" + +#, python-brace-format +msgid "Legendary authentication failed: {0}" +msgstr "" + +msgid "Legendary executable not found" +msgstr "" + +msgid "Unexpected error during authentication" +msgstr "" + +msgid "Confirm Reset" +msgstr "" + +msgid "Are you sure you want to reset all settings? This action cannot be undone." +msgstr "" + +msgid "Settings reset. Restarting..." +msgstr "" + +msgid "Confirm Clear Cache" +msgstr "" + +msgid "Are you sure you want to clear the cache? This action cannot be undone." +msgstr "" + +msgid "Cache cleared" +msgstr "" + +msgid "Settings saved" +msgstr "" + +msgid "Select Theme:" +msgstr "" + +msgid "Apply Theme" +msgstr "" + +msgid "No link" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Name:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Author:" +msgstr "" + +msgid "Link:" +msgstr "" + +#, python-brace-format +msgid "Theme '{0}' applied successfully" +msgstr "" + +#, python-brace-format +msgid "Error applying theme '{0}'" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "LAST LAUNCH" +msgstr "" + +msgid "PLAY TIME" +msgstr "" + +msgid "full" +msgstr "" + +msgid "partial" +msgstr "" + +msgid "none" +msgstr "" + +#, python-brace-format +msgid "Gamepad Support: {0}" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Invalid command format (native)" +msgstr "" + +msgid "Invalid command format (flatpak)" +msgstr "" + +#, python-brace-format +msgid "File not found: {0}" +msgstr "" + +msgid "Cannot launch game while another game is running" +msgstr "" + +msgid "Launching" +msgstr "" + +msgid "just now" +msgstr "" + +msgid "d." +msgstr "" + +msgid "h." +msgstr "" + +msgid "min." +msgstr "" + +msgid "sec." +msgstr "" + diff --git a/portprotonqt/locales/messages.pot b/portprotonqt/locales/messages.pot new file mode 100644 index 0000000..e6ad72c --- /dev/null +++ b/portprotonqt/locales/messages.pot @@ -0,0 +1,514 @@ +# Translations template for PortProtonQT. +# Copyright (C) 2025 boria138 +# This file is distributed under the same license as the PortProtonQT +# project. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PortProtonQT 0.1.1\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2025-05-29 17:42+0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.17.0\n" + +msgid "Remove from Desktop" +msgstr "" + +msgid "Add to Desktop" +msgstr "" + +msgid "Edit Shortcut" +msgstr "" + +msgid "Delete from PortProton" +msgstr "" + +msgid "Open Game Folder" +msgstr "" + +msgid "Remove from Menu" +msgstr "" + +msgid "Add to Menu" +msgstr "" + +msgid "Remove from Steam" +msgstr "" + +msgid "Add to Steam" +msgstr "" + +msgid "Error" +msgstr "" + +msgid "PortProton is not found." +msgstr "" + +#, python-brace-format +msgid "No executable command found in .desktop for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to parse .desktop file for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Error reading .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid ".desktop file not found for game: {0}" +msgstr "" + +#, python-brace-format +msgid "Invalid executable command: {0}" +msgstr "" + +#, python-brace-format +msgid "Executable file not found: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to parse executable command: {0}" +msgstr "" + +msgid "Confirm Deletion" +msgstr "" + +#, python-brace-format +msgid "" +"Are you sure you want to delete '{0}'? This will remove the .desktop file" +" and custom data." +msgstr "" + +#, python-brace-format +msgid "Could not locate .desktop file for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to delete .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' deleted successfully" +msgstr "" + +#, python-brace-format +msgid "Failed to delete custom data: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' added to menu" +msgstr "" + +#, python-brace-format +msgid "Failed to add game to menu: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to remove game from menu: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' removed from menu" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' added to desktop" +msgstr "" + +#, python-brace-format +msgid "Failed to add game to desktop: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to remove game from Desktop: {0}" +msgstr "" + +#, python-brace-format +msgid "Game '{0}' removed from Desktop" +msgstr "" + +msgid "Game name and executable path are required." +msgstr "" + +msgid "Failed to generate .desktop file data." +msgstr "" + +#, python-brace-format +msgid "Failed to remove old .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Old .desktop file removed for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to save .desktop file: {0}" +msgstr "" + +#, python-brace-format +msgid "Failed to copy cover image: {0}" +msgstr "" + +msgid "Restart Steam" +msgstr "" + +msgid "" +"The game was added successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" + +msgid "" +"The game was removed successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" + +#, python-brace-format +msgid "Opened folder for '{0}'" +msgstr "" + +#, python-brace-format +msgid "Failed to open game folder: {0}" +msgstr "" + +msgid "Edit Game" +msgstr "" + +msgid "Add Game" +msgstr "" + +msgid "Game Name:" +msgstr "" + +msgid "Browse..." +msgstr "" + +msgid "Path to Executable:" +msgstr "" + +msgid "Custom Cover:" +msgstr "" + +msgid "Cover Preview:" +msgstr "" + +msgid "Select Executable" +msgstr "" + +msgid "Select Cover Image" +msgstr "" + +msgid "Invalid image" +msgstr "" + +msgid "No cover selected" +msgstr "" + +#, python-brace-format +msgid "Launch game \"{name}\" with PortProton" +msgstr "" + +msgid "Loading Epic Games Store games..." +msgstr "" + +msgid "No description available" +msgstr "" + +msgid "Never" +msgstr "" + +msgid "Supported" +msgstr "" + +msgid "Running" +msgstr "" + +msgid "Planned" +msgstr "" + +msgid "Broken" +msgstr "" + +msgid "Denied" +msgstr "" + +msgid "Platinum" +msgstr "" + +msgid "Gold" +msgstr "" + +msgid "Silver" +msgstr "" + +msgid "Bronze" +msgstr "" + +msgid "Pending" +msgstr "" + +msgid "Library" +msgstr "" + +msgid "Auto Install" +msgstr "" + +msgid "Emulators" +msgstr "" + +msgid "Wine Settings" +msgstr "" + +msgid "PortProton Settings" +msgstr "" + +msgid "Themes" +msgstr "" + +msgid "Loading Steam games..." +msgstr "" + +msgid "Loading PortProton games..." +msgstr "" + +msgid "Unknown Game" +msgstr "" + +msgid "Game Library" +msgstr "" + +msgid "Find Games ..." +msgstr "" + +msgid "Here you can configure automatic game installation..." +msgstr "" + +msgid "List of available emulators and their configuration..." +msgstr "" + +msgid "Various Wine parameters and versions..." +msgstr "" + +msgid "Main PortProton parameters..." +msgstr "" + +msgid "detailed" +msgstr "" + +msgid "brief" +msgstr "" + +msgid "Time Detail Level:" +msgstr "" + +msgid "last launch" +msgstr "" + +msgid "playtime" +msgstr "" + +msgid "alphabetical" +msgstr "" + +msgid "favorites" +msgstr "" + +msgid "Games Sort Method:" +msgstr "" + +msgid "all" +msgstr "" + +msgid "Games Display Filter:" +msgstr "" + +msgid "Proxy URL" +msgstr "" + +msgid "Proxy URL:" +msgstr "" + +msgid "Proxy Username" +msgstr "" + +msgid "Proxy Username:" +msgstr "" + +msgid "Proxy Password" +msgstr "" + +msgid "Proxy Password:" +msgstr "" + +msgid "Launch Application in Fullscreen" +msgstr "" + +msgid "Application Fullscreen Mode:" +msgstr "" + +msgid "Open Legendary Login" +msgstr "" + +msgid "Legendary Authentication:" +msgstr "" + +msgid "Enter Legendary Authorization Code" +msgstr "" + +msgid "Authorization Code:" +msgstr "" + +msgid "Submit Code" +msgstr "" + +msgid "Save Settings" +msgstr "" + +msgid "Reset Settings" +msgstr "" + +msgid "Clear Cache" +msgstr "" + +msgid "Opened Legendary login page in browser" +msgstr "" + +msgid "Failed to open Legendary login page" +msgstr "" + +msgid "Please enter an authorization code" +msgstr "" + +msgid "Successfully authenticated with Legendary" +msgstr "" + +#, python-brace-format +msgid "Legendary authentication failed: {0}" +msgstr "" + +msgid "Legendary executable not found" +msgstr "" + +msgid "Unexpected error during authentication" +msgstr "" + +msgid "Confirm Reset" +msgstr "" + +msgid "Are you sure you want to reset all settings? This action cannot be undone." +msgstr "" + +msgid "Settings reset. Restarting..." +msgstr "" + +msgid "Confirm Clear Cache" +msgstr "" + +msgid "Are you sure you want to clear the cache? This action cannot be undone." +msgstr "" + +msgid "Cache cleared" +msgstr "" + +msgid "Settings saved" +msgstr "" + +msgid "Select Theme:" +msgstr "" + +msgid "Apply Theme" +msgstr "" + +msgid "No link" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Name:" +msgstr "" + +msgid "Description:" +msgstr "" + +msgid "Author:" +msgstr "" + +msgid "Link:" +msgstr "" + +#, python-brace-format +msgid "Theme '{0}' applied successfully" +msgstr "" + +#, python-brace-format +msgid "Error applying theme '{0}'" +msgstr "" + +msgid "Back" +msgstr "" + +msgid "LAST LAUNCH" +msgstr "" + +msgid "PLAY TIME" +msgstr "" + +msgid "full" +msgstr "" + +msgid "partial" +msgstr "" + +msgid "none" +msgstr "" + +#, python-brace-format +msgid "Gamepad Support: {0}" +msgstr "" + +msgid "Stop" +msgstr "" + +msgid "Play" +msgstr "" + +msgid "Invalid command format (native)" +msgstr "" + +msgid "Invalid command format (flatpak)" +msgstr "" + +#, python-brace-format +msgid "File not found: {0}" +msgstr "" + +msgid "Cannot launch game while another game is running" +msgstr "" + +msgid "Launching" +msgstr "" + +msgid "just now" +msgstr "" + +msgid "d." +msgstr "" + +msgid "h." +msgstr "" + +msgid "min." +msgstr "" + +msgid "sec." +msgstr "" + diff --git a/portprotonqt/locales/ru_RU/LC_MESSAGES/messages.mo b/portprotonqt/locales/ru_RU/LC_MESSAGES/messages.mo new file mode 100644 index 0000000..e9bb9ef Binary files /dev/null and b/portprotonqt/locales/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/portprotonqt/locales/ru_RU/LC_MESSAGES/messages.po b/portprotonqt/locales/ru_RU/LC_MESSAGES/messages.po new file mode 100644 index 0000000..9877661 --- /dev/null +++ b/portprotonqt/locales/ru_RU/LC_MESSAGES/messages.po @@ -0,0 +1,525 @@ +# Russian (Russia) translations for PortProtonQT. +# Copyright (C) 2025 boria138 +# This file is distributed under the same license as the PortProtonQT +# project. +# FIRST AUTHOR , 2025. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2025-05-29 17:42+0500\n" +"PO-Revision-Date: 2025-05-29 17:42+0500\n" +"Last-Translator: \n" +"Language: ru_RU\n" +"Language-Team: ru_RU \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.17.0\n" + +msgid "Remove from Desktop" +msgstr "Удалить с рабочего стола" + +msgid "Add to Desktop" +msgstr "Добавить на рабочий стол" + +msgid "Edit Shortcut" +msgstr "Редактировать" + +msgid "Delete from PortProton" +msgstr "Удалить из PortProton" + +msgid "Open Game Folder" +msgstr "Открыть папку с игрой" + +msgid "Remove from Menu" +msgstr "Удалить из меню" + +msgid "Add to Menu" +msgstr "Добавить в меню" + +msgid "Remove from Steam" +msgstr "Удалить из Steam" + +msgid "Add to Steam" +msgstr "Добавить в Steam" + +msgid "Error" +msgstr "Ошибка" + +msgid "PortProton is not found." +msgstr "PortProton не найден." + +#, python-brace-format +msgid "No executable command found in .desktop for game: {0}" +msgstr "Не найдено ни одной исполняемой команды для игры: {0}" + +#, python-brace-format +msgid "Failed to parse .desktop file for game: {0}" +msgstr "Не удалось удалить файл .desktop: {0}" + +#, python-brace-format +msgid "Error reading .desktop file: {0}" +msgstr "Не удалось удалить файл .desktop: {0}" + +#, python-brace-format +msgid ".desktop file not found for game: {0}" +msgstr "Файл не найден: {0}" + +#, python-brace-format +msgid "Invalid executable command: {0}" +msgstr "Недопустимая исполняемая команда: {0}" + +#, python-brace-format +msgid "Executable file not found: {0}" +msgstr "Файл не найден: {0}" + +#, python-brace-format +msgid "Failed to parse executable command: {0}" +msgstr "Не удалось удалить игру из меню: {0}" + +msgid "Confirm Deletion" +msgstr "Подтвердите удаление" + +#, python-brace-format +msgid "" +"Are you sure you want to delete '{0}'? This will remove the .desktop file" +" and custom data." +msgstr "" +"Вы уверены, что хотите удалить '{0}'? Это приведет к удалению файла " +".desktop и настраиваемых данных." + +#, python-brace-format +msgid "Could not locate .desktop file for '{0}'" +msgstr "Не удалось найти файл .desktop для '{0}'" + +#, python-brace-format +msgid "Failed to delete .desktop file: {0}" +msgstr "Не удалось удалить файл .desktop: {0}" + +#, python-brace-format +msgid "Game '{0}' deleted successfully" +msgstr "Игра '{0}' успешно удалена" + +#, python-brace-format +msgid "Failed to delete custom data: {0}" +msgstr "Не удалось удалить настраиваемые данные: {0}" + +#, python-brace-format +msgid "Game '{0}' added to menu" +msgstr "Игра '{0}' добавлена в меню" + +#, python-brace-format +msgid "Failed to add game to menu: {0}" +msgstr "Не удалось добавить игру в меню: {0}" + +#, python-brace-format +msgid "Failed to remove game from menu: {0}" +msgstr "Не удалось удалить игру из меню: {0}" + +#, python-brace-format +msgid "Game '{0}' removed from menu" +msgstr "Игра '{0}' удалена из меню" + +#, python-brace-format +msgid "Game '{0}' added to desktop" +msgstr "Игра '{0}' добавлена на рабочий стол" + +#, python-brace-format +msgid "Failed to add game to desktop: {0}" +msgstr "Не удалось добавить игру на рабочий стол: {0}" + +#, python-brace-format +msgid "Failed to remove game from Desktop: {0}" +msgstr "Не удалось удалить игру с рабочего стола: {0}" + +#, python-brace-format +msgid "Game '{0}' removed from Desktop" +msgstr "Игра '{0}' удалена с рабочего стола" + +msgid "Game name and executable path are required." +msgstr "Необходимо указать название игры и путь к исполняемому файлу." + +msgid "Failed to generate .desktop file data." +msgstr "Не удалось сгенерировать данные файла .desktop." + +#, python-brace-format +msgid "Failed to remove old .desktop file: {0}" +msgstr "Не удалось удалить файл .desktop: {0}" + +#, python-brace-format +msgid "Old .desktop file removed for '{0}'" +msgstr "Старый файл .desktop удален для '{0}'" + +#, python-brace-format +msgid "Failed to save .desktop file: {0}" +msgstr "Не удалось удалить файл .desktop: {0}" + +#, python-brace-format +msgid "Failed to copy cover image: {0}" +msgstr "Не удалось удалить игру из меню: {0}" + +msgid "Restart Steam" +msgstr "Перезапустите Steam" + +msgid "" +"The game was added successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" +"Игра была успешно добавлена.\n" +"Пожалуйста, перезапустите Steam, чтобы изменения вступили в силу." + +msgid "" +"The game was removed successfully.\n" +"Please restart Steam for changes to take effect." +msgstr "" +"Игра была успешно удалена..\n" +"Пожалуйста, перезапустите Steam, чтобы изменения вступили в силу." + +#, python-brace-format +msgid "Opened folder for '{0}'" +msgstr "Открытие папки для '{0}'" + +#, python-brace-format +msgid "Failed to open game folder: {0}" +msgstr "Не удалось открыть папку для игры: {0}" + +msgid "Edit Game" +msgstr "Редактировать игру" + +msgid "Add Game" +msgstr "Добавить игру" + +msgid "Game Name:" +msgstr "Имя игры:" + +msgid "Browse..." +msgstr "Обзор..." + +msgid "Path to Executable:" +msgstr "Путь к исполняемому файлу:" + +msgid "Custom Cover:" +msgstr "Обложка:" + +msgid "Cover Preview:" +msgstr "Предпросмотр обложки:" + +msgid "Select Executable" +msgstr "Выберите исполняемый файл" + +msgid "Select Cover Image" +msgstr "Выберите обложку" + +msgid "Invalid image" +msgstr "Недопустимое изображение" + +msgid "No cover selected" +msgstr "Обложка не выбрана" + +#, python-brace-format +msgid "Launch game \"{name}\" with PortProton" +msgstr "Запустить игру \"{name}\" с помощью PortProton" + +msgid "Loading Epic Games Store games..." +msgstr "Загрузка игр из Epic Games Store..." + +msgid "No description available" +msgstr "Описание не найдено" + +msgid "Never" +msgstr "Никогда" + +msgid "Supported" +msgstr "Поддерживается" + +msgid "Running" +msgstr "Запускается" + +msgid "Planned" +msgstr "Планируется" + +msgid "Broken" +msgstr "Сломано" + +msgid "Denied" +msgstr "Отказано" + +msgid "Platinum" +msgstr "Платина" + +msgid "Gold" +msgstr "Золото" + +msgid "Silver" +msgstr "Серебро" + +msgid "Bronze" +msgstr "Бронза" + +msgid "Pending" +msgstr "В ожидании" + +msgid "Library" +msgstr "Библиотека" + +msgid "Auto Install" +msgstr "Автоустановка" + +msgid "Emulators" +msgstr "Эмуляторы" + +msgid "Wine Settings" +msgstr "Настройки wine" + +msgid "PortProton Settings" +msgstr "Настройки PortProton" + +msgid "Themes" +msgstr "Темы" + +msgid "Loading Steam games..." +msgstr "Загрузка игр из Steam..." + +msgid "Loading PortProton games..." +msgstr "Загрузка игр из PortProton..." + +msgid "Unknown Game" +msgstr "Неизвестная игра" + +msgid "Game Library" +msgstr "Игровая библиотека" + +msgid "Find Games ..." +msgstr "Найти игры..." + +msgid "Here you can configure automatic game installation..." +msgstr "Здесь можно настроить автоматическую установку игр..." + +msgid "List of available emulators and their configuration..." +msgstr "Список доступных эмуляторов и их настройка..." + +msgid "Various Wine parameters and versions..." +msgstr "Различные параметры и версии wine..." + +msgid "Main PortProton parameters..." +msgstr "Основные параметры PortProton..." + +msgid "detailed" +msgstr "детальный" + +msgid "brief" +msgstr "упрощённый" + +msgid "Time Detail Level:" +msgstr "Уровень детализации вывода времени:" + +msgid "last launch" +msgstr "последний запуск" + +msgid "playtime" +msgstr "время игры" + +msgid "alphabetical" +msgstr "алфавитный" + +msgid "favorites" +msgstr "избранное" + +msgid "Games Sort Method:" +msgstr "Метод сортировки игр:" + +msgid "all" +msgstr "все" + +msgid "Games Display Filter:" +msgstr "Фильтр игр:" + +msgid "Proxy URL" +msgstr "Адрес прокси" + +msgid "Proxy URL:" +msgstr "Адрес прокси:" + +msgid "Proxy Username" +msgstr "Имя пользователя прокси" + +msgid "Proxy Username:" +msgstr "Имя пользователя прокси:" + +msgid "Proxy Password" +msgstr "Пароль прокси" + +msgid "Proxy Password:" +msgstr "Пароль прокси:" + +msgid "Launch Application in Fullscreen" +msgstr "Запуск приложения в полноэкранном режиме" + +msgid "Application Fullscreen Mode:" +msgstr "Режим полноэкранного отображения приложения:" + +msgid "Open Legendary Login" +msgstr "Открыть браузер для входа в Legendary" + +msgid "Legendary Authentication:" +msgstr "Авторизация в Legendary:" + +msgid "Enter Legendary Authorization Code" +msgstr "Введите код авторизации Legendary" + +msgid "Authorization Code:" +msgstr "Код авторизации:" + +msgid "Submit Code" +msgstr "Отправить код" + +msgid "Save Settings" +msgstr "Сохранить настройки" + +msgid "Reset Settings" +msgstr "Сбросить настройки" + +msgid "Clear Cache" +msgstr "Очистить кэш" + +msgid "Opened Legendary login page in browser" +msgstr "Открытие страницы входа в Legendary в браузере" + +msgid "Failed to open Legendary login page" +msgstr "Не удалось открыть страницу входа в Legendary" + +msgid "Please enter an authorization code" +msgstr "Пожалуйста, введите код авторизации" + +msgid "Successfully authenticated with Legendary" +msgstr "Успешная аутентификация с Legendary" + +#, python-brace-format +msgid "Legendary authentication failed: {0}" +msgstr "Сбой аутентификации в Legendary: {0}" + +msgid "Legendary executable not found" +msgstr "Не найден исполняемый файл Legendary" + +msgid "Unexpected error during authentication" +msgstr "Неожиданная ошибка при аутентификации" + +msgid "Confirm Reset" +msgstr "Подтвердите удаление" + +msgid "Are you sure you want to reset all settings? This action cannot be undone." +msgstr "" +"Вы уверены, что хотите сбросить все настройки? Это действие нельзя " +"отменить." + +msgid "Settings reset. Restarting..." +msgstr "Настройки сброшены. Перезапуск..." + +msgid "Confirm Clear Cache" +msgstr "Подтвердите очистку кэша" + +msgid "Are you sure you want to clear the cache? This action cannot be undone." +msgstr "Вы уверены, что хотите очистить кэш? Это действие нельзя отменить." + +msgid "Cache cleared" +msgstr "Кэш очищен" + +msgid "Settings saved" +msgstr "Настройки сохранены" + +msgid "Select Theme:" +msgstr "Выбрать тему:" + +msgid "Apply Theme" +msgstr "Применить тему" + +msgid "No link" +msgstr "Нет ссылки" + +msgid "Unknown" +msgstr "Неизвестен" + +msgid "Name:" +msgstr "Название:" + +msgid "Description:" +msgstr "Описание:" + +msgid "Author:" +msgstr "Автор:" + +msgid "Link:" +msgstr "Ссылка:" + +#, python-brace-format +msgid "Theme '{0}' applied successfully" +msgstr "Тема '{0}' применена успешно" + +#, python-brace-format +msgid "Error applying theme '{0}'" +msgstr "Ошибка при применение темы '{0}'" + +msgid "Back" +msgstr "Назад" + +msgid "LAST LAUNCH" +msgstr "Последний запуск" + +msgid "PLAY TIME" +msgstr "Время игры" + +msgid "full" +msgstr "полная" + +msgid "partial" +msgstr "частичная" + +msgid "none" +msgstr "отсутствует" + +#, python-brace-format +msgid "Gamepad Support: {0}" +msgstr "Поддержка геймпадов: {0}" + +msgid "Stop" +msgstr "Остановить" + +msgid "Play" +msgstr "Играть" + +msgid "Invalid command format (native)" +msgstr "Неправильный формат команды (нативная версия)" + +msgid "Invalid command format (flatpak)" +msgstr "Неправильный формат команды (flatpak)" + +#, python-brace-format +msgid "File not found: {0}" +msgstr "Файл не найден: {0}" + +msgid "Cannot launch game while another game is running" +msgstr "Невозможно запустить игру пока запущена другая" + +msgid "Launching" +msgstr "Идёт запуск" + +msgid "just now" +msgstr "только что" + +msgid "d." +msgstr "д." + +msgid "h." +msgstr "ч." + +msgid "min." +msgstr "мин." + +msgid "sec." +msgstr "сек." + diff --git a/portprotonqt/localization.py b/portprotonqt/localization.py new file mode 100644 index 0000000..8c2becd --- /dev/null +++ b/portprotonqt/localization.py @@ -0,0 +1,74 @@ +import gettext +from pathlib import Path +import locale +from babel import Locale + +LOCALE_MAP = { + 'ru': 'russian', + 'en': 'english', + 'fr': 'french', + 'de': 'german', + 'es': 'spanish', + 'it': 'italian', + 'zh': 'schinese', + 'zh_Hant': 'tchinese', + 'ja': 'japanese', + 'ko': 'koreana', + 'pt': 'brazilian', + 'pl': 'polish', + 'nl': 'dutch', + 'sv': 'swedish', + 'no': 'norwegian', + 'da': 'danish', + 'fi': 'finnish', + 'cs': 'czech', + 'hu': 'hungarian', + 'tr': 'turkish', + 'ro': 'romanian', + 'th': 'thai', + 'uk': 'ukrainian', + 'bg': 'bulgarian', + 'el': 'greek', +} + +translate = gettext.translation( + domain="messages", + localedir = Path(__file__).parent / "locales", + fallback=True, +) +_ = translate.gettext + +def get_system_locale(): + """Возвращает системную локаль, например, 'ru_RU'. Если не удаётся определить – возвращает 'en'.""" + loc = locale.getdefaultlocale()[0] + return loc if loc else 'en' + +def get_steam_language(): + try: + # Babel автоматически разбирает сложные локали, например, 'zh_Hant_HK' → 'zh_Hant' + system_locale = get_system_locale() + if system_locale: + locale = Locale.parse(system_locale) + # Используем только языковой код ('ru', 'en', и т.д.) + language_code = locale.language + return LOCALE_MAP.get(language_code, 'english') + except Exception as e: + print(f"Failed to detect locale: {e}") + + # Если что-то пошло не так — используем английский по умолчанию + return 'english' + +def get_egs_language(): + try: + # Babel автоматически разбирает сложные локали, например, 'zh_Hant_HK' → 'zh_Hant' + system_locale = get_system_locale() + if system_locale: + locale = Locale.parse(system_locale) + # Используем только языковой код ('ru', 'en', и т.д.) + language_code = locale.language + return language_code + except Exception as e: + print(f"Failed to detect locale: {e}") + + # Если что-то пошло не так — используем английский по умолчанию + return 'en' diff --git a/portprotonqt/logger.py b/portprotonqt/logger.py new file mode 100644 index 0000000..6ea6b09 --- /dev/null +++ b/portprotonqt/logger.py @@ -0,0 +1,16 @@ +import logging + +def setup_logger(): + """Настройка базовой конфигурации логирования.""" + logging.basicConfig( + level=logging.INFO, + format='[%(levelname)s] %(message)s', + handlers=[logging.StreamHandler()] + ) + +def get_logger(name): + """Возвращает логгер для указанного модуля.""" + return logging.getLogger(name) + +# Инициализация логгера при импорте модуля +setup_logger() diff --git a/portprotonqt/main_window.py b/portprotonqt/main_window.py new file mode 100644 index 0000000..eedb1f9 --- /dev/null +++ b/portprotonqt/main_window.py @@ -0,0 +1,1684 @@ +import os +import shlex +import shutil +import signal +import subprocess +import sys + +import portprotonqt.themes.standart.styles as default_styles +import psutil + +from portprotonqt.dialogs import AddGameDialog +from portprotonqt.game_card import GameCard +from portprotonqt.custom_widgets import FlowLayout, ClickableLabel, AutoSizeButton, NavLabel +from portprotonqt.input_manager import InputManager +from portprotonqt.context_menu_manager import ContextMenuManager + +from portprotonqt.image_utils import load_pixmap_async, round_corners, ImageCarousel +from portprotonqt.steam_api import get_steam_game_info_async, get_full_steam_game_info_async, get_steam_installed_games +from portprotonqt.egs_api import load_egs_games_async +from portprotonqt.theme_manager import ThemeManager, load_theme_screenshots, load_logo +from portprotonqt.time_utils import save_last_launch, get_last_launch, parse_playtime_file, format_playtime, get_last_launch_timestamp, format_last_launch +from portprotonqt.config_utils import ( + get_portproton_location, read_theme_from_config, save_theme_to_config, parse_desktop_entry, load_theme_metainfo, read_time_config, read_card_size, save_card_size, + read_sort_method, read_display_filter, read_favorites, save_favorites, save_time_config, save_sort_method, save_display_filter, save_proxy_config, read_proxy_config, + read_fullscreen_config, save_fullscreen_config, read_window_geometry, save_window_geometry, reset_config, clear_cache +) +from portprotonqt.localization import _ +from portprotonqt.logger import get_logger +from portprotonqt.downloader import Downloader + +from PySide6.QtWidgets import (QLineEdit, QMainWindow, QStatusBar, QWidget, QVBoxLayout, QLabel, QHBoxLayout, QStackedWidget, QComboBox, QScrollArea, QSlider, + QDialog, QFormLayout, QFrame, QGraphicsDropShadowEffect, QMessageBox, QGraphicsEffect, QGraphicsOpacityEffect, QApplication, QPushButton, QProgressBar, QCheckBox) +from PySide6.QtGui import QIcon, QPixmap, QColor, QDesktopServices +from PySide6.QtCore import Qt, QAbstractAnimation, QPropertyAnimation, QByteArray, QUrl, Signal, QTimer, Slot +from typing import cast +from collections.abc import Callable +from concurrent.futures import ThreadPoolExecutor +from datetime import datetime + +logger = get_logger(__name__) + +class MainWindow(QMainWindow): + """Main window of PortProtonQT.""" + settings_saved = Signal() + games_loaded = Signal(list) + update_progress = Signal(int) # Signal to update progress bar + update_status_message = Signal(str, int) # Signal to update status message + + def __init__(self): + super().__init__() + self.setAcceptDrops(True) + self.current_exec_line = None + self.currentDetailPage = None + self.current_play_button = None + self.pending_games = [] + self.game_card_cache = {} + self.pending_images = {} + self.total_games = 0 + self.games_load_timer = QTimer(self) + self.games_load_timer.setSingleShot(True) + self.games_load_timer.timeout.connect(self.finalize_game_loading) + self.games_loaded.connect(self.on_games_loaded) + + read_time_config() + # Set LEGENDARY_CONFIG_PATH to ~/.cache/PortProtonQT/legendary + self.legendary_config_path = os.path.join( + os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")), + "PortProtonQT", "legendary_cache" + ) + os.makedirs(self.legendary_config_path, exist_ok=True) + os.environ["LEGENDARY_CONFIG_PATH"] = self.legendary_config_path + + self.legendary_path = os.path.join(self.legendary_config_path, "legendary") + self.downloader = Downloader(max_workers=4) + + # Создаём менеджер тем и читаем, какая тема выбрана + self.theme_manager = ThemeManager() + selected_theme = read_theme_from_config() + self.current_theme_name = selected_theme + try: + self.theme = self.theme_manager.apply_theme(selected_theme) + except FileNotFoundError: + logger.warning(f"Тема '{selected_theme}' не найдена, применяется стандартная тема 'standart'") + self.theme = self.theme_manager.apply_theme("standart") + self.current_theme_name = "standart" + save_theme_to_config("standart") + if not self.theme: + self.theme = default_styles + self.card_width = read_card_size() + self.setWindowTitle("PortProtonQT") + self.setMinimumSize(800, 600) + + self.games = [] + self.game_processes = [] + self.target_exe = None + self.current_running_button = None + self.portproton_location = get_portproton_location() + + self.context_menu_manager = ContextMenuManager( + self, + self.portproton_location, + self.theme, + self.loadGames, + self.updateGameGrid + ) + + # Статус-бар + self.setStatusBar(QStatusBar(self)) + self.progress_bar = QProgressBar() + self.progress_bar.setMaximumWidth(200) + self.progress_bar.setTextVisible(True) + self.progress_bar.setVisible(False) + self.statusBar().addPermanentWidget(self.progress_bar) + self.update_progress.connect(self.progress_bar.setValue) + self.update_status_message.connect(self.statusBar().showMessage) + + # Центральный виджет и основной layout + centralWidget = QWidget() + self.setCentralWidget(centralWidget) + mainLayout = QVBoxLayout(centralWidget) + mainLayout.setSpacing(0) + mainLayout.setContentsMargins(0, 0, 0, 0) + + # 1. ШАПКА (HEADER) + self.header = QWidget() + self.header.setFixedHeight(80) + self.header.setStyleSheet(self.theme.MAIN_WINDOW_HEADER_STYLE) + headerLayout = QVBoxLayout(self.header) + headerLayout.setContentsMargins(0, 0, 0, 0) + + # Текст "PortProton" слева + self.titleLabel = QLabel() + pixmap = load_logo() + if pixmap is None: + width, height = self.theme.pixmapsScaledSize + pixmap = QPixmap(width, height) + pixmap.fill(QColor(0, 0, 0, 0)) + width, height = self.theme.pixmapsScaledSize + scaled_pixmap = pixmap.scaled(width, height, + Qt.AspectRatioMode.KeepAspectRatio, + Qt.TransformationMode.SmoothTransformation) + self.titleLabel.setPixmap(scaled_pixmap) + self.titleLabel.setFixedSize(scaled_pixmap.size()) + self.titleLabel.setStyleSheet(self.theme.TITLE_LABEL_STYLE) + headerLayout.addStretch() + + # 2. НАВИГАЦИЯ (КНОПКИ ВКЛАДОК) + self.navWidget = QWidget() + self.navWidget.setStyleSheet(self.theme.NAV_WIDGET_STYLE) + navLayout = QHBoxLayout(self.navWidget) + navLayout.setContentsMargins(10, 0, 10, 0) + navLayout.setSpacing(0) + + navLayout.addWidget(self.titleLabel) + + self.tabButtons = {} + tabs = [ + _("Library"), + _("Auto Install"), + _("Emulators"), + _("Wine Settings"), + _("PortProton Settings"), + _("Themes") + ] + for i, tabName in enumerate(tabs): + btn = NavLabel(tabName) + btn.setCheckable(True) + btn.clicked.connect(lambda index=i: self.switchTab(index)) + btn.setStyleSheet(self.theme.NAV_BUTTON_STYLE) + navLayout.addWidget(btn) + self.tabButtons[i] = btn + + self.tabButtons[0].setChecked(True) + mainLayout.addWidget(self.navWidget) + + # 3. QStackedWidget (ВКЛАДКИ) + self.stackedWidget = QStackedWidget() + mainLayout.addWidget(self.stackedWidget) + + # Создаём все вкладки + self.createInstalledTab() # вкладка 0 + self.createAutoInstallTab() # вкладка 1 + self.createEmulatorsTab() # вкладка 2 + self.createWineTab() # вкладка 3 + self.createPortProtonTab() # вкладка 4 + self.createThemeTab() # вкладка 5 + + self.restore_state() + + self.setStyleSheet(self.theme.MAIN_WINDOW_STYLE) + self.setStyleSheet(self.theme.MESSAGE_BOX_STYLE) + self.input_manager = InputManager(self) + QTimer.singleShot(0, self.loadGames) + + if read_fullscreen_config(): + self.showFullScreen() + else: + width, height = read_window_geometry() + if width > 0 and height > 0: + self.resize(width, height) + else: + self.showNormal() + @Slot(list) + def on_games_loaded(self, games: list[tuple]): + self.games = games + favorites = read_favorites() + sort_method = read_sort_method() + + # Sort by: favorites first, then descending playtime, then descending last launch + if sort_method == "playtime": + self.games.sort(key=lambda g: (0 if g[0] in favorites else 1, -g[11], -g[10])) + + # Sort by: favorites first, then alphabetically by game name + elif sort_method == "alphabetical": + self.games.sort(key=lambda g: (0 if g[0] in favorites else 1, g[0].lower())) + + # Sort by: favorites first, then leave the rest in their original order + elif sort_method == "favorites": + self.games.sort(key=lambda g: (0 if g[0] in favorites else 1)) + + # Sort by: favorites first, then descending last launch, then descending playtime + elif sort_method == "last_launch": + self.games.sort(key=lambda g: (0 if g[0] in favorites else 1, -g[10], -g[11])) + + # Fallback: same as last_launch + else: + self.games.sort(key=lambda g: (0 if g[0] in favorites else 1, -g[10], -g[11])) + + self.updateGameGrid() + self.progress_bar.setVisible(False) + + def loadGames(self): + display_filter = read_display_filter() + favorites = read_favorites() + self.pending_games = [] + self.games = [] + self.progress_bar.setValue(0) + self.progress_bar.setVisible(True) + if display_filter == "steam": + self._load_steam_games_async(lambda games: self.games_loaded.emit(games)) + elif display_filter == "portproton": + self._load_portproton_games_async(lambda games: self.games_loaded.emit(games)) + elif display_filter == "epic": + load_egs_games_async( + self.legendary_path, + lambda games: self.games_loaded.emit(games), + self.downloader, + self.update_progress.emit, + self.update_status_message.emit + ) + elif display_filter == "favorites": + def on_all_games(portproton_games, steam_games, epic_games): + games = [game for game in portproton_games + steam_games + epic_games if game[0] in favorites] + self.games_loaded.emit(games) + self._load_portproton_games_async( + lambda pg: self._load_steam_games_async( + lambda sg: load_egs_games_async( + self.legendary_path, + lambda eg: on_all_games(pg, sg, eg), + self.downloader, + self.update_progress.emit, + self.update_status_message.emit + ) + ) + ) + else: + def on_all_games(portproton_games, steam_games, epic_games): + seen = set() + games = [] + for game in portproton_games + steam_games + epic_games: + name = game[0] + if name not in seen: + seen.add(name) + games.append(game) + self.games_loaded.emit(games) + self._load_portproton_games_async( + lambda pg: self._load_steam_games_async( + lambda sg: load_egs_games_async( + self.legendary_path, + lambda eg: on_all_games(pg, sg, eg), + self.downloader, + self.update_progress.emit, + self.update_status_message.emit + ) + ) + ) + return [] + + def _load_steam_games_async(self, callback: Callable[[list[tuple]], None]): + steam_games = [] + installed_games = get_steam_installed_games() + logger.info("Found %d installed Steam games: %s", len(installed_games), [g[0] for g in installed_games]) + if not installed_games: + callback(steam_games) + return + self.total_games = len(installed_games) + self.update_progress.emit(0) # Initialize progress bar + self.update_status_message.emit(_("Loading Steam games..."), 3000) + processed_count = 0 + + def on_game_info(info: dict, name, appid, last_played, playtime_seconds): + nonlocal processed_count + if not info: + logger.warning("No info retrieved for game %s (appid %s)", name, appid) + info = { + 'description': '', + 'cover': '', + 'controller_support': '', + 'protondb_tier': '', + 'name': name, + 'steam_game': 'true' + } + last_launch = format_last_launch(datetime.fromtimestamp(last_played)) if last_played else _("Never") + steam_games.append(( + name, + info.get('description', ''), + info.get('cover', ''), + appid, + f"steam://rungameid/{appid}", + info.get('controller_support', ''), + last_launch, + format_playtime(playtime_seconds), + info.get('protondb_tier', ''), + info.get("anticheat_status", ""), + last_played, + playtime_seconds, + "true" + )) + processed_count += 1 + self.pending_games.append(None) + self.update_progress.emit(len(self.pending_games)) # Update progress bar + logger.info("Game %s processed, processed_count: %d/%d", name, processed_count, len(installed_games)) + if processed_count == len(installed_games): + callback(steam_games) + + for name, appid, last_played, playtime_seconds in installed_games: + logger.debug("Requesting info for game %s (appid %s)", name, appid) + get_full_steam_game_info_async(appid, lambda info, n=name, a=appid, lp=last_played, pt=playtime_seconds: on_game_info(info, n, a, lp, pt)) + + def _load_portproton_games_async(self, callback: Callable[[list[tuple]], None]): + games = [] + if not self.portproton_location: + callback(games) + return + desktop_files = [entry.path for entry in os.scandir(self.portproton_location) + if entry.name.endswith(".desktop")] + if not desktop_files: + callback(games) + return + self.total_games = len(desktop_files) + self.update_progress.emit(0) # Initialize progress bar + self.update_status_message.emit(_("Loading PortProton games..."), 3000) + def on_desktop_processed(result: tuple | None, games=games): + if result: + games.append(result) + self.pending_games.append(None) + self.update_progress.emit(len(self.pending_games)) # Update progress bar + if len(self.pending_games) == len(desktop_files): + callback(games) + with ThreadPoolExecutor() as executor: + for file_path in desktop_files: + executor.submit(self._process_desktop_file_async, file_path, on_desktop_processed) + + def _process_desktop_file_async(self, file_path: str, callback: Callable[[tuple | None], None]): + entry = parse_desktop_entry(file_path) + if not entry: + callback(None) + return + desktop_name = entry.get("Name", _("Unknown Game")) + if desktop_name.lower() in ["portproton", "readme"]: + callback(None) + return + exec_line = entry.get("Exec", "") + game_exe = "" + exe_name = "" + playtime_seconds = 0 + formatted_playtime = "" + + if exec_line: + parts = shlex.split(exec_line) + game_exe = os.path.expanduser(parts[3] if len(parts) >= 4 else exec_line) + + repo_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + builtin_custom_folder = os.path.join(repo_root, "portprotonqt", "custom_data") + xdg_data_home = os.getenv("XDG_DATA_HOME", + os.path.join(os.path.expanduser("~"), ".local", "share")) + user_custom_folder = os.path.join(xdg_data_home, "PortProtonQT", "custom_data") + os.makedirs(user_custom_folder, exist_ok=True) + + builtin_cover = "" + builtin_name = None + builtin_desc = None + user_cover = "" + user_name = None + user_desc = None + + if game_exe: + exe_name = os.path.splitext(os.path.basename(game_exe))[0] + builtin_game_folder = os.path.join(builtin_custom_folder, exe_name) + user_game_folder = os.path.join(user_custom_folder, exe_name) + os.makedirs(user_game_folder, exist_ok=True) + + builtin_files = set(os.listdir(builtin_game_folder)) if os.path.exists(builtin_game_folder) else set() + for ext in [".jpg", ".png", ".jpeg", ".bmp"]: + candidate = f"cover{ext}" + if candidate in builtin_files: + builtin_cover = os.path.join(builtin_game_folder, candidate) + break + + builtin_metadata_file = os.path.join(builtin_game_folder, "metadata.txt") + if os.path.exists(builtin_metadata_file): + with open(builtin_metadata_file, encoding="utf-8") as f: + for line in f: + line = line.strip() + if line.startswith("name="): + builtin_name = line[len("name="):].strip() + elif line.startswith("description="): + builtin_desc = line[len("description="):].strip() + + user_files = set(os.listdir(user_game_folder)) if os.path.exists(user_game_folder) else set() + for ext in [".jpg", ".png", ".jpeg", ".bmp"]: + candidate = f"cover{ext}" + if candidate in user_files: + user_cover = os.path.join(user_game_folder, candidate) + break + + user_metadata_file = os.path.join(user_game_folder, "metadata.txt") + if os.path.exists(user_metadata_file): + with open(user_metadata_file, encoding="utf-8") as f: + for line in f: + line = line.strip() + if line.startswith("name="): + user_name = line[len("name="):].strip() + elif line.startswith("description="): + user_desc = line[len("description="):].strip() + + if self.portproton_location: + statistics_file = os.path.join(self.portproton_location, "data", "tmp", "statistics") + try: + playtime_data = parse_playtime_file(statistics_file) + matching_key = next( + (key for key in playtime_data if os.path.basename(key).split('.')[0] == exe_name), + None + ) + if matching_key: + playtime_seconds = playtime_data[matching_key] + formatted_playtime = format_playtime(playtime_seconds) + except Exception as e: + print(f"Failed to parse playtime data: {e}") + + def on_steam_info(steam_info: dict): + final_name = user_name or builtin_name or desktop_name + final_desc = (user_desc if user_desc is not None else + builtin_desc if builtin_desc is not None else + steam_info.get("description", "")) + final_cover = (user_cover if user_cover else + builtin_cover if builtin_cover else + steam_info.get("cover", "") or entry.get("Icon", "")) + steam_game = "false" + callback(( + final_name, + final_desc, + final_cover, + steam_info.get("appid", ""), + exec_line, + steam_info.get("controller_support", ""), + get_last_launch(exe_name) if exe_name else _("Never"), + formatted_playtime, + steam_info.get("protondb_tier", ""), + steam_info.get("anticheat_status", ""), + get_last_launch_timestamp(exe_name) if exe_name else 0, + playtime_seconds, + steam_game + )) + + get_steam_game_info_async(desktop_name, exec_line, on_steam_info) + + def finalize_game_loading(self): + logger.info("Finalizing game loading, pending_games: %d", len(self.pending_games)) + if self.pending_games and all(x is None for x in self.pending_games): + logger.info("All games processed, clearing pending_games") + self.pending_games = [] + self.update_progress.emit(0) # Hide progress bar + self.progress_bar.setVisible(False) + self.update_status_message.emit("", 0) # Clear status message + + # ВКЛАДКИ + def switchTab(self, index): + """Устанавливает активную вкладку по индексу.""" + for i, btn in self.tabButtons.items(): + btn.setChecked(i == index) + self.stackedWidget.setCurrentIndex(index) + + def createSearchWidget(self) -> tuple[QWidget, QLineEdit]: + self.container = QWidget() + self.container.setStyleSheet(self.theme.CONTAINER_STYLE) + layout = QHBoxLayout(self.container) + layout.setContentsMargins(0, 6, 0, 0) + layout.setSpacing(10) + + self.GameLibraryTitle = QLabel(_("Game Library")) + self.GameLibraryTitle.setStyleSheet(self.theme.INSTALLED_TAB_TITLE_STYLE) + layout.addWidget(self.GameLibraryTitle) + + self.addGameButton = AutoSizeButton(_("Add Game"), icon=self.theme_manager.get_icon("addgame")) + self.addGameButton.setStyleSheet(self.theme.ADDGAME_BACK_BUTTON_STYLE) + self.addGameButton.clicked.connect(self.openAddGameDialog) + layout.addWidget(self.addGameButton, alignment=Qt.AlignmentFlag.AlignRight) + + self.searchEdit = QLineEdit() + icon: QIcon = cast(QIcon, self.theme_manager.get_icon("search")) + action_pos = cast(QLineEdit.ActionPosition, QLineEdit.ActionPosition.LeadingPosition) + self.search_action = self.searchEdit.addAction(icon, action_pos) + self.searchEdit.setMaximumWidth(200) + self.searchEdit.setPlaceholderText(_("Find Games ...")) + self.searchEdit.setClearButtonEnabled(True) + self.searchEdit.setStyleSheet(self.theme.SEARCH_EDIT_STYLE) + + # Добавляем дебансирование для поиска + self.searchEdit.textChanged.connect(self.startSearchDebounce) + self.searchDebounceTimer = QTimer(self) + self.searchDebounceTimer.setSingleShot(True) + self.searchDebounceTimer.setInterval(300) + self.searchDebounceTimer.timeout.connect(self.filterGamesDelayed) + + layout.addWidget(self.searchEdit) + return self.container, self.searchEdit + + def startSearchDebounce(self, text): + self.searchDebounceTimer.start() + + def filterGamesDelayed(self): + """Filters games based on search text and updates the grid.""" + text = self.searchEdit.text().strip().lower() + if text == "": + self.updateGameGrid() # Use self.games directly + else: + filtered = [game for game in self.games if text in game[0].lower()] + self.updateGameGrid(filtered) + + def createInstalledTab(self): + self.gamesLibraryWidget = QWidget() + self.gamesLibraryWidget.setStyleSheet(self.theme.LIBRARY_WIDGET_STYLE) + layout = QVBoxLayout(self.gamesLibraryWidget) + layout.setSpacing(15) + + searchWidget, self.searchEdit = self.createSearchWidget() + layout.addWidget(searchWidget) + + scrollArea = QScrollArea() + scrollArea.setWidgetResizable(True) + scrollArea.setStyleSheet(self.theme.SCROLL_AREA_STYLE) + + self.gamesListWidget = QWidget() + self.gamesListWidget.setStyleSheet(self.theme.LIST_WIDGET_STYLE) + self.gamesListLayout = FlowLayout(self.gamesListWidget) + self.gamesListWidget.setLayout(self.gamesListLayout) + + scrollArea.setWidget(self.gamesListWidget) + layout.addWidget(scrollArea) + + sliderLayout = QHBoxLayout() + sliderLayout.addStretch() + self.sizeSlider = QSlider(Qt.Orientation.Horizontal) + self.sizeSlider.setMinimum(200) + self.sizeSlider.setMaximum(250) + self.sizeSlider.setValue(self.card_width) + self.sizeSlider.setTickInterval(10) + self.sizeSlider.setFixedWidth(150) + self.sizeSlider.setToolTip(f"{self.card_width} px") + self.sizeSlider.setStyleSheet(self.theme.SLIDER_SIZE_STYLE) + sliderLayout.addWidget(self.sizeSlider) + layout.addLayout(sliderLayout) + + self.sliderDebounceTimer = QTimer(self) + self.sliderDebounceTimer.setSingleShot(True) + self.sliderDebounceTimer.setInterval(40) + + def on_slider_value_changed(): + self.setUpdatesEnabled(False) + self.card_width = self.sizeSlider.value() + self.sizeSlider.setToolTip(f"{self.card_width} px") + self.updateGameGrid() + self.setUpdatesEnabled(True) + self.sizeSlider.valueChanged.connect(lambda val: self.sliderDebounceTimer.start()) + self.sliderDebounceTimer.timeout.connect(on_slider_value_changed) + + def calculate_card_width(): + available_width = scrollArea.width() - 20 + spacing = self.gamesListLayout._spacing + target_cards_per_row = 8 + calculated_width = (available_width - spacing * (target_cards_per_row - 1)) // target_cards_per_row + calculated_width = max(200, min(calculated_width, 250)) + if not self.sizeSlider.value() == self.card_width: + self.card_width = calculated_width + self.sizeSlider.setValue(self.card_width) + self.sizeSlider.setToolTip(f"{self.card_width} px") + self.updateGameGrid() + + QTimer.singleShot(0, calculate_card_width) + + # Добавляем обработчик прокрутки для ленивой загрузки + scrollArea.verticalScrollBar().valueChanged.connect(self.loadVisibleImages) + + self.stackedWidget.addWidget(self.gamesLibraryWidget) + self.updateGameGrid() + + def resizeEvent(self, event): + super().resizeEvent(event) + if not hasattr(self, '_last_width'): + self._last_width = self.width() + if abs(self.width() - self._last_width) > 10: + self._last_width = self.width() + self.sliderDebounceTimer.start() + + def loadVisibleImages(self): + visible_region = self.gamesListWidget.visibleRegion() + max_concurrent_loads = 5 + loaded_count = 0 + for card_key, card in self.game_card_cache.items(): + if card_key in self.pending_images and visible_region.contains(card.pos()) and loaded_count < max_concurrent_loads: + cover_path, width, height, callback = self.pending_images.pop(card_key) + load_pixmap_async(cover_path, width, height, callback) + loaded_count += 1 + + def updateGameGrid(self, games_list=None): + """Updates the game grid with the provided games list or self.games.""" + if games_list is None: + games_list = self.games + if not games_list: + self.clearLayout(self.gamesListLayout) + self.game_card_cache.clear() + self.pending_images.clear() + return + + # Create a set of game names for quick lookup + current_games = {game_data[0]: game_data for game_data in games_list} + + # Check if the grid is already up-to-date + if set(current_games.keys()) == set(self.game_card_cache.keys()) and self.card_width == getattr(self, '_last_card_width', None): + return # No changes needed, skip update + + # Track if layout has changed to decide if geometry update is needed + layout_changed = False + + # Remove cards for games no longer in the list + for card_key in list(self.game_card_cache.keys()): + if card_key not in current_games: + card = self.game_card_cache.pop(card_key) + self.gamesListLayout.removeWidget(card) + card.deleteLater() + if card_key in self.pending_images: + del self.pending_images[card_key] + layout_changed = True + + # Add or update cards for current games + for game_data in games_list: + game_name = game_data[0] + if game_name not in self.game_card_cache: + # Create new card + card = GameCard( + *game_data, + select_callback=self.openGameDetailPage, + theme=self.theme, + card_width=self.card_width, + context_menu_manager=self.context_menu_manager + ) + # Connect context menu signals + card.editShortcutRequested.connect(self.context_menu_manager.edit_game_shortcut) + card.deleteGameRequested.connect(self.context_menu_manager.delete_game) + card.addToMenuRequested.connect(self.context_menu_manager.add_to_menu) + card.removeFromMenuRequested.connect(self.context_menu_manager.remove_from_menu) + card.addToDesktopRequested.connect(self.context_menu_manager.add_to_desktop) + card.removeFromDesktopRequested.connect(self.context_menu_manager.remove_from_desktop) + card.addToSteamRequested.connect(self.context_menu_manager.add_to_steam) + card.removeFromSteamRequested.connect(self.context_menu_manager.remove_from_steam) + card.openGameFolderRequested.connect(self.context_menu_manager.open_game_folder) + self.game_card_cache[game_name] = card + self.gamesListLayout.addWidget(card) + layout_changed = True + elif self.card_width != getattr(self, '_last_card_width', None): + # Update size only if card_width has changed + card = self.game_card_cache[game_name] + card.setFixedWidth(self.card_width + 20) # Account for extra_margin in GameCard + + # Store the current card_width + self._last_card_width = self.card_width + + # Trigger lazy image loading for visible cards + self.loadVisibleImages() + + # Update layout geometry only if the layout has changed + if layout_changed: + self.gamesListWidget.updateGeometry() + + def clearLayout(self, layout): + """Удаляет все виджеты из layout.""" + while layout.count(): + child = layout.takeAt(0) + if child.widget(): + widget = child.widget() + # Remove from game_card_cache if it's a GameCard + for key, card in list(self.game_card_cache.items()): + if card == widget: + del self.game_card_cache[key] + # Also remove from pending_images if present + if key in self.pending_images: + del self.pending_images[key] + widget.deleteLater() + + def dragEnterEvent(self, event): + if event.mimeData().hasUrls(): + for url in event.mimeData().urls(): + if url.toLocalFile().lower().endswith(".exe"): + event.acceptProposedAction() + return + event.ignore() + + def dropEvent(self, event): + for url in event.mimeData().urls(): + path = url.toLocalFile() + if path.lower().endswith(".exe"): + self.openAddGameDialog(path) + break + + def openAddGameDialog(self, exe_path=None): + """Открывает диалоговое окно 'Add Game' с текущей темой.""" + dialog = AddGameDialog(self, self.theme) + + # Предзаполняем путь к .exe при drag-and-drop + if exe_path: + dialog.exeEdit.setText(exe_path) + dialog.nameEdit.setText(os.path.splitext(os.path.basename(exe_path))[0]) + dialog.updatePreview() + + if dialog.exec() == QDialog.DialogCode.Accepted: + name = dialog.nameEdit.text().strip() + exe_path = dialog.exeEdit.text().strip() + user_cover = dialog.coverEdit.text().strip() + + if not name or not exe_path: + return + + # Сохраняем .desktop файл + desktop_entry, desktop_path = dialog.getDesktopEntryData() + if desktop_entry and desktop_path: + with open(desktop_path, "w", encoding="utf-8") as f: + f.write(desktop_entry) + os.chmod(desktop_path, 0o755) + + # Проверяем путь обложки, если он отличается от стандартной + if os.path.isfile(user_cover): + exe_name = os.path.splitext(os.path.basename(exe_path))[0] + xdg_data_home = os.getenv("XDG_DATA_HOME", + os.path.join(os.path.expanduser("~"), ".local", "share")) + custom_folder = os.path.join( + xdg_data_home, + "PortProtonQT", + "custom_data", + exe_name + ) + os.makedirs(custom_folder, exist_ok=True) + + # Сохраняем пользовательскую обложку как cover.* + ext = os.path.splitext(user_cover)[1].lower() + if ext in [".png", ".jpg", ".jpeg", ".bmp"]: + shutil.copyfile(user_cover, os.path.join(custom_folder, f"cover{ext}")) + + self.games = self.loadGames() + self.updateGameGrid() + + + def createAutoInstallTab(self): + """Вкладка 'Auto Install'.""" + self.autoInstallWidget = QWidget() + self.autoInstallWidget.setStyleSheet(self.theme.OTHER_PAGES_WIDGET_STYLE) + self.autoInstallWidget.setObjectName("otherPage") + layout = QVBoxLayout(self.autoInstallWidget) + layout.setContentsMargins(10, 18, 10, 10) + + self.autoInstallTitle = QLabel(_("Auto Install")) + self.autoInstallTitle.setStyleSheet(self.theme.TAB_TITLE_STYLE) + self.autoInstallTitle.setObjectName("tabTitle") + layout.addWidget(self.autoInstallTitle) + + self.autoInstallContent = QLabel(_("Here you can configure automatic game installation...")) + self.autoInstallContent.setStyleSheet(self.theme.CONTENT_STYLE) + self.autoInstallContent.setObjectName("tabContent") + layout.addWidget(self.autoInstallContent) + layout.addStretch(1) + + self.stackedWidget.addWidget(self.autoInstallWidget) + + def createEmulatorsTab(self): + """Вкладка 'Emulators'.""" + self.emulatorsWidget = QWidget() + self.emulatorsWidget.setStyleSheet(self.theme.OTHER_PAGES_WIDGET_STYLE) + self.emulatorsWidget.setObjectName("otherPage") + layout = QVBoxLayout(self.emulatorsWidget) + layout.setContentsMargins(10, 18, 10, 10) + + self.emulatorsTitle = QLabel(_("Emulators")) + self.emulatorsTitle.setStyleSheet(self.theme.TAB_TITLE_STYLE) + self.emulatorsTitle.setObjectName("tabTitle") + layout.addWidget(self.emulatorsTitle) + + self.emulatorsContent = QLabel(_("List of available emulators and their configuration...")) + self.emulatorsContent.setStyleSheet(self.theme.CONTENT_STYLE) + self.emulatorsContent.setObjectName("tabContent") + layout.addWidget(self.emulatorsContent) + layout.addStretch(1) + + self.stackedWidget.addWidget(self.emulatorsWidget) + + def createWineTab(self): + """Вкладка 'Wine Settings'.""" + self.wineWidget = QWidget() + self.wineWidget.setStyleSheet(self.theme.OTHER_PAGES_WIDGET_STYLE) + self.wineWidget.setObjectName("otherPage") + layout = QVBoxLayout(self.wineWidget) + layout.setContentsMargins(10, 18, 10, 10) + + self.wineTitle = QLabel(_("Wine Settings")) + self.wineTitle.setStyleSheet(self.theme.TAB_TITLE_STYLE) + self.wineTitle.setObjectName("tabTitle") + layout.addWidget(self.wineTitle) + + self.wineContent = QLabel(_("Various Wine parameters and versions...")) + self.wineContent.setStyleSheet(self.theme.CONTENT_STYLE) + self.wineContent.setObjectName("tabContent") + layout.addWidget(self.wineContent) + layout.addStretch(1) + + self.stackedWidget.addWidget(self.wineWidget) + + def createPortProtonTab(self): + """Вкладка 'PortProton Settings'.""" + self.portProtonWidget = QWidget() + self.portProtonWidget.setStyleSheet(self.theme.OTHER_PAGES_WIDGET_STYLE) + self.portProtonWidget.setObjectName("otherPage") + layout = QVBoxLayout(self.portProtonWidget) + layout.setContentsMargins(10, 18, 10, 10) + + # Заголовок + title = QLabel(_("PortProton Settings")) + title.setStyleSheet(self.theme.TAB_TITLE_STYLE) + title.setObjectName("tabTitle") + title.setFocusPolicy(Qt.FocusPolicy.NoFocus) + layout.addWidget(title) + + # Подзаголовок/описание + content = QLabel(_("Main PortProton parameters...")) + content.setStyleSheet(self.theme.CONTENT_STYLE) + content.setObjectName("tabContent") + content.setFocusPolicy(Qt.FocusPolicy.NoFocus) + layout.addWidget(content) + + # Форма с настройками + formLayout = QFormLayout() + formLayout.setContentsMargins(0, 10, 0, 0) + formLayout.setSpacing(10) + + # 1. Time detail_level + self.timeDetailCombo = QComboBox() + self.time_keys = ["detailed", "brief"] + self.time_labels = [_("detailed"), _("brief")] + self.timeDetailCombo.addItems(self.time_labels) + self.timeDetailCombo.setStyleSheet(self.theme.SETTINGS_COMBO_STYLE) + self.timeDetailCombo.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.timeDetailTitle = QLabel(_("Time Detail Level:")) + self.timeDetailTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.timeDetailTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + current = read_time_config() + try: + idx = self.time_keys.index(current) + except ValueError: + idx = 0 + self.timeDetailCombo.setCurrentIndex(idx) + formLayout.addRow(self.timeDetailTitle, self.timeDetailCombo) + + # 2. Games sort_method + self.gamesSortCombo = QComboBox() + self.sort_keys = ["last_launch", "playtime", "alphabetical", "favorites"] + self.sort_labels = [_("last launch"), _("playtime"), _("alphabetical"), _("favorites")] + self.gamesSortCombo.addItems(self.sort_labels) + self.gamesSortCombo.setStyleSheet(self.theme.SETTINGS_COMBO_STYLE) + self.gamesSortCombo.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.gamesSortTitle = QLabel(_("Games Sort Method:")) + self.gamesSortTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.gamesSortTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + current = read_sort_method() + try: + idx = self.sort_keys.index(current) + except ValueError: + idx = 0 + self.gamesSortCombo.setCurrentIndex(idx) + formLayout.addRow(self.gamesSortTitle, self.gamesSortCombo) + + # 3. Games display_filter + self.filter_keys = ["all", "steam", "portproton", "favorites", "epic"] + self.filter_labels = [_("all"), "steam", "portproton", _("favorites"), "epic games store"] + self.gamesDisplayCombo = QComboBox() + self.gamesDisplayCombo.addItems(self.filter_labels) + self.gamesDisplayCombo.setStyleSheet(self.theme.SETTINGS_COMBO_STYLE) + self.gamesDisplayCombo.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.gamesDisplayTitle = QLabel(_("Games Display Filter:")) + self.gamesDisplayTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.gamesDisplayTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + current = read_display_filter() + try: + idx = self.filter_keys.index(current) + except ValueError: + idx = 0 + self.gamesDisplayCombo.setCurrentIndex(idx) + formLayout.addRow(self.gamesDisplayTitle, self.gamesDisplayCombo) + + # 4. Proxy settings + self.proxyUrlEdit = QLineEdit() + self.proxyUrlEdit.setPlaceholderText(_("Proxy URL")) + self.proxyUrlEdit.setStyleSheet(self.theme.PROXY_INPUT_STYLE) + self.proxyUrlEdit.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.proxyUrlTitle = QLabel(_("Proxy URL:")) + self.proxyUrlTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.proxyUrlTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + proxy_cfg = read_proxy_config() + if proxy_cfg.get("http", ""): + self.proxyUrlEdit.setText(proxy_cfg["http"]) + formLayout.addRow(self.proxyUrlTitle, self.proxyUrlEdit) + + self.proxyUserEdit = QLineEdit() + self.proxyUserEdit.setPlaceholderText(_("Proxy Username")) + self.proxyUserEdit.setStyleSheet(self.theme.PROXY_INPUT_STYLE) + self.proxyUserEdit.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.proxyUserTitle = QLabel(_("Proxy Username:")) + self.proxyUserTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.proxyUserTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + formLayout.addRow(self.proxyUserTitle, self.proxyUserEdit) + + self.proxyPasswordEdit = QLineEdit() + self.proxyPasswordEdit.setPlaceholderText(_("Proxy Password")) + self.proxyPasswordEdit.setEchoMode(QLineEdit.EchoMode.Password) + self.proxyPasswordEdit.setStyleSheet(self.theme.PROXY_INPUT_STYLE) + self.proxyPasswordEdit.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.proxyPasswordTitle = QLabel(_("Proxy Password:")) + self.proxyPasswordTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.proxyPasswordTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + formLayout.addRow(self.proxyPasswordTitle, self.proxyPasswordEdit) + + # 5. Fullscreen setting for application + self.fullscreenCheckBox = QCheckBox(_("Launch Application in Fullscreen")) + #self.fullscreenCheckBox.setStyleSheet(self.theme.SETTINGS_CHECKBOX_STYLE) + self.fullscreenCheckBox.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.fullscreenTitle = QLabel(_("Application Fullscreen Mode:")) + self.fullscreenTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.fullscreenTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + current_fullscreen = read_fullscreen_config() + self.fullscreenCheckBox.setChecked(current_fullscreen) + formLayout.addRow(self.fullscreenTitle, self.fullscreenCheckBox) + + # 6. Legendary Authentication + self.legendaryAuthButton = AutoSizeButton( + _("Open Legendary Login"), + icon=self.theme_manager.get_icon("login") + ) + self.legendaryAuthButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + self.legendaryAuthButton.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.legendaryAuthButton.clicked.connect(self.openLegendaryLogin) + self.legendaryAuthTitle = QLabel(_("Legendary Authentication:")) + self.legendaryAuthTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.legendaryAuthTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + formLayout.addRow(self.legendaryAuthTitle, self.legendaryAuthButton) + + self.legendaryCodeEdit = QLineEdit() + self.legendaryCodeEdit.setPlaceholderText(_("Enter Legendary Authorization Code")) + self.legendaryCodeEdit.setStyleSheet(self.theme.PROXY_INPUT_STYLE) + self.legendaryCodeEdit.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.legendaryCodeTitle = QLabel(_("Authorization Code:")) + self.legendaryCodeTitle.setStyleSheet(self.theme.PARAMS_TITLE_STYLE) + self.legendaryCodeTitle.setFocusPolicy(Qt.FocusPolicy.NoFocus) + formLayout.addRow(self.legendaryCodeTitle, self.legendaryCodeEdit) + + self.submitCodeButton = AutoSizeButton( + _("Submit Code"), + icon=self.theme_manager.get_icon("save") + ) + self.submitCodeButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + self.submitCodeButton.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.submitCodeButton.clicked.connect(self.submitLegendaryCode) + formLayout.addRow(QLabel(""), self.submitCodeButton) + + layout.addLayout(formLayout) + + # Кнопки + buttonsLayout = QHBoxLayout() + buttonsLayout.setSpacing(10) + + # Кнопка сохранения настроек + self.saveButton = AutoSizeButton( + _("Save Settings"), + icon=self.theme_manager.get_icon("save") + ) + self.saveButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + self.saveButton.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.saveButton.clicked.connect(self.savePortProtonSettings) + buttonsLayout.addWidget(self.saveButton) + + # Кнопка сброса настроек + self.resetSettingsButton = AutoSizeButton( + _("Reset Settings"), + icon=self.theme_manager.get_icon("update") + ) + self.resetSettingsButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + self.resetSettingsButton.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.resetSettingsButton.clicked.connect(self.resetSettings) + buttonsLayout.addWidget(self.resetSettingsButton) + + # Кнопка очистки кэша + self.clearCacheButton = AutoSizeButton( + _("Clear Cache"), + icon=self.theme_manager.get_icon("update") + ) + self.clearCacheButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + self.clearCacheButton.setFocusPolicy(Qt.FocusPolicy.StrongFocus) + self.clearCacheButton.clicked.connect(self.clearCache) + buttonsLayout.addWidget(self.clearCacheButton) + + layout.addLayout(buttonsLayout) + layout.addStretch(1) + self.stackedWidget.addWidget(self.portProtonWidget) + + def openLegendaryLogin(self): + """Opens the Legendary login page in the default web browser.""" + login_url = "https://legendary.gl/epiclogin" + try: + QDesktopServices.openUrl(QUrl(login_url)) + self.statusBar().showMessage(_("Opened Legendary login page in browser"), 3000) + except Exception as e: + logger.error(f"Failed to open Legendary login page: {e}") + self.statusBar().showMessage(_("Failed to open Legendary login page"), 3000) + + def submitLegendaryCode(self): + """Submits the Legendary authorization code using the legendary CLI.""" + auth_code = self.legendaryCodeEdit.text().strip() + if not auth_code: + QMessageBox.warning(self, _("Error"), _("Please enter an authorization code")) + return + + try: + # Execute legendary auth command + result = subprocess.run( + [self.legendary_path, "auth", "--code", auth_code], + capture_output=True, + text=True, + check=True + ) + logger.info("Legendary authentication successful: %s", result.stdout) + self.statusBar().showMessage(_("Successfully authenticated with Legendary"), 3000) + self.legendaryCodeEdit.clear() + # Reload Epic Games Store games after successful authentication + self.games = self.loadGames() + self.updateGameGrid() + except subprocess.CalledProcessError as e: + logger.error("Legendary authentication failed: %s", e.stderr) + self.statusBar().showMessage(_("Legendary authentication failed: {0}").format(e.stderr), 5000) + except FileNotFoundError: + logger.error("Legendary executable not found at %s", self.legendary_path) + self.statusBar().showMessage(_("Legendary executable not found"), 5000) + except Exception as e: + logger.error("Unexpected error during Legendary authentication: %s", str(e)) + self.statusBar().showMessage(_("Unexpected error during authentication"), 5000) + + def resetSettings(self): + """Сбрасывает настройки и перезапускает приложение.""" + reply = QMessageBox.question( + self, + _("Confirm Reset"), + _("Are you sure you want to reset all settings? This action cannot be undone."), + QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No, + QMessageBox.StandardButton.No + ) + if reply == QMessageBox.StandardButton.Yes: + reset_config() + + # Показываем сообщение + self.statusBar().showMessage(_("Settings reset. Restarting..."), 3000) + + # Перезапускаем приложение + QTimer.singleShot(1000, lambda: self.restart_application()) + + def clearCache(self): + """Очищает кэш.""" + reply = QMessageBox.question( + self, + _("Confirm Clear Cache"), + _("Are you sure you want to clear the cache? This action cannot be undone."), + QMessageBox.StandardButton.Yes | QMessageBox.StandardButton.No, + QMessageBox.StandardButton.No + ) + if reply == QMessageBox.StandardButton.Yes: + clear_cache() + + # Показываем сообщение + self.statusBar().showMessage(_("Cache cleared"), 3000) + + def savePortProtonSettings(self): + """ + Сохраняет параметры конфигурации в конфигурационный файл, + """ + time_idx = self.timeDetailCombo.currentIndex() + time_key = self.time_keys[time_idx] + save_time_config(time_key) + + sort_idx = self.gamesSortCombo.currentIndex() + sort_key = self.sort_keys[sort_idx] + save_sort_method(sort_key) + + filter_idx = self.gamesDisplayCombo.currentIndex() + filter_key = self.filter_keys[filter_idx] + save_display_filter(filter_key) + + # Сохранение proxy настроек + proxy_url = self.proxyUrlEdit.text().strip() + proxy_user = self.proxyUserEdit.text().strip() + proxy_password = self.proxyPasswordEdit.text().strip() + save_proxy_config(proxy_url, proxy_user, proxy_password) + + fullscreen = self.fullscreenCheckBox.isChecked() + save_fullscreen_config(fullscreen) + + # Перезагружаем настройки + read_time_config() + self.games = self.loadGames() + self.updateGameGrid() + self.settings_saved.emit() + + if fullscreen: + self.showFullScreen() + else: + self.showNormal() + save_window_geometry(self.width(), self.height()) + + self.statusBar().showMessage(_("Settings saved"), 3000) + + def createThemeTab(self): + """Вкладка 'Themes'""" + self.themeTabWidget = QWidget() + self.themeTabWidget.setStyleSheet(self.theme.OTHER_PAGES_WIDGET_STYLE) + self.themeTabWidget.setObjectName("otherPage") + mainLayout = QVBoxLayout(self.themeTabWidget) + mainLayout.setContentsMargins(10, 14, 10, 10) + mainLayout.setSpacing(10) + + # 1. Верхняя строка: Заголовок и список тем + self.themeTabHeaderLayout = QHBoxLayout() + + self.themeTabTitleLabel = QLabel(_("Select Theme:")) + self.themeTabTitleLabel.setObjectName("tabTitle") + self.themeTabTitleLabel.setStyleSheet(self.theme.TAB_TITLE_STYLE) + self.themeTabHeaderLayout.addWidget(self.themeTabTitleLabel) + + self.themesCombo = QComboBox() + self.themesCombo.setStyleSheet(self.theme.SETTINGS_COMBO_STYLE) + self.themesCombo.setObjectName("comboString") + available_themes = self.theme_manager.get_available_themes() + if self.current_theme_name in available_themes: + available_themes.remove(self.current_theme_name) + available_themes.insert(0, self.current_theme_name) + self.themesCombo.addItems(available_themes) + self.themeTabHeaderLayout.addWidget(self.themesCombo) + self.themeTabHeaderLayout.addStretch(1) + + mainLayout.addLayout(self.themeTabHeaderLayout) + + # 2. Карусель скриншотов + self.screenshotsCarousel = ImageCarousel([]) + self.screenshotsCarousel.setStyleSheet(self.theme.CAROUSEL_WIDGET_STYLE) + mainLayout.addWidget(self.screenshotsCarousel, stretch=1) + + # 3. Информация о теме + self.themeInfoLayout = QVBoxLayout() + self.themeInfoLayout.setSpacing(10) + + self.themeMetainfoLabel = QLabel() + self.themeMetainfoLabel.setWordWrap(True) + self.themeInfoLayout.addWidget(self.themeMetainfoLabel) + + self.applyButton = AutoSizeButton(_("Apply Theme"), icon=self.theme_manager.get_icon("update")) + self.applyButton.setStyleSheet(self.theme.ACTION_BUTTON_STYLE) + self.applyButton.setObjectName("actionButton") + self.themeInfoLayout.addWidget(self.applyButton) + + mainLayout.addLayout(self.themeInfoLayout) + + # Функция обновления превью + def updateThemePreview(theme_name): + meta = load_theme_metainfo(theme_name) + link = meta.get("author_link", "") + link_html = f'{link}' if link else _("No link") + unknown_author = _("Unknown") + + preview_text = ( + "" + _("Name:") + " " + meta.get('name', theme_name) + "
" + + "" + _("Description:") + " " + meta.get('description', '') + "
" + + "" + _("Author:") + " " + meta.get('author', unknown_author) + "
" + + "" + _("Link:") + " " + link_html + ) + self.themeMetainfoLabel.setText(preview_text) + self.themeMetainfoLabel.setStyleSheet(self.theme.CONTENT_STYLE) + self.themeMetainfoLabel.setFocusPolicy(Qt.FocusPolicy.NoFocus) + + screenshots = load_theme_screenshots(theme_name) + if screenshots: + self.screenshotsCarousel.update_images([ + (pixmap, os.path.splitext(filename)[0]) + for pixmap, filename in screenshots + ]) + self.screenshotsCarousel.show() + else: + self.screenshotsCarousel.hide() + + updateThemePreview(self.current_theme_name) + self.themesCombo.currentTextChanged.connect(updateThemePreview) + + # Логика применения темы + def on_apply(): + selected_theme = self.themesCombo.currentText() + if selected_theme: + theme_module = self.theme_manager.apply_theme(selected_theme) + if theme_module: + save_theme_to_config(selected_theme) + self.statusBar().showMessage(_("Theme '{0}' applied successfully").format(selected_theme), 3000) + xdg_data_home = os.getenv("XDG_DATA_HOME", + os.path.join(os.path.expanduser("~"), ".local", "share")) + state_file = os.path.join(xdg_data_home, "PortProtonQT", "state.txt") + os.makedirs(os.path.dirname(state_file), exist_ok=True) + with open(state_file, "w", encoding="utf-8") as f: + f.write("theme_tab\n") + QTimer.singleShot(500, lambda: self.restart_application()) + else: + self.statusBar().showMessage(_("Error applying theme '{0}'").format(selected_theme), 3000) + + self.applyButton.clicked.connect(on_apply) + + # Добавляем виджет в stackedWidget + self.stackedWidget.addWidget(self.themeTabWidget) + + def restart_application(self): + """Перезапускает приложение.""" + if not self.isFullScreen(): + save_window_geometry(self.width(), self.height()) + python = sys.executable + os.execl(python, python, *sys.argv) + + def restore_state(self): + """Восстанавливает состояние приложения после перезапуска.""" + xdg_cache_home = os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")) + state_file = os.path.join(xdg_cache_home, "PortProtonQT", "state.txt") + if os.path.exists(state_file): + with open(state_file, encoding="utf-8") as f: + state = f.read().strip() + if state == "theme_tab": + self.switchTab(5) + os.remove(state_file) + + # ЛОГИКА ДЕТАЛЬНОЙ СТРАНИЦЫ ИГРЫ + def getColorPalette_async(self, cover_path, num_colors=5, sample_step=10, callback=None): + def on_pixmap(pixmap): + if pixmap.isNull(): + if callback: + callback([QColor("#1a1a1a")] * num_colors) + return + + image = pixmap.toImage() + width, height = image.width(), image.height() + histogram = {} + for x in range(0, width, sample_step): + for y in range(0, height, sample_step): + color = image.pixelColor(x, y) + key = (color.red() // 32, color.green() // 32, color.blue() // 32) + if key in histogram: + histogram[key][0] += color.red() + histogram[key][1] += color.green() + histogram[key][2] += color.blue() + histogram[key][3] += 1 + else: + histogram[key] = [color.red(), color.green(), color.blue(), 1] + avg_colors = [] + for _unused, (r_sum, g_sum, b_sum, count) in histogram.items(): + avg_r = r_sum // count + avg_g = g_sum // count + avg_b = b_sum // count + avg_colors.append((count, QColor(avg_r, avg_g, avg_b))) + avg_colors.sort(key=lambda x: x[0], reverse=True) + palette = [color for count, color in avg_colors[:num_colors]] + if len(palette) < num_colors: + palette += [palette[-1]] * (num_colors - len(palette)) + if callback: + callback(palette) + + load_pixmap_async(cover_path, 180, 250, on_pixmap) + + def darkenColor(self, color, factor=200): + return color.darker(factor) + + def openGameDetailPage(self, name, description, cover_path=None, appid="", exec_line="", controller_support="", last_launch="", formatted_playtime="", protondb_tier="", steam_game=""): + detailPage = QWidget() + self._animations = {} + imageLabel = QLabel() + imageLabel.setFixedSize(300, 400) + + if cover_path: + def on_pixmap_ready(pixmap): + rounded = round_corners(pixmap, 10) + imageLabel.setPixmap(rounded) + + def on_palette_ready(palette): + dark_palette = [self.darkenColor(color, factor=200) for color in palette] + stops = ",\n".join( + [f"stop:{i/(len(dark_palette)-1):.2f} {dark_palette[i].name()}" for i in range(len(dark_palette))] + ) + detailPage.setStyleSheet(self.theme.detail_page_style(stops)) + + self.getColorPalette_async(cover_path, num_colors=5, callback=on_palette_ready) + + load_pixmap_async(cover_path, 300, 400, on_pixmap_ready) + else: + detailPage.setStyleSheet(self.theme.DETAIL_PAGE_NO_COVER_STYLE) + + mainLayout = QVBoxLayout(detailPage) + mainLayout.setContentsMargins(30, 30, 30, 30) + mainLayout.setSpacing(20) + + backButton = AutoSizeButton(_("Back"), icon=self.theme_manager.get_icon("back")) + backButton.setFixedWidth(100) + backButton.setStyleSheet(self.theme.ADDGAME_BACK_BUTTON_STYLE) + backButton.clicked.connect(lambda: self.goBackDetailPage(detailPage)) + mainLayout.addWidget(backButton, alignment=Qt.AlignmentFlag.AlignLeft) + + contentFrame = QFrame() + contentFrame.setStyleSheet(self.theme.DETAIL_CONTENT_FRAME_STYLE) + contentFrameLayout = QHBoxLayout(contentFrame) + contentFrameLayout.setContentsMargins(20, 20, 20, 20) + contentFrameLayout.setSpacing(40) + mainLayout.addWidget(contentFrame) + + # Обложка (слева) + coverFrame = QFrame() + coverFrame.setFixedSize(300, 400) + coverFrame.setStyleSheet(self.theme.COVER_FRAME_STYLE) + shadow = QGraphicsDropShadowEffect(coverFrame) + shadow.setBlurRadius(20) + shadow.setColor(QColor(0, 0, 0, 200)) + shadow.setOffset(0, 0) + coverFrame.setGraphicsEffect(shadow) + coverLayout = QVBoxLayout(coverFrame) + coverLayout.setContentsMargins(0, 0, 0, 0) + + coverLayout.addWidget(imageLabel) + + # Добавляем значок избранного поверх обложки в левом верхнем углу + favoriteLabelCover = ClickableLabel(coverFrame) + favoriteLabelCover.setFixedSize(*self.theme.favoriteLabelSize) + favoriteLabelCover.setStyleSheet(self.theme.FAVORITE_LABEL_STYLE) + favorites = read_favorites() + if name in favorites: + favoriteLabelCover.setText("★") + else: + favoriteLabelCover.setText("☆") + favoriteLabelCover.clicked.connect(lambda: self.toggleFavoriteInDetailPage(name, favoriteLabelCover)) + favoriteLabelCover.move(8, 8) + favoriteLabelCover.raise_() + + contentFrameLayout.addWidget(coverFrame) + + # Детали игры (справа) + detailsWidget = QWidget() + detailsWidget.setStyleSheet(self.theme.DETAILS_WIDGET_STYLE) + detailsLayout = QVBoxLayout(detailsWidget) + detailsLayout.setContentsMargins(20, 20, 20, 20) + detailsLayout.setSpacing(15) + + titleLabel = QLabel(name) + titleLabel.setStyleSheet(self.theme.DETAIL_PAGE_TITLE_STYLE) + detailsLayout.addWidget(titleLabel) + + line = QFrame() + line.setFrameShape(QFrame.Shape.HLine) + line.setStyleSheet(self.theme.DETAIL_PAGE_LINE_STYLE) + detailsLayout.addWidget(line) + + descLabel = QLabel(description) + descLabel.setWordWrap(True) + descLabel.setStyleSheet(self.theme.DETAIL_PAGE_DESC_STYLE) + detailsLayout.addWidget(descLabel) + + infoLayout = QHBoxLayout() + infoLayout.setSpacing(10) + lastLaunchTitle = QLabel(_("LAST LAUNCH")) + lastLaunchTitle.setStyleSheet(self.theme.LAST_LAUNCH_TITLE_STYLE) + lastLaunchValue = QLabel(last_launch) + lastLaunchValue.setStyleSheet(self.theme.LAST_LAUNCH_VALUE_STYLE) + playTimeTitle = QLabel(_("PLAY TIME")) + playTimeTitle.setStyleSheet(self.theme.PLAY_TIME_TITLE_STYLE) + playTimeValue = QLabel(formatted_playtime) + playTimeValue.setStyleSheet(self.theme.PLAY_TIME_VALUE_STYLE) + infoLayout.addWidget(lastLaunchTitle) + infoLayout.addWidget(lastLaunchValue) + infoLayout.addSpacing(30) + infoLayout.addWidget(playTimeTitle) + infoLayout.addWidget(playTimeValue) + detailsLayout.addLayout(infoLayout) + + if controller_support: + cs = controller_support.lower() + translated_cs = "" + if cs == "full": + translated_cs = _("full") + elif cs == "partial": + translated_cs = _("partial") + elif cs == "none": + translated_cs = _("none") + gamepadSupportLabel = QLabel(_("Gamepad Support: {0}").format(translated_cs)) + gamepadSupportLabel.setAlignment(Qt.AlignmentFlag.AlignCenter) + gamepadSupportLabel.setStyleSheet(self.theme.GAMEPAD_SUPPORT_VALUE_STYLE) + detailsLayout.addWidget(gamepadSupportLabel, alignment=Qt.AlignmentFlag.AlignCenter) + + detailsLayout.addStretch(1) + + # Определяем текущий идентификатор игры по exec_line для корректного отображения кнопки + entry_exec_split = shlex.split(exec_line) + if not entry_exec_split: + return + + if entry_exec_split[0] == "env": + file_to_check = entry_exec_split[2] if len(entry_exec_split) >= 3 else None + elif entry_exec_split[0] == "flatpak": + file_to_check = entry_exec_split[3] if len(entry_exec_split) >= 4 else None + else: + file_to_check = entry_exec_split[0] + current_exe = os.path.basename(file_to_check) if file_to_check else None + + if self.target_exe is not None and current_exe == self.target_exe: + playButton = AutoSizeButton(_("Stop"), icon=self.theme_manager.get_icon("stop")) + else: + playButton = AutoSizeButton(_("Play"), icon=self.theme_manager.get_icon("play")) + + playButton.setFixedSize(120, 40) + playButton.setStyleSheet(self.theme.PLAY_BUTTON_STYLE) + playButton.clicked.connect(lambda: self.toggleGame(exec_line, playButton)) + detailsLayout.addWidget(playButton, alignment=Qt.AlignmentFlag.AlignLeft) + + contentFrameLayout.addWidget(detailsWidget) + mainLayout.addStretch() + + self.stackedWidget.addWidget(detailPage) + self.stackedWidget.setCurrentWidget(detailPage) + self.currentDetailPage = detailPage + self.current_exec_line = exec_line + self.current_play_button = playButton + + # Анимация + opacityEffect = QGraphicsOpacityEffect(detailPage) + detailPage.setGraphicsEffect(opacityEffect) + animation = QPropertyAnimation(opacityEffect, QByteArray(b"opacity")) + animation.setDuration(800) + animation.setStartValue(0) + animation.setEndValue(1) + animation.start(QAbstractAnimation.DeletionPolicy.DeleteWhenStopped) + self._animations[detailPage] = animation + animation.finished.connect( + lambda: detailPage.setGraphicsEffect(cast(QGraphicsEffect, None)) + ) + + def toggleFavoriteInDetailPage(self, game_name, label): + favorites = read_favorites() + if game_name in favorites: + favorites.remove(game_name) + label.setText("☆") + else: + favorites.append(game_name) + label.setText("★") + save_favorites(favorites) + self.updateGameGrid() + + def activateFocusedWidget(self): + """Activate the currently focused widget.""" + focused_widget = QApplication.focusWidget() + if not focused_widget: + return + if isinstance(focused_widget, ClickableLabel): + focused_widget.clicked.emit() + elif isinstance(focused_widget, AutoSizeButton): + focused_widget.click() + elif isinstance(focused_widget, QPushButton): + focused_widget.click() + elif isinstance(focused_widget, NavLabel): + focused_widget.clicked.emit() + elif isinstance(focused_widget, ImageCarousel): + if focused_widget.image_items: + current_item = focused_widget.image_items[focused_widget.horizontalScrollBar().value() // 100] + current_item.show_fullscreen() + elif isinstance(focused_widget, QLineEdit): + focused_widget.setFocus() + focused_widget.selectAll() + elif isinstance(focused_widget, QCheckBox): + focused_widget.setChecked(not focused_widget.isChecked()) + elif isinstance(focused_widget, GameCard): + focused_widget.select_callback( + focused_widget.name, + focused_widget.description, + focused_widget.cover_path, + focused_widget.appid, + focused_widget.controller_support, + focused_widget.exec_line, + focused_widget.last_launch, + focused_widget.formatted_playtime, + focused_widget.protondb_tier, + focused_widget.steam_game + ) + + def goBackDetailPage(self, page: QWidget | None) -> None: + if page is None or page != self.stackedWidget.currentWidget(): + return + self.stackedWidget.setCurrentIndex(0) + self.stackedWidget.removeWidget(page) + page.deleteLater() + self.currentDetailPage = None + self.current_exec_line = None + self.current_play_button = None + + def is_target_exe_running(self): + """Проверяет, запущен ли процесс с именем self.target_exe через psutil.""" + if not self.target_exe: + return False + for proc in psutil.process_iter(attrs=["name"]): + if proc.info["name"].lower() == self.target_exe.lower(): + return True + return False + + def checkTargetExe(self): + """ + Проверяет, запущена ли игра. + Если процесс игры (target_exe) обнаружен – устанавливаем флаг и обновляем кнопку. + Если игра завершилась – сбрасываем флаг, обновляем кнопку и останавливаем таймер. + """ + target_running = self.is_target_exe_running() + child_running = any(proc.poll() is None for proc in self.game_processes) + + if target_running: + # Игра стартовала – устанавливаем флаг, обновляем кнопку на "Stop" + self._gameLaunched = True + if self.current_running_button is not None: + self.current_running_button.setText(_("Stop")) + #self._inhibit_screensaver() + elif not child_running: + # Игра завершилась – сбрасываем флаг, сбрасываем кнопку и останавливаем таймер + self._gameLaunched = False + self.resetPlayButton() + #self._uninhibit_screensaver() + if hasattr(self, 'checkProcessTimer') and self.checkProcessTimer is not None: + self.checkProcessTimer.stop() + self.checkProcessTimer.deleteLater() + self.checkProcessTimer = None + + def resetPlayButton(self): + """ + Сбрасывает кнопку запуска игры: + меняет текст на "Играть", устанавливает иконку и сбрасывает переменные. + Вызывается, когда игра завершилась (не по нажатию кнопки). + """ + if self.current_running_button is not None: + self.current_running_button.setText(_("Play")) + icon = self.theme_manager.get_icon("play") + if isinstance(icon, str): + icon = QIcon(icon) # Convert path to QIcon + elif icon is None: + icon = QIcon() # Use empty QIcon as fallback + self.current_running_button.setIcon(icon) + self.current_running_button = None + self.target_exe = None + + def toggleGame(self, exec_line, button=None): + if exec_line.startswith("steam://"): + url = QUrl(exec_line) + QDesktopServices.openUrl(url) + return + + entry_exec_split = shlex.split(exec_line) + if entry_exec_split[0] == "env": + if len(entry_exec_split) < 3: + QMessageBox.warning(self, _("Error"), _("Invalid command format (native)")) + return + file_to_check = entry_exec_split[2] + elif entry_exec_split[0] == "flatpak": + if len(entry_exec_split) < 4: + QMessageBox.warning(self, _("Error"), _("Invalid command format (flatpak)")) + return + file_to_check = entry_exec_split[3] + else: + file_to_check = entry_exec_split[0] + if not os.path.exists(file_to_check): + QMessageBox.warning(self, _("Error"), _("File not found: {0}").format(file_to_check)) + return + current_exe = os.path.basename(file_to_check) + + if self.game_processes and self.target_exe is not None and self.target_exe != current_exe: + QMessageBox.warning(self, _("Error"), _("Cannot launch game while another game is running")) + return + + update_button = button if button is not None else self.current_play_button + + # Если игра уже запущена для этого exe – останавливаем её по нажатию кнопки + if self.game_processes and self.target_exe == current_exe: + for proc in self.game_processes: + try: + parent = psutil.Process(proc.pid) + children = parent.children(recursive=True) + for child in children: + try: + child.terminate() + except psutil.NoSuchProcess: + pass + psutil.wait_procs(children, timeout=5) + for child in children: + if child.is_running(): + child.kill() + os.killpg(os.getpgid(proc.pid), signal.SIGTERM) + except psutil.NoSuchProcess: + pass + self.game_processes = [] + if update_button: + update_button.setText(_("Play")) + icon = self.theme_manager.get_icon("play") + if isinstance(icon, str): + icon = QIcon(icon) + elif icon is None: + icon = QIcon() + update_button.setIcon(icon) + if hasattr(self, 'checkProcessTimer') and self.checkProcessTimer is not None: + self.checkProcessTimer.stop() + self.checkProcessTimer.deleteLater() + self.checkProcessTimer = None + self.current_running_button = None + self.target_exe = None + self._gameLaunched = False + #self._uninhibit_screensaver() + else: + # Сохраняем ссылку на кнопку для сброса после завершения игры + self.current_running_button = update_button + self.target_exe = current_exe + exe_name = os.path.splitext(current_exe)[0] + env_vars = os.environ.copy() + if entry_exec_split[0] == "env" and len(entry_exec_split) > 1 and 'data/scripts/start.sh' in entry_exec_split[1]: + env_vars['START_FROM_STEAM'] = '1' + elif entry_exec_split[0] == "flatpak": + env_vars['START_FROM_STEAM'] = '1' + process = subprocess.Popen(entry_exec_split, env=env_vars, shell=False, preexec_fn=os.setsid) + self.game_processes.append(process) + save_last_launch(exe_name, datetime.now()) + if update_button: + update_button.setText(_("Launching")) + icon = self.theme_manager.get_icon("stop") + if isinstance(icon, str): + icon = QIcon(icon) + elif icon is None: + icon = QIcon() + update_button.setIcon(icon) + + self.checkProcessTimer = QTimer(self) + self.checkProcessTimer.timeout.connect(self.checkTargetExe) + self.checkProcessTimer.start(500) + + def closeEvent(self, event): + for proc in self.game_processes: + try: + os.killpg(os.getpgid(proc.pid), signal.SIGTERM) + except ProcessLookupError: + pass # процесс уже завершился + + if not read_fullscreen_config(): + save_window_geometry(self.width(), self.height()) + + save_card_size(self.card_width) + event.accept() diff --git a/portprotonqt/steam_api.py b/portprotonqt/steam_api.py new file mode 100644 index 0000000..df72b03 --- /dev/null +++ b/portprotonqt/steam_api.py @@ -0,0 +1,1134 @@ +import functools +import os +import shlex +import subprocess +import time +import html +import orjson +import vdf +import tarfile +import threading +from pathlib import Path +from portprotonqt.logger import get_logger +from portprotonqt.localization import get_steam_language +from portprotonqt.downloader import Downloader +from portprotonqt.dialogs import generate_thumbnail +from portprotonqt.config_utils import get_portproton_location +from collections.abc import Callable +import re +import shutil +import zlib + +downloader = Downloader() +logger = get_logger(__name__) +CACHE_DURATION = 30 * 24 * 60 * 60 + +def safe_vdf_load(path: str | Path) -> dict: + path = str(path) # Convert Path to str + try: + with open(path, 'rb') as f: + data = vdf.binary_load(f) + return data + except Exception as e: + try: + with open(path, encoding='utf-8', errors='ignore') as f: + data = vdf.load(f) + return data + except Exception: + logger.error(f"Failed to load VDF file {path}: {e}") + return {} + +def decode_text(text: str) -> str: + """ + Декодирует HTML-сущности в строке. + Например, "&quot;" преобразуется в '"'. + Остальные символы и HTML-теги остаются без изменений. + """ + return html.unescape(text) + +def get_cache_dir(): + """Возвращает путь к каталогу кэша, создаёт его при необходимости.""" + xdg_cache_home = os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")) + cache_dir = os.path.join(xdg_cache_home, "PortProtonQT") + os.makedirs(cache_dir, exist_ok=True) + return cache_dir + +STEAM_DATA_DIRS = ( + "~/.local/share/Steam", + "~/snap/steam/common/.local/share/Steam", + "~/.var/app/com.valvesoftware.Steam/data/Steam", +) + +def get_steam_home(): + """Возвращает путь к директории Steam, используя список возможных директорий.""" + for dir_path in STEAM_DATA_DIRS: + expanded_path = Path(os.path.expanduser(dir_path)) + if expanded_path.exists(): + return expanded_path + return None + +def get_last_steam_user(steam_home: Path) -> dict | None: + """Возвращает данные последнего пользователя Steam из loginusers.vdf.""" + loginusers_path = steam_home / "config/loginusers.vdf" + data = safe_vdf_load(loginusers_path) + if not data: + return None + users = data.get('users', {}) + for user_id, user_info in users.items(): + if user_info.get('MostRecent') == '1': + try: + return {'SteamID': int(user_id)} + except ValueError: + logger.error(f"Неверный формат SteamID: {user_id}") + return None + logger.info("Не найден пользователь с MostRecent=1") + return None + +def convert_steam_id(steam_id: int) -> int: + """ + Преобразует знаковое 32-битное целое число в беззнаковое 32-битное целое число. + Использует побитовое И с 0xFFFFFFFF, что корректно обрабатывает отрицательные значения. + """ + return steam_id & 0xFFFFFFFF + +def get_steam_libs(steam_dir: Path) -> set[Path]: + """Возвращает набор директорий Steam libraryfolders.""" + libs = set() + libs_vdf = steam_dir / "steamapps/libraryfolders.vdf" + data = safe_vdf_load(libs_vdf) + folders = data.get('libraryfolders', {}) + for key, info in folders.items(): + if key.isdigit(): + path_str = info.get('path') if isinstance(info, dict) else None + if path_str: + path = Path(path_str).expanduser() + if path.exists(): + libs.add(path) + libs.add(steam_dir) + return libs + +def get_playtime_data(steam_home: Path | None = None) -> dict[int, tuple[int, int]]: + """Возвращает данные о времени игры для последнего пользователя.""" + play_data: dict[int, tuple[int, int]] = {} + if steam_home is None: + steam_home = get_steam_home() + if steam_home is None or not steam_home.exists(): + logger.error("Steam home directory not found or does not exist") + return play_data + + userdata_dir = steam_home / "userdata" + if not userdata_dir.exists(): + logger.info("Userdata directory not found") + return play_data + + if steam_home is not None: # Explicit check for type checker + last_user = get_last_steam_user(steam_home) + else: + logger.info("Steam home is None, cannot retrieve last user") + return play_data + + if not last_user: + logger.info("Не удалось определить последнего пользователя Steam") + return play_data + + user_id = last_user['SteamID'] + unsigned_id = convert_steam_id(user_id) + user_dir = userdata_dir / str(unsigned_id) + if not user_dir.exists(): + logger.info(f"Директория пользователя {unsigned_id} не найдена") + return play_data + + localconfig = user_dir / "config/localconfig.vdf" + data = safe_vdf_load(localconfig) + cfg = data.get('UserLocalConfigStore', {}) + apps = cfg.get('Software', {}).get('Valve', {}).get('Steam', {}).get('apps', {}) + for appid_str, info in apps.items(): + try: + appid = int(appid_str) + last_played = int(info.get('LastPlayed', 0)) + playtime = int(info.get('Playtime', 0)) + play_data[appid] = (last_played, playtime) + except ValueError: + logger.warning(f"Некорректные данные playtime для app {appid_str}") + return play_data + +def get_steam_installed_games() -> list[tuple[str, int, int, int]]: + """Возвращает список установленных Steam игр в формате (name, appid, last_played, playtime_sec).""" + games: list[tuple[str, int, int, int]] = [] + steam_home = get_steam_home() + if steam_home is None or not steam_home.exists(): + logger.error("Steam home directory not found or does not exist") + return games + + play_data = get_playtime_data(steam_home) + for lib in get_steam_libs(steam_home): + steamapps_dir = lib / "steamapps" + if not steamapps_dir.exists(): + continue + for manifest in steamapps_dir.glob("appmanifest_*.acf"): + data = safe_vdf_load(manifest) + app = data.get('AppState', {}) + try: + appid = int(app.get('appid', 0)) + except ValueError: + continue + name = app.get('name', f"Unknown ({appid})") + lname = name.lower() + if any(token in lname for token in ["proton", "steamworks", "steam linux runtime"]): + continue + last_played, playtime_min = play_data.get(appid, (0, 0)) + games.append((name, appid, last_played, playtime_min * 60)) + return games + +def normalize_name(s): + """ + Приведение строки к нормальному виду: + - перевод в нижний регистр, + - удаление символов ™ и ®, + - замена разделителей (-, :, ,) на пробел, + - удаление лишних пробелов, + - удаление суффиксов 'bin' или 'app' в конце строки, + - удаление ключевых слов типа 'ultimate', 'edition' и т.п. + """ + s = s.lower() + for ch in ["™", "®"]: + s = s.replace(ch, "") + for ch in ["-", ":", ","]: + s = s.replace(ch, " ") + s = " ".join(s.split()) + for suffix in ["bin", "app"]: + if s.endswith(suffix): + s = s[:-len(suffix)].strip() + keywords_to_remove = {"ultimate", "edition", "definitive", "complete", "remastered"} + words = s.split() + filtered_words = [word for word in words if word not in keywords_to_remove] + return " ".join(filtered_words) + +def is_valid_candidate(candidate): + """ + Проверяет, содержит ли кандидат запрещённые подстроки: + - win32 + - win64 + - gamelauncher + Для проверки дополнительно используется строка без пробелов. + Возвращает True, если кандидат допустим, иначе False. + """ + normalized_candidate = normalize_name(candidate) + normalized_no_space = normalized_candidate.replace(" ", "") + forbidden = ["win32", "win64", "gamelauncher"] + for token in forbidden: + if token in normalized_no_space: + return False + return True + +def filter_candidates(candidates): + """ + Фильтрует список кандидатов, отбрасывая недопустимые. + """ + valid = [] + dropped = [] + for cand in candidates: + if cand.strip() and is_valid_candidate(cand): + valid.append(cand) + else: + dropped.append(cand) + if dropped: + logger.info("Отбрасываю кандидатов: %s", dropped) + return valid + +def remove_duplicates(candidates): + """ + Удаляет дубликаты из списка, сохраняя порядок. + """ + return list(dict.fromkeys(candidates)) + +@functools.lru_cache(maxsize=256) +def get_exiftool_data(game_exe): + """Получает метаданные через exiftool""" + try: + proc = subprocess.run( + ["exiftool", "-j", game_exe], + capture_output=True, + text=True, + check=False + ) + if proc.returncode != 0: + logger.error(f"exiftool error for {game_exe}: {proc.stderr.strip()}") + return {} + meta_data_list = orjson.loads(proc.stdout.encode("utf-8")) + return meta_data_list[0] if meta_data_list else {} + except Exception as e: + logger.error(f"An unexpected error occurred in get_exiftool_data for {game_exe}: {e}") + return {} + +def load_steam_apps_async(callback: Callable[[list], None]): + """ + Asynchronously loads the list of Steam applications, using cache if available. + Calls the callback with the list of apps. + """ + cache_dir = get_cache_dir() + cache_tar = os.path.join(cache_dir, "games_appid.tar.xz") + cache_json = os.path.join(cache_dir, "steam_apps.json") + + def process_tar(result: str | None): + if not result or not os.path.exists(result): + logger.error("Failed to download Steam apps archive") + callback([]) + return + try: + with tarfile.open(result, mode='r:xz') as tar: + member = next((m for m in tar.getmembers() if m.name.endswith('.json')), None) + if member is None: + raise RuntimeError("JSON file not found in archive") + fobj = tar.extractfile(member) + if fobj is None: + raise RuntimeError(f"Failed to extract file {member.name} from archive") + raw = fobj.read() + fobj.close() + data = orjson.loads(raw) + with open(cache_json, "wb") as f: + f.write(orjson.dumps(data)) + if os.path.exists(cache_tar): + os.remove(cache_tar) + logger.info("Archive %s deleted after extraction", cache_tar) + steam_apps = data.get("applist", {}).get("apps", []) if isinstance(data, dict) else data or [] + logger.info("Loaded %d apps from archive", len(steam_apps)) + callback(steam_apps) + except Exception as e: + logger.error("Error extracting Steam apps archive: %s", e) + callback([]) + + if os.path.exists(cache_json) and (time.time() - os.path.getmtime(cache_json) < CACHE_DURATION): + logger.info("Using cached Steam apps JSON: %s", cache_json) + try: + with open(cache_json, "rb") as f: + data = orjson.loads(f.read()) + steam_apps = data.get("applist", {}).get("apps", []) if isinstance(data, dict) else data or [] + logger.info("Loaded %d apps from cache", len(steam_apps)) + callback(steam_apps) + except Exception as e: + logger.error("Error reading cached JSON: %s", e) + callback([]) + else: + app_list_url = ( + "https://raw.githubusercontent.com/Boria138/PortProtonQt/" + "refs/heads/main/data/games_appid.tar.xz" + ) + downloader.download_async(app_list_url, cache_tar, timeout=5, callback=process_tar) + +def build_index(steam_apps): + """ + Строит индекс приложений по полю normalized_name. + """ + steam_apps_index = {} + if not steam_apps: + return steam_apps_index + logger.info("Построение индекса Steam приложений:") + for app in steam_apps: + normalized = app["normalized_name"] + steam_apps_index[normalized] = app + return steam_apps_index + +def search_app(candidate, steam_apps_index): + """ + Ищет приложение по кандидату: сначала пытается точное совпадение, затем ищет подстроку. + """ + candidate_norm = normalize_name(candidate) + logger.info("Поиск приложения для кандидата: '%s' -> '%s'", candidate, candidate_norm) + if candidate_norm in steam_apps_index: + logger.info(" Найдено точное совпадение: '%s'", candidate_norm) + return steam_apps_index[candidate_norm] + for name_norm, app in steam_apps_index.items(): + if candidate_norm in name_norm: + ratio = len(candidate_norm) / len(name_norm) + if ratio > 0.8: + logger.info(" Найдено частичное совпадение: кандидат '%s' в '%s' (ratio: %.2f)", + candidate_norm, name_norm, ratio) + return app + logger.info(" Приложение для кандидата '%s' не найдено", candidate_norm) + return None + +def load_app_details(app_id): + """Загружает кэшированные данные для игры по appid, если они не устарели.""" + cache_dir = get_cache_dir() + cache_file = os.path.join(cache_dir, f"steam_app_{app_id}.json") + if os.path.exists(cache_file): + if time.time() - os.path.getmtime(cache_file) < CACHE_DURATION: + with open(cache_file, "rb") as f: + return orjson.loads(f.read()) + return None + +def save_app_details(app_id, data): + """Сохраняет данные по appid в файл кэша.""" + cache_dir = get_cache_dir() + cache_file = os.path.join(cache_dir, f"steam_app_{app_id}.json") + with open(cache_file, "wb") as f: + f.write(orjson.dumps(data)) + +def fetch_app_info_async(app_id: int, callback: Callable[[dict | None], None]): + """ + Asynchronously fetches detailed app info from Steam API. + Calls the callback with the app data or None if failed. + """ + cached = load_app_details(app_id) + if cached is not None: + callback(cached) + return + + lang = get_steam_language() + url = f"https://store.steampowered.com/api/appdetails?appids={app_id}&l={lang}" + cache_dir = get_cache_dir() + cache_file = os.path.join(cache_dir, f"steam_app_{app_id}.json") + + def process_response(result: str | None): + if not result or not os.path.exists(result): + logger.error("Failed to download Steam app info for appid %s", app_id) + callback(None) + return + try: + with open(result, "rb") as f: + data = orjson.loads(f.read()) + details = data.get(str(app_id), {}) + if not details.get("success"): + callback(None) + return + app_data_full = details.get("data", {}) + app_data = { + "steam_appid": app_data_full.get("steam_appid", app_id), + "name": app_data_full.get("name", ""), + "short_description": app_data_full.get("short_description", ""), + "controller_support": app_data_full.get("controller_support", "") + } + save_app_details(app_id, app_data) + callback(app_data) + except Exception as e: + logger.error("Error processing Steam app info for appid %s: %s", app_id, e) + callback(None) + + downloader.download_async(url, cache_file, timeout=5, callback=process_response) + +def load_weanticheatyet_data_async(callback: Callable[[list], None]): + """ + Asynchronously loads the list of WeAntiCheatYet data, using cache if available. + Calls the callback with the list of anti-cheat data. + """ + cache_dir = get_cache_dir() + cache_tar = os.path.join(cache_dir, "anticheat_games.tar.xz") + cache_json = os.path.join(cache_dir, "anticheat_games.json") + + def process_tar(result: str | None): + if not result or not os.path.exists(result): + logger.error("Failed to download WeAntiCheatYet archive") + callback([]) + return + try: + with tarfile.open(result, mode='r:xz') as tar: + member = next((m for m in tar.getmembers() if m.name.endswith('anticheat_games_min.json')), None) + if member is None: + raise RuntimeError("JSON file not found in archive") + fobj = tar.extractfile(member) + if fobj is None: + raise RuntimeError(f"Failed to extract file {member.name} from archive") + raw = fobj.read() + fobj.close() + data = orjson.loads(raw) + with open(cache_json, "wb") as f: + f.write(orjson.dumps(data)) + if os.path.exists(cache_tar): + os.remove(cache_tar) + logger.info("Archive %s deleted after extraction", cache_tar) + anti_cheat_data = data or [] + logger.info("Loaded %d anti-cheat entries from archive", len(anti_cheat_data)) + callback(anti_cheat_data) + except Exception as e: + logger.error("Error extracting WeAntiCheatYet archive: %s", e) + callback([]) + + if os.path.exists(cache_json) and (time.time() - os.path.getmtime(cache_json) < CACHE_DURATION): + logger.info("Using cached WeAntiCheatYet JSON: %s", cache_json) + try: + with open(cache_json, "rb") as f: + data = orjson.loads(f.read()) + anti_cheat_data = data or [] + logger.info("Loaded %d anti-cheat entries from cache", len(anti_cheat_data)) + callback(anti_cheat_data) + except Exception as e: + logger.error("Error reading cached WeAntiCheatYet JSON: %s", e) + callback([]) + else: + app_list_url = ( + "https://raw.githubusercontent.com/Boria138/PortProtonQt/" + "refs/heads/main/data/anticheat_games.tar.xz" + ) + downloader.download_async(app_list_url, cache_tar, timeout=5, callback=process_tar) + +def build_weanticheatyet_index(anti_cheat_data): + """ + Строит индекс античит-данных по полю normalized_name. + """ + anti_cheat_index = {} + if not anti_cheat_data: + return anti_cheat_index + logger.info("Построение индекса WeAntiCheatYet данных:") + for entry in anti_cheat_data: + normalized = entry["normalized_name"] + anti_cheat_index[normalized] = entry + return anti_cheat_index + +def search_anticheat_status(candidate, anti_cheat_index): + candidate_norm = normalize_name(candidate) + logger.info("Поиск античит-статуса для кандидата: '%s' -> '%s'", candidate, candidate_norm) + if candidate_norm in anti_cheat_index: + status = anti_cheat_index[candidate_norm]["status"] + logger.info(" Найдено точное совпадение: '%s', статус: '%s'", candidate_norm, status) + return status + for name_norm, entry in anti_cheat_index.items(): + if candidate_norm in name_norm: + ratio = len(candidate_norm) / len(name_norm) + if ratio > 0.8: + status = entry["status"] + logger.info(" Найдено частичное совпадение: кандидат '%s' в '%s' (ratio: %.2f), статус: '%s'", + candidate_norm, name_norm, ratio, status) + return status + logger.info(" Античит-статус для кандидата '%s' не найден", candidate_norm) + return "" + +def get_weanticheatyet_status_async(game_name: str, callback: Callable[[str], None]): + """ + Asynchronously retrieves WeAntiCheatYet status for a game by name. + Calls the callback with the status string or empty string if not found. + """ + def on_anticheat_data(anti_cheat_data: list): + anti_cheat_index = build_weanticheatyet_index(anti_cheat_data) + status = search_anticheat_status(game_name, anti_cheat_index) + callback(status) + + load_weanticheatyet_data_async(on_anticheat_data) + +def load_protondb_status(appid): + """Загружает закешированные данные ProtonDB для игры по appid, если они не устарели.""" + cache_dir = get_cache_dir() + cache_file = os.path.join(cache_dir, f"protondb_{appid}.json") + if os.path.exists(cache_file): + if time.time() - os.path.getmtime(cache_file) < CACHE_DURATION: + try: + with open(cache_file, "rb") as f: + return orjson.loads(f.read()) + except Exception as e: + logger.error("Ошибка загрузки кеша ProtonDB для appid %s: %s", appid, e) + return None + +def save_protondb_status(appid, data): + """Сохраняет данные ProtonDB для игры по appid в файл кэша.""" + cache_dir = get_cache_dir() + cache_file = os.path.join(cache_dir, f"protondb_{appid}.json") + try: + with open(cache_file, "wb") as f: + f.write(orjson.dumps(data)) + except Exception as e: + logger.error("Ошибка сохранения кеша ProtonDB для appid %s: %s", appid, e) + +def get_protondb_tier_async(appid: int, callback: Callable[[str], None]): + """ + Asynchronously fetches ProtonDB tier for an app. + Calls the callback with the tier string or empty string if failed. + """ + cached = load_protondb_status(appid) + if cached is not None: + callback(cached.get("tier", "")) + return + + url = f"https://www.protondb.com/api/v1/reports/summaries/{appid}.json" + cache_dir = get_cache_dir() + cache_file = os.path.join(cache_dir, f"protondb_{appid}.json") + + def process_response(result: str | None): + if not result or not os.path.exists(result): + logger.info("Failed to download ProtonDB data for appid %s", appid) + callback("") + return + try: + with open(result, "rb") as f: + data = orjson.loads(f.read()) + filtered_data = {"tier": data.get("tier", "")} + save_protondb_status(appid, filtered_data) + callback(filtered_data["tier"]) + except Exception as e: + logger.info("Failed to process ProtonDB data for appid %s: %s", appid, e) + callback("") + + downloader.download_async(url, cache_file, timeout=5, callback=process_response) + +def get_full_steam_game_info_async(appid: int, callback: Callable[[dict], None]): + """ + Asynchronously retrieves full Steam game info, including WeAntiCheatYet status. + Calls the callback with the game info dictionary. + """ + def on_app_info(app_info: dict | None): + if not app_info: + callback({}) + return + title = decode_text(app_info.get("name", "")) + description = decode_text(app_info.get("short_description", "")) + cover = f"https://steamcdn-a.akamaihd.net/steam/apps/{appid}/library_600x900_2x.jpg" + + def on_protondb_tier(tier: str): + def on_anticheat_status(anticheat_status: str): + callback({ + 'description': description, + 'controller_support': app_info.get('controller_support', ''), + 'cover': cover, + 'protondb_tier': tier, + 'steam_game': "true", + 'name': title, + 'anticheat_status': anticheat_status + }) + + get_weanticheatyet_status_async(title, on_anticheat_status) + + get_protondb_tier_async(appid, on_protondb_tier) + + fetch_app_info_async(appid, on_app_info) + +def get_steam_game_info_async(desktop_name: str, exec_line: str, callback: Callable[[dict], tuple[bool, str] | None]) -> None: + """ + Asynchronously retrieves game info based on desktop name and exec line, including WeAntiCheatYet status for all games. + Calls the callback with the game info dictionary. + """ + parts = shlex.split(exec_line) + game_exe = parts[-1] if parts else exec_line + + if game_exe.lower().endswith('.bat'): + if os.path.exists(game_exe): + try: + with open(game_exe, encoding='utf-8') as f: + bat_lines = f.readlines() + for line in bat_lines: + line = line.strip() + if '.exe' in line.lower(): + tokens = shlex.split(line) + for token in tokens: + if token.lower().endswith('.exe'): + game_exe = token + break + if game_exe.lower().endswith('.exe'): + break + except Exception as e: + logger.error("Error processing bat file %s: %s", game_exe, e) + else: + logger.error("Bat file not found: %s", game_exe) + + if not game_exe.lower().endswith('.exe'): + logger.error("Invalid executable path: %s. Expected .exe", game_exe) + meta_data = {} + else: + meta_data = get_exiftool_data(game_exe) + + exe_name = os.path.splitext(os.path.basename(game_exe))[0] + folder_path = os.path.dirname(game_exe) + folder_name = os.path.basename(folder_path) + if folder_name.lower() in ['bin', 'binaries']: + folder_path = os.path.dirname(folder_path) + folder_name = os.path.basename(folder_path) + logger.info("Game folder name: '%s'", folder_name) + candidates = [] + product_name = meta_data.get("ProductName", "") + file_description = meta_data.get("FileDescription", "") + if product_name and product_name not in ['BootstrapPackagedGame']: + candidates.append(product_name) + if file_description and file_description not in ['BootstrapPackagedGame']: + candidates.append(file_description) + if desktop_name: + candidates.append(desktop_name) + if exe_name: + candidates.append(exe_name) + if folder_name: + candidates.append(folder_name) + logger.info("Initial candidates: %s", candidates) + candidates = filter_candidates(candidates) + candidates = remove_duplicates(candidates) + candidates_ordered = sorted(candidates, key=lambda s: len(s.split()), reverse=True) + logger.info("Sorted candidates: %s", candidates_ordered) + + def on_steam_apps(steam_apps: list): + steam_apps_index = build_index(steam_apps) + matching_app = None + for candidate in candidates_ordered: + if not candidate: + continue + matching_app = search_app(candidate, steam_apps_index) + if matching_app: + logger.info("Match found for candidate '%s': %s", candidate, matching_app.get("normalized_name")) + break + + game_name = desktop_name or exe_name.capitalize() + + if not matching_app: + def on_anticheat_status(anticheat_status: str): + callback({ + "appid": "", + "name": decode_text(game_name), + "description": "", + "cover": "", + "controller_support": "", + "protondb_tier": "", + "steam_game": "false", + "anticheat_status": anticheat_status + }) + + get_weanticheatyet_status_async(game_name, on_anticheat_status) + return + + appid = matching_app["appid"] + def on_app_info(app_info: dict | None): + if not app_info: + def on_anticheat_status(anticheat_status: str): + callback({ + "appid": "", + "name": decode_text(game_name), + "description": "", + "cover": "", + "controller_support": "", + "protondb_tier": "", + "steam_game": "false", + "anticheat_status": anticheat_status + }) + + get_weanticheatyet_status_async(game_name, on_anticheat_status) + return + + title = decode_text(app_info.get("name", game_name)) + description = decode_text(app_info.get("short_description", "")) + cover = f"https://steamcdn-a.akamaihd.net/steam/apps/{appid}/library_600x900_2x.jpg" + controller_support = app_info.get("controller_support", "") + + def on_protondb_tier(tier: str): + def on_anticheat_status(anticheat_status: str): + callback({ + "appid": appid, + "name": title, + "description": description, + "cover": cover, + "controller_support": controller_support, + "protondb_tier": tier, + "steam_game": "true", + "anticheat_status": anticheat_status + }) + + get_weanticheatyet_status_async(title, on_anticheat_status) + + get_protondb_tier_async(appid, on_protondb_tier) + + fetch_app_info_async(appid, on_app_info) + + load_steam_apps_async(on_steam_apps) + +_STEAM_APPS = None +_STEAM_APPS_INDEX = None +_STEAM_APPS_LOCK = threading.Lock() + +def get_steam_apps_and_index_async(callback: Callable[[tuple[list, dict]], None]): + """ + Asynchronously loads and caches Steam apps and their index. + Calls the callback with (steam_apps, steam_apps_index). + """ + global _STEAM_APPS, _STEAM_APPS_INDEX + with _STEAM_APPS_LOCK: + if _STEAM_APPS is not None and _STEAM_APPS_INDEX is not None: + callback((_STEAM_APPS, _STEAM_APPS_INDEX)) + return + + def on_steam_apps(steam_apps: list): + global _STEAM_APPS, _STEAM_APPS_INDEX + with _STEAM_APPS_LOCK: + _STEAM_APPS = steam_apps + _STEAM_APPS_INDEX = build_index(steam_apps) + callback((_STEAM_APPS, _STEAM_APPS_INDEX)) + + load_steam_apps_async(on_steam_apps) + +def add_to_steam(game_name: str, exec_line: str, cover_path: str) -> tuple[bool, str]: + """ + Add a non-Steam game to Steam via shortcuts.vdf with PortProton tag, + and download Steam Grid covers with correct sizes and names. + """ + + if not exec_line or not exec_line.strip(): + logger.error("Invalid exec_line: empty or whitespace") + return (False, "Executable command is empty or invalid") + + # Parse exec_line to get the executable path + try: + entry_exec_split = shlex.split(exec_line) + if not entry_exec_split: + logger.error(f"Failed to parse exec_line: {exec_line}") + return (False, "Failed to parse executable command: no valid tokens") + + if entry_exec_split[0] == "env" and len(entry_exec_split) >= 3: + exe_path = entry_exec_split[2] + elif entry_exec_split[0] == "flatpak" and len(entry_exec_split) >= 4: + exe_path = entry_exec_split[3] + else: + exe_path = entry_exec_split[-1] + except Exception as e: + logger.error(f"Failed to parse exec_line: {exec_line}, error: {e}") + return (False, f"Failed to parse executable command: {e}") + + if not os.path.exists(exe_path): + logger.error(f"Executable not found: {exe_path}") + return (False, f"Executable file not found: {exe_path}") + + portproton_dir = get_portproton_location() + if not portproton_dir: + logger.error("PortProton directory not found") + return (False, "PortProton directory not found") + + steam_scripts_dir = os.path.join(portproton_dir, "steam_scripts") + os.makedirs(steam_scripts_dir, exist_ok=True) + + safe_game_name = re.sub(r'[<>:"/\\|?*]', '_', game_name.strip()) + script_path = os.path.join(steam_scripts_dir, f"{safe_game_name}.sh") + start_sh_path = os.path.join(portproton_dir, "data", "scripts", "start.sh") + + if not os.path.exists(start_sh_path): + logger.error(f"start.sh not found at {start_sh_path}") + return (False, f"start.sh not found at {start_sh_path}") + + if not os.path.exists(script_path): + script_content = f"""#!/usr/bin/env bash +export LD_PRELOAD= +export START_FROM_STEAM=1 +"{start_sh_path}" "{exe_path}" "$@" +""" + try: + with open(script_path, "w", encoding="utf-8") as f: + f.write(script_content) + os.chmod(script_path, 0o755) + logger.info(f"Created launch script: {script_path}") + except Exception as e: + logger.error(f"Failed to create launch script {script_path}: {e}") + return (False, f"Failed to create launch script: {e}") + else: + logger.info(f"Launch script already exists: {script_path}") + + generated_icon_path = os.path.join(portproton_dir, "data", "img", f"{safe_game_name}.png") + try: + img_dir = os.path.join(portproton_dir, "data", "img") + os.makedirs(img_dir, exist_ok=True) + + if os.path.exists(generated_icon_path): + logger.info(f"Reusing existing thumbnail: {generated_icon_path}") + else: + success = generate_thumbnail(exe_path, generated_icon_path, size=128, force_resize=True) + if not success or not os.path.exists(generated_icon_path): + logger.warning(f"generate_thumbnail failed to create icon for {exe_path}") + icon_path = "" + else: + logger.info(f"Generated thumbnail: {generated_icon_path}") + icon_path = generated_icon_path + except Exception as e: + logger.error(f"Error generating thumbnail for {exe_path}: {e}") + icon_path = "" + + steam_home = get_steam_home() + if not steam_home: + logger.error("Steam home directory not found") + return (False, "Steam directory not found.") + + last_user = get_last_steam_user(steam_home) + if not last_user or 'SteamID' not in last_user: + logger.error("Failed to retrieve Steam user ID") + return (False, "Failed to get Steam user ID.") + + userdata_dir = steam_home / "userdata" + user_id = last_user['SteamID'] + unsigned_id = convert_steam_id(user_id) + user_dir = userdata_dir / str(unsigned_id) + steam_shortcuts_path = user_dir / "config" / "shortcuts.vdf" + grid_dir = user_dir / "config" / "grid" + os.makedirs(grid_dir, exist_ok=True) + + backup_path = f"{steam_shortcuts_path}.backup" + if os.path.exists(steam_shortcuts_path): + try: + shutil.copy2(steam_shortcuts_path, backup_path) + logger.info(f"Created backup of shortcuts.vdf at {backup_path}") + except Exception as e: + logger.error(f"Failed to create backup of shortcuts.vdf: {e}") + return (False, f"Failed to create backup of shortcuts.vdf: {e}") + + unique_string = f"{script_path}{game_name}" + baseid = zlib.crc32(unique_string.encode('utf-8')) & 0xffffffff + appid = baseid | 0x80000000 + if appid > 0x7FFFFFFF: + aidvdf = appid - 0x100000000 + else: + aidvdf = appid + + steam_appid = None + downloaded_count = 0 + total_covers = 4 # количество обложек + + download_lock = threading.Lock() + + def on_cover_download(cover_file: str, cover_type: str): + nonlocal downloaded_count + try: + if cover_file and os.path.exists(cover_file): + logger.info(f"Downloaded cover {cover_type} to {cover_file}") + else: + logger.warning(f"Failed to download cover {cover_type} for appid {steam_appid}") + except Exception as e: + logger.error(f"Error processing cover {cover_type} for appid {steam_appid}: {e}") + with download_lock: + downloaded_count += 1 + if downloaded_count == total_covers: + finalize_shortcut() + + def finalize_shortcut(): + tags_dict = {'0': 'PortProton'} + shortcut = { + "appid": aidvdf, + "AppName": game_name, + "Exe": f'"{script_path}"', + "StartDir": f'"{os.path.dirname(script_path)}"', + "icon": icon_path, + "LaunchOptions": "", + "IsHidden": 0, + "AllowDesktopConfig": 1, + "AllowOverlay": 1, + "openvr": 0, + "Devkit": 0, + "DevkitGameID": "", + "LastPlayTime": 0, + "tags": tags_dict + } + logger.info(f"Shortcut entry to be written: {shortcut}") + + try: + if not os.path.exists(steam_shortcuts_path): + os.makedirs(os.path.dirname(steam_shortcuts_path), exist_ok=True) + open(steam_shortcuts_path, 'wb').close() + + try: + if os.path.getsize(steam_shortcuts_path) > 0: + with open(steam_shortcuts_path, 'rb') as f: + shortcuts_data = vdf.binary_load(f) + else: + shortcuts_data = {"shortcuts": {}} + except Exception as load_err: + logger.warning(f"Failed to load existing shortcuts.vdf, starting fresh: {load_err}") + shortcuts_data = {"shortcuts": {}} + + shortcuts = shortcuts_data.get("shortcuts", {}) + for _key, entry in shortcuts.items(): + if entry.get("AppName") == game_name and entry.get("Exe") == f'"{script_path}"': + logger.info(f"Game '{game_name}' already exists in Steam shortcuts") + return (False, f"Game '{game_name}' already exists in Steam") + + new_index = str(len(shortcuts)) + shortcuts[new_index] = shortcut + + with open(steam_shortcuts_path, 'wb') as f: + vdf.binary_dump({"shortcuts": shortcuts}, f) + except Exception as e: + logger.error(f"Failed to update shortcuts.vdf: {e}") + if os.path.exists(backup_path): + try: + shutil.copy2(backup_path, steam_shortcuts_path) + logger.info("Restored shortcuts.vdf from backup due to update failure") + except Exception as restore_err: + logger.error(f"Failed to restore shortcuts.vdf from backup: {restore_err}") + return (False, f"Failed to update shortcuts.vdf: {e}") + + logger.info(f"Game '{game_name}' successfully added to Steam with covers") + return (True, f"Game '{game_name}' added to Steam with covers") + + def on_game_info(game_info: dict): + nonlocal steam_appid + steam_appid = game_info.get("appid") + if not steam_appid or not isinstance(steam_appid, int): + logger.info("No valid Steam appid found, skipping cover download") + return finalize_shortcut() + + # Обложки и имена, соответствующие bash-скрипту и твоим размерам + cover_types = [ + (".jpg", "header.jpg"), # базовый, сохранится как AppId.jpg + ("p.jpg", "library_600x900_2x.jpg"), # сохранится как AppIdp.jpg + ("_hero.jpg", "library_hero.jpg"), # AppId_hero.jpg + ("_logo.png", "logo.png") # AppId_logo.png + ] + + for suffix, cover_type in cover_types: + cover_file = os.path.join(grid_dir, f"{appid}{suffix}") + cover_url = f"https://cdn.cloudflare.steamstatic.com/steam/apps/{steam_appid}/{cover_type}" + downloader.download_async( + cover_url, + cover_file, + timeout=5, + callback=lambda result, cfile=cover_file, ctype=cover_type: on_cover_download(cfile, ctype) + ) + + get_steam_game_info_async(game_name, exec_line, on_game_info) + return (True, "Adding game to Steam, checking for covers...") + +def remove_from_steam(game_name: str, exec_line: str) -> tuple[bool, str]: + """ + Remove a non-Steam game from Steam by deleting its entry from shortcuts.vdf. + """ + # Validate inputs + if not game_name or not game_name.strip(): + logger.error("Invalid game_name: empty or whitespace") + return (False, "Game name is empty or invalid") + if not exec_line or not exec_line.strip(): + logger.error("Invalid exec_line: empty or whitespace") + return (False, "Executable command is empty or invalid") + + # Get PortProton directory + portproton_dir = get_portproton_location() + if not portproton_dir: + logger.error("PortProton directory not found") + return (False, "PortProton directory not found") + + # Construct script path + safe_game_name = re.sub(r'[<>:"/\\|?*]', '_', game_name.strip()) + script_path = os.path.join(portproton_dir, "steam_scripts", f"{safe_game_name}.sh") + + # Get Steam home directory + steam_home = get_steam_home() + if not steam_home: + logger.error("Steam home directory not found") + return (False, "Steam directory not found.") + + # Get current Steam user ID + last_user = get_last_steam_user(steam_home) + if not last_user or 'SteamID' not in last_user: + logger.error("Failed to retrieve Steam user ID") + return (False, "Failed to get Steam user ID.") + userdata_dir = steam_home / "userdata" + user_id = last_user['SteamID'] + unsigned_id = convert_steam_id(user_id) + user_dir = userdata_dir / str(unsigned_id) + + # Construct path to shortcuts.vdf and grid directory + steam_shortcuts_path = os.path.join(user_dir, "config", "shortcuts.vdf") + grid_dir = os.path.join(user_dir, "config", "grid") + + # Check if shortcuts.vdf exists + if not os.path.exists(steam_shortcuts_path): + logger.info(f"shortcuts.vdf not found at {steam_shortcuts_path}") + return (False, f"Game '{game_name}' not found in Steam") + + # Generate appid for identifying cover files + unique_string = f"{script_path}{game_name}" + baseid = zlib.crc32(unique_string.encode('utf-8')) & 0xffffffff + appid = baseid | 0x80000000 + + # Create backup of shortcuts.vdf + backup_path = f"{steam_shortcuts_path}.backup" + try: + shutil.copy2(steam_shortcuts_path, backup_path) + logger.info(f"Created backup of shortcuts.vdf at {backup_path}") + except Exception as e: + logger.error(f"Failed to create backup of shortcuts.vdf: {e}") + return (False, f"Failed to create backup of shortcuts.vdf: {e}") + + # Load and modify shortcuts.vdf + try: + if os.path.getsize(steam_shortcuts_path) > 0: + with open(steam_shortcuts_path, 'rb') as f: + shortcuts_data = vdf.binary_load(f) + else: + shortcuts_data = {"shortcuts": {}} + except Exception as load_err: + logger.error(f"Failed to load shortcuts.vdf: {load_err}") + return (False, f"Failed to load shortcuts.vdf: {load_err}") + + shortcuts = shortcuts_data.get("shortcuts", {}) + found = False + new_shortcuts = {} + index = 0 + + # Filter out the matching shortcut + for _key, entry in shortcuts.items(): + if entry.get("AppName") == game_name and entry.get("Exe") == f'"{script_path}"': + found = True + logger.info(f"Found matching shortcut for '{game_name}' to remove") + continue + new_shortcuts[str(index)] = entry + index += 1 + + if not found: + logger.info(f"Game '{game_name}' not found in Steam shortcuts") + return (False, f"Game '{game_name}' not found in Steam") + + # Save updated shortcuts.vdf + try: + with open(steam_shortcuts_path, 'wb') as f: + vdf.binary_dump({"shortcuts": new_shortcuts}, f) + logger.info(f"Successfully updated shortcuts.vdf, removed '{game_name}'") + except Exception as e: + logger.error(f"Failed to update shortcuts.vdf: {e}") + if os.path.exists(backup_path): + try: + shutil.copy2(backup_path, steam_shortcuts_path) + logger.info("Restored shortcuts.vdf from backup due to update failure") + except Exception as restore_err: + logger.error(f"Failed to restore shortcuts.vdf from backup: {restore_err}") + return (False, f"Failed to update shortcuts.vdf: {e}") + + # Delete cover files + cover_files = [ + os.path.join(grid_dir, f"{appid}.jpg"), + os.path.join(grid_dir, f"{appid}p.jpg"), + os.path.join(grid_dir, f"{appid}_hero.jpg"), + os.path.join(grid_dir, f"{appid}_logo.png") + ] + for cover_file in cover_files: + if os.path.exists(cover_file): + try: + os.remove(cover_file) + logger.info(f"Deleted cover file: {cover_file}") + except Exception as e: + logger.error(f"Failed to delete cover file {cover_file}: {e}") + else: + logger.info(f"Cover file not found: {cover_file}") + + if os.path.exists(script_path): + try: + os.remove(script_path) + logger.info(f"Deleted steam script: {script_path}") + except Exception as e: + logger.error(f"Failed to delete steam script {script_path}: {e}") + else: + logger.info(f"Steam script not found: {script_path}") + + logger.info(f"Game '{game_name}' successfully removed from Steam") + return (True, f"Game '{game_name}' removed from Steam") + +def is_game_in_steam(game_name: str) -> bool: + steam_home = get_steam_home() + if steam_home is None: + logger.warning("Steam home directory not found") + return False + + try: + last_user = get_last_steam_user(steam_home) + if not last_user or 'SteamID' not in last_user: + logger.warning("No valid Steam user found") + return False + user_id = last_user['SteamID'] + unsigned_id = convert_steam_id(user_id) + steam_shortcuts_path = os.path.join(str(steam_home), "userdata", str(unsigned_id), "config", "shortcuts.vdf") + if not os.path.exists(steam_shortcuts_path): + logger.warning(f"Shortcuts file not found at {steam_shortcuts_path}") + return False + + shortcuts_data = safe_vdf_load(steam_shortcuts_path) + shortcuts = shortcuts_data.get("shortcuts", {}) + for _key, entry in shortcuts.items(): + if entry.get("AppName") == game_name: + return True + except Exception as e: + logger.error(f"Error checking if game {game_name} is in Steam: {e}") + return False diff --git a/portprotonqt/theme_manager.py b/portprotonqt/theme_manager.py new file mode 100644 index 0000000..0686e7d --- /dev/null +++ b/portprotonqt/theme_manager.py @@ -0,0 +1,286 @@ +import importlib.util +import os +from portprotonqt.logger import get_logger +from PySide6.QtSvg import QSvgRenderer +from PySide6.QtGui import QIcon, QColor, QFontDatabase, QPixmap, QPainter + +from portprotonqt.config_utils import save_theme_to_config, load_theme_metainfo + +logger = get_logger(__name__) + +# Папка, где располагаются все дополнительные темы +xdg_data_home = os.getenv("XDG_DATA_HOME", os.path.join(os.path.expanduser("~"), ".local", "share")) +THEMES_DIRS = [ + os.path.join(xdg_data_home, "PortProtonQT", "themes"), + os.path.join(os.path.dirname(os.path.abspath(__file__)), "themes") +] + +def list_themes(): + """ + Возвращает список доступных тем (названий папок) из каталогов THEMES_DIRS. + """ + themes = [] + for themes_dir in THEMES_DIRS: + if os.path.exists(themes_dir): + for entry in os.listdir(themes_dir): + theme_path = os.path.join(themes_dir, entry) + if os.path.isdir(theme_path) and os.path.exists(os.path.join(theme_path, "styles.py")): + themes.append(entry) + return themes + +def load_theme_screenshots(theme_name): + """ + Загружает все скриншоты из папки "screenshots", расположенной в папке темы. + Возвращает список кортежей (pixmap, filename). + Если папка отсутствует или пуста, возвращается пустой список. + """ + screenshots = [] + for themes_dir in THEMES_DIRS: + theme_folder = os.path.join(themes_dir, theme_name) + screenshots_folder = os.path.join(theme_folder, "images", "screenshots") + if os.path.exists(screenshots_folder) and os.path.isdir(screenshots_folder): + for file in os.listdir(screenshots_folder): + screenshot_path = os.path.join(screenshots_folder, file) + if os.path.isfile(screenshot_path): + pixmap = QPixmap(screenshot_path) + if not pixmap.isNull(): + screenshots.append((pixmap, file)) + return screenshots + +def load_theme_fonts(theme_name): + """ + Загружает все шрифты выбранной темы. + :param theme_name: Имя темы. + """ + QFontDatabase.removeAllApplicationFonts() + fonts_folder = None + if theme_name == "standart": + base_dir = os.path.dirname(os.path.abspath(__file__)) + fonts_folder = os.path.join(base_dir, "themes", "standart", "fonts") + else: + for themes_dir in THEMES_DIRS: + theme_folder = os.path.join(themes_dir, theme_name) + possible_fonts_folder = os.path.join(theme_folder, "fonts") + if os.path.exists(possible_fonts_folder): + fonts_folder = possible_fonts_folder + break + + if not fonts_folder or not os.path.exists(fonts_folder): + logger.error(f"Папка fonts не найдена для темы '{theme_name}'") + return + + for filename in os.listdir(fonts_folder): + if filename.lower().endswith((".ttf", ".otf")): + font_path = os.path.join(fonts_folder, filename) + font_id = QFontDatabase.addApplicationFont(font_path) + if font_id != -1: + families = QFontDatabase.applicationFontFamilies(font_id) + logger.info(f"Шрифт {filename} успешно загружен: {families}") + else: + logger.error(f"Ошибка загрузки шрифта: {filename}") + +def load_logo(): + logo_path = None + + base_dir = os.path.dirname(os.path.abspath(__file__)) + logo_path = os.path.join(base_dir, "themes", "standart", "images", "theme_logo.svg") + + file_extension = os.path.splitext(logo_path)[1].lower() + + if file_extension == ".svg": + renderer = QSvgRenderer(logo_path) + if not renderer.isValid(): + logger.error(f"Ошибка загрузки SVG логотипа: {logo_path}") + return None + pixmap = QPixmap(128, 128) + pixmap.fill(QColor(0, 0, 0, 0)) + painter = QPainter(pixmap) + renderer.render(painter) + painter.end() + return pixmap + +class ThemeWrapper: + """ + Обёртка для кастомной темы с поддержкой метаинформации. + При обращении к атрибуту сначала ищется его наличие в кастомной теме, + если атрибут отсутствует, значение берётся из стандартного модуля стилей. + """ + def __init__(self, custom_theme, metainfo=None): + self.custom_theme = custom_theme + self.metainfo = metainfo or {} + self.screenshots = load_theme_screenshots(self.metainfo.get("name", "")) + + def __getattr__(self, name): + if hasattr(self.custom_theme, name): + return getattr(self.custom_theme, name) + import portprotonqt.themes.standart.styles as default_styles + return getattr(default_styles, name) + +def load_theme(theme_name): + """ + Динамически загружает модуль стилей выбранной темы и метаинформацию. + Если выбрана стандартная тема, импортируется оригинальный styles.py. + Для кастомных тем возвращается обёртка, которая подставляет недостающие атрибуты. + """ + if theme_name == "standart": + import portprotonqt.themes.standart.styles as default_styles + return default_styles + + for themes_dir in THEMES_DIRS: + theme_folder = os.path.join(themes_dir, theme_name) + styles_file = os.path.join(theme_folder, "styles.py") + if os.path.exists(styles_file): + spec = importlib.util.spec_from_file_location("theme_styles", styles_file) + if spec is None or spec.loader is None: + continue + custom_theme = importlib.util.module_from_spec(spec) + spec.loader.exec_module(custom_theme) + meta = load_theme_metainfo(theme_name) + wrapper = ThemeWrapper(custom_theme, metainfo=meta) + wrapper.screenshots = load_theme_screenshots(theme_name) + return wrapper + raise FileNotFoundError(f"Файл стилей не найден для темы '{theme_name}'") + +class ThemeManager: + """ + Класс для управления темами приложения. + + Позволяет получить список доступных тем, загрузить и применить выбранную тему. + """ + def __init__(self): + self.current_theme_name = None + self.current_theme_module = None + + def get_available_themes(self): + """Возвращает список доступных тем.""" + return list_themes() + + def get_theme_logo(self): + """Возвращает логотип для текущей или указанной темы.""" + return load_logo() + + def apply_theme(self, theme_name): + """ + Применяет выбранную тему: загружает модуль стилей, шрифты и логотип. + Если загрузка прошла успешно, сохраняет выбранную тему в конфигурации. + :param theme_name: Имя темы. + :return: Загруженный модуль темы (или обёртка). + """ + theme_module = load_theme(theme_name) + load_theme_fonts(theme_name) + self.current_theme_name = theme_name + self.current_theme_module = theme_module + save_theme_to_config(theme_name) + logger.info(f"Тема '{theme_name}' успешно применена") + return theme_module + + def get_icon(self, icon_name, theme_name=None, as_path=False): + """ + Возвращает QIcon из папки icons текущей темы, + а если файл не найден, то из стандартной темы. + Если as_path=True, возвращает путь к иконке вместо QIcon. + """ + icon_path = None + theme_name = theme_name or self.current_theme_name + supported_extensions = ['.svg', '.png', '.jpg', '.jpeg'] + has_extension = any(icon_name.lower().endswith(ext) for ext in supported_extensions) + base_name = icon_name if has_extension else icon_name + + # Поиск иконки в папке текущей темы + for themes_dir in THEMES_DIRS: + theme_folder = os.path.join(str(themes_dir), str(theme_name)) + icons_folder = os.path.join(theme_folder, "images", "icons") + + # Если передано имя с расширением, проверяем только этот файл + if has_extension: + candidate = os.path.join(icons_folder, str(base_name)) + if os.path.exists(candidate): + icon_path = candidate + break + else: + # Проверяем все поддерживаемые расширения + for ext in supported_extensions: + candidate = os.path.join(icons_folder, str(base_name) + str(ext)) + if os.path.exists(candidate): + icon_path = candidate + break + if icon_path: + break + + # Если не нашли – используем стандартную тему + if not icon_path: + base_dir = os.path.dirname(os.path.abspath(__file__)) + standard_icons_folder = os.path.join(base_dir, "themes", "standart", "images", "icons") + + # Аналогично проверяем в стандартной теме + if has_extension: + icon_path = os.path.join(standard_icons_folder, base_name) + if not os.path.exists(icon_path): + icon_path = None + else: + for ext in supported_extensions: + candidate = os.path.join(standard_icons_folder, base_name + ext) + if os.path.exists(candidate): + icon_path = candidate + break + + # Если иконка всё равно не найдена + if not icon_path or not os.path.exists(icon_path): + logger.error(f"Предупреждение: иконка '{icon_name}' не найдена") + return QIcon() if not as_path else None + + if as_path: + return icon_path + + return QIcon(icon_path) + + def get_theme_image(self, image_name, theme_name=None): + """ + Возвращает путь к изображению из папки текущей темы. + Если не найдено, проверяет стандартную тему. + Принимает название иконки без расширения и находит соответствующий файл + с поддерживаемым расширением (.svg, .png, .jpg и др.). + """ + image_path = None + theme_name = theme_name or self.current_theme_name + supported_extensions = ['.svg', '.png', '.jpg', '.jpeg'] + + has_extension = any(image_name.lower().endswith(ext) for ext in supported_extensions) + base_name = image_name if has_extension else image_name + + # Check theme-specific images + for themes_dir in THEMES_DIRS: + theme_folder = os.path.join(str(themes_dir), str(theme_name)) + images_folder = os.path.join(theme_folder, "images") + + if has_extension: + candidate = os.path.join(images_folder, str(base_name)) + if os.path.exists(candidate): + image_path = candidate + break + else: + for ext in supported_extensions: + candidate = os.path.join(images_folder, str(base_name) + str(ext)) + if os.path.exists(candidate): + image_path = candidate + break + if image_path: + break + + # Check standard theme + if not image_path: + base_dir = os.path.dirname(os.path.abspath(__file__)) + standard_images_folder = os.path.join(base_dir, "themes", "standart", "images") + + if has_extension: + image_path = os.path.join(standard_images_folder, base_name) + if not os.path.exists(image_path): + image_path = None + else: + for ext in supported_extensions: + candidate = os.path.join(standard_images_folder, base_name + ext) + if os.path.exists(candidate): + image_path = candidate + break + + return image_path diff --git a/portprotonqt/themes/standart-light/fonts/Orbitron-Regular.ttf b/portprotonqt/themes/standart-light/fonts/Orbitron-Regular.ttf new file mode 100644 index 0000000..ebaece0 Binary files /dev/null and b/portprotonqt/themes/standart-light/fonts/Orbitron-Regular.ttf differ diff --git a/portprotonqt/themes/standart-light/fonts/Poppins-Regular.ttf b/portprotonqt/themes/standart-light/fonts/Poppins-Regular.ttf new file mode 100644 index 0000000..9f0c71b Binary files /dev/null and b/portprotonqt/themes/standart-light/fonts/Poppins-Regular.ttf differ diff --git a/portprotonqt/themes/standart-light/fonts/RASKHAL-Regular.ttf b/portprotonqt/themes/standart-light/fonts/RASKHAL-Regular.ttf new file mode 100755 index 0000000..cb4b29d Binary files /dev/null and b/portprotonqt/themes/standart-light/fonts/RASKHAL-Regular.ttf differ diff --git a/portprotonqt/themes/standart-light/images/icons/addgame.svg b/portprotonqt/themes/standart-light/images/icons/addgame.svg new file mode 100644 index 0000000..d279476 --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/addgame.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/back.svg b/portprotonqt/themes/standart-light/images/icons/back.svg new file mode 100644 index 0000000..b153396 --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/back.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/broken.svg b/portprotonqt/themes/standart-light/images/icons/broken.svg new file mode 100644 index 0000000..bec621a --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/broken.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/down.svg b/portprotonqt/themes/standart-light/images/icons/down.svg new file mode 100644 index 0000000..f72cf35 --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/down.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/platinum-gold.svg b/portprotonqt/themes/standart-light/images/icons/platinum-gold.svg new file mode 100644 index 0000000..fcec91b --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/platinum-gold.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/play.svg b/portprotonqt/themes/standart-light/images/icons/play.svg new file mode 100644 index 0000000..6c368ec --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/play.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/ppqt-tray.svg b/portprotonqt/themes/standart-light/images/icons/ppqt-tray.svg new file mode 100644 index 0000000..844a2c8 --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/ppqt-tray.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/save.svg b/portprotonqt/themes/standart-light/images/icons/save.svg new file mode 100644 index 0000000..f401b3f --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/save.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/search.svg b/portprotonqt/themes/standart-light/images/icons/search.svg new file mode 100644 index 0000000..7dafc55 --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/search.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/silver-bronze.svg b/portprotonqt/themes/standart-light/images/icons/silver-bronze.svg new file mode 100644 index 0000000..75fc95d --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/silver-bronze.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/spinner.svg b/portprotonqt/themes/standart-light/images/icons/spinner.svg new file mode 100644 index 0000000..a8e901e --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/spinner.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/steam.svg b/portprotonqt/themes/standart-light/images/icons/steam.svg new file mode 100644 index 0000000..d5db214 --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/steam.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/stop.svg b/portprotonqt/themes/standart-light/images/icons/stop.svg new file mode 100644 index 0000000..ee999cc --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/stop.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/up.svg b/portprotonqt/themes/standart-light/images/icons/up.svg new file mode 100644 index 0000000..6cf975b --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/up.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/icons/update.svg b/portprotonqt/themes/standart-light/images/icons/update.svg new file mode 100644 index 0000000..c3ab38e --- /dev/null +++ b/portprotonqt/themes/standart-light/images/icons/update.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart-light/images/placeholder.jpg b/portprotonqt/themes/standart-light/images/placeholder.jpg new file mode 100644 index 0000000..e461216 Binary files /dev/null and b/portprotonqt/themes/standart-light/images/placeholder.jpg differ diff --git a/portprotonqt/themes/standart-light/images/screenshots/Библиотека.png b/portprotonqt/themes/standart-light/images/screenshots/Библиотека.png new file mode 100644 index 0000000..ee91ed0 Binary files /dev/null and b/portprotonqt/themes/standart-light/images/screenshots/Библиотека.png differ diff --git a/portprotonqt/themes/standart-light/images/screenshots/Карточка.png b/portprotonqt/themes/standart-light/images/screenshots/Карточка.png new file mode 100644 index 0000000..425a0ca Binary files /dev/null and b/portprotonqt/themes/standart-light/images/screenshots/Карточка.png differ diff --git a/portprotonqt/themes/standart-light/images/screenshots/Настройки.png b/portprotonqt/themes/standart-light/images/screenshots/Настройки.png new file mode 100644 index 0000000..8d3073d Binary files /dev/null and b/portprotonqt/themes/standart-light/images/screenshots/Настройки.png differ diff --git a/portprotonqt/themes/standart-light/metainfo.ini b/portprotonqt/themes/standart-light/metainfo.ini new file mode 100644 index 0000000..1b5282d --- /dev/null +++ b/portprotonqt/themes/standart-light/metainfo.ini @@ -0,0 +1,5 @@ +[Metainfo] +author = BlackSnaker +author_link = +description = Стандартная тема PortProtonQT (светлый вариант) +name = Light diff --git a/portprotonqt/themes/standart-light/styles.py b/portprotonqt/themes/standart-light/styles.py new file mode 100644 index 0000000..84d5da4 --- /dev/null +++ b/portprotonqt/themes/standart-light/styles.py @@ -0,0 +1,558 @@ +from portprotonqt.theme_manager import ThemeManager +from portprotonqt.config_utils import read_theme_from_config + +theme_manager = ThemeManager() +current_theme_name = read_theme_from_config() + +# КОНСТАНТЫ +favoriteLabelSize = 48, 48 +pixmapsScaledSize = 60, 60 + +# СТИЛЬ ШАПКИ ГЛАВНОГО ОКНА +MAIN_WINDOW_HEADER_STYLE = """ + QFrame { + background: transparent; + border: 10px solid rgba(255, 255, 255, 0.10); + border-bottom: 0px solid rgba(255, 255, 255, 0.15); + border-top-left-radius: 30px; + border-top-right-radius: 30px; + border: none; + } +""" + +# СТИЛЬ ЗАГОЛОВКА (ЛОГО) В ШАПКЕ +TITLE_LABEL_STYLE = """ + QLabel { + font-family: 'RASKHAL'; + font-size: 38px; + margin: 0 0 0 0; + color: #007AFF; + } +""" + +# СТИЛЬ ОБЛАСТИ НАВИГАЦИИ (КНОПКИ ВКЛАДОК) +NAV_WIDGET_STYLE = """ + QWidget { + background: #ffffff; + border-bottom: 0px solid rgba(0, 0, 0, 0.10); + } +""" + +# СТИЛЬ КНОПОК ВКЛАДОК НАВИГАЦИИ +NAV_BUTTON_STYLE = """ + NavLabel { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(242, 242, 242, 0.5), + stop:1 rgba(232, 232, 232, 0.5)); + padding: 10px 10px; + margin: 10px 0 10px 10px; + color: #333333; + font-size: 16px; + font-family: 'Poppins'; + text-transform: uppercase; + border: 1px solid rgba(179, 179, 179, 0.4); + border-radius: 15px; + } + NavLabel[checked = true] { + background: rgba(0,122,255,0.25); + color: #002244; + font-weight: bold; + border-radius: 15px; + } + NavLabel:hover { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(0,122,255,0.12), + stop:1 rgba(0,122,255,0.08)); + color: #002244; + } +""" + +# ГЛОБАЛЬНЫЙ СТИЛЬ ДЛЯ ОКНА (ФОН) И QLabel +MAIN_WINDOW_STYLE = """ + QMainWindow { + background: none; + } + QLabel { + color: #333333; + } +""" + +# СТИЛЬ ПОЛЯ ПОИСКА +SEARCH_EDIT_STYLE = """ + QLineEdit { + background-color: rgba(30, 30, 30, 0.50); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + padding: 7px 14px; + font-family: 'Poppins'; + font-size: 16px; + color: #ffffff; + } + QLineEdit:focus { + border: 1px solid rgba(0,122,255,0.25); + } +""" + +# ОТКЛЮЧАЕМ РАМКУ У QScrollArea +SCROLL_AREA_STYLE = """ + QWidget { + background: transparent; + } + QScrollBar:vertical { + width: 10px; + border: 0px solid; + border-radius: 5px; + background: rgba(20, 20, 20, 0.30); + } + QScrollBar::handle:vertical { + background: rgba(255, 255, 255, 0.7); + border: 0px solid; + border-radius: 5px; + } + QScrollBar::add-line:vertical { + border: 0px solid; + background: none; + } + QScrollBar::sub-line:vertical { + border: 0px solid; + background: none; + } + QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical { + border: 0px solid; + width: 3px; + height: 3px; + background: none; + } + QScrollBar:horizontal { + height: 10px; + border: 0px solid; + border-radius: 5px; + background: rgba(20, 20, 20, 0.30); + } + QScrollBar::handle:horizontal { + background: #bebebe; + border: 0px solid; + border-radius: 5px; + } + QScrollBar::add-line:horizontal { + border: 0px solid; + background: none; + } + QScrollBar::sub-line:horizontal { + border: 0px solid; + background: none; + } + QScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal { + border: 0px solid; + width: 3px; + height: 3px; + background: none; + } +""" + +# SLIDER_SIZE_STYLE +SLIDER_SIZE_STYLE= """ + QWidget { + background: transparent; + height: 25px; + } + QSlider::groove:horizontal { + border: 0px solid; + border-radius: 3px; + height: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ + background: rgba(20, 20, 20, 0.30); + margin: 6px 0; + } + QSlider::handle:horizontal { + background: #bebebe; + border: 0px solid; + width: 18px; + height: 18px; + margin: -6px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ + border-radius: 9px; + } +""" + +# СТИЛЬ ОБЛАСТИ ДЛЯ КАРТОЧЕК ИГР (QWidget) +LIST_WIDGET_STYLE = """ + QWidget { + background: none; + border: 0px solid rgba(255, 255, 255, 0.10); + border-radius: 25px; + } +""" + +# ЗАГОЛОВОК "БИБЛИОТЕКА" НА ВКЛАДКЕ +INSTALLED_TAB_TITLE_STYLE = "font-family: 'Poppins'; font-size: 24px; color: #232627;" + +# СТИЛЬ КНОПОК "СОХРАНЕНИЯ, ПРИМЕНЕНИЯ И Т.Д." +ACTION_BUTTON_STYLE = """ + QPushButton { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(242, 242, 242, 0.5), + stop:1 rgba(232, 232, 232, 0.5)); + border: 1px solid rgba(179, 179, 179, 0.4); + border-radius: 10px; + color: #232627; + font-size: 16px; + font-family: 'Poppins'; + padding: 8px 16px; + } + QPushButton:hover { + background: rgba(0,122,255,0.25); + } + QPushButton:pressed { + background: rgba(0,122,255,0.25); + } +""" + +# ТЕКСТОВЫЕ СТИЛИ: ЗАГОЛОВКИ И ОСНОВНОЙ КОНТЕНТ +TAB_TITLE_STYLE = "font-family: 'Poppins'; font-size: 24px; color: #232627; background-color: none;" +CONTENT_STYLE = """ + QLabel { + font-family: 'Poppins'; + font-size: 16px; + color: #232627; + background-color: none; + border-bottom: 1px solid rgba(165, 165, 165, 0.7); + padding-bottom: 15px; + } +""" + +# СТИЛЬ ОСНОВНЫХ СТРАНИЦ +# LIBRARY_WIDGET_STYLE +LIBRARY_WIDGET_STYLE= """ + QWidget { + background: qlineargradient(spread:pad, x1:0.162, y1:0.0313409, x2:1, y2:1, stop:0 rgba(215, 235, 255, 255), stop:1 rgba(253, 252, 255, 255)); + border-radius: 0px; + } +""" + +# CONTAINER_STYLE +CONTAINER_STYLE= """ + QWidget { + background-color: none; + } +""" + +# OTHER_PAGES_WIDGET_STYLE +OTHER_PAGES_WIDGET_STYLE= """ + QWidget { + background: qlineargradient(spread:pad, x1:0.162, y1:0.0313409, x2:1, y2:1, stop:0 rgba(215, 235, 255, 255), stop:1 rgba(253, 252, 255, 255)); + border-radius: 0px; + } +""" + +# CAROUSEL_WIDGET_STYLE +CAROUSEL_WIDGET_STYLE= """ + QWidget { + background: qlineargradient(spread:pad, x1:0.099, y1:0.119, x2:0.917, y2:0.936149, stop:0 rgba(215, 235, 255, 255), stop:1 rgba(217, 193, 255, 255)); + border-radius: 0px; + } +""" + +# ФОН ДЛЯ ДЕТАЛЬНОЙ СТРАНИЦЫ, ЕСЛИ ОБЛОЖКА НЕ ЗАГРУЖЕНА +DETAIL_PAGE_NO_COVER_STYLE = "background: rgba(20,20,20,0.95); border-radius: 15px;" + +# СТИЛЬ КНОПКИ "ДОБАВИТЬ ИГРУ" И "НАЗАД" НА ДЕТАЛЬНОЙ СТРАНИЦЕ И БИБЛИОТЕКИ +ADDGAME_BACK_BUTTON_STYLE = """ + QPushButton { + background: rgba(20, 20, 20, 0.40); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + color: #ffffff; + font-size: 16px; + font-family: 'Poppins'; + padding: 4px 16px; + } + QPushButton:hover { + background: rgba(0,122,255,0.25); + } + QPushButton:pressed { + background: rgba(0,122,255,0.25); + } +""" + +# ОСНОВНОЙ ФРЕЙМ ДЕТАЛЕЙ ИГРЫ +DETAIL_CONTENT_FRAME_STYLE = """ + QFrame { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(20, 20, 20, 0.40), + stop:1 rgba(20, 20, 20, 0.35)); + border: 0px solid rgba(255, 255, 255, 0.10); + border-radius: 15px; + } +""" + +# ФРЕЙМ ПОД ОБЛОЖКОЙ +COVER_FRAME_STYLE = """ + QFrame { + background: rgba(30, 30, 30, 0.80); + border-radius: 15px; + border: 0px solid rgba(255, 255, 255, 0.15); + } +""" + +# СКРУГЛЕНИЕ LABEL ПОД ОБЛОЖКУ +COVER_LABEL_STYLE = "border-radius: 100px;" + +# ВИДЖЕТ ДЕТАЛЕЙ (ТЕКСТ, ОПИСАНИЕ) +DETAILS_WIDGET_STYLE = "background: rgba(20,20,20,0.40); border-radius: 15px; padding: 10px;" + +# НАЗВАНИЕ (ЗАГОЛОВОК) НА ДЕТАЛЬНОЙ СТРАНИЦЕ +DETAIL_PAGE_TITLE_STYLE = "font-family: 'Orbitron'; font-size: 32px; color: #007AFF;" + +# ЛИНИЯ-РАЗДЕЛИТЕЛЬ +DETAIL_PAGE_LINE_STYLE = "color: rgba(255,255,255,0.12); margin: 10px 0;" + +# ТЕКСТ ОПИСАНИЯ +DETAIL_PAGE_DESC_STYLE = "font-family: 'Poppins'; font-size: 16px; color: #ffffff; line-height: 1.5;" + +# СТИЛЬ КНОПКИ "ИГРАТЬ" +PLAY_BUTTON_STYLE = """ + QPushButton { + background: rgba(20, 20, 20, 0.40); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + font-size: 18px; + color: #ffffff; + font-weight: bold; + font-family: 'Orbitron'; + padding: 8px 16px; + min-width: 120px; + min-height: 40px; + } + QPushButton:hover { + background: rgba(0,122,255,0.25); + } + QPushButton:pressed { + background: rgba(0,122,255,0.25); + } +""" + +# СТИЛЬ КНОПКИ "ОБЗОР..." В ДИАЛОГЕ "ДОБАВИТЬ ИГРУ" +DIALOG_BROWSE_BUTTON_STYLE = """ + QPushButton { + background: rgba(20, 20, 20, 0.40); + border: 0px solid rgba(255, 255, 255, 0.20); + border-radius: 15px; + color: #ffffff; + font-size: 16px; + padding: 5px 10px; + } + QPushButton:hover { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(0,122,255,0.20), + stop:1 rgba(0,122,255,0.15)); + } + QPushButton:pressed { + background: rgba(20, 20, 20, 0.60); + border: 0px solid rgba(255, 255, 255, 0.25); + } +""" + +# СТИЛЬ КАРТОЧКИ ИГРЫ (GAMECARD) +GAME_CARD_WINDOW_STYLE = """ + QFrame { + border-radius: 20px; + background: qlineargradient(x1:0, y1:0, x2:0, y2:1, + stop:0 rgba(255, 255, 255, 0.3), + stop:1 rgba(249, 249, 249, 0.3)); + border: 0px solid rgba(255, 255, 255, 0.4); + } +""" + +# НАЗВАНИЕ В КАРТОЧКЕ (QLabel) +GAME_CARD_NAME_LABEL_STYLE = """ + QLabel { + color: #333333; + font-family: 'Orbitron'; + font-size: 16px; + font-weight: bold; + background-color: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(242, 242, 242, 0.5), + stop:1 rgba(232, 232, 232, 0.5)); + border-radius: 20px; + padding: 7px; + qproperty-wordWrap: true; + } +""" + +# ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ИНФОРМАЦИИ НА СТРАНИЦЕ ИГР +LAST_LAUNCH_TITLE_STYLE = "font-family: 'Poppins'; font-size: 11px; color: #bbbbbb; text-transform: uppercase; letter-spacing: 0.75px; margin-bottom: 2px;" +LAST_LAUNCH_VALUE_STYLE = "font-family: 'Poppins'; font-size: 13px; color: #ffffff; font-weight: 600; letter-spacing: 0.75px;" +PLAY_TIME_TITLE_STYLE = "font-family: 'Poppins'; font-size: 11px; color: #bbbbbb; text-transform: uppercase; letter-spacing: 0.75px; margin-bottom: 2px;" +PLAY_TIME_VALUE_STYLE = "font-family: 'Poppins'; font-size: 13px; color: #ffffff; font-weight: 600; letter-spacing: 0.75px;" +GAMEPAD_SUPPORT_VALUE_STYLE = """ + font-family: 'Poppins'; font-size: 12px; color: #00ff00; + font-weight: bold; background: rgba(0, 0, 0, 0.3); + border-radius: 5px; padding: 4px 8px; +""" + +# СТИЛИ ПОЛНОЭКРАНОГО ПРЕВЬЮ СКРИНШОТОВ ТЕМЫ +PREV_BUTTON_STYLE="background-color: rgba(0, 0, 0, 0.5); color: white; border: none;" +NEXT_BUTTON_STYLE="background-color: rgba(0, 0, 0, 0.5); color: white; border: none;" +CAPTION_LABEL_STYLE="color: white; font-size: 16px;" + +# СТИЛИ БЕЙДЖА PROTONDB НА КАРТОЧКЕ +def get_protondb_badge_style(tier): + tier = tier.lower() + tier_colors = { + "platinum": {"background": "rgba(255,255,255,0.9)", "color": "black"}, + "gold": {"background": "rgba(253,185,49,0.7)", "color": "black"}, + "silver": {"background": "rgba(169,169,169,0.8)", "color": "black"}, + "bronze": {"background": "rgba(205,133,63,0.7)", "color": "black"}, + "borked": {"background": "rgba(255,0,0,0.7)", "color": "black"}, + "pending": {"background": "rgba(160,82,45,0.7)", "color": "black"} + } + colors = tier_colors.get(tier, {"background": "rgba(0, 0, 0, 0.5)", "color": "white"}) + return f""" + qproperty-alignment: AlignCenter; + background-color: {colors["background"]}; + color: {colors["color"]}; + font-size: 14px; + border-radius: 5px; + font-family: 'Poppins'; + font-weight: bold; + """ + +# СТИЛИ БЕЙДЖА STEAM +STEAM_BADGE_STYLE= """ + qproperty-alignment: AlignCenter; + background: rgba(0, 0, 0, 0.5); + color: white; + font-size: 14px; + border-radius: 5px; + font-family: 'Poppins'; + font-weight: bold; +""" + +# Favorite Star +FAVORITE_LABEL_STYLE = "color: gold; font-size: 32px; background: transparent; border: none;" + +# СТИЛИ ДЛЯ QMessageBox (ОКНА СООБЩЕНИЙ) +MESSAGE_BOX_STYLE = """ + QMessageBox { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(40, 40, 40, 0.95), + stop:1 rgba(25, 25, 25, 0.95)); + border: 1px solid rgba(255, 255, 255, 0.15); + border-radius: 12px; + } + QMessageBox QLabel { + color: #ffffff; + font-family: 'Poppins'; + font-size: 16px; + } + QMessageBox QPushButton { + background: rgba(30, 30, 30, 0.6); + border: 1px solid rgba(165, 165, 165, 0.7); + border-radius: 8px; + color: #ffffff; + font-family: 'Poppins'; + padding: 8px 20px; + min-width: 80px; + } + QMessageBox QPushButton:hover { + background: #09bec8; + border-color: rgba(255, 255, 255, 0.3); + } +""" + +# СТИЛИ ДЛЯ ВКЛАДКИ НАСТРОЕК PORTPROTON +# PARAMS_TITLE_STYLE +PARAMS_TITLE_STYLE = "color: #232627; font-family: 'Poppins'; font-size: 16px; padding: 10px; background: transparent;" + +PROXY_INPUT_STYLE = """ + QLineEdit { + background: rgba(20, 20, 20, 0.40); + border: 0px solid rgba(165, 165, 165, 0.7); + border-radius: 10px; + height: 34px; + padding-left: 12px; + color: #ffffff; + font-family: 'Poppins'; + font-size: 16px; + } + QLineEdit:focus { + border: 1px solid rgba(0,122,255,0.25); + } + QMenu { + border: 1px solid rgba(255, 255, 255, 0.5); + padding: 5px 10px; + background: #c7c7c7; + } + QMenu::item { + padding: 0px 10px; + border: 10px solid transparent; /* reserve space for selection border */ + } + QMenu::item:selected { + background: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + } +""" + +SETTINGS_COMBO_STYLE = f""" + QComboBox {{ + background: rgba(20, 20, 20, 0.40); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + height: 34px; + padding-left: 12px; + color: #ffffff; + font-family: 'Poppins'; + font-size: 16px; + min-width: 120px; + combobox-popup: 0; + }} + QComboBox:on {{ + background: rgba(20, 20, 20, 0.40); + border: 1px solid rgba(165, 165, 165, 0.7); + border-top-left-radius: 10px; + border-top-right-radius: 10px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + }} + QComboBox:hover {{ + border: 1px solid rgba(165, 165, 165, 0.7); + }} + QComboBox::drop-down {{ + subcontrol-origin: padding; + subcontrol-position: center right; + border-left: 1px solid rgba(255, 255, 255, 0.5); + padding: 12px; + height: 12px; + width: 12px; + }} + QComboBox::down-arrow {{ + image: url({theme_manager.get_icon("down", current_theme_name, as_path=True)}); + padding: 12px; + height: 12px; + width: 12px; + }} + QComboBox::down-arrow:on {{ + image: url({theme_manager.get_icon("up", current_theme_name, as_path=True)}); + padding: 12px; + height: 12px; + width: 12px; + }} + QComboBox QAbstractItemView {{ + outline: none; + border: 1px solid rgba(165, 165, 165, 0.7); + border-top-style: none; + }} + QListView {{ + background: #ffffff; + }} + QListView::item {{ + padding: 7px 7px 7px 12px; + border-radius: 0px; + color: #232627; + }} + QListView::item:hover {{ + background: rgba(0,122,255,0.25); + }} + QListView::item:selected {{ + background: rgba(0,122,255,0.25); + }} +""" diff --git a/portprotonqt/themes/standart/fonts/Orbitron-Regular.ttf b/portprotonqt/themes/standart/fonts/Orbitron-Regular.ttf new file mode 100644 index 0000000..ebaece0 Binary files /dev/null and b/portprotonqt/themes/standart/fonts/Orbitron-Regular.ttf differ diff --git a/portprotonqt/themes/standart/fonts/Play-Bold.ttf b/portprotonqt/themes/standart/fonts/Play-Bold.ttf new file mode 100644 index 0000000..0c1a489 Binary files /dev/null and b/portprotonqt/themes/standart/fonts/Play-Bold.ttf differ diff --git a/portprotonqt/themes/standart/fonts/Play-Regular.ttf b/portprotonqt/themes/standart/fonts/Play-Regular.ttf new file mode 100644 index 0000000..5b916dd Binary files /dev/null and b/portprotonqt/themes/standart/fonts/Play-Regular.ttf differ diff --git a/portprotonqt/themes/standart/fonts/RASKHAL-Regular.ttf b/portprotonqt/themes/standart/fonts/RASKHAL-Regular.ttf new file mode 100755 index 0000000..cb4b29d Binary files /dev/null and b/portprotonqt/themes/standart/fonts/RASKHAL-Regular.ttf differ diff --git a/portprotonqt/themes/standart/images/icons/addgame.svg b/portprotonqt/themes/standart/images/icons/addgame.svg new file mode 100644 index 0000000..d279476 --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/addgame.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/back.svg b/portprotonqt/themes/standart/images/icons/back.svg new file mode 100644 index 0000000..b153396 --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/back.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/broken.svg b/portprotonqt/themes/standart/images/icons/broken.svg new file mode 100644 index 0000000..bec621a --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/broken.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/down.svg b/portprotonqt/themes/standart/images/icons/down.svg new file mode 100644 index 0000000..68dcbbe --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/down.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/platinum-gold.svg b/portprotonqt/themes/standart/images/icons/platinum-gold.svg new file mode 100644 index 0000000..fcec91b --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/platinum-gold.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/play.svg b/portprotonqt/themes/standart/images/icons/play.svg new file mode 100644 index 0000000..6c368ec --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/play.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/ppqt-tray.svg b/portprotonqt/themes/standart/images/icons/ppqt-tray.svg new file mode 100644 index 0000000..2e82556 --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/ppqt-tray.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/save.svg b/portprotonqt/themes/standart/images/icons/save.svg new file mode 100644 index 0000000..b7eae2e --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/save.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/search.svg b/portprotonqt/themes/standart/images/icons/search.svg new file mode 100644 index 0000000..7dafc55 --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/search.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/silver-bronze.svg b/portprotonqt/themes/standart/images/icons/silver-bronze.svg new file mode 100644 index 0000000..75fc95d --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/silver-bronze.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/spinner.svg b/portprotonqt/themes/standart/images/icons/spinner.svg new file mode 100644 index 0000000..a8e901e --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/spinner.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/steam.svg b/portprotonqt/themes/standart/images/icons/steam.svg new file mode 100644 index 0000000..d5db214 --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/steam.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/stop.svg b/portprotonqt/themes/standart/images/icons/stop.svg new file mode 100644 index 0000000..ee999cc --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/stop.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/up.svg b/portprotonqt/themes/standart/images/icons/up.svg new file mode 100644 index 0000000..a95433c --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/up.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/icons/update.svg b/portprotonqt/themes/standart/images/icons/update.svg new file mode 100644 index 0000000..9163861 --- /dev/null +++ b/portprotonqt/themes/standart/images/icons/update.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/images/placeholder.jpg b/portprotonqt/themes/standart/images/placeholder.jpg new file mode 100644 index 0000000..e461216 Binary files /dev/null and b/portprotonqt/themes/standart/images/placeholder.jpg differ diff --git a/portprotonqt/themes/standart/images/screenshots/Библиотека.png b/portprotonqt/themes/standart/images/screenshots/Библиотека.png new file mode 100644 index 0000000..5ac452c Binary files /dev/null and b/portprotonqt/themes/standart/images/screenshots/Библиотека.png differ diff --git a/portprotonqt/themes/standart/images/screenshots/Карточка.png b/portprotonqt/themes/standart/images/screenshots/Карточка.png new file mode 100644 index 0000000..c6cfd07 Binary files /dev/null and b/portprotonqt/themes/standart/images/screenshots/Карточка.png differ diff --git a/portprotonqt/themes/standart/images/screenshots/Настройки.png b/portprotonqt/themes/standart/images/screenshots/Настройки.png new file mode 100644 index 0000000..4db3402 Binary files /dev/null and b/portprotonqt/themes/standart/images/screenshots/Настройки.png differ diff --git a/portprotonqt/themes/standart/images/theme_logo.svg b/portprotonqt/themes/standart/images/theme_logo.svg new file mode 100644 index 0000000..e8b046d --- /dev/null +++ b/portprotonqt/themes/standart/images/theme_logo.svg @@ -0,0 +1 @@ + diff --git a/portprotonqt/themes/standart/metainfo.ini b/portprotonqt/themes/standart/metainfo.ini new file mode 100644 index 0000000..3814979 --- /dev/null +++ b/portprotonqt/themes/standart/metainfo.ini @@ -0,0 +1,5 @@ +[Metainfo] +author = Dervart +author_link = +description = Стандартная тема PortProtonQT (тёмный вариант) +name = Clean Dark diff --git a/portprotonqt/themes/standart/styles.py b/portprotonqt/themes/standart/styles.py new file mode 100644 index 0000000..092ea35 --- /dev/null +++ b/portprotonqt/themes/standart/styles.py @@ -0,0 +1,576 @@ +from portprotonqt.theme_manager import ThemeManager +from portprotonqt.config_utils import read_theme_from_config + +theme_manager = ThemeManager() +current_theme_name = read_theme_from_config() + +# КОНСТАНТЫ +favoriteLabelSize = 48, 48 +pixmapsScaledSize = 60, 60 + +# СТИЛЬ ШАПКИ ГЛАВНОГО ОКНА +MAIN_WINDOW_HEADER_STYLE = """ + QFrame { + background: transparent; + border: 10px solid rgba(255, 255, 255, 0.10); + border-bottom: 0px solid rgba(255, 255, 255, 0.15); + border-top-left-radius: 30px; + border-top-right-radius: 30px; + border: none; + } +""" + +# СТИЛЬ ЗАГОЛОВКА (ЛОГО) В ШАПКЕ +TITLE_LABEL_STYLE = """ + QLabel { + font-family: 'RASKHAL'; + font-size: 38px; + margin: 0 0 0 0; + color: #007AFF; + } +""" + +# СТИЛЬ ОБЛАСТИ НАВИГАЦИИ (КНОПКИ ВКЛАДОК) +NAV_WIDGET_STYLE = """ + QWidget { + background: none; + border: 0px solid; + } +""" + +# СТИЛЬ КНОПОК ВКЛАДОК НАВИГАЦИИ +NAV_BUTTON_STYLE = """ + NavLabel { + background: rgba(0,122,255,0); + padding: 12px 3px; + margin: 10px 0 10px 10px; + color: #7f7f7f; + font-family: 'Play'; + font-size: 16px; + text-transform: uppercase; + border: none; + border-radius: 15px; + } + NavLabel[checked = true] { + background: rgba(0,122,255,0); + color: #09bec8; + font-weight: normal; + text-decoration: underline; + border-radius: 15px; + } + NavLabel:hover { + background: none; + color: #09bec8; + } +""" + +# ГЛОБАЛЬНЫЙ СТИЛЬ ДЛЯ ОКНА (ФОН) И QLabel +MAIN_WINDOW_STYLE = """ + QMainWindow { + background: none; + } + QLabel { + color: #232627; + } +""" + +# СТИЛЬ ПОЛЯ ПОИСКА +SEARCH_EDIT_STYLE = """ + QLineEdit { + background-color: rgba(30, 30, 30, 0.50); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + padding: 7px 14px; + font-family: 'Play'; + font-size: 16px; + color: #ffffff; + } + QLineEdit:focus { + border: 1px solid #09bec8; + } +""" + +# ОТКЛЮЧАЕМ РАМКУ У QScrollArea +SCROLL_AREA_STYLE = """ + QWidget { + background: transparent; + } + QScrollBar:vertical { + width: 10px; + border: 0px solid; + border-radius: 5px; + background: rgba(20, 20, 20, 0.30); + } + QScrollBar::handle:vertical { + background: #bebebe; + border: 0px solid; + border-radius: 5px; + } + QScrollBar::add-line:vertical { + border: 0px solid; + background: none; + } + QScrollBar::sub-line:vertical { + border: 0px solid; + background: none; + } + QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical { + border: 0px solid; + width: 3px; + height: 3px; + background: none; + } + + QScrollBar:horizontal { + height: 10px; + border: 0px solid; + border-radius: 5px; + background: rgba(20, 20, 20, 0.30); + } + QScrollBar::handle:horizontal { + background: #bebebe; + border: 0px solid; + border-radius: 5px; + } + QScrollBar::add-line:horizontal { + border: 0px solid; + background: none; + } + QScrollBar::sub-line:horizontal { + border: 0px solid; + background: none; + } + QScrollBar::up-arrow:horizontal, QScrollBar::down-arrow:horizontal { + border: 0px solid; + width: 3px; + height: 3px; + background: none; + } +""" + +# SLIDER_SIZE_STYLE +SLIDER_SIZE_STYLE= """ + QWidget { + background: transparent; + height: 25px; + } + QSlider::groove:horizontal { + border: 0px solid; + border-radius: 3px; + height: 6px; /* the groove expands to the size of the slider by default. by giving it a height, it has a fixed size */ + background: rgba(20, 20, 20, 0.30); + margin: 6px 0; + } + QSlider::handle:horizontal { + background: #bebebe; + border: 0px solid; + width: 18px; + height: 18px; + margin: -6px 0; /* handle is placed by default on the contents rect of the groove. Expand outside the groove */ + border-radius: 9px; + } +""" + +# СТИЛЬ ОБЛАСТИ ДЛЯ КАРТОЧЕК ИГР (QWidget) +LIST_WIDGET_STYLE = """ + QWidget { + background: none; + border: 0px solid rgba(255, 255, 255, 0.10); + border-radius: 25px; + } +""" + +# ЗАГОЛОВОК "БИБЛИОТЕКА" НА ВКЛАДКЕ +INSTALLED_TAB_TITLE_STYLE = "font-family: 'Play'; font-size: 24px; color: #ffffff;" + +# СТИЛЬ КНОПОК "СОХРАНЕНИЯ, ПРИМЕНЕНИЯ И Т.Д." +ACTION_BUTTON_STYLE = """ + QPushButton { + background: #3f424d; + border: 1px solid rgba(255, 255, 255, 0.20); + border-radius: 10px; + color: #ffffff; + font-size: 16px; + font-family: 'Play'; + padding: 8px 16px; + } + QPushButton:hover { + background: #282a33; + } + QPushButton:pressed { + background: #282a33; + } +""" + +# ТЕКСТОВЫЕ СТИЛИ: ЗАГОЛОВКИ И ОСНОВНОЙ КОНТЕНТ +TAB_TITLE_STYLE = "font-family: 'Play'; font-size: 24px; color: #ffffff; background-color: none;" +CONTENT_STYLE = """ + QLabel { + font-family: 'Play'; + font-size: 16px; + color: #ffffff; + background-color: none; + border-bottom: 1px solid rgba(255, 255, 255, 0.2); + padding-bottom: 15px; + } +""" + +# СТИЛЬ ОСНОВНЫХ СТРАНИЦ +# LIBRARY_WIDGET_STYLE +LIBRARY_WIDGET_STYLE= """ + QWidget { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(112,20,132,1), + stop:1 rgba(50,134,182,1)); + border-radius: 0px; + } +""" + +# CONTAINER_STYLE +CONTAINER_STYLE= """ + QWidget { + background-color: none; + } +""" + +# OTHER_PAGES_WIDGET_STYLE +OTHER_PAGES_WIDGET_STYLE= """ + QWidget { + background: #32343d; + border-radius: 0px; + } +""" + +# CAROUSEL_WIDGET_STYLE +CAROUSEL_WIDGET_STYLE= """ + QWidget { + background: #3f424d; + border-radius: 0px; + } +""" + +# ФОН ДЛЯ ДЕТАЛЬНОЙ СТРАНИЦЫ, ЕСЛИ ОБЛОЖКА НЕ ЗАГРУЖЕНА +DETAIL_PAGE_NO_COVER_STYLE = "background: rgba(20,20,20,0.95); border-radius: 15px;" + +# СТИЛЬ КНОПКИ "ДОБАВИТЬ ИГРУ" И "НАЗАД" НА ДЕТАЛЬНОЙ СТРАНИЦЕ И БИБЛИОТЕКИ +ADDGAME_BACK_BUTTON_STYLE = """ + QPushButton { + background: rgba(20, 20, 20, 0.40); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + color: #ffffff; + font-size: 16px; + font-family: 'Play'; + padding: 8px 16px; + } + QPushButton:hover { + background: #09bec8; + } + QPushButton:pressed { + background: #09bec8; + } +""" + +# ОСНОВНОЙ ФРЕЙМ ДЕТАЛЕЙ ИГРЫ +DETAIL_CONTENT_FRAME_STYLE = """ + QFrame { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(20, 20, 20, 0.40), + stop:1 rgba(20, 20, 20, 0.35)); + border: 0px solid rgba(255, 255, 255, 0.10); + border-radius: 15px; + } +""" + +# ФРЕЙМ ПОД ОБЛОЖКОЙ +COVER_FRAME_STYLE = """ + QFrame { + background: rgba(30, 30, 30, 0.80); + border-radius: 15px; + border: 0px solid rgba(255, 255, 255, 0.15); + } +""" + +# СКРУГЛЕНИЕ LABEL ПОД ОБЛОЖКУ +COVER_LABEL_STYLE = "border-radius: 100px;" + +# ВИДЖЕТ ДЕТАЛЕЙ (ТЕКСТ, ОПИСАНИЕ) +DETAILS_WIDGET_STYLE = "background: rgba(20,20,20,0.40); border-radius: 15px; padding: 10px;" + +# НАЗВАНИЕ (ЗАГОЛОВОК) НА ДЕТАЛЬНОЙ СТРАНИЦЕ +DETAIL_PAGE_TITLE_STYLE = "font-family: 'Play'; font-size: 32px; color: #007AFF;" + +# ЛИНИЯ-РАЗДЕЛИТЕЛЬ +DETAIL_PAGE_LINE_STYLE = "color: rgba(255,255,255,0.12); margin: 10px 0;" + +# ТЕКСТ ОПИСАНИЯ +DETAIL_PAGE_DESC_STYLE = "font-family: 'Play'; font-size: 16px; color: #ffffff; line-height: 1.5;" + +# СТИЛЬ КНОПКИ "ИГРАТЬ" +PLAY_BUTTON_STYLE = """ + QPushButton { + background: rgba(20, 20, 20, 0.40); + border: 1px solid rgba(255, 255, 255, 0.5); + border-radius: 10px; + font-size: 18px; + color: #ffffff; + font-weight: bold; + font-family: 'Play'; + padding: 8px 16px; + min-width: 120px; + min-height: 40px; + } + QPushButton:hover { + background: #09bec8; + } + QPushButton:pressed { + background: #09bec8; + } +""" + +# СТИЛЬ КНОПКИ "ОБЗОР..." В ДИАЛОГЕ "ДОБАВИТЬ ИГРУ" +DIALOG_BROWSE_BUTTON_STYLE = """ + QPushButton { + background: rgba(20, 20, 20, 0.40); + border: 0px solid rgba(255, 255, 255, 0.20); + border-radius: 15px; + color: #ffffff; + font-size: 16px; + padding: 5px 10px; + } + QPushButton:hover { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(0,122,255,0.20), + stop:1 rgba(0,122,255,0.15)); + } + QPushButton:pressed { + background: rgba(20, 20, 20, 0.60); + border: 0px solid rgba(255, 255, 255, 0.25); + } +""" + +# СТИЛЬ КАРТОЧКИ ИГРЫ (GAMECARD) +GAME_CARD_WINDOW_STYLE = """ + QFrame { + border-radius: 20px; + background: rgba(20, 20, 20, 0.40); + border: 0px solid rgba(255, 255, 255, 0.20); + } +""" + +# НАЗВАНИЕ В КАРТОЧКЕ (QLabel) +GAME_CARD_NAME_LABEL_STYLE = """ + QLabel { + color: #ffffff; + font-family: 'Play'; + font-size: 16px; + font-weight: bold; + background-color: rgba(20, 20, 20, 0); + border-bottom-left-radius: 20px; + border-bottom-right-radius: 20px; + padding: 14px, 7px, 3px, 7px; + qproperty-wordWrap: true; + } +""" + +# ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ИНФОРМАЦИИ НА СТРАНИЦЕ ИГР +LAST_LAUNCH_TITLE_STYLE = "font-family: 'Play'; font-size: 11px; color: #bbbbbb; text-transform: uppercase; letter-spacing: 0.75px; margin-bottom: 2px;" +LAST_LAUNCH_VALUE_STYLE = "font-family: 'Play'; font-size: 13px; color: #ffffff; font-weight: 600; letter-spacing: 0.75px;" +PLAY_TIME_TITLE_STYLE = "font-family: 'Play'; font-size: 11px; color: #bbbbbb; text-transform: uppercase; letter-spacing: 0.75px; margin-bottom: 2px;" +PLAY_TIME_VALUE_STYLE = "font-family: 'Play'; font-size: 13px; color: #ffffff; font-weight: 600; letter-spacing: 0.75px;" +GAMEPAD_SUPPORT_VALUE_STYLE = """ + font-family: 'Play'; font-size: 12px; color: #00ff00; + font-weight: bold; background: rgba(0, 0, 0, 0.3); + border-radius: 5px; padding: 4px 8px; +""" + +# СТИЛИ ПОЛНОЭКРАНОГО ПРЕВЬЮ СКРИНШОТОВ ТЕМЫ +PREV_BUTTON_STYLE="background-color: rgba(0, 0, 0, 0.5); color: white; border: none;" +NEXT_BUTTON_STYLE="background-color: rgba(0, 0, 0, 0.5); color: white; border: none;" +CAPTION_LABEL_STYLE="color: white; font-size: 16px;" + +# СТИЛИ БЕЙДЖА PROTONDB НА КАРТОЧКЕ +def get_protondb_badge_style(tier): + tier = tier.lower() + tier_colors = { + "platinum": {"background": "rgba(255,255,255,0.9)", "color": "black"}, + "gold": {"background": "rgba(253,185,49,0.7)", "color": "black"}, + "silver": {"background": "rgba(169,169,169,0.8)", "color": "black"}, + "bronze": {"background": "rgba(205,133,63,0.7)", "color": "black"}, + "borked": {"background": "rgba(255,0,0,0.7)", "color": "black"}, + "pending": {"background": "rgba(160,82,45,0.7)", "color": "black"} + } + colors = tier_colors.get(tier, {"background": "rgba(0, 0, 0, 0.5)", "color": "white"}) + return f""" + qproperty-alignment: AlignCenter; + background-color: {colors["background"]}; + color: {colors["color"]}; + font-size: 16px; + border-radius: 5px; + font-family: 'Play'; + font-weight: bold; + """ + +# СТИЛИ БЕЙДЖА STEAM +STEAM_BADGE_STYLE= """ + qproperty-alignment: AlignCenter; + background: rgba(0, 0, 0, 0.5); + color: white; + font-size: 16px; + border-radius: 5px; + font-family: 'Play'; + font-weight: bold; +""" + +# Favorite Star +FAVORITE_LABEL_STYLE = "color: gold; font-size: 32px; background: transparent;" + +# СТИЛИ ДЛЯ QMessageBox (ОКНА СООБЩЕНИЙ) +MESSAGE_BOX_STYLE = """ + QMessageBox { + background: qlineargradient(x1:0, y1:0, x2:1, y2:0, + stop:0 rgba(40, 40, 40, 0.95), + stop:1 rgba(25, 25, 25, 0.95)); + border: 1px solid rgba(255, 255, 255, 0.15); + border-radius: 12px; + } + QMessageBox QLabel { + color: #ffffff; + font-family: 'Play'; + font-size: 16px; + } + QMessageBox QPushButton { + background: rgba(30, 30, 30, 0.6); + border: 1px solid rgba(255, 255, 255, 0.2); + border-radius: 8px; + color: #ffffff; + font-family: 'Play'; + padding: 8px 20px; + min-width: 80px; + } + QMessageBox QPushButton:hover { + background: #09bec8; + border-color: rgba(255, 255, 255, 0.3); + } +""" + +# СТИЛИ ДЛЯ ВКЛАДКИ НАСТРОЕК PORTPROTON +# PARAMS_TITLE_STYLE +PARAMS_TITLE_STYLE = "color: #ffffff; font-family: 'Play'; font-size: 16px; padding: 10px; background: transparent;" + +PROXY_INPUT_STYLE = """ + QLineEdit { + background: #282a33; + border: 0px solid rgba(255, 255, 255, 0.2); + border-radius: 10px; + height: 34px; + padding-left: 12px; + color: #ffffff; + font-family: 'Play'; + font-size: 16px; + } + QLineEdit:focus { + border: 1px solid rgba(255, 255, 255, 0.2); + } + QMenu { + border: 1px solid rgba(255, 255, 255, 0.2); + padding: 5px 10px; + background: #32343d; + } + QMenu::item { + padding: 0px 10px; + border: 10px solid transparent; /* reserve space for selection border */ + } + QMenu::item:selected { + background: #3f424d; + border-radius: 10px; + } +""" + +SETTINGS_COMBO_STYLE = f""" + QComboBox {{ + background: #3f424d; + border: 0px solid rgba(255, 255, 255, 0.2); + border-radius: 10px; + height: 34px; + padding-left: 12px; + color: #ffffff; + font-family: 'Play'; + font-size: 16px; + min-width: 120px; + combobox-popup: 0; + }} + QComboBox:on {{ + background: #373a43; + border: 1px solid rgba(255, 255, 255, 0.2); + border-top-left-radius: 10px; + border-top-right-radius: 10px; + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; + }} + QComboBox:hover {{ + border: 1px solid rgba(255, 255, 255, 0.2); + }} + /* Состояние фокуса */ + QComboBox:focus {{ + border: 2px solid #409EFF; + background-color: #404554; + }} + QComboBox::drop-down {{ + subcontrol-origin: padding; + subcontrol-position: center right; + border-left: 1px solid rgba(255, 255, 255, 0.05); + padding: 12px; + height: 12px; + width: 12px; + }} + QComboBox::down-arrow {{ + image: url({theme_manager.get_icon("down", current_theme_name, as_path=True)}); + padding: 12px; + height: 12px; + width: 12px; + }} + QComboBox::down-arrow:on {{ + image: url({theme_manager.get_icon("up", current_theme_name, as_path=True)}); + padding: 12px; + height: 12px; + width: 12px; + }} + /* Список при открытом комбобоксе */ + QComboBox QAbstractItemView {{ + outline: none; + border: 1px solid rgba(255, 255, 255, 0.2); + border-top-style: none; + }} + QListView {{ + background: #3f424d; + }} + QListView::item {{ + padding: 7px 7px 7px 12px; + border-radius: 0px; + color: #ffffff; + }} + QListView::item:hover {{ + background: #282a33; + }} + QListView::item:selected {{ + background: #282a33; + }} + /* Выделение в списке при фокусе на элементе */ + QListView::item:focus {{ + background: #409EFF; + color: #ffffff; + }} +""" + + +# ФУНКЦИЯ ДЛЯ ДИНАМИЧЕСКОГО ГРАДИЕНТА (ДЕТАЛИ ИГР) +# Функции из этой темы срабатывает всегда вне зависимости от выбранной темы, функции из других тем работают только в этих темах +def detail_page_style(stops): + return f""" + QWidget {{ + background: qlineargradient(x1:0, y1:0, x2:1, y2:1, + {stops}); + border-radius: 15px; + }} +""" diff --git a/portprotonqt/time_utils.py b/portprotonqt/time_utils.py new file mode 100644 index 0000000..71fc463 --- /dev/null +++ b/portprotonqt/time_utils.py @@ -0,0 +1,159 @@ +import os +from datetime import datetime, timedelta +from babel.dates import format_timedelta, format_date +from portprotonqt.config_utils import read_time_config +from portprotonqt.localization import _, get_system_locale +from portprotonqt.logger import get_logger + +logger = get_logger(__name__) + +def get_cache_file_path(): + """Возвращает путь к файлу кеша portproton_last_launch.""" + cache_home = os.getenv("XDG_CACHE_HOME", os.path.join(os.path.expanduser("~"), ".cache")) + return os.path.join(cache_home, "PortProtonQT", "last_launch") + +def save_last_launch(exe_name, launch_time): + """ + Сохраняет время запуска для exe. + Формат файла: + """ + file_path = get_cache_file_path() + data = {} + if os.path.exists(file_path): + with open(file_path, encoding="utf-8") as f: + for line in f: + parts = line.strip().split(maxsplit=1) + if len(parts) == 2: + data[parts[0]] = parts[1] + data[exe_name] = launch_time.isoformat() + os.makedirs(os.path.dirname(file_path), exist_ok=True) + with open(file_path, "w", encoding="utf-8") as f: + for key, iso_time in data.items(): + f.write(f"{key} {iso_time}\n") + +def format_last_launch(launch_time): + """ + Форматирует время запуска с использованием Babel. + + Для detail_level "detailed" возвращает относительный формат с добавлением "назад" + (например, "2 мин. назад"). Если время меньше минуты – возвращает переведённую строку. + Для "brief" – дату в формате "день месяц год" (например, "1 апреля 2023") + на основе системной локали. + """ + detail_level = read_time_config() or "detailed" + system_locale = get_system_locale() + if detail_level == "detailed": + # Вычисляем delta как launch_time - datetime.now() чтобы получить отрицательное значение для прошедшего времени. + delta = launch_time - datetime.now() + if abs(delta.total_seconds()) < 60: + return _("just now") + return format_timedelta(delta, locale=system_locale, granularity='second', format='short', add_direction=True) + else: + return format_date(launch_time, format="d MMMM yyyy", locale=system_locale) + +def get_last_launch(exe_name): + """ + Читает время последнего запуска для заданного exe из файла кеша. + Возвращает время запуска в нужном формате или перевод строки "Never". + """ + file_path = get_cache_file_path() + if not os.path.exists(file_path): + return _("Never") + with open(file_path, encoding="utf-8") as f: + for line in f: + parts = line.strip().split(maxsplit=1) + if len(parts) == 2 and parts[0] == exe_name: + iso_time = parts[1] + launch_time = datetime.fromisoformat(iso_time) + return format_last_launch(launch_time) + return _("Never") + +def parse_playtime_file(file_path): + """ + Парсит файл с данными о времени игры. + + Формат строки в файле: + <полный путь к exe> <хэш> + + Возвращает словарь вида: + { + '': playtime_seconds (int), + ... + } + """ + playtime_data = {} + if not os.path.exists(file_path): + logger.error(f"Файл не найден: {file_path}") + return playtime_data + + with open(file_path, encoding="utf-8") as f: + for line in f: + if not line.strip(): + continue + parts = line.strip().split() + if len(parts) < 3: + continue + exe_path = parts[0] + seconds = int(parts[2]) + playtime_data[exe_path] = seconds + return playtime_data + +def format_playtime(seconds): + """ + Конвертирует время в секундах в форматированную строку с использованием Babel. + + При "detailed" выводится полный разбор времени, без округления + (например, "1 ч 1 мин 15 сек"). + + При "brief": + - если время менее часа, выводится точное время с секундами (например, "9 мин 28 сек"), + - если больше часа – только часы (например, "3 ч"). + """ + detail_level = read_time_config() or "detailed" + system_locale = get_system_locale() + seconds = int(seconds) + + if detail_level == "detailed": + days, rem = divmod(seconds, 86400) + hours, rem = divmod(rem, 3600) + minutes, secs = divmod(rem, 60) + parts = [] + if days > 0: + parts.append(f"{days} " + _("d.")) + if hours > 0: + parts.append(f"{hours} " + _("h.")) + if minutes > 0: + parts.append(f"{minutes} " + _("min.")) + if secs > 0 or not parts: + parts.append(f"{secs} " + _("sec.")) + return " ".join(parts) + else: + # Режим brief + if seconds < 3600: + minutes, secs = divmod(seconds, 60) + parts = [] + if minutes > 0: + parts.append(f"{minutes} " + _("min.")) + if secs > 0 or not parts: + parts.append(f"{secs} " + _("sec.")) + return " ".join(parts) + else: + hours = seconds // 3600 + return format_timedelta(timedelta(hours=hours), locale=system_locale, granularity='hour', format='short') + +def get_last_launch_timestamp(exe_name): + """ + Возвращает метку времени последнего запуска (timestamp) для заданного exe. + Если записи нет, возвращает 0. + """ + file_path = get_cache_file_path() + if not os.path.exists(file_path): + return 0 + with open(file_path, encoding="utf-8") as f: + for line in f: + parts = line.strip().split(maxsplit=1) + if len(parts) == 2 and parts[0] == exe_name: + iso_time = parts[1] + dt = datetime.fromisoformat(iso_time) + return dt.timestamp() + return 0 diff --git a/portprotonqt/tray.py b/portprotonqt/tray.py new file mode 100644 index 0000000..ba6ea0f --- /dev/null +++ b/portprotonqt/tray.py @@ -0,0 +1,35 @@ +from PySide6.QtGui import QAction, QIcon +from PySide6.QtWidgets import QSystemTrayIcon, QMenu +from portprotonqt.theme_manager import ThemeManager +from typing import cast +import portprotonqt.themes.standart.styles as default_styles +from portprotonqt.config_utils import read_theme_from_config + +class SystemTray: + def __init__(self, app, theme=None): + self.theme_manager = ThemeManager() + self.theme = theme if theme is not None else default_styles + self.current_theme_name = read_theme_from_config() + self.tray = QSystemTrayIcon() + self.tray.setIcon(cast(QIcon, self.theme_manager.get_icon("ppqt-tray", self.current_theme_name))) + self.tray.setToolTip("PortProton QT") + self.tray.setVisible(True) + + # Создаём меню + self.menu = QMenu() + + self.hide_action = QAction("Скрыть окно") + self.menu.addAction(self.hide_action) + + self.show_action = QAction("Показать окно") + self.menu.addAction(self.show_action) + + self.quit_action = QAction("Выход") + self.quit_action.triggered.connect(app.quit) + self.menu.addAction(self.quit_action) + + self.tray.setContextMenu(self.menu) + + def hide_tray(self): + """Скрыть иконку трея""" + self.tray.hide() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..af6bb58 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,107 @@ +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "portprotonqt" +version = "0.1.1" +description = "A project to rewrite PortProton (PortWINE) using PySide" +readme = "README.md" +license = { text = "GPL-3.0" } +authors = [ + { name = "Boria138" }, + { name = "BlackSnaker" }, + { name = "Mikhail Tergoev(Castro-Fidel)" } +] +keywords = ["portproton", "wine", "game", "steam"] +classifiers = [ + "Development Status :: 3 - Alpha", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Operating System :: Linux" +] +requires-python = ">=3.10" +dependencies = [ + "babel>=2.17.0", + "evdev>=1.9.1", + "icoextract>=0.1.6", + "numpy>=2.2.4", + "orjson>=3.10.16", + "pillow>=11.2.1", + "psutil>=7.0.0", + "pyside6>=6.9.0", + "pyudev>=0.24.3", + "requests>=2.32.3", + "tqdm>=4.67.1", + "vdf>=3.4", +] + +[project.scripts] +portprotonqt = "portprotonqt.app:main" + +[tool.setuptools.package-data] +"portprotonqt" = ["themes/**/*", "locales/**/*", "custom_data/**/*"] + +[tool.setuptools.packages.find] +exclude = ["build-aux", "dev-scripts", "documentation", "data"] + +[tool.ruff.lint] +select = [ + "E", # pycodestyle errors + "W", # pycodestyle warnings + "F", # pyflakes + "B", # flake8-bugbear + "C4", # flake8-comprehensions + "UP", # pyupgrade +] +ignore = [ + "B008", # do not perform function calls in argument defaults + "C901", # too complex + "W191", # indentation contains tabs + "E501" # Line too long +] + +[tool.ruff.lint.isort] +known-third-party = ["portprotonqt"] + +[tool.ruff] +exclude = [ + ".eggs", + ".git", + "build", + "dist", + "portprotonqt.egg-info", + ".venv", + "venv", + "dev-scripts", + "portprotonqt/themes", + ".vscode", +] +target-version = "py310" + +[tool.pyright] +pythonVersion = "3.10" +pythonPlatform = "Linux" +ignore = [ + ".eggs", + ".git", + "build", + "dist", + "portprotonqt.egg-info", + ".venv", + "venv", + "dev-scripts", + "portprotonqt/themes", + ".vscode", +] + +[dependency-groups] +dev = [ + "pre-commit>=4.2.0", + "pyaspeller>=2.0.2", + "pyright>=1.1.400", +] diff --git a/uv.lock b/uv.lock new file mode 100644 index 0000000..c6074bc --- /dev/null +++ b/uv.lock @@ -0,0 +1,669 @@ +version = 1 +revision = 2 +requires-python = ">=3.10" + +[[package]] +name = "babel" +version = "2.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7d/6b/d52e42361e1aa00709585ecc30b3f9684b3ab62530771402248b1b1d6240/babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d", size = 9951852, upload-time = "2025-02-01T15:17:41.026Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2", size = 10182537, upload-time = "2025-02-01T15:17:37.39Z" }, +] + +[[package]] +name = "certifi" +version = "2025.4.26" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e8/9e/c05b3920a3b7d20d3d3310465f50348e5b3694f4f88c6daf736eef3024c4/certifi-2025.4.26.tar.gz", hash = "sha256:0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6", size = 160705, upload-time = "2025-04-26T02:12:29.51Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/7e/3db2bd1b1f9e95f7cddca6d6e75e2f2bd9f51b1246e546d88addca0106bd/certifi-2025.4.26-py3-none-any.whl", hash = "sha256:30350364dfe371162649852c63336a15c70c6510c2ad5015b21c2345311805f3", size = 159618, upload-time = "2025-04-26T02:12:27.662Z" }, +] + +[[package]] +name = "cfgv" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, +] + +[[package]] +name = "charset-normalizer" +version = "3.4.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188, upload-time = "2024-12-24T18:12:35.43Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/58/5580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1/charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de", size = 198013, upload-time = "2024-12-24T18:09:43.671Z" }, + { url = "https://files.pythonhosted.org/packages/d0/11/00341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176", size = 141285, upload-time = "2024-12-24T18:09:48.113Z" }, + { url = "https://files.pythonhosted.org/packages/01/09/11d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037", size = 151449, upload-time = "2024-12-24T18:09:50.845Z" }, + { url = "https://files.pythonhosted.org/packages/08/06/9f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f", size = 143892, upload-time = "2024-12-24T18:09:52.078Z" }, + { url = "https://files.pythonhosted.org/packages/93/62/5e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a", size = 146123, upload-time = "2024-12-24T18:09:54.575Z" }, + { url = "https://files.pythonhosted.org/packages/a9/ac/ab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61/charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a", size = 147943, upload-time = "2024-12-24T18:09:57.324Z" }, + { url = "https://files.pythonhosted.org/packages/03/d2/3f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247", size = 142063, upload-time = "2024-12-24T18:09:59.794Z" }, + { url = "https://files.pythonhosted.org/packages/f2/e3/e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408", size = 150578, upload-time = "2024-12-24T18:10:02.357Z" }, + { url = "https://files.pythonhosted.org/packages/8d/af/779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb", size = 153629, upload-time = "2024-12-24T18:10:03.678Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b6/7aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d", size = 150778, upload-time = "2024-12-24T18:10:06.197Z" }, + { url = "https://files.pythonhosted.org/packages/39/f4/d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056/charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807", size = 146453, upload-time = "2024-12-24T18:10:08.848Z" }, + { url = "https://files.pythonhosted.org/packages/49/2b/999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69/charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f", size = 95479, upload-time = "2024-12-24T18:10:10.044Z" }, + { url = "https://files.pythonhosted.org/packages/2d/ce/3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309/charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f", size = 102790, upload-time = "2024-12-24T18:10:11.323Z" }, + { url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995, upload-time = "2024-12-24T18:10:12.838Z" }, + { url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471, upload-time = "2024-12-24T18:10:14.101Z" }, + { url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831, upload-time = "2024-12-24T18:10:15.512Z" }, + { url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335, upload-time = "2024-12-24T18:10:18.369Z" }, + { url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862, upload-time = "2024-12-24T18:10:19.743Z" }, + { url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673, upload-time = "2024-12-24T18:10:21.139Z" }, + { url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211, upload-time = "2024-12-24T18:10:22.382Z" }, + { url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039, upload-time = "2024-12-24T18:10:24.802Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939, upload-time = "2024-12-24T18:10:26.124Z" }, + { url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075, upload-time = "2024-12-24T18:10:30.027Z" }, + { url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340, upload-time = "2024-12-24T18:10:32.679Z" }, + { url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205, upload-time = "2024-12-24T18:10:34.724Z" }, + { url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441, upload-time = "2024-12-24T18:10:37.574Z" }, + { url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105, upload-time = "2024-12-24T18:10:38.83Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404, upload-time = "2024-12-24T18:10:44.272Z" }, + { url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423, upload-time = "2024-12-24T18:10:45.492Z" }, + { url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184, upload-time = "2024-12-24T18:10:47.898Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268, upload-time = "2024-12-24T18:10:50.589Z" }, + { url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601, upload-time = "2024-12-24T18:10:52.541Z" }, + { url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098, upload-time = "2024-12-24T18:10:53.789Z" }, + { url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520, upload-time = "2024-12-24T18:10:55.048Z" }, + { url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852, upload-time = "2024-12-24T18:10:57.647Z" }, + { url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488, upload-time = "2024-12-24T18:10:59.43Z" }, + { url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192, upload-time = "2024-12-24T18:11:00.676Z" }, + { url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550, upload-time = "2024-12-24T18:11:01.952Z" }, + { url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785, upload-time = "2024-12-24T18:11:03.142Z" }, + { url = "https://files.pythonhosted.org/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda", size = 195698, upload-time = "2024-12-24T18:11:05.834Z" }, + { url = "https://files.pythonhosted.org/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313", size = 140162, upload-time = "2024-12-24T18:11:07.064Z" }, + { url = "https://files.pythonhosted.org/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9", size = 150263, upload-time = "2024-12-24T18:11:08.374Z" }, + { url = "https://files.pythonhosted.org/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b", size = 142966, upload-time = "2024-12-24T18:11:09.831Z" }, + { url = "https://files.pythonhosted.org/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11", size = 144992, upload-time = "2024-12-24T18:11:12.03Z" }, + { url = "https://files.pythonhosted.org/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f", size = 147162, upload-time = "2024-12-24T18:11:13.372Z" }, + { url = "https://files.pythonhosted.org/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd", size = 140972, upload-time = "2024-12-24T18:11:14.628Z" }, + { url = "https://files.pythonhosted.org/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2", size = 149095, upload-time = "2024-12-24T18:11:17.672Z" }, + { url = "https://files.pythonhosted.org/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886", size = 152668, upload-time = "2024-12-24T18:11:18.989Z" }, + { url = "https://files.pythonhosted.org/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601", size = 150073, upload-time = "2024-12-24T18:11:21.507Z" }, + { url = "https://files.pythonhosted.org/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd", size = 145732, upload-time = "2024-12-24T18:11:22.774Z" }, + { url = "https://files.pythonhosted.org/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407", size = 95391, upload-time = "2024-12-24T18:11:24.139Z" }, + { url = "https://files.pythonhosted.org/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971", size = 102702, upload-time = "2024-12-24T18:11:26.535Z" }, + { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767, upload-time = "2024-12-24T18:12:32.852Z" }, +] + +[[package]] +name = "colorama" +version = "0.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, +] + +[[package]] +name = "distlib" +version = "0.3.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923, upload-time = "2024-10-09T18:35:47.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973, upload-time = "2024-10-09T18:35:44.272Z" }, +] + +[[package]] +name = "evdev" +version = "1.9.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/63/fe/a17c106a1f4061ce83f04d14bcedcfb2c38c7793ea56bfb906a6fadae8cb/evdev-1.9.2.tar.gz", hash = "sha256:5d3278892ce1f92a74d6bf888cc8525d9f68af85dbe336c95d1c87fb8f423069", size = 33301, upload-time = "2025-05-01T19:53:47.69Z" } + +[[package]] +name = "filelock" +version = "3.18.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075, upload-time = "2025-03-14T07:11:40.47Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215, upload-time = "2025-03-14T07:11:39.145Z" }, +] + +[[package]] +name = "icoextract" +version = "0.1.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pefile" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/57/9e9295209f39dac4712df622b1677d5ea97a5ea987f2033c489b4ad2b0d4/icoextract-0.1.6.tar.gz", hash = "sha256:492f27ea5a3a22e56ca40a2e2dec8a7c35c1042e8b257ca0745367c56b1f56fa", size = 10051, upload-time = "2025-03-02T23:34:46.087Z" } + +[[package]] +name = "identify" +version = "2.6.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/98/a71ab060daec766acc30fb47dfca219d03de34a70d616a79a38c6066c5bf/identify-2.6.9.tar.gz", hash = "sha256:d40dfe3142a1421d8518e3d3985ef5ac42890683e32306ad614a29490abeb6bf", size = 99249, upload-time = "2025-03-08T15:54:13.632Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/ce/0845144ed1f0e25db5e7a79c2354c1da4b5ce392b8966449d5db8dca18f1/identify-2.6.9-py2.py3-none-any.whl", hash = "sha256:c98b4322da415a8e5a70ff6e51fbc2d2932c015532d77e9f8537b4ba7813b150", size = 99101, upload-time = "2025-03-08T15:54:12.026Z" }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, +] + +[[package]] +name = "nodeenv" +version = "1.9.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, +] + +[[package]] +name = "numpy" +version = "2.2.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/76/21/7d2a95e4bba9dc13d043ee156a356c0a8f0c6309dff6b21b4d71a073b8a8/numpy-2.2.6.tar.gz", hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd", size = 20276440, upload-time = "2025-05-17T22:38:04.611Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9a/3e/ed6db5be21ce87955c0cbd3009f2803f59fa08df21b5df06862e2d8e2bdd/numpy-2.2.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b412caa66f72040e6d268491a59f2c43bf03eb6c96dd8f0307829feb7fa2b6fb", size = 21165245, upload-time = "2025-05-17T21:27:58.555Z" }, + { url = "https://files.pythonhosted.org/packages/22/c2/4b9221495b2a132cc9d2eb862e21d42a009f5a60e45fc44b00118c174bff/numpy-2.2.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8e41fd67c52b86603a91c1a505ebaef50b3314de0213461c7a6e99c9a3beff90", size = 14360048, upload-time = "2025-05-17T21:28:21.406Z" }, + { url = "https://files.pythonhosted.org/packages/fd/77/dc2fcfc66943c6410e2bf598062f5959372735ffda175b39906d54f02349/numpy-2.2.6-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:37e990a01ae6ec7fe7fa1c26c55ecb672dd98b19c3d0e1d1f326fa13cb38d163", size = 5340542, upload-time = "2025-05-17T21:28:30.931Z" }, + { url = "https://files.pythonhosted.org/packages/7a/4f/1cb5fdc353a5f5cc7feb692db9b8ec2c3d6405453f982435efc52561df58/numpy-2.2.6-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:5a6429d4be8ca66d889b7cf70f536a397dc45ba6faeb5f8c5427935d9592e9cf", size = 6878301, upload-time = "2025-05-17T21:28:41.613Z" }, + { url = "https://files.pythonhosted.org/packages/eb/17/96a3acd228cec142fcb8723bd3cc39c2a474f7dcf0a5d16731980bcafa95/numpy-2.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:efd28d4e9cd7d7a8d39074a4d44c63eda73401580c5c76acda2ce969e0a38e83", size = 14297320, upload-time = "2025-05-17T21:29:02.78Z" }, + { url = "https://files.pythonhosted.org/packages/b4/63/3de6a34ad7ad6646ac7d2f55ebc6ad439dbbf9c4370017c50cf403fb19b5/numpy-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc7b73d02efb0e18c000e9ad8b83480dfcd5dfd11065997ed4c6747470ae8915", size = 16801050, upload-time = "2025-05-17T21:29:27.675Z" }, + { url = "https://files.pythonhosted.org/packages/07/b6/89d837eddef52b3d0cec5c6ba0456c1bf1b9ef6a6672fc2b7873c3ec4e2e/numpy-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:74d4531beb257d2c3f4b261bfb0fc09e0f9ebb8842d82a7b4209415896adc680", size = 15807034, upload-time = "2025-05-17T21:29:51.102Z" }, + { url = "https://files.pythonhosted.org/packages/01/c8/dc6ae86e3c61cfec1f178e5c9f7858584049b6093f843bca541f94120920/numpy-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8fc377d995680230e83241d8a96def29f204b5782f371c532579b4f20607a289", size = 18614185, upload-time = "2025-05-17T21:30:18.703Z" }, + { url = "https://files.pythonhosted.org/packages/5b/c5/0064b1b7e7c89137b471ccec1fd2282fceaae0ab3a9550f2568782d80357/numpy-2.2.6-cp310-cp310-win32.whl", hash = "sha256:b093dd74e50a8cba3e873868d9e93a85b78e0daf2e98c6797566ad8044e8363d", size = 6527149, upload-time = "2025-05-17T21:30:29.788Z" }, + { url = "https://files.pythonhosted.org/packages/a3/dd/4b822569d6b96c39d1215dbae0582fd99954dcbcf0c1a13c61783feaca3f/numpy-2.2.6-cp310-cp310-win_amd64.whl", hash = "sha256:f0fd6321b839904e15c46e0d257fdd101dd7f530fe03fd6359c1ea63738703f3", size = 12904620, upload-time = "2025-05-17T21:30:48.994Z" }, + { url = "https://files.pythonhosted.org/packages/da/a8/4f83e2aa666a9fbf56d6118faaaf5f1974d456b1823fda0a176eff722839/numpy-2.2.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f9f1adb22318e121c5c69a09142811a201ef17ab257a1e66ca3025065b7f53ae", size = 21176963, upload-time = "2025-05-17T21:31:19.36Z" }, + { url = "https://files.pythonhosted.org/packages/b3/2b/64e1affc7972decb74c9e29e5649fac940514910960ba25cd9af4488b66c/numpy-2.2.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c820a93b0255bc360f53eca31a0e676fd1101f673dda8da93454a12e23fc5f7a", size = 14406743, upload-time = "2025-05-17T21:31:41.087Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9f/0121e375000b5e50ffdd8b25bf78d8e1a5aa4cca3f185d41265198c7b834/numpy-2.2.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3d70692235e759f260c3d837193090014aebdf026dfd167834bcba43e30c2a42", size = 5352616, upload-time = "2025-05-17T21:31:50.072Z" }, + { url = "https://files.pythonhosted.org/packages/31/0d/b48c405c91693635fbe2dcd7bc84a33a602add5f63286e024d3b6741411c/numpy-2.2.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:481b49095335f8eed42e39e8041327c05b0f6f4780488f61286ed3c01368d491", size = 6889579, upload-time = "2025-05-17T21:32:01.712Z" }, + { url = "https://files.pythonhosted.org/packages/52/b8/7f0554d49b565d0171eab6e99001846882000883998e7b7d9f0d98b1f934/numpy-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b64d8d4d17135e00c8e346e0a738deb17e754230d7e0810ac5012750bbd85a5a", size = 14312005, upload-time = "2025-05-17T21:32:23.332Z" }, + { url = "https://files.pythonhosted.org/packages/b3/dd/2238b898e51bd6d389b7389ffb20d7f4c10066d80351187ec8e303a5a475/numpy-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba10f8411898fc418a521833e014a77d3ca01c15b0c6cdcce6a0d2897e6dbbdf", size = 16821570, upload-time = "2025-05-17T21:32:47.991Z" }, + { url = "https://files.pythonhosted.org/packages/83/6c/44d0325722cf644f191042bf47eedad61c1e6df2432ed65cbe28509d404e/numpy-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd48227a919f1bafbdda0583705e547892342c26fb127219d60a5c36882609d1", size = 15818548, upload-time = "2025-05-17T21:33:11.728Z" }, + { url = "https://files.pythonhosted.org/packages/ae/9d/81e8216030ce66be25279098789b665d49ff19eef08bfa8cb96d4957f422/numpy-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9551a499bf125c1d4f9e250377c1ee2eddd02e01eac6644c080162c0c51778ab", size = 18620521, upload-time = "2025-05-17T21:33:39.139Z" }, + { url = "https://files.pythonhosted.org/packages/6a/fd/e19617b9530b031db51b0926eed5345ce8ddc669bb3bc0044b23e275ebe8/numpy-2.2.6-cp311-cp311-win32.whl", hash = "sha256:0678000bb9ac1475cd454c6b8c799206af8107e310843532b04d49649c717a47", size = 6525866, upload-time = "2025-05-17T21:33:50.273Z" }, + { url = "https://files.pythonhosted.org/packages/31/0a/f354fb7176b81747d870f7991dc763e157a934c717b67b58456bc63da3df/numpy-2.2.6-cp311-cp311-win_amd64.whl", hash = "sha256:e8213002e427c69c45a52bbd94163084025f533a55a59d6f9c5b820774ef3303", size = 12907455, upload-time = "2025-05-17T21:34:09.135Z" }, + { url = "https://files.pythonhosted.org/packages/82/5d/c00588b6cf18e1da539b45d3598d3557084990dcc4331960c15ee776ee41/numpy-2.2.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:41c5a21f4a04fa86436124d388f6ed60a9343a6f767fced1a8a71c3fbca038ff", size = 20875348, upload-time = "2025-05-17T21:34:39.648Z" }, + { url = "https://files.pythonhosted.org/packages/66/ee/560deadcdde6c2f90200450d5938f63a34b37e27ebff162810f716f6a230/numpy-2.2.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de749064336d37e340f640b05f24e9e3dd678c57318c7289d222a8a2f543e90c", size = 14119362, upload-time = "2025-05-17T21:35:01.241Z" }, + { url = "https://files.pythonhosted.org/packages/3c/65/4baa99f1c53b30adf0acd9a5519078871ddde8d2339dc5a7fde80d9d87da/numpy-2.2.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:894b3a42502226a1cac872f840030665f33326fc3dac8e57c607905773cdcde3", size = 5084103, upload-time = "2025-05-17T21:35:10.622Z" }, + { url = "https://files.pythonhosted.org/packages/cc/89/e5a34c071a0570cc40c9a54eb472d113eea6d002e9ae12bb3a8407fb912e/numpy-2.2.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:71594f7c51a18e728451bb50cc60a3ce4e6538822731b2933209a1f3614e9282", size = 6625382, upload-time = "2025-05-17T21:35:21.414Z" }, + { url = "https://files.pythonhosted.org/packages/f8/35/8c80729f1ff76b3921d5c9487c7ac3de9b2a103b1cd05e905b3090513510/numpy-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2618db89be1b4e05f7a1a847a9c1c0abd63e63a1607d892dd54668dd92faf87", size = 14018462, upload-time = "2025-05-17T21:35:42.174Z" }, + { url = "https://files.pythonhosted.org/packages/8c/3d/1e1db36cfd41f895d266b103df00ca5b3cbe965184df824dec5c08c6b803/numpy-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd83c01228a688733f1ded5201c678f0c53ecc1006ffbc404db9f7a899ac6249", size = 16527618, upload-time = "2025-05-17T21:36:06.711Z" }, + { url = "https://files.pythonhosted.org/packages/61/c6/03ed30992602c85aa3cd95b9070a514f8b3c33e31124694438d88809ae36/numpy-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:37c0ca431f82cd5fa716eca9506aefcabc247fb27ba69c5062a6d3ade8cf8f49", size = 15505511, upload-time = "2025-05-17T21:36:29.965Z" }, + { url = "https://files.pythonhosted.org/packages/b7/25/5761d832a81df431e260719ec45de696414266613c9ee268394dd5ad8236/numpy-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fe27749d33bb772c80dcd84ae7e8df2adc920ae8297400dabec45f0dedb3f6de", size = 18313783, upload-time = "2025-05-17T21:36:56.883Z" }, + { url = "https://files.pythonhosted.org/packages/57/0a/72d5a3527c5ebffcd47bde9162c39fae1f90138c961e5296491ce778e682/numpy-2.2.6-cp312-cp312-win32.whl", hash = "sha256:4eeaae00d789f66c7a25ac5f34b71a7035bb474e679f410e5e1a94deb24cf2d4", size = 6246506, upload-time = "2025-05-17T21:37:07.368Z" }, + { url = "https://files.pythonhosted.org/packages/36/fa/8c9210162ca1b88529ab76b41ba02d433fd54fecaf6feb70ef9f124683f1/numpy-2.2.6-cp312-cp312-win_amd64.whl", hash = "sha256:c1f9540be57940698ed329904db803cf7a402f3fc200bfe599334c9bd84a40b2", size = 12614190, upload-time = "2025-05-17T21:37:26.213Z" }, + { url = "https://files.pythonhosted.org/packages/f9/5c/6657823f4f594f72b5471f1db1ab12e26e890bb2e41897522d134d2a3e81/numpy-2.2.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0811bb762109d9708cca4d0b13c4f67146e3c3b7cf8d34018c722adb2d957c84", size = 20867828, upload-time = "2025-05-17T21:37:56.699Z" }, + { url = "https://files.pythonhosted.org/packages/dc/9e/14520dc3dadf3c803473bd07e9b2bd1b69bc583cb2497b47000fed2fa92f/numpy-2.2.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:287cc3162b6f01463ccd86be154f284d0893d2b3ed7292439ea97eafa8170e0b", size = 14143006, upload-time = "2025-05-17T21:38:18.291Z" }, + { url = "https://files.pythonhosted.org/packages/4f/06/7e96c57d90bebdce9918412087fc22ca9851cceaf5567a45c1f404480e9e/numpy-2.2.6-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f1372f041402e37e5e633e586f62aa53de2eac8d98cbfb822806ce4bbefcb74d", size = 5076765, upload-time = "2025-05-17T21:38:27.319Z" }, + { url = "https://files.pythonhosted.org/packages/73/ed/63d920c23b4289fdac96ddbdd6132e9427790977d5457cd132f18e76eae0/numpy-2.2.6-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:55a4d33fa519660d69614a9fad433be87e5252f4b03850642f88993f7b2ca566", size = 6617736, upload-time = "2025-05-17T21:38:38.141Z" }, + { url = "https://files.pythonhosted.org/packages/85/c5/e19c8f99d83fd377ec8c7e0cf627a8049746da54afc24ef0a0cb73d5dfb5/numpy-2.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f92729c95468a2f4f15e9bb94c432a9229d0d50de67304399627a943201baa2f", size = 14010719, upload-time = "2025-05-17T21:38:58.433Z" }, + { url = "https://files.pythonhosted.org/packages/19/49/4df9123aafa7b539317bf6d342cb6d227e49f7a35b99c287a6109b13dd93/numpy-2.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bc23a79bfabc5d056d106f9befb8d50c31ced2fbc70eedb8155aec74a45798f", size = 16526072, upload-time = "2025-05-17T21:39:22.638Z" }, + { url = "https://files.pythonhosted.org/packages/b2/6c/04b5f47f4f32f7c2b0e7260442a8cbcf8168b0e1a41ff1495da42f42a14f/numpy-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e3143e4451880bed956e706a3220b4e5cf6172ef05fcc397f6f36a550b1dd868", size = 15503213, upload-time = "2025-05-17T21:39:45.865Z" }, + { url = "https://files.pythonhosted.org/packages/17/0a/5cd92e352c1307640d5b6fec1b2ffb06cd0dabe7d7b8227f97933d378422/numpy-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4f13750ce79751586ae2eb824ba7e1e8dba64784086c98cdbbcc6a42112ce0d", size = 18316632, upload-time = "2025-05-17T21:40:13.331Z" }, + { url = "https://files.pythonhosted.org/packages/f0/3b/5cba2b1d88760ef86596ad0f3d484b1cbff7c115ae2429678465057c5155/numpy-2.2.6-cp313-cp313-win32.whl", hash = "sha256:5beb72339d9d4fa36522fc63802f469b13cdbe4fdab4a288f0c441b74272ebfd", size = 6244532, upload-time = "2025-05-17T21:43:46.099Z" }, + { url = "https://files.pythonhosted.org/packages/cb/3b/d58c12eafcb298d4e6d0d40216866ab15f59e55d148a5658bb3132311fcf/numpy-2.2.6-cp313-cp313-win_amd64.whl", hash = "sha256:b0544343a702fa80c95ad5d3d608ea3599dd54d4632df855e4c8d24eb6ecfa1c", size = 12610885, upload-time = "2025-05-17T21:44:05.145Z" }, + { url = "https://files.pythonhosted.org/packages/6b/9e/4bf918b818e516322db999ac25d00c75788ddfd2d2ade4fa66f1f38097e1/numpy-2.2.6-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0bca768cd85ae743b2affdc762d617eddf3bcf8724435498a1e80132d04879e6", size = 20963467, upload-time = "2025-05-17T21:40:44Z" }, + { url = "https://files.pythonhosted.org/packages/61/66/d2de6b291507517ff2e438e13ff7b1e2cdbdb7cb40b3ed475377aece69f9/numpy-2.2.6-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:fc0c5673685c508a142ca65209b4e79ed6740a4ed6b2267dbba90f34b0b3cfda", size = 14225144, upload-time = "2025-05-17T21:41:05.695Z" }, + { url = "https://files.pythonhosted.org/packages/e4/25/480387655407ead912e28ba3a820bc69af9adf13bcbe40b299d454ec011f/numpy-2.2.6-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:5bd4fc3ac8926b3819797a7c0e2631eb889b4118a9898c84f585a54d475b7e40", size = 5200217, upload-time = "2025-05-17T21:41:15.903Z" }, + { url = "https://files.pythonhosted.org/packages/aa/4a/6e313b5108f53dcbf3aca0c0f3e9c92f4c10ce57a0a721851f9785872895/numpy-2.2.6-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:fee4236c876c4e8369388054d02d0e9bb84821feb1a64dd59e137e6511a551f8", size = 6712014, upload-time = "2025-05-17T21:41:27.321Z" }, + { url = "https://files.pythonhosted.org/packages/b7/30/172c2d5c4be71fdf476e9de553443cf8e25feddbe185e0bd88b096915bcc/numpy-2.2.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e1dda9c7e08dc141e0247a5b8f49cf05984955246a327d4c48bda16821947b2f", size = 14077935, upload-time = "2025-05-17T21:41:49.738Z" }, + { url = "https://files.pythonhosted.org/packages/12/fb/9e743f8d4e4d3c710902cf87af3512082ae3d43b945d5d16563f26ec251d/numpy-2.2.6-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f447e6acb680fd307f40d3da4852208af94afdfab89cf850986c3ca00562f4fa", size = 16600122, upload-time = "2025-05-17T21:42:14.046Z" }, + { url = "https://files.pythonhosted.org/packages/12/75/ee20da0e58d3a66f204f38916757e01e33a9737d0b22373b3eb5a27358f9/numpy-2.2.6-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:389d771b1623ec92636b0786bc4ae56abafad4a4c513d36a55dce14bd9ce8571", size = 15586143, upload-time = "2025-05-17T21:42:37.464Z" }, + { url = "https://files.pythonhosted.org/packages/76/95/bef5b37f29fc5e739947e9ce5179ad402875633308504a52d188302319c8/numpy-2.2.6-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8e9ace4a37db23421249ed236fdcdd457d671e25146786dfc96835cd951aa7c1", size = 18385260, upload-time = "2025-05-17T21:43:05.189Z" }, + { url = "https://files.pythonhosted.org/packages/09/04/f2f83279d287407cf36a7a8053a5abe7be3622a4363337338f2585e4afda/numpy-2.2.6-cp313-cp313t-win32.whl", hash = "sha256:038613e9fb8c72b0a41f025a7e4c3f0b7a1b5d768ece4796b674c8f3fe13efff", size = 6377225, upload-time = "2025-05-17T21:43:16.254Z" }, + { url = "https://files.pythonhosted.org/packages/67/0e/35082d13c09c02c011cf21570543d202ad929d961c02a147493cb0c2bdf5/numpy-2.2.6-cp313-cp313t-win_amd64.whl", hash = "sha256:6031dd6dfecc0cf9f668681a37648373bddd6421fff6c66ec1624eed0180ee06", size = 12771374, upload-time = "2025-05-17T21:43:35.479Z" }, + { url = "https://files.pythonhosted.org/packages/9e/3b/d94a75f4dbf1ef5d321523ecac21ef23a3cd2ac8b78ae2aac40873590229/numpy-2.2.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0b605b275d7bd0c640cad4e5d30fa701a8d59302e127e5f79138ad62762c3e3d", size = 21040391, upload-time = "2025-05-17T21:44:35.948Z" }, + { url = "https://files.pythonhosted.org/packages/17/f4/09b2fa1b58f0fb4f7c7963a1649c64c4d315752240377ed74d9cd878f7b5/numpy-2.2.6-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:7befc596a7dc9da8a337f79802ee8adb30a552a94f792b9c9d18c840055907db", size = 6786754, upload-time = "2025-05-17T21:44:47.446Z" }, + { url = "https://files.pythonhosted.org/packages/af/30/feba75f143bdc868a1cc3f44ccfa6c4b9ec522b36458e738cd00f67b573f/numpy-2.2.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce47521a4754c8f4593837384bd3424880629f718d87c5d44f8ed763edd63543", size = 16643476, upload-time = "2025-05-17T21:45:11.871Z" }, + { url = "https://files.pythonhosted.org/packages/37/48/ac2a9584402fb6c0cd5b5d1a91dcf176b15760130dd386bbafdbfe3640bf/numpy-2.2.6-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d042d24c90c41b54fd506da306759e06e568864df8ec17ccc17e9e884634fd00", size = 12812666, upload-time = "2025-05-17T21:45:31.426Z" }, +] + +[[package]] +name = "orjson" +version = "3.10.18" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/81/0b/fea456a3ffe74e70ba30e01ec183a9b26bec4d497f61dcfce1b601059c60/orjson-3.10.18.tar.gz", hash = "sha256:e8da3947d92123eda795b68228cafe2724815621fe35e8e320a9e9593a4bcd53", size = 5422810, upload-time = "2025-04-29T23:30:08.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/16/2ceb9fb7bc2b11b1e4a3ea27794256e93dee2309ebe297fd131a778cd150/orjson-3.10.18-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a45e5d68066b408e4bc383b6e4ef05e717c65219a9e1390abc6155a520cac402", size = 248927, upload-time = "2025-04-29T23:28:08.643Z" }, + { url = "https://files.pythonhosted.org/packages/3d/e1/d3c0a2bba5b9906badd121da449295062b289236c39c3a7801f92c4682b0/orjson-3.10.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be3b9b143e8b9db05368b13b04c84d37544ec85bb97237b3a923f076265ec89c", size = 136995, upload-time = "2025-04-29T23:28:11.503Z" }, + { url = "https://files.pythonhosted.org/packages/d7/51/698dd65e94f153ee5ecb2586c89702c9e9d12f165a63e74eb9ea1299f4e1/orjson-3.10.18-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9b0aa09745e2c9b3bf779b096fa71d1cc2d801a604ef6dd79c8b1bfef52b2f92", size = 132893, upload-time = "2025-04-29T23:28:12.751Z" }, + { url = "https://files.pythonhosted.org/packages/b3/e5/155ce5a2c43a85e790fcf8b985400138ce5369f24ee6770378ee6b691036/orjson-3.10.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53a245c104d2792e65c8d225158f2b8262749ffe64bc7755b00024757d957a13", size = 137017, upload-time = "2025-04-29T23:28:14.498Z" }, + { url = "https://files.pythonhosted.org/packages/46/bb/6141ec3beac3125c0b07375aee01b5124989907d61c72c7636136e4bd03e/orjson-3.10.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f9495ab2611b7f8a0a8a505bcb0f0cbdb5469caafe17b0e404c3c746f9900469", size = 138290, upload-time = "2025-04-29T23:28:16.211Z" }, + { url = "https://files.pythonhosted.org/packages/77/36/6961eca0b66b7809d33c4ca58c6bd4c23a1b914fb23aba2fa2883f791434/orjson-3.10.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:73be1cbcebadeabdbc468f82b087df435843c809cd079a565fb16f0f3b23238f", size = 142828, upload-time = "2025-04-29T23:28:18.065Z" }, + { url = "https://files.pythonhosted.org/packages/8b/2f/0c646d5fd689d3be94f4d83fa9435a6c4322c9b8533edbb3cd4bc8c5f69a/orjson-3.10.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe8936ee2679e38903df158037a2f1c108129dee218975122e37847fb1d4ac68", size = 132806, upload-time = "2025-04-29T23:28:19.782Z" }, + { url = "https://files.pythonhosted.org/packages/ea/af/65907b40c74ef4c3674ef2bcfa311c695eb934710459841b3c2da212215c/orjson-3.10.18-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:7115fcbc8525c74e4c2b608129bef740198e9a120ae46184dac7683191042056", size = 135005, upload-time = "2025-04-29T23:28:21.367Z" }, + { url = "https://files.pythonhosted.org/packages/c7/d1/68bd20ac6a32cd1f1b10d23e7cc58ee1e730e80624e3031d77067d7150fc/orjson-3.10.18-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:771474ad34c66bc4d1c01f645f150048030694ea5b2709b87d3bda273ffe505d", size = 413418, upload-time = "2025-04-29T23:28:23.097Z" }, + { url = "https://files.pythonhosted.org/packages/31/31/c701ec0bcc3e80e5cb6e319c628ef7b768aaa24b0f3b4c599df2eaacfa24/orjson-3.10.18-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7c14047dbbea52886dd87169f21939af5d55143dad22d10db6a7514f058156a8", size = 153288, upload-time = "2025-04-29T23:28:25.02Z" }, + { url = "https://files.pythonhosted.org/packages/d9/31/5e1aa99a10893a43cfc58009f9da840990cc8a9ebb75aa452210ba18587e/orjson-3.10.18-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:641481b73baec8db14fdf58f8967e52dc8bda1f2aba3aa5f5c1b07ed6df50b7f", size = 137181, upload-time = "2025-04-29T23:28:26.318Z" }, + { url = "https://files.pythonhosted.org/packages/bf/8c/daba0ac1b8690011d9242a0f37235f7d17df6d0ad941021048523b76674e/orjson-3.10.18-cp310-cp310-win32.whl", hash = "sha256:607eb3ae0909d47280c1fc657c4284c34b785bae371d007595633f4b1a2bbe06", size = 142694, upload-time = "2025-04-29T23:28:28.092Z" }, + { url = "https://files.pythonhosted.org/packages/16/62/8b687724143286b63e1d0fab3ad4214d54566d80b0ba9d67c26aaf28a2f8/orjson-3.10.18-cp310-cp310-win_amd64.whl", hash = "sha256:8770432524ce0eca50b7efc2a9a5f486ee0113a5fbb4231526d414e6254eba92", size = 134600, upload-time = "2025-04-29T23:28:29.422Z" }, + { url = "https://files.pythonhosted.org/packages/97/c7/c54a948ce9a4278794f669a353551ce7db4ffb656c69a6e1f2264d563e50/orjson-3.10.18-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e0a183ac3b8e40471e8d843105da6fbe7c070faab023be3b08188ee3f85719b8", size = 248929, upload-time = "2025-04-29T23:28:30.716Z" }, + { url = "https://files.pythonhosted.org/packages/9e/60/a9c674ef1dd8ab22b5b10f9300e7e70444d4e3cda4b8258d6c2488c32143/orjson-3.10.18-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:5ef7c164d9174362f85238d0cd4afdeeb89d9e523e4651add6a5d458d6f7d42d", size = 133364, upload-time = "2025-04-29T23:28:32.392Z" }, + { url = "https://files.pythonhosted.org/packages/c1/4e/f7d1bdd983082216e414e6d7ef897b0c2957f99c545826c06f371d52337e/orjson-3.10.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afd14c5d99cdc7bf93f22b12ec3b294931518aa019e2a147e8aa2f31fd3240f7", size = 136995, upload-time = "2025-04-29T23:28:34.024Z" }, + { url = "https://files.pythonhosted.org/packages/17/89/46b9181ba0ea251c9243b0c8ce29ff7c9796fa943806a9c8b02592fce8ea/orjson-3.10.18-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7b672502323b6cd133c4af6b79e3bea36bad2d16bca6c1f645903fce83909a7a", size = 132894, upload-time = "2025-04-29T23:28:35.318Z" }, + { url = "https://files.pythonhosted.org/packages/ca/dd/7bce6fcc5b8c21aef59ba3c67f2166f0a1a9b0317dcca4a9d5bd7934ecfd/orjson-3.10.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:51f8c63be6e070ec894c629186b1c0fe798662b8687f3d9fdfa5e401c6bd7679", size = 137016, upload-time = "2025-04-29T23:28:36.674Z" }, + { url = "https://files.pythonhosted.org/packages/1c/4a/b8aea1c83af805dcd31c1f03c95aabb3e19a016b2a4645dd822c5686e94d/orjson-3.10.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f9478ade5313d724e0495d167083c6f3be0dd2f1c9c8a38db9a9e912cdaf947", size = 138290, upload-time = "2025-04-29T23:28:38.3Z" }, + { url = "https://files.pythonhosted.org/packages/36/d6/7eb05c85d987b688707f45dcf83c91abc2251e0dd9fb4f7be96514f838b1/orjson-3.10.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:187aefa562300a9d382b4b4eb9694806e5848b0cedf52037bb5c228c61bb66d4", size = 142829, upload-time = "2025-04-29T23:28:39.657Z" }, + { url = "https://files.pythonhosted.org/packages/d2/78/ddd3ee7873f2b5f90f016bc04062713d567435c53ecc8783aab3a4d34915/orjson-3.10.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9da552683bc9da222379c7a01779bddd0ad39dd699dd6300abaf43eadee38334", size = 132805, upload-time = "2025-04-29T23:28:40.969Z" }, + { url = "https://files.pythonhosted.org/packages/8c/09/c8e047f73d2c5d21ead9c180203e111cddeffc0848d5f0f974e346e21c8e/orjson-3.10.18-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e450885f7b47a0231979d9c49b567ed1c4e9f69240804621be87c40bc9d3cf17", size = 135008, upload-time = "2025-04-29T23:28:42.284Z" }, + { url = "https://files.pythonhosted.org/packages/0c/4b/dccbf5055ef8fb6eda542ab271955fc1f9bf0b941a058490293f8811122b/orjson-3.10.18-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5e3c9cc2ba324187cd06287ca24f65528f16dfc80add48dc99fa6c836bb3137e", size = 413419, upload-time = "2025-04-29T23:28:43.673Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f3/1eac0c5e2d6d6790bd2025ebfbefcbd37f0d097103d76f9b3f9302af5a17/orjson-3.10.18-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:50ce016233ac4bfd843ac5471e232b865271d7d9d44cf9d33773bcd883ce442b", size = 153292, upload-time = "2025-04-29T23:28:45.573Z" }, + { url = "https://files.pythonhosted.org/packages/1f/b4/ef0abf64c8f1fabf98791819ab502c2c8c1dc48b786646533a93637d8999/orjson-3.10.18-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b3ceff74a8f7ffde0b2785ca749fc4e80e4315c0fd887561144059fb1c138aa7", size = 137182, upload-time = "2025-04-29T23:28:47.229Z" }, + { url = "https://files.pythonhosted.org/packages/a9/a3/6ea878e7b4a0dc5c888d0370d7752dcb23f402747d10e2257478d69b5e63/orjson-3.10.18-cp311-cp311-win32.whl", hash = "sha256:fdba703c722bd868c04702cac4cb8c6b8ff137af2623bc0ddb3b3e6a2c8996c1", size = 142695, upload-time = "2025-04-29T23:28:48.564Z" }, + { url = "https://files.pythonhosted.org/packages/79/2a/4048700a3233d562f0e90d5572a849baa18ae4e5ce4c3ba6247e4ece57b0/orjson-3.10.18-cp311-cp311-win_amd64.whl", hash = "sha256:c28082933c71ff4bc6ccc82a454a2bffcef6e1d7379756ca567c772e4fb3278a", size = 134603, upload-time = "2025-04-29T23:28:50.442Z" }, + { url = "https://files.pythonhosted.org/packages/03/45/10d934535a4993d27e1c84f1810e79ccf8b1b7418cef12151a22fe9bb1e1/orjson-3.10.18-cp311-cp311-win_arm64.whl", hash = "sha256:a6c7c391beaedd3fa63206e5c2b7b554196f14debf1ec9deb54b5d279b1b46f5", size = 131400, upload-time = "2025-04-29T23:28:51.838Z" }, + { url = "https://files.pythonhosted.org/packages/21/1a/67236da0916c1a192d5f4ccbe10ec495367a726996ceb7614eaa687112f2/orjson-3.10.18-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:50c15557afb7f6d63bc6d6348e0337a880a04eaa9cd7c9d569bcb4e760a24753", size = 249184, upload-time = "2025-04-29T23:28:53.612Z" }, + { url = "https://files.pythonhosted.org/packages/b3/bc/c7f1db3b1d094dc0c6c83ed16b161a16c214aaa77f311118a93f647b32dc/orjson-3.10.18-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:356b076f1662c9813d5fa56db7d63ccceef4c271b1fb3dd522aca291375fcf17", size = 133279, upload-time = "2025-04-29T23:28:55.055Z" }, + { url = "https://files.pythonhosted.org/packages/af/84/664657cd14cc11f0d81e80e64766c7ba5c9b7fc1ec304117878cc1b4659c/orjson-3.10.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:559eb40a70a7494cd5beab2d73657262a74a2c59aff2068fdba8f0424ec5b39d", size = 136799, upload-time = "2025-04-29T23:28:56.828Z" }, + { url = "https://files.pythonhosted.org/packages/9a/bb/f50039c5bb05a7ab024ed43ba25d0319e8722a0ac3babb0807e543349978/orjson-3.10.18-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f3c29eb9a81e2fbc6fd7ddcfba3e101ba92eaff455b8d602bf7511088bbc0eae", size = 132791, upload-time = "2025-04-29T23:28:58.751Z" }, + { url = "https://files.pythonhosted.org/packages/93/8c/ee74709fc072c3ee219784173ddfe46f699598a1723d9d49cbc78d66df65/orjson-3.10.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6612787e5b0756a171c7d81ba245ef63a3533a637c335aa7fcb8e665f4a0966f", size = 137059, upload-time = "2025-04-29T23:29:00.129Z" }, + { url = "https://files.pythonhosted.org/packages/6a/37/e6d3109ee004296c80426b5a62b47bcadd96a3deab7443e56507823588c5/orjson-3.10.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ac6bd7be0dcab5b702c9d43d25e70eb456dfd2e119d512447468f6405b4a69c", size = 138359, upload-time = "2025-04-29T23:29:01.704Z" }, + { url = "https://files.pythonhosted.org/packages/4f/5d/387dafae0e4691857c62bd02839a3bf3fa648eebd26185adfac58d09f207/orjson-3.10.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9f72f100cee8dde70100406d5c1abba515a7df926d4ed81e20a9730c062fe9ad", size = 142853, upload-time = "2025-04-29T23:29:03.576Z" }, + { url = "https://files.pythonhosted.org/packages/27/6f/875e8e282105350b9a5341c0222a13419758545ae32ad6e0fcf5f64d76aa/orjson-3.10.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dca85398d6d093dd41dc0983cbf54ab8e6afd1c547b6b8a311643917fbf4e0c", size = 133131, upload-time = "2025-04-29T23:29:05.753Z" }, + { url = "https://files.pythonhosted.org/packages/48/b2/73a1f0b4790dcb1e5a45f058f4f5dcadc8a85d90137b50d6bbc6afd0ae50/orjson-3.10.18-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:22748de2a07fcc8781a70edb887abf801bb6142e6236123ff93d12d92db3d406", size = 134834, upload-time = "2025-04-29T23:29:07.35Z" }, + { url = "https://files.pythonhosted.org/packages/56/f5/7ed133a5525add9c14dbdf17d011dd82206ca6840811d32ac52a35935d19/orjson-3.10.18-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:3a83c9954a4107b9acd10291b7f12a6b29e35e8d43a414799906ea10e75438e6", size = 413368, upload-time = "2025-04-29T23:29:09.301Z" }, + { url = "https://files.pythonhosted.org/packages/11/7c/439654221ed9c3324bbac7bdf94cf06a971206b7b62327f11a52544e4982/orjson-3.10.18-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:303565c67a6c7b1f194c94632a4a39918e067bd6176a48bec697393865ce4f06", size = 153359, upload-time = "2025-04-29T23:29:10.813Z" }, + { url = "https://files.pythonhosted.org/packages/48/e7/d58074fa0cc9dd29a8fa2a6c8d5deebdfd82c6cfef72b0e4277c4017563a/orjson-3.10.18-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:86314fdb5053a2f5a5d881f03fca0219bfdf832912aa88d18676a5175c6916b5", size = 137466, upload-time = "2025-04-29T23:29:12.26Z" }, + { url = "https://files.pythonhosted.org/packages/57/4d/fe17581cf81fb70dfcef44e966aa4003360e4194d15a3f38cbffe873333a/orjson-3.10.18-cp312-cp312-win32.whl", hash = "sha256:187ec33bbec58c76dbd4066340067d9ece6e10067bb0cc074a21ae3300caa84e", size = 142683, upload-time = "2025-04-29T23:29:13.865Z" }, + { url = "https://files.pythonhosted.org/packages/e6/22/469f62d25ab5f0f3aee256ea732e72dc3aab6d73bac777bd6277955bceef/orjson-3.10.18-cp312-cp312-win_amd64.whl", hash = "sha256:f9f94cf6d3f9cd720d641f8399e390e7411487e493962213390d1ae45c7814fc", size = 134754, upload-time = "2025-04-29T23:29:15.338Z" }, + { url = "https://files.pythonhosted.org/packages/10/b0/1040c447fac5b91bc1e9c004b69ee50abb0c1ffd0d24406e1350c58a7fcb/orjson-3.10.18-cp312-cp312-win_arm64.whl", hash = "sha256:3d600be83fe4514944500fa8c2a0a77099025ec6482e8087d7659e891f23058a", size = 131218, upload-time = "2025-04-29T23:29:17.324Z" }, + { url = "https://files.pythonhosted.org/packages/04/f0/8aedb6574b68096f3be8f74c0b56d36fd94bcf47e6c7ed47a7bd1474aaa8/orjson-3.10.18-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:69c34b9441b863175cc6a01f2935de994025e773f814412030f269da4f7be147", size = 249087, upload-time = "2025-04-29T23:29:19.083Z" }, + { url = "https://files.pythonhosted.org/packages/bc/f7/7118f965541aeac6844fcb18d6988e111ac0d349c9b80cda53583e758908/orjson-3.10.18-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:1ebeda919725f9dbdb269f59bc94f861afbe2a27dce5608cdba2d92772364d1c", size = 133273, upload-time = "2025-04-29T23:29:20.602Z" }, + { url = "https://files.pythonhosted.org/packages/fb/d9/839637cc06eaf528dd8127b36004247bf56e064501f68df9ee6fd56a88ee/orjson-3.10.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5adf5f4eed520a4959d29ea80192fa626ab9a20b2ea13f8f6dc58644f6927103", size = 136779, upload-time = "2025-04-29T23:29:22.062Z" }, + { url = "https://files.pythonhosted.org/packages/2b/6d/f226ecfef31a1f0e7d6bf9a31a0bbaf384c7cbe3fce49cc9c2acc51f902a/orjson-3.10.18-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7592bb48a214e18cd670974f289520f12b7aed1fa0b2e2616b8ed9e069e08595", size = 132811, upload-time = "2025-04-29T23:29:23.602Z" }, + { url = "https://files.pythonhosted.org/packages/73/2d/371513d04143c85b681cf8f3bce743656eb5b640cb1f461dad750ac4b4d4/orjson-3.10.18-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f872bef9f042734110642b7a11937440797ace8c87527de25e0c53558b579ccc", size = 137018, upload-time = "2025-04-29T23:29:25.094Z" }, + { url = "https://files.pythonhosted.org/packages/69/cb/a4d37a30507b7a59bdc484e4a3253c8141bf756d4e13fcc1da760a0b00cb/orjson-3.10.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0315317601149c244cb3ecef246ef5861a64824ccbcb8018d32c66a60a84ffbc", size = 138368, upload-time = "2025-04-29T23:29:26.609Z" }, + { url = "https://files.pythonhosted.org/packages/1e/ae/cd10883c48d912d216d541eb3db8b2433415fde67f620afe6f311f5cd2ca/orjson-3.10.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0da26957e77e9e55a6c2ce2e7182a36a6f6b180ab7189315cb0995ec362e049", size = 142840, upload-time = "2025-04-29T23:29:28.153Z" }, + { url = "https://files.pythonhosted.org/packages/6d/4c/2bda09855c6b5f2c055034c9eda1529967b042ff8d81a05005115c4e6772/orjson-3.10.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb70d489bc79b7519e5803e2cc4c72343c9dc1154258adf2f8925d0b60da7c58", size = 133135, upload-time = "2025-04-29T23:29:29.726Z" }, + { url = "https://files.pythonhosted.org/packages/13/4a/35971fd809a8896731930a80dfff0b8ff48eeb5d8b57bb4d0d525160017f/orjson-3.10.18-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e9e86a6af31b92299b00736c89caf63816f70a4001e750bda179e15564d7a034", size = 134810, upload-time = "2025-04-29T23:29:31.269Z" }, + { url = "https://files.pythonhosted.org/packages/99/70/0fa9e6310cda98365629182486ff37a1c6578e34c33992df271a476ea1cd/orjson-3.10.18-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:c382a5c0b5931a5fc5405053d36c1ce3fd561694738626c77ae0b1dfc0242ca1", size = 413491, upload-time = "2025-04-29T23:29:33.315Z" }, + { url = "https://files.pythonhosted.org/packages/32/cb/990a0e88498babddb74fb97855ae4fbd22a82960e9b06eab5775cac435da/orjson-3.10.18-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:8e4b2ae732431127171b875cb2668f883e1234711d3c147ffd69fe5be51a8012", size = 153277, upload-time = "2025-04-29T23:29:34.946Z" }, + { url = "https://files.pythonhosted.org/packages/92/44/473248c3305bf782a384ed50dd8bc2d3cde1543d107138fd99b707480ca1/orjson-3.10.18-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2d808e34ddb24fc29a4d4041dcfafbae13e129c93509b847b14432717d94b44f", size = 137367, upload-time = "2025-04-29T23:29:36.52Z" }, + { url = "https://files.pythonhosted.org/packages/ad/fd/7f1d3edd4ffcd944a6a40e9f88af2197b619c931ac4d3cfba4798d4d3815/orjson-3.10.18-cp313-cp313-win32.whl", hash = "sha256:ad8eacbb5d904d5591f27dee4031e2c1db43d559edb8f91778efd642d70e6bea", size = 142687, upload-time = "2025-04-29T23:29:38.292Z" }, + { url = "https://files.pythonhosted.org/packages/4b/03/c75c6ad46be41c16f4cfe0352a2d1450546f3c09ad2c9d341110cd87b025/orjson-3.10.18-cp313-cp313-win_amd64.whl", hash = "sha256:aed411bcb68bf62e85588f2a7e03a6082cc42e5a2796e06e72a962d7c6310b52", size = 134794, upload-time = "2025-04-29T23:29:40.349Z" }, + { url = "https://files.pythonhosted.org/packages/c2/28/f53038a5a72cc4fd0b56c1eafb4ef64aec9685460d5ac34de98ca78b6e29/orjson-3.10.18-cp313-cp313-win_arm64.whl", hash = "sha256:f54c1385a0e6aba2f15a40d703b858bedad36ded0491e55d35d905b2c34a4cc3", size = 131186, upload-time = "2025-04-29T23:29:41.922Z" }, +] + +[[package]] +name = "pefile" +version = "2024.8.26" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/03/4f/2750f7f6f025a1507cd3b7218691671eecfd0bbebebe8b39aa0fe1d360b8/pefile-2024.8.26.tar.gz", hash = "sha256:3ff6c5d8b43e8c37bb6e6dd5085658d658a7a0bdcd20b6a07b1fcfc1c4e9d632", size = 76008, upload-time = "2024-08-26T20:58:38.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/16/12b82f791c7f50ddec566873d5bdd245baa1491bac11d15ffb98aecc8f8b/pefile-2024.8.26-py3-none-any.whl", hash = "sha256:76f8b485dcd3b1bb8166f1128d395fa3d87af26360c2358fb75b80019b957c6f", size = 74766, upload-time = "2024-08-26T21:01:02.632Z" }, +] + +[[package]] +name = "pillow" +version = "11.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/cb/bb5c01fcd2a69335b86c22142b2bccfc3464087efb7fd382eee5ffc7fdf7/pillow-11.2.1.tar.gz", hash = "sha256:a64dd61998416367b7ef979b73d3a85853ba9bec4c2925f74e588879a58716b6", size = 47026707, upload-time = "2025-04-12T17:50:03.289Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0d/8b/b158ad57ed44d3cc54db8d68ad7c0a58b8fc0e4c7a3f995f9d62d5b464a1/pillow-11.2.1-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:d57a75d53922fc20c165016a20d9c44f73305e67c351bbc60d1adaf662e74047", size = 3198442, upload-time = "2025-04-12T17:47:10.666Z" }, + { url = "https://files.pythonhosted.org/packages/b1/f8/bb5d956142f86c2d6cc36704943fa761f2d2e4c48b7436fd0a85c20f1713/pillow-11.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:127bf6ac4a5b58b3d32fc8289656f77f80567d65660bc46f72c0d77e6600cc95", size = 3030553, upload-time = "2025-04-12T17:47:13.153Z" }, + { url = "https://files.pythonhosted.org/packages/22/7f/0e413bb3e2aa797b9ca2c5c38cb2e2e45d88654e5b12da91ad446964cfae/pillow-11.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4ba4be812c7a40280629e55ae0b14a0aafa150dd6451297562e1764808bbe61", size = 4405503, upload-time = "2025-04-12T17:47:15.36Z" }, + { url = "https://files.pythonhosted.org/packages/f3/b4/cc647f4d13f3eb837d3065824aa58b9bcf10821f029dc79955ee43f793bd/pillow-11.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8bd62331e5032bc396a93609982a9ab6b411c05078a52f5fe3cc59234a3abd1", size = 4490648, upload-time = "2025-04-12T17:47:17.37Z" }, + { url = "https://files.pythonhosted.org/packages/c2/6f/240b772a3b35cdd7384166461567aa6713799b4e78d180c555bd284844ea/pillow-11.2.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:562d11134c97a62fe3af29581f083033179f7ff435f78392565a1ad2d1c2c45c", size = 4508937, upload-time = "2025-04-12T17:47:19.066Z" }, + { url = "https://files.pythonhosted.org/packages/f3/5e/7ca9c815ade5fdca18853db86d812f2f188212792780208bdb37a0a6aef4/pillow-11.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:c97209e85b5be259994eb5b69ff50c5d20cca0f458ef9abd835e262d9d88b39d", size = 4599802, upload-time = "2025-04-12T17:47:21.404Z" }, + { url = "https://files.pythonhosted.org/packages/02/81/c3d9d38ce0c4878a77245d4cf2c46d45a4ad0f93000227910a46caff52f3/pillow-11.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:0c3e6d0f59171dfa2e25d7116217543310908dfa2770aa64b8f87605f8cacc97", size = 4576717, upload-time = "2025-04-12T17:47:23.571Z" }, + { url = "https://files.pythonhosted.org/packages/42/49/52b719b89ac7da3185b8d29c94d0e6aec8140059e3d8adcaa46da3751180/pillow-11.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc1c3bc53befb6096b84165956e886b1729634a799e9d6329a0c512ab651e579", size = 4654874, upload-time = "2025-04-12T17:47:25.783Z" }, + { url = "https://files.pythonhosted.org/packages/5b/0b/ede75063ba6023798267023dc0d0401f13695d228194d2242d5a7ba2f964/pillow-11.2.1-cp310-cp310-win32.whl", hash = "sha256:312c77b7f07ab2139924d2639860e084ec2a13e72af54d4f08ac843a5fc9c79d", size = 2331717, upload-time = "2025-04-12T17:47:28.922Z" }, + { url = "https://files.pythonhosted.org/packages/ed/3c/9831da3edea527c2ed9a09f31a2c04e77cd705847f13b69ca60269eec370/pillow-11.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:9bc7ae48b8057a611e5fe9f853baa88093b9a76303937449397899385da06fad", size = 2676204, upload-time = "2025-04-12T17:47:31.283Z" }, + { url = "https://files.pythonhosted.org/packages/01/97/1f66ff8a1503d8cbfc5bae4dc99d54c6ec1e22ad2b946241365320caabc2/pillow-11.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:2728567e249cdd939f6cc3d1f049595c66e4187f3c34078cbc0a7d21c47482d2", size = 2414767, upload-time = "2025-04-12T17:47:34.655Z" }, + { url = "https://files.pythonhosted.org/packages/68/08/3fbf4b98924c73037a8e8b4c2c774784805e0fb4ebca6c5bb60795c40125/pillow-11.2.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35ca289f712ccfc699508c4658a1d14652e8033e9b69839edf83cbdd0ba39e70", size = 3198450, upload-time = "2025-04-12T17:47:37.135Z" }, + { url = "https://files.pythonhosted.org/packages/84/92/6505b1af3d2849d5e714fc75ba9e69b7255c05ee42383a35a4d58f576b16/pillow-11.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0409af9f829f87a2dfb7e259f78f317a5351f2045158be321fd135973fff7bf", size = 3030550, upload-time = "2025-04-12T17:47:39.345Z" }, + { url = "https://files.pythonhosted.org/packages/3c/8c/ac2f99d2a70ff966bc7eb13dacacfaab57c0549b2ffb351b6537c7840b12/pillow-11.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4e5c5edee874dce4f653dbe59db7c73a600119fbea8d31f53423586ee2aafd7", size = 4415018, upload-time = "2025-04-12T17:47:41.128Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e3/0a58b5d838687f40891fff9cbaf8669f90c96b64dc8f91f87894413856c6/pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b93a07e76d13bff9444f1a029e0af2964e654bfc2e2c2d46bfd080df5ad5f3d8", size = 4498006, upload-time = "2025-04-12T17:47:42.912Z" }, + { url = "https://files.pythonhosted.org/packages/21/f5/6ba14718135f08fbfa33308efe027dd02b781d3f1d5c471444a395933aac/pillow-11.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e6def7eed9e7fa90fde255afaf08060dc4b343bbe524a8f69bdd2a2f0018f600", size = 4517773, upload-time = "2025-04-12T17:47:44.611Z" }, + { url = "https://files.pythonhosted.org/packages/20/f2/805ad600fc59ebe4f1ba6129cd3a75fb0da126975c8579b8f57abeb61e80/pillow-11.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8f4f3724c068be008c08257207210c138d5f3731af6c155a81c2b09a9eb3a788", size = 4607069, upload-time = "2025-04-12T17:47:46.46Z" }, + { url = "https://files.pythonhosted.org/packages/71/6b/4ef8a288b4bb2e0180cba13ca0a519fa27aa982875882392b65131401099/pillow-11.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0a6709b47019dff32e678bc12c63008311b82b9327613f534e496dacaefb71e", size = 4583460, upload-time = "2025-04-12T17:47:49.255Z" }, + { url = "https://files.pythonhosted.org/packages/62/ae/f29c705a09cbc9e2a456590816e5c234382ae5d32584f451c3eb41a62062/pillow-11.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f6b0c664ccb879109ee3ca702a9272d877f4fcd21e5eb63c26422fd6e415365e", size = 4661304, upload-time = "2025-04-12T17:47:51.067Z" }, + { url = "https://files.pythonhosted.org/packages/6e/1a/c8217b6f2f73794a5e219fbad087701f412337ae6dbb956db37d69a9bc43/pillow-11.2.1-cp311-cp311-win32.whl", hash = "sha256:cc5d875d56e49f112b6def6813c4e3d3036d269c008bf8aef72cd08d20ca6df6", size = 2331809, upload-time = "2025-04-12T17:47:54.425Z" }, + { url = "https://files.pythonhosted.org/packages/e2/72/25a8f40170dc262e86e90f37cb72cb3de5e307f75bf4b02535a61afcd519/pillow-11.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:0f5c7eda47bf8e3c8a283762cab94e496ba977a420868cb819159980b6709193", size = 2676338, upload-time = "2025-04-12T17:47:56.535Z" }, + { url = "https://files.pythonhosted.org/packages/06/9e/76825e39efee61efea258b479391ca77d64dbd9e5804e4ad0fa453b4ba55/pillow-11.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:4d375eb838755f2528ac8cbc926c3e31cc49ca4ad0cf79cff48b20e30634a4a7", size = 2414918, upload-time = "2025-04-12T17:47:58.217Z" }, + { url = "https://files.pythonhosted.org/packages/c7/40/052610b15a1b8961f52537cc8326ca6a881408bc2bdad0d852edeb6ed33b/pillow-11.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:78afba22027b4accef10dbd5eed84425930ba41b3ea0a86fa8d20baaf19d807f", size = 3190185, upload-time = "2025-04-12T17:48:00.417Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7e/b86dbd35a5f938632093dc40d1682874c33dcfe832558fc80ca56bfcb774/pillow-11.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78092232a4ab376a35d68c4e6d5e00dfd73454bd12b230420025fbe178ee3b0b", size = 3030306, upload-time = "2025-04-12T17:48:02.391Z" }, + { url = "https://files.pythonhosted.org/packages/a4/5c/467a161f9ed53e5eab51a42923c33051bf8d1a2af4626ac04f5166e58e0c/pillow-11.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a5f306095c6780c52e6bbb6109624b95c5b18e40aab1c3041da3e9e0cd3e2d", size = 4416121, upload-time = "2025-04-12T17:48:04.554Z" }, + { url = "https://files.pythonhosted.org/packages/62/73/972b7742e38ae0e2ac76ab137ca6005dcf877480da0d9d61d93b613065b4/pillow-11.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c7b29dbd4281923a2bfe562acb734cee96bbb129e96e6972d315ed9f232bef4", size = 4501707, upload-time = "2025-04-12T17:48:06.831Z" }, + { url = "https://files.pythonhosted.org/packages/e4/3a/427e4cb0b9e177efbc1a84798ed20498c4f233abde003c06d2650a6d60cb/pillow-11.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e645b020f3209a0181a418bffe7b4a93171eef6c4ef6cc20980b30bebf17b7d", size = 4522921, upload-time = "2025-04-12T17:48:09.229Z" }, + { url = "https://files.pythonhosted.org/packages/fe/7c/d8b1330458e4d2f3f45d9508796d7caf0c0d3764c00c823d10f6f1a3b76d/pillow-11.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2dbea1012ccb784a65349f57bbc93730b96e85b42e9bf7b01ef40443db720b4", size = 4612523, upload-time = "2025-04-12T17:48:11.631Z" }, + { url = "https://files.pythonhosted.org/packages/b3/2f/65738384e0b1acf451de5a573d8153fe84103772d139e1e0bdf1596be2ea/pillow-11.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:da3104c57bbd72948d75f6a9389e6727d2ab6333c3617f0a89d72d4940aa0443", size = 4587836, upload-time = "2025-04-12T17:48:13.592Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c5/e795c9f2ddf3debb2dedd0df889f2fe4b053308bb59a3cc02a0cd144d641/pillow-11.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:598174aef4589af795f66f9caab87ba4ff860ce08cd5bb447c6fc553ffee603c", size = 4669390, upload-time = "2025-04-12T17:48:15.938Z" }, + { url = "https://files.pythonhosted.org/packages/96/ae/ca0099a3995976a9fce2f423166f7bff9b12244afdc7520f6ed38911539a/pillow-11.2.1-cp312-cp312-win32.whl", hash = "sha256:1d535df14716e7f8776b9e7fee118576d65572b4aad3ed639be9e4fa88a1cad3", size = 2332309, upload-time = "2025-04-12T17:48:17.885Z" }, + { url = "https://files.pythonhosted.org/packages/7c/18/24bff2ad716257fc03da964c5e8f05d9790a779a8895d6566e493ccf0189/pillow-11.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:14e33b28bf17c7a38eede290f77db7c664e4eb01f7869e37fa98a5aa95978941", size = 2676768, upload-time = "2025-04-12T17:48:19.655Z" }, + { url = "https://files.pythonhosted.org/packages/da/bb/e8d656c9543276517ee40184aaa39dcb41e683bca121022f9323ae11b39d/pillow-11.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:21e1470ac9e5739ff880c211fc3af01e3ae505859392bf65458c224d0bf283eb", size = 2415087, upload-time = "2025-04-12T17:48:21.991Z" }, + { url = "https://files.pythonhosted.org/packages/36/9c/447528ee3776e7ab8897fe33697a7ff3f0475bb490c5ac1456a03dc57956/pillow-11.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fdec757fea0b793056419bca3e9932eb2b0ceec90ef4813ea4c1e072c389eb28", size = 3190098, upload-time = "2025-04-12T17:48:23.915Z" }, + { url = "https://files.pythonhosted.org/packages/b5/09/29d5cd052f7566a63e5b506fac9c60526e9ecc553825551333e1e18a4858/pillow-11.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:b0e130705d568e2f43a17bcbe74d90958e8a16263868a12c3e0d9c8162690830", size = 3030166, upload-time = "2025-04-12T17:48:25.738Z" }, + { url = "https://files.pythonhosted.org/packages/71/5d/446ee132ad35e7600652133f9c2840b4799bbd8e4adba881284860da0a36/pillow-11.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7bdb5e09068332578214cadd9c05e3d64d99e0e87591be22a324bdbc18925be0", size = 4408674, upload-time = "2025-04-12T17:48:27.908Z" }, + { url = "https://files.pythonhosted.org/packages/69/5f/cbe509c0ddf91cc3a03bbacf40e5c2339c4912d16458fcb797bb47bcb269/pillow-11.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d189ba1bebfbc0c0e529159631ec72bb9e9bc041f01ec6d3233d6d82eb823bc1", size = 4496005, upload-time = "2025-04-12T17:48:29.888Z" }, + { url = "https://files.pythonhosted.org/packages/f9/b3/dd4338d8fb8a5f312021f2977fb8198a1184893f9b00b02b75d565c33b51/pillow-11.2.1-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:191955c55d8a712fab8934a42bfefbf99dd0b5875078240943f913bb66d46d9f", size = 4518707, upload-time = "2025-04-12T17:48:31.874Z" }, + { url = "https://files.pythonhosted.org/packages/13/eb/2552ecebc0b887f539111c2cd241f538b8ff5891b8903dfe672e997529be/pillow-11.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:ad275964d52e2243430472fc5d2c2334b4fc3ff9c16cb0a19254e25efa03a155", size = 4610008, upload-time = "2025-04-12T17:48:34.422Z" }, + { url = "https://files.pythonhosted.org/packages/72/d1/924ce51bea494cb6e7959522d69d7b1c7e74f6821d84c63c3dc430cbbf3b/pillow-11.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:750f96efe0597382660d8b53e90dd1dd44568a8edb51cb7f9d5d918b80d4de14", size = 4585420, upload-time = "2025-04-12T17:48:37.641Z" }, + { url = "https://files.pythonhosted.org/packages/43/ab/8f81312d255d713b99ca37479a4cb4b0f48195e530cdc1611990eb8fd04b/pillow-11.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fe15238d3798788d00716637b3d4e7bb6bde18b26e5d08335a96e88564a36b6b", size = 4667655, upload-time = "2025-04-12T17:48:39.652Z" }, + { url = "https://files.pythonhosted.org/packages/94/86/8f2e9d2dc3d308dfd137a07fe1cc478df0a23d42a6c4093b087e738e4827/pillow-11.2.1-cp313-cp313-win32.whl", hash = "sha256:3fe735ced9a607fee4f481423a9c36701a39719252a9bb251679635f99d0f7d2", size = 2332329, upload-time = "2025-04-12T17:48:41.765Z" }, + { url = "https://files.pythonhosted.org/packages/6d/ec/1179083b8d6067a613e4d595359b5fdea65d0a3b7ad623fee906e1b3c4d2/pillow-11.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:74ee3d7ecb3f3c05459ba95eed5efa28d6092d751ce9bf20e3e253a4e497e691", size = 2676388, upload-time = "2025-04-12T17:48:43.625Z" }, + { url = "https://files.pythonhosted.org/packages/23/f1/2fc1e1e294de897df39fa8622d829b8828ddad938b0eaea256d65b84dd72/pillow-11.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:5119225c622403afb4b44bad4c1ca6c1f98eed79db8d3bc6e4e160fc6339d66c", size = 2414950, upload-time = "2025-04-12T17:48:45.475Z" }, + { url = "https://files.pythonhosted.org/packages/c4/3e/c328c48b3f0ead7bab765a84b4977acb29f101d10e4ef57a5e3400447c03/pillow-11.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:8ce2e8411c7aaef53e6bb29fe98f28cd4fbd9a1d9be2eeea434331aac0536b22", size = 3192759, upload-time = "2025-04-12T17:48:47.866Z" }, + { url = "https://files.pythonhosted.org/packages/18/0e/1c68532d833fc8b9f404d3a642991441d9058eccd5606eab31617f29b6d4/pillow-11.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:9ee66787e095127116d91dea2143db65c7bb1e232f617aa5957c0d9d2a3f23a7", size = 3033284, upload-time = "2025-04-12T17:48:50.189Z" }, + { url = "https://files.pythonhosted.org/packages/b7/cb/6faf3fb1e7705fd2db74e070f3bf6f88693601b0ed8e81049a8266de4754/pillow-11.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9622e3b6c1d8b551b6e6f21873bdcc55762b4b2126633014cea1803368a9aa16", size = 4445826, upload-time = "2025-04-12T17:48:52.346Z" }, + { url = "https://files.pythonhosted.org/packages/07/94/8be03d50b70ca47fb434a358919d6a8d6580f282bbb7af7e4aa40103461d/pillow-11.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63b5dff3a68f371ea06025a1a6966c9a1e1ee452fc8020c2cd0ea41b83e9037b", size = 4527329, upload-time = "2025-04-12T17:48:54.403Z" }, + { url = "https://files.pythonhosted.org/packages/fd/a4/bfe78777076dc405e3bd2080bc32da5ab3945b5a25dc5d8acaa9de64a162/pillow-11.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:31df6e2d3d8fc99f993fd253e97fae451a8db2e7207acf97859732273e108406", size = 4549049, upload-time = "2025-04-12T17:48:56.383Z" }, + { url = "https://files.pythonhosted.org/packages/65/4d/eaf9068dc687c24979e977ce5677e253624bd8b616b286f543f0c1b91662/pillow-11.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:062b7a42d672c45a70fa1f8b43d1d38ff76b63421cbbe7f88146b39e8a558d91", size = 4635408, upload-time = "2025-04-12T17:48:58.782Z" }, + { url = "https://files.pythonhosted.org/packages/1d/26/0fd443365d9c63bc79feb219f97d935cd4b93af28353cba78d8e77b61719/pillow-11.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4eb92eca2711ef8be42fd3f67533765d9fd043b8c80db204f16c8ea62ee1a751", size = 4614863, upload-time = "2025-04-12T17:49:00.709Z" }, + { url = "https://files.pythonhosted.org/packages/49/65/dca4d2506be482c2c6641cacdba5c602bc76d8ceb618fd37de855653a419/pillow-11.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f91ebf30830a48c825590aede79376cb40f110b387c17ee9bd59932c961044f9", size = 4692938, upload-time = "2025-04-12T17:49:02.946Z" }, + { url = "https://files.pythonhosted.org/packages/b3/92/1ca0c3f09233bd7decf8f7105a1c4e3162fb9142128c74adad0fb361b7eb/pillow-11.2.1-cp313-cp313t-win32.whl", hash = "sha256:e0b55f27f584ed623221cfe995c912c61606be8513bfa0e07d2c674b4516d9dd", size = 2335774, upload-time = "2025-04-12T17:49:04.889Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ac/77525347cb43b83ae905ffe257bbe2cc6fd23acb9796639a1f56aa59d191/pillow-11.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:36d6b82164c39ce5482f649b437382c0fb2395eabc1e2b1702a6deb8ad647d6e", size = 2681895, upload-time = "2025-04-12T17:49:06.635Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/32dc030cfa91ca0fc52baebbba2e009bb001122a1daa8b6a79ad830b38d3/pillow-11.2.1-cp313-cp313t-win_arm64.whl", hash = "sha256:225c832a13326e34f212d2072982bb1adb210e0cc0b153e688743018c94a2681", size = 2417234, upload-time = "2025-04-12T17:49:08.399Z" }, + { url = "https://files.pythonhosted.org/packages/33/49/c8c21e4255b4f4a2c0c68ac18125d7f5460b109acc6dfdef1a24f9b960ef/pillow-11.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:9b7b0d4fd2635f54ad82785d56bc0d94f147096493a79985d0ab57aedd563156", size = 3181727, upload-time = "2025-04-12T17:49:31.898Z" }, + { url = "https://files.pythonhosted.org/packages/6d/f1/f7255c0838f8c1ef6d55b625cfb286835c17e8136ce4351c5577d02c443b/pillow-11.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:aa442755e31c64037aa7c1cb186e0b369f8416c567381852c63444dd666fb772", size = 2999833, upload-time = "2025-04-12T17:49:34.2Z" }, + { url = "https://files.pythonhosted.org/packages/e2/57/9968114457bd131063da98d87790d080366218f64fa2943b65ac6739abb3/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d3348c95b766f54b76116d53d4cb171b52992a1027e7ca50c81b43b9d9e363", size = 3437472, upload-time = "2025-04-12T17:49:36.294Z" }, + { url = "https://files.pythonhosted.org/packages/b2/1b/e35d8a158e21372ecc48aac9c453518cfe23907bb82f950d6e1c72811eb0/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85d27ea4c889342f7e35f6d56e7e1cb345632ad592e8c51b693d7b7556043ce0", size = 3459976, upload-time = "2025-04-12T17:49:38.988Z" }, + { url = "https://files.pythonhosted.org/packages/26/da/2c11d03b765efff0ccc473f1c4186dc2770110464f2177efaed9cf6fae01/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:bf2c33d6791c598142f00c9c4c7d47f6476731c31081331664eb26d6ab583e01", size = 3527133, upload-time = "2025-04-12T17:49:40.985Z" }, + { url = "https://files.pythonhosted.org/packages/79/1a/4e85bd7cadf78412c2a3069249a09c32ef3323650fd3005c97cca7aa21df/pillow-11.2.1-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e616e7154c37669fc1dfc14584f11e284e05d1c650e1c0f972f281c4ccc53193", size = 3571555, upload-time = "2025-04-12T17:49:42.964Z" }, + { url = "https://files.pythonhosted.org/packages/69/03/239939915216de1e95e0ce2334bf17a7870ae185eb390fab6d706aadbfc0/pillow-11.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:39ad2e0f424394e3aebc40168845fee52df1394a4673a6ee512d840d14ab3013", size = 2674713, upload-time = "2025-04-12T17:49:44.944Z" }, + { url = "https://files.pythonhosted.org/packages/a4/ad/2613c04633c7257d9481ab21d6b5364b59fc5d75faafd7cb8693523945a3/pillow-11.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:80f1df8dbe9572b4b7abdfa17eb5d78dd620b1d55d9e25f834efdbee872d3aed", size = 3181734, upload-time = "2025-04-12T17:49:46.789Z" }, + { url = "https://files.pythonhosted.org/packages/a4/fd/dcdda4471ed667de57bb5405bb42d751e6cfdd4011a12c248b455c778e03/pillow-11.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea926cfbc3957090becbcbbb65ad177161a2ff2ad578b5a6ec9bb1e1cd78753c", size = 2999841, upload-time = "2025-04-12T17:49:48.812Z" }, + { url = "https://files.pythonhosted.org/packages/ac/89/8a2536e95e77432833f0db6fd72a8d310c8e4272a04461fb833eb021bf94/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:738db0e0941ca0376804d4de6a782c005245264edaa253ffce24e5a15cbdc7bd", size = 3437470, upload-time = "2025-04-12T17:49:50.831Z" }, + { url = "https://files.pythonhosted.org/packages/9d/8f/abd47b73c60712f88e9eda32baced7bfc3e9bd6a7619bb64b93acff28c3e/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db98ab6565c69082ec9b0d4e40dd9f6181dab0dd236d26f7a50b8b9bfbd5076", size = 3460013, upload-time = "2025-04-12T17:49:53.278Z" }, + { url = "https://files.pythonhosted.org/packages/f6/20/5c0a0aa83b213b7a07ec01e71a3d6ea2cf4ad1d2c686cc0168173b6089e7/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:036e53f4170e270ddb8797d4c590e6dd14d28e15c7da375c18978045f7e6c37b", size = 3527165, upload-time = "2025-04-12T17:49:55.164Z" }, + { url = "https://files.pythonhosted.org/packages/58/0e/2abab98a72202d91146abc839e10c14f7cf36166f12838ea0c4db3ca6ecb/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14f73f7c291279bd65fda51ee87affd7c1e097709f7fdd0188957a16c264601f", size = 3571586, upload-time = "2025-04-12T17:49:57.171Z" }, + { url = "https://files.pythonhosted.org/packages/21/2c/5e05f58658cf49b6667762cca03d6e7d85cededde2caf2ab37b81f80e574/pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044", size = 2674751, upload-time = "2025-04-12T17:49:59.628Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz", hash = "sha256:eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351", size = 21291, upload-time = "2025-03-19T20:36:10.989Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/45/59578566b3275b8fd9157885918fcd0c4d74162928a5310926887b856a51/platformdirs-4.3.7-py3-none-any.whl", hash = "sha256:a03875334331946f13c549dbd8f4bac7a13a50a895a0eb1e8c6a8ace80d40a94", size = 18499, upload-time = "2025-03-19T20:36:09.038Z" }, +] + +[[package]] +name = "portprotonqt" +version = "0.1.1" +source = { editable = "." } +dependencies = [ + { name = "babel" }, + { name = "evdev" }, + { name = "icoextract" }, + { name = "numpy" }, + { name = "orjson" }, + { name = "pillow" }, + { name = "psutil" }, + { name = "pyside6" }, + { name = "pyudev" }, + { name = "requests" }, + { name = "tqdm" }, + { name = "vdf" }, +] + +[package.dev-dependencies] +dev = [ + { name = "pre-commit" }, + { name = "pyaspeller" }, + { name = "pyright" }, +] + +[package.metadata] +requires-dist = [ + { name = "babel", specifier = ">=2.17.0" }, + { name = "evdev", specifier = ">=1.9.1" }, + { name = "icoextract", specifier = ">=0.1.6" }, + { name = "numpy", specifier = ">=2.2.4" }, + { name = "orjson", specifier = ">=3.10.16" }, + { name = "pillow", specifier = ">=11.2.1" }, + { name = "psutil", specifier = ">=7.0.0" }, + { name = "pyside6", specifier = ">=6.9.0" }, + { name = "pyudev", specifier = ">=0.24.3" }, + { name = "requests", specifier = ">=2.32.3" }, + { name = "tqdm", specifier = ">=4.67.1" }, + { name = "vdf", specifier = ">=3.4" }, +] + +[package.metadata.requires-dev] +dev = [ + { name = "pre-commit", specifier = ">=4.2.0" }, + { name = "pyaspeller", specifier = ">=2.0.2" }, + { name = "pyright", specifier = ">=1.1.400" }, +] + +[[package]] +name = "pre-commit" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cfgv" }, + { name = "identify" }, + { name = "nodeenv" }, + { name = "pyyaml" }, + { name = "virtualenv" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/39/679ca9b26c7bb2999ff122d50faa301e49af82ca9c066ec061cfbc0c6784/pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146", size = 193424, upload-time = "2025-03-18T21:35:20.987Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/74/a88bf1b1efeae488a0c0b7bdf71429c313722d1fc0f377537fbe554e6180/pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd", size = 220707, upload-time = "2025-03-18T21:35:19.343Z" }, +] + +[[package]] +name = "psutil" +version = "7.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2a/80/336820c1ad9286a4ded7e845b2eccfcb27851ab8ac6abece774a6ff4d3de/psutil-7.0.0.tar.gz", hash = "sha256:7be9c3eba38beccb6495ea33afd982a44074b78f28c434a1f51cc07fd315c456", size = 497003, upload-time = "2025-02-13T21:54:07.946Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/e6/2d26234410f8b8abdbf891c9da62bee396583f713fb9f3325a4760875d22/psutil-7.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:101d71dc322e3cffd7cea0650b09b3d08b8e7c4109dd6809fe452dfd00e58b25", size = 238051, upload-time = "2025-02-13T21:54:12.36Z" }, + { url = "https://files.pythonhosted.org/packages/04/8b/30f930733afe425e3cbfc0e1468a30a18942350c1a8816acfade80c005c4/psutil-7.0.0-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:39db632f6bb862eeccf56660871433e111b6ea58f2caea825571951d4b6aa3da", size = 239535, upload-time = "2025-02-13T21:54:16.07Z" }, + { url = "https://files.pythonhosted.org/packages/2a/ed/d362e84620dd22876b55389248e522338ed1bf134a5edd3b8231d7207f6d/psutil-7.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1fcee592b4c6f146991ca55919ea3d1f8926497a713ed7faaf8225e174581e91", size = 275004, upload-time = "2025-02-13T21:54:18.662Z" }, + { url = "https://files.pythonhosted.org/packages/bf/b9/b0eb3f3cbcb734d930fdf839431606844a825b23eaf9a6ab371edac8162c/psutil-7.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b1388a4f6875d7e2aff5c4ca1cc16c545ed41dd8bb596cefea80111db353a34", size = 277986, upload-time = "2025-02-13T21:54:21.811Z" }, + { url = "https://files.pythonhosted.org/packages/eb/a2/709e0fe2f093556c17fbafda93ac032257242cabcc7ff3369e2cb76a97aa/psutil-7.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5f098451abc2828f7dc6b58d44b532b22f2088f4999a937557b603ce72b1993", size = 279544, upload-time = "2025-02-13T21:54:24.68Z" }, + { url = "https://files.pythonhosted.org/packages/50/e6/eecf58810b9d12e6427369784efe814a1eec0f492084ce8eb8f4d89d6d61/psutil-7.0.0-cp37-abi3-win32.whl", hash = "sha256:ba3fcef7523064a6c9da440fc4d6bd07da93ac726b5733c29027d7dc95b39d99", size = 241053, upload-time = "2025-02-13T21:54:34.31Z" }, + { url = "https://files.pythonhosted.org/packages/50/1b/6921afe68c74868b4c9fa424dad3be35b095e16687989ebbb50ce4fceb7c/psutil-7.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:4cf3d4eb1aa9b348dec30105c55cd9b7d4629285735a102beb4441e38db90553", size = 244885, upload-time = "2025-02-13T21:54:37.486Z" }, +] + +[[package]] +name = "pyaspeller" +version = "2.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6e/83/a4039c08cb9a57d8b7ad9e119fd87ab73ca6a8c4ea1421095afa70077979/pyaspeller-2.0.2.tar.gz", hash = "sha256:0aed696ab1ca11ca9d1a3874c7c2061fd567be9a2f1eff7b8e772031837701c0", size = 41039, upload-time = "2025-01-02T12:38:26.756Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/ab/af7783445d4b564a8c4f6830f4126a219901c14f6b02c03c87a3853f0bb4/pyaspeller-2.0.2-py3-none-any.whl", hash = "sha256:1ae806e7054b0758521dfccadee1aa79747220cb88f21e06f211c59b27fd8e85", size = 16143, upload-time = "2025-01-02T12:38:25.265Z" }, +] + +[[package]] +name = "pyright" +version = "1.1.400" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nodeenv" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6c/cb/c306618a02d0ee8aed5fb8d0fe0ecfed0dbf075f71468f03a30b5f4e1fe0/pyright-1.1.400.tar.gz", hash = "sha256:b8a3ba40481aa47ba08ffb3228e821d22f7d391f83609211335858bf05686bdb", size = 3846546, upload-time = "2025-04-24T12:55:18.907Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/a5/5d285e4932cf149c90e3c425610c5efaea005475d5f96f1bfdb452956c62/pyright-1.1.400-py3-none-any.whl", hash = "sha256:c80d04f98b5a4358ad3a35e241dbf2a408eee33a40779df365644f8054d2517e", size = 5563460, upload-time = "2025-04-24T12:55:17.002Z" }, +] + +[[package]] +name = "pyside6" +version = "6.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyside6-addons" }, + { name = "pyside6-essentials" }, + { name = "shiboken6" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/74/0b465aa77644cfc3bfde912bb999b5a441d92c699272cab722335e92df3e/PySide6-6.9.0-cp39-abi3-macosx_12_0_universal2.whl", hash = "sha256:b8f286a1bd143f3b2bdf08367b9362b13f469d26986c25700af9c4c68f79213e", size = 558001, upload-time = "2025-04-02T10:56:35.197Z" }, + { url = "https://files.pythonhosted.org/packages/91/53/ce78d2c279a4ed7d4baf5089a5ebff45d675670a42daa5e0f8dbb9ced6ed/PySide6-6.9.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:09239d1b808f18efccd3803db874d683917efcdebfdf0e8dec449cf50e74e7aa", size = 558139, upload-time = "2025-04-02T10:56:37.029Z" }, + { url = "https://files.pythonhosted.org/packages/4b/54/41d6ab0847c043f1fd96433a87ffd09a7cf17e11f5587e91e152777ec010/PySide6-6.9.0-cp39-abi3-manylinux_2_39_aarch64.whl", hash = "sha256:1a176409dd0dd12b72d2c78b776e5051f569071ec52b7aaadd0a5b3333493c24", size = 558139, upload-time = "2025-04-02T10:56:38.519Z" }, + { url = "https://files.pythonhosted.org/packages/63/03/55a632191beadd6bc59b04055961e2c3224a3475a906a63d1899a5ab493d/PySide6-6.9.0-cp39-abi3-win_amd64.whl", hash = "sha256:0103e5d161696db40d75bfbf4e4b7d4f3372903c1b400c4e3379377b62c50290", size = 564479, upload-time = "2025-04-02T10:56:40.69Z" }, + { url = "https://files.pythonhosted.org/packages/e8/80/340523ecb17d2a168d7e37dfd8a7a0eebb81dcbec4870447f132f2a1a28e/PySide6-6.9.0-cp39-abi3-win_arm64.whl", hash = "sha256:846fbccf0b3501eb31cf0791a46e137615efba6ce540da2b426d79fa3e7762c4", size = 401752, upload-time = "2025-04-02T10:56:42.175Z" }, +] + +[[package]] +name = "pyside6-addons" +version = "6.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyside6-essentials" }, + { name = "shiboken6" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/a4/211077b3f30342827b2c543f80a5f6bc483ff3af6be99766984618e68fb6/PySide6_Addons-6.9.0-cp39-abi3-macosx_12_0_universal2.whl", hash = "sha256:98f9ad4b65820736e12d49c18db2e570eac63727407fbb59a62ac753e89dc201", size = 315606763, upload-time = "2025-04-02T10:56:56.271Z" }, + { url = "https://files.pythonhosted.org/packages/58/c1/21224090a7ee7e9ce5699e5bf16b84d576b7587f0712ccb6862a8b28476c/PySide6_Addons-6.9.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:fc9dcd63a0ce7565f238cb11c44494435a50eb6cb72b8dbce3b709618989c3dc", size = 166252767, upload-time = "2025-04-02T10:57:11.175Z" }, + { url = "https://files.pythonhosted.org/packages/85/c3/add4948cf15648db542531a5c292f9de946ee288243730be7607499936ec/PySide6_Addons-6.9.0-cp39-abi3-manylinux_2_39_aarch64.whl", hash = "sha256:d8a650644e0b9d1e7a092f6bcd11f25a63706d12f77d442b6ace75d346ab5d30", size = 161938789, upload-time = "2025-04-02T10:57:22.898Z" }, + { url = "https://files.pythonhosted.org/packages/77/c0/b1718f62d1fcc9bac4c410d4150d7e1214235e73cc18f39dc36ad49f093f/PySide6_Addons-6.9.0-cp39-abi3-win_amd64.whl", hash = "sha256:8cf54065b3d1b4698448fad825378a25c10ef52017d9dff48cead03200636d8d", size = 142994491, upload-time = "2025-04-02T10:57:34.865Z" }, + { url = "https://files.pythonhosted.org/packages/29/aa/810ceb3d111fa6a0cc865520e05198dd0cad4855558c8c8309d4d3852854/PySide6_Addons-6.9.0-cp39-abi3-win_arm64.whl", hash = "sha256:260a56da59539f476c1635a3ff13591e10f1b04d92155c0617129bc53ca8b5f8", size = 26840861, upload-time = "2025-04-02T10:57:41.312Z" }, +] + +[[package]] +name = "pyside6-essentials" +version = "6.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "shiboken6" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/ac/a3c8097d6fdcf414d961bdc0d532381d0ee141e4c699f5e2b881a7c3613f/PySide6_Essentials-6.9.0-cp39-abi3-macosx_12_0_universal2.whl", hash = "sha256:b18e3e01b507e8a57481fe19792eb373d5f10a23a50702ce540da1435e722f39", size = 131981893, upload-time = "2025-04-02T10:57:49.618Z" }, + { url = "https://files.pythonhosted.org/packages/9e/fd/46b713827007162de9108b22d01702868e75f31585da7eca5a79e3435590/PySide6_Essentials-6.9.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:45eaf7f17688d1991f39680dbfd3c41674f3cbb78f278aa10fe0b5f2f31c1989", size = 94232483, upload-time = "2025-04-02T10:57:58.879Z" }, + { url = "https://files.pythonhosted.org/packages/ff/f1/72e1d400017a658e271594c8bd9c447c623dfd4fb936f4e043a4f9a8c93b/PySide6_Essentials-6.9.0-cp39-abi3-manylinux_2_39_aarch64.whl", hash = "sha256:69aedfad77119c5bec0005ca31d5620e9bac8ba5ae66c7389160530cfd698ed8", size = 92102516, upload-time = "2025-04-02T10:58:06.598Z" }, + { url = "https://files.pythonhosted.org/packages/96/8a/bc710350c4cf6894968e39970eaa613b85a82eb1f230052de597e44a00ac/PySide6_Essentials-6.9.0-cp39-abi3-win_amd64.whl", hash = "sha256:94a0096d6bb1d3e5cef29ca4a5366d0f229d42480fbb17aa25ad85d72b1b7947", size = 72336994, upload-time = "2025-04-02T10:58:14.491Z" }, + { url = "https://files.pythonhosted.org/packages/49/a4/703e379a0979985f681cf04b9af4129f5dde20141b3cc64fc2a39d006614/PySide6_Essentials-6.9.0-cp39-abi3-win_arm64.whl", hash = "sha256:d2dc45536f2269ad111991042e81257124f1cd1c9ed5ea778d7224fd65dc9e2b", size = 49449220, upload-time = "2025-04-02T10:58:21.192Z" }, +] + +[[package]] +name = "pyudev" +version = "0.24.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/c4/5c/6cc034da13830e3da123ccf9a30910bc868fa16670362f004e4b788d0df1/pyudev-0.24.3.tar.gz", hash = "sha256:2e945427a21674893bb97632401db62139d91cea1ee96137cc7b07ad22198fc7", size = 55970, upload-time = "2024-05-10T18:24:04.599Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/3b/c37870f68ceb067707ca7b04db364a1478fcd40c6194007fb6e492ff9a92/pyudev-0.24.3-py3-none-any.whl", hash = "sha256:e8246f0a014fe370119ba2bc781bfbe62c0298d0d6b39c94e83102a8a3f56960", size = 62677, upload-time = "2024-05-10T18:24:02.743Z" }, +] + +[[package]] +name = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199, upload-time = "2024-08-06T20:31:40.178Z" }, + { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758, upload-time = "2024-08-06T20:31:42.173Z" }, + { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463, upload-time = "2024-08-06T20:31:44.263Z" }, + { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280, upload-time = "2024-08-06T20:31:50.199Z" }, + { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239, upload-time = "2024-08-06T20:31:52.292Z" }, + { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802, upload-time = "2024-08-06T20:31:53.836Z" }, + { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527, upload-time = "2024-08-06T20:31:55.565Z" }, + { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052, upload-time = "2024-08-06T20:31:56.914Z" }, + { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774, upload-time = "2024-08-06T20:31:58.304Z" }, + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612, upload-time = "2024-08-06T20:32:03.408Z" }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040, upload-time = "2024-08-06T20:32:04.926Z" }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829, upload-time = "2024-08-06T20:32:06.459Z" }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167, upload-time = "2024-08-06T20:32:08.338Z" }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952, upload-time = "2024-08-06T20:32:14.124Z" }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301, upload-time = "2024-08-06T20:32:16.17Z" }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638, upload-time = "2024-08-06T20:32:18.555Z" }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850, upload-time = "2024-08-06T20:32:19.889Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980, upload-time = "2024-08-06T20:32:21.273Z" }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873, upload-time = "2024-08-06T20:32:25.131Z" }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302, upload-time = "2024-08-06T20:32:26.511Z" }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154, upload-time = "2024-08-06T20:32:28.363Z" }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223, upload-time = "2024-08-06T20:32:30.058Z" }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542, upload-time = "2024-08-06T20:32:31.881Z" }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164, upload-time = "2024-08-06T20:32:37.083Z" }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611, upload-time = "2024-08-06T20:32:38.898Z" }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591, upload-time = "2024-08-06T20:32:40.241Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338, upload-time = "2024-08-06T20:32:41.93Z" }, + { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309, upload-time = "2024-08-06T20:32:43.4Z" }, + { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679, upload-time = "2024-08-06T20:32:44.801Z" }, + { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428, upload-time = "2024-08-06T20:32:46.432Z" }, + { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361, upload-time = "2024-08-06T20:32:51.188Z" }, + { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523, upload-time = "2024-08-06T20:32:53.019Z" }, + { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660, upload-time = "2024-08-06T20:32:54.708Z" }, + { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597, upload-time = "2024-08-06T20:32:56.985Z" }, + { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527, upload-time = "2024-08-06T20:33:03.001Z" }, + { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446, upload-time = "2024-08-06T20:33:04.33Z" }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi" }, + { name = "charset-normalizer" }, + { name = "idna" }, + { name = "urllib3" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218, upload-time = "2024-05-29T15:37:49.536Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928, upload-time = "2024-05-29T15:37:47.027Z" }, +] + +[[package]] +name = "shiboken6" +version = "6.9.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/be/85/97b36b045a233bcea9580e8c99d5c76d65cf9727dad8cb173527f6717471/shiboken6-6.9.0-cp39-abi3-macosx_12_0_universal2.whl", hash = "sha256:c4d8e3a5907154ac4789e52c77957db95bcf584238c244d7743cb39e9b66dd26", size = 407067, upload-time = "2025-04-02T10:58:43.491Z" }, + { url = "https://files.pythonhosted.org/packages/45/d3/f6ddef22d4f2ac11c079157ad3714d9b1fb9324d9cd3b200f824923fe2ba/shiboken6-6.9.0-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:3f585caae5b814a7e23308db0a077355a7dc20c34d58ca4c339ff7625e9a1936", size = 206509, upload-time = "2025-04-02T10:58:44.905Z" }, + { url = "https://files.pythonhosted.org/packages/0d/59/6a91aad272fe89bf2293b7864fb6e926822c93a2f6192611528c6945196d/shiboken6-6.9.0-cp39-abi3-manylinux_2_39_aarch64.whl", hash = "sha256:b61579b90bf9c53ecc174085a69429166dfe57a0b8b894f933d1281af9df6568", size = 202809, upload-time = "2025-04-02T10:58:46.667Z" }, + { url = "https://files.pythonhosted.org/packages/e2/6e/cf00d723ab141132fb6d35ba8faf109cbc0ee83412016343600abb423149/shiboken6-6.9.0-cp39-abi3-win_amd64.whl", hash = "sha256:121ea290ed1afa5ad6abf690b377612693436292b69c61b0f8e10b1f0850f935", size = 1153132, upload-time = "2025-04-02T10:58:50.973Z" }, + { url = "https://files.pythonhosted.org/packages/b5/01/d59babab05786c99ebabdd152864ea3d4c500160979952c620eec68b1ff2/shiboken6-6.9.0-cp39-abi3-win_arm64.whl", hash = "sha256:24f53857458881b54798d7e35704611d07f6b6885bcdf80f13a4c8bb485b8df2", size = 1831261, upload-time = "2025-04-02T10:58:52.789Z" }, +] + +[[package]] +name = "tqdm" +version = "4.67.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" }, +] + +[[package]] +name = "typing-extensions" +version = "4.13.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f6/37/23083fcd6e35492953e8d2aaaa68b860eb422b34627b13f2ce3eb6106061/typing_extensions-4.13.2.tar.gz", hash = "sha256:e6c81219bd689f51865d9e372991c540bda33a0379d5573cddb9a3a23f7caaef", size = 106967, upload-time = "2025-04-10T14:19:05.416Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/54/b1ae86c0973cc6f0210b53d508ca3641fb6d0c56823f288d108bc7ab3cc8/typing_extensions-4.13.2-py3-none-any.whl", hash = "sha256:a439e7c04b49fec3e5d3e2beaa21755cadbbdc391694e28ccdd36ca4a1408f8c", size = 45806, upload-time = "2025-04-10T14:19:03.967Z" }, +] + +[[package]] +name = "urllib3" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8a/78/16493d9c386d8e60e442a35feac5e00f0913c0f4b7c217c11e8ec2ff53e0/urllib3-2.4.0.tar.gz", hash = "sha256:414bc6535b787febd7567804cc015fee39daab8ad86268f1310a9250697de466", size = 390672, upload-time = "2025-04-10T15:23:39.232Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/11/cc635220681e93a0183390e26485430ca2c7b5f9d33b15c74c2861cb8091/urllib3-2.4.0-py3-none-any.whl", hash = "sha256:4e16665048960a0900c702d4a66415956a584919c03361cac9f1df5c5dd7e813", size = 128680, upload-time = "2025-04-10T15:23:37.377Z" }, +] + +[[package]] +name = "vdf" +version = "3.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/7f/74192f47d67c8bf3c47bf0d8487b3457614c2c98d58b6617721d217f3f79/vdf-3.4.tar.gz", hash = "sha256:fd5419f41e07a1009e5ffd027c7dcbe43d1f7e8ef453aeaa90d9d04b807de2af", size = 11132, upload-time = "2021-05-22T09:26:05.252Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/60/6456b687cf55cf60020dcd01f9bc51561c3cc84f05fd8e0feb71ce60f894/vdf-3.4-py2.py3-none-any.whl", hash = "sha256:68c1a125cc49e343d535af2dd25074e9cb0908c6607f073947c4a04bbe234534", size = 10357, upload-time = "2021-05-22T09:26:03.948Z" }, +] + +[[package]] +name = "virtualenv" +version = "20.30.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "distlib" }, + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/e0/633e369b91bbc664df47dcb5454b6c7cf441e8f5b9d0c250ce9f0546401e/virtualenv-20.30.0.tar.gz", hash = "sha256:800863162bcaa5450a6e4d721049730e7f2dae07720e0902b0e4040bd6f9ada8", size = 4346945, upload-time = "2025-03-31T16:33:29.185Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/ed/3cfeb48175f0671ec430ede81f628f9fb2b1084c9064ca67ebe8c0ed6a05/virtualenv-20.30.0-py3-none-any.whl", hash = "sha256:e34302959180fca3af42d1800df014b35019490b119eba981af27f2fa486e5d6", size = 4329461, upload-time = "2025-03-31T16:33:26.758Z" }, +]